GRLS medications

Author

Collette Taylor

Medication in GRLS dataset

Files and packages to import:

library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.1     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.1
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(ggplot2)
library(lubridate)

#original medications datasets
medications <- read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/medications.csv",na.strings=c ("","NA"))
vaccinations <-read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/vaccines.csv",na.strings=c ("","NA"))
OTC_meds <- read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/over_the_counter_medications.csv",na.strings=c ("","NA"))
parasite_control <-read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/flea_tick_heartworm.csv",na.strings=c ("","NA"))
#ensure all lower case
medications <- medications %>%
  mutate(across(where(is.character), tolower))
vaccinations <- vaccinations %>%
  mutate(across(where(is.character), tolower))
OTC_meds <- OTC_meds %>%
  mutate(across(where(is.character), tolower))
parasite_control <- parasite_control %>%
  mutate(across(where(is.character), tolower))
  

# use the end_points dataset for now 
end_points <- read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/study_endpoints.csv")
end_points_neoplasia <- end_points %>% 
  mutate(across(where(is.character), tolower))

#subset of those dying with any neoplasia
neo_patterns <- c('oma', 'leuk', 'tumor', 'neopla')

end_points_neoplasia <- end_points_neoplasia %>% 
  mutate(neoplasia = as.integer(grepl(paste(neo_patterns, collapse = '|'), tracked_condition, ignore.case = TRUE)))

end_points_neoplasia <- end_points_neoplasia %>%
  filter(neoplasia ==1) 

  

end_HSA <- end_points_neoplasia %>% filter(grepl('hema',tracked_condition),ignore.case=TRUE)


#get neoplasia diagnosis year month column into date format
end_HSA$diagnosis_year_month_date <- as.POSIXct(end_HSA$diagnosis_date,format = "%Y-%m-%d")
# create a year column in HSA file so can do calculations on year (no point being more precise as questionaire done annually and may not match diagnosis time)
end_HSA$diagnosis_year <- as.numeric(format(end_HSA$diagnosis_year_month_date,"%Y"))
# set to month level (not day of month) = all on 1st day of month
end_HSA$diagnosis_year_month_date2 <- as.POSIXct(floor_date(end_HSA$diagnosis_year_month_date,unit="month"))
#column with has cancer set as 1 for sense checking records
end_HSA <- end_HSA %>%
  mutate(has_HSA =1)

Nov 2024- 301 HSA dogs in study endpoints, 981 total of neoplasia recorded at death (not necess cause of death)

Medications

Remove rows in medications dataset that do not have any medication ingredient info:

medications_2 <- medications %>% 
  filter(!is.na(medication_name) & !is.na(medication_ingredients))

#double check not formatted wrong and losing info in these NA ones
medications_miss <- medications %>% 
  filter(is.na(medication_name) & is.na(medication_ingredients))
# no, these are totally empty

Frequency of any medication for each dog in df

#overall freq and avg across whole study period
freq_all_time <- medications_2 %>%
  group_by(subject_id) %>%
  summarise(
    total_records = n(), # Total number of rows across all years
    avg_records_per_year = n() / n_distinct(year_in_study), # Average per year
    .groups = "drop"
  )



by_year <- medications_2 %>%
  group_by(subject_id, year_in_study) %>%
  summarise(
    yearly_records = n(),                          # Total rows for each year per subject
    .groups = "drop"
  ) %>%
  pivot_wider(                                     # Pivot to wide format
    names_from = year_in_study, 
    values_from = yearly_records, 
    values_fill = 0
  ) %>%
  rowwise() %>%
  mutate(
    avg_records_per_year = mean(c_across(-subject_id)) # Average across years per dog
  ) %>%
  ungroup()
freq_all_time %>%
  summarise(mean= mean(avg_records_per_year), 
            median= median(avg_records_per_year),
  IQR=IQR(avg_records_per_year),
  range=range(avg_records_per_year),
  min = min(avg_records_per_year),
  max=max(avg_records_per_year))
Warning: Returning more (or less) than 1 row per `summarise()` group was deprecated in
dplyr 1.1.0.
ℹ Please use `reframe()` instead.
ℹ When switching from `summarise()` to `reframe()`, remember that `reframe()`
  always returns an ungrouped data frame and adjust accordingly.
# A tibble: 2 × 6
   mean median   IQR range   min   max
  <dbl>  <dbl> <dbl> <dbl> <dbl> <dbl>
1  2.82   2.43  1.75   1       1  28.5
2  2.82   2.43  1.75  28.5     1  28.5

Histograms of number of meds given across life for dogs:

ggplot(freq_all_time, aes(x = total_records)) +
  geom_histogram(binwidth = 5, fill = "skyblue", color = "black", alpha = 0.7) +
  labs(
    title = "Histogram of Total med admins across whole study period per Dog",
    x = "Total med admins",
    y = "Number of dogs"
  ) +
  theme_minimal()

ggplot(freq_all_time, aes(x = avg_records_per_year)) +
  geom_histogram(binwidth = 5, fill = "skyblue", color = "black", alpha = 0.7) +
  labs(
    title = "Histogram of avg med admins across whole study period per dog",
    x = "Total Records",
    y = "Number of dogs"
  ) +
  theme_minimal()

# Histogram for average records across years
ggplot(by_year, aes(x = avg_records_per_year)) +
  geom_histogram(binwidth = 1, fill = "orange", color = "black", alpha = 0.7) +
  labs(
    title = "Histogram of Average Records Across Years",
    x = "Average Records per Year",
    y = "Frequency"
  ) +
  theme_minimal()

# Gather wide-format data into long format for per-year records
long_by_year <- by_year %>%
  pivot_longer(cols = -c(subject_id, avg_records_per_year), names_to = "year_in_study", values_to = "yearly_records")

# Histogram for all yearly records
ggplot(long_by_year, aes(x = yearly_records)) +
  geom_histogram(binwidth = 1, fill = "purple", color = "black", alpha = 0.7) +
  labs(
    title = "Histogram of Yearly Med admin counts Across All Dogs",
    x = "Med admin",
    y = "Number of dogs"
  ) +
  theme_minimal()

Medication name and ingredients:

ingredients <- medications_2 %>%
  dplyr::select(medication_name,medication_name_specify,medication_ingredients)

Full list (desc) of medication name:

med_name_count <- ingredients %>%
  count(medication_name, name = "Count") %>%
  arrange(desc(Count))
med_name_count
                                                            medication_name
1                                                            heartgard plus
2                                                             metronidazole
3                                                                   nexgard
4                                                                  sentinel
5                                                                 carprofen
6                                                                cephalexin
7                                                                   rimadyl
8                                                                   apoquel
9                                                               cefpodoxime
10                                                               prednisone
11                                                                 bravecto
12                                                              interceptor
13                                                                heartgard
14                                                           frontline plus
15                                                                 trifexis
16                                                                  cerenia
17                                                               gabapentin
18                                                                 clavamox
19                                                              doxycycline
20                                                              amoxicillin
21                                                                cytopoint
22                                                                mometamax
23                                                                 tramadol
24                                                                simplicef
25                                                            other specify
26                                                                  baytril
27                                                           tri-heart plus
28                                                                trazodone
29                                                                  panacur
30                                                                vectra 3d
31                                                              clindamycin
32                                         neo-poly-dex ophthalmic ointment
33                                                               famotidine
34                                                                simparica
35                                                         pyrantel pamoate
36                                                              advantix ii
37                                                               ivermectin
38                                                         interceptor plus
39                                                                  adequan
40                                                                 fish oil
41                                                      claro otic solution
42                                                                meloxicam
43                                                               galliprant
44                                                               fortiflora
45                                                            levothyroxine
46                                                               revolution
47                                                      otomax ear ointment
48                                                          diphenhydramine
49                                                              hydroxyzine
50                                                        dasuquin advanced
51                                                               thyro-tabs
52                                                                 deramaxx
53                                                             iverhart max
54                                                                 previcox
55                                                           seresto collar
56                                                            dexamethasone
57                                                             posatex otic
58                                                                temaril-p
59                                                        dasuquin with msm
60                                                                    albon
61                                                             acepromazine
62                                                        sentinel spectrum
63                                                               amoxi-clav
64                                                               sucralfate
65                                                    trizulta + keto flush
66                                                                vetprofen
67                                                                 benadryl
68                                                             ketoconazole
69                                                               neo-predef
70                                                                frontline
71                                                               omeprazole
72                                                     prednisolone acetate
73                                         neo-poly-bac ophthalmic ointment
74                                                      proviable probiotic
75                                                             drontal plus
76                                               tresaderm topical solution
77                                                               fluoxetine
78                                                          animax ointment
79                                                                thyroxine
80                                                            ciprofloxacin
81                                                               advantix i
82                                                                 propofol
83                                                              cosequin ds
84                                                     tylan soluble powder
85                                                        entederm ointment
86                                                         milbemycin oxime
87                                                                  metacam
88                                                                vitamin b
89                                                               alprazolam
90                                                             fenbendazole
91                                                            iverhart plus
92                                                           gentocin spray
93                                                                  easotic
94                                                                  librela
95                                                                mupirocin
96                                                                 proheart
97                                                       maropitant citrate
98                                                         osurnia otic gel
99                                                                  taurine
100                                                           phenobarbital
101                                                              proheart 6
102                                                                   proin
103                                                                 smz tmp
104                                                               comfortis
105                                                                  flagyl
106                              prednisolone acetate ophthalmic suspension
107                                                               quadritop
108                                                            surolan otic
109                                                             butorphanol
110                                                        endosorb tablets
111                                                            praziquantel
112                                                           yunnan baiyao
113                                                                  zyrtec
114                                                         advantage multi
115                                                           betagen spray
116                                                              diclofenac
117                                                          metoclopramide
118                                                              cetirizine
119                                                                 covenia
120                                                               denamarin
121                                                           methocarbamol
122                                                   tri-otic ear ointment
123                                                   epi-otic ear cleanser
124                                                          frontline gold
125                                                                ketamine
126                                                                zeniquin
127                                                         glucosamine hcl
128                                                             ondansetron
129                                                                welactin
130                                                               midazolam
131                                                                spinosad
132                                                            advantage ii
133                                                           buprenorphine
134                                                           hydromorphone
135                                      zymox ear cleaner + hydrocortisone
136                                                                  pepcid
137                                                             fluconazole
138                                                             minocycline
139                                                                   novox
140                                                                diazepam
141                                                                gentizol
142                                                          tylosin powder
143                                                                atropine
144                                                            bnt ointment
145                                                             genta spray
146                                                                  rovera
147                                                                credelio
148                                                                 drontal
149                                                        panolog ointment
150                                                            pro-pectalin
151                                                               lufenuron
152                                                               cefazolin
153                                                                soloxine
154                                                 triamcinolone acetonide
155                                               cosequin regular strength
156                                                           cough tablets
157                                                               deracoxib
158                                                              dexdomitor
159                                                           parastar plus
160                                                               vitamin c
161                                                                parastar
162                                                                rilexine
163                                                               enalapril
164                                                              pimobendan
165                                                            proviable-dc
166                                                              zonisamide
167                                                               dermalone
168                                                                iverhart
169                                                            motazol otic
170                                                              ampicillin
171                                                             hydrocodone
172                                                           levetiracetam
173                                                             depo-medrol
174                                                            genone spray
175                                                       zymox ear cleaner
176                                                            chlorambucil
177                                                            ekt ointment
178                                                               glycoflex
179                                                              isoflurane
180                                                                strongid
181                                                                carafate
182                                                      derma-vet ointment
183                                              lactated ringer's solution
184                                                      otibiotic ointment
185                                                    sileo oromucosal gel
186                                                                  entyce
187                                                                  keppra
188                                                         triple max otic
189                                                              amantadine
190                                                              budesonide
191                                                              tobramycin
192                                                 malacetic otic cleanser
193                                                            azithromycin
194                                                            cyclosporine
195                                                              afoxolaner
196                                                        gentamicin spray
197                                                      miconazole nitrate
198                                                               mometavet
199                                                         apomorphine hcl
200                                                douxo chlorhexidine pads
201                                                               carprovet
202                                                          chlorphenamine
203                                                        frontline tritak
204                                                             quadriguard
205                                                                ursodiol
206                                                                  ivomec
207                                                       potassium bromide
208                                                             telmisartan
209                                                             baytil otic
210                                                                claritin
211                                                              comboguard
212                                                               meloxidyl
213                       neo-poly-bac ophthalmic ointment + hydrocortisone
214                                                                thyrosyn
215                                                                  diagel
216                                                          gentaved spray
217                                                               ketorolac
218                                                               ponazuril
219                                                 tritop topical ointment
220                                                              crananidin
221                                                                 droncit
222                                                                 kenalog
223                                                         mal-a-ket wipes
224                                                                morphine
225                                                              benazepril
226                                                               cranberry
227                                                  movoflex joint support
228                                                           simpleguard 3
229                                                         dexmedetomidine
230                                                      diethylstilbestrol
231                                                           marbofloxacin
232                                                             mirtazapine
233                        neo-poly-bac ophthalmic ointment + dexamethasone
234                                                     phenylpropanolamine
235                                                               augmentin
236                                             douxo micellar ear solution
237                                                             doxorubicin
238                                                               ofloxacin
239                                                                pattotic
240                                                                polyflex
241                                                             vincristine
242                                                             advantage i
243                                                              amlodipine
244                                                               antisedan
245                                                                 capstar
246                                                                  primor
247                                                                tussigon
248                                                               vitamin d
249                                                           chlorhexidine
250                                                                 synotic
251                                                             terbinafine
252                                                               virbantel
253                                                               cisapride
254                                                             clavacillin
255                                                              loperamide
256                                                        malotic ointment
257                                                 nordic naturals omega-3
258                                               ocu-glo vision supplement
259                                                                 telazol
260                                                            azathioprine
261                                                                buprenex
262                                                             coconut oil
263                                       dexamethasone ophthalmic ointment
264                                                              gentamicin
265                                                             l-carnitine
266                                           malacetic ultra otic cleanser
267                                                    nuvet multi-vitamins
268                                           ofloxacin ophthalmic ointment
269                                                              penicillin
270                                           tobramycin opthalmic ointment
271                                                              torbugesic
272                              canine atopic dermatitis immunotherapeutic
273                                                                 codeine
274                                                        cyclophosphamide
275                                               dorzolamide-timolol drops
276                                                   genesis topical spray
277                                         latanoprost ophthalmic ointment
278                                                              loratadine
279                                                        malmetazone otic
280                                                                prilosec
281                                                                 quellin
282                                                           sulfasalazine
283                                                                 vetalog
284                                                               cefpoderm
285                                                     chondroitin sulfate
286                                   chondroitin sulfate + glucosamine hcl
287                                                    cosequin ds plus msm
288                                                            flurbiprofen
289                                                              furosemide
290                                   gentocin durafilm ophthalmic ointment
291                                                                oxytocin
292                                                                palladia
293                                                      visbiome probiotic
294                                                                 atopica
295                                                                fentanyl
296                                                               methadone
297                                                      methylprednisolone
298                                             oravet dental hygiene chews
299                                                     silver sulfadiazine
300                                                                     smz
301                                                        tylosin tartrate
302                                                       allerg-3 capsules
303                                 douxo chlorhexidine + climbazole mousse
304                                                                fipronil
305                                           ketorolac ophthalmic ointment
306                                                               lidocaine
307                                                                   nemex
308                                                               vitamin k
309                                                                 activyl
310                                                           amitriptyline
311                                                                 aspirin
312                                        betamethasone + gentamicin spray
313                                                                     cbd
314                                                     free form snip tips
315                                                                 incurin
316                                                         malaseb shampoo
317                                                miconahex + triz shampoo
318                                 miconazole + dexamethasone ear solution
319                                                             oclacitinib
320                                                                  reglan
321                                           scalibor antiparasitic collar
322                                                                 sotalol
323                                                                  unasyn
324                                                                 zylkene
325                                                         chloramphenicol
326                                                      eicosaderm omega 3
327                                                              fluralaner
328                                           ivermectin + pyrantel pamoate
329                                                              milbeguard
330                                                               piroxicam
331                                                              ranitidine
332                                                          spironolactone
333                                                           t8 keto flush
334                                           terramycin opthalmic ointment
335                                                         triz edta flush
336                                                             tropicamide
337                                                   vetericin wound spray
338                                                              amoxi-tabs
339                                                   chlorhexiderm shampoo
340                                                            clomipramine
341                                                   diawin anti-diarrheal
342                                                         gentacalm spray
343                                                      goodwinol ointment
344                                                                 hycodan
345                                                             mebendazole
346                                                                  naxcel
347                                                                  phycox
348                                                            prostora max
349                                                              tribrissen
350                                                    varl desensitization
351                                                                 vetoryl
352                                                               vitamin e
353                                                 cyclosporine ophthalmic
354                                             douxo chlorhexidine shampoo
355                                                edta ophthalmic ointment
356                                                       free form omega 3
357                                                                  keflex
358                                                       ketochlor shampoo
359                                                               melatonin
360                                                                prazosin
361                                                             proheart 12
362                                                       tylenol + codeine
363                                                             atipamezole
364                                                               body sore
365                                                             clopidogrel
366                                                                conofite
367                                                      denamarin advanced
368                                                           diphenoxylate
369                                                                  ditrim
370                                                               levocrine
371                                                             liver happy
372                                                                 lomotil
373                                                               meclizine
374                                             milbemycin oxime + spinosad
375                                                     phytovet ck shampoo
376                                                       phytovet ck wipes
377                                                      rejensa joint care
378                                                              salmon oil
379                                                             sevoflurane
380                                                             shen calmer
381                                                        sulfadimethoxine
382                                                               synovi g4
383                                                         t-relief arnica
384                                                               torbutrol
385                                                    turkey tail mushroom
386                                                                turmeric
387                                                          3-6-9 fish oil
388                                   allercept allergy immunotherapy drops
389                                                         annamaet endure
390                                                               certifect
391                                                   chlorhexidine shampoo
392                                                              clemastine
393                                                                  conzol
394                                                                 effitix
395                                                             ellevet cbd
396                                                   epiklean ear cleanser
397                                                             finasteride
398                                                          glycopyrrolate
399                                       heska allergy immunotherapy drops
400                                                            itraconazole
401                                           mal-a-ket plus trizedta flush
402                                                               metamucil
403                                                              mexiletine
404                                 neo-poly-gramicidin ophthalmic ointment
405                                                             niacinamide
406                                                      optixcare eye lube
407                                                                   orbax
408                                                                pet-tabs
409                                         phytovet ear cleansing solution
410                                                             plasma-lyte
411                                                                  prozac
412                                                  pyridostigmine bromide
413                                                              selamectin
414                                                              sildenafil
415                                                               solliquin
416                         trizulta + keto + baytril + dexamethasone flush
417                                                                vetmedin
418                                           vetriscience bladder strength
419                                              vetriscience perio support
420                                       vetriscience vetri-mega probiotic
421                                                      activated charcoal
422                                                                  barium
423                         baytril + conofite + dexamethasone ear solution
424                                                             bupivacaine
425                                       burow's solution + hydrocortisone
426                                                               carpaquin
427                                                                  cestex
428                                       chlorhexidine + climbazole mousse
429                                                             cort/astrin
430                                                                  cosopt
431                                                          dha supplement
432                                         dorzolamide ophthalmic ointment
433                                             douxo chlorhexidine ps pads
434                                               douxo chlorhexidine spray
435                                                        firstshield trio
436                                                       flexadin advanced
437                                                                 hydro b
438                                                          l-asparaginase
439                                            lufenuron + milbemycin oxime
440                                                  miconahex + triz spray
441                                                   mycophenolate mofetil
442                                        nolvasan skin and wound cleanser
443                                                                norocarp
444                                                            pantoprazole
445                                                              permethrin
446                                                                simplera
447                                                springtime fresh factors
448                                                              tacrolimus
449                                                   trimeprazine tartrate
450                       veterinarian recommended solutions omega benefits
451                                                               vitamin a
452                                                          wei qi booster
453                                                            activyl plus
454                                                                 alfaxan
455                                                                antirobe
456                  betamethasone + clotrimazole + gentamicin ear solution
457                                                                 bio-mos
458                                                                    ccnu
459                                                               clomicalm
460                                                            coenzyme q10
461                                   conofite + dexamethasone ear solution
462                                                                 cytoxan
463                                                               d-mannose
464                                                    dechra redonyl ultra
465                                                            flaxseed oil
466                                              gnc dog multi-vitamin plus
467                                                             guaifenesin
468                                                          hydrocortisone
469                                                                 kbrovet
470                                                           ketohex wipes
471                                                       kirkland fish oil
472                                                               lactulose
473                                                        neomycin sulfate
474                                                          omega benefits
475                                                      otobiotic ear drop
476                                                            penicillin g
477                                                   penicillin g procaine
478                                                         pharmaseb flush
479                                                         pharmaseb wipes
480                                                       phytovet ck flush
481                                                    remicin ear ointment
482                                                                 robaxin
483                                            rx vitamins biotic probiotic
484                                            standard process ligaplex ii
485                                              synacore digestive support
486                                                               thyrokare
487                                   trizulta + keto + dexamethasone flush
488                                                                  valium
489                                   vetriscience canine plus multivitamin
490                                                          (s)-methoprene
491                                                        advita probiotic
492                                                     aluminium hydroxide
493                                         anti-cd52 monoclonal antibodies
494                                                           baa injection
495                                                                 calcium
496                                                     chlorhexidine wipes
497                                                           chondroprotec
498                                                        dermachlor rinse
499                                                               dermacool
500                                                       dogzymes complete
501                                                             epa omega 3
502                                                                 glandex
503                                                        hexadene shampoo
504                                                              hill's i/d
505                                                                    kelp
506                     ketoconazole + triamcinolone acetonide ear solution
507                                                                 marquis
508                                                         miconahex wipes
509                                                        miconosol lotion
510                                         move free advanced joint health
511                                              normosol-r electrolyte bag
512                                                         ocuvite vitamin
513                                                               oxycodone
514                                                               pet vites
515                                                           petarmor plus
516                                                        preventic collar
517                                                            procarbazine
518                                                         psyllium powder
519                                                     purina calming care
520                                                         sodium chloride
521                                           solid gold seameal supplement
522                                                    springtime longevity
523                                    standard proccess whole body support
524                                                      taurine supplement
525                                                                 toxiban
526                                                           vetguard plus
527                                                               vetriflex
528                                                             vinblastine
529                                                                   1-tdc
530                                                        amikacin sulfate
531                                                           betamethasone
532                                                              bio-sponge
533                                                        burow's solution
534                                                             cas options
535                                                               cefovecin
536                                                                centrine
537                                               chlorhexidine ear cleaner
538                                                ciprofloxacin ophthalmic
539                                                 clenz-a-dent plaque off
540                                                         composure chews
541                                                             cosamin asu
542                                                   cranberry + d-mannose
543                                                                curcumin
544                                                  dermaquin plus omega-3
545                                           dextromethorphan hydrobromide
546                                                             dinotefuran
547                                              douxo chlorhexidine mousse
548                                                    douxo s3 calm mousse
549                                                     douxo s3 pyo mousse
550                                                               dramamine
551                                                              duralactin
552                                               fipronil + (s)-methoprene
553                                                               firocoxib
554                                                            garlic pills
555                                                     geneflora probiotic
556                                                              grapiprant
557                                                            imidacloprid
558  ivermectin + lufenuron + mebendazole + praziquantel + pyrantel pamoate
559                                                              ketoprofen
560                                                              l-theanine
561                                                                   lasix
562                                                       mal-a-ket shampoo
563                                                               melphalan
564                                                               meropenem
565                                                  miconahex + triz wipes
566                                                         microflora plus
567                                                 missing link supplement
568                                                      mometasone furoate
569                                                                 mozotic
570                                                    msm joint supplement
571                                                nature's bounty fish oil
572                                                            nexgard plus
573                                                                  onsior
574                                                       osteo trubenefits
575                                                                 ostifen
576                                                           oxymetazoline
577                                                              pancreplus
578                                                    pentosan polysulfate
579                                                          pentoxifylline
580                                                              phycox max
581                                                      phytovet ck mousse
582                                                      phytovet ket flush
583                                                             pilocarpine
584                                                                  remend
585                                                     royal canin hp diet
586                                                               sarolaner
587                                                              sertraline
588                                                              simeticone
589                                                               sirolimus
590                                                  skinguard restore pads
591                                        standard proccess immune support
592                                               standard process antronex
593                                             standard process ligaplex i
594                                                    standard process pmg
595                                                            theophylline
596                                                                 timolol
597                                                       trizchlor 4 flush
598                                                       trizchlor 4 spray
599                                                     vetraseb tris flush
600                                                                xylazine
601                                                      5 mushroom formula
602                                                               aller-tec
603                                                                 amforal
604                                         aminopentamide hydrogen sulfate
605                                             animal essentials probiotic
606                                                     apple cider vinegar
607                                                                  arnica
608                                                 betadine surgical scrub
609                                                           bpo-3 shampoo
610                                                            capromorelin
611                                                             carboplatin
612                                                             ceftazidime
613                                                          cet toothpaste
614                                                     chlorhexidine spray
615                                                                   cipro
616                                                                convenia
617                                               cosequin maximum strength
618                                                            derm caps es
619                                                                 derma-3
620                                          dermoscent essential 6 spot-on
621                                                      dexamethasone otic
622                                                               diarsanyl
623                                                           dl-methionine
624                                             dogzymes digestive enhancer
625                      dogzymes phyto flex bone joint soft tissue support
626                                                      dogzymes probiotic
627                                                       dogzymes ultimate
628                                                      douxo s3 pyo wipes
629                                                       douxo seb spot on
630                                               dr. harvey's multivitamin
631                                                                  elspar
632                                                           external wind
633                                                    fast track probiotic
634                                                                febantel
635                                                            gent-l-clens
636                                                      grizzly salmon oil
637                                                                 hemp rx
638                                                              hill's z/d
639                                                                   hipep
640                                        hydroplus conofite otic solution
641                                                                imatinib
642                                                                 imodium
643                                                          keto-c shampoo
644                                                         ketohex shampoo
645                                                      ketomax tris flush
646                                                      krillex soft chews
647                                                                laverdia
648                                                             leflunomide
649                                                                 levafen
650                                           life's abundance multivitamin
651                                                               lomustine
652                                                             macrodantin
653                                                   mal-a-ket unspecified
654                                                         malacetic wipes
655                                                 malaseb medicated flush
656                           mebendazole + praziquantel + pyrantel pamoate
657                                                          mega probiotic
658                                                             methimazole
659                                                              mibolerone
660                                                                   nacel
661                                                          natural d-hist
662    neomycin sulfate + nystatin + thiostrepton + triamcinolone acetonide
663                                                          nitrofurantoin
664                                                               novolin n
665                                                  nupro joint supplement
666                                                          oticetic flush
667                                                             otipack emt
668                                                              otipack kc
669                                                                 oxantel
670                                                                paradyne
671                                                              paroxetine
672                                                       pharmaseb shampoo
673                                                             polymyxin b
674                                                primal defense probiotic
675                                                       probios probiotic
676                                                                proquiet
677                                                         pseudoephedrine
678                                                            pyriproxyfen
679                                                               quadruple
680                                                                resortin
681                                            rx vitamins rxcoriolus forte
682                                                                senilife
683                                                               spirulina
684                                       standard proccess adrenal complex
685                                         standard proccess renal support
686                                               standard process immuplex
687                                              standard process symplex f
688                                         standard process thytrophin pmg
689                                                         staphage lysate
690                                                          stasis breaker
691                                                               synovi g3
692                                                                 systane
693                                                            temozolomide
694                                                                     tms
695                                                      triglyceride omega
696                                                              trilostane
697                                                            trimethoprim
698                                                     trizchlor 4 shampoo
699                                                               truprofen
700                    veterinarian recommended solutions osteo trubenefits
701                                                                   vsl#3
702                                                  wonderside flea & tick
703                                                                   xanax
704                                                       xiao chai hu tang
705                                                           acetaminophen
706                                                acetic acid + boric acid
707                                        actt allergy immunotherapy drops
708                                                          adaptil collar
709                                                adored beast liver tonic
710                               allercept allergy immunotherapy injection
711                                            amazing nutritionals omega 3
712                                                       aminocaproic acid
713                                                                 ammonil
714                                                                 anzemet
715                                                              apocaps cx
716                                                        artificial tears
717                                               atropine ophthalmic drops
718                                                                 bactrim
719                      baytil + clotrimazole + dexamethasone ear solution
720                      baytil + ketoconazole + triamincolone ear solution
721                       baytril + dexamethasone + miconazole ear solution
722                                                             bedinvetmab
723                                                benzoyl peroxide shampoo
724    betamethasone + gentamicin sulfate + miconazole nitrate ear solution
725                                                              bio-cardio
726                                                                bismusal
727                                                             blink tears
728                                                      bordetella vaccine
729                                                         bu yang huan wu
730                                                               buspirone
731                                                             cabergoline
732                                                           calming chews
733                                                     cameo otic ointment
734                                                               carprieve
735                                                        cet dental chews
736                                                               chd spray
737                                                                chitosan
738                                                          chlor-trimeton
739                             chondroitin sulfate + glucosamine hcl + msm
740                                                             clorazepate
741                               clotrimazole + dexamethasone ear solution
742                                       collasate silver topical dressing
743                                                            combi-pen-48
744                                               comfort anti-itch shampoo
745                                                           composure pro
746                               conofite + gentocin + hb 101 ear solution
747                                                                coproban
748                                                                cranmate
749                                                               damp heat
750                                          dexasporin ophthalmic ointment
751                                                                 diathal
752                                                           difluprednate
753                                                       digestive enzymes
754                                                               diltiazem
755                                                               dimmitrol
756                                                       douxo s3 calm gel
757                                                   douxo s3 calm shampoo
758                                                     douxo s3 calm spray
759                                                     douxo s3 seb mousse
760                                                       dr mercola collar
761                                          dr mercola complete probiotics
762                                                                   efa1n
763                                                                enroquin
764                                                                  entero
765                                                                epakitin
766                                                                  epipen
767                                                      excel multivitamin
768                                                         farnam super 14
769                                                            fexofenadine
770                                                             florfenicol
771                                                  flurbiprofen eye drops
772                                                                 for-bid
773                                                four leaf rover immunity
774                                                              gastriplex
775                                                                   gax x
776                                                                gi-encap
777                                                               glutamine
778                                                    glyde mobility chews
779                                                       gnc mega fish oil
780                                          green-lipped mussel supplement
781                                                    gut sense probiotics
782                                                                  hb 101
783                                  heska allergy immunotherapy injections
784                                                        hexaderm shampoo
785                                                         hill's gi biome
786                                                              hill's k/d
787                                                                hydromet
788                                                               hylasport
789                                                                   ichon
790                                                                 imuquin
791                                                                  imuran
792                                                            iron dextran
793                                                    keto-tris + ps flush
794                                                                 ketofen
795                                                      ketoseb flush + ps
796                                                       ketoseb ps mousse
797                                                      ketoseb ps shampoo
798                                                               ketotifen
799                                                  kirkman multi-vitamins
800                                                               krill oil
801                                                           ku shen si wu
802                                                               lactoquil
803                                                           laser therapy
804                                                               lixotinic
805                                                    long dan xie gan wan
806                                                               lorazepam
807                                                 lozatom otic suspension
808                                                                  maalox
809                                                   malacetic ultra spray
810                                                           malaseb spray
811                                                               marboquin
812                                                                mestinon
813                                                               miconosol
814                                                            milk thistle
815                                                             misoprostol
816                                                                 mitaban
817                                        mobilityflex recovery supplement
818                                                multi pro multi-vitamins
819                                                                mycequin
820                                                     myos muscle formula
821                                              naturvet digestive enzymes
822                                            naturvet glucosamine ds plus
823                                                              neobacimyx
824                                              neobacimyx + dexamethasone
825            neomycin + nystatin + thiostrepton + triamcinolone acetonide
826                                                               neosporin
827                                                         nexgard spectra
828                                           nizoral anti-dandruff shampoo
829                                                                 nuheart
830                                                              nujoint ds
831                                                            nutrived ofa
832                                                  nutrivet hip and joint
833                                                            occu-support
834                                                      omega efa capsules
835                                                       omega plus thorne
836                                                        omegavia omega-3
837                                           optimmune ophthalmic ointment
838                                                                 ostimax
839                                                               oticarmor
840                                                                otirinse
841                                                         oxytetracycline
842                                                     pala-tech f.a./plus
843                                                             pamidronate
844                                                              pancrezyme
845                                                                  pansec
846                                                            pepto bismol
847                                                            perfect form
848                                                 pet md canine tabs plus
849                                                     pet releaf hemp oil
850                                   platelet-rich plasma (prp) injections
851                                                         power mushrooms
852                                                pramosoothe shampoo + ps
853                                         praziquantel + pyrantel pamoate
854                                                              pregabalin
855                                                       prodent plaqueoff
856                                                           protegrity ez
857                              pure encapsulations m/r/s mushroom formula
858                                                puritan's pride fish oil
859                                                          relief shampoo
860                                                          resi ketochlor
861                                                                resicort
862                                                                rifampin
863                                                   robitussin cough + dm
864                                     royal canin selected protein (duck)
865                                                  rx vitamins hemp forte
866                                                     rx vitamins rx clay
867                                                              safe-guard
868                                                               silvadene
869                                        silver sulfadiazine with insulin
870                                                          simparica trio
871                                                skinguard restore mousse
872                                                            slippery elm
873                                     standard proccess boswellia complex
874                               standard proccess musculoskeletal support
875                                       standard proccess thyroid support
876                                               standard process renafood
877                                                                 super c
878                                                 swimmers ear astringent
879                                             technyflex joint supplement
880                                                            tetracycline
881                                                          theracurmin hp
882                                                         thyroid complex
883                                         trizulta + keto + baytril flush
884            uw veterinary teaching hospiral vaccine against cancer study
885                                                               valuheart
886                               vet solutions universal medicated shampoo
887                                        vetoquinol dermal soothe shampoo
888                                                        vetraseb shampoo
889                                                               vetri-dmg
890                                       vetriscience vetri mega probiotic
891                                        vetropolycin ophthalmic ointment
892                                                               vetstarch
893                                                 virbac allermyl shampoo
894                                                              wind toxin
895                                                             worm shield
896                                                      xue fu zhu yu tang
897                                                 yumove joint supplement
898                                                              zoledronic
899                                                                 3v caps
900                                                                  absorb
901                                                             acidophilus
902                                                              actistatin
903                                        activated charcoal with sorbitol
904                                            adams pentagon flea and tick
905                                                    adaptil travel spray
906                                                              adriamycin
907                                       advanced hip and joint supplement
908                                                        ak-trol ointment
909                                                        alaskan fish oil
910                                          alaway antihistamine eye drops
911                                                               albuterol
912                                         alenza aging support soft chews
913                                                              alfaxalone
914                                                                   algae
915                                                                  alizin
916                                                                 allegra
917                                                               allercaps
918                                                               allerderm
919                                                             allopurinol
920                                                         aloe vera juice
921                                                   aloeclens ear cleaner
922                                                               alpha gpc
923                                                       alpha lipoic acid
924                                           amazing nutritional probiotic
925                                                                 amforol
926                                   amikacin + dexamethasone ear solution
927                                                              amiodarone
928                       angels' eyes natural powder tear stain supplement
929                                                         animal eo evict
930                                      animal pharmaceuticals ear cleaner
931                                              ark naturals gentle digest
932                                                             ashwagandha
933                                                     aurocin ear cleanse
934                                                                avmaquin
935                                      avocado and soybean unsaponifiable
936                                                                  azodyl
937                                                              azulfidine
938                                                            ba zheng wan
939                                                                  baycox
940                     baytril + clotrimazole + triamcinolone ear solution
941                           baytril + conzol + dexamethasone ear solution
942                     baytril + dexamethasone + ketoconazole ear solution
943                        baytril + dexamethasone + silvadene ear solution
944                                       baytril + tobramycin ear solution
945                                    baytril + triamcinolone ear solution
946                         baytril + trizulta + dexamethasone ear solution
947                                                              bee pollen
948                                                                bene-bac
949                                                    benzoyl peroxide gel
950                                                   bernie's perfect poop
951                                                    berte's immune blend
952                                                          betacalm spray
953                                 betamethasone + gentamicin ear solution
954                                                             bethanechol
955                                                          billy no mates
956                                                                bio spot
957                                     bioptimizers magnesium breakthrough
958                                                                  biotin
959                         biovetrex antimicrobial skin and wound cleanser
960                                                   bismuth subsalicylate
961                                                              borage oil
962                                                       boswellia complex
963                                                buck mountain botanicals
964                                                                 bug bam
965                                                              ca support
966                                                               calcifood
967                                                            calming care
968                                                                 calsorb
969                                                           canalevia-ca1
970                                                       caneva supplement
971                                                 canine benefits omega 3
972                                                   canna hemp cbd elixir
973                                             caprylic acid triglycerides
974                                        cardio strength heart supplement
975                                                 cardio strength taurine
976                                                        catalyst omega 3
977                                                               cbd + thc
978                                                              cefa-drops
979                                                               ceftiofur
980                                                    centrum multivitamin
981                                                           cephalosporin
982                                            cerasoothe antiseptic mousse
983                                                          cet oral rinse
984                                                           chlor-a-clens
985   chloramphenicol + ketoconazole + triamcinolone acetonide ear solution
986                                     chlorhexiderm + dexamethasone spray
987                                chlorhexidine + ketoconazole ear cleaner
988                                                    chlorhexidine mousse
989                                                        chlorhexis flush
990                                                          cholestyramine
991                                                         chondro flex ii
992                                               chondroitin sulfate + msm
993                                                           chop protocol
994                                                              cimetidine
995     ciprofloxacin + ketoconazole + triamcinolone acetonide ear solution
996                                                               ckp flush
997                                                clindoral dental filling
998                                                                  clodex
999                                                              clonazepam
1000                                                              clonidine
1001                    clotrimazole + gentamicin + mometasone ear solution
1002                                                       colloidal silver
1003                                                              congaplex
1004                                                              cortalone
1005                                                       cosequin omega 3
1006                                                            cosyntropin
1007                                                           dactinomycin
1008                                                          dechra eicosa
1009                                                                denosyl
1010                                                    dentahex oral rinse
1011                                                    deremabenss shampoo
1012                                                     derma strength pro
1013                                                               dermagel
1014                                              dermallay oatmeal shampoo
1015                                                      dermalyte shampoo
1016                                                      dermazole shampoo
1017                                                  dermoscent atop7 spot
1018                                         dermoscent essential 6 spot on
1019                                                           desmopressin
1020                                                                deter-x
1021                                                       dextromethorphan
1022                                                               dextrose
1023                                                            di tan tang
1024                                                           digest forte
1025                                                 dilute bleach solution
1026                                                 dinoprost tromethamine
1027                                                               dinovite
1028                                                         disc-discovery
1029                                                         dli stem cells
1030                                                             doggybiome
1031                                                    dogzymes cran-tri-c
1032                                                          dogzymes kelp
1033                                                                dolorex
1034                                   douxo chlorhexidine mousse + shampoo
1035                                         douxo chlorhexidine ps shampoo
1036                                                   douxo s3 pyo shampoo
1037                                                                doxepin
1038                                                                doxidyl
1039                                                           doxirobe-gel
1040                                                     dr mercola spot on
1041                                                   dr. becker probiotic
1042             dr. harvey's organic flea and tick herbal protection spray
1043                                             dr. mercola immune balance
1044                                                 dvm daily multivitamin
1045                                          earth animal herbal bug spray
1046                                                           effipro plus
1047                                                              egft/her2
1048                                                             eicosacaps
1049                                                      ellevet hemp chew
1050                                                        endomet paramin
1051                                                              endurosyn
1052                                                             epsom salt
1053                                                           erythromycin
1054                                                                farxiga
1055                                                             fatal plus
1056                             febantel + praziquantel + pyrantel pamoate
1057                                                              felbamate
1058                                                            fenofibrate
1059                                                      ferrum metallicum
1060                                                              fidospore
1061                                                             fiproguard
1062                                                         fiproguard max
1063                                                                flea 4x
1064                                        flexicose joint care supplement
1065                                                             flo-cillin
1066                                                               florajen
1067                                                florazil multiprobiotic
1068                                                            fluticasone
1069                                                           four marvels
1070                                 fresh breath tropiclean water additive
1071                                                        frontline spray
1072                                                       fu zheng support
1073                                                             furadantin
1074                                                             gastricalm
1075                                                        gather vitality
1076                                                         genotcin spray
1077                                             gentak ophthalmic ointment
1078                                   gentamicin + miconazole ear solution
1079                                                gentamicin ear solution
1080                                                   gentamicin eye drops
1081                                                              gentaotic
1082                                                          genteal tears
1083                                                       gexia-zhuyu tang
1084                                 glycanaid maintenance joint supplement
1085                                                      gm np hsa formula
1086                                                  gnc dog hip and joint
1087                                                 gnc taurine supplement
1088                                                          gnc vitamin c
1089                                                               golytely
1090                                                               graviola
1091                                                      grizzly krill oil
1092                                                            gui pi tang
1093                                              happy traveler supplement
1094                                                             harmonease
1095                                           hawaiian organic noni lotion
1096                                                            hepaticlear
1097                                  herb smith microflora plus probiotics
1098                                                         heska granules
1099                                     hexa-caine topical anti-itch spray
1100                                     hibiclens antiseptic skin cleanser
1101                                                             hill's g/d
1102                                        hyaflex pro complete joint care
1103                                                        hyaluronic acid
1104                                                             hydro plus
1105                                                      hydrogen peroxide
1106                                                          hylyt shampoo
1107                                                              hyosephen
1108                                                              hypericum
1109                                                      hypertonic saline
1110                                                        i-drop vet plus
1111                               imidacloprid + permethrin + pyriproxyfen
1112                                                          immpower ahcc
1113                                                         immune support
1114                                                            immunocidin
1115                                                             indoxacarb
1116                                               inflight coat supplement
1117                                                        interferon alfa
1118                                                      intestinal powder
1119     itraconazole + ketoconazole + triamcinolone acetonide ear solution
1120                           ivermectin + praziquantel + pyrantel pamoate
1121                                                        jade windscreen
1122                                             jia wei xue fu zhu yu tang
1123                                                    jin gui shen qi wan
1124                                                jing tang max's formula
1125                                              joint max triple strength
1126                                                              juan bi 1
1127                                                                juniper
1128                                                 k-brovet oral solution
1129                                                            k9 immunity
1130                                                    k9 power puppy gold
1131                                                  k9 power show stopper
1132                                                             kaopectate
1133                                                  ket flush ear cleaner
1134                                                keto-c antiseptic wipes
1135                                                           keto-c flush
1136                                                        ketochlor wipes
1137                                     ketoconazole + chloroxylenol flush
1138                                             ketoconazole chlorhexidine
1139                                                     ketoconazole flush
1140                                                          ketoseb wipes
1141                                                    kidney support gold
1142                                                            kinavet-ca1
1143                                                               kt cream
1144                                                               l-lysine
1145                                                              lapatinib
1146                                                         liqui-tinic 4x
1147                                                             liquichlor
1148                                       liquid health k9 dog ear cleaner
1149                                                        liu jun zi tang
1150                                                   liu wei di huang wan
1151                                                      loranthus formula
1152                                                              lotilaner
1153                                                               lutalyse
1154                                                      lutein supplement
1155                                                                 lyssin
1156                                                      magnesium citrate
1157                                                          magnolia bark
1158                                                              manganese
1159                                                     mangosteen extract
1160                                                               marcaine
1161                                              max chlorhexidine shampoo
1162                                        maxi/guard oral cleansing wipes
1163                                                mediherb bilberry forte
1164                                             medium-chain triglycerides
1165                                                      megestrol acetate
1166                                                   meijer calming chews
1167                                                               meladerm
1168                                                       melanoma vaccine
1169                                                          methazolamide
1170                                                            methio-form
1171                                                             meticorten
1172                                                                micaved
1173                                                       miconahex mousse
1174                                                miconazole ear solution
1175                              milbemycin oxime + oxantel + praziquantel
1176                                        milbemycin oxime + praziquantel
1177                                                                miralax
1178                                                                  mobic
1179                                                             mometazole
1180                                                                movodyl
1181                                                             moxidectin
1182                                                           moxifloxacin
1183                                                                mucinex
1184                                               multi-source glucosamine
1185                                                             myco-forte
1186                                                                mylanta
1187                                                    naphcon-a opthalmic
1188                                                   nature made fish oil
1189                                             nature's miracle probiotic
1190                                 naturvet advanced probiotics & enzymes
1191                                                  naturvet joint health
1192                                            neomycin sulfate + nystatin
1193                  neomycin sulfate + nystatin + triamcinolone acetonide
1194                neomycin sulfate + tetracaine + triamcinolone acetonide
1195                                                              nepafenac
1196                                                nourish essence formula
1197                                                now pets immune support
1198                                                nutra thrive supplement
1199                                                              nutri-cal
1200                                               nutri-flex joint support
1201                                                  nutri-vet ear cleanse
1202                                                  nutri-vet nasty habit
1203                                                              nutrigest
1204                                                 nutripet multi-vitamin
1205                                              nutrivet digestive enzyme
1206                                                      o'paws salmon oil
1207                                             oculenis ocular repair gel
1208                                       old mother hubbard hip and joint
1209                                                              olive oil
1210                                                                omega 3
1211                                                omega benefits fish oil
1212                                                            omega bites
1213                                                            omega tri-v
1214                                                             omega-caps
1215                                             only natural pet probiotic
1216                                                                opcon-a
1217                                                 optipet multi-vitamins
1218                                                      oravet oral rinse
1219                                                             osteo-form
1220                                                                ostilox
1221                                                oti-soothe ear cleanser
1222                                                oticlean-a ear solution
1223                                                                otipack
1224                                                   oxiderm + ps shampoo
1225                                                   oxyfresh ear cleaner
1226                                                                 oxygen
1227                                                pain relief alternative
1228                                                      pain relief spray
1229                                               pala-tech cranberry plus
1230                                       palatech cranberry plus granules
1231                                                  palmitoylethanolamide
1232                                                              panoquell
1233                                                                paw cbd
1234                                                          pet-form tabs
1235                                                          petaction pro
1236                                                    petag sure grow 100
1237                                     petnc natural care calming formula
1238                                                   petthrive soft chews
1239                                                    pharmasal-t shampoo
1240                                                             phosphorus
1241                                                  phycox hypoallergenic
1242                                                             phytomucil
1243                                                      phytovet ck spray
1244                                     phytovet ket flush + dexamethasone
1245                                             phytovet p anti-itch spray
1246                                                                 plasma
1247                                                   platelet transfusion
1248                                                     poloxamer otic gel
1249                                                              potassium
1250                                                     potassium chloride
1251                                                             ppo wormer
1252                                                   pramosoothe hc spray
1253                                                                  pro 5
1254                                                            pro balance
1255                                                              pro-biome
1256                                             probios dispersible powder
1257                                            probios equine one oral gel
1258                                                         probiotic pb 8
1259                                                       prochlorperazine
1260                                                               promeris
1261                                                              promotion
1262                                                            propranolol
1263                                                               protonix
1264                                                                prozyme
1265                                                         pumpkin powder
1266                                pure encapsulations cranberry/d-mannose
1267                                        pure encapsulations probiotic 5
1268                                                         purina ha diet
1269                                                             pyoben gel
1270                                                         qing ying tang
1271                                               quercetin with bromelain
1272                                                              rapamycin
1273                                                  rattlesnake antivenin
1274                                                                rebound
1275                                                              reconcile
1276                                    refresh celluvisc lubricant eye gel
1277                                                          relifor spray
1278                                    renew life ultimate flora probiotic
1279                                                      resisoothe lotion
1280                                                               retacrit
1281                                                            revertidine
1282                                            royal canin satiety support
1283                                                   royal canin ultamino
1284                                                                 rv1001
1285                                                 rx vitamins essentials
1286                                               rx vitamins onco support
1287                                                  rx vitamins phos bind
1288                                                                 saline
1289                                                   sanos dental sealant
1290                                                             schisandra
1291                                                       seasonal support
1292                                                 sentry natural defense
1293                                                      serenity compound
1294                                                              sevelamer
1295                                                        shu jin huo luo
1296                                                              shu jin i
1297                                                              silymarin
1298                                                      skin soother plus
1299                                                      skinguard balance
1300                                          skinguard cleanse ear cleaner
1301                                               skinguard relieve mousse
1302                                              skinguard restore shampoo
1303                                                            skinguard s
1304                                                                 sodium
1305                              spectrum allergy immunotherapy injections
1306                                       spingtime joint health chewables
1307                                                               sporanox
1308                                                      springtime bugoff
1309                                                              squid oil
1310                                  standard proccess chlorophyll complex
1311                                          standard proccess cholacol ii
1312                                    standard proccess lactic acid yeast
1313                                       standard proccess okra pepsin e3
1314                                      standard proccess renatrophin pmg
1315                                             standard process allerplex
1316                                               standard process catalyn
1317                                            standard process spleen pmg
1318                                             standard process symplex m
1319                                                standard process thymex
1320                                       standard process thyroid support
1321                                                              stelfonta
1322                                                             stem cells
1323                                                          stomach happy
1324                                                       strengthen metal
1325                                             sundown naturals probiotic
1326                                                              synthroid
1327                                                         tamarix dioica
1328                                                                tamiflu
1329                                                            terbutaline
1330                                                 therabis stop the itch
1331                                                    thorne multivitamin
1332                                             thuja natural wart remover
1333                                                              thyrocare
1334                                                             trametinib
1335                                                        tranexamic acid
1336                                                               trauma 2
1337                                               tricox trp joint support
1338                                              trixsyn canine hyaluronan
1339                                                     trizchlor 4 mousse
1340                                                      trizchlor 4 wipes
1341                               trizedta + baytril + dexamethasone flush
1342                                               trizedta + baytril flush
1343                            trizedta + dexamethasone + miconazole flush
1344                                                                   tums
1345                                                               tyrosine
1346                                                              ultravist
1347                                              universal animal antidote
1348                                                                uromaxx
1349                                                                vagisil
1350                                                           vedco o.f.a.
1351                                           vet immune professional tabs
1352                                                   vet-kem ovitrol plus
1353                           vetergen hydrocortisone leave on conditioner
1354                                                    vetiq hip and joint
1355                                                    vetoquinol cerumene
1356                                         vetoquinol dermal soothe spray
1357                                                    vetoquinol laxatone
1358                                              vetoquinol viralys powder
1359                                                   vetpro hip and joint
1360                                                    vetraseb ck shampoo
1361                                                      vetraseb ck wipes
1362                                                            vetraseb hc
1363                                                             vetri disc
1364                                                     vetri probiotic bd
1365                                                      vetri repel spray
1366                                                          vetriflex pro
1367                                           vetriscience cardio strength
1368                                        vetriscience taurine supplement
1369                                                               vetromax
1370                                    vetropolycin hc ophthalmic ointment
1371                                                               vetsulin
1372                                                            vinorelbine
1373                                                       viola clear fire
1374                                                      vitacost fish oil
1375                                                vital choice salmon oil
1376                                                               voltaren
1377                                                           voriconazole
1378                                                             vorinostat
1379                                                             walnut oil
1380                         well & good adult level dog joint health chews
1381                                                well & good ear cleaner
1382                                                             wheat germ
1383                                                whole blood transfusion
1384                  wholistic pet organics canine complete joint mobility
1385                                                               wobenzym
1386                                                         xiang lian san
1387                                         xiao chai hu jia qin jiao tang
1388                                                             yi zhi ren
1389                                                                zaditor
1390                                                                 zantac
1391                                     zesty paws cranberry bladder bites
1392                                                   zesty paws probiotic
1393                                                  zesty paws salmon oil
1394                                                             zimecterin
1395                                                               zn7 derm
1396                                                                 zoloft
1397                                                zymox enzymatic shampoo
     Count
1     3611
2     1744
3     1695
4     1579
5     1524
6     1484
7     1254
8     1248
9     1002
10     978
11     941
12     928
13     916
14     855
15     793
16     791
17     772
18     680
19     657
20     616
21     567
22     541
23     517
24     497
25     384
26     373
27     363
28     357
29     306
30     296
31     291
32     291
33     287
34     277
35     275
36     267
37     262
38     249
39     248
40     245
41     235
42     233
43     227
44     225
45     225
46     219
47     218
48     215
49     211
50     207
51     205
52     203
53     199
54     196
55     194
56     192
57     192
58     191
59     186
60     167
61     163
62     161
63     155
64     150
65     137
66     136
67     134
68     134
69     133
70     129
71     126
72     126
73     125
74     120
75     119
76     119
77     118
78     117
79     114
80     110
81     105
82     102
83      99
84      99
85      97
86      97
87      96
88      96
89      95
90      94
91      90
92      88
93      87
94      87
95      86
96      85
97      83
98      82
99      82
100     79
101     79
102     79
103     79
104     75
105     75
106     74
107     73
108     72
109     71
110     71
111     70
112     70
113     70
114     69
115     69
116     69
117     68
118     67
119     66
120     66
121     66
122     64
123     63
124     63
125     63
126     63
127     62
128     62
129     62
130     61
131     60
132     58
133     58
134     58
135     58
136     57
137     56
138     56
139     56
140     55
141     55
142     55
143     54
144     54
145     54
146     54
147     51
148     51
149     51
150     51
151     50
152     49
153     49
154     49
155     48
156     48
157     47
158     47
159     47
160     47
161     46
162     46
163     45
164     45
165     45
166     45
167     44
168     44
169     44
170     43
171     43
172     43
173     42
174     42
175     42
176     41
177     41
178     41
179     41
180     40
181     39
182     39
183     39
184     39
185     39
186     36
187     36
188     36
189     35
190     35
191     35
192     34
193     33
194     33
195     32
196     32
197     32
198     32
199     31
200     31
201     30
202     30
203     30
204     30
205     30
206     29
207     29
208     29
209     28
210     28
211     28
212     28
213     28
214     28
215     26
216     26
217     26
218     26
219     26
220     25
221     25
222     25
223     25
224     25
225     24
226     24
227     24
228     24
229     23
230     23
231     23
232     23
233     23
234     23
235     22
236     22
237     22
238     22
239     22
240     22
241     22
242     21
243     21
244     21
245     21
246     21
247     21
248     21
249     20
250     20
251     20
252     20
253     19
254     19
255     19
256     19
257     19
258     19
259     19
260     18
261     18
262     18
263     18
264     18
265     18
266     18
267     18
268     18
269     18
270     18
271     18
272     17
273     17
274     17
275     17
276     17
277     17
278     17
279     17
280     17
281     17
282     17
283     17
284     16
285     16
286     16
287     16
288     16
289     16
290     16
291     16
292     16
293     16
294     15
295     15
296     15
297     15
298     15
299     15
300     15
301     15
302     14
303     14
304     14
305     14
306     14
307     14
308     14
309     13
310     13
311     13
312     13
313     13
314     13
315     13
316     13
317     13
318     13
319     13
320     13
321     13
322     13
323     13
324     13
325     12
326     12
327     12
328     12
329     12
330     12
331     12
332     12
333     12
334     12
335     12
336     12
337     12
338     11
339     11
340     11
341     11
342     11
343     11
344     11
345     11
346     11
347     11
348     11
349     11
350     11
351     11
352     11
353     10
354     10
355     10
356     10
357     10
358     10
359     10
360     10
361     10
362     10
363      9
364      9
365      9
366      9
367      9
368      9
369      9
370      9
371      9
372      9
373      9
374      9
375      9
376      9
377      9
378      9
379      9
380      9
381      9
382      9
383      9
384      9
385      9
386      9
387      8
388      8
389      8
390      8
391      8
392      8
393      8
394      8
395      8
396      8
397      8
398      8
399      8
400      8
401      8
402      8
403      8
404      8
405      8
406      8
407      8
408      8
409      8
410      8
411      8
412      8
413      8
414      8
415      8
416      8
417      8
418      8
419      8
420      8
421      7
422      7
423      7
424      7
425      7
426      7
427      7
428      7
429      7
430      7
431      7
432      7
433      7
434      7
435      7
436      7
437      7
438      7
439      7
440      7
441      7
442      7
443      7
444      7
445      7
446      7
447      7
448      7
449      7
450      7
451      7
452      7
453      6
454      6
455      6
456      6
457      6
458      6
459      6
460      6
461      6
462      6
463      6
464      6
465      6
466      6
467      6
468      6
469      6
470      6
471      6
472      6
473      6
474      6
475      6
476      6
477      6
478      6
479      6
480      6
481      6
482      6
483      6
484      6
485      6
486      6
487      6
488      6
489      6
490      5
491      5
492      5
493      5
494      5
495      5
496      5
497      5
498      5
499      5
500      5
501      5
502      5
503      5
504      5
505      5
506      5
507      5
508      5
509      5
510      5
511      5
512      5
513      5
514      5
515      5
516      5
517      5
518      5
519      5
520      5
521      5
522      5
523      5
524      5
525      5
526      5
527      5
528      5
529      4
530      4
531      4
532      4
533      4
534      4
535      4
536      4
537      4
538      4
539      4
540      4
541      4
542      4
543      4
544      4
545      4
546      4
547      4
548      4
549      4
550      4
551      4
552      4
553      4
554      4
555      4
556      4
557      4
558      4
559      4
560      4
561      4
562      4
563      4
564      4
565      4
566      4
567      4
568      4
569      4
570      4
571      4
572      4
573      4
574      4
575      4
576      4
577      4
578      4
579      4
580      4
581      4
582      4
583      4
584      4
585      4
586      4
587      4
588      4
589      4
590      4
591      4
592      4
593      4
594      4
595      4
596      4
597      4
598      4
599      4
600      4
601      3
602      3
603      3
604      3
605      3
606      3
607      3
608      3
609      3
610      3
611      3
612      3
613      3
614      3
615      3
616      3
617      3
618      3
619      3
620      3
621      3
622      3
623      3
624      3
625      3
626      3
627      3
628      3
629      3
630      3
631      3
632      3
633      3
634      3
635      3
636      3
637      3
638      3
639      3
640      3
641      3
642      3
643      3
644      3
645      3
646      3
647      3
648      3
649      3
650      3
651      3
652      3
653      3
654      3
655      3
656      3
657      3
658      3
659      3
660      3
661      3
662      3
663      3
664      3
665      3
666      3
667      3
668      3
669      3
670      3
671      3
672      3
673      3
674      3
675      3
676      3
677      3
678      3
679      3
680      3
681      3
682      3
683      3
684      3
685      3
686      3
687      3
688      3
689      3
690      3
691      3
692      3
693      3
694      3
695      3
696      3
697      3
698      3
699      3
700      3
701      3
702      3
703      3
704      3
705      2
706      2
707      2
708      2
709      2
710      2
711      2
712      2
713      2
714      2
715      2
716      2
717      2
718      2
719      2
720      2
721      2
722      2
723      2
724      2
725      2
726      2
727      2
728      2
729      2
730      2
731      2
732      2
733      2
734      2
735      2
736      2
737      2
738      2
739      2
740      2
741      2
742      2
743      2
744      2
745      2
746      2
747      2
748      2
749      2
750      2
751      2
752      2
753      2
754      2
755      2
756      2
757      2
758      2
759      2
760      2
761      2
762      2
763      2
764      2
765      2
766      2
767      2
768      2
769      2
770      2
771      2
772      2
773      2
774      2
775      2
776      2
777      2
778      2
779      2
780      2
781      2
782      2
783      2
784      2
785      2
786      2
787      2
788      2
789      2
790      2
791      2
792      2
793      2
794      2
795      2
796      2
797      2
798      2
799      2
800      2
801      2
802      2
803      2
804      2
805      2
806      2
807      2
808      2
809      2
810      2
811      2
812      2
813      2
814      2
815      2
816      2
817      2
818      2
819      2
820      2
821      2
822      2
823      2
824      2
825      2
826      2
827      2
828      2
829      2
830      2
831      2
832      2
833      2
834      2
835      2
836      2
837      2
838      2
839      2
840      2
841      2
842      2
843      2
844      2
845      2
846      2
847      2
848      2
849      2
850      2
851      2
852      2
853      2
854      2
855      2
856      2
857      2
858      2
859      2
860      2
861      2
862      2
863      2
864      2
865      2
866      2
867      2
868      2
869      2
870      2
871      2
872      2
873      2
874      2
875      2
876      2
877      2
878      2
879      2
880      2
881      2
882      2
883      2
884      2
885      2
886      2
887      2
888      2
889      2
890      2
891      2
892      2
893      2
894      2
895      2
896      2
897      2
898      2
899      1
900      1
901      1
902      1
903      1
904      1
905      1
906      1
907      1
908      1
909      1
910      1
911      1
912      1
913      1
914      1
915      1
916      1
917      1
918      1
919      1
920      1
921      1
922      1
923      1
924      1
925      1
926      1
927      1
928      1
929      1
930      1
931      1
932      1
933      1
934      1
935      1
936      1
937      1
938      1
939      1
940      1
941      1
942      1
943      1
944      1
945      1
946      1
947      1
948      1
949      1
950      1
951      1
952      1
953      1
954      1
955      1
956      1
957      1
958      1
959      1
960      1
961      1
962      1
963      1
964      1
965      1
966      1
967      1
968      1
969      1
970      1
971      1
972      1
973      1
974      1
975      1
976      1
977      1
978      1
979      1
980      1
981      1
982      1
983      1
984      1
985      1
986      1
987      1
988      1
989      1
990      1
991      1
992      1
993      1
994      1
995      1
996      1
997      1
998      1
999      1
1000     1
1001     1
1002     1
1003     1
1004     1
1005     1
1006     1
1007     1
1008     1
1009     1
1010     1
1011     1
1012     1
1013     1
1014     1
1015     1
1016     1
1017     1
1018     1
1019     1
1020     1
1021     1
1022     1
1023     1
1024     1
1025     1
1026     1
1027     1
1028     1
1029     1
1030     1
1031     1
1032     1
1033     1
1034     1
1035     1
1036     1
1037     1
1038     1
1039     1
1040     1
1041     1
1042     1
1043     1
1044     1
1045     1
1046     1
1047     1
1048     1
1049     1
1050     1
1051     1
1052     1
1053     1
1054     1
1055     1
1056     1
1057     1
1058     1
1059     1
1060     1
1061     1
1062     1
1063     1
1064     1
1065     1
1066     1
1067     1
1068     1
1069     1
1070     1
1071     1
1072     1
1073     1
1074     1
1075     1
1076     1
1077     1
1078     1
1079     1
1080     1
1081     1
1082     1
1083     1
1084     1
1085     1
1086     1
1087     1
1088     1
1089     1
1090     1
1091     1
1092     1
1093     1
1094     1
1095     1
1096     1
1097     1
1098     1
1099     1
1100     1
1101     1
1102     1
1103     1
1104     1
1105     1
1106     1
1107     1
1108     1
1109     1
1110     1
1111     1
1112     1
1113     1
1114     1
1115     1
1116     1
1117     1
1118     1
1119     1
1120     1
1121     1
1122     1
1123     1
1124     1
1125     1
1126     1
1127     1
1128     1
1129     1
1130     1
1131     1
1132     1
1133     1
1134     1
1135     1
1136     1
1137     1
1138     1
1139     1
1140     1
1141     1
1142     1
1143     1
1144     1
1145     1
1146     1
1147     1
1148     1
1149     1
1150     1
1151     1
1152     1
1153     1
1154     1
1155     1
1156     1
1157     1
1158     1
1159     1
1160     1
1161     1
1162     1
1163     1
1164     1
1165     1
1166     1
1167     1
1168     1
1169     1
1170     1
1171     1
1172     1
1173     1
1174     1
1175     1
1176     1
1177     1
1178     1
1179     1
1180     1
1181     1
1182     1
1183     1
1184     1
1185     1
1186     1
1187     1
1188     1
1189     1
1190     1
1191     1
1192     1
1193     1
1194     1
1195     1
1196     1
1197     1
1198     1
1199     1
1200     1
1201     1
1202     1
1203     1
1204     1
1205     1
1206     1
1207     1
1208     1
1209     1
1210     1
1211     1
1212     1
1213     1
1214     1
1215     1
1216     1
1217     1
1218     1
1219     1
1220     1
1221     1
1222     1
1223     1
1224     1
1225     1
1226     1
1227     1
1228     1
1229     1
1230     1
1231     1
1232     1
1233     1
1234     1
1235     1
1236     1
1237     1
1238     1
1239     1
1240     1
1241     1
1242     1
1243     1
1244     1
1245     1
1246     1
1247     1
1248     1
1249     1
1250     1
1251     1
1252     1
1253     1
1254     1
1255     1
1256     1
1257     1
1258     1
1259     1
1260     1
1261     1
1262     1
1263     1
1264     1
1265     1
1266     1
1267     1
1268     1
1269     1
1270     1
1271     1
1272     1
1273     1
1274     1
1275     1
1276     1
1277     1
1278     1
1279     1
1280     1
1281     1
1282     1
1283     1
1284     1
1285     1
1286     1
1287     1
1288     1
1289     1
1290     1
1291     1
1292     1
1293     1
1294     1
1295     1
1296     1
1297     1
1298     1
1299     1
1300     1
1301     1
1302     1
1303     1
1304     1
1305     1
1306     1
1307     1
1308     1
1309     1
1310     1
1311     1
1312     1
1313     1
1314     1
1315     1
1316     1
1317     1
1318     1
1319     1
1320     1
1321     1
1322     1
1323     1
1324     1
1325     1
1326     1
1327     1
1328     1
1329     1
1330     1
1331     1
1332     1
1333     1
1334     1
1335     1
1336     1
1337     1
1338     1
1339     1
1340     1
1341     1
1342     1
1343     1
1344     1
1345     1
1346     1
1347     1
1348     1
1349     1
1350     1
1351     1
1352     1
1353     1
1354     1
1355     1
1356     1
1357     1
1358     1
1359     1
1360     1
1361     1
1362     1
1363     1
1364     1
1365     1
1366     1
1367     1
1368     1
1369     1
1370     1
1371     1
1372     1
1373     1
1374     1
1375     1
1376     1
1377     1
1378     1
1379     1
1380     1
1381     1
1382     1
1383     1
1384     1
1385     1
1386     1
1387     1
1388     1
1389     1
1390     1
1391     1
1392     1
1393     1
1394     1
1395     1
1396     1
1397     1

~1400 medication names

Full list (desc) of ingredients :

med_ingredients_count <- ingredients %>%
  count(medication_ingredients, name = "Count") %>%
  arrange(desc(Count))
med_ingredients_count
                                                                                                                                                          medication_ingredients
1                                                                                                                                                   ivermectin, pyrantel pamoate
2                                                                                                                                                                      carprofen
3                                                                                                                                                                  metronidazole
4                                                                                                                                                                     afoxolaner
5                                                                                                                                                    lufenuron, milbemycin oxime
6                                                                                                                                                                     cephalexin
7                                                                                                                                                           cefpodoxime proxetil
8                                                                                                                                                                    oclacitinib
9                                                                                                                                                                     ivermectin
10                                                                                                                                                              milbemycin oxime
11                                                                                                                                                                    prednisone
12                                                                                                                                                                    fluralaner
13                                                                                                                                            amoxicillin, clavulanate potassium
14                                                                                                                                                            maropitant citrate
15                                                                                                                                                      fipronil, (s)-methoprene
16                                                                                                                                                    milbemycin oxime, spinosad
17                                                                                                                                                                    gabapentin
18                                                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
19                                                                                                                                                                   doxycycline
20                                                                                                                                                                   amoxicillin
21                                                                                                                                                                    lokivetmab
22                                                                                                                                                                     probiotic
23                                                                                                                                                                 levothyroxine
24                                                                                                                                                                      tramadol
25                                                                                                                                                                       omega 3
26                                                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27                                                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28                                                                                                                               betamethasone, clotrimazole, gentamicin sulfate
29                                                                                                                                                                  fenbendazole
30                                                                                                                                                                  enrofloxacin
31                                                                                                                                                                     meloxicam
32                                                                                                                                                                     trazodone
33                                                                                                                                             betamethasone, gentamicin sulfate
34                                                                                                                                                               diphenhydramine
35                                                                                                                                                                    famotidine
36                                                                                                                                                              pyrantel pamoate
37                                                                                                                                         dinotefuran, permethrin, pyriproxyfen
38                                                                                                                                                    imidacloprid, pyriproxyfen
39                                                                                                                                                                   clindamycin
40                                                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
41                                                                                                                                                                     sarolaner
42                                                                                                                                                polysulfated glycosaminoglycan
43                                                                                                                                                                     deracoxib
44                                                                                                                                                milbemycin oxime, praziquantel
45                                                                                                                                  florfenicol, mometasone furoate, terbinafine
46                                                                                                                                                                    grapiprant
47                                                                                                                                    ivermectin, praziquantel, pyrantel pamoate
48                                                                                                                                                                    selamectin
49                                                                                                                                                                 dexamethasone
50                                                                                                                                                                   hydroxyzine
51                                                                                                                                                                     firocoxib
52                                                                                                                                                          prednisolone acetate
53                                                                                                                                                      flumethrin, imidacloprid
54                                                                                                                                mometasone furoate, orbifloxacin, posaconazole
55                                                                                                                                             trimeprazine tartrate, prednisone
56                                                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
57                                                                                                                                                                    sucralfate
58                                                                                                                                                              sulfadimethoxine
59                                                                                                                                                                    moxidectin
60                                                                                                                                                              tylosin tartrate
61                                                                                                                                                                  acepromazine
62                                                                                                                                     lufenuron, milbemycin oxime, praziquantel
63                                                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
64                                                                                                                                                                  ketoconazole
65                                                                                                                                                                    omeprazole
66                                                                                                                                                                    cetirizine
67                                                                                                                                                       ketoconazole, tris-edta
68                                                                                                                                                                      spinosad
69                                                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
70                                                                                                                                            fipronil, permethrin, pyriproxyfen
71                                                                                                                                                                    fluoxetine
72                                                                                                                                                          digestive supplement
73                                                                                                                                      febantel, praziquantel, pyrantel pamoate
74                                                                                                                                dexamethasone, neomycin sulfate, thiabendazole
75                                                                                                                                                                 ciprofloxacin
76                                                                                                                                                                     thyroxine
77                                                                                                                                                               dexmedetomidine
78                                                                                                                                                       triamcinolone acetonide
79                                                                                                                                                      imidacloprid, permethrin
80                                                                                                                                                           phenylpropanolamine
81                                                                                                                                                                      propofol
82                                                                                                                                                                  multivitamin
83                                                                                                                                                          butorphanol tartrate
84                                                                                                                                                                    alprazolam
85                                                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
86                                                                                                                                                                     vitamin b
87                                                                                                                                                                  praziquantel
88                                                                                                                                        joint supplement (glucosamine hcl/msm)
89                                                                                                                                                                   bedinvetmab
90                                                                                                                                                                       taurine
91                                                                                                                                                                 marbofloxacin
92                                                                                                                                                                     mupirocin
93                                                                                                                                       betamethasone, florfenicol, terbinafine
94                                                                                                                                                              liver supplement
95                                                                                                                                                                metoclopramide
96                                                                                                                                                sulfamethoxazole, trimethoprim
97                                                                                                                                                                 levetiracetam
98                                                                                                                                                                 phenobarbital
99                                                                                                                                                       chlorhexidine gluconate
100                                                                                                                                                                buprenorphine
101                                                                                                                                           joint supplement (glucosamine hcl)
102                                                                                                                                                     urinary tract supplement
103                                                                                                                                                                    cefovecin
104                                                                                                                                               praziquantel, pyrantel pamoate
105                                                                                                                                                                methocarbamol
106                                                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
107                                                                                                                                                                   diclofenac
108                                                                                                                                                                yunnan baiyao
109                                                                                                                                                     imidacloprid, moxidectin
110                                                                                                                                                                   ampicillin
111                                                                                                                                              ear cleaner (epi-otic advanced)
112                                                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
113                                                                                                                                                                     ketamine
114                                                                                                                                                                     fipronil
115                                                                                                                                                                  ondansetron
116                                                                                                                                                         prebiotic, probiotic
117                                                                                                                                                                     diazepam
118                                                                                                                                                                    midazolam
119                                                                                                                                                                 cyclosporine
120                                                                                                                                          ear cleaner (zymox), hydrocortisone
121                                                                                                                                                                hydromorphone
122                                                                                                                                                     joint supplement (other)
123                                                                                                                                                           miconazole nitrate
124                                                                                                                                                           methylprednisolone
125                                                                                                                                                             atropine sulfate
126                                                                                                                                                                  fluconazole
127                                                                                                                                                                  minocycline
128                                                                                                                                           chlorhexidine gluconate, ophytrium
129                                                                                                                                                                   pimobendan
130                                                                                                                                                                   tobramycin
131                                                                                                                                        chlorhexidine gluconate, ketoconazole
132                                                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
133                                                                                                                                                    immune support supplement
134                                                                                                                                                                    lotilaner
135                                                                                                                                                           calming supplement
136                                                                                                                                                                    lufenuron
137                                                                                                                                                                    cefazolin
138                                                                                                                                          allergy immunotherapy - unspecified
139                                                                                                                                                       cyphenothrin, fipronil
140                                                                                                                                   dextromethorphan hydrobromide, guaifenesin
141                                                                                                                                                                    vitamin c
142                                                                                                                                                                    enalapril
143                                                                                                                                                                   loratadine
144                                                                                                                                                                   zonisamide
145                                                                                                                                                                  hydrocodone
146                                                                                                                                                          ear cleaner (zymox)
147                                                                                                                                                                 chlorambucil
148                                                                                                                                                                   isoflurane
149                                                                                                                                   toothpaste/dental health solution or chews
150                                                                                                                                                                    ketorolac
151                                                                                                                                                                    ofloxacin
152                                                                                                                                                      acetic acid, boric acid
153                                                                                                                                                                 capromorelin
154                                                                                                                                                     homatropine, hydrocodone
155                                                                                                                                                   lactated ringer's solution
156                                                                                                                                                       unspecified medication
157                                                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
158                                                                                                                                            allergy immunotherapy - injection
159                                                                                                                                                                   amantadine
160                                                                                                                                                                   budesonide
161                                                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
162                                                                                                                                                            potassium bromide
163                                                                                                                                                                 azithromycin
164                                                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
165                                                                                                                                                              cbd or hemp oil
166                                                                                                                                                               chlorphenamine
167                                                                                                                                                allergy immunotherapy - drops
168                                                                                                                                                              apomorphine hcl
169                                                                                                                                                                  atipamezole
170                                                                                                                                                                    ponazuril
171                                                                                                                                       cyphenothrin, fipronil, (s)-methoprene
172                                                                                                                                                                     ursodiol
173                                                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
174                                                                                                                                                        clorsulon, ivermectin
175                                                                                                                                                                  telmisartan
176                                                                                                                                            enrofloxacin, silver sulfadiazine
177                                                                                                                                                             phytosphingosine
178                                                                                                                                                                    carvacrol
179                                                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
180                                                                                                                                                     skin and coat supplement
181                                                                                                                                                            vision supplement
182                                                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
183                                                                                                                                                                 imidacloprid
184                                                                                                                                                                     morphine
185                                                                                                                                                               benazepril hcl
186                                                                                                                                             burow's solution, hydrocortisone
187                                                                                                                                  chlorhexidine gluconate, miconazole nitrate
188                                                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
189                                                                                                                                                         dorzolamide, timolol
190                                                                                                                                                             cyclophosphamide
191                                                                                                                                                           diethylstilbestrol
192                                                                                                                                                                  doxorubicin
193                                                                                                                                                                  mirtazapine
194                                                                                                                                                                   loperamide
195                                                                                                                                                                  vincristine
196                                                                                                                                                                   amlodipine
197                                                                                                                                                           gentamicin sulfate
198                                                                                                                                                                   nitenpyram
199                                                                                                                                                 ormetoprim, sulfadimethoxine
200                                                                                                                                                                    vitamin d
201                                                                                                                                                                 azathioprine
202                                                                                                                                            dexamethasone, miconazole nitrate
203                                                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
204                                                                                                                                                                   furosemide
205                                                                                                                                                                  terbinafine
206                                                                                                                                                                    cisapride
207                                                                                                                                                        tiletamine, zolazepam
208                                                                                                                        acetic acid, boric acid, hydrocortisone, ketoconazole
209                                                                                                                                                                  coconut oil
210                                                                                                                                                                 flurbiprofen
211                                                                                                                                                                  l-carnitine
212                                                                                                                                                                   penicillin
213                                                                                                                                                                sulfasalazine
214                                                                                                                                                        ampicillin, sulbactam
215                                                                                                                                                                 clomipramine
216                                                                                                                                                                      codeine
217                                                                                                                                                                  latanoprost
218                                                                                                                                                          silver sulfadiazine
219                                                                                                                                       joint supplement (chondroitin sulfate)
220                                                                                                                                                                     oxytocin
221                                                                                                                                                                    toceranib
222                                                                                                                                               unspecified thyroid medication
223                                                                                                                                                                     fentanyl
224                                                                                                                                                                    methadone
225                                                                                                                                                             sulfamethoxazole
226                                                                                                                                                                   indoxacarb
227                                                                                                                                                                    lidocaine
228                                                                                                                                                                   trilostane
229                                                                                                                                                    unspecified otic ear pack
230                                                                                                                                                                    vitamin k
231                                                                                                                                                                amitriptyline
232                                                                                                                                                                      aspirin
233                                                                                                                                              atropine sulfate, diphenoxylate
234                                                                                                                                           chlorhexidine gluconate, tris-edta
235                                                                                                                                                                 deltamethrin
236                                                                                                                                                                      estriol
237                                                                                                                                                                   ranitidine
238                                                                                                                                                                      sotalol
239                                                                                                                                                       acetaminophen, codeine
240                                                                                                                                                                       arnica
241                                                                                                                                                              chloramphenicol
242                                                                                                                                                            hypochlorous acid
243                                                                                                                                                 oxytetracycline, polymyxin b
244                                                                                                                                                                    piroxicam
245                                                                                                                                                               spironolactone
246                                                                                                                                                                    tris-edta
247                                                                                                                                                                  tropicamide
248                                                                                                                                                               (s)-methoprene
249                                                                                                                    activated charcoal, bismuth subsalicylate, kaolin, pectin
250                                                                                                                                                                   benzocaine
251                                                                                                                                                             ceftiofur sodium
252                                                                                                                                                     kidney health supplement
253                                                                                                                                                                  mebendazole
254                                                                                                                                                                    ophytrium
255                                                                                                                                                   sulfadiazine, trimethoprim
256                                                                                                                                                                    vitamin e
257                                                                                                                                                  chloroxylenol, ketoconazole
258                                                                                                                              dexamethasone, enrofloxacin, miconazole nitrate
259                                                                                                                                                                         edta
260                                                                                                                                               ketoconazole, phytosphingosine
261                                                                                                                                                                    melatonin
262                                                                                                                                                                     prazosin
263                                                                                                                                                       pyridostigmine bromide
264                                                                                                                                                   thyroid support supplement
265                                                                                                                                                   unspecified shampoo/mousse
266                                                                                                                                                                       barium
267                                                                                                                                                                    body sore
268                                                                                                                                                                  clopidogrel
269                                                                                                                                                                diphenoxylate
270                                                                                                                                                               hydrocortisone
271                                                                                                                                                                 itraconazole
272                                                                                                                                                                  liver happy
273                                                                                                                                                                    lomustine
274                                                                                                                                                                    meclizine
275                                                                                                                                                                  omega 3-6-9
276                                                                                                                                                                 pantoprazole
277                                                                                                                                             phytosphingosine, salicylic acid
278                                                                                                                                                                    pramoxine
279                                                                                                                                                                  sevoflurane
280                                                                                                                                                                  shen calmer
281                                                                                                                                                  sulfadimidine, trimethoprim
282                                                                                                                                                                     turmeric
283                                                                                                                                                                  bupivacaine
284                                                                                                                                                                      calcium
285                                                                                              carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
286                                                                                                                             chlorhexidine gluconate, ketoconazole, tris-edta
287                                                                                                                                                          clemastine fumarate
288                                                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
289                                                                                                                                                                  finasteride
290                                                                                                                                                         fipronil, permethrin
291                                                                                                                                                               glycopyrrolate
292                                                                                                                                                                   mexiletine
293                                                                                                                                    neomycin sulfate, polymyxin b, gramicidin
294                                                                                                                                                                  niacinamide
295                                                                                                                                                                 orbifloxacin
296                                                                                                                                                                  plasma-lyte
297                                                                                                                                             propylene glycol, salicylic acid
298                                                                                                                                                                   sildenafil
299                                                                                                                                           unspecified heartworm preventative
300                                                                                                                                                           activated charcoal
301                                                                                                                                                                   alfaxalone
302                                                                                                                                              aminopentamide hydrogen sulfate
303                                                                                                                                                                      amitraz
304                                                                                                                                                             benzoyl peroxide
305                                                                                                                                    chlorhexidine gluconate, phytosphingosine
306                                                                                                                                                dextromethorphan hydrobromide
307                                                                                                                                                                  dorzolamide
308                                                                                                                                                                  epsiprantel
309                                                                                                                                                                  guaifenesin
310                                                                                                                                                               l-asparaginase
311                                                                                                                                                        mycophenolate mofetil
312                                                                                                                                                               nitrofurantoin
313                                                                                                                                                                 penicillin g
314                                                                                                                                                                   permethrin
315                                                                                                                                                  rx diet - digestive support
316                                                                                                                                                                   tacrolimus
317                                                                                                                                                        trimeprazine tartrate
318                                                                                                                                                       unspecified supplement
319                                                                                                                                                                    vitamin a
320                                                                                                                                                               wei qi booster
321                                                                                                                                                 afoxolaner, milbemycin oxime
322                                                                                                                               beclomethasone, clotrimazole, neomycin sulfate
323                                                                                                                                                        bismuth subsalicylate
324                                                                                                                                                                 coenzyme q10
325                                                                                                                                                                     curcumin
326                                                                                                                                       dexamethasone, ketoconazole, tris-edta
327                                                                                                                                                                dl-methionine
328                                                                                                                                                                     flaxseed
329                                                                                                                                                       indoxacarb, permethrin
330                                                                                                                                                       joint supplement (msm)
331                                                                                                                                                                         kelp
332                                                                                                                                                                   ketoprofen
333                                                                                                                                                                    lactulose
334                                                                                                                                                             neomycin sulfate
335                                                                                                                                                                    omega 3-6
336                                                                                                                                                                oxymetazoline
337                                                                                                                                                        penicillin g procaine
338                                                                                                                                                                  simethicone
339                                                                                                                         acepromazine, atropine sulfate, butorphanol tartrate
340                                                                                                                                         activated charcoal, kaolin, sorbitol
341                                                                                                                                                          aluminium hydroxide
342                                                                                                                                                        anal gland supplement
343                                                                                                                                              anti-cd52 monoclonal antibodies
344                                                                                                                                                       coprophagia supplement
345                                                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
346                                                                                                                                                        electrolyte injection
347                                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
348                                                                                                                                        ketoconazole, triamcinolone acetonide
349                                                                                                                                                                      menthol
350                                                                                                                                                                    oxycodone
351                                                                                                                                                     permethrin, pyriproxyfen
352                                                                                                                                                  polyvinyl alcohol, povidone
353                                                                                                                                                                 procarbazine
354                                                                                                                                  rx diet - hypoallergenic hydrolyzed protein
355                                                                                                                                seasonal and environmental allergy supplement
356                                                                                                                                                                   sertraline
357                                                                                                                                                                    sirolimus
358                                                                                                                                                              sodium chloride
359                                                                                                                                                      unspecified ear cleaner
360                                                                                                                                                unspecified herbal supplement
361                                                                                                                                                                  vinblastine
362                                                                                                                                                                        algae
363                                                                                                                                                             amikacin sulfate
364                                                                                                                                                                betamethasone
365                                                                                                                                                             burow's solution
366                                                                                                                                                   cardiac support supplement
367                                                                                                                           chlorhexidine gluconate, hydrocortisone, tris-edta
368                                                                                                                                                         cognitive supplement
369                                                                                                                                                               corneal repair
370                                                                                                                                                               dimenhydrinate
371                                                                                                                     dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
372                                                                                                                                                                  dinotefuran
373                                                                                                                                                                       garlic
374                                                                                                           ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
375                                                                                                                           joint supplement (other), skin and coat supplement
376                                                                                                                                                                    ketotifen
377                                                                                                                                                              lung supplement
378                                                                                                                                                                    melphalan
379                                                                                                                                                                    meropenem
380                                                                                                                                                           mometasone furoate
381                                                                                                                                                         pentosan polysulfate
382                                                                                                                                                               pentoxifylline
383                                                                                                                                                                  pilocarpine
384                                                                                                                                                          polyethylene glycol
385                                                                                                                                                                  robenacoxib
386                                                                                                                                                                 theophylline
387                                                                                                                                                                      timolol
388                                                                                                                                                   unspecified ear medication
389                                                                                                                                                                     xylazine
390                                                                                                                                                   acetaminophen, hydrocodone
391                                                                                                                                                               acetylcysteine
392                                                                                                                                                                      amforal
393                                                                                                                                                                   amino acid
394                                                                                                                                                          apple cider vinegar
395                                                                                                          bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
396                                                                                                                         burow's solution, hydrocortisone, miconazole nitrate
397                                                                                                                                                                  carboplatin
398                                                                                                                                          cedarwood oil, rosemary oil, sesame
399                                                                                                                                                                  ceftazidime
400                                                                                                                                   chloroxylenol, lactic acid, salicylic acid
401                                                                                                                                                  clotrimazole, dexamethasone
402                                                                                                                                   digestive supplement, prebiotic, probiotic
403                                                                                                                         dimethyl sulfoxide, flunixin, fluocinolone acetonide
404                                                                                                                                                                       elspar
405                                                                                                                                                     endocrine system support
406                                                                                                                    enrofloxacin, miconazole nitrate, triamcinolone acetonide
407                                                                                                                                                                external wind
408                                                                                                                                                                     febantel
409                                                                                                                                                                 fexofenadine
410                                                                                                                                             general female health supplement
411                                                                                                                                                                     geraniol
412                                                                                                                                                 hydrocortisone, ketoconazole
413                                                                                                                                                                     imatinib
414                                                                                                                                                 ketoconazole, hydrocortisone
415                                                                                                                                                                  leflunomide
416                                                                                                                                  mebendazole, praziquantel, pyrantel pamoate
417                                                                                                                                                                   mibolerone
418                                                                                                                                                                  nph insulin
419                                                                                                                                  over-the-counter unmedicated shampoo/mousse
420                                                                                                                                                                      oxantel
421                                                                                                                                                                   paroxetine
422                                                                                                                                                                  polymyxin b
423                                                                                                                                                              povidone-iodine
424                                                                                                                                                              pseudoephedrine
425                                                                                                                                                      puppy growth supplement
426                                                                                                                                                                 pyriproxyfen
427                                                                                                                                          rx diet - skin and food sensitivity
428                                                                                                                                           staphylococcus aureus phage lysate
429                                                                                                                                                               stasis breaker
430                                                                                                                                                                 temozolomide
431                                                                                                                                                                   thiamazole
432                                                                                                                                      transcranial magnetic stimulation (tms)
433                                                                                                                                                                 trimethoprim
434                                                                                                                                                       unspecified antibiotic
435                                                                                                                                                   unspecified eye medication
436                                                                                                                                    unspecified herbal flea/tick preventative
437                                                                                                                                                          unspecified vitamin
438                                                                                                                                                                   verdinexor
439                                                                                                                                                            xiao chai hu tang
440                                                                                                                                                                acetaminophen
441                                                                                                      acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
442                                                                                                                                     aluminium hydroxide, magnesium hydroxide
443                                                                                                                                                            aminocaproic acid
444                                                                                                                                                    amylase, lipase, protease
445                                                                                                                                                         apoptosis supplement
446                                                                                      betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
447                                                                                                                        betamethasone, gentamicin sulfate, miconazole nitrate
448                                                                                                                                                     betamethasone, ofloxacin
449                                                                                                                                                    bordetella bronchiseptica
450                                                                                                                                                              bu yang huan wu
451                                                                                                                                                                    buspirone
452                                                                                                                 butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
453                                                                                                                                                                  cabergoline
454                                 cassia bark, colloidal silicon dioxide, clove, eucalyptus, isopropyl myristrate, lanolin, mineral oil, origanum, vitamin e, white petrolatum
455                                                                                                                           ceramide iii, chlorhexidine gluconate, microsilver
456                                                                                                                                                                     chitosan
457                                                                                                                             chlorhexidine gluconate, enrofloxacin, tris-edta
458                                                                                                                            chloroxylenol, salicylic acid, sodium thiosulfate
459                                                                                                                                   clinical trial - cancer prevention vaccine
460                                                                                                                                                                  clorazepate
461                                                                                                                                    clotrimazole, dexamethasone, enrofloxacin
462                                                                                                                                                                    damp heat
463                                                                                                                                                               dental sealant
464                                                                                                                                                  dexamethasone, enrofloxacin
465                                                                                                                                                    dexamethasone, penicillin
466                                                                                             diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
467                                                                                                                                                   diethylcarbamazine citrate
468                                                                                                                                                                difluprednate
469                                                                                                                                                                    diltiazem
470                                                                                                                                                       dinoprost tromethamine
471                                                                                                                                                      diphemanil metilsulfate
472                                                                                                                                                                   dolasetron
473                                                                                                                                                       ear astringent (vedco)
474                                                                                                                                ear cleaner (epi-otic advanced), ketoconazole
475                                                                                                                                                       ear cleaner (otirinse)
476                                                                                                                                        enrofloxacin, ketoconazole, tris-edta
477                                                                                                                                        enrofloxacin, triamcinolone acetonide
478                                                                                                                                                                  epinephrine
479                                                                                                                                                                  florfenicol
480                                                                                                                                                    hydrocortisone, pramoxine
481                                                                                                                                         hydroxyethyl starch, sodium chloride
482                                                                                                                                                                 iron dextran
483                                                                                                                                   joint supplement (chondroitin sulfate/msm)
484                                                                                                                                               joint supplement (unspecified)
485                                                                                                                                                                ku shen si wu
486                                                                                                                                                                laser therapy
487                                                                                                                                                               liquid bandage
488                                                                                                                                                         long dan xie gan wan
489                                                                                                                                                                    lorazepam
490                                                                                                                                                   medium-chain triglycerides
491                                                                                                                                      milbemycin oxime, oxantel, praziquantel
492                                                                                                                                                                 milk thistle
493                                                                                                                                                                  misoprostol
494                                                                                                                                      moxidectin, pyrantel pamoate, sarolaner
495                                                                                                                                                   musculoskeletal supplement
496                                                                                                                                             naphazoline, pheniramine maleate
497                                                                                                                                              over-the-counter wound dressing
498                                                                                                                                                                  pamidronate
499                                                                                                                               penicillin g benzathine, penicillin g procaine
500                                                                                                                                                  phytosphingosine, pramoxine
501                                                                                                                                                            piroctone olamine
502                                                                                                                                        platelet-rich plasma (prp) injections
503                                                                                                                                                  pramoxine, phytosphingosine
504                                                                                                                                                                   pregabalin
505                                                                                                                                                                     rifampin
506                                                                                                                                                                      rx clay
507                                                                                                                                                       rx diet - renal health
508                                                                                                                                            rx diet - selected protein (duck)
509                                                                                                                                                silver oxide, type i collagen
510                                                                                                                                                 silver sulfadiazine, insulin
511                                                                                                                                                                 slippery elm
512                                                                                                                                                          sodium hypochlorite
513                                                                                                                                                                 tetracycline
514                                                                                                                                                                  unspecified
515                                                                                                                                               unspecified allergy medication
516                                                                                                                                                       unspecified antiseptic
517                                                                                                                                             unspecified digestive medication
518                                                                                                                                                                   wind toxin
519                                                                                                                                                           xue fu zhu yu tang
520                                                                                                                                                              zoledronic acid
521                                                                                                                                                  acepromazine, hydromorphone
522                                                                                                                                                       acepromazine, ketamine
523 aconite, arnica, belladona, calendula, chamomile, daisy, echinacea, hepar sulphur, hypericum perforatum, mercurius solubilis, millefolium, symphytum officinale, witch hazel
524                                                                                                                                                   activated charcoal, kaolin
525                                                                                                                                                 activated charcoal, sorbitol
526                                                                                                                                                                 aglepristone
527                                                                                                                                                            albuterol sulfate
528                                                                                                                                                                  allopurinol
529                                                                                                                                                                    aloe vera
530                                                                                                                        aluminium hydroxide, magnesium hydroxide, simethicone
531                                                                                                                                              amikacin sulfate, dexamethasone
532                                                                                                                amikacin sulfate, gentamicin sulfate, triamcinolone acetonide
533                                                                                                                                         amikacin sulfate, miconazole nitrate
534                                                                                                                                                                   amiodarone
535                                                                                                                                                        amitraz, metaflurimon
536                                                                                                                                                                  antioxidant
537                                                                                                                                                                  ashwagandha
538                                                                                                                               attapulgite, bismuth subcarbonate, kanamycin a
539                                                                                                                                attapulgite, bismuth subsalicylate, kanamycin
540                                                                                                                                                                 ba zheng wan
541                                                                                                                             bacitracin zinc, miconazole nitrate, polymyxin b
542                                                                                                                                                   bacitracin, hydrocortisone
543                                                                                                                                                                   bee pollen
544                                                                                                                                          belladonna alkaloids, phenobarbital
545                                                                                                                                             benzethonium chloride, lidocaine
546                                                                                                                                                       benzocaine, resorcinol
547                                                                                                            benzoic acid, chlorhexidine gluconate, malic acid, salicylic acid
548                                                                                                                   benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
549                                                                                                                                             benzoyl peroxide, salicylic acid
550                                                                                                                                 betamethasone, chloramphenicol, ketoconazole
551                                                                                                          betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
552                                                                                                                                                  betamethasone, enrofloxacin
553                                                                                                                                                    betamethasone, tobramycin
554                                                                                                                                                                  bethanechol
555                                                                                                                                                                     bilberry
556                                                                                                                                                                   borage oil
557                                                                                                                              boric acid, gentian violet, silver sulfadiazine
558                                                                                                                                                        brewers yeast, garlic
559                                                                                                                                                       bupivacaine, lidocaine
560                                                                                                                                         burow's solution, miconazole nitrate
561                                                                                                                                        butorphanol tartrate, dexmedetomidine
562                                                                                                                                                                   ca support
563                                                                                                                                 castor oil, cinnamon, lemongrass oil, sesame
564                                                                       catnip, cedarwood oil, citronella, erigeron, eucalyptus, geraniol, neem oil, rosemary oil, witch hazel
565                                                                                                                              cbd or hemp oil, joint supplement (unspecified)
566                                                                                                                        cedarwood oil, eucalyptus, geranium oil, rosemary oil
567                                                                                                                                                cedarwood oil, peppermint oil
568                                                                                                                                                                   cefadroxil
569                                                                                                                                                                    ceftiofur
570                                                                                                                                                                cephalosporin
571                                                                                                                                     ceramide complex, coconut oil, safflower
572                                                                                                                                               chloramphenicol, dexamethasone
573                                                                                                                       chloramphenicol, ketoconazole, triamcinolone acetonide
574                                                                                           chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
575                                                                                                                                       chlorhexidine gluconate, dexamethasone
576                                                                                                                                                               cholestyramine
577                                                                                        chondroitin sulfate, hyaluronic acid, n-acetyl-d-glucosamine, triamcinolone acetonide
578                                                                                                          chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
579                                                                                                                                                                   cimetidine
580                                                                                                                              cinnamon, lemongrass oil, peppermint oil, thyme
581                                                                                                                         ciprofloxacin, ketoconazole, triamcinolone acetonide
582                                                                                                                     citronella, geranium oil, lemongrass oil, peppermint oil
583                                                                                                                                                                   clonazepam
584                                                                                                                                                                    clonidine
585                                                                                                                          clotrimazole, enrofloxacin, triamcinolone acetonide
586                                                                                                                                   coal tar solution, menthol, salicylic acid
587                                                                                                                                       cognitive supplement, liver supplement
588                                                                                                                                                             colloidal silver
589                                                                                                                                                             colon supplement
590                                                                                                                                                                  cosyntropin
591                                                                                                                                                                   crofelemer
592                                                                                                                                                                 dactinomycin
593                                                                                                                                                                dapagliflozin
594                                                                                                                                                         desmopressin acetate
595                                                                                                                   dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
596                                                                                                                                               dexamethasone, diphenhydramine
597                                                                                                                 dexamethasone, ear cleaner (epi-otic advanced), enrofloxacin
598                                                                                                                                    dexamethasone, enrofloxacin, ketoconazole
599                                                                                                                             dexamethasone, enrofloxacin, silver sulfadiazine
600                                                                                                                                       dexamethasone, enrofloxacin, tris-edta
601                                                                                                                                                  dexamethasone, ketoconazole
602                                                                                                                                dexamethasone, ketoconazole, phytosphingosine
603                                                                                                                                            dexamethasone, methylprednisolone
604                                                                         dexamethasone, miconazole nitrate, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
605                                                                        dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
606                                                                                                                                 dexamethasone, miconazole nitrate, tris-edta
607                                                                                                                                                    dexamethasone, tobramycin
608                                                                                                                                              dextran, glycerin, hypromellose
609                                                                                                                                                dextromethorphan, guaifenesin
610                                                                                                                                                                     dextrose
611                                                                                                                                                                  di tan tang
612                                                                                                                                         diatomaceous earth, neem oil, yarrow
613                                                                                                    digestive supplement, immune support supplement, skin and coat supplement
614                                                                                                                                                       dilute bleach solution
615                                                                                           dimethyl sulfoxide, fluocinolone acetonide, gentamicin sulfate, miconazole nitrate
616                                                                                                                                              donor lymphocyte infusion (dli)
617                                                                                                                                                                      doxepin
618                                                                                                                                                      ear cleaner (aloeclens)
619                                                                                                                                         ear cleaner (animal pharmaceuticals)
620                                                                                                                                                        ear cleaner (aurocin)
621                                                                                                                                                      ear cleaner (nutri-vet)
622                                                                                                                                                     ear cleaner (oti-soothe)
623                                                                                                                                                     ear cleaner (oticlean a)
624                                                                                                                                                       ear cleaner (oxyfresh)
625                                                                                                                                                       ear cleaner (protonix)
626                                                                                                                                                  ear cleaner (well and good)
627                                                                                                                                                                    egft/her2
628                                                                                                                                       enrofloxacin, dexamethasone, tris-edta
629                                                                                                                                 enrofloxacin, ketoconazole, neomycin sulfate
630                                                                                                                                                     enrofloxacin, tobramycin
631                                                                                                                                                      enrofloxacin, tris-edta
632                                                                                                                                                            epoetin alfa-epbx
633                                                                                                                                                                   epsom salt
634                                                                                                                                                                 erythromycin
635                                                                                                                               etofenprox, (s)-methoprene, piperonyl butoxide
636                                                                           etofenprox, n-octyl bicycloheptene dicarboximide, piperonyl butoxide, pyriproxyfen, (s)-methoprene
637                                                                                                                                                                   fatal plus
638                                                                                                                                                                    felbamate
639                                                                                                      fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
640                                                                                                                                                                  fenofibrate
641                                                                                                                               fenugreek, lemon balm, mint, neem oil, seaweed
642                                                                                                                                                            ferrum metallicum
643                                                                                                                                                                  fluticasone
644                                                                                                                                                                 four marvels
645                                                                                                                                                             fu zheng support
646                                                                                                                                                            fuzapladib sodium
647                                                                                                                                                        gabapentin, trazodone
648                                                                                                                                              gallbladder function supplement
649                                                                                                                                                              gather vitality
650                                                                                                                                             gentamicin sulfate, ketoconazole
651                                                                                                                                       gentamicin sulfate, miconazole nitrate
652                                                                                                                                                             gexia-zhuyu tang
653                                                                                                                                                            gm np hsa formula
654                                                                                                                            grapefruit seed extract, lavender oil, noni fruit
655                                                                                                                                                                     graviola
656                                                                                                                                                                  gui pi tang
657                                                                                                                                                       gut restore supplement
658                                                                                                                                                  hairball control supplement
659                                                                                                                                          high calorie nutritional supplement
660                                                                                                                                                    homeopathic vaccine spray
661                                                                                                                                                              hyaluronic acid
662                                                                                                                                               hydrocortisone, troleandomycin
663                                                                                                                                                            hydrogen peroxide
664                                                                                                                                  hydroquinone, mometasone furoate, tretinoin
665                                                                                                                                                                    hypericum
666                                                                                                                                                            hypertonic saline
667                                                                                                                                       imidacloprid, permethrin, pyriproxyfen
668                                                                                                                                                                      insulin
669                                                                                                                                                              interferon alfa
670                                                                                                                                                                    iopromide
671                                                                                                                          itraconazole, ketoconazole, triamcinolone acetonide
672                                                                                                                                                              jade windscreen
673                                                                                                                                                   jia wei xue fu zhu yu tang
674                                                                                                                                                          jin gui shen qi wan
675                                                                                                                                                      jing tang max's formula
676                                                                                                                                  joint supplement (glucosamine hcl), omega 3
677                                                                                                                                                                    juan bi 1
678                                                                                                                                                                      juniper
679                                                                                                                                             kaolin, neomycin sulfate, pectin
680                                                                                                                                                           ketamine, xylazine
681                                                                                                                             ketoconazole, mupirocin, triamcinolone acetonide
682                                                                                   ketoconazole, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide, tris-edta
683                                                                                                                                            ketoconazole, sodium hypochlorite
684                                                                                                                                                                     l-lysine
685                                                                                                                                                                    lapatinib
686                                                                                                                                                              liu jun zi tang
687                                                                                                                                                         liu wei di huang wan
688                                                                                                                                                            loranthus formula
689                                                                                                                                               lotion or leave in conditioner
690                                                                                                                                                            lutein supplement
691                                                                                                                                                                       lyssin
692                                                                                                                                                                    magnesium
693                                                                                                                                                            magnesium citrate
694                                                                                                                                                                magnolia bark
695                                                                                                                                                                    manganese
696                                                                                                                                                           mangosteen extract
697                                                                                                                                                                    masitinib
698                                                                                                                                                            megestrol acetate
699                                                                                                                                                             melanoma vaccine
700                                                                                                                                                      menthol, hydrocortisone
701                                                                                                                                                           menthol, lidocaine
702                                                                                                                                                                methazolamide
703                                                                                                                                           miconazole nitrate, salicylic acid
704                                                                                                                                                                 moxifloxacin
705                                                                                                                      mycobacterium cell wall fraction (mcwf) immunostimulant
706                                                                                                                                                         natural wart remover
707                                                                                                                                                   neomycin sulfate, nystatin
708                                                                                                                          neomycin sulfate, nystatin, triamcinolone acetonide
709                                                                                                                       neomycin sulfate, tetracaine , triamcinolone acetonide
710                                                                                                                                                                    nepafenac
711                                                                                                                                                                     niosomes
712                                                                                                                                                      nourish essence formula
713                                                                                                                                                            ocular repair gel
714                                                                                                                                                 ofloxacin, unspecified nsaid
715                                                                                                                                                                    olive oil
716                                                                                                                                                                  oseltamivir
717                                                                                                                                      over-the-counter antipruritic/astrigent
718                                                                                                                                                                       oxygen
719                                                                                                                                                        palmitoylethanolamide
720                                                                                                                                                 pancreatic enzyme supplement
721                                                                                                                                                                       papaya
722                                                                                                                                                           paw protection wax
723                                                                                                                                             phenobarbital, potassium bromide
724                                                                                                                                                                   phosphorus
725                                                                                                                                                                       plasma
726                                                                                                                                                         platelet transfusion
727                                                                                                                                                           potassium chloride
728                                                                                                                                                          potassium gluconate
729                                                                                                                                                     potentiated sulfonamides
730                                                                                                                                                             prochlorperazine
731                                                                                                                                                                  propranolol
732                                                                                                                                                             puppy supplement
733                                                                                                                                                               qing ying tang
734                                                                                                                                                        rattlesnake antivenin
735                                                                                                                                                                       rv1001
736                                                                                                                                                         rx diet - aging care
737                                                                                                                                                 rx diet - food sensitivities
738                                                                                                                                                         rx diet - gi low fat
739                                                                                                                                                  rx diet - weight management
740                                                                                                                                                                       saline
741                                                                                                                                                                   schisandra
742                                                                                                                                                                    sevelamer
743                                                                                                                                                              shu jin huo luo
744                                                                                                                                                                    shu jin i
745                                                                                                                                                                    silymarin
746                                                                                                                                                                       sodium
747                                                                                                                                                sodium carboxymethylcellulose
748                                                                                                                                                    spinal support supplement
749                                                                                                                                                    spleen support supplement
750                                                                                                                                                                     squalane
751                                                                                                                                                                   stem cells
752                                                                                                                                                                stomach happy
753                                                                                                                                                             strengthen metal
754                                                                                                                                            sulforaphane producing supplement
755                                                                                                                                                               tamarix dioica
756                                                                                                                                                        tear stain supplement
757                                                                                                                                                                  terbutaline
758                                                                                                                                                 testicular health supplement
759                                                                                                                                                            tigilanol tiglate
760                                                                                                                                                                  toltrazuril
761                                                                                                                                                                   trametinib
762                                                                                                                                                              tranexamic acid
763                                                                                                                                                                     tyrosine
764                                                                                                                                                        unspecified analgesic
765                                                                                                                                                       unspecified astringent
766                                                                                                                                                 unspecified atopy medication
767                                                                                                                                                     unspecified chemotherapy
768                                                                                                                                               unspecified eye dilation drops
769                                                                                                                                                        unspecified eye drops
770                                                                                                                                                    unspecified eye lubricant
771                                                                                                                                                unspecified flea preventative
772                                                                                                                                           unspecified flea/tick preventative
773                                                                                                                                                    unspecified fluid therapy
774                                                                                                                                unspecified herbal thyroid support supplement
775                                                                                                                                              unspecified herbal wart remover
776                                                                                                                                                       unspecified otic flush
777                                                                                                                                                    unspecified otic ointment
778                                                                                                                                            unspecified parasite preventative
779                                                                                                                                                          unspecified rx diet
780                                                                                                                                 unspecified thyroid medication or supplement
781                                                                                                                                                          unspecified vaccine
782                                                                                                                                                unspecified vision supplement
783                                                                                                                                                            unspecified wipes
784                                                                                                                                                                  vinorelbine
785                                                                                                                                                             viola clear fire
786                                                                                                                                                     viscoadaptive hyaluronan
787                                                                                                                         vitamin b, vitamin b complex, vitamin b12, vitamin e
788                                                                                                                                                      vitamin-iron supplement
789                                                                                                                                                                 voriconazole
790                                                                                                                                                                   vorinostat
791                                                                                                                                                                   walnut oil
792                                                                                                                                                                   wheat germ
793                                                                                                                                                      whole blood transfusion
794                                                                                                                                                               xiang lian san
795                                                                                                                                               xiao chai hu jia qin jiao tang
796                                                                                                                                                                   yi zhi ren
    Count
1    4076
2    3098
3    1819
4    1727
5    1586
6    1540
7    1515
8    1261
9    1227
10   1037
11    979
12    953
13    876
14    874
15    869
16    830
17    772
18    700
19    658
20    627
21    584
22    535
23    525
24    517
25    469
26    437
27    428
28    408
29    402
30    375
31    359
32    357
33    355
34    349
35    344
36    329
37    328
38    325
39    297
40    294
41    281
42    255
43    253
44    249
45    242
46    231
47    230
48    230
49    213
50    211
51    200
52    200
53    194
54    192
55    191
56    189
57    189
58    176
59    175
60    169
61    163
62    161
63    159
64    151
65    143
66    140
67    137
68    135
69    131
70    130
71    127
72    124
73    123
74    119
75    117
76    114
77    109
78    109
79    105
80    102
81    102
82    101
83     99
84     98
85     98
86     96
87     95
88     90
89     89
90     89
91     88
92     86
93     82
94     82
95     81
96     81
97     79
98     79
99     77
100    76
101    76
102    75
103    73
104    73
105    72
106    72
107    70
108    70
109    69
110    65
111    63
112    63
113    63
114    62
115    62
116    62
117    61
118    61
119    60
120    58
121    58
122    58
123    58
124    57
125    56
126    56
127    56
128    54
129    53
130    53
131    52
132    52
133    52
134    52
135    51
136    50
137    49
138    48
139    48
140    48
141    48
142    45
143    45
144    45
145    43
146    42
147    41
148    41
149    41
150    40
151    40
152    39
153    39
154    39
155    39
156    39
157    36
158    35
159    35
160    35
161    35
162    35
163    33
164    32
165    32
166    32
167    31
168    31
169    31
170    31
171    30
172    30
173    29
174    29
175    29
176    28
177    28
178    26
179    26
180    26
181    26
182    25
183    25
184    25
185    24
186    24
187    24
188    24
189    24
190    23
191    23
192    23
193    23
194    22
195    22
196    21
197    21
198    21
199    21
200    21
201    20
202    20
203    20
204    20
205    20
206    19
207    19
208    18
209    18
210    18
211    18
212    18
213    18
214    17
215    17
216    17
217    17
218    17
219    16
220    16
221    16
222    16
223    15
224    15
225    15
226    14
227    14
228    14
229    14
230    14
231    13
232    13
233    13
234    13
235    13
236    13
237    13
238    13
239    12
240    12
241    12
242    12
243    12
244    12
245    12
246    12
247    12
248    11
249    11
250    11
251    11
252    11
253    11
254    11
255    11
256    11
257    10
258    10
259    10
260    10
261    10
262    10
263    10
264    10
265    10
266     9
267     9
268     9
269     9
270     9
271     9
272     9
273     9
274     9
275     9
276     9
277     9
278     9
279     9
280     9
281     9
282     9
283     8
284     8
285     8
286     8
287     8
288     8
289     8
290     8
291     8
292     8
293     8
294     8
295     8
296     8
297     8
298     8
299     8
300     7
301     7
302     7
303     7
304     7
305     7
306     7
307     7
308     7
309     7
310     7
311     7
312     7
313     7
314     7
315     7
316     7
317     7
318     7
319     7
320     7
321     6
322     6
323     6
324     6
325     6
326     6
327     6
328     6
329     6
330     6
331     6
332     6
333     6
334     6
335     6
336     6
337     6
338     6
339     5
340     5
341     5
342     5
343     5
344     5
345     5
346     5
347     5
348     5
349     5
350     5
351     5
352     5
353     5
354     5
355     5
356     5
357     5
358     5
359     5
360     5
361     5
362     4
363     4
364     4
365     4
366     4
367     4
368     4
369     4
370     4
371     4
372     4
373     4
374     4
375     4
376     4
377     4
378     4
379     4
380     4
381     4
382     4
383     4
384     4
385     4
386     4
387     4
388     4
389     4
390     3
391     3
392     3
393     3
394     3
395     3
396     3
397     3
398     3
399     3
400     3
401     3
402     3
403     3
404     3
405     3
406     3
407     3
408     3
409     3
410     3
411     3
412     3
413     3
414     3
415     3
416     3
417     3
418     3
419     3
420     3
421     3
422     3
423     3
424     3
425     3
426     3
427     3
428     3
429     3
430     3
431     3
432     3
433     3
434     3
435     3
436     3
437     3
438     3
439     3
440     2
441     2
442     2
443     2
444     2
445     2
446     2
447     2
448     2
449     2
450     2
451     2
452     2
453     2
454     2
455     2
456     2
457     2
458     2
459     2
460     2
461     2
462     2
463     2
464     2
465     2
466     2
467     2
468     2
469     2
470     2
471     2
472     2
473     2
474     2
475     2
476     2
477     2
478     2
479     2
480     2
481     2
482     2
483     2
484     2
485     2
486     2
487     2
488     2
489     2
490     2
491     2
492     2
493     2
494     2
495     2
496     2
497     2
498     2
499     2
500     2
501     2
502     2
503     2
504     2
505     2
506     2
507     2
508     2
509     2
510     2
511     2
512     2
513     2
514     2
515     2
516     2
517     2
518     2
519     2
520     2
521     1
522     1
523     1
524     1
525     1
526     1
527     1
528     1
529     1
530     1
531     1
532     1
533     1
534     1
535     1
536     1
537     1
538     1
539     1
540     1
541     1
542     1
543     1
544     1
545     1
546     1
547     1
548     1
549     1
550     1
551     1
552     1
553     1
554     1
555     1
556     1
557     1
558     1
559     1
560     1
561     1
562     1
563     1
564     1
565     1
566     1
567     1
568     1
569     1
570     1
571     1
572     1
573     1
574     1
575     1
576     1
577     1
578     1
579     1
580     1
581     1
582     1
583     1
584     1
585     1
586     1
587     1
588     1
589     1
590     1
591     1
592     1
593     1
594     1
595     1
596     1
597     1
598     1
599     1
600     1
601     1
602     1
603     1
604     1
605     1
606     1
607     1
608     1
609     1
610     1
611     1
612     1
613     1
614     1
615     1
616     1
617     1
618     1
619     1
620     1
621     1
622     1
623     1
624     1
625     1
626     1
627     1
628     1
629     1
630     1
631     1
632     1
633     1
634     1
635     1
636     1
637     1
638     1
639     1
640     1
641     1
642     1
643     1
644     1
645     1
646     1
647     1
648     1
649     1
650     1
651     1
652     1
653     1
654     1
655     1
656     1
657     1
658     1
659     1
660     1
661     1
662     1
663     1
664     1
665     1
666     1
667     1
668     1
669     1
670     1
671     1
672     1
673     1
674     1
675     1
676     1
677     1
678     1
679     1
680     1
681     1
682     1
683     1
684     1
685     1
686     1
687     1
688     1
689     1
690     1
691     1
692     1
693     1
694     1
695     1
696     1
697     1
698     1
699     1
700     1
701     1
702     1
703     1
704     1
705     1
706     1
707     1
708     1
709     1
710     1
711     1
712     1
713     1
714     1
715     1
716     1
717     1
718     1
719     1
720     1
721     1
722     1
723     1
724     1
725     1
726     1
727     1
728     1
729     1
730     1
731     1
732     1
733     1
734     1
735     1
736     1
737     1
738     1
739     1
740     1
741     1
742     1
743     1
744     1
745     1
746     1
747     1
748     1
749     1
750     1
751     1
752     1
753     1
754     1
755     1
756     1
757     1
758     1
759     1
760     1
761     1
762     1
763     1
764     1
765     1
766     1
767     1
768     1
769     1
770     1
771     1
772     1
773     1
774     1
775     1
776     1
777     1
778     1
779     1
780     1
781     1
782     1
783     1
784     1
785     1
786     1
787     1
788     1
789     1
790     1
791     1
792     1
793     1
794     1
795     1
796     1
write.csv(med_ingredients_count,"C:/Users/ctaylor18/GitHub/GRLS_analyses/Output/medications_all.csv")

~800 ingredients

Medications dictionary of active ingredient groups:

Many ways to group, some redundancy/overlap eg. pred multi-use

NOAH compendium groupings (NB. not all drugs will be licensed so cascade use eg. mycophenolate but will use these grouping terms generally)

anti_inflam<-c("carprofen","prednisone","meloxicam","deracoxib","grapiprant","dexamethasone","firocoxib","predisolone acetate","trimeprazine tartrate, prednisone", "triamcinolone acetonide", "diclofenac", "methylpredisolone", "hydrocortisone, gentamicin sulfate, miconazole nitrate", "ketorolac","budesonide","burow's solution, hydrocortisone","dexamethasone, miconazole nitrate
","dimethyl sulfoxide, fluocinolone acetonide","flurbiprofen","piroxicam","hydrocortisone", "dexamethasone, enrofloxacin, ketoconazole, tris-edta","beclomethasone, clotrimazole, neomycin sulfate", "dexamethasone, ketoconazole, tris-edta","ketoprofen","acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole", "betamethasone","ketotifen","mometasone furoate","robenacoxib","dexamethasone", "flunixin", "betamethasone", "hydrocortisone", "prednisolone", "methylprednisolone", "triamcinolone acetonide", "difluprednate", "fluticasone", "burow's solution","carprofen","dexamethasone","prednisolone acetate","hydroxyzine", "diphenhydramine", "dexamethasone, miconazole nitrate", 
  "amikacin sulfate, dexamethasone", "dexamethasone, methylprednisolone", 
  "meclizine", "clemastine fumarate", "desmopressin acetate", "chlorphenamine", 
  "sevelamer", "loratadine", "fexofenadine", "dexamethasone, triamcinolone acetonide", 
  "hydrocortisone, ketoconazole", "hydroxyethyl starch, sodium chloride", 
  "dexamethasone, ketoconazole, phytosphingosine", "miconazole nitrate, salicylic acid", 
  "dexamethasone, diphenhydramine", "betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate", 
  "dimethyl sulfoxide, fluocinolone acetonide, gentamicin sulfate, miconazole nitrate", 
  "dimethyl sulfoxide, flunixin, fluocinolone acetonide", "hydrocortisone, troleandomycin","Dimenhydrinate", "Dexamethasone", "Betamethasone", "Mibolerone","nepafenac",
  "dexamethasone",
  "betamethasone",
  "hydrocortisone",
  "butorphanol tartrate",
  "dimethyl sulfoxide",
  "menthol, hydrocortisone",
  "dexamethasone, ketoconazole",
  "dexamethasone, enrofloxacin",
  "dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine",
  "dexamethasone, enrofloxacin, ketoconazole",
  "dexamethasone, penicillin",
  "dexamethasone, tobramycin","betamethasone, ofloxacin", "chloramphenicol, dexamethasone","betamethasone, chloramphenicol, ketoconazole"  , "enrofloxacin, dexamethasone, tris-edta"  ,"dexamethasone, miconazole nitrate, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide","betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate"  , "ketoconazole, hydrocortisone", "bacitracin, hydrocortisone", "dexamethasone, miconazole nitrate, tris-edta"  , "chlorhexidine gluconate, dexamethasone"   , "dexamethasone, enrofloxacin, tris-edta"  , "dexamethasone, enrofloxacin, silver sulfadiazine", "dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole" , "betamethasone, enrofloxacin" , "dexamethasone, ear cleaner (epi-otic advanced), enrofloxacin" , "betamethasone, tobramycin"            
)


anti_histamine <- c("diphenhydramine","hydroxyzine","trimeprazine tartrate, prednisone","cetirizine","loratadine","chlorphenamine","meclizine", "clemastine fumarate","dimenhydrinate","fexofenadine", "diphenhydramine", "loratadine", "cetirizine", "hydroxyzine", "chlorpheniramine", "desloratadine","cetirizine" )


anti_microbials <-c("metronidazole","cephalexin","cefpodoxime proxetil","amoxicillin, clavulanate potassium","clotrimazole, gentamicin sulfate, mometasone furoate","doxycycline","amoxicillin","betamethasone, clotrimazole, gentamicin sulfate","enrofloxacin","betamethasone, gentamicin sulfate", "clindamycin","dexamethasone, neomycin sulfate, polymyxin b", "florfenicol, mometasone furoate, terbinafine","mometasone furoate, orbifloxacin, posaconazole","sulfadimethoxine", "tylosin tartrate","isoflupredone acetate, neomycin sulfate, tetracaine","ketoconazole", "ketoconazole, tris-edta", "bacitracin zinc, neomycin sulfate, polymyxin b", "dexamethasone, neomycin sulfate, thiabendazole", "ciprofloxacin", "enrofloxacin, ketoconazole, triamcinolone acetonide", "marbofloxacin","mupirocin","betamethasone, florfenicol, terbinafine","sulfamethoxazole, trimethoprim", "cefovecin","miconazole nitrate, polymyxin b, prednisolone acetate", "ampicillin", "miconazole nitrate","fluconazole", "minocycline","tobramycin","hydrocortisone, gentamicin sulfate, miconazole nitrate", "cefazolin", "ofloxacin","gentamicin sulfate, hydrocortisone, miconazole nitrate", "azithromycin","acetic acid, chlorhexidine gluconate, ketoconazole","bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b","enrofloxacin, silver sulfadiazine", "chlorhexidine gluconate, ketoconazole, phytosphingosine","bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b","chlorhexidine gluconate, miconazole nitrate","chlorhexidine gluconate, miconazole nitrate, tris-edta","gentamicin sulfate","ormetoprim, sulfadimethoxine","acetic acid, boric acid, hydrocortisone, ketoconazole","penicillin","ampicillin, sulbactam","sulfamethoxazole","chloramphenicol","oxytetracycline, polymyxin b","ceftiofur sodium","sulfadiazine, trimethoprim","chloroxylenol, ketoconazole","dexamethasone, enrofloxacin, miconazole nitrate", "ketoconazole, phytosphingosine", "sulfadimidine, trimethoprim", "neomycin sulfate, polymyxin b, gramicidin", "orbifloxacin", "chlorhexidine gluconate, phytosphingosine", "nitrofurantoin", "penicillin g","beclomethasone, clotrimazole, neomycin sulfate", "dexamethasone, ketoconazole, tris-edta","neomycin","penicillin g procaine","acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole","ketoconazole, triamcinolone acetonide", "amikacin sulfate","dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide","meropenem","amforol","bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid","ceftazidime","enrofloxacin", "miconazole nitrate", "triamcinolone acetonide","polymyxin b", "povidone-iodine", "trimethoprim", "unspecified antibiotic", "ceftiofur", "cephalosporin", "ciprofloxacin", "chloramphenicol", "gentamicin sulfate", "ofloxacin", "bacitracin zinc", "bacitracin", "neomycin sulfate", "nystatin", 
                 "tetracycline", "erythromycin", "rifampin", "amoxicillin", "amikacin sulfate","clotrimazole", "miconazole nitrate", "ketoconazole", "fluconazole", "nystatin", 
                "terbinafine", "itraconazole", "griseofulvin", "enrofloxacin, tris-edta", "enrofloxacin, tobramycin", "enrofloxacin, ketoconazole, neomycin sulfate", 
  "chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide", 
  "enrofloxacin, triamcinolone acetonide", "clotrimazole, dexamethasone, enrofloxacin", 
  "clotrimazole, dexamethasone", "enrofloxacin, ketoconazole", "gentamicin sulfate, ketoconazole", 
  "chlorhexidine gluconate, enrofloxacin, tris-edta", "chloroxylenol, salicylic acid, sodium thiosulfate","Chloramphenicol","Amikacin sulfate", "Gentamicin sulfate", "Enrofloxacin", "Neomycin sulfate", "Nystatin", 
  "Penicillin", "Miconazole nitrate", "Clotrimazole", "Ofloxacin",   "amikacin sulfate",
  "gentamicin sulfate",
  "miconazole nitrate",
  "enrofloxacin",
  "ofloxacin",
  "gentamicin sulfate, miconazole nitrate",
  "chloramphenicol",
  "penicillin",
  "oseltamivir",
  "florfenicol",
  "ketoconazole",
  "mupirocin",
  "nystatin",
  "triamcinolone acetonide",    "ofloxacin, unspecified nsaid", "amikacin sulfate, miconazole nitrate","amikacin sulfate, gentamicin sulfate, triamcinolone acetonide", "penicillin g benzathine, penicillin g procaine","neomycin sulfate, tetracaine , triamcinolone acetonide","enrofloxacin, miconazole nitrate, triamcinolone acetonide","itraconazole, ketoconazole, triamcinolone acetonide", "ketoconazole, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide, tris-edta","betamethasone, ofloxacin" , "piroctone olamine" ,"chloramphenicol, dexamethasone" ,"ketoconazole, mupirocin, triamcinolone acetonide" ,"clotrimazole, enrofloxacin, triamcinolone acetonide" ,"betamethasone, chloramphenicol, ketoconazole" , "voriconazole" ,"enrofloxacin, dexamethasone, tris-edta","dexamethasone, miconazole nitrate, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide" ,"betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate" ,"ketoconazole, hydrocortisone","enrofloxacin, ketoconazole, tris-edta" ,"ketoconazole, sodium hypochlorite","moxifloxacin","neomycin sulfate, nystatin" , "attapulgite, bismuth subsalicylate, kanamycin","bacitracin zinc, miconazole nitrate, polymyxin b","neomycin sulfate, nystatin, triamcinolone acetonide" ,"ciprofloxacin, ketoconazole, triamcinolone acetonide" ,"chloramphenicol, ketoconazole, triamcinolone acetonide","potentiated sulfonamides", "kaolin, neomycin sulfate, pectin", "cefadroxil" , "dexamethasone, enrofloxacin, tris-edta","fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate","dexamethasone, enrofloxacin, silver sulfadiazine", "dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole", "betamethasone, enrofloxacin", "dexamethasone, ear cleaner (epi-otic advanced), enrofloxacin" , "betamethasone, tobramycin"                                                                                      )


anti_parasites <-c("ivermectin, pyrantel pamoate","afoxolaner","lufenuron, milbemycin oxime","ivermectin","milbemycin oxime","fluralaner","fipronil, (s)-methoprene","milbemycin oxime, spinosad", "neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide","fenbendazole"<"pyrantel pamoate","dinotefuran, permethrin, pyriproxyfen","imidacloprid, pyriproxyfen","sarolaner" , "milbemycin oxime, praziquantel","ivermectin, praziquantel, pyrantel pamoate","selamectin", "flumethrin, imidacloprid","moxidectin","lufenuron, milbemycin oxime, praziquantel", "spinosad","fipronil, permethrin, pyriproxyfen","febantel, praziquantel, pyrantel pamoate","imidacloprid, permethrin", "praziquantel","praziquantel, pyrantel pamoate", "imidacloprid, moxidectin", "fipronil, pyriproxyfen, (s)-methoprene", "fipronil","lotilaner", "lufenuron", "cyphenothrin, fipronil","ponazuril","cyphenothrin, fipronil, (s)-methoprene","clorsulon, ivermectin","imidacloprid", "nitenpyram","terbinafine","indoxacarb","deltamethrin","(s)-methoprene","mebendazole","itraconazole","fipronil, permethrin", "unspecified heartworm preventative", "amitraz", "epsiprantel","permethrin","afoxolaner, milbemycin oxime","indoxacarb, permethrin","permethrin, pyriproxyfen","dinotefuran","ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate","febantel", "milbemycin oxime", "moxidectin", "fenbendazole", "praziquantel", 
                  "pyrantel pamoate", "oxantel", "diethylcarbamazine citrate","amitraz", "permethrin", "imidacloprid", "fipronil","etofenprox","selamectin", "pyriproxyfen", "s-methoprene", "diatomaceous earth", "nitenpyram","amitraz, metaflurimon", "etofenprox, (s)-methoprene, piperonyl butoxide", 
  "etofenprox, n-octyl bicycloheptene dicarboximide, piperonyl butoxide, pyriproxyfen, (s)-methoprene", 
  "unspecified herbal flea/tick preventative", "unspecified flea/tick preventative","Ivermectin",  "milbemycin oxime",
  "oxantel",
  "praziquantel",
  "moxidectin",
  "pyrantel pamoate",
  "sarolaner",
  "unspecified parasite preventative",
    "moxidectin, pyrantel pamoate, sarolaner", "milbemycin oxime, oxantel, praziquantel", "fatal plus","unspecified flea preventative","toltrazuril","mebendazole, praziquantel, pyrantel pamoate","imidacloprid, permethrin, pyriproxyfen","fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate"        
)


anti_septics<-c("chlorhexidine gluconate","chlorhexidine gluconate, ophytrium","chlorhexidine gluconate, ketoconazole","chlorhexidine gluconate, climbazole, phytosphingosine","chlorhexidine gluconate, tris-edta", "chlorhexidine gluconate, ketoconazole, tris-edta","chlorhexidine gluconate, hydrocortisone, tris-edta","chloroxylenol, lactic acid, salicylic acid", "colloidal silver", "chloroxylenol, salicylic acid, sodium thiosulfate","Silver sulfadiazine", "Gentian violet", "Boric acid","silver sulfadiazine",
  "hydrogen peroxide",
  "chlorhexidine gluconate","silver sulfadiazine, insulin","ceramide iii, chlorhexidine gluconate, microsilver" ,"boric acid, gentian violet, silver sulfadiazine","polyvinyl alcohol, povidone" ,"benzoyl peroxide, salicylic acid" ,"unspecified antiseptic"  , "chlorhexidine gluconate, dexamethasone" , "benzoic acid, chlorhexidine gluconate, malic acid, salicylic acid" , "benzoyl peroxide, phytosphingosine, salicylic acid, sulfur"        )


cardio_respiratory<-c("pimobendan","dextromethorphan hydrobromide, guaifenesin","enalapril","homatropine, hydrocodone","benazepril hcl","amlodipine","sotalol","spironolactone", "prazosin", "clopidogrel","mexiletine","sildenafil", "dextromethorphan hydrobromide","guaifenesin","albuterol sulfate","pentoxifylline","theophylline","timolol","amiodarone", "lidocaine", "mexiletine","propranolol", "terbutaline", "oxygen", "diltiazem","Epoetin alfa-epbx", "Tyrosine","pseudoephedrine",
  "dimenhydrinate",
  "dextromethorphan, guaifenesin","aminocaproic acid","clonidine")


dietary_supplements<-c("probiotic","omega 3","joint supplement (chondroitin sulfate/glucosamine hcl/msm)","joint supplement (chondroitin sulfate/glucosamine hcl)", "digestive supplement", "multivitamin", "butorphanol tartrate", "vitamin b", "joint supplement (glucosamine hcl/msm)","taurine","liver supplement","joint supplement (glucosamine hcl)", "urinary tract supplement", "yunnan baiyao", "prebiotic, probiotic","joint supplement (other)","immune support supplement","calming supplement", "vitamin c","skin and coat supplement", "vision supplement","vitamin d","cisapride","l-carnitine","joint supplement (chondroitin sulfate)","vitamin k","kidney health supplement","vitamin e", "melatonin", "thyroid support supplement", "liver happy","omega 3-6-9","shen calmer", "turmeric", "calcium", "niacinamide","l-asparaginase","unspecified supplement","vitamin a","wei qi booster","coenzyme q10","curcumin", "dl-methionine","flaxseed", "joint supplement (msm)","kelp","omega 3-6","acetylcysteine","anal gland supplement","coprophagia supplement","digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals", "joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin","seasonal and environmental allergy supplement","unspecified herbal supplement","cardiac support supplement","cognitive supplement","garlic", "joint supplement (other), skin and coat supplement","lung supplement","digestive supplement", "prebiotic", "probiotic", "immune support supplement",  "silymarin", "milk thistle", "colostrum", "echinacea", "reishi mushroom", "astragalus","high calorie nutritional supplement", "gallbladder function supplement",  "joint supplement (glucosamine hcl)", "omega 3", "puppy growth supplement",  "lutein supplement", "vitamin E", "biotin", "selenium", "zinc", "iron", 
                        "magnesium citrate", "nourish essence formula", "ca support", "bee pollen", "brewers yeast, garlic", 
  "xiao chai hu jia qin jiao tang", "liu jun zi tang", "yi zhi ren", "bitter melon", 
  "spinal support supplement", "mangosteen extract", "shu jin i", "juan bi 1", 
  "amylase, lipase, protease", "cognitive supplement, liver supplement", "musculoskeletal supplement", 
  "hairball control supplement", "wheat germ", "gm np hsa formula", "cognitive supplement, liver supplement", "unspecified thyroid medication or supplement", "Sodium carboxymethylcellulose", "Ba Zheng Wan", "Jin Gui Shen Qi Wan", 
  "Digestive supplement, prebiotic, probiotic", "General female health supplement", 
  "Strengthen metal", "Gather vitality", "Xue Fu Zhu Yu Tang", "Bilberry", 
  "Puppy supplement", "Digestive supplement, immune support supplement, skin and coat supplement", 
  "Silver sulfadiazine, insulin", "Squalane", "Chitosan", "Ashwagandha", "Homeopathic vaccine spray", 
  "Sulforaphane producing supplement", "Liu Wei Di Huang Wan", "Vitamin-iron supplement", 
  "Fenofibrate", "Mibolerone", "Corneal repair", "Slippery elm", "Jia Wei Xue Fu Zhu Yu Tang", 
  "Viscoadaptive hyaluronan", "Rx diet - weight management", "Epoetin alfa-epbx", "Geraniol", 
  "Tyrosine", "Aluminium hydroxide, magnesium hydroxide", "Phytosphingosine, pramoxine","Slippery elm","Sodium carboxymethylcellulose", "Ba Zheng Wan", "Jin Gui Shen Qi Wan", "Digestive supplement, prebiotic, probiotic", 
  "General female health supplement", "Strengthen metal", "Gather vitality", "Xue Fu Zhu Yu Tang", "Bilberry", 
  "Puppy supplement", "Digestive supplement, immune support supplement, skin and coat supplement" ,"Squalane", "Chitosan", "Ashwagandha", "Homeopathic vaccine spray", 
  "Sulforaphane producing supplement", "Liu Wei Di Huang Wan", "Vitamin-iron supplement","sodium carboxymethylcellulose",
  "unspecified herbal thyroid support supplement",
  "digestive supplement, prebiotic, probiotic",
  "unspecified digestive medication",
  "puppy supplement",
  "digestive supplement, immune support supplement, skin and coat supplement",
  "general female health supplement",
  "strengthen metal",
  "xue fu zhu yu tang",
  "bilberry",
  "tear stain supplement",
  "magnesium",
  "sulforaphane producing supplement",
  "slippery elm",
  "vitamin-iron supplement",
  "chitosan",
  "vitamin-iron supplement",
  "geranium oil, lavender oil, neem oil, peppermint oil, yarrow",
  "ashwagandha",
  "gexia-zhuyu tang",
  "gather vitality",
  "squalane",
  "diatomaceous earth, neem oil, yarrow",
  "gexia-zhuyu tang", "joint supplement (chondroitin sulfate/msm)","medium-chain triglycerides" ,"joint supplement (unspecified)","colon supplement",
"cbd or hemp oil, joint supplement (unspecified)","stomach happy", "tyrosine" ,"spleen support supplement","testicular health supplement","endocrine system support","unspecified vitamin", "gut restore supplement" ,"apoptosis supplement" ,"vitamin b, vitamin b complex, vitamin b12, vitamin e" ,"palmitoylethanolamide" ,"chondroitin sulfate, hyaluronic acid, n-acetyl-d-glucosamine, triamcinolone acetonide","graviola" , "pancreatic enzyme supplement", "rx diet - aging care", "l-lysine"  , "joint supplement (glucosamine hcl), omega 3"  , "ba zheng wan", "jin gui shen qi wan", "ku shen si wu", "jade windscreen", 
"liu wei di huang wan", 
    "xiang lian san", "jing tang max's formula", 
    "jia wei xue fu zhu yu tang",  "long dan xie gan wan", 
    "di tan tang"   )


diuretics <-c("furosemide")

enteric<-c("maropitant citrate","famotidine","sucralfate","omeprazole","metoclopramide", "ondansetron","apomorphine hcl","ursodiol","mirtazapine","loperamide","ranitidine", "activated charcoal, bismuth subsalicylate, kaolin, pectin","pantoprazole", "activated charcoal", "bismuth subsalicylate","lactulose","simethicone", "activated charcoal, kaolin","activated charcoal, kaolin, sorbitol",
"activated charcoal, sorbitol","apple cider vinegar","dolasetron", "metoclopramide", "ondansetron", "cerenia", "maropitant citrate", "crofelemer","cimetidine","aluminium hydroxide, magnesium hydroxide, simethicone","diphemanil metilsulfate" , "aluminium hydroxide"        )


fluid_metabolites <-c("lactated ringer's solution","plasma-lyte","electrolyte injection","sodium chloride","dextrose","whole blood transfusion", "iron dextran", "platelet transfusion", "donor lymphocyte infusion (dli)", 
  "hydroxyethyl starch, sodium chloride", "potassium chloride",
  "plasma","magnesium", "potassium chloride", "sodium chloride", "calcium carbonate","saline","hypertonic saline","unspecified fluid therapy"  , "phosphorus" , "sodium"    )


hormones_and_related <-c("levothyroxine", "thryoxine","diethylstilbestrol","oxytocin","trilostane","estriol", "pyridostigmine bromide","finasteride","aglepristone","nph insulin", "megestrol acetate", "cabergoline", "thyroxine",  "fludrocortisone", "leflunomide", "paroxetine", "metformin","desmopressin acetate", "cosyntropin", "bethanechol", "epinephrine", "pamidronate", "thiamazole", 
  "Silver sulfadiazine, insulin","Epoetin alfa-epbx","insulin","epoetin alfa-epbx", "melatonin", "oxytocin", "progesterone","dinoprost tromethamine","silver sulfadiazine, insulin","mibolerone","fuzapladib sodium" , "misoprostol")


neurological <-c("gabapentin","tramadol","trazodone", "acepromazine","fluoxetine", "dexmedetomidine", "propofol","alprazolam","levetiracetam","phenobarbital","buprenorphine", "ketamine", "diazepam","midazolam","hydromorphone","zonisamide","hydrocodone", "isoflurane","capromorelin", "amantadine","potassium bromide","atipamezole","morphine","tiletamine, zolazepam","clomipramine","codeine","fentanyl","methadone","lidocaine","amitriptyline","diphenoxylate","pramoxine", "sevoflurane", "bupivacaine","glycopyrrolate", "alfaxalone", "aminopentamide hydrogen sulfate","trimeprazine tartrate","acepromazine, atropine sulfate, butorphanol tartrate", "acepromazine, hydromorphone", "acepromazine, ketamine", "acetaminophen","acetaminophen, hydrocodone", "oxycodone","sertraline","xylazine","butorphanol tartrate", "gabapentin", "acetaminophen", "methadone", "buprenorphine", 
 "hydromorphone", "tramadol",  "fentanyl","buspirone", "paroxetine", "doxepin", "clonazepam", "lorazepam", "sertraline",  "escitalopram", "fluoxetine", "amitriptyline", "mirtazapine","butorphanol tartrate, dexmedetomidine", "ketamine, xylazine", "pregabalin", "belladonna alkaloids, phenobarbital", "Clorazepate", "dimethyl sulfoxide",
  "clorazepate",
  "butorphanol tartrate",
  "betamethasone, gentamicin sulfate, miconazole nitrate","tramadol", "gabapentin", "diazepam", "carbamazepine", "phenobarbital","bupivacaine, lidocaine","phenobarbital, potassium bromide",
  "butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam","menthol, lidocaine","hydrocortisone, pramoxine","felbamate", "gabapentin, trazodone" )


immunologicals <- c("oclacitinib","lokivetmab","bedinvetmab", "cyclosporine", "chlorambucil","cyclophosphamide","doxorubicin","azathioprine","vincristine","sulfasalazine", "lomustine", "mycophenolate mofetil","tacrolimus","anti-cd52 monoclonal antibodies","procarbazine","vinblastine","melphalan","carboplatin","temozolomide", "dactinomycin", "cyclophosphamide", "doxorubicin", "vincristine",  "cisplatin", "melanoma vaccine", "egft/her2", "imatinib","chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)","trametinib","lapatinib","elspar","vorinostat","verdinexor","vinorelbine","masitinib",   "tigilanol tiglate" )


anti_viral <- c("imatinib", "interferon alfa", "acyclovir", "valacyclovir", "zidovudine","oseltamivir", "acyclovir")

misc<-c("polysulfated glycosaminoglycan","phenylpropanolamine","methocarbamol", "ear cleaner (epi-otic advanced)","ear cleaner (zymox), hydrocortisone","atropine sulfate", "allergy immunotherapy - unspecified","ear cleaner (zymox)", "toothpaste/dental health solution or chews","acetic acid, boric acid","unspecified medication","cbd or hemp oil","allergy immunotherapy - drops", "allergy immunotherapy - injection","telmisartan","phytosphingosine","carvacrol","dorzolamide, timolol","coconut oil","latanoprost","silver sulfadiazine","toceranib","unspecified thyroid medication","unspecified otic ear pack","aspirin","atropine sulfate, diphenoxylate","acetaminophen, codeine","arnica","hypochlorous acid","tris-edta","tropicamide", "benzocaine","ophytrium","edta", "unspecified shampoo/mousse", "barium", "body sore", "phytosphingosine, salicylic acid", "carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol","propylene glycol, salicylic acid","benzoyl peroxide","dorzolamide","rx diet - digestive support","oxymetazoline", "aconite, arnica, belladona, calendula, chamomile, daisy, echinacea, hepar sulphur, hypericum perforatum, mercurius solubilis, millefolium, symphytum officinale, witch hazel","algae","allopurinol","aloe vera","menthol","rx diet - hypoallergenic hydrolyzed protein","sirolimus","unspecified ear cleaner", "algae","burow's solution","corneal reapir","pentosan polysulfate","pilocarpine","polyethylene glycol","unspecified ear medication","amino acid","burow's solution, hydrocortisone, miconazole nitrate","cedarwood oil, rosemary oil, sesame","staphylococcus aureus phage lysate", "plasma-derived immunoglobulin",  "platelet-rich plasma (prp) injections", "growth factor supplement", "microcurrent therapy", "laser therapy","clinical trial - cancer prevention vaccine", "unspecified vaccine", "Aluminium hydroxide, magnesium hydroxide","Fenofibrate", "Phytosphingosine", "Pramoxine","Viscoadaptive hyaluronan","Mibolerone", "Dimethyl sulfoxide",
  "transcranial magnetic stimulation (tms)","Chitosan", "Homeopathic vaccine spray","methazolamide","attapulgite, bismuth subcarbonate, kanamycin a",
  "dilute bleach solution",
  "stasis breaker",
  "unspecified astringent","rattlesnake antivenin",
  "homeopathic vaccine spray","unspecified",
  "unspecified otic ointment",
  "unspecified otic flush",
  "external wind",
  "unspecified eye dilation drops",
  "unspecified allergy medication",
  "over-the-counter antipruritic/astrigent",
  "over-the-counter wound dressing",
  "unspecified vision supplement",
  "unspecified eye medication",
  "over-the-counter unmedicated shampoo/mousse",
  "unspecified wipes",
  "unspecified wipes",
  "rx diet - weight management",
  "sodium hypochlorite",
  "unspecified eye drops",
  "liquid bandage",
  "ear cleaner (aloeclens)",
  "ear cleaner (oticlean a)",
  "unspecified antiseptic ointment","hypericum","wind toxin", "niosomes", "viscoadaptive hyaluronan", "amforal", "rv1001", "shu jin huo luo",   "phytosphingosine",  "prochlorperazine", "coal tar solution, menthol, salicylic acid", "unspecified chemotherapy", 
    "hyaluronic acid", "ceramide complex, coconut oil, safflower","ear cleaner (otirinse)","bordetella bronchiseptica","hydroquinone, mometasone furoate, tretinoin","cassia bark, colloidal silicon dioxide, clove, eucalyptus, isopropyl myristrate, lanolin, mineral oil, origanum, vitamin e, white petrolatum", "manganese","magnolia bark","dental sealant","lotion or leave in conditioner","diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow","four marvels",  "gui pi tang" ,"fu zheng support" , "unspecified analgesic", "cedarwood oil, eucalyptus, geranium oil, rosemary oil","stem cells","corneal repair","ocular repair gel","fenofibrate","ear cleaner (oti-soothe)",           "ferrum metallicum","naphazoline, pheniramine maleate","xiao chai hu tang" , "geraniol" ,"paw protection wax" ,"aluminium hydroxide, magnesium hydroxide"  , "ear cleaner (animal pharmaceuticals)","phytosphingosine, pramoxine" ,"pramoxine, phytosphingosine","damp heat","fenugreek, lemon balm, mint, neem oil, seaweed","loranthus formula" ,"junpier","tamarix dioica","potassium gluconate" ,"unspecified atopy medication" ,"antioxidant","citronella, geranium oil, lemongrass oil, peppermint oil" , "ear cleaner (oxyfresh)","catnip, cedarwood oil, citronella, erigeron, eucalyptus, geraniol, neem oil, rosemary oil, witch hazel","papaya", "rx clay", "tranexamic acid","epsom salt","silver oxide, type i collagen","dapagliflozin" , "benzethonium chloride, lidocaine" , "qing ying tang","schisandra", "borage oil","burow's solution, miconazole nitrate" , "cinnamon, lemongrass oil, peppermint oil, thyme"    , "olive oil"  , "ear astringent (vedco)" ,"unspecified herbal wart remover" , "natural wart remover" ,"ear cleaner (protonix)" ,"unspecified rx diet","ear cleaner (epi-otic advanced), ketoconazole", "bu yang huan wu","benzocaine, resorcinol" ,"viola clear fire","grapefruit seed extract, lavender oil, noni fruit","castor oil, cinnamon, lemongrass oil, sesame","walnut oil",                 "ear cleaner (nutri-vet)" ,"ear cleaner (aurocin)" , "cedarwood oil, peppermint oil" , "ear cleaner (well and good)", "unspecified eye lubricant"  , "zoledronic acid" , "iopromide" , "mycobacterium cell wall fraction (mcwf) immunostimulant" , "cholestyramine" , "dextran, glycerin, hypromellose", "lyssin"  , "juniper"  , "rx diet - renal health", "rx diet - selected protein (duck)", "rx diet - skin and food sensitivity", 
  "rx diet - gi low fat", "rx diet - food sensitivities", "rx diet - gi low fat" ,"other"        )


all_med_groups <- c(anti_inflam,anti_histamine,anti_microbials,anti_parasites,anti_septics,cardio_respiratory,dietary_supplements,diuretics,enteric,fluid_metabolites,hormones_and_related,neurological,immunologicals,anti_viral,misc)

#check have grouped all
int <- setdiff(ingredients$medication_ingredients, all_med_groups)
print(int)
character(0)

Group according to these in new column:

medications_2 <- medications_2  %>%
  mutate(
    active_ingredient_groups = case_when(
      medication_ingredients %in% anti_inflam ~ "anti_inflam",
      medication_ingredients %in% anti_histamine ~ "anti_hist",
      medication_ingredients %in% anti_microbials ~ "anti_microbials",
      medication_ingredients %in% anti_parasites ~ "anti_parasites",
      medication_ingredients %in% anti_septics~ "anti_septics",
      medication_ingredients %in% cardio_respiratory ~ "cardio_respiratory",
      medication_ingredients %in% dietary_supplements ~ "dietary_supplements",
      medication_ingredients %in% diuretics ~ "diuretics",
      medication_ingredients %in% enteric ~ "enteric",
      medication_ingredients %in% fluid_metabolites ~ "fluid_metabolites",
      medication_ingredients %in% hormones_and_related ~ "hormones_and_related",
      medication_ingredients %in% neurological ~ "neurological",
      medication_ingredients %in% immunologicals ~ "immunologicals",
      medication_ingredients %in% anti_viral ~ "anti_viral",
      medication_ingredients %in% misc ~ "misc",
      TRUE ~ "no_freq_recorded" # For values not in any group
    )
  )

Only retain medications with >100 recordings in df and then classify into med groups

Then rest as other:

low_count_ingredients <- med_ingredients_count$medication_ingredients[
  med_ingredients_count$Count < 100
]

# Recode medications_2 based on the mapping
medications_2$medication_ingredients_100 <- ifelse(
  medications_2$medication_ingredients %in% low_count_ingredients, 
  "other", 
  medications_2$medication_ingredients
)

# now reclass into other broad categories above
medications_2 <- medications_2  %>%
  mutate(
    active_ingredient_groups_100 = case_when(
      medication_ingredients_100 %in% anti_inflam ~ "anti_inflam",
      medication_ingredients_100 %in% anti_histamine ~ "anti_hist",
      medication_ingredients_100 %in% anti_microbials ~ "anti_microbials",
      medication_ingredients_100 %in% anti_parasites ~ "anti_parasites",
      medication_ingredients_100 %in% anti_septics~ "anti_septics",
     medication_ingredients_100 %in% cardio_respiratory ~ "cardio_respiratory",
      medication_ingredients_100 %in% dietary_supplements ~ "dietary_supplements",
      medication_ingredients_100 %in% diuretics ~ "diuretics",
      medication_ingredients_100 %in% enteric ~ "enteric",
      medication_ingredients_100 %in% fluid_metabolites ~ "fluid_metabolites",
      medication_ingredients_100 %in% hormones_and_related ~ "hormones_and_related",
      medication_ingredients_100 %in% neurological ~ "neurological",
      medication_ingredients_100 %in% immunologicals ~ "immunologicals",
      medication_ingredients_100 %in% anti_viral ~ "anti_viral",
      medication_ingredients_100 %in% misc ~ "misc",
      TRUE ~ "no_freq_recorded" # For values not in any group
    )
  )

Other groupings??

Plots of counts of these groupings:

medications_100_count <- medications_2 %>%
  count(medication_ingredients_100, name = "Count") %>%
  arrange(desc(Count))

#truncate names to 100 str
medications_100_count<- medications_100_count %>%
  mutate(medication_ingredients_100 = str_sub(medication_ingredients_100, 1, 100))

p<-ggplot(data=medications_100_count, aes(x=reorder(medication_ingredients_100,Count), y=Count)) +
  geom_bar(stat="identity")+
    theme(
    axis.text.x = element_text(angle = 90, hjust = 1, size = 8)) +
      labs(y="Count",x="Active Ingredients")
p

active_ingredients_100_count_group <- medications_2 %>%
  count(active_ingredient_groups_100, name = "Count") %>%
  arrange(desc(Count))


p<-ggplot(data=active_ingredients_100_count_group, aes(x=reorder(active_ingredient_groups_100,Count), y=Count)) +
  geom_bar(stat="identity") +
  theme(
    axis.text.x = element_text(angle = 90, hjust = 1, size = 8)) +
        labs(y="Count",x="Medicine groups")
p

Medication dosing, frequency, duration particulars:

Medication admin routes:

med_admin <- medications_2 %>%
  count(administration_method, name = "Count") %>%
  arrange(desc(Count))
med_admin
    administration_method Count
1                    oral 28102
2           other specify 15072
3                 topical  4669
4  subcutaneous injection  1655
5   intravenous injection   444
6 intramuscular injection   270
other_specify <- medications_2 %>%
  count(administration_method_specify, name = "Count") %>%
  arrange(desc(Count))
other_specify
   administration_method_specify Count
1                           <NA> 35140
2                    unspecified 14078
3                         in ear   503
4                         in eye   338
5                         collar    51
6                           oral    34
7                       inhalant    30
8                  apply to skin     8
9                   ia injection     4
10                       in food     4
11     continuous rate infusions     3
12                intra hematoma     3
13                intra-lesional     2
14                      rectally     2
15                   transdermal     2
16             unspecified drops     2
17                       aerosol     1
18           anal gland infusion     1
19                      epidural     1
20                     injection     1
21                 intravenously     1
22                   iv infusion     1
23        subcutaneous injection     1
24                         teeth     1
#group these better so most specifc are going to be captured in admin_metho
topical <- c("in ear", "collar","in eye", "apply to skin","transdermal","unspecified drops")
oral <- c("oral","in food","teeth")
injection <-c("ia injection","intra haematoma","intra-lesional","epidural","injection")
intravenous <-c("continuous rate infusions","iv infusion","intravenously")
inhalant <- c("aerosol","inhalant","aerosol")
other <- c("rectally","anal gland infusion")

Reclassify administration methods again

medications_2 <-medications_2 %>%
    mutate(
    administration_method_specify2 = case_when(
    administration_method_specify %in% topical ~"topical",
    administration_method_specify %in% oral ~"oral",
    administration_method_specify %in% injection ~ "injection other",
    administration_method_specify %in% intravenous ~"intravenous injection",
    administration_method_specify %in% inhalant ~"inhalant",
    administration_method_specify %in% other ~ "other",
    TRUE ~ administration_method_specify 
  ))


other_specify2 <- medications_2 %>%
  count(administration_method_specify2, name = "Count") %>%
  arrange(desc(Count))
other_specify2
   administration_method_specify2 Count
1                            <NA> 35140
2                     unspecified 14078
3                         topical   904
4                            oral    39
5                        inhalant    31
6                 injection other     8
7           intravenous injection     5
8                  intra hematoma     3
9                           other     3
10         subcutaneous injection     1

Now add the other specifies back into the administration_method column

medications_2 <- medications_2 %>%
  mutate(
      administration_method = if_else(
      administration_method == "other specify",
      administration_method_specify2,
      administration_method
    )
  )

Medication dosing:

dose_count <- medications_2 %>%
    count(dose, name = "Count") %>%
  arrange(desc(Count))


dose_count
                                                                                                      dose
1                                                                                                     1.00
2                                                                                                   500.00
3                                                                                                   272.00
4                                                                                              unspecified
5                                                                                                    50.00
6                                                                                                   200.00
7                                                                                                   100.00
8                                                                             based on weight (51-100 lbs)
9                                                                                                    75.00
10                                                                                                 1000.00
11                                                                                                  136.00
12                                                                                                   16.00
13                                                                                                  300.00
14                                                                                                   20.00
15                                                                                                   23.00
16                                                                                                   10.00
17                                                                                                  250.00
18                                                                                                    2.00
19                                                                                                  150.00
20                                                                                                   60.00
21                                                                                                    5.00
22                                                                                                    8.00
23                                                                                                  375.00
24                                                                                                    3.00
25                                                                                   1 tablet/pill/capsule
26                                                                                            small amount
27                                                                                                  750.00
28                                                                            based on weight (50-100 lbs)
29                                                                                         based on weight
30                                                                                                   15.00
31                                                                                                   80.00
32                                                                                                  227.00
33                                                                                                    4.00
34                                                                                                   68.00
35                                                                                                    0.50
36                                                                                                   25.00
37                                                                                                   30.00
38                                                                             based on weight (44-88 lbs)
39                                                                                                    1.50
40                                                                                                  125.00
41                                                                                                    6.00
42                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
43                                                                                                  400.00
44                                                                                             application
45                                                                                                  50-100
46                                                                                                    2.68
47                                                                                                 1620.00
48                                                                                                   70.00
49                                                                            based on weight (60-120 lbs)
50                                                                             based on weight (45-88 lbs)
51                                                                                                   40.00
52                                                                                                    0.60
53                                                                                                   37.50
54                                                                                                  600.00
55                                                                                                   44-88
56                                                                                                    0.40
57                                                                                                    2.50
58                                                                               based on weight (55+ lbs)
59                                                                                                 272 mcg
60                                                                                                    7.50
61                                                                                                   45-88
62                                                                                                 23, 460
63                                                                                                  120.00
64                                                                                                  900.00
65                                                                                                    0.30
66                                                                                                  240.00
67                                                                                                    0.70
68                                                                                                   24.00
69                                                                                                  500 mg
70                                                                                             as directed
71                                                                                                27, 1620
72                                                                                                   90.00
73                                                                                                  60-120
74                                                                                                    0.25
75                                                                                                    0.80
76                                                                                                  1 tube
77                                                                          based on weight (50.1-100 lbs)
78                                                                                                  204.00
79                                                                                         0.25 inch strip
80                                                                                                  460.00
81                                                                                                    7.00
82                                                                                                   spray
83                                                                            based on weight (60-121 lbs)
84                                                                          based on weight (60.1-121 lbs)
85                                                                                                 1500.00
86                                                                                                  113.50
87                                                                                                  228.00
88                                                                                                  625.00
89                                                                                                    9.80
90                                                                                                   12.00
91                                                             23 mg milbemycin oxime, 228 mg praziquantel
92                                                                                                  1 drop
93                                                                                                  160.00
94                                                                                                    1.40
95                                                                                                   27.00
96                                                                                                    1.60
97                                                                                                    3.50
98                                                                                                  810.00
99                                                                                         moderate amount
100                                                                                                1400.00
101                                                                                                  50 mg
102                                                                            based on weight (56-95 lbs)
103                                                                                                 100 mg
104                                                                                                23, 228
105                                                                                                   3.75
106                                                                                         1 pack/package
107                                                                                                1000 mg
108                                                                                                 136 mg
109                                                                                                   0.20
110                                                                                                  11.50
111                                                                                    tablet/pill/capsule
112                                                                                                   1.20
113                                                                                                  23 mg
114                                                                                                 170.00
115                                                                                                 collar
116                                                                                                   0.10
117                                                               460 mg lufenuron, 23 mg milbemycin oxime
118                                                                                                  12.50
119                                                               27 mg milbemycin oxime, 1620 mg spinosad
120                                                                                                1200.00
121                                                                                                  16 mg
122                                                                                                 480.00
123                                                                                                 60-121
124                                                                                                  62.50
125                                                                                                 450.00
126                                                                                                  56-95
127                                                                               2 tablets/pills/capsules
128                                                                                                   4.70
129                                                                                                 425.00
130                                                                          based on weight (44.1-88 lbs)
131                                                                                                   1.70
132                                                                                                 114.00
133                                                                                                   1.30
134                                                                                                 200 mg
135                                                                                                2000.00
136                                                                                                 800.00
137                                                                                                  drops
138                                                                                                   1.80
139                                                                                                  75 mg
140                                                                                                 960.00
141                                                                            based on weight (24-60 lbs)
142                                                                            based on weight (26-50 lbs)
143                                                                          based on weight (24.1-60 lbs)
144                                                                                                 1 pump
145                                                                                                 350.00
146                                                                                                  26-50
147                                                                                                   9.00
148                                                                                                   3.20
149                                                                            based on weight (21-55 lbs)
150                                                                                                   0.75
151                                                                         based on weight (60.1-120 lbs)
152                                                                                                   0.02
153                                                                                                   0.09
154                                                                                              13.5, 810
155                                                                                                   2.20
156                                                                                                  20 mg
157                                                                                                  24-60
158                                                                                                   3.40
159                                                                                                   3.60
160                                                                                                   0.01
161                                                                                                   1 ml
162                                                                                                  15 gm
163                                                                                                  21-55
164                                                                            based on weight (40-60 lbs)
165                                                                              based on weight (50+ lbs)
166                                                                                                   0.90
167                                                                                                   2.60
168                                                                                                   4.50
169                                                                                                8 drops
170                                                                                                  13.50
171                                                                                                  34.00
172                                                                                                  57.00
173                                                                           based on weight (89-132 lbs)
174                                                                                                 180.00
175                                                                                                   2.80
176                                                                                                5 drops
177                                                                                                 130.00
178                                                                                                   2.70
179                                                                                                 325.00
180                                                                                                  64.80
181                                                                                          1 bottle/vial
182                                                                                                  10 mg
183                                                                                                  40-60
184                                                                                                  48.00
185                                                                            based on weight (40-85 lbs)
186                                                                              based on weight (60+ lbs)
187                                                                                                  32.00
188                                                                                                 360.00
189                                                                           based on weight (88-123 lbs)
190                                                                                               wipe/pad
191                                                                                                   1.10
192                                                                                                  14.00
193                                                                                                 150 mg
194                                                                                          23 mg, 460 mg
195                                                                                                   4.02
196                                                                                                  60 mg
197                                                                              based on weight (18+ lbs)
198                                                                                                   0.13
199                                                                                                1 spray
200                                                                                                 175.00
201                                                                                                 powder
202                                                                                                 110.00
203                                                                                                 250 mg
204                                                                                                   3.25
205                                                                                                   3.30
206                                                                                                  35.00
207                                                                                                   1.90
208                                                                                                 102.00
209                                                                                                   2.40
210                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
211                                                                                                 437.50
212                                                                                                  55.00
213                                                                                           pack/package
214                                                                                                 varies
215                                                                                                  13.00
216                                                                                                  17.00
217                                                                                                  22.70
218                                                                                                 300 mg
219                                                                                                   5.40
220                                                                                                   tube
221                                                                                                   0.35
222                                                                                                   1.25
223                                                                                                   1.75
224                                                                                                   2.30
225                                                                                                 270.00
226                                                                                                  28.00
227                                                                                                 51-100
228                                                                                               tapering
229                                                                                                   2.90
230                                                                                                 227 mg
231                                                                                                  25-50
232                                                                                                 560.00
233                                                                                                 562.50
234                                                                                                 750 mg
235                                                                                                   8.80
236                                                                                                   bath
237                                                                                                   0.15
238                                                                                                  16.08
239                                                                                                1647.00
240                                                                                                   2.10
241                                                                                                  25 mg
242                                                                               3 tablets/pills/capsules
243                                                                                                 340.00
244                                                                                                 375 mg
245                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
246                                                                                                   6.50
247                                                                                                  65.00
248                                                                                            bottle/vial
249                                                                                                   0.03
250                                                                                                   0.57
251                                                                                             1 wipe/pad
252                                                                                                1250.00
253                                                                                                 187.50
254                                                                                                   2.25
255                                                                                                  22.00
256                                                                                                 272 ug
257                                                                                                   3.70
258                                                                                                  45.00
259                                                                                                  68 mg
260                                                                                                  73.00
261                                                                                                 875.00
262                                                                                                 112.50
263                                                                                                 136.50
264                                                                                                 225.00
265                                                                                                  37.00
266                                                                                                4 drops
267                                                                                                 550.00
268                                                                                              6-8 drops
269                                                                                                   8.04
270                                                                                                  81.50
271                                                                                                   0.14
272                                                                                                 0.5 mg
273                                                                                                   0.55
274                                                                                                   0.65
275                                                                                                  11.00
276                                                                                                 113.00
277                                                              13.5 mg milbemycin oxime, 810 mg spinosad
278                                                                                                  18.00
279                                                                                                 312.50
280                                                                                                  32.50
281                                                                                                 483.00
282                                                                                                6 drops
283                                                                                                   6.80
284                                                                                                 720.00
285                                                                                                 850.00
286                                                                               based on weight (60 lbs)
287                                                                               based on weight (70 lbs)
288                                                                                                   0.12
289                                                                                                   0.45
290                                                                                               1 collar
291                                                                                                   1 gm
292                                                                                               10000.00
293                                                                                                 190.00
294                                                                                                2 drops
295                                                                                               27, 1610
296                                                                                                3 drops
297                                                                                                   3.80
298                                                                                                  30 mg
299                                                                                                 320.00
300                                                                                                  40-85
301                                                                                                  45.40
302                                                                                               45293.00
303                                                                                                 650.00
304                                                                                                   7.20
305                                                                                                  81.00
306                                                                                                 88-123
307                                                                          based on weight (40.1-85 lbs)
308                                                                            based on weight (41-60 lbs)
309                                                                               based on weight (50 lbs)
310                                                                                               inhalant
311                                                                                              injection
312                                                                                                   0.04
313                                                                                              0.125 tsp
314                                                                                                 0.5 ml
315                                                                                                 1 tbsp
316                                                                                              1-2 drops
317                                                                             1.5 tablets/pills/capsules
318                                                                                               10 drops
319                                                                                                10, 100
320                                                                                                100-150
321                                                                                               125, 500
322                                                                                                 140.00
323                                                                                                1800.00
324                                                                                               2 sprays
325                                                                                           23, 228, 460
326                                                                                                 230.00
327                                                                                                 240 mg
328                                                                                                2500.00
329                                                                                         27 mg, 1620 mg
330                                                                                                  36.00
331                                                                     8.8% (s)-methoprene, 9.8% fipronil
332                                                                                                   9.30
333                                                                          based on weight (40.1-60 lbs)
334                                                                           based on weight (55-100 lbs)
335                                                                                                   0.00
336                                                                                       0.125 inch strip
337                                                                                                 0.3 mg
338                                                                                                 0.6 mg
339                                                                                                1 mg/kg
340                                                                                                   1.34
341                                                                                              1.5 mg/ml
342                                                                                                  10.80
343                                                                                               114, 136
344                                                                                             1200, 1500
345                                                                                                 125 mg
346                                                                                                  15 mg
347                                                                                                1600.00
348                                                                                                  21.00
349                                                                                                 222.00
350                                                                                                  26.00
351                                                                                                 272 mg
352                                                                                                 284.00
353                                                                                                   3 mg
354                                                                                                   3 ml
355                                                                                                3000.00
356                                                                                              4-6 drops
357                                                                                                 499.00
358                                                                                                   5 mg
359                                                                                                   5.50
360                                                                                                 700.00
361                                                                                                  80 mg
362                                                                                                  88.00
363                                                                                                 89-132
364                                                                                                   9.70
365                                                                                                  97.20
366                                                                             based on weight (0-25 lbs)
367                                                                            based on weight (25-50 lbs)
368                             based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
369                                                                           based on weight (85-130 lbs)
370                                                                                                   0-25
371                                                                                                   0.05
372                                                                                                   0.16
373                                                                                                   0.28
374                                                                                0.5 tablet/pill/capsule
375                                                                                                   0.67
376                                                                                                 1.5 ml
377                                                                                                  10.70
378                                                                                                 100 ml
379                                                                                                100-200
380                                                                                                 105.00
381                                                                                                  16.60
382                                                                                                1650.00
383                                                                                                1750.00
384                                                                                                  19.00
385                                                                                                   2 ml
386                                                                                                2.68 ml
387                                                                                        2.68 ml of 9.8%
388                                                                                                 215.00
389                                                                                                  33.00
390                                                                                                   4.10
391                                                                                                   4.30
392                                                                      4.5% flumethrin, 10% imidacloprid
393                                                                                                   4.95
394                                                                                               45451.00
395                                                                                                 540.00
396                                                                                                  6, 15
397                                                                                                  85.00
398                                                                              based on weight (25+ lbs)
399                                                                           based on weight (88-132 lbs)
400                                                                                                   0.08
401                                                                                                   0.43
402                                                                                         0.5 inch strip
403                                                                                                 1 dose
404                                                                                                   1 mg
405                                                                                      1 syringe/pipette
406                                                                                                  1 tsp
407                                                                                             1-2 sprays
408                                                                                              100000.00
409                                                                                              11.5, 230
410                                                                                                 115.00
411                                                                                                 135.00
412                                                                                                  15 ml
413                                                                                                 170.25
414                                                                                                1700.00
415                                                                                              2-3 drops
416                                                                                                 210.00
417                                                                                                 220.00
418                                                                                          23 mg, 228 mg
419                                                                                                 262.00
420                                                                                                 275.00
421                                                                                              3-5 drops
422                                                                                              4-5 drops
423                                                                                                   4.20
424                                                                                                   4.40
425                                                                                                 400 mg
426                                                                                                4000.00
427                                                                                                 408.00
428                                                                                                 409.80
429                                                                                                 468.00
430                                                                                                 468.75
431                                                                                                   5.75
432                                                                                                  56.75
433                                                                                                  60 ml
434                                                                                                 61-120
435                                                                                              62.5, 437
436                                                                                                  64.00
437                                                                                                   8 mg
438                                                                                             8-10 drops
439                                                                                                  95.00
440                                                                               based on weight (55 lbs)
441                                                                            based on weight (55-88 lbs)
442                                                                           based on weight (88-110 lbs)
443                                                                                               0.25 tsp
444                                                                                                   0.34
445                                                                                                   0.36
446                                                                                                   0.38
447                                                                                                 0.4 mg
448                                                                                                   0.48
449                                                                                              0.5 mg/kg
450                                                                                                   0.66
451                                                                                                 0.7 mg
452                                                                                           1 inch strip
453                                                                                                1080.00
454                                                                                              11.5, 114
455                                                                                                1125.00
456                                                                                                 132.00
457                                                                                        136 mcg, 114 mg
458                                                                                               160, 800
459                                                                                                1620 mg
460                                                                                                2 mg/kg
461                                                                                                  20-40
462                                                            222 mcg ivermectin, 227 mg pyrantel pamoate
463                                                                                                2250.00
464                                                                                                  23-44
465                                                                                                  25-60
466                                                                                                25.1-50
467                                                                                                 251.00
468                                                                                                 252.00
469                                                                                                 260.00
470                                                                                               272, 228
471                                                                                              3-4 drops
472                                                                                                  30 ml
473                                                                                                 310.00
474                                                                                                  32.40
475                                                                                                 330.00
476                                                                                                  36.08
477                                                                                                   4 ml
478                                                                                                   4.80
479                                                                                                  40-80
480                                                                                                  41-60
481                                                                                                  41-85
482                                                                                                  44.00
483                                                                                          5 billion cfu
484                                                                                                   5.60
485                                                                                                  50-75
486                                                                                              500125.00
487                                                                                                  52.00
488                                                                                                 55-100
489                                                                                                   6.70
490                                                                                                  66.00
491                                                                                                7 drops
492                                                                                                   7.10
493                                                                                                   7.60
494                                                                                                  72.00
495                                                                                                   8 oz
496                                                                                                 88-132
497                                          90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
498                                                                                                  93.00
499                                                                                                 950.00
500                                              based on weight (25-50 lbs), based on weight (50-100 lbs)
501                                                                            based on weight (40-80 lbs)
502                                                                            based on weight (60-80 lbs)
503                                                                           based on weight (61-120 lbs)
504                                                                         based on weight (88.1-132 lbs)
505                                                                              based on weight (<25 lbs)
506                                                                                                 0.1 ml
507                                                                                                   0.11
508                                                                                              0.2 mg/kg
509                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
510                                                                                                 0.4 ml
511                                                                                                   0.44
512                                                                                                0.5 tsp
513                                                                                                   0.54
514                                                                                                   0.56
515                                                                                                0.57 mg
516                                                                                                   0.68
517                                                                                                   0.69
518                                                                                                   0.91
519                                                                                                   0.97
520                                                                                          1 application
521                                     1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
522                                                                                                1 scoop
523                                                                                                  1-1.5
524                                                                                              1-2 pumps
525                                                                                                   1.14
526                                                                                                 1.4 ml
527                                                                                                   1.45
528                                                                                                   1.55
529                                                                                                   1.56
530                                                                                                   1.86
531                                                                                               10 mg/kg
532                                                                                                  10.50
533                                                                                               100, 400
534                                                                                               1000 mcg
535                                                                                                1100.00
536                                                                                                1200 mg
537                                                                                               125, 875
538                                                                                                  13 ml
539                                                                                                1300.00
540                                                                                                 134.00
541                                                                                                1340.00
542                                                                                                1400 mg
543                                                                                                  15-20
544                                                                                                1500 mg
545                                                                                                 164.00
546                                                                                                  18.75
547                                                                                                   2 mg
548                                                                                                2 pumps
549                                                                                                   2.27
550                                                                                                 2.5 mg
551                                                                                              2.5 mg/kg
552                                                                                                 205.00
553                                                                                                  23.50
554                                                                                                 235.00
555                                                                                                2400.00
556                                                                  25 milbemycin oxime, 228 praziquantel
557                                                                                                  29.00
558                                                                                                 290.00
559                                                                                                   3.10
560                                                                                                   3.90
561                                                                                                3200.00
562                                                                                                 325 mg
563                                                                                                  34.05
564                                                                                                  34.50
565                                                                                               350, 900
566                                                                                                  38.00
567                                                                                                   4 mg
568                                                                                               4.5, 270
569                                                                                                   4.90
570                                               4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
571                                                                                                  41-88
572                                                                                                  41.47
573                                                                                                 420.00
574                                                                                                 476.00
575                                                                                                5 mg/kg
576                                                                                             5-10 drops
577                                                                                              5-6 drops
578                                                                                              5-8 drops
579                                                                                                   5.80
580                                                                                                   5.90
581                                                                                              50 mcg/kg
582                                                                                               50 mg/kg
583                                                                                                  53.00
584                                                                                                   6.25
585                                                                                                   6.30
586                                                                                                  60-80
587                                                                                                 600 mg
588                                                                                                 680.00
589                                                                                                 7.4 ml
590                                                                                                 7.5 ml
591                                                                                                 75-100
592                                                                                                  76.00
593                                                                                                   8.50
594                                                 8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
595                                                                                                80, 400
596                                                                                                   9.10
597                                                                                                   9.50
598                                                                                                 900 mg
599                                                                                                 952.40
600                                                                                                 960 mg
601                                                                                                  98.00
602                                                                                                  99.00
603                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
604                                                                              based on weight (100 lbs)
605                                                                            based on weight (11-25 lbs)
606                                                                            based on weight (20-55 lbs)
607                                                                            based on weight (22-55 lbs)
608                                                                               based on weight (40 lbs)
609                                                                            based on weight (41-88 lbs)
610                                                                            based on weight (45-80 lbs)
611                                                                           based on weight (50-110 lbs)
612                                                                 based on weight (51-100 lbs) - 272 mcg
613                                                                               based on weight (54 lbs)
614                                                                          based on weight (55.1-88 lbs)
615                                                                              based on weight (56+ lbs)
616                                                                            based on weight (56-90 lbs)
617                                                                               based on weight (59 lbs)
618                                                                           based on weight (60-100 lbs)
619                                                                               based on weight (75 lbs)
620                                                                               based on weight (80 lbs)
621                                                                               based on weight (86 lbs)
622                                                                                                     ml
623                                                                                             0.02 mg/kg
624                                                                                             0.03 mg/kg
625                             0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
626                                                                                                   0.17
627                                                                                                   0.18
628                                                                                                   0.23
629                                                                                            0.284, 0.57
630                                                                                                   0.33
631                                                                                      0.44, 4.95, 36.08
632                                                                                          0.44, 8.8, 44
633                                                                                       0.5 pack/package
634                                                                                                   0.52
635                                                                                                   0.53
636                                                                                                   0.63
637                                                                                                   0.64
638                                                                                                   0.71
639                                                                                               0.75 tsp
640                                                                                                 0.8 mg
641                                                                                                   0.85
642                                                                                                   0.87
643                                                                                                   0.94
644                                                                                                   0.95
645                                                                                                   0.96
646                                                                                            1 injection
647                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
648                                                                                                1 mg/lb
649                                                                                               1 pellet
650                                                                          1 tablet/pill/capsule - 10 mg
651                                                                          1 tablet/pill/capsule - 16 mg
652                                                                            1 tablet/pill/capsule - 500
653                                                                          1 tablet/pill/capsule - 75 mg
654                                                                                             1-2 scoops
655                                                                                                   1.06
656                                                                                                   1.08
657                                                                                                 1.1 ml
658                                                                                                   1.12
659                                                                                             1.14 mg/lb
660                                                                                                   1.17
661                                                                                                   1.27
662                                                                                                   1.37
663                                                                                                   1.42
664                                                                                                   1.43
665                                                                                                 1.5 gm
666                                                                                                 1.6 ml
667                                                                                                   1.65
668                                                                                                   1.67
669                                                                                                 1.7 ml
670                                                                                                   1.74
671                                                                                                1.75 ml
672                                                                                                   1.88
673                                   10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
674                                                                                                  10 ml
675                                                                                                  10.20
676                                                                                                 104.00
677                                                                                                 108.00
678                                                                                                  11.40
679                                                                                                11.5 mg
680                                                          11.5 mg milbemycin oxime, 114 mg praziquantel
681                                                                                                1110.00
682                                                                                                1136.00
683                                                                                                12.5-25
684                                                                                                  12.60
685                                                                                                 126.00
686                                                                                                 126.55
687                                                                                                  13.01
688                                                                                                  13.10
689                                                                                        13.5 mg, 810 mg
690                                                                                               13000.00
691                                                                                                1350.00
692                                                                                                 144.00
693                                                                                                 145.00
694                                                                                              155, 1200
695                                                                                                 156.00
696                                                                                                  16.90
697                                                                                                 160 mg
698                                                                                                  17.50
699                                                                                                 184.00
700                                                                                                 186.00
701                                                                                                  19.50
702                                                                                                1950.00
703                                                            2 mg prednisone, 5 mg trimeprazine tartrate
704                                                                                                2 mg/ml
705                                                                                                   2.05
706                                                                                                   2.15
707  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
708                                                                                                 2.5 ml
709                                                                     2.5 tablets/pills/capsules - 10 mg
710                                                                                                 2.5, 5
711                                                                                                 2.5-20
712                                                                                                   2.65
713                                                                                        2.68 ml of 9.7%
714                                                                                                   2.75
715                                                                                                   2.85
716                                                                                               20 mg/kg
717                                                                                                20, 200
718                                                                                                2000 iu
719                                                                                                2000 mg
720                                                                                                 204.30
721                                                                                                 208.00
722                                                                                                2140.00
723                                                                                                  22-44
724                                                                                                 226.00
725                                                                                                 226.80
726                                                                                                227 mcg
727                                                                                                 228 mg
728                                                                                                 229.00
729                                                                                                 23-228
730                                                                                                 236.00
731                                                                                                  24 mg
732                                                                                                  25.30
733                                                      250 mg amoxicillin, 62.5 mg clavulanate potassium
734                                                                                                  26.10
735                                                                                                 264.00
736                                                                                                27-1620
737                                                                                                  27.50
738                                                                                                 273.00
739                                                                                                 277.00
740                                                                                                2780.00
741                                                                27mg milbemycin oxime, 1620 mg spinosad
742                                                                                                  28.30
743                                                                                                  28.50
744                                                                                                 280.00
745                                                                                                3 pumps
746                                                                                                 3, 7.5
747                                                                                                   3.08
748                                                                                                   3.15
749                                                                                                 3.2 ml
750                                                                                                  30 gm
751                                                                                                  30.20
752                                                                                                  31-60
753                                                                                                  31.00
754                                                                                                 315.00
755                                                                                                  33.20
756                                                                                                 365.00
757                                                                                                 372.00
758                                                                                                 385.00
759                                                                                                4 mg/kg
760                                                                      4 tablets/pills/capsules - 0.5 gm
761                                                                                                   4.28
762                                                                                                 4.5-10
763                                                                 400 mg imidacloprid, 100 mg moxidectin
764                                                                                                  41.00
765                                                                                                  43.00
766                                                                                                 437.00
767                                                                                                  45-80
768                                                                                               45355.00
769                                                                                                 460 mg
770                                                                                                 469.00
771                                                                               5 tablets/pills/capsules
772                                                                                                5-10 mg
773                                                                                                   5.20
774                                                                                               50.1-100
775                                                                                                5000.00
776                                                                                                  51.00
777                                                                                                  55-88
778                                                                                                  55-95
779                                                                                                  56.25
780                                                                                                57, 460
781                                                                                                 57, 68
782                                                                                                 570.00
783                                                                                                  59.00
784                                                                                                   6.20
785                                                                                                   6.40
786                                                                                                   6.60
787                                                                                                60, 500
788                                                                                                 60-100
789                                                                                                6000.00
790                                                                                                 61-100
791                                                                                                 620.00
792                                                                                                 625 mg
793                                                                                                  63.00
794                                                                                                 640.00
795                                                                                                 660.00
796                                                                                                  67.00
797                                                                                                 68 mcg
798                                                              68 mcg ivermectin, 57 mg pyrantel pamoate
799                                                                                                 682.00
800                                                                                                   7.30
801                                                                                                   7.80
802                                                                                                  74.00
803                                                                                                   8 au
804                                                                8.8% imidacloprid, 44% permethrin - 4ml
805                                                                                               8.8, 9.8
806                                                                                                 823.50
807                                                                                                 840.00
808                                                                                                  87.50
809                                                                                                   9.20
810                                                                                               9.3, 560
811                                                                                                  90 mg
812                                                                                                  93.75
813                                                                                                  96.00
814                                                                             based on weight (0-22 lbs)
815                                                based on weight (0-8 lbs), based on weight (50-100 lbs)
816                                               based on weight (1-25 lbs), based on weight (51-100 lbs)
817                                                                               based on weight (20 lbs)
818                                                                            based on weight (20-60 lbs)
819                                                                            based on weight (22-44 lbs)
820                                                                            based on weight (25-75 lbs)
821                                                                            based on weight (44-80 lbs)
822                                                                               based on weight (45 lbs)
823                                                                              based on weight (45+ lbs)
824                                                                  based on weight (45-88 lbs) - 2.68 ml
825                                                                            based on weight (45-90 lbs)
826                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
827                                                                 based on weight (50-100 lbs) - 272 mcg
828                                                                               based on weight (51 lbs)
829                                                                            based on weight (55-95 lbs)
830                                                                               based on weight (58 lbs)
831                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
832                                                                based on weight (60.1-121 lbs) - 136 mg
833                                                     based on weight (60.1-121 lbs) - 136 mg afoxolaner
834                                                                           based on weight (61-100 lbs)
835                                                                               based on weight (64 lbs)
836                                                                               based on weight (66 lbs)
837                                                                               based on weight (77 lbs)
838                                                                              based on weight (80+ lbs)
839                                                                               based on weight (92 lbs)
840                                                                              based on weight (<60 lbs)
841                                                                                             continuous
842                                                                                                    mcg
843                                                                                        syringe/pipette
844                                                                                                      %
845                                                                                                  0-125
846                                                                                                   0-22
847                                                                                                   0-88
848                                                                                             0.025, 2.5
849                                                                                             0.05 mg/kg
850                                                                                        0.05%, 0.5%, 3%
851                                                                                                   0.06
852                                                                                                   0.07
853                                                                                           0.1%, 1%, 2%
854                                                                                                 0.1, 1
855                                                                                             0.125-0.25
856                                                                                            0.135 fl oz
857                                                                                             0.14 fl oz
858                                                                                                   0.19
859                                                                                                 0.2 mg
860                                                                                                 0.2 ml
861                                                                                                   0.21
862                                                                                                   0.22
863                                                                                        0.22, 1.1, 0.01
864                                                                                             0.23 mg/lb
865                                      0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
866                                                                                                   0.24
867                                                                                               0.25 cup
868                                                                                                0.25 ml
869                                                                                               0.25-0.5
870                                                                                                   0.26
871                                                                                                   0.27
872                                                                                      0.284 mg, 0.57 mg
873                                                                                   0.285 mg/ml, 0.57 mg
874                                                                                                   0.29
875                                                                                          0.3 (10mg/ml)
876                                                                                                 0.3 ml
877                                                                                                 0.3, 1
878                                                                                                0.35 ml
879                                                                                              0.4 mg/kg
880                                                                                                   0.41
881                                                                                                   0.42
882                                                                                                0.5 cup
883                                                                                                 0.5 gm
884                                                                                                 0.5 hr
885                                                                                                0.5 mcg
886                                                                                              0.5 ml/kg
887                                                                                                 0.5 oz
888                                                                       0.5 tablet/pill/capsule - 100 mg
889                                                                     0.5 tablet/pill/capsule - 125, 500
890                                                                       0.5 tablet/pill/capsule - 227 mg
891                                                                          0.5 tablet/pill/capsule - 250
892                                                                       0.5 tablet/pill/capsule - 250 mg
893                                                                           0.5 tablet/pill/capsule - 75
894                                                                                               0.5 tube
895                                                                                               0.5%, 3%
896                                                                                               0.5, 227
897                                                                                                0.5-0.7
898                                                                              0.5-1 tablet/pill/capsule
899                                                                      0.5-1 tablet/pill/capsule - 16 mg
900                                                                          0.5-1.0% (50 minute duration)
901                                                                                                  0.5-2
902                                                                                          0.5293, 5, 23
903                                                                                             0.57 mg/ml
904                                                                                                   0.58
905                                                                                                   0.59
906                                                                                              0.6 mg/ml
907                                                                                                   0.61
908                                                                                                   0.62
909                                                                                                0.65 ml
910                                                                                              0.7 mg/m2
911                                                                                                   0.72
912                                                                                                0.75 ml
913                                                                               0.75 tablet/pill/capsule
914                                                                       0.75 tablet/pill/capsule - 75 mg
915                                                                                             0.75, 0.75
916                                                                                                   0.76
917                                                                                               0.8, 9.8
918                                                                                                   0.81
919                                                                                                   0.82
920                                                                                                   0.83
921                                                                                                   0.86
922                                                                                                   0.88
923                                                                                                   0.89
924                                                                                                   0.99
925                                                                                                   1 au
926                                                                                                 1 bath
927                                    1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
928                                                                                                    1 l
929                                   1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
930                                   1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
931                                                  1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
932                                                                                                   1 oz
933                                                         1 tablet/pill/capsule - 100 mg dha, 155 mg epa
934                                                                           1 tablet/pill/capsule - 1000
935                                                                        1 tablet/pill/capsule - 1000 mg
936                                                                         1 tablet/pill/capsule - 136 mg
937                                                                            1 tablet/pill/capsule - 160
938                                                                             1 tablet/pill/capsule - 20
939                                                                          1 tablet/pill/capsule - 20 mg
940                                                                         1 tablet/pill/capsule - 200 mg
941                                                                          1 tablet/pill/capsule - 23 mg
942                                                                         1 tablet/pill/capsule - 250 mg
943                                                                       1 tablet/pill/capsule - 27, 1620
944                                                                            1 tablet/pill/capsule - 375
945                                       1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
946                                                                           1 tablet/pill/capsule - 5 mg
947                                                                          1 tablet/pill/capsule - 80 mg
948                                                                                          1 tube - 1 ml
949                                                                                          1 tube - 4 ml
950                                                                                                 1 unit
951                                                                                                 1, 2.5
952                                                                                              1, 32, 40
953                                                                                1-2 tablet/pill/capsule
954                                                                                              1-2 wipes
955                                                                                                   1.05
956                                                                                                   1.09
957                                                                                              1.1 - 1.6
958                                                                                        1.11, 1.5, 15.1
959                                                                                                   1.13
960                                                                                                   1.22
961                                                                                                 1.25 l
962                                                                               1.25 tablet/pill/capsule
963                                                                            1.25 tablets/pills/capsules
964                                                                   1.25 tablets/pills/capsules - 375 mg
965                                                                                                   1.26
966                                                                                                   1.28
967                                                                                                 1.3 mg
968                                                                                                   1.32
969                                                                                                1.34 ml
970                                                                                                   1.35
971                                                                                                   1.36
972                                                                                         1.4 ml, 2.8 ml
973                                                                                                   1.47
974                                                                                                   1.48
975                                                                                               1.5 cups
976                                                                                                 1.5 mg
977                                                                   1.5 mg homatropine, 5 mg hydrocodone
978                                                                                             1.5 scoops
979                                                                                1.5 tablet/pill/capsule
980                                                                       1.5 tablets/pills/capsules - 100
981                                                                       1.5 tablets/pills/capsules - 136
982                                                                    1.5 tablets/pills/capsules - 136 mg
983                                                                        1.5 tablets/pills/capsules - 20
984                                                                    1.5 tablets/pills/capsules - 204 mg
985                                                                      1.5 tablets/pills/capsules - 5 mg
986                                                                        1.5 tablets/pills/capsules - 50
987                                                                     1.5 tablets/pills/capsules - 50 mg
988                                                                    1.5 tablets/pills/capsules - 500 mg
989                                                                     1.5 tablets/pills/capsules - 68 mg
990                                                                                                1.5 tsp
991                                                                                               1.5-2 mg
992                                                                                                1.5-2.5
993                                                                                       1.5-7.5, 2.25, 5
994                                                                                                   1.54
995                                                                                                   1.58
996                                                                                                1.59 ml
997                                                                                                   1.61
998                                                                                                   1.62
999                                                                                                   1.63
1000                                                                                                  1.64
1001         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
1002                                                                                                  1.68
1003                                                                                               1.71 ml
1004                                                                                                  1.76
1005                                                                                                1.8 ml
1006                                                                                                  1.83
1007                                                                                                  1.84
1008                                                                                        1.9 mg, 1.9 ml
1009                                                                                             1.9 mg/ml
1010                                                                                                1.9 ml
1011                                                                                                  1.92
1012                                                                                                  1.99
1013                                                                                        10 billion cfu
1014                                                                   10 dextromethorphan, 10 guaifenesin
1015                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
1016                                                                                         10 mg, 100 mg
1017                                                                                          10 mg/100 ml
1018                                                                                              10 mg/lb
1019                                                                                              10 mg/ml
1020                                                                                     10 mg/ml - 0.1 ml
1021                                                                                          10 ucg/kg/hr
1022                                                                                                   10+
1023                                                                                               10, 325
1024                                                                                            10, 40, 40
1025                                                                                                10-121
1026                                                                                           10-15 drops
1027                                                                                              10-20 mg
1028                                                                                                 10.40
1029                                                                                                 10.60
1030                                                                                                10/100
1031                                                                                                100 gm
1032                                                          100 mg flunixin, 8 ml fluocinolone acetonide
1033                                                                                        100 mg, 400 mg
1034                                                                                             100 mg/ml
1035                                                                                             100, 1000
1036                                                                                              100, 200
1037                                                                                            100-200 mg
1038                                                                                               100-250
1039                                                                                                100.80
1040                                                                                          100/10 gm/dm
1041                                                                                               1000 ml
1042                                                                                        1000 to 250 mg
1043                                                                                            1000 units
1044                                                                                             1000-2000
1045                                                                    100000 nystatin, 2500 thiostrepton
1046                                                   100000 units nystatin, 1 mg triamcinolone acetonide
1047                                                                                  100000, 2.5, 2500, 1
1048                                                                                        10000000000.00
1049                                                                                                102 mg
1050                                                                                               1020.00
1051                                                                                        1021 mcg/kg/hr
1052                                                                                                103.00
1053                                                                                              10325.00
1054                                                                                                107.50
1055                                                                                                108.73
1056                                                                                               1088.20
1057                                                                                                109.00
1058                                                                                               1090.00
1059                                                                                                 11 ml
1060                                                                                               11, 230
1061                                                                                                 11.20
1062                                                                                                 11.35
1063                                                                                             11.5, 235
1064                                                                                                 11.71
1065                                                                                                110 mg
1066                                                                                               1105.00
1067                                                                                                111.00
1068                                                                                              112, 272
1069                                                                                                112.00
1070                                                                                                113.40
1071                                                                                             113.5-227
1072                                                                                               1150.00
1073                                                                                                116.00
1074                                                                                                117.09
1075                                                                                                119.00
1076                                                                                              12 mg/kg
1077                                                                                                 12 ml
1078                                                                                        12.5-25, 25-50
1079                                                                                                 12.65
1080                                                                                                 12.70
1081                                                                                                120 mg
1082                                                                                     120 mg/ml, 360 mg
1083                                                                                             1200-2400
1084                                                                                              12000.00
1085                                                                                            1200000.00
1086                                                                                                122.00
1087                                                                                               1224.60
1088                                                                                                123.00
1089                                                                                                124.00
1090                                                                                               1240.00
1091                                                                                        125 mg, 500 mg
1092                                                                                              125, 375
1093                                                                                             125000.00
1094                                                                                              12510.00
1095                                                                                               1272.00
1096                                                                                               13, 228
1097                                                                                               13, 810
1098                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
1099                                                                                                 13.20
1100                                                                                                 13.30
1101                                                                                            13.5, 1620
1102                                                                                                 13.60
1103                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
1104                                                                                                133.00
1105                                                                                               1345.00
1106                                                                                            1350000.00
1107                                                                                               136 mcg
1108                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
1109                                                                                       136, 136, 680.4
1110                                                                                                136.20
1111                                                                                                137.00
1112                                                                                                139.20
1113                                                                                               1390.00
1114                                                                                                 14 ml
1115                                                                                                 14.20
1116                                                                                                 14.34
1117                                                                                                 14.50
1118                                                                                            14.8, 16.6
1119                                                                                                 14.80
1120                                                                                                142.00
1121                                                                                                143.00
1122                                                                                               1440.00
1123                                                                                               1450.00
1124                                                                                               1454.00
1125                                                                                               1470.00
1126                                                                                                149.00
1127                                                                                                 15 au
1128                                                                                                 15.40
1129                                                                                               15.7 ml
1130                                                                                                 15.70
1131                                                                                             150 ml/hr
1132                                                                                             150, 1200
1133                                                                                               150-100
1134                                                                                               150-480
1135                                                                                               1510.00
1136                                                                                               1545.00
1137                                                                                                158.00
1138                                                                                                159.00
1139                                                                                               1590.00
1140                                                                                             16-116 mg
1141                                                                                                 16.50
1142                                                                                                161.80
1143                                                                                                162.00
1144                                                                                               1627.00
1145                                                                                               1692.00
1146                                                                                               1693.00
1147                                                                                              17 ml/lb
1148                                                                                                 17.20
1149                                                                                                 17.60
1150                                                                                                 17.70
1151                                                                                                 17.71
1152                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
1153                                                                                               1770.00
1154                                                                                               1776.00
1155                                                                                                178.00
1156                                                                                                 18.50
1157                                                                                                 18.60
1158                                                                                                181.00
1159                                                                                               1880.00
1160                                                                                               1886.00
1161                                                                                                 19.60
1162                                                                                                 19.80
1163                                                                                               1900.00
1164                                                                                               1920.00
1165                                                                                                196.00
1166                                                                                 1:10 part water ratio
1167                                                                                         2 billion cfu
1168                                                                                       2 bottles/vials
1169                                                 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
1170                                                                                            2 mg, 5 mg
1171                                                                               2 mg/ml, 1%, 22.7 mg/ml
1172                                                                 2 prednisone, 5 trimeprazine tartrate
1173                                                                                              2 scoops
1174                                                                       2 tablets/pills/capsules - 1 mg
1175                                                                     2 tablets/pills/capsules - 100 mg
1176                                                                    2 tablets/pills/capsules - 1200 mg
1177                                                                     2 tablets/pills/capsules - 150 mg
1178                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
1179                                                                   2 tablets/pills/capsules - 20 mg/kg
1180                                                                    2 tablets/pills/capsules - 2000 mg
1181                                                                     2 tablets/pills/capsules - 300 mg
1182                                                                        2 tablets/pills/capsules - 425
1183                                                                      2 tablets/pills/capsules - 50 mg
1184                                                                                                 2 tsp
1185                                                           2% chlorhexidine gluconate, 1% ketoconazole
1186                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
1187                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
1188                                                                                                  2, 4
1189                                                                                                 2-2.5
1190                                                                                            2-3 sprays
1191                                                                            2-3 tablets/pills/capsules
1192                                                                 2-3 tablets/pills/capsules - 400, 500
1193                                                                      2-3 tablets/pills/capsules - 4mg
1194                                                                                             2-4 drops
1195                                                                                                  2.13
1196                                                                                                  2.14
1197                                                                                                2.2 ml
1198                                                                                       2.2, 14.8, 16.6
1199                                                                                                  2.24
1200                                                                                               2.25 ml
1201                                                                                            2.27 mg/lb
1202                                                                                                2.3 mg
1203                                                                                              2.3, 140
1204                                                                                                  2.33
1205                                                                                                  2.45
1206                                                                                              2.5 cups
1207                                                                                                  2.64
1208                                                                                                  2.66
1209                                                                                       2.68 ml of 8.8%
1210                                                                                                2.7 mg
1211                                                                                                2.7 ml
1212                                                                                                  2.72
1213                                                                                                  2.86
1214                                                                                                  2.93
1215                                                                                                 20-25
1216                                                                                                 20-30
1217                                                                                                 20-55
1218                                                                                                 20-60
1219                                                                                                200 ml
1220                                                                                             200, 1500
1221                                                                                              20000.00
1222                                                                                                201.00
1223                                                                                                201.60
1224                                                                                                203.00
1225                                                                                               2045.00
1226                                                                                                 21-30
1227                                                                                               2100.00
1228                                                                                               2160.00
1229                                                                                                 22-30
1230                                                                                                 22-55
1231                                                                                                 22.10
1232                                                                                                 22.50
1233                                                                                             22.7, 272
1234                                                                                                223.00
1235                                                                                                224.00
1236                                                                                       227 mcg, 227 mg
1237                                                                                              227, 277
1238                                                                                       23 mcg, 228 mcg
1239                                                                                         23 mg, 469 mg
1240                                                                                              23 mg/ml
1241                                                                                                 23.60
1242                                                                                                 23.80
1243                                                                                                230 mg
1244                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
1245                                                                                                237.50
1246                                                                                                 24-50
1247                                                                                               24.1-60
1248                                                                                                 24.12
1249                                                                                               240-480
1250                                                                                                248.00
1251                                                                                              25 drops
1252                                                                                                25 lbs
1253                                                                                              25 mg/kg
1254                                                                                                 25-35
1255                                                                                               25-37.5
1256                                                                                             25.3, 506
1257                                                                     250 imidacloprid, 62.5 moxidectin
1258                                                                                250 mg, 300 mg, 600 mg
1259                                                                                             250 mg/m2
1260                                                                                              250, 500
1261                                                                                                253.00
1262                                                                                                255.00
1263                                                                                                256.00
1264                                                                                                258.00
1265                                                                                                 26-60
1266                                                                                                 26.80
1267                                                                                                 26.90
1268                                                                                               2600.00
1269                                                                                                263.00
1270                                                                                               2655.00
1271                                                                                                268.00
1272                                                                                                 27 mg
1273                                                               27 mg milbemycin oxime, 620 mg spinosad
1274                                                                                       27 mg, 1620 mcg
1275                                                                                                 27.20
1276                                                                                                 27.40
1277                                                                                                 27.60
1278                                                                                270 mg dha, 425 mg epa
1279                                                                                                272 gm
1280                                                                                       272 mcg, 228 mg
1281                                                                                                274.00
1282                                                                                               2790.00
1283                                                                                                 28 mg
1284                                                                                              28 mg/m2
1285                                                                                                 28.40
1286                                                                                                 28.54
1287                                                                                                 28.75
1288                                                        28.75 mg milbemycin oxime, 285 mg praziquantel
1289                                                                                                 29.50
1290                                                                                                291.00
1291                                                                                                  3 au
1292                                                                                              3 gm/tsp
1293                                                                                               3 mg/kg
1294                                                                         3 tablets/pills/capsules - 25
1295                                                                                                 3 tsp
1296                                                                     3% chloroxylenol, 3% ketoconazole
1297                                                                                                  3.03
1298                                                                                                  3.05
1299                                                                                                  3.13
1300                                                                                                  3.18
1301                                                                                                  3.37
1302                                                                                                3.4 mg
1303                                                                                                  3.44
1304                                                                                                  3.45
1305                                                                                                3.5 gm
1306                                                                            3.5 tablets/pills/capsules
1307                                                                                       3.5, 400, 10000
1308                                                                                                  3.86
1309                                                                                          30 mg, 40 mg
1310                                                                                              30 mg/kg
1311                                                                                              30 mg/m2
1312                                                                                         30 wipes/pads
1313                                                                                              300, 600
1314                                                                                             3000 u/ml
1315                                                                                             300000.00
1316                                                                                                312.00
1317                                                                                               3170.00
1318                                                                                                 32.10
1319                                                                                             32.4-64.8
1320                                                                                               32.5 mg
1321                                                                                                323.00
1322                                                                                                329.00
1323                                                                                                336.00
1324                                                                                                337.50
1325                                                                                338 mg dha, 515 mg epa
1326                                                                                                 34 mg
1327                                                                                                 34.20
1328                                                                                                340.50
1329                                                                                                344.00
1330                                                                                                345 mg
1331                                                                                                345.00
1332                                                                                               3460.00
1333                                                                                                 35 mg
1334                                                                                               35, 425
1335                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
1336                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
1337                                                                                350 mg, 800 mg, 900 mg
1338                                                                                               3500.00
1339                                                                                               3540.00
1340                                                                                              37, 1620
1341                                                                                               37.5 mg
1342                                                                                                370.00
1343                                                                                                373.00
1344                                                       375 mg amoxicillin, 94 mg clavulanate potassium
1345                                                                                                 38.50
1346                                                                                                 38.70
1347                                                                                                390.00
1348                                                                                                  4 gm
1349                                                                                               4 mg/ml
1350                                                                                               4.02 ml
1351                                                                                                  4.04
1352                                                                                            4.125 cups
1353                                                                                                  4.25
1354                                                                                             4.4 mg/kg
1355                                                                                                  4.60
1356                                                                                                4.7 ml
1357                                                                                                  4.76
1358                                                                                                4.8 ml
1359                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
1360                                                                                                 40 mg
1361                                                                                               40, 200
1362                                                                                                 40-50
1363                                                                                                 40-88
1364                                                                                              400, 500
1365                                                                                                409.50
1366                                                                                               410 epa
1367                                                                                                 42.00
1368                                                                                                 42.50
1369                                                                                               4200.00
1370                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
1371                                                                                                429.00
1372                                                                                                 43.40
1373                                                                                                 43.65
1374                                                                                                430.00
1375                                                                                              44 mg/kg
1376                                                                                                440.00
1377                                                                                                 45 mg
1378                                                                                               45, 450
1379                                                                                             45-60 mcg
1380                                                                                                 45-85
1381                                                                                               45-88.9
1382                                                                                              45294.00
1383                                                                                              45325.00
1384                                                                                              45327.00
1385                                                                                              45387.00
1386                                                                                              45390.00
1387                                                                                                454.00
1388                                                                                              45418.00
1389                                                                                              45419.00
1390                                                                                              45514.00
1391                                                                                              45516.00
1392                                                                                              45577.00
1393                                                                                              45585.00
1394                                                                                                456.00
1395                                                                                                 46-60
1396                                                                                                 46.00
1397                                                                    460 lufenuron, 25 milbemycin oxime
1398                                                                                      460 mg lufenuron
1399                                                              460 mg lufenuron, 26 mg milbemycin oxime
1400                                                                                               4600.00
1401                                                                                                475.00
1402                                                                                                478.00
1403                                                                                                 48-88
1404                                                                                                480 mg
1405                                                                                                 49.00
1406                                                                5 mg neomycin sulfate, 1 mg tetracaine
1407                                                                                         5 minute soak
1408                                                                                                  5 ml
1409                                                                                                5 tbsp
1410                                                                                              5 x 10^7
1411                                                                                              5, 162.5
1412                                                                                                  5, 2
1413                                                                                                 5, 50
1414                                                                                               5-10 ml
1415                                                                                                 5-100
1416                                                                                             5-7 drops
1417                                                                                              5-7.5 mg
1418                                                                                                  5.10
1419                                                                                                  5.25
1420                                                                                                  5.30
1421                                                                                                  5.37
1422                                                                                         5.4 mg, 16 mg
1423                                                                                                  5.63
1424                                                                                                  5.70
1425                                                                                             5.75, 115
1426                                                         5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
1427                                                                                              50 mg/ml
1428                                                                                              50 ug/kg
1429                                                                                          50, 125, 250
1430                                                                                                50-121
1431                                                                                                50-150
1432                                                                                                 50-80
1433                                                                                                 50-95
1434                                                                                               50.1-75
1435                                                      500 mg amoxicillin, 125 mg clavulanate potassium
1436                                                                                          500 mg, 5 ml
1437                                                                                             500 mg/ml
1438                                                                                       500, 1250, 2500
1439                                                                                              500, 750
1440                                                                                               500-125
1441                                                                                               5009.00
1442                                                                                                525.00
1443                                                                                                530.00
1444                                                                                                544.00
1445                                                                                                548.00
1446                                                                                               55.1-88
1447                                                                                                56-100
1448                                                                                                 56-88
1449                                                                                                 56.00
1450                                                                                              56.25 mg
1451                                                                                                 56.50
1452                                                                                                563.00
1453                                                                                                565.00
1454                                                                                                 57 mg
1455                                                                                               57, 227
1456                                                                                               57, 400
1457                                                                                                580.00
1458                                                                                                584.00
1459                                                                                                 59.20
1460                                                                                                594.00
1461                                                                                                  6 mg
1462                                                                                           6 mg, 15 mg
1463                                                                                               6 mg/ml
1464                                                                                              6 months
1465                                                                                               6 ug/kg
1466                                                                                             6.1 mg/kg
1467                                                                                                  6.12
1468                                                                                                6.3 mg
1469                                                                                                  6.90
1470                                                                                                 60-10
1471                                                                                                600 ml
1472                                                                                                610.00
1473                                                                                                612.00
1474                                                                                                618.00
1475                                                                                                 62.00
1476                                                                                               62.5 mg
1477                                                                                             62.5, 250
1478                                                                                           62.5, 312.5
1479                                                                                             62.5, 375
1480                                                                                               62.5-75
1481                                                             64000 amylase, 9000 lipase, 5700 protease
1482                                                                                                 65.20
1483                                                                                                650 mg
1484                                                                                                 66.60
1485                                                                                                675.00
1486                                                                               676 mg dha, 1030 mg epa
1487                                                                                         68 mg, 272 mg
1488                                                                                               68, 272
1489                                                                                                68-136
1490                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
1491                                                                                              68272.00
1492                                                                                                  7 ml
1493                                                                                            7-10 drops
1494                                                                                             7-8 drops
1495                                                                                             7-9 drops
1496                                                                                                7.5 gm
1497                                                                                                  7.58
1498                                                                                                  7.70
1499                                                                                                 70 mg
1500                                                                                                 70.35
1501                                                                                               7000 iu
1502                                                                                                701.00
1503                                                                                                 71.00
1504                                                                                                711.00
1505                                                                                                 72.90
1506                                                                                                724.00
1507                                                                                                725.00
1508                                                                                                730.00
1509                                                                                                740.00
1510                                                                                                744.00
1511                                                                                                748.00
1512                                                                                              75 ml/hr
1513                                                                                                 75.80
1514                                                                                           750, 187, 5
1515                                                                                              750-1000
1516                                                                                                755.00
1517                                                                                                775.00
1518                                                                                                 78.00
1519                                                                                                 79.00
1520                                                                                              8 cfu/gm
1521                                                               8 mg dexamethasone, 400 mg enrofloxacin
1522                                                                                                  8 ml
1523                                                                                                  8.10
1524                                                                                                  8.20
1525                                                                                                  8.30
1526                                                                                                  8.40
1527                                                                                                  8.60
1528                                                                                                  8.70
1529                                                                                                  8.75
1530                                                    8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
1531                                                                                             8.8%, 44%
1532                                                                                            8.8%, 9.8%
1533                                                                                               8.8, 44
1534                                                                                                  8.90
1535                                                                                     80 mg/ml - 4.1 ml
1536                                                                                                 80-90
1537                                                                                              800, 900
1538                                                                                              800-1000
1539                                                                                               8000.00
1540                                                                                                81-120
1541                                                                                                810 mg
1542                                                                                             810000.00
1543                                                                                                 82.00
1544                                                                                                820.00
1545                                                                                                825.00
1546                                                                                                826.50
1547                                                                                                 83.00
1548                                                                                                 83.30
1549                                                                                                843.50
1550                                                                                                85-132
1551                                                                                              85.1-130
1552                                                                                                 85.50
1553                                                                                                86-130
1554                                                                                                870.00
1555                                                                                             875125.00
1556                                                                                                88-110
1557                                                                                                88-124
1558                                                                                                880.00
1559                                                                                                89-130
1560                                                                                               9 mg/lb
1561                                                                                                  9.40
1562                                                                                                  9.45
1563                                                                                                  9.60
1564                                                                                  90 mg dha, 75 mg epa
1565                                                                                     90, 350, 800, 900
1566                                                                                               9000.00
1567                                                                                                 91.00
1568                                                                                               9200.00
1569                                                                                                930.00
1570                                                                                                937.50
1571                                                                                                987.00
1572                                                                            based on weight (0-10 lbs)
1573                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
1574               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
1575                                                                            based on weight (1-25 lbs)
1576                                                                             based on weight (10+ lbs)
1577                                                                           based on weight (10-20 lbs)
1578                                                                           based on weight (10-24 lbs)
1579                                                                            based on weight (100+ lbs)
1580                                                                         based on weight (100-125 lbs)
1581                                                                           based on weight (11-20 lbs)
1582                                                                             based on weight (125 lbs)
1583                                                                             based on weight (19+ lbs)
1584                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
1585                                                                            based on weight (2-55 lbs)
1586                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
1587                                                                          based on weight (2.5-20 lbs)
1588                                                                           based on weight (20-40 lbs)
1589                                                                           based on weight (20-50 lbs)
1590                                                                         based on weight (20.1-40 lbs)
1591                                                                         based on weight (20.1-55 lbs)
1592                                                                          based on weight (21-100 lbs)
1593                                                                           based on weight (21-40 lbs)
1594                                                                         based on weight (21.1-60 lbs)
1595                                                                             based on weight (22+ lbs)
1596                                                                           based on weight (23-44 lbs)
1597                                                                              based on weight (25 lbs)
1598                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
1599                                                                           based on weight (25-60 lbs)
1600                                                                              based on weight (30 lbs)
1601                                                                             based on weight (30+ lbs)
1602                                                                              based on weight (35 lbs)
1603                                                                            based on weight (4-60 lbs)
1604                                                                             based on weight (40+ lbs)
1605                                                                         based on weight (40-60.1 lbs)
1606                                                                           based on weight (40-88 lbs)
1607                                                                         based on weight (40.1-65 lbs)
1608                                                                           based on weight (41-70 lbs)
1609                                                                           based on weight (43-88 lbs)
1610                                                                             based on weight (44+ lbs)
1611                                                                           based on weight (44-85 lbs)
1612                                                                 based on weight (44-88 lbs) - 2.68 ml
1613                                                                 based on weight (44.1-88 lbs) - 80 mg
1614                                                                          based on weight (45-120 lbs)
1615                                                                 based on weight (45-88 lbs) - 2.68 mg
1616                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
1617                                                                         based on weight (45-88.9 lbs)
1618                                                                           based on weight (45-89 lbs)
1619                                                                              based on weight (46 lbs)
1620                                                                           based on weight (48-88 lbs)
1621                                                                            based on weight (5-10 lbs)
1622                                                                based on weight (50-100 lbs) - 227 mcg
1623                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
1624                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
1625                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
1626                                                               based on weight (50.1-100 lbs) - 900 mg
1627                                                                        based on weight (50.1-121 lbs)
1628                                                                  based on weight (51-100 lbs) - 23 mg
1629                                                                 based on weight (51-100 lbs) - 272 mg
1630                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
1631                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
1632                                                                          based on weight (51-110 lbs)
1633                                                                           based on weight (51-60 lbs)
1634                                                                           based on weight (51-95 lbs)
1635                                                                           based on weight (51-99 lbs)
1636                                                                        based on weight (51.1-100 lbs)
1637                                                                           based on weight (54-95 lbs)
1638                                                                      based on weight (55+ lbs) - 4 ml
1639                                                                           based on weight (55-89 lbs)
1640                                                                           based on weight (55-90 lbs)
1641                                                                           based on weight (55.1+ lbs)
1642                                                                          based on weight (56-110 lbs)
1643                                                                           based on weight (56-80 lbs)
1644                                                                             based on weight (59+ lbs)
1645                                                                     based on weight (60 lbs) - 2.7 mg
1646                                                                 based on weight (60-121 lbs) - 136 mg
1647                                                                           based on weight (60-70 lbs)
1648                                                                           based on weight (60-85 lbs)
1649                                                                           based on weight (60-90 lbs)
1650                                                                            based on weight (60.1 lbs)
1651                                                                             based on weight (61+ lbs)
1652                                                                      based on weight (61+ lbs) - 5 ml
1653                                                                           based on weight (61-80 lbs)
1654                                                                              based on weight (62 lbs)
1655                                                                             based on weight (64+ lbs)
1656                                                                              based on weight (65 lbs)
1657                                                                            based on weight (68.5 lbs)
1658                                                                            based on weight (7.5+ lbs)
1659                                                                   based on weight (70-80 lbs) - 80 mg
1660                                                                            based on weight (74.1 lbs)
1661                                                                          based on weight (80-135 lbs)
1662                                                                            based on weight (81.1 lbs)
1663                                                                              based on weight (85 lbs)
1664                                                                        based on weight (85.1-130 lbs)
1665                                                                          based on weight (88-120 lbs)
1666                                                                              based on weight (90 lbs)
1667                                                                             based on weight (95+ lbs)
1668                                                                             based on weight (<50 lbs)
1669                                                                             based on weight (<80 lbs)
1670                                                                             based on weight (<88 lbs)
1671                                                                                 based on weight - 1.5
1672                                                                                              compound
1673                                                                                           concentrate
1674                                                                                                  drop
1675                                                                                              epa, dha
1676                                                                                                  gtts
1677                                                                                                    iu
1678                                                                                 lather and then rinse
1679                                                                                                    mg
1680                                                                                                 mg/kg
1681                                                                                              ointment
1682                                                                                                 scoop
1683                                                                                                   tsp
     Count
1     4140
2     2486
3     2450
4     1936
5     1685
6     1632
7     1613
8     1528
9     1357
10    1131
11    1114
12    1087
13     967
14     901
15     896
16     882
17     783
18     705
19     687
20     647
21     564
22     514
23     499
24     469
25     463
26     438
27     424
28     421
29     412
30     388
31     354
32     331
33     323
34     299
35     274
36     273
37     270
38     258
39     229
40     227
41     226
42     225
43     217
44     216
45     215
46     208
47     192
48     192
49     181
50     175
51     169
52     166
53     163
54     163
55     138
56     137
57     133
58     128
59     125
60     120
61     117
62     113
63     112
64     109
65     105
66     105
67     103
68     103
69     103
70     103
71      99
72      96
73      92
74      90
75      90
76      89
77      89
78      87
79      84
80      80
81      79
82      75
83      72
84      71
85      69
86      68
87      65
88      65
89      65
90      63
91      63
92      62
93      62
94      61
95      60
96      59
97      59
98      59
99      59
100     58
101     58
102     57
103     56
104     56
105     56
106     55
107     54
108     54
109     52
110     52
111     52
112     51
113     51
114     50
115     50
116     47
117     45
118     44
119     44
120     43
121     43
122     43
123     42
124     42
125     40
126     40
127     39
128     39
129     39
130     39
131     38
132     38
133     36
134     36
135     36
136     36
137     36
138     35
139     35
140     35
141     35
142     35
143     34
144     33
145     33
146     32
147     32
148     31
149     31
150     30
151     30
152     29
153     29
154     29
155     29
156     29
157     29
158     29
159     28
160     27
161     27
162     27
163     27
164     27
165     27
166     26
167     26
168     26
169     26
170     25
171     25
172     25
173     25
174     24
175     24
176     24
177     23
178     23
179     23
180     23
181     22
182     22
183     22
184     22
185     22
186     22
187     21
188     21
189     21
190     21
191     20
192     20
193     20
194     20
195     20
196     20
197     20
198     19
199     19
200     19
201     19
202     18
203     18
204     18
205     18
206     18
207     17
208     17
209     17
210     17
211     17
212     17
213     17
214     17
215     16
216     16
217     16
218     16
219     16
220     16
221     15
222     15
223     15
224     15
225     15
226     15
227     15
228     15
229     14
230     14
231     14
232     14
233     14
234     14
235     14
236     14
237     13
238     13
239     13
240     13
241     13
242     13
243     13
244     13
245     13
246     13
247     13
248     13
249     12
250     12
251     12
252     12
253     12
254     12
255     12
256     12
257     12
258     12
259     12
260     12
261     12
262     11
263     11
264     11
265     11
266     11
267     11
268     11
269     11
270     11
271     10
272     10
273     10
274     10
275     10
276     10
277     10
278     10
279     10
280     10
281     10
282     10
283     10
284     10
285     10
286     10
287     10
288      9
289      9
290      9
291      9
292      9
293      9
294      9
295      9
296      9
297      9
298      9
299      9
300      9
301      9
302      9
303      9
304      9
305      9
306      9
307      9
308      9
309      9
310      9
311      9
312      8
313      8
314      8
315      8
316      8
317      8
318      8
319      8
320      8
321      8
322      8
323      8
324      8
325      8
326      8
327      8
328      8
329      8
330      8
331      8
332      8
333      8
334      8
335      7
336      7
337      7
338      7
339      7
340      7
341      7
342      7
343      7
344      7
345      7
346      7
347      7
348      7
349      7
350      7
351      7
352      7
353      7
354      7
355      7
356      7
357      7
358      7
359      7
360      7
361      7
362      7
363      7
364      7
365      7
366      7
367      7
368      7
369      7
370      6
371      6
372      6
373      6
374      6
375      6
376      6
377      6
378      6
379      6
380      6
381      6
382      6
383      6
384      6
385      6
386      6
387      6
388      6
389      6
390      6
391      6
392      6
393      6
394      6
395      6
396      6
397      6
398      6
399      6
400      5
401      5
402      5
403      5
404      5
405      5
406      5
407      5
408      5
409      5
410      5
411      5
412      5
413      5
414      5
415      5
416      5
417      5
418      5
419      5
420      5
421      5
422      5
423      5
424      5
425      5
426      5
427      5
428      5
429      5
430      5
431      5
432      5
433      5
434      5
435      5
436      5
437      5
438      5
439      5
440      5
441      5
442      5
443      4
444      4
445      4
446      4
447      4
448      4
449      4
450      4
451      4
452      4
453      4
454      4
455      4
456      4
457      4
458      4
459      4
460      4
461      4
462      4
463      4
464      4
465      4
466      4
467      4
468      4
469      4
470      4
471      4
472      4
473      4
474      4
475      4
476      4
477      4
478      4
479      4
480      4
481      4
482      4
483      4
484      4
485      4
486      4
487      4
488      4
489      4
490      4
491      4
492      4
493      4
494      4
495      4
496      4
497      4
498      4
499      4
500      4
501      4
502      4
503      4
504      4
505      4
506      3
507      3
508      3
509      3
510      3
511      3
512      3
513      3
514      3
515      3
516      3
517      3
518      3
519      3
520      3
521      3
522      3
523      3
524      3
525      3
526      3
527      3
528      3
529      3
530      3
531      3
532      3
533      3
534      3
535      3
536      3
537      3
538      3
539      3
540      3
541      3
542      3
543      3
544      3
545      3
546      3
547      3
548      3
549      3
550      3
551      3
552      3
553      3
554      3
555      3
556      3
557      3
558      3
559      3
560      3
561      3
562      3
563      3
564      3
565      3
566      3
567      3
568      3
569      3
570      3
571      3
572      3
573      3
574      3
575      3
576      3
577      3
578      3
579      3
580      3
581      3
582      3
583      3
584      3
585      3
586      3
587      3
588      3
589      3
590      3
591      3
592      3
593      3
594      3
595      3
596      3
597      3
598      3
599      3
600      3
601      3
602      3
603      3
604      3
605      3
606      3
607      3
608      3
609      3
610      3
611      3
612      3
613      3
614      3
615      3
616      3
617      3
618      3
619      3
620      3
621      3
622      3
623      2
624      2
625      2
626      2
627      2
628      2
629      2
630      2
631      2
632      2
633      2
634      2
635      2
636      2
637      2
638      2
639      2
640      2
641      2
642      2
643      2
644      2
645      2
646      2
647      2
648      2
649      2
650      2
651      2
652      2
653      2
654      2
655      2
656      2
657      2
658      2
659      2
660      2
661      2
662      2
663      2
664      2
665      2
666      2
667      2
668      2
669      2
670      2
671      2
672      2
673      2
674      2
675      2
676      2
677      2
678      2
679      2
680      2
681      2
682      2
683      2
684      2
685      2
686      2
687      2
688      2
689      2
690      2
691      2
692      2
693      2
694      2
695      2
696      2
697      2
698      2
699      2
700      2
701      2
702      2
703      2
704      2
705      2
706      2
707      2
708      2
709      2
710      2
711      2
712      2
713      2
714      2
715      2
716      2
717      2
718      2
719      2
720      2
721      2
722      2
723      2
724      2
725      2
726      2
727      2
728      2
729      2
730      2
731      2
732      2
733      2
734      2
735      2
736      2
737      2
738      2
739      2
740      2
741      2
742      2
743      2
744      2
745      2
746      2
747      2
748      2
749      2
750      2
751      2
752      2
753      2
754      2
755      2
756      2
757      2
758      2
759      2
760      2
761      2
762      2
763      2
764      2
765      2
766      2
767      2
768      2
769      2
770      2
771      2
772      2
773      2
774      2
775      2
776      2
777      2
778      2
779      2
780      2
781      2
782      2
783      2
784      2
785      2
786      2
787      2
788      2
789      2
790      2
791      2
792      2
793      2
794      2
795      2
796      2
797      2
798      2
799      2
800      2
801      2
802      2
803      2
804      2
805      2
806      2
807      2
808      2
809      2
810      2
811      2
812      2
813      2
814      2
815      2
816      2
817      2
818      2
819      2
820      2
821      2
822      2
823      2
824      2
825      2
826      2
827      2
828      2
829      2
830      2
831      2
832      2
833      2
834      2
835      2
836      2
837      2
838      2
839      2
840      2
841      2
842      2
843      2
844      1
845      1
846      1
847      1
848      1
849      1
850      1
851      1
852      1
853      1
854      1
855      1
856      1
857      1
858      1
859      1
860      1
861      1
862      1
863      1
864      1
865      1
866      1
867      1
868      1
869      1
870      1
871      1
872      1
873      1
874      1
875      1
876      1
877      1
878      1
879      1
880      1
881      1
882      1
883      1
884      1
885      1
886      1
887      1
888      1
889      1
890      1
891      1
892      1
893      1
894      1
895      1
896      1
897      1
898      1
899      1
900      1
901      1
902      1
903      1
904      1
905      1
906      1
907      1
908      1
909      1
910      1
911      1
912      1
913      1
914      1
915      1
916      1
917      1
918      1
919      1
920      1
921      1
922      1
923      1
924      1
925      1
926      1
927      1
928      1
929      1
930      1
931      1
932      1
933      1
934      1
935      1
936      1
937      1
938      1
939      1
940      1
941      1
942      1
943      1
944      1
945      1
946      1
947      1
948      1
949      1
950      1
951      1
952      1
953      1
954      1
955      1
956      1
957      1
958      1
959      1
960      1
961      1
962      1
963      1
964      1
965      1
966      1
967      1
968      1
969      1
970      1
971      1
972      1
973      1
974      1
975      1
976      1
977      1
978      1
979      1
980      1
981      1
982      1
983      1
984      1
985      1
986      1
987      1
988      1
989      1
990      1
991      1
992      1
993      1
994      1
995      1
996      1
997      1
998      1
999      1
1000     1
1001     1
1002     1
1003     1
1004     1
1005     1
1006     1
1007     1
1008     1
1009     1
1010     1
1011     1
1012     1
1013     1
1014     1
1015     1
1016     1
1017     1
1018     1
1019     1
1020     1
1021     1
1022     1
1023     1
1024     1
1025     1
1026     1
1027     1
1028     1
1029     1
1030     1
1031     1
1032     1
1033     1
1034     1
1035     1
1036     1
1037     1
1038     1
1039     1
1040     1
1041     1
1042     1
1043     1
1044     1
1045     1
1046     1
1047     1
1048     1
1049     1
1050     1
1051     1
1052     1
1053     1
1054     1
1055     1
1056     1
1057     1
1058     1
1059     1
1060     1
1061     1
1062     1
1063     1
1064     1
1065     1
1066     1
1067     1
1068     1
1069     1
1070     1
1071     1
1072     1
1073     1
1074     1
1075     1
1076     1
1077     1
1078     1
1079     1
1080     1
1081     1
1082     1
1083     1
1084     1
1085     1
1086     1
1087     1
1088     1
1089     1
1090     1
1091     1
1092     1
1093     1
1094     1
1095     1
1096     1
1097     1
1098     1
1099     1
1100     1
1101     1
1102     1
1103     1
1104     1
1105     1
1106     1
1107     1
1108     1
1109     1
1110     1
1111     1
1112     1
1113     1
1114     1
1115     1
1116     1
1117     1
1118     1
1119     1
1120     1
1121     1
1122     1
1123     1
1124     1
1125     1
1126     1
1127     1
1128     1
1129     1
1130     1
1131     1
1132     1
1133     1
1134     1
1135     1
1136     1
1137     1
1138     1
1139     1
1140     1
1141     1
1142     1
1143     1
1144     1
1145     1
1146     1
1147     1
1148     1
1149     1
1150     1
1151     1
1152     1
1153     1
1154     1
1155     1
1156     1
1157     1
1158     1
1159     1
1160     1
1161     1
1162     1
1163     1
1164     1
1165     1
1166     1
1167     1
1168     1
1169     1
1170     1
1171     1
1172     1
1173     1
1174     1
1175     1
1176     1
1177     1
1178     1
1179     1
1180     1
1181     1
1182     1
1183     1
1184     1
1185     1
1186     1
1187     1
1188     1
1189     1
1190     1
1191     1
1192     1
1193     1
1194     1
1195     1
1196     1
1197     1
1198     1
1199     1
1200     1
1201     1
1202     1
1203     1
1204     1
1205     1
1206     1
1207     1
1208     1
1209     1
1210     1
1211     1
1212     1
1213     1
1214     1
1215     1
1216     1
1217     1
1218     1
1219     1
1220     1
1221     1
1222     1
1223     1
1224     1
1225     1
1226     1
1227     1
1228     1
1229     1
1230     1
1231     1
1232     1
1233     1
1234     1
1235     1
1236     1
1237     1
1238     1
1239     1
1240     1
1241     1
1242     1
1243     1
1244     1
1245     1
1246     1
1247     1
1248     1
1249     1
1250     1
1251     1
1252     1
1253     1
1254     1
1255     1
1256     1
1257     1
1258     1
1259     1
1260     1
1261     1
1262     1
1263     1
1264     1
1265     1
1266     1
1267     1
1268     1
1269     1
1270     1
1271     1
1272     1
1273     1
1274     1
1275     1
1276     1
1277     1
1278     1
1279     1
1280     1
1281     1
1282     1
1283     1
1284     1
1285     1
1286     1
1287     1
1288     1
1289     1
1290     1
1291     1
1292     1
1293     1
1294     1
1295     1
1296     1
1297     1
1298     1
1299     1
1300     1
1301     1
1302     1
1303     1
1304     1
1305     1
1306     1
1307     1
1308     1
1309     1
1310     1
1311     1
1312     1
1313     1
1314     1
1315     1
1316     1
1317     1
1318     1
1319     1
1320     1
1321     1
1322     1
1323     1
1324     1
1325     1
1326     1
1327     1
1328     1
1329     1
1330     1
1331     1
1332     1
1333     1
1334     1
1335     1
1336     1
1337     1
1338     1
1339     1
1340     1
1341     1
1342     1
1343     1
1344     1
1345     1
1346     1
1347     1
1348     1
1349     1
1350     1
1351     1
1352     1
1353     1
1354     1
1355     1
1356     1
1357     1
1358     1
1359     1
1360     1
1361     1
1362     1
1363     1
1364     1
1365     1
1366     1
1367     1
1368     1
1369     1
1370     1
1371     1
1372     1
1373     1
1374     1
1375     1
1376     1
1377     1
1378     1
1379     1
1380     1
1381     1
1382     1
1383     1
1384     1
1385     1
1386     1
1387     1
1388     1
1389     1
1390     1
1391     1
1392     1
1393     1
1394     1
1395     1
1396     1
1397     1
1398     1
1399     1
1400     1
1401     1
1402     1
1403     1
1404     1
1405     1
1406     1
1407     1
1408     1
1409     1
1410     1
1411     1
1412     1
1413     1
1414     1
1415     1
1416     1
1417     1
1418     1
1419     1
1420     1
1421     1
1422     1
1423     1
1424     1
1425     1
1426     1
1427     1
1428     1
1429     1
1430     1
1431     1
1432     1
1433     1
1434     1
1435     1
1436     1
1437     1
1438     1
1439     1
1440     1
1441     1
1442     1
1443     1
1444     1
1445     1
1446     1
1447     1
1448     1
1449     1
1450     1
1451     1
1452     1
1453     1
1454     1
1455     1
1456     1
1457     1
1458     1
1459     1
1460     1
1461     1
1462     1
1463     1
1464     1
1465     1
1466     1
1467     1
1468     1
1469     1
1470     1
1471     1
1472     1
1473     1
1474     1
1475     1
1476     1
1477     1
1478     1
1479     1
1480     1
1481     1
1482     1
1483     1
1484     1
1485     1
1486     1
1487     1
1488     1
1489     1
1490     1
1491     1
1492     1
1493     1
1494     1
1495     1
1496     1
1497     1
1498     1
1499     1
1500     1
1501     1
1502     1
1503     1
1504     1
1505     1
1506     1
1507     1
1508     1
1509     1
1510     1
1511     1
1512     1
1513     1
1514     1
1515     1
1516     1
1517     1
1518     1
1519     1
1520     1
1521     1
1522     1
1523     1
1524     1
1525     1
1526     1
1527     1
1528     1
1529     1
1530     1
1531     1
1532     1
1533     1
1534     1
1535     1
1536     1
1537     1
1538     1
1539     1
1540     1
1541     1
1542     1
1543     1
1544     1
1545     1
1546     1
1547     1
1548     1
1549     1
1550     1
1551     1
1552     1
1553     1
1554     1
1555     1
1556     1
1557     1
1558     1
1559     1
1560     1
1561     1
1562     1
1563     1
1564     1
1565     1
1566     1
1567     1
1568     1
1569     1
1570     1
1571     1
1572     1
1573     1
1574     1
1575     1
1576     1
1577     1
1578     1
1579     1
1580     1
1581     1
1582     1
1583     1
1584     1
1585     1
1586     1
1587     1
1588     1
1589     1
1590     1
1591     1
1592     1
1593     1
1594     1
1595     1
1596     1
1597     1
1598     1
1599     1
1600     1
1601     1
1602     1
1603     1
1604     1
1605     1
1606     1
1607     1
1608     1
1609     1
1610     1
1611     1
1612     1
1613     1
1614     1
1615     1
1616     1
1617     1
1618     1
1619     1
1620     1
1621     1
1622     1
1623     1
1624     1
1625     1
1626     1
1627     1
1628     1
1629     1
1630     1
1631     1
1632     1
1633     1
1634     1
1635     1
1636     1
1637     1
1638     1
1639     1
1640     1
1641     1
1642     1
1643     1
1644     1
1645     1
1646     1
1647     1
1648     1
1649     1
1650     1
1651     1
1652     1
1653     1
1654     1
1655     1
1656     1
1657     1
1658     1
1659     1
1660     1
1661     1
1662     1
1663     1
1664     1
1665     1
1666     1
1667     1
1668     1
1669     1
1670     1
1671     1
1672     1
1673     1
1674     1
1675     1
1676     1
1677     1
1678     1
1679     1
1680     1
1681     1
1682     1
1683     1
dose_unit_count <- medications_2 %>%
  count(dose_unit, name="Count") %>%
  arrange(desc(Count))

dose_unit_count
       dose_unit Count
1             mg 28731
2  other specify  9886
3            mcg  3270
4             ml  3165
5          drops  2500
6          units   816
7             gm   684
8    unspecified   568
9            tsp   230
10            oz   202
11           tbs   114
12            iu    46
dose_unit_count_other_spec <- medications_2 %>%
  count(dose_unit_specify, name="Count") %>%
  arrange(desc(Count))

dose_unit_count_other_spec
                                                    dose_unit_specify Count
1                                                                <NA> 40326
2                                                 tablet/pill/capsule  3059
3                                                     based on weight  2204
4                                                        small amount   451
5                                               1 tablet/pill/capsule   402
6                                                                tube   290
7                                        based on weight (50-100 lbs)   274
8                                                               spray   270
9                                                         unspecified   263
10                                                       pack/package   245
11                                                                  %   236
12                                                        application   149
13                                                             collar   144
14                                                               pump   126
15                                                        bottle/vial   108
16                                                         inch strip   102
17                                                           wipe/pad    89
18                                        based on weight (44-88 lbs)    75
19                                                             1 tube    74
20                                                               dose    74
21                                                        combination    67
22                                                           ointment    63
23                                       based on weight (60-120 lbs)    62
24                                                    0.25 inch strip    55
25                                                              scoop    50
26                                                             powder    49
27                                                     shampoo/mousse    49
28                                                              drops    46
29                                                        as directed    43
30                                                              mg/ml    35
31                                                    moderate amount    34
32                                                    syringe/pipette    33
33                                                              mg/kg    26
34                                                          as needed    25
35                        272 mcg ivermectin, 227 mg pyrantel pamoate    23
36                                                            monthly    21
37                                                      1 bottle/vial    20
38                                                               puff    20
39                                                                 gm    19
40                                                     1 pack/package    18
41                                                           inhalant    17
42                                                             1 pump    16
43                                           2 tablets/pills/capsules    16
44                                                                  1    14
45                                          based on weight (55+ lbs)    13
46                                                        billion cfu    13
47                                        based on weight (56-95 lbs)    12
48                                                      1 application    11
49                                        based on weight (26-50 lbs)    11
50                                                             liquid    11
51                                                             cup(s)    10
52                                                                 mg    10
53                                        based on weight (24-60 lbs)     9
54                                        based on weight (40-60 lbs)     9
55                                                                 ml     9
56                           27 mg milbemycin oxime, 1620 mg spinosad     8
57                                                               1 ml     7
58                           460 mg lufenuron, 23 mg milbemycin oxime     7
59                                            0.5 tablet/pill/capsule     6
60                                        based on weight (21-55 lbs)     6
61                                                         1 wipe/pad     5
62                                                                 1%     5
63      460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel     5
64                                          based on weight (51+ lbs)     5
65                                           based on weight (60 lbs)     5
66                                                          injection     5
67                                          based on weight (25+ lbs)     4
68                                                              daily     4
69                                                                  l     4
70                                                                tbs     4
71                                                              tubes     4
72                                                              units     4
73                                                             1 drop     3
74                                                            1 spray     3
75                                         1-2 tablets/pills/capsules     3
76                                                              23 mg     3
77                                                      5 billion cfu     3
78                                          based on weight (18+ lbs)     3
79                                        based on weight (25-50 lbs)     3
80                                        based on weight (25-60 lbs)     3
81                                       based on weight (85-130 lbs)     3
82                                                              fl oz     3
83                                                          mcg/kg/hr     3
84                                                      tapering dose     3
85                                                   0.125 inch strip     2
86                                                        0.159 fl oz     2
87                                                           0.25 tsp     2
88                                                     0.5 inch strip     2
89                                                  1 syringe/pipette     2
90                                                         1-2 scoops     2
91                                                             1.5 ml     2
92                                                                10%     2
93                          13.5 mg milbemycin oxime, 810 mg spinosad     2
94                                              1:10 part water ratio     2
95                        2 mg prednisone, 5 mg trimeprazine tartrate     2
96                                                            2 pumps     2
97                                                           2 sprays     2
98                                                                 2%     2
99                                                          2-3 drops     2
100                                                          222 mg/g     2
101                                                              3 ml     2
102                                                            3.5 gm     2
103                                                           5 drops     2
104                                                               50%     2
105                                          based on weight (10 lbs)     2
106                                          based on weight (20 lbs)     2
107                                       based on weight (22-44 lbs)     2
108                                          based on weight (25 lbs)     2
109                                          based on weight (40 lbs)     2
110                                       based on weight (40-80 lbs)     2
111                                       based on weight (40-85 lbs)     2
112                                      based on weight (55-100 lbs)     2
113                                       based on weight (55-88 lbs)     2
114                                         based on weight (56+ lbs)     2
115                                         based on weight (60+ lbs)     2
116                                          based on weight (74 lbs)     2
117                                          based on weight (80 lbs)     2
118                                                          biweekly     2
119                                                             gm/ml     2
120                                                            joules     2
121                                                               mcg     2
122                                                            mcg/hr     2
123                                                               meq     2
124                                                              mg/g     2
125                                                         per month     2
126                                                          titrated     2
127                                                             0.03%     1
128                                                          0.135 ml     1
129                                                             0.20%     1
130                                                 0.25 pack/package     1
131                                                         0.5 drops     1
132                                      0.5-2 tablets/pills/capsules     1
133                                                            0.9 ml     1
134                                                       1 gm/sachet     1
135                                                      1 inch strip     1
136                                                  1-2 applications     1
137                                                            1-2 gm     1
138                                                         1-2 pumps     1
139                                                   1.5 billion cfu     1
140                                                         1.5 mg/ml     1
141                                                        1.5 scoops     1
142                                                         100 mg/ml     1
143                                                           1000 mg     1
144                                                10:1 ket:ace ratio     1
145                                                    114 mg, 136 mg     1
146                                                    125 mg, 500 mg     1
147                                                   13.5 mg, 810 mg     1
148                                                            136 mg     1
149 16 mg florfenicol, 2.2 mg mometasone furoate, 14.8 mg terbinafine     1
150                                                    160 mg, 800 mg     1
151                                              1:9 part water ratio     1
152                                                                 2     1
153                                                   2 bottles/vials     1
154                                                  2 packs/packages     1
155                                                           2 tubes     1
156                                                           2 weeks     1
157                                                        2.27 mg/lb     1
158                                                         2.6 mg/lb     1
159                                                           2.68 ml     1
160                       23 mg milbemycin oxime, 228 mg praziquantel     1
161                                             23 mg, 228 mg, 460 mg     1
162                                                    240 mg, 360 mg     1
163                                                                25     1
164                                                          25 mg/kg     1
165                                                            250 mg     1
166                                                272 mcg ivermectin     1
167                                                          3 scoops     1
168                                                          3 sprays     1
169                                          3 tablets/pills/capsules     1
170                                          4 tablets/pills/capsules     1
171                          4.5 mg milbemycin oxime, 270 mg spinosad     1
172                                                     460 mg, 23 mg     1
173                                                           5 mg/ml     1
174                                                         5-6 drops     1
175                                                             50 gm     1
176                                                         50-100 mg     1
177                                                         6-8 drops     1
178                                                                60     1
179                                                  68 mg afoxolaner     1
180   680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate     1
181                                                           7 drops     1
182                                                            7.5 ml     1
183                                                           8 drops     1
184             8.8% imidacloprid, 44% permethrin, 0.44% pyriproxyfen     1
185                          9.3 mg milbemycin oxime, 560 mg spinosad     1
186                                                             9.80%     1
187          9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen     1
188                                                                90     1
189                                        based on weight (0-25 lbs)     1
190                                       based on weight (1-121 lbs)     1
191                                       based on weight (10-24 lbs)     1
192                                     based on weight (11 - 20 lbs)     1
193                                       based on weight (20-40 lbs)     1
194                                       based on weight (20-50 lbs)     1
195                                       based on weight (20-55 lbs)     1
196                                         based on weight (22+ lbs)     1
197                                       based on weight (23-44 lbs)     1
198                                       based on weight (40-88 lbs)     1
199                                          based on weight (50 lbs)     1
200                                         based on weight (50+ lbs)     1
201                                          based on weight (55 lbs)     1
202                                      based on weight (55-110 lbs)     1
203                                      based on weight (60-100 lbs)     1
204                                          based on weight (64 lbs)     1
205                                          based on weight (65 lbs)     1
206                                          based on weight (68 lbs)     1
207                                          based on weight (70 lbs)     1
208                                       based on weight (70-80 lbs)     1
209                                         based on weight (80+ lbs)     1
210                                     based on weight (80.1-90 lbs)     1
211                                          based on weight (85 lbs)     1
212                                         based on weight (88+ lbs)     1
213                                      based on weight (88-123 lbs)     1
214                                      based on weight (89-132 lbs)     1
215                                          based on weight (90 lbs)     1
216                                                              hour     1
217                                                                kg     1
218                                                             l/min     1
219                                                            mcg/kg     1
220                                                          mg/kg/hr     1
221                                                           minutes     1
222                                                             ml/hr     1
223                                             monoclonal antibodies     1
224                                                             ng/kg     1
225                                                             paste     1
226                                                          per hour     1
227                                                               pnu     1
228                                                transient-gradient     1
229                                                               tsp     1
230                                                            weekly     1

Ones that are worth tidying for calculations here:

  • tablet/pill/capsule one AND 1 tablet/pill/capsule - these are all flea/worming tx - there are ~3000 of these

  • ‘based on weight’ and all the ‘based on weight’ + weight range ones eg. ’based on weight (50-100lbs) - there are several hundred of these

  • mg/ml

  • mg/kg

  • gm

  • mg

  • ml

  • specific parasiticide ones eg. 460 mg lufenuron, 23 mg milbemycin oxime?

dose <- medications_2 %>%
  dplyr::select(c(medication_ingredients,dose,dose_unit,dose_unit_specify))

dose$dose_original <- dose$dose

#regex to try and ID rows that do not have a numeric dose there:
non_numeric_dose <- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

# View the result
print(non_numeric_dose)
                                                                                                        medication_ingredients
2                                                                                                                     tramadol
22                                                                                                                   meloxicam
40                                                                                              polysulfated glycosaminoglycan
41                                                                                      joint supplement (glucosamine hcl/msm)
42                                                                                                                   meloxicam
46                                                                                                                    spinosad
48                                                                                                    imidacloprid, moxidectin
49                                                                                                                imidacloprid
51                                                                      joint supplement (chondroitin sulfate/glucosamine hcl)
59                                                                                                                  ivermectin
60                                                                                                  imidacloprid, pyriproxyfen
62                                                                                                  imidacloprid, pyriproxyfen
63                                                                                                                  ivermectin
67                                                                                                                   mupirocin
70                                                                                                                   mupirocin
74                                                                                                  imidacloprid, pyriproxyfen
84                                                                                           betamethasone, gentamicin sulfate
87                                                                                                               dexamethasone
91                                                                             betamethasone, clotrimazole, gentamicin sulfate
111                                                                            betamethasone, clotrimazole, gentamicin sulfate
112                                                                                          enrofloxacin, silver sulfadiazine
113                                                                               florfenicol, mometasone furoate, terbinafine
114                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
149                                                                                chlorhexidine gluconate, miconazole nitrate
150                                                                                                                  tris-edta
151                                                                                                    chlorhexidine gluconate
152                                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                               multivitamin
155                                                                                                  immune support supplement
167                                                                                                   joint supplement (other)
188                                                                                                                 fluralaner
192                                                                                                                 fluralaner
195                                                                                                   fipronil, (s)-methoprene
220                                                                                                                 fluralaner
230                                                                                               ivermectin, pyrantel pamoate
233                                                                                        ear cleaner (zymox), hydrocortisone
235                                                                                               ivermectin, pyrantel pamoate
236                                                                                    betamethasone, florfenicol, terbinafine
237                                                                                    betamethasone, florfenicol, terbinafine
238                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
239                                                                                                                 afoxolaner
242                                                                                    betamethasone, florfenicol, terbinafine
243                                                                                    betamethasone, florfenicol, terbinafine
244                                                                                                   fipronil, (s)-methoprene
248                                                                               florfenicol, mometasone furoate, terbinafine
257                                                                                                 milbemycin oxime, spinosad
275                                                                                               ivermectin, pyrantel pamoate
276                                                                                                                 ivermectin
277                                                                                                                 afoxolaner
279                                                                    chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                    triamcinolone acetonide
287                                                                                                                 ivermectin
310                                                                                               ivermectin, pyrantel pamoate
317                                                                                                 imidacloprid, pyriproxyfen
318                                                                                               ivermectin, pyrantel pamoate
324                                                                                                 imidacloprid, pyriproxyfen
328                                                                                                   imidacloprid, permethrin
329                                                                                               ivermectin, pyrantel pamoate
332                                                                                                 imidacloprid, pyriproxyfen
333                                                                                               ivermectin, pyrantel pamoate
347                                                                                                lufenuron, milbemycin oxime
348                                                                                                lufenuron, milbemycin oxime
350                                                                                                lufenuron, milbemycin oxime
351                                                                                                lufenuron, milbemycin oxime
353                                                                                                lufenuron, milbemycin oxime
355                                                                                                lufenuron, milbemycin oxime
366                                                                                                               coenzyme q10
368                                                                                                                 afoxolaner
372                                                                                                                 afoxolaner
375                                                                                               ivermectin, pyrantel pamoate
376                                                                                                                 fluralaner
383                                                                                                lufenuron, milbemycin oxime
384                                                                                                lufenuron, milbemycin oxime
385                                                                                                lufenuron, milbemycin oxime
386                                                                                                lufenuron, milbemycin oxime
402                                                                                                                 ivermectin
403                                                                                                                 ivermectin
404                                                                                                                 ivermectin
414                                                                                                lufenuron, milbemycin oxime
447                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
449                                                                  activated charcoal, bismuth subsalicylate, kaolin, pectin
453                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
480                                                                               florfenicol, mometasone furoate, terbinafine
496                                                                                                                 ivermectin
497                                                                                                                 afoxolaner
498                                                                                               ivermectin, pyrantel pamoate
519                                                                                                                 isoflurane
537                                                                               dexamethasone, neomycin sulfate, polymyxin b
597                                                                                                   fipronil, (s)-methoprene
598                                                                                                                 afoxolaner
603                                                                                               ivermectin, pyrantel pamoate
604                                                                                                                 afoxolaner
610                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
619                                                                                                       cognitive supplement
635                                                                                                                  melatonin
637                                                                                                                  omega 3-6
642                                                              bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
645                                                                                                                  melatonin
686                                                                                                                 afoxolaner
688                                                                                         amoxicillin, clavulanate potassium
703                                                                                               ivermectin, pyrantel pamoate
704                                                                                                                  sarolaner
709                                                                                                           liver supplement
710                                                                                                                  lomustine
712                                                                                                       prednisolone acetate
725                                                                                                 milbemycin oxime, spinosad
728                                                                                               ivermectin, pyrantel pamoate
729                                                                                                                 afoxolaner
730                                                                                               ivermectin, pyrantel pamoate
731                                                                                                                  sarolaner
733                                                                                                                  ketorolac
734                                                                               dexamethasone, neomycin sulfate, polymyxin b
735                                                                                                                 prednisone
736                                                                                                      mycophenolate mofetil
737                                                                                                       dorzolamide, timolol
738                                                                                               ivermectin, pyrantel pamoate
739                                                                                                                 afoxolaner
750                                                                                                               enrofloxacin
754                                                                                               ivermectin, pyrantel pamoate
755                                                                                                   fipronil, (s)-methoprene
756                                                                                                   fipronil, (s)-methoprene
757                                                                                  lufenuron, milbemycin oxime, praziquantel
760                                                                                                                tropicamide
771                                                                                                                  carprofen
778                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
785                                                                                                 milbemycin oxime, spinosad
790                                                                                                 milbemycin oxime, spinosad
792                                                                                                lufenuron, milbemycin oxime
797                                                                                                           liver supplement
798                                                                                                         maropitant citrate
799                                                                                                                bedinvetmab
800                                                                                                                mirtazapine
801                                                                                                                 furosemide
802                                                                                                                  carprofen
803                                                                                                                 fluralaner
804                                                                                                                 fluralaner
810                                                                                                                 selamectin
816                                                                                                     rx diet - renal health
819                                                                                               ivermectin, pyrantel pamoate
820                                                                                               ivermectin, pyrantel pamoate
823                                                                                                   fipronil, (s)-methoprene
824                                                                                               ivermectin, pyrantel pamoate
832                                                                                                                    omega 3
850                                                                                     fipronil, pyriproxyfen, (s)-methoprene
851                                                                                               ivermectin, pyrantel pamoate
862                                                                                                                 ivermectin
863                                                                                                                doxycycline
871                                                                                                 milbemycin oxime, spinosad
874                                                                                                 milbemycin oxime, spinosad
877                                                                                                         miconazole nitrate
878                                                                                                 milbemycin oxime, spinosad
879                                                                                                 milbemycin oxime, spinosad
880                                                                                                 milbemycin oxime, spinosad
881                                                                                                 milbemycin oxime, spinosad
884                                                                                                 milbemycin oxime, spinosad
887                                                                                                 milbemycin oxime, spinosad
891                                                                                                 milbemycin oxime, spinosad
893                                                                                                 milbemycin oxime, spinosad
899                                                                                                 milbemycin oxime, spinosad
900                                                                                                 milbemycin oxime, spinosad
901                                                                                                    chlorhexidine gluconate
905                                                                                          allergy immunotherapy - injection
913                                                                                                 imidacloprid, pyriproxyfen
917                                                                                                                  firocoxib
918                                                                                                              metronidazole
921                                                                                               ivermectin, pyrantel pamoate
929                                                                                                                  ketorolac
930                                                                                                                dorzolamide
950                                                                                                                 ivermectin
955                                                                                                   flumethrin, imidacloprid
958                                                                                               ivermectin, pyrantel pamoate
969                                                                                                    acetic acid, boric acid
970                                                                     hydrocortisone, gentamicin sulfate, miconazole nitrate
977                                                                                                                  ophytrium
979                                                                                               ivermectin, pyrantel pamoate
980                                                                                                                 afoxolaner
982                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                  probiotic
989                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
991                                                                                               ivermectin, pyrantel pamoate
992                                                                                                                 afoxolaner
995                                                                                                                 afoxolaner
996                                                                                               ivermectin, pyrantel pamoate
1001                                                                                                             yunnan baiyao
1017                                                                                                                ivermectin
1018                                                                                                                afoxolaner
1019                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
1020                                                                                                          neomycin sulfate
1021                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
1027                                                                                        chlorhexidine gluconate, ophytrium
1028                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1029                                                                                        chlorhexidine gluconate, ophytrium
1030                                                                                                unspecified shampoo/mousse
1031                                                                                                   enrofloxacin, tris-edta
1033                                                                              florfenicol, mometasone furoate, terbinafine
1036                                                                       enrofloxacin, ketoconazole, triamcinolone acetonide
1037                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1039                                                                              florfenicol, mometasone furoate, terbinafine
1042                                                                                                   chlorhexidine gluconate
1050                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1051                                                                                              ivermectin, pyrantel pamoate
1052                                                                                                                afoxolaner
1060                                                                                                                afoxolaner
1061                                                                                              ivermectin, pyrantel pamoate
1072                                                                                          burow's solution, hydrocortisone
1073                                                                                        chlorhexidine gluconate, tris-edta
1074                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1087                                                                                                milbemycin oxime, spinosad
1088                                                                                                              acepromazine
1091                                                                                           ear cleaner (epi-otic advanced)
1092                                                                                                                prednisone
1093                                                                                                                cephalexin
1097                                                                                                milbemycin oxime, spinosad
1098                                                                                                  imidacloprid, permethrin
1099                                                                                              ivermectin, pyrantel pamoate
1100                                                                                               lufenuron, milbemycin oxime
1101                                                                                                                fluralaner
1108                                                                                        chlorhexidine gluconate, ophytrium
1111                                                                                               lufenuron, milbemycin oxime
1112                                                                                        chlorhexidine gluconate, ophytrium
1116                                                                                ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                              imidacloprid
1131                                                                                                       ear cleaner (zymox)
1150                                                                                                   ketoconazole, tris-edta
1152                                                                                                          milbemycin oxime
1153                                                                                                                ivermectin
1154                                                                                               lufenuron, milbemycin oxime
1155                                                                                               lufenuron, milbemycin oxime
1159                                                                                               lufenuron, milbemycin oxime
1160                                                                                               lufenuron, milbemycin oxime
1161                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1168                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                              ivermectin, pyrantel pamoate
1170                                                                                                  fipronil, (s)-methoprene
1173                                                                                                  fipronil, (s)-methoprene
1174                                                                                              ivermectin, pyrantel pamoate
1175                                                                                                  fipronil, (s)-methoprene
1176                                                                                              ivermectin, pyrantel pamoate
1177                                                                                                  fipronil, (s)-methoprene
1179                                                                           betamethasone, clotrimazole, gentamicin sulfate
1185                                                                                                                ivermectin
1186                                                                                              ivermectin, pyrantel pamoate
1187                                                                                                         megestrol acetate
1189                                                                                              ivermectin, pyrantel pamoate
1190                                                                                              ivermectin, pyrantel pamoate
1193                                                                                                                ivermectin
1194                                                                                              ivermectin, pyrantel pamoate
1195                                                                                                          milbemycin oxime
1208                                                                                                  imidacloprid, permethrin
1209                                                                                                          milbemycin oxime
1217                                                                                              ivermectin, pyrantel pamoate
1226                                                                                                imidacloprid, pyriproxyfen
1233                                                                                                       silver sulfadiazine
1247                                                                                               lufenuron, milbemycin oxime
1248                                                                                                                afoxolaner
1274                                                                                                          milbemycin oxime
1285                                                                                            sulfamethoxazole, trimethoprim
1307                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1328                                                                                               lufenuron, milbemycin oxime
1329                                                                                                                 sarolaner
1336                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1344                                                                                ivermectin, praziquantel, pyrantel pamoate
1345                                                                            dexamethasone, neomycin sulfate, thiabendazole
1346                                                                                           ear cleaner (epi-otic advanced)
1348                                                                                                   triamcinolone acetonide
1355                                                                                                  fipronil, (s)-methoprene
1371                                                                                              ivermectin, pyrantel pamoate
1377                                                                                                             levothyroxine
1378                                                                                                      cefpodoxime proxetil
1379                                                                                                                 carprofen
1380                                                                                                             metronidazole
1398                                                                                         dexamethasone, miconazole nitrate
1404                                                                                         betamethasone, gentamicin sulfate
1405                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1415                                                                                         dexamethasone, miconazole nitrate
1416                                                                                                                lokivetmab
1417                                                                                   betamethasone, florfenicol, terbinafine
1418                                                                                                             metronidazole
1419                                                                                               lufenuron, milbemycin oxime
1420                                                                                                                   omega 3
1422                                                                                               lufenuron, milbemycin oxime
1434                                                                                                  fipronil, (s)-methoprene
1435                                                                                               lufenuron, milbemycin oxime
1438                                                                                               lufenuron, milbemycin oxime
1441                                                                                               lufenuron, milbemycin oxime
1442                                                                                ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                  fipronil, (s)-methoprene
1450                                                                                    fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                          milbemycin oxime
1459                                                                                     dinotefuran, permethrin, pyriproxyfen
1462                                                                                     dinotefuran, permethrin, pyriproxyfen
1464                                                                                               lufenuron, milbemycin oxime
1473                                                                                                    unspecified medication
1475                                                                                                  imidacloprid, permethrin
1491                                                                                              ivermectin, pyrantel pamoate
1499                                                                                                milbemycin oxime, spinosad
1500                                                                                                milbemycin oxime, spinosad
1501                                                                                              ivermectin, pyrantel pamoate
1502                                                                                              ivermectin, pyrantel pamoate
1503                                                                                     dinotefuran, permethrin, pyriproxyfen
1504                                                                                                                 vitamin c
1511                                                                                                                afoxolaner
1512                                                                                     dinotefuran, permethrin, pyriproxyfen
1514                                                                                                                afoxolaner
1528                                                                                                  imidacloprid, permethrin
1529                                                                                                                ivermectin
1532                                                                                                imidacloprid, pyriproxyfen
1534                                                                                                imidacloprid, pyriproxyfen
1535                                                                                                          milbemycin oxime
1536                                                                                                imidacloprid, pyriproxyfen
1537                                                                                                          milbemycin oxime
1538                                                                                                          milbemycin oxime
1539                                                                                                imidacloprid, pyriproxyfen
1541                                                                                                imidacloprid, pyriproxyfen
1542                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1556                                                                                                               sevoflurane
1571                                                                                                                 sarolaner
1572                                                                                            milbemycin oxime, praziquantel
1586                                                                                                              ketoconazole
1587                                                                                              ivermectin, pyrantel pamoate
1598                                                                                              ivermectin, pyrantel pamoate
1599                                                                                              ivermectin, pyrantel pamoate
1633                                                                                                          milbemycin oxime
1634                                                                                                  fipronil, (s)-methoprene
1635                                                                                    joint supplement (glucosamine hcl/msm)
1636                                                                                                                   omega 3
1650                                                                                                  fipronil, (s)-methoprene
1663                                                                                                milbemycin oxime, spinosad
1668                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1671                                                                                        fipronil, permethrin, pyriproxyfen
1683                                                                                                  flumethrin, imidacloprid
1684                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                         betamethasone, gentamicin sulfate
1689                                                                                     chlorhexidine gluconate, ketoconazole
1690                                                                                         betamethasone, gentamicin sulfate
1692                                                                           betamethasone, clotrimazole, gentamicin sulfate
1695                                                                              dexamethasone, neomycin sulfate, polymyxin b
1697                                                                                                  flumethrin, imidacloprid
1708                                                                                               lufenuron, milbemycin oxime
1710                                                                                               lufenuron, milbemycin oxime
1712                                                                                               lufenuron, milbemycin oxime
1715                                                                                               lufenuron, milbemycin oxime
1718                                                                                               lufenuron, milbemycin oxime
1719                                                                                                                 sarolaner
1720                                                                                               lufenuron, milbemycin oxime
1729                                                                                                              imidacloprid
1730                                                                                                                ivermectin
1743                                                                                                              imidacloprid
1747                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                            hydrocortisone
1749                                                                                                milbemycin oxime, spinosad
1756                                                                                                                 probiotic
1757                                                                                                    coprophagia supplement
1758                                                                                              ivermectin, pyrantel pamoate
1759                                                                                                                afoxolaner
1760                                                                                                                 cefovecin
1761                                                                                         betamethasone, gentamicin sulfate
1769                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
1773                                                                                         trimeprazine tartrate, prednisone
1774                                                                                               lufenuron, milbemycin oxime
1775                                                                                                                fluralaner
1789                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1791                                                                                                                 mupirocin
1794                                                                                     chlorhexidine gluconate, ketoconazole
1795                                                                                                unspecified shampoo/mousse
1796                                                                                        joint supplement (glucosamine hcl)
1798                                                                                                                 meloxicam
1805                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1809                                                                                                  joint supplement (other)
1812                                                                                                                      kelp
1813                                                                                                                   omega 3
1819                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                             unspecified herbal thyroid support supplement
1823                                                                            mometasone furoate, orbifloxacin, posaconazole
1845                                                                                                  imidacloprid, permethrin
1846                                                                                              ivermectin, pyrantel pamoate
1847                                                                                                imidacloprid, pyriproxyfen
1848                                                                                              ivermectin, pyrantel pamoate
1849                                                                                              ivermectin, pyrantel pamoate
1850                                                                              dexamethasone, neomycin sulfate, polymyxin b
1851                                                                              dexamethasone, neomycin sulfate, polymyxin b
1861                                                                                                                 vitamin k
1864                                                                                     dinotefuran, permethrin, pyriproxyfen
1866                                                                                     dinotefuran, permethrin, pyriproxyfen
1867                                                                                              ivermectin, pyrantel pamoate
1872                                                                                              ivermectin, pyrantel pamoate
1873                                                                                     dinotefuran, permethrin, pyriproxyfen
1877                                                                                 unspecified herbal flea/tick preventative
1887                                                                                       cedarwood oil, rosemary oil, sesame
1888                                                                                 unspecified herbal flea/tick preventative
1905                                                                                                                 vitamin k
1906                                                                                                             metronidazole
1909                                                                                     dinotefuran, permethrin, pyriproxyfen
1916                                                                                     dinotefuran, permethrin, pyriproxyfen
1917                                                                                              ivermectin, pyrantel pamoate
1922                                                                                         betamethasone, gentamicin sulfate
1925                                                                                                          benzoyl peroxide
1926                                                                                     chlorhexidine gluconate, ketoconazole
1928                                                                                                                ivermectin
1929                                                                                     dinotefuran, permethrin, pyriproxyfen
1931                                                                                                          benzoyl peroxide
1939                                                                                 unspecified herbal flea/tick preventative
1941                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1945                                                                                       cedarwood oil, rosemary oil, sesame
1948                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1954                                                                                        fipronil, permethrin, pyriproxyfen
1955                                                                                        fipronil, permethrin, pyriproxyfen
1956                                                                                                          milbemycin oxime
1960                                                                                        fipronil, permethrin, pyriproxyfen
1962                                                                                                                ivermectin
1965                                                                                           ear cleaner (epi-otic advanced)
1980                                                                                                imidacloprid, pyriproxyfen
1981                                                                                              ivermectin, pyrantel pamoate
1982                                                                                              ivermectin, pyrantel pamoate
1983                                                                                                imidacloprid, pyriproxyfen
1984                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                   omega 3
1994                                                                                                               doxorubicin
1998                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2006                                                                                              ivermectin, pyrantel pamoate
2007                                                                                                             levetiracetam
2012                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                   omega 3
2016                                                                                               lufenuron, milbemycin oxime
2022                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2025                                                                                                imidacloprid, pyriproxyfen
2026                                                                                              ivermectin, pyrantel pamoate
2029                                                                                              ivermectin, pyrantel pamoate
2030                                                                                                                 sarolaner
2032                                                                                                          pyrantel pamoate
2033                                                                                                          milbemycin oxime
2034                                                                                                              fenbendazole
2035                                                                                                                ivermectin
2036                                                                                                  fipronil, (s)-methoprene
2041                                                                                                                ivermectin
2042                                                                                                                ivermectin
2043                                                                                                              fenbendazole
2044                                                                                                                 ponazuril
2050                                                                                              ivermectin, pyrantel pamoate
2051                                                                                                  fipronil, (s)-methoprene
2072                                                                                                             metronidazole
2075                                                                                                                ivermectin
2083                                                                                                                selamectin
2084                                                                                                                ivermectin
2085                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2086                                                                                                                fluralaner
2087                                                                                               lufenuron, milbemycin oxime
2088                                                                                                                fluralaner
2089                                                                                                  joint supplement (other)
2091                                                                                                                ivermectin
2093                                                                                                  joint supplement (other)
2107                                                                                              ivermectin, pyrantel pamoate
2108                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                              ivermectin, pyrantel pamoate
2110                                                                                              ivermectin, pyrantel pamoate
2113                                                                                         trimeprazine tartrate, prednisone
2115                                                                                                 unspecified otic ointment
2116                                                                                                    unspecified otic flush
2123                                                                                                                 probiotic
2126                                                                                               lufenuron, milbemycin oxime
2127                                                                                ivermectin, praziquantel, pyrantel pamoate
2149                                                                                               lufenuron, milbemycin oxime
2151                                                                                               lufenuron, milbemycin oxime
2161                                                                                               lufenuron, milbemycin oxime
2162                                                                                                                 sarolaner
2165                                                                           betamethasone, clotrimazole, gentamicin sulfate
2166                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2195                                                                                digestive supplement, prebiotic, probiotic
2199                                                                                              ivermectin, pyrantel pamoate
2200                                                                                                                afoxolaner
2201                                                                                              ivermectin, pyrantel pamoate
2202                                                                                                                afoxolaner
2203                                                                                                  urinary tract supplement
2204                                                                                              ivermectin, pyrantel pamoate
2205                                                                                                                afoxolaner
2206                                                                                                  urinary tract supplement
2207                                                                                    joint supplement (glucosamine hcl/msm)
2211                                                                              dexamethasone, neomycin sulfate, polymyxin b
2219                                                                                                                    arnica
2220                                                                                                                 hypericum
2221                                                                                                             metronidazole
2224                                                                                                 spinal support supplement
2225                                                                                                                   omega 3
2226                                                                                                                 probiotic
2228                                                                                                        mangosteen extract
2229                                                                                                                 shu jin i
2230                                                                                                             metronidazole
2233                                                                                ivermectin, praziquantel, pyrantel pamoate
2241                                                                                     dinotefuran, permethrin, pyriproxyfen
2243                                                                                                          milbemycin oxime
2244                                                                                     dinotefuran, permethrin, pyriproxyfen
2245                                                                                                             levothyroxine
2250                                                                                                                ivermectin
2251                                                                                                     clorsulon, ivermectin
2255                                                                                     dinotefuran, permethrin, pyriproxyfen
2258                                                                                                                 probiotic
2259                                                                                                                 vitamin d
2260                                                                                                                 vitamin a
2261                                                                                                                 vitamin c
2262                                                                                                              multivitamin
2263                                                                                                  kidney health supplement
2264                                                                                             unspecified herbal supplement
2265                                                                                                                  turmeric
2266                                                                                toothpaste/dental health solution or chews
2269                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                  turmeric
2272                                                                            mometasone furoate, orbifloxacin, posaconazole
2278                                                                                ivermectin, praziquantel, pyrantel pamoate
2279                                                                                              ivermectin, pyrantel pamoate
2280                                                                                              ivermectin, pyrantel pamoate
2283                                                                                              ivermectin, pyrantel pamoate
2301                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                     butorphanol tartrate, dexmedetomidine
2333                                                                                              ivermectin, pyrantel pamoate
2339                                                                                                             dexamethasone
2342                                                                              dexamethasone, neomycin sulfate, polymyxin b
2345                                                                                              ivermectin, pyrantel pamoate
2347                                                                                              ivermectin, pyrantel pamoate
2352                                                                                              ivermectin, pyrantel pamoate
2356                                                                                              ivermectin, pyrantel pamoate
2384                                                                                              ivermectin, pyrantel pamoate
2386                                                                                              ivermectin, pyrantel pamoate
2390                                                                                         betamethasone, gentamicin sulfate
2398                                                                                         betamethasone, gentamicin sulfate
2404                                                                                              ivermectin, pyrantel pamoate
2405                                                                                                  fipronil, (s)-methoprene
2406                                                                                                                   omega 3
2408                                                                                                  fipronil, (s)-methoprene
2409                                                                                              ivermectin, pyrantel pamoate
2411                                                                                                                ivermectin
2412                                                                                                               clindamycin
2418                                                                                              ivermectin, pyrantel pamoate
2419                                                                                              ivermectin, pyrantel pamoate
2424                                                                                                        maropitant citrate
2425                                                                                                                omeprazole
2426                                                                                                               amoxicillin
2427                                                                                                             metronidazole
2428                                                                                                               oclacitinib
2450                                                                                                               clindamycin
2453                                                                                                        maropitant citrate
2455                                                                                                                famotidine
2456                                                                                                        maropitant citrate
2463                                                                                         rx diet - selected protein (duck)
2464                                                                                              ivermectin, pyrantel pamoate
2467                                                                                         trimeprazine tartrate, prednisone
2473                                                                            dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                   ketoconazole, tris-edta
2477                                                                                                             buprenorphine
2478                                                                                                                ampicillin
2479                                                                                                                 probiotic
2481                                                                                                                  fipronil
2482                                                                                              ivermectin, pyrantel pamoate
2483                                                                                                                afoxolaner
2486                                                                                                   acetic acid, boric acid
2487                                                                                                   ketoconazole, tris-edta
2490                                                                                                           dexmedetomidine
2491                                                                                                        miconazole nitrate
2492                                                                                                   acetic acid, boric acid
2499                                                                                         rx diet - selected protein (duck)
2500                                                                                              ivermectin, pyrantel pamoate
2501                                                                                                                 carprofen
2502                                                                                                                alprazolam
2503                                                                                                               oclacitinib
2504                                                                                                                afoxolaner
2505                                                                                                                ivermectin
2506                                                                                                                afoxolaner
2508                                                                                                                 probiotic
2517                                                                                               lufenuron, milbemycin oxime
2518                                                                                                  joint supplement (other)
2534                                                                                            unspecified eye dilation drops
2539                                                                                 lufenuron, milbemycin oxime, praziquantel
2540                                                                                               lufenuron, milbemycin oxime
2542                                                                                            milbemycin oxime, praziquantel
2543                                                                                                  flumethrin, imidacloprid
2544                                                                                                             metronidazole
2545                                                                                            milbemycin oxime, praziquantel
2546                                                                                                  flumethrin, imidacloprid
2547                                                                                                          milbemycin oxime
2548                                                                                                  flumethrin, imidacloprid
2549                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                   omega 3
2558                                                                                              ivermectin, pyrantel pamoate
2559                                                                                              ivermectin, pyrantel pamoate
2560                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2562                                                                                              ivermectin, pyrantel pamoate
2566                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2572                                                                                                imidacloprid, pyriproxyfen
2575                                                                                         betamethasone, gentamicin sulfate
2578                                                                                         betamethasone, gentamicin sulfate
2580                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2583                                                                                                                ivermectin
2587                                                                                                               doxycycline
2588                                                                                                                fluralaner
2589                                                                                                                grapiprant
2599                                                                                                       polyethylene glycol
2600                                                                                                         vision supplement
2627                                                                                         betamethasone, gentamicin sulfate
2636                                                                                                               oclacitinib
2642                                                                                         betamethasone, gentamicin sulfate
2651                                                        ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                       ear cleaner (zymox)
2655                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2659                                                                                                  skin and coat supplement
2660                                                                                                   unspecified ear cleaner
2661                                                                                                          colloidal silver
2699                                                                                         betamethasone, gentamicin sulfate
2710                                                                                                  imidacloprid, moxidectin
2721                                                                           betamethasone, clotrimazole, gentamicin sulfate
2726                                                                                              ivermectin, pyrantel pamoate
2731                                                                                                milbemycin oxime, spinosad
2735                                                                                                milbemycin oxime, spinosad
2737                                                                                               lufenuron, milbemycin oxime
2738                                                                                                          milbemycin oxime
2739                                                                                                                afoxolaner
2742                                                                                               lufenuron, milbemycin oxime
2743                                                                                                                fluralaner
2745                                                                                               lufenuron, milbemycin oxime
2746                                                                                                                fluralaner
2748                                                                                               lufenuron, milbemycin oxime
2749                                                                                                                fluralaner
2750                                                                                                               oclacitinib
2753                                                                                 lufenuron, milbemycin oxime, praziquantel
2756                                                                                                                lokivetmab
2805                                                                                                  fipronil, (s)-methoprene
2808                                                                                                                   omega 3
2815                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2817                                                                                              ivermectin, pyrantel pamoate
2818                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2825                                                                                                          milbemycin oxime
2826                                                                                              ivermectin, pyrantel pamoate
2827                                                                                              ivermectin, pyrantel pamoate
2828                                                                                              ivermectin, pyrantel pamoate
2833                                                                                               lufenuron, milbemycin oxime
2838                                                                                                          milbemycin oxime
2839                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
2842                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2844                                                                              dexamethasone, neomycin sulfate, polymyxin b
2846                                                                                                          milbemycin oxime
2855                                                                                                             yunnan baiyao
2869                                                                                        unspecified heartworm preventative
2897                                                                                     chlorhexidine gluconate, ketoconazole
2900                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2903                                                                                     chlorhexidine gluconate, ketoconazole
2904                                                                                     chlorhexidine gluconate, ketoconazole
2905                                                                                     chlorhexidine gluconate, ketoconazole
2907                                                                                                                 probiotic
2910                                                                                                                afoxolaner
2911                                                                                               lufenuron, milbemycin oxime
2912                                                                                                                afoxolaner
2913                                                                                                                 probiotic
2919                                                                                            milbemycin oxime, praziquantel
2920                                                                                                                afoxolaner
2921                                                                                                                 probiotic
2922                                                                                                          milbemycin oxime
2923                                                                                                                afoxolaner
2925                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2926                                                                                                          milbemycin oxime
2927                                                                                                                afoxolaner
2941                                                                                               lufenuron, milbemycin oxime
2942                                                                                                  imidacloprid, permethrin
2943                                                                                               lufenuron, milbemycin oxime
2944                                                                                                imidacloprid, pyriproxyfen
2946                                                                                                imidacloprid, pyriproxyfen
2951                                                                                                imidacloprid, pyriproxyfen
2958                                                                                                                ivermectin
2959                                                                                                                ivermectin
2960                                                                                              ivermectin, pyrantel pamoate
2961                                                                                              ivermectin, pyrantel pamoate
2962                                                                                              ivermectin, pyrantel pamoate
2963                                                                                              ivermectin, pyrantel pamoate
2964                                                                                              ivermectin, pyrantel pamoate
2968                                                                                                  fipronil, (s)-methoprene
2974                                                                                               lufenuron, milbemycin oxime
2975                                                                                                  fipronil, (s)-methoprene
2978                                                                                 lufenuron, milbemycin oxime, praziquantel
2980                                                                                                      prednisolone acetate
2981                                                                                 lufenuron, milbemycin oxime, praziquantel
2982                                                                                                                afoxolaner
2988                                                                                                              fenbendazole
2993                                                                                                              fenbendazole
2997                                                                                                             metronidazole
3002                                                                                                      prednisolone acetate
3003                                                                                           ear cleaner (epi-otic advanced)
3007                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3028                                                                                                  fipronil, (s)-methoprene
3031                                                                                                          liver supplement
3043                                                                                                  fipronil, (s)-methoprene
3051                                                                                                                ivermectin
3055                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
3058                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3060                                                                                                                ivermectin
3092                                                                                                               minocycline
3095                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3096                                                                                                             metronidazole
3108                                                                                                           diphenhydramine
3110                                                                            mometasone furoate, orbifloxacin, posaconazole
3119                                                                                dimethyl sulfoxide, fluocinolone acetonide
3140                                                                                             allergy immunotherapy - drops
3146                                                                                                                cetirizine
3147                                                                                             allergy immunotherapy - drops
3179                                                                                              ivermectin, pyrantel pamoate
3180                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3208                                                                                              ivermectin, pyrantel pamoate
3209                                                                                                                fluralaner
3212                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
3246                                                                                ivermectin, praziquantel, pyrantel pamoate
3247                                                                                ivermectin, praziquantel, pyrantel pamoate
3250                                                                                ivermectin, praziquantel, pyrantel pamoate
3251                                                                                            milbemycin oxime, praziquantel
3253                                                                                ivermectin, praziquantel, pyrantel pamoate
3254                                                                                ivermectin, praziquantel, pyrantel pamoate
3255                                                                                ivermectin, praziquantel, pyrantel pamoate
3257                                                                                ivermectin, praziquantel, pyrantel pamoate
3261                                                                                                                   omega 3
3270                                                                                                             metronidazole
3271                                                                                ivermectin, praziquantel, pyrantel pamoate
3278                                                                              dexamethasone, neomycin sulfate, polymyxin b
3280                                                                                ivermectin, praziquantel, pyrantel pamoate
3284                                                                                                          milbemycin oxime
3287                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3291                                                                                                                 mupirocin
3293                                                                           betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                          milbemycin oxime
3300                                                                                                          milbemycin oxime
3303                                                                                                                  tramadol
3305                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3312                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                 mupirocin
3339                                                                                            milbemycin oxime, praziquantel
3342                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3345                                                                                               lufenuron, milbemycin oxime
3346                                                                                               lufenuron, milbemycin oxime
3350                                                                                                                ivermectin
3359                                                                                                  fipronil, (s)-methoprene
3360                                                                                                  joint supplement (other)
3366                                                                                                              enrofloxacin
3372                                                                                                                ivermectin
3375                                                                                  febantel, praziquantel, pyrantel pamoate
3376                                                                                                                 mupirocin
3384                                                                                                  fipronil, (s)-methoprene
3394                                                                                                   triamcinolone acetonide
3399                                                                                                milbemycin oxime, spinosad
3403                                                                                                milbemycin oxime, spinosad
3404                                                                                                                afoxolaner
3405                                                                                              ivermectin, pyrantel pamoate
3406                                                                              florfenicol, mometasone furoate, terbinafine
3407                                                                                              ivermectin, pyrantel pamoate
3408                                                                                                                afoxolaner
3421                                                                                             allergy immunotherapy - drops
3422                                                                                             allergy immunotherapy - drops
3423                                                                                                                selamectin
3425                                                                                                                selamectin
3426                                                                                             allergy immunotherapy - drops
3429                                                                                                milbemycin oxime, spinosad
3437                                                                           betamethasone, clotrimazole, gentamicin sulfate
3439                                                                              florfenicol, mometasone furoate, terbinafine
3444                                                                                                                lokivetmab
3445                                                                                                                cephalexin
3446                                                                                                                lokivetmab
3447                                                                           betamethasone, clotrimazole, gentamicin sulfate
3448                                                                              florfenicol, mometasone furoate, terbinafine
3449                                                                                                                 carprofen
3451                                                                                               lufenuron, milbemycin oxime
3455                                                                                               lufenuron, milbemycin oxime
3456                                                                                                  fipronil, (s)-methoprene
3457                                                                                               lufenuron, milbemycin oxime
3458                                                                                                imidacloprid, pyriproxyfen
3459                                                                                               lufenuron, milbemycin oxime
3465                                                                                                       phenylpropanolamine
3487                                                                                                  fipronil, (s)-methoprene
3488                                                                                                                nitenpyram
3490                                                                                                                 sarolaner
3491                                                                                               lufenuron, milbemycin oxime
3492                                                                                                                 sarolaner
3495                                                                                 lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                 sarolaner
3497                                                                                 lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                 sarolaner
3512                                                                                              ivermectin, pyrantel pamoate
3513                                                                                              ivermectin, pyrantel pamoate
3514                                                                                              ivermectin, pyrantel pamoate
3515                                                                                              ivermectin, pyrantel pamoate
3516                                                                                              ivermectin, pyrantel pamoate
3517                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3519                                                                                                                ivermectin
3520                                                                                ivermectin, praziquantel, pyrantel pamoate
3522                                                                                              ivermectin, pyrantel pamoate
3525                                                                                              ivermectin, pyrantel pamoate
3526                                                                                ivermectin, praziquantel, pyrantel pamoate
3530                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3535                                                                              dexamethasone, neomycin sulfate, polymyxin b
3581                                                                                                              multivitamin
3588                                                                                                               sevoflurane
3600                                                                                                        gentamicin sulfate
3601                                                                                                                 carprofen
3619                                                                                            milbemycin oxime, praziquantel
3622                                                                                                                 probiotic
3631                                                                                                                ivermectin
3632                                                                                                                ivermectin
3635                                                                                                                fluralaner
3636                                                                                            polysulfated glycosaminoglycan
3639                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                   acetic acid, boric acid
3641                                                                                         betamethasone, gentamicin sulfate
3649                                                                                                  imidacloprid, moxidectin
3650                                                                                                  imidacloprid, moxidectin
3651                                                                                                             metronidazole
3652                                                                                                      prebiotic, probiotic
3666                                                                                         betamethasone, gentamicin sulfate
3667                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
3675                                                                                         betamethasone, gentamicin sulfate
3684                                                                                                          milbemycin oxime
3685                                                                                                  fipronil, (s)-methoprene
3691                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                          milbemycin oxime
3693                                                                                         betamethasone, gentamicin sulfate
3698                                                                                                                selamectin
3699                                                                                                                selamectin
3701                                                                                                          milbemycin oxime
3704                                                                                                          milbemycin oxime
3705                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                lokivetmab
3710                                                                                                           cbd or hemp oil
3718                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                              ivermectin, pyrantel pamoate
3725                                                                                              ivermectin, pyrantel pamoate
3726                                                                                              ivermectin, pyrantel pamoate
3735                                                                                                                 ketotifen
3738                                                                                                        maropitant citrate
3741                                                                                                               amoxicillin
3742                                                                                                              azathioprine
3743                                                                                                                cetirizine
3744                                                                                                                 lactulose
3745                                                                                                                 carprofen
3750                                                                                                          milbemycin oxime
3760                                                                                                milbemycin oxime, spinosad
3773                                                                              dexamethasone, neomycin sulfate, polymyxin b
3781                                                                                                                 ketorolac
3782                                                                                                                 ofloxacin
3783                                                                                                               tropicamide
3784                                                                                                     mycophenolate mofetil
3785                                                                                                                prednisone
3786                                                                                                                famotidine
3789                                                                                         betamethasone, gentamicin sulfate
3797                                                                                                   triamcinolone acetonide
3798                                                                           betamethasone, clotrimazole, gentamicin sulfate
3800                                                                           betamethasone, clotrimazole, gentamicin sulfate
3803                                                                                              ormetoprim, sulfadimethoxine
3804                                                                                                      cefpodoxime proxetil
3815                                                                                              ivermectin, pyrantel pamoate
3829                                                                           betamethasone, clotrimazole, gentamicin sulfate
3830                                                                                                                 meloxicam
3835                                                                                              ivermectin, pyrantel pamoate
3836                                                                                                                afoxolaner
3837                                                                                                                 thyroxine
3838                                                                                                                afoxolaner
3839                                                                                                                 thyroxine
3840                                                                           betamethasone, clotrimazole, gentamicin sulfate
3848                                                                              dexamethasone, neomycin sulfate, polymyxin b
3857                                                                                              ivermectin, pyrantel pamoate
3858                                                                                                  fipronil, (s)-methoprene
3859                                                                                                          milbemycin oxime
3860                                                                                                                afoxolaner
3861                                                                                                        gentamicin sulfate
3867                                                                           betamethasone, clotrimazole, gentamicin sulfate
3870                                                                                              ivermectin, pyrantel pamoate
3871                                                                                                                afoxolaner
3872                                                                                                                afoxolaner
3874                                                                           betamethasone, clotrimazole, gentamicin sulfate
3881                                                                                                                ivermectin
3884                                                                                                  fipronil, (s)-methoprene
3885                                                                                                  fipronil, (s)-methoprene
3886                                                                                              ivermectin, pyrantel pamoate
3889                                                                                              ivermectin, pyrantel pamoate
3890                                                                                                  fipronil, (s)-methoprene
3896                                                                                                  fipronil, (s)-methoprene
3897                                                                                              ivermectin, pyrantel pamoate
3898                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
3900                                                                                                                ivermectin
3902                                                                                                  fipronil, (s)-methoprene
3903                                                                                              ivermectin, pyrantel pamoate
3904                                                                                                  fipronil, (s)-methoprene
3906                                                                                              ivermectin, pyrantel pamoate
3907                                                                                                  fipronil, (s)-methoprene
3911                                                                                              ivermectin, pyrantel pamoate
3912                                                                                                  fipronil, (s)-methoprene
3936                                                                                                milbemycin oxime, spinosad
3938                                                                                              ivermectin, pyrantel pamoate
3942                                                                                                                afoxolaner
3943                                                                                              ivermectin, pyrantel pamoate
3944                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3945                                                                                          propylene glycol, salicylic acid
3946                                                                                                                afoxolaner
3952                                                                                              ivermectin, pyrantel pamoate
3955                                                                                                                afoxolaner
3972                                                                                                milbemycin oxime, spinosad
3980                                                                                              ivermectin, pyrantel pamoate
3981                                                                                                                afoxolaner
3984                                                                                              ivermectin, pyrantel pamoate
3985                                                                                                                afoxolaner
3989                                                                                              ivermectin, pyrantel pamoate
3990                                                                                                                afoxolaner
4000                                                                                                                 meloxicam
4017                                                                                              ivermectin, pyrantel pamoate
4030                                                                                                milbemycin oxime, spinosad
4031                                                                                                milbemycin oxime, spinosad
4042                                                                                                    unspecified medication
4044                                                                                                                moxidectin
4045                                                                                                                 sarolaner
4047                                                                                                                 sarolaner
4058                                                                                                                ivermectin
4059                                                                                         trimeprazine tartrate, prednisone
4060                                                                                              ivermectin, pyrantel pamoate
4063                                                                                              ivermectin, pyrantel pamoate
4064                                                                                                                fluralaner
4066                                                                                                                ivermectin
4067                                                                                                                fluralaner
4068                                                                                toothpaste/dental health solution or chews
4069                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                               oclacitinib
4071                                                                                toothpaste/dental health solution or chews
4072                                                                                                                afoxolaner
4073                                                                                              ivermectin, pyrantel pamoate
4074                                                                                                  fipronil, (s)-methoprene
4075                                                                                              ivermectin, pyrantel pamoate
4076                                                                                                               oclacitinib
4077                                                                                                                afoxolaner
4087                                                                                                                 cefazolin
4088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                 ofloxacin
4092                                                                                                              imidacloprid
4095                                                                                                                 sarolaner
4096                                                                                                                moxidectin
4097                                                                                                                 sarolaner
4111                                                                                                milbemycin oxime, spinosad
4112                                                                                ivermectin, praziquantel, pyrantel pamoate
4113                                                                                           ear cleaner (epi-otic advanced)
4114                                                                                                   ketoconazole, tris-edta
4116                                                                                         trimeprazine tartrate, prednisone
4117                                                                                                  fipronil, (s)-methoprene
4118                                                                                                milbemycin oxime, spinosad
4119                                                                                                   ketoconazole, tris-edta
4120                                                                                                milbemycin oxime, spinosad
4122                                                                                                milbemycin oxime, spinosad
4125                                                                                                milbemycin oxime, spinosad
4127                                                                                            milbemycin oxime, praziquantel
4128                                                                                                                afoxolaner
4130                                                                                                milbemycin oxime, spinosad
4131                                                                                         betamethasone, gentamicin sulfate
4132                                                                                         betamethasone, gentamicin sulfate
4133                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4159                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4160                                                                                 clotrimazole, dexamethasone, enrofloxacin
4161                                                                                                                ivermectin
4162                                                                                        fipronil, permethrin, pyriproxyfen
4172                                                                                                  fipronil, (s)-methoprene
4183                                                                                                                selamectin
4184                                                                                                                selamectin
4189                                                                                                      cefpodoxime proxetil
4190                                                                                                                 carprofen
4191                                                                                                milbemycin oxime, spinosad
4193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4198                                                                                                                afoxolaner
4199                                                                                                          milbemycin oxime
4204                                                                                                                lokivetmab
4209                                                                                                milbemycin oxime, spinosad
4210                                                                                                milbemycin oxime, spinosad
4212                                                                                                milbemycin oxime, spinosad
4213                                                                                 lufenuron, milbemycin oxime, praziquantel
4215                                                                                               lufenuron, milbemycin oxime
4216                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4218                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4229                                                                                                              fenbendazole
4234                                                                                                               doxycycline
4244                                                                                                          pyrantel pamoate
4245                                                                           betamethasone, clotrimazole, gentamicin sulfate
4247                                                                                              ivermectin, pyrantel pamoate
4265                                                                                                                tobramycin
4266                                                                                                   ketoconazole, tris-edta
4274                                                                                                                isoflurane
4281                                                                                                                 carprofen
4282                                                                                                                cephalexin
4298                                                                                        fipronil, permethrin, pyriproxyfen
4299                                                                                                                ivermectin
4302                                                                                               lufenuron, milbemycin oxime
4303                                                                                        fipronil, permethrin, pyriproxyfen
4304                                                                                               lufenuron, milbemycin oxime
4305                                                                                                  fipronil, (s)-methoprene
4306                                                                                                                   omega 3
4307                                                                                               lufenuron, milbemycin oxime
4308                                                                                               lufenuron, milbemycin oxime
4309                                                                                                  fipronil, (s)-methoprene
4311                                                                                        joint supplement (glucosamine hcl)
4313                                                                                               lufenuron, milbemycin oxime
4314                                                                                                  fipronil, (s)-methoprene
4323                                                                                                                selamectin
4324                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                          milbemycin oxime
4326                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4334                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4336                                                                                                                fluralaner
4338                                                                                 lufenuron, milbemycin oxime, praziquantel
4341                                                                                                               doxycycline
4348                                                                              dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                milbemycin oxime, spinosad
4350                                                                                                milbemycin oxime, spinosad
4351                                                                                                milbemycin oxime, spinosad
4353                                                                                                milbemycin oxime, spinosad
4354                                                                                                milbemycin oxime, spinosad
4359                                                                                                milbemycin oxime, spinosad
4360                                                                                         betamethasone, gentamicin sulfate
4368                                                                                                        calming supplement
4371                                                                                                                   omega 3
4384                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                               lufenuron, milbemycin oxime
4390                                                                                                                fluralaner
4395                                                                                              ivermectin, pyrantel pamoate
4405                                                                                                milbemycin oxime, spinosad
4409                                                                                                  enrofloxacin, tobramycin
4426                                                                                              ivermectin, pyrantel pamoate
4427                                                                                                imidacloprid, pyriproxyfen
4428                                                                                                                  spinosad
4430                                                                                                         hypochlorous acid
4431                                                                                   over-the-counter antipruritic/astrigent
4444                                                                                                  fipronil, (s)-methoprene
4445                                                                                                milbemycin oxime, spinosad
4446                                                                                                                 probiotic
4454                                                                                                                isoflurane
4469                                                                                                   ketoconazole, tris-edta
4470                                                                                                   ketoconazole, tris-edta
4471                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4480                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4483                                                                                               lufenuron, milbemycin oxime
4486                                                                                                                   omega 3
4488                                                                                   betamethasone, florfenicol, terbinafine
4491                                                                                   betamethasone, florfenicol, terbinafine
4497                                                                                               lufenuron, milbemycin oxime
4498                                                                                                                afoxolaner
4499                                                                                            milbemycin oxime, praziquantel
4500                                                                                                                afoxolaner
4501                                                                                       rx diet - skin and food sensitivity
4502                                                                                                                afoxolaner
4504                                                                                       rx diet - skin and food sensitivity
4505                                                                                                          milbemycin oxime
4509                                                                                                          milbemycin oxime
4510                                                                                                                afoxolaner
4511                                                                                                                   omega 3
4515                                                                                                          milbemycin oxime
4516                                                                                                                afoxolaner
4517                                                                                                                 probiotic
4524                                                                                ivermectin, praziquantel, pyrantel pamoate
4532                                                                                                          milbemycin oxime
4533                                                                                                      prebiotic, probiotic
4534                                                                                                               coconut oil
4535                                                                                                               oclacitinib
4536                                                                                                          milbemycin oxime
4544                                                                                                                   omega 3
4545                                                                                ivermectin, praziquantel, pyrantel pamoate
4547                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4558                                                                                              ivermectin, pyrantel pamoate
4559                                                                                        fipronil, permethrin, pyriproxyfen
4560                                                                                              ivermectin, pyrantel pamoate
4561                                                                                         betamethasone, gentamicin sulfate
4562                                                                                                                fluralaner
4564                                                                                              ivermectin, pyrantel pamoate
4565                                                                                                                fluralaner
4566                                                                                              ivermectin, pyrantel pamoate
4567                                                                                                                fluralaner
4568                                                                                                                fluralaner
4569                                                                                                          milbemycin oxime
4587                                                                                              ivermectin, pyrantel pamoate
4597                                                                                clinical trial - cancer prevention vaccine
4598                                                                                                                 firocoxib
4599                                                                                                                ivermectin
4600                                                                                                                afoxolaner
4611                                                                                                milbemycin oxime, spinosad
4617                                                                                         betamethasone, gentamicin sulfate
4627                                                                                                                  fipronil
4628                                                                                                            (s)-methoprene
4629                                                                                               lufenuron, milbemycin oxime
4630                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4631                                                                                                  fipronil, (s)-methoprene
4634                                                                                               rx diet - digestive support
4638                                                                                                  fipronil, (s)-methoprene
4640                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4642                                                                                            milbemycin oxime, praziquantel
4643                                                                                                              cyclosporine
4644                                                                                                                      edta
4645                                                                                                                      edta
4646                                                                                                              flurbiprofen
4647                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4648                                                                                            milbemycin oxime, praziquantel
4649                                                                                                  fipronil, (s)-methoprene
4651                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4654                                                                                                  fipronil, (s)-methoprene
4655                                                                                            milbemycin oxime, praziquantel
4688                                                                                                          sulfadimethoxine
4693                                                                                              ivermectin, pyrantel pamoate
4694                                                                                                                afoxolaner
4695                                                                                                          milbemycin oxime
4696                                                                                                                afoxolaner
4697                                                                                            milbemycin oxime, praziquantel
4700                                                                                                    dinoprost tromethamine
4703                                                                                                          milbemycin oxime
4705                                                                                                          milbemycin oxime
4711                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
4716                                                                                                      cefpodoxime proxetil
4717                                                                                                                  spinosad
4719                                                                            mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                   ketoconazole, tris-edta
4726                                                                                                          milbemycin oxime
4738                                                                                                milbemycin oxime, spinosad
4739                                                                                                milbemycin oxime, spinosad
4743                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                         betamethasone, gentamicin sulfate
4745                                                                                                milbemycin oxime, spinosad
4748                                                                                                milbemycin oxime, spinosad
4757                                                                                                imidacloprid, pyriproxyfen
4760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4761                                                                                                 immune support supplement
4763                                                                                                imidacloprid, pyriproxyfen
4764                                                                                                imidacloprid, pyriproxyfen
4766                                                                                                imidacloprid, pyriproxyfen
4777                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
4780                                                                                                  joint supplement (other)
4782                                                                                                                 probiotic
4798                                                                                                                prednisone
4801                                                                                                                prednisone
4802                                                                                              ivermectin, pyrantel pamoate
4803                                                                              dexamethasone, neomycin sulfate, polymyxin b
4804                                                                                                                prednisone
4805                                                                              dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                afoxolaner
4807                                                                                                                 carprofen
4813                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4824                                                                                                  imidacloprid, moxidectin
4826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4828                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4832                                                                                     enrofloxacin, triamcinolone acetonide
4850                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4853                                                                                                   ketoconazole, tris-edta
4855                                                                                                milbemycin oxime, spinosad
4858                                                                                                milbemycin oxime, spinosad
4859                                                                                              ivermectin, pyrantel pamoate
4861                                                                                              ivermectin, pyrantel pamoate
4862                                                                                              ivermectin, pyrantel pamoate
4881                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4902                                                                                                  fipronil, (s)-methoprene
4904                                                                                                milbemycin oxime, spinosad
4905                                                                                                milbemycin oxime, spinosad
4907                                                                                                  flumethrin, imidacloprid
4908                                                                                                milbemycin oxime, spinosad
4910                                                                                                  flumethrin, imidacloprid
4912                                                                                            milbemycin oxime, praziquantel
4913                                                                                                  flumethrin, imidacloprid
4914                                                                                            milbemycin oxime, praziquantel
4917                                                                                            milbemycin oxime, praziquantel
4935                                                                                                                ivermectin
4956                                                                                                   ketoconazole, tris-edta
4960                                                                                                   ketoconazole, tris-edta
4968                                                                                                milbemycin oxime, spinosad
4969                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
4980                                                                                                                 probiotic
4981                                                                                            milbemycin oxime, praziquantel
4989                                                                                                                 carprofen
4990                                                                                                                  tramadol
4996                                                                                         betamethasone, gentamicin sulfate
4998                                                                                                             oxymetazoline
5040                                                                                                                afoxolaner
5043                                                                                                  fipronil, (s)-methoprene
5046                                                                                         betamethasone, gentamicin sulfate
5066                                                                                                milbemycin oxime, spinosad
5067                                                                                                                  spinosad
5078                                                                                                milbemycin oxime, spinosad
5122                                                                                              ivermectin, pyrantel pamoate
5123                                                                                                                afoxolaner
5125                                                                                         allergy immunotherapy - injection
5127                                                                                            polysulfated glycosaminoglycan
5134                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5140                                                                                        amoxicillin, clavulanate potassium
5150                                                                                                milbemycin oxime, spinosad
5159                                                                                        joint supplement (glucosamine hcl)
5160                                                                                                                   omega 3
5161                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5165                                                                                                                 deracoxib
5173                                                                                              ivermectin, pyrantel pamoate
5174                                                                                                                afoxolaner
5175                                                                                                              enrofloxacin
5189                                                                                                milbemycin oxime, spinosad
5191                                                                                                milbemycin oxime, spinosad
5192                                                                                                                 carprofen
5193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5195                                                                                                  flumethrin, imidacloprid
5201                                                                                                                 carprofen
5203                                                                                                                ivermectin
5210                                                                                                              ketoconazole
5211                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                               chlorhexidine gluconate, miconazole nitrate
5213                                                                                                    ear cleaner (otirinse)
5214                                                                                               lufenuron, milbemycin oxime
5220                                                                                         betamethasone, gentamicin sulfate
5221                                                                               chlorhexidine gluconate, miconazole nitrate
5222                                                                                                  imidacloprid, permethrin
5223                                                                                               lufenuron, milbemycin oxime
5225                                                                                               lufenuron, milbemycin oxime
5234                                                                                  febantel, praziquantel, pyrantel pamoate
5235                                                                                               lufenuron, milbemycin oxime
5243                                                                                               lufenuron, milbemycin oxime
5244                                                                                                imidacloprid, pyriproxyfen
5247                                                                                            milbemycin oxime, praziquantel
5248                                                                                                  imidacloprid, permethrin
5253                                                                                              ivermectin, pyrantel pamoate
5255                                                                                               lufenuron, milbemycin oxime
5256                                                                                               lufenuron, milbemycin oxime
5257                                                                                               lufenuron, milbemycin oxime
5258                                                                                               lufenuron, milbemycin oxime
5261                                                                                               lufenuron, milbemycin oxime
5262                                                                                  febantel, praziquantel, pyrantel pamoate
5264                                                                                                imidacloprid, pyriproxyfen
5265                                                                                                          milbemycin oxime
5270                                                                                            milbemycin oxime, praziquantel
5271                                                                                                  imidacloprid, permethrin
5289                                                                                                          milbemycin oxime
5332                                                                                                                   amitraz
5333                                                                                                                   omega 3
5334                                                                                              ivermectin, pyrantel pamoate
5335                                                                                                                   amitraz
5336                                                                                                  urinary tract supplement
5337                                                                                              ivermectin, pyrantel pamoate
5340                                                                                              ivermectin, pyrantel pamoate
5341                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
5354                                                                                                  flumethrin, imidacloprid
5357                                                                              dexamethasone, neomycin sulfate, polymyxin b
5359                                                                                              ivermectin, pyrantel pamoate
5360                                                                                              ivermectin, pyrantel pamoate
5361                                                                                                           diphenhydramine
5362                                                                            attapulgite, bismuth subcarbonate, kanamycin a
5369                                                                                              ivermectin, pyrantel pamoate
5377                                                                                              ivermectin, pyrantel pamoate
5378                                                                                                  fipronil, (s)-methoprene
5379                                                                                                                ivermectin
5380                                                                                                  fipronil, (s)-methoprene
5382                                                                                    cyphenothrin, fipronil, (s)-methoprene
5384                                                                                                          milbemycin oxime
5385                                                                                                  fipronil, (s)-methoprene
5386                                                                                              ivermectin, pyrantel pamoate
5387                                                                                                          milbemycin oxime
5388                                                                                     dinotefuran, permethrin, pyriproxyfen
5391                                                                                                                afoxolaner
5392                                                                                              ivermectin, pyrantel pamoate
5403                                                                                                          milbemycin oxime
5424                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5428                                                                                         betamethasone, gentamicin sulfate
5440                                                                                                                   omega 3
5460                                        chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5464                                                                                                milbemycin oxime, spinosad
5469                                                                                                                moxidectin
5483                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                   omega 3
5485                                                                                                             metronidazole
5490                                                                                                               oclacitinib
5491                                                                                                  fipronil, (s)-methoprene
5492                                                                                                                ivermectin
5497                                                                                              ivermectin, pyrantel pamoate
5498                                                                                              ivermectin, pyrantel pamoate
5499                                                                                                  fipronil, (s)-methoprene
5500                                                                                              ivermectin, pyrantel pamoate
5501                                                                                                   chlorhexidine gluconate
5502                                                                                                     rattlesnake antivenin
5507                                                                                              ivermectin, pyrantel pamoate
5508                                                                                              ivermectin, pyrantel pamoate
5509                                                                                              ivermectin, pyrantel pamoate
5511                                                                                              ivermectin, pyrantel pamoate
5513                                                                                              ivermectin, pyrantel pamoate
5527                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                    cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                   triamcinolone acetonide
5533                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                              ivermectin, pyrantel pamoate
5535                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5537                                                                                                   triamcinolone acetonide
5541                                                                                              ivermectin, pyrantel pamoate
5542                                                                                    cyphenothrin, fipronil, (s)-methoprene
5545                                                                                              ivermectin, pyrantel pamoate
5546                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5552                                                                                              ivermectin, pyrantel pamoate
5553                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5556                                                                                                  fipronil, (s)-methoprene
5557                                                                                              ivermectin, pyrantel pamoate
5568                                                                                               lufenuron, milbemycin oxime
5571                                                                                               lufenuron, milbemycin oxime
5574                                                                                               lufenuron, milbemycin oxime
5576                                                                                               lufenuron, milbemycin oxime
5577                                                                                                              deltamethrin
5578                                                                                               lufenuron, milbemycin oxime
5595                                                                                               lufenuron, milbemycin oxime
5600                                                                                               lufenuron, milbemycin oxime
5601                                                                                                  fipronil, (s)-methoprene
5602                                                                                               lufenuron, milbemycin oxime
5607                                                                                               lufenuron, milbemycin oxime
5626                                                                                              ivermectin, pyrantel pamoate
5627                                                                                              ivermectin, pyrantel pamoate
5628                                                                                                                afoxolaner
5629                                                                                              ivermectin, pyrantel pamoate
5630                                                                                                                afoxolaner
5631                                                                                                                ivermectin
5632                                                                                                                afoxolaner
5641                                                                                                                moxidectin
5649                                                                                                                 probiotic
5668                                                                                                                ivermectin
5681                                                                                                                afoxolaner
5682                                                                                                          milbemycin oxime
5695                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5721                                                                                                milbemycin oxime, spinosad
5722                                                                                                milbemycin oxime, spinosad
5723                                                                                                milbemycin oxime, spinosad
5724                                                                                                milbemycin oxime, spinosad
5725                                                                                                milbemycin oxime, spinosad
5728                                                                                                milbemycin oxime, spinosad
5729                                                                            mometasone furoate, orbifloxacin, posaconazole
5731                                                                              florfenicol, mometasone furoate, terbinafine
5737                                                                                                             metronidazole
5747                                                                                              ivermectin, pyrantel pamoate
5748                                                                                                                afoxolaner
5760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5762                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5768                                                                                                                ivermectin
5771                                                                                                          milbemycin oxime
5774                                                                                                                cephalexin
5777                                                                                                          melanoma vaccine
5793                                                                                               lufenuron, milbemycin oxime
5794                                                                                                milbemycin oxime, spinosad
5804                                                                                                          milbemycin oxime
5814                                                                                                          tylosin tartrate
5834                                                                                              ivermectin, pyrantel pamoate
5839                                                                                               lufenuron, milbemycin oxime
5840                                                                                               lufenuron, milbemycin oxime
5858                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
5869                                                                                              ivermectin, pyrantel pamoate
5872                                                                                              ivermectin, pyrantel pamoate
5873                                                                                                  fipronil, (s)-methoprene
5877                                                                                  febantel, praziquantel, pyrantel pamoate
5884                                                                                     chlorhexidine gluconate, ketoconazole
5887                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5890                                                                                                                selamectin
5896                                                                                                                fluralaner
5913                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5917                                                                            dexamethasone, neomycin sulfate, thiabendazole
5925                                                                                                milbemycin oxime, spinosad
5928                                                                                                milbemycin oxime, spinosad
5930                                                                                              ivermectin, pyrantel pamoate
5931                                                                                                                fluralaner
5932                                                                                                              cyclosporine
5933                                                                                                                fluralaner
5934                                                                                              ivermectin, pyrantel pamoate
5935                                                                                                      prednisolone acetate
5936                                                                                              ivermectin, pyrantel pamoate
5937                                                                                                                fluralaner
5941                                                                                              ivermectin, pyrantel pamoate
5942                                                                                                                fluralaner
5945                                                                               hydroquinone, mometasone furoate, tretinoin
5963                                                                                               lufenuron, milbemycin oxime
5964                                                                                                                afoxolaner
5965                                                                                               lufenuron, milbemycin oxime
5966                                                                                               lufenuron, milbemycin oxime
5967                                                                                               lufenuron, milbemycin oxime
5968                                                                                               lufenuron, milbemycin oxime
5976                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5977                                                                                                                 carprofen
5978                                                                                                                  tramadol
5979                                                                                                                cephalexin
5980                                                                                                                  spinosad
5981                                                                                    joint supplement (glucosamine hcl/msm)
5985                                                                                                                fluralaner
5987                                                                                                                 trazodone
5988                                                                                                                  spinosad
5991                                                                                                  fipronil, (s)-methoprene
5992                                                                                              ivermectin, pyrantel pamoate
5993                                                                                              ivermectin, pyrantel pamoate
5994                                                                                    fipronil, pyriproxyfen, (s)-methoprene
6000                                                                                               lufenuron, milbemycin oxime
6002                                                                                                imidacloprid, pyriproxyfen
6003                                                                                               lufenuron, milbemycin oxime
6004                                                                                                imidacloprid, pyriproxyfen
6005                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6012                                                                                                                afoxolaner
6014                                                                                               lufenuron, milbemycin oxime
6015                                                                                                                afoxolaner
6016                                                                                                                afoxolaner
6017                                                                                               lufenuron, milbemycin oxime
6021                                                                                              ivermectin, pyrantel pamoate
6022                                                                                              ivermectin, pyrantel pamoate
6036                                                                                                milbemycin oxime, spinosad
6038                                                                                               lufenuron, milbemycin oxime
6039                                                                                              ivermectin, pyrantel pamoate
6059                                                                                              ivermectin, pyrantel pamoate
6060                                                                                                                afoxolaner
6063                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6068                                                                                              ivermectin, pyrantel pamoate
6069                                                                                     dinotefuran, permethrin, pyriproxyfen
6070                                                                                                           diphenhydramine
6071                                                                                                                ivermectin
6072                                                                                                  flumethrin, imidacloprid
6073                                                                                     dinotefuran, permethrin, pyriproxyfen
6074                                                                                         betamethasone, gentamicin sulfate
6076                                                                                                  flumethrin, imidacloprid
6078                                                                                                  flumethrin, imidacloprid
6088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6089                                                                                                              acepromazine
6090                                                                           betamethasone, clotrimazole, gentamicin sulfate
6092                                                                                                           apomorphine hcl
6093                                                                                 lufenuron, milbemycin oxime, praziquantel
6094                                                                                                                    barium
6095                                                                                         betamethasone, gentamicin sulfate
6096                                                                                                                prednisone
6097                                                                           betamethasone, clotrimazole, gentamicin sulfate
6098                                                                                                           apomorphine hcl
6099                                                                                                        maropitant citrate
6101                                                                                               lufenuron, milbemycin oxime
6102                                                                           betamethasone, clotrimazole, gentamicin sulfate
6104                                                                                               lufenuron, milbemycin oxime
6109                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6129                                                                                              ivermectin, pyrantel pamoate
6130                                                                                                                afoxolaner
6132                                                                                              ivermectin, pyrantel pamoate
6133                                                                                                                afoxolaner
6134                                                                                                          milbemycin oxime
6135                                                                                                                 sarolaner
6136                                                                                                          milbemycin oxime
6137                                                                                                                 sarolaner
6139                                                                                                          milbemycin oxime
6140                                                                                                                 sarolaner
6148                                                                                                milbemycin oxime, spinosad
6149                                                                                                milbemycin oxime, spinosad
6150                                                                                                milbemycin oxime, spinosad
6152                                                                                               lufenuron, milbemycin oxime
6160                                                                                                  fipronil, (s)-methoprene
6161                                                                                               lufenuron, milbemycin oxime
6164                                                                                                        miconazole nitrate
6189                                                                                                           diphenhydramine
6200                                                                                                                 sarolaner
6202                                                                                                                afoxolaner
6206                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6208                                                                           betamethasone, clotrimazole, gentamicin sulfate
6215                                                                                                                 pramoxine
6217                                                                              florfenicol, mometasone furoate, terbinafine
6218                                                                                                             laser therapy
6221                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
6224                                                                                                          milbemycin oxime
6225                                                                                                                 sarolaner
6226                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6231                                                                                            milbemycin oxime, praziquantel
6232                                                                                                                 sarolaner
6244                                                                              florfenicol, mometasone furoate, terbinafine
6254                                                                                                                ivermectin
6255                                                                                                      cefpodoxime proxetil
6257                                                                                                                selamectin
6258                                                                                              ivermectin, pyrantel pamoate
6262                                                                                                                ivermectin
6263                                                                                                                afoxolaner
6266                                                                                   betamethasone, florfenicol, terbinafine
6267                                                                                            ketoconazole, phytosphingosine
6275                                                                                                       silver sulfadiazine
6282                                                                                              ivermectin, pyrantel pamoate
6283                                                                                                    indoxacarb, permethrin
6284                                                                                                                   omega 3
6293                                                                                                                afoxolaner
6296                                                                                                          tylosin tartrate
6302                                                                                                                ivermectin
6307                                                                                        amoxicillin, clavulanate potassium
6312                                                                           dexamethasone, enrofloxacin, miconazole nitrate
6319                                                                                     chlorhexidine gluconate, ketoconazole
6320                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6325                                                                                               lufenuron, milbemycin oxime
6326                                                                                     dinotefuran, permethrin, pyriproxyfen
6328                                                                                    joint supplement (glucosamine hcl/msm)
6329                                                                                               lufenuron, milbemycin oxime
6331                                                                                               lufenuron, milbemycin oxime
6341                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6342                                                                                                  fipronil, (s)-methoprene
6343                                                                                                                ivermectin
6354                                                                                    cyphenothrin, fipronil, (s)-methoprene
6358                                                                                                   chlorhexidine gluconate
6362                                                                                                  fipronil, (s)-methoprene
6382                                                                                                milbemycin oxime, spinosad
6388                                                                                                                diclofenac
6390                                                                                                               doxycycline
6395                                                                                        fipronil, permethrin, pyriproxyfen
6399                                                                                                        miconazole nitrate
6405                                                                                                  fipronil, (s)-methoprene
6406                                                                                                  flumethrin, imidacloprid
6411                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
6437                                                                                              ivermectin, pyrantel pamoate
6441                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6443                                                                                                imidacloprid, pyriproxyfen
6444                                                                                              ivermectin, pyrantel pamoate
6451                                                                            mometasone furoate, orbifloxacin, posaconazole
6459                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6461                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6474                                                                                              ivermectin, pyrantel pamoate
6475                                                                                                                fluralaner
6486                                                                                            milbemycin oxime, praziquantel
6495                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6497                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6498                                                                                                           apomorphine hcl
6499                                                                                              ivermectin, pyrantel pamoate
6500                                                                                                                 sarolaner
6522                                                                                               lufenuron, milbemycin oxime
6523                                                                                                                afoxolaner
6527                                                                                               lufenuron, milbemycin oxime
6528                                                                                                                afoxolaner
6555                                                                                               lufenuron, milbemycin oxime
6562                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6565                                                                                              ivermectin, pyrantel pamoate
6569                                                                                                                ivermectin
6570                                                                                                  fipronil, (s)-methoprene
6571                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6573                                                                                                  fipronil, (s)-methoprene
6579                                                                                                                fluralaner
6581                                                                                              ivermectin, pyrantel pamoate
6594                                                                                               lufenuron, milbemycin oxime
6602                                                                                               lufenuron, milbemycin oxime
6606                                                                                              ivermectin, pyrantel pamoate
6612                                                                                                          milbemycin oxime
6625                                                                                                          milbemycin oxime
6636                                                                                               lufenuron, milbemycin oxime
6639                                                                                               lufenuron, milbemycin oxime
6644                                                                                               lufenuron, milbemycin oxime
6647                                                                                               lufenuron, milbemycin oxime
6648                                                                                                                 sarolaner
6649                                                                                                                ivermectin
6650                                                                                         betamethasone, gentamicin sulfate
6657                                                                                              ivermectin, pyrantel pamoate
6658                                                                                              ivermectin, pyrantel pamoate
6662                                                                                              ivermectin, pyrantel pamoate
6663                                                                                              ivermectin, pyrantel pamoate
6674                                                                                              ivermectin, pyrantel pamoate
6675                                                                                              ivermectin, pyrantel pamoate
6676                                                                                ivermectin, praziquantel, pyrantel pamoate
6680                                                                                                  imidacloprid, moxidectin
6683                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6687                                                                                                                ivermectin
6688                                                                                                  fipronil, (s)-methoprene
6693                                                                                                                ivermectin
6694                                                                                         trimeprazine tartrate, prednisone
6696                                                                                                                ivermectin
6697                                                                                                  fipronil, (s)-methoprene
6698                                                                                              ivermectin, pyrantel pamoate
6702                                                                                                                ivermectin
6703                                                                                                  fipronil, (s)-methoprene
6714                                                                                                                  diazepam
6715                                                                                               lufenuron, milbemycin oxime
6716                                                                                                        calming supplement
6717                                                                                                               shen calmer
6733                                                                                              ivermectin, pyrantel pamoate
6739                                                                                                                 carprofen
6751                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6759                                                                           betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                              ivermectin, pyrantel pamoate
6763                                                                                              ivermectin, pyrantel pamoate
6764                                                                                                  fipronil, (s)-methoprene
6778                                                                                               lufenuron, milbemycin oxime
6779                                                                                               lufenuron, milbemycin oxime
6781                                                                                               lufenuron, milbemycin oxime
6783                                                                                            milbemycin oxime, praziquantel
6786                                                                                                imidacloprid, pyriproxyfen
6789                                                                                              ivermectin, pyrantel pamoate
6796                                                                                               lufenuron, milbemycin oxime
6797                                                                                                          milbemycin oxime
6815                                                                                                                ivermectin
6816                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6824                                                                                            polysulfated glycosaminoglycan
6826                                                                                                                grapiprant
6828                                                                                               lufenuron, milbemycin oxime
6839                                                                                                                 carprofen
6854                                                                                        fipronil, permethrin, pyriproxyfen
6864                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6868                                                                                                                isoflurane
6880                                                                                                                isoflurane
6886                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6891                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6898                                                                                                  fipronil, (s)-methoprene
6906                                                                                ivermectin, praziquantel, pyrantel pamoate
6908                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
6909                                                                                                                ivermectin
6910                                                                                ivermectin, praziquantel, pyrantel pamoate
6928                                                                                     chlorhexidine gluconate, ketoconazole
6934                                                                          chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                      burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                           ear cleaner (epi-otic advanced)
6938                                                                                                milbemycin oxime, spinosad
6946                                                                                                milbemycin oxime, spinosad
6956                                                                                                                 mupirocin
6957                                                                                                                lokivetmab
6981                                                                                                                fluralaner
6982                                                                                                                ivermectin
6983                                                                                                                ivermectin
6984                                                                                                                 probiotic
6986                                                                                                               clindamycin
6992                                                                                                                selamectin
6995                                                                                                                selamectin
6998                                                                                                                selamectin
6999                                                                              florfenicol, mometasone furoate, terbinafine
7002                                                                                                milbemycin oxime, spinosad
7005                                                                                                              ketoconazole
7006                                                                                                unspecified shampoo/mousse
7013                                                                                                                famotidine
7017                                                                                                                 sarolaner
7018                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
7019                                                                                                             metronidazole
7021                                                                                                                 sarolaner
7023                                                                                                                moxidectin
7025                                                                            mometasone furoate, orbifloxacin, posaconazole
7027                                                                              dexamethasone, neomycin sulfate, polymyxin b
7030                                                                                                          milbemycin oxime
7042                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7047                                                                                              ivermectin, pyrantel pamoate
7053                                                                                              ivermectin, pyrantel pamoate
7054                                                                                              ivermectin, pyrantel pamoate
7064                                                                                                                ivermectin
7065                                                                                                                ivermectin
7067                                                                                               lufenuron, milbemycin oxime
7071                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7092                                                                                         betamethasone, gentamicin sulfate
7093                                                                                                milbemycin oxime, spinosad
7095                                                                                                milbemycin oxime, spinosad
7096                                                                                                milbemycin oxime, spinosad
7116                                                                           dexamethasone, enrofloxacin, miconazole nitrate
7127                                                                                        chlorhexidine gluconate, tris-edta
7130                                                                                                milbemycin oxime, spinosad
7131                                                                                              ivermectin, pyrantel pamoate
7137                                                 digestive supplement, immune support supplement, skin and coat supplement
7149                                                                                                milbemycin oxime, spinosad
7151                                                                              dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                 probiotic
7153                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                       ear cleaner (zymox), hydrocortisone
7155                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7172                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                   acetic acid, boric acid
7175                                                                                                                 mupirocin
7177                                                                                         betamethasone, gentamicin sulfate
7180                                                                                         betamethasone, gentamicin sulfate
7189                                                                                         betamethasone, gentamicin sulfate
7208                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7218                                                                                                milbemycin oxime, spinosad
7219                                                                                                milbemycin oxime, spinosad
7240                                                                                                                diclofenac
7243                                                                                              ivermectin, pyrantel pamoate
7247                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                afoxolaner
7249                                                                                              ivermectin, pyrantel pamoate
7260                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                              ivermectin, pyrantel pamoate
7262                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7285                                                                                                                gabapentin
7286                                                                                                                 carprofen
7291                                                                                                                 sarolaner
7294                                                                                                               oclacitinib
7295                                                                                                                 sarolaner
7297                                                                                                  joint supplement (other)
7320                                                                                              ivermectin, pyrantel pamoate
7342                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7343                                                                                                  fipronil, (s)-methoprene
7344                                                                                                                ivermectin
7345                                                                                                                ivermectin
7346                                                                                                  fipronil, (s)-methoprene
7371                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7413                                                                                              ivermectin, pyrantel pamoate
7426                                                                                                              cyclosporine
7432                                                                                                                 trazodone
7499                                                                                              ivermectin, pyrantel pamoate
7503                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7510                                                                                                                ivermectin
7511                                                                                                                afoxolaner
7512                                                                                                              multivitamin
7513                                                                                                               omega 3-6-9
7519                                                                                              ivermectin, pyrantel pamoate
7521                                                                                              ivermectin, pyrantel pamoate
7522                                                                                                                afoxolaner
7523                                                                                                                 vitamin b
7524                                                                                                               omega 3-6-9
7525                                                                                              ivermectin, pyrantel pamoate
7526                                                                                                                afoxolaner
7551                                                                                                                afoxolaner
7555                                                                                                                fluralaner
7563                                                                                              ivermectin, pyrantel pamoate
7564                                                                                                          phytosphingosine
7565                                                                                              ivermectin, pyrantel pamoate
7566                                                                                              ivermectin, pyrantel pamoate
7568                                                                                        amoxicillin, clavulanate potassium
7576                                                                                                  fipronil, (s)-methoprene
7577                                                                                               lufenuron, milbemycin oxime
7578                                                                                               lufenuron, milbemycin oxime
7579                                                                                                                cephalexin
7580                                                                                                                 carprofen
7583                                                                                               lufenuron, milbemycin oxime
7584                                                                                               lufenuron, milbemycin oxime
7585                                                                                                                 probiotic
7586                                                                                                           cbd or hemp oil
7587                                                                                                 immune support supplement
7588                                                                                                                   omega 3
7589                                                                                toothpaste/dental health solution or chews
7590                                                                                                                     algae
7598                                                                                        chlorhexidine gluconate, ophytrium
7635                                                                                dextromethorphan hydrobromide, guaifenesin
7636                                                                                                               doxycycline
7637                                                                                                               hydroxyzine
7660                                                                                               lufenuron, milbemycin oxime
7671                                                                                   transcranial magnetic stimulation (tms)
7673                                                                                                          pyrantel pamoate
7674                                                                                                          sulfadimethoxine
7675                                                                                                milbemycin oxime, spinosad
7678                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                   ketoconazole, tris-edta
7681                                                                                                milbemycin oxime, spinosad
7682                                                                                                milbemycin oxime, spinosad
7683                                                                                            milbemycin oxime, praziquantel
7684                                                                                                                fluralaner
7692                                                                                            milbemycin oxime, praziquantel
7696                                                                                            milbemycin oxime, praziquantel
7699                                                                                            milbemycin oxime, praziquantel
7701                                                                                            milbemycin oxime, praziquantel
7705                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7732                                                                                ivermectin, praziquantel, pyrantel pamoate
7742                                                                                              ivermectin, pyrantel pamoate
7743                                                                                                  fipronil, (s)-methoprene
7744                                                                                                  fipronil, (s)-methoprene
7745                                                                                              ivermectin, pyrantel pamoate
7746                                                                                              ivermectin, pyrantel pamoate
7747                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                   omega 3
7749                                                                                              ivermectin, pyrantel pamoate
7750                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                       ear cleaner (zymox), hydrocortisone
7754                                                                                                                 carvacrol
7759                                                                                     dinotefuran, permethrin, pyriproxyfen
7763                                                                                              ivermectin, pyrantel pamoate
7772                                                                                                                 probiotic
7776                                                                                                                 vitamin d
7783                                                                                                                  fipronil
7784                                                                                               lufenuron, milbemycin oxime
7787                                                                                     dinotefuran, permethrin, pyriproxyfen
7795                                                                                                                   omega 3
7812                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7818                                                                                         trimeprazine tartrate, prednisone
7820                                                                                         betamethasone, gentamicin sulfate
7822                                                                                         betamethasone, gentamicin sulfate
7832                                                                                                  fipronil, (s)-methoprene
7837                                                                                                                 carprofen
7839                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7840                                                                                                           diphenhydramine
7845                                                                                                       ear cleaner (zymox)
7846                                                                            mometasone furoate, orbifloxacin, posaconazole
7848                                                                                                    unspecified medication
7852                                                                                                               hydrocodone
7853                                                                                                         albuterol sulfate
7854                                                                                                        maropitant citrate
7862                                                                                                                    arnica
7864                                                                                                                  tramadol
7883                                                                                                          milbemycin oxime
7884                                                                                                                afoxolaner
7885                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7887                                                                              florfenicol, mometasone furoate, terbinafine
7889                                                                              florfenicol, mometasone furoate, terbinafine
7895                                                                                dimethyl sulfoxide, fluocinolone acetonide
7926                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7929                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7934                                                                                                                 carprofen
7935                                                                                                                 carprofen
7941                                                                                                 bordetella bronchiseptica
7944                                                                                                   acetic acid, boric acid
7946                                                                                                          phytosphingosine
7961                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7966                                                                                              ivermectin, pyrantel pamoate
7967                                                                                                                afoxolaner
7968                                                                                              ivermectin, pyrantel pamoate
7969                                                                                                                afoxolaner
7970                                                                                        amoxicillin, clavulanate potassium
7973                                                                                              ofloxacin, unspecified nsaid
7987                                                                                                milbemycin oxime, spinosad
7988                                                                                              ivermectin, pyrantel pamoate
7993                                                                                                                selamectin
7995                                                                                            polysulfated glycosaminoglycan
7998                                                                                                                selamectin
8000                                                                                                                selamectin
8009                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8012                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8014                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8017                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8029                                                                                              ivermectin, pyrantel pamoate
8030                                                                                              ivermectin, pyrantel pamoate
8040                                                                                              ivermectin, pyrantel pamoate
8042                                                                                               lufenuron, milbemycin oxime
8043                                                                                            milbemycin oxime, praziquantel
8044                                                                                            milbemycin oxime, praziquantel
8045                                                                                                          milbemycin oxime
8063                                                                                               lufenuron, milbemycin oxime
8066                                                                                     dinotefuran, permethrin, pyriproxyfen
8067                                                                                               lufenuron, milbemycin oxime
8069                                                                                               lufenuron, milbemycin oxime
8070                                                                                               lufenuron, milbemycin oxime
8071                                                                                     dinotefuran, permethrin, pyriproxyfen
8075                                                                                                        calming supplement
8086                                                                           betamethasone, clotrimazole, gentamicin sulfate
8091                                                                                        amoxicillin, clavulanate potassium
8098                                                                                                  fipronil, (s)-methoprene
8099                                                                                            milbemycin oxime, praziquantel
8100                                                                                                               oclacitinib
8120                                                                                                                ivermectin
8121                                                                                                                ivermectin
8122                                                                                    joint supplement (glucosamine hcl/msm)
8123                                                                                                                ivermectin
8125                                                                                            joint supplement (unspecified)
8128                                                                                                   ketoconazole, tris-edta
8130                                                                                              ivermectin, pyrantel pamoate
8131                                                                                                                afoxolaner
8135                                                                                                   ketoconazole, tris-edta
8136                                                                                            milbemycin oxime, praziquantel
8137                                                                                                                 lotilaner
8138                                                                                                          milbemycin oxime
8139                                                                                                                 lotilaner
8140                                                                                                   ketoconazole, tris-edta
8160                                                                                                                 probiotic
8165                                                                                                    joint supplement (msm)
8182                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8184                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                              ivermectin, pyrantel pamoate
8186                                                                                              ivermectin, pyrantel pamoate
8187                                                                                              ivermectin, pyrantel pamoate
8188                                                                                                                afoxolaner
8195                                                                                              ivermectin, pyrantel pamoate
8196                                                                                                                afoxolaner
8205                                                                                                                  fipronil
8206                                                                                 lufenuron, milbemycin oxime, praziquantel
8207                                                                                 lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                  fipronil
8209                                                                                               lufenuron, milbemycin oxime
8210                                                                                               lufenuron, milbemycin oxime
8211                                                                                                      fipronil, permethrin
8212                                                                                               lufenuron, milbemycin oxime
8214                                                                                               lufenuron, milbemycin oxime
8215                                                                                                      fipronil, permethrin
8220                                                                                                                ivermectin
8221                                                                                                                ivermectin
8222                                                                                                                ivermectin
8223                                                                                                                ivermectin
8224                                                                                              ivermectin, pyrantel pamoate
8234                                                                            dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                   chlorhexidine gluconate
8236                                                                                         betamethasone, gentamicin sulfate
8238                                                                                                   chlorhexidine gluconate
8241                                                                                               lufenuron, milbemycin oxime
8244                                                                                                                fluralaner
8248                                                                                                                fluralaner
8251                                                                                                             metronidazole
8252                                                                                         betamethasone, gentamicin sulfate
8280                                                                                                                isoflurane
8284                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8293                                                                                         betamethasone, gentamicin sulfate
8296                                                                                              ivermectin, pyrantel pamoate
8297                                                                                                  fipronil, (s)-methoprene
8298                                                                                       ear cleaner (zymox), hydrocortisone
8299                                                                                         allergy immunotherapy - injection
8300                                                                                                                diclofenac
8301                                                                                                imidacloprid, pyriproxyfen
8302                                                                                                                ivermectin
8303                                                                                                               oclacitinib
8304                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8305                                                   acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
8306                                                                                                                ivermectin
8307                                                                                                                fluralaner
8311                                                                                                              flurbiprofen
8312                                                                                          burow's solution, hydrocortisone
8313                                                                                                              flurbiprofen
8314                                                                                              ivermectin, pyrantel pamoate
8315                                                                                                imidacloprid, pyriproxyfen
8326                                                                                     dinotefuran, permethrin, pyriproxyfen
8332                                                                                     dinotefuran, permethrin, pyriproxyfen
8335                                                                                     dinotefuran, permethrin, pyriproxyfen
8337                                                                                                             cephalosporin
8338                                                                                                                prednisone
8340                                                                                     dinotefuran, permethrin, pyriproxyfen
8341                                                                              dexamethasone, neomycin sulfate, polymyxin b
8349                                                                                     dinotefuran, permethrin, pyriproxyfen
8354                                                                                               lufenuron, milbemycin oxime
8355                                                                                        fipronil, permethrin, pyriproxyfen
8358                                                                                               lufenuron, milbemycin oxime
8359                                                                                                                fluralaner
8362                                                                                               chloroxylenol, ketoconazole
8369                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                               lufenuron, milbemycin oxime
8371                                                                                                                 sarolaner
8376                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                               lufenuron, milbemycin oxime
8378                                                                                                                 sarolaner
8389                                                                                              ivermectin, pyrantel pamoate
8405                                                                                                 unspecified otic ear pack
8408                                                                                              ivermectin, pyrantel pamoate
8410                                                                                                                ivermectin
8418                                                                                                                isoflurane
8420                                                                                                                ivermectin
8421                                                                                                                ivermectin
8424                                                                                                imidacloprid, pyriproxyfen
8425                                                                                              ivermectin, pyrantel pamoate
8427                                                                                              ivermectin, pyrantel pamoate
8435                                                                                                                 probiotic
8436                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8440                                                                                                  fipronil, (s)-methoprene
8441                                                                                              ivermectin, pyrantel pamoate
8451                                                                                ivermectin, praziquantel, pyrantel pamoate
8452                                                                                        amoxicillin, clavulanate potassium
8454                                                                                                          milbemycin oxime
8461                                                                                                          milbemycin oxime
8465                                                                                               lufenuron, milbemycin oxime
8466                                                                                               lufenuron, milbemycin oxime
8467                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8475                                                                                                   chlorhexidine gluconate
8478                                                                                                   chlorhexidine gluconate
8489                                                                                                                fluralaner
8509                                                                                                                 probiotic
8510                                                                                                             metronidazole
8514                                                                                               lufenuron, milbemycin oxime
8515                                                                                               lufenuron, milbemycin oxime
8528                                                                                            milbemycin oxime, praziquantel
8531                                                                                            milbemycin oxime, praziquantel
8532                                                                                                       phenylpropanolamine
8533                                                                                                             levothyroxine
8534                                                                                        amoxicillin, clavulanate potassium
8541                                                                                                        miconazole nitrate
8546                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8547                                                                                                                cephalexin
8550                                                                                ivermectin, praziquantel, pyrantel pamoate
8554                                                                                                          milbemycin oxime
8555                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8575                                                                                                              acepromazine
8578                                                                                                   acetic acid, boric acid
8581                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                               lufenuron, milbemycin oxime
8583                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                       ear cleaner (zymox), hydrocortisone
8585                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
8588                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8591                                                                                                milbemycin oxime, spinosad
8607                                                                                                imidacloprid, pyriproxyfen
8609                                                                                               lufenuron, milbemycin oxime
8613                                                                                         betamethasone, gentamicin sulfate
8673                                                                                                milbemycin oxime, spinosad
8674                                                                                                milbemycin oxime, spinosad
8675                                                                                                milbemycin oxime, spinosad
8676                                                                                                milbemycin oxime, spinosad
8677                                                                                                milbemycin oxime, spinosad
8685                                                                                                              ketoconazole
8694                                                                                                  fipronil, (s)-methoprene
8695                                                                                                           diphenhydramine
8697                                                                                       allergy immunotherapy - unspecified
8702                                                                                                  fipronil, (s)-methoprene
8707                                                                                                  fipronil, (s)-methoprene
8721                                                                                                                 trazodone
8731                                                                                                  flumethrin, imidacloprid
8735                                                                                                                 mupirocin
8736                                                                                     chlorhexidine gluconate, ketoconazole
8744                                                                                                                 mupirocin
8745                                                                                     chlorhexidine gluconate, ketoconazole
8756                                                                                                          milbemycin oxime
8757                                                                                                          milbemycin oxime
8759                                                                                                imidacloprid, pyriproxyfen
8760                                                                                               lufenuron, milbemycin oxime
8768                                                                                              ivermectin, pyrantel pamoate
8769                                                                                     dinotefuran, permethrin, pyriproxyfen
8770                                                                                              ivermectin, pyrantel pamoate
8771                                                                                     dinotefuran, permethrin, pyriproxyfen
8776                                                                                     dinotefuran, permethrin, pyriproxyfen
8777                                                                                              ivermectin, pyrantel pamoate
8778                                                                                              ivermectin, pyrantel pamoate
8779                                                                                     dinotefuran, permethrin, pyriproxyfen
8780                                                                                              ivermectin, pyrantel pamoate
8781                                                                                     dinotefuran, permethrin, pyriproxyfen
8786                                                                                              ivermectin, pyrantel pamoate
8787                                                                                                    indoxacarb, permethrin
8790                                                                                              ivermectin, pyrantel pamoate
8791                                                                                                                fluralaner
8792                                                                                                   ketoconazole, tris-edta
8793                                                                                                                fluralaner
8794                                                                                              ivermectin, pyrantel pamoate
8795                                                                                              ivermectin, pyrantel pamoate
8796                                                                                                                fluralaner
8797                                                                                                                gabapentin
8805                                                                                                                ivermectin
8808                                                                                        fipronil, permethrin, pyriproxyfen
8815                                                                              dexamethasone, neomycin sulfate, polymyxin b
8819                                                                                              ivermectin, pyrantel pamoate
8820                                                                                                                afoxolaner
8825                                                                                        amoxicillin, clavulanate potassium
8826                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
8827                                                                                                                afoxolaner
8828                                                                                              ivermectin, pyrantel pamoate
8831                                                                                              ivermectin, pyrantel pamoate
8833                                                                                              ivermectin, pyrantel pamoate
8834                                                                                                                cephalexin
8837                                                                                                                afoxolaner
8843                                                                                                  fipronil, (s)-methoprene
8851                                                                                                                 probiotic
8852                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
8855                                                                                                                ivermectin
8860                                                                           betamethasone, clotrimazole, gentamicin sulfate
8875                                                                                                                lokivetmab
8876                                                                                         betamethasone, gentamicin sulfate
8877                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8879                                                                                              ivermectin, pyrantel pamoate
8885                                                                                              ivermectin, pyrantel pamoate
8908                                                                                                milbemycin oxime, spinosad
8911                                                                                               lufenuron, milbemycin oxime
8929                                                                                ivermectin, praziquantel, pyrantel pamoate
8930                                                                                ivermectin, praziquantel, pyrantel pamoate
8961                                                                                ivermectin, praziquantel, pyrantel pamoate
8962                                                                                ivermectin, praziquantel, pyrantel pamoate
8994                                                                                                               oclacitinib
8995                                                                                                        miconazole nitrate
8997                                                                           dexamethasone, enrofloxacin, miconazole nitrate
8998                                                                           dexamethasone, enrofloxacin, miconazole nitrate
9026                                                                                            milbemycin oxime, praziquantel
9046                                                                                               lufenuron, milbemycin oxime
9047                                                                           betamethasone, clotrimazole, gentamicin sulfate
9049                                                                              dexamethasone, neomycin sulfate, polymyxin b
9050                                                                                               lufenuron, milbemycin oxime
9052                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                 probiotic
9054                                                                                                          milbemycin oxime
9055                                                                                              ivermectin, pyrantel pamoate
9056                                                                                            milbemycin oxime, praziquantel
9060                                                                                              ivermectin, pyrantel pamoate
9064                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                sucralfate
9070                                                                                              ivermectin, pyrantel pamoate
9071                                                                                                                fluralaner
9084                                                                                                    unspecified medication
9094                                                                                                milbemycin oxime, spinosad
9095                                                                                              ivermectin, pyrantel pamoate
9098                                                                                              ivermectin, pyrantel pamoate
9099                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                 probiotic
9101                                                                                                                   omega 3
9109                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9118                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9132                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9135                                                                                                             metronidazole
9136                                                                                          burow's solution, hydrocortisone
9137                                                                                                      cefpodoxime proxetil
9156                                                                           betamethasone, clotrimazole, gentamicin sulfate
9160                                                                                                  fipronil, (s)-methoprene
9161                                                                                              ivermectin, pyrantel pamoate
9164                                                                                        fipronil, permethrin, pyriproxyfen
9170                                                                                                          milbemycin oxime
9171                                                                                                          milbemycin oxime
9172                                                                                                                 sarolaner
9187                                                                                         betamethasone, gentamicin sulfate
9189                                                                                              ivermectin, pyrantel pamoate
9193                                                                                                                 probiotic
9202                                                                                              ivermectin, pyrantel pamoate
9229                                                                                                           diphenhydramine
9230                                                                                           ear cleaner (epi-otic advanced)
9233                                                                                                                cephalexin
9236                                                                                              ivermectin, pyrantel pamoate
9239                                                                                       allergy immunotherapy - unspecified
9240                                                                                            unspecified allergy medication
9241                                                                                             allergy immunotherapy - drops
9242                                                                                              ivermectin, pyrantel pamoate
9243                                                                                                             levothyroxine
9244                                                                                       allergy immunotherapy - unspecified
9245                                                                                                             levothyroxine
9252                                                                                                                ivermectin
9253                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                              ivermectin, pyrantel pamoate
9259                                                                                                                afoxolaner
9267                                                                                                          milbemycin oxime
9268                                                                                                                fluralaner
9269                                                                                              ivermectin, pyrantel pamoate
9270                                                                                                                fluralaner
9271                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9290                                                                                                milbemycin oxime, spinosad
9292                                                                                                milbemycin oxime, spinosad
9294                                                                                                milbemycin oxime, spinosad
9295                                                                                                milbemycin oxime, spinosad
9297                                                                                                                   omega 3
9299                                                                                                milbemycin oxime, spinosad
9312                                                                                                                ivermectin
9337                                                                                              ivermectin, pyrantel pamoate
9338                                                                                                      cefpodoxime proxetil
9339                                                                                                                grapiprant
9348                                                                                                              enrofloxacin
9384                                                                                       ear cleaner (zymox), hydrocortisone
9385                                                                                                       ear cleaner (zymox)
9386                                                                                              ivermectin, pyrantel pamoate
9387                                                                                     dinotefuran, permethrin, pyriproxyfen
9390                                                                                              ivermectin, pyrantel pamoate
9416                                                                                                   acetic acid, boric acid
9418                                                                                                          phytosphingosine
9421                                                                                                  flumethrin, imidacloprid
9422                                                                                              ivermectin, pyrantel pamoate
9426                                                                                              ivermectin, pyrantel pamoate
9429                                                       bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9432                                                                                                  flumethrin, imidacloprid
9433                                                                                              ivermectin, pyrantel pamoate
9434                                                                                              ivermectin, pyrantel pamoate
9435                                                                                         allergy immunotherapy - injection
9436                                                                                              ivermectin, pyrantel pamoate
9438                                                                                         allergy immunotherapy - injection
9447                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9452                                                                                              ivermectin, pyrantel pamoate
9453                                                                                                  fipronil, (s)-methoprene
9454                                                                              dexamethasone, neomycin sulfate, polymyxin b
9485                                                                                                             metronidazole
9494                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9511                                                                                        amoxicillin, clavulanate potassium
9516                                                                              dexamethasone, neomycin sulfate, polymyxin b
9524                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9544                                                                                                                afoxolaner
9546                                                                                                                afoxolaner
9548                                                                                                                 sarolaner
9549                                                                                                                afoxolaner
9575                                                                                                milbemycin oxime, spinosad
9578                                                                                                milbemycin oxime, spinosad
9584                                                                                                          milbemycin oxime
9588                                                                                                                 tris-edta
9592                                                                              dexamethasone, neomycin sulfate, polymyxin b
9596                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9600                                                                                               lufenuron, milbemycin oxime
9601                                                                                                                ivermectin
9602                                                                                                                 carprofen
9603                                                                                                                  tramadol
9604                                                                                               acepromazine, hydromorphone
9609                                                                                               lufenuron, milbemycin oxime
9610                                                                                                                fluralaner
9612                                                                           betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                         betamethasone, gentamicin sulfate
9614                                                                                     chlorhexidine gluconate, ketoconazole
9615                                                                                               lufenuron, milbemycin oxime
9616                                                                                                                fluralaner
9617                                                                                               lufenuron, milbemycin oxime
9618                                                                                                                fluralaner
9619                                                                                               lufenuron, milbemycin oxime
9620                                                                                                                fluralaner
9621                                                                                               lufenuron, milbemycin oxime
9632                                                                                                milbemycin oxime, spinosad
9635                                                                                                milbemycin oxime, spinosad
9638                                                                                                milbemycin oxime, spinosad
9640                                                                                                milbemycin oxime, spinosad
9641                                                                                                milbemycin oxime, spinosad
9643                                                                                                milbemycin oxime, spinosad
9657                                                                                     dinotefuran, permethrin, pyriproxyfen
9712                                                                                                                ivermectin
9717                                                                                              ivermectin, pyrantel pamoate
9718                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9723                                                                                              ivermectin, pyrantel pamoate
9729                                                                                              ivermectin, pyrantel pamoate
9730                                                                                                          milbemycin oxime
9759                                                                                              ivermectin, pyrantel pamoate
9760                                                                                                imidacloprid, pyriproxyfen
9761                                                                                              ivermectin, pyrantel pamoate
9763                                                                                                                ivermectin
9764                                                                                                                cetirizine
9765                                                                                                                afoxolaner
9766                                                                                                                ivermectin
9770                                                                                ivermectin, praziquantel, pyrantel pamoate
9771                                                                                                                  fipronil
9785                                                                                              ivermectin, pyrantel pamoate
9791                                                                                                          milbemycin oxime
9800                                                                                                          milbemycin oxime
9807                                                                              dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                               latanoprost
9809                                                                                                               dorzolamide
9815                                                                                                        maropitant citrate
9821                                                                                                                 probiotic
9823                                                                                                                 tris-edta
9824                                                                                                        miconazole nitrate
9825                                                                                                                 tris-edta
9826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9827                                                                                                        miconazole nitrate
9828                                                                                                               hydrocodone
9829                                                                                                               amoxicillin
9833                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9837                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9840                                                                                    dexamethasone, ketoconazole, tris-edta
9843                                                                                                                    arnica
9860                                                                                                                 carprofen
9862                                                                                                                 carprofen
9863                                                                                                        miconazole nitrate
9865                                                                                         betamethasone, gentamicin sulfate
9873                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9877                                                                                                                 carprofen
9884                                                                                                              cyclosporine
9889                                                                                                                ivermectin
9890                                                                                        fipronil, permethrin, pyriproxyfen
9891                                                                                                              cyclosporine
9892                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                afoxolaner
9894                                                                                                          milbemycin oxime
9895                                                                                                                afoxolaner
9896                                                                                                              cyclosporine
9897                                                                                                          milbemycin oxime
9898                                                                                                                afoxolaner
9899                                                                                            milbemycin oxime, praziquantel
9900                                                                                                                   omega 3
9901                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                afoxolaner
9903                                                                                                              cyclosporine
9907                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9917                                                                                                                ivermectin
9918                                                                                                                selamectin
9919                                                                                                                cephalexin
9920                                                                                                                cetirizine
9923                                                                                                                cephalexin
9924                                                                                                             ciprofloxacin
9928                                                                                                           dexmedetomidine
9931                                                                                                                ivermectin
9935                                                                                                milbemycin oxime, spinosad
9942                                                                                                      rx diet - gi low fat
9943                                                                                                milbemycin oxime, spinosad
9944                                                                                                milbemycin oxime, spinosad
9945                                                                                              ivermectin, pyrantel pamoate
9960                                                                                                                ivermectin
9961                                                                                        fipronil, permethrin, pyriproxyfen
9962                                                                                                                ivermectin
9963                                                                                                  imidacloprid, permethrin
9966                                                                                                imidacloprid, pyriproxyfen
9967                                                                                              ivermectin, pyrantel pamoate
9968                                                                                                imidacloprid, pyriproxyfen
9969                                                                                              ivermectin, pyrantel pamoate
9970                                                                                                   acetic acid, boric acid
9971                                                                                              ivermectin, pyrantel pamoate
9972                                                                                                imidacloprid, pyriproxyfen
10017                                                                                              lufenuron, milbemycin oxime
10026                                                                                              lufenuron, milbemycin oxime
10027                                                                                                 flumethrin, imidacloprid
10037                                                                                              dexamethasone, ketoconazole
10042                                                                             florfenicol, mometasone furoate, terbinafine
10053                                                                                              lufenuron, milbemycin oxime
10056                                                                                             ivermectin, pyrantel pamoate
10057                                                                                             ivermectin, pyrantel pamoate
10061                                                                                          ear cleaner (epi-otic advanced)
10063                                                                                                 flumethrin, imidacloprid
10066                                                                                                 flumethrin, imidacloprid
10074                                                                             dexamethasone, neomycin sulfate, polymyxin b
10075                                                                                                               ivermectin
10092                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                        betamethasone, gentamicin sulfate
10106                                                                                             ivermectin, pyrantel pamoate
10107                                                                                                 fipronil, (s)-methoprene
10108                                                                                             ivermectin, pyrantel pamoate
10109                                                                                                 fipronil, (s)-methoprene
10111                                                                                             ivermectin, pyrantel pamoate
10112                                                                                             ivermectin, pyrantel pamoate
10113                                                                                                 fipronil, (s)-methoprene
10115                                                                                             ivermectin, pyrantel pamoate
10116                                                                                                 fipronil, (s)-methoprene
10119                                                                                             ivermectin, pyrantel pamoate
10120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                probiotic
10123                                                                                                            metronidazole
10130                                                                                                                 propofol
10131                                                                                                            buprenorphine
10132                                                                                                             acepromazine
10133                                                                                                         atropine sulfate
10134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10149                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10152                                                                                                  triamcinolone acetonide
10153                                                                                                     cefpodoxime proxetil
10154                                                                                                                  taurine
10160                                                                                                            dexamethasone
10164                                                                                             ivermectin, pyrantel pamoate
10167                                                                                             ivermectin, pyrantel pamoate
10168                                                                                                               cephalexin
10169                                                                                                                carprofen
10170                                                                                             ivermectin, pyrantel pamoate
10176                                                                          betamethasone, clotrimazole, gentamicin sulfate
10187                                                                          betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                        trimeprazine tartrate, prednisone
10195                                                                                                            metronidazole
10198                                                                                                 imidacloprid, permethrin
10200                                                                                                               fluralaner
10209                                                                                             ivermectin, pyrantel pamoate
10219                                                                                             ivermectin, pyrantel pamoate
10230                                                                                             ivermectin, pyrantel pamoate
10231                                                                                                               afoxolaner
10232                                                                                                               prednisone
10233                                                                                                          diphenhydramine
10234                                                                                                               cetirizine
10235                                                                                             ivermectin, pyrantel pamoate
10236                                                                                                               afoxolaner
10245                                                                                             ivermectin, pyrantel pamoate
10249                                                                                                 fipronil, (s)-methoprene
10260                                                                                                 flumethrin, imidacloprid
10264                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10271                                                                                                         milbemycin oxime
10273                                                                                             ivermectin, pyrantel pamoate
10274                                                                                                               afoxolaner
10275                                                                                             ivermectin, pyrantel pamoate
10276                                                                                                               afoxolaner
10292                                                                                                         milbemycin oxime
10301                                                                                              lufenuron, milbemycin oxime
10312                                                                                                               selamectin
10313                                                                                           praziquantel, pyrantel pamoate
10314                                                                                       amoxicillin, clavulanate potassium
10316                                                                                                            ciprofloxacin
10320                                                                                       amoxicillin, clavulanate potassium
10324                                                                                                               selamectin
10332                                                                                               milbemycin oxime, spinosad
10333                                                                                                               fluralaner
10334                                                                                               milbemycin oxime, spinosad
10335                                                                                                               fluralaner
10343                                                                                           sulfamethoxazole, trimethoprim
10345                                                                                                       calming supplement
10347                                                                                                 urinary tract supplement
10348                                                                                                            magnolia bark
10349                                                                                        betamethasone, gentamicin sulfate
10356                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10365                                                                                             ivermectin, pyrantel pamoate
10366                                                                                       fipronil, permethrin, pyriproxyfen
10367                                                                                             ivermectin, pyrantel pamoate
10370                                                                                             ivermectin, pyrantel pamoate
10372                                                                                                               ivermectin
10374                                                                                             ivermectin, pyrantel pamoate
10379                                                                                           milbemycin oxime, praziquantel
10400                                                                                                               ivermectin
10403                                                                                                 fipronil, (s)-methoprene
10404                                                                                             ivermectin, pyrantel pamoate
10405                                                                                                 fipronil, (s)-methoprene
10408                                                                                                         milbemycin oxime
10409                                                                                                         milbemycin oxime
10410                                                                                           milbemycin oxime, praziquantel
10412                                                                                                         milbemycin oxime
10429                                                                          betamethasone, clotrimazole, gentamicin sulfate
10432                                                                                                               selamectin
10435                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
10441                                                                                       chlorhexidine gluconate, ophytrium
10445                                                                                        betamethasone, gentamicin sulfate
10470                                                                                                                mupirocin
10477                                                                                               imidacloprid, pyriproxyfen
10478                                                                               ivermectin, praziquantel, pyrantel pamoate
10483                                                                                             ivermectin, pyrantel pamoate
10485                                                                                                               ivermectin
10487                                                                                                               ivermectin
10499                                                                                                         milbemycin oxime
10500                                                                                                                firocoxib
10502                                                                                                              doxycycline
10503                                                                                                         milbemycin oxime
10505                                                                                             ivermectin, pyrantel pamoate
10506                                                                               ivermectin, praziquantel, pyrantel pamoate
10510                                                                                             ivermectin, pyrantel pamoate
10511                                                                                             ivermectin, pyrantel pamoate
10523                                                                                                              oclacitinib
10524                                                                                                     cefpodoxime proxetil
10525                                                                                       staphylococcus aureus phage lysate
10526                                                                                      allergy immunotherapy - unspecified
10529                                                                                                                mupirocin
10555                                                                                                                mupirocin
10557                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10565                                                                                        betamethasone, gentamicin sulfate
10573                                                      betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10575                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                          diphenhydramine
10577                                                                                                               famotidine
10578                                                                                                       maropitant citrate
10579                                                                                                            metronidazole
10580                                                                                                              vinblastine
10583                                                                                               milbemycin oxime, spinosad
10587                                                                                                                carprofen
10588                                                                                                               ivermectin
10589                                                                                             ivermectin, pyrantel pamoate
10590                                                                                             ivermectin, pyrantel pamoate
10591                                                                                             ivermectin, pyrantel pamoate
10594                                                                                    dinotefuran, permethrin, pyriproxyfen
10610                                                                                             ivermectin, pyrantel pamoate
10617                                                                                       fipronil, permethrin, pyriproxyfen
10618                                                                               ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                     cefpodoxime proxetil
10624                                                                                               imidacloprid, pyriproxyfen
10628                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10642                                                                                                  chlorhexidine gluconate
10650                                                                                                              doxycycline
10652                                                                                                                deracoxib
10653                                                                                               milbemycin oxime, spinosad
10655                                                                                             ivermectin, pyrantel pamoate
10656                                                                                                                trazodone
10658                                                                                                                carprofen
10667                                                                                              lufenuron, milbemycin oxime
10668                                                                                       amoxicillin, clavulanate potassium
10669                                                                                              lufenuron, milbemycin oxime
10671                                                                                               imidacloprid, pyriproxyfen
10678                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10682                                                                                                         pyrantel pamoate
10683                                                                                              lufenuron, milbemycin oxime
10684                                                                                              lufenuron, milbemycin oxime
10685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                  omega 3
10687                                                                                                             multivitamin
10688                                                                                                              coconut oil
10689                                                                                              lufenuron, milbemycin oxime
10693                                                                                                               cetirizine
10694                                                                                              lufenuron, milbemycin oxime
10696                                                                                                      ear cleaner (zymox)
10697 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10701                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10706                                                                                                         pyrantel pamoate
10707                                                                                              lufenuron, milbemycin oxime
10711                                                                                              lufenuron, milbemycin oxime
10712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                  omega 3
10714                                                                                                             multivitamin
10715                                                                                                              coconut oil
10717                                                                                              lufenuron, milbemycin oxime
10718                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10725                                                                                              lufenuron, milbemycin oxime
10726 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                   unspecified medication
10740                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10743                                                                                                  chlorhexidine gluconate
10751                                                                                           ketoconazole, phytosphingosine
10755                                                                                             ivermectin, pyrantel pamoate
10756                                                                                                               ivermectin
10766                                                                                                               ivermectin
10769                                                                                             ivermectin, pyrantel pamoate
10780                                                                                             ivermectin, pyrantel pamoate
10781                                                                                                               afoxolaner
10782                                                                                                              clindamycin
10783                                                                                                                oxycodone
10792                                                                                             ivermectin, pyrantel pamoate
10794                                                                                             ivermectin, pyrantel pamoate
10796                                                                                             ivermectin, pyrantel pamoate
10825                                                                                                 flumethrin, imidacloprid
10827                                                                                                 flumethrin, imidacloprid
10830                                                                                             ivermectin, pyrantel pamoate
10837                                                                                       amoxicillin, clavulanate potassium
10841                                                                                        trimeprazine tartrate, prednisone
10842                                                                                             ivermectin, pyrantel pamoate
10843                                                                                                               selamectin
10846                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10849                                                                                             ivermectin, pyrantel pamoate
10850                                                                                                               fluralaner
10851                                                                                    dinotefuran, permethrin, pyriproxyfen
10853                                                                                                                  amitraz
10863                                                                                        betamethasone, gentamicin sulfate
10865                                                                                             ivermectin, pyrantel pamoate
10866                                                                                       fipronil, permethrin, pyriproxyfen
10867                                                                                                      phenylpropanolamine
10870                                                                                              lufenuron, milbemycin oxime
10871                                                                                                 fipronil, (s)-methoprene
10874                                                                                              lufenuron, milbemycin oxime
10877                                                                                             ivermectin, pyrantel pamoate
10878                                                                                                               afoxolaner
10892                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10893                                                                                             ivermectin, pyrantel pamoate
10894                                                                                                                 tramadol
10896                                                                           mometasone furoate, orbifloxacin, posaconazole
10898                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10899                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10900                                                                                             ivermectin, pyrantel pamoate
10901                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10905                                                                                        betamethasone, gentamicin sulfate
10925                                                                                                              clindamycin
10926                                                                                                            dexamethasone
10928                                                                                                               afoxolaner
10929                                                                                             ivermectin, pyrantel pamoate
10930                                                                                                               afoxolaner
10932                                                                                                               afoxolaner
10933                                                                                                               ivermectin
10934                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10938                                                                                                         milbemycin oxime
10950                                                                                                 fipronil, (s)-methoprene
10953                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10959                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10966                                                                                                         milbemycin oxime
10967                                                                                                               fluralaner
10970                                                                                                         milbemycin oxime
10971                                                                                                               fluralaner
11003                                                                                             afoxolaner, milbemycin oxime
11006                                                                                                               ivermectin
11007                                                                                                               ivermectin
11008                                                                                             ivermectin, pyrantel pamoate
11009                                                                                             ivermectin, pyrantel pamoate
11010                                                                                                               ivermectin
11011                                                                                             ivermectin, pyrantel pamoate
11016                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11021                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
11035                                                                                             ivermectin, pyrantel pamoate
11036                                                                                                               afoxolaner
11037                                                                                             ivermectin, pyrantel pamoate
11038                                                                                                               afoxolaner
11052                                                                             florfenicol, mometasone furoate, terbinafine
11065                                                                                              lufenuron, milbemycin oxime
11066                                                                                                               fluralaner
11067                                                                                                                 tramadol
11069                                                                                   joint supplement (glucosamine hcl/msm)
11070                                                                                              lufenuron, milbemycin oxime
11071                                                                                                                 tramadol
11085                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11088                                                                                                          cbd or hemp oil
11091                                                                                                 imidacloprid, permethrin
11093                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
11112                                                                                                             ketoconazole
11134                                                                                                 fipronil, (s)-methoprene
11142                                                                             florfenicol, mometasone furoate, terbinafine
11144                                                                                                  chlorhexidine gluconate
11145                                                                                                  ketoconazole, tris-edta
11152                                                                                              lufenuron, milbemycin oxime
11153                                                                                                 imidacloprid, permethrin
11155                                                                                              lufenuron, milbemycin oxime
11156                                                                                                 imidacloprid, permethrin
11158                                                                                lufenuron, milbemycin oxime, praziquantel
11159                                                                                             ivermectin, pyrantel pamoate
11163                                                                                             ivermectin, pyrantel pamoate
11165                                                                                             ivermectin, pyrantel pamoate
11166                                                                                                               afoxolaner
11182                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11186                                                                                             ivermectin, pyrantel pamoate
11189                                                                                             ivermectin, pyrantel pamoate
11208                                                                                              lufenuron, milbemycin oxime
11210                                                                                                                probiotic
11211                                                                                                   unspecified medication
11212                                                                                              lufenuron, milbemycin oxime
11213                                                                                                immune support supplement
11214                                                                                       amoxicillin, clavulanate potassium
11224                                                                                                               ivermectin
11227                                                                                                               selamectin
11228                                                                                             ivermectin, pyrantel pamoate
11229                                                                                             ivermectin, pyrantel pamoate
11230                                                                                                 fipronil, (s)-methoprene
11233                                                                                                                probiotic
11241                                                                                               milbemycin oxime, spinosad
11242                                                                                              lufenuron, milbemycin oxime
11276                                                                                              lufenuron, milbemycin oxime
11291                                                                                             ivermectin, pyrantel pamoate
11292                                                                                                                 spinosad
11293                                                                                             ivermectin, pyrantel pamoate
11294                                                                                                               afoxolaner
11295                                                                                             ivermectin, pyrantel pamoate
11296                                                                                                               afoxolaner
11301                                                                                             ivermectin, pyrantel pamoate
11305                                                                                                 skin and coat supplement
11307                                                                                             ivermectin, pyrantel pamoate
11311                                                                                             ivermectin, pyrantel pamoate
11312                                                                                                                sarolaner
11315                                                                                             ivermectin, pyrantel pamoate
11316                                                                                                                sarolaner
11317                                                                                                              clindamycin
11318                                                                                                                firocoxib
11326                                                                                              lufenuron, milbemycin oxime
11327                                                                                               milbemycin oxime, spinosad
11338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11340                                                                               dextromethorphan hydrobromide, guaifenesin
11341                                                                                             ivermectin, pyrantel pamoate
11342                                                                                    dinotefuran, permethrin, pyriproxyfen
11346                                                                                                      ear cleaner (zymox)
11349                                                                                                      ear cleaner (zymox)
11350                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                             ivermectin, pyrantel pamoate
11352                                                                                                               afoxolaner
11353                                                                                 febantel, praziquantel, pyrantel pamoate
11354                                                                                        betamethasone, gentamicin sulfate
11356                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11360                                                                                                                carprofen
11363                                                                                                                 tramadol
11366                                                                                                         milbemycin oxime
11368                                                                                                         milbemycin oxime
11377                                                                                                               selamectin
11385                                                                                                               ivermectin
11386                                                                                                               ivermectin
11387                                                                                                             fenbendazole
11388                                                                                                             fenbendazole
11394                                                                                                               benzocaine
11415                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11425                                                                                                               ivermectin
11436                                                                                lufenuron, milbemycin oxime, praziquantel
11437                                                                                              lufenuron, milbemycin oxime
11441                                                                                              lufenuron, milbemycin oxime
11461                                                                                    dinotefuran, permethrin, pyriproxyfen
11464                                                                                      ear cleaner (zymox), hydrocortisone
11470                                                                                                               isoflurane
11471                                                                                                           dental sealant
11473                                                                                                               ivermectin
11474                                                                                                               afoxolaner
11477                                                                                             ivermectin, pyrantel pamoate
11482                                                                                                               afoxolaner
11493                                                                                       joint supplement (glucosamine hcl)
11509                                                                               ivermectin, praziquantel, pyrantel pamoate
11511                                                                                                              doxycycline
11536                                                                                              lufenuron, milbemycin oxime
11537                                                                                              lufenuron, milbemycin oxime
11538                                                                                              lufenuron, milbemycin oxime
11545                                                                                              lufenuron, milbemycin oxime
11546                                                                                              lufenuron, milbemycin oxime
11547                                                                                              lufenuron, milbemycin oxime
11551                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11560                                                                                             ivermectin, pyrantel pamoate
11561                                                                                             ivermectin, pyrantel pamoate
11562                                                                                                               afoxolaner
11563                                                                                                                  omega 3
11564                                                                               toothpaste/dental health solution or chews
11565                                                                                                              clindamycin
11566                                                                                                                carprofen
11567                                                                                             ivermectin, pyrantel pamoate
11568                                                                                                               afoxolaner
11570                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11575                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                  omega 3
11577                                                                                                                probiotic
11578                                                                                            unspecified vision supplement
11589                                                                                                               ivermectin
11590                                                                                                               afoxolaner
11593                                                                                             ivermectin, pyrantel pamoate
11596                                                                                             ivermectin, pyrantel pamoate
11599                                                                                                 fipronil, (s)-methoprene
11600                                                                                             ivermectin, pyrantel pamoate
11620                                                                           mometasone furoate, orbifloxacin, posaconazole
11621                                                                             florfenicol, mometasone furoate, terbinafine
11627                                                                                                               ivermectin
11628                                                                                                 fipronil, (s)-methoprene
11630                                                                                                               ivermectin
11633                                                                                             ivermectin, pyrantel pamoate
11634                                                                                           praziquantel, pyrantel pamoate
11635                                                                                             ivermectin, pyrantel pamoate
11636                                                                                                              doxycycline
11637                                                                                                               afoxolaner
11641                                                                                                         milbemycin oxime
11651                                                                                                               ivermectin
11652                                                                                                 imidacloprid, permethrin
11653                                                                                               milbemycin oxime, spinosad
11654                                                                                              lufenuron, milbemycin oxime
11655                                                                                               milbemycin oxime, spinosad
11656                                                                                              lufenuron, milbemycin oxime
11659                                                                                                                meloxicam
11660                                                                                lufenuron, milbemycin oxime, praziquantel
11661                                                                                lufenuron, milbemycin oxime, praziquantel
11662                                                                                                               fluralaner
11663                                                                                              lufenuron, milbemycin oxime
11664                                                                                                               fluralaner
11665                                                                                                              oclacitinib
11666                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                        dexamethasone, miconazole nitrate
11669                                                                                                               alprazolam
11671                                                                                  betamethasone, florfenicol, terbinafine
11673                                                                                                         phytosphingosine
11678                                                                                             ivermectin, pyrantel pamoate
11680                                                                                                 fipronil, (s)-methoprene
11681                                                                                             ivermectin, pyrantel pamoate
11683                                                                                             ivermectin, pyrantel pamoate
11684                                                                                                                sarolaner
11691                                                                                              lufenuron, milbemycin oxime
11692                                                                          betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                          ear cleaner (epi-otic advanced)
11695                                                                                                  acetic acid, boric acid
11698                                                                                   cyphenothrin, fipronil, (s)-methoprene
11701                                                                                                               ivermectin
11702                                                                                             ivermectin, pyrantel pamoate
11709                                                                                       joint supplement (glucosamine hcl)
11710                                                                                                                   garlic
11719                                                                                              lufenuron, milbemycin oxime
11722                                                                                                          cbd or hemp oil
11723                                                                                                                   garlic
11725                                                                                                                trazodone
11735                                                                                                         milbemycin oxime
11741                                                                                                                  omega 3
11742                                                                                                               selamectin
11790                                                                          betamethasone, clotrimazole, gentamicin sulfate
11802                                                                                lufenuron, milbemycin oxime, praziquantel
11806                                         diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11812                                                                                              lufenuron, milbemycin oxime
11813                                                                                              lufenuron, milbemycin oxime
11814                                                                                               imidacloprid, pyriproxyfen
11815                                                                                              lufenuron, milbemycin oxime
11816                                                                                              lufenuron, milbemycin oxime
11817                                                                                              lufenuron, milbemycin oxime
11822                                                                                                               ivermectin
11823                                                                                                               ivermectin
11824                                                                                                 fipronil, (s)-methoprene
11825                                                                                                               afoxolaner
11826                                                                                                                 tramadol
11832                                                                                             ivermectin, pyrantel pamoate
11833                                                                                             ivermectin, pyrantel pamoate
11835                                                                                             ivermectin, pyrantel pamoate
11836                                                                                             ivermectin, pyrantel pamoate
11837                                                                                                               afoxolaner
11840                                                                               dextromethorphan hydrobromide, guaifenesin
11844                                                                               dextromethorphan hydrobromide, guaifenesin
11846                                                                                               acetaminophen, hydrocodone
11847                                                                                             ivermectin, pyrantel pamoate
11848                                                                                             ivermectin, pyrantel pamoate
11850                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
11856                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11861                                                                                             ivermectin, pyrantel pamoate
11862                                                                                             ivermectin, pyrantel pamoate
11873                                                                                             ivermectin, pyrantel pamoate
11874                                                                                             ivermectin, pyrantel pamoate
11875                                                                                                               afoxolaner
11876                                                                                                                carprofen
11877                                                                                                               gabapentin
11878                                                                                                              oclacitinib
11879                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
11880                                                                                                                carprofen
11881                                                                                             ivermectin, pyrantel pamoate
11882                                                                                                               afoxolaner
11883                                                                                                                carprofen
11889                                                                                                         milbemycin oxime
11898                                                                                             ivermectin, pyrantel pamoate
11911                                                                                                              oclacitinib
11919                                                                                                                probiotic
11926                                                                                                               ivermectin
11930                                                                                                                probiotic
11959                                                                                              lufenuron, milbemycin oxime
11960                                                                               toothpaste/dental health solution or chews
11962                                                                                              lufenuron, milbemycin oxime
11964                                                                                              lufenuron, milbemycin oxime
11978                                                                                                  triamcinolone acetonide
11979                                                                                                 fipronil, (s)-methoprene
11980                                                                                                 fipronil, (s)-methoprene
11983                                                                                                 fipronil, (s)-methoprene
11993                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12009                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                  ketoconazole, tris-edta
12014                                                                                                               ivermectin
12018                                                                                    dinotefuran, permethrin, pyriproxyfen
12019                                                                               ivermectin, praziquantel, pyrantel pamoate
12020                                                                               ivermectin, praziquantel, pyrantel pamoate
12023                                                                                                            metronidazole
12025                                                                                                               fluralaner
12043                                                                                                               gabapentin
12047                                                                                   joint supplement (glucosamine hcl/msm)
12048                                                                                       fipronil, permethrin, pyriproxyfen
12051                                                                                                                probiotic
12054                                                                                   joint supplement (glucosamine hcl/msm)
12090                                                                                                         milbemycin oxime
12108                                                                          betamethasone, clotrimazole, gentamicin sulfate
12111                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12128                                                                                                               fluralaner
12129                                                                                             ivermectin, pyrantel pamoate
12130                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12135                                                                                                               fluralaner
12136                                                                                           milbemycin oxime, praziquantel
12154                                                                                   joint supplement (glucosamine hcl/msm)
12155                                                                                                        vision supplement
12159                                                                                   joint supplement (glucosamine hcl/msm)
12160                                                                                                        vision supplement
12164                                                                                   joint supplement (glucosamine hcl/msm)
12173                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12190                                                                                        betamethasone, gentamicin sulfate
12194                                                                                             ivermectin, pyrantel pamoate
12213                                                                                             ivermectin, pyrantel pamoate
12215                                                                                             ivermectin, pyrantel pamoate
12221                                                                                                              liver happy
12222                                                                                                              shen calmer
12223                                                                                                homeopathic vaccine spray
12261                                                                                               milbemycin oxime, spinosad
12265                                                                               ivermectin, praziquantel, pyrantel pamoate
12266                                                                                       fipronil, permethrin, pyriproxyfen
12267                                                                               ivermectin, praziquantel, pyrantel pamoate
12268                                                                                                 fipronil, (s)-methoprene
12271                                                                                                 fipronil, (s)-methoprene
12272                                                                               ivermectin, praziquantel, pyrantel pamoate
12273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12275                                                                                                 fipronil, (s)-methoprene
12276                                                                                                         milbemycin oxime
12279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12283                                                                                           milbemycin oxime, praziquantel
12299                                                                                       amoxicillin, clavulanate potassium
12306                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12309                                                                                       chlorhexidine gluconate, ophytrium
12313                                                                                              lufenuron, milbemycin oxime
12314                                                                                               milbemycin oxime, spinosad
12322                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12324                                                                                               milbemycin oxime, spinosad
12334                                                                                                              vincristine
12336                                                                                                              doxorubicin
12337                                                                                          anti-cd52 monoclonal antibodies
12342                                                                                               milbemycin oxime, spinosad
12343                                                                                          anti-cd52 monoclonal antibodies
12345                                                                                                                  omega 3
12346                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12349                                                                                          anti-cd52 monoclonal antibodies
12351                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12353                                                                                                    ampicillin, sulbactam
12364                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12366                                                                                               milbemycin oxime, spinosad
12373                                                                                               milbemycin oxime, spinosad
12375                                                                                                                  omega 3
12376                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12379                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12386                                                                                           polysulfated glycosaminoglycan
12394                                                                                   joint supplement (glucosamine hcl/msm)
12397                                                                                                         pyrantel pamoate
12398                                                                                                               ivermectin
12401                                                                                                 fipronil, (s)-methoprene
12402                                                                                             ivermectin, pyrantel pamoate
12405                                                                                                         tylosin tartrate
12406                                                                                                                probiotic
12409                                                                                                                probiotic
12410                                                                                             ivermectin, pyrantel pamoate
12411                                                                                       fipronil, permethrin, pyriproxyfen
12412                                                                                                            metronidazole
12414                                                                                             ivermectin, pyrantel pamoate
12415                                                                                                               afoxolaner
12417                                                                                             ivermectin, pyrantel pamoate
12418                                                                                                               afoxolaner
12420                                                                          betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                             ivermectin, pyrantel pamoate
12422                                                                                                                sarolaner
12423                                                                          betamethasone, clotrimazole, gentamicin sulfate
12427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12429                                                                                                   indoxacarb, permethrin
12430                                                                                             ivermectin, pyrantel pamoate
12431                                                                                                               afoxolaner
12432                                                                                                               fluralaner
12433                                                                                             ivermectin, pyrantel pamoate
12434                                                                                                                sarolaner
12438                                                                                             ivermectin, pyrantel pamoate
12439                                                                                                                sarolaner
12453                                                                                                               ivermectin
12454                                                                                             ivermectin, pyrantel pamoate
12455                                                                                             ivermectin, pyrantel pamoate
12456                                                                                             ivermectin, pyrantel pamoate
12457                                                                                                               afoxolaner
12461                                                                                       chlorhexidine gluconate, ophytrium
12462                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                  omega 3
12466                                                                               ivermectin, praziquantel, pyrantel pamoate
12469                                                                                                               selamectin
12470                                                                                                              hydroxyzine
12471                                                                                                              oclacitinib
12472                                                                                                              oclacitinib
12473                                                                                                               selamectin
12474                                                                                                               selamectin
12475                                                                                                              oclacitinib
12476                                                                                                     cefpodoxime proxetil
12477                                                                          betamethasone, clotrimazole, gentamicin sulfate
12481                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12485                                                                          betamethasone, clotrimazole, gentamicin sulfate
12487                                                                                                         sulfadimethoxine
12495                                                                                             ivermectin, pyrantel pamoate
12496                                                                                                               afoxolaner
12497                                                                                                                probiotic
12498                                                                                             ivermectin, pyrantel pamoate
12500                                                                                                               ivermectin
12506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12511                                                                                             ivermectin, pyrantel pamoate
12512                                                                                                               afoxolaner
12513                                                                                                               cephalexin
12514                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12515                                                                           etofenprox, (s)-methoprene, piperonyl butoxide
12516                                                                                             ivermectin, pyrantel pamoate
12517                                                                                                                carprofen
12520                                                                                lufenuron, milbemycin oxime, praziquantel
12521                                                                                               milbemycin oxime, spinosad
12523                                                                                                         milbemycin oxime
12528                                                                                             ivermectin, pyrantel pamoate
12529                                                                                    dinotefuran, permethrin, pyriproxyfen
12530                                                                                             ivermectin, pyrantel pamoate
12535                                                                                                      silver sulfadiazine
12536                                                                                                                mupirocin
12540                                                                                             ivermectin, pyrantel pamoate
12541                                                                                    dinotefuran, permethrin, pyriproxyfen
12542                                                                                             ivermectin, pyrantel pamoate
12543                                                                                    dinotefuran, permethrin, pyriproxyfen
12546                                                                               toothpaste/dental health solution or chews
12547                                                                                   joint supplement (glucosamine hcl/msm)
12548                                                                                             ivermectin, pyrantel pamoate
12549                                                                                    dinotefuran, permethrin, pyriproxyfen
12550                                                                                             ivermectin, pyrantel pamoate
12551                                                                                    dinotefuran, permethrin, pyriproxyfen
12552                                                                                   joint supplement (glucosamine hcl/msm)
12553                                                                                             ivermectin, pyrantel pamoate
12554                                                                                    dinotefuran, permethrin, pyriproxyfen
12567                                                                                        dexamethasone, miconazole nitrate
12569                                                                                               milbemycin oxime, spinosad
12571                                                                                                       miconazole nitrate
12578                                                                                             ivermectin, pyrantel pamoate
12580                                                                                             ivermectin, pyrantel pamoate
12585                                                                                             ivermectin, pyrantel pamoate
12588                                                                           dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                             ivermectin, pyrantel pamoate
12595                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                  omega 3
12605                                                                                                         milbemycin oxime
12607                                                                                                            metronidazole
12608                                                                                           milbemycin oxime, praziquantel
12609                                                                                                               afoxolaner
12612                                                                                             ivermectin, pyrantel pamoate
12613                                                                                             ivermectin, pyrantel pamoate
12615                                                                                                               moxidectin
12616                                                                                                               ivermectin
12620                                                                                             ivermectin, pyrantel pamoate
12623                                                                                             ivermectin, pyrantel pamoate
12630                                                                                             ivermectin, pyrantel pamoate
12632                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12636                                                                                             ivermectin, pyrantel pamoate
12638                                                                                                               ivermectin
12639                                                                                             ivermectin, pyrantel pamoate
12642                                                                                             ivermectin, pyrantel pamoate
12645                                                                                                              amoxicillin
12686                                                                                             ivermectin, pyrantel pamoate
12692                                                                                           milbemycin oxime, praziquantel
12693                                                                                                         milbemycin oxime
12694                                                                                                                lotilaner
12712                                                                               dimethyl sulfoxide, fluocinolone acetonide
12713                                                                                                               prednisone
12714                                                                               ivermectin, praziquantel, pyrantel pamoate
12730                                                                           mometasone furoate, orbifloxacin, posaconazole
12732                                                                           mometasone furoate, orbifloxacin, posaconazole
12735                                                                                              chloroxylenol, ketoconazole
12738                                                                                                               fluralaner
12740                                                                                               milbemycin oxime, spinosad
12744                                                                                               milbemycin oxime, spinosad
12749                                                                                               milbemycin oxime, spinosad
12754                                                                                               milbemycin oxime, spinosad
12755                                                                                               milbemycin oxime, spinosad
12756                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12771                                                                                                               moxidectin
12774                                                                                                               ivermectin
12780                                                                                                               ivermectin
12781                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12784                                                                                                     digestive supplement
12786                                                                                   cyphenothrin, fipronil, (s)-methoprene
12787                                                                                                 flumethrin, imidacloprid
12788                                                                             dexamethasone, neomycin sulfate, polymyxin b
12795                                                                                             ivermectin, pyrantel pamoate
12796                                                                                                 flumethrin, imidacloprid
12797                                                                                                     digestive supplement
12801                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12826                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12828                                                                                                  chlorhexidine gluconate
12833                                                                                                         milbemycin oxime
12836                                                                                               milbemycin oxime, spinosad
12837                                                                                               milbemycin oxime, spinosad
12841                                                                                                               afoxolaner
12849                                                                          betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                              chloroxylenol, ketoconazole
12860                                                                                                          apomorphine hcl
12861                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12865                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12870                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12873                                                                          betamethasone, clotrimazole, gentamicin sulfate
12874                                                                                                            metronidazole
12879                                                                                             ivermectin, pyrantel pamoate
12880                                                                                                               afoxolaner
12881                                                                             dexamethasone, neomycin sulfate, polymyxin b
12882                                                                          betamethasone, clotrimazole, gentamicin sulfate
12893                                                                                                                trazodone
12894                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                    chlorhexidine gluconate, ketoconazole
12901                                                                                                               ivermectin
12902                                                                                                               afoxolaner
12903                                                                               toothpaste/dental health solution or chews
12904                                                                                                        potassium bromide
12905                                                                                                                midazolam
12906                                                                                                        potassium bromide
12907                                                                                                        potassium bromide
12908                                                                                                              terbinafine
12909                                                                                                            levetiracetam
12910                                                                                                                thyroxine
12911                                                                                                   unspecified medication
12916                                                                                             ivermectin, pyrantel pamoate
12920                                                                                             ivermectin, pyrantel pamoate
12929                                                                                             ivermectin, pyrantel pamoate
12942                                                                                             ivermectin, pyrantel pamoate
12943                                                                                             ivermectin, pyrantel pamoate
12944                                                                                                 fipronil, (s)-methoprene
12945                                                                                             ivermectin, pyrantel pamoate
12947                                                                                                            metronidazole
12948                                                                                             ivermectin, pyrantel pamoate
12949                                                                                             ivermectin, pyrantel pamoate
12950                                                                                                 fipronil, (s)-methoprene
12952                                                                                             ivermectin, pyrantel pamoate
12953                                                                           dexamethasone, neomycin sulfate, thiabendazole
12955                                                                                                             multivitamin
12956                                                                                                 fipronil, (s)-methoprene
12957                                                                                              lufenuron, milbemycin oxime
12959                                                                          betamethasone, clotrimazole, gentamicin sulfate
12962                                                                                                 fipronil, (s)-methoprene
12963                                                                                                             multivitamin
12966                                                                                                 fipronil, (s)-methoprene
12979                                                                                        betamethasone, gentamicin sulfate
12987                                                                                                              doxycycline
12988                                                                                                               ivermectin
12989                                                                                             ivermectin, pyrantel pamoate
12990                                                                                                                carprofen
12992                                                                                               imidacloprid, pyriproxyfen
12993                                                                                             ivermectin, pyrantel pamoate
12994                                                                                               imidacloprid, pyriproxyfen
12995                                                                                                                sarolaner
12996                                                                                                              oclacitinib
13005                                                                                                               ivermectin
13006                                                                                                               afoxolaner
13008                                                                                                               ivermectin
13010                                                                                                         neomycin sulfate
13013                                                                                                  triamcinolone acetonide
13020                                                                                                             fenbendazole
13034                                                                                               milbemycin oxime, spinosad
13041                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                               fluralaner
13062                                                                                           polysulfated glycosaminoglycan
13063                                                                                                                carprofen
13074                                                                                           polysulfated glycosaminoglycan
13075                                                                                lufenuron, milbemycin oxime, praziquantel
13076                                                                                                 flumethrin, imidacloprid
13081                                                                                                               lokivetmab
13084                                                                                              lufenuron, milbemycin oxime
13086                                                                                              lufenuron, milbemycin oxime
13096                                                                                      ear cleaner (zymox), hydrocortisone
13098                                                                                                                 tramadol
13104                                                                                                              vincristine
13108                                                                                               milbemycin oxime, spinosad
13109                                                                                               milbemycin oxime, spinosad
13110                                                                                                              doxorubicin
13111                                                                                                              vincristine
13112                                                                                                         cyclophosphamide
13113                                                                                          anti-cd52 monoclonal antibodies
13114                                                                                               milbemycin oxime, spinosad
13115                                                                                               milbemycin oxime, spinosad
13116                                                                                               milbemycin oxime, spinosad
13124                                                                          betamethasone, clotrimazole, gentamicin sulfate
13126                                                                                          ear cleaner (epi-otic advanced)
13127                                                                          betamethasone, clotrimazole, gentamicin sulfate
13129                                                                          betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                          ear cleaner (epi-otic advanced)
13133                                                                          betamethasone, clotrimazole, gentamicin sulfate
13136                                                                                             ivermectin, pyrantel pamoate
13137                                                                                                               fluralaner
13138                                                                             dexamethasone, neomycin sulfate, polymyxin b
13139                                                                                             ivermectin, pyrantel pamoate
13140                                                                                                               fluralaner
13142                                                                                             ivermectin, pyrantel pamoate
13143                                                                                                               fluralaner
13148                                                                                       amoxicillin, clavulanate potassium
13149                                                                                             ivermectin, pyrantel pamoate
13150                                                                                                               fluralaner
13151                                                                                                         milbemycin oxime
13152                                                                                                               fluralaner
13154                                                                                       amoxicillin, clavulanate potassium
13157                                                                                             ivermectin, pyrantel pamoate
13159                                                                                       joint supplement (glucosamine hcl)
13160                                                                                                                 turmeric
13167                                                                                                               afoxolaner
13168                                                                                             ivermectin, pyrantel pamoate
13169                                                                                             ivermectin, pyrantel pamoate
13170                                                                                                               afoxolaner
13171                                                                                                              oclacitinib
13173                                                                                                               tobramycin
13183                                                                                                               cephalexin
13184                                                                                                       methylprednisolone
13187                                                                                        betamethasone, gentamicin sulfate
13188                                                                                                 fipronil, (s)-methoprene
13189                                                                                             ivermectin, pyrantel pamoate
13190                                                                                                              clindamycin
13195                                                                                        betamethasone, gentamicin sulfate
13196                                                                                                  chlorhexidine gluconate
13198                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                        trimeprazine tartrate, prednisone
13208                                                                                           milbemycin oxime, praziquantel
13209                                                                                                               afoxolaner
13233                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13238                                                                                                               cephalexin
13246                                                                             dexamethasone, neomycin sulfate, polymyxin b
13248                                                                                             ivermectin, pyrantel pamoate
13249                                                                                                 fipronil, (s)-methoprene
13262                                                                                             ivermectin, pyrantel pamoate
13264                                                                                             ivermectin, pyrantel pamoate
13270                                                                                             ivermectin, pyrantel pamoate
13271                                                                                             ivermectin, pyrantel pamoate
13277                                                                          betamethasone, clotrimazole, gentamicin sulfate
13278                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13286                                                                          betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                 fipronil, (s)-methoprene
13288                                                                                             ivermectin, pyrantel pamoate
13297                                                                                                               ivermectin
13298                                                                                                               afoxolaner
13299                                                                                                               ivermectin
13307                                                                                                               afoxolaner
13308                                                                                             ivermectin, pyrantel pamoate
13309                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13313                                                                                             ivermectin, pyrantel pamoate
13314                                                                                                               afoxolaner
13315                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13318                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13321                                                                       ceramide iii, chlorhexidine gluconate, microsilver
13331                                                                                               milbemycin oxime, spinosad
13332                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
13333                                                                                               milbemycin oxime, spinosad
13334                                                                                               milbemycin oxime, spinosad
13336                                                                                               milbemycin oxime, spinosad
13340                                                                          betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                             ivermectin, pyrantel pamoate
13343                                                                                             ivermectin, pyrantel pamoate
13344                                                                                                               afoxolaner
13345                                                                          betamethasone, clotrimazole, gentamicin sulfate
13348                                                                                                             fenbendazole
13349                                                                                             ivermectin, pyrantel pamoate
13353                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                               milbemycin oxime, spinosad
13356                                                                                               milbemycin oxime, spinosad
13357                                                                                                 flumethrin, imidacloprid
13376                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13405                                                                                       amoxicillin, clavulanate potassium
13411                                                                                                              doxorubicin
13454                                                                                             ivermectin, pyrantel pamoate
13455                                                                                                               afoxolaner
13456                                                                                                          diphenhydramine
13459                                                                                      ear cleaner (zymox), hydrocortisone
13460                                                                                           lotion or leave in conditioner
13461                                                                                             ivermectin, pyrantel pamoate
13462                                                                                                               afoxolaner
13464                                                                                             ivermectin, pyrantel pamoate
13468                                                                                             ivermectin, pyrantel pamoate
13470                                                                                 febantel, praziquantel, pyrantel pamoate
13471                                                                                             ivermectin, pyrantel pamoate
13475                                                                                              lufenuron, milbemycin oxime
13476                                                                                                     prebiotic, probiotic
13479                                                                                                                meloxicam
13483                                                                                              lufenuron, milbemycin oxime
13484                                                                                                   cyphenothrin, fipronil
13485                                                                                                               omeprazole
13487                                                                                                               omeprazole
13496                                                                                               imidacloprid, pyriproxyfen
13502                                                                                                               ivermectin
13503                                                                                                 imidacloprid, permethrin
13506                                                                                             ivermectin, pyrantel pamoate
13532                                                                                                                probiotic
13537                                                                                              lufenuron, milbemycin oxime
13538                                                                                lufenuron, milbemycin oxime, praziquantel
13562                                                                                               milbemycin oxime, spinosad
13563                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                               milbemycin oxime, spinosad
13575                                                                                                               isoflurane
13576                                                                                               milbemycin oxime, spinosad
13579                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13581                                                                                               milbemycin oxime, spinosad
13585                                                                                               milbemycin oxime, spinosad
13590                                                                                                  chlorhexidine gluconate
13594                                                                                        betamethasone, gentamicin sulfate
13595                                                                          betamethasone, clotrimazole, gentamicin sulfate
13601                                                                             dexamethasone, neomycin sulfate, polymyxin b
13603                                                                                                             enrofloxacin
13605                                                                                                                carprofen
13609                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13615                                                                          betamethasone, clotrimazole, gentamicin sulfate
13619                                                                                                              doxycycline
13623                                                                                               imidacloprid, pyriproxyfen
13624                                                                                               imidacloprid, pyriproxyfen
13625                                                                                               imidacloprid, pyriproxyfen
13628                                                                                               imidacloprid, pyriproxyfen
13631                                                                          betamethasone, clotrimazole, gentamicin sulfate
13654                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13657                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13659                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13660                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13666                                                                             florfenicol, mometasone furoate, terbinafine
13687                                                                                                               fluralaner
13688                                                                                                    clorsulon, ivermectin
13693                                                                                               milbemycin oxime, spinosad
13715                                                                                                            methocarbamol
13723                                                                                                 fipronil, (s)-methoprene
13724                                                                                                 flumethrin, imidacloprid
13730                                                                                                                probiotic
13737                                                                                             ivermectin, pyrantel pamoate
13740                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                        trimeprazine tartrate, prednisone
13747                                                                                              lufenuron, milbemycin oxime
13756                                                                          betamethasone, clotrimazole, gentamicin sulfate
13766                                                                                               milbemycin oxime, spinosad
13768                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                        betamethasone, gentamicin sulfate
13774                                                                                                              doxycycline
13775                                                                               ivermectin, praziquantel, pyrantel pamoate
13776                                                                                                         milbemycin oxime
13781                                                                                                         milbemycin oxime
13782                                                                                                                meloxicam
13783                                                                                                         milbemycin oxime
13786                                                                                  betamethasone, florfenicol, terbinafine
13796                                                                                       chlorhexidine gluconate, ophytrium
13801                                                                                             ivermectin, pyrantel pamoate
13803                                                                                       amoxicillin, clavulanate potassium
13841                                                                                                 fipronil, (s)-methoprene
13881                                                                                                         sulfadimethoxine
13884                                                                                        betamethasone, gentamicin sulfate
13893                                                                                                         milbemycin oxime
13894                                                                                    dinotefuran, permethrin, pyriproxyfen
13896                                                                                                         milbemycin oxime
13897                                                                                    dinotefuran, permethrin, pyriproxyfen
13902                                                                                                         pyrantel pamoate
13903                                                                                                            marbofloxacin
13904                                                                                       amoxicillin, clavulanate potassium
13905                                                                                                         milbemycin oxime
13906                                                                                    dinotefuran, permethrin, pyriproxyfen
13908                                                                                                             fenbendazole
13910                                                                                                         milbemycin oxime
13911                                                                                    dinotefuran, permethrin, pyriproxyfen
13912                                                                                                               lokivetmab
13913                                                                                                              bedinvetmab
13925                                                                                               milbemycin oxime, spinosad
13943                                                                                             ivermectin, pyrantel pamoate
13946                                                                                        betamethasone, gentamicin sulfate
13994                                                                                             ivermectin, pyrantel pamoate
13995                                                                                                                sarolaner
13996                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13998                                                                                             ivermectin, pyrantel pamoate
14006                                                                                        betamethasone, gentamicin sulfate
14007                                                                                                         milbemycin oxime
14008                                                                                        enrofloxacin, silver sulfadiazine
14050                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                         milbemycin oxime
14055                                                                                                         milbemycin oxime
14059                                                                                                               selamectin
14060                                                                                                               ivermectin
14061                                                                                             ivermectin, pyrantel pamoate
14062                                                                                             ivermectin, pyrantel pamoate
14063                                                                                                 fipronil, (s)-methoprene
14064                                                                                             ivermectin, pyrantel pamoate
14071                                                                                                 fipronil, (s)-methoprene
14072                                                                                                                  taurine
14080                                                                                             ivermectin, pyrantel pamoate
14081                                                                                                 fipronil, (s)-methoprene
14106                                                                                              lufenuron, milbemycin oxime
14114                                                                                               milbemycin oxime, spinosad
14118                                                                                               milbemycin oxime, spinosad
14120                                                                                                     butorphanol tartrate
14121                                                                                                          dexmedetomidine
14122                                                                                                              atipamezole
14123                                                                                               lactated ringer's solution
14124                                                                                                       maropitant citrate
14128                                                                                               milbemycin oxime, spinosad
14129                                                                                               milbemycin oxime, spinosad
14131                                                                                                  ketoconazole, tris-edta
14147                                                                                                               ivermectin
14148                                                                                                 fipronil, (s)-methoprene
14151                                                                                             ivermectin, pyrantel pamoate
14153                                                                                                               afoxolaner
14154                                                                                             ivermectin, pyrantel pamoate
14162                                                                                              lufenuron, milbemycin oxime
14163                                                                                              lufenuron, milbemycin oxime
14164                                                                                             ivermectin, pyrantel pamoate
14165                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                       miconazole nitrate
14169                                                                                                               prednisone
14170                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14171                                                                             florfenicol, mometasone furoate, terbinafine
14172                                                                                             ivermectin, pyrantel pamoate
14173                                                                                             ivermectin, pyrantel pamoate
14174                                                                                                 fipronil, (s)-methoprene
14175                                                                             florfenicol, mometasone furoate, terbinafine
14177                                                                                                         milbemycin oxime
14178                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14179                                                                             florfenicol, mometasone furoate, terbinafine
14180                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                         milbemycin oxime
14190                                                                             dexamethasone, neomycin sulfate, polymyxin b
14219                                                                                                         milbemycin oxime
14221                                                                                                   unspecified astringent
14228                                                                                                   unspecified medication
14238                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14241                                                                                                 fipronil, (s)-methoprene
14242                                                                                             ivermectin, pyrantel pamoate
14243                                                                                                 fipronil, (s)-methoprene
14245                                                                                                 fipronil, (s)-methoprene
14249                                                                                                 fipronil, (s)-methoprene
14251                                                                                       fipronil, permethrin, pyriproxyfen
14282                                                                                                               ivermectin
14284                                                                                                               ivermectin
14286                                                                                                               ivermectin
14291                                                                              chlorhexidine gluconate, miconazole nitrate
14296                                                                               ivermectin, praziquantel, pyrantel pamoate
14297                                                                               ivermectin, praziquantel, pyrantel pamoate
14298                                                                                                         milbemycin oxime
14301                                                                                                               ivermectin
14302                                                                                                               nitenpyram
14319                                                                                             ivermectin, pyrantel pamoate
14323                                                                          betamethasone, clotrimazole, gentamicin sulfate
14324                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14330                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14334                                                                                                 imidacloprid, moxidectin
14336                                                                             dexamethasone, neomycin sulfate, polymyxin b
14342                                                                                                              amoxicillin
14365                                                                                             ivermectin, pyrantel pamoate
14366                                                                                             ivermectin, pyrantel pamoate
14367                                                                                 febantel, praziquantel, pyrantel pamoate
14372                                                                                              lufenuron, milbemycin oxime
14373                                                                                                 flumethrin, imidacloprid
14375                                                                                lufenuron, milbemycin oxime, praziquantel
14376                                                                                                 flumethrin, imidacloprid
14378                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14379                                                                                lufenuron, milbemycin oxime, praziquantel
14380                                                                                                 flumethrin, imidacloprid
14385                                                                                              lufenuron, milbemycin oxime
14386                                                                                                               afoxolaner
14387                                                                                              lufenuron, milbemycin oxime
14388                                                                                                               afoxolaner
14404                                                                                              lufenuron, milbemycin oxime
14405                                                                                                                firocoxib
14406                                                                                             ivermectin, pyrantel pamoate
14407                                                                                                 fipronil, (s)-methoprene
14408                                                                                             ivermectin, pyrantel pamoate
14409                                                                                                 fipronil, (s)-methoprene
14412                                                                                               milbemycin oxime, spinosad
14413                                                                                                 fipronil, (s)-methoprene
14414                                                                                   cyphenothrin, fipronil, (s)-methoprene
14415                                                                                             ivermectin, pyrantel pamoate
14419                                                                                                                thyroxine
14420                                                                                             ivermectin, pyrantel pamoate
14421                                                                                                                thyroxine
14426                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14428                                                                                                         pyrantel pamoate
14429                                                                                              lufenuron, milbemycin oxime
14431                                                                                              lufenuron, milbemycin oxime
14432                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                  omega 3
14434                                                                                                             multivitamin
14443                                                                                              lufenuron, milbemycin oxime
14444                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                               toothpaste/dental health solution or chews
14446 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                 urinary tract supplement
14448                                                                                              lufenuron, milbemycin oxime
14449                                                                                              lufenuron, milbemycin oxime
14451                                                                                              lufenuron, milbemycin oxime
14455                                                                             dexamethasone, neomycin sulfate, polymyxin b
14471                                                                                              lufenuron, milbemycin oxime
14473                                                                                              lufenuron, milbemycin oxime
14477                                                                                              lufenuron, milbemycin oxime
14479                                                                                                 flumethrin, imidacloprid
14488                                                                                             ivermectin, pyrantel pamoate
14489                                                                                             ivermectin, pyrantel pamoate
14490                                                                                             ivermectin, pyrantel pamoate
14492                                                                                                           metoclopramide
14493                                                                                                               famotidine
14495                                                                                             ivermectin, pyrantel pamoate
14498                                                                                             ivermectin, pyrantel pamoate
14499                                                                                             ivermectin, pyrantel pamoate
14512                                                                                                         milbemycin oxime
14513                                                                                                               lokivetmab
14527                                                                                   cyphenothrin, fipronil, (s)-methoprene
14528                                                                                   cyphenothrin, fipronil, (s)-methoprene
14529                                                                                             ivermectin, pyrantel pamoate
14547                                                                                                               ivermectin
14562                                                                                                               selamectin
14563                                                                                                               ivermectin
14576                                                                                              lufenuron, milbemycin oxime
14577                                                                                                 fipronil, (s)-methoprene
14578                                                                                                               nitenpyram
14582                                                                                                                sarolaner
14583                                                                                              lufenuron, milbemycin oxime
14584                                                                                                                sarolaner
14585                                                                                lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                sarolaner
14587                                                                                lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                sarolaner
14601                                                                                       unspecified flea/tick preventative
14605                                                                                           milbemycin oxime, praziquantel
14608                                                                                                         milbemycin oxime
14623                                                                                                 fipronil, (s)-methoprene
14631                                                                                                 fipronil, (s)-methoprene
14637                                                                                       fipronil, permethrin, pyriproxyfen
14645                                                                                               milbemycin oxime, spinosad
14649                                                                                                               cephalexin
14650                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14654                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14656                                                                                           milbemycin oxime, praziquantel
14657                                                                                                               afoxolaner
14658                                                                                             ivermectin, pyrantel pamoate
14659                                                                                                            metronidazole
14660                                                                                                            metronidazole
14664                                                                                           milbemycin oxime, praziquantel
14665                                                                                                               afoxolaner
14697                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14699                                                                                                 fipronil, (s)-methoprene
14700                                                                                             ivermectin, pyrantel pamoate
14701                                                                                               imidacloprid, pyriproxyfen
14702                                                                                             ivermectin, pyrantel pamoate
14711                                                                                              lufenuron, milbemycin oxime
14712                                                                                    dinotefuran, permethrin, pyriproxyfen
14713                                                                                                             fenbendazole
14720                                                                                              lufenuron, milbemycin oxime
14721                                                                                    dinotefuran, permethrin, pyriproxyfen
14722                                                                                                         milbemycin oxime
14723                                                                                           milbemycin oxime, praziquantel
14726                                                                                                               fluralaner
14727                                                                                           milbemycin oxime, praziquantel
14728                                                                                  milbemycin oxime, oxantel, praziquantel
14730                                                                                           milbemycin oxime, praziquantel
14731                                                                                                               fluralaner
14733                                                                                                         milbemycin oxime
14734                                                                                                               fluralaner
14737                                                                                              lufenuron, milbemycin oxime
14738                                                                                                                 fipronil
14744                                                                                                 flumethrin, imidacloprid
14746                                                                                                                 fipronil
14748                                                                          betamethasone, clotrimazole, gentamicin sulfate
14754                                                                                                 flumethrin, imidacloprid
14755                                                                                           milbemycin oxime, praziquantel
14756                                                                          betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                         burow's solution, hydrocortisone
14758                                                                                                            metronidazole
14759                                                                                                                carprofen
14760                                                                                           milbemycin oxime, praziquantel
14763                                                                                           milbemycin oxime, praziquantel
14764                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14775                                                                                      allergy immunotherapy - unspecified
14777                                                                          betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                  betamethasone, florfenicol, terbinafine
14833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                               milbemycin oxime, spinosad
14838                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                              lufenuron, milbemycin oxime
14857                                                                                                             multivitamin
14858                                                                                              lufenuron, milbemycin oxime
14861                                                                                              lufenuron, milbemycin oxime
14862                                                                                                             multivitamin
14863                                                                                                             multivitamin
14864                                                                                              lufenuron, milbemycin oxime
14867                                                                                           milbemycin oxime, praziquantel
14870                                                                                                         milbemycin oxime
14871                                                                                                                lotilaner
14874                                                                                                         milbemycin oxime
14875                                                                                                                lotilaner
14878                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14883                                                                                  milbemycin oxime, oxantel, praziquantel
14884                                                                                                               fluralaner
14899                                                                                                              bedinvetmab
14907                                                                                                                methadone
14911                                                                                               milbemycin oxime, spinosad
14913                                                                                               milbemycin oxime, spinosad
14914                                                                                             ivermectin, pyrantel pamoate
14928                                                                                               milbemycin oxime, spinosad
14934                                                                                                               afoxolaner
14943                                                                                                               fluralaner
14944                                                                                      allergy immunotherapy - unspecified
14949                                                                                                               lokivetmab
14969                                                                                                               ivermectin
14972                                                                                               milbemycin oxime, spinosad
14973                                                                                                             multivitamin
14974                                                                                               milbemycin oxime, spinosad
14975                                                                                               milbemycin oxime, spinosad
14976                                                                                                     cefpodoxime proxetil
14977                                                                                           polysulfated glycosaminoglycan
14978                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14979                                                                                                                deracoxib
14981                                                                                               milbemycin oxime, spinosad
14982                                                                                                                  omega 3
14983                                                                                                                probiotic
14999                                                                                                               ivermectin
15001                                                                               ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                 fipronil, (s)-methoprene
15004                                                                                               imidacloprid, pyriproxyfen
15005                                                                                                 fipronil, (s)-methoprene
15006                                                                                                         milbemycin oxime
15007                                                                                                         milbemycin oxime
15008                                                                                               imidacloprid, pyriproxyfen
15009                                                                                                 fipronil, (s)-methoprene
15010                                                                                                 fipronil, (s)-methoprene
15011                                                                                           milbemycin oxime, praziquantel
15017                                                                               ivermectin, praziquantel, pyrantel pamoate
15021                                                                               ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                 fipronil, (s)-methoprene
15023                                                                                                 fipronil, (s)-methoprene
15025                                                                                               imidacloprid, pyriproxyfen
15026                                                                                                 fipronil, (s)-methoprene
15027                                                                                                 fipronil, (s)-methoprene
15028                                                                                                         milbemycin oxime
15029                                                                                           milbemycin oxime, praziquantel
15030                                                                                                 fipronil, (s)-methoprene
15035                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                           milbemycin oxime, praziquantel
15045                                                                                             ivermectin, pyrantel pamoate
15048                                                                                              lufenuron, milbemycin oxime
15055                                                                                                   acetaminophen, codeine
15059                                                                                             ivermectin, pyrantel pamoate
15061                                                                                             ivermectin, pyrantel pamoate
15077                                                                                                 flumethrin, imidacloprid
15092                                                                                                               zonisamide
15102                                                                                                  acetic acid, boric acid
15129                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                             ivermectin, pyrantel pamoate
15131                                                                                              sulfadimidine, trimethoprim
15132                                                                                                               afoxolaner
15137                                                                                        betamethasone, gentamicin sulfate
15139                                                                                             ivermectin, pyrantel pamoate
15140                                                                                                 fipronil, (s)-methoprene
15144                                                                                             ivermectin, pyrantel pamoate
15145                                                                                                 fipronil, (s)-methoprene
15150                                                                                                         milbemycin oxime
15151                                                                                                               fluralaner
15155                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15170                                                                                              lufenuron, milbemycin oxime
15172                                                                                                               gabapentin
15173                                                                                                              amoxicillin
15174                                                                                                                carprofen
15179                                                                                                                 tramadol
15184                                                                                                            metronidazole
15196                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                             clomipramine
15202                                                                                             ivermectin, pyrantel pamoate
15203                                                                                             ivermectin, pyrantel pamoate
15209                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15213                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
15244                                                                                                 homatropine, hydrocodone
15250                                                                                                 imidacloprid, permethrin
15252                                                                          betamethasone, clotrimazole, gentamicin sulfate
15253                                                                                             ivermectin, pyrantel pamoate
15256                                                                                                                meloxicam
15259                                                                                                              shen calmer
15268                                                                                             ivermectin, pyrantel pamoate
15269                                                                                                               afoxolaner
15274                                                                                            unspecified herbal supplement
15308                                                                                                               ivermectin
15309                                                                                                               afoxolaner
15310                                                                                             ivermectin, pyrantel pamoate
15311                                                                                                 flumethrin, imidacloprid
15314                                                                                             ivermectin, pyrantel pamoate
15315                                                                                                 flumethrin, imidacloprid
15317                                                                                             ivermectin, pyrantel pamoate
15319                                                                                           milbemycin oxime, praziquantel
15321                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                 flumethrin, imidacloprid
15323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15332                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                probiotic
15334                                                                                        betamethasone, gentamicin sulfate
15337                                                                                               milbemycin oxime, spinosad
15339                                                                                               milbemycin oxime, spinosad
15345                                                                                               milbemycin oxime, spinosad
15348                                                                                               milbemycin oxime, spinosad
15360                                                                                                            metronidazole
15361                                                                                                               ivermectin
15362                                                                                                               ivermectin
15363                                                                          betamethasone, clotrimazole, gentamicin sulfate
15365                                                                                                               ivermectin
15366                                                                                             ivermectin, pyrantel pamoate
15367                                                                                              lufenuron, milbemycin oxime
15373                                                                                lufenuron, milbemycin oxime, praziquantel
15374                                                                                                 fipronil, (s)-methoprene
15375                                                                                lufenuron, milbemycin oxime, praziquantel
15376                                                                                                 fipronil, (s)-methoprene
15377                                                                                lufenuron, milbemycin oxime, praziquantel
15378                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15379                                                                                                                carprofen
15383                                                                                                              doxycycline
15384                                                                                                                carprofen
15402                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15412                                                                                             ivermectin, pyrantel pamoate
15441                                                                                                              guaifenesin
15445                                                                                                        hypochlorous acid
15448                                                                                             ivermectin, pyrantel pamoate
15451                                                                                             ivermectin, pyrantel pamoate
15453                                                                                      ear cleaner (zymox), hydrocortisone
15454                                                                                                           (s)-methoprene
15455                                                                                                               ivermectin
15456                                                                                                               afoxolaner
15512                                                                                                               fluralaner
15513                                                                                                                  omega 3
15515                                                                                                               fluralaner
15524                                                                                             ivermectin, pyrantel pamoate
15527                                                                                             ivermectin, pyrantel pamoate
15528                                                                                           milbemycin oxime, praziquantel
15530                                                                                    dinotefuran, permethrin, pyriproxyfen
15531                                                                                           milbemycin oxime, praziquantel
15533                                                                                                 urinary tract supplement
15545                                                                                    dinotefuran, permethrin, pyriproxyfen
15551                                                                                                                meloxicam
15552                                                                                                               fluralaner
15554                                                                                                               fluralaner
15555                                                                                                         milbemycin oxime
15556                                                                                             ivermectin, pyrantel pamoate
15558                                                                                                                carprofen
15563                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15581                                                                                                         pyrantel pamoate
15582                                                                                                                carprofen
15583                                                                                                               cephalexin
15584                                                                           dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                             ivermectin, pyrantel pamoate
15586                                                                                       fipronil, permethrin, pyriproxyfen
15587                                                                                                                carprofen
15588                                                                                                 fipronil, (s)-methoprene
15589                                                                                             ivermectin, pyrantel pamoate
15590                                                                                             ivermectin, pyrantel pamoate
15591                                                                                                               afoxolaner
15592                                                                                                 fipronil, (s)-methoprene
15593                                                                                             ivermectin, pyrantel pamoate
15594                                                                                                               afoxolaner
15597                                                                                             ivermectin, pyrantel pamoate
15598                                                                                                               afoxolaner
15599                                                                          betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                             ivermectin, pyrantel pamoate
15601                                                                                                                sarolaner
15602                                                                                                              doxycycline
15603                                                                                                                mupirocin
15604                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15613                                                                                             ivermectin, pyrantel pamoate
15614                                                                                      ear cleaner (zymox), hydrocortisone
15616                                                                                             ivermectin, pyrantel pamoate
15618                                                                                             ivermectin, pyrantel pamoate
15633                                                                                                               prednisone
15636                                                                                              lufenuron, milbemycin oxime
15649                                                                                             ivermectin, pyrantel pamoate
15650                                                                                                 fipronil, (s)-methoprene
15661                                                                                                               ivermectin
15662                                                                             dexamethasone, neomycin sulfate, polymyxin b
15663                                                                                                 fipronil, (s)-methoprene
15667                                                                                                  ketoconazole, tris-edta
15669                                                                                             ivermectin, pyrantel pamoate
15670                                                                                                                sarolaner
15672                                                                                             ivermectin, pyrantel pamoate
15673                                                                                             ivermectin, pyrantel pamoate
15674                                                                                                                sarolaner
15675                                                                             florfenicol, mometasone furoate, terbinafine
15689                                                                                               milbemycin oxime, spinosad
15690                                                                                               milbemycin oxime, spinosad
15691                                                                                               milbemycin oxime, spinosad
15692                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                               milbemycin oxime, spinosad
15699                                                                                             ivermectin, pyrantel pamoate
15701                                                                                               milbemycin oxime, spinosad
15705                                                                                      ear cleaner (zymox), hydrocortisone
15706                                                                                                      ear cleaner (zymox)
15707                                                                                               milbemycin oxime, spinosad
15712                                                                                               milbemycin oxime, spinosad
15715                                                                                               milbemycin oxime, spinosad
15733                                                                                             ivermectin, pyrantel pamoate
15750                                                             butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15757                                                                                             ivermectin, pyrantel pamoate
15758                                                                                                 fipronil, (s)-methoprene
15767                                                                             dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                       gentamicin sulfate
15769                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                     dorzolamide, timolol
15776                                                                                                               cephalexin
15778                                                                                                  triamcinolone acetonide
15781                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                  triamcinolone acetonide
15787                                                                                                               grapiprant
15788                                                                                                                meloxicam
15790                                                                                                 kidney health supplement
15796                                                                                       amoxicillin, clavulanate potassium
15799                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15811                                                                                                   cyphenothrin, fipronil
15815                                                                                                         milbemycin oxime
15816                                                                                                               fluralaner
15818                                                                                                         milbemycin oxime
15829                                                                                             ivermectin, pyrantel pamoate
15839                                                                                                         pyrantel pamoate
15840                                                                                       joint supplement (glucosamine hcl)
15841                                                                                             ivermectin, pyrantel pamoate
15842                                                                                              lufenuron, milbemycin oxime
15844                                                                                              lufenuron, milbemycin oxime
15848                                                                                                                probiotic
15849                                                                                              lufenuron, milbemycin oxime
15850                                                                                           milbemycin oxime, praziquantel
15856                                                                                                 imidacloprid, permethrin
15857                                                                                                               fluralaner
15858                                                                                                                deracoxib
15859                                                                                              lufenuron, milbemycin oxime
15860                                                                                                     cefpodoxime proxetil
15861                                                                                        betamethasone, gentamicin sulfate
15862                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                         atropine sulfate
15864                                                                                                             flurbiprofen
15867                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                        vision supplement
15869                                                                                              lufenuron, milbemycin oxime
15870                                                                                                               fluralaner
15871                                                                             florfenicol, mometasone furoate, terbinafine
15886                                                                                                        vision supplement
15888                                                                                                               fluralaner
15889                                                                                        enrofloxacin, silver sulfadiazine
15890                                                                                            dextromethorphan, guaifenesin
15891                                                                                              lufenuron, milbemycin oxime
15892                                                                                              lufenuron, milbemycin oxime
15907                                                                                                         phytosphingosine
15911                                                                                                             fenbendazole
15912                                                                                                               budesonide
15917                                                                                                               ivermectin
15918                                                                                                     digestive supplement
15919                                                                                                               famotidine
15920                                                                                                         tylosin tartrate
15921                                                                                                                probiotic
15922                                                                                                               ivermectin
15923                                                                                                         tylosin tartrate
15924                                                                                                                vitamin b
15925                                                                                                               budesonide
15926                                                                                                             cyclosporine
15927                                                                                                                vitamin a
15928                                                                                                                probiotic
15929                                                                                                             multivitamin
15930                                                                                             ivermectin, pyrantel pamoate
15931                                                                                                         tylosin tartrate
15932                                                                                                                vitamin b
15933                                                                                                                vitamin a
15934                                                                                                               budesonide
15935                                                                                                                probiotic
15936                                                                                                             cyclosporine
15937                                                                                                               ivermectin
15944                                                                                                               ivermectin
15945                                                                                                                probiotic
15981                                                                                              lufenuron, milbemycin oxime
15983                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15986                                                                                    dinotefuran, permethrin, pyriproxyfen
15992                                                                                              lufenuron, milbemycin oxime
15993                                                                                    dinotefuran, permethrin, pyriproxyfen
15995                                                                                              lufenuron, milbemycin oxime
15996                                                                                    dinotefuran, permethrin, pyriproxyfen
15997                                                                                                               fluralaner
15998                                                                                             hydrocortisone, ketoconazole
15999                                                                                           milbemycin oxime, praziquantel
16000                                                                                                               fluralaner
16005                                                                                                         milbemycin oxime
16007                                                                                                         milbemycin oxime
16008                                                                                                               fluralaner
16009                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
16016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
16026                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16033                                                                                                 fipronil, (s)-methoprene
16035                                                                                                 fipronil, (s)-methoprene
16036                                                                                lufenuron, milbemycin oxime, praziquantel
16037                                                                                                              amoxicillin
16038                                                                                             ivermectin, pyrantel pamoate
16039                                                                                                 fipronil, (s)-methoprene
16052                                                                                lufenuron, milbemycin oxime, praziquantel
16053                                                                                               imidacloprid, pyriproxyfen
16094                                                                                             ivermectin, pyrantel pamoate
16097                                                                                             ivermectin, pyrantel pamoate
16098                                                                                                               afoxolaner
16105                                                                                              lufenuron, milbemycin oxime
16106                                                                                                             ketoconazole
16107                                                                                   gentamicin sulfate, miconazole nitrate
16108                                                                                              lufenuron, milbemycin oxime
16109                                                                                              lufenuron, milbemycin oxime
16110                                                                             florfenicol, mometasone furoate, terbinafine
16111                                                                                                            dexamethasone
16112                                                                                                              terbinafine
16113                                                                                                  chlorhexidine gluconate
16114                                                                                              chloroxylenol, ketoconazole
16115                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16116                                                                                                              terbinafine
16117                                                                                                              clindamycin
16118                                                                                                               prednisone
16150                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
16152                                                                                               imidacloprid, pyriproxyfen
16153                                                                                             ivermectin, pyrantel pamoate
16154                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16155                                                                                          ear cleaner (epi-otic advanced)
16156                                                                                                                probiotic
16157                                                                                             ivermectin, pyrantel pamoate
16158                                                                                                               fluralaner
16159                                                                                                         milbemycin oxime
16160                                                                                                               fluralaner
16161                                                                                             ivermectin, pyrantel pamoate
16162                                                                                                               fluralaner
16163                                                                                             ivermectin, pyrantel pamoate
16164                                                                                                               fluralaner
16165                                                                                           milbemycin oxime, praziquantel
16177                                                                              chlorhexidine gluconate, miconazole nitrate
16179                                                                                    chlorhexidine gluconate, ketoconazole
16199                                                                                           sulfamethoxazole, trimethoprim
16229                                                                                             ivermectin, pyrantel pamoate
16230                                                                                             ivermectin, pyrantel pamoate
16239                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                  omega 3
16241                                                                               toothpaste/dental health solution or chews
16242                                                                               toothpaste/dental health solution or chews
16251                                                                          betamethasone, clotrimazole, gentamicin sulfate
16253                                                                           mometasone furoate, orbifloxacin, posaconazole
16285                                                                                                               fluralaner
16286                                                                                               unspecified eye medication
16287                                                                                             ivermectin, pyrantel pamoate
16288                                                                                                 fipronil, (s)-methoprene
16289                                                                                             ivermectin, pyrantel pamoate
16290                                                                                                 fipronil, (s)-methoprene
16291                                                                                                         milbemycin oxime
16292                                                                                                         milbemycin oxime
16293                                                                                                 fipronil, (s)-methoprene
16294                                                                                             ivermectin, pyrantel pamoate
16295                                                                                                 fipronil, (s)-methoprene
16296                                                                                                               ivermectin
16312                                                                                             ivermectin, pyrantel pamoate
16313                                                                                                               afoxolaner
16315                                                                                             ivermectin, pyrantel pamoate
16316                                                                                                               afoxolaner
16317                                                                                        dexamethasone, miconazole nitrate
16318                                                                                             ivermectin, pyrantel pamoate
16319                                                                                                               afoxolaner
16321                                                                                             ivermectin, pyrantel pamoate
16322                                                                                                               afoxolaner
16324                                                                                             ivermectin, pyrantel pamoate
16325                                                                                                               afoxolaner
16326                                                                                                         milbemycin oxime
16339                                                                                    dinotefuran, permethrin, pyriproxyfen
16340                                                                                             ivermectin, pyrantel pamoate
16347                                                                                    dinotefuran, permethrin, pyriproxyfen
16352                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16355                                                                                                                mupirocin
16356                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16374                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16376                                                                                                                  omega 3
16378                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16382                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16386                                                                                                              oclacitinib
16387                                                                                                                ophytrium
16388                                                                                                         phytosphingosine
16389                                                                                             ivermectin, pyrantel pamoate
16400                                                                                             ivermectin, pyrantel pamoate
16401                                                                                                                 spinosad
16403                                                                                             ivermectin, pyrantel pamoate
16404                                                                                                                 spinosad
16408                                                                                             ivermectin, pyrantel pamoate
16413                                                                                                         milbemycin oxime
16414                                                                                                               fluralaner
16415                                                                                                           chlorphenamine
16416                                                                                                              oclacitinib
16418                                                                                                 fipronil, (s)-methoprene
16419                                                                                                   unspecified antibiotic
16420                                                                                                    unspecified analgesic
16425                                                                                                 fipronil, (s)-methoprene
16426                                                                                                 fipronil, (s)-methoprene
16434                                                                                                             multivitamin
16435                                                                                                                  omega 3
16436                                                                                                                 spinosad
16437                                                                                                         sulfadimethoxine
16440                                                                                              lufenuron, milbemycin oxime
16441                                                                                              lufenuron, milbemycin oxime
16442                                                                                                             multivitamin
16443                                                                                                                  omega 3
16447                                                                                              lufenuron, milbemycin oxime
16448                                                                                                             multivitamin
16450                                                                                           milbemycin oxime, praziquantel
16452                                                                                                       maropitant citrate
16453                                                                                                               famotidine
16454                                                                                                               famotidine
16462                                                                                                                lactulose
16472                                                                                              lufenuron, milbemycin oxime
16474                                                                                                 fipronil, (s)-methoprene
16477                                                                                              lufenuron, milbemycin oxime
16478                                                                                                 fipronil, (s)-methoprene
16479                                                                                                 fipronil, (s)-methoprene
16485                                                                                                 fipronil, (s)-methoprene
16497                                                                                                 fipronil, (s)-methoprene
16522                                                                                             ivermectin, pyrantel pamoate
16523                                                                                                               ivermectin
16524                                                                                                   cyphenothrin, fipronil
16525                                                                                                         milbemycin oxime
16526                                                                                    dinotefuran, permethrin, pyriproxyfen
16538                                                                                                         milbemycin oxime
16543                                                                                                   cyphenothrin, fipronil
16544                                                                                                   cyphenothrin, fipronil
16546                                                                                           milbemycin oxime, praziquantel
16551                                                                                                   cyphenothrin, fipronil
16553                                                                                           milbemycin oxime, praziquantel
16554                                                                                                   cyphenothrin, fipronil
16579                                                                                             ivermectin, pyrantel pamoate
16580                                                                                                  ketoconazole, tris-edta
16590                                                                                                                 tramadol
16595                                                                                                               ivermectin
16596                                                                                             ivermectin, pyrantel pamoate
16597                                                                                                               ivermectin
16598                                                                                       fipronil, permethrin, pyriproxyfen
16599                                                                                                               ivermectin
16601                                                                                                 fipronil, (s)-methoprene
16602                                                                                                            levothyroxine
16605                                                                                 febantel, praziquantel, pyrantel pamoate
16606                                                                                                         milbemycin oxime
16608                                                                                                         milbemycin oxime
16616                                                                                                               omeprazole
16617                                                                                                               sucralfate
16624                                                                                               milbemycin oxime, spinosad
16630                                                                                                         milbemycin oxime
16631                                                                                                                lotilaner
16635                                                                             dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                             ivermectin, pyrantel pamoate
16637                                                                                                 fipronil, (s)-methoprene
16638                                                                                             ivermectin, pyrantel pamoate
16639                                                                                           milbemycin oxime, praziquantel
16640                                                                                                               afoxolaner
16646                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16657                                                                           mometasone furoate, orbifloxacin, posaconazole
16667                                                                                                             acepromazine
16678                                                                                               milbemycin oxime, spinosad
16684                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16687                                                                                             ivermectin, pyrantel pamoate
16689                                                                                                                meloxicam
16690                                                                                                                 tramadol
16694                                                                                             ivermectin, pyrantel pamoate
16695                                                                                                               afoxolaner
16702                                                                          betamethasone, clotrimazole, gentamicin sulfate
16703                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                             ivermectin, pyrantel pamoate
16705                                                                                                               afoxolaner
16711                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
16714                                                                                                                mupirocin
16717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16721                                                                                             ivermectin, pyrantel pamoate
16722                                                                                                                meloxicam
16723                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16726                                                                                        betamethasone, gentamicin sulfate
16745                                                                                              lufenuron, milbemycin oxime
16746                                                                                                               fluralaner
16749                                                                                              lufenuron, milbemycin oxime
16750                                                                                                               fluralaner
16751                                                                                              lufenuron, milbemycin oxime
16774                                                                                                                vitamin b
16777                                                                                             ivermectin, pyrantel pamoate
16778                                                                                                   cyphenothrin, fipronil
16779                                                                                                               cetirizine
16783                                                                                                               cetirizine
16784                                                                                                     digestive supplement
16785                                                                                                  ketoconazole, tris-edta
16786                                                                                                               moxidectin
16787                                                                                                               moxidectin
16789                                                                                                               moxidectin
16791                                                                                    dinotefuran, permethrin, pyriproxyfen
16793                                                                                                               afoxolaner
16798                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16805                                                                                             ivermectin, pyrantel pamoate
16807                                                                                                 imidacloprid, permethrin
16809                                                                                               imidacloprid, pyriproxyfen
16810                                                                                             ivermectin, pyrantel pamoate
16811                                                                                                 flumethrin, imidacloprid
16814                                                                                                        vision supplement
16815                                                                                                              ashwagandha
16816                                                                                                 betamethasone, ofloxacin
16821                                                                                                        vision supplement
16823                                                                                                 betamethasone, ofloxacin
16834                                                                                                 fipronil, (s)-methoprene
16838                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
16840                                                                                                 fipronil, (s)-methoprene
16841                                                                                                              bedinvetmab
16847                                                                                                 urinary tract supplement
16849                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16860                                                                                                                  sotalol
16864                                                                                                         milbemycin oxime
16866                                                                                                         milbemycin oxime
16869                                                                                                         milbemycin oxime
16877                                                                                               milbemycin oxime, spinosad
16882                                                                                                 flumethrin, imidacloprid
16915                                                                                                              doxycycline
16916                                                                                                         sulfadimethoxine
16918                                                                                                                  omega 3
16920                                                                                                                sarolaner
16929                                                                                               milbemycin oxime, spinosad
16930                                                                                                               cephalexin
16931                                                                                               milbemycin oxime, spinosad
16933                                                                                               milbemycin oxime, spinosad
16935                                                                                               milbemycin oxime, spinosad
16936                                                                                             ivermectin, pyrantel pamoate
16937                                                                                                 fipronil, (s)-methoprene
16939                                                                                                      ear cleaner (zymox)
16970                                                                                                               ivermectin
16983                                                                                             ivermectin, pyrantel pamoate
16993                                                                                                  ketoconazole, tris-edta
16994                                                                          betamethasone, clotrimazole, gentamicin sulfate
16998                                                                                    dinotefuran, permethrin, pyriproxyfen
16999                                                                                             ivermectin, pyrantel pamoate
17000                                                                                    dinotefuran, permethrin, pyriproxyfen
17010                                                                                             ivermectin, pyrantel pamoate
17012                                                                                                           (s)-methoprene
17013                                                                                             ivermectin, pyrantel pamoate
17014                                                                                             ivermectin, pyrantel pamoate
17018                                                      chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                             ivermectin, pyrantel pamoate
17020                                                                                                               fluralaner
17022                                                                           dexamethasone, neomycin sulfate, thiabendazole
17033                                                                                                               ivermectin
17035                                                                                             ivermectin, pyrantel pamoate
17036                                                                                                               afoxolaner
17041                                                                                                         milbemycin oxime
17042                                                                                                                lotilaner
17049                                                                                             ivermectin, pyrantel pamoate
17051                                                                                                               cephalexin
17053                                                                                             ivermectin, pyrantel pamoate
17057                                                                                                               afoxolaner
17062                                                                           dexamethasone, neomycin sulfate, thiabendazole
17088                                                                                             ivermectin, pyrantel pamoate
17089                                                                                                               afoxolaner
17090                                                                                             ivermectin, pyrantel pamoate
17091                                                                                                               afoxolaner
17094                                                                                             ivermectin, pyrantel pamoate
17095                                                                                                               afoxolaner
17098                                                                                             ivermectin, pyrantel pamoate
17099                                                                                                               afoxolaner
17120                                                                                                                 squalane
17121                                                                                          ear cleaner (epi-otic advanced)
17126                                                                                    chlorhexidine gluconate, ketoconazole
17127                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17131                                                                           mometasone furoate, orbifloxacin, posaconazole
17138                                                                                             ivermectin, pyrantel pamoate
17143                                                                                             ivermectin, pyrantel pamoate
17151                                                                                               milbemycin oxime, spinosad
17153                                                                               ivermectin, praziquantel, pyrantel pamoate
17156                                                                               ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                               afoxolaner
17173                                                                               dimethyl sulfoxide, fluocinolone acetonide
17177                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17180                                                                                                                probiotic
17196                                                                                                         milbemycin oxime
17197                                                                                              lufenuron, milbemycin oxime
17202                                                                                       fipronil, permethrin, pyriproxyfen
17209                                                                                             ivermectin, pyrantel pamoate
17210                                                                                             ivermectin, pyrantel pamoate
17211                                                                                                                carprofen
17218                                                                                    dinotefuran, permethrin, pyriproxyfen
17220                                                                                                               ivermectin
17221                                                                                                               afoxolaner
17225                                                                                             ivermectin, pyrantel pamoate
17226                                                                                                               afoxolaner
17227                                                                                             ivermectin, pyrantel pamoate
17228                                                                                                               afoxolaner
17229                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17232                                                                               ivermectin, praziquantel, pyrantel pamoate
17233                                                                                               imidacloprid, pyriproxyfen
17234                                                                                                         milbemycin oxime
17236                                                                                               imidacloprid, pyriproxyfen
17237                                                                                                         milbemycin oxime
17238                                                                                               imidacloprid, pyriproxyfen
17239                                                                                                         milbemycin oxime
17240                                                                                             ivermectin, pyrantel pamoate
17241                                                                                                               afoxolaner
17248                                                                                             ivermectin, pyrantel pamoate
17251                                                                                             ivermectin, pyrantel pamoate
17252                                                                                                 fipronil, (s)-methoprene
17253                                                                                                               grapiprant
17254                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                               milbemycin oxime, spinosad
17264                                                                                               milbemycin oxime, spinosad
17266                                                                                               milbemycin oxime, spinosad
17268                                                                                                               ivermectin
17283                                                                                             ivermectin, pyrantel pamoate
17285                                                                                             ivermectin, pyrantel pamoate
17294                                                                                                               ivermectin
17295                                                                                       fipronil, permethrin, pyriproxyfen
17297                                                                                           sulfamethoxazole, trimethoprim
17298                                                                                             ivermectin, pyrantel pamoate
17307                                                                                        trimeprazine tartrate, prednisone
17308                                                                                        trimeprazine tartrate, prednisone
17309                                                                                        trimeprazine tartrate, prednisone
17310                                                                                        trimeprazine tartrate, prednisone
17313                                                                                             ivermectin, pyrantel pamoate
17314                                                                                    dinotefuran, permethrin, pyriproxyfen
17315                                                                                                            metronidazole
17327                                                                                             oxytetracycline, polymyxin b
17329                                                                                                           corneal repair
17330                                                                                                                ofloxacin
17335                                                                                                           corneal repair
17352                                                                                        betamethasone, gentamicin sulfate
17355                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17381                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17386                                                                                             ivermectin, pyrantel pamoate
17387                                                                                             ivermectin, pyrantel pamoate
17389                                                                                             ivermectin, pyrantel pamoate
17390                                                                                             ivermectin, pyrantel pamoate
17391                                                                                             ivermectin, pyrantel pamoate
17393                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17399                                                                                              lufenuron, milbemycin oxime
17406                                                                                              lufenuron, milbemycin oxime
17407                                                                                        betamethasone, gentamicin sulfate
17412                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17417                                                                                                 flumethrin, imidacloprid
17418                                                                                                                  omega 3
17419                                                                                                                sarolaner
17420                                                                                             ivermectin, pyrantel pamoate
17426                                                                                                               gabapentin
17427                                                                                                   unspecified medication
17440                                                                                                            metronidazole
17446                                                                                  betamethasone, florfenicol, terbinafine
17461                                                                                              lufenuron, milbemycin oxime
17463                                                                                                                probiotic
17468                                                                                              lufenuron, milbemycin oxime
17470                                                                                                                probiotic
17482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17484                                                                                              lufenuron, milbemycin oxime
17486                                                                                             ivermectin, pyrantel pamoate
17487                                                                                                 fipronil, (s)-methoprene
17488                                                                                lufenuron, milbemycin oxime, praziquantel
17489                                                                                                 fipronil, (s)-methoprene
17490                                                                                                 fipronil, (s)-methoprene
17491                                                                                           milbemycin oxime, praziquantel
17492                                                                                lufenuron, milbemycin oxime, praziquantel
17493                                                                                           milbemycin oxime, praziquantel
17494                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17495                                                                                           milbemycin oxime, praziquantel
17496                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17497                                                                                           milbemycin oxime, praziquantel
17498                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17518                                                                                              lufenuron, milbemycin oxime
17519                                                                                              lufenuron, milbemycin oxime
17576                                                                             dexamethasone, neomycin sulfate, polymyxin b
17583                                                                                        betamethasone, gentamicin sulfate
17585                                                                                                               alprazolam
17588                                                                                        betamethasone, gentamicin sulfate
17602                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                              lufenuron, milbemycin oxime
17605                                                                                lufenuron, milbemycin oxime, praziquantel
17611                                                                                                               fluralaner
17615                                                                                                                 fipronil
17627                                                                                                               fluralaner
17633                                                                                                               moxidectin
17659                                                                                                         milbemycin oxime
17670                                                                                               milbemycin oxime, spinosad
17672                                                                                               milbemycin oxime, spinosad
17673                                                                                               milbemycin oxime, spinosad
17680                                                                                                               prednisone
17697                                                                                               milbemycin oxime, spinosad
17702                                                                               dextromethorphan hydrobromide, guaifenesin
17703                                                                                              lufenuron, milbemycin oxime
17719                                                                                              lufenuron, milbemycin oxime
17720                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
17722                                                                                              lufenuron, milbemycin oxime
17723                                                                                                               afoxolaner
17742                                                                             dexamethasone, neomycin sulfate, polymyxin b
17743                                                                             dexamethasone, neomycin sulfate, polymyxin b
17755                                                                                                 fipronil, (s)-methoprene
17779                                                                                   cyphenothrin, fipronil, (s)-methoprene
17780                                                                                        trimeprazine tartrate, prednisone
17781                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                   cyphenothrin, fipronil, (s)-methoprene
17798                                                                           mometasone furoate, orbifloxacin, posaconazole
17802                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                        betamethasone, gentamicin sulfate
17804                                                                                        trimeprazine tartrate, prednisone
17818                                                                                                               afoxolaner
17832                                                                                                                meloxicam
17845                                                                                                               afoxolaner
17853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17855                                                                                                               diclofenac
17856                                                                                                     prednisolone acetate
17860                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17863                                                                                                                  omega 3
17865                                                                                                 urinary tract supplement
17882                                                                                        betamethasone, gentamicin sulfate
17955                                                                                                         milbemycin oxime
17957                                                                          betamethasone, clotrimazole, gentamicin sulfate
18001                                                                                             ivermectin, pyrantel pamoate
18003                                                                               ivermectin, praziquantel, pyrantel pamoate
18009                                                                                                 fipronil, (s)-methoprene
18010                                                                               ivermectin, praziquantel, pyrantel pamoate
18011                                                                                                 fipronil, (s)-methoprene
18014                                                                                       fipronil, permethrin, pyriproxyfen
18015                                                                                                               ivermectin
18021                                                                                              lufenuron, milbemycin oxime
18023                                                                                                         milbemycin oxime
18024                                                                                                               afoxolaner
18055                                                                           dexamethasone, neomycin sulfate, thiabendazole
18056                                                                                          atropine sulfate, diphenoxylate
18057                                                                                                               afoxolaner
18058                                                                                             ivermectin, pyrantel pamoate
18072                                                                                               milbemycin oxime, spinosad
18073                                                                                                               fluralaner
18074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                lufenuron, milbemycin oxime, praziquantel
18076                                                                                                               fluralaner
18094                                                                                             ivermectin, pyrantel pamoate
18095                                                                                                               afoxolaner
18096                                                                           mometasone furoate, orbifloxacin, posaconazole
18098                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18114                                                                                                                vitamin e
18115                                                                                              lufenuron, milbemycin oxime
18116                                                                                                 imidacloprid, permethrin
18117                                                                                              lufenuron, milbemycin oxime
18118                                                                                               imidacloprid, pyriproxyfen
18119                                                                                              lufenuron, milbemycin oxime
18124                                                                                              lufenuron, milbemycin oxime
18125                                                                                               imidacloprid, pyriproxyfen
18134                                                                                        betamethasone, gentamicin sulfate
18141                                                                                           polysulfated glycosaminoglycan
18147                                                                                                               isoflurane
18159                                                                           mometasone furoate, orbifloxacin, posaconazole
18164                                                                           mometasone furoate, orbifloxacin, posaconazole
18165                                                                                                 ear cleaner (oti-soothe)
18188                                                                               dextromethorphan hydrobromide, guaifenesin
18192                                                                                             ivermectin, pyrantel pamoate
18193                                                                                                               ivermectin
18195                                                                                                               grapiprant
18199                                                                                        trimeprazine tartrate, prednisone
18202                                                                                                               ivermectin
18205                                                                                                               ivermectin
18213                                                                                                 imidacloprid, permethrin
18214                                                                                             ivermectin, pyrantel pamoate
18215                                                                                                                carprofen
18216                                                                                                               loratadine
18217                                                                                                               fluralaner
18218                                                                                                         milbemycin oxime
18220                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18221                                                                                                               lokivetmab
18222                                                                                                         milbemycin oxime
18238                                                                                                           dental sealant
18249                                                                                                             ketoconazole
18251                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
18252                                                                                                             ketoconazole
18258                                                                                    dinotefuran, permethrin, pyriproxyfen
18260                                                                                               milbemycin oxime, spinosad
18262                                                                                    dinotefuran, permethrin, pyriproxyfen
18263                                                                                      allergy immunotherapy - unspecified
18264                                                                                               milbemycin oxime, spinosad
18266                                                                                               milbemycin oxime, spinosad
18271                                                                                      allergy immunotherapy - unspecified
18275                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                         phytosphingosine
18277                                                                                                             fenbendazole
18284                                                                                                               ivermectin
18323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18325                                                                                         burow's solution, hydrocortisone
18326                                                                                                  ketoconazole, tris-edta
18329                                                                                                         pyrantel pamoate
18330                                                                                                                ponazuril
18337                                                                                             ivermectin, pyrantel pamoate
18338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                             ivermectin, pyrantel pamoate
18340                                                                                                               afoxolaner
18341                                                                                                                  omega 3
18342                                                                                             ivermectin, pyrantel pamoate
18343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18344                                                                                             ivermectin, pyrantel pamoate
18345                                                                                                   acetaminophen, codeine
18365                                                                                             ivermectin, pyrantel pamoate
18366                                                                                                               afoxolaner
18370                                                                                             ivermectin, pyrantel pamoate
18371                                                                                                               afoxolaner
18373                                                                                             ivermectin, pyrantel pamoate
18374                                                                                                               afoxolaner
18375                                                                                             ivermectin, pyrantel pamoate
18404                                                                                                  ketoconazole, tris-edta
18415                                                                                             ivermectin, pyrantel pamoate
18416                                                                                                               afoxolaner
18427                                                                                                                     edta
18441                                                                                        trimeprazine tartrate, prednisone
18459                                                                                              lufenuron, milbemycin oxime
18460                                                                                              lufenuron, milbemycin oxime
18461                                                                                                               fluralaner
18464                                                                                                               cephalexin
18466                                                                                neomycin sulfate, polymyxin b, gramicidin
18467                                                                                             ivermectin, pyrantel pamoate
18469                                                                                                             cyclosporine
18470                                                                                             ivermectin, pyrantel pamoate
18471                                                                                                             cyclosporine
18472                                                                                             ivermectin, pyrantel pamoate
18473                                                                                                               afoxolaner
18479                                                                                               milbemycin oxime, spinosad
18480                                                                                               milbemycin oxime, spinosad
18483                                                                                               milbemycin oxime, spinosad
18489                                                                                             ivermectin, pyrantel pamoate
18490                                                                                              lufenuron, milbemycin oxime
18494                                                                                              lufenuron, milbemycin oxime
18495                                                                                             ivermectin, pyrantel pamoate
18500                                                                                             ivermectin, pyrantel pamoate
18502                                                                                           milbemycin oxime, praziquantel
18512                                                                                                               ivermectin
18514                                                                                               imidacloprid, pyriproxyfen
18519                                                                                                               afoxolaner
18520                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18525                                                                                                               afoxolaner
18534                                                                                                                probiotic
18539                                                                                                 fipronil, (s)-methoprene
18542                                                                                                 fipronil, (s)-methoprene
18543                                                                          betamethasone, clotrimazole, gentamicin sulfate
18562                                                                                                        ferrum metallicum
18565                                                                                               imidacloprid, pyriproxyfen
18571                                                                                             ivermectin, pyrantel pamoate
18572                                                                                                               afoxolaner
18576                                                                                             ivermectin, pyrantel pamoate
18577                                                                                                               afoxolaner
18580                                                                                             ivermectin, pyrantel pamoate
18588                                                                                                               prednisone
18591                                                                                        betamethasone, gentamicin sulfate
18595                                                                                               imidacloprid, pyriproxyfen
18609                                                                                                                trazodone
18612                                                                                                            levetiracetam
18614                                                                                               milbemycin oxime, spinosad
18621                                                                             florfenicol, mometasone furoate, terbinafine
18649                                                                                                               nitenpyram
18685                                                                                       amoxicillin, clavulanate potassium
18686                                                                                             ivermectin, pyrantel pamoate
18687                                                                          betamethasone, clotrimazole, gentamicin sulfate
18688                                                                                                            levothyroxine
18689                                                                                                           chlorphenamine
18690                                                                                                               ivermectin
18694                                                                                              lufenuron, milbemycin oxime
18696                                                                                                   cyphenothrin, fipronil
18697                                                                                              lufenuron, milbemycin oxime
18703                                                                                             ivermectin, pyrantel pamoate
18704                                                                                                               afoxolaner
18705                                                                                             ivermectin, pyrantel pamoate
18707                                                                                             ivermectin, pyrantel pamoate
18716                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18718                                                                                        betamethasone, gentamicin sulfate
18729                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
18734                                                                                               milbemycin oxime, spinosad
18735                                                                                                               nitenpyram
18736                                                                                               milbemycin oxime, spinosad
18743                                                                                                               ivermectin
18750                                                                                             ivermectin, pyrantel pamoate
18753                                                                                                                carprofen
18774                                                                                               milbemycin oxime, spinosad
18775                                                                                               milbemycin oxime, spinosad
18795                                                                                             ivermectin, pyrantel pamoate
18796                                                                                                   cyphenothrin, fipronil
18797                                                                                             ivermectin, pyrantel pamoate
18798                                                                                                   cyphenothrin, fipronil
18799                                                                                             ivermectin, pyrantel pamoate
18800                                                                                             ivermectin, pyrantel pamoate
18820                                                                                                      ear cleaner (zymox)
18821                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18829                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18837                                                                                               milbemycin oxime, spinosad
18838                                                                                                                  omega 3
18839                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18844                                                                                                 skin and coat supplement
18845                                                                                                         milbemycin oxime
18846                                                                                                               fluralaner
18847                                                                                                                  omega 3
18850                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18851                                                                                                              oclacitinib
18852                                                                                                               fluralaner
18853                                                                                                         milbemycin oxime
18854                                                                                                                  omega 3
18855                                                                                                         milbemycin oxime
18856                                                                                                               fluralaner
18882                                                               dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18904                                                                                                            methocarbamol
18905                                                                                                            buprenorphine
18908                                                                                                               ivermectin
18909                                                                                                 imidacloprid, permethrin
18919                                                                                                 flumethrin, imidacloprid
18921                                                                                                 flumethrin, imidacloprid
18924                                                                                              lufenuron, milbemycin oxime
18931                                                                                                 fipronil, (s)-methoprene
18932                                                                                             ivermectin, pyrantel pamoate
18933                                                                                                               fluralaner
18934                                                                                             ivermectin, pyrantel pamoate
18935                                                                                             ivermectin, pyrantel pamoate
18936                                                                                                 flumethrin, imidacloprid
18937                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18961                                                                                                                probiotic
18964                                                                                                                probiotic
18970                                                                                                                probiotic
18987                                                                                             ivermectin, pyrantel pamoate
18988                                                                                                                probiotic
18989                                                                                                 joint supplement (other)
18991                                                                                             ivermectin, pyrantel pamoate
18993                                                                                                                probiotic
18997                                                                                                   acetaminophen, codeine
18998                                                                                                       maropitant citrate
19003                                                                                                 fipronil, (s)-methoprene
19004                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                        betamethasone, gentamicin sulfate
19006                                                                                                        hypochlorous acid
19008                                                                                                               wind toxin
19009                                                                                                            stomach happy
19015                                                                                                               cetirizine
19019                                                                                                   acetaminophen, codeine
19021                                                                                           polysulfated glycosaminoglycan
19022                                                                                               milbemycin oxime, spinosad
19023                                                                          betamethasone, clotrimazole, gentamicin sulfate
19025                                                                                              lufenuron, milbemycin oxime
19040                                                                                               milbemycin oxime, spinosad
19041                                                                                                         milbemycin oxime
19043                                                                                                 fipronil, (s)-methoprene
19051                                                                                                 fipronil, (s)-methoprene
19055                                                                                                 fipronil, (s)-methoprene
19056                                                                                                             multivitamin
19057                                                                          dexamethasone, enrofloxacin, miconazole nitrate
19061                                                                                                 fipronil, (s)-methoprene
19062                                                                                             ivermectin, pyrantel pamoate
19068                                                                                             ivermectin, pyrantel pamoate
19070                                                                                              lufenuron, milbemycin oxime
19072                                                                                                 fipronil, (s)-methoprene
19073                                                                                              lufenuron, milbemycin oxime
19077                                                                                                 fipronil, (s)-methoprene
19078                                                                                              lufenuron, milbemycin oxime
19082                                                                                                 fipronil, (s)-methoprene
19102                                                                                                 imidacloprid, moxidectin
19122                                                                                                 imidacloprid, permethrin
19130                                                                                                               fluralaner
19152                                                                               dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                               afoxolaner
19154                                                                                                         milbemycin oxime
19159                                                                                                                lomustine
19165                                                                                             ivermectin, pyrantel pamoate
19169                                                                                                               ivermectin
19170                                                                                                 fipronil, (s)-methoprene
19183                                                                                                 flumethrin, imidacloprid
19184                                                                                                               ivermectin
19213                                                                                                         pyrantel pamoate
19214                                                                                                              toltrazuril
19215                                                                                              lufenuron, milbemycin oxime
19216                                                                                    dinotefuran, permethrin, pyriproxyfen
19217                                                                                    dinotefuran, permethrin, pyriproxyfen
19220                                                                                             ivermectin, pyrantel pamoate
19221                                                                                             ivermectin, pyrantel pamoate
19222                                                                                                               fluralaner
19223                                                                                             ivermectin, pyrantel pamoate
19224                                                                                                 flumethrin, imidacloprid
19241                                                                                                     cefpodoxime proxetil
19242                                                                                                                carprofen
19246                                                                                                 joint supplement (other)
19252                                                                                                            ciprofloxacin
19253                                                                                                     cefpodoxime proxetil
19254                                                                                                               prednisone
19255                                                                                             ivermectin, pyrantel pamoate
19256                                                                                             ivermectin, pyrantel pamoate
19257                                                                                                         milbemycin oxime
19258                                                                                                         milbemycin oxime
19259                                                                                                         milbemycin oxime
19271                                                                                              lufenuron, milbemycin oxime
19272                                                                                                               fluralaner
19273                                                                                              lufenuron, milbemycin oxime
19276                                                                             florfenicol, mometasone furoate, terbinafine
19278                                                                                              lufenuron, milbemycin oxime
19281                                                                                              lufenuron, milbemycin oxime
19282                                                                                                               fluralaner
19288                                                                             florfenicol, mometasone furoate, terbinafine
19298                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                             florfenicol, mometasone furoate, terbinafine
19315                                                                                                 fipronil, (s)-methoprene
19318                                                                                                 fipronil, (s)-methoprene
19325                                                                                                     prednisolone acetate
19326                                                                                              lufenuron, milbemycin oxime
19327                                                                                                 imidacloprid, permethrin
19331                                                                                                            metronidazole
19335                                                                                                     cefpodoxime proxetil
19336                                                                                                                carprofen
19338                                                                                                         liver supplement
19350                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
19353                                                                                           polysulfated glycosaminoglycan
19354                                                                                                             chlorambucil
19356                                                                                                               ivermectin
19357                                                                                                         milbemycin oxime
19373                                                                                             ivermectin, pyrantel pamoate
19374                                                                                                                sarolaner
19386                                                                                              lufenuron, milbemycin oxime
19387                                                                                              lufenuron, milbemycin oxime
19390                                                                                        betamethasone, gentamicin sulfate
19391                                                                                              lufenuron, milbemycin oxime
19423                                                                               ivermectin, praziquantel, pyrantel pamoate
19424                                                                                                                 fipronil
19427                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19445                                                                                              lufenuron, milbemycin oxime
19446                                                                                                   cyphenothrin, fipronil
19447                                                                                              lufenuron, milbemycin oxime
19448                                                                                                               fluralaner
19449                                                                               joint supplement (chondroitin sulfate/msm)
19450                                                                                                                  omega 3
19451                                                                                                            metronidazole
19452                                                                                    chlorhexidine gluconate, ketoconazole
19453                                                                          betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                  ketoconazole, tris-edta
19457                                                                                              lufenuron, milbemycin oxime
19461                                                                                                               fluralaner
19462                                                                                              lufenuron, milbemycin oxime
19463                                                                                                               fluralaner
19464                                                                                                             enrofloxacin
19465                                                                                           ketoconazole, phytosphingosine
19476                                                                                                                meloxicam
19482                                                                                             ivermectin, pyrantel pamoate
19486                                                                                             ivermectin, pyrantel pamoate
19487                                                                                                               afoxolaner
19491                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19492                                                                                             ivermectin, pyrantel pamoate
19493                                                                                                               afoxolaner
19495                                                                               toothpaste/dental health solution or chews
19500                                                                                        betamethasone, gentamicin sulfate
19537                                                                                                               ivermectin
19567                                                                                                             ketoconazole
19568                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
19596                                                                                lufenuron, milbemycin oxime, praziquantel
19597                                                                                    dinotefuran, permethrin, pyriproxyfen
19603                                                                                               milbemycin oxime, spinosad
19604                                                                                    dinotefuran, permethrin, pyriproxyfen
19617                                                                                                 fipronil, (s)-methoprene
19618                                                                                                          diphenhydramine
19641                                                                                                            yunnan baiyao
19651                                                                             dexamethasone, neomycin sulfate, polymyxin b
19662                                                                                                                probiotic
19663                                                                                       amoxicillin, clavulanate potassium
19669                                                                                                         milbemycin oxime
19673                                                                                             ivermectin, pyrantel pamoate
19674                                                                                                                sarolaner
19684                                                                                              lufenuron, milbemycin oxime
19685                                                                                              lufenuron, milbemycin oxime
19686                                                                                              lufenuron, milbemycin oxime
19688                                                                                              lufenuron, milbemycin oxime
19689                                                                                              lufenuron, milbemycin oxime
19690                                                                          betamethasone, clotrimazole, gentamicin sulfate
19708                                                                                             ivermectin, pyrantel pamoate
19710                                                                                             ivermectin, pyrantel pamoate
19711                                                                                lufenuron, milbemycin oxime, praziquantel
19712                                                                                                 flumethrin, imidacloprid
19713                                                                                lufenuron, milbemycin oxime, praziquantel
19714                                                                                                 flumethrin, imidacloprid
19715                                                                                              lufenuron, milbemycin oxime
19716                                                                                                 flumethrin, imidacloprid
19717                                                                                              lufenuron, milbemycin oxime
19718                                                                                                 flumethrin, imidacloprid
19722                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19735                                                                          betamethasone, clotrimazole, gentamicin sulfate
19737                                                                          betamethasone, clotrimazole, gentamicin sulfate
19741                                                                                              lufenuron, milbemycin oxime
19754                                                                                                         milbemycin oxime
19767                                                                                         naphazoline, pheniramine maleate
19768                                                                                                               selamectin
19771                                                                                               milbemycin oxime, spinosad
19776                                                                                               milbemycin oxime, spinosad
19777                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                          dexmedetomidine
19788                                                                              chlorhexidine gluconate, miconazole nitrate
19790                                                                                                                mupirocin
19792                                                                                       chlorhexidine gluconate, ophytrium
19800                                                                                              lufenuron, milbemycin oxime
19801                                                                                                               fluralaner
19803                                                                                              lufenuron, milbemycin oxime
19823                                                                                                       gentamicin sulfate
19828                                                                                           milbemycin oxime, praziquantel
19829                                                                                    dinotefuran, permethrin, pyriproxyfen
19838                                                                                                              omega 3-6-9
19843                                                                           mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                               lokivetmab
19845                                                                           mometasone furoate, orbifloxacin, posaconazole
19851                                                                                                               ivermectin
19853                                                                                                         milbemycin oxime
19854                                                                                                                 fipronil
19856                                                                                                         milbemycin oxime
19857                                                                                                                 fipronil
19860                                                                                                                carprofen
19866                                                                                        betamethasone, gentamicin sulfate
19876                                                                                                            marbofloxacin
19881                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19888                                                                               ivermectin, praziquantel, pyrantel pamoate
19907                                                                                               milbemycin oxime, spinosad
19909                                                                                                         milbemycin oxime
19911                                                                               toothpaste/dental health solution or chews
19912                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19914                                                                                                     prebiotic, probiotic
19917                                                                                     diatomaceous earth, neem oil, yarrow
19925                                                                                                             enrofloxacin
19926                                                                                                              florfenicol
19927                                                                                                       gentamicin sulfate
19928                                                                                                              polymyxin b
19930                                                                                               milbemycin oxime, spinosad
19932                                                                                               milbemycin oxime, spinosad
19933                                                                                               milbemycin oxime, spinosad
19936                                                                                               milbemycin oxime, spinosad
19943                                                                                               milbemycin oxime, spinosad
19944                                                                                       joint supplement (glucosamine hcl)
19945                                                                                                                  omega 3
19946                                                                                               milbemycin oxime, spinosad
19947                                                                                       joint supplement (glucosamine hcl)
19948                                                                                                                  omega 3
19949                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                  omega 3
19952                                                                                                         pyrantel pamoate
19958                                                                                                 flumethrin, imidacloprid
19969                                                                                        betamethasone, gentamicin sulfate
19975                                                                                             ivermectin, pyrantel pamoate
19984                                                                                                               fluralaner
20001                                                                                                              doxycycline
20002                                                                                                               cephalexin
20003                                                                                             ivermectin, pyrantel pamoate
20006                                                                                       amoxicillin, clavulanate potassium
20007                                                                                        betamethasone, gentamicin sulfate
20019                                                                                             ivermectin, pyrantel pamoate
20020                                                                                                               afoxolaner
20024                                                                                                                probiotic
20025                                                                                                     digestive supplement
20026                                                                                                             multivitamin
20027                                                                                                               afoxolaner
20028                                                                                             ivermectin, pyrantel pamoate
20038                                                                                                               afoxolaner
20039                                                                                                               ivermectin
20065                                                                                                             imidacloprid
20067                                                                                                          diphenhydramine
20068                                                                                                               nitenpyram
20069                                                                                    chlorhexidine gluconate, ketoconazole
20070                                                                                                 imidacloprid, moxidectin
20072                                                                                                               ivermectin
20074                                                                                               milbemycin oxime, spinosad
20096                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20099                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20105                                                                                                         atropine sulfate
20106                                                                                                                 xylazine
20125                                                                                                  triamcinolone acetonide
20126                                                                                                               ivermectin
20127                                                                                                               afoxolaner
20130                                                                                                  acetic acid, boric acid
20131                                                                                                         milbemycin oxime
20135                                                                                           milbemycin oxime, praziquantel
20144                                                                                                         milbemycin oxime
20145                                                                                                               lokivetmab
20149                                                                                                         burow's solution
20150                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20164                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20173                                                                                                 imidacloprid, permethrin
20174                                                                                              lufenuron, milbemycin oxime
20175                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20179                                                                                                              hydroxyzine
20182                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20193                                                                                   joint supplement (glucosamine hcl/msm)
20195                                                                                                               afoxolaner
20218                                                                                                               ivermectin
20219                                                                                                               ivermectin
20220                                                                                                               ivermectin
20221                                                                                                               afoxolaner
20222                                                                                                               afoxolaner
20224                                                                                                               afoxolaner
20225                                                                                                     cefpodoxime proxetil
20226                                                                                                               afoxolaner
20231                                                                                                                ketotifen
20232                                                                                               imidacloprid, pyriproxyfen
20233                                                                                              lufenuron, milbemycin oxime
20234                                                                             dexamethasone, neomycin sulfate, polymyxin b
20240                                                                                                 imidacloprid, permethrin
20241                                                                                               imidacloprid, pyriproxyfen
20243                                                                                       fipronil, permethrin, pyriproxyfen
20244                                                                                                               ivermectin
20245                                                                                             ivermectin, pyrantel pamoate
20246                                                                                             ivermectin, pyrantel pamoate
20247                                                                                                               afoxolaner
20251                                                                                                                probiotic
20272                                                                               toothpaste/dental health solution or chews
20275                                                                                              lufenuron, milbemycin oxime
20282                                                                                              lufenuron, milbemycin oxime
20292                                                                                                               ivermectin
20293                                                                                    dinotefuran, permethrin, pyriproxyfen
20295                                                                                    dinotefuran, permethrin, pyriproxyfen
20297                                                                                                 imidacloprid, moxidectin
20298                                                                                                               tobramycin
20299                                                                             florfenicol, mometasone furoate, terbinafine
20300                                                                                                 imidacloprid, moxidectin
20301                                                                                                 flumethrin, imidacloprid
20302                                                                                                 imidacloprid, moxidectin
20303                                                                                                 flumethrin, imidacloprid
20306                                                                                              lufenuron, milbemycin oxime
20307                                                                                                               cetirizine
20312                                                                                              lufenuron, milbemycin oxime
20315                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20324                                                                                                               alprazolam
20337                                                                                                  ketoconazole, tris-edta
20339                                                                                                  acetic acid, boric acid
20340                                                                                                      silver sulfadiazine
20342                                                                                                                pramoxine
20343                                                                                        trimeprazine tartrate, prednisone
20344                                                                                               milbemycin oxime, spinosad
20348                                                                                             ivermectin, pyrantel pamoate
20356                                                                                           milbemycin oxime, praziquantel
20374                                                                                                             fenbendazole
20376                                                                                                                probiotic
20377                                                                                              lufenuron, milbemycin oxime
20378                                                                                              lufenuron, milbemycin oxime
20380                                                                                                                probiotic
20382                                                                                 febantel, praziquantel, pyrantel pamoate
20387                                                                                              lufenuron, milbemycin oxime
20388                                                                                              lufenuron, milbemycin oxime
20390                                                                                              lufenuron, milbemycin oxime
20392                                                                               dimethyl sulfoxide, fluocinolone acetonide
20393                                                                                                                mupirocin
20402                                                                                              lufenuron, milbemycin oxime
20405                                                                                           milbemycin oxime, praziquantel
20406                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
20409                                                                                           milbemycin oxime, praziquantel
20411                                                                                           milbemycin oxime, praziquantel
20413                                                                                                         milbemycin oxime
20425                                                                                              lufenuron, milbemycin oxime
20426                                                                                lufenuron, milbemycin oxime, praziquantel
20437                                                                                             ivermectin, pyrantel pamoate
20438                                                                                                               afoxolaner
20441                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20442                                                                                                               cephalexin
20444                                                                                                                meloxicam
20446                                                                                                                meloxicam
20453                                                                                              lufenuron, milbemycin oxime
20460                                                                                              lufenuron, milbemycin oxime
20485                                                                                                                mupirocin
20490                                                                                             ivermectin, pyrantel pamoate
20491                                                                                                               afoxolaner
20510                                                                                               sulfadiazine, trimethoprim
20511                                                                                             ivermectin, pyrantel pamoate
20512                                                                                                               afoxolaner
20516                                                                                             ivermectin, pyrantel pamoate
20517                                                                                                               afoxolaner
20518                                                                                                                  omega 3
20519                                                                                               sulfadiazine, trimethoprim
20554                                                                                               milbemycin oxime, spinosad
20555                                                                                               milbemycin oxime, spinosad
20557                                                                                               milbemycin oxime, spinosad
20561                                                                                               milbemycin oxime, spinosad
20565                                                                                               milbemycin oxime, spinosad
20568                                                                                               milbemycin oxime, spinosad
20574                                                                                                  ketoconazole, tris-edta
20577                                                                                       chlorhexidine gluconate, tris-edta
20579                                                                                               milbemycin oxime, spinosad
20582                                                                                               milbemycin oxime, spinosad
20585                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20615                                                                                               imidacloprid, pyriproxyfen
20623                                                                                                                probiotic
20636                                                                                                 fipronil, (s)-methoprene
20637                                                                                                               ivermectin
20638                                                                                       fipronil, permethrin, pyriproxyfen
20640                                                                                             ivermectin, pyrantel pamoate
20641                                                                 citronella, geranium oil, lemongrass oil, peppermint oil
20642                                                                                                 fipronil, (s)-methoprene
20645                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20648                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20651                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20659                                                                                                  jing tang max's formula
20666                                                                                                immune support supplement
20667                                                                                                                probiotic
20678                                                                                                              finasteride
20698                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20700                                                                               ivermectin, praziquantel, pyrantel pamoate
20701                                                                                               imidacloprid, pyriproxyfen
20702                                                                                             ivermectin, pyrantel pamoate
20704                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20705                                                                                                  chlorhexidine gluconate
20707                                                                                               milbemycin oxime, spinosad
20708                                                                                                  chlorhexidine gluconate
20709                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20712                                                                                                        unspecified wipes
20717                                                                                                         milbemycin oxime
20718                                                                                                         milbemycin oxime
20719                                                                                    dinotefuran, permethrin, pyriproxyfen
20728                                                                                                              amoxicillin
20738                                                                                                               prednisone
20745                                                                                        betamethasone, gentamicin sulfate
20748                                                                                             ivermectin, pyrantel pamoate
20750                                                                          betamethasone, clotrimazole, gentamicin sulfate
20761                                                                                               milbemycin oxime, spinosad
20762                                                                                               milbemycin oxime, spinosad
20763                                                                                               milbemycin oxime, spinosad
20766                                                                                               milbemycin oxime, spinosad
20767                                                                                               milbemycin oxime, spinosad
20771                                                                                       amoxicillin, clavulanate potassium
20783                                                                                               milbemycin oxime, spinosad
20791                                                                                   joint supplement (glucosamine hcl/msm)
20796                                                                                   joint supplement (glucosamine hcl/msm)
20799                                                                                                               selamectin
20800                                                                                                         milbemycin oxime
20808                                                                                             ivermectin, pyrantel pamoate
20809                                                                                                               afoxolaner
20814                                                                                        betamethasone, gentamicin sulfate
20817                                                                                               milbemycin oxime, spinosad
20819                                                                                               milbemycin oxime, spinosad
20820                                                                                                                  omega 3
20849                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20852                                                                                        trimeprazine tartrate, prednisone
20854                                                                                             ivermectin, pyrantel pamoate
20855                                                                                                               afoxolaner
20857                                                                                                               afoxolaner
20858                                                                                             ivermectin, pyrantel pamoate
20859                                                                                                               afoxolaner
20860                                                                                                                trazodone
20861                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20862                                                                                             ivermectin, pyrantel pamoate
20863                                                                                                               afoxolaner
20872                                                                                                               selamectin
20897                                                                                                                mupirocin
20918                                                                                        trimeprazine tartrate, prednisone
20939                                                                                                 flumethrin, imidacloprid
20940                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20941                                                                                                             multivitamin
20947                                                                                                 flumethrin, imidacloprid
20949                                                                                                 flumethrin, imidacloprid
20962                                                                                             ivermectin, pyrantel pamoate
20963                                                                                                 fipronil, (s)-methoprene
20964                                                                                             ivermectin, pyrantel pamoate
20965                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20966                                                                                             ivermectin, pyrantel pamoate
20971                                                                                    dinotefuran, permethrin, pyriproxyfen
20972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21003                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21013                                                                             dexamethasone, neomycin sulfate, polymyxin b
21017                                                                                chlorhexidine gluconate, phytosphingosine
21022                                                                                               milbemycin oxime, spinosad
21025                                                                                        trimeprazine tartrate, prednisone
21029                                                                                               milbemycin oxime, spinosad
21069                                                                                                               cephalexin
21070                                                                                                               fluralaner
21071                                                                                                         milbemycin oxime
21074                                                                                               milbemycin oxime, spinosad
21078                                                                                               milbemycin oxime, spinosad
21080                                                                                               milbemycin oxime, spinosad
21087                                                                                                               indoxacarb
21088                                                                                                                 niosomes
21091                                                                                                               afoxolaner
21098                                                                                                               selamectin
21100                                                                                                               selamectin
21102                                                                                                               selamectin
21103                                                                                                               fluralaner
21108                                                                                              lufenuron, milbemycin oxime
21109                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21110                                                                                              lufenuron, milbemycin oxime
21111                                                                          betamethasone, clotrimazole, gentamicin sulfate
21112                                                                                                  ketoconazole, tris-edta
21114                                                                                                         milbemycin oxime
21115                                                                                                                 fipronil
21116                                                                                                         sulfadimethoxine
21117                                                                                                     cefpodoxime proxetil
21118                                                                                                                carprofen
21119                                                                               dextromethorphan hydrobromide, guaifenesin
21122                                                                                                         milbemycin oxime
21123                                                                                                                 fipronil
21124                                                                           dexamethasone, neomycin sulfate, thiabendazole
21125                                                                           mometasone furoate, orbifloxacin, posaconazole
21126                                                                                                     cefpodoxime proxetil
21127                                                                                              lufenuron, milbemycin oxime
21128                                                                                                               prednisone
21129                                                                                                     cefpodoxime proxetil
21130                                                                                                                  omega 3
21131                                                                                       chlorhexidine gluconate, ophytrium
21132                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21133                                                                                              lufenuron, milbemycin oxime
21168                                                                                             ivermectin, pyrantel pamoate
21169                                                                                                 fipronil, (s)-methoprene
21170                                                                                             ivermectin, pyrantel pamoate
21172                                                                                                         milbemycin oxime
21178                                                                             dexamethasone, neomycin sulfate, polymyxin b
21179                                                                                              lufenuron, milbemycin oxime
21180                                                                                               milbemycin oxime, spinosad
21181                                                                                              lufenuron, milbemycin oxime
21182                                                                                              lufenuron, milbemycin oxime
21183                                                                                              lufenuron, milbemycin oxime
21189                                                                                               milbemycin oxime, spinosad
21190                                                                                               milbemycin oxime, spinosad
21192                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
21201                                                                                           milbemycin oxime, praziquantel
21224                                                                                                             erythromycin
21253                                                                                               milbemycin oxime, spinosad
21254                                                                                              lufenuron, milbemycin oxime
21256                                                                                              lufenuron, milbemycin oxime
21267                                                                                               milbemycin oxime, spinosad
21268                                                                          betamethasone, clotrimazole, gentamicin sulfate
21269                                                                                               milbemycin oxime, spinosad
21273                                                                                              lufenuron, milbemycin oxime
21278                                                                          betamethasone, clotrimazole, gentamicin sulfate
21282                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21287                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21309                                                                                        trimeprazine tartrate, prednisone
21326                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21328                                                                                                              hydroxyzine
21331                                                                                       joint supplement (glucosamine hcl)
21336                                                                                           sulfamethoxazole, trimethoprim
21337                                                                                             ivermectin, pyrantel pamoate
21338                                                                                               imidacloprid, pyriproxyfen
21348                                                                                                            levothyroxine
21359                                                                                              lufenuron, milbemycin oxime
21361                                                                                              lufenuron, milbemycin oxime
21364                                                                                                              amoxicillin
21367                                                                                                                meloxicam
21369                                                                                              lufenuron, milbemycin oxime
21373                                                                                                               gabapentin
21374                                                                                                            metronidazole
21376                                                                                               milbemycin oxime, spinosad
21384                                                                                             ivermectin, pyrantel pamoate
21385                                                                                                               afoxolaner
21386                                                                          betamethasone, clotrimazole, gentamicin sulfate
21387                                                                                                             enrofloxacin
21388                                                                                                             ketoconazole
21389                                                                                                  triamcinolone acetonide
21394                                                                                             ivermectin, pyrantel pamoate
21403                                                                                                         milbemycin oxime
21413                                                                                                   unspecified medication
21416                                                                             florfenicol, mometasone furoate, terbinafine
21437                                                                                             ivermectin, pyrantel pamoate
21438                                                                                                               afoxolaner
21442                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21445                                                                                             ivermectin, pyrantel pamoate
21447                                                                                                               afoxolaner
21448                                                                                             ivermectin, pyrantel pamoate
21449                                                                                                               afoxolaner
21460                                                                                              lufenuron, milbemycin oxime
21465                                                                                                               gabapentin
21472                                                                                       amoxicillin, clavulanate potassium
21481                                                                                               imidacloprid, pyriproxyfen
21491                                                                                                       gentamicin sulfate
21492                                                                                             ivermectin, pyrantel pamoate
21493                                                                                                               afoxolaner
21495                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21498                                                                                                               lokivetmab
21504                                                                                                             fenbendazole
21507                                                                                                             fenbendazole
21508                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21509                                                                                                         pyrantel pamoate
21522                                                                                  betamethasone, florfenicol, terbinafine
21527                                                                                                 imidacloprid, moxidectin
21528                                                                                                             imidacloprid
21531                                                                                             ivermectin, pyrantel pamoate
21532                                                                                             ivermectin, pyrantel pamoate
21533                                                                                                               afoxolaner
21534                                                                                           polysulfated glycosaminoglycan
21535                                                                                                              oclacitinib
21545                                                                                                               fluralaner
21546                                                                             florfenicol, mometasone furoate, terbinafine
21547                                                                                                               cephalexin
21548                                                                                                               cephalexin
21549                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21552                                                                                           ketoconazole, phytosphingosine
21553                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21554                                                                                                            dexamethasone
21555                                                                                                            dexamethasone
21558                                                                                              lufenuron, milbemycin oxime
21561                                                                                              lufenuron, milbemycin oxime
21562                                                                                               imidacloprid, pyriproxyfen
21563                                                                                              lufenuron, milbemycin oxime
21564                                                                                               imidacloprid, pyriproxyfen
21580                                                                                                 fipronil, (s)-methoprene
21585                                                                                               milbemycin oxime, spinosad
21586                                                                                                         milbemycin oxime
21587                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21593                                                                                                                  omega 3
21600                                                                                                                meloxicam
21602                                                                                              lufenuron, milbemycin oxime
21603                                                                                                               fluralaner
21604                                                                                       amoxicillin, clavulanate potassium
21605                                                                                                                meloxicam
21606                                                                                                                 tramadol
21607                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21608                                                                                              lufenuron, milbemycin oxime
21609                                                                                                               fluralaner
21612                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21614                                                                                                               fluralaner
21615                                                                                              lufenuron, milbemycin oxime
21616                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21617                                                                                              lufenuron, milbemycin oxime
21618                                                                                                               fluralaner
21619                                                                                              lufenuron, milbemycin oxime
21620                                                                                                               fluralaner
21621                                                                                              lufenuron, milbemycin oxime
21622                                                                                                               fluralaner
21625                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21626                                                                                              lufenuron, milbemycin oxime
21627                                                                                                               fluralaner
21632                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21637                                                                             dexamethasone, neomycin sulfate, polymyxin b
21642                                                                                              lufenuron, milbemycin oxime
21643                                                                                              lufenuron, milbemycin oxime
21644                                                                                              lufenuron, milbemycin oxime
21645                                                                                              lufenuron, milbemycin oxime
21646                                                                                              lufenuron, milbemycin oxime
21648                                                                                               imidacloprid, pyriproxyfen
21649                                                                                              lufenuron, milbemycin oxime
21650                                                                                                                probiotic
21651                                                                                              lufenuron, milbemycin oxime
21652                                                                                                 flumethrin, imidacloprid
21653                                                                                                      ear cleaner (zymox)
21654                                                                                              lufenuron, milbemycin oxime
21655                                                                                                 flumethrin, imidacloprid
21658                                                                                                 flumethrin, imidacloprid
21659                                                                                                      ear cleaner (zymox)
21660                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21661                                                                                        betamethasone, gentamicin sulfate
21666                                                                                                 flumethrin, imidacloprid
21673                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21677                                                                                                                probiotic
21678                                                                                        betamethasone, gentamicin sulfate
21680                                                                             florfenicol, mometasone furoate, terbinafine
21685                                                                                                                mupirocin
21701                                                                                                 flumethrin, imidacloprid
21705                                                                                                 flumethrin, imidacloprid
21707                                                                                                 flumethrin, imidacloprid
21708                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21723                                                                                               milbemycin oxime, spinosad
21725                                                                                                         milbemycin oxime
21726                                                                                                               fluralaner
21727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21738                                                                                              lufenuron, milbemycin oxime
21739                                                                                              lufenuron, milbemycin oxime
21748                                                                                              lufenuron, milbemycin oxime
21749                                                                                                 imidacloprid, permethrin
21753                                                                                                         milbemycin oxime
21754                                                                                                         milbemycin oxime
21755                                                                                                               fluralaner
21757                                                                                                         milbemycin oxime
21759                                                                                                               fluralaner
21760                                                                                                         milbemycin oxime
21767                                                                                                                trazodone
21782                                                                                             ivermectin, pyrantel pamoate
21783                                                                                   fipronil, pyriproxyfen, (s)-methoprene
21787                                                                                                               afoxolaner
21796                                                                                                               ivermectin
21809                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21810                                                                                               cardiac support supplement
21814                                                                                             ivermectin, pyrantel pamoate
21815                                                                                                 fipronil, (s)-methoprene
21833                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21844                                                                                             ivermectin, pyrantel pamoate
21851                                                                                                         milbemycin oxime
21865                                                                                             ivermectin, pyrantel pamoate
21866                                                                                               imidacloprid, pyriproxyfen
21867                                                                                 febantel, praziquantel, pyrantel pamoate
21869                                                                                                               ivermectin
21872                                                                                               imidacloprid, pyriproxyfen
21873                                                                                             ivermectin, pyrantel pamoate
21875                                                                                             ivermectin, pyrantel pamoate
21876                                                                                               imidacloprid, pyriproxyfen
21877                                                                                                              oclacitinib
21878                                                                                                           hydrocortisone
21886                                                                                               imidacloprid, pyriproxyfen
21894                                                                                              lufenuron, milbemycin oxime
21897                                                                                              lufenuron, milbemycin oxime
21898                                                                                                               afoxolaner
21899                                                                                                             fenbendazole
21911                                                                                                          diphenhydramine
21912                                                                                             ivermectin, pyrantel pamoate
21914                                                                                                               ivermectin
21915                                                                                                 fipronil, (s)-methoprene
21918                                                                                                                probiotic
21921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21925                                                                              rx diet - hypoallergenic hydrolyzed protein
21927                                                                                                               prednisone
21949                                                                             florfenicol, mometasone furoate, terbinafine
21955                                                                                                               fluralaner
21956                                                                                                               ivermectin
21957                                                                                                                  omega 3
21959                                                                                           sulfamethoxazole, trimethoprim
21982                                                                                       fipronil, permethrin, pyriproxyfen
21993                                                                                                         milbemycin oxime
22013                                                                                                 fipronil, (s)-methoprene
22016                                                                                                 fipronil, (s)-methoprene
22017                                                                                             ivermectin, pyrantel pamoate
22020                                                                                         phytosphingosine, salicylic acid
22022                                                                                                               sucralfate
22023                                                                                              lufenuron, milbemycin oxime
22024                                                                                                               afoxolaner
22025                                                                                              lufenuron, milbemycin oxime
22026                                                                                              lufenuron, milbemycin oxime
22027                                                                                                               afoxolaner
22037                                                                                             ivermectin, pyrantel pamoate
22038                                                                                                               afoxolaner
22041                                                                                             ivermectin, pyrantel pamoate
22042                                                                                                               afoxolaner
22043                                                                                                                meloxicam
22045                                                                                             ivermectin, pyrantel pamoate
22046                                                                                                               afoxolaner
22048                                                                                        betamethasone, gentamicin sulfate
22050                                                                                                                probiotic
22051                                                                                               milbemycin oxime, spinosad
22052                                                                                               milbemycin oxime, spinosad
22060                                                                                               milbemycin oxime, spinosad
22062                                                                                                         milbemycin oxime
22063                                                                                                               fluralaner
22064                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22088                                                                                             ivermectin, pyrantel pamoate
22089                                                                                                               afoxolaner
22092                                                                                             ivermectin, pyrantel pamoate
22093                                                                                                               afoxolaner
22112                                                                                                               afoxolaner
22118                                                                                                               ivermectin
22120                                                                             dexamethasone, neomycin sulfate, polymyxin b
22121                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22125                                                                                             ivermectin, pyrantel pamoate
22128                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22136                                                                                             ivermectin, pyrantel pamoate
22137                                                                                                               afoxolaner
22140                                                                                                         milbemycin oxime
22141                                                                                                               fluralaner
22151                                                                                                              vincristine
22159                                                                                                               ivermectin
22160                                                                                             ivermectin, pyrantel pamoate
22161                                                                                             ivermectin, pyrantel pamoate
22162                                                                                                                carprofen
22163                                                                                             ivermectin, pyrantel pamoate
22173                                                                                             ivermectin, pyrantel pamoate
22175                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22176                                                                                             ivermectin, pyrantel pamoate
22177                                                                                                               afoxolaner
22179                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22189                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22190                                                                                          ear cleaner (epi-otic advanced)
22191                                                                             florfenicol, mometasone furoate, terbinafine
22196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22197                                                                             florfenicol, mometasone furoate, terbinafine
22199                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22201                                                                             florfenicol, mometasone furoate, terbinafine
22216                                                                                             ivermectin, pyrantel pamoate
22217                                                                                                               afoxolaner
22218                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
22219                                                                          betamethasone, clotrimazole, gentamicin sulfate
22221                                                                                                   cyphenothrin, fipronil
22222                                                                                              lufenuron, milbemycin oxime
22223                                                                                              lufenuron, milbemycin oxime
22224                                                                                                                 fipronil
22225                                                                                              lufenuron, milbemycin oxime
22226                                                                                                               afoxolaner
22227                                                                                              lufenuron, milbemycin oxime
22228                                                                                                               afoxolaner
22229                                                                                                         milbemycin oxime
22230                                                                                                                lotilaner
22237                                                                                               milbemycin oxime, spinosad
22238                                                                                               milbemycin oxime, spinosad
22239                                                                                               milbemycin oxime, spinosad
22240                                                                                                                carprofen
22241                                                                                                          dexmedetomidine
22243                                                                                                   unspecified medication
22245                                                                                                               cephalexin
22253                                                                                               milbemycin oxime, spinosad
22260                                                                                                               afoxolaner
22261                                                                                             ivermectin, pyrantel pamoate
22262                                                                                                               afoxolaner
22265                                                                                             ivermectin, pyrantel pamoate
22267                                                                                             ivermectin, pyrantel pamoate
22268                                                                                                               afoxolaner
22269                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22270                                                                                                                  omega 3
22272                                                                                                                mupirocin
22289                                                                                                         milbemycin oxime
22299                                                                                               milbemycin oxime, spinosad
22306                                                                                              lufenuron, milbemycin oxime
22308                                                                                              lufenuron, milbemycin oxime
22311                                                                                              lufenuron, milbemycin oxime
22313                                                                                                          dexmedetomidine
22314                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22315                                                                                                                probiotic
22316                                                                                              lufenuron, milbemycin oxime
22319                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22321                                                                                              lufenuron, milbemycin oxime
22323                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22341                                                                                  betamethasone, florfenicol, terbinafine
22342                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22343                                                                                  betamethasone, florfenicol, terbinafine
22345                                                                                                             enrofloxacin
22346                                                                                                       miconazole nitrate
22347                                                                                                            dexamethasone
22349                                                                                                                meloxicam
22351                                                                                               milbemycin oxime, spinosad
22352                                                                                               milbemycin oxime, spinosad
22353                                                                                               milbemycin oxime, spinosad
22367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22403                                                                                                                carprofen
22404                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22407                                                                                                     cefpodoxime proxetil
22408                                                                                                  chlorhexidine gluconate
22410                                                                                                  chlorhexidine gluconate
22413                                                                                             ivermectin, pyrantel pamoate
22417                                                                                             ivermectin, pyrantel pamoate
22418                                                                                                               afoxolaner
22430                                                                                                                meloxicam
22439                                                                                               milbemycin oxime, spinosad
22440                                                                                               milbemycin oxime, spinosad
22441                                                                                              lufenuron, milbemycin oxime
22442                                                                                                               fluralaner
22459                                                                                                  triamcinolone acetonide
22463                                                                                                  triamcinolone acetonide
22482                                                                                                               lokivetmab
22520                                                                                                               sucralfate
22521                                                                                                               ivermectin
22524                                                                                                               ivermectin
22530                                                                                             ivermectin, pyrantel pamoate
22531                                                                                              lufenuron, milbemycin oxime
22532                                                                                              lufenuron, milbemycin oxime
22533                                                                                                 flumethrin, imidacloprid
22534                                                                                              lufenuron, milbemycin oxime
22537                                                                                                                ophytrium
22540                                                                                                            yunnan baiyao
22541                                                                                              lufenuron, milbemycin oxime
22545                                                                                              lufenuron, milbemycin oxime
22546                                                                                              lufenuron, milbemycin oxime
22547                                                                                               imidacloprid, pyriproxyfen
22548                                                                                              lufenuron, milbemycin oxime
22549                                                                                              lufenuron, milbemycin oxime
22552                                                                                                                  omega 3
22556                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
22557                                                                                             ivermectin, pyrantel pamoate
22558                                                                                             ivermectin, pyrantel pamoate
22574                                                                                                  triamcinolone acetonide
22575                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
22577                                                                                             ivermectin, pyrantel pamoate
22578                                                                                             ivermectin, pyrantel pamoate
22579                                                                                             ivermectin, pyrantel pamoate
22583                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22585                                                                                                                probiotic
22598                                                                                                 fipronil, (s)-methoprene
22599                                                                                                          diphenhydramine
22600                                                                                                     cefpodoxime proxetil
22601                                                                                                 fipronil, (s)-methoprene
22606                                                                                             ivermectin, pyrantel pamoate
22607                                                                                                 fipronil, (s)-methoprene
22610                                                                                               milbemycin oxime, spinosad
22611                                                                                               milbemycin oxime, spinosad
22625                                                                                             ivermectin, pyrantel pamoate
22653                                                                                              lufenuron, milbemycin oxime
22655                                                                                                 fipronil, (s)-methoprene
22656                                                                                              lufenuron, milbemycin oxime
22662                                                                          betamethasone, clotrimazole, gentamicin sulfate
22667                                                                          betamethasone, clotrimazole, gentamicin sulfate
22669                                                                          betamethasone, clotrimazole, gentamicin sulfate
22670                                                                                  betamethasone, florfenicol, terbinafine
22672                                                                          betamethasone, clotrimazole, gentamicin sulfate
22673                                                                                        trimeprazine tartrate, prednisone
22674                                                                                             ivermectin, pyrantel pamoate
22679                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22681                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22682                                                                                             ivermectin, pyrantel pamoate
22683                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22690                                                                                                 flumethrin, imidacloprid
22691                                                                                              lufenuron, milbemycin oxime
22692                                                                                              lufenuron, milbemycin oxime
22693                                                                                                         milbemycin oxime
22704                                                                                             ivermectin, pyrantel pamoate
22705                                                                                                 fipronil, (s)-methoprene
22707                                                                                             ivermectin, pyrantel pamoate
22708                                                                                                 fipronil, (s)-methoprene
22709                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22710                                                                                                       miconazole nitrate
22711                                                                                             ivermectin, pyrantel pamoate
22713                                                                                             ivermectin, pyrantel pamoate
22714                                                                                                                sarolaner
22715                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22716                                                                                             ivermectin, pyrantel pamoate
22717                                                                                                                sarolaner
22718                                                                                             ivermectin, pyrantel pamoate
22719                                                                                             ivermectin, pyrantel pamoate
22721                                                                                                       miconazole nitrate
22733                                                                                                 flumethrin, imidacloprid
22734                                                                                              lufenuron, milbemycin oxime
22748                                                                                              lufenuron, milbemycin oxime
22749                                                                                              lufenuron, milbemycin oxime
22750                                                                                               imidacloprid, pyriproxyfen
22751                                                                                              lufenuron, milbemycin oxime
22752                                                                                               imidacloprid, pyriproxyfen
22754                                                                                              lufenuron, milbemycin oxime
22763                                                                                             ivermectin, pyrantel pamoate
22764                                                                                               imidacloprid, pyriproxyfen
22765                                                                                          ear cleaner (epi-otic advanced)
22766                                                                                                         milbemycin oxime
22770                                                                                                         milbemycin oxime
22777                                                                                               milbemycin oxime, spinosad
22778                                                                                               milbemycin oxime, spinosad
22779                                                                                               milbemycin oxime, spinosad
22780                                                                                               milbemycin oxime, spinosad
22795                                                                                             ivermectin, pyrantel pamoate
22796                                                                                               imidacloprid, pyriproxyfen
22797                                                                                              lufenuron, milbemycin oxime
22798                                                                                       fipronil, permethrin, pyriproxyfen
22799                                                                                              lufenuron, milbemycin oxime
22800                                                                                                               afoxolaner
22801                                                                                              lufenuron, milbemycin oxime
22802                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22803                                                                                             ivermectin, pyrantel pamoate
22804                                                                                                               afoxolaner
22830                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22840                                                                                             ivermectin, pyrantel pamoate
22848                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22858                                                                                                  chlorhexidine gluconate
22875                                                                                               imidacloprid, pyriproxyfen
22886                                                                                                  ketoconazole, tris-edta
22909                                                                                             ivermectin, pyrantel pamoate
22910                                                                                                               afoxolaner
22911                                                                                                               fluoxetine
22912                                                                                                     prednisolone acetate
22919                                                                                                               afoxolaner
22920                                                                                                             fenbendazole
22921                                                                                                            metronidazole
22922                                                                                                  ketoconazole, tris-edta
22923                                                                                                     prebiotic, probiotic
22926                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22929                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22936                                                                                       chlorhexidine gluconate, tris-edta
22938                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22939                                                                          betamethasone, clotrimazole, gentamicin sulfate
22954                                                                                               imidacloprid, pyriproxyfen
22955                                                                                             ivermectin, pyrantel pamoate
22963                                                                                                 fipronil, (s)-methoprene
22965                                                                                             ivermectin, pyrantel pamoate
22966                                                                                                 flumethrin, imidacloprid
22967                                                                                                                probiotic
22970                                                                                                               fluralaner
22971                                                                                             ivermectin, pyrantel pamoate
22990                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22991                                                                                                         milbemycin oxime
22992                                                                                                             imidacloprid
22994                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23005                                                                                                            dexamethasone
23006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23007                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23008                                                                                                            dexamethasone
23009                                                                                                         pyrantel pamoate
23018                                                                                                            metronidazole
23019                                                                                                                carprofen
23024                                                                                                                probiotic
23025                                                                                                     digestive supplement
23043                                                                                                 joint supplement (other)
23049                                                                                                               ivermectin
23051                                                                                                               ivermectin
23053                                                                                             ivermectin, pyrantel pamoate
23055                                                                                                               fluralaner
23059                                                                                                         milbemycin oxime
23060                                                                                                         milbemycin oxime
23061                                                                                                               fluralaner
23064                                                                                              lufenuron, milbemycin oxime
23065                                                                                              lufenuron, milbemycin oxime
23066                                                                                              lufenuron, milbemycin oxime
23074                                                                                                               selamectin
23075                                                                                                               selamectin
23083                                                                                               milbemycin oxime, spinosad
23095                                                                                               milbemycin oxime, spinosad
23096                                                                                                               fluralaner
23100                                                                             florfenicol, mometasone furoate, terbinafine
23102                                                                                       amoxicillin, clavulanate potassium
23103                                                                             florfenicol, mometasone furoate, terbinafine
23108                                                                                                  chlorhexidine gluconate
23122                                                                                             ivermectin, pyrantel pamoate
23123                                                                                               imidacloprid, pyriproxyfen
23124                                                                                               imidacloprid, pyriproxyfen
23125                                                                                             ivermectin, pyrantel pamoate
23134                                                                                              lufenuron, milbemycin oxime
23137                                                                                              lufenuron, milbemycin oxime
23138                                                                                              lufenuron, milbemycin oxime
23141                                                                                       fipronil, permethrin, pyriproxyfen
23143                                                                                              lufenuron, milbemycin oxime
23144                                                                                                                sarolaner
23145                                                                                                            marbofloxacin
23146                                                                                                              oclacitinib
23153                                                                                                                mupirocin
23154                                                                             dexamethasone, neomycin sulfate, polymyxin b
23163                                                                           dexamethasone, neomycin sulfate, thiabendazole
23169                                                                                       unspecified heartworm preventative
23173                                                                                        unspecified parasite preventative
23175                                                                                             ivermectin, pyrantel pamoate
23184                                                                           mometasone furoate, orbifloxacin, posaconazole
23186                                                                                                              oclacitinib
23187                                                                                                               lokivetmab
23202                                                                                                               ivermectin
23237                                                                                           praziquantel, pyrantel pamoate
23248                                                                                                               fluralaner
23249                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23250                                                                                                               afoxolaner
23251                                                                                             ivermectin, pyrantel pamoate
23257                                                                                               lactated ringer's solution
23258                                                                                             ivermectin, pyrantel pamoate
23259                                                                                    dinotefuran, permethrin, pyriproxyfen
23266                                                                                                               isoflurane
23267                                                                                             ivermectin, pyrantel pamoate
23268                                                                                    dinotefuran, permethrin, pyriproxyfen
23276                                                                                                               isoflurane
23278                                                                                                         phytosphingosine
23279                                                                                             ivermectin, pyrantel pamoate
23280                                                                                                               afoxolaner
23281                                                                                                               cephalexin
23282                                                                                                              oclacitinib
23283                                                                                       chlorhexidine gluconate, ophytrium
23284                                                                                       amoxicillin, clavulanate potassium
23285                                                                                                              doxycycline
23286                                                                                             ivermectin, pyrantel pamoate
23288                                                                                                         phytosphingosine
23294                                                                                             ivermectin, pyrantel pamoate
23299                                                                                       amoxicillin, clavulanate potassium
23304                                                                                                         phytosphingosine
23305                                                                                chlorhexidine gluconate, phytosphingosine
23306                                                                                                  triamcinolone acetonide
23308                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23321                                                                                 febantel, praziquantel, pyrantel pamoate
23322                                                                                                                mupirocin
23325                                                                                                               lokivetmab
23333                                                                                             ivermectin, pyrantel pamoate
23336                                                                                             ivermectin, pyrantel pamoate
23337                                                                                                 fipronil, (s)-methoprene
23338                                                                                    dinotefuran, permethrin, pyriproxyfen
23340                                                                                          ear cleaner (epi-otic advanced)
23341                                                                                             ivermectin, pyrantel pamoate
23342                                                                                    dinotefuran, permethrin, pyriproxyfen
23344                                                                                             ivermectin, pyrantel pamoate
23345                                                                                    dinotefuran, permethrin, pyriproxyfen
23349                                                                                                         phytosphingosine
23350                                                                                             ivermectin, pyrantel pamoate
23351                                                                                                               afoxolaner
23352                                                                                                          diphenhydramine
23353                                                                                       amoxicillin, clavulanate potassium
23354                                                                                                              oclacitinib
23355                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23356                                                                                             ivermectin, pyrantel pamoate
23357                                                                                                               afoxolaner
23360                                                                                             ivermectin, pyrantel pamoate
23361                                                                                                               afoxolaner
23364                                                                                                         phytosphingosine
23366                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23384                                                                                                 fipronil, (s)-methoprene
23385                                                                                              lufenuron, milbemycin oxime
23386                                                                                                               cephalexin
23388                                                                                                               ivermectin
23389                                                                                                               ivermectin
23401                                                                                             ivermectin, pyrantel pamoate
23402                                                                                                               fluralaner
23403                                                                                                         milbemycin oxime
23404                                                                                                               fluralaner
23412                                                                                       fipronil, permethrin, pyriproxyfen
23413                                                                                                               ivermectin
23414                                                                                             ivermectin, pyrantel pamoate
23419                                                                                              dexamethasone, enrofloxacin
23422                                                                             florfenicol, mometasone furoate, terbinafine
23423                                                                             florfenicol, mometasone furoate, terbinafine
23427                                                                                              lufenuron, milbemycin oxime
23428                                                                                              lufenuron, milbemycin oxime
23437                                                                                               milbemycin oxime, spinosad
23450                                                                                       fipronil, permethrin, pyriproxyfen
23452                                                                                        betamethasone, gentamicin sulfate
23455                                                                                                                carprofen
23456                                                                                        betamethasone, gentamicin sulfate
23457                                                                                                               cephalexin
23472                                                                                    dinotefuran, permethrin, pyriproxyfen
23476                                                                                    dinotefuran, permethrin, pyriproxyfen
23477                                                                                              lufenuron, milbemycin oxime
23481                                                                                    dinotefuran, permethrin, pyriproxyfen
23482                                                                                    dinotefuran, permethrin, pyriproxyfen
23483                                                                                              lufenuron, milbemycin oxime
23484                                                                                                         milbemycin oxime
23485                                                                                    dinotefuran, permethrin, pyriproxyfen
23487                                                                                    dinotefuran, permethrin, pyriproxyfen
23491                                                                                       amoxicillin, clavulanate potassium
23503                                                                                    dinotefuran, permethrin, pyriproxyfen
23504                                                                                              lufenuron, milbemycin oxime
23507                                                                                              lufenuron, milbemycin oxime
23508                                                                                    dinotefuran, permethrin, pyriproxyfen
23509                                                                                    dinotefuran, permethrin, pyriproxyfen
23510                                                                                              lufenuron, milbemycin oxime
23514                                                                                                         milbemycin oxime
23515                                                                                    dinotefuran, permethrin, pyriproxyfen
23520                                                                                    dinotefuran, permethrin, pyriproxyfen
23533                                                                             dexamethasone, neomycin sulfate, polymyxin b
23534                                                                                        betamethasone, gentamicin sulfate
23540                                                                                             ivermectin, pyrantel pamoate
23541                                                                                                               afoxolaner
23548                                                                                              lufenuron, milbemycin oxime
23552                                                                                             ivermectin, pyrantel pamoate
23553                                                                                             ivermectin, pyrantel pamoate
23555                                                                                                                thyroxine
23556                                                                                                               ivermectin
23557                                                                                                               ivermectin
23558                                                                                                            levothyroxine
23565                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23566                                                                                      ear cleaner (zymox), hydrocortisone
23568                                                                                                 flumethrin, imidacloprid
23571                                                                                             ivermectin, pyrantel pamoate
23572                                                                                                 fipronil, (s)-methoprene
23588                                                                                               milbemycin oxime, spinosad
23589                                                                                  betamethasone, florfenicol, terbinafine
23590                                                                                                                vitamin c
23593                                                                                                            buprenorphine
23594                                                                                                               gabapentin
23610                                                                                              lufenuron, milbemycin oxime
23617                                                                                              lufenuron, milbemycin oxime
23618                                                                                              lufenuron, milbemycin oxime
23619                                                                                              lufenuron, milbemycin oxime
23620                                                                                              lufenuron, milbemycin oxime
23622                                                                                              lufenuron, milbemycin oxime
23646                                                                                               milbemycin oxime, spinosad
23647                                                                                               milbemycin oxime, spinosad
23651                                                                                           milbemycin oxime, praziquantel
23657                                                                                                         milbemycin oxime
23659                                                                                                               fluralaner
23685                                                                                              lufenuron, milbemycin oxime
23686                                                                                                               fluralaner
23688                                                                                                               fluralaner
23707                                                                                        betamethasone, gentamicin sulfate
23718                                                                                             ivermectin, pyrantel pamoate
23721                                                                                             ivermectin, pyrantel pamoate
23722                                                                                                               afoxolaner
23724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23730                                                                                              lufenuron, milbemycin oxime
23732                                                                                              lufenuron, milbemycin oxime
23733                                                                          betamethasone, clotrimazole, gentamicin sulfate
23740                                                                                                         milbemycin oxime
23747                                                                                              lufenuron, milbemycin oxime
23749                                                                                                   unspecified medication
23757                                                                                              lufenuron, milbemycin oxime
23758                                                                                                               fluralaner
23792                                                                                             ivermectin, pyrantel pamoate
23804                                                                                              lufenuron, milbemycin oxime
23805                                                                                              lufenuron, milbemycin oxime
23808                                                                                              lufenuron, milbemycin oxime
23809                                                                                                 flumethrin, imidacloprid
23819                                                                                              lufenuron, milbemycin oxime
23820                                                                                    dinotefuran, permethrin, pyriproxyfen
23824                                                                                                               selamectin
23825                                                                                                               cephalexin
23861                                                                                                         milbemycin oxime
23862                                                                                                               afoxolaner
23865                                                                                             ivermectin, pyrantel pamoate
23866                                                                                               imidacloprid, pyriproxyfen
23868                                                                                               imidacloprid, pyriproxyfen
23871                                                                                               imidacloprid, pyriproxyfen
23872                                                                                                  chlorhexidine gluconate
23873                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
23898                                                                                                 flumethrin, imidacloprid
23899                                                                              over-the-counter unmedicated shampoo/mousse
23900                                                                                              lufenuron, milbemycin oxime
23901                                                                                              lufenuron, milbemycin oxime
23902                                                                                                 flumethrin, imidacloprid
23905                                                                                lufenuron, milbemycin oxime, praziquantel
23906                                                                                                 flumethrin, imidacloprid
23909                                                                                                  chlorhexidine gluconate
23910                                                                                                         milbemycin oxime
23914                                                                             florfenicol, mometasone furoate, terbinafine
23917                                                                                                                mupirocin
23924                                                                                             ivermectin, pyrantel pamoate
23925                                                                                                               afoxolaner
23933                                                                                  betamethasone, florfenicol, terbinafine
23942                                                                                                                mupirocin
23955                                                                                                         milbemycin oxime
23956                                                                                                 fipronil, (s)-methoprene
23957                                                                                                            metronidazole
23958                                                                          betamethasone, clotrimazole, gentamicin sulfate
23959                                                                                                  ketoconazole, tris-edta
23965                                                                          betamethasone, clotrimazole, gentamicin sulfate
23969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23972                                                                                       fipronil, permethrin, pyriproxyfen
23974                                                                                               imidacloprid, pyriproxyfen
23976                                                                                               imidacloprid, pyriproxyfen
23980                                                                                                             multivitamin
23989                                                                                             ivermectin, pyrantel pamoate
23990                                                                                                               afoxolaner
24008                                                                                             ivermectin, pyrantel pamoate
24010                                                                                               milbemycin oxime, spinosad
24012                                                                             dexamethasone, neomycin sulfate, polymyxin b
24017                                                                                               milbemycin oxime, spinosad
24018                                                                                               milbemycin oxime, spinosad
24019                                                                                               milbemycin oxime, spinosad
24020                                                                                               milbemycin oxime, spinosad
24022                                                                                               milbemycin oxime, spinosad
24029                                                                                               milbemycin oxime, spinosad
24044                                                                                                               ivermectin
24045                                                                                             ivermectin, pyrantel pamoate
24046                                                                                                              oclacitinib
24062                                                                                              lufenuron, milbemycin oxime
24067                                                                                                                  omega 3
24068                                                                                                                probiotic
24069                                                                                                               ivermectin
24072                                                                                              lufenuron, milbemycin oxime
24075                                                                                              lufenuron, milbemycin oxime
24076                                                                                              lufenuron, milbemycin oxime
24077                                                                                              lufenuron, milbemycin oxime
24078                                                                                              lufenuron, milbemycin oxime
24079                                                                                              lufenuron, milbemycin oxime
24104                                                                                                                carprofen
24106                                                                                                                 tramadol
24113                                                                                                              doxycycline
24116                                                                                                               afoxolaner
24117                                                                                             ivermectin, pyrantel pamoate
24139                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24142                                                                               ivermectin, praziquantel, pyrantel pamoate
24144                                                                                                         milbemycin oxime
24145                                                                                       joint supplement (glucosamine hcl)
24146                                                                                    dinotefuran, permethrin, pyriproxyfen
24149                                                                                                         milbemycin oxime
24154                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24155                                                                                                                  omega 3
24157                                                                                                                sarolaner
24162                                                                               ivermectin, praziquantel, pyrantel pamoate
24165                                                                                                         milbemycin oxime
24166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24172                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24173                                                                                              lufenuron, milbemycin oxime
24174                                                                                             ivermectin, pyrantel pamoate
24185                                                                                                 homatropine, hydrocodone
24189                                                                                        betamethasone, gentamicin sulfate
24192                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24193                                                                                                                  omega 3
24194                                                                                             ivermectin, pyrantel pamoate
24195                                                                                                                probiotic
24201                                                                          betamethasone, clotrimazole, gentamicin sulfate
24202                                                                          betamethasone, clotrimazole, gentamicin sulfate
24203                                                                                                  acetic acid, boric acid
24205                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24206                                                                                                                probiotic
24207                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
24208                                                                          betamethasone, clotrimazole, gentamicin sulfate
24209                                                                                        betamethasone, gentamicin sulfate
24215                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24217                                                                                                  chlorhexidine gluconate
24218                                                                                             ivermectin, pyrantel pamoate
24219                                                                                                               afoxolaner
24221                                                                                                      silver sulfadiazine
24222                                                                                                      silver sulfadiazine
24246                                                                                        trimeprazine tartrate, prednisone
24250                                                                                             ivermectin, pyrantel pamoate
24251                                                                             dexamethasone, neomycin sulfate, polymyxin b
24253                                                                                             ivermectin, pyrantel pamoate
24257                                                                                                         milbemycin oxime
24258                                                                                                         milbemycin oxime
24259                                                                                                               afoxolaner
24260                                                                                                                trazodone
24261                                                                                           milbemycin oxime, praziquantel
24262                                                                                                               famotidine
24263                                                                                                               ampicillin
24264                                                                                                            metronidazole
24265                                                                                          atropine sulfate, diphenoxylate
24266                                                                                                       maropitant citrate
24267                                                                                               lactated ringer's solution
24268                                                                                               lactated ringer's solution
24269                                                                                                              oclacitinib
24276                                                                                              lufenuron, milbemycin oxime
24282                                                                                                                probiotic
24312                                                                                        betamethasone, gentamicin sulfate
24313                                                                                         burow's solution, hydrocortisone
24314                                                                                                                probiotic
24319                                                                                                                firocoxib
24322                                                                                        betamethasone, gentamicin sulfate
24325                                                                                                              doxycycline
24328                                                                                                              doxycycline
24343                                                                                               milbemycin oxime, spinosad
24375                                                                                                               ivermectin
24379                                                                                                               afoxolaner
24393                                                                                              lufenuron, milbemycin oxime
24394                                                                                lufenuron, milbemycin oxime, praziquantel
24395                                                                                                               afoxolaner
24396                                                                                                               cephalexin
24397                                                                                                               sucralfate
24399                                                                                                               afoxolaner
24400                                                                                              lufenuron, milbemycin oxime
24401                                                                                                                  omega 3
24402                                                                                                               afoxolaner
24403                                                                                lufenuron, milbemycin oxime, praziquantel
24404                                                                                                          diphenhydramine
24405                                                                                                                  omega 3
24406                                                                                                               prednisone
24407                                                                                                              clindamycin
24408                                                                           dexamethasone, neomycin sulfate, thiabendazole
24409                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24410                                                                                                               afoxolaner
24413                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24416                                                                           mometasone furoate, orbifloxacin, posaconazole
24417                                                                                                         tylosin tartrate
24418                                                                                                               famotidine
24419                                                                                                            levothyroxine
24420                                                                                                         tylosin tartrate
24421                                                                                                               ivermectin
24422                                                                                                 fipronil, (s)-methoprene
24424                                                                                                                probiotic
24425                                                                                             ivermectin, pyrantel pamoate
24426                                                                                                               afoxolaner
24427                                                                                           unspecified thyroid medication
24428                                                                                                               famotidine
24429                                                                                                         tylosin tartrate
24431                                                                                             ivermectin, pyrantel pamoate
24432                                                                                                               afoxolaner
24434                                                                             dexamethasone, neomycin sulfate, polymyxin b
24435                                                                                                               ivermectin
24436                                                                             dexamethasone, neomycin sulfate, polymyxin b
24437                                                                                                               afoxolaner
24438                                                                                           unspecified thyroid medication
24451                                                                           mometasone furoate, orbifloxacin, posaconazole
24452                                                                             dexamethasone, neomycin sulfate, polymyxin b
24453                                                                                                     prednisolone acetate
24455                                                                                                                probiotic
24459                                                                                       joint supplement (glucosamine hcl)
24460                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24461                                                                                                               famotidine
24462                                                                                                          diphenhydramine
24468                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24473                                                                                               milbemycin oxime, spinosad
24475                                                                                               milbemycin oxime, spinosad
24476                                                                                                               ivermectin
24477                                                                               ivermectin, praziquantel, pyrantel pamoate
24478                                                                                                                probiotic
24479                                                                          betamethasone, clotrimazole, gentamicin sulfate
24480                                                                                                         milbemycin oxime
24481                                                                                                         milbemycin oxime
24482                                                                                                             enrofloxacin
24484                                                                                                         milbemycin oxime
24486                                                                                             ivermectin, pyrantel pamoate
24499                                                                                                                carprofen
24503                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24504                                                                                                               cetirizine
24514                                                                                                                probiotic
24520                                                                                       fipronil, permethrin, pyriproxyfen
24521                                                                                             ivermectin, pyrantel pamoate
24526                                                                                        betamethasone, gentamicin sulfate
24529                                                                                                 fipronil, (s)-methoprene
24534                                                                                       fipronil, permethrin, pyriproxyfen
24536                                                                                             ivermectin, pyrantel pamoate
24562                                                                                                               selamectin
24563                                                                                                               fluralaner
24565                                                                                               milbemycin oxime, spinosad
24567                                                                                               milbemycin oxime, spinosad
24593                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24597                                                                                               milbemycin oxime, spinosad
24598                                                                                                         liver supplement
24599                                                                                               milbemycin oxime, spinosad
24601                                                                                               milbemycin oxime, spinosad
24602                                                                                               milbemycin oxime, spinosad
24605                                                                                               milbemycin oxime, spinosad
24610                                                                                                  acetic acid, boric acid
24621                                                                                    dinotefuran, permethrin, pyriproxyfen
24622                                                                                    dinotefuran, permethrin, pyriproxyfen
24647                                                                                          ear cleaner (epi-otic advanced)
24648                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24651                                                                                                                deracoxib
24652                                                                             florfenicol, mometasone furoate, terbinafine
24653                                                                                      ear cleaner (zymox), hydrocortisone
24654                                                                             florfenicol, mometasone furoate, terbinafine
24660                                                                                                               afoxolaner
24666                                                                                                                carprofen
24669                                                                                                               afoxolaner
24688                                                                             dexamethasone, neomycin sulfate, polymyxin b
24707                                                                                                                mupirocin
24733                                                                                                               ivermectin
24734                                                                                                               afoxolaner
24758                                                                             dexamethasone, neomycin sulfate, polymyxin b
24762                                                                                              lufenuron, milbemycin oxime
24768                                                                                             ivermectin, pyrantel pamoate
24769                                                                                                               afoxolaner
24776                                                                           mometasone furoate, orbifloxacin, posaconazole
24782                                                                           mometasone furoate, orbifloxacin, posaconazole
24802                                                                                                               selamectin
24804                                                                                                                cefovecin
24805                                                                                                              oclacitinib
24806                                                                                                              oclacitinib
24814                                                                                             ivermectin, pyrantel pamoate
24817                                                                                                                tris-edta
24819                                                                                                               benzocaine
24824                                                                                             ivermectin, pyrantel pamoate
24825                                                                                                               fluralaner
24826                                                                                                                  omega 3
24827                                                                               toothpaste/dental health solution or chews
24828                                                                                   joint supplement (glucosamine hcl/msm)
24829                                                                                             ivermectin, pyrantel pamoate
24830                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24835                                                                                                               ivermectin
24839                                                                                             ivermectin, pyrantel pamoate
24840                                                                                                               afoxolaner
24850                                                                                                         milbemycin oxime
24867                                                                                              lufenuron, milbemycin oxime
24878                                                                                        betamethasone, gentamicin sulfate
24880                                                                                        betamethasone, gentamicin sulfate
24897                                                                                                     cefpodoxime proxetil
24898                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24899                                                                                                               lokivetmab
24902                                                                                              lufenuron, milbemycin oxime
24903                                                                                                               lokivetmab
24904                                                                                                              oclacitinib
24907                                                                                                              oclacitinib
24917                                                                                        betamethasone, gentamicin sulfate
24918                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24919                                                                                  moxidectin, pyrantel pamoate, sarolaner
24935                                                                                              lufenuron, milbemycin oxime
24937                                                                                              lufenuron, milbemycin oxime
24938                                                                                              lufenuron, milbemycin oxime
24940                                                                                              lufenuron, milbemycin oxime
24942                                                                                              lufenuron, milbemycin oxime
24948                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24949                                                                                              lufenuron, milbemycin oxime
24950                                                                                                   cyphenothrin, fipronil
24963                                                                                              lufenuron, milbemycin oxime
24964                                                                                           milbemycin oxime, praziquantel
24967                                                                                chlorhexidine gluconate, phytosphingosine
24968                                                                                             ivermectin, pyrantel pamoate
24969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24971                                                                                             ivermectin, pyrantel pamoate
24973                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24974                                                                                                 flumethrin, imidacloprid
24975                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24982                                                                                                 fipronil, (s)-methoprene
24984                                                                                              lufenuron, milbemycin oxime
24985                                                                                                 fipronil, (s)-methoprene
24987                                                                                              lufenuron, milbemycin oxime
24988                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24989                                                                                                            dexamethasone
24993                                                                                                                 geraniol
25003                                                                                                               tobramycin
25004                                                                                                               afoxolaner
25020                                                                                              lufenuron, milbemycin oxime
25021                                                                                                               fluralaner
25022                                                                                              lufenuron, milbemycin oxime
25040                                                                                              lufenuron, milbemycin oxime
25041                                                                                                 fipronil, (s)-methoprene
25059                                                                                             ivermectin, pyrantel pamoate
25067                                                                                             ivermectin, pyrantel pamoate
25079                                                                                             ivermectin, pyrantel pamoate
25080                                                                                       fipronil, permethrin, pyriproxyfen
25084                                                                                                         tylosin tartrate
25087                                                                                                 flumethrin, imidacloprid
25094                                                                                               milbemycin oxime, spinosad
25099                                                                                             ivermectin, pyrantel pamoate
25100                                                                                                               fluralaner
25101                                                                                                               fluralaner
25102                                                                                             ivermectin, pyrantel pamoate
25118                                                                                                         milbemycin oxime
25119                                                                                              lufenuron, milbemycin oxime
25120                                                                                    dinotefuran, permethrin, pyriproxyfen
25124                                                                                          ear cleaner (epi-otic advanced)
25129                                                                                                                probiotic
25131                                                                                                                sarolaner
25132                                                                                           milbemycin oxime, praziquantel
25191                                                                                                         milbemycin oxime
25196                                                                                              lufenuron, milbemycin oxime
25198                                                                                                  ketoconazole, tris-edta
25233                                                                                                               ivermectin
25234                                                                                             ivermectin, pyrantel pamoate
25241                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25255                                                                                         phytosphingosine, salicylic acid
25258                                                                                                       paw protection wax
25262                                                                          betamethasone, clotrimazole, gentamicin sulfate
25269                                                                                                               gabapentin
25270                                                                                                                trazodone
25273                                                                                    dinotefuran, permethrin, pyriproxyfen
25296                                                                                             ivermectin, pyrantel pamoate
25299                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25300                                                                                                               afoxolaner
25301                                                                                             ivermectin, pyrantel pamoate
25309                                                                                lufenuron, milbemycin oxime, praziquantel
25310                                                                                                 fipronil, (s)-methoprene
25311                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25315                                                                                              lufenuron, milbemycin oxime
25316                                                                                             ivermectin, pyrantel pamoate
25317                                                                                                               afoxolaner
25331                                                                                              lufenuron, milbemycin oxime
25337                                                                                               milbemycin oxime, spinosad
25342                                                                                                               afoxolaner
25343                                                                                                         milbemycin oxime
25345                                                                                  betamethasone, florfenicol, terbinafine
25346                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
25347                                                                                       joint supplement (glucosamine hcl)
25358                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25359                                                                                       amoxicillin, clavulanate potassium
25366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25367                                                                                        trimeprazine tartrate, prednisone
25369                                                                                                bordetella bronchiseptica
25370                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25372                                                                                                            sulfasalazine
25374                                                                                                         milbemycin oxime
25377                                                                                                              doxycycline
25378                                                                                                         tylosin tartrate
25390                                                                                                               prednisone
25391                                                                                                     cefpodoxime proxetil
25405                                                                                                               selamectin
25409                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
25410                                                                                    chlorhexidine gluconate, ketoconazole
25417                                                                                                  chlorhexidine gluconate
25421                                                                                                               selamectin
25424                                                                                                                probiotic
25425                                                                                                               loratadine
25437                                                                                              lufenuron, milbemycin oxime
25444                                                                                              lufenuron, milbemycin oxime
25473                                                                                             ivermectin, pyrantel pamoate
25482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25493                                                                                             ivermectin, pyrantel pamoate
25494                                                                                             ivermectin, pyrantel pamoate
25495                                                                                             ivermectin, pyrantel pamoate
25498                                                                                             ivermectin, pyrantel pamoate
25499                                                                                                 fipronil, (s)-methoprene
25501                                                                                             ivermectin, pyrantel pamoate
25502                                                                                                 fipronil, (s)-methoprene
25514                                                                                       joint supplement (glucosamine hcl)
25515                                                                                                                  omega 3
25516                                                                                             ivermectin, pyrantel pamoate
25517                                                                                                               afoxolaner
25520                                                                                             ivermectin, pyrantel pamoate
25521                                                                                                               afoxolaner
25523                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25547                                                                                                             acepromazine
25554                                                                                               milbemycin oxime, spinosad
25555                                                                                               milbemycin oxime, spinosad
25556                                                                                               milbemycin oxime, spinosad
25557                                                                                               milbemycin oxime, spinosad
25558                                                                                               milbemycin oxime, spinosad
25564                                                                                                               ivermectin
25575                                                                                             ivermectin, pyrantel pamoate
25576                                                                                                               ivermectin
25577                                                                                                               ivermectin
25579                                                                                                               ivermectin
25589                                                                                                         milbemycin oxime
25590                                                                                                               fluralaner
25591                                                                                                         milbemycin oxime
25612                                                                                               milbemycin oxime, spinosad
25613                                                                                               milbemycin oxime, spinosad
25617                                                                                                           liquid bandage
25619                                                                          betamethasone, clotrimazole, gentamicin sulfate
25622                                                                             florfenicol, mometasone furoate, terbinafine
25636                                                                                                                 fipronil
25659                                                                                                 imidacloprid, moxidectin
25660                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25663                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25666                                                                                        trimeprazine tartrate, prednisone
25670                                                                                                 imidacloprid, moxidectin
25671                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25672                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25674                                                                                                 imidacloprid, moxidectin
25683                                                                                             ivermectin, pyrantel pamoate
25706                                                                                               imidacloprid, pyriproxyfen
25707                                                                                                             fenbendazole
25708                                                                                              lufenuron, milbemycin oxime
25711                                                                                               imidacloprid, pyriproxyfen
25725                                                                                                                probiotic
25726                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25727                                                                                             ivermectin, pyrantel pamoate
25730                                                                                                         benzoyl peroxide
25737                                                                                                     digestive supplement
25740                                                                                                               afoxolaner
25741                                                                                              lufenuron, milbemycin oxime
25743                                                                                    dinotefuran, permethrin, pyriproxyfen
25744                                                                                                  ketoconazole, tris-edta
25748                                                                                                         milbemycin oxime
25749                                                                                             ivermectin, pyrantel pamoate
25750                                                                                                 fipronil, (s)-methoprene
25751                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
25753                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25754                                                                                              lufenuron, milbemycin oxime
25755                                                                                                               fluralaner
25756                                                                                    dinotefuran, permethrin, pyriproxyfen
25757                                                                                                               afoxolaner
25765                                                                                                  ketoconazole, tris-edta
25795                                                                                                             fenbendazole
25804                                                                                              lufenuron, milbemycin oxime
25806                                                                                              lufenuron, milbemycin oxime
25807                                                                                              lufenuron, milbemycin oxime
25816                                                                                                               prednisone
25817                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25818                                                                                               milbemycin oxime, spinosad
25819                                                                                               milbemycin oxime, spinosad
25820                                                                                               milbemycin oxime, spinosad
25825                                                                                                               cephalexin
25826                                                                                                         milbemycin oxime
25827                                                                                                         milbemycin oxime
25828                                                                                                         milbemycin oxime
25829                                                                                                               fluralaner
25830                                                                                                         milbemycin oxime
25837                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
25839                                                                                                 imidacloprid, moxidectin
25846                                                                                                               fluralaner
25870                                                                                    dinotefuran, permethrin, pyriproxyfen
25884                                                                                             ivermectin, pyrantel pamoate
25887                                                                                             ivermectin, pyrantel pamoate
25888                                                                                                               afoxolaner
25919                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25936                                                                                                               gabapentin
25937                                                                                                               prednisone
25939                                                                                           milbemycin oxime, praziquantel
25940                                                                                                               fluralaner
25941                                                                                             ivermectin, pyrantel pamoate
25942                                                                                             ivermectin, pyrantel pamoate
25943                                                                                                               selamectin
25948                                                                                                               ivermectin
25949                                                                                           milbemycin oxime, praziquantel
25950                                                                                                               fluralaner
25951                                                                                             ivermectin, pyrantel pamoate
25952                                                                           dexamethasone, neomycin sulfate, thiabendazole
25953                                                                                             ivermectin, pyrantel pamoate
25954                                                                                                               selamectin
25964                                                                                             ivermectin, pyrantel pamoate
25965                                                                                                               afoxolaner
25966                                                                                                               ivermectin
25967                                                                                   joint supplement (glucosamine hcl/msm)
25981                                                                           mometasone furoate, orbifloxacin, posaconazole
25983                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25985                                                                                               imidacloprid, pyriproxyfen
25986                                                                                                 imidacloprid, moxidectin
25998                                                                                                                toceranib
26004                                                                                             ivermectin, pyrantel pamoate
26022                                                                                       amoxicillin, clavulanate potassium
26024                                                                                                               fluralaner
26027                                                                                       amoxicillin, clavulanate potassium
26031                                                                                                         milbemycin oxime
26033                                                                                                               fluralaner
26037                                                                                                               fluralaner
26039                                                                                                               fluralaner
26047                                                                                                               fluralaner
26048                                                                                                         milbemycin oxime
26050                                                                                                               fluralaner
26054                                                                                                               fluralaner
26056                                                                                                               fluralaner
26064                                                                                                                probiotic
26075                                                                                                                  amforal
26078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26084                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
26085                                                                             florfenicol, mometasone furoate, terbinafine
26093                                                                                        betamethasone, gentamicin sulfate
26094                                                                                        betamethasone, gentamicin sulfate
26095                                                                                               milbemycin oxime, spinosad
26110                                                                                             ivermectin, pyrantel pamoate
26113                                                                                                 fipronil, (s)-methoprene
26114                                                                                             ivermectin, pyrantel pamoate
26115                                                                           dexamethasone, neomycin sulfate, thiabendazole
26120                                                                                    dinotefuran, permethrin, pyriproxyfen
26121                                                                                             ivermectin, pyrantel pamoate
26122                                                                                    dinotefuran, permethrin, pyriproxyfen
26123                                                                                             ivermectin, pyrantel pamoate
26124                                                                                                               selamectin
26127                                                                                                         phytosphingosine
26128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
26129                                                                          betamethasone, clotrimazole, gentamicin sulfate
26133                                                                          betamethasone, clotrimazole, gentamicin sulfate
26134                                                                          betamethasone, clotrimazole, gentamicin sulfate
26138                                                                                    dinotefuran, permethrin, pyriproxyfen
26139                                                                                    chlorhexidine gluconate, ketoconazole
26141                                                                                    dinotefuran, permethrin, pyriproxyfen
26148                                                                                    dinotefuran, permethrin, pyriproxyfen
26149                                                                                                         milbemycin oxime
26150                                                                                    dinotefuran, permethrin, pyriproxyfen
26151                                                                                           milbemycin oxime, praziquantel
26152                                                                                    dinotefuran, permethrin, pyriproxyfen
26153                                                                                                     prednisolone acetate
26154                                                                                                             fenbendazole
26155                                                                                                         sulfadimethoxine
26156                                                                                           milbemycin oxime, praziquantel
26157                                                                                    dinotefuran, permethrin, pyriproxyfen
26158                                                                                           milbemycin oxime, praziquantel
26159                                                                                    dinotefuran, permethrin, pyriproxyfen
26160                                                                                                            metronidazole
26161                                                                                                       maropitant citrate
26165                                                                                           milbemycin oxime, praziquantel
26166                                                                                    dinotefuran, permethrin, pyriproxyfen
26178                                                                                    dinotefuran, permethrin, pyriproxyfen
26179                                                                                             ivermectin, pyrantel pamoate
26180                                                                                    dinotefuran, permethrin, pyriproxyfen
26181                                                                                             ivermectin, pyrantel pamoate
26184                                                                             dexamethasone, neomycin sulfate, polymyxin b
26187                                                                             dexamethasone, neomycin sulfate, polymyxin b
26189                                                                                    dinotefuran, permethrin, pyriproxyfen
26190                                                                                    chlorhexidine gluconate, ketoconazole
26192                                                                                    dinotefuran, permethrin, pyriproxyfen
26197                                                                             dexamethasone, neomycin sulfate, polymyxin b
26199                                                                                    dinotefuran, permethrin, pyriproxyfen
26200                                                                                                         milbemycin oxime
26201                                                                                    dinotefuran, permethrin, pyriproxyfen
26203                                                                                           milbemycin oxime, praziquantel
26204                                                                                    dinotefuran, permethrin, pyriproxyfen
26205                                                                                                             fenbendazole
26206                                                                                                         sulfadimethoxine
26207                                                                                           milbemycin oxime, praziquantel
26208                                                                                    dinotefuran, permethrin, pyriproxyfen
26211                                                                                           milbemycin oxime, praziquantel
26212                                                                                    dinotefuran, permethrin, pyriproxyfen
26213                                                                                                                carprofen
26214                                                                                           milbemycin oxime, praziquantel
26215                                                                                    dinotefuran, permethrin, pyriproxyfen
26222                                                                                                                carprofen
26227                                                                                                                 tramadol
26229                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26237                                                                                                                carprofen
26238                                                                                                         milbemycin oxime
26239                                                                                                 kidney health supplement
26258                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26259                                                                                                               cephalexin
26264                                                                                                                trazodone
26265                                                                               dextromethorphan hydrobromide, guaifenesin
26278                                                                               dimethyl sulfoxide, fluocinolone acetonide
26279                                                                                               milbemycin oxime, spinosad
26280                                                                                    dinotefuran, permethrin, pyriproxyfen
26281                                                                                                               afoxolaner
26282                                                                               ivermectin, praziquantel, pyrantel pamoate
26286                                                                                                               afoxolaner
26287                                                                               ivermectin, praziquantel, pyrantel pamoate
26294                                                                                             ivermectin, pyrantel pamoate
26295                                                                                                               afoxolaner
26299                                                                                                               afoxolaner
26300                                                                               ivermectin, praziquantel, pyrantel pamoate
26307                                                                                                            metronidazole
26315                                                                                                         milbemycin oxime
26336                                                                                       chlorhexidine gluconate, ophytrium
26337                                                                                                        hypochlorous acid
26355                                                                                                  chlorhexidine gluconate
26373                                                                             dexamethasone, neomycin sulfate, polymyxin b
26375                                                                                              lufenuron, milbemycin oxime
26380                                                                             florfenicol, mometasone furoate, terbinafine
26386                                                                                             ivermectin, pyrantel pamoate
26387                                                                                                               fluralaner
26391                                                                                                               lokivetmab
26393                                                                                        betamethasone, gentamicin sulfate
26395                                                                                               milbemycin oxime, spinosad
26399                                                                                               milbemycin oxime, spinosad
26400                                                                                               milbemycin oxime, spinosad
26401                                                                                               milbemycin oxime, spinosad
26423                                                                                                               selamectin
26433                                                                                        betamethasone, gentamicin sulfate
26454                                                                                   joint supplement (glucosamine hcl/msm)
26464                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26469                                                                                                               afoxolaner
26471                                                                                             ivermectin, pyrantel pamoate
26473                                                                                                               afoxolaner
26474                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26475                                                                                             ivermectin, pyrantel pamoate
26476                                                                                                               afoxolaner
26477                                                                                                            levothyroxine
26488                                                                                                               afoxolaner
26489                                                                                              lufenuron, milbemycin oxime
26490                                                                                              lufenuron, milbemycin oxime
26502                                                                                                  ketoconazole, tris-edta
26503                                                                                                               cephalexin
26505                                                                                         propylene glycol, salicylic acid
26508                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
26517                                                                                             ivermectin, pyrantel pamoate
26518                                                                                                 fipronil, (s)-methoprene
26519                                                                                             ivermectin, pyrantel pamoate
26520                                                                                                               ivermectin
26521                                                                                                               ivermectin
26522                                                                                                               ivermectin
26534                                                                                        trimeprazine tartrate, prednisone
26540                                                                                       chlorhexidine gluconate, ophytrium
26543                                                                                             ivermectin, pyrantel pamoate
26544                                                                                               imidacloprid, pyriproxyfen
26546                                                                                             ivermectin, pyrantel pamoate
26547                                                                                                               afoxolaner
26550                                                                                                               afoxolaner
26551                                                                                                         milbemycin oxime
26553                                                                                                         milbemycin oxime
26568                                                                                                         milbemycin oxime
26574                                                                                                         milbemycin oxime
26576                                                                                                                 tramadol
26583                                                                                            allergy immunotherapy - drops
26584                                                                                             ivermectin, pyrantel pamoate
26585                                                                                                               fluralaner
26587                                                                                                               fluralaner
26589                                                                                                               fluralaner
26590                                                                                             ivermectin, pyrantel pamoate
26591                                                                                             ivermectin, pyrantel pamoate
26592                                                                                                               fluralaner
26594                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26610                                                                             dexamethasone, neomycin sulfate, polymyxin b
26611                                                                                             ivermectin, pyrantel pamoate
26615                                                                                             ivermectin, pyrantel pamoate
26616                                                                                                               afoxolaner
26628                                                                                                               ivermectin
26629                                                                                                                 fipronil
26631                                                                                             ivermectin, pyrantel pamoate
26637                                                                                                 fipronil, (s)-methoprene
26638                                                                                             ivermectin, pyrantel pamoate
26643                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26644                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
26645                                                                                                 fipronil, (s)-methoprene
26647                                                                                                 fipronil, (s)-methoprene
26650                                                                                              lufenuron, milbemycin oxime
26651                                                                                              lufenuron, milbemycin oxime
26652                                                                                                               fluralaner
26654                                                                                             ivermectin, pyrantel pamoate
26655                                                                                               milbemycin oxime, spinosad
26662                                                                                             ivermectin, pyrantel pamoate
26663                                                                                                               afoxolaner
26668                                                                                                 imidacloprid, permethrin
26669                                                                                               imidacloprid, pyriproxyfen
26670                                                                                                 flumethrin, imidacloprid
26673                                                                                             ivermectin, pyrantel pamoate
26674                                                                           mometasone furoate, orbifloxacin, posaconazole
26675                                                                                                     cefpodoxime proxetil
26676                                                                                                 fipronil, (s)-methoprene
26677                                                                                             ivermectin, pyrantel pamoate
26680                                                                                             ivermectin, pyrantel pamoate
26681                                                                                                               afoxolaner
26682                                                                                             ivermectin, pyrantel pamoate
26683                                                                                                               afoxolaner
26684                                                                                             ivermectin, pyrantel pamoate
26685                                                                                                               afoxolaner
26694                                                                                       amoxicillin, clavulanate potassium
26720                                                                                        trimeprazine tartrate, prednisone
26721                                                                                              lufenuron, milbemycin oxime
26722                                                                                              lufenuron, milbemycin oxime
26723                                                                                              lufenuron, milbemycin oxime
26724                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26726                                                                                              lufenuron, milbemycin oxime
26727                                                                                                             enrofloxacin
26734                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26735                                                                                               milbemycin oxime, spinosad
26736                                                                                             ivermectin, pyrantel pamoate
26738                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26740                                                                                           milbemycin oxime, praziquantel
26741                                                                                                               afoxolaner
26742                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26743                                                                                                                carprofen
26744                                                                                                         milbemycin oxime
26745                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26747                                                                                                unspecified otic ear pack
26749                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26750                                                                                             ivermectin, pyrantel pamoate
26751                                                                                                               afoxolaner
26760                                                                                             ivermectin, pyrantel pamoate
26761                                                                                                 fipronil, (s)-methoprene
26764                                                                                                                lidocaine
26765                                                                                                          diphenhydramine
26766                                                                                 aluminium hydroxide, magnesium hydroxide
26769                                                                                                         milbemycin oxime
26772                                                                                                                lidocaine
26773                                                                                                          diphenhydramine
26774                                                                                 aluminium hydroxide, magnesium hydroxide
26780                                                                                                         milbemycin oxime
26803                                                                          betamethasone, clotrimazole, gentamicin sulfate
26817                                                                                                               prednisone
26818                                                                                                          diphenhydramine
26819                                                                          betamethasone, clotrimazole, gentamicin sulfate
26821                                                                                                                carprofen
26822                                                                                                              clindamycin
26823                                                                                                                meloxicam
26825                                                                          betamethasone, clotrimazole, gentamicin sulfate
26826                                                                                                         liver supplement
26827                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26828                                                                                                                carprofen
26829                                                                                                               cephalexin
26830                                                                                                              clindamycin
26831                                                                                                       maropitant citrate
26832                                                                                                              amoxicillin
26833                                                                                                         pyrantel pamoate
26836                                                                                                       miconazole nitrate
26837                                                                                                                probiotic
26838                                                                                                     cefpodoxime proxetil
26839                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26840                                                                                              lufenuron, milbemycin oxime
26841                                                                                       fipronil, permethrin, pyriproxyfen
26842                                                                                             ivermectin, pyrantel pamoate
26843                                                                                                                probiotic
26844                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
26846                                                                                             ivermectin, pyrantel pamoate
26847                                                                                                 fipronil, (s)-methoprene
26848                                                                                                                probiotic
26849                                                                                             ivermectin, pyrantel pamoate
26850                                                                                                 fipronil, (s)-methoprene
26851                                                                                                                probiotic
26852                                                                                             ivermectin, pyrantel pamoate
26853                                                                                                               afoxolaner
26857                                                                                                              doxycycline
26861                                                                               ivermectin, praziquantel, pyrantel pamoate
26862                                                                                                 fipronil, (s)-methoprene
26863                                                                               ivermectin, praziquantel, pyrantel pamoate
26864                                                                                                               nitenpyram
26865                                                                                               imidacloprid, pyriproxyfen
26867                                                                                               imidacloprid, pyriproxyfen
26868                                                                                                         milbemycin oxime
26869                                                                                           milbemycin oxime, praziquantel
26870                                                                                               imidacloprid, pyriproxyfen
26871                                                                           mometasone furoate, orbifloxacin, posaconazole
26872                                                                                          ear cleaner (epi-otic advanced)
26905                                                                                          ear cleaner (epi-otic advanced)
26926                                                                                              lufenuron, milbemycin oxime
26930                                                                                              lufenuron, milbemycin oxime
26931                                                                                    dinotefuran, permethrin, pyriproxyfen
26932                                                                                              lufenuron, milbemycin oxime
26944                                                                                    dinotefuran, permethrin, pyriproxyfen
26948                                                                                    dinotefuran, permethrin, pyriproxyfen
26966                                                                                                              doxycycline
26972                                                                                              lufenuron, milbemycin oxime
26974                                                                                                   unspecified supplement
26975                                                                                             ivermectin, pyrantel pamoate
26976                                                                                                                probiotic
26977                                                                                              lufenuron, milbemycin oxime
26978                                                                                 febantel, praziquantel, pyrantel pamoate
26979                                                                                              lufenuron, milbemycin oxime
26980                                                                                              lufenuron, milbemycin oxime
26981                                                                                              lufenuron, milbemycin oxime
26983                                                                                                                probiotic
26984                                                                                                               fluralaner
26986                                                                                                               fluralaner
26987                                                                             betamethasone, chloramphenicol, ketoconazole
26988                                                                                                         milbemycin oxime
26990                                                                                                         milbemycin oxime
26991                                                                                                               fluralaner
26992                                                                                                         milbemycin oxime
26993                                                                                                               fluralaner
27012                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
27021                                                                                                               tobramycin
27022                                                                                                                ofloxacin
27030                                                                                                         milbemycin oxime
27047                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27058                                                                                        betamethasone, gentamicin sulfate
27062                                                                                                               grapiprant
27063                                                                                                   unspecified medication
27065                                                                                             ivermectin, pyrantel pamoate
27080                                                                           mometasone furoate, orbifloxacin, posaconazole
27081                                                                           mometasone furoate, orbifloxacin, posaconazole
27082                                                                                              lufenuron, milbemycin oxime
27083                                                                                lufenuron, milbemycin oxime, praziquantel
27084                                                                                                                carprofen
27085                                                                                              lufenuron, milbemycin oxime
27086                                                                                              lufenuron, milbemycin oxime
27092                                                                                                             fenbendazole
27095                                                                                                            ciprofloxacin
27096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27100                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27117                                                                                                                mupirocin
27118                                                                                        betamethasone, gentamicin sulfate
27124                                                                                                                probiotic
27128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27134                                                                             florfenicol, mometasone furoate, terbinafine
27136                                                                                                         milbemycin oxime
27137                                                                             florfenicol, mometasone furoate, terbinafine
27140                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27144                                                                                               milbemycin oxime, spinosad
27158                                                                          betamethasone, clotrimazole, gentamicin sulfate
27163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27170                                                                                              lufenuron, milbemycin oxime
27172                                                                                                 joint supplement (other)
27173                                                                                                                  omega 3
27174                                                                                              lufenuron, milbemycin oxime
27203                                                                                             ivermectin, pyrantel pamoate
27212                                                                                        betamethasone, gentamicin sulfate
27213                                                                               ivermectin, praziquantel, pyrantel pamoate
27214                                                                                                             deltamethrin
27217                                                                                        betamethasone, gentamicin sulfate
27219                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27220                                                                                                 flumethrin, imidacloprid
27222                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27223                                                                                        betamethasone, gentamicin sulfate
27224                                                                                              phytosphingosine, pramoxine
27225                                                                                                               cephalexin
27226                                                                                                 flumethrin, imidacloprid
27228                                                                                                 flumethrin, imidacloprid
27229                                                                                           milbemycin oxime, praziquantel
27231                                                                                                               afoxolaner
27232                                                                                              lufenuron, milbemycin oxime
27247                                                                                              lufenuron, milbemycin oxime
27249                                                                                                               ivermectin
27251                                                                                                               ivermectin
27256                                                                                        betamethasone, gentamicin sulfate
27257                                                                                                 flumethrin, imidacloprid
27258                                                                                             ivermectin, pyrantel pamoate
27262                                                                                                               tobramycin
27265                                                                                             ivermectin, pyrantel pamoate
27268                                                                                                               tobramycin
27270                                                                                                 flumethrin, imidacloprid
27273                                                                                             ivermectin, pyrantel pamoate
27274                                                                                                               afoxolaner
27275                                                                                               imidacloprid, pyriproxyfen
27280                                                                                                               fluralaner
27281                                                                                             ivermectin, pyrantel pamoate
27282                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27285                                                                                             ivermectin, pyrantel pamoate
27306                                                                                             ivermectin, pyrantel pamoate
27309                                                                                                               fluralaner
27310                                                                                                               fluralaner
27311                                                                                             ivermectin, pyrantel pamoate
27315                                                                                             ivermectin, pyrantel pamoate
27322                                                                                                                pramoxine
27333                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27345                                                                                             ivermectin, pyrantel pamoate
27346                                                                                                               afoxolaner
27347                                                                                               milbemycin oxime, spinosad
27348                                                                                                             imidacloprid
27349                                                                                             ivermectin, pyrantel pamoate
27350                                                                                               imidacloprid, pyriproxyfen
27353                                                                                                              amoxicillin
27358                                                                                              lufenuron, milbemycin oxime
27360                                                                                              lufenuron, milbemycin oxime
27361                                                                                              lufenuron, milbemycin oxime
27362                                                                                                       maropitant citrate
27364                                                                                              lufenuron, milbemycin oxime
27368                                                                                              lufenuron, milbemycin oxime
27370                                                                             florfenicol, mometasone furoate, terbinafine
27371                                                                                                              amoxicillin
27384                                                                                           milbemycin oxime, praziquantel
27407                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27413                                                                                                                vitamin b
27414                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27421                                                                                               imidacloprid, pyriproxyfen
27422                                                                                             ivermectin, pyrantel pamoate
27423                                                                                             ivermectin, pyrantel pamoate
27425                                                                                                  chlorhexidine gluconate
27427                                                                                                  chlorhexidine gluconate
27431                                                                               toothpaste/dental health solution or chews
27432                                                                                                                meloxicam
27434                                                                                    dinotefuran, permethrin, pyriproxyfen
27435                                                                                                              hydroxyzine
27445                                                                                               imidacloprid, pyriproxyfen
27446                                                                                                 imidacloprid, permethrin
27447                                                                                                                probiotic
27456                                                                                               milbemycin oxime, spinosad
27458                                                                                               milbemycin oxime, spinosad
27459                                                                                               milbemycin oxime, spinosad
27465                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
27474                                                                                             ivermectin, pyrantel pamoate
27479                                                                                             ivermectin, pyrantel pamoate
27481                                                                                             ivermectin, pyrantel pamoate
27492                                                                                        trimeprazine tartrate, prednisone
27494                                                                                                     prednisolone acetate
27498                                                                                    dinotefuran, permethrin, pyriproxyfen
27500                                                                 dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
27501                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
27502                                                                                                               ivermectin
27506                                                                                                               ivermectin
27507                                                                                       fipronil, permethrin, pyriproxyfen
27511                                                                                                               ivermectin
27512                                                                                                 fipronil, (s)-methoprene
27523                                                                                             ivermectin, pyrantel pamoate
27524                                                                                                               afoxolaner
27529                                                                                                               ivermectin
27530                                                                                                               afoxolaner
27589                                                                                               milbemycin oxime, spinosad
27590                                                                                               milbemycin oxime, spinosad
27594                                                                                               milbemycin oxime, spinosad
27595                                                                                                            metronidazole
27596                                                                                               milbemycin oxime, spinosad
27598                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27620                                                                                                               fluralaner
27640                                                                                             ivermectin, pyrantel pamoate
27646                                                                                                                mupirocin
27654                                                                                               milbemycin oxime, spinosad
27657                                                                                               milbemycin oxime, spinosad
27658                                                                                                               prednisone
27659                                                                                                                mupirocin
27674                                                                                                     digestive supplement
27697                                                                                                                mupirocin
27699                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27700                                                                                             ivermectin, pyrantel pamoate
27701                                                                                                 fipronil, (s)-methoprene
27703                                                                                                 fipronil, (s)-methoprene
27704                                                                                             ivermectin, pyrantel pamoate
27710                                                                                                 fipronil, (s)-methoprene
27713                                                                                       amoxicillin, clavulanate potassium
27714                                                                                                 fipronil, (s)-methoprene
27715                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27722                                                                                                               selamectin
27723                                                                                                               selamectin
27724                                                                                                               fluoxetine
27728                                                                                                               selamectin
27736                                                                                                               lokivetmab
27745                                                                                             ivermectin, pyrantel pamoate
27747                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27748                                                                               ivermectin, praziquantel, pyrantel pamoate
27750                                                                                             ivermectin, pyrantel pamoate
27769                                                                                             ivermectin, pyrantel pamoate
27770                                                                                              lufenuron, milbemycin oxime
27772                                                                                              lufenuron, milbemycin oxime
27776                                                                                                       maropitant citrate
27791                                                                               ivermectin, praziquantel, pyrantel pamoate
27794                                                                                             ivermectin, pyrantel pamoate
27802                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27824                                                                                             ivermectin, pyrantel pamoate
27826                                                                               ivermectin, praziquantel, pyrantel pamoate
27828                                                                                             ivermectin, pyrantel pamoate
27833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27834                                                                                                                  omega 3
27836                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27875                                                                                                 flumethrin, imidacloprid
27878                                                                                                 flumethrin, imidacloprid
27880                                                                                                             multivitamin
27883                                                                                                                carprofen
27884                                                                                   cyphenothrin, fipronil, (s)-methoprene
27885                                                                                              lufenuron, milbemycin oxime
27886                                                                                              lufenuron, milbemycin oxime
27891                                                                                                         milbemycin oxime
27892                                                                                                               afoxolaner
27895                                                                                                               moxidectin
27896                                                                                                               afoxolaner
27897                                                                                                               moxidectin
27898                                                                                                               afoxolaner
27899                                                                             dexamethasone, neomycin sulfate, polymyxin b
27900                                                                                                               moxidectin
27901                                                                                                               moxidectin
27903                                                                                                               afoxolaner
27904                                                                                                               moxidectin
27910                                                                                              lufenuron, milbemycin oxime
27913                                                                                              lufenuron, milbemycin oxime
27917                                                                                              lufenuron, milbemycin oxime
27921                                                                                              lufenuron, milbemycin oxime
27922                                                                                              lufenuron, milbemycin oxime
27923                                                                                              lufenuron, milbemycin oxime
27927                                                                                                   unspecified medication
27929                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27931                                                                                                                carprofen
27934                                                                                                            buprenorphine
27935                                                                                                                 propofol
27936                                                                                                                midazolam
27937                                                                                                                carprofen
27938                                                                                                                carprofen
27939                                                                                                 imidacloprid, permethrin
27940                                                                                              lufenuron, milbemycin oxime
27941                                                                           mometasone furoate, orbifloxacin, posaconazole
27942                                                                                                               cephalexin
27954                                                                                    dinotefuran, permethrin, pyriproxyfen
27957                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27958                                                                                       amoxicillin, clavulanate potassium
27959                                                                                                                 tramadol
27960                                                                                                                carprofen
27961                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27962                                                                                                 fipronil, (s)-methoprene
27973                                                                                                  ketoconazole, tris-edta
27974                                                                                       chlorhexidine gluconate, ophytrium
27981                                                                                               imidacloprid, pyriproxyfen
27982                                                                                                               ivermectin
27992                                                                                      allergy immunotherapy - unspecified
27999                                                                                               imidacloprid, pyriproxyfen
28000                                                                                                               ivermectin
28004                                                                                             ivermectin, pyrantel pamoate
28006                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
28008                                                                                                                probiotic
28009                                                                                              pramoxine, phytosphingosine
28010                                                                                                 fipronil, (s)-methoprene
28011                                                                           mometasone furoate, orbifloxacin, posaconazole
28014                                                                                               imidacloprid, pyriproxyfen
28015                                                                                                         liver supplement
28016                                                                                             ivermectin, pyrantel pamoate
28017                                                                                                               afoxolaner
28018                                                                                             ivermectin, pyrantel pamoate
28020                                                                           mometasone furoate, orbifloxacin, posaconazole
28023                                                                                             ivermectin, pyrantel pamoate
28024                                                                                                               afoxolaner
28025                                                                                                                probiotic
28026                                                                                                            metronidazole
28029                                                                                                               ivermectin
28040                                                                                             ivermectin, pyrantel pamoate
28045                                                                                             ivermectin, pyrantel pamoate
28046                                                                                                              doxorubicin
28047                                                                                                              vincristine
28048                                                                                             ivermectin, pyrantel pamoate
28049                                                                                             ivermectin, pyrantel pamoate
28071                                                                                                               selamectin
28073                                                                                                                carvacrol
28075                                                                                                         milbemycin oxime
28076                                                                                                               fluralaner
28081                                                                                                                carvacrol
28087                                                                                                         milbemycin oxime
28088                                                                                                               fluralaner
28089                                                                                                                carprofen
28090                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28094                                                                               dimethyl sulfoxide, fluocinolone acetonide
28096                                                                                                         tylosin tartrate
28098                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28100                                                                                                               fluralaner
28101                                                                                lufenuron, milbemycin oxime, praziquantel
28102                                                                                           milbemycin oxime, praziquantel
28103                                                                                                               fluralaner
28104                                                                                                               fluralaner
28105                                                                                           milbemycin oxime, praziquantel
28106                                                                                           milbemycin oxime, praziquantel
28107                                                                                                               fluralaner
28108                                                                                                               fluralaner
28109                                                                                           milbemycin oxime, praziquantel
28116                                                                                                                probiotic
28119                                                                                              lufenuron, milbemycin oxime
28120                                                                                              lufenuron, milbemycin oxime
28128                                                                                              lufenuron, milbemycin oxime
28129                                                                                                               fluralaner
28130                                                                                             ivermectin, pyrantel pamoate
28131                                                                                                               fluralaner
28134                                                                                             ivermectin, pyrantel pamoate
28135                                                                                             ivermectin, pyrantel pamoate
28137                                                                               ivermectin, praziquantel, pyrantel pamoate
28138                                                                                                                vitamin d
28141                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28143                                                                                                 fipronil, (s)-methoprene
28144                                                                                                               ivermectin
28150                                                                                                               prednisone
28151                                                                                                               prednisone
28152                                                                                                               cephalexin
28153                                                                                                               ketoprofen
28154                                                                                                 fipronil, (s)-methoprene
28155                                                                                             ivermectin, pyrantel pamoate
28156                                                                                                                  omega 3
28158                                                                                                 flumethrin, imidacloprid
28162                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28163                                                                                                 flumethrin, imidacloprid
28164                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28165                                                                                                                  omega 3
28166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28167                                                                                                                  omega 3
28168                                                                                                               tobramycin
28174                                                                             dexamethasone, neomycin sulfate, polymyxin b
28176                                                                             dexamethasone, neomycin sulfate, polymyxin b
28244                                                                                        trimeprazine tartrate, prednisone
28245                                                                                                         milbemycin oxime
28246                                                                                        trimeprazine tartrate, prednisone
28260                                                                                                            dexamethasone
28261                                                                                             ivermectin, pyrantel pamoate
28262                                                                                                               fluralaner
28263                                                                                                               fluralaner
28264                                                                                             ivermectin, pyrantel pamoate
28269                                                                                             ivermectin, pyrantel pamoate
28277                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28279                                                                                       chlorhexidine gluconate, ophytrium
28307                                                                                        trimeprazine tartrate, prednisone
28309                                                                                               milbemycin oxime, spinosad
28311                                                                                              lufenuron, milbemycin oxime
28316                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
28320                                                                                              lufenuron, milbemycin oxime
28325                                                                                                                 tramadol
28332                                                                                      ear cleaner (zymox), hydrocortisone
28333                                                                                      ear cleaner (zymox), hydrocortisone
28371                                                                                                                probiotic
28375                                                                                                               fluralaner
28390                                                                          betamethasone, clotrimazole, gentamicin sulfate
28392                                                                                                               afoxolaner
28393                                                                                                                carprofen
28396                                                                                           praziquantel, pyrantel pamoate
28397                                                                                              lufenuron, milbemycin oxime
28398                                                                                                               fluralaner
28399                                                                                           milbemycin oxime, praziquantel
28400                                                                                                               fluralaner
28401                                                                                           milbemycin oxime, praziquantel
28403                                                                                           milbemycin oxime, praziquantel
28404                                                                                               milbemycin oxime, spinosad
28405                                                                                               milbemycin oxime, spinosad
28407                                                                                               milbemycin oxime, spinosad
28425                                                                                                             enrofloxacin
28427                                                                                                            dexamethasone
28437                                                                                              lufenuron, milbemycin oxime
28448                                                                                              lufenuron, milbemycin oxime
28449                                                                                               imidacloprid, pyriproxyfen
28453                                                                                                               ivermectin
28483                                                                                             ivermectin, pyrantel pamoate
28484                                                                                      ear cleaner (zymox), hydrocortisone
28486                                                                                        betamethasone, gentamicin sulfate
28487                                                                                                          diphenhydramine
28488                                                                                                         milbemycin oxime
28505                                                                                                                probiotic
28507                                                                                                       miconazole nitrate
28508                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28516                                                                                lufenuron, milbemycin oxime, praziquantel
28517                                                                                                 fipronil, (s)-methoprene
28518                                                                                              lufenuron, milbemycin oxime
28519                                                                                             ivermectin, pyrantel pamoate
28520                                                                                                 fipronil, (s)-methoprene
28528                                                                                              lufenuron, milbemycin oxime
28529                                                                                                               afoxolaner
28530                                                                                                               cephalexin
28531                                                                                                                probiotic
28533                                                                                              chloroxylenol, ketoconazole
28534                                                                                              lufenuron, milbemycin oxime
28535                                                                                                               afoxolaner
28536                                                                                                 fipronil, (s)-methoprene
28538                                                                                                                probiotic
28545                                                                                             ivermectin, pyrantel pamoate
28549                                                                                                               ivermectin
28552                                                                                                 imidacloprid, permethrin
28553                                                                                                               fluralaner
28554                                                                                                               ivermectin
28556                                                                                                               lokivetmab
28557                                                                                                               fluralaner
28571                                                                                             ivermectin, pyrantel pamoate
28572                                                                                                 flumethrin, imidacloprid
28573                                                                                             ivermectin, pyrantel pamoate
28574                                                                                                 flumethrin, imidacloprid
28576                                                                               dextromethorphan hydrobromide, guaifenesin
28577                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28580                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
28582                                                                                             ivermectin, pyrantel pamoate
28583                                                                                                 flumethrin, imidacloprid
28590                                                                                       joint supplement (glucosamine hcl)
28601                                                                                               imidacloprid, pyriproxyfen
28602                                                                                              lufenuron, milbemycin oxime
28603                                                                                                                carprofen
28604                                                                                               imidacloprid, pyriproxyfen
28605                                                                                                   unspecified medication
28606                                                                                              lufenuron, milbemycin oxime
28610                                                                                           praziquantel, pyrantel pamoate
28611                                                                                                             multivitamin
28612                                                                                                             multivitamin
28614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28616                                                                                        betamethasone, gentamicin sulfate
28620                                                                                              lufenuron, milbemycin oxime
28621                                                                                               imidacloprid, pyriproxyfen
28624                                                                                                                meloxicam
28626                                                                                                               ivermectin
28630                                                                                              lufenuron, milbemycin oxime
28631                                                                                                               afoxolaner
28632                                                                                                                carprofen
28639                                                                                                                carprofen
28660                                                                                        betamethasone, gentamicin sulfate
28668                                                                                             ivermectin, pyrantel pamoate
28673                                                                          betamethasone, clotrimazole, gentamicin sulfate
28674                                                                                             ivermectin, pyrantel pamoate
28675                                                                                                 fipronil, (s)-methoprene
28681                                                                                             ivermectin, pyrantel pamoate
28685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28686                                                                                                                probiotic
28687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28690                                                                                              lufenuron, milbemycin oxime
28691                                                                                                 imidacloprid, permethrin
28692                                                                                                            levothyroxine
28693                                                                                              lufenuron, milbemycin oxime
28694                                                                                                         milbemycin oxime
28696                                                                                              lufenuron, milbemycin oxime
28698                                                                                                            levothyroxine
28699                                                                                                                carprofen
28710                                                                                                 imidacloprid, moxidectin
28714                                                                          betamethasone, clotrimazole, gentamicin sulfate
28716                                                                          betamethasone, clotrimazole, gentamicin sulfate
28717                                                                                           sulfamethoxazole, trimethoprim
28718                                                                                                               wind toxin
28719                                                                                                     long dan xie gan wan
28723                                                                                                               selamectin
28726                                                                                               milbemycin oxime, spinosad
28727                                                                          betamethasone, clotrimazole, gentamicin sulfate
28730                                                                                               milbemycin oxime, spinosad
28731                                                                          betamethasone, clotrimazole, gentamicin sulfate
28732                                                                                                               cephalexin
28735                                                                                                         milbemycin oxime
28736                                                                                                                lotilaner
28750                                                                                                                   arnica
28751                                                                                                                vitamin b
28762                                                                                                  ketoconazole, tris-edta
28764                                                                                                                ofloxacin
28765                                                                                                              hydroxyzine
28766                                                                                                              hydroxyzine
28768                                                                                                 homatropine, hydrocodone
28772                                                                                                                  omega 3
28773                                                                                                              di tan tang
28780                                                                                             ivermectin, pyrantel pamoate
28781                                                                                               imidacloprid, pyriproxyfen
28782                                                                                             ivermectin, pyrantel pamoate
28784                                                                                                         milbemycin oxime
28806                                                                                                 fipronil, (s)-methoprene
28809                                                                                             ivermectin, pyrantel pamoate
28818                                                                                   fipronil, pyriproxyfen, (s)-methoprene
28819                                                                           dexamethasone, neomycin sulfate, thiabendazole
28826                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
28829                                                                                                                mupirocin
28831                                                                             dexamethasone, neomycin sulfate, polymyxin b
28832                                                                                                            metronidazole
28833                                                                             florfenicol, mometasone furoate, terbinafine
28855                                                                                                             fenbendazole
28873                                                                                                 fipronil, (s)-methoprene
28874                                                                                                               ivermectin
28882                                                                                                               afoxolaner
28883                                                                                                               afoxolaner
28884                                                                                                               afoxolaner
28888                                                                                                               afoxolaner
28893                                                                                                                 spinosad
28897                                                                               ivermectin, praziquantel, pyrantel pamoate
28898                                                                                                                 spinosad
28899                                                                                             ivermectin, pyrantel pamoate
28900                                                                               ivermectin, praziquantel, pyrantel pamoate
28901                                                                                                               afoxolaner
28904                                                                                             ivermectin, pyrantel pamoate
28905                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28906                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
28907                                                                                                               afoxolaner
28910                                                                                                               afoxolaner
28934                                                                                                               afoxolaner
28939                                                                                              lufenuron, milbemycin oxime
28940                                                                                                 homatropine, hydrocodone
28941                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
28946                                                                                         phytosphingosine, salicylic acid
28979                                                                                              lufenuron, milbemycin oxime
28980                                                                                       fipronil, permethrin, pyriproxyfen
28982                                                                                              lufenuron, milbemycin oxime
28983                                                                                               milbemycin oxime, spinosad
28986                                                                                             ivermectin, pyrantel pamoate
28987                                                                                                 fipronil, (s)-methoprene
28988                                                                                       amoxicillin, clavulanate potassium
28998                                                                                                      phenylpropanolamine
28999                                                                                                      phenylpropanolamine
29000                                                                                                               selamectin
29007                                                                                                 fipronil, (s)-methoprene
29008                                                                                                         milbemycin oxime
29015                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29022                                                                               dextromethorphan hydrobromide, guaifenesin
29023                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
29036                                                                             dexamethasone, neomycin sulfate, polymyxin b
29037                                                                                              lufenuron, milbemycin oxime
29039                                                                                                                  taurine
29040                                                                                                                  taurine
29043                                                                                                                  taurine
29050                                                                                        betamethasone, gentamicin sulfate
29053                                                                                                           hydrocortisone
29056                                                                                               milbemycin oxime, spinosad
29060                                                                                                               benzocaine
29064                                                                                               milbemycin oxime, spinosad
29067                                                                                             ivermectin, pyrantel pamoate
29069                                                                                             ivermectin, pyrantel pamoate
29070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29071                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29072                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29073                                                                                                         atropine sulfate
29075                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29078                                                                                                     fipronil, permethrin
29079                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29080                                                                                              lufenuron, milbemycin oxime
29081                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29082                                                                                               milbemycin oxime, spinosad
29083                                                                                                                probiotic
29086                                                                                               milbemycin oxime, spinosad
29087                                                                                               milbemycin oxime, spinosad
29091                                                                                               milbemycin oxime, spinosad
29092                                                                             florfenicol, mometasone furoate, terbinafine
29095                                                                                               milbemycin oxime, spinosad
29096                                                                                                               afoxolaner
29097                                                                             florfenicol, mometasone furoate, terbinafine
29098                                                                                                  ketoconazole, tris-edta
29099                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
29100                                                                                                                carprofen
29103                                                                                                                 fentanyl
29104                                                                                                                 ketamine
29108                                                                                        betamethasone, gentamicin sulfate
29135                                                                                                              oclacitinib
29136                                                                                                         milbemycin oxime
29139                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29143                                                                                             ivermectin, pyrantel pamoate
29150                                                                                                               selamectin
29151                                                                                                               selamectin
29152                                                                                                            levothyroxine
29153                                                                                                unspecified otic ear pack
29154                                                                                                               selamectin
29161                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29166                                                                                                               indoxacarb
29183                                                                                                               fluralaner
29184                                                                                              lufenuron, milbemycin oxime
29196                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29197                                                                                                          cbd or hemp oil
29220                                                                                                                mupirocin
29232                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29234                                                                                                  chlorhexidine gluconate
29235                                                                                                               penicillin
29244                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
29245                                                                                                                  omega 3
29248                                                                                                            dexamethasone
29283                                                                                                               lokivetmab
29285                                                                           dexamethasone, neomycin sulfate, thiabendazole
29291                                                                                       chlorhexidine gluconate, tris-edta
29293                                                                                                               ivermectin
29298                                                                                              lufenuron, milbemycin oxime
29313                                                                                                                ketorolac
29315                                                                                             ivermectin, pyrantel pamoate
29321                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29324                                                                                               imidacloprid, pyriproxyfen
29327                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29328                                                                                             ivermectin, pyrantel pamoate
29330                                                                                                 fipronil, (s)-methoprene
29331                                                                                             ivermectin, pyrantel pamoate
29332                                                                                                 fipronil, (s)-methoprene
29340                                                                                                               benzocaine
29342                                                                                                      ear cleaner (zymox)
29374                                                                                              lufenuron, milbemycin oxime
29375                                                                                                 imidacloprid, permethrin
29376                                                                                              lufenuron, milbemycin oxime
29377                                                                                               imidacloprid, pyriproxyfen
29378                                                                                              lufenuron, milbemycin oxime
29379                                                                                              lufenuron, milbemycin oxime
29380                                                                                              lufenuron, milbemycin oxime
29381                                                                                              lufenuron, milbemycin oxime
29382                                                                                              lufenuron, milbemycin oxime
29383                                                                                               imidacloprid, pyriproxyfen
29395                                                                                               acetaminophen, hydrocodone
29397                                                                                                             acepromazine
29404                                                                                                               prednisone
29405                                                                                                              doxycycline
29406                                                                                                                 tramadol
29428                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
29438                                                                                                               isoflurane
29446                                                                                                               benzocaine
29447                                                                                              phytosphingosine, pramoxine
29453                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29469                                                                                                               ivermectin
29470                                                                                                 flumethrin, imidacloprid
29471                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29472                                                                                              lufenuron, milbemycin oxime
29475                                                                                                                 spinosad
29479                                                                                              lufenuron, milbemycin oxime
29480                                                                                              lufenuron, milbemycin oxime
29481                                                                                              lufenuron, milbemycin oxime
29482                                                                                              lufenuron, milbemycin oxime
29483                                                                                                               fluralaner
29490                                                                                              lufenuron, milbemycin oxime
29499                                                                                             ivermectin, pyrantel pamoate
29500                                                                                                 fipronil, (s)-methoprene
29501                                                                                             ivermectin, pyrantel pamoate
29502                                                                                                         milbemycin oxime
29504                                                                                                         milbemycin oxime
29505                                                                                   fipronil, pyriproxyfen, (s)-methoprene
29506                                                                                                                carprofen
29509                                                                                                            levothyroxine
29511                                                                                                         milbemycin oxime
29525                                                                                              lufenuron, milbemycin oxime
29526                                                                                                   cyphenothrin, fipronil
29531                                                                                              lufenuron, milbemycin oxime
29532                                                                                                                 fipronil
29533                                                                                                         milbemycin oxime
29534                                                                                               imidacloprid, pyriproxyfen
29535                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29536                                                                                                         milbemycin oxime
29537                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29538                                                                                                         milbemycin oxime
29539                                                                                                 imidacloprid, permethrin
29540                                                                                                         milbemycin oxime
29567                                                                                             ivermectin, pyrantel pamoate
29568                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29572                                                                                    dinotefuran, permethrin, pyriproxyfen
29573                                                                                             ivermectin, pyrantel pamoate
29574                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29575                                                                                                     cefpodoxime proxetil
29578                                                                                                               fluralaner
29579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29580                                                                                             ivermectin, pyrantel pamoate
29583                                                                                                               fluralaner
29588                                                                                             ivermectin, pyrantel pamoate
29589                                                                                                               afoxolaner
29592                                                                                                            metronidazole
29601                                                                                                              oclacitinib
29602                                                                                                              oclacitinib
29604                                                                                                              oclacitinib
29606                                                                                                               ivermectin
29608                                                                                                 fipronil, (s)-methoprene
29617                                                                                                               afoxolaner
29626                                                                                                            phenobarbital
29633                                                                               ivermectin, praziquantel, pyrantel pamoate
29662                                                                                                                  omega 3
29666                                                                                                             multivitamin
29669                                                                                                                probiotic
29670                                                                                                 skin and coat supplement
29678                                                                                       amoxicillin, clavulanate potassium
29679                                                                                               imidacloprid, pyriproxyfen
29691                                                                                                              amoxicillin
29692                                                                                                               ranitidine
29693                                                                                                               sucralfate
29694                                                                                                                carprofen
29695                                                                                                                 tramadol
29696                                                                                                     digestive supplement
29697                                                                                                            metronidazole
29698                                                                                       amoxicillin, clavulanate potassium
29699                                                                                                     cefpodoxime proxetil
29700                                                                                                             imidacloprid
29705                                                                                               imidacloprid, pyriproxyfen
29707                                                                                               imidacloprid, pyriproxyfen
29709                                                                                               imidacloprid, pyriproxyfen
29715                                                                                                 flumethrin, imidacloprid
29716                                                                                                 flumethrin, imidacloprid
29719                                                                                                 flumethrin, imidacloprid
29720                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
29722                                                                                                 flumethrin, imidacloprid
29724                                                                                                 flumethrin, imidacloprid
29726                                                                                                 flumethrin, imidacloprid
29729                                                                                                            phenobarbital
29730                                                                                                            phenobarbital
29733                                                                                                            levetiracetam
29734                                                                                              lufenuron, milbemycin oxime
29736                                                                                lufenuron, milbemycin oxime, praziquantel
29744                                                                                              lufenuron, milbemycin oxime
29749                                                                                        trimeprazine tartrate, prednisone
29753                                                                                             ivermectin, pyrantel pamoate
29755                                                                                                               fluralaner
29764                                                                                                               moxidectin
29765                                                                                                               fluralaner
29766                                                                                                               afoxolaner
29767                                                                                                         milbemycin oxime
29770                                                                                             ivermectin, pyrantel pamoate
29771                                                                                                               afoxolaner
29772                                                                                                 fipronil, (s)-methoprene
29794                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29797                                                                                                               ivermectin
29798                                                                                             ivermectin, pyrantel pamoate
29799                                                                                             ivermectin, pyrantel pamoate
29800                                                                                                               afoxolaner
29801                                                                                                  chlorhexidine gluconate
29802                                                                                             ivermectin, pyrantel pamoate
29803                                                                                                               afoxolaner
29822                                                                                             ivermectin, pyrantel pamoate
29823                                                                                                               afoxolaner
29824                                                                                             ivermectin, pyrantel pamoate
29825                                                                                                               afoxolaner
29827                                                                           mometasone furoate, orbifloxacin, posaconazole
29829                                                                                        betamethasone, gentamicin sulfate
29831                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29832                                                                                                  ketoconazole, tris-edta
29838                                                                                   joint supplement (glucosamine hcl/msm)
29839                                                                                                 joint supplement (other)
29840                                                                                                           wei qi booster
29847                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29848                                                                                                  ketoconazole, tris-edta
29851                                                                                                               cephalexin
29857                                                                                                 fipronil, (s)-methoprene
29858                                                                                                               ivermectin
29859                                                                                                               ivermectin
29860                                                                                                               ivermectin
29861                                                                                                               ivermectin
29862                                                                                               milbemycin oxime, spinosad
29865                                                                                               milbemycin oxime, spinosad
29880                                                                                                               ivermectin
29882                                                                                             ivermectin, pyrantel pamoate
29883                                                                                                               afoxolaner
29906                                                                                                             azathioprine
29907                                                                                                   pyridostigmine bromide
29933                                                                               ivermectin, praziquantel, pyrantel pamoate
29937                                                                               ivermectin, praziquantel, pyrantel pamoate
29940                                                                               ivermectin, praziquantel, pyrantel pamoate
29941                                                                               ivermectin, praziquantel, pyrantel pamoate
29943                                                                               ivermectin, praziquantel, pyrantel pamoate
29948                                                                             florfenicol, mometasone furoate, terbinafine
29954                                                                                                               ivermectin
29955                                                                                               imidacloprid, pyriproxyfen
29956                                                                                                               ivermectin
29957                                                                                                 imidacloprid, permethrin
29963                                                                                               imidacloprid, pyriproxyfen
29964                                                                                             ivermectin, pyrantel pamoate
29966                                                                                        betamethasone, gentamicin sulfate
29969                                                                                               imidacloprid, pyriproxyfen
29970                                                                                             ivermectin, pyrantel pamoate
29978                                                                                              lufenuron, milbemycin oxime
29990                                                                                               imidacloprid, pyriproxyfen
29991                                                                                              lufenuron, milbemycin oxime
29993                                                                                              lufenuron, milbemycin oxime
30001                                                                                       amoxicillin, clavulanate potassium
30048                                                                                                         pyrantel pamoate
30067                                                                                                               ivermectin
30068                                                                                                 fipronil, (s)-methoprene
30070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30075                                                                                                 fipronil, (s)-methoprene
30076                                                                                                               ivermectin
30081                                                                                                               ivermectin
30082                                                                                                 fipronil, (s)-methoprene
30083                                                                                             ivermectin, pyrantel pamoate
30095                                                                                              lufenuron, milbemycin oxime
30096                                                                                                               fluralaner
30098                                                                                                               fluralaner
30099                                                                                              lufenuron, milbemycin oxime
30104                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30105                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30127                                                                                                                carprofen
30131                                                                                                                  omega 3
30132                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30138                                                                                             ivermectin, pyrantel pamoate
30142                                                                                               milbemycin oxime, spinosad
30143                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
30162                                                                                                   unspecified medication
30164                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
30165                                                                                               milbemycin oxime, spinosad
30166                                                                                              lufenuron, milbemycin oxime
30169                                                                                                         tylosin tartrate
30172                                                                                              lufenuron, milbemycin oxime
30174                                                                                              lufenuron, milbemycin oxime
30178                                                                                                         neomycin sulfate
30179                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30185                                                                                             ivermectin, pyrantel pamoate
30186                                                                                                       maropitant citrate
30191                                                                                               milbemycin oxime, spinosad
30192                                                                                               milbemycin oxime, spinosad
30193                                                                                               milbemycin oxime, spinosad
30198                                                                                                     prednisolone acetate
30211                                                                                              lufenuron, milbemycin oxime
30212                                                                                                               fluralaner
30213                                                                                                             fenbendazole
30214                                                                                    dinotefuran, permethrin, pyriproxyfen
30218                                                                                                               fluralaner
30221                                                                                              lufenuron, milbemycin oxime
30239                                                                                              lufenuron, milbemycin oxime
30241                                                                                              lufenuron, milbemycin oxime
30242                                                                                              lufenuron, milbemycin oxime
30246                                                                                                            yunnan baiyao
30263                                                                                                               ivermectin
30264                                                                                       fipronil, permethrin, pyriproxyfen
30268                                                                                                               ivermectin
30269                                                                                       fipronil, permethrin, pyriproxyfen
30270                                                                                                               ivermectin
30271                                                                                                               afoxolaner
30274                                                                                             ivermectin, pyrantel pamoate
30275                                                                                                               afoxolaner
30277                                                                                             ivermectin, pyrantel pamoate
30278                                                                                                               afoxolaner
30284                                                                                                         milbemycin oxime
30285                                                                                                               afoxolaner
30286                                                                                             ivermectin, pyrantel pamoate
30290                                                                                           milbemycin oxime, praziquantel
30291                                                                                                               afoxolaner
30298                                                                                              lufenuron, milbemycin oxime
30299                                                                                              lufenuron, milbemycin oxime
30300                                                                                                 fipronil, (s)-methoprene
30306                                                                                                              oclacitinib
30310                                                                                              lufenuron, milbemycin oxime
30311                                                                             dexamethasone, neomycin sulfate, polymyxin b
30312                                                                                        betamethasone, gentamicin sulfate
30313                                                                                              lufenuron, milbemycin oxime
30317                                                                                                                mupirocin
30319                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30320                                                                                              lufenuron, milbemycin oxime
30321                                                                                                               fluralaner
30327                                                                                                               tobramycin
30329                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30337                                                                                        betamethasone, gentamicin sulfate
30338                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30344                                                                                                               ivermectin
30347                                                                                               milbemycin oxime, spinosad
30350                                                                                               milbemycin oxime, spinosad
30351                                                                                                               fluralaner
30352                                                                                             ivermectin, pyrantel pamoate
30353                                                                             dexamethasone, neomycin sulfate, polymyxin b
30354                                                                          betamethasone, clotrimazole, gentamicin sulfate
30355                                                                                                  chlorhexidine gluconate
30356                                                                                                     cefpodoxime proxetil
30357                                                                                        betamethasone, gentamicin sulfate
30358                                                                                                                 tramadol
30359                                                                                                                carprofen
30360                                                                                                                probiotic
30361                                                                                   joint supplement (glucosamine hcl/msm)
30366                                                                                                               fluralaner
30367                                                                                             ivermectin, pyrantel pamoate
30368                                                                                             ivermectin, pyrantel pamoate
30371                                                                                              lufenuron, milbemycin oxime
30372                                                                                                 flumethrin, imidacloprid
30373                                                                                                         milbemycin oxime
30374                                                                                                               fluralaner
30375                                                                                                 flumethrin, imidacloprid
30376                                                                                              lufenuron, milbemycin oxime
30377                                                                                                            metronidazole
30378                                                                                                   unspecified medication
30383                                                                                                 fipronil, (s)-methoprene
30384                                                                                             ivermectin, pyrantel pamoate
30385                                                                                                         milbemycin oxime
30386                                                                                                 fipronil, (s)-methoprene
30387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30388                                                                                                                  omega 3
30389                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30395                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30396                                                                                                                  omega 3
30403                                                                                                 fipronil, (s)-methoprene
30404                                                                                                         milbemycin oxime
30405                                                                                                         milbemycin oxime
30406                                                                                                 fipronil, (s)-methoprene
30418                                                                               ivermectin, praziquantel, pyrantel pamoate
30450                                                                             florfenicol, mometasone furoate, terbinafine
30464                                                                          betamethasone, clotrimazole, gentamicin sulfate
30471                                                                                              lufenuron, milbemycin oxime
30479                                                                                                 imidacloprid, permethrin
30480                                                                                             ivermectin, pyrantel pamoate
30483                                                                                               imidacloprid, pyriproxyfen
30484                                                                                               imidacloprid, pyriproxyfen
30485                                                                                        betamethasone, gentamicin sulfate
30492                                                                                              lufenuron, milbemycin oxime
30494                                                                                              lufenuron, milbemycin oxime
30496                                                                                                             pantoprazole
30515                                                                                              lufenuron, milbemycin oxime
30523                                                                                                                deracoxib
30528                                                                                              lufenuron, milbemycin oxime
30529                                                                                                       miconazole nitrate
30534                                                                                             ivermectin, pyrantel pamoate
30536                                                                                                      ear cleaner (zymox)
30541                                                                                  betamethasone, florfenicol, terbinafine
30555                                                                                              lufenuron, milbemycin oxime
30556                                                                                              lufenuron, milbemycin oxime
30573                                                                                                             praziquantel
30574                                                                                                             fenbendazole
30590                                                                                               milbemycin oxime, spinosad
30602                                                                                               milbemycin oxime, spinosad
30604                                                                                               milbemycin oxime, spinosad
30607                                                                                               milbemycin oxime, spinosad
30608                                                                                    dinotefuran, permethrin, pyriproxyfen
30619                                                                                                            metronidazole
30620                                                                                                              doxycycline
30623                                                                           dexamethasone, neomycin sulfate, thiabendazole
30644                                                                          betamethasone, clotrimazole, gentamicin sulfate
30685                                                                                                     digestive supplement
30689                                                                                                            yunnan baiyao
30692                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30700                                                                                               milbemycin oxime, spinosad
30701                                                                                                               fluralaner
30702                                                                                              lufenuron, milbemycin oxime
30707                                                                                                               fluralaner
30708                                                                                              lufenuron, milbemycin oxime
30709                                                                                              lufenuron, milbemycin oxime
30710                                                                                                               fluralaner
30713                                                                                                  chlorhexidine gluconate
30714                                                                             dexamethasone, neomycin sulfate, polymyxin b
30717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
30730                                                                                             ivermectin, pyrantel pamoate
30752                                                                                              lufenuron, milbemycin oxime
30753                                                                                                         milbemycin oxime
30754                                                                                               imidacloprid, pyriproxyfen
30756                                                                                               imidacloprid, pyriproxyfen
30757                                                                                               imidacloprid, pyriproxyfen
30758                                                                                                         milbemycin oxime
30764                                                                                               milbemycin oxime, spinosad
30765                                                                                                         milbemycin oxime
30766                                                                                                                sarolaner
30768                                                                                             ivermectin, pyrantel pamoate
30769                                                                                               bacitracin, hydrocortisone
30779                                                                                             ivermectin, pyrantel pamoate
30784                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30792                                                                                               imidacloprid, pyriproxyfen
30793                                                                                             ivermectin, pyrantel pamoate
30794                                                                                                                probiotic
30796                                                                                             ivermectin, pyrantel pamoate
30797                                                                                                                sarolaner
30799                                                                                             ivermectin, pyrantel pamoate
30800                                                                                                                sarolaner
30803                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30811                                                                                    dinotefuran, permethrin, pyriproxyfen
30812                                                                                                       maropitant citrate
30813                                                                                             ivermectin, pyrantel pamoate
30814                                                                          betamethasone, clotrimazole, gentamicin sulfate
30815                                                                                                       calming supplement
30816                                                                                                                 tramadol
30817                                                                                                       calming supplement
30819                                                                                    dinotefuran, permethrin, pyriproxyfen
30820                                                                                             ivermectin, pyrantel pamoate
30821                                                                                                            metronidazole
30822                                                                                                              amoxicillin
30823                                                                                                                carvacrol
30824                                                                                                   unspecified medication
30826                                                                                             ivermectin, pyrantel pamoate
30833                                                                                                               fluralaner
30834                                                                                  betamethasone, florfenicol, terbinafine
30840                                                                               dextromethorphan hydrobromide, guaifenesin
30844                                                                                             ivermectin, pyrantel pamoate
30876                                                                                                         pyrantel pamoate
30877                                                                                             ivermectin, pyrantel pamoate
30893                                                                                                             praziquantel
30901                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30909                                                                               ivermectin, praziquantel, pyrantel pamoate
30917                                                                                        betamethasone, gentamicin sulfate
30919                                                                                             ivermectin, pyrantel pamoate
30920                                                                                       fipronil, permethrin, pyriproxyfen
30936                                                                                                            yunnan baiyao
30943                                                                                lufenuron, milbemycin oxime, praziquantel
30944                                                                                                               fluralaner
30945                                                                                              lufenuron, milbemycin oxime
30947                                                                                              lufenuron, milbemycin oxime
30948                                                                                                               fluralaner
30949                                                                                              lufenuron, milbemycin oxime
30953                                                                                                                probiotic
30960                                                                                                                  omega 3
30961                                                                                                             multivitamin
30962                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30963                                                                                                                carprofen
30998                                                                                                 imidacloprid, permethrin
30999                                                                                             ivermectin, pyrantel pamoate
31000                                                                                                 imidacloprid, permethrin
31001                                                                                             ivermectin, pyrantel pamoate
31003                                                                                                               selamectin
31004                                                                                               imidacloprid, pyriproxyfen
31010                                                                                             ivermectin, pyrantel pamoate
31011                                                                                               imidacloprid, pyriproxyfen
31012                                                                                                            levothyroxine
31016                                                                                                immune support supplement
31022                                                                                             ivermectin, pyrantel pamoate
31023                                                                                                               fluralaner
31034                                                                                                         milbemycin oxime
31043                                                                                               imidacloprid, pyriproxyfen
31046                                                                                lufenuron, milbemycin oxime, praziquantel
31089                                                                                             ivermectin, pyrantel pamoate
31094                                                                                           milbemycin oxime, praziquantel
31095                                                                                                                carprofen
31096                                                                                           milbemycin oxime, praziquantel
31097                                                                                                                  taurine
31098                                                                                                                meclizine
31105                                                                                             ivermectin, pyrantel pamoate
31106                                                                                                 fipronil, (s)-methoprene
31132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31133                                                                                              lufenuron, milbemycin oxime
31134                                                                                                               afoxolaner
31135                                                                                              lufenuron, milbemycin oxime
31136                                                                                              lufenuron, milbemycin oxime
31137                                                                                                               afoxolaner
31138                                                                                                         milbemycin oxime
31139                                                                                                               afoxolaner
31142                                                                                                         milbemycin oxime
31148                                                                                             ivermectin, pyrantel pamoate
31149                                                                                             ivermectin, pyrantel pamoate
31152                                                                                                               ivermectin
31154                                                                                             ivermectin, pyrantel pamoate
31183                                                                                                               fluralaner
31186                                                                                                     dorzolamide, timolol
31195                                                                                lufenuron, milbemycin oxime, praziquantel
31196                                                                                                                deracoxib
31197                                                                                                                probiotic
31198                                                                                                               alprazolam
31199                                                                                             ivermectin, pyrantel pamoate
31200                                                                                                               fluoxetine
31203                                                                                                                probiotic
31209                                                                                                               gabapentin
31228                                                                                                               isoflurane
31232                                                                                                               isoflurane
31233                                                                                              lufenuron, milbemycin oxime
31234                                                                                                 fipronil, (s)-methoprene
31235                                                                                                         milbemycin oxime
31243                                                                                                         milbemycin oxime
31245                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31247                                                                                                         milbemycin oxime
31248                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31249                                                                                                         milbemycin oxime
31250                                                                                                 fipronil, (s)-methoprene
31260                                                                                                         milbemycin oxime
31263                                                                                              lufenuron, milbemycin oxime
31264                                                                                    dinotefuran, permethrin, pyriproxyfen
31265                                                                                    dinotefuran, permethrin, pyriproxyfen
31268                                                                                                              sevoflurane
31284                                                                                             ivermectin, pyrantel pamoate
31297                                                                                                               selamectin
31299                                                                                                               selamectin
31300                                                                                                               ivermectin
31301                                                                                                               fluralaner
31303                                                                                                               selamectin
31307                                                                                               imidacloprid, pyriproxyfen
31308                                                                                                         milbemycin oxime
31309                                                                                                               selamectin
31317                                                                                              rx diet - digestive support
31322                                                                                               milbemycin oxime, spinosad
31328                                                                                                               afoxolaner
31330                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31350                                                                           mometasone furoate, orbifloxacin, posaconazole
31353                                                                                                               prednisone
31356                                                                                                  ketoconazole, tris-edta
31357                                                                                             ivermectin, pyrantel pamoate
31358                                                                                                               afoxolaner
31359                                                                                   joint supplement (glucosamine hcl/msm)
31360                                                                                                                  omega 3
31361                                                                                             ivermectin, pyrantel pamoate
31363                                                                                                               afoxolaner
31365                                                                                                         milbemycin oxime
31366                                                                                                               afoxolaner
31367                                                                                                              robenacoxib
31369                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
31370                                                                                  betamethasone, florfenicol, terbinafine
31371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31373                                                                                              lufenuron, milbemycin oxime
31374                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31375                                                                                              lufenuron, milbemycin oxime
31380                                                                                                              oclacitinib
31381                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31383                                                                                              lufenuron, milbemycin oxime
31384                                                                                               milbemycin oxime, spinosad
31385                                                                                                               afoxolaner
31386                                                                                             ivermectin, pyrantel pamoate
31389                                                                                                         pyrantel pamoate
31408                                                                                                               ivermectin
31410                                                                                                                vitamin k
31411                                                                                                       maropitant citrate
31412                                                                                                       activated charcoal
31413                                                                                                                vitamin k
31414                                                                                                               fluralaner
31415                                                                                             ivermectin, pyrantel pamoate
31416                                                                                                               fluralaner
31417                                                                                             ivermectin, pyrantel pamoate
31418                                                                                             ivermectin, pyrantel pamoate
31419                                                                                                               fluralaner
31420                                                                                                                  taurine
31423                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31434                                                                                                  ketoconazole, tris-edta
31437                                                                                        trimeprazine tartrate, prednisone
31438                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31439                                                                          betamethasone, clotrimazole, gentamicin sulfate
31440                                                                                             ivermectin, pyrantel pamoate
31441                                                                                             ivermectin, pyrantel pamoate
31446                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31447                                                                                         phytosphingosine, salicylic acid
31449                                                                                             ivermectin, pyrantel pamoate
31450                                                                                                               afoxolaner
31452                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31457                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31463                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31471                                                                                                               ivermectin
31502                                                                                                               ivermectin
31503                                                                                                               afoxolaner
31504                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31506                                                                                                               afoxolaner
31507                                                                                                            levothyroxine
31508                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31528                                                                                                               afoxolaner
31529                                                                                             ivermectin, pyrantel pamoate
31531                                                                                                               afoxolaner
31539                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31542                                                                                                 urinary tract supplement
31548                                                                                                               lokivetmab
31551                                                                                                  ketoconazole, tris-edta
31552                                                                                                 fipronil, (s)-methoprene
31553                                                                                                 fipronil, (s)-methoprene
31599                                                                                                                carprofen
31602                                                                                             ivermectin, pyrantel pamoate
31603                                                                                                 fipronil, (s)-methoprene
31611                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31612                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
31616                                                                                                                  omega 3
31617                                                                                                               ivermectin
31618                                                                                                               afoxolaner
31619                                                                                                                  omega 3
31637                                                                                             ivermectin, pyrantel pamoate
31638                                                                                                               afoxolaner
31640                                                                                                         phytosphingosine
31641                                                                                                                  omega 3
31643                                                                                             ivermectin, pyrantel pamoate
31644                                                                                                                meloxicam
31645                                                                                                         phytosphingosine
31646                                                                                             ivermectin, pyrantel pamoate
31647                                                                                                               afoxolaner
31651                                                                                                              doxycycline
31652                                                                                                  ketoconazole, tris-edta
31653                                                                                             ivermectin, pyrantel pamoate
31654                                                                                                               afoxolaner
31655                                                                                                               gabapentin
31656                                                                                                  ketoconazole, tris-edta
31657                                                                                                                meloxicam
31665                                                                                             ivermectin, pyrantel pamoate
31666                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31678                                                                                             ivermectin, pyrantel pamoate
31679                                                                                                 fipronil, (s)-methoprene
31680                                                                                             ivermectin, pyrantel pamoate
31687                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31688                                                                                             ivermectin, pyrantel pamoate
31689                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31696                                                                                                 fipronil, (s)-methoprene
31707                                                                                             ivermectin, pyrantel pamoate
31713                                                                                             ivermectin, pyrantel pamoate
31716                                                                                              lufenuron, milbemycin oxime
31725                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31726                                                                                               imidacloprid, pyriproxyfen
31727                                                                                              lufenuron, milbemycin oxime
31730                                                                                              lufenuron, milbemycin oxime
31731                                                                                               imidacloprid, pyriproxyfen
31734                                                                                              lufenuron, milbemycin oxime
31735                                                                                               imidacloprid, pyriproxyfen
31736                                                                                                                probiotic
31737                                                                                                             fenbendazole
31742                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
31747                                                                                                         milbemycin oxime
31748                                                                                                               gabapentin
31760                                                                                             ivermectin, pyrantel pamoate
31761                                                                                                             fenbendazole
31762                                                                                             ivermectin, pyrantel pamoate
31763                                                                                                               fluralaner
31765                                                                                             ivermectin, pyrantel pamoate
31766                                                                                                               fluralaner
31768                                                                                               milbemycin oxime, spinosad
31769                                                                                             ivermectin, pyrantel pamoate
31771                                                                                             ivermectin, pyrantel pamoate
31773                                                                                             ivermectin, pyrantel pamoate
31774                                                                                        betamethasone, gentamicin sulfate
31777                                                                                                               ivermectin
31780                                                                                              lufenuron, milbemycin oxime
31781                                                                                           milbemycin oxime, praziquantel
31798                                                                                             ivermectin, pyrantel pamoate
31800                                                                                                                 fipronil
31803                                                                                           praziquantel, pyrantel pamoate
31804                                                                                                               afoxolaner
31807                                                                                                 fipronil, (s)-methoprene
31808                                                                                             ivermectin, pyrantel pamoate
31810                                                                                             ivermectin, pyrantel pamoate
31811                                                                                                 fipronil, (s)-methoprene
31818                                                                                                 fipronil, (s)-methoprene
31819                                                                                             ivermectin, pyrantel pamoate
31824                                                                                                               ivermectin
31825                                                                                                 fipronil, (s)-methoprene
31826                                                                                        betamethasone, gentamicin sulfate
31833                                                                                                 urinary tract supplement
31834                                                                                        betamethasone, gentamicin sulfate
31836                                                                                                 urinary tract supplement
31837                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
31840                                                                                              lufenuron, milbemycin oxime
31841                                                                                                                meloxicam
31842                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31843                                                                                                             fenbendazole
31844                                                                                              lufenuron, milbemycin oxime
31845                                                                          betamethasone, clotrimazole, gentamicin sulfate
31846                                                                                                 flumethrin, imidacloprid
31847                                                                                              lufenuron, milbemycin oxime
31848                                                                                              lufenuron, milbemycin oxime
31849                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31850                                                                                    enrofloxacin, ketoconazole, tris-edta
31853                                                                                                 fipronil, (s)-methoprene
31861                                                                                           milbemycin oxime, praziquantel
31864                                                                                                         milbemycin oxime
31866                                                                                                         milbemycin oxime
31868                                                                                              lufenuron, milbemycin oxime
31869                                                                                                         milbemycin oxime
31873                                                                                                         sulfadimethoxine
31874                                                                                                         milbemycin oxime
31876                                                                                                      ear cleaner (zymox)
31880                                                                                  transcranial magnetic stimulation (tms)
31883                                                                                                         milbemycin oxime
31885                                                                                                         milbemycin oxime
31888                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31891                                                                               ivermectin, praziquantel, pyrantel pamoate
31892                                                                                                               afoxolaner
31895                                                                                                         milbemycin oxime
31896                                                                                                               afoxolaner
31897                                                                                                         milbemycin oxime
31898                                                                                                               afoxolaner
31906                                                                                                 skin and coat supplement
31907                                                                                                               fluralaner
31908                                                                                                               ivermectin
31909                                                                                                               ivermectin
31911                                                                                              lufenuron, milbemycin oxime
31916                                                                                              lufenuron, milbemycin oxime
31917                                                                                                               afoxolaner
31930                                                                                                                deracoxib
31937                                                                                               milbemycin oxime, spinosad
31938                                                                                              lufenuron, milbemycin oxime
31939                                                                                              lufenuron, milbemycin oxime
31940                                                                                              lufenuron, milbemycin oxime
31941                                                                                              lufenuron, milbemycin oxime
31942                                                                                              lufenuron, milbemycin oxime
31945                                                                                             ivermectin, pyrantel pamoate
31946                                                                                             ivermectin, pyrantel pamoate
31947                                                                                             ivermectin, pyrantel pamoate
31948                                                                                                               fluralaner
31953                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31954                                                                                                               fluralaner
31955                                                                                             ivermectin, pyrantel pamoate
31967                                                                                                            metronidazole
31968                                                                                             ivermectin, pyrantel pamoate
31969                                                                                                 fipronil, (s)-methoprene
31985                                                                                                               isoflurane
31990                                                                                              lufenuron, milbemycin oxime
31991                                                                                                 fipronil, (s)-methoprene
31993                                                                                                 fipronil, (s)-methoprene
32002                                                                                             ivermectin, pyrantel pamoate
32003                                                                                                               afoxolaner
32006                                                                               dextromethorphan hydrobromide, guaifenesin
32015                                                                                                 fipronil, (s)-methoprene
32016                                                                                             ivermectin, pyrantel pamoate
32020                                                                                                               ivermectin
32025                                                                                                                cisapride
32032                                                                                lufenuron, milbemycin oxime, praziquantel
32034                                                                                              lufenuron, milbemycin oxime
32035                                                                                              lufenuron, milbemycin oxime
32040                                                                                              lufenuron, milbemycin oxime
32046                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32053                                                                                             ivermectin, pyrantel pamoate
32054                                                                                                 fipronil, (s)-methoprene
32055                                                                                                 fipronil, (s)-methoprene
32056                                                                                             ivermectin, pyrantel pamoate
32057                                                                                                               afoxolaner
32058                                                                                             ivermectin, pyrantel pamoate
32059                                                                                             ivermectin, pyrantel pamoate
32060                                                                                                               afoxolaner
32074                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32076                                                                                             ivermectin, pyrantel pamoate
32078                                                                                             ivermectin, pyrantel pamoate
32079                                                                                                               afoxolaner
32080                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32084                                                                             dexamethasone, neomycin sulfate, polymyxin b
32095                                                                                                               fluralaner
32097                                                                                                         milbemycin oxime
32098                                                                                           milbemycin oxime, praziquantel
32099                                                                                                               fluralaner
32100                                                                                           milbemycin oxime, praziquantel
32101                                                                                                               fluralaner
32102                                                                                                               fluralaner
32103                                                                                           milbemycin oxime, praziquantel
32104                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32105                                                                                           milbemycin oxime, praziquantel
32106                                                                                                               fluralaner
32108                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32114                                                                                                 flumethrin, imidacloprid
32116                                                                                                 flumethrin, imidacloprid
32119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32121                                                                                                               ivermectin
32122                                                                                                               afoxolaner
32123                                                                                                         tylosin tartrate
32128                                                                                                               ivermectin
32129                                                                                                               afoxolaner
32131                                                                                                               alprazolam
32132                                                                                                               ivermectin
32133                                                                                                               ivermectin
32134                                                                                                         milbemycin oxime
32139                                                                                           milbemycin oxime, praziquantel
32140                                                                                                               fluralaner
32146                                                                                                               fluralaner
32147                                                                                                         milbemycin oxime
32153                                                                                           milbemycin oxime, praziquantel
32154                                                                                                               fluralaner
32160                                                                                                               fluralaner
32161                                                                                                         milbemycin oxime
32168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32171                                                                                      ear cleaner (zymox), hydrocortisone
32175                                                                                      ear cleaner (zymox), hydrocortisone
32179                                                                                             ivermectin, pyrantel pamoate
32180                                                                                                               afoxolaner
32183                                                                                      ear cleaner (zymox), hydrocortisone
32184                                                                                                         phytosphingosine
32187                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32212                                                                                                         tylosin tartrate
32221                                                                                                         milbemycin oxime
32222                                                                                                         milbemycin oxime
32231                                                                                             ivermectin, pyrantel pamoate
32232                                                                                                               fluralaner
32233                                                                               ivermectin, praziquantel, pyrantel pamoate
32234                                                                                                               fluralaner
32236                                                                                             ivermectin, pyrantel pamoate
32237                                                                                                               afoxolaner
32251                                                                                                               fluralaner
32252                                                                                                               moxidectin
32266                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32276                                                                                        betamethasone, gentamicin sulfate
32290                                                                                                               isoflurane
32295                                                                                               milbemycin oxime, spinosad
32296                                                                                                               ivermectin
32297                                                                                   cyphenothrin, fipronil, (s)-methoprene
32310                                                                                        betamethasone, gentamicin sulfate
32312                                                                                             ivermectin, pyrantel pamoate
32313                                                                                                               fluralaner
32315                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32320                                                                                                               isoflurane
32343                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32354                                                                                                              hydroxyzine
32355                                                                                                               prednisone
32356                                                                                                          diphenhydramine
32358                                                                                        betamethasone, gentamicin sulfate
32359                                                                                                 fipronil, (s)-methoprene
32360                                                                                              lufenuron, milbemycin oxime
32362                                                                                              lufenuron, milbemycin oxime
32363                                                                                                   unspecified medication
32364                                                                                                               lokivetmab
32365                                                                                                               lokivetmab
32366                                                                                                              oclacitinib
32370                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32384                                                                                       fipronil, permethrin, pyriproxyfen
32389                                                                                                               fluralaner
32390                                                                                                               moxidectin
32393                                                                                                               moxidectin
32394                                                                                                               fluralaner
32397                                                                                                            levothyroxine
32417                                                                                              lufenuron, milbemycin oxime
32425                                                                                                 fipronil, (s)-methoprene
32426                                                                                             ivermectin, pyrantel pamoate
32427                                                                                                         milbemycin oxime
32445                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32447                                                                                              lufenuron, milbemycin oxime
32448                                                                                                         milbemycin oxime
32449                                                                                                               afoxolaner
32460                                                                                                               prednisone
32463                                                                                                         milbemycin oxime
32464                                                                                                               fluralaner
32466                                                                                             ivermectin, pyrantel pamoate
32467                                                                                                               fluralaner
32475                                                                                                              clindamycin
32476                                                                                                                carprofen
32477                                                                                             ivermectin, pyrantel pamoate
32478                                                                                                               fluralaner
32504                                                                                              lufenuron, milbemycin oxime
32505                                                                                               imidacloprid, pyriproxyfen
32507                                                                                                                mupirocin
32509                                                                                              lufenuron, milbemycin oxime
32510                                                                                               imidacloprid, pyriproxyfen
32511                                                                                              lufenuron, milbemycin oxime
32512                                                                                               imidacloprid, pyriproxyfen
32513                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32520                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32521                                                                                                                ofloxacin
32529                                                                                              lufenuron, milbemycin oxime
32530                                                                                              lufenuron, milbemycin oxime
32535                                                                                              lufenuron, milbemycin oxime
32536                                                                                                               fluralaner
32538                                                                          betamethasone, clotrimazole, gentamicin sulfate
32542                                                                          betamethasone, clotrimazole, gentamicin sulfate
32557                                                                                             ivermectin, pyrantel pamoate
32558                                                                                                 fipronil, (s)-methoprene
32561                                                                                             ivermectin, pyrantel pamoate
32562                                                                                               imidacloprid, pyriproxyfen
32575                                                                                       chlorhexidine gluconate, ophytrium
32576                                                                                       joint supplement (glucosamine hcl)
32629                                                                                                             multivitamin
32631                                                                                           milbemycin oxime, praziquantel
32632                                                                                    dinotefuran, permethrin, pyriproxyfen
32633                                                                                                             multivitamin
32635                                                                                    dinotefuran, permethrin, pyriproxyfen
32637                                                                                        betamethasone, gentamicin sulfate
32639                                                                                                         milbemycin oxime
32640                                                                                                                sarolaner
32642                                                                                              lufenuron, milbemycin oxime
32643                                                                                                         milbemycin oxime
32652                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32654                                                                                                         pyrantel pamoate
32657                                                                                                               alprazolam
32664                                                                                             ivermectin, pyrantel pamoate
32670                                                                                              lufenuron, milbemycin oxime
32672                                                                                                  chlorhexidine gluconate
32673                                                                                             ivermectin, pyrantel pamoate
32678                                                                                              lufenuron, milbemycin oxime
32680                                                                                              lufenuron, milbemycin oxime
32682                                                                                              lufenuron, milbemycin oxime
32685                                                                                              lufenuron, milbemycin oxime
32692                                                                                                                 spinosad
32694                                                                                        betamethasone, gentamicin sulfate
32695                                                                                                                 spinosad
32698                                                                                                                 spinosad
32703                                                                                                                 spinosad
32708                                                                                           polysulfated glycosaminoglycan
32726                                                                                                                ketorolac
32737                                                                             dexamethasone, neomycin sulfate, polymyxin b
32739                                                                               ivermectin, praziquantel, pyrantel pamoate
32740                                                                                                         milbemycin oxime
32742                                                                                                         milbemycin oxime
32743                                                                                                                lotilaner
32744                                                                                                               ivermectin
32745                                                                                                               afoxolaner
32750                                                                                             ivermectin, pyrantel pamoate
32751                                                                                                               afoxolaner
32767                                                                                        allergy immunotherapy - injection
32768                                                                                                               afoxolaner
32769                                                                                                               moxidectin
32770                                                                                                              oclacitinib
32777                                                                                                                probiotic
32798                                                                             florfenicol, mometasone furoate, terbinafine
32815                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32829                                                                                                 fipronil, (s)-methoprene
32841                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
32844                                                                                       amoxicillin, clavulanate potassium
32849                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
32850                                                                                                                trazodone
32856                                                                                                 fipronil, (s)-methoprene
32857                                                                                             ivermectin, pyrantel pamoate
32858                                                                                                 fipronil, (s)-methoprene
32859                                                                                             ivermectin, pyrantel pamoate
32860                                                                                                              oclacitinib
32862                                                                                                 fipronil, (s)-methoprene
32863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32869                                                                                                               fluralaner
32870                                                                                             ivermectin, pyrantel pamoate
32871                                                                                                               lokivetmab
32879                                                                                                                  omega 3
32883                                                                                                               ivermectin
32884                                                                            attapulgite, bismuth subsalicylate, kanamycin
32887                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32888                                                                                                  ketoconazole, tris-edta
32903                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32912                                                                             dexamethasone, neomycin sulfate, polymyxin b
32915                                                                                             ivermectin, pyrantel pamoate
32923                                                                                             ivermectin, pyrantel pamoate
32930                                                                                              lufenuron, milbemycin oxime
32937                                                                                                 imidacloprid, permethrin
32938                                                                                             ivermectin, pyrantel pamoate
32939                                                                                                               cetirizine
32940                                                                                                                ophytrium
32942                                                                                             ivermectin, pyrantel pamoate
32943                                                                                                               fluralaner
32944                                                                                                               afoxolaner
32949                                                                                                                ophytrium
32950                                                                                                                  omega 3
32951                                                                                             ivermectin, pyrantel pamoate
32952                                                                                                               afoxolaner
32953                                                                                                              oclacitinib
32954                                                                                       amoxicillin, clavulanate potassium
32955                                                                                             ivermectin, pyrantel pamoate
32956                                                                                                               afoxolaner
32964                                                                                    chlorhexidine gluconate, ketoconazole
32965                                                                           dexamethasone, neomycin sulfate, thiabendazole
32983                                                                                                               cephalexin
32999                                                                                              lufenuron, milbemycin oxime
33000                                                                                               imidacloprid, pyriproxyfen
33004                                                                                              lufenuron, milbemycin oxime
33005                                                                                               imidacloprid, pyriproxyfen
33008                                                                                               imidacloprid, pyriproxyfen
33009                                                                                              lufenuron, milbemycin oxime
33010                                                                                              lufenuron, milbemycin oxime
33011                                                                                                               afoxolaner
33014                                                                             florfenicol, mometasone furoate, terbinafine
33015                                                                                                             fenbendazole
33018                                                                                                             fenbendazole
33022                                                                                             ivermectin, pyrantel pamoate
33023                                                                                                 fipronil, (s)-methoprene
33027                                                                                                               afoxolaner
33043                                                                                             ivermectin, pyrantel pamoate
33047                                                                                       amoxicillin, clavulanate potassium
33066                                                                                                               selamectin
33067                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33068                                                                                                               selamectin
33073                                                                                                         pyrantel pamoate
33074                                                                                    dinotefuran, permethrin, pyriproxyfen
33075                                                                                                               ivermectin
33077                                                                                                   cyphenothrin, fipronil
33078                                                                                                               ivermectin
33079                                                                                    dinotefuran, permethrin, pyriproxyfen
33080                                                                                                                 fipronil
33081                                                                                                         milbemycin oxime
33085                                                                                    dinotefuran, permethrin, pyriproxyfen
33086                                                                                                         milbemycin oxime
33087                                                                                    dinotefuran, permethrin, pyriproxyfen
33088                                                                                                         milbemycin oxime
33089                                                                                    dinotefuran, permethrin, pyriproxyfen
33090                                                                                                         milbemycin oxime
33091                                                                                    dinotefuran, permethrin, pyriproxyfen
33092                                                                                                         milbemycin oxime
33096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33107                                                                                             ivermectin, pyrantel pamoate
33108                                                                                             ivermectin, pyrantel pamoate
33110                                                                                                         milbemycin oxime
33113                                                                                             ivermectin, pyrantel pamoate
33123                                                                                                             ketoconazole
33124                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
33125                                                                                                              doxycycline
33126                                                                                        betamethasone, gentamicin sulfate
33128                                                                             florfenicol, mometasone furoate, terbinafine
33132                                                                                                               afoxolaner
33133                                                                                                               ivermectin
33138                                                                                             ivermectin, pyrantel pamoate
33157                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33159                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33166                                                                                                   cyphenothrin, fipronil
33187                                                                                             ivermectin, pyrantel pamoate
33188                                                                                                               fluralaner
33189                                                                                                              hydroxyzine
33190                                                                                               milbemycin oxime, spinosad
33191                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33209                                                                               chloroxylenol, lactic acid, salicylic acid
33211                                                                                              lufenuron, milbemycin oxime
33212                                                                                    dinotefuran, permethrin, pyriproxyfen
33220                                                                                 febantel, praziquantel, pyrantel pamoate
33222                                                                                              lufenuron, milbemycin oxime
33223                                                                                    dinotefuran, permethrin, pyriproxyfen
33226                                                                                                                  omega 3
33227                                                                                                                probiotic
33229                                                                                    dinotefuran, permethrin, pyriproxyfen
33230                                                                                              lufenuron, milbemycin oxime
33233                                                                                                                probiotic
33235                                                                                              lufenuron, milbemycin oxime
33236                                                                                    dinotefuran, permethrin, pyriproxyfen
33239                                                                                                                probiotic
33242                                                                                              lufenuron, milbemycin oxime
33243                                                                                    dinotefuran, permethrin, pyriproxyfen
33271                                                                                                   unspecified medication
33286                                                                                             ivermectin, pyrantel pamoate
33289                                                                               ivermectin, praziquantel, pyrantel pamoate
33292                                                                                             ivermectin, pyrantel pamoate
33293                                                                                                 fipronil, (s)-methoprene
33317                                                                                                               ivermectin
33318                                                                                                 fipronil, (s)-methoprene
33327                                                                                                 fipronil, (s)-methoprene
33333                                                                                              lufenuron, milbemycin oxime
33335                                                                                              lufenuron, milbemycin oxime
33336                                                                                              lufenuron, milbemycin oxime
33338                                                                                                               lokivetmab
33347                                                                                                               lokivetmab
33354                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33355                                                                                        betamethasone, gentamicin sulfate
33358                                                                                             ivermectin, pyrantel pamoate
33363                                                                                             ivermectin, pyrantel pamoate
33364                                                                                                               fluralaner
33369                                                                                                               fluralaner
33370                                                                                             ivermectin, pyrantel pamoate
33374                                                                                    chlorhexidine gluconate, ketoconazole
33375                                                                               coal tar solution, menthol, salicylic acid
33376                                                                                                 joint supplement (other)
33377                                                                                                                  omega 3
33385                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33387                                                                                                       gentamicin sulfate
33389                                                                                               neomycin sulfate, nystatin
33410                                                                                             ivermectin, pyrantel pamoate
33411                                                                                                 flumethrin, imidacloprid
33412                                                                                             ivermectin, pyrantel pamoate
33414                                                                                                 flumethrin, imidacloprid
33416                                                                                                                 tramadol
33419                                                                                             ivermectin, pyrantel pamoate
33456                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33468                                                                                                  ketoconazole, tris-edta
33471                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33479                                                                                                               afoxolaner
33480                                                                                             ivermectin, pyrantel pamoate
33482                                                                             dexamethasone, neomycin sulfate, polymyxin b
33489                                                                                                         pyrantel pamoate
33490                                                                                              lufenuron, milbemycin oxime
33491                                                                                              lufenuron, milbemycin oxime
33492                                                                                              lufenuron, milbemycin oxime
33493                                                                                              lufenuron, milbemycin oxime
33497                                                                                              lufenuron, milbemycin oxime
33499                                                                                                 skin and coat supplement
33500                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33502                                                                                                               fluralaner
33504                                                                                             ivermectin, pyrantel pamoate
33521                                                                                              lufenuron, milbemycin oxime
33539                                                                                                             deltamethrin
33541                                                                                                             deltamethrin
33542                                                                           dexamethasone, neomycin sulfate, thiabendazole
33543                                                                                                             deltamethrin
33544                                                                                                             deltamethrin
33573                                                                                             ivermectin, pyrantel pamoate
33576                                                                                             ivermectin, pyrantel pamoate
33577                                                                                                 fipronil, (s)-methoprene
33580                                                                                              lufenuron, milbemycin oxime
33581                                                                                                               indoxacarb
33582                                                                                                              doxycycline
33583                                                                                        trimeprazine tartrate, prednisone
33590                                                                                              lufenuron, milbemycin oxime
33591                                                                                              lufenuron, milbemycin oxime
33592                                                                                                         milbemycin oxime
33601                                                                                                               fluralaner
33602                                                                                                         milbemycin oxime
33614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33641                                                                                lufenuron, milbemycin oxime, praziquantel
33644                                                                                lufenuron, milbemycin oxime, praziquantel
33645                                                                                              lufenuron, milbemycin oxime
33647                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33649                                                                                              lufenuron, milbemycin oxime
33651                                                                                lufenuron, milbemycin oxime, praziquantel
33653                                                                                                                trazodone
33655                                                                                              lufenuron, milbemycin oxime
33665                                                                                              lufenuron, milbemycin oxime
33666                                                                                                         milbemycin oxime
33667                                                                                    dinotefuran, permethrin, pyriproxyfen
33683                                                                                                         milbemycin oxime
33684                                                                                                 unspecified chemotherapy
33690                                                                                             ivermectin, pyrantel pamoate
33691                                                                                                               afoxolaner
33692                                                                                                                 tramadol
33693                                                                                                                carprofen
33694                                                                                                            metronidazole
33695                                                                                                               cephalexin
33696                                                                                             ivermectin, pyrantel pamoate
33697                                                                                                               afoxolaner
33702                                                                                                                  omega 3
33704                                                                                                 fipronil, (s)-methoprene
33706                                                                                              lufenuron, milbemycin oxime
33710                                                                                              lufenuron, milbemycin oxime
33711                                                                                                               afoxolaner
33714                                                                                              lufenuron, milbemycin oxime
33717                                                                                                                probiotic
33722                                                                                       chlorhexidine gluconate, ophytrium
33723                                                                                              lufenuron, milbemycin oxime
33724                                                                                              lufenuron, milbemycin oxime
33725                                                                                                                sarolaner
33737                                                                                                                probiotic
33739                                                                                               milbemycin oxime, spinosad
33740                                                                                               milbemycin oxime, spinosad
33756                                                                                neomycin sulfate, polymyxin b, gramicidin
33767                                                                                                         milbemycin oxime
33797                                                                                               imidacloprid, pyriproxyfen
33798                                                                                             ivermectin, pyrantel pamoate
33804                                                                                             ivermectin, pyrantel pamoate
33805                                                                                               imidacloprid, pyriproxyfen
33815                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33818                                                                                                               famotidine
33822                                                                                             ivermectin, pyrantel pamoate
33823                                                                                                               afoxolaner
33824                                                                                             ivermectin, pyrantel pamoate
33825                                                                                                               afoxolaner
33828                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33844                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33850                                                                                             ivermectin, pyrantel pamoate
33868                                                                                                               ivermectin
33869                                                                                             ivermectin, pyrantel pamoate
33870                                                                                             ivermectin, pyrantel pamoate
33882                                                                                                                 tramadol
33885                                                                                             ivermectin, pyrantel pamoate
33890                                                                                                               amantadine
33894                                                                                                  ketoconazole, tris-edta
33901                                                                                             testicular health supplement
33905                                                                                        betamethasone, gentamicin sulfate
33907                                                                                        betamethasone, gentamicin sulfate
33909                                                                                        betamethasone, gentamicin sulfate
33911                                                                                                 fipronil, (s)-methoprene
33913                                                                                                  triamcinolone acetonide
33914                                                                                        betamethasone, gentamicin sulfate
33916                                                                                        allergy immunotherapy - injection
33919                                                                                                                mupirocin
33927                                                                                                 skin and coat supplement
33929                                                                                                 imidacloprid, moxidectin
33939                                                                                                                mupirocin
33940                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33987                                                                                                             multivitamin
33988                                                                                             ivermectin, pyrantel pamoate
33989                                                                                                 fipronil, (s)-methoprene
33990                                                                                                               fluralaner
33991                                                                                          ear cleaner (epi-otic advanced)
33992                                                                                             ivermectin, pyrantel pamoate
33993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33994                                                                                                  ketoconazole, tris-edta
33995                                                                                                               fluralaner
33998                                                                                                  ketoconazole, tris-edta
34000                                                                                                             multivitamin
34002                                                                                   joint supplement (glucosamine hcl/msm)
34003                                                                                                  ketoconazole, tris-edta
34005                                                                                                       calming supplement
34011                                                                          betamethasone, clotrimazole, gentamicin sulfate
34012                                                                                                  ketoconazole, tris-edta
34014                                                                                 ceramide complex, coconut oil, safflower
34015                                                                                                 fipronil, (s)-methoprene
34016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34020                                                                               ivermectin, praziquantel, pyrantel pamoate
34021                                                                                                 fipronil, (s)-methoprene
34022                                                                                          ear cleaner (epi-otic advanced)
34024                                                                               dextromethorphan hydrobromide, guaifenesin
34025                                                                                   cyphenothrin, fipronil, (s)-methoprene
34026                                                                                                                 spinosad
34027                                                                                               milbemycin oxime, spinosad
34028                                                                                                 fipronil, (s)-methoprene
34029                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34030                                                                                              lufenuron, milbemycin oxime
34031                                                                                                 fipronil, (s)-methoprene
34043                                                                                              lufenuron, milbemycin oxime
34044                                                                                              lufenuron, milbemycin oxime
34046                                                                                                 fipronil, (s)-methoprene
34047                                                                                              lufenuron, milbemycin oxime
34048                                                                                              lufenuron, milbemycin oxime
34049                                                                                                 flumethrin, imidacloprid
34051                                                                                              lufenuron, milbemycin oxime
34053                                                                                              lufenuron, milbemycin oxime
34054                                                                                                 flumethrin, imidacloprid
34069                                                                                             ivermectin, pyrantel pamoate
34070                                                                                                               afoxolaner
34071                                                                                                                carprofen
34072                                                                                                               cephalexin
34073                                                                                                               diclofenac
34074                                                                                             ivermectin, pyrantel pamoate
34075                                                                                   imidacloprid, permethrin, pyriproxyfen
34077                                                                                              lufenuron, milbemycin oxime
34087                                                                                               milbemycin oxime, spinosad
34090                                                                                                      ear cleaner (zymox)
34091                                                                                             ivermectin, pyrantel pamoate
34092                                                                                                 fipronil, (s)-methoprene
34093                                                                                                 flumethrin, imidacloprid
34094                                                                                                  acetic acid, boric acid
34095                                                                                                         milbemycin oxime
34096                                                                                           milbemycin oxime, praziquantel
34105                                                                                                hydrocortisone, pramoxine
34107                                                                                                 fipronil, (s)-methoprene
34108                                                                               ivermectin, praziquantel, pyrantel pamoate
34109                                                                                                             fenbendazole
34110                                                                                                 fipronil, (s)-methoprene
34111                                                                                             ivermectin, pyrantel pamoate
34112                                                                                 febantel, praziquantel, pyrantel pamoate
34113                                                                                                 fipronil, (s)-methoprene
34115                                                                                                 fipronil, (s)-methoprene
34125                                                                                    dinotefuran, permethrin, pyriproxyfen
34126                                                                                             ivermectin, pyrantel pamoate
34128                                                                                        betamethasone, gentamicin sulfate
34132                                                                                             ivermectin, pyrantel pamoate
34134                                                                                             ivermectin, pyrantel pamoate
34135                                                                                    dinotefuran, permethrin, pyriproxyfen
34138                                                                                                                probiotic
34140                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34147                                                                                             ivermectin, pyrantel pamoate
34148                                                                                                               afoxolaner
34152                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34155                                                                                                                probiotic
34156                                                                                                               loratadine
34157                                                                                                               famotidine
34161                                                                                             ivermectin, pyrantel pamoate
34162                                                                                                               afoxolaner
34227                                                                                                                  rx clay
34230                                                                                                                cisapride
34231                                                                                                              ondansetron
34232                                                                                                                probiotic
34233                                                                                                               famotidine
34234                                                                                                       maropitant citrate
34235                                                                                                              mirtazapine
34238                                                                                             ivermectin, pyrantel pamoate
34239                                                                                                 imidacloprid, permethrin
34240                                                                                               imidacloprid, pyriproxyfen
34241                                                                                             ivermectin, pyrantel pamoate
34242                                                                                                         milbemycin oxime
34243                                                                                               imidacloprid, pyriproxyfen
34246                                                                                               imidacloprid, pyriproxyfen
34247                                                                                                         milbemycin oxime
34249                                                                                                             fenbendazole
34254                                                                                              lufenuron, milbemycin oxime
34260                                                                                       amoxicillin, clavulanate potassium
34262                                                                                              lufenuron, milbemycin oxime
34264                                                                                       amoxicillin, clavulanate potassium
34267                                                                                              lufenuron, milbemycin oxime
34268                                                                                              lufenuron, milbemycin oxime
34269                                                                                                             multivitamin
34282                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
34287                                                                             dexamethasone, neomycin sulfate, polymyxin b
34288                                                                                             ivermectin, pyrantel pamoate
34289                                                                             florfenicol, mometasone furoate, terbinafine
34290                                                                             florfenicol, mometasone furoate, terbinafine
34293                                                                             florfenicol, mometasone furoate, terbinafine
34304                                                                             florfenicol, mometasone furoate, terbinafine
34327                                                                                                                vitamin b
34332                                                                                                               ivermectin
34333                                                                          betamethasone, clotrimazole, gentamicin sulfate
34334                                                                                               imidacloprid, pyriproxyfen
34336                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34340                                                                                                               afoxolaner
34341                                                                                             ivermectin, pyrantel pamoate
34342                                                                                                                 geraniol
34343                                                                                      cedarwood oil, rosemary oil, sesame
34344                                                                                             ivermectin, pyrantel pamoate
34345                                                                                                 fipronil, (s)-methoprene
34348                                                                           dexamethasone, neomycin sulfate, thiabendazole
34356                                                                                                                 spinosad
34359                                                                                                                 spinosad
34360                                                                                                               ivermectin
34361                                                                                             ivermectin, pyrantel pamoate
34362                                                                                                                 spinosad
34367                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34369                                                                                                     cefpodoxime proxetil
34374                                                                                                         milbemycin oxime
34375                                                                                                               fluralaner
34378                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34379                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34388                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34401                                                                                             ivermectin, pyrantel pamoate
34403                                                                                                               afoxolaner
34409                                                                                                               ivermectin
34410                                                                                                               afoxolaner
34418                                                                                              lufenuron, milbemycin oxime
34419                                                                                              lufenuron, milbemycin oxime
34425                                                                                       fipronil, permethrin, pyriproxyfen
34429                                                                                                               fluralaner
34430                                                                                                               moxidectin
34433                                                                                                               moxidectin
34434                                                                                                               fluralaner
34435                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34436                                                                                                 endocrine system support
34456                                                                                        betamethasone, gentamicin sulfate
34457                                                                                                               sucralfate
34458                                                                                                               omeprazole
34459                                                                                                         tylosin tartrate
34460                                                                                                       maropitant citrate
34461                                                                                                       maropitant citrate
34462                                                                                                               famotidine
34463                                                                                                               sucralfate
34464                                                                                                         tylosin tartrate
34465                                                                                                               prednisone
34466                                                                                                               cephalexin
34467                                                                                lufenuron, milbemycin oxime, praziquantel
34468                                                                                                                 spinosad
34474                                                                                lufenuron, milbemycin oxime, praziquantel
34493                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
34510                                                                                                              amoxicillin
34513                                                                                                 fipronil, (s)-methoprene
34519                                                                                             ivermectin, pyrantel pamoate
34520                                                                                                               afoxolaner
34528                                                                                                       maropitant citrate
34533                                                                                                               afoxolaner
34536                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34545                                                                                                                vitamin b
34548                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34579                                                                                                            yunnan baiyao
34583                                                                                                               ivermectin
34584                                                                                             ivermectin, pyrantel pamoate
34587                                                                                        betamethasone, gentamicin sulfate
34588                                                                                                  ketoconazole, tris-edta
34593                                                                                                               ivermectin
34594                                                                                                               afoxolaner
34606                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34608                                                                                        trimeprazine tartrate, prednisone
34609                                                                           dexamethasone, neomycin sulfate, thiabendazole
34612                                                                                                              oclacitinib
34614                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
34617                                                                                                 fipronil, (s)-methoprene
34624                                                                      neomycin sulfate, nystatin, triamcinolone acetonide
34628                                                                                               milbemycin oxime, spinosad
34629                                                                                               milbemycin oxime, spinosad
34630                                                                                                  ketoconazole, tris-edta
34635                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
34636                                                                                               milbemycin oxime, spinosad
34637                                                                                        trimeprazine tartrate, prednisone
34638                                                                                       chlorhexidine gluconate, ophytrium
34639                                                                                               milbemycin oxime, spinosad
34640                                                                                               milbemycin oxime, spinosad
34642                                                                                                               afoxolaner
34643                                                                                                         milbemycin oxime
34648                                                                                                               ivermectin
34669                                                                                             ivermectin, pyrantel pamoate
34670                                                                                                 fipronil, (s)-methoprene
34671                                                                                   joint supplement (glucosamine hcl/msm)
34672                                                                                        betamethasone, gentamicin sulfate
34673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34674                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34675                                                                                                               lokivetmab
34676                                                                                           milbemycin oxime, praziquantel
34677                                                                                            allergy immunotherapy - drops
34678                                                                       chlorhexidine gluconate, hydrocortisone, tris-edta
34680                                                                                  betamethasone, florfenicol, terbinafine
34684                                                                                                         milbemycin oxime
34697                                                                                               milbemycin oxime, spinosad
34704                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34705                                                                                               milbemycin oxime, spinosad
34706                                                                                               milbemycin oxime, spinosad
34707                                                                                               milbemycin oxime, spinosad
34708                                                                                                    bismuth subsalicylate
34709                                                                                                             multivitamin
34710                                                                                                                probiotic
34727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34728                                                                                                                  omega 3
34729                                                                                                      unspecified vitamin
34730                                                                                             ivermectin, pyrantel pamoate
34733                                                                                             ivermectin, pyrantel pamoate
34734                                                                                                               fluralaner
34741                                                                                    chlorhexidine gluconate, ketoconazole
34744                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34747                                                                                                               fluralaner
34748                                                                                                               fluralaner
34749                                                                                             ivermectin, pyrantel pamoate
34750                                                                                             ivermectin, pyrantel pamoate
34763                                                                                             ivermectin, pyrantel pamoate
34764                                                                                                               afoxolaner
34766                                                                                             ivermectin, pyrantel pamoate
34767                                                                                                               afoxolaner
34787                                                                                       joint supplement (glucosamine hcl)
34788                                                                                                                mupirocin
34789                                                                                             ivermectin, pyrantel pamoate
34790                                                                                             ivermectin, pyrantel pamoate
34791                                                                                             ivermectin, pyrantel pamoate
34796                                                                                                               afoxolaner
34797                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34798                                                                                                                  omega 3
34799                                                                                                               ivermectin
34811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34813                                                                                                     prebiotic, probiotic
34828                                                                                               milbemycin oxime, spinosad
34832                                                                                               milbemycin oxime, spinosad
34833                                                                                              lufenuron, milbemycin oxime
34834                                                                                               milbemycin oxime, spinosad
34835                                                                                                               fluralaner
34838                                                                                               milbemycin oxime, spinosad
34845                                                                                                     prebiotic, probiotic
34867                                                                                                                carprofen
34874                                                                                                               sucralfate
34875                                                                                                               omeprazole
34881                                                                                              lufenuron, milbemycin oxime
34887                                                                                                               ivermectin
34888                                                                                       fipronil, permethrin, pyriproxyfen
34889                                                                                             ivermectin, pyrantel pamoate
34890                                                                                                 fipronil, (s)-methoprene
34891                                                                                             ivermectin, pyrantel pamoate
34892                                                                                                 fipronil, (s)-methoprene
34900                                                                                                         milbemycin oxime
34901                                                                                                               fluralaner
34902                                                                                                               lokivetmab
34903                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34904                                                                                                                  omega 3
34905                                                                                                         milbemycin oxime
34906                                                                                                               fluralaner
34907                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34908                                                                                                               lokivetmab
34917                                                                                                  triamcinolone acetonide
34918                                                                                                            difluprednate
34920                                                                               ivermectin, praziquantel, pyrantel pamoate
34922                                                                                                         milbemycin oxime
34923                                                                                                         milbemycin oxime
34924                                                                                                               fluralaner
34940                                                                                                               cetirizine
34953                                                                                                   gut restore supplement
34955                                                                                                     digestive supplement
34956                                                                                                                  omega 3
34966                                                                                                         milbemycin oxime
34973                                                                                                            metronidazole
34979                                                                                                               fluralaner
34981                                                                                                         milbemycin oxime
34982                                                                               ivermectin, praziquantel, pyrantel pamoate
34983                                                                               ivermectin, praziquantel, pyrantel pamoate
34991                                                                                             ivermectin, pyrantel pamoate
34992                                                                                                               ivermectin
34996                                                                                             ivermectin, pyrantel pamoate
35002                                                                                               imidacloprid, pyriproxyfen
35004                                                                                             ivermectin, pyrantel pamoate
35014                                                                                              lufenuron, milbemycin oxime
35025                                                                                lufenuron, milbemycin oxime, praziquantel
35026                                                                                                         tylosin tartrate
35027                                                                                              rx diet - digestive support
35034                                                                                                         milbemycin oxime
35049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35069                                                                                              lufenuron, milbemycin oxime
35070                                                                                                               cephalexin
35074                                                                                        betamethasone, gentamicin sulfate
35077                                                                                               milbemycin oxime, spinosad
35094                                                                                           milbemycin oxime, praziquantel
35095                                                                                                                sarolaner
35101                                                                                                                trazodone
35102                                                                                                                clonidine
35103                                                                                                 fipronil, (s)-methoprene
35109                                                                                                                  calcium
35110                                                                                                         milbemycin oxime
35119                                                                                                               afoxolaner
35122                                                                                                               moxidectin
35124                                                                                                               moxidectin
35125                                                                                                               afoxolaner
35126                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35128                                                                                                               fluralaner
35132                                                                                                               fluralaner
35134                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35143                                                                                              lufenuron, milbemycin oxime
35144                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35145                                                                                             ivermectin, pyrantel pamoate
35146                                                                                               milbemycin oxime, spinosad
35147                                                                                                         milbemycin oxime
35148                                                                                       joint supplement (glucosamine hcl)
35149                                                                                                         milbemycin oxime
35150                                                                                               milbemycin oxime, spinosad
35152                                                                                                         milbemycin oxime
35153                                                                                                               fluralaner
35154                                                                                                         milbemycin oxime
35155                                                                                                              oclacitinib
35160                                                                           mometasone furoate, orbifloxacin, posaconazole
35167                                                                                                 fipronil, (s)-methoprene
35170                                                                                             ivermectin, pyrantel pamoate
35171                                                                                             ivermectin, pyrantel pamoate
35176                                                                                        trimeprazine tartrate, prednisone
35181                                                                                                               ivermectin
35182                                                                                             ivermectin, pyrantel pamoate
35183                                                                                                                  omega 3
35189                                                                                             ivermectin, pyrantel pamoate
35190                                                                                                               cetirizine
35191                                                                                                            levothyroxine
35203                                                                                                               ivermectin
35204                                                                                       fipronil, permethrin, pyriproxyfen
35205                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35207                                                                                             ivermectin, pyrantel pamoate
35212                                                                                                               ivermectin
35213                                                                                                            levothyroxine
35214                                                                                             ivermectin, pyrantel pamoate
35215                                                                                                            levothyroxine
35216                                                                                                               cetirizine
35232                                                                                             ivermectin, pyrantel pamoate
35245                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35252                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35258                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35262                                                                                             ivermectin, pyrantel pamoate
35263                                                                                                               afoxolaner
35264                                                                                             ivermectin, pyrantel pamoate
35278                                                                                             ivermectin, pyrantel pamoate
35279                                                                                                               afoxolaner
35282                                                                                                              hydroxyzine
35283                                                                                             ivermectin, pyrantel pamoate
35284                                                                                                               afoxolaner
35291                                                                                              lufenuron, milbemycin oxime
35298                                                                                       fipronil, permethrin, pyriproxyfen
35299                                                                                                 fipronil, (s)-methoprene
35300                                                                                             ivermectin, pyrantel pamoate
35314                                                                             dexamethasone, neomycin sulfate, polymyxin b
35315                                                                                                         milbemycin oxime
35316                                                                                                               afoxolaner
35318                                                                                                               lokivetmab
35354                                                                                              lufenuron, milbemycin oxime
35382                                                                                             ivermectin, pyrantel pamoate
35386                                                                                                               afoxolaner
35388                                                                                                                  menthol
35393                                                                                             ivermectin, pyrantel pamoate
35399                                                                                                               ivermectin
35400                                                                                             ivermectin, pyrantel pamoate
35401                                                                                             ivermectin, pyrantel pamoate
35404                                                                                             ivermectin, pyrantel pamoate
35405                                                                                             ivermectin, pyrantel pamoate
35406                                                                                             ivermectin, pyrantel pamoate
35414                                                                                              lufenuron, milbemycin oxime
35417                                                                                               milbemycin oxime, spinosad
35420                                                                                              lufenuron, milbemycin oxime
35421                                                                                                               fluralaner
35422                                                                                              lufenuron, milbemycin oxime
35423                                                                                              lufenuron, milbemycin oxime
35424                                                                                                               fluralaner
35425                                                                                              lufenuron, milbemycin oxime
35432                                                                                              lufenuron, milbemycin oxime
35434                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35443                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35450                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35453                                                                                                 joint supplement (other)
35454                                                                                                                  omega 3
35495                                                                                             ivermectin, pyrantel pamoate
35496                                                                                             ivermectin, pyrantel pamoate
35497                                                                                             ivermectin, pyrantel pamoate
35498                                                                                                               afoxolaner
35499                                                                                                                probiotic
35501                                                                                                               ivermectin
35503                                                                                                     cefpodoxime proxetil
35504                                                                                                                probiotic
35506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35507                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
35509                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35513                                                                               dextromethorphan hydrobromide, guaifenesin
35525                                                                                                 fipronil, (s)-methoprene
35526                                                                                                         milbemycin oxime
35528                                                                                                         milbemycin oxime
35539                                                                                           milbemycin oxime, praziquantel
35560                                                                                                               ivermectin
35561                                                                                                               afoxolaner
35562                                                                                                               afoxolaner
35563                                                                                             ivermectin, pyrantel pamoate
35565                                                                                             ivermectin, pyrantel pamoate
35566                                                                                                               afoxolaner
35569                                                                                             ivermectin, pyrantel pamoate
35571                                                                               ivermectin, praziquantel, pyrantel pamoate
35572                                                                                               imidacloprid, pyriproxyfen
35573                                                                                                                meloxicam
35574                                                                                                                firocoxib
35575                                                                                              lufenuron, milbemycin oxime
35576                                                                                                         milbemycin oxime
35577                                                                                                               fluralaner
35578                                                                                                               fluralaner
35579                                                                                              lufenuron, milbemycin oxime
35580                                                                                                               prednisone
35581                                                                                                               ivermectin
35582                                                                                              lufenuron, milbemycin oxime
35584                                                                                        trimeprazine tartrate, prednisone
35592                                                                           dexamethasone, neomycin sulfate, thiabendazole
35593                                                                                             ivermectin, pyrantel pamoate
35598                                                                                                         milbemycin oxime
35605                                                                              over-the-counter unmedicated shampoo/mousse
35616                                                                                                              minocycline
35617                                                                                                               famotidine
35618                                                                                                              doxycycline
35619                                                                                                            metronidazole
35620                                                                                                   cyphenothrin, fipronil
35621                                                                                                   cyphenothrin, fipronil
35622                                                                                                     cefpodoxime proxetil
35624                                                                                                               selamectin
35626                                                                                                         tylosin tartrate
35627                                                                                                           metoclopramide
35628                                                                                                               selamectin
35633                                                                                                 joint supplement (other)
35638                                                                                                 fipronil, (s)-methoprene
35639                                                                                             ivermectin, pyrantel pamoate
35641                                                                                                               afoxolaner
35642                                                                                          ear cleaner (epi-otic advanced)
35643                                                                          betamethasone, clotrimazole, gentamicin sulfate
35644                                                                                        trimeprazine tartrate, prednisone
35645                                                                                                         pyrantel pamoate
35656                                                                                         propylene glycol, salicylic acid
35657                                                                                                                lotilaner
35658                                                                                                         milbemycin oxime
35659                                                                                                         milbemycin oxime
35662                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
35664                                                                                                         milbemycin oxime
35665                                                                                                                sarolaner
35668                                                                                        betamethasone, gentamicin sulfate
35673                                                                                        betamethasone, gentamicin sulfate
35674                                                                          betamethasone, clotrimazole, gentamicin sulfate
35689                                                                                                               afoxolaner
35696                                                                                                                probiotic
35697                                                                                                               afoxolaner
35699                                                                                                               afoxolaner
35700                                                                                        betamethasone, gentamicin sulfate
35709                                                                                                 fipronil, (s)-methoprene
35717                                                                                                 fipronil, (s)-methoprene
35721                                                                                                 fipronil, (s)-methoprene
35722                                                                                                             multivitamin
35725                                                                                             ivermectin, pyrantel pamoate
35727                                                                                             ivermectin, pyrantel pamoate
35740                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35743                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35746                                                                                                     cefpodoxime proxetil
35747                                                                                                                 tramadol
35748                                                                                             ivermectin, pyrantel pamoate
35749                                                                                                               afoxolaner
35751                                                                                                              oclacitinib
35756                                                                                             ivermectin, pyrantel pamoate
35757                                                                                             ivermectin, pyrantel pamoate
35758                                                                                                               afoxolaner
35762                                                                                                  triamcinolone acetonide
35767                                                                                                               ivermectin
35768                                                                                                 imidacloprid, permethrin
35769                                                                                                               ivermectin
35770                                                                                               imidacloprid, pyriproxyfen
35771                                                                                             ivermectin, pyrantel pamoate
35772                                                                                                                  omega 3
35773                                                                                                 imidacloprid, permethrin
35774                                                                                             ivermectin, pyrantel pamoate
35775                                                                                                               ivermectin
35776                                                                                               imidacloprid, pyriproxyfen
35777                                                                                               imidacloprid, pyriproxyfen
35778                                                                                             ivermectin, pyrantel pamoate
35779                                                                                       joint supplement (glucosamine hcl)
35782                                                                                             ivermectin, pyrantel pamoate
35784                                                                                             ivermectin, pyrantel pamoate
35786                                                                                       fipronil, permethrin, pyriproxyfen
35791                                                                                                 fipronil, (s)-methoprene
35792                                                                                             ivermectin, pyrantel pamoate
35793                                                                                                                probiotic
35808                                                                                                                  rx clay
35809                                                                                       chlorhexidine gluconate, ophytrium
35810                                                                                                                probiotic
35812                                                                                               milbemycin oxime, spinosad
35820                                                                                                               ivermectin
35821                                                                                       fipronil, permethrin, pyriproxyfen
35826                                                                                             ivermectin, pyrantel pamoate
35827                                                                                                               fluralaner
35831                                                                                                         milbemycin oxime
35832                                                                                                                lotilaner
35835                                                                                                         milbemycin oxime
35850                                                                                             ivermectin, pyrantel pamoate
35853                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
35855                                                                                             ivermectin, pyrantel pamoate
35858                                                                                                     cefpodoxime proxetil
35859                                                                                        trimeprazine tartrate, prednisone
35889                                                                                                               fluralaner
35903                                                                                                               epsom salt
35905                                                                                                             orbifloxacin
35907                                                                                                                firocoxib
35908                                                                                              lufenuron, milbemycin oxime
35909                                                                                                               afoxolaner
35931                                                                                             ivermectin, pyrantel pamoate
35954                                                                                             ivermectin, pyrantel pamoate
35955                                                                                             ivermectin, pyrantel pamoate
35963                                                                          betamethasone, clotrimazole, gentamicin sulfate
35965                                                                                        enrofloxacin, silver sulfadiazine
35968                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
35969                                                                                                         phytosphingosine
35973                                                                                               milbemycin oxime, spinosad
35980                                                                                             ivermectin, pyrantel pamoate
35982                                                                                             ivermectin, pyrantel pamoate
35983                                                                                                               afoxolaner
36019                                                                                                               afoxolaner
36021                                                                                                               afoxolaner
36023                                                                                        betamethasone, gentamicin sulfate
36030                                                                                        betamethasone, gentamicin sulfate
36042                                                                                               milbemycin oxime, spinosad
36043                                                                                               milbemycin oxime, spinosad
36044                                                                                               milbemycin oxime, spinosad
36065                                                                                             ivermectin, pyrantel pamoate
36069                                                                                             ivermectin, pyrantel pamoate
36070                                                                                                               fluralaner
36078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36081                                                                                                  ketoconazole, tris-edta
36082                                                                                                               ivermectin
36083                                                                                                            levothyroxine
36084                                                                                                               cetirizine
36108                                                                                                         milbemycin oxime
36110                                                                                               milbemycin oxime, spinosad
36112                                                                                                 joint supplement (other)
36113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36115                                                                                                 joint supplement (other)
36134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36137                                                                                                   unspecified antiseptic
36144                                                                                                 fipronil, (s)-methoprene
36145                                                                                                               ivermectin
36150                                                                                             ivermectin, pyrantel pamoate
36151                                                                                                 fipronil, (s)-methoprene
36153                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36155                                                                                   fipronil, pyriproxyfen, (s)-methoprene
36156                                                                                             ivermectin, pyrantel pamoate
36159                                                                                                               afoxolaner
36171                                                                                                            metronidazole
36191                                                                                             ivermectin, pyrantel pamoate
36192                                                                                                               fluralaner
36196                                                                                               thyroid support supplement
36198                                                                                                unspecified otic ear pack
36200                                                                                               unspecified ear medication
36201                                                                                                             ketoconazole
36202                                                                                            allergy immunotherapy - drops
36203                                                                                            allergy immunotherapy - drops
36205                                                                                            allergy immunotherapy - drops
36218                                                                                                         milbemycin oxime
36220                                                                                             ivermectin, pyrantel pamoate
36221                                                                                                               fluralaner
36222                                                                                            silver oxide, type i collagen
36223                                                                                                                probiotic
36225                                                                                             ivermectin, pyrantel pamoate
36226                                                                                                               afoxolaner
36227                                                                                                               afoxolaner
36228                                                                                                               afoxolaner
36229                                                                                             ivermectin, pyrantel pamoate
36231                                                                             florfenicol, mometasone furoate, terbinafine
36232                                                                                                               afoxolaner
36233                                                                                                               ivermectin
36235                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
36237                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36238                                                                                                                carprofen
36240                                                                                                         milbemycin oxime
36254                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36256                                                                          betamethasone, clotrimazole, gentamicin sulfate
36258                                                                                                                carprofen
36264                                                                                                         milbemycin oxime
36268                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36271                                                                                               milbemycin oxime, spinosad
36272                                                                                               milbemycin oxime, spinosad
36273                                                                                               milbemycin oxime, spinosad
36275                                                                                                               selamectin
36276                                                                              chlorhexidine gluconate, miconazole nitrate
36280                                                                                                               selamectin
36283                                                                                                         milbemycin oxime
36284                                                                                                               cephalexin
36288                                                                                                         milbemycin oxime
36289                                                                                                              doxycycline
36292                                                                                                 fipronil, (s)-methoprene
36293                                                                                                 fipronil, (s)-methoprene
36294                                                                                                         pyrantel pamoate
36295                                                                                                             fenbendazole
36296                                                                                                 fipronil, (s)-methoprene
36297                                                                                                         pyrantel pamoate
36298                                                                                                             fenbendazole
36299                                                                                                               ivermectin
36300                                                                                                 fipronil, (s)-methoprene
36301                                                                                                             fenbendazole
36302                                                                                                             fenbendazole
36303                                                                                                         pyrantel pamoate
36304                                                                                                               ivermectin
36305                                                                                                 fipronil, (s)-methoprene
36306                                                                                                             fenbendazole
36307                                                                                                         pyrantel pamoate
36308                                                                                                             fenbendazole
36309                                                                                                         pyrantel pamoate
36310                                                                                                         pyrantel pamoate
36311                                                                                                             fenbendazole
36322                                                                                                 fipronil, (s)-methoprene
36323                                                                                                         pyrantel pamoate
36324                                                                                                             fenbendazole
36325                                                                                                 fipronil, (s)-methoprene
36326                                                                                                         pyrantel pamoate
36327                                                                                                             fenbendazole
36328                                                                                                               ivermectin
36329                                                                                                 fipronil, (s)-methoprene
36330                                                                                                             fenbendazole
36331                                                                                                             fenbendazole
36332                                                                                                         pyrantel pamoate
36333                                                                                                 fipronil, (s)-methoprene
36334                                                                                                               ivermectin
36335                                                                                                             fenbendazole
36336                                                                                                         pyrantel pamoate
36337                                                                                                             fenbendazole
36338                                                                                                         pyrantel pamoate
36339                                                                                                             fenbendazole
36340                                                                                                         pyrantel pamoate
36357                                                                                                               cephalexin
36358                                                                                                 fipronil, (s)-methoprene
36359                                                                                                         pyrantel pamoate
36360                                                                                                             fenbendazole
36361                                                                                                 fipronil, (s)-methoprene
36362                                                                                                         pyrantel pamoate
36363                                                                                                             fenbendazole
36364                                                                                                               ivermectin
36365                                                                                                 fipronil, (s)-methoprene
36366                                                                                                             fenbendazole
36367                                                                                                             fenbendazole
36368                                                                                                         pyrantel pamoate
36369                                                                                                               ivermectin
36370                                                                                                 fipronil, (s)-methoprene
36371                                                                                                             fenbendazole
36372                                                                                                         pyrantel pamoate
36373                                                                                                             fenbendazole
36374                                                                                                         pyrantel pamoate
36376                                                                                                                 oxytocin
36377                                                                                                 fipronil, (s)-methoprene
36378                                                                                                         pyrantel pamoate
36379                                                                                                             fenbendazole
36380                                                                                                 fipronil, (s)-methoprene
36381                                                                                                             fenbendazole
36382                                                                                                         pyrantel pamoate
36383                                                                                                               ivermectin
36384                                                                                                 fipronil, (s)-methoprene
36385                                                                                                             fenbendazole
36397                                                                                                               prednisone
36398                                                                                                 fipronil, (s)-methoprene
36399                                                                                             ivermectin, pyrantel pamoate
36400                                                                                                            metronidazole
36401                                                                                                               prednisone
36402                                                                                                            diphenoxylate
36403                                                                                                 fipronil, (s)-methoprene
36404                                                                                                             fenbendazole
36405                                                                                             ivermectin, pyrantel pamoate
36406                                                                                                 fipronil, (s)-methoprene
36410                                                                                                                vitamin b
36427                                                                                               imidacloprid, pyriproxyfen
36429                                                                                             ivermectin, pyrantel pamoate
36430                                                                                               imidacloprid, pyriproxyfen
36438                                                                                               imidacloprid, pyriproxyfen
36439                                                                                             ivermectin, pyrantel pamoate
36440                                                                                        trimeprazine tartrate, prednisone
36443                                                                                             ivermectin, pyrantel pamoate
36444                                                                                               imidacloprid, pyriproxyfen
36448                                                                                               imidacloprid, pyriproxyfen
36451                                                                                           praziquantel, pyrantel pamoate
36460                                                                                              lufenuron, milbemycin oxime
36461                                                                                                               fluralaner
36464                                                                                        betamethasone, gentamicin sulfate
36474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36491                                                                                             ivermectin, pyrantel pamoate
36497                                                                                             ivermectin, pyrantel pamoate
36513                                                                                                             ketoconazole
36520                                                                                                             fenbendazole
36533                                                                              chlorhexidine gluconate, miconazole nitrate
36535                                                                                       chlorhexidine gluconate, ophytrium
36559                                                                                             ivermectin, pyrantel pamoate
36560                                                                                                 fipronil, (s)-methoprene
36562                                                                                             ivermectin, pyrantel pamoate
36563                                                                                                 fipronil, (s)-methoprene
36568                                                                                              lufenuron, milbemycin oxime
36571                                                                             dexamethasone, neomycin sulfate, polymyxin b
36574                                                                           mometasone furoate, orbifloxacin, posaconazole
36579                                                                                                               selamectin
36580                                                                                                                carprofen
36595                                                                               ivermectin, praziquantel, pyrantel pamoate
36597                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36598                                                                                                               cephalexin
36599                                                                                                              fluconazole
36600                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36601                                                                               ivermectin, praziquantel, pyrantel pamoate
36602                                                                                                         milbemycin oxime
36603                                                                                                         milbemycin oxime
36605                                                                                                         milbemycin oxime
36606                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36607                                                                                                         milbemycin oxime
36608                                                                                                         milbemycin oxime
36616                                                                               ivermectin, praziquantel, pyrantel pamoate
36623                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36624                                                                                                  acetic acid, boric acid
36626                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36627                                                                               ivermectin, praziquantel, pyrantel pamoate
36628                                                                                                         milbemycin oxime
36630                                                                                                         milbemycin oxime
36631                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36632                                                                                                         milbemycin oxime
36633                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36635                                                                                                         milbemycin oxime
36636                                                                                                              oclacitinib
36637                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36652                                                                                               milbemycin oxime, spinosad
36657                                                                                               milbemycin oxime, spinosad
36660                                                                                             ivermectin, pyrantel pamoate
36661                                                                                             ivermectin, pyrantel pamoate
36667                                                                                                                lotilaner
36670                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36698                                                                                             ivermectin, pyrantel pamoate
36699                                                                                             ivermectin, pyrantel pamoate
36705                                                                                        betamethasone, gentamicin sulfate
36708                                                                                             ivermectin, pyrantel pamoate
36709                                                                              chlorhexidine gluconate, miconazole nitrate
36735                                                                                                                carprofen
36751                                                                                             ivermectin, pyrantel pamoate
36752                                                                                                 fipronil, (s)-methoprene
36753                                                                                                             fenbendazole
36772                                                                                        betamethasone, gentamicin sulfate
36776                                                                                                               fluoxetine
36777                                                                                                               fluoxetine
36778                                                                                                         milbemycin oxime
36816                                                                              rx diet - hypoallergenic hydrolyzed protein
36817                                                                               ivermectin, praziquantel, pyrantel pamoate
36818                                                                                  betamethasone, florfenicol, terbinafine
36819                                                                                                  ketoconazole, tris-edta
36824                                                                                             ivermectin, pyrantel pamoate
36833                                                                                              lufenuron, milbemycin oxime
36834                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36835                                                                                       chlorhexidine gluconate, ophytrium
36840                                                                                              lufenuron, milbemycin oxime
36842                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36846                                                                                              lufenuron, milbemycin oxime
36847                                                                                                               fluralaner
36848                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36849                                                                                                               afoxolaner
36850                                                                                              lufenuron, milbemycin oxime
36851                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36855                                                                                                                probiotic
36859                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36874                                                                                                                meloxicam
36875                                                                                                             acepromazine
36876                                                                                                                 tramadol
36877                                                                                                                firocoxib
36878                                                                                    dinotefuran, permethrin, pyriproxyfen
36879                                                                                                                meloxicam
36880                                                                                                             acepromazine
36881                                                                                             ivermectin, pyrantel pamoate
36882                                                                                                              clindamycin
36883                                                                                                               afoxolaner
36884                                                                                        betamethasone, gentamicin sulfate
36892                                                                                          ear cleaner (epi-otic advanced)
36893                                                                                                               afoxolaner
36894                                                                                             ivermectin, pyrantel pamoate
36900                                                                                             ivermectin, pyrantel pamoate
36901                                                                                                               afoxolaner
36911                                                                                              lufenuron, milbemycin oxime
36914                                                                                                   cyphenothrin, fipronil
36916                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36919                                                                                              lufenuron, milbemycin oxime
36920                                                                                                   cyphenothrin, fipronil
36921                                                                                                                probiotic
36925                                                                                              lufenuron, milbemycin oxime
36945                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36946                                                                                                               afoxolaner
36969                                                                                             ivermectin, pyrantel pamoate
36970                                                                                    dinotefuran, permethrin, pyriproxyfen
36982                                                                                               imidacloprid, pyriproxyfen
36983                                                                                                               ivermectin
36984                                                                                                                 spinosad
36985                                                                                                         milbemycin oxime
36994                                                                                                        hypochlorous acid
37007                                                                                              lufenuron, milbemycin oxime
37015                                                                               ivermectin, praziquantel, pyrantel pamoate
37017                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
37018                                                                                                         milbemycin oxime
37019                                                                                                 fipronil, (s)-methoprene
37020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
37021                                                                               ivermectin, praziquantel, pyrantel pamoate
37022                                                                               ivermectin, praziquantel, pyrantel pamoate
37025                                                                               ivermectin, praziquantel, pyrantel pamoate
37027                                                                               ivermectin, praziquantel, pyrantel pamoate
37036                                                                                   dexamethasone, ketoconazole, tris-edta
37038                                                                                       amoxicillin, clavulanate potassium
37046                                                                                                               afoxolaner
37054                                                                                              lufenuron, milbemycin oxime
37055                                                                                             ivermectin, pyrantel pamoate
37056                                                                                             ivermectin, pyrantel pamoate
37057                                                                                             ivermectin, pyrantel pamoate
37061                                                                                                 flumethrin, imidacloprid
37063                                                                                                 flumethrin, imidacloprid
37069                                                                                             ivermectin, pyrantel pamoate
37070                                                                                               imidacloprid, pyriproxyfen
37071                                                                                              lufenuron, milbemycin oxime
37073                                                                           beclomethasone, clotrimazole, neomycin sulfate
37074                                                                                              lufenuron, milbemycin oxime
37075                                                                          betamethasone, clotrimazole, gentamicin sulfate
37076                                                                                               imidacloprid, pyriproxyfen
37077                                                                                               imidacloprid, pyriproxyfen
37078                                                                                              lufenuron, milbemycin oxime
37080                                                                                               imidacloprid, pyriproxyfen
37087                                                                                               imidacloprid, pyriproxyfen
37088                                                                                                         milbemycin oxime
37091                                                                                                     cefpodoxime proxetil
37098                                                                                               imidacloprid, pyriproxyfen
37099                                                                                                         milbemycin oxime
37103                                                                                                       maropitant citrate
37104                                                                                                                ofloxacin
37115                                                                           dexamethasone, neomycin sulfate, thiabendazole
37116                                                                                                 fipronil, (s)-methoprene
37117                                                                                                         liver supplement
37135                                                                              chlorhexidine gluconate, miconazole nitrate
37157                                                                                        betamethasone, gentamicin sulfate
37164                                                                          betamethasone, clotrimazole, gentamicin sulfate
37165                                                                               ivermectin, praziquantel, pyrantel pamoate
37168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37169                                                                                                  chlorhexidine gluconate
37179                                                                                             ivermectin, pyrantel pamoate
37193                                                                                             ivermectin, pyrantel pamoate
37194                                                                                                                 geraniol
37195                                                                                                               ivermectin
37197                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37200                                                                                             ivermectin, pyrantel pamoate
37201                                                                                                               afoxolaner
37202                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37219                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37221                                                                                                                trazodone
37252                                                                               ivermectin, praziquantel, pyrantel pamoate
37259                                                                                                               cephalexin
37260                                                                           dexamethasone, neomycin sulfate, thiabendazole
37261                                                                                                         milbemycin oxime
37262                                                                                               imidacloprid, pyriproxyfen
37263                                                                                                               prednisone
37266                                                                                                         milbemycin oxime
37267                                                                                    dinotefuran, permethrin, pyriproxyfen
37270                                                                                    dinotefuran, permethrin, pyriproxyfen
37271                                                                                               imidacloprid, pyriproxyfen
37272                                                                                        trimeprazine tartrate, prednisone
37273                                                                           dexamethasone, neomycin sulfate, thiabendazole
37277                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
37278                                                                                                  chlorhexidine gluconate
37279                                                                              rx diet - hypoallergenic hydrolyzed protein
37302                                                                                             ivermectin, pyrantel pamoate
37303                                                                          betamethasone, clotrimazole, gentamicin sulfate
37304                                                                                                                carprofen
37306                                                                                                              amoxicillin
37307                                                                                                                carprofen
37308                                                                                                                 tramadol
37309                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37311                                                                                                              hydrocodone
37316                                                                                                               ivermectin
37324                                                                                                                sarolaner
37325                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37326                                                                                                               moxidectin
37332                                                                                                          dexmedetomidine
37337                                                                                                               lokivetmab
37344                                                                                                 joint supplement (other)
37349                                                                                             ivermectin, pyrantel pamoate
37359                                                                                                         milbemycin oxime
37373                                                                                              lufenuron, milbemycin oxime
37374                                                                                                               afoxolaner
37375                                                                                             ivermectin, pyrantel pamoate
37376                                                                                                               afoxolaner
37377                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37385                                                                                             ivermectin, pyrantel pamoate
37386                                                                                                               afoxolaner
37387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37392                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
37396                                                                                                               ivermectin
37397                                                                                                               fluralaner
37434                                                                                   joint supplement (glucosamine hcl/msm)
37435                                                                                           polysulfated glycosaminoglycan
37439                                                                                                               ivermectin
37440                                                                                       fipronil, permethrin, pyriproxyfen
37446                                                                                             ivermectin, pyrantel pamoate
37447                                                                                                 fipronil, (s)-methoprene
37448                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
37449                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37451                                                                                                                mupirocin
37453                                                                                        betamethasone, gentamicin sulfate
37454                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37455                                                                                                               fluralaner
37457                                                                              rx diet - hypoallergenic hydrolyzed protein
37463                                                                                    chlorhexidine gluconate, ketoconazole
37464                                                                                                  chlorhexidine gluconate
37465                                                                                        betamethasone, gentamicin sulfate
37467                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37468                                                                                lufenuron, milbemycin oxime, praziquantel
37469                                                                                                               fluralaner
37477                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37478                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37482                                                                                                               fluralaner
37485                                                                                lufenuron, milbemycin oxime, praziquantel
37491                                                                                        betamethasone, gentamicin sulfate
37493                                                                                lufenuron, milbemycin oxime, praziquantel
37494                                                                                                                sarolaner
37495                                                                                        betamethasone, gentamicin sulfate
37496                                                                                                       miconazole nitrate
37510                                                                                                               alprazolam
37526                                                                                                              minocycline
37527                                                                             dexamethasone, neomycin sulfate, polymyxin b
37533                                                                                                         phytosphingosine
37536                                                                                                  chlorhexidine gluconate
37540                                                                                             ivermectin, pyrantel pamoate
37541                                                                                                               fluralaner
37545                                                                                             ivermectin, pyrantel pamoate
37546                                                                                                               fluralaner
37547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37552                                                                                             ivermectin, pyrantel pamoate
37553                                                                                                               fluralaner
37568                                                                                              lufenuron, milbemycin oxime
37569                                                                                                 imidacloprid, permethrin
37571                                                                                              lufenuron, milbemycin oxime
37576                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37577                                                                                              lufenuron, milbemycin oxime
37578                                                                                               imidacloprid, pyriproxyfen
37579                                                                                               imidacloprid, pyriproxyfen
37580                                                                                                               ivermectin
37581                                                                                                               cephalexin
37582                                                                                                               prednisone
37584                                                                                                                  omega 3
37585                                                                                                                probiotic
37586                                                                                       joint supplement (glucosamine hcl)
37597                                                                                               imidacloprid, pyriproxyfen
37598                                                                                                               ivermectin
37601                                                                                             ivermectin, pyrantel pamoate
37602                                                                                                               afoxolaner
37603                                                                                                               afoxolaner
37608                                                                                                               selamectin
37621                                                                                              lufenuron, milbemycin oxime
37622                                                                                              lufenuron, milbemycin oxime
37623                                                                                             ivermectin, pyrantel pamoate
37624                                                                                              lufenuron, milbemycin oxime
37627                                                                                             ivermectin, pyrantel pamoate
37628                                                                                             ivermectin, pyrantel pamoate
37629                                                                                             ivermectin, pyrantel pamoate
37630                                                                                             ivermectin, pyrantel pamoate
37639                                                                                                                probiotic
37648                                                                                    dinotefuran, permethrin, pyriproxyfen
37649                                                                                                                meloxicam
37651                                                                                                 flumethrin, imidacloprid
37652                                                                                                                meloxicam
37655                                                                                                 flumethrin, imidacloprid
37657                                                                                                 flumethrin, imidacloprid
37662                                                                                                 flumethrin, imidacloprid
37664                                                                                                 flumethrin, imidacloprid
37669                                                                                       chlorhexidine gluconate, ophytrium
37670                                                                                         burow's solution, hydrocortisone
37675                                                                                       chlorhexidine gluconate, ophytrium
37682                                                                                                              amoxicillin
37686                                                                                                            metronidazole
37691                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37692                                                                                             ivermectin, pyrantel pamoate
37695                                                                                                              minocycline
37696                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
37697                                                                                                                carprofen
37698                                                                                                              amoxicillin
37699                                                                                                               tobramycin
37704                                                                                              lufenuron, milbemycin oxime
37705                                                                                    dinotefuran, permethrin, pyriproxyfen
37708                                                                                                                  taurine
37709                                                                                                                  omega 3
37710                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37713                                                                                                                  omega 3
37714                                                                                                                probiotic
37717                                                                                                                  omega 3
37718                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37731                                                                                              lufenuron, milbemycin oxime
37738                                                                                              lufenuron, milbemycin oxime
37739                                                                                              lufenuron, milbemycin oxime
37740                                                                                                                 fipronil
37742                                                                                              lufenuron, milbemycin oxime
37771                                                                             dexamethasone, neomycin sulfate, polymyxin b
37785                                                                                                               afoxolaner
37786                                                                                             ivermectin, pyrantel pamoate
37797                                                                               ivermectin, praziquantel, pyrantel pamoate
37798                                                                               ivermectin, praziquantel, pyrantel pamoate
37805                                                                                           milbemycin oxime, praziquantel
37806                                                                                                               afoxolaner
37807                                                                                       amoxicillin, clavulanate potassium
37809                                                                                                              sevoflurane
37816                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37817                                                                                                                  omega 3
37820                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37821                                                                                    dinotefuran, permethrin, pyriproxyfen
37822                                                                                                                probiotic
37834                                                                                             ivermectin, pyrantel pamoate
37835                                                                                       fipronil, permethrin, pyriproxyfen
37836                                                                                                       diethylstilbestrol
37837                                                                                             ivermectin, pyrantel pamoate
37838                                                                                             ivermectin, pyrantel pamoate
37839                                                                                                               fluralaner
37845                                                                                             ivermectin, pyrantel pamoate
37846                                                                                       fipronil, permethrin, pyriproxyfen
37847                                                                                             ivermectin, pyrantel pamoate
37848                                                                                                               fluralaner
37849                                                                                             ivermectin, pyrantel pamoate
37850                                                                                                               fluralaner
37851                                                                                                               fluralaner
37852                                                                                             ivermectin, pyrantel pamoate
37855                                                                                              lufenuron, milbemycin oxime
37858                                                                                lufenuron, milbemycin oxime, praziquantel
37860                                                                                                                 fipronil
37863                                                                                lufenuron, milbemycin oxime, praziquantel
37864                                                                                                                 fipronil
37865                                                                                                                 fipronil
37885                                                                                             ivermectin, pyrantel pamoate
37894                                                                                                               ivermectin
37895                                                                                                                sarolaner
37905                                                                                              lufenuron, milbemycin oxime
37907                                                                                               milbemycin oxime, spinosad
37908                                                                                               milbemycin oxime, spinosad
37916                                                                                               milbemycin oxime, spinosad
37920                                                                                                 imidacloprid, permethrin
37929                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37930                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37933                                                                                             ivermectin, pyrantel pamoate
37934                                                                                                               afoxolaner
37935                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37936                                                                                             ivermectin, pyrantel pamoate
37937                                                                          betamethasone, clotrimazole, gentamicin sulfate
37940                                                                                                               prednisone
37941                                                                          betamethasone, clotrimazole, gentamicin sulfate
37942                                                                                                  ketoconazole, tris-edta
37944                                                                                                    mycophenolate mofetil
37945                                                                                                               prednisone
37956                                                                                                              oclacitinib
37976                                                                                              lufenuron, milbemycin oxime
37977                                                                                                   cyphenothrin, fipronil
37978                                                                                              lufenuron, milbemycin oxime
37979                                                                                        betamethasone, gentamicin sulfate
37980                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37984                                                                                              lufenuron, milbemycin oxime
37989                                                                                              lufenuron, milbemycin oxime
37990                                                                                        betamethasone, gentamicin sulfate
37992                                                                                              lufenuron, milbemycin oxime
37993                                                                                                               fluralaner
38018                                                                                               milbemycin oxime, spinosad
38036                                                                                                         milbemycin oxime
38041                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38046                                                                                                         milbemycin oxime
38048                                                                                       amoxicillin, clavulanate potassium
38050                                                                                                                lotilaner
38051                                                                                                         milbemycin oxime
38052                                                                                                                lotilaner
38056                                                                                                         tylosin tartrate
38070                                                                                             ivermectin, pyrantel pamoate
38071                                                                                               imidacloprid, pyriproxyfen
38072                                                                                                 flumethrin, imidacloprid
38073                                                                                             ivermectin, pyrantel pamoate
38074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38075                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38102                                                                               dextromethorphan hydrobromide, guaifenesin
38123                                                                                             ivermectin, pyrantel pamoate
38126                                                                                             ivermectin, pyrantel pamoate
38129                                                                                                            dexamethasone
38132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38134                                                                                                               cetirizine
38135                                                                                                       maropitant citrate
38136                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38141                                                                                                         milbemycin oxime
38142                                                                                                               afoxolaner
38150                                                                                                               ivermectin
38151                                                                                                               afoxolaner
38152                                                                                                               afoxolaner
38156                                                                                                               afoxolaner
38165                                                                                             ivermectin, pyrantel pamoate
38166                                                                                                               afoxolaner
38177                                                                                               unspecified shampoo/mousse
38179                                                                                          ear cleaner (epi-otic advanced)
38181                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38182                                                                                                                  omega 3
38184                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38185                                                                             dexamethasone, neomycin sulfate, polymyxin b
38193                                                                                       fipronil, permethrin, pyriproxyfen
38204                                                                                                     digestive supplement
38211                                                                                      ear cleaner (zymox), hydrocortisone
38216                                                                                                                   arnica
38217                                                                                             ivermectin, pyrantel pamoate
38219                                                                                                                  omega 3
38220                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38240                                                                                    dinotefuran, permethrin, pyriproxyfen
38241                                                                                                               ivermectin
38248                                                                                                              oclacitinib
38255                                                                                                 fipronil, (s)-methoprene
38256                                                                                                         milbemycin oxime
38257                                                                                           milbemycin oxime, praziquantel
38259                                                                                                         milbemycin oxime
38260                                                                                                               afoxolaner
38262                                                                                                               afoxolaner
38268                                                                          betamethasone, clotrimazole, gentamicin sulfate
38273                                                                          betamethasone, clotrimazole, gentamicin sulfate
38284                                                                                             ivermectin, pyrantel pamoate
38287                                                                                                                probiotic
38288                                                                                           milbemycin oxime, praziquantel
38289                                                                                                               fluralaner
38291                                                                                              lufenuron, milbemycin oxime
38292                                                                                                               fluralaner
38293                                                                                              lufenuron, milbemycin oxime
38294                                                                           dexamethasone, neomycin sulfate, thiabendazole
38295                                                                                              lufenuron, milbemycin oxime
38296                                                                                                               fluralaner
38301                                                                                               imidacloprid, pyriproxyfen
38305                                                                                               imidacloprid, pyriproxyfen
38306                                                                                             ivermectin, pyrantel pamoate
38321                                                                                              lufenuron, milbemycin oxime
38324                                                                                                  ketoconazole, tris-edta
38326                                                                                                         phytosphingosine
38330                                                                                             ivermectin, pyrantel pamoate
38339                                                                                                               fluralaner
38341                                                                                        betamethasone, gentamicin sulfate
38342                                                                                              lufenuron, milbemycin oxime
38350                                                                                  betamethasone, florfenicol, terbinafine
38351                                                                                                                sarolaner
38352                                                                                             ivermectin, pyrantel pamoate
38353                                                                                             ivermectin, pyrantel pamoate
38354                                                                                                                sarolaner
38361                                                                             dexamethasone, neomycin sulfate, polymyxin b
38362                                                                                                               prednisone
38365                                                                                             ivermectin, pyrantel pamoate
38366                                                                                                 fipronil, (s)-methoprene
38367                                                                                               imidacloprid, pyriproxyfen
38369                                                                                               imidacloprid, pyriproxyfen
38370                                                                                                               ivermectin
38371                                                                                                             fenbendazole
38372                                                                          betamethasone, clotrimazole, gentamicin sulfate
38373                                                                                                               lokivetmab
38377                                                                             florfenicol, mometasone furoate, terbinafine
38378                                                                           mometasone furoate, orbifloxacin, posaconazole
38380                                                                                                         milbemycin oxime
38381                                                                                                         milbemycin oxime
38386                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38387                                                                                     burow's solution, miconazole nitrate
38388                                                                                                               lokivetmab
38394                                                                                                         milbemycin oxime
38396                                                                                             ivermectin, pyrantel pamoate
38397                                                                                                               afoxolaner
38398                                                                                                    trimeprazine tartrate
38399                                                                                             ivermectin, pyrantel pamoate
38406                                                                                                                probiotic
38419                                                                                       fipronil, permethrin, pyriproxyfen
38420                                                                                              lufenuron, milbemycin oxime
38422                                                                                              lufenuron, milbemycin oxime
38423                                                                                              lufenuron, milbemycin oxime
38427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38431                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38438                                                                                           milbemycin oxime, praziquantel
38439                                                                                                               fluralaner
38442                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38461                                                                                    dinotefuran, permethrin, pyriproxyfen
38462                                                                                             ivermectin, pyrantel pamoate
38464                                                                                                         milbemycin oxime
38465                                                                                    dinotefuran, permethrin, pyriproxyfen
38466                                                                                                                sarolaner
38470                                                                                                                sarolaner
38471                                                                                                         milbemycin oxime
38472                                                                                           milbemycin oxime, praziquantel
38473                                                                                                                sarolaner
38496                                                                                             ivermectin, pyrantel pamoate
38499                                                                               dextromethorphan hydrobromide, guaifenesin
38504                                                                                    dinotefuran, permethrin, pyriproxyfen
38505                                                                                             ivermectin, pyrantel pamoate
38507                                                                                                         milbemycin oxime
38508                                                                                    dinotefuran, permethrin, pyriproxyfen
38509                                                                                                                sarolaner
38510                                                                                                         milbemycin oxime
38511                                                                                           milbemycin oxime, praziquantel
38512                                                                                                                sarolaner
38522                                                                                 febantel, praziquantel, pyrantel pamoate
38526                                                                                                 fipronil, (s)-methoprene
38527                                                                                             ivermectin, pyrantel pamoate
38528                                                                                   fipronil, pyriproxyfen, (s)-methoprene
38529                                                                           dexamethasone, neomycin sulfate, thiabendazole
38531                                                                                                  ketoconazole, tris-edta
38532                                                                                             ivermectin, pyrantel pamoate
38533                                                                                                 fipronil, (s)-methoprene
38534                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
38535                                                                                                                olive oil
38536                                                                               toothpaste/dental health solution or chews
38544                                                                           dexamethasone, neomycin sulfate, thiabendazole
38550                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38551                                                                                                                  omega 3
38557                                                                                        betamethasone, gentamicin sulfate
38567                                                                                                               ivermectin
38568                                                                                             ivermectin, pyrantel pamoate
38569                                                                                                               ivermectin
38570                                                                                                   unspecified medication
38588                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38602                                                                                              lufenuron, milbemycin oxime
38605                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38606                                                                                              lufenuron, milbemycin oxime
38607                                                                                       chlorhexidine gluconate, tris-edta
38610                                                                                              lufenuron, milbemycin oxime
38611                                                                                        betamethasone, gentamicin sulfate
38618                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38626                                                                                              lufenuron, milbemycin oxime
38630                                                                                                     digestive supplement
38635                                                                                       fipronil, permethrin, pyriproxyfen
38636                                                                                                               ivermectin
38637                                                                                                 fipronil, (s)-methoprene
38638                                                                           mometasone furoate, orbifloxacin, posaconazole
38643                                                                                             ivermectin, pyrantel pamoate
38644                                                                                                 fipronil, (s)-methoprene
38647                                                                                                       maropitant citrate
38652                                                                                                 fipronil, (s)-methoprene
38655                                                                                                      unspecified rx diet
38656                                                                                                 fipronil, (s)-methoprene
38665                                                                                                                vitamin b
38691                                                                                                                probiotic
38716                                                                          betamethasone, clotrimazole, gentamicin sulfate
38722                                                                          betamethasone, clotrimazole, gentamicin sulfate
38723                                                                                       chlorhexidine gluconate, ophytrium
38724                                                                                             ivermectin, pyrantel pamoate
38754                                                                                                            metronidazole
38764                                                                                                              amoxicillin
38772                                                                                                             ketoconazole
38773                                                                                                               fluralaner
38775                                                                                                  unspecified ear cleaner
38776                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38779                                                                                                               fluralaner
38780                                                                                        betamethasone, gentamicin sulfate
38787                                                                                                                probiotic
38789                                                                                                             multivitamin
38796                                                                                                                probiotic
38802                                                                                                                probiotic
38808                                                                                       amoxicillin, clavulanate potassium
38809                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38810                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
38816                                                                                                                probiotic
38818                                                                                              lufenuron, milbemycin oxime
38820                                                                                              lufenuron, milbemycin oxime
38821                                                                                                               fluralaner
38828                                                                                   chlorhexidine gluconate, dexamethasone
38839                                                                                                       miconazole nitrate
38841                                                                                                         phytosphingosine
38843                                                                             florfenicol, mometasone furoate, terbinafine
38845                                                                                                         tylosin tartrate
38847                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38850                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
38851                                                                                                                  taurine
38854                                                                             florfenicol, mometasone furoate, terbinafine
38855                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38861                                                                             florfenicol, mometasone furoate, terbinafine
38864                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38865                                                                                                  ketoconazole, tris-edta
38868                                                                     vitamin b, vitamin b complex, vitamin b12, vitamin e
38871                                                                                                         tylosin tartrate
38890                                                                                             ivermectin, pyrantel pamoate
38891                                                                                                               afoxolaner
38892                                                                                             ivermectin, pyrantel pamoate
38893                                                                                                               afoxolaner
38896                                                                                             ivermectin, pyrantel pamoate
38897                                                                                                               afoxolaner
38899                                                                                             ivermectin, pyrantel pamoate
38900                                                                                                               afoxolaner
38902                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38924                                                                               dextromethorphan hydrobromide, guaifenesin
38925                                                                                               imidacloprid, pyriproxyfen
38926                                                                                lufenuron, milbemycin oxime, praziquantel
38930                                                                                              lufenuron, milbemycin oxime
38931                                                                                                 flumethrin, imidacloprid
38940                                                                                               milbemycin oxime, spinosad
38941                                                                                                               afoxolaner
38945                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38946                                                                                lufenuron, milbemycin oxime, praziquantel
38950                                                                                lufenuron, milbemycin oxime, praziquantel
38951                                                                                                               afoxolaner
38952                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38956                                                                                       chlorhexidine gluconate, ophytrium
38963                                                                                                         milbemycin oxime
38964                                                                                                                sarolaner
38970                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38971                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38974                                                                            ear cleaner (epi-otic advanced), ketoconazole
38976                                                                                                            yunnan baiyao
38978                                                                                                 fipronil, (s)-methoprene
38983                                                                                                 fipronil, (s)-methoprene
38986                                                                                                               selamectin
38988                                                                                                 fipronil, (s)-methoprene
38997                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39004                                                                                                               fluralaner
39005                                                                                                         milbemycin oxime
39006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39010                                                                                               milbemycin oxime, spinosad
39035                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39073                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
39083                                                                                lufenuron, milbemycin oxime, praziquantel
39099                                                                                             ivermectin, pyrantel pamoate
39105                                                                                             ivermectin, pyrantel pamoate
39106                                                                                                               afoxolaner
39113                                                                                                                carprofen
39117                                                                                               milbemycin oxime, spinosad
39120                                                                                             ivermectin, pyrantel pamoate
39121                                                                                                               ivermectin
39122                                                                                               imidacloprid, pyriproxyfen
39123                                                                                                               ivermectin
39125                                                                                           polysulfated glycosaminoglycan
39127                                                                             florfenicol, mometasone furoate, terbinafine
39128                                                                                        enrofloxacin, silver sulfadiazine
39141                                                                                                        magnesium citrate
39158                                                                                           milbemycin oxime, praziquantel
39165                                                                                       amoxicillin, clavulanate potassium
39167                                                                                   joint supplement (glucosamine hcl/msm)
39171                                                                                    chlorhexidine gluconate, ketoconazole
39175                                                                                                       maropitant citrate
39176                                                                                                               ivermectin
39177                                                                                                             enrofloxacin
39181                                                                                    chlorhexidine gluconate, ketoconazole
39182                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
39188                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39198                                                                                        betamethasone, gentamicin sulfate
39201                                                                             florfenicol, mometasone furoate, terbinafine
39202                                                                                                  ketoconazole, tris-edta
39207                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39209                                                                                                 fipronil, (s)-methoprene
39210                                                                                                 fipronil, (s)-methoprene
39211                                                                                                 fipronil, (s)-methoprene
39212                                                                                                 fipronil, (s)-methoprene
39218                                                                                                 fipronil, (s)-methoprene
39258                                                                                                                probiotic
39259                                                                                                               ivermectin
39260                                                                                                               fluralaner
39261                                                                                                         tylosin tartrate
39262                                                                                             ivermectin, pyrantel pamoate
39273                                                                                             ivermectin, pyrantel pamoate
39316                                                                                               imidacloprid, pyriproxyfen
39325                                                                                                         milbemycin oxime
39326                                                                                                 fipronil, (s)-methoprene
39327                                                                                                         milbemycin oxime
39328                                                                                                                sarolaner
39329                                                                                                         milbemycin oxime
39330                                                                                                                sarolaner
39331                                                                                                         milbemycin oxime
39332                                                                                                                sarolaner
39337                                                                                                               ivermectin
39338                                                                                             ivermectin, pyrantel pamoate
39339                                                                                                 flumethrin, imidacloprid
39340                                                                                             ivermectin, pyrantel pamoate
39385                                                                                             ivermectin, pyrantel pamoate
39388                                                                                             ivermectin, pyrantel pamoate
39389                                                                                   fipronil, pyriproxyfen, (s)-methoprene
39390                                                                                             ivermectin, pyrantel pamoate
39392                                                                             dexamethasone, neomycin sulfate, polymyxin b
39415                                                                                      ear cleaner (zymox), hydrocortisone
39416                                                                                              lufenuron, milbemycin oxime
39423                                                                                                                probiotic
39425                                                                                             silver sulfadiazine, insulin
39433                                                                                                  acetic acid, boric acid
39434                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39435                                                                                                                carvacrol
39436                                                                                                            metronidazole
39438                                                                                             ivermectin, pyrantel pamoate
39439                                                                                                 fipronil, (s)-methoprene
39440                                                                                             ivermectin, pyrantel pamoate
39441                                                                                                 fipronil, (s)-methoprene
39442                                                                                                 fipronil, (s)-methoprene
39443                                                                                             ivermectin, pyrantel pamoate
39444                                                                                             ivermectin, pyrantel pamoate
39445                                                                                                 fipronil, (s)-methoprene
39446                                                                                                 fipronil, (s)-methoprene
39447                                                                                             ivermectin, pyrantel pamoate
39450                                                                                                 fipronil, (s)-methoprene
39451                                                                                             ivermectin, pyrantel pamoate
39453                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39464                                                                                             ivermectin, pyrantel pamoate
39478                                                                                             ivermectin, pyrantel pamoate
39486                                                                                               imidacloprid, pyriproxyfen
39495                                                                                                 fipronil, (s)-methoprene
39496                                                                                             ivermectin, pyrantel pamoate
39511                                                                                                   cyphenothrin, fipronil
39513                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39516                                                                                                               ivermectin
39519                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39525                                                                                                               selamectin
39526                                                                                              lufenuron, milbemycin oxime
39528                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39531                                                                                 febantel, praziquantel, pyrantel pamoate
39532                                                                                                               cephalexin
39534                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39536                                                                                                                probiotic
39539                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39541                                                                                                                  menthol
39542                                                                                                                mupirocin
39543                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39546                                                                                                               selamectin
39548                                                                                                                sarolaner
39566                                                                                                                probiotic
39567                                                                                                 joint supplement (other)
39573                                                                                        betamethasone, gentamicin sulfate
39579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39581                                                                                                               ivermectin
39582                                                                                                               ivermectin
39586                                                                                             ivermectin, pyrantel pamoate
39591                                                                                                   unspecified medication
39599                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39605                                                                                                                carprofen
39607                                                                               dextromethorphan hydrobromide, guaifenesin
39609                                                                                             ivermectin, pyrantel pamoate
39617                                                                                                         pyrantel pamoate
39618                                                                                                               moxidectin
39634                                                                                               milbemycin oxime, spinosad
39635                                                                                               milbemycin oxime, spinosad
39637                                                                                               milbemycin oxime, spinosad
39639                                                                                         phytosphingosine, salicylic acid
39642                                                                                               milbemycin oxime, spinosad
39651                                                                                        betamethasone, gentamicin sulfate
39695                                                                                                               indoxacarb
39705                                                                                                               fluralaner
39706                                                                                             ivermectin, pyrantel pamoate
39707                                                                                                              oclacitinib
39708                                                                                             ivermectin, pyrantel pamoate
39714                                                                                                     digestive supplement
39715                                                                                                                probiotic
39737                                                                                       joint supplement (glucosamine hcl)
39744                                                                                               milbemycin oxime, spinosad
39745                                                                                       fipronil, permethrin, pyriproxyfen
39750                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39754                                                                                              lufenuron, milbemycin oxime
39755                                                                                  betamethasone, florfenicol, terbinafine
39756                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39759                                                                                              lufenuron, milbemycin oxime
39760                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39763                                                                                              lufenuron, milbemycin oxime
39764                                                                                              lufenuron, milbemycin oxime
39776                                                                                                                  omega 3
39777                                                                                       joint supplement (glucosamine hcl)
39778                                                                                                                     kelp
39785                                                                                                          diphenhydramine
39786                                                                                                             multivitamin
39787                                                                                    dinotefuran, permethrin, pyriproxyfen
39788                                                                                               milbemycin oxime, spinosad
39795                                                                                                               afoxolaner
39796                                                                                             ivermectin, pyrantel pamoate
39809                                                                                             ivermectin, pyrantel pamoate
39833                                                                                              lufenuron, milbemycin oxime
39849                                                                                              lufenuron, milbemycin oxime
39856                                                                                              lufenuron, milbemycin oxime
39860                                                                                             ivermectin, pyrantel pamoate
39871                                                                                             ivermectin, pyrantel pamoate
39875                                                                                             ivermectin, pyrantel pamoate
39877                                                                                             ivermectin, pyrantel pamoate
39881                                                                                                             fenbendazole
39901                                                                                                                thyroxine
39909                                                                                               milbemycin oxime, spinosad
39916                                                                             dexamethasone, neomycin sulfate, polymyxin b
39917                                                                                                               tobramycin
39918                                                                                                         atropine sulfate
39919                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39924                                                                                                               fluralaner
39948                                                                                             ivermectin, pyrantel pamoate
39949                                                                                                               afoxolaner
39958                                                                                                               fluralaner
39968                                                                                                               afoxolaner
39969                                                                               ivermectin, praziquantel, pyrantel pamoate
39970                                                                                                         milbemycin oxime
39972                                                                                                               fluralaner
39973                                                                                           milbemycin oxime, praziquantel
39974                                                                                                   benzocaine, resorcinol
39975                                                                                         phytosphingosine, salicylic acid
39976                                                                                                         milbemycin oxime
39980                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39981                                                                                       chlorhexidine gluconate, ophytrium
39982                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39987                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39988                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
40003                                                                                             ivermectin, pyrantel pamoate
40013                                                                                                             imidacloprid
40014                                                                                                               afoxolaner
40021                                                                                                   indoxacarb, permethrin
40023                                                                                                               afoxolaner
40024                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40038                                                                                                               ampicillin
40042                                                                                             ivermectin, pyrantel pamoate
40043                                                                                    dinotefuran, permethrin, pyriproxyfen
40052                                                                                             ivermectin, pyrantel pamoate
40053                                                                                             ivermectin, pyrantel pamoate
40054                                                                                             ivermectin, pyrantel pamoate
40092                                                                                                                 fipronil
40093                                                                                           milbemycin oxime, praziquantel
40095                                                                                             ivermectin, pyrantel pamoate
40102                                                                                                                probiotic
40108                                                                                             ivermectin, pyrantel pamoate
40109                                                                                                 fipronil, (s)-methoprene
40115                                                                                                             fenbendazole
40117                                                                                              lufenuron, milbemycin oxime
40121                                                                                             ivermectin, pyrantel pamoate
40123                                                                                                                probiotic
40124                                                                                             ivermectin, pyrantel pamoate
40125                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40133                                                                                lufenuron, milbemycin oxime, praziquantel
40134                                                                                lufenuron, milbemycin oxime, praziquantel
40138                                                                                                         viola clear fire
40141                                                                        grapefruit seed extract, lavender oil, noni fruit
40142                                                                                             ivermectin, pyrantel pamoate
40143                                                                             castor oil, cinnamon, lemongrass oil, sesame
40144                                                                                             ivermectin, pyrantel pamoate
40149                                                                                             ivermectin, pyrantel pamoate
40154                                                                                             ivermectin, pyrantel pamoate
40164                                                                                          ear cleaner (epi-otic advanced)
40165                                                                                             ivermectin, pyrantel pamoate
40166                                                                                                 fipronil, (s)-methoprene
40180                                                                                                               ivermectin
40181                                                                                                 fipronil, (s)-methoprene
40186                                                                                                         milbemycin oxime
40193                                                                                             ivermectin, pyrantel pamoate
40194                                                                                                               ivermectin
40196                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40200                                                                                               milbemycin oxime, spinosad
40206                                                                                               milbemycin oxime, spinosad
40209                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40210                                                                                                         milbemycin oxime
40211                                                                                                                sarolaner
40214                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40216                                                                                                         milbemycin oxime
40217                                                                                                               afoxolaner
40218                                                                                                                sarolaner
40221                                                                                                         milbemycin oxime
40222                                                                                                               afoxolaner
40223                                                                                                                sarolaner
40224                                                                                                               fluralaner
40244                                                                                                 fipronil, (s)-methoprene
40245                                                                                             ivermectin, pyrantel pamoate
40290                                                                                             ivermectin, pyrantel pamoate
40296                                                                                                                probiotic
40297                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
40298                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40299                                                                                   dexamethasone, ketoconazole, tris-edta
40302                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40308                                                                                                               afoxolaner
40309                                                                                                               lokivetmab
40312                                                                                                                meloxicam
40313                                                                                       amoxicillin, clavulanate potassium
40315                                                                                                               afoxolaner
40317                                                                                  betamethasone, florfenicol, terbinafine
40325                                                                                             ivermectin, pyrantel pamoate
40331                                                                                                         milbemycin oxime
40343                                                                                                  acetic acid, boric acid
40346                                                                                           sulfamethoxazole, trimethoprim
40390                                                                                                         milbemycin oxime
40391                                                                                                         milbemycin oxime
40392                                                                                                         milbemycin oxime
40394                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40403                                                                                                  ketoconazole, tris-edta
40405                                                                                                                trazodone
40406                                                                                                 homatropine, hydrocodone
40407                                                                                             ivermectin, pyrantel pamoate
40408                                                                                                               ivermectin
40417                                                                                                               afoxolaner
40418                                                                                                               ivermectin
40422                                                                                                               afoxolaner
40425                                                                                                                sarolaner
40446                                                                                       amoxicillin, clavulanate potassium
40447                                                                          betamethasone, clotrimazole, gentamicin sulfate
40451                                                                                                               ivermectin
40454                                                                                       amoxicillin, clavulanate potassium
40464                                                                               dextromethorphan hydrobromide, guaifenesin
40468                                                                                                               afoxolaner
40472                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40483                                                                                             ivermectin, pyrantel pamoate
40484                                                                                                               afoxolaner
40486                                                                                             ivermectin, pyrantel pamoate
40487                                                                                                               afoxolaner
40488                                                                                                 imidacloprid, permethrin
40489                                                                                               imidacloprid, pyriproxyfen
40490                                                                                                               cephalexin
40494                                                                                                                carprofen
40503                                                                                                         milbemycin oxime
40504                                                                                                     fipronil, permethrin
40505                                                                                                               selamectin
40508                                                                                                               selamectin
40511                                                                                                             praziquantel
40519                                                                                              lufenuron, milbemycin oxime
40521                                                                                                                 fipronil
40535                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40541                                                                                                               ivermectin
40542                                                                                                 fipronil, (s)-methoprene
40543                                                                                                         milbemycin oxime
40547                                                                                                                thyroxine
40567                                                                               ivermectin, praziquantel, pyrantel pamoate
40568                                                                                             ivermectin, pyrantel pamoate
40571                                                                             dexamethasone, neomycin sulfate, polymyxin b
40572                                                                                                     prebiotic, probiotic
40573                                                                                             ivermectin, pyrantel pamoate
40574                                                                                                               afoxolaner
40579                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40580                                                                                                              amoxicillin
40581                                                                                           sulfamethoxazole, trimethoprim
40582                                                                             dexamethasone, neomycin sulfate, polymyxin b
40583                                                                                                         pyrantel pamoate
40594                                                                                    dinotefuran, permethrin, pyriproxyfen
40595                                                                                        betamethasone, gentamicin sulfate
40600                                                                                              lufenuron, milbemycin oxime
40601                                                                                    dinotefuran, permethrin, pyriproxyfen
40603                                                                                                  chlorhexidine gluconate
40604                                                                                                     digestive supplement
40606                                                                                                  ketoconazole, tris-edta
40607                                                                                               unspecified shampoo/mousse
40610                                                                                    dinotefuran, permethrin, pyriproxyfen
40611                                                                                              lufenuron, milbemycin oxime
40615                                                                                                               lokivetmab
40616                                                                                    dinotefuran, permethrin, pyriproxyfen
40617                                                                                              lufenuron, milbemycin oxime
40618                                                                                               unspecified shampoo/mousse
40619                                                                                                      ear cleaner (zymox)
40620                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40624                                                                                                     cefpodoxime proxetil
40625                                                                                                          diphenhydramine
40634                                                                             dexamethasone, neomycin sulfate, polymyxin b
40635                                                                                                            metronidazole
40636                                                                                                             fenbendazole
40637                                                                                                                probiotic
40644                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40653                                                                                                                 fipronil
40654                                                                               ivermectin, praziquantel, pyrantel pamoate
40655                                                                                           milbemycin oxime, praziquantel
40656                                                                                                         milbemycin oxime
40657                                                                                             ivermectin, pyrantel pamoate
40658                                                                                                               afoxolaner
40684                                                                                lufenuron, milbemycin oxime, praziquantel
40685                                                                                                               indoxacarb
40686                                                                                             ivermectin, pyrantel pamoate
40687                                                                                                   indoxacarb, permethrin
40688                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40689                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40690                                                                                             ivermectin, pyrantel pamoate
40691                                                                                                               indoxacarb
40693                                                                                        trimeprazine tartrate, prednisone
40695                                                                                             ivermectin, pyrantel pamoate
40696                                                                                                               afoxolaner
40699                                                                                                              doxycycline
40700                                                                                             ivermectin, pyrantel pamoate
40701                                                                                                                sarolaner
40718                                                                          betamethasone, clotrimazole, gentamicin sulfate
40719                                                                                             ivermectin, pyrantel pamoate
40721                                                                                             ivermectin, pyrantel pamoate
40722                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40723                                                                          betamethasone, clotrimazole, gentamicin sulfate
40724                                                                                        enrofloxacin, silver sulfadiazine
40725                                                                                             ivermectin, pyrantel pamoate
40726                                                                                                       gentamicin sulfate
40727                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40739                                                                                              lufenuron, milbemycin oxime
40744                                                                                              lufenuron, milbemycin oxime
40745                                                                                                  triamcinolone acetonide
40747                                                                                        trimeprazine tartrate, prednisone
40748                                                                                       chlorhexidine gluconate, ophytrium
40749                                                                                                               fluralaner
40750                                                                                              lufenuron, milbemycin oxime
40751                                                                                              lufenuron, milbemycin oxime
40754                                                                                              lufenuron, milbemycin oxime
40755                                                                                                               fluralaner
40756                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40758                                                                           mometasone furoate, orbifloxacin, posaconazole
40760                                                                                              lufenuron, milbemycin oxime
40774                                                                                             ivermectin, pyrantel pamoate
40775                                                                                             ivermectin, pyrantel pamoate
40776                                                                                                         milbemycin oxime
40781                                                                                                         milbemycin oxime
40783                                                                                                         milbemycin oxime
40793                                                                                             ivermectin, pyrantel pamoate
40794                                                                             dexamethasone, neomycin sulfate, polymyxin b
40795                                                                                                               afoxolaner
40796                                                                                               milbemycin oxime, spinosad
40799                                                                                             ivermectin, pyrantel pamoate
40800                                                                                             ivermectin, pyrantel pamoate
40801                                                                                                                sarolaner
40803                                                                                             ivermectin, pyrantel pamoate
40804                                                                                                                sarolaner
40810                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40823                                                                                             ivermectin, pyrantel pamoate
40824                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40825                                                                                    dinotefuran, permethrin, pyriproxyfen
40826                                                                                                            metronidazole
40827                                                                                                               fluralaner
40828                                                                                             ivermectin, pyrantel pamoate
40829                                                                                                               fluralaner
40833                                                                                             ivermectin, pyrantel pamoate
40834                                                                                                                  omega 3
40838                                                                                        betamethasone, gentamicin sulfate
40839                                                                                                               lokivetmab
40840                                                                                                               lokivetmab
40843                                                                                        betamethasone, gentamicin sulfate
40846                                                                                                               fluralaner
40848                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
40866                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40868                                                                                             ivermectin, pyrantel pamoate
40869                                                                                                                carprofen
40870                                                                                             ivermectin, pyrantel pamoate
40873                                                                                                                probiotic
40875                                                                                                                probiotic
40876                                                                               ivermectin, praziquantel, pyrantel pamoate
40879                                                                                             ivermectin, pyrantel pamoate
40895                                                                                                            yunnan baiyao
40897                                                                                              lufenuron, milbemycin oxime
40899                                                                                              lufenuron, milbemycin oxime
40900                                                                                              lufenuron, milbemycin oxime
40902                                                                                              lufenuron, milbemycin oxime
40905                                                                                                         milbemycin oxime
40919                                                                                                                  omega 3
40943                                                                                                        vision supplement
40957                                                                               ivermectin, praziquantel, pyrantel pamoate
40958                                                                                                             fenbendazole
40959                                                                                                         sulfadimethoxine
40960                                                                                                            metronidazole
40961                                                                                                               sucralfate
40962                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40965                                                                                                         milbemycin oxime
40966                                                                                                               afoxolaner
40967                                                                                                         milbemycin oxime
40968                                                                                                               afoxolaner
40969                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40970                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
40971                                                                                                         milbemycin oxime
40972                                                                                                               afoxolaner
40974                                                                                           milbemycin oxime, praziquantel
40975                                                                                                               afoxolaner
40984                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40987                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40990                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40992                                                                                                               ivermectin
40993                                                                                    dinotefuran, permethrin, pyriproxyfen
40994                                                                                          ear cleaner (epi-otic advanced)
40997                                                                                                         milbemycin oxime
40998                                                                                    dinotefuran, permethrin, pyriproxyfen
41002                                                                                                                  omega 3
41003                                                                                                         tylosin tartrate
41004                                                                                                         milbemycin oxime
41005                                                                                    dinotefuran, permethrin, pyriproxyfen
41006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41007                                                                                                         tylosin tartrate
41008                                                                                                            metronidazole
41009                                                                                 febantel, praziquantel, pyrantel pamoate
41010                                                                                    dinotefuran, permethrin, pyriproxyfen
41011                                                                                                         milbemycin oxime
41012                                                                                                                  omega 3
41013                                                                                                                  omega 3
41014                                                                                                         tylosin tartrate
41015                                                                                                         milbemycin oxime
41016                                                                                    dinotefuran, permethrin, pyriproxyfen
41017                                                                                                            metronidazole
41018                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
41020                                                                                                  acetic acid, boric acid
41021                                                                                                         milbemycin oxime
41022                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41023                                                                                    dinotefuran, permethrin, pyriproxyfen
41024                                                                                                                  omega 3
41025                                                                                                   bupivacaine, lidocaine
41055                                                                                                               lokivetmab
41057                                                                               dimethyl sulfoxide, fluocinolone acetonide
41068                                                                                    dinotefuran, permethrin, pyriproxyfen
41069                                                                                             ivermectin, pyrantel pamoate
41073                                                                                                         milbemycin oxime
41078                                                                                                               fluralaner
41082                                                                                                            metronidazole
41083                                                                                                                meloxicam
41084                                                                                                                meloxicam
41085                                                                                                                 tramadol
41086                                                                                                              doxycycline
41087                                                                                                         milbemycin oxime
41088                                                                                    dinotefuran, permethrin, pyriproxyfen
41089                                                                                                               fluralaner
41090                                                                                                 skin and coat supplement
41091                                                                          betamethasone, clotrimazole, gentamicin sulfate
41092                                                                                                               cephalexin
41094                                                                                                         milbemycin oxime
41095                                                                                                               fluralaner
41096                                                                                    dinotefuran, permethrin, pyriproxyfen
41097                                                                          betamethasone, clotrimazole, gentamicin sulfate
41098                                                                                    dinotefuran, permethrin, pyriproxyfen
41099                                                                                                               fluralaner
41100                                                                                                            metronidazole
41101                                                                          betamethasone, clotrimazole, gentamicin sulfate
41102                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41103                                                                                                                meloxicam
41104                                                                                                               omeprazole
41105                                                                                                                  taurine
41121                                                                                               milbemycin oxime, spinosad
41125                                                                                             ivermectin, pyrantel pamoate
41128                                                                                                               afoxolaner
41129                                                                                                               ivermectin
41130                                                                                                               afoxolaner
41131                                                                                                         milbemycin oxime
41132                                                                                                               afoxolaner
41133                                                                                                         milbemycin oxime
41134                                                                                                               afoxolaner
41137                                                                                        betamethasone, gentamicin sulfate
41139                                                                                        enrofloxacin, silver sulfadiazine
41147                                                                                        enrofloxacin, silver sulfadiazine
41151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41152                                                                                      ear cleaner (zymox), hydrocortisone
41170                                                                             dexamethasone, neomycin sulfate, polymyxin b
41198                                                                                             ivermectin, pyrantel pamoate
41199                                                                                             ivermectin, pyrantel pamoate
41200                                                                                             ivermectin, pyrantel pamoate
41201                                                                                             ivermectin, pyrantel pamoate
41203                                                                                             ivermectin, pyrantel pamoate
41204                                                                                               imidacloprid, pyriproxyfen
41206                                                                                                 fipronil, (s)-methoprene
41207                                                                                             ivermectin, pyrantel pamoate
41208                                                                                                               afoxolaner
41209                                                                                             ivermectin, pyrantel pamoate
41210                                                                                                               afoxolaner
41216                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41217                                                                                               milbemycin oxime, spinosad
41219                                                                                              lufenuron, milbemycin oxime
41220                                                                                              lufenuron, milbemycin oxime
41221                                                                                              lufenuron, milbemycin oxime
41222                                                                                                         milbemycin oxime
41223                                                                                                         milbemycin oxime
41224                                                                                                               fluralaner
41225                                                                                                     prednisolone acetate
41240                                                                                               imidacloprid, pyriproxyfen
41241                                                                                             ivermectin, pyrantel pamoate
41242                                                                                                 imidacloprid, permethrin
41243                                                                                             ivermectin, pyrantel pamoate
41246                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41250                                                                                                 imidacloprid, permethrin
41251                                                                                                              oclacitinib
41252                                                                                                     cefpodoxime proxetil
41254                                                                                             ivermectin, pyrantel pamoate
41255                                                                                                              oclacitinib
41256                                                                                                     cefpodoxime proxetil
41260                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
41267                                                                                             ivermectin, pyrantel pamoate
41278                                                                                        betamethasone, gentamicin sulfate
41279                                                                                                               afoxolaner
41281                                                                                                 fipronil, (s)-methoprene
41283                                                                                              lufenuron, milbemycin oxime
41302                                                                                                               lokivetmab
41313                                                                                    dinotefuran, permethrin, pyriproxyfen
41314                                                                                             ivermectin, pyrantel pamoate
41315                                                                                               imidacloprid, pyriproxyfen
41316                                                                                             ivermectin, pyrantel pamoate
41318                                                                                               imidacloprid, pyriproxyfen
41319                                                                                                         milbemycin oxime
41320                                                                                           milbemycin oxime, praziquantel
41325                                                                                              lufenuron, milbemycin oxime
41332                                                                                              lufenuron, milbemycin oxime
41335                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41336                                                                                        betamethasone, gentamicin sulfate
41340                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41360                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41370                                                                                lufenuron, milbemycin oxime, praziquantel
41371                                                                                                                 fipronil
41372                                                                                                               fluralaner
41373                                                                                lufenuron, milbemycin oxime, praziquantel
41374                                                                                                               fluralaner
41376                                                                                lufenuron, milbemycin oxime, praziquantel
41377                                                                                lufenuron, milbemycin oxime, praziquantel
41378                                                                                                               fluralaner
41381                                                                                                                meloxicam
41384                                                                                              lufenuron, milbemycin oxime
41385                                                                                                               fluralaner
41386                                                                                              lufenuron, milbemycin oxime
41387                                                                                                               fluralaner
41388                                                                                          ear cleaner (epi-otic advanced)
41396                                                                           dexamethasone, neomycin sulfate, thiabendazole
41398                                                                                                   unspecified medication
41399                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41400                                                                                                  triamcinolone acetonide
41407                                                                                                               afoxolaner
41413                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41417                                                                                             ivermectin, pyrantel pamoate
41418                                                                                   cyphenothrin, fipronil, (s)-methoprene
41420                                                                                                               ivermectin
41421                                                                                                               ivermectin
41422                                                                                                               ivermectin
41424                                                                                                               fluralaner
41425                                                                                                               fluralaner
41426                                                                                                               ivermectin
41430                                                                                               milbemycin oxime, spinosad
41431                                                                                               milbemycin oxime, spinosad
41432                                                                                               milbemycin oxime, spinosad
41433                                                                           mometasone furoate, orbifloxacin, posaconazole
41435                                                                                               milbemycin oxime, spinosad
41442                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41443                                                                                               milbemycin oxime, spinosad
41444                                                                                               milbemycin oxime, spinosad
41446                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41447                                                                                               milbemycin oxime, spinosad
41451                                                                                               milbemycin oxime, spinosad
41464                                                                                                       miconazole nitrate
41466                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41470                                                                                        allergy immunotherapy - injection
41497                                                                                                               isoflurane
41500                                                                             florfenicol, mometasone furoate, terbinafine
41502                                                                             florfenicol, mometasone furoate, terbinafine
41505                                                                                                               isoflurane
41524                                                                                                               gabapentin
41525                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41531                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41533                                                                                                               gabapentin
41550                                                                                                                trazodone
41557                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41572                                                                                             ivermectin, pyrantel pamoate
41573                                                                                                               afoxolaner
41581                                                                                             ivermectin, pyrantel pamoate
41612                                                                                                               cephalexin
41615                                                                                             ivermectin, pyrantel pamoate
41617                                                                                                         milbemycin oxime
41621                                                                                                               ampicillin
41629                                                                                                               isoflurane
41632                                                                                                 imidacloprid, moxidectin
41633                                                                                             ivermectin, pyrantel pamoate
41636                                                                                             ivermectin, pyrantel pamoate
41637                                                                                                               afoxolaner
41638                                                                                             ivermectin, pyrantel pamoate
41639                                                                                 febantel, praziquantel, pyrantel pamoate
41640                                                                                             ivermectin, pyrantel pamoate
41641                                                                                             ivermectin, pyrantel pamoate
41648                                                                                                 fipronil, (s)-methoprene
41653                                                                                              lufenuron, milbemycin oxime
41655                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41661                                                                                                                carprofen
41674                                                                                             ivermectin, pyrantel pamoate
41724                                                                                                   unspecified medication
41725                                                                                                 fipronil, (s)-methoprene
41726                                                                                                               ivermectin
41727                                                                                                         milbemycin oxime
41728                                                                                   joint supplement (glucosamine hcl/msm)
41729                                                                                                             multivitamin
41731                                                                                                 fipronil, (s)-methoprene
41732                                                                                                 fipronil, (s)-methoprene
41737                                                                                                 fipronil, (s)-methoprene
41738                                                                                                               ivermectin
41739                                                                                   joint supplement (glucosamine hcl/msm)
41740                                                                                                             multivitamin
41743                                                                                           sulfamethoxazole, trimethoprim
41746                                                                                             ivermectin, pyrantel pamoate
41747                                                                                                                  omega 3
41748                                                                                                                vitamin c
41749                                                                                       joint supplement (glucosamine hcl)
41750                                                                                                                vitamin e
41751                                                                                                 urinary tract supplement
41752                                                                                   joint supplement (glucosamine hcl/msm)
41753                                                                                   joint supplement (glucosamine hcl/msm)
41754                                                                                                 skin and coat supplement
41756                                                                                       amoxicillin, clavulanate potassium
41759                                                                                                         milbemycin oxime
41774                                                                                              lufenuron, milbemycin oxime
41775                                                                                                               afoxolaner
41778                                                                                                               fluralaner
41779                                                                                             ivermectin, pyrantel pamoate
41781                                                                                             ivermectin, pyrantel pamoate
41803                                                                                                               ivermectin
41804                                                                                                               fluralaner
41811                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41816                                                                           mometasone furoate, orbifloxacin, posaconazole
41819                                                                                              lufenuron, milbemycin oxime
41827                                                                                               milbemycin oxime, spinosad
41830                                                                                        trimeprazine tartrate, prednisone
41835                                                                                              lufenuron, milbemycin oxime
41836                                                                                                                 fipronil
41837                                                                                              lufenuron, milbemycin oxime
41838                                                                                                                 fipronil
41840                                                                                              lufenuron, milbemycin oxime
41841                                                                                                                 fipronil
41842                                                                             dexamethasone, neomycin sulfate, polymyxin b
41846                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41849                                                                                              lufenuron, milbemycin oxime
41850                                                                                              lufenuron, milbemycin oxime
41851                                                                                              lufenuron, milbemycin oxime
41853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41854                                                                                             ivermectin, pyrantel pamoate
41855                                                                                                               afoxolaner
41856                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41861                                                                                               milbemycin oxime, spinosad
41862                                                                             dexamethasone, neomycin sulfate, polymyxin b
41863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41866                                                                                             ivermectin, pyrantel pamoate
41867                                                                                                               afoxolaner
41870                                                                                                         milbemycin oxime
41872                                                                                                                trazodone
41884                                                                                                               ivermectin
41885                                                                                   cyphenothrin, fipronil, (s)-methoprene
41888                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
41891                                                                                             ivermectin, pyrantel pamoate
41892                                                                                                     cefpodoxime proxetil
41893                                                                          betamethasone, clotrimazole, gentamicin sulfate
41894                                                                                                                    algae
41895                                                                                                 kidney health supplement
41896                                                                                                 urinary tract supplement
41897                                                                                                                  omega 3
41898                                                                                                                    algae
41899                                                                                                               walnut oil
41900                                                                                                 kidney health supplement
41901                                                                                                                 curcumin
41902                                                                                                                probiotic
41903                                                                                                                  omega 3
41904                                                                                                                    algae
41905                                                                                                 kidney health supplement
41906                                                                                                                probiotic
41907                                                                                                         tylosin tartrate
41921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41929                                                                                                               ivermectin
41930                                                                                             ivermectin, pyrantel pamoate
41937                                                                                             ivermectin, pyrantel pamoate
41938                                                                                                 fipronil, (s)-methoprene
41939                                                                                        betamethasone, gentamicin sulfate
41946                                                                                             ivermectin, pyrantel pamoate
41947                                                                                                 fipronil, (s)-methoprene
41950                                                                                             ivermectin, pyrantel pamoate
41966                                                                                              lufenuron, milbemycin oxime
41967                                                                                              lufenuron, milbemycin oxime
41969                                                                                                                 fipronil
41971                                                                                              lufenuron, milbemycin oxime
41973                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41975                                                                                                            metronidazole
41976                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41988                                                                                              lufenuron, milbemycin oxime
41989                                                                                                               fluralaner
41992                                                                                                               ivermectin
41993                                                                                       fipronil, permethrin, pyriproxyfen
41996                                                                                                 fipronil, (s)-methoprene
41999                                                                                             ivermectin, pyrantel pamoate
42004                                                                                             ivermectin, pyrantel pamoate
42005                                                                                                 fipronil, (s)-methoprene
42011                                                                                             ivermectin, pyrantel pamoate
42012                                                                                                 fipronil, (s)-methoprene
42030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42032                                                                                                         milbemycin oxime
42033                                                                                                              hydroxyzine
42034                                                                                                              amoxicillin
42035                                                                                                              clindamycin
42036                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
42037                                                                                                         milbemycin oxime
42039                                                                                                         milbemycin oxime
42040                                                                             florfenicol, mometasone furoate, terbinafine
42041                                                                                                               cephalexin
42042                                                                                                               prednisone
42043                                                                                                         milbemycin oxime
42044                                                                                                         milbemycin oxime
42051                                                                                                               afoxolaner
42053                                                                                                               afoxolaner
42054                                                                                                               famotidine
42055                                                                                                               sucralfate
42057                                                                                                              doxycycline
42061                                                                                             ivermectin, pyrantel pamoate
42063                                                                                                               ivermectin
42066                                                                                             ivermectin, pyrantel pamoate
42096                                                                                               milbemycin oxime, spinosad
42100                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42101                                                                                        betamethasone, gentamicin sulfate
42112                                                                                             ivermectin, pyrantel pamoate
42113                                                                                                               afoxolaner
42114                                                                                       amoxicillin, clavulanate potassium
42115                                                                                                       maropitant citrate
42116                                                                                                                 tramadol
42117                                                                                                               gabapentin
42119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42122                                                                             florfenicol, mometasone furoate, terbinafine
42147                                                                                              lufenuron, milbemycin oxime
42148                                                                                                               fluralaner
42149                                                                                              lufenuron, milbemycin oxime
42150                                                                                                               fluralaner
42151                                                                                                               fluralaner
42152                                                                                              lufenuron, milbemycin oxime
42154                                                                                                               fluralaner
42157                                                                                                              hydroxyzine
42171                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42174                                                                                                         milbemycin oxime
42175                                                                                                             fenbendazole
42176                                                                                                         sulfadimethoxine
42198                                                                                                 flumethrin, imidacloprid
42201                                                                                                 flumethrin, imidacloprid
42215                                                                                            unspecified herbal supplement
42218                                                                                             ivermectin, pyrantel pamoate
42219                                                                                               imidacloprid, pyriproxyfen
42221                                                                                                 imidacloprid, moxidectin
42227                                                                                                 imidacloprid, moxidectin
42229                                                                                                 imidacloprid, moxidectin
42240                                                                                                         liver supplement
42241                                                                                                                  omega 3
42242                                                                                                                vitamin b
42243                                                                                                             multivitamin
42256                                                                                   dexamethasone, enrofloxacin, tris-edta
42257                                                                                                                mupirocin
42259                                                                                                                mupirocin
42267                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
42272                                                                                              lufenuron, milbemycin oxime
42273                                                                                                               fluralaner
42278                                                                                                 urinary tract supplement
42284                                                                                             ivermectin, pyrantel pamoate
42286                                                                                                 imidacloprid, permethrin
42287                                                                                             ivermectin, pyrantel pamoate
42289                                                                                             ivermectin, pyrantel pamoate
42290                                                                                                 fipronil, (s)-methoprene
42291                                                                                                       calming supplement
42313                                                                                                 fipronil, (s)-methoprene
42314                                                                                             ivermectin, pyrantel pamoate
42345                                                                                                         milbemycin oxime
42346                                                                                                                sarolaner
42348                                                                                                         milbemycin oxime
42349                                                                                                                sarolaner
42353                                                                                              lufenuron, milbemycin oxime
42354                                                                                                               afoxolaner
42355                                                                                                                  omega 3
42356                                                                                                               afoxolaner
42357                                                                                              lufenuron, milbemycin oxime
42358                                                                                                               afoxolaner
42361                                                                                                                probiotic
42365                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
42366                                                                                                               ivermectin
42367                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
42368                                                                                             ivermectin, pyrantel pamoate
42378                                                                                             ivermectin, pyrantel pamoate
42379                                                                                             ivermectin, pyrantel pamoate
42381                                                                                                                 tramadol
42384                                                                                             ivermectin, pyrantel pamoate
42385                                                                                             ivermectin, pyrantel pamoate
42386                                                                                             ivermectin, pyrantel pamoate
42387                                                                                             ivermectin, pyrantel pamoate
42399                                                                                                 flumethrin, imidacloprid
42401                                                                                                 fipronil, (s)-methoprene
42402                                                                                             ivermectin, pyrantel pamoate
42403                                                                                                 fipronil, (s)-methoprene
42404                                                                                             ivermectin, pyrantel pamoate
42412                                                                                             ivermectin, pyrantel pamoate
42413                                                                                                               afoxolaner
42417                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42425                                                                                                           hydrocortisone
42426                                                                                                           hydrocortisone
42433                                                                                             ivermectin, pyrantel pamoate
42435                                                                                                               lokivetmab
42451                                                                                              lufenuron, milbemycin oxime
42455                                                                                              lufenuron, milbemycin oxime
42463                                                                               ivermectin, praziquantel, pyrantel pamoate
42464                                                                                                    ear cleaner (aurocin)
42465                                                                               ivermectin, praziquantel, pyrantel pamoate
42466                                                                                                                carprofen
42468                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
42474                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42475                                                                                                                  omega 3
42476                                                                                              lufenuron, milbemycin oxime
42477                                                                                               imidacloprid, pyriproxyfen
42478                                                                                              lufenuron, milbemycin oxime
42479                                                                                               imidacloprid, pyriproxyfen
42480                                                                                          ear cleaner (epi-otic advanced)
42481                                                                                             ormetoprim, sulfadimethoxine
42482                                                                                               imidacloprid, pyriproxyfen
42483                                                                                              lufenuron, milbemycin oxime
42486                                                                                                                probiotic
42488                                                                                               imidacloprid, pyriproxyfen
42489                                                                                              lufenuron, milbemycin oxime
42502                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42506                                                                                                                probiotic
42512                                                                                           milbemycin oxime, praziquantel
42513                                                                                                 fipronil, (s)-methoprene
42515                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42516                                                                                           milbemycin oxime, praziquantel
42518                                                                                                       maropitant citrate
42519                                                                                                     prednisolone acetate
42522                                                                                                         liver supplement
42537                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42551                                                                                              lufenuron, milbemycin oxime
42552                                                                                              lufenuron, milbemycin oxime
42553                                                                                              lufenuron, milbemycin oxime
42566                                                                                               unspecified shampoo/mousse
42569                                                                                                 fipronil, (s)-methoprene
42570                                                                                                                 spinosad
42572                                                                                             ivermectin, pyrantel pamoate
42573                                                                                             ivermectin, pyrantel pamoate
42574                                                                                             ivermectin, pyrantel pamoate
42575                                                                                                               selamectin
42578                                                                                             ivermectin, pyrantel pamoate
42579                                                                                                               fluralaner
42583                                                                                                                 tramadol
42593                                                                                             ivermectin, pyrantel pamoate
42594                                                                                                               fluralaner
42624                                                                                              lufenuron, milbemycin oxime
42625                                                                                                               afoxolaner
42626                                                                          betamethasone, clotrimazole, gentamicin sulfate
42627                                                                                              lufenuron, milbemycin oxime
42628                                                                                                               fluralaner
42632                                                                                                               fluralaner
42633                                                                                              lufenuron, milbemycin oxime
42634                                                                                                 flumethrin, imidacloprid
42637                                                                                              lufenuron, milbemycin oxime
42638                                                                                              lufenuron, milbemycin oxime
42640                                                                                                 flumethrin, imidacloprid
42646                                                                                                         pyrantel pamoate
42647                                                                                                                ponazuril
42648                                                                                                             fenbendazole
42651                                                                                              lufenuron, milbemycin oxime
42652                                                                                                                 fipronil
42655                                                                                             ivermectin, pyrantel pamoate
42656                                                                                                                sarolaner
42666                                                                                             ivermectin, pyrantel pamoate
42667                                                                                                               afoxolaner
42668                                                                                             ivermectin, pyrantel pamoate
42675                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42678                                                                             dexamethasone, neomycin sulfate, polymyxin b
42679                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42694                                                                                   cyphenothrin, fipronil, (s)-methoprene
42695                                                                                             ivermectin, pyrantel pamoate
42696                                                                                                 fipronil, (s)-methoprene
42697                                                                                                               ivermectin
42700                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42704                                                                                             ivermectin, pyrantel pamoate
42712                                                                                                               ivermectin
42716                                                                                             ivermectin, pyrantel pamoate
42721                                                                                             ivermectin, pyrantel pamoate
42725                                                                                                 fipronil, (s)-methoprene
42726                                                                                             ivermectin, pyrantel pamoate
42727                                                                                             ivermectin, pyrantel pamoate
42728                                                                                             ivermectin, pyrantel pamoate
42729                                                                                                         milbemycin oxime
42740                                                                                             ivermectin, pyrantel pamoate
42741                                                                                                               afoxolaner
42752                                                                                              lufenuron, milbemycin oxime
42753                                                                                              lufenuron, milbemycin oxime
42758                                                                                              lufenuron, milbemycin oxime
42760                                                                                                         milbemycin oxime
42761                                                                                                 fipronil, (s)-methoprene
42764                                                                                           milbemycin oxime, praziquantel
42766                                                                                           milbemycin oxime, praziquantel
42767                                                                                                               afoxolaner
42768                                                                                           milbemycin oxime, praziquantel
42769                                                                                                                sarolaner
42785                                                                                                               afoxolaner
42786                                                                                                         milbemycin oxime
42787                                                                                       joint supplement (glucosamine hcl)
42791                                                                                                         milbemycin oxime
42792                                                                                                         milbemycin oxime
42799                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42809                                                                                    dinotefuran, permethrin, pyriproxyfen
42810                                                                                             ivermectin, pyrantel pamoate
42821                                                                               ivermectin, praziquantel, pyrantel pamoate
42829                                                                          betamethasone, clotrimazole, gentamicin sulfate
42833                                                                                                         milbemycin oxime
42860                                                                                                     rx diet - aging care
42866                                                                                                         milbemycin oxime
42867                                                                                                 fipronil, (s)-methoprene
42869                                                                                                         milbemycin oxime
42870                                                                                                                sarolaner
42876                                                                                                                  omega 3
42879                                                                                    dinotefuran, permethrin, pyriproxyfen
42887                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42890                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42891                                                                                                                probiotic
42892                                                                                                                  omega 3
42893                                                                                                                  omega 3
42894                                                                                                 urinary tract supplement
42909                                                                                                                carprofen
42913                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42915                                                                                                 imidacloprid, permethrin
42920                                                                                             ivermectin, pyrantel pamoate
42923                                                                                                               selamectin
42926                                                                                                 fipronil, (s)-methoprene
42930                                                                                             ivermectin, pyrantel pamoate
42931                                                                                              lufenuron, milbemycin oxime
42932                                                                                                                sarolaner
42935                                                                                                                sarolaner
42936                                                                                              lufenuron, milbemycin oxime
42939                                                                                           milbemycin oxime, praziquantel
42940                                                                                                                sarolaner
42946                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42952                                                                                               milbemycin oxime, spinosad
42956                                                                                              lufenuron, milbemycin oxime
42959                                                                                             ivermectin, pyrantel pamoate
42960                                                                                             ivermectin, pyrantel pamoate
42967                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42994                                                                                               imidacloprid, pyriproxyfen
43013                                                                                             ivermectin, pyrantel pamoate
43045                                                                                             ivermectin, pyrantel pamoate
43064                                                                                             ivermectin, pyrantel pamoate
43065                                                                                               imidacloprid, pyriproxyfen
43069                                                                                               imidacloprid, pyriproxyfen
43072                                                                                               imidacloprid, pyriproxyfen
43073                                                                                               milbemycin oxime, spinosad
43074                                                                                                               selamectin
43081                                                                                                               selamectin
43086                                                                                        betamethasone, gentamicin sulfate
43105                                                                                    chlorhexidine gluconate, ketoconazole
43116                                                                                              lufenuron, milbemycin oxime
43119                                                                                           milbemycin oxime, praziquantel
43123                                                                                                         milbemycin oxime
43134                                                                                       amoxicillin, clavulanate potassium
43135                                                                                                               cephalexin
43136                                                                                                                carprofen
43137                                                                                                         milbemycin oxime
43138                                                                                                               fluralaner
43144                                                                                           milbemycin oxime, praziquantel
43149                                                                                                              hydrocodone
43151                                                                                           milbemycin oxime, praziquantel
43153                                                                           mometasone furoate, orbifloxacin, posaconazole
43169                                                                                                          dexmedetomidine
43173                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
43183                                                                                              lufenuron, milbemycin oxime
43184                                                                                              lufenuron, milbemycin oxime
43187                                                                                                          diphenhydramine
43191                                                                                                              sevoflurane
43200                                                                                               milbemycin oxime, spinosad
43202                                                                                               imidacloprid, pyriproxyfen
43204                                                                                                               selamectin
43224                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43228                                                                                                 flumethrin, imidacloprid
43236                                                                                              lufenuron, milbemycin oxime
43238                                                                                           milbemycin oxime, praziquantel
43239                                                                                                 flumethrin, imidacloprid
43240                                                                                                               famotidine
43241                                                                                           milbemycin oxime, praziquantel
43242                                                                                                 flumethrin, imidacloprid
43243                                                                                           milbemycin oxime, praziquantel
43244                                                                                                 flumethrin, imidacloprid
43246                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43247                                                                                                                 curcumin
43251                                                                                              lufenuron, milbemycin oxime
43254                                                                                              lufenuron, milbemycin oxime
43258                                                                                              lufenuron, milbemycin oxime
43259                                                                                    dinotefuran, permethrin, pyriproxyfen
43265                                                                                              lufenuron, milbemycin oxime
43270                                                                                                            metronidazole
43286                                                                                                            levetiracetam
43291                                                                                                 imidacloprid, moxidectin
43292                                                                                                  chlorhexidine gluconate
43293                                                                                                 imidacloprid, moxidectin
43310                                                                                              lufenuron, milbemycin oxime
43329                                                                                             ivermectin, pyrantel pamoate
43334                                                                                                         milbemycin oxime
43366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43370                                                                                             ivermectin, pyrantel pamoate
43388                                                                                                               fluralaner
43396                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43397                                                                             dexamethasone, neomycin sulfate, polymyxin b
43398                                                                                                            metronidazole
43399                                                                                                                carprofen
43400                                                                                                               cephalexin
43405                                                                                                  ketoconazole, tris-edta
43412                                                                          betamethasone, clotrimazole, gentamicin sulfate
43416                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43423                                                                                                               afoxolaner
43424                                                                                                                  omega 3
43430                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43435                                                                                                                sarolaner
43436                                                                                                              oclacitinib
43442                                                                                                                sarolaner
43443                                                                                                              oclacitinib
43465                                                                                                             multivitamin
43467                                                                                                  ketoconazole, tris-edta
43469                                                                                       joint supplement (glucosamine hcl)
43470                                                                                                                  omega 3
43471                                                                                                      unspecified vitamin
43482                                                                                lufenuron, milbemycin oxime, praziquantel
43491                                                                                              lufenuron, milbemycin oxime
43493                                                                                                         milbemycin oxime
43494                                                                                                         milbemycin oxime
43496                                                                                                         milbemycin oxime
43497                                                                                                         milbemycin oxime
43498                                                                                                                lotilaner
43510                                                                                              lufenuron, milbemycin oxime
43511                                                                                                               fluralaner
43512                                                                                                     fipronil, permethrin
43522                                                                                                               fluralaner
43527                                                                                             ivermectin, pyrantel pamoate
43531                                                                                           milbemycin oxime, praziquantel
43532                                                                                                               afoxolaner
43535                                                                                           milbemycin oxime, praziquantel
43538                                                                                           milbemycin oxime, praziquantel
43539                                                                                                               afoxolaner
43540                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43545                                                                                             ivermectin, pyrantel pamoate
43546                                                                                                 fipronil, (s)-methoprene
43547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43548                                                                                                               ivermectin
43549                                                                                                 fipronil, (s)-methoprene
43550                                                                                                               ivermectin
43561                                                                                                               cephalexin
43563                                                                                                               afoxolaner
43570                                                                                                 fipronil, (s)-methoprene
43601                                                                                                            ciprofloxacin
43610                                                                                             oxytetracycline, polymyxin b
43611                                                                                             ivermectin, pyrantel pamoate
43620                                                                                                                sarolaner
43621                                                                                                 flumethrin, imidacloprid
43622                                                                                             ivermectin, pyrantel pamoate
43636                                                                                                               selamectin
43637                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43639                                                                                                                mupirocin
43640                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43641                                                                                                            metronidazole
43642                                                                                          ear cleaner (epi-otic advanced)
43643                                                                                                   unspecified antiseptic
43644                                                                                             ivermectin, pyrantel pamoate
43645                                                                                                               afoxolaner
43646                                                                                                             fenbendazole
43650                                                                             dexamethasone, neomycin sulfate, polymyxin b
43652                                                                                                 fipronil, (s)-methoprene
43653                                                                                             ivermectin, pyrantel pamoate
43669                                                                                       chlorhexidine gluconate, ophytrium
43670                                                                                                               cetirizine
43674                                                                                                               fluralaner
43675                                                                                                               famotidine
43678                                                                                        betamethasone, gentamicin sulfate
43683                                                                                             ivermectin, pyrantel pamoate
43684                                                                             dexamethasone, neomycin sulfate, polymyxin b
43685                                                                                                             ketoconazole
43686                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43697                                                                                lufenuron, milbemycin oxime, praziquantel
43698                                                                                                               afoxolaner
43701                                                                                              lufenuron, milbemycin oxime
43702                                                                                                               fluralaner
43706                                                                                              lufenuron, milbemycin oxime
43707                                                                                                               fluralaner
43709                                                                                    dinotefuran, permethrin, pyriproxyfen
43712                                                                                                  triamcinolone acetonide
43714                                                                                       chlorhexidine gluconate, ophytrium
43715                                                                                                         phytosphingosine
43738                                                                                        betamethasone, gentamicin sulfate
43743                                                                                             ivermectin, pyrantel pamoate
43744                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43745                                                                                                                probiotic
43746                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43747                                                                                             ivermectin, pyrantel pamoate
43751                                                                                                                probiotic
43755                                                                                             ivermectin, pyrantel pamoate
43756                                                                                                               afoxolaner
43765                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
43766                                                                                                            metronidazole
43778                                                                                             ivermectin, pyrantel pamoate
43783                                                                                             ivermectin, pyrantel pamoate
43784                                                                                                               afoxolaner
43785                                                                                   joint supplement (glucosamine hcl/msm)
43790                                                                                   joint supplement (glucosamine hcl/msm)
43806                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
43807                                                                              chlorhexidine gluconate, miconazole nitrate
43829                                                                                               lactated ringer's solution
43831                                                                                             ivermectin, pyrantel pamoate
43838                                                                                                             capromorelin
43843                                                                                                         milbemycin oxime
43844                                                                                                               afoxolaner
43851                                                                                                 flumethrin, imidacloprid
43853                                                                                                               lokivetmab
43854                                                                                                                carprofen
43878                                                                               ivermectin, praziquantel, pyrantel pamoate
43880                                                                               ivermectin, praziquantel, pyrantel pamoate
43884                                                                                  betamethasone, florfenicol, terbinafine
43885                                                                               ivermectin, praziquantel, pyrantel pamoate
43887                                                                                  betamethasone, florfenicol, terbinafine
43889                                                                                             ivermectin, pyrantel pamoate
43893                                                                                             ivermectin, pyrantel pamoate
43894                                                                                                 flumethrin, imidacloprid
43896                                                                                             ivermectin, pyrantel pamoate
43897                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43898                                                                                                              oclacitinib
43919                                                                                                               ivermectin
43920                                                                                                               afoxolaner
43938                                                                                                         milbemycin oxime
43939                                                                                                               afoxolaner
43949                                                                                                         milbemycin oxime
43950                                                                                                               afoxolaner
43958                                                                                                         milbemycin oxime
43959                                                                                                         milbemycin oxime
43960                                                                                                               afoxolaner
43963                                                                                              lufenuron, milbemycin oxime
43965                                                                          betamethasone, clotrimazole, gentamicin sulfate
43975                                                                                                                probiotic
43976                                                                                             ivermectin, pyrantel pamoate
43977                                                                                             ivermectin, pyrantel pamoate
43980                                                                                             ivermectin, pyrantel pamoate
43997                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
44031                                                                                             ivermectin, pyrantel pamoate
44037                                                                                             ivermectin, pyrantel pamoate
44050                                                                                    chlorhexidine gluconate, ketoconazole
44051                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44055                                                                           dexamethasone, neomycin sulfate, thiabendazole
44084                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44087                                                                                            cedarwood oil, peppermint oil
44090                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44119                                                                                                                ofloxacin
44123                                                                                                  triamcinolone acetonide
44126                                                                                                               ivermectin
44127                                                                                                               afoxolaner
44129                                                                                             ivermectin, pyrantel pamoate
44131                                                                                              lufenuron, milbemycin oxime
44132                                                                                                               afoxolaner
44154                                                  fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
44155                                                                                lufenuron, milbemycin oxime, praziquantel
44157                                                                                lufenuron, milbemycin oxime, praziquantel
44158                                                                                                               fluralaner
44164                                                                                lufenuron, milbemycin oxime, praziquantel
44207                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44209                                                                             florfenicol, mometasone furoate, terbinafine
44211                                                                                               milbemycin oxime, spinosad
44212                                                                                                       calming supplement
44214                                                                                               milbemycin oxime, spinosad
44216                                                                                               milbemycin oxime, spinosad
44218                                                                                               milbemycin oxime, spinosad
44219                                                                                               milbemycin oxime, spinosad
44220                                                                             florfenicol, mometasone furoate, terbinafine
44222                                                                                        betamethasone, gentamicin sulfate
44223                                                                                                              latanoprost
44224                                                                                                              dorzolamide
44225                                                                                                                  timolol
44226                                                                                                                probiotic
44227                                                                                                               diclofenac
44234                                                                                               imidacloprid, pyriproxyfen
44235                                                                                                               ivermectin
44240                                                                                              ear cleaner (well and good)
44241                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44242                                                                                                                  omega 3
44243                                                                                                                 turmeric
44244                                                                                                                  aspirin
44245                                                                                                            metronidazole
44246                                                                                                               ivermectin
44247                                                                                                                 spinosad
44249                                                                                                               afoxolaner
44250                                                                                                               ivermectin
44251                                                                                                               ivermectin
44252                                                                                                               afoxolaner
44253                                                                               ivermectin, praziquantel, pyrantel pamoate
44255                                                                                           milbemycin oxime, praziquantel
44268                                                                               ivermectin, praziquantel, pyrantel pamoate
44280                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44282                                                                                                  ketoconazole, tris-edta
44309                                                                                                        tigilanol tiglate
44321                                                                                lufenuron, milbemycin oxime, praziquantel
44330                                                                                              lufenuron, milbemycin oxime
44331                                                                                                               afoxolaner
44334                                                                                             ivermectin, pyrantel pamoate
44335                                                                                                               afoxolaner
44336                                                                                             ivermectin, pyrantel pamoate
44337                                                                                                               afoxolaner
44347                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
44350                                                                                       amoxicillin, clavulanate potassium
44363                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44372                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
44382                                                                                               milbemycin oxime, spinosad
44385                                                                                               milbemycin oxime, spinosad
44386                                                                                               milbemycin oxime, spinosad
44390                                                                                                         milbemycin oxime
44391                                                                                                         milbemycin oxime
44392                                                                                                         milbemycin oxime
44395                                                                                                         milbemycin oxime
44398                                                                                                                probiotic
44408                                                                                               milbemycin oxime, spinosad
44420                                                                                    dinotefuran, permethrin, pyriproxyfen
44421                                                                               ivermectin, praziquantel, pyrantel pamoate
44422                                                                                             ivermectin, pyrantel pamoate
44423                                                                                    dinotefuran, permethrin, pyriproxyfen
44425                                                                                 febantel, praziquantel, pyrantel pamoate
44428                                                                                               milbemycin oxime, spinosad
44429                                                                                               milbemycin oxime, spinosad
44431                                                                                                               fluralaner
44434                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44452                                                                                               milbemycin oxime, spinosad
44473                                                                                               imidacloprid, pyriproxyfen
44501                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44502                                                                                                            dexamethasone
44503                                                                                                          diphenhydramine
44504                                                                                                          diphenhydramine
44505                                                                                                               cephalexin
44507                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44508                                                                                                            dexamethasone
44509                                                                                                          diphenhydramine
44518                                                                                             ivermectin, pyrantel pamoate
44520                                                                                                                tris-edta
44524                                                                                             ivermectin, pyrantel pamoate
44525                                                                          betamethasone, clotrimazole, gentamicin sulfate
44531                                                                                                                meloxicam
44532                                                                                                            metronidazole
44542                                                                                                 fipronil, (s)-methoprene
44543                                                                                                               ivermectin
44544                                                                                             ivermectin, pyrantel pamoate
44545                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44546                                                                                             ivermectin, pyrantel pamoate
44547                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44552                                                                                                                  omega 3
44558                                                                                             ivermectin, pyrantel pamoate
44559                                                                                                 fipronil, (s)-methoprene
44570                                                                                             ivermectin, pyrantel pamoate
44571                                                                                                 fipronil, (s)-methoprene
44576                                                                                             ivermectin, pyrantel pamoate
44577                                                                                                 fipronil, (s)-methoprene
44595                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44607                                                                                    chlorhexidine gluconate, ketoconazole
44608                                                                                               milbemycin oxime, spinosad
44609                                                                                    chlorhexidine gluconate, ketoconazole
44614                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44616                                                                                              lufenuron, milbemycin oxime
44618                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44646                                                                                                               selamectin
44649                                                                                                               selamectin
44652                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44653                                                                                        betamethasone, gentamicin sulfate
44654                                                                                                 fipronil, (s)-methoprene
44655                                                                                                 flumethrin, imidacloprid
44658                                                                                                       calming supplement
44660                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44663                                                                                                     cefpodoxime proxetil
44671                                                                                               milbemycin oxime, spinosad
44672                                                                                               milbemycin oxime, spinosad
44674                                                                                               milbemycin oxime, spinosad
44677                                                                                               milbemycin oxime, spinosad
44679                                                                                                   acetaminophen, codeine
44683                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44684                                                                                       joint supplement (glucosamine hcl)
44706                                                                                             oxytetracycline, polymyxin b
44732                                                                                              lufenuron, milbemycin oxime
44742                                                                                              lufenuron, milbemycin oxime
44743                                                                                                 fipronil, (s)-methoprene
44745                                                                                              lufenuron, milbemycin oxime
44746                                                                                              lufenuron, milbemycin oxime
44747                                                                                                 flumethrin, imidacloprid
44755                                                                                                                probiotic
44757                                                                                                                probiotic
44769                                                                                                 fipronil, (s)-methoprene
44771                                                                                                 fipronil, (s)-methoprene
44779                                                                                               milbemycin oxime, spinosad
44782                                                                                                         liver supplement
44795                                                                                             oxytetracycline, polymyxin b
44796                                                                                                unspecified eye lubricant
44797                                                                                                                ofloxacin
44798                                                                                                                carprofen
44799                                                                                                                carprofen
44800                                                                                                                trazodone
44804                                                                                                                carprofen
44805                                                                                                               cephalexin
44820                                                                                              lufenuron, milbemycin oxime
44827                                                                                                               ivermectin
44828                                                                                                               afoxolaner
44829                                                                                             ivermectin, pyrantel pamoate
44830                                                                                             ivermectin, pyrantel pamoate
44831                                                                                                     prednisolone acetate
44834                                                                             florfenicol, mometasone furoate, terbinafine
44843                                                                                             ivermectin, pyrantel pamoate
44844                                                                                                               afoxolaner
44857                                                                                        trimeprazine tartrate, prednisone
44858                                                                                        trimeprazine tartrate, prednisone
44862                                                                                                                  omega 3
44863                                                                                             ivermectin, pyrantel pamoate
44864                                                                                             ivermectin, pyrantel pamoate
44866                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44867                                                                                                 imidacloprid, moxidectin
44868                                                                                                 imidacloprid, moxidectin
44869                                                                                                               afoxolaner
44870                                                                                                       diethylstilbestrol
44875                                                                                              lufenuron, milbemycin oxime
44877                                                                                                         milbemycin oxime
44878                                                                                                              clindamycin
44879                                                                                                         milbemycin oxime
44899                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44905                                                                                                            metronidazole
44915                                                                                                 fipronil, (s)-methoprene
44916                                                                                             ivermectin, pyrantel pamoate
44917                                                                                               imidacloprid, pyriproxyfen
44918                                                                                             ivermectin, pyrantel pamoate
44920                                                                                               imidacloprid, pyriproxyfen
44922                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44924                                                                                             ivermectin, pyrantel pamoate
44925                                                                                                 imidacloprid, permethrin
44927                                                                                                               fluralaner
44933                                                                                           polysulfated glycosaminoglycan
44936                                                                                                               selamectin
44937                                                                                                               selamectin
44938                                                                                                               selamectin
44939                                                                                                               selamectin
44946                                                                                             ivermectin, pyrantel pamoate
44947                                                                                                               fluralaner
44948                                                                                                       diethylstilbestrol
44949                                                                                             ivermectin, pyrantel pamoate
44950                                                                                                               fluralaner
44957                                                                                                               fluralaner
44958                                                                                             ivermectin, pyrantel pamoate
44990                                                                                                      aluminium hydroxide
44994                                                                                                               afoxolaner
44997                                                                                                   rx diet - renal health
45000                                                                                                               afoxolaner
45005                                                                                                            levetiracetam
45007                                                                                                               afoxolaner
45009                                                                                                               selamectin
45011                                                                                                               selamectin
45013                                                                                               milbemycin oxime, spinosad
45014                                                                                               milbemycin oxime, spinosad
45015                                                                                                               loratadine
45016                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45017                                                                                                               lokivetmab
45023                                                                                                     prednisolone acetate
45027                                                                                   cyphenothrin, fipronil, (s)-methoprene
45034                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
45045                                                                                                               selamectin
45047                                                                                                 fipronil, (s)-methoprene
45053                                                                                                               ivermectin
45054                                                                                                               afoxolaner
45055                                                                                                               afoxolaner
45056                                                                                                               ivermectin
45057                                                                                                               afoxolaner
45058                                                                                                               afoxolaner
45059                                                                                                               ivermectin
45061                                                                                             ivermectin, pyrantel pamoate
45062                                                                                                                 spinosad
45063                                                                                               milbemycin oxime, spinosad
45064                                                                                               milbemycin oxime, spinosad
45066                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45068                                                                                               milbemycin oxime, spinosad
45072                                                                                               milbemycin oxime, spinosad
45073                                                                                               milbemycin oxime, spinosad
45076                                                                                                                probiotic
45109                                                                                               milbemycin oxime, spinosad
45110                                                                                                                trazodone
45112                                                                                                          dexmedetomidine
45115                                                                                                               gabapentin
45116                                                                                                                carprofen
45117                                                                                                       calming supplement
45123                                                                                             ivermectin, pyrantel pamoate
45128                                                                                             ivermectin, pyrantel pamoate
45129                                                                                                               afoxolaner
45134                                                                                           sulfamethoxazole, trimethoprim
45139                                                                                             ivermectin, pyrantel pamoate
45140                                                                                                               afoxolaner
45149                                                                                              lufenuron, milbemycin oxime
45150                                                                                              lufenuron, milbemycin oxime
45154                                                                                              lufenuron, milbemycin oxime
45172                                                                               dimethyl sulfoxide, fluocinolone acetonide
45173                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45174                                                                                                              bedinvetmab
45175                                                                                                               lokivetmab
45178                                                                                             ivermectin, pyrantel pamoate
45179                                                                                                 fipronil, (s)-methoprene
45180                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
45181                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
45182                                                                                             ivermectin, pyrantel pamoate
45183                                                                                                 fipronil, (s)-methoprene
45184                                                                                                         milbemycin oxime
45185                                                                                                 fipronil, (s)-methoprene
45186                                                                                                         milbemycin oxime
45187                                                                                                                sarolaner
45188                                                                                                         milbemycin oxime
45189                                                                                                                sarolaner
45195                                                                                                               gabapentin
45199                                                                                                                trazodone
45203                                                                                                               afoxolaner
45204                                                                                                              ondansetron
45208                                                                                        betamethasone, gentamicin sulfate
45209                                                                                           ketoconazole, phytosphingosine
45210                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45212                                                                                                         milbemycin oxime
45213                                                                                                 fipronil, (s)-methoprene
45216                                                                                             ivermectin, pyrantel pamoate
45217                                                                                                               afoxolaner
45224                                                                                                  chlorhexidine gluconate
45225                                                                                             ivermectin, pyrantel pamoate
45226                                                                                                               afoxolaner
45236                                                                                             ivermectin, pyrantel pamoate
45237                                                                                                               afoxolaner
45240                                                                                             ivermectin, pyrantel pamoate
45241                                                                                                               afoxolaner
45242                                                                                           milbemycin oxime, praziquantel
45255                                                                                               imidacloprid, pyriproxyfen
45257                                                                             florfenicol, mometasone furoate, terbinafine
45263                                                                                                               afoxolaner
45268                                                                                                         milbemycin oxime
45273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45274                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45280                                                                                             ivermectin, pyrantel pamoate
45283                                                                                             ivermectin, pyrantel pamoate
45284                                                                                                               afoxolaner
45286                                                                                             ivermectin, pyrantel pamoate
45287                                                                                                               afoxolaner
45294                                                                                               milbemycin oxime, spinosad
45295                                                                                                     digestive supplement
45297                                                                                                                meloxicam
45298                                                                                                               afoxolaner
45299                                                                                             ivermectin, pyrantel pamoate
45301                                                                                                               afoxolaner
45302                                                                                             ivermectin, pyrantel pamoate
45305                                                                                                                  taurine
45307                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
45309                                                                                                                  taurine
45310                                                                                             ivermectin, pyrantel pamoate
45311                                                                                                               afoxolaner
45312                                                                                                               afoxolaner
45313                                                                                             ivermectin, pyrantel pamoate
45322                                                                                       amoxicillin, clavulanate potassium
45327                                                                                                                carprofen
45335                                                                                              lufenuron, milbemycin oxime
45344                                                                                                                body sore
45345                                                                                                              liver happy
45358                                                                                                              liver happy
45359                                                                                                                body sore
45372                                                                          betamethasone, clotrimazole, gentamicin sulfate
45383                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45403                                                                                                                ophytrium
45405                                                                                                 fipronil, (s)-methoprene
45406                                                                                              lufenuron, milbemycin oxime
45411                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
45425                                                                                             ivermectin, pyrantel pamoate
45426                                                                                            unspecified flea preventative
45434                                                                                                     cefpodoxime proxetil
45435                                                                                                     cefpodoxime proxetil
45443                                                                                             ivermectin, pyrantel pamoate
45445                                                                                             ivermectin, pyrantel pamoate
45451                                                                                                               ivermectin
45452                                                                                                               afoxolaner
45463                                                                                               milbemycin oxime, spinosad
45468                                                                                              lufenuron, milbemycin oxime
45470                                                                                               milbemycin oxime, spinosad
45471                                                                             dexamethasone, neomycin sulfate, polymyxin b
45474                                                                                               milbemycin oxime, spinosad
45476                                                                                               milbemycin oxime, spinosad
45479                                                                             dexamethasone, neomycin sulfate, polymyxin b
45480                                                                                               milbemycin oxime, spinosad
45484                                                                                               milbemycin oxime, spinosad
45498                                                                                                                carprofen
45499                                                                                             ivermectin, pyrantel pamoate
45500                                                                                                               afoxolaner
45503                                                                                        trimeprazine tartrate, prednisone
45504                                                                                              lufenuron, milbemycin oxime
45508                                                                                                                 fipronil
45531                                                                                                 imidacloprid, moxidectin
45534                                                                                               milbemycin oxime, spinosad
45553                                                                                                               selamectin
45555                                                                                                              coconut oil
45556                                                                                                               selamectin
45572                                                                                       fipronil, permethrin, pyriproxyfen
45582                                                                                                 fipronil, (s)-methoprene
45585                                                                                             ivermectin, pyrantel pamoate
45586                                                                                                            ciprofloxacin
45587                                                                                                               cephalexin
45590                                                                                                                 spinosad
45591                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45592                                                                                                              oclacitinib
45626                                                                                                         milbemycin oxime
45629                                                                                  betamethasone, florfenicol, terbinafine
45642                                                                                             ivermectin, pyrantel pamoate
45650                                                                                                               afoxolaner
45651                                                                                             ivermectin, pyrantel pamoate
45654                                                                                                                trazodone
45655                                                                                             ivermectin, pyrantel pamoate
45656                                                                                                               afoxolaner
45663                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45664                                                                                lufenuron, milbemycin oxime, praziquantel
45665                                                                                                   cyphenothrin, fipronil
45666                                                                                lufenuron, milbemycin oxime, praziquantel
45667                                                                                                   cyphenothrin, fipronil
45670                                                                                                         milbemycin oxime
45671                                                                                                                lotilaner
45674                                                                                        betamethasone, gentamicin sulfate
45675                                                                         dexamethasone, enrofloxacin, silver sulfadiazine
45676                                                                           mometasone furoate, orbifloxacin, posaconazole
45683                                                                                              lufenuron, milbemycin oxime
45684                                                                                                          diphenhydramine
45699                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45700                                                                                                  acetic acid, boric acid
45703                                                                enrofloxacin, miconazole nitrate, triamcinolone acetonide
45704                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45722                                                                                   fipronil, pyriproxyfen, (s)-methoprene
45724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45725                                                                                                                probiotic
45726                                                                                                   joint supplement (msm)
45727                                                                                                                  omega 3
45728                                                                                                 joint supplement (other)
45729                                                                                                               cetirizine
45735                                                                                             ivermectin, pyrantel pamoate
45736                                                                                                 fipronil, (s)-methoprene
45742                                                                                                 fipronil, (s)-methoprene
45751                                                                                                 fipronil, (s)-methoprene
45764                                                                                             ivermectin, pyrantel pamoate
45775                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45776                                                                             florfenicol, mometasone furoate, terbinafine
45786                                                                                                               fluoxetine
45787                                                                                                 fipronil, (s)-methoprene
45791                                                                                              lufenuron, milbemycin oxime
45794                                                                                lufenuron, milbemycin oxime, praziquantel
45798                                                                                                         milbemycin oxime
45799                                                                                                         milbemycin oxime
45800                                                                                                                lotilaner
45816                                                                                                 flumethrin, imidacloprid
45820                                                                                             ivermectin, pyrantel pamoate
45843                                                                                                          povidone-iodine
45844                                                                                                          diphenhydramine
45853                                                                                                               isoflurane
45862                                                                                                         milbemycin oxime
45863                                                                                                               afoxolaner
45864                                                                                                               fluralaner
45868                                                                                                               fluralaner
45869                                                                                           milbemycin oxime, praziquantel
45870                                                                                        betamethasone, gentamicin sulfate
45871                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45872                                                                                                               fluralaner
45876                                                                                               milbemycin oxime, spinosad
45884                                                                                                         milbemycin oxime
45885                                                                                                                lotilaner
45886                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45898                                                                                                         milbemycin oxime
45899                                                                                               imidacloprid, pyriproxyfen
45901                                                                                           milbemycin oxime, praziquantel
45908                                                                                                         milbemycin oxime
45909                                                                                                 imidacloprid, permethrin
45914                                                                                           milbemycin oxime, praziquantel
45924                                                                                             ivermectin, pyrantel pamoate
45928                                                                                                               fluralaner
45968                                                                                              lufenuron, milbemycin oxime
45969                                                                                              lufenuron, milbemycin oxime
45970                                                                                                               afoxolaner
45971                                                                                              lufenuron, milbemycin oxime
45972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45974                                                                                                               cephalexin
45990                                                                                               milbemycin oxime, spinosad
45994                                                                                                 imidacloprid, permethrin
45995                                                                                                                probiotic
45996                                                                                              chloroxylenol, ketoconazole
45997                                                                                                         milbemycin oxime
46014                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46018                                                                                             ivermectin, pyrantel pamoate
46019                                                                                                               afoxolaner
46020                                                                             florfenicol, mometasone furoate, terbinafine
46021                                                                                             ivermectin, pyrantel pamoate
46022                                                                                                               afoxolaner
46025                                                                                             ivermectin, pyrantel pamoate
46043                                                                                                               ivermectin
46044                                                                                                               afoxolaner
46071                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46075                                                                                             ivermectin, pyrantel pamoate
46076                                                                                                         milbemycin oxime
46077                                                                                                              doxycycline
46078                                                                                                         milbemycin oxime
46079                                                                                                                lotilaner
46085                                                                                        betamethasone, gentamicin sulfate
46091                                                                                             ivermectin, pyrantel pamoate
46092                                                                               ivermectin, praziquantel, pyrantel pamoate
46094                                                                                                         milbemycin oxime
46095                                                                                           milbemycin oxime, praziquantel
46100                                                                                                               ivermectin
46101                                                                           dexamethasone, neomycin sulfate, thiabendazole
46102                                                                               dimethyl sulfoxide, fluocinolone acetonide
46103                                                                                                             enrofloxacin
46107                                                                                             ivermectin, pyrantel pamoate
46108                                                                                                               lokivetmab
46110                                                                                             ivermectin, pyrantel pamoate
46116                                                                               ivermectin, praziquantel, pyrantel pamoate
46119                                                                               ivermectin, praziquantel, pyrantel pamoate
46122                                                                               ivermectin, praziquantel, pyrantel pamoate
46128                                                                               ivermectin, praziquantel, pyrantel pamoate
46131                                                                           mometasone furoate, orbifloxacin, posaconazole
46132                                                                                                                ofloxacin
46134                                                                                                                probiotic
46169                                                                                              lufenuron, milbemycin oxime
46170                                                                                    dinotefuran, permethrin, pyriproxyfen
46171                                                                                                  ketoconazole, tris-edta
46173                                                                                    dinotefuran, permethrin, pyriproxyfen
46174                                                                                                         milbemycin oxime
46177                                                                                                         milbemycin oxime
46178                                                                                    dinotefuran, permethrin, pyriproxyfen
46179                                                                                                            metronidazole
46186                                                                                                                probiotic
46198                                                                                             ivermectin, pyrantel pamoate
46200                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46201                                                                               toothpaste/dental health solution or chews
46202                                                                                             ivermectin, pyrantel pamoate
46213                                                                                                 imidacloprid, permethrin
46218                                                                                                         milbemycin oxime
46219                                                                                                               afoxolaner
46226                                                                                                              doxycycline
46227                                                                                                               afoxolaner
46255                                                                                           ketoconazole, phytosphingosine
46265                                                                                                              hydrocodone
46277                                                                                             ivermectin, pyrantel pamoate
46278                                                                                                               afoxolaner
46287                                                                                             ivermectin, pyrantel pamoate
46288                                                                                                               afoxolaner
46291                                                                                             ivermectin, pyrantel pamoate
46292                                                                                             ivermectin, pyrantel pamoate
46293                                                                                                               afoxolaner
46295                                                                                             ivermectin, pyrantel pamoate
46296                                                                                                               afoxolaner
46302                                                                                              lufenuron, milbemycin oxime
46303                                                                                              lufenuron, milbemycin oxime
46304                                                                                                 fipronil, (s)-methoprene
46305                                                                                              lufenuron, milbemycin oxime
46308                                                                                              lufenuron, milbemycin oxime
46311                                                                                           polysulfated glycosaminoglycan
46312                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46313                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46314                                                                                                                  omega 3
46319                                                                                      ear cleaner (zymox), hydrocortisone
46320                                                                                                         milbemycin oxime
46324                                                                                                      ear cleaner (zymox)
46325                                                                                                         milbemycin oxime
46328                                                                                                               fluralaner
46345                                                                                             ivermectin, pyrantel pamoate
46350                                                                                           milbemycin oxime, praziquantel
46355                                                                                           milbemycin oxime, praziquantel
46358                                                                               dextromethorphan hydrobromide, guaifenesin
46360                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
46377                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
46379                                                                                               milbemycin oxime, spinosad
46399                                                                                               milbemycin oxime, spinosad
46406                                                                                                unspecified otic ear pack
46410                                                                                                               ivermectin
46411                                                                                                 imidacloprid, permethrin
46413                                                                                                 flumethrin, imidacloprid
46418                                                                                                 flumethrin, imidacloprid
46424                                                                                                 flumethrin, imidacloprid
46431                                                                                                 flumethrin, imidacloprid
46432                                                                                                                  omega 3
46435                                                                                             ivermectin, pyrantel pamoate
46436                                                                                                 flumethrin, imidacloprid
46474                                                                                                               ivermectin
46475                                                                                    dinotefuran, permethrin, pyriproxyfen
46476                                                                                                         milbemycin oxime
46478                                                                                             ivermectin, pyrantel pamoate
46479                                                                               ivermectin, praziquantel, pyrantel pamoate
46480                                                                                                               afoxolaner
46481                                                                                    dinotefuran, permethrin, pyriproxyfen
46482                                                                                             ivermectin, pyrantel pamoate
46483                                                                                    dinotefuran, permethrin, pyriproxyfen
46486                                                                                                               afoxolaner
46487                                                                                             ivermectin, pyrantel pamoate
46488                                                                                                               ivermectin
46489                                                                                             ivermectin, pyrantel pamoate
46490                                                                                             ivermectin, pyrantel pamoate
46491                                                                                              lufenuron, milbemycin oxime
46492                                                                                                               ivermectin
46493                                                                                              lufenuron, milbemycin oxime
46494                                                                                           milbemycin oxime, praziquantel
46499                                                                                                         milbemycin oxime
46502                                                                                                                  omega 3
46504                                                                                                  chlorhexidine gluconate
46505                                                                               chloroxylenol, lactic acid, salicylic acid
46506                                                                           dexamethasone, neomycin sulfate, thiabendazole
46512                                                                                                               ivermectin
46517                                                                                                                probiotic
46521                                                                                        dexamethasone, miconazole nitrate
46524                                                                          betamethasone, clotrimazole, gentamicin sulfate
46526                                                                             dexamethasone, neomycin sulfate, polymyxin b
46527                                                                          betamethasone, clotrimazole, gentamicin sulfate
46528                                                                                                 fipronil, (s)-methoprene
46529                                                                                                               sucralfate
46530                                                                                                  ketoconazole, tris-edta
46532                                                                                                         milbemycin oxime
46533                                                                             dexamethasone, neomycin sulfate, polymyxin b
46534                                                                           dexamethasone, neomycin sulfate, thiabendazole
46543                                                                                                 fipronil, (s)-methoprene
46544                                                                                                         milbemycin oxime
46547                                                                                                 fipronil, (s)-methoprene
46551                                                                          betamethasone, clotrimazole, gentamicin sulfate
46553                                                                             florfenicol, mometasone furoate, terbinafine
46555                                                                                                                pramoxine
46568                                                                                             ivermectin, pyrantel pamoate
46569                                                                                               imidacloprid, pyriproxyfen
46570                                                                                 febantel, praziquantel, pyrantel pamoate
46571                                                                                               imidacloprid, pyriproxyfen
46572                                                                                             ivermectin, pyrantel pamoate
46573                                                                                             ivermectin, pyrantel pamoate
46574                                                                                               imidacloprid, pyriproxyfen
46575                                                                                             ivermectin, pyrantel pamoate
46579                                                                                                 imidacloprid, permethrin
46588                                                                                                               selamectin
46590                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46591                                                                                             ivermectin, pyrantel pamoate
46593                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46606                    dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
46607                                                                                                               gabapentin
46615                                                                                                               fluralaner
46616                                                                                              lufenuron, milbemycin oxime
46617                                                                                              lufenuron, milbemycin oxime
46618                                                                                              lufenuron, milbemycin oxime
46664                                                                                  betamethasone, florfenicol, terbinafine
46665                                                                                                               afoxolaner
46672                                                                                                         milbemycin oxime
46676                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
46680                                                                                               imidacloprid, pyriproxyfen
46687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46690                                                                                        betamethasone, gentamicin sulfate
46694                                                                                                               selamectin
46702                                                                                        betamethasone, gentamicin sulfate
46703                                                                                       chlorhexidine gluconate, ophytrium
46716                                                                                               milbemycin oxime, spinosad
46717                                                                                               milbemycin oxime, spinosad
46718                                                                                                              oclacitinib
46729                                                                                             ivermectin, pyrantel pamoate
46730                                                                                             ivermectin, pyrantel pamoate
46732                                                                                      allergy immunotherapy - unspecified
46737                                                                                                       calming supplement
46747                                                                                                                ophytrium
46753                                                                                        betamethasone, gentamicin sulfate
46762                                                                                        dexamethasone, miconazole nitrate
46763                                                                                                                carprofen
46766                                                                                                                deracoxib
46767                                                                                              lufenuron, milbemycin oxime
46771                                                                                       amoxicillin, clavulanate potassium
46775                                                                                             ivermectin, pyrantel pamoate
46776                                                                                                               afoxolaner
46777                                                                                           praziquantel, pyrantel pamoate
46781                                                                                             ivermectin, pyrantel pamoate
46782                                                                                                               afoxolaner
46783                                                                                                         phytosphingosine
46784                                                                                             ivermectin, pyrantel pamoate
46785                                                                                                               afoxolaner
46786                                                                                             ivermectin, pyrantel pamoate
46787                                                                                                               afoxolaner
46788                                                                                             ivermectin, pyrantel pamoate
46789                                                                                                               afoxolaner
46804                                                                                             ivermectin, pyrantel pamoate
46811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46812                                                                                             ivermectin, pyrantel pamoate
46816                                                                                             ivermectin, pyrantel pamoate
46818                                                                                                               prednisone
46826                                                                                                        potassium bromide
46827                                                                             dexamethasone, neomycin sulfate, polymyxin b
46835                                                                                                            levothyroxine
46836                                                                                                            levothyroxine
46849                                                                                             ivermectin, pyrantel pamoate
46853                                                                                             ivermectin, pyrantel pamoate
46867                                                                                                         sulfadimethoxine
46874                                                                                             oxytetracycline, polymyxin b
46880                                                                                                            oxymetazoline
46881                                                                                lufenuron, milbemycin oxime, praziquantel
46883                                                                                                         milbemycin oxime
46884                                                                                                         milbemycin oxime
46885                                                                                                                lotilaner
46889                                                                                           sulfamethoxazole, trimethoprim
46891                                                                                           sulfamethoxazole, trimethoprim
46902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46903                                                                                               imidacloprid, pyriproxyfen
46904                                                                                             ivermectin, pyrantel pamoate
46905                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46908                                                                                        betamethasone, gentamicin sulfate
46915                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
46931                                                                                                                probiotic
46933                                                                                                         milbemycin oxime
46938                                                                                                                probiotic
46944                                                                                                                probiotic
46961                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46962                                          carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
46972                                                                                             ivermectin, pyrantel pamoate
46973                                                                                             ivermectin, pyrantel pamoate
46976                                                                                             ivermectin, pyrantel pamoate
46977                                                                                                 fipronil, (s)-methoprene
46978                                                                             dexamethasone, neomycin sulfate, polymyxin b
46979                                                                                             ivermectin, pyrantel pamoate
46980                                                                                             ivermectin, pyrantel pamoate
46981                                                                          betamethasone, clotrimazole, gentamicin sulfate
46982                                                                                                  ketoconazole, tris-edta
46983                                                                                                 fipronil, (s)-methoprene
46984                                                                                                 fipronil, (s)-methoprene
46985                                                                                             ivermectin, pyrantel pamoate
46986                                                                                             ivermectin, pyrantel pamoate
46987                                                                                                 fipronil, (s)-methoprene
47000                                                                                                                sarolaner
47004                                                                                              lufenuron, milbemycin oxime
47010                                                                                              lufenuron, milbemycin oxime
47011                                                                                                               afoxolaner
47018                                                                                                         milbemycin oxime
47024                                                                                                         milbemycin oxime
47025                                                                                                                sarolaner
47040                                                                                              lufenuron, milbemycin oxime
47041                                                                                              lufenuron, milbemycin oxime
47042                                                                                                            metronidazole
47043                                                                                              lufenuron, milbemycin oxime
47044                                                                                                 fipronil, (s)-methoprene
47045                                                                                                       maropitant citrate
47049                                                                                                               selamectin
47050                                                                                                            metronidazole
47053                                                                                                               selamectin
47055                                                                                                               ivermectin
47060                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47065                                                                                                       maropitant citrate
47069                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47076                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
47080                                                                                                                  omega 3
47081                                                                                                immune support supplement
47085                                                                                             ivermectin, pyrantel pamoate
47086                                                                                                               afoxolaner
47090                                                                                        betamethasone, gentamicin sulfate
47095                                                                                               milbemycin oxime, spinosad
47096                                                                                             ivermectin, pyrantel pamoate
47097                                                                                                               afoxolaner
47098                                                               benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
47104                                                                          betamethasone, clotrimazole, gentamicin sulfate
47105                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47106                                                                                    dinotefuran, permethrin, pyriproxyfen
47108                                                                                    dinotefuran, permethrin, pyriproxyfen
47123                                                                               ivermectin, praziquantel, pyrantel pamoate
47125                                                                                             ivermectin, pyrantel pamoate
47126                                                                                                               fluralaner
47128                                                                                        trimeprazine tartrate, prednisone
47136                                                                                                               selamectin
47137                                                                           mometasone furoate, orbifloxacin, posaconazole
47140                                                                                                               selamectin
47143                                                                                                               selamectin
47146                                                                                                               selamectin
47152                                                                          betamethasone, clotrimazole, gentamicin sulfate
47153                                                                                                               fluralaner
47154                                                                                             ivermectin, pyrantel pamoate
47155                                                                                             ivermectin, pyrantel pamoate
47156                                                                                                               fluralaner
47162                                                                                                               indoxacarb
47164                                                                                                               indoxacarb
47178                                                                                             ivermectin, pyrantel pamoate
47180                                                                          betamethasone, clotrimazole, gentamicin sulfate
47181                                                                             florfenicol, mometasone furoate, terbinafine
47183                                                                                                               fluralaner
47184                                                                                              lufenuron, milbemycin oxime
47185                                                                                              lufenuron, milbemycin oxime
47186                                                                                              lufenuron, milbemycin oxime
47187                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47193                                                                                             ivermectin, pyrantel pamoate
47194                                                                                                 fipronil, (s)-methoprene
47196                                                                                                 fipronil, (s)-methoprene
47197                                                                                             ivermectin, pyrantel pamoate
47204                                                                                                   unspecified medication
47208                                                                                                            yunnan baiyao
47209                                                                                              lufenuron, milbemycin oxime
47210                                                                                                         milbemycin oxime
47220                                                                                                 flumethrin, imidacloprid
47221                                                                                                     cefpodoxime proxetil
47222                                                                                        betamethasone, gentamicin sulfate
47240                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47248                                                                                                         pyrantel pamoate
47251                                                                                                             fenbendazole
47253                                                                                                         milbemycin oxime
47255                                                                                                         milbemycin oxime
47260                                                                                                         milbemycin oxime
47266                                                                                       amoxicillin, clavulanate potassium
47277                                                                                                 fipronil, (s)-methoprene
47286                                                                                                 fipronil, (s)-methoprene
47302                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47305                                                                                                            metronidazole
47313                                                                                    dinotefuran, permethrin, pyriproxyfen
47323                                                                                                         milbemycin oxime
47325                                                                                           milbemycin oxime, praziquantel
47334                                                                                           milbemycin oxime, praziquantel
47337                                                                                                                 tramadol
47343                                                                                                         milbemycin oxime
47345                                                                                           milbemycin oxime, praziquantel
47349                                                                                                             acepromazine
47350                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47355                                                                                                      silver sulfadiazine
47360                                                                                                                probiotic
47390                                                                                             ivermectin, pyrantel pamoate
47407                                                                                                               prednisone
47409                                                                                                         milbemycin oxime
47411                                                                                                               afoxolaner
47412                                                                                           milbemycin oxime, praziquantel
47415                                                                                                                sarolaner
47416                                                                                                         milbemycin oxime
47417                                                                                                                sarolaner
47420                                                                                                         milbemycin oxime
47421                                                                                                                sarolaner
47433                                                                                             ivermectin, pyrantel pamoate
47439                                                                                        trimeprazine tartrate, prednisone
47451                                                                                             ivermectin, pyrantel pamoate
47478                                                                                lufenuron, milbemycin oxime, praziquantel
47479                                                                                              lufenuron, milbemycin oxime
47481                                                                                                         pyrantel pamoate
47483                                                                                          ear cleaner (epi-otic advanced)
47484                                                                                                 flumethrin, imidacloprid
47486                                                                                                 flumethrin, imidacloprid
47490                                                                                             ivermectin, pyrantel pamoate
47493                                                                                                 flumethrin, imidacloprid
47496                                                                                                   unspecified medication
47497                                                                                                               ivermectin
47498                                                                                                 flumethrin, imidacloprid
47513                                                                           mometasone furoate, orbifloxacin, posaconazole
47515                                                                                             ivermectin, pyrantel pamoate
47517                                                                                             ivermectin, pyrantel pamoate
47524                                                                                             ivermectin, pyrantel pamoate
47539                                                                                                 imidacloprid, permethrin
47540                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47544                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47547                                                                                              betamethasone, enrofloxacin
47557                                                                                                 flumethrin, imidacloprid
47559                                                                                                     prednisolone acetate
47561                                                                                                               sucralfate
47562                                                                                                         milbemycin oxime
47563                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47576                                                                                    dinotefuran, permethrin, pyriproxyfen
47577                                                                                             ivermectin, pyrantel pamoate
47578                                                                                             ivermectin, pyrantel pamoate
47580                                                                                                                meloxicam
47586                                                                                             ivermectin, pyrantel pamoate
47587                                                                                    dinotefuran, permethrin, pyriproxyfen
47588                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
47589                                                                                                         milbemycin oxime
47590                                                                                    dinotefuran, permethrin, pyriproxyfen
47592                                                                                                         milbemycin oxime
47593                                                                                    dinotefuran, permethrin, pyriproxyfen
47594                                                                                                               ivermectin
47595                                                                                    dinotefuran, permethrin, pyriproxyfen
47597                                                                                                 imidacloprid, moxidectin
47600                                                                                                 imidacloprid, moxidectin
47609                                                                                               milbemycin oxime, spinosad
47628                                                                                                 fipronil, (s)-methoprene
47629                                                                                             ivermectin, pyrantel pamoate
47630                                                                                               imidacloprid, pyriproxyfen
47635                                                                                                 imidacloprid, permethrin
47636                                                                                                               ivermectin
47658                                                                             florfenicol, mometasone furoate, terbinafine
47681                                                                                             ivermectin, pyrantel pamoate
47682                                                                                                               afoxolaner
47684                                                                                        betamethasone, gentamicin sulfate
47693                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47694                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47696                                                                                             ivermectin, pyrantel pamoate
47698                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47699                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47702                                                                                                       miconazole nitrate
47706                                                                                               milbemycin oxime, spinosad
47715                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47716                                                                                                  ketoconazole, tris-edta
47720                                                                                                  ketoconazole, tris-edta
47721                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47733                                                                                               milbemycin oxime, spinosad
47734                                                                             dexamethasone, neomycin sulfate, polymyxin b
47739                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47743                                                                                              lufenuron, milbemycin oxime
47744                                                                                              lufenuron, milbemycin oxime
47745                                                                                              lufenuron, milbemycin oxime
47746                                                                                              lufenuron, milbemycin oxime
47752                                                                             florfenicol, mometasone furoate, terbinafine
47755                                                                                                 fipronil, (s)-methoprene
47760                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47800                                                                                             ivermectin, pyrantel pamoate
47801                                                                                                 fipronil, (s)-methoprene
47802                                                                                             ivermectin, pyrantel pamoate
47803                                                                                                 fipronil, (s)-methoprene
47808                                                                                             ivermectin, pyrantel pamoate
47809                                                                                                 fipronil, (s)-methoprene
47810                                                                                                               afoxolaner
47811                                                                                             ivermectin, pyrantel pamoate
47812                                                                                                               afoxolaner
47815                                                                                             ivermectin, pyrantel pamoate
47816                                                                                                               afoxolaner
47817                                                                               clinical trial - cancer prevention vaccine
47825                                                                                                            yunnan baiyao
47835                                                                                lufenuron, milbemycin oxime, praziquantel
47836                                                                                lufenuron, milbemycin oxime, praziquantel
47840                                                                                lufenuron, milbemycin oxime, praziquantel
47847                                                                                                         tylosin tartrate
47860                                                                                                               fluralaner
47861                                                                                                    clorsulon, ivermectin
47862                                                                                                    clorsulon, ivermectin
47863                                                                                                               fluralaner
47867                                                                                                                carprofen
47870                                                                                              lufenuron, milbemycin oxime
47877                                                                                                  triamcinolone acetonide
47887                                                                                                               fluralaner
47888                                                                                             ivermectin, pyrantel pamoate
47889                                                                                                                  omega 3
47890                                                                                       joint supplement (glucosamine hcl)
47891                                                                                                                probiotic
47892                                                                                                                carprofen
47894                                                                                        trimeprazine tartrate, prednisone
47900                                                                                        betamethasone, gentamicin sulfate
47902                                                                                                               ivermectin
47906                                                                                                 fipronil, (s)-methoprene
47908                                                                                             ivermectin, pyrantel pamoate
47909                                                                                             ivermectin, pyrantel pamoate
47910                                                                             florfenicol, mometasone furoate, terbinafine
47917                                                                                                              doxycycline
47928                                                                                                                 tramadol
47949                                                                                                               fluralaner
47950                                                                                                               afoxolaner
47951                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47952                                                                                                     cefpodoxime proxetil
47953                                                                                        betamethasone, gentamicin sulfate
47969                                                                                lufenuron, milbemycin oxime, praziquantel
47970                                                                                                               afoxolaner
47971                                                                                              lufenuron, milbemycin oxime
47975                                                                                lufenuron, milbemycin oxime, praziquantel
47976                                                                                              lufenuron, milbemycin oxime
47979                                                                                                 fipronil, (s)-methoprene
47980                                                                                                               fluralaner
47981                                                                                                         milbemycin oxime
47983                                                                                           milbemycin oxime, praziquantel
47984                                                                                       fipronil, permethrin, pyriproxyfen
47985                                                                                              lufenuron, milbemycin oxime
47989                                                                                              lufenuron, milbemycin oxime
47990                                                                                               imidacloprid, pyriproxyfen
47995                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47996                                                                                              lufenuron, milbemycin oxime
47997                                                                                                               afoxolaner
47998                                                                                                       maropitant citrate
47999                                                                                                       maropitant citrate
48000                                                                                                                carprofen
48001                                                                                                             enrofloxacin
48002                                                                                                         liver supplement
48003                                                                                                              ondansetron
48004                                                                                                            metronidazole
48005                                                                                                         cyclophosphamide
48006                                                                                                              doxorubicin
48007                                                                                                                  sotalol
48008                                                                                                                  sotalol
48012                                                                                                 fipronil, (s)-methoprene
48013                                                                                                               afoxolaner
48014                                                                                                               afoxolaner
48016                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
48020                                                                                             ivermectin, pyrantel pamoate
48021                                                                                                               afoxolaner
48028                                                                                             ivermectin, pyrantel pamoate
48029                                                                                                               afoxolaner
48030                                                                                                             multivitamin
48031                                                                                                                  omega 3
48032                                                                                                                vitamin c
48033                                                                                   joint supplement (glucosamine hcl/msm)
48034                                                                                                     digestive supplement
48035                                                                                                                probiotic
48040                                                                                             ivermectin, pyrantel pamoate
48041                                                                                                               afoxolaner
48046                                                                                             ivermectin, pyrantel pamoate
48047                                                                                                               afoxolaner
48048                                                                                                             multivitamin
48049                                                                                                                  omega 3
48052                                                                                                                probiotic
48069                                                                                                         tylosin tartrate
48072                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48076                                                                                               milbemycin oxime, spinosad
48083                                                                                             ivermectin, pyrantel pamoate
48084                                                                                    dinotefuran, permethrin, pyriproxyfen
48087                                                                                             ivermectin, pyrantel pamoate
48088                                                                                                               fluralaner
48089                                                                                                                probiotic
48090                                                                                                                  omega 3
48094                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
48100                                                                             dexamethasone, neomycin sulfate, polymyxin b
48101                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48102                                                                                             ivermectin, pyrantel pamoate
48103                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48105                                                                                             ivermectin, pyrantel pamoate
48106                                                                                                 flumethrin, imidacloprid
48107                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
48108                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48109                                                                                           milbemycin oxime, praziquantel
48110                                                                                                 flumethrin, imidacloprid
48114                                                                                      ear cleaner (zymox), hydrocortisone
48120                                                                                              lufenuron, milbemycin oxime
48121                                                                                               imidacloprid, pyriproxyfen
48127                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48128                                                                                                              hydroxyzine
48129                                                                                                              oclacitinib
48131                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48132                                                                                              lufenuron, milbemycin oxime
48133                                                                                                               fluralaner
48142                                                                                              lufenuron, milbemycin oxime
48143                                                                                               imidacloprid, pyriproxyfen
48147                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48148                                                                                              lufenuron, milbemycin oxime
48151                                                                                              lufenuron, milbemycin oxime
48152                                                                                                               fluralaner
48154                                                                                               milbemycin oxime, spinosad
48155                                                                                              lufenuron, milbemycin oxime
48157                                                                                             ivermectin, pyrantel pamoate
48158                                                                                                               fluralaner
48159                                                                                             ivermectin, pyrantel pamoate
48160                                                                                                               fluralaner
48161                                                                                                               cephalexin
48162                                                                                                                carprofen
48163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48167                                                                                                               ivermectin
48169                                                                                                                trazodone
48170                                                                                                                trazodone
48171                                                                                                                trazodone
48178                                                                          betamethasone, clotrimazole, gentamicin sulfate
48182                                                                                             ivermectin, pyrantel pamoate
48184                                                                                                         pyrantel pamoate
48185                                                                                                         sulfadimethoxine
48188                                                                          betamethasone, clotrimazole, gentamicin sulfate
48201                                                                          betamethasone, clotrimazole, gentamicin sulfate
48213                                                                                                         phytosphingosine
48214                                                                                                               afoxolaner
48215                                                                                             ivermectin, pyrantel pamoate
48217                                                                                             ivermectin, pyrantel pamoate
48218                                                                                                                sarolaner
48220                                                                                                               ampicillin
48221                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48222                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48223                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48231                                                                                              lufenuron, milbemycin oxime
48237                                                                             dexamethasone, neomycin sulfate, polymyxin b
48238                                                                                              lufenuron, milbemycin oxime
48240                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48248                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48251                                                                                                         milbemycin oxime
48252                                                                                                               afoxolaner
48258                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48265                                                                          betamethasone, clotrimazole, gentamicin sulfate
48266                                                                                                      sodium hypochlorite
48267                                                                          betamethasone, clotrimazole, gentamicin sulfate
48271                                                                                              lufenuron, milbemycin oxime
48274                                                                                                 imidacloprid, permethrin
48277                                                                                                 fipronil, (s)-methoprene
48285                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48287                                                                                                          interferon alfa
48288                                                                                      ear cleaner (zymox), hydrocortisone
48289                                                                                             ivermectin, pyrantel pamoate
48290                                                                                                               afoxolaner
48291                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48292                                                                                             ivermectin, pyrantel pamoate
48294                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48297                                                                                             ivermectin, pyrantel pamoate
48298                                                                                                               afoxolaner
48299                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48300                                                                                             ivermectin, pyrantel pamoate
48306                                                                                              lufenuron, milbemycin oxime
48307                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48310                                                                                              lufenuron, milbemycin oxime
48311                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48312                                                                                                               cephalexin
48314                                                                                                              omega 3-6-9
48322                                                                                                                probiotic
48327                                                                                                 fipronil, (s)-methoprene
48328                                                                                lufenuron, milbemycin oxime, praziquantel
48334                                                                                                  triamcinolone acetonide
48336                                                                                        betamethasone, gentamicin sulfate
48337                                                                                                            dexamethasone
48338                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48339                                                                           dexamethasone, neomycin sulfate, thiabendazole
48342                                                                                                            dexamethasone
48343                                                                                        betamethasone, gentamicin sulfate
48344                                                                                              lufenuron, milbemycin oxime
48345                                                                             dexamethasone, neomycin sulfate, polymyxin b
48350                                                                                                                 ketamine
48351                                                                                                                 diazepam
48352                                                                                                             acepromazine
48353                                                                                                         atropine sulfate
48354                                                                                                            buprenorphine
48355                                                                                                               isoflurane
48374                                                                                                     prednisolone acetate
48376                                                                                                            dexamethasone
48377                                                                                                               famotidine
48378                                                                                                     prednisolone acetate
48380                                                                                             ivermectin, pyrantel pamoate
48381                                                                                                               afoxolaner
48383                                                                                                               afoxolaner
48384                                                                                             ivermectin, pyrantel pamoate
48394                                                                           mometasone furoate, orbifloxacin, posaconazole
48406                                                                                                                probiotic
48420                                                                                           sulfamethoxazole, trimethoprim
48438                                                                               ivermectin, praziquantel, pyrantel pamoate
48439                                                                                           milbemycin oxime, praziquantel
48440                                                                                                               fluralaner
48441                                                                                             ivermectin, pyrantel pamoate
48442                                                                                                               fluralaner
48444                                                                                             ivermectin, pyrantel pamoate
48447                                                                                             ivermectin, pyrantel pamoate
48448                                                                                                               afoxolaner
48481                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48483                                                                                                      silver sulfadiazine
48494                                                                                             ivermectin, pyrantel pamoate
48495                                                                                                               fluralaner
48496                                                                                                               fluralaner
48497                                                                                                          dexmedetomidine
48498                                                                                                         milbemycin oxime
48499                                                                                                          dexmedetomidine
48500                                                                                                         milbemycin oxime
48502                                                                                                            metronidazole
48503                                                                                                          dexmedetomidine
48504                                                                                                         milbemycin oxime
48505                                                                                                               fluralaner
48508                                                                                                                firocoxib
48513                                                                                              lufenuron, milbemycin oxime
48514                                                                                                 fipronil, (s)-methoprene
48520                                                                                                   ear cleaner (otirinse)
48521                                                                          betamethasone, clotrimazole, gentamicin sulfate
48540                                                                                              lufenuron, milbemycin oxime
48541                                                                                              lufenuron, milbemycin oxime
48542                                                                                                               fluralaner
48560                                                                                  betamethasone, florfenicol, terbinafine
48598                                                                                              lufenuron, milbemycin oxime
48602                                                                                                     prednisolone acetate
48603                                                                                                             acepromazine
48609                                                                                                               afoxolaner
48610                                                                                                               ivermectin
48611                                                                                             ivermectin, pyrantel pamoate
48615                                                                                             ivermectin, pyrantel pamoate
48621                                                                                        betamethasone, gentamicin sulfate
48624                                                                                        betamethasone, gentamicin sulfate
48633                                                                                        betamethasone, gentamicin sulfate
48636                                                                                                                mupirocin
48643                                                                                              lufenuron, milbemycin oxime
48661                                                                                                               ivermectin
48662                                                                                                 fipronil, (s)-methoprene
48664                                                                                             ivermectin, pyrantel pamoate
48667                                                                                             ivermectin, pyrantel pamoate
48668                                                                                                 fipronil, (s)-methoprene
48673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48680                                                                                                               afoxolaner
48683                                                                                                 imidacloprid, permethrin
48684                                                                                             ivermectin, pyrantel pamoate
48692                                                                                                     cefpodoxime proxetil
48693                                                                                                                carprofen
48694                                                                           dexamethasone, neomycin sulfate, thiabendazole
48696                                                                                             ivermectin, pyrantel pamoate
48697                                                                                                               afoxolaner
48698                                                                                                 fipronil, (s)-methoprene
48712                                                                                             ivermectin, pyrantel pamoate
48713                                                                                                               afoxolaner
48718                                                                               ivermectin, praziquantel, pyrantel pamoate
48719                                                                             dexamethasone, neomycin sulfate, polymyxin b
48720                                                                                                         milbemycin oxime
48721                                                                                                         milbemycin oxime
48722                                                                                                 flumethrin, imidacloprid
48724                                                                                           milbemycin oxime, praziquantel
48725                                                                                                 flumethrin, imidacloprid
48729                                                                                           milbemycin oxime, praziquantel
48733                                                                                                               fluralaner
48734                                                                                           milbemycin oxime, praziquantel
48735                                                                                                               afoxolaner
48736                                                                                                 flumethrin, imidacloprid
48770                                                                             dexamethasone, neomycin sulfate, polymyxin b
48782                                                                                                 flumethrin, imidacloprid
48802                                                                             dexamethasone, neomycin sulfate, polymyxin b
48806                                                                          betamethasone, clotrimazole, gentamicin sulfate
48808                                                                          betamethasone, clotrimazole, gentamicin sulfate
48812                                                                                                 fipronil, (s)-methoprene
48819                                                                                              lufenuron, milbemycin oxime
48821                                                                                              lufenuron, milbemycin oxime
48835                                                                           dexamethasone, neomycin sulfate, thiabendazole
48842                                                                                                               cephalexin
48845                                                                                             ivermectin, pyrantel pamoate
48855                                                                                               milbemycin oxime, spinosad
48859                                                                                          atropine sulfate, diphenoxylate
48862                                                                               dextromethorphan hydrobromide, guaifenesin
48869                                                                                                               fluoxetine
48877                                                                                                                carprofen
48889                                                                                                                probiotic
48890                                                                                             ivermectin, pyrantel pamoate
48891                                                                                                               fluralaner
48892                                                                          betamethasone, clotrimazole, gentamicin sulfate
48893                                                                             dexamethasone, neomycin sulfate, polymyxin b
48894                                                                                           milbemycin oxime, praziquantel
48902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48906                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48917                                                                                                               ivermectin
48918                                                                                                 fipronil, (s)-methoprene
48921                                                                                        betamethasone, gentamicin sulfate
48935                                                                                                               ivermectin
48938                                                                                             ivermectin, pyrantel pamoate
48946                                                                                 febantel, praziquantel, pyrantel pamoate
48971                                                                                             ivermectin, pyrantel pamoate
48994                                                                                                 imidacloprid, moxidectin
48997                                                                                                 joint supplement (other)
49002                                                                                             ivermectin, pyrantel pamoate
49005                                                                                        betamethasone, gentamicin sulfate
49012                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
49015                                                                                                 fipronil, (s)-methoprene
49016                                                                                   cyphenothrin, fipronil, (s)-methoprene
49017                                                                                             ivermectin, pyrantel pamoate
49018                                                                                                               nitenpyram
49019                                                                                                               cephalexin
49025                                                                                             ivermectin, pyrantel pamoate
49026                                                                                   fipronil, pyriproxyfen, (s)-methoprene
49027                                                                                        betamethasone, gentamicin sulfate
49028                                                                                                       methylprednisolone
49030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49033                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49034                                                                                             ivermectin, pyrantel pamoate
49035                                                                                                               fluralaner
49036                                                                                                                  omega 3
49042                                                                                    chlorhexidine gluconate, ketoconazole
49044                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
49046                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49051                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49052                                                                             dexamethasone, neomycin sulfate, polymyxin b
49066                                                                                             ivermectin, pyrantel pamoate
49067                                                                                                               afoxolaner
49082                                                                                             ivermectin, pyrantel pamoate
49083                                                                                                               afoxolaner
49084                                                                                             ivermectin, pyrantel pamoate
49085                                                                                                               afoxolaner
49096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49105                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49114                                                                               ivermectin, praziquantel, pyrantel pamoate
49117                                                                                             ivermectin, pyrantel pamoate
49120                                                                                           sulfamethoxazole, trimethoprim
49123                                                                                               milbemycin oxime, spinosad
49127                                                                              mebendazole, praziquantel, pyrantel pamoate
49128                                                                                                               ivermectin
49129                                                                                                               afoxolaner
49130                                                                           beclomethasone, clotrimazole, neomycin sulfate
49163                                                                                        allergy immunotherapy - injection
49164                                                                                             ivermectin, pyrantel pamoate
49167                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49168                                                                                                   unspecified medication
49169                                                                                             ivermectin, pyrantel pamoate
49170                                                                                                 flumethrin, imidacloprid
49184                                                                                                                 fipronil
49185                                                                                             ivermectin, pyrantel pamoate
49186                                                                                             ivermectin, pyrantel pamoate
49193                                                                                                         liver supplement
49196                                                                                 febantel, praziquantel, pyrantel pamoate
49208                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49209                                                                                                          cbd or hemp oil
49216                                                                                               milbemycin oxime, spinosad
49217                                                                                               milbemycin oxime, spinosad
49218                                                                                               milbemycin oxime, spinosad
49219                                                                                               milbemycin oxime, spinosad
49220                                                                                               milbemycin oxime, spinosad
49227                                                                                                               benzocaine
49229                                                                                                               benzocaine
49231                                                                                         burow's solution, hydrocortisone
49232                                                                             dexamethasone, neomycin sulfate, polymyxin b
49248                                                                               ivermectin, praziquantel, pyrantel pamoate
49250                                                                                              lufenuron, milbemycin oxime
49251                                                                                                                sarolaner
49252                                                                                              lufenuron, milbemycin oxime
49253                                                                                                                sarolaner
49266                                                                                               milbemycin oxime, spinosad
49304                                                                          betamethasone, clotrimazole, gentamicin sulfate
49305                                                                                                         milbemycin oxime
49314                                                                                                                midazolam
49316                                                                                             ivermectin, pyrantel pamoate
49317                                                                                                            phenobarbital
49323                                                                                                 fipronil, (s)-methoprene
49324                                                                                             ivermectin, pyrantel pamoate
49343                                                                                              lufenuron, milbemycin oxime
49345                                                                                        betamethasone, gentamicin sulfate
49346                                                                                              lufenuron, milbemycin oxime
49347                                                                                                               afoxolaner
49348                                                                                              lufenuron, milbemycin oxime
49349                                                                                                               afoxolaner
49350                                                                                              lufenuron, milbemycin oxime
49351                                                                                                               afoxolaner
49352                                                                                              lufenuron, milbemycin oxime
49353                                                                                                               afoxolaner
49371                                                                                                     natural wart remover
49372                                                                                             ivermectin, pyrantel pamoate
49375                                                                                                                deracoxib
49376                                                                                              lufenuron, milbemycin oxime
49377                                                                                                 fipronil, (s)-methoprene
49378                                                                                              lufenuron, milbemycin oxime
49379                                                                                               imidacloprid, pyriproxyfen
49388                                                                                              lufenuron, milbemycin oxime
49393                                                                             florfenicol, mometasone furoate, terbinafine
49394                                                                             florfenicol, mometasone furoate, terbinafine
49395                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
49398                                                                                                    gabapentin, trazodone
49401                                                                                           milbemycin oxime, praziquantel
49403                                                                                           milbemycin oxime, praziquantel
49404                                                                                                               fluralaner
49408                                                                                             ivermectin, pyrantel pamoate
49409                                                                                                               afoxolaner
49410                                                                                                                meloxicam
49421                                                                                              lufenuron, milbemycin oxime
49424                                                                                                                trazodone
49437                                                                                                               afoxolaner
49438                                                                                             ivermectin, pyrantel pamoate
49442                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49460                                                                                    dinotefuran, permethrin, pyriproxyfen
49461                                                                                             ivermectin, pyrantel pamoate
49462                                                                                   joint supplement (glucosamine hcl/msm)
49463                                                                                             ivermectin, pyrantel pamoate
49464                                                                                    dinotefuran, permethrin, pyriproxyfen
49473                                                                                                         milbemycin oxime
49487                                                                                           milbemycin oxime, praziquantel
49488                                                                                                           (s)-methoprene
49491                                                                                             ivermectin, pyrantel pamoate
49492                                                                                                           (s)-methoprene
49509                                                                                               imidacloprid, pyriproxyfen
49510                                                                                             ivermectin, pyrantel pamoate
49518                                                                                             ivermectin, pyrantel pamoate
49520                                                                             florfenicol, mometasone furoate, terbinafine
49523                                                                                             ivermectin, pyrantel pamoate
49524                                                                                                               afoxolaner
49525                                                                                        betamethasone, gentamicin sulfate
49526                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49531                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49544                                                                                                               ivermectin
49545                                                                                                               afoxolaner
49549                                                                                             ivermectin, pyrantel pamoate
49550                                                                                                               afoxolaner
49551                                                                                                               ivermectin
49552                                                                                                               afoxolaner
49553                                                                                             ivermectin, pyrantel pamoate
49554                                                                                                               afoxolaner
49567                                                                                             ivermectin, pyrantel pamoate
49568                                                                                                               isoflurane
49569                                                                                             ivermectin, pyrantel pamoate
49572                                                                                             ivermectin, pyrantel pamoate
49588                                                                                             ivermectin, pyrantel pamoate
49589                                                                                                               ivermectin
49590                                                                                               imidacloprid, pyriproxyfen
49591                                                                                             ivermectin, pyrantel pamoate
49592                                                                                   joint supplement (glucosamine hcl/msm)
49593                                                                                              lufenuron, milbemycin oxime
49596                                                                                                               selamectin
49601                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49604                                                                                                               cephalexin
49605                                                                                   joint supplement (glucosamine hcl/msm)
49606                                                                                                            ciprofloxacin
49607                                                                                               milbemycin oxime, spinosad
49608                                                                                   joint supplement (glucosamine hcl/msm)
49640                                                                                             ivermectin, pyrantel pamoate
49645                                                                                             ivermectin, pyrantel pamoate
49649                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49654                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49659                                                                             dexamethasone, neomycin sulfate, polymyxin b
49680                                                                                                        potassium bromide
49698                                                                                               milbemycin oxime, spinosad
49699                                                                                               imidacloprid, pyriproxyfen
49705                                                                              joint supplement (glucosamine hcl), omega 3
49714                                                                                             ivermectin, pyrantel pamoate
49715                                                                             florfenicol, mometasone furoate, terbinafine
49731                                                                                             ivermectin, pyrantel pamoate
49748                                                                                                 imidacloprid, permethrin
49752                                                                                                 fipronil, (s)-methoprene
49753                                                                                               imidacloprid, pyriproxyfen
49754                                                                                                 fipronil, (s)-methoprene
49755                                                                                                         milbemycin oxime
49756                                                                                                 fipronil, (s)-methoprene
49757                                                                                                         milbemycin oxime
49758                                                                                                         milbemycin oxime
49762                                                                                                 fipronil, (s)-methoprene
49764                                                                                        enrofloxacin, silver sulfadiazine
49765                                                                                                             enrofloxacin
49766                                                                                                  chlorhexidine gluconate
49767                                                                                                 fipronil, (s)-methoprene
49768                                                                                                               ivermectin
49769                                                                                                  chlorhexidine gluconate
49773                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
49783                                                                                                                carprofen
49792                                                                                             ivermectin, pyrantel pamoate
49793                                                                                                               afoxolaner
49799                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49812                                                                             florfenicol, mometasone furoate, terbinafine
49820                                                                                             ivermectin, pyrantel pamoate
49821                                                                                                               afoxolaner
49845                                                                                                             enrofloxacin
49846                                                                                       amoxicillin, clavulanate potassium
49848                                                                                                               cephalexin
49849                                                                                    dinotefuran, permethrin, pyriproxyfen
49852                                                                                                                probiotic
49854                                                                                    dinotefuran, permethrin, pyriproxyfen
49855                                                                                                                probiotic
49856                                                                                                                meloxicam
49857                                                                                    dinotefuran, permethrin, pyriproxyfen
49861                                                                                    dinotefuran, permethrin, pyriproxyfen
49862                                                                                    dinotefuran, permethrin, pyriproxyfen
49871                                                                                                             fenbendazole
49878                                                                                                               ivermectin
49883                                                                                                                probiotic
49884                                                                                           milbemycin oxime, praziquantel
49886                                                                                             ivermectin, pyrantel pamoate
49887                                                                                    dinotefuran, permethrin, pyriproxyfen
49889                                                                                             ivermectin, pyrantel pamoate
49890                                                                                    dinotefuran, permethrin, pyriproxyfen
49898                                                                                                             fenbendazole
49899                                                                                              lufenuron, milbemycin oxime
49905                                                                                                               ivermectin
49906                                                                                                  acetic acid, boric acid
49907                                                                                           milbemycin oxime, praziquantel
49908                                                                                             ivermectin, pyrantel pamoate
49909                                                                                    dinotefuran, permethrin, pyriproxyfen
49911                                                                                             ivermectin, pyrantel pamoate
49912                                                                                    dinotefuran, permethrin, pyriproxyfen
49923                                                                                                            levetiracetam
49924                                                                                                            levetiracetam
49925                                                                                                        potassium bromide
49928                                                                                                            levetiracetam
49929                                                                                                        potassium bromide
49963                                                                                             ivermectin, pyrantel pamoate
49966                                                                             dexamethasone, neomycin sulfate, polymyxin b
49978                                                                                              lufenuron, milbemycin oxime
49980                                                                                                                carprofen
49985                                                                                              lufenuron, milbemycin oxime
49986                                                                                                 fipronil, (s)-methoprene
49987                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49990                                                                                                                probiotic
49991                                                                                              lufenuron, milbemycin oxime
49992                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49994                                                                                                                midazolam
49995                                                                                                                methadone
49996                                                                                                                 propofol
49997                                                                                       amoxicillin, clavulanate potassium
49998                                                                                                                 tramadol
49999                                                                                                                carprofen
50000                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50001                                                                                              lufenuron, milbemycin oxime
50002                                                                                                                  omega 3
50004                                                                                              lufenuron, milbemycin oxime
50005                                                                                                 fipronil, (s)-methoprene
50006                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50007                                                                                                                  omega 3
50008                                                                                              lufenuron, milbemycin oxime
50009                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50011                                                                                                 fipronil, (s)-methoprene
50012                                                                                                                  omega 3
50014                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50022                                                                                                                meloxicam
50029                                                                                              lufenuron, milbemycin oxime
50030                                                                                                 fipronil, (s)-methoprene
50033                                                                                              lufenuron, milbemycin oxime
50034                                                                                                 fipronil, (s)-methoprene
50048                                                                                              lufenuron, milbemycin oxime
50050                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
50073                                                                             florfenicol, mometasone furoate, terbinafine
50076                                                                                                               fluralaner
50077                                                                                                               ivermectin
50107                                                                                             ivermectin, pyrantel pamoate
50108                                                                                                               fluralaner
50115                                                                                                               ivermectin
50116                                                                                                               afoxolaner
50117                                                                                             ivermectin, pyrantel pamoate
50118                                                                                                               ivermectin
50125                                                                                                 fipronil, (s)-methoprene
50154                                                                                                         milbemycin oxime
50159                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
50161                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
50180                                                                                                               afoxolaner
50187                                                                                lufenuron, milbemycin oxime, praziquantel
50188                                                                                               imidacloprid, pyriproxyfen
50189                                                                                               imidacloprid, pyriproxyfen
50190                                                                                              lufenuron, milbemycin oxime
50194                                                                                              lufenuron, milbemycin oxime
50195                                                                                               imidacloprid, pyriproxyfen
50196                                                                                              lufenuron, milbemycin oxime
50198                                                                                              lufenuron, milbemycin oxime
50199                                                                                               imidacloprid, pyriproxyfen
                                                                                                       dose
2                                                                                                    75-100
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
195                                                                                                   45-88
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
244                                                                                                   45-88
248                                                                                                  1 tube
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
287                                                                                                  272 mg
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
372                                                                                                  136 mg
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
402                                                                                                  50-100
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
480                                                                                                  1 tube
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
635                                                                                                    3 mg
637                                                                                         based on weight
642                                                                                            small amount
645                                                                                                    3 mg
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
750                                                                                                  136 mg
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
756                                                                                                   44-88
757                                                                            based on weight (51-100 lbs)
760                                                                                                  1 drop
771                                                                                                   50 mg
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
863                                                                                                  200 mg
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
881                                                                                                  61-120
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
900                                                                                                  61-120
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
917                                                                                                  227 mg
918                                                                                                  250 mg
921                                                                            based on weight (51-100 lbs)
929                                                                                                  1 drop
930                                                                                                  1 drop
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
970                                                                                                  1 pump
977                                                                                             application
979                                                                                                  50-100
980                                                                                                  60-121
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
991                                                                                                  50-100
992                                                                                                  60-121
995                                                                                                  60-121
996                                                                                                  50-100
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1037                                                                                                 1 pump
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1051                                                                                                 50-100
1052                                                                                                 60-121
1060                                                                                                 60-121
1061                                                                                                 50-100
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1131                                                                                                5 drops
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1209                                                                                                 50-100
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1248                                                                                                 60-120
1274                                                                                                  23 mg
1285                                                                                            unspecified
1307                                                                                                 600 mg
1328                                                                                                 50-100
1329                                                                                                  44-88
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1348                                                                                               2 sprays
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1503                                                                                                  50-95
1504                                                                                               0.25 tsp
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1671                                                                                                  44-88
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1690                                                                                                1 spray
1692                                                                                        moderate amount
1695                                                                                                 1 drop
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1861                                                                                                  75 mg
1864                                                                                                  56-95
1866                                                                                                  56-95
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1873                                                                                                  56-95
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1909                                                                                                  56-95
1916                                                                                                  56-95
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1954                                                                                                   0-22
1955                                                                                                  23-44
1956                                                                                                  26-50
1960                                                                                                  45-88
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2035                                                                                                  26-50
2036                                                                                                  45-88
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2050                                                                           based on weight (51-100 lbs)
2051                                                                                                  45-88
2072                                                                                                 500 mg
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2086                                                                                                 50-100
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2162                                                                                                  44-88
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2333                                                                                                 272 mg
2339                                                                                                 1 drop
2342                                                                                                 1 drop
2345                                                                                                272 mcg
2347                                                                                                272 mcg
2352                                                                                                272 mcg
2356                                                                                                272 mcg
2384                                                                                                 50-100
2386                                                                                                 50-100
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2408                                                                                                  44-88
2409                                                                           based on weight (51-100 lbs)
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2450                                                                                                 150 mg
2453                                                                                                  60 mg
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2483                                                                                                 60-120
2486                                                                                            as directed
2487                                                                                            as directed
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2572                                                                                                  21-55
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2599                                                                                            unspecified
2600                                                                                            unspecified
2627                                                                                                0.57 mg
2636                                                                                                  16 mg
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2699                                                                                               2 sprays
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2808                                                                                                1400 mg
2815                                                                                               300, 600
2817                                                                                                   0-25
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2826                                                                                                  25-50
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2910                                                                                                  24-60
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2926                                                                                                 50-100
2927                                                                                                 60-121
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2951                                                                                                 1 tube
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2968                                                                                                  45-88
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3043                                                                                                  45-88
3051                                                                                                 68-136
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3092                                                                                                 100 mg
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3108                                                                                                  25-50
3110                                                                                           small amount
3119                                                                                            as directed
3140                                                                                                2 pumps
3146                                                                                                  10 mg
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3212                                                                                                 1 pump
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3254                                                                                                 50-100
3255                                                                                                 50-100
3257                                                                           based on weight (50-100 lbs)
3261                                                                                                 500 mg
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3303                                                                                                 50-100
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3359                                                                                                  44-88
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3384                                                                                                  44-88
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3407                                                                                                 50-100
3408                                                                                                  24-60
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3439                                                                                                 1 tube
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3465                                                                                                  50 mg
3487                                                                                                  45-88
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3588                                                                                                1.5-2.5
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3738                                                                                                1 mg/kg
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3803                                                                                              1200-2400
3804                                                                                                 200 mg
3815                                                                                        based on weight
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3884                                                                                                  45-88
3885                                                                                                  45-88
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3890                                                                                                  45-88
3896                                                                                                  44-88
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3902                                                                                                  44-88
3903                                                                           based on weight (51-100 lbs)
3904                                                                                                  45-88
3906                                                                           based on weight (51-100 lbs)
3907                                                                                                  45-88
3911                                                                           based on weight (51-100 lbs)
3912                                                                                                  45-88
3936                                                                                                  41-60
3938                                                                           based on weight (51-100 lbs)
3942                                                                                                  25-60
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3955                                                                                                  24-50
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3981                                                                                                  24-60
3984                                                                           based on weight (51-100 lbs)
3985                                                                                                  24-60
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4047                                                                                                  80 mg
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4122                                                                                                 60-120
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4130                                                                                                 60-120
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4204                                                                                                   1 ml
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4229                                                                                                15.7 ml
4234                                                                                                 100 mg
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4265                                                                                                 1 drop
4266                                                                                            as directed
4274                                                                                            unspecified
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4303                                                                                                  45-88
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4334                                                                                                   1 ml
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4341                                                                                                 100 mg
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4351                                                                                                  41-60
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4359                                                                                                 60-120
4360                                                                                                1 spray
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4488                                                                                                   1 ml
4491                                                                                                   1 ml
4497                                                                           based on weight (51-100 lbs)
4498                                                                                                 60-121
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4611                                                                                               27, 1620
4617                                                                                             0.57 mg/ml
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4688                                                                                                 125 mg
4693                                                                                                 50-100
4694                                                                                                  24-60
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4700                                                                                                   5 mg
4703                                                                                                  23 mg
4705                                                                                                  23 mg
4711                                                                                                 1 drop
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4798                                                                                                  20 mg
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4850                                                                                                 1 drop
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4907                                                                                                 4.5-10
4908                                                                                                272 mcg
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4996                                                                                            unspecified
4998                                                                                            unspecified
5040                                                                                                 136 mg
5043                                                                                                  spray
5046                                                                                                  spray
5066                                                                                                 60-120
5067                                                                                                 60-120
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5125                                                                                                   1 ml
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5150                                                                                                  40-60
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5165                                                                                                 100 mg
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5189                                                                                                 60-120
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5201                                                                                                  75 mg
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5380                                                                                                  45-88
5382                                                                                                  45-88
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5469                                                                                                   2 ml
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5556                                                                                                  44-88
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5574                                                                                                 50-100
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5601                                                                                                  45-88
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5641                                                                                                 1.7 ml
5649                                                                                          5 billion cfu
5668                                                                                                272 mcg
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5737                                                                                                 750 mg
5747                                                                                        based on weight
5748                                                                                                  60-10
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5774                                                                                                 750 mg
5777                                                                                            unspecified
5793                                                                                                  26-50
5794                                                                                                  41-60
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5872                                                                                                  0-125
5873                                                                                                   0-88
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5890                                                                                                 86-130
5896                                                                                                 88-123
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5925                                                                                                 60-120
5928                                                                                                 60-120
5930                                                                           based on weight (51-100 lbs)
5931                                                                                                  44-88
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5985                                                                                                 88-123
5987                                                                                                100-150
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6012                                                                                                 50-121
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6060                                                                                                 60-121
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6073                                                                                                 50-100
6074                                                                                                1 spray
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6089                                                                                                  25-50
6090                                                                                        0.25 inch strip
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6152                                                                                                  23 mg
6160                                                                                                  45-88
6161                                                                                                23, 460
6164                                                                                           small amount
6189                                                                                                  25-50
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6215                                                                                                 1 pump
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6296                                                                                              0.125 tsp
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6354                                                                                                  45-88
6358                                                                                            unspecified
6362                                                                                                  45-88
6382                                                                                                 60-120
6388                                                                                                 1 drop
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6399                                                                                                8 drops
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6639                                                                                                 51-100
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6674                                                                                                   0-25
6675                                                                                                  26-50
6676                                                                                                 50-100
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6739                                                                                                 125 mg
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6789                                                                                                272 mcg
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6839                                                                                                  75 mg
6854                                                                                                  45-88
6864                                                                                                   1 ml
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6898                                                                                                  45-88
6906                                                                                                272 mcg
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6938                                                                                                 60-120
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
6992                                                                                                  40-85
6995                                                                                                  40-85
6998                                                                                                  40-85
6999                                                                                                 1 tube
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7013                                                                                                  20 mg
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7021                                                                            based on weight (44-88 lbs)
7023                                                                                                 1.6 ml
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7047                                                                                                 272 ug
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7064                                                                                                  26-50
7065                                                                                                 50-100
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7219                                                                                                 60-120
7240                                                                                                2 drops
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7291                                                                            based on weight (44-88 lbs)
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7343                                                                                                  45-88
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7426                                                                                                150-480
7432                                                                                                 50-100
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7568                                                                                                500-125
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7682                                                                                                 60-120
7683                                                                                                 50-100
7684                                                                                                  44-88
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7744                                                                                                  45-88
7745                                                                                                 50-100
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7787                                                                                                 1 tube
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7837                                                                                                 100 mg
7839                                                                                            application
7840                                                                                                  25-50
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7864                                                                                                 50-100
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7941                                                                                                   1 ml
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8063                                                                                                  26-60
8066                                                                                                  21-55
8067                                                                                                  21-55
8069                                                                                                  21-55
8070                                                                                                  26-50
8071                                                                                                  26-50
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8135                                                                                                  15-20
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8165                                                                                               750-1000
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8220                                                                                                  26-50
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8238                                                                                           small amount
8241                                                                                                  23 mg
8244                                                                                                  44-88
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8301                                                                                                 50-100
8302                                                                                                 50-100
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8306                                                                                                 50-100
8307                                                                                                  44-88
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8326                                                                                                  56-95
8332                                                                                                  56-95
8335                                                                                                  56-95
8337                                                                                            unspecified
8338                                                                                            unspecified
8340                                                                                                  56-95
8341                                                                                                 1 drop
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8405                                                                                                 1 tube
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8454                                                                           based on weight (50-100 lbs)
8461                                                                                                 50-100
8465                                                                                                  26-50
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8489                                                                                                  44-88
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8541                                                                                                  spray
8546                                                                                                8 drops
8547                                                                                                 500 mg
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8575                                                                                                  25-50
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8685                                                                                                150-100
8694                                                                            based on weight (45-88 lbs)
8695                                                                                                25-37.5
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8721                                                                                                 200 mg
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8776                                                                                                  56-95
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8787                                                                                                  44-88
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8796                                                                                                  44-88
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8808                                                                                                  44-88
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8827                                                                                                 60-120
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8855                                                                                                272 mcg
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9049                                                                                                2 drops
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9164                                                                                                 88-132
9170                                                                           based on weight (51-100 lbs)
9171                                                                                                   0-25
9172                                                                                                 88-132
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9229                                                                                                  75 mg
9230                                                                                           small amount
9233                                                                                                 250 mg
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9268                                                                                                  44-88
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9290                                                                                                 60-120
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9299                                                                                                 60-120
9312                                                                                                272 mcg
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9348                                                                                                 136 mg
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9390                                                                                                272 mcg
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9485                                                                                                 500 mg
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9575                                                                                                 60-120
9578                                                                                                 60-120
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9632                                                                                                 60-120
9635                                                                                               27, 1620
9638                                                                                                 60-120
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9657                                                                                                  21-55
9712                                                                                                 51-100
9717                                                                                                 51-100
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9729                                                                                                 51-100
9730                                                                                                 51-100
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9771                                                                                                  45-88
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9815                                                                                                  28 mg
9821                                                                                         1 pack/package
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9860                                                                                                  75 mg
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9918                                                                                                  41-85
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10056                                                                                               272 mcg
10057                                                                                                227 mg
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10123                                                                                                500 mg
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10149                                                                                              10 drops
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10160                                                                                                1.5 ml
10164                                                                                                50-100
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10236                                                                                                60-121
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10271                                                                                                 23 mg
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10292                                                                                                 23 mg
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10332                                                                                                60-120
10333                                                                                                88-123
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10343                                                                                                480 mg
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10432                                                                                                1 tube
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10500                                                                                             113.5-227
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10594                                                                                                 21-55
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10650                                                                                                100 mg
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10658                                                                                                 50 mg
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10766                                                                                               272 mcg
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10850                                                                                                88-123
10851                                                                                                 56-95
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10905                                                                                           application
10925                                                                                                400 mg
10926                                                                                                  5 mg
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10932                                                                                                60-120
10933                                                                                                50-100
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10950                                                                                                89-132
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10966                                                                                                50-100
10967                                                                                                 44-88
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11006                                                                                                50-100
11007                                                                                                50-100
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11052                                                                                                1 tube
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11085                                                                                           unspecified
11088                                                                                           unspecified
11091                                                                                                 21-55
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11112                                                                                                200 mg
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11166                                                                                                 24-60
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11224                                                                                           unspecified
11227                                                                                                 40-88
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11230                                                                                                 44-88
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11341                                                                                                50-100
11342                                                                                                 56-95
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11356                                                                                           unspecified
11360                                                                                           unspecified
11363                                                                                                50-100
11366                                                                                                50-100
11368                                                                          based on weight (50-100 lbs)
11377                                                                                                 40-85
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11425                                                                                                 26-50
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11461                                                                                                 55-95
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11474                                                                                                 24-60
11477                                                                          based on weight (51-100 lbs)
11482                                                                                            1.14 mg/lb
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11511                                                                                                125 mg
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11590                                                                                                 24-60
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11635                                                                                                 5-100
11636                                                                                                100 mg
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11663                                                                                                50-100
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11669                                                                                                0.5 mg
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11684                                                                                                 44-88
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11698                                                                                                 45-88
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11725                                                                                               100-150
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11790                                                                                                 15 gm
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11815                                                                                                50-100
11816                                                                                                50-100
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11826                                                                                               100-150
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11856                                                                                               8 drops
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11926                                                                                               272 mcg
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12023                                                                                               5 mg/kg
12025                                                                                                 44-88
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12190                                                                                                1 pump
12194                                                                                                272 ug
12213                                                                                               272 mcg
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12265                                                                                                50-100
12266                                                                                                 45-88
12267                                                                                                50-100
12268                                                                                                 45-88
12271                                                                           based on weight (45-88 lbs)
12272                                                                                                50-100
12273                                                                                          small amount
12275                                                                                                 44-88
12276                                                                                                50-100
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12373                                                                                                60-120
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12386                                                                                                1.4 ml
12394                                                                                           unspecified
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12401                                                                                                 45-88
12402                                                                          based on weight (51-100 lbs)
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12496                                                                                                 24-60
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12515                                                                                                 50-80
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12567                                                                                               8 drops
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12694                                                                                                50-100
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12784                                                                                        1 pack/package
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12833                                                                                                 27 mg
12836                                                                          based on weight (60-120 lbs)
12837                                                                                                60-120
12841                                                                                                60-120
12849                                                                                                 drops
12850                                                                                                 drops
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12874                                                                                                500 mg
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12893                                                                                               100-200
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12944                                                                                                 44-88
12945                                                                          based on weight (51-100 lbs)
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12950                                                                                                 44-88
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12959                                                                                               8 drops
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12979                                                                                               1 spray
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12992                                                                                                 20-55
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12995                                                                                                 44-88
12996                                                                                                 16 mg
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13034                                                                                                 20-40
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13098                                                                                                50-100
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13167                                                                                                60-121
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13173                                                                                                1 drop
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13238                                                                                                500 mg
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13262                                                                                               272 mcg
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13318                                                                                               8 drops
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13333                                                                                                60-120
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13336                                                                                                60-120
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13487                                                                                                 20 mg
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13619                                                                                                100 mg
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13666                                                                                           application
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13693                                                                          based on weight (60-120 lbs)
13715                                                                                                750 mg
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13766                                                                                                 40-60
13768                                                                                           application
13769                                                                                                 spray
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13781                                                                                                 25-50
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13786                                                                                                1 tube
13796                                                                                            1 wipe/pad
13801                                                                                                50-100
13803                                                                                                375 mg
13841                                                                                                 44-88
13881                                                                                                  7 ml
13884                                                                                              2 sprays
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13897                                                                                                 56-95
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13908                                                                                             100 mg/ml
13910                                                                        based on weight (50.1-100 lbs)
13911                                                                                                 56-95
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14071                                                                                                 44-88
14072                                                                                               1500 mg
14080                                                                                                50-100
14081                                                                                                 44-88
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14153                                                                                                60-120
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14243                                                                                                 45-88
14245                                                                           based on weight (22-44 lbs)
14249                                                                                                 45-88
14251                                                                                                 45-88
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14286                                                                                                50-100
14291                                                                                           unspecified
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14298                                                                                                50-100
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14342                                                                                                 22-30
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14372                                                                                                50-100
14373                                                                                       based on weight
14375                                                                                                50-100
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14379                                                                                                50-100
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14409                                                                                                 44-88
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14527                                                                                                 45-88
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14562                                                                                                85-132
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14577                                                                                                 45-88
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14623                                                                                                 45-88
14631                                                                                                 44-88
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14746                                                                                                 44-88
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14861                                                                                                50-100
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14874                                                                                                50-100
14875                                                                                                50-100
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14907                                                                                                 30 mg
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14928                                                                                                60-120
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14969                                                                                             50 mcg/kg
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14999                                                                                             50 mcg/kg
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15092                                                                                                300 mg
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15137                                                                                              2 sprays
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15179                                                                           based on weight (25-75 lbs)
15184                                                                                                750 mg
15196                                                                                           application
15197                                                                                          small amount
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15252                                                                                               4 drops
15253                                                                                                227 mg
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15337                                                                                                60-120
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15455                                                                                                50-100
15456                                                                                                50-100
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15527                                                                                                50-100
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15545                                                                                                 21-55
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15558                                                                                                 50-75
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15588                                                                                                 45-88
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15616                                                                                               272 mcg
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15776                                                                                                500 mg
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15816                                                                                                 44-88
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16035                                                                                                 44-88
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16291                                                                                                51-100
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16339                                                                                                 56-95
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16485                                                                                                 45-88
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16538                                                                                                50-100
16543                                                                                                 44-88
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16551                                                                                                 44-88
16553                                                                        based on weight (50.1-100 lbs)
16554                                                                                                 44-88
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16590                                                                                               100-150
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16637                                                                                                 44-88
16638                                                                                                50-100
16639                                                                          based on weight (51-100 lbs)
16640                                                                                                60-121
16646                                                                                              10 drops
16657                                                                                             6-8 drops
16667                                                                                                 25-50
16678                                                                                               27-1620
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16689                                                                                             1.5 mg/ml
16690                                                                                               100-150
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16789                                                                                                1.1 ml
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16849                                                                                                1 pump
16860                                                                                                 80 mg
16864                                                                                                51-100
16866                                                                                                50-100
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16915                                                                                                100 mg
16916                                                                                                500 mg
16918                                                                                           unspecified
16920                                                                                                 44-88
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17033                                                                                               272 mcg
17035                                                                                               272 mcg
17036                                                                                                136 mg
17041                                                                                                50-100
17042                                                                        based on weight (50.1-100 lbs)
17049                                                                                               272 mcg
17051                                                                                               1000 mg
17053                                                                                 1 tablet/pill/capsule
17057                                                                                                60-121
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17131                                                                                                 20-25
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17151                                                                                                 40-60
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17196                                                                                                 26-50
17197                                                                                                 26-50
17202                                                                                                 45-88
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17294                                                                                                50-100
17295                                                                                                 45-88
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17381                                                                                                 30 ml
17386                                                                                               272 mcg
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17440                                                                                                500 mg
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17484                                                                                                50-100
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17494                                                                                                 45-88
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17497                                                                                                50-100
17498                                                                                                 45-88
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17585                                                                                                 1-1.5
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17633                                                                                               1.71 ml
17659                                                                          based on weight (50-100 lbs)
17670                                                                                                60-120
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17723                                                                                                60-120
17742                                                                                           application
17743                                                                                                1 drop
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17955                                                                                                 23 mg
17957                                                                                               4 drops
18001                                                                                                 26-50
18003                                                                                                50-100
18009                                                                                                 44-88
18010                                                                                                50-100
18011                                                                                                 45-88
18014                                                                                                 45-88
18015                                                                                                50-100
18021                                                                                                50-100
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18073                                                                                                 44-88
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18076                                                                                                 44-88
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18117                                                                                                50-100
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18125                                                                                                 21-55
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18159                                                                                               6 drops
18164                                                                                               6 drops
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18249                                                                                                150 mg
18251                                                                                                powder
18252                                                                                                150 mg
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18284                                                                                                50-100
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18375                                                                                                50-100
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18416                                                                                                 44-88
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18464                                                                                                500 mg
18466                                                                                                1 drop
18467                                                                                               272 mcg
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18473                                                                                                60-120
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18512                                                                                               272 mcg
18514                                                                           based on weight (21-55 lbs)
18519                                                                                                 24-60
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18539                                                                                                 45-88
18542                                                                                                 45-88
18543                                                                                               6 drops
18562                                                                                                  1 ml
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18614                                                                                                 40-60
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18704                                                                                                 24-60
18705                                                                                                 26-50
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18753                                                                                                 75 mg
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18821                                                                                               5 drops
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18846                                                                                                 44-88
18847                                                                                       based on weight
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18855                                                                                                50-100
18856                                                                                                 44-88
18882                                                                                           application
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18931                                                                                                 45-88
18932                                                                                                55-100
18933                                                                                           unspecified
18934                                                                                                55-100
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19043                                                                                                 45-88
19051                                                                                                 45-88
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19077                                                                                                 45-88
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19102                                                                                               55.1-88
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19241                                                                                                300 mg
19242                                                                                                 75 mg
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19276                                                                                                1 tube
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19315                                                                                                 44-88
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19331                                                                                                500 mg
19335                                                                                                200 mg
19336                                                                                                100 mg
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19374                                                                                                 44-88
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19424                                                                                                 44-88
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19461                                                                                                 44-88
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19500                                                                                               0.57 mg
19537                                                                                       based on weight
19567                                                                                                150 mg
19568                                                                                                1 pump
19596                                                                          based on weight (51-100 lbs)
19597                                                                                                 56-95
19603                                                                           based on weight (40-60 lbs)
19604                                                                                                50-100
19617                                                                                       2.68 ml of 9.8%
19618                                                                                                 50-75
19641                                                                                           unspecified
19651                                                                                                1 drop
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19669                                                                                                50-100
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19708                                                                                               272 mcg
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19800                                                                                                50-100
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19853                                                                                                50-100
19854                                                                                                89-132
19856                                                                        based on weight (50.1-100 lbs)
19857                                                                                                89-132
19860                                                                                               1 mg/lb
19866                                                                                              2 sprays
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19936                                                                                                 40-60
19943                                                                                                60-120
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19969                                                                                               2 drops
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20001                                                                                                200 mg
20002                                                                                                500 mg
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20067                                                                                               12.5-25
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20179                                                                                                 50-75
20182                                                                                          small amount
20193                                                                                                500 mg
20195                                                                                                60-120
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20225                                                                                                200 mg
20226                                                                                                60-120
20231                                                                                                1 drop
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20246                                                                                                50-100
20247                                                                                                 45-80
20251                                                                                          pack/package
20272                                                                                                1 tbsp
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20299                                                                                                1 tube
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20307                                                                                                 10 mg
20312                                                                                                2.3 mg
20315                                                                                           unspecified
20324                                                                                                 2-2.5
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20378                                                                                                 26-50
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20406                                                                                                  3 ml
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20437                                                                                                50-100
20438                                                                                                60-121
20441                                                                                           application
20442                                                                                                600 mg
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20519                                                                                               240-480
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20557                                                                                                60-120
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20637                                                                                               272 mcg
20638                                                                                       2.68 ml of 9.8%
20640                                                                                               272 mcg
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20700                                                                                                50-100
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20719                                                                                                 56-95
20728                                                                                           unspecified
20738                                                                                              tapering
20745                                                                                                1 pump
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20750                                                                                               6 drops
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20799                                                                                                 45-85
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20820                                                                                               1200 mg
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20857                                                                                                136 mg
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20859                                                                                                136 mg
20860                                                                                                100 mg
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
20971                                                                                                 56-95
20972                                                                                                 15 ml
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21017                                                                                               1 spray
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21069                                                                                               1000 mg
21070                                                                                               1000 mg
21071                                                                                                 23 mg
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21087                                                                                                 44-88
21088                                                                                           unspecified
21091                                                                                                60-120
21098                                                                                                 40-80
21100                                                                                                 40-80
21102                                                                           based on weight (40-80 lbs)
21103                                                                                                 44-88
21108                                                                                                 26-50
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21116                                                                                                250 mg
21117                                                                                                200 mg
21118                                                                                                100 mg
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21124                                                                                               3 drops
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21132                                                                                                  3 ml
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21170                                                                                               272 mcg
21172                                                                                                 23 mg
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21192                                                                                                1 pump
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21328                                                                                                 50 mg
21331                                                                                           unspecified
21336                                                                                                960 mg
21337                                                                                               272 mcg
21338                                                                             based on weight (55+ lbs)
21348                                                                                                0.5 mg
21359                                                                                               23, 460
21361                                                                                               23, 460
21364                                                                                                750 mg
21367                                                                                                  2 ml
21369                                                                          based on weight (51-100 lbs)
21373                                                                                               100-200
21374                                                                                                500 mg
21376                                                                                                 40-60
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21394                                                                                                272 mg
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21437                                                                                                50-100
21438                                                                                                 24-60
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21447                                                                                                 24-60
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21460                                                                                                 23 mg
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21491                                                                                                1 drop
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21498                                                                                                 90 mg
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21522                                                                                                1 tube
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21534                                                                                                1.5 ml
21535                                                                                                 16 mg
21545                                                                                 1 tablet/pill/capsule
21546                                                                                                1 tube
21547                                                                                                600 mg
21548                                                                                                500 mg
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21554                                                                                               2 mg/ml
21555                                                                                           unspecified
21558                                                                                               23, 460
21561                                                                                                50-100
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21580                                                                                                88-123
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21587                                                                                               8 drops
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21603                                                                                               1000 mg
21604                                                                                                375 mg
21605                                                                             based on weight (55+ lbs)
21606                                                                                                 50 mg
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21626                                                                                                51-100
21627                                                                                                 44-88
21632                                                                                           unspecified
21637                                                                                                1 drop
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21726                                                                                                 44-88
21727                                                                                           unspecified
21738                                                                                                50-100
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21759                                                                                                 44-88
21760                                                                                                50-100
21767                                                                                           unspecified
21782                                                                                               272 mcg
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21787                                                                                                60-121
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21844                                                                                                272 mg
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21866                                                                                                  4 ml
21867                                                                                                136 mg
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21899                                                                                              50 mg/kg
21911                                                                                                 50 mg
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21915                                                                                                1 tube
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21927                                                                                                 20 mg
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22013                                                                                                 45-88
22016                                                                                                 45-88
22017                                                                                               272 mcg
22020                                                                                           as directed
22022                                                                                                  1 gm
22023                                                                          based on weight (51-100 lbs)
22024                                                                                                60-120
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22027                                                                                                60-120
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22052                                                                                               27-1620
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22063                                                                                                 44-88
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22112                                                                                                 68 mg
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22137                                                                                                60-121
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22159                                                                                                50-100
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22162                                                                                                 75 mg
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22191                                                                                                1 tube
22196                                                                                          small amount
22197                                                                                                1 tube
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22221                                                                                                89-132
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22260                                                                                                60-120
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22269                                                                                               2000 mg
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22403                                                                                                 50 mg
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22418                                                                                                60-120
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22442                                                                                                88-123
22459                                                                                           unspecified
22463                                                                                           unspecified
22482                                                                                                110 mg
22520                                                                                                  1 gm
22521                                                                                                50-100
22524                                                                                                50-100
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22556                                                                                                1 pump
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22599                                                                                                 25 mg
22600                                                                                                200 mg
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22670                                                                                                1 tube
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22674                                                                                                50-100
22679                                                                                                 45-88
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22709                                                                                                 15 gm
22710                                                                                                 60 ml
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22715                                                                                                 15 gm
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22721                                                                                                0.2 ml
22733                                                                                                collar
22734                                                                                                 23 mg
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22910                                                                                                136 mg
22911                                                                                                 20 mg
22912                                                                                                 20 mg
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22921                                                                                                500 mg
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22970                                                                                                 44-88
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23005                                                                                                1 drop
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23008                                                                                                1 drop
23009                                                                                                 12 ml
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23065                                                                                                 23 mg
23066                                                                          based on weight (51-100 lbs)
23074                                                                                                 60-80
23075                                                                                                 40-80
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23141                                                                                               45-88.9
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23145                                                                                                100 mg
23146                                                                                                 16 mg
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23184                                                                                                 10 mg
23186                                                                                                  8 mg
23187                                                                                                 60 mg
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23248                                                                                               1000 mg
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23257                                                                                               1000 ml
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23281                                                                                                500 mg
23282                                                                                                 16 mg
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23285                                                                                                100 mg
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23305                                                                                                1 pump
23306                                                                                                1 pump
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23351                                                                                                 68 mg
23352                                                                                                 25 mg
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23354                                                                                                 15 mg
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23357                                                                                                 68 mg
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23361                                                                                                136 mg
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23385                                                                                                 23 mg
23386                                                                                                500 mg
23388                                                                          based on weight (51-100 lbs)
23389                                                                                                50-100
23401                                                                                                50-100
23402                                                                                                 44-88
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23412                                                                                                 45-88
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23422                                                                                                1 tube
23423                                                                                                1 tube
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23452                                                                                              2 sprays
23455                                                                                                 75 mg
23456                                                                                                 spray
23457                                                                                                750 mg
23472                                                                           based on weight (21-55 lbs)
23476                                                                                                 56-95
23477                                                                                                50-100
23481                                                                                                 21-55
23482                                                                           based on weight (55-90 lbs)
23483                                                                                                50-100
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23503                                                                                                 56-95
23504                                                                                                50-100
23507                                                                          based on weight (51-100 lbs)
23508                                                                                                 56-95
23509                                                                                                 56-95
23510                                                                                                50-100
23514                                                                                                50-100
23515                                                                                                 56-95
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23548                                                                                                 23 mg
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23555                                                                                                0.3 mg
23556                                                                                                50-100
23557                                                                          based on weight (51-100 lbs)
23558                                                                                                0.7 mg
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23589                                                                                                1 tube
23590                                                                                           unspecified
23593                                                                                             0.6 mg/ml
23594                                                                                                300 mg
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23733                                                                                               5 drops
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23758                                                                                                 44-88
23792                                                                                               272 mcg
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23820                                                                                                 56-95
23824                                                                                                 41-85
23825                                                                                                 10 mg
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23972                                                                                                 44-88
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
23989                                                                                               272 mcg
23990                                                                                                136 mg
24008                                                                                               272 mcg
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24044                                                                                               272 mcg
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24067                                                                                              800-1000
24068                                                                                           unspecified
24069                                                                                             50 mcg/kg
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24078                                                                                                50-100
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24113                                                                                                150 mg
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24146                                                                                                4.7 ml
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24173                                                                                                50-100
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24201                                                                                               8 drops
24202                                                                                               8 drops
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24218                                                                                               272 mcg
24219                                                                                                136 mg
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24251                                                                                                1 drop
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24260                                                                                                100 mg
24261                                                                                 1 tablet/pill/capsule
24262                                                                                                1.4 ml
24263                                                                                                4.8 ml
24264                                                                                                500 mg
24265                                                                                 1 tablet/pill/capsule
24266                                                                                                 60 mg
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24325                                                                                                100 mg
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24379                                                                                                68 mcg
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24396                                                                                                500 mg
24397                                                                                                  1 gm
24399                                                                                                136 mg
24400                                                                          based on weight (50-100 lbs)
24401                                                                                                100 mg
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24404                                                                                                 25 mg
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24408                                                                                                 15 ml
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24418                                                                                                 10 mg
24419                                                                                                0.5 mg
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24427                                                                                                0.6 mg
24428                                                                                                 10 mg
24429                                                                                             0.125 tsp
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24434                                                                                                1 drop
24435                                                                          based on weight (50-100 lbs)
24436                                                                                                1 drop
24437                                                                          based on weight (60-120 lbs)
24438                                                                                                0.6 mg
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24461                                                                                             0.5 mg/kg
24462                                                                                               2 mg/kg
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24479                                                                                               5 drops
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24482                                                                                                136 mg
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24499                                                                                                 75 mg
24503                                                                                               2 drops
24504                                                                                                 40-50
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24529                                                                                                 45-88
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24562                                                                                                 41-85
24563                                                                                                 44-88
24565                                                                                                60-120
24567                                                                                                61-120
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24621                                                                                                 56-95
24622                                                                                                 56-95
24647                                                                                           unspecified
24648                                                                                           application
24651                                                                                                 50 mg
24652                                                                                                1 tube
24653                                                                                       moderate amount
24654                                                                                                1 tube
24660                                                                                       based on weight
24666                                                                                                 50 mg
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24776                                                                                               4 drops
24782                                                                                               4 drops
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24814                                                                                               272 mcg
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24826                                                                                               1000 mg
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24835                                                                                               272 mcg
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24880                                                                                               6 drops
24897                                                                                                200 mg
24898                                                                                                powder
24899                                                                                                 60 mg
24902                                                                          based on weight (51-100 lbs)
24903                                                                                                 60 mg
24904                                                                                                 16 mg
24907                                                                                                 16 mg
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24967                                                                                              2 sprays
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25003                                                                                                1 drop
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25040                                                                                                 23 mg
25041                                                                                               2.68 ml
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                                                               272 mcg
25079                                                                          based on weight (51-100 lbs)
25080                                                                                                 44-88
25084                                                                                                325 mg
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25131                                                                                                 44-88
25132                                                                                                50-100
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25273                                                                                                 21-55
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25301                                                                                                50-100
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25358                                                                                               8 drops
25359                                                                                                375 mg
25366                                                                                               8 drops
25367                                                                                           unspecified
25369                                                                                                  1 ml
25370                                                                                               6 drops
25372                                                                                                500 mg
25374                                                                                                500 mg
25377                                                                                                100 mg
25378                                                                                             0.125 tsp
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25495                                                                                                50-100
25498                                                                                                50-100
25499                                                                                                 45-88
25501                                                                          based on weight (51-100 lbs)
25502                                                                                                 45-88
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25517                                                                                             2.5 mg/kg
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25558                                                                                                60-120
25564                                                                                               272 mcg
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25579                                                                                                272 gm
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25590                                                                                               1000 mg
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25613                                                                                                60-120
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25636                                                                                                 44-88
25659                                                                                                 55-88
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25672                                                                                                0.5 ml
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25711                                                                                                1 tube
25725                                                                                              5 x 10^7
25726                                                                                               8 drops
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25816                                                                                                 20 mg
25817                                                                                                  2 ml
25818                                                                                                 46-60
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25825                                                                                                500 mg
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25829                                                                                               1400 mg
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25839                                                                                                88-110
25846                                                                          based on weight (88-123 lbs)
25870                                                                                                 56-95
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25942                                                                                               272 mcg
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                               5 drops
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26094                                                                                               1 spray
26095                                                                                               1620 mg
26110                                                                                               227 mcg
26113                                                                                                89-132
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26120                                                                                                2.5-20
26121                                                                                                  0-25
26122                                                                                                 21-55
26123                                                                                                 26-50
26124                                                                                                 41-85
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26149                                                                                                50-100
26150                                                                                                 56-95
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26153                                                                                                1 drop
26154                                                                                                 13 ml
26155                                                                                                625 mg
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26160                                                                                              20 mg/kg
26161                                                                                               1 mg/kg
26165                                                                                       based on weight
26166                                                                                       based on weight
26178                                                                                                2.5-20
26179                                                                                                  0-25
26180                                                                                                 21-55
26181                                                                                                 26-50
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26189                                                                                                1 tube
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26200                                                                                                50-100
26201                                                                                                 56-95
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26205                                                                                                 13 ml
26206                                                                                                625 mg
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26213                                                                                             4.4 mg/kg
26214                                                                                       based on weight
26215                                                                                       based on weight
26222                                                                                                 50 mg
26227                                                                                           unspecified
26229                                                                                           unspecified
26237                                                                                                100 mg
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26259                                                                                               1000 mg
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26286                                                                                                60-120
26287                                                                          based on weight (50-100 lbs)
26294                                                                                                50-100
26295                                                                          based on weight (60-121 lbs)
26299                                                                                                60-120
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26373                                                                                               2 drops
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26423                                                                                                240 mg
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26469                                                                                                60-121
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26474                                                                                                 30 gm
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26477                                                                                                0.3 mg
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26503                                                                                                500 mg
26505                                                                                           as directed
26508                                                                                                1 pump
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26540                                                                                                1 pump
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26547                                                                                                60-120
26550                                                                                                60-121
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26576                                                                                                 50 mg
26583                                                                                           unspecified
26584                                                                                                50-100
26585                                                                                                 44-88
26587                                                                                                 44-88
26589                                                                                                 44-88
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26616                                                                                                60-120
26628                                                                                               272 mcg
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26674                                                                                               8 drops
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26727                                                                                                136 mg
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26741                                                                                                136 mg
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26743                                                                                                 75 mg
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26751                                                                                                136 mg
26760                                                                          based on weight (51-100 lbs)
26761                                                                                                 45-88
26764                                                                                                100 ml
26765                                                                                                100 ml
26766                                                                                                100 ml
26769                                                                          based on weight (50-100 lbs)
26772                                                                                                100 ml
26773                                                                                                100 ml
26774                                                                                                100 ml
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26817                                                                                                 15 mg
26818                                                                                                100 mg
26819                                                                                                 15 gm
26821                                                                                                 50 mg
26822                                                                                                150 mg
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26832                                                                                              20 mg/kg
26833                                                                                              17 ml/lb
26836                                                                                               5 drops
26837                                                                                          pack/package
26838                                                                                                200 mg
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26857                                                                                                200 mg
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26966                                                                                              10 mg/kg
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26987                                                                                                  3 ml
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26991                                                                                               1000 mg
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
26993                                                                                               1000 mg
27012                                                                                              0.25 tsp
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27080                                                                                                0.3 ml
27081                                                                                               8 drops
27082                                                                                           as directed
27083                                                                                                50-100
27084                                                                                                100 mg
27085                                                                                 1 tablet/pill/capsule
27086                                                                                                50-100
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27137                                                                                                1 tube
27140                                                                                          small amount
27144                                                                                                60-120
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27225                                                                                               1500 mg
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27249                                                                                               6 ug/kg
27251                                                                                              50 mg/kg
27256                                                                                               1 spray
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27310                                                                                                 44-88
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27345                                                                                               272 mcg
27346                                                                                                136 mg
27347                                                                                               1620 mg
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27353                                                                                                500 mg
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27362                                                                                                 16 mg
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27370                                                                                                1 tube
27371                                                                                                500 mg
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27435                                                                                                 50 mg
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27456                                                                                                60-120
27458                                                                                                60-120
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27479                                                                                               272 mcg
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27498                                                                                                 56-95
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27524                                                                                                 24-60
27529                                                                          based on weight (51-100 lbs)
27530                                                                                                60-121
27589                                                                                              27, 1620
27590                                                                                                60-120
27594                                                                          based on weight (60-120 lbs)
27595                                                                                                500 mg
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27658                                                                                                 20 mg
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27703                                                                                                 45-88
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27723                                                                                                240 mg
27724                                                                                                 20 mg
27728                                                                                                240 mg
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27875                                                                                                4.5-10
27878                                                                                           unspecified
27880                                                                                           unspecified
27883                                                                                                 50 mg
27884                                                                                               2.68 ml
27885                                                                                                 23 mg
27886                                                                          based on weight (51-100 lbs)
27891                                                                                            0.23 mg/lb
27892                                                                                                136 mg
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27900                                                                                                1.4 ml
27901                                                                                                1.5 ml
27903                                                                                                60-120
27904                                                                                               1.59 ml
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27931                                                                                                100 mg
27934                                                                                            0.02 mg/kg
27935                                                                                               4 mg/kg
27936                                                                                             0.5 mg/kg
27937                                                                                               3 mg/kg
27938                                                                                                 50 mg
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27960                                                                                                 75 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28004                                                                                                272 ug
28006                                                                                                1 pump
28008                                                                                        1 pack/package
28009                                                                                                1 pump
28010                                                                                        1 pack/package
28011                                                                                               8 drops
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28017                                                                                                60-121
28018                                                                                       based on weight
28020                                                                                               5 drops
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28026                                                                                                500 mg
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28071                                                                                                1 tube
28073                                                                                                 31-60
28075                                                                                                50-100
28076                                                                                                 44-88
28081                                                                                                 31-60
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28089                                                                                                100 mg
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28107                                                                                               1000 mg
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28129                                                                                               1000 mg
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28131                                                                                               1000 mg
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28141                                                                                               4 drops
28143                                                                                                 45-88
28144                                                                          based on weight (51-100 lbs)
28150                                                                                                 10 mg
28151                                                                                                 20 mg
28152                                                                                               1000 mg
28153                                                                                               1 mg/lb
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28156                                                                                               1000 mg
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28244                                                                                                  2 mg
28245                                                                                               11.5 mg
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                                                               1000 mg
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28320                                                                                                50-100
28325                                                                                                75-100
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28393                                                                                                 50 mg
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28403                                                                                                50-100
28404                                                                           based on weight (40-60 lbs)
28405                                                                                                 40-60
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28487                                                                                                 50-75
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28529                                                                                                136 mg
28530                                                                                               1000 mg
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28603                                                                                               100-150
28604                                                                                                1 tube
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28616                                                                                               1 spray
28620                                                                                                50-100
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28626                                                                                               0.35 ml
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28632                                                                                                 50 mg
28639                                                                                                 75 mg
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28690                                                                                                 23 mg
28691                                                                                                55-100
28692                                                                                                0.3 mg
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28698                                                                                                0.3 mg
28699                                                                                                 50 mg
28710                                                                                           unspecified
28714                                                                                          small amount
28716                                                                                                 15 gm
28717                                                                                                960 mg
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28732                                                                                                500 mg
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28762                                                                                                  1 ml
28764                                                                                                1 drop
28765                                                                                                 50 mg
28766                                                                                                 50 mg
28768                                                                                                 1-1.5
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28781                                                                                                 21-55
28782                                                                                                 26-50
28784                                                                                               25.1-50
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28818                                                                                                 45-88
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28831                                                                                                1 drop
28832                                                                                                500 mg
28833                                                                                                1 tube
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28893                                                                                                 20-40
28897                                                                          based on weight (51-100 lbs)
28898                                                                                                 40-60
28899                                                                          based on weight (50-100 lbs)
28900                                                                                                50-100
28901                                                                                                 24-60
28904                                                                          based on weight (51-100 lbs)
28905                                                                                                 15 mg
28906                                                                                                  3 ml
28907                                                                         based on weight (24.1-60 lbs)
28910                                                                                                60-120
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28988                                                                                                375 mg
28998                                                                                                 25 mg
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29008                                                                                                 23 mg
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29092                                                                                                  1 ml
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29097                                                                                                  1 ml
29098                                                                                                    ml
29099                                                                                                    ml
29100                                                                                                 75 mg
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29135                                                                                                  8 mg
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29150                                                                                                240 mg
29151                                                                           based on weight (40-88 lbs)
29152                                                                                                0.6 mg
29153                                                                                           unspecified
29154                                                                                                240 mg
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29183                                                                                                 44-88
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29330                                                                                                 45-88
29331                                                                                                50-100
29332                                                                                                 45-88
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29397                                                                                                 25-50
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29472                                                                                                60-100
29475                                                                                                60-100
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29506                                                                                                 50 mg
29509                                                                                                0.6 mg
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29578                                                                                                 44-88
29579                                                                                                 15 gm
29580                                                                          based on weight (51-100 lbs)
29583                                                                                                 44-88
29588                                                                          based on weight (51-100 lbs)
29589                                                                                                 24-60
29592                                                                                                375 mg
29601                                                                                                 16 mg
29602                                                                                                 16 mg
29604                                                                                                 16 mg
29606                                                                                               272 mcg
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29626                                                                                             32.4-64.8
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29679                                                                                                 21-55
29691                                                                                                200 mg
29692                                                                                                150 mg
29693                                                                                                  1 mg
29694                                                                                                100 mg
29695                                                                                                 50 mg
29696                                                                                                1.5 gm
29697                                                                                                250 mg
29698                                                                                                250 mg
29699                                                                                                200 mg
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29729                                                                                                  1 gm
29730                                                                                                1.5 gm
29733                                                                                                750 mg
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29755                                                                                                 44-88
29764                                                                                           unspecified
29765                                                                                           unspecified
29766                                                                                                 24-60
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29771                                                                                                60-121
29772                                                                                                 45-88
29794                                                                                           unspecified
29797                                                                                                227 mg
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29832                                                                                                1.5 ml
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29848                                                                                                1.5 ml
29851                                                                                                500 mg
29857                                                                                                 44-88
29858                                                                                           unspecified
29859                                                                                                7.4 ml
29860                                                                                                7.4 ml
29861                                                                                                7.4 ml
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29906                                                                                                 25 mg
29907                                                                                                 15 mg
29933                                                                                 1 tablet/pill/capsule
29937                                                                                                50-100
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29943                                                                                                50-100
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30067                                                                                                 26-50
30068                                                                                                 45-88
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30095                                                                                                50-100
30096                                                                                                 44-88
30098                                                                                               1000 mg
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30127                                                                                                100 mg
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30164                                                                                                2.5 ml
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30186                                                                                                 16 mg
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30213                                                                                                  4 gm
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30271                                                                                                60-121
30274                                                                          based on weight (51-100 lbs)
30275                                                                                                60-121
30277                                                                          based on weight (51-100 lbs)
30278                                                                                                60-121
30284                                                                                                50-100
30285                                                                                                60-121
30286                                                                          based on weight (51-100 lbs)
30290                                                                                                51-100
30291                                                                                                60-121
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30306                                                                                                 16 mg
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30320                                                                                                50-100
30321                                                                                                 44-88
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30350                                                                                                60-120
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30353                                                                                                1 drop
30354                                                                                              10 drops
30355                                                                                          small amount
30356                                                                                                200 mg
30357                                                                                                 spray
30358                                                                                                100 mg
30359                                                                                                 75 mg
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30368                                                                                               272 mcg
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30383                                                                                                 45-88
30384                                                                                                50-100
30385                                                                          based on weight (51-100 lbs)
30386                                                                                                 44-88
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30403                                                                                                 45-88
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30494                                                                                                 23 mg
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30523                                                                                                 75 mg
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30534                                                                                               272 mcg
30536                                                                                             4-5 drops
30541                                                                                                1 tube
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30573                                                                                                 34 mg
30574                                                                                                230 mg
30590                                                                           based on weight (40-60 lbs)
30602                                                                                                 40-60
30604                                                                         based on weight (40-60.1 lbs)
30607                                                                                                 40-60
30608                                                                                                 21-55
30619                                                                                                500 mg
30620                                                                                                300 mg
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30700                                                                                                 40-60
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30730                                                                                               272 mcg
30752                                                                                                50-100
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30758                                                                                                50-100
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30784                                                                                               1000 mg
30792                                                                                                1 tube
30793                                                                                 1 tablet/pill/capsule
30794                                                                                              0.25-0.5
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30800                                                                                                 44-88
30803                                                                                           unspecified
30811                                                                                                1 tube
30812                                                                                                160 mg
30813                                                                          based on weight (51-100 lbs)
30814                                                                                                1 tube
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30893                                                                                                1.9 ml
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30919                                                                                                50-100
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30944                                                                                               1000 mg
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30960                                                                                                 1 tsp
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
30999                                                                                                50-100
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31012                                                                                                0.5 mg
31016                                                                                              0.75 tsp
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31097                                                                                               1000 mg
31098                                                                                                 25 mg
31105                                                                          based on weight (51-100 lbs)
31106                                                                                                 45-88
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31136                                                                                                 23 mg
31137                                                                                                136 mg
31138                                                                                                23-228
31139                                                                        based on weight (60.1-121 lbs)
31142                                                                                                23-228
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31200                                                                                                 30 mg
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31233                                                                                                 23 mg
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31235                                                                                                 23 mg
31243                                                                                                 23 mg
31245                                                                                               6 drops
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31264                                                                                                 56-95
31265                                                                                       based on weight
31268                                                                                           as directed
31284                                                                                                51-100
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31330                                                                                                1 pump
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31363                                                                                                60-121
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31380                                                                                                 16 mg
31381                                                                                                 15 gm
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                                                               5 mg/kg
31411                                                                                               1 mg/kg
31412                                                                                               6 mg/ml
31413                                                                                                 50 mg
31414                                                                                               1000 mg
31415                                                                                               272 mcg
31416                                                                                               1000 mg
31417                                                                                               272 mcg
31418                                                                                               272 mcg
31419                                                                                               1000 mg
31420                                                                                                500 mg
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31507                                                                                                0.4 mg
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31599                                                                                                100 mg
31602                                                                          based on weight (51-100 lbs)
31603                                                                                                 44-88
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31638                                                                                                136 mg
31640                                                                                          small amount
31641                                                                                                300 mg
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31651                                                                                                200 mg
31652                                                                                                  5 ml
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31654                                                                                                136 mg
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31679                                                                                                 45-88
31680                                                                          based on weight (51-100 lbs)
31687                                                                                                 45-88
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31727                                                                                                50-100
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31763                                                                                                 44-88
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31800                                                                                                 45-88
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31811                                                                                                1 tube
31818                                                                                                1 tube
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31825                                                                                                1 tube
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31842                                                                                                1 pump
31843                                                                                       based on weight
31844                                                                                       based on weight
31845                                                                                                  1 ml
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31848                                                                                                 23 mg
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31873                                                                                             1000-2000
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31883                                                                                                50-100
31885                                                                                                50-100
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31897                                                                                                50-100
31898                                                                          based on weight (60-121 lbs)
31906                                                                                                1 tbsp
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31917                                                                                                 25-60
31930                                                                                                 50 mg
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31967                                                                                                500 mg
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31969                                                                                                 45-88
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
31991                                                                                                 44-88
31993                                                                                                 45-88
32002                                                                          based on weight (51-100 lbs)
32003                                                                                                60-121
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32034                                                                                                50-100
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32078                                                                                                50-100
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32131                                                                                                  1 mg
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32139                                                                                                50-100
32140                                                                                                 44-88
32146                                                                                                 44-88
32147                                                                                                50-100
32153                                                                                                50-100
32154                                                                                                 44-88
32160                                                                                                 44-88
32161                                                                                                50-100
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32212                                                                                                345 mg
32221                                                                                                 23 mg
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32251                                                                                                 41-88
32252                                                                                               50.1-75
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32354                                                                                                 25 mg
32355                                                                                                  5 mg
32356                                                                                                 25 mg
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32364                                                                                               1.75 ml
32365                                                                                               1.75 ml
32366                                                                                                 16 mg
32370                                                                                           unspecified
32384                                                                                                 44-88
32389                                                                                                 44-88
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32397                                                                                                0.6 mg
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32475                                                                                                300 mg
32476                                                                                                 75 mg
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32521                                                                                                1 drop
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32632                                                                                                 56-95
32633                                                                                           unspecified
32635                                                                                           application
32637                                                                                                1 pump
32639                                                                                                50-100
32640                                                                                                 44-88
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32657                                                                                                 0.5-2
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32692                                                                                                 40-60
32694                                                                                                 spray
32695                                                                                                60-120
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32708                                                                                                100 mg
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32740                                                                                                50-100
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32744                                                                                                50-100
32745                                                                                                 40-60
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32860                                                                                                 16 mg
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32912                                                                                                1 drop
32915                                                                                                50-100
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32939                                                                                                 30 mg
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32953                                                                                                 16 mg
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32983                                                                                                500 mg
32999                                                                          based on weight (51-100 lbs)
33000                                                                                                 21-55
33004                                                                          based on weight (51-100 lbs)
33005                                                                                                 21-55
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33014                                                                                                1 tube
33015                                                                              based on weight (30 lbs)
33018                                                                                                 21-30
33022                                                                                               272 mcg
33023                                                                                       based on weight
33027                                                                                                136 mg
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33067                                                                                               5 drops
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33074                                                                                                 21-55
33075                                                                                                 26-50
33077                                                                                                 45-88
33078                                                                          based on weight (51-100 lbs)
33079                                                                                                 56-95
33080                                                                                                 45-88
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33108                                                                                               272 mcg
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33123                                                                                                200 mg
33124                                                                                          small amount
33125                                                                                                100 mg
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33188                                                                                               1000 mg
33189                                                                                                 50 mg
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33212                                                                                                 55-95
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33223                                                                                                 21-55
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33243                                                                                                 21-55
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33317                                                                                               272 mcg
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33327                                                                                                89-130
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33338                                                                                                 90 mg
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33369                                                                                                88-124
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33416                                                                                               100-150
33419                                                                                                51-100
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33502                                                                                                 44-88
33504                                                                                                272 ug
33521                                                                                                 23 mg
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33573                                                                                                50-100
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33577                                                                                                 44-88
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33601                                                                                                 44-88
33602                                                                                                50-100
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33653                                                                                               100-250
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33665                                                                                                 26-50
33666                                                                                               25.1-50
33667                                                                                                 21-55
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33691                                                                                                136 mg
33692                                                                                                150 mg
33693                                                                                                150 mg
33694                                                                                                500 mg
33695                                                                                                500 mg
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33697                                                                                                136 mg
33702                                                                                           unspecified
33704                                                                                                60-120
33706                                                                                               23, 460
33710                                                                                                50-100
33711                                                                                                60-121
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33818                                                                                                 15 mg
33822                                                                                               272 mcg
33823                                                                                                136 mg
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33825                                                                                                136 mg
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33850                                                                                               272 mcg
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33882                                                                                                50-150
33885                                                                                                50-100
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33905                                                                                               1 spray
33907                                                                                                 spray
33909                                                                                               1 spray
33911                                                                           based on weight (44-88 lbs)
33913                                                                                               1 spray
33914                                                                                               1 spray
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33929                                                                                                1 tube
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33988                                                                                                50-100
33989                                                                                                 44-88
33990                                                                                                 44-88
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34015                                                                                                 23-44
34016                                                                                           unspecified
34020                                                                                                50-100
34021                                                                                                 45-88
34022                                                                                           unspecified
34024                                                                                           unspecified
34025                                                                                                 45-88
34026                                                                                                60-120
34027                                                                                                60-120
34028                                                                                                 45-88
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34031                                                                                                 45-88
34043                                                                          based on weight (50-100 lbs)
34044                                                                                                0.5 mg
34046                                                                           based on weight (44-88 lbs)
34047                                                                                                50-100
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34070                                                                                                136 mg
34071                                                                                                 50 mg
34072                                                                                                500 mg
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34092                                                                                                1 tube
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34105                                                                                               1 spray
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34110                                                                                                 44-88
34111                                                                          based on weight (51-100 lbs)
34112                                                                                                 68 mg
34113                                                                                                  tube
34115                                                                                                 44-88
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34162                                                                                                136 mg
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34282                                                                                                1 pump
34287                                                                                                1 drop
34288                                                                                               272 mcg
34289                                                                                                1 tube
34290                                                                                                  1 ml
34293                                                                                                1 tube
34304                                                                                                1 tube
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34341                                                                                               272 mcg
34342                                                                                           unspecified
34343                                                                                           unspecified
34344                                                                                               272 mcg
34345                                                                           based on weight (45-88 lbs)
34348                                                                                               5 drops
34356                                                                                                810 mg
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34369                                                                                                200 mg
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34425                                                                                                 44-88
34429                                                                                                 44-88
34430                                                                                       based on weight
34433                                                                                            0.05 mg/kg
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34456                                                                                               2 pumps
34457                                                                                                  1 gm
34458                                                                                                 30 mg
34459                                                                                                650 mg
34460                                                                                                 60 mg
34461                                                                                               1 mg/kg
34462                                                                                               1 mg/kg
34463                                                                                                  1 gm
34464                                                                                                325 mg
34465                                                                                                 20 mg
34466                                                                                                500 mg
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34468                                                                                               1620 mg
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34510                                                                                                400 mg
34513                                                                           based on weight (45-88 lbs)
34519                                                                                                61-100
34520                                                                                                61-100
34528                                                                                                 60 mg
34533                                                                                                60-121
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34594                                                                                                60-120
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34612                                                                                                 16 mg
34614                                                                                                  1 ml
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34628                                                                                                61-120
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34639                                                                                                 41-60
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34643                                                                                                50-100
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34670                                                                                                 45-80
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34684                                                                                                50-100
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34707                                                                                                 40-60
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34748                                                                                                 44-88
34749                                                                                                50-100
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34767                                                                                             2.5 mg/kg
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34790                                                                                                50-100
34791                                                                          based on weight (50-100 lbs)
34796                                                                                                60-121
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34834                                                                                                60-120
34835                                                                                                 44-88
34838                                                                                                60-120
34845                                                                                   tablet/pill/capsule
34867                                                                                                100 mg
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34881                                                                                                 23 mg
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34940                                                                                                 35 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34973                                                                                                375 mg
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35026                                                                                             0.125 tsp
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35070                                                                                                500 mg
35074                                                                                           unspecified
35077                                                                                                60-120
35094                                                                          based on weight (51-100 lbs)
35095                                                                                                88-132
35101                                                                                                100 mg
35102                                                                                                0.2 mg
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35119                                                                                                60-121
35122                                                                                               2.25 ml
35124                                                                                                2.2 ml
35125                                                                          based on weight (60-121 lbs)
35126                                                                                                7.5 gm
35128                                                                                                88-123
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35155                                                                                                 16 mg
35160                                                                                           unspecified
35167                                                                                                 45-88
35170                                                                                               272 mcg
35171                                                                                               272 mcg
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35190                                                                                                 10 mg
35191                                                                                                0.6 mg
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35213                                                                                                0.6 mg
35214                                                                          based on weight (51-100 lbs)
35215                                                                                                0.5 mg
35216                                                                                                 10 mg
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35258                                                                                               4 drops
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35263                                                                                                136 mg
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35282                                                                                                 50 mg
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35298                                                                                                 45-88
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35316                                                                                                 68 mg
35318                                                                                                 60 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35386                                                                                                60-120
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35498                                                                                                136 mg
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35503                                                                                                200 mg
35504                                                                                          pack/package
35506                                                                                          small amount
35507                                                                                                1 drop
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35584                                                                                                  2 mg
35592                                                                                               3 drops
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35616                                                                                                200 mg
35617                                                                                                 20 mg
35618                                                                                                300 mg
35619                                                                                                500 mg
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35622                                                                                                200 mg
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35627                                                                                                 10 mg
35628                                                                                       based on weight
35633                                                                                           unspecified
35638                                                                                                 45-88
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35643                                                                                                7.5 ml
35644                                                                                                2.5 mg
35645                                                                                                    ml
35656                                                                                           application
35657                                                                                                50-100
35658                                                                                                50-100
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35689                                                                                                60-120
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35700                                                                                               1 spray
35709                                                                                                 45-88
35717                                                                                                 45-88
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35746                                                                                                200 mg
35747                                                                                                 50 mg
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35749                                                                                                136 mg
35751                                                                                                 16 mg
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35767                                                                                                50-100
35768                                                                             based on weight (55+ lbs)
35769                                                                                                50-100
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35776                                                                                                 21-55
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35779                                                                                               1500 mg
35782                                                                                               272 mcg
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35826                                                                                                50-100
35827                                                                                                 44-88
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35832                                                                                                900 mg
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35853                                                                                                200 ml
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35889                                                                                                 44-88
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35909                                                                                                60-120
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35968                                                                                                 15-20
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35980                                                                                               272 mcg
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36070                                                                                                88-123
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36083                                                                                                0.8 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36151                                                                                                 45-88
36153                                                                                          small amount
36155                                                                                                1 tube
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36196                                                                                                0.4 mg
36198                                                                                                1.5 ml
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36226                                                                                                10-121
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36258                                                                                                 75 mg
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36284                                                                                                500 mg
36288                                                                                       based on weight
36289                                                                                                300 mg
36292                                                                                               2.68 ml
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36376                                                                                               0.25 ml
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36400                                                                                                500 mg
36401                                                                                                 20 mg
36402                                                                                                2.5 mg
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36520                                                                                                 2 tsp
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36563                                                                                                 45-88
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36579                                                                                                1 tube
36580                                                                                                 50 mg
36595                                                                          based on weight (50-100 lbs)
36597                                                                                                 15 gm
36598                                                                                                500 mg
36599                                                                                                200 mg
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36603                                                                                                50-100
36605                                                                          based on weight (50-100 lbs)
36606                                                                                                 15 gm
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36623                                                                                                 15 gm
36624                                                                                           application
36626                                                                                          small amount
36627                                                                                                50-100
36628                                                                                                50-100
36630                                                                          based on weight (50-100 lbs)
36631                                                                                                 15 gm
36632                                                                          based on weight (50-100 lbs)
36633                                                                                                 15 gm
36635                                                                          based on weight (50-100 lbs)
36636                                                                                                 16 mg
36637                                                                                                 15 gm
36652                                                                                                 40-60
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36660                                                                                               272 mcg
36661                                                                                                227 mg
36667                                                                                               9 mg/lb
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36776                                                                                                 10 mg
36777                                                                                                 20 mg
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36874                                                                                             1.5 mg/ml
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36879                                                                                             1.5 mg/ml
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36884                                                                                                1 pump
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36914                                                                                                 45-88
36916                                                                                                  3 mg
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36946                                                                                                136 mg
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37022                                                                                                50-100
37025                                                                                                50-100
37027                                                                                                50-100
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37076                                                                                                1 tube
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37080                                                                                                1 tube
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37091                                                                                                200 mg
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37103                                                                                               1 mg/kg
37104                                                                                             1-2 drops
37115                                                                                               7 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37252                                                                                                50-100
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37261                                                                                                50-100
37262                                                                             based on weight (55+ lbs)
37263                                                                                                 10 mg
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37273                                                                                               8 drops
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37304                                                                                                 75 mg
37306                                                                                               5 mg/kg
37307                                                                                               1 mg/kg
37308                                                                                             0.5 mg/kg
37309                                                                                          small amount
37311                                                                                                 25-35
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37440                                                                                                 44-88
37446                                                                          based on weight (51-100 lbs)
37447                                                                                                 44-88
37448                                                                                                1 pump
37449                                                                                       moderate amount
37451                                                                                           application
37453                                                                                                1 pump
37454                                                                                       moderate amount
37455                                                                                                 44-88
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37482                                                                                                 44-88
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37494                                                                                                89-132
37495                                                                                                 spray
37496                                                                                               5 drops
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37541                                                                                                 44-88
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37553                                                                                                 44-88
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37581                                                                                                500 mg
37582                                                                                                  5 mg
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37623                                                                                                50-100
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37649                                                                                                1.8 ml
37651                                                                                                collar
37652                                                                                             1.5 mg/ml
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37682                                                                                                500 mg
37686                                                                                                500 mg
37691                                                                                           application
37692                                                                                               272 mcg
37695                                                                                                200 mg
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37699                                                                                                1 drop
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37708                                                                                               1000 mg
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37807                                                                                                325 mg
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37836                                                                                                  1 mg
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37860                                                                                                 44-88
37863                                                                                                 26-50
37864                                                                                                 23-44
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37905                                                                                                50-100
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37908                                                                                                61-120
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37940                                                                                                 20 mg
37941                                                                                               5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37945                                                                                                 20-60
37956                                                                                                 16 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38073                                                                                               272 mcg
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38129                                                                                                  2 mg
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38150                                                                                                 25-50
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38220                                                                                                 15 gm
38240                                                                           based on weight (22-55 lbs)
38241                                                                                                50-100
38248                                                                                                 16 mg
38255                                                                                                 45-88
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38260                                                                                                136 mg
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38291                                                                                                50-100
38292                                                                                                 44-88
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38295                                                                                                50-100
38296                                                                                                 44-88
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38321                                                                                                 23 mg
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38341                                                                                               1 spray
38342                                                                          based on weight (51-100 lbs)
38350                                                                                                1 tube
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38354                                                                                                 44-88
38361                                                                                       0.25 inch strip
38362                                                                                                 10 mg
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38370                                                                                               0.65 ml
38371                                                                                                 13 ml
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38380                                                                                                50-100
38381                                                                                                50-100
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38394                                                                                                50-100
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38398                                                                                                  5 mg
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38419                                                                                                 45-88
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38496                                                                                               272 mcg
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38526                                                                                                 41-88
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38535                                                                                                1 tbsp
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38635                                                                                                 44-88
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38638                                                                                                 15 gm
38643                                                                          based on weight (51-100 lbs)
38644                                                                                                 44-88
38647                                                                                                  2, 4
38652                                                                                                 44-88
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38716                                                                                                 15 gm
38722                                                                                          small amount
38723                                                                                              wipe/pad
38724                                                                                                50-100
38754                                                                                           unspecified
38764                                                                                                400 mg
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38776                                                                                               8 drops
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38808                                                                                                375 mg
38809                                                                                           unspecified
38810                                                                                                  3 ml
38816                                                                                        1 pack/package
38818                                                                                                460 mg
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38893                                                                                                 24-60
38896                                                                          based on weight (51-100 lbs)
38897                                                                                                 24-60
38899                                                                                                51-100
38900                                                                                                 24-60
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38978                                                                                                1 tube
38983                                                                                                 45-88
38986                                                                                                 40-85
38988                                                                                                 45-88
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39010                                                                                                 40-60
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39105                                                                                                50-100
39106                                                                                                60-121
39113                                                                                                100 mg
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39141                                                                                               100-200
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39175                                                                                              10 mg/ml
39176                                                                          based on weight (51-100 lbs)
39177                                                                                                102 mg
39181                                                                                                  bath
39182                                                                                                 spray
39188                                                                                                 15 gm
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39261                                                                                              0.25 tsp
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39327                                                                                                 23 mg
39328                                                                                                 80 mg
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39337                                                                                                50-100
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39385                                                                                               272 mcg
39388                                                                          based on weight (51-100 lbs)
39389                                                                                                 48-88
39390                                                                                               272 mcg
39392                                                                                           unspecified
39415                                                                                                1 pump
39416                                                                                                 23 mg
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39436                                                                                                500 mg
39438                                                                          based on weight (51-100 lbs)
39439                                                                                                 45-88
39440                                                                          based on weight (51-100 lbs)
39441                                                                                                 44-88
39442                                                                                                 44-88
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39464                                                                                               272 mcg
39478                                                                                               272 mcg
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39532                                                                                                500 mg
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39579                                                                                                 15 gm
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39605                                                                                                 75 mg
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39634                                                                                                60-120
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39642                                                                                                60-120
39651                                                                                           unspecified
39695                                                                                                60-120
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39708                                                                                               272 mcg
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39745                                                                                                1 tube
39750                                                                                               4 drops
39754                                                                          based on weight (51-100 lbs)
39755                                                                                                1 tube
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39785                                                                                                 25 mg
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39809                                                                                               272 mcg
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39901                                                                                                0.3 mg
39909                                                                           based on weight (41-60 lbs)
39916                                                                                               3 drops
39917                                                                                               3 drops
39918                                                                                               2 drops
39919                                                                                       0.25 inch strip
39924                                                                                                 44-88
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39968                                                                                               24.1-60
39969                                                                                              50.1-100
39970                                                                                              50.1-100
39972                                                                                                 44-88
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39976                                                                                                50-100
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40003                                                                                                227 mg
40013                                                                            based on weight (0-10 lbs)
40014                                                                                                 24-60
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40024                                                                                              10 drops
40038                                                                                              250, 500
40042                                                                                               272 mcg
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40053                                                                                               272 mcg
40054                                                                                                227 mg
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40095                                                                                               272 mcg
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40166                                                                                                 45-88
40180                                                                          based on weight (51-100 lbs)
40181                                                                                                 45-88
40186                                                                          based on weight (51-100 lbs)
40193                                                                                                272 ug
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40200                                                                                                 40-60
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40210                                                                                                50-100
40211                                                                                                 44-88
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40245                                                                                                50-100
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40308                                                                                                 68 mg
40309                                                                                              50 mg/ml
40312                                                                              based on weight (70 lbs)
40313                                                                                                375 mg
40315                                                                                                 24-60
40317                                                                                          small amount
40325                                                                                                272 mg
40331                                                                                               23, 228
40343                                                                                       moderate amount
40346                                                                                                960 mg
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40405                                                                                                100 mg
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40408                                                                                                50-100
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40447                                                                                               4 drops
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40490                                                                                                500 mg
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40505                                                                                                240 mg
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40542                                                                                                  8 ml
40543                                                                                                 23 mg
40547                                                                                                0.5 mg
40567                                                                                                50-100
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40594                                                                                                 56-95
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40610                                                                                                 56-95
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40624                                                                                                150 mg
40625                                                                                                 75 mg
40634                                                                                       0.25 inch strip
40635                                                                                                500 mg
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40657                                                                                               272 mcg
40658                                                                                                136 mg
40684                                                                          based on weight (51-100 lbs)
40685                                                                                                 44-88
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40739                                                                                                50-100
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40774                                                                                                50-100
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40793                                                                                                50-100
40794                                                                                        0.5 inch strip
40795                                                                                                60-120
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40803                                                                                                50-100
40804                                                                                                88-132
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40826                                                                                                250 mg
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40869                                                                                                 75 mg
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40876                                                                                               272 mcg
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40957                                                                                                 20-40
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40975                                                                                                60-121
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41002                                                                                               1000 mg
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41008                                                                                                500 mg
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41012                                                                                               1000 mg
41013                                                                                               1000 mg
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41017                                                                                                500 mg
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41055                                                                                                 60 mg
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41073                                                                                                50-100
41078                                                                                                 44-88
41082                                                                                                500 mg
41083                                                                                                6.3 mg
41084                                                                              based on weight (70 lbs)
41085                                                                                                 50 mg
41086                                                                                                300 mg
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41092                                                                                                500 mg
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41100                                                                                                500 mg
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41105                                                                                               1000 mg
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41128                                                                                                81-120
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41225                                                                                                 20 mg
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41243                                                                                               272 mcg
41246                                                                                           application
41250                                                                                                1 tube
41251                                                                                             0.5 mg/kg
41252                                                                                             6.1 mg/kg
41254                                                                                 1 tablet/pill/capsule
41255                                                                                                 16 mg
41256                                                                                                200 mg
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41302                                                                                                 60 mg
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41336                                                                                                1 pump
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41370                                                                                               11.5 mg
41371                                                                                           application
41372                                                                                                500 mg
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41399                                                                                               8 drops
41400                                                                                               0.75 ml
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41418                                                                                               1.34 ml
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41426                                                                                                50-100
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41502                                                                                                1 tube
41505                                                                                              inhalant
41524                                                                                               100-200
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41550                                                                                               100-200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41648                                                                                                 44-88
41653                                                                                               23, 460
41655                                                                                           unspecified
41661                                                                                                 75 mg
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41732                                                                                                 45-88
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41775                                                                                                136 mg
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41804                                                                                                 44-88
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41827                                                                                                 40-60
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41836                                                                                                89-132
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41841                                                                                                 45-88
41842                                                                                                1 drop
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41855                                                                                                60-120
41856                                                                                                500 mg
41861                                                                                                 40-60
41862                                                                                               2 drops
41863                                                                                       moderate amount
41866                                                                                               272 mcg
41867                                                                                                 68 mg
41870                                                                                               23, 228
41872                                                                                           unspecified
41884                                                                                                 26-50
41885                                                                                                 22-44
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41892                                                                                                200 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41895                                                                                              25 drops
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41907                                                                                                100 gm
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41966                                                                                                56-100
41967                                                                                                51-100
41969                                                                                                 45-88
41971                                                                                                51-100
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41976                                                                                                 15 ml
41988                                                                          based on weight (51-100 lbs)
41989                                                                                                 44-88
41992                                                                                                50-100
41993                                                                                                 45-88
41996                                                                                                 45-88
41999                                                                                                50-100
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42030                                                                                               5 drops
42032                                                                          based on weight (51-100 lbs)
42033                                                                                                 50 mg
42034                                                                                                500 mg
42035                                                                                                150 mg
42036                                                                                               3 drops
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42040                                                                                                1 tube
42041                                                                                                500 mg
42042                                                                                                 20 mg
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42051                                                                                                 55-88
42053                                                                          based on weight (60-121 lbs)
42054                                                                                                 20 mg
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42096                                                                                                 60-80
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42113                                                                                                136 mg
42114                                                                                                375 mg
42115                                                                                                 60 mg
42116                                                                      2 tablets/pills/capsules - 50 mg
42117                                                                                                300 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42157                                                                                               62.5-75
42171                                                                                               8 drops
42174                                                                          based on weight (51-100 lbs)
42175                                                                                                250 mg
42176                                                                                                125 mg
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42290                                                                                                 45-88
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42355                                                                                               1.5 tsp
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42365                                                                                                1 pump
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42381                                                                                                50-100
42384                                                                          based on weight (51-100 lbs)
42385                                                                                                50-100
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42401                                                                                                 45-88
42402                                                                          based on weight (51-100 lbs)
42403                                                                                                1 tube
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42435                                                                                                 80-90
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42479                                                                                                1 tube
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42515                                                                                                 45-88
42516                                                                                                50-100
42518                                                                                                160 mg
42519                                                                                                 20 mg
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42566                                                                                                5 tbsp
42569                                                                                                 22-55
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42575                                                                                              85.1-130
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42583                                                                                                75-100
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42625                                                                                                60-121
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42667                                                                                                60-120
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42741                                                                                                 24-60
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42767                                                                                                 68 mg
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42769                                                                                                 80 mg
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42809                                                                                                 21-55
42810                                                                                                 26-50
42821                                                                          based on weight (50-100 lbs)
42829                                                                                               4 drops
42833                                                                                               23, 228
42860                                                                                           as directed
42866                                                                                                 25-50
42867                                                                                                 45-88
42869                                                                                                 25-50
42870                                                                                                 45-88
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42909                                                                                                 75 mg
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43073                                                                                                 20-40
43074                                                                                                 40-85
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43144                                                                                                50-100
43149                                                                                                  5 mg
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43187                                                                                                 50 mg
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43240                                                                                                 30 mg
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43251                                                                                                 23 mg
43254                                                                                                 23 mg
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43265                                                                                                460 mg
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43329                                                                                                272 mg
43334                                                                                               23, 228
43366                                                                                          small amount
43370                                                                                                50-100
43388                                                                                           unspecified
43396                                                                                                 15 gm
43397                                                                                                3.5 gm
43398                                                                                                500 mg
43399                                                                                                 50 mg
43400                                                                                                500 mg
43405                                                                                          small amount
43412                                                                                          small amount
43416                                                                                                 15 gm
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43435                                                                                                 44-88
43436                                                                                                 16 mg
43442                                                                                                 44-88
43443                                                                                                 16 mg
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43498                                                                                                900 mg
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43561                                                                                                500 mg
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43601                                                                                                1 drop
43610                                                                                      0.125 inch strip
43611                                                                                               272 mcg
43620                                                                                           unspecified
43621                                                                                           unspecified
43622                                                                                               272 mcg
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43641                                                                                                250 mg
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43670                                                                                                 20-30
43674                                                                                                 44-88
43675                                                                                                 15-20
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43712                                                                                               1 spray
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43755                                                                                                227 mg
43756                                                                                                136 mg
43765                                                                                                1 pump
43766                                                                                                125 mg
43778                                                                                               272 mcg
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43829                                                                                                600 ml
43831                                                                                               272 mcg
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43880                                                                                                50-100
43884                                                                                                  tube
43885                                                                                                50-100
43887                                                                                                  tube
43889                                                                                                50-100
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43897                                                                                                 15 gm
43898                                                                                                 16 mg
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44051                                                                                               5 drops
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44132                                                                                                60-121
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44164                                                                                                50-100
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44220                                                                                                1 tube
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44242                                                                                                 3 tsp
44243                                                                                           unspecified
44244                                                                                           unspecified
44245                                                                                                250 mg
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44255                                                                                                50-100
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44321                                                                                                50-100
44330                                                                          based on weight (51-100 lbs)
44331                                                                                                 24-60
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44382                                                                                                60-120
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44408                                                                                                60-120
44420                                                                                                 56-95
44421                                                                        based on weight (50.1-100 lbs)
44422                                                                                                 26-50
44423                                                                                                 21-55
44425                                                                                                  0-25
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44501                                                                                               8 drops
44502                                                                                                  4 mg
44503                                                                                                 50 mg
44504                                                                                                 50 mg
44505                                                                                                500 mg
44507                                                                                          small amount
44508                                                                                                  4 mg
44509                                                                                                 45 mg
44518                                                                                               272 mcg
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44525                                                                                               0.5-0.7
44531                                                                              based on weight (70 lbs)
44532                                                                                                500 mg
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44552                                                                                                  1 ml
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44674                                                                                                60-120
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44779                                                                                                60-120
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44796                                                                                                1 drop
44797                                                                                                1 drop
44798                                                                                                100 mg
44799                                                                                           unspecified
44800                                                                                                100 mg
44804                                                                                           unspecified
44805                                                                                               1000 mg
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44831                                                                                                1 drop
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44870                                                                                                  1 mg
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44878                                                                                                300 mg
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44927                                                                                                 44-88
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44990                                                                                                0.5 gm
44994                                                                                                 24-60
44997                                                                                           as directed
45000                                                                                                 24-60
45005                                                                                           unspecified
45007                                                                                           unspecified
45009                                                                                                 40-85
45011                                                                                                 40-85
45013                                                                                                60-120
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45047                                                                                                1 tube
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45056                                                                                                 26-50
45057                                                                                                 25-60
45058                                                                                                 25-60
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45068                                                                                                60-120
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45110                                                                                                150 mg
45112                                                                                               6 drops
45115                                                                                                100 mg
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45128                                                                                                50-100
45129                                                                                                 40-60
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45140                                                                                                60-120
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45183                                                                                                 45-88
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45203                                                                                                136 mg
45204                                                                                                  8 mg
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45213                                                                                                 45-88
45216                                                                          based on weight (51-100 lbs)
45217                                                                                                60-121
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45226                                                                                                60-121
45236                                                                          based on weight (51-100 lbs)
45237                                                                                                60-121
45240                                                                                                51-100
45241                                                                                                60-121
45242                                                                                                50-100
45255                                                                                       based on weight
45257                                                                                                  1 ml
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45274                                                                                               5 drops
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45284                                                                                                60-120
45286                                                                          based on weight (51-100 lbs)
45287                                                                                                60-120
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45301                                                                                                 24-60
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45405                                                                                                 45-88
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45474                                                                                                60-120
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45498                                                                                                 75 mg
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45553                                                                                                240 mg
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45586                                                                                                375 mg
45587                                                                                                500 mg
45590                                                                                                60-120
45591                                                                                               8 drops
45592                                                                                                 16 mg
45626                                                                        based on weight (50.1-100 lbs)
45629                                                                                                1 tube
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45654                                                                                               100-200
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45666                                                                                                 23 mg
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45674                                                                                               2 drops
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45684                                                                                                 25 mg
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45703                                                                                                  3 ml
45704                                                                                          small amount
45722                                                                                                 44-88
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45742                                                                                                 44-88
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45786                                                                                                 20 mg
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45794                                                                                                 23 mg
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45844                                                                                                 25-50
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45868                                                                                                88-123
45869                                                                        based on weight (50.1-100 lbs)
45870                                                                                                 60 ml
45871                                                                                                7.5 ml
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45884                                                                                               25.1-50
45885                                                                                               25.1-50
45886                                                                                               5 drops
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45928                                                                                                 44-88
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45972                                                                                               8 drops
45974                                                                                               1000 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46020                                                                                                  1 ml
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46077                                                                                                150 mg
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46079                                                                                                900 mg
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46101                                                                                               3 drops
46102                                                                                               3 drops
46103                                                                                                136 mg
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46128                                                                                               272 mcg
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46169                                                                                                 23 mg
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46178                                                                                                 56-88
46179                                                                                                250 mg
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46226                                                                                                200 mg
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46304                                                                                                 22-44
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46328                                                                                               1400 mg
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46432                                                                                                1 pump
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46480                                                                                                 40-60
46481                                                                                                55-100
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46491                                                                                                 26-50
46492                                                                                                 26-50
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46502                                                                                               3 pumps
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46524                                                                                               5 drops
46526                                                                                       0.25 inch strip
46527                                                                                               5 drops
46528                                                                           based on weight (45-88 lbs)
46529                                                                                                  1 gm
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46534                                                                                               5 drops
46543                                                                                                 45-88
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46590                                                                                               8 drops
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46664                                                                                                1 tube
46665                                                                                 1 tablet/pill/capsule
46672                                                                                                50-100
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46718                                                                                                 16 mg
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46762                                                                                               4 mg/ml
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46771                                                                                                250 mg
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46787                                                                                                60-121
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46818                                                                                                 10 mg
46826                                                                                             500 mg/ml
46827                                                                                             1-2 drops
46835                                                                                                0.5 mg
46836                                                                                               0.5 mcg
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46867                                                                                                250 mg
46874                                                                                          small amount
46880                                                                                          small amount
46881                                                                                                 23 mg
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46933                                                                                                50-100
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46978                                                                                                1 drop
46979                                                                                               272 mcg
46980                                                                                                227 mg
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
46987                                                                                                 45-88
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47040                                                                                                 23 mg
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47042                                                                                                500 mg
47043                                                                          based on weight (51-100 lbs)
47044                                                                                                 45-88
47045                                                                                                 60 mg
47049                                                                           based on weight (40-85 lbs)
47050                                                                                                500 mg
47053                                                                                                 40-80
47055                                                                                               272 mcg
47060                                                                                           unspecified
47065                                                                                                 60 mg
47069                                                                                                 15 gm
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47108                                                                                                1 tube
47123                                                                                               272 mcg
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47136                                                                                                 40-85
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47153                                                                                                 44-88
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47181                                                                                                1 tube
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47185                                                                                                 23 mg
47186                                                                                                 23 mg
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47255                                                                                                50-100
47260                                                                          based on weight (50-100 lbs)
47266                                                                                              12 mg/kg
47277                                                                                                 23-44
47286                                                                                                 41-88
47302                                                                                          small amount
47305                                                                                                500 mg
47313                                                                                                 56-95
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47337                                                                                                50-100
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47349                                                                                               12.5-25
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47481                                                                                            2.27 mg/lb
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47490                                                                                               272 mcg
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47513                                                                                              10 drops
47515                                                                                                272 ug
47517                                                                                                272 ug
47524                                                                                                272 ug
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47559                                                                                                1 drop
47561                                                                                                  1 gm
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47580                                                                                             1.5 mg/ml
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47609                                                                                                60-120
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47682                                                                                                136 mg
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47809                                                                                                 44-88
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47847                                                                                             0.125 tsp
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47862                                                                                                0.1 ml
47863                                                                                 1 tablet/pill/capsule
47867                                                                                                100 mg
47870                                                                                                50-100
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47892                                                                                                100 mg
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47902                                                                                                50-100
47906                                                                                                 45-88
47908                                                                                                50-100
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47917                                                                                                100 mg
47928                                                                                                125 mg
47949                                                                                               1000 mg
47950                                                                                                60-121
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47979                                                                                                 45-88
47980                                                                                                 44-88
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
47999                                                                                                  4 ml
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48006                                                                                              28 mg/m2
48007                                                                              0.75 tablet/pill/capsule
48008                                                                                                 80 mg
48012                                                                                                 45-88
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48032                                                                                               1000 mg
48033                                                                                                300 mg
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48052                                                                                            0.125-0.25
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48076                                                                                                60-120
48083                                                                                                 26-50
48084                                                                                                 21-55
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48128                                                                                                 25 mg
48129                                                                                                 16 mg
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48154                                                                                               1620 mg
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48161                                                                                                500 mg
48162                                                                                                100 mg
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48170                                                                                                100 mg
48171                                                                                                100 mg
48178                                                                                                 15 gm
48182                                                                                       136 mcg, 114 mg
48184                                                                                             1.1 - 1.6
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48218                                                                                                 80 mg
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48223                                                                                                0.5 ml
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48290                                                                                                136 mg
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48311                                                                                               5 drops
48312                                                                                                500 mg
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48374                                                                                                 10 ml
48376                                                                                                 drops
48377                                                                                                 10 mg
48378                                                                                                1 drop
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48440                                                                                               1000 mg
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48499                                                                                               5 drops
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48503                                                                                                1 tube
48504                                                                                       based on weight
48505                                                                                       based on weight
48508                                                                                                 57 mg
48513                                                                          based on weight (51-100 lbs)
48514                                                                                                 44-88
48520                                                                                                 1 tsp
48521                                                                                                  2 ml
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48560                                                                                                1 tube
48598                                                                                           unspecified
48602                                                                                              tapering
48603                                                                                                 25-50
48609                                                                                                 68 mg
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48662                                                                                               2.68 ml
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48835                                                                                               5 drops
48842                                                                                                500 mg
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48869                                                                                                 20 mg
48877                                                                                                 75 mg
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48893                                                                                                1 drop
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48917                                                                                               272 mcg
48918                                                                                           unspecified
48921                                                                                                 60 ml
48935                                                                                           unspecified
48938                                                                                               272 mcg
48946                                                                            1.5 tablets/pills/capsules
48971                                                                                                272 mg
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49015                                                                                               4.02 ml
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49019                                                                                                500 mg
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49027                                                                                                 60 ml
49028                                                                                                 20 mg
49030                                                                                                 30 gm
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49066                                                                                                50-100
49067                                                                                                60-121
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49083                                                                                                60-120
49084                                                                          based on weight (51-100 lbs)
49085                                                                                                60-120
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49114                                                                                               272 mcg
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49185                                                                                               272 mcg
49186                                                                                                227 mg
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49250                                                                                                50-100
49251                                                                                                 44-88
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49266                                                                                                 40-60
49304                                                                                              10 drops
49305                                                                                                 26-50
49314                                                                                                0.5 mg
49316                                                                                           unspecified
49317                                                                                                 1-1.5
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49345                                                                                                1 pump
49346                                                                          based on weight (51-100 lbs)
49347                                                                                                60-120
49348                                                                          based on weight (51-100 lbs)
49349                                                                                                60-120
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49353                                                                                                 60-80
49371                                                                                                 30 ml
49372                                                                                 1 tablet/pill/capsule
49375                                                                                               37.5 mg
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49401                                                                                                 23 mg
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49410                                                                                                250 mg
49421                                                                                                50-100
49424                                                                                               100-150
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49464                                                                                                 56-95
49473                                                                          based on weight (51-100 lbs)
49487                                                                                                50-100
49488                                                                                                 45-88
49491                                                                                                50-100
49492                                                                                                 45-88
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49524                                                                                                136 mg
49525                                                                                               0.57 mg
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49544                                                                                                50-100
49545                                                                                                60-120
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49551                                                                                                50-100
49552                                                                                                 24-60
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49589                                                                                               272 mcg
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49604                                                                                                500 mg
49605                                                                                 1 tablet/pill/capsule
49606                                                                                                500 mg
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49640                                                                                               272 mcg
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49680                                                                                               1000 mg
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49714                                                                                               272 mcg
49715                                                                                                1 tube
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49752                                                                                                 45-88
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49762                                                                                                 44-88
49764                                                                                                 15 ml
49765                                                                                                 68 mg
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49783                                                                                              56.25 mg
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49848                                                                                                500 mg
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49856                                                                                                1.7 ml
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49884                                                                                                50-100
49886                                                                          based on weight (51-100 lbs)
49887                                                                                                 56-95
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49899                                                                                                 26-50
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49909                                                                                                 56-95
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49923                                                                                               1000 mg
49924                                                                                               1000 mg
49925                                                                                                750 mg
49928                                                                                               1000 mg
49929                                                                                                750 mg
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49980                                                                                                 50 mg
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49994                                                                                             0.2 mg/kg
49995                                                                                             0.2 mg/kg
49996                                                                                           as directed
49997                                                                                                375 mg
49998                                                                                                 50 mg
49999                                                                                                100 mg
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50002                                                                                               3 pumps
50004                                                                          based on weight (51-100 lbs)
50005                                                                                                 44-88
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50022                                                                                             0.2 mg/kg
50029                                                                                 1 tablet/pill/capsule
50030                                                                                                1 tube
50033                                                                                 1 tablet/pill/capsule
50034                                                                                                1 tube
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50073                                                                                                1 tube
50076                                                                                              25 mg/kg
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50125                                                                                                 45-88
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50180                                                                                                 24-60
50187                                                                          based on weight (51-100 lbs)
50188                                                                                                 21-55
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
          dose_unit
2                mg
22      unspecified
40    other specify
41      unspecified
42    other specify
46    other specify
48    other specify
49    other specify
51    other specify
59    other specify
60    other specify
62    other specify
63    other specify
67    other specify
70    other specify
74    other specify
84    other specify
87    other specify
91            drops
111           drops
112           drops
113           drops
114           drops
149   other specify
150   other specify
151   other specify
152   other specify
153   other specify
155   other specify
167     unspecified
188   other specify
192   other specify
195   other specify
220   other specify
230   other specify
233   other specify
235              mg
236   other specify
237   other specify
238   other specify
239              mg
242              ml
243   other specify
244   other specify
248   other specify
257           units
275   other specify
276   other specify
277   other specify
279   other specify
280   other specify
287              mg
310             mcg
317           units
318           units
324   other specify
328   other specify
329   other specify
332   other specify
333   other specify
347              mg
348              mg
350              mg
351              mg
353              mg
355              mg
366     unspecified
368              mg
372              mg
375   other specify
376   other specify
383   other specify
384   other specify
385   other specify
386   other specify
402   other specify
403             mcg
404              mg
414              mg
447           drops
449     unspecified
453           drops
480   other specify
496             mcg
497              mg
498   other specify
519   other specify
537           drops
597   other specify
598   other specify
603   other specify
604   other specify
610           drops
619   other specify
635              mg
637   other specify
642              ml
645              mg
686     unspecified
688              mg
703   other specify
704   other specify
709     unspecified
710     unspecified
712     unspecified
725              mg
728   other specify
729   other specify
730             mcg
731              mg
733           drops
734   other specify
735              mg
736              mg
737           drops
738   other specify
739   other specify
750              mg
754   other specify
755   other specify
756   other specify
757   other specify
760           drops
771              mg
778     unspecified
785   other specify
790   other specify
792   other specify
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803   other specify
804   other specify
810   other specify
816   other specify
819             mcg
820             mcg
823              ml
824   other specify
832     unspecified
850              ml
851             mcg
862   other specify
863              mg
871              mg
874              mg
877           drops
878              mg
879              mg
880              mg
881   other specify
884              mg
887              mg
891              mg
893              mg
899              mg
900   other specify
901           drops
905              ml
913   other specify
917              mg
918              mg
921   other specify
929           drops
930           drops
950           units
955   other specify
958              mg
969           drops
970   other specify
977           drops
979   other specify
980   other specify
982   other specify
983   other specify
989   other specify
991   other specify
992   other specify
995   other specify
996   other specify
1001    unspecified
1017  other specify
1018  other specify
1019  other specify
1020  other specify
1021  other specify
1027  other specify
1028          drops
1029  other specify
1030  other specify
1031          drops
1033          drops
1036  other specify
1037  other specify
1039  other specify
1042  other specify
1050  other specify
1051  other specify
1052  other specify
1060  other specify
1061  other specify
1072          drops
1073  other specify
1074  other specify
1087  other specify
1088             mg
1091          drops
1092             mg
1093             mg
1097             mg
1098             ml
1099  other specify
1100  other specify
1101  other specify
1108  other specify
1111             mg
1112  other specify
1116  other specify
1129  other specify
1131          drops
1150  other specify
1152  other specify
1153  other specify
1154  other specify
1155  other specify
1159  other specify
1160  other specify
1161  other specify
1168          units
1169          units
1170  other specify
1173  other specify
1174             mg
1175  other specify
1176            mcg
1177  other specify
1179  other specify
1185  other specify
1186  other specify
1187             mg
1189  other specify
1190  other specify
1193             mg
1194          units
1195  other specify
1208  other specify
1209  other specify
1217  other specify
1226  other specify
1233    unspecified
1247  other specify
1248  other specify
1274             mg
1285             mg
1307             mg
1328  other specify
1329  other specify
1336    unspecified
1344  other specify
1345          drops
1346  other specify
1348  other specify
1355  other specify
1371  other specify
1377             mg
1378             mg
1379             mg
1380             mg
1398          drops
1404  other specify
1405          drops
1415  other specify
1416             mg
1417  other specify
1418             mg
1419  other specify
1420             mg
1422  other specify
1434  other specify
1435  other specify
1438  other specify
1441  other specify
1442  other specify
1443  other specify
1450  other specify
1451  other specify
1459  other specify
1462  other specify
1464  other specify
1473    unspecified
1475    unspecified
1491          units
1499             mg
1500             mg
1501  other specify
1502            mcg
1503  other specify
1504            tsp
1511  other specify
1512  other specify
1514  other specify
1528  other specify
1529  other specify
1532  other specify
1534          units
1535          units
1536  other specify
1537  other specify
1538             mg
1539  other specify
1541    unspecified
1542    unspecified
1556  other specify
1571  other specify
1572  other specify
1586             oz
1587  other specify
1598  other specify
1599            mcg
1633  other specify
1634          drops
1635  other specify
1636          units
1650    unspecified
1663  other specify
1668  other specify
1671  other specify
1683  other specify
1684  other specify
1685  other specify
1689  other specify
1690  other specify
1692  other specify
1695          drops
1697  other specify
1708             mg
1710             mg
1712  other specify
1715  other specify
1718             mg
1719             mg
1720  other specify
1729             ml
1730            mcg
1743            mcg
1747  other specify
1748  other specify
1749  other specify
1756  other specify
1757  other specify
1758  other specify
1759  other specify
1760             ml
1761  other specify
1769             mg
1773  other specify
1774             mg
1775             mg
1789          drops
1791    unspecified
1794    unspecified
1795    unspecified
1796  other specify
1798             ml
1805          drops
1809             mg
1812            tsp
1813            tbs
1819          drops
1820  other specify
1823          drops
1845  other specify
1846  other specify
1847  other specify
1848  other specify
1849  other specify
1850  other specify
1851  other specify
1861             mg
1864  other specify
1866  other specify
1867  other specify
1872  other specify
1873  other specify
1877  other specify
1887  other specify
1888  other specify
1905             mg
1906             mg
1909  other specify
1916  other specify
1917  other specify
1922  other specify
1925  other specify
1926  other specify
1928  other specify
1929  other specify
1931  other specify
1939  other specify
1941  other specify
1945  other specify
1948  other specify
1954  other specify
1955  other specify
1956  other specify
1960  other specify
1962  other specify
1965             ml
1980  other specify
1981  other specify
1982  other specify
1983  other specify
1984  other specify
1985  other specify
1994    unspecified
1998  other specify
2006            mcg
2007             mg
2012    unspecified
2013    unspecified
2016  other specify
2022  other specify
2025  other specify
2026  other specify
2029            mcg
2030             mg
2032  other specify
2033  other specify
2034  other specify
2035  other specify
2036  other specify
2041  other specify
2042  other specify
2043             ml
2044  other specify
2050  other specify
2051  other specify
2072             mg
2075  other specify
2083  other specify
2084  other specify
2085  other specify
2086  other specify
2087  other specify
2088  other specify
2089  other specify
2091  other specify
2093  other specify
2107  other specify
2108  other specify
2109  other specify
2110  other specify
2113  other specify
2115          drops
2116  other specify
2123  other specify
2126  other specify
2127  other specify
2149  other specify
2151  other specify
2161  other specify
2162  other specify
2165  other specify
2166          drops
2195  other specify
2199  other specify
2200  other specify
2201  other specify
2202  other specify
2203  other specify
2204  other specify
2205  other specify
2206  other specify
2207  other specify
2211          drops
2219  other specify
2220  other specify
2221             mg
2224  other specify
2225             mg
2226  other specify
2228            tbs
2229  other specify
2230             mg
2233             mg
2241  other specify
2243  other specify
2244  other specify
2245             mg
2250  other specify
2251            mcg
2255  other specify
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2269    unspecified
2270    unspecified
2272             ml
2278            mcg
2279          units
2280  other specify
2283  other specify
2301  other specify
2302             ml
2333            mcg
2339          drops
2342          drops
2345            mcg
2347            mcg
2352            mcg
2356            mcg
2384  other specify
2386  other specify
2390  other specify
2398  other specify
2404  other specify
2405  other specify
2406            tsp
2408  other specify
2409             mg
2411             ml
2412             mg
2418            mcg
2419            mcg
2424             mg
2425             mg
2426             mg
2427             mg
2428             mg
2450             mg
2453             mg
2455             mg
2456             mg
2463  other specify
2464          units
2467            tbs
2473          drops
2474          drops
2477             mg
2478             mg
2479  other specify
2481  other specify
2482  other specify
2483  other specify
2486  other specify
2487  other specify
2490  other specify
2491  other specify
2492  other specify
2499  other specify
2500  other specify
2501             mg
2502             mg
2503             mg
2504  other specify
2505  other specify
2506  other specify
2508  other specify
2517             mg
2518  other specify
2534          drops
2539  other specify
2540  other specify
2542  other specify
2543  other specify
2544             mg
2545  other specify
2546  other specify
2547  other specify
2548  other specify
2549    unspecified
2550    unspecified
2558  other specify
2559  other specify
2560  other specify
2562             mg
2566             mg
2572  other specify
2575    unspecified
2578  other specify
2580  other specify
2583             ml
2587             mg
2588             mg
2589             mg
2599          drops
2600  other specify
2627             mg
2636             mg
2642  other specify
2651  other specify
2652          drops
2653          drops
2655    unspecified
2659  other specify
2660  other specify
2661  other specify
2699  other specify
2710  other specify
2721          drops
2726  other specify
2731             mg
2735             mg
2737             mg
2738             mg
2739             mg
2742  other specify
2743  other specify
2745  other specify
2746  other specify
2748  other specify
2749  other specify
2750             mg
2753  other specify
2756  other specify
2805             mg
2808             mg
2815             mg
2817  other specify
2818  other specify
2825  other specify
2826  other specify
2827  other specify
2828  other specify
2833          units
2838  other specify
2839             ml
2842             oz
2844             mg
2846  other specify
2855  other specify
2869          units
2897  other specify
2900  other specify
2903  other specify
2904  other specify
2905  other specify
2907  other specify
2910  other specify
2911  other specify
2912  other specify
2913             gm
2919  other specify
2920  other specify
2921  other specify
2922  other specify
2923  other specify
2925  other specify
2926  other specify
2927  other specify
2941             mg
2942  other specify
2943  other specify
2944          drops
2946          drops
2951          drops
2958  other specify
2959  other specify
2960  other specify
2961  other specify
2962  other specify
2963  other specify
2964  other specify
2968  other specify
2974  other specify
2975  other specify
2978  other specify
2980          drops
2981             mg
2982             mg
2988          drops
2993    unspecified
2997             mg
3002             mg
3003  other specify
3007          drops
3028          drops
3031    unspecified
3043          drops
3051            mcg
3055  other specify
3058  other specify
3060  other specify
3092             mg
3095  other specify
3096             mg
3108             mg
3110          drops
3119          drops
3140  other specify
3146             mg
3147          drops
3179             mg
3180             mg
3208             mg
3209             mg
3212             ml
3246  other specify
3247  other specify
3250  other specify
3251  other specify
3253  other specify
3254  other specify
3255  other specify
3257            mcg
3261             mg
3270             mg
3271  other specify
3278  other specify
3280  other specify
3284  other specify
3287  other specify
3291  other specify
3293  other specify
3294  other specify
3300  other specify
3303             mg
3305  other specify
3312  other specify
3313  other specify
3339  other specify
3342  other specify
3345             mg
3346             mg
3350          units
3359  other specify
3360  other specify
3366          drops
3372          units
3375          units
3376  other specify
3384  other specify
3394    unspecified
3399             mg
3403             mg
3404  other specify
3405  other specify
3406  other specify
3407  other specify
3408  other specify
3421          drops
3422          drops
3423             ml
3425  other specify
3426  other specify
3429          units
3437          drops
3439          drops
3444             mg
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3451             mg
3455             mg
3456  other specify
3457  other specify
3458  other specify
3459             mg
3465             mg
3487  other specify
3488  other specify
3490  other specify
3491  other specify
3492  other specify
3495  other specify
3496  other specify
3497  other specify
3498  other specify
3512  other specify
3513  other specify
3514  other specify
3515          units
3516  other specify
3517    unspecified
3519  other specify
3520             mg
3522             mg
3525            mcg
3526            mcg
3530  other specify
3531          drops
3535          drops
3581  other specify
3588  other specify
3600             ml
3601             mg
3619             mg
3622  other specify
3631  other specify
3632  other specify
3635             mg
3636             ml
3639          drops
3640          drops
3641  other specify
3649             mg
3650          units
3651             mg
3652             mg
3666  other specify
3667  other specify
3675  other specify
3684  other specify
3685  other specify
3691  other specify
3692  other specify
3693  other specify
3698  other specify
3699  other specify
3701  other specify
3704  other specify
3705  other specify
3706             mg
3710    unspecified
3718          drops
3719  other specify
3725            mcg
3726  other specify
3735          drops
3738             mg
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3750             mg
3760             mg
3773          drops
3781          drops
3782          drops
3783          drops
3784             mg
3785             mg
3786             mg
3789    unspecified
3797  other specify
3798  other specify
3800  other specify
3803             mg
3804             mg
3815          units
3829          drops
3830             ml
3835            tbs
3836            tbs
3837             mg
3838          units
3839             mg
3840  other specify
3848  other specify
3857  other specify
3858  other specify
3859  other specify
3860  other specify
3861             gm
3867          drops
3870             mg
3871             mg
3872          units
3874  other specify
3881            mcg
3884  other specify
3885  other specify
3886  other specify
3889  other specify
3890  other specify
3896  other specify
3897  other specify
3898    unspecified
3900            mcg
3902  other specify
3903  other specify
3904  other specify
3906  other specify
3907  other specify
3911  other specify
3912  other specify
3936  other specify
3938  other specify
3942  other specify
3943  other specify
3944  other specify
3945          drops
3946  other specify
3952  other specify
3955  other specify
3972  other specify
3980  other specify
3981  other specify
3984  other specify
3985  other specify
3989  other specify
3990  other specify
4000    unspecified
4017  other specify
4030             mg
4031  other specify
4042    unspecified
4044             ml
4045  other specify
4047             mg
4058  other specify
4059             mg
4060            mcg
4063            mcg
4064             mg
4066  other specify
4067  other specify
4068             ml
4069             ml
4070             mg
4071  other specify
4072  other specify
4073  other specify
4074             ml
4075             mg
4076             mg
4077             mg
4087          drops
4088  other specify
4089          drops
4092  other specify
4095  other specify
4096             mg
4097             mg
4111  other specify
4112  other specify
4113          drops
4114          drops
4116             mg
4117  other specify
4118  other specify
4119          drops
4120  other specify
4122  other specify
4125             mg
4127  other specify
4128  other specify
4130  other specify
4131  other specify
4132    unspecified
4133    unspecified
4134          drops
4159             ml
4160             ml
4161             mg
4162             ml
4172  other specify
4183  other specify
4184          units
4189  other specify
4190  other specify
4191  other specify
4193          drops
4198  other specify
4199  other specify
4204  other specify
4209  other specify
4210  other specify
4212             mg
4213             mg
4215             mg
4216          drops
4218          drops
4229  other specify
4234             mg
4244             ml
4245          drops
4247            mcg
4265          drops
4266          drops
4274    unspecified
4281             mg
4282             mg
4298  other specify
4299  other specify
4302  other specify
4303  other specify
4304  other specify
4305  other specify
4306  other specify
4307  other specify
4308             mg
4309             mg
4311             mg
4313  other specify
4314  other specify
4323  other specify
4324  other specify
4325  other specify
4326  other specify
4334             ml
4336  other specify
4338  other specify
4341             mg
4348  other specify
4349  other specify
4350  other specify
4351  other specify
4353  other specify
4354  other specify
4359  other specify
4360  other specify
4368             mg
4371             mg
4384             mg
4389  other specify
4390  other specify
4395             mg
4405             mg
4409  other specify
4426  other specify
4427  other specify
4428  other specify
4430  other specify
4431  other specify
4444  other specify
4445  other specify
4446  other specify
4454  other specify
4469  other specify
4470  other specify
4471  other specify
4472  other specify
4480  other specify
4481  other specify
4483  other specify
4486  other specify
4488             ml
4491             ml
4497  other specify
4498  other specify
4499  other specify
4500  other specify
4501  other specify
4502  other specify
4504  other specify
4505  other specify
4509  other specify
4510  other specify
4511  other specify
4515  other specify
4516  other specify
4517             gm
4524  other specify
4532  other specify
4533            tsp
4534  other specify
4535             mg
4536  other specify
4544          units
4545  other specify
4547          drops
4558  other specify
4559  other specify
4560  other specify
4561  other specify
4562  other specify
4564  other specify
4565  other specify
4566  other specify
4567  other specify
4568  other specify
4569  other specify
4587          units
4597  other specify
4598             mg
4599            mcg
4600             mg
4611             mg
4617  other specify
4627             ml
4628             ml
4629             mg
4630  other specify
4631             ml
4634  other specify
4638             ml
4640             gm
4642             mg
4643  other specify
4644          drops
4645          drops
4646  other specify
4647          drops
4648             mg
4649             ml
4651  other specify
4652  other specify
4654             ml
4655             mg
4688             mg
4693  other specify
4694  other specify
4695  other specify
4696             mg
4697             mg
4700             mg
4703             mg
4705             mg
4711          drops
4716             mg
4717             mg
4719          drops
4720          drops
4726  other specify
4738  other specify
4739  other specify
4743          drops
4744          drops
4745             mg
4748          units
4757          drops
4760  other specify
4761            tsp
4763  other specify
4764             oz
4766  other specify
4777  other specify
4780  other specify
4782  other specify
4798             mg
4801             mg
4802  other specify
4803          drops
4804             mg
4805          drops
4806  other specify
4807             mg
4813    unspecified
4824             ml
4826  other specify
4828  other specify
4832  other specify
4850  other specify
4853  other specify
4855             mg
4858             mg
4859             mg
4861             mg
4862            mcg
4881  other specify
4902  other specify
4904  other specify
4905             mg
4907  other specify
4908            mcg
4910  other specify
4912             mg
4913  other specify
4914             mg
4917            mcg
4935  other specify
4956  other specify
4960  other specify
4968             mg
4969             mg
4980  other specify
4981             mg
4989             mg
4990             mg
4996  other specify
4998          drops
5040             mg
5043          units
5046          units
5066  other specify
5067  other specify
5078  other specify
5122          units
5123          units
5125             ml
5127  other specify
5134          units
5140             mg
5150  other specify
5159    unspecified
5160    unspecified
5161    unspecified
5165             mg
5173  other specify
5174  other specify
5175             mg
5189  other specify
5191             mg
5192             mg
5193          drops
5195  other specify
5201             mg
5203  other specify
5210  other specify
5211  other specify
5212  other specify
5213  other specify
5214  other specify
5220  other specify
5221  other specify
5222  other specify
5223  other specify
5225  other specify
5234  other specify
5235  other specify
5243  other specify
5244  other specify
5247  other specify
5248  other specify
5253  other specify
5255  other specify
5256  other specify
5257  other specify
5258  other specify
5261  other specify
5262  other specify
5264  other specify
5265  other specify
5270  other specify
5271  other specify
5289  other specify
5332  other specify
5333  other specify
5334  other specify
5335  other specify
5336  other specify
5337            mcg
5340  other specify
5341  other specify
5354  other specify
5357          drops
5359            mcg
5360             mg
5361             mg
5362  other specify
5369  other specify
5377  other specify
5378  other specify
5379  other specify
5380  other specify
5382  other specify
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5391  other specify
5392  other specify
5403  other specify
5424  other specify
5428  other specify
5440             mg
5460          drops
5464             mg
5469             ml
5483  other specify
5484             mg
5485             mg
5490             mg
5491          drops
5492  other specify
5497  other specify
5498  other specify
5499  other specify
5500  other specify
5501  other specify
5502  other specify
5507  other specify
5508  other specify
5509  other specify
5511  other specify
5513  other specify
5527  other specify
5528  other specify
5529  other specify
5533  other specify
5534  other specify
5535          drops
5537  other specify
5541  other specify
5542  other specify
5545  other specify
5546  other specify
5552            tbs
5553            tbs
5556  other specify
5557  other specify
5568  other specify
5571  other specify
5574  other specify
5576  other specify
5577  other specify
5578  other specify
5595  other specify
5600  other specify
5601  other specify
5602  other specify
5607             mg
5626  other specify
5627          units
5628          units
5629             mg
5630             mg
5631  other specify
5632  other specify
5641             ml
5649  other specify
5668            mcg
5681  other specify
5682  other specify
5695             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5728             mg
5729          drops
5731          drops
5737             mg
5747  other specify
5748  other specify
5760  other specify
5762             mg
5768  other specify
5771             mg
5774             mg
5777  other specify
5793  other specify
5794  other specify
5804             mg
5814            tsp
5834            mcg
5839             mg
5840             mg
5858  other specify
5869            mcg
5872  other specify
5873  other specify
5877  other specify
5884  other specify
5887          drops
5890  other specify
5896  other specify
5913  other specify
5917          drops
5925  other specify
5928  other specify
5930  other specify
5931  other specify
5932    unspecified
5933  other specify
5934  other specify
5935          drops
5936  other specify
5937  other specify
5941  other specify
5942  other specify
5945  other specify
5963  other specify
5964  other specify
5965             mg
5966             mg
5967             mg
5968             mg
5976          drops
5977             mg
5978             mg
5979             mg
5980  other specify
5981  other specify
5985  other specify
5987             mg
5988             mg
5991  other specify
5992  other specify
5993            mcg
5994          drops
6000             mg
6002  other specify
6003             mg
6004             ml
6005             gm
6012  other specify
6014            mcg
6015            mcg
6016             mg
6017             mg
6021            mcg
6022             mg
6036             mg
6038  other specify
6039  other specify
6059  other specify
6060  other specify
6063  other specify
6068          units
6069  other specify
6070             mg
6071  other specify
6072  other specify
6073  other specify
6074  other specify
6076  other specify
6078  other specify
6088  other specify
6089             mg
6090  other specify
6092             mg
6093  other specify
6094             ml
6095  other specify
6096             mg
6097             mg
6098             mg
6099             mg
6101             mg
6102             mg
6104             mg
6109             mg
6129  other specify
6130  other specify
6132  other specify
6133  other specify
6134          units
6135          units
6136  other specify
6137  other specify
6139  other specify
6140  other specify
6148             mg
6149             mg
6150             mg
6152             mg
6160  other specify
6161             mg
6164  other specify
6189             mg
6200  other specify
6202  other specify
6206  other specify
6208  other specify
6215  other specify
6217             mg
6218  other specify
6221          drops
6224  other specify
6225  other specify
6226  other specify
6231  other specify
6232  other specify
6244          drops
6254  other specify
6255             mg
6257  other specify
6258  other specify
6262  other specify
6263  other specify
6266          drops
6267          drops
6275  other specify
6282            mcg
6283  other specify
6284             mg
6293  other specify
6296            tsp
6302            mcg
6307             mg
6312    unspecified
6319    unspecified
6320    unspecified
6325             mg
6326  other specify
6328             mg
6329  other specify
6331  other specify
6341  other specify
6342             oz
6343             mg
6354  other specify
6358  other specify
6362  other specify
6382             mg
6388          drops
6390    unspecified
6395  other specify
6399          drops
6405  other specify
6406  other specify
6411          units
6437             mg
6441             mg
6443          drops
6444  other specify
6451  other specify
6459             mg
6461          drops
6474  other specify
6475  other specify
6486             mg
6495  other specify
6497  other specify
6498             mg
6499  other specify
6500  other specify
6522  other specify
6523  other specify
6527  other specify
6528  other specify
6555  other specify
6562  other specify
6565  other specify
6569  other specify
6570  other specify
6571  other specify
6573  other specify
6579  other specify
6581  other specify
6594  other specify
6602  other specify
6606  other specify
6612  other specify
6625  other specify
6636  other specify
6639  other specify
6644  other specify
6647  other specify
6648  other specify
6649             mg
6650             ml
6657  other specify
6658  other specify
6662  other specify
6663  other specify
6674  other specify
6675  other specify
6676  other specify
6680  other specify
6683  other specify
6687  other specify
6688  other specify
6693  other specify
6694             mg
6696  other specify
6697          drops
6698  other specify
6702  other specify
6703          drops
6714             mg
6715  other specify
6716  other specify
6717  other specify
6733            mcg
6739             mg
6751    unspecified
6759          drops
6760  other specify
6763            mcg
6764  other specify
6778  other specify
6779  other specify
6781  other specify
6783  other specify
6786          drops
6789            mcg
6796  other specify
6797             mg
6815             mg
6816  other specify
6817  other specify
6818          drops
6824    unspecified
6826             mg
6828  other specify
6839             mg
6854  other specify
6864             ml
6868  other specify
6880  other specify
6886  other specify
6891  other specify
6892  other specify
6898  other specify
6906  other specify
6908  other specify
6909  other specify
6910  other specify
6928  other specify
6934          drops
6935          drops
6936          drops
6938  other specify
6946             mg
6956    unspecified
6957  other specify
6981  other specify
6982  other specify
6983  other specify
6984  other specify
6986             mg
6992  other specify
6995  other specify
6998  other specify
6999  other specify
7002             mg
7005    unspecified
7006    unspecified
7013             mg
7017  other specify
7018          drops
7019             mg
7021  other specify
7023             ml
7025          drops
7027             gm
7030             mg
7042          drops
7047            mcg
7053            mcg
7054            mcg
7064  other specify
7065  other specify
7067  other specify
7071          drops
7092  other specify
7093  other specify
7095             mg
7096             mg
7116          drops
7127    unspecified
7130             mg
7131            mcg
7137  other specify
7149  other specify
7151  other specify
7152  other specify
7153  other specify
7154  other specify
7155  other specify
7172  other specify
7173  other specify
7175             oz
7177             oz
7180  other specify
7189  other specify
7208  other specify
7218             mg
7219  other specify
7240          drops
7243            mcg
7247  other specify
7248  other specify
7249  other specify
7260  other specify
7261  other specify
7262  other specify
7285             mg
7286             mg
7291  other specify
7294             mg
7295  other specify
7297  other specify
7320  other specify
7342  other specify
7343  other specify
7344  other specify
7345  other specify
7346          drops
7371  other specify
7413  other specify
7426             mg
7432             mg
7499             mg
7503  other specify
7510  other specify
7511  other specify
7512  other specify
7513  other specify
7519            mcg
7521  other specify
7522             mg
7523            mcg
7524  other specify
7525            mcg
7526             mg
7551  other specify
7555  other specify
7563  other specify
7564    unspecified
7565            mcg
7566  other specify
7568             mg
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7583  other specify
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7598  other specify
7635             mg
7636             mg
7637             mg
7660  other specify
7671             mg
7673  other specify
7674  other specify
7675             mg
7678  other specify
7679  other specify
7681             mg
7682  other specify
7683  other specify
7684  other specify
7692             mg
7696             mg
7699             mg
7701             mg
7705  other specify
7732  other specify
7742          units
7743          units
7744  other specify
7745  other specify
7746  other specify
7747  other specify
7748          units
7749          units
7750          units
7751          drops
7754             ml
7759  other specify
7763  other specify
7772    unspecified
7776    unspecified
7783  other specify
7784  other specify
7787          drops
7795  other specify
7812  other specify
7818    unspecified
7820    unspecified
7822    unspecified
7832             ml
7837             mg
7839  other specify
7840             mg
7845          drops
7846          drops
7848             ml
7852    unspecified
7853  other specify
7854    unspecified
7862             mg
7864             mg
7883  other specify
7884  other specify
7885             ml
7887          units
7889          units
7895          drops
7926  other specify
7929  other specify
7934             mg
7935             mg
7941             ml
7944          drops
7946          drops
7961  other specify
7966  other specify
7967  other specify
7968  other specify
7969  other specify
7970             mg
7973          drops
7987             mg
7988  other specify
7993  other specify
7995             mg
7998  other specify
8000  other specify
8009  other specify
8012  other specify
8014  other specify
8017  other specify
8029  other specify
8030  other specify
8040            mcg
8042             mg
8043             mg
8044             mg
8045             mg
8063  other specify
8066  other specify
8067  other specify
8069  other specify
8070  other specify
8071  other specify
8075    unspecified
8086  other specify
8091             mg
8098             oz
8099             oz
8100             mg
8120  other specify
8121  other specify
8122             mg
8123  other specify
8125          units
8128  other specify
8130  other specify
8131  other specify
8135          drops
8136  other specify
8137  other specify
8138  other specify
8139  other specify
8140  other specify
8160  other specify
8165             mg
8182  other specify
8184  other specify
8185  other specify
8186  other specify
8187  other specify
8188  other specify
8195  other specify
8196  other specify
8205  other specify
8206  other specify
8207  other specify
8208  other specify
8209             mg
8210          units
8211          units
8212  other specify
8214             mg
8215  other specify
8220  other specify
8221  other specify
8222  other specify
8223          units
8224            mcg
8234  other specify
8235  other specify
8236  other specify
8238          units
8241             mg
8244  other specify
8248  other specify
8251             mg
8252  other specify
8280    unspecified
8284  other specify
8293  other specify
8296  other specify
8297  other specify
8298          drops
8299  other specify
8300          drops
8301  other specify
8302  other specify
8303             mg
8304             ml
8305  other specify
8306  other specify
8307  other specify
8311          drops
8312          drops
8313          drops
8314             mg
8315             mg
8326  other specify
8332  other specify
8335  other specify
8337             mg
8338             mg
8340  other specify
8341          drops
8349  other specify
8354  other specify
8355  other specify
8358  other specify
8359  other specify
8362  other specify
8369  other specify
8370  other specify
8371  other specify
8376  other specify
8377  other specify
8378  other specify
8389             mg
8405  other specify
8408  other specify
8410  other specify
8418  other specify
8420  other specify
8421  other specify
8424  other specify
8425  other specify
8427  other specify
8435  other specify
8436  other specify
8440            mcg
8441            mcg
8451            mcg
8452             mg
8454  other specify
8461  other specify
8465  other specify
8466  other specify
8467  other specify
8475  other specify
8478  other specify
8489  other specify
8509  other specify
8510             mg
8514  other specify
8515  other specify
8528  other specify
8531  other specify
8532  other specify
8533  other specify
8534  other specify
8541             oz
8546          drops
8547             mg
8550             mg
8554  other specify
8555  other specify
8575             mg
8578  other specify
8581  other specify
8582  other specify
8583          drops
8584          drops
8585  other specify
8586  other specify
8588          drops
8591  other specify
8607  other specify
8609  other specify
8613             ml
8673             mg
8674  other specify
8675  other specify
8676  other specify
8677  other specify
8685             mg
8694  other specify
8695             mg
8697             ml
8702  other specify
8707  other specify
8721             mg
8731  other specify
8735  other specify
8736  other specify
8744    unspecified
8745    unspecified
8756  other specify
8757             mg
8759  other specify
8760  other specify
8768  other specify
8769  other specify
8770  other specify
8771  other specify
8776  other specify
8777  other specify
8778  other specify
8779  other specify
8780  other specify
8781  other specify
8786  other specify
8787  other specify
8790  other specify
8791  other specify
8792    unspecified
8793  other specify
8794  other specify
8795  other specify
8796  other specify
8797             mg
8805  other specify
8808  other specify
8815  other specify
8819  other specify
8820  other specify
8825             mg
8826  other specify
8827  other specify
8828  other specify
8831            mcg
8833  other specify
8834             mg
8837             mg
8843             ml
8851    unspecified
8852    unspecified
8853    unspecified
8855            mcg
8860          drops
8875    unspecified
8876    unspecified
8877          drops
8879  other specify
8885            mcg
8908             mg
8911  other specify
8929  other specify
8930            mcg
8961  other specify
8962            mcg
8994             mg
8995             ml
8997             ml
8998             ml
9026  other specify
9046  other specify
9047          drops
9049          drops
9050  other specify
9052             oz
9053  other specify
9054  other specify
9055  other specify
9056             mg
9060  other specify
9064          drops
9065             gm
9070  other specify
9071  other specify
9084    unspecified
9094  other specify
9095  other specify
9098  other specify
9099             mg
9100  other specify
9101  other specify
9109  other specify
9118  other specify
9132  other specify
9135             mg
9136  other specify
9137             mg
9156          drops
9160  other specify
9161  other specify
9164  other specify
9170  other specify
9171  other specify
9172  other specify
9187          drops
9189  other specify
9193  other specify
9202  other specify
9229             mg
9230  other specify
9233             mg
9236  other specify
9239             ml
9240  other specify
9241  other specify
9242  other specify
9243             mg
9244          drops
9245             mg
9252  other specify
9253  other specify
9254  other specify
9259          units
9267  other specify
9268  other specify
9269  other specify
9270  other specify
9271             mg
9290  other specify
9292             mg
9294             mg
9295             mg
9297             mg
9299  other specify
9312            mcg
9337            mcg
9338             mg
9339             mg
9348             mg
9384          drops
9385          drops
9386  other specify
9387  other specify
9390            mcg
9416             ml
9418          drops
9421  other specify
9422  other specify
9426  other specify
9429  other specify
9432  other specify
9433            tbs
9434  other specify
9435  other specify
9436  other specify
9438  other specify
9447          drops
9452            mcg
9453  other specify
9454  other specify
9485             mg
9494  other specify
9495  other specify
9511             mg
9516  other specify
9524             ml
9544  other specify
9546  other specify
9548  other specify
9549  other specify
9575  other specify
9578          units
9584  other specify
9588          drops
9592    unspecified
9596          drops
9600  other specify
9601  other specify
9602             mg
9603             mg
9604             mg
9609  other specify
9610  other specify
9612  other specify
9613  other specify
9614  other specify
9615  other specify
9616  other specify
9617  other specify
9618  other specify
9619  other specify
9620  other specify
9621  other specify
9632  other specify
9635             mg
9638  other specify
9640  other specify
9641  other specify
9643  other specify
9657  other specify
9712  other specify
9717  other specify
9718  other specify
9723          units
9729  other specify
9730  other specify
9759  other specify
9760             ml
9761  other specify
9763             mg
9764             mg
9765             mg
9766  other specify
9770  other specify
9771  other specify
9785            mcg
9791             mg
9800  other specify
9807          drops
9808          drops
9809          drops
9815             mg
9821  other specify
9823             ml
9824          drops
9825             ml
9826  other specify
9827          drops
9828             mg
9829             mg
9833  other specify
9837    unspecified
9840    unspecified
9843    unspecified
9860             mg
9862             mg
9863  other specify
9865  other specify
9873    unspecified
9877    unspecified
9884  other specify
9889  other specify
9890  other specify
9891  other specify
9892  other specify
9893  other specify
9894          units
9895          units
9896          units
9897  other specify
9898  other specify
9899  other specify
9900  other specify
9901  other specify
9902  other specify
9903  other specify
9907    unspecified
9917  other specify
9918  other specify
9919             mg
9920             mg
9923             mg
9924             mg
9928    unspecified
9931  other specify
9935  other specify
9942  other specify
9943             mg
9944  other specify
9945  other specify
9960            mcg
9961  other specify
9962            mcg
9963  other specify
9966  other specify
9967            mcg
9968  other specify
9969            mcg
9970  other specify
9971            mcg
9972          units
10017 other specify
10026            mg
10027 other specify
10037         drops
10042   unspecified
10053 other specify
10056           mcg
10057            mg
10061 other specify
10063 other specify
10066 other specify
10074         drops
10075           mcg
10092         drops
10093   unspecified
10106           mcg
10107            ml
10108           mcg
10109            ml
10111           mcg
10112           mcg
10113            ml
10115 other specify
10116         drops
10119 other specify
10120         drops
10121 other specify
10123            mg
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134 other specify
10149         drops
10151         drops
10152            mg
10153            mg
10154            mg
10160            mg
10164 other specify
10167 other specify
10168            mg
10169            mg
10170 other specify
10176 other specify
10187 other specify
10188 other specify
10195            mg
10198            ml
10200 other specify
10209 other specify
10219 other specify
10230 other specify
10231 other specify
10232            mg
10233            mg
10234            mg
10235           mcg
10236           mcg
10245 other specify
10249 other specify
10260   unspecified
10264 other specify
10271            mg
10273 other specify
10274 other specify
10275 other specify
10276 other specify
10292            mg
10301            mg
10312         drops
10313            mg
10314            mg
10316            mg
10320            mg
10324            ml
10332 other specify
10333 other specify
10334 other specify
10335 other specify
10343            mg
10345 other specify
10347 other specify
10348 other specify
10349 other specify
10356 other specify
10365 other specify
10366 other specify
10367           mcg
10370            mg
10372 other specify
10374 other specify
10379            mg
10400            ml
10403 other specify
10404           mcg
10405 other specify
10408 other specify
10409            mg
10410            mg
10412            mg
10429         drops
10432           mcg
10435            ml
10436 other specify
10441   unspecified
10445 other specify
10470            gm
10477 other specify
10478 other specify
10483           mcg
10485           mcg
10487           mcg
10499            mg
10500            mg
10502            mg
10503 other specify
10505 other specify
10506           mcg
10510           mcg
10511           mcg
10523            mg
10524            mg
10525            ml
10526 other specify
10529 other specify
10555 other specify
10557   unspecified
10565   unspecified
10573   unspecified
10575 other specify
10576            mg
10577            mg
10578            mg
10579            mg
10580            ml
10583 other specify
10587            mg
10588 other specify
10589 other specify
10590 other specify
10591 other specify
10594 other specify
10610           mcg
10617            ml
10618 other specify
10619 other specify
10624 other specify
10628 other specify
10642            oz
10650            mg
10652            mg
10653 other specify
10655 other specify
10656            mg
10658            mg
10667            mg
10668            mg
10669            mg
10671            mg
10678            mg
10682            mg
10683 other specify
10684 other specify
10685 other specify
10686 other specify
10687 other specify
10688           tbs
10689 other specify
10693            mg
10694 other specify
10696         drops
10697           tbs
10701            mg
10706            mg
10707 other specify
10711 other specify
10712 other specify
10713 other specify
10714 other specify
10715           tbs
10717 other specify
10718         drops
10725 other specify
10726 other specify
10727 other specify
10740   unspecified
10743 other specify
10751   unspecified
10755           mcg
10756 other specify
10766           mcg
10769           mcg
10780 other specify
10781 other specify
10782            mg
10783            mg
10792           mcg
10794 other specify
10796 other specify
10825 other specify
10827 other specify
10830 other specify
10837 other specify
10841 other specify
10842 other specify
10843 other specify
10846 other specify
10849 other specify
10850 other specify
10851 other specify
10853 other specify
10863 other specify
10865         units
10866         units
10867            mg
10870 other specify
10871 other specify
10874 other specify
10877 other specify
10878 other specify
10892         drops
10893           mcg
10894            mg
10896         drops
10898            ml
10899         drops
10900           mcg
10901         drops
10905 other specify
10925            mg
10926            mg
10928 other specify
10929 other specify
10930            mg
10932 other specify
10933 other specify
10934 other specify
10938 other specify
10950 other specify
10953         drops
10959         drops
10966 other specify
10967 other specify
10970 other specify
10971 other specify
11003 other specify
11006         units
11007 other specify
11008 other specify
11009 other specify
11010 other specify
11011 other specify
11016 other specify
11021   unspecified
11035 other specify
11036 other specify
11037 other specify
11038 other specify
11052 other specify
11065            mg
11066            mg
11067            mg
11069 other specify
11070 other specify
11071            mg
11085   unspecified
11088   unspecified
11091 other specify
11093         drops
11112            mg
11134 other specify
11142   unspecified
11144            oz
11145            oz
11152 other specify
11153 other specify
11155         units
11156         units
11158 other specify
11159         units
11163         units
11165 other specify
11166 other specify
11182   unspecified
11186 other specify
11189            mg
11208            mg
11210 other specify
11211 other specify
11212 other specify
11213   unspecified
11214            mg
11224 other specify
11227 other specify
11228 other specify
11229           mcg
11230         drops
11233 other specify
11241            mg
11242 other specify
11276            mg
11291 other specify
11292 other specify
11293 other specify
11294 other specify
11295 other specify
11296 other specify
11301            mg
11305            mg
11307 other specify
11311           mcg
11312           mcg
11315            mg
11316            mg
11317            mg
11318            mg
11326 other specify
11327 other specify
11338 other specify
11340            mg
11341 other specify
11342 other specify
11346 other specify
11349 other specify
11350         units
11351         units
11352         units
11353            mg
11354         units
11356 other specify
11360   unspecified
11363            mg
11366 other specify
11368 other specify
11377 other specify
11385 other specify
11386 other specify
11387 other specify
11388 other specify
11394 other specify
11415 other specify
11425 other specify
11436 other specify
11437 other specify
11441            mg
11461 other specify
11464 other specify
11470   unspecified
11471   unspecified
11473 other specify
11474 other specify
11477 other specify
11482            mg
11493   unspecified
11509 other specify
11511            mg
11536            mg
11537         units
11538         units
11545            mg
11546 other specify
11547            mg
11551   unspecified
11560 other specify
11561 other specify
11562 other specify
11563            mg
11564         units
11565            mg
11566            mg
11567 other specify
11568 other specify
11570 other specify
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11589 other specify
11590 other specify
11593 other specify
11596 other specify
11599 other specify
11600 other specify
11620         drops
11621         drops
11627         units
11628         units
11630         units
11633            mg
11634            mg
11635           mcg
11636            mg
11637 other specify
11641            mg
11651 other specify
11652 other specify
11653 other specify
11654 other specify
11655 other specify
11656 other specify
11659            ml
11660 other specify
11661 other specify
11662 other specify
11663 other specify
11664 other specify
11665            mg
11666         drops
11667         drops
11669            mg
11671         drops
11673         drops
11678 other specify
11680 other specify
11681 other specify
11683 other specify
11684 other specify
11691 other specify
11692         drops
11693           tbs
11695 other specify
11698 other specify
11701 other specify
11702           mcg
11709 other specify
11710 other specify
11719         units
11722         drops
11723            mg
11725            mg
11735 other specify
11741 other specify
11742            ml
11790         drops
11802            mg
11806 other specify
11812 other specify
11813            mg
11814 other specify
11815 other specify
11816 other specify
11817            mg
11822 other specify
11823 other specify
11824 other specify
11825 other specify
11826            mg
11832 other specify
11833 other specify
11835 other specify
11836 other specify
11837 other specify
11840            mg
11844            mg
11846            mg
11847 other specify
11848 other specify
11850            mg
11856         drops
11861 other specify
11862 other specify
11873 other specify
11874 other specify
11875 other specify
11876            mg
11877            mg
11878            mg
11879         drops
11880            mg
11881 other specify
11882 other specify
11883            mg
11889 other specify
11898           mcg
11911            mg
11919 other specify
11926           mcg
11930 other specify
11959            mg
11960 other specify
11962            mg
11964 other specify
11978 other specify
11979            ml
11980 other specify
11983         units
11993         drops
12009         drops
12010         drops
12014 other specify
12018 other specify
12019 other specify
12020 other specify
12023            mg
12025            mg
12043            mg
12047            mg
12048            ml
12051 other specify
12054 other specify
12090 other specify
12108         drops
12111 other specify
12120   unspecified
12128 other specify
12129 other specify
12130         drops
12135 other specify
12136 other specify
12154 other specify
12155 other specify
12159 other specify
12160 other specify
12164 other specify
12173 other specify
12190 other specify
12194           mcg
12213           mcg
12215           mcg
12221           tsp
12222           tsp
12223 other specify
12261 other specify
12265 other specify
12266 other specify
12267 other specify
12268 other specify
12271 other specify
12272 other specify
12273 other specify
12275 other specify
12276 other specify
12279         drops
12283            mg
12299            mg
12306 other specify
12309 other specify
12313            mg
12314            mg
12322            mg
12324 other specify
12334            mg
12336            mg
12337 other specify
12342 other specify
12343 other specify
12345            mg
12346            mg
12349 other specify
12351            mg
12353            mg
12364            mg
12366 other specify
12373 other specify
12375            mg
12376            mg
12379            mg
12386            ml
12394   unspecified
12397            ml
12398           mcg
12401 other specify
12402 other specify
12405           tsp
12406 other specify
12409 other specify
12410 other specify
12411 other specify
12412            mg
12414 other specify
12415 other specify
12417 other specify
12418 other specify
12420 other specify
12421         units
12422         units
12423 other specify
12427   unspecified
12429         drops
12430 other specify
12431 other specify
12432 other specify
12433           mcg
12434            mg
12438           mcg
12439            mg
12453 other specify
12454 other specify
12455           mcg
12456 other specify
12457 other specify
12461 other specify
12462 other specify
12463           tbs
12466            mg
12469            mg
12470            mg
12471            mg
12472            mg
12473 other specify
12474 other specify
12475            mg
12476            mg
12477   unspecified
12481 other specify
12485         drops
12487            mg
12495 other specify
12496 other specify
12497 other specify
12498 other specify
12500 other specify
12506         drops
12511 other specify
12512 other specify
12513 other specify
12514         drops
12515         units
12516         units
12517            mg
12520 other specify
12521 other specify
12523 other specify
12528 other specify
12529 other specify
12530 other specify
12535 other specify
12536         units
12540 other specify
12541 other specify
12542 other specify
12543 other specify
12546 other specify
12547         units
12548         units
12549         units
12550 other specify
12551 other specify
12552 other specify
12553 other specify
12554 other specify
12567         drops
12569            mg
12571 other specify
12578           mcg
12580           mcg
12585           mcg
12588            mg
12589           mcg
12595            mg
12596            mg
12605            mg
12607            mg
12608            mg
12609            mg
12612           mcg
12613           mcg
12615            ml
12616 other specify
12620 other specify
12623 other specify
12630         units
12632         drops
12636   unspecified
12638 other specify
12639 other specify
12642           mcg
12645            mg
12686 other specify
12692            mg
12693 other specify
12694 other specify
12712         drops
12713            mg
12714 other specify
12730         drops
12732         drops
12735 other specify
12738            mg
12740            mg
12744            mg
12749            mg
12754            mg
12755            mg
12756         drops
12771 other specify
12774 other specify
12780 other specify
12781         drops
12784 other specify
12786 other specify
12787 other specify
12788 other specify
12795 other specify
12796 other specify
12797 other specify
12801 other specify
12826 other specify
12828 other specify
12833            mg
12836            mg
12837 other specify
12841 other specify
12849         drops
12850         drops
12860 other specify
12861         drops
12865         drops
12866 other specify
12870 other specify
12873         drops
12874            mg
12879 other specify
12880 other specify
12881 other specify
12882 other specify
12893            mg
12894         drops
12895 other specify
12901           mcg
12902            mg
12903            mg
12904            mg
12905            ml
12906 other specify
12907 other specify
12908 other specify
12909            mg
12910            mg
12911   unspecified
12916 other specify
12920 other specify
12929 other specify
12942 other specify
12943 other specify
12944 other specify
12945 other specify
12947            mg
12948 other specify
12949           mcg
12950            ml
12952 other specify
12953         drops
12955 other specify
12956 other specify
12957 other specify
12959 other specify
12962         drops
12963 other specify
12966 other specify
12979            oz
12987            mg
12988           mcg
12989           mcg
12990            mg
12992 other specify
12993           mcg
12994 other specify
12995 other specify
12996            mg
13005 other specify
13006 other specify
13008 other specify
13010   unspecified
13013   unspecified
13020   unspecified
13034 other specify
13041         drops
13049 other specify
13061 other specify
13062            ml
13063 other specify
13074   unspecified
13075         units
13076         units
13081   unspecified
13084            mg
13086            mg
13096 other specify
13098            mg
13104   unspecified
13108            mg
13109            mg
13110 other specify
13111 other specify
13112 other specify
13113            mg
13114            mg
13115            mg
13116            mg
13124 other specify
13126         drops
13127            ml
13129 other specify
13130 other specify
13133         drops
13136 other specify
13137 other specify
13138         drops
13139           mcg
13140            mg
13142 other specify
13143 other specify
13148            mg
13149 other specify
13150 other specify
13151 other specify
13152 other specify
13154            mg
13157 other specify
13159   unspecified
13160   unspecified
13167 other specify
13168 other specify
13169 other specify
13170 other specify
13171            mg
13173         drops
13183            mg
13184            mg
13187 other specify
13188            ml
13189           mcg
13190            mg
13195 other specify
13196 other specify
13198 other specify
13199 other specify
13208 other specify
13209 other specify
13233 other specify
13238            mg
13246 other specify
13248         units
13249         units
13262           mcg
13264           mcg
13270            mg
13271 other specify
13277         drops
13278 other specify
13279 other specify
13286            gm
13287            oz
13288           mcg
13297 other specify
13298 other specify
13299            mg
13307 other specify
13308 other specify
13309 other specify
13313 other specify
13314 other specify
13315         drops
13318         drops
13321 other specify
13331 other specify
13332 other specify
13333         units
13334            mg
13336 other specify
13340         drops
13341 other specify
13343 other specify
13344 other specify
13345         drops
13348            ml
13349            mg
13353         drops
13354 other specify
13355 other specify
13356            mg
13357 other specify
13376         units
13405            mg
13411   unspecified
13454 other specify
13455 other specify
13456            mg
13459 other specify
13460 other specify
13461 other specify
13462 other specify
13464            mg
13468 other specify
13470 other specify
13471 other specify
13475 other specify
13476 other specify
13479 other specify
13483 other specify
13484 other specify
13485            mg
13487            mg
13496         drops
13502         units
13503         units
13506 other specify
13532 other specify
13537            mg
13538 other specify
13562            mg
13563 other specify
13564            mg
13575 other specify
13576 other specify
13579         drops
13581            mg
13585            mg
13590 other specify
13594         drops
13595         drops
13601 other specify
13603            mg
13605            mg
13609 other specify
13615         drops
13619            mg
13623 other specify
13624 other specify
13625 other specify
13628 other specify
13631 other specify
13654 other specify
13657 other specify
13659         drops
13660 other specify
13666 other specify
13687            mg
13688            ml
13693 other specify
13715            mg
13723 other specify
13724 other specify
13730 other specify
13737 other specify
13740   unspecified
13741   unspecified
13747            mg
13756         drops
13766 other specify
13768         drops
13769 other specify
13774            mg
13775           mcg
13776 other specify
13781 other specify
13782 other specify
13783 other specify
13786 other specify
13796 other specify
13801 other specify
13803            mg
13841 other specify
13881            ml
13884            ml
13893            mg
13894            mg
13896 other specify
13897 other specify
13902            mg
13903            mg
13904            mg
13905            mg
13906            mg
13908            ml
13910 other specify
13911 other specify
13912   unspecified
13913   unspecified
13925            mg
13943         units
13946 other specify
13994         units
13995         units
13996         drops
13998 other specify
14006 other specify
14007 other specify
14008         drops
14050 other specify
14051 other specify
14055            mg
14059         drops
14060 other specify
14061            mg
14062            mg
14063         drops
14064 other specify
14071 other specify
14072            mg
14080            mg
14081 other specify
14106 other specify
14114 other specify
14118            mg
14120            ml
14121            ml
14122            ml
14123            ml
14124            ml
14128            mg
14129 other specify
14131 other specify
14147 other specify
14148 other specify
14151 other specify
14153 other specify
14154 other specify
14162 other specify
14163 other specify
14164 other specify
14165         units
14166         units
14169            mg
14170 other specify
14171 other specify
14172 other specify
14173 other specify
14174 other specify
14175         drops
14177 other specify
14178 other specify
14179 other specify
14180         drops
14181 other specify
14190         drops
14219 other specify
14221         drops
14228   unspecified
14238 other specify
14241            ml
14242           mcg
14243            ml
14245            ml
14249 other specify
14251         units
14282            mg
14284         units
14286 other specify
14291 other specify
14296           mcg
14297           mcg
14298 other specify
14301 other specify
14302 other specify
14319           mcg
14323 other specify
14324         drops
14330         drops
14334 other specify
14336         drops
14342            mg
14365 other specify
14366 other specify
14367 other specify
14372 other specify
14373 other specify
14375 other specify
14376 other specify
14378 other specify
14379 other specify
14380 other specify
14385            mg
14386            mg
14387            mg
14388            mg
14404            mg
14405            mg
14406 other specify
14407         drops
14408 other specify
14409         drops
14412            mg
14413            ml
14414 other specify
14415           mcg
14419            mg
14420           mcg
14421            mg
14426            mg
14428            mg
14429 other specify
14431 other specify
14432 other specify
14433 other specify
14434 other specify
14443 other specify
14444 other specify
14445 other specify
14446 other specify
14447 other specify
14448 other specify
14449 other specify
14451 other specify
14455 other specify
14471 other specify
14473 other specify
14477         units
14479 other specify
14488 other specify
14489 other specify
14490 other specify
14492            mg
14493            mg
14495 other specify
14498 other specify
14499 other specify
14512         units
14513         units
14527 other specify
14528 other specify
14529 other specify
14547 other specify
14562 other specify
14563            mg
14576 other specify
14577 other specify
14578 other specify
14582 other specify
14583 other specify
14584 other specify
14585 other specify
14586 other specify
14587 other specify
14588 other specify
14601 other specify
14605            mg
14608            mg
14623 other specify
14631 other specify
14637         drops
14645            mg
14649            mg
14650 other specify
14654 other specify
14656            mg
14657            mg
14658 other specify
14659            mg
14660            mg
14664 other specify
14665 other specify
14697 other specify
14699 other specify
14700 other specify
14701 other specify
14702           mcg
14711 other specify
14712 other specify
14713 other specify
14720 other specify
14721 other specify
14722 other specify
14723 other specify
14726 other specify
14727            mg
14728            mg
14730            mg
14731            mg
14733            mg
14734            mg
14737 other specify
14738 other specify
14744 other specify
14746 other specify
14748 other specify
14754 other specify
14755 other specify
14756         drops
14757         drops
14758            mg
14759            mg
14760 other specify
14763 other specify
14764         drops
14775   unspecified
14777   unspecified
14778   unspecified
14833            mg
14834            mg
14838            mg
14839            mg
14857         units
14858            mg
14861 other specify
14862            mg
14863            mg
14864         units
14867            mg
14870         units
14871         units
14874 other specify
14875 other specify
14878   unspecified
14883            mg
14884            mg
14899            ml
14907            mg
14911            mg
14913            mg
14914            mg
14928         units
14934         units
14943         units
14944            ml
14949            mg
14969           mcg
14972 other specify
14973 other specify
14974 other specify
14975 other specify
14976            mg
14977            ml
14978 other specify
14979 other specify
14981 other specify
14982 other specify
14983 other specify
14999           mcg
15001           mcg
15002            oz
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15017 other specify
15021           mcg
15022            oz
15023 other specify
15025            oz
15026            oz
15027            oz
15028            mg
15029            mg
15030            ml
15035         units
15036         units
15045            mg
15048 other specify
15055            mg
15059 other specify
15061 other specify
15077 other specify
15092            mg
15102         drops
15129 other specify
15130           mcg
15131            mg
15132            mg
15137 other specify
15139 other specify
15140 other specify
15144         units
15145         units
15150 other specify
15151         units
15155   unspecified
15170            mg
15172            mg
15173            mg
15174            mg
15179            mg
15184            mg
15196 other specify
15197 other specify
15202           mcg
15203           mcg
15209 other specify
15213 other specify
15244            mg
15250 other specify
15252         drops
15253            mg
15256         units
15259           tsp
15268 other specify
15269 other specify
15274   unspecified
15308 other specify
15309 other specify
15310 other specify
15311 other specify
15314         units
15315 other specify
15317 other specify
15319            mg
15321 other specify
15322 other specify
15323            oz
15332 other specify
15333            gm
15334 other specify
15337 other specify
15339            mg
15345            mg
15348            mg
15360            mg
15361 other specify
15362 other specify
15363         drops
15365 other specify
15366 other specify
15367 other specify
15373 other specify
15374 other specify
15375 other specify
15376 other specify
15377 other specify
15378 other specify
15379            mg
15383            mg
15384            mg
15402            oz
15412           mcg
15441            mg
15445         drops
15448           mcg
15451 other specify
15453 other specify
15454   unspecified
15455            mg
15456            mg
15512         units
15513         units
15515 other specify
15524 other specify
15527 other specify
15528            mg
15530 other specify
15531            mg
15533 other specify
15545 other specify
15551 other specify
15552 other specify
15554 other specify
15555 other specify
15556 other specify
15558            mg
15563 other specify
15581 other specify
15582            mg
15583            mg
15584         drops
15585 other specify
15586 other specify
15587            mg
15588 other specify
15589 other specify
15590 other specify
15591 other specify
15592         drops
15593 other specify
15594 other specify
15597 other specify
15598 other specify
15599 other specify
15600 other specify
15601 other specify
15602            mg
15603   unspecified
15604   unspecified
15613           tbs
15614         drops
15616           mcg
15618           mcg
15633            mg
15636         units
15649 other specify
15650 other specify
15661 other specify
15662         drops
15663 other specify
15667         drops
15669           mcg
15670            mg
15672           mcg
15673           mcg
15674            mg
15675 other specify
15689 other specify
15690         units
15691         units
15692         units
15693         units
15699           mcg
15701 other specify
15705         drops
15706 other specify
15707            mg
15712 other specify
15715            mg
15733           mcg
15750   unspecified
15757 other specify
15758 other specify
15767         drops
15768         drops
15769         drops
15770         drops
15776            mg
15778 other specify
15781 other specify
15782 other specify
15787            mg
15788 other specify
15790 other specify
15796            mg
15799   unspecified
15811 other specify
15815 other specify
15816 other specify
15818         units
15829           mcg
15839 other specify
15840 other specify
15841 other specify
15842 other specify
15844 other specify
15848 other specify
15849 other specify
15850 other specify
15856 other specify
15857 other specify
15858            mg
15859 other specify
15860            mg
15861 other specify
15862 other specify
15863 other specify
15864 other specify
15867 other specify
15868 other specify
15869 other specify
15870 other specify
15871            mg
15886 other specify
15888   unspecified
15889         drops
15890            mg
15891 other specify
15892            mg
15907         drops
15911         units
15912            mg
15917 other specify
15918           tsp
15919            mg
15920           tsp
15921 other specify
15922 other specify
15923            gm
15924           mcg
15925            mg
15926            mg
15927            iu
15928 other specify
15929 other specify
15930         units
15931            mg
15932           mcg
15933            iu
15934            mg
15935         units
15936            mg
15937 other specify
15944            mg
15945         units
15981 other specify
15983 other specify
15986 other specify
15992 other specify
15993 other specify
15995 other specify
15996 other specify
15997 other specify
15998 other specify
15999 other specify
16000 other specify
16005            mg
16007            mg
16008            mg
16009            ml
16016 other specify
16026 other specify
16033           mcg
16035 other specify
16036 other specify
16037            mg
16038 other specify
16039 other specify
16052 other specify
16053 other specify
16094 other specify
16097 other specify
16098 other specify
16105            mg
16106            mg
16107 other specify
16108            mg
16109            mg
16110         units
16111            ml
16112            mg
16113 other specify
16114         drops
16115         drops
16116            mg
16117            mg
16118            mg
16150 other specify
16152 other specify
16153 other specify
16154 other specify
16155 other specify
16156 other specify
16157 other specify
16158 other specify
16159 other specify
16160 other specify
16161 other specify
16162 other specify
16163 other specify
16164 other specify
16165 other specify
16177 other specify
16179 other specify
16199            mg
16229 other specify
16230 other specify
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16251         drops
16253            gm
16285            mg
16286   unspecified
16287 other specify
16288 other specify
16289 other specify
16290         drops
16291 other specify
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16312 other specify
16313 other specify
16315 other specify
16316 other specify
16317         drops
16318 other specify
16319 other specify
16321 other specify
16322 other specify
16324 other specify
16325 other specify
16326 other specify
16339 other specify
16340 other specify
16347 other specify
16352            mg
16355 other specify
16356 other specify
16367         drops
16371         drops
16374         drops
16376   unspecified
16378         drops
16382         drops
16386            mg
16387 other specify
16388 other specify
16389           mcg
16400 other specify
16401 other specify
16403 other specify
16404 other specify
16408           mcg
16413 other specify
16414 other specify
16415            mg
16416            mg
16418 other specify
16419 other specify
16420 other specify
16425 other specify
16426 other specify
16434            mg
16435            mg
16436            mg
16437            mg
16440 other specify
16441 other specify
16442 other specify
16443 other specify
16447 other specify
16448 other specify
16450 other specify
16452            ml
16453            ml
16454            mg
16462            ml
16472            mg
16474 other specify
16477            mg
16478         drops
16479 other specify
16485 other specify
16497         drops
16522 other specify
16523 other specify
16524 other specify
16525            mg
16526            ml
16538 other specify
16543 other specify
16544 other specify
16546         units
16551 other specify
16553 other specify
16554 other specify
16579 other specify
16580 other specify
16590            mg
16595 other specify
16596 other specify
16597 other specify
16598 other specify
16599 other specify
16601 other specify
16602            mg
16605           tbs
16606 other specify
16608 other specify
16616            mg
16617            gm
16624            mg
16630 other specify
16631 other specify
16635 other specify
16636 other specify
16637 other specify
16638 other specify
16639 other specify
16640 other specify
16646         drops
16657         drops
16667            mg
16678            mg
16684 other specify
16685 other specify
16687 other specify
16689 other specify
16690            mg
16694 other specify
16695 other specify
16702 other specify
16703 other specify
16704 other specify
16705 other specify
16711 other specify
16712 other specify
16714 other specify
16717 other specify
16718 other specify
16721 other specify
16722 other specify
16723 other specify
16724           tbs
16726 other specify
16745            mg
16746            mg
16749            mg
16750            mg
16751            mg
16774 other specify
16777 other specify
16778 other specify
16779 other specify
16783   unspecified
16784   unspecified
16785   unspecified
16786            mg
16787            mg
16789 other specify
16791            ml
16793            mg
16798         drops
16805 other specify
16807 other specify
16809 other specify
16810 other specify
16811 other specify
16814            ml
16815 other specify
16816         drops
16821 other specify
16823         drops
16834   unspecified
16838   unspecified
16840   unspecified
16841   unspecified
16847   unspecified
16849 other specify
16860            mg
16864 other specify
16866 other specify
16869 other specify
16877            mg
16882 other specify
16915            mg
16916            mg
16918 other specify
16920 other specify
16929 other specify
16930 other specify
16931            mg
16933            mg
16935         units
16936 other specify
16937 other specify
16939         drops
16970           mcg
16983 other specify
16993 other specify
16994 other specify
16998 other specify
16999           mcg
17000            ml
17010 other specify
17012 other specify
17013 other specify
17014 other specify
17018 other specify
17019 other specify
17020   unspecified
17022         drops
17033           mcg
17035         units
17036         units
17041 other specify
17042 other specify
17049           mcg
17051            mg
17053         units
17057 other specify
17062         drops
17088 other specify
17089            mg
17090 other specify
17091 other specify
17094 other specify
17095 other specify
17098           mcg
17099            mg
17120 other specify
17121 other specify
17126 other specify
17127 other specify
17131         drops
17138 other specify
17143 other specify
17151 other specify
17153            mg
17156 other specify
17157 other specify
17173         drops
17177 other specify
17180 other specify
17196 other specify
17197 other specify
17202 other specify
17209 other specify
17210           mcg
17211            mg
17218           mcg
17220           mcg
17221           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17232 other specify
17233 other specify
17234 other specify
17236 other specify
17237 other specify
17238 other specify
17239 other specify
17240           mcg
17241           mcg
17248 other specify
17251 other specify
17252 other specify
17253            mg
17254 other specify
17255 other specify
17263            mg
17264            mg
17266         units
17268 other specify
17283           mcg
17285           mcg
17294 other specify
17295 other specify
17297            mg
17298 other specify
17307            mg
17308            mg
17309            mg
17310            mg
17313           mcg
17314            mg
17315            mg
17327 other specify
17329 other specify
17330 other specify
17335 other specify
17352 other specify
17355 other specify
17381 other specify
17386           mcg
17387           mcg
17389           mcg
17390 other specify
17391           mcg
17393 other specify
17399 other specify
17406 other specify
17407 other specify
17412   unspecified
17417 other specify
17418 other specify
17419 other specify
17420 other specify
17426   unspecified
17427   unspecified
17440            mg
17446         drops
17461            mg
17463 other specify
17468            mg
17470            gm
17482            oz
17484 other specify
17486 other specify
17487 other specify
17488 other specify
17489 other specify
17490 other specify
17491 other specify
17492 other specify
17493 other specify
17494 other specify
17495 other specify
17496 other specify
17497 other specify
17498 other specify
17518 other specify
17519 other specify
17576 other specify
17583            ml
17585            mg
17588 other specify
17602 other specify
17603 other specify
17605            mg
17611 other specify
17615 other specify
17627 other specify
17633            ml
17659 other specify
17670 other specify
17672            mg
17673            mg
17680   unspecified
17697            mg
17702            mg
17703            mg
17719            mg
17720 other specify
17722 other specify
17723 other specify
17742         drops
17743         drops
17755 other specify
17779 other specify
17780            mg
17781         drops
17782 other specify
17798         drops
17802 other specify
17803   unspecified
17804   unspecified
17818 other specify
17832 other specify
17845 other specify
17853   unspecified
17855         drops
17856         drops
17860   unspecified
17863 other specify
17865   unspecified
17882            mg
17955            mg
17957            gm
18001 other specify
18003 other specify
18009 other specify
18010 other specify
18011 other specify
18014 other specify
18015 other specify
18021 other specify
18023 other specify
18024 other specify
18055         drops
18056            mg
18057 other specify
18058 other specify
18072 other specify
18073 other specify
18074         drops
18075 other specify
18076 other specify
18094 other specify
18095 other specify
18096            ml
18098         drops
18114            mg
18115            mg
18116            mg
18117 other specify
18118 other specify
18119 other specify
18124 other specify
18125 other specify
18134   unspecified
18141   unspecified
18147 other specify
18159         drops
18164         drops
18165 other specify
18188 other specify
18192            iu
18193            mg
18195            mg
18199            mg
18202 other specify
18205 other specify
18213         units
18214 other specify
18215            mg
18216            mg
18217           mcg
18218           mcg
18220            mg
18221            ml
18222 other specify
18238 other specify
18249            mg
18251 other specify
18252            mg
18258 other specify
18260            mg
18262 other specify
18263            iu
18264            mg
18266            mg
18271            ml
18275 other specify
18276         drops
18277         units
18284         units
18323   unspecified
18325   unspecified
18326   unspecified
18329            ml
18330            ml
18337 other specify
18338         drops
18339 other specify
18340 other specify
18341 other specify
18342         units
18343         drops
18344 other specify
18345            mg
18365 other specify
18366 other specify
18370 other specify
18371 other specify
18373 other specify
18374 other specify
18375 other specify
18404         drops
18415 other specify
18416 other specify
18427 other specify
18441            mg
18459 other specify
18460 other specify
18461 other specify
18464            mg
18466         drops
18467           mcg
18469 other specify
18470           mcg
18471 other specify
18472           mcg
18473 other specify
18479            mg
18480            mg
18483            mg
18489 other specify
18490 other specify
18494 other specify
18495 other specify
18500 other specify
18502 other specify
18512           mcg
18514 other specify
18519 other specify
18520 other specify
18525            mg
18534 other specify
18539 other specify
18542 other specify
18543 other specify
18562 other specify
18565 other specify
18571 other specify
18572 other specify
18576 other specify
18577 other specify
18580 other specify
18588   unspecified
18591 other specify
18595 other specify
18609            mg
18612 other specify
18614 other specify
18621         drops
18649 other specify
18685            mg
18686           mcg
18687         drops
18688            mg
18689            mg
18690           mcg
18694            mg
18696 other specify
18697 other specify
18703 other specify
18704 other specify
18705           mcg
18707           mcg
18716 other specify
18718 other specify
18729 other specify
18734 other specify
18735 other specify
18736 other specify
18743 other specify
18750           mcg
18753            mg
18774            mg
18775            mg
18795 other specify
18796 other specify
18797 other specify
18798 other specify
18799           mcg
18800           mcg
18820         drops
18821         drops
18829            mg
18837 other specify
18838 other specify
18839 other specify
18844 other specify
18845 other specify
18846 other specify
18847 other specify
18850 other specify
18851            mg
18852 other specify
18853 other specify
18854 other specify
18855 other specify
18856 other specify
18882 other specify
18904            mg
18905            mg
18908 other specify
18909 other specify
18919 other specify
18921 other specify
18924 other specify
18931            ml
18932           mcg
18933            mg
18934           mcg
18935 other specify
18936 other specify
18937 other specify
18961 other specify
18964 other specify
18970 other specify
18987           mcg
18988 other specify
18989 other specify
18991 other specify
18993           tbs
18997            mg
18998   unspecified
19003   unspecified
19004         drops
19005 other specify
19006 other specify
19008 other specify
19009 other specify
19015            mg
19019            mg
19021   unspecified
19022 other specify
19023 other specify
19025 other specify
19040            mg
19041            mg
19043 other specify
19051         drops
19055 other specify
19056 other specify
19057         drops
19061 other specify
19062            mg
19068            mg
19070 other specify
19072 other specify
19073 other specify
19077 other specify
19078 other specify
19082 other specify
19102 other specify
19122 other specify
19130 other specify
19152         drops
19153 other specify
19154 other specify
19159   unspecified
19165 other specify
19169 other specify
19170 other specify
19183 other specify
19184 other specify
19213 other specify
19214 other specify
19215 other specify
19216 other specify
19217 other specify
19220           mcg
19221 other specify
19222 other specify
19223 other specify
19224 other specify
19241            mg
19242            mg
19246 other specify
19252            mg
19253            mg
19254            mg
19255           mcg
19256            mg
19257            mg
19258            mg
19259            mg
19271 other specify
19272 other specify
19273 other specify
19276         drops
19278 other specify
19281 other specify
19282 other specify
19288         drops
19298         drops
19299 other specify
19315 other specify
19318 other specify
19325         drops
19326 other specify
19327 other specify
19331            mg
19335            mg
19336            mg
19338 other specify
19350 other specify
19353   unspecified
19354   unspecified
19356           mcg
19357 other specify
19373 other specify
19374 other specify
19386 other specify
19387 other specify
19390 other specify
19391 other specify
19423 other specify
19424 other specify
19427 other specify
19445 other specify
19446 other specify
19447 other specify
19448 other specify
19449 other specify
19450 other specify
19451            mg
19452   unspecified
19453   unspecified
19454   unspecified
19457 other specify
19461 other specify
19462 other specify
19463 other specify
19464         drops
19465         drops
19476 other specify
19482 other specify
19486         units
19487 other specify
19491         drops
19492 other specify
19493 other specify
19495 other specify
19500            mg
19537 other specify
19567            mg
19568 other specify
19596            mg
19597 other specify
19603 other specify
19604 other specify
19617            ml
19618            mg
19641   unspecified
19651         drops
19662 other specify
19663            mg
19669         units
19673 other specify
19674 other specify
19684            mg
19685 other specify
19686            mg
19688 other specify
19689            mg
19690            gm
19708           mcg
19710 other specify
19711 other specify
19712 other specify
19713 other specify
19714 other specify
19715 other specify
19716 other specify
19717 other specify
19718 other specify
19722 other specify
19735 other specify
19737         drops
19741         units
19754            mg
19767         drops
19768 other specify
19771            mg
19776 other specify
19777 other specify
19778 other specify
19788 other specify
19790            oz
19792   unspecified
19800 other specify
19801 other specify
19803 other specify
19823 other specify
19828 other specify
19829 other specify
19838   unspecified
19843         drops
19844            ml
19845         drops
19851         units
19853 other specify
19854 other specify
19856 other specify
19857 other specify
19860            mg
19866 other specify
19876            mg
19881   unspecified
19888 other specify
19907            mg
19909            mg
19911 other specify
19912         drops
19914 other specify
19917 other specify
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19930            mg
19932         units
19933 other specify
19936 other specify
19943 other specify
19944            mg
19945            mg
19946 other specify
19947            mg
19948            mg
19949            mg
19950            mg
19952 other specify
19958 other specify
19969         drops
19975 other specify
19984   unspecified
20001            mg
20002            mg
20003           mcg
20006            mg
20007 other specify
20019 other specify
20020 other specify
20024 other specify
20025 other specify
20026 other specify
20027 other specify
20028 other specify
20038 other specify
20039 other specify
20065            ml
20067            mg
20068            mg
20069 other specify
20070            ml
20072           mcg
20074            mg
20096 other specify
20099 other specify
20105            ml
20106            ml
20125            ml
20126 other specify
20127 other specify
20130         drops
20131            mg
20135            mg
20144 other specify
20145 other specify
20149         drops
20150 other specify
20164         drops
20173 other specify
20174 other specify
20175            gm
20179            mg
20182 other specify
20193 other specify
20195 other specify
20218 other specify
20219 other specify
20220            mg
20221 other specify
20222 other specify
20224 other specify
20225            mg
20226 other specify
20231         drops
20232         drops
20233 other specify
20234 other specify
20240 other specify
20241 other specify
20243         drops
20244 other specify
20245 other specify
20246 other specify
20247 other specify
20251 other specify
20272 other specify
20275            mg
20282            mg
20292           mcg
20293 other specify
20295 other specify
20297         units
20298         drops
20299         drops
20300 other specify
20301 other specify
20302            mg
20303 other specify
20306         units
20307            mg
20312 other specify
20315   unspecified
20324            mg
20337 other specify
20339 other specify
20340 other specify
20342 other specify
20343 other specify
20344            mg
20348 other specify
20356            mg
20374 other specify
20376 other specify
20377 other specify
20378 other specify
20380 other specify
20382            mg
20387 other specify
20388 other specify
20390 other specify
20392         drops
20393         drops
20402 other specify
20405 other specify
20406            ml
20409            mg
20411            mg
20413            mg
20425 other specify
20426 other specify
20437 other specify
20438 other specify
20441 other specify
20442            mg
20444 other specify
20446            ml
20453            mg
20460            mg
20485 other specify
20490 other specify
20491 other specify
20510 other specify
20511 other specify
20512 other specify
20516 other specify
20517 other specify
20518 other specify
20519            mg
20554 other specify
20555 other specify
20557 other specify
20561 other specify
20565 other specify
20568 other specify
20574         drops
20577   unspecified
20579 other specify
20582 other specify
20585 other specify
20615   unspecified
20623 other specify
20636            ml
20637           mcg
20638            ml
20640           mcg
20641 other specify
20642            ml
20645 other specify
20648            ml
20651            ml
20659   unspecified
20666   unspecified
20667   unspecified
20678   unspecified
20698 other specify
20700 other specify
20701 other specify
20702 other specify
20704 other specify
20705 other specify
20707 other specify
20708 other specify
20709 other specify
20712 other specify
20717 other specify
20718            mg
20719 other specify
20728            mg
20738            mg
20745 other specify
20748           mcg
20750         drops
20761            mg
20762            mg
20763            mg
20766            mg
20767            mg
20771            mg
20783           mcg
20791   unspecified
20796   unspecified
20799         drops
20800 other specify
20808 other specify
20809 other specify
20814 other specify
20817            mg
20819            mg
20820            mg
20849         drops
20852            mg
20854            mg
20855            mg
20857            mg
20858            mg
20859            mg
20860            mg
20861         drops
20862 other specify
20863 other specify
20872 other specify
20897            oz
20918            mg
20939 other specify
20940 other specify
20941 other specify
20947 other specify
20949 other specify
20962         units
20963         units
20964 other specify
20965         units
20966         units
20971 other specify
20972            ml
21003 other specify
21013 other specify
21017 other specify
21022            mg
21025            mg
21029            mg
21069            mg
21070            mg
21071            mg
21074 other specify
21078 other specify
21080            mg
21087 other specify
21088 other specify
21091 other specify
21098 other specify
21100 other specify
21102         units
21103 other specify
21108           mcg
21109 other specify
21110 other specify
21111            gm
21112         drops
21114 other specify
21115 other specify
21116            mg
21117            mg
21118            mg
21119            mg
21122 other specify
21123 other specify
21124         drops
21125            mg
21126            mg
21127 other specify
21128            mg
21129            mg
21130            mg
21131 other specify
21132            ml
21133 other specify
21168            mg
21169            ml
21170           mcg
21172            mg
21178 other specify
21179            mg
21180            mg
21181 other specify
21182            mg
21183            mg
21189 other specify
21190 other specify
21192 other specify
21201            mg
21224 other specify
21253            mg
21254 other specify
21256            mg
21267            mg
21268         drops
21269 other specify
21273            mg
21278         drops
21282         drops
21287         drops
21309            mg
21326         drops
21328            mg
21331   unspecified
21336            mg
21337            mg
21338 other specify
21348            mg
21359            mg
21361            mg
21364            mg
21367            ml
21369 other specify
21373            mg
21374            mg
21376 other specify
21384           mcg
21385            mg
21386         drops
21387            gm
21388            gm
21389            gm
21394            mg
21403            mg
21413   unspecified
21416 other specify
21437 other specify
21438 other specify
21442            mg
21445 other specify
21447 other specify
21448 other specify
21449 other specify
21460            mg
21465            mg
21472            mg
21481         drops
21491         drops
21492 other specify
21493 other specify
21495            gm
21498            mg
21504 other specify
21507 other specify
21508         drops
21509 other specify
21522 other specify
21527         drops
21528 other specify
21531            mg
21532 other specify
21533 other specify
21534 other specify
21535            mg
21545 other specify
21546 other specify
21547            mg
21548            mg
21549         units
21552 other specify
21553         drops
21554         drops
21555            ml
21558            mg
21561 other specify
21562 other specify
21563 other specify
21564 other specify
21580         units
21585 other specify
21586 other specify
21587         drops
21593   unspecified
21600 other specify
21602            mg
21603            mg
21604            mg
21605         units
21606            mg
21607            mg
21608            mg
21609            mg
21612            mg
21614 other specify
21615 other specify
21616 other specify
21617            mg
21618            mg
21619 other specify
21620 other specify
21621 other specify
21622 other specify
21625           tsp
21626 other specify
21627 other specify
21632   unspecified
21637         drops
21642 other specify
21643            mg
21644 other specify
21645 other specify
21646 other specify
21648 other specify
21649 other specify
21650 other specify
21651            mg
21652 other specify
21653 other specify
21654            mg
21655 other specify
21658 other specify
21659 other specify
21660 other specify
21661 other specify
21666 other specify
21673   unspecified
21677   unspecified
21678 other specify
21680         drops
21685 other specify
21701 other specify
21705 other specify
21707 other specify
21708 other specify
21723            mg
21725 other specify
21726 other specify
21727 other specify
21738 other specify
21739            mg
21748 other specify
21749 other specify
21753            mg
21754            mg
21755            mg
21757            mg
21759            mg
21760            mg
21767            mg
21782           mcg
21783 other specify
21787 other specify
21796            mg
21809   unspecified
21810   unspecified
21814 other specify
21815         drops
21833         drops
21844           mcg
21851            mg
21865 other specify
21866 other specify
21867            mg
21869           mcg
21872            ml
21873            mg
21875           mcg
21876           mcg
21877            ml
21878   unspecified
21886   unspecified
21894           tbs
21897 other specify
21898 other specify
21899 other specify
21911            mg
21912           mcg
21914 other specify
21915 other specify
21918 other specify
21921         drops
21925 other specify
21927            mg
21949         drops
21955           tbs
21956           tbs
21957           tbs
21959            mg
21982 other specify
21993 other specify
22013 other specify
22016         drops
22017           mcg
22020 other specify
22022            gm
22023 other specify
22024 other specify
22025 other specify
22026 other specify
22027 other specify
22037 other specify
22038 other specify
22041 other specify
22042 other specify
22043            ml
22045 other specify
22046 other specify
22048 other specify
22050         units
22051            mg
22052            mg
22060            mg
22062 other specify
22063 other specify
22064 other specify
22088 other specify
22089 other specify
22092 other specify
22093 other specify
22112            mg
22118 other specify
22120 other specify
22121         drops
22125         units
22128            ml
22136 other specify
22137 other specify
22140 other specify
22141 other specify
22151   unspecified
22159 other specify
22160         units
22161 other specify
22162            mg
22163         units
22173 other specify
22175 other specify
22176           mcg
22177            mg
22179 other specify
22189 other specify
22190 other specify
22191 other specify
22196 other specify
22197 other specify
22199 other specify
22201   unspecified
22216 other specify
22217 other specify
22218         drops
22219         drops
22221 other specify
22222 other specify
22223 other specify
22224 other specify
22225            mg
22226            mg
22227            mg
22228            mg
22229 other specify
22230            mg
22237            mg
22238            mg
22239            mg
22240            ml
22241            ml
22243   unspecified
22245            mg
22253 other specify
22260 other specify
22261 other specify
22262 other specify
22265 other specify
22267 other specify
22268 other specify
22269            mg
22270 other specify
22272 other specify
22289            mg
22299            mg
22306 other specify
22308            mg
22311            mg
22313 other specify
22314 other specify
22315 other specify
22316            mg
22319            mg
22321 other specify
22323 other specify
22341 other specify
22342 other specify
22343 other specify
22345   unspecified
22346   unspecified
22347   unspecified
22349   unspecified
22351            mg
22352            mg
22353            mg
22367         units
22403            mg
22404 other specify
22407            mg
22408 other specify
22410 other specify
22413 other specify
22417 other specify
22418 other specify
22430 other specify
22439 other specify
22440            mg
22441 other specify
22442 other specify
22459   unspecified
22463   unspecified
22482            mg
22520            gm
22521         units
22524 other specify
22530            mg
22531 other specify
22532 other specify
22533 other specify
22534            mg
22537 other specify
22540   unspecified
22541 other specify
22545 other specify
22546 other specify
22547         drops
22548            mg
22549 other specify
22552   unspecified
22556            ml
22557 other specify
22558 other specify
22574         units
22575 other specify
22577 other specify
22578 other specify
22579           mcg
22583 other specify
22585   unspecified
22598 other specify
22599            mg
22600            mg
22601         units
22606 other specify
22607 other specify
22610            mg
22611            mg
22625 other specify
22653 other specify
22655 other specify
22656 other specify
22662 other specify
22667 other specify
22669         drops
22670 other specify
22672         drops
22673            mg
22674 other specify
22679 other specify
22681 other specify
22682 other specify
22683 other specify
22690 other specify
22691            mg
22692 other specify
22693 other specify
22704 other specify
22705 other specify
22707 other specify
22708 other specify
22709            gm
22710            ml
22711 other specify
22713 other specify
22714 other specify
22715            gm
22716 other specify
22717 other specify
22718 other specify
22719 other specify
22721            ml
22733 other specify
22734            mg
22748 other specify
22749            mg
22750 other specify
22751            mg
22752            mg
22754 other specify
22763 other specify
22764 other specify
22765 other specify
22766            mg
22770            mg
22777            mg
22778            mg
22779            mg
22780            mg
22795 other specify
22796         drops
22797 other specify
22798 other specify
22799 other specify
22800 other specify
22801 other specify
22802 other specify
22803 other specify
22804 other specify
22830            mg
22840           mcg
22848 other specify
22853 other specify
22858 other specify
22875 other specify
22886 other specify
22909           mcg
22910            mg
22911            mg
22912            mg
22919 other specify
22920 other specify
22921            mg
22922         drops
22923 other specify
22926 other specify
22929 other specify
22936 other specify
22938            ml
22939         drops
22954            ml
22955           mcg
22963 other specify
22965 other specify
22966 other specify
22967 other specify
22970 other specify
22971 other specify
22990 other specify
22991            mg
22992         drops
22994 other specify
23005         drops
23006         drops
23007         drops
23008         drops
23009            ml
23018            mg
23019            mg
23024 other specify
23025 other specify
23043 other specify
23049            mg
23051           mcg
23053 other specify
23055         units
23059 other specify
23060 other specify
23061 other specify
23064            mg
23065            mg
23066 other specify
23074 other specify
23075 other specify
23083            mg
23095 other specify
23096 other specify
23100         drops
23102            mg
23103         drops
23108   unspecified
23122 other specify
23123 other specify
23124 other specify
23125 other specify
23134            mg
23137            mg
23138 other specify
23141 other specify
23143            mg
23144            mg
23145            mg
23146            mg
23153   unspecified
23154         drops
23163   unspecified
23169            mg
23173 other specify
23175           mcg
23184            ml
23186            mg
23187            mg
23202 other specify
23237            mg
23248            mg
23249         drops
23250 other specify
23251         units
23257            ml
23258 other specify
23259 other specify
23266 other specify
23267           mcg
23268 other specify
23276 other specify
23278 other specify
23279 other specify
23280 other specify
23281            mg
23282            mg
23283            ml
23284            mg
23285            mg
23286           mcg
23288 other specify
23294           mcg
23299            mg
23304         drops
23305 other specify
23306 other specify
23308 other specify
23321            mg
23322 other specify
23325 other specify
23333         units
23336 other specify
23337 other specify
23338 other specify
23340 other specify
23341 other specify
23342 other specify
23344           mcg
23345 other specify
23349 other specify
23350            mg
23351            mg
23352            mg
23353            mg
23354            mg
23355            ml
23356           mcg
23357            mg
23360            mg
23361            mg
23364         drops
23366   unspecified
23384            ml
23385 other specify
23386            mg
23388 other specify
23389 other specify
23401 other specify
23402 other specify
23403 other specify
23404 other specify
23412 other specify
23413 other specify
23414 other specify
23419 other specify
23422 other specify
23423 other specify
23427 other specify
23428            mg
23437 other specify
23450 other specify
23452 other specify
23455            mg
23456 other specify
23457            mg
23472 other specify
23476 other specify
23477 other specify
23481 other specify
23482 other specify
23483 other specify
23484 other specify
23485 other specify
23487 other specify
23491            mg
23503 other specify
23504 other specify
23507 other specify
23508 other specify
23509 other specify
23510 other specify
23514 other specify
23515 other specify
23520 other specify
23533         drops
23534 other specify
23540 other specify
23541 other specify
23548            mg
23552         units
23553 other specify
23555            mg
23556 other specify
23557 other specify
23558            mg
23565         drops
23566         drops
23568 other specify
23571 other specify
23572 other specify
23588 other specify
23589 other specify
23590 other specify
23593            ml
23594            mg
23610            mg
23617 other specify
23618 other specify
23619            mg
23620 other specify
23622 other specify
23646 other specify
23647 other specify
23651 other specify
23657 other specify
23659 other specify
23685 other specify
23686 other specify
23688 other specify
23707 other specify
23718           mcg
23721 other specify
23722 other specify
23724 other specify
23730 other specify
23732 other specify
23733            gm
23740 other specify
23747            mg
23749           mcg
23757           mcg
23758            mg
23792            mg
23804            mg
23805 other specify
23808 other specify
23809 other specify
23819 other specify
23820 other specify
23824 other specify
23825            mg
23861 other specify
23862 other specify
23865            mg
23866 other specify
23868         drops
23871         drops
23872 other specify
23873 other specify
23898 other specify
23899 other specify
23900 other specify
23901 other specify
23902 other specify
23905 other specify
23906 other specify
23909 other specify
23910 other specify
23914 other specify
23917 other specify
23924            mg
23925            mg
23933         drops
23942            gm
23955 other specify
23956 other specify
23957   unspecified
23958   unspecified
23959   unspecified
23965         drops
23969           tbs
23972 other specify
23974 other specify
23976            ml
23980         units
23989           mcg
23990            mg
24008           mcg
24010            mg
24012 other specify
24017            mg
24018            mg
24019            mg
24020            mg
24022            mg
24029            mg
24044           mcg
24045           mcg
24046            mg
24062 other specify
24067            mg
24068 other specify
24069           mcg
24072            mg
24075 other specify
24076 other specify
24077 other specify
24078 other specify
24079 other specify
24104            mg
24106            mg
24113            mg
24116 other specify
24117 other specify
24139            mg
24142 other specify
24144            mg
24145 other specify
24146            ml
24149            mg
24154   unspecified
24155   unspecified
24157 other specify
24162 other specify
24165 other specify
24166 other specify
24172 other specify
24173 other specify
24174 other specify
24185            mg
24189            mg
24192            mg
24193            mg
24194            mg
24195            mg
24201         drops
24202         drops
24203 other specify
24205   unspecified
24206   unspecified
24207   unspecified
24208   unspecified
24209 other specify
24215 other specify
24217 other specify
24218           mcg
24219            mg
24221 other specify
24222 other specify
24246            mg
24250 other specify
24251         drops
24253 other specify
24257 other specify
24258 other specify
24259 other specify
24260            mg
24261 other specify
24262            ml
24263            ml
24264            gm
24265 other specify
24266            mg
24267            ml
24268            ml
24269            mg
24276         units
24282 other specify
24312 other specify
24313         drops
24314 other specify
24319            mg
24322 other specify
24325            mg
24328            mg
24343            mg
24375            mg
24379           mcg
24393 other specify
24394 other specify
24395 other specify
24396            mg
24397            gm
24399            mg
24400            mg
24401            mg
24402 other specify
24403 other specify
24404            mg
24405            mg
24406            mg
24407            mg
24408            ml
24409            oz
24410 other specify
24413 other specify
24416 other specify
24417 other specify
24418            mg
24419            mg
24420           tsp
24421 other specify
24422 other specify
24424 other specify
24425 other specify
24426 other specify
24427            mg
24428            mg
24429           tsp
24431         units
24432         units
24434         drops
24435 other specify
24436 other specify
24437 other specify
24438            mg
24451 other specify
24452 other specify
24453 other specify
24455 other specify
24459            mg
24460            mg
24461            ml
24462            mg
24468            mg
24473            mg
24475            mg
24476 other specify
24477 other specify
24478 other specify
24479         drops
24480 other specify
24481 other specify
24482            mg
24484 other specify
24486 other specify
24499            mg
24503         drops
24504            mg
24514 other specify
24520 other specify
24521 other specify
24526 other specify
24529 other specify
24534            ml
24536           mcg
24562 other specify
24563 other specify
24565 other specify
24567 other specify
24593         drops
24597            mg
24598            mg
24599            mg
24601            mg
24602            mg
24605 other specify
24610 other specify
24621 other specify
24622 other specify
24647 other specify
24648            ml
24651            mg
24652         drops
24653         drops
24654 other specify
24660 other specify
24666            mg
24669 other specify
24688 other specify
24707 other specify
24733           mcg
24734            mg
24758 other specify
24762           mcg
24768 other specify
24769 other specify
24776         drops
24782         drops
24802            ml
24804            mg
24805            mg
24806            mg
24814           mcg
24817 other specify
24819 other specify
24824 other specify
24825 other specify
24826         units
24827         units
24828 other specify
24829 other specify
24830 other specify
24835           mcg
24839 other specify
24840 other specify
24850            mg
24867 other specify
24878 other specify
24880         drops
24897            mg
24898 other specify
24899            mg
24902            mg
24903            mg
24904            mg
24907            mg
24917 other specify
24918 other specify
24919            mg
24935            mg
24937            mg
24938            mg
24940            mg
24942            mg
24948 other specify
24949            mg
24950 other specify
24963            mg
24964            mg
24967 other specify
24968 other specify
24969 other specify
24971 other specify
24973 other specify
24974 other specify
24975 other specify
24982 other specify
24984            mg
24985 other specify
24987 other specify
24988         drops
24989 other specify
24993         drops
25003         drops
25004 other specify
25020            mg
25021 other specify
25022            mg
25040            mg
25041            ml
25059 other specify
25067           mcg
25079 other specify
25080 other specify
25084           tsp
25087 other specify
25094            mg
25099           mcg
25100            mg
25101            mg
25102            mg
25118 other specify
25119 other specify
25120 other specify
25124         drops
25129 other specify
25131 other specify
25132 other specify
25191 other specify
25196 other specify
25198         drops
25233 other specify
25234 other specify
25241 other specify
25255 other specify
25258 other specify
25262   unspecified
25269            mg
25270            mg
25273         units
25296           mcg
25299 other specify
25300 other specify
25301 other specify
25309         units
25310         units
25311         drops
25315         units
25316         units
25317         units
25331            mg
25337 other specify
25342 other specify
25343 other specify
25345 other specify
25346 other specify
25347   unspecified
25358         drops
25359            mg
25366         drops
25367 other specify
25369            ml
25370         drops
25372            mg
25374            mg
25377            mg
25378           tsp
25390            mg
25391            mg
25405 other specify
25409 other specify
25410 other specify
25417 other specify
25421 other specify
25424            mg
25425            mg
25437            mg
25444            mg
25473 other specify
25482   unspecified
25493 other specify
25494 other specify
25495 other specify
25498 other specify
25499 other specify
25501 other specify
25502 other specify
25514            mg
25515            mg
25516            mg
25517            mg
25520 other specify
25521 other specify
25523 other specify
25547            ml
25554            mg
25555            mg
25556            mg
25557            mg
25558 other specify
25564           mcg
25575            mg
25576 other specify
25577 other specify
25579           mcg
25589            mg
25590            mg
25591            mg
25612            mg
25613 other specify
25617 other specify
25619 other specify
25622   unspecified
25636 other specify
25659 other specify
25660 other specify
25663 other specify
25666 other specify
25670 other specify
25671 other specify
25672            ml
25674         drops
25683           mcg
25706 other specify
25707 other specify
25708 other specify
25711         units
25725 other specify
25726         drops
25727 other specify
25730 other specify
25737   unspecified
25740 other specify
25741 other specify
25743 other specify
25744 other specify
25748 other specify
25749 other specify
25750 other specify
25751 other specify
25753         drops
25754 other specify
25755 other specify
25756 other specify
25757 other specify
25765            ml
25795 other specify
25804            mg
25806 other specify
25807 other specify
25816            mg
25817            ml
25818 other specify
25819            mg
25820 other specify
25825            mg
25826            mg
25827 other specify
25828         units
25829         units
25830            mg
25837 other specify
25839 other specify
25846 other specify
25870 other specify
25884 other specify
25887 other specify
25888 other specify
25919            mg
25936   unspecified
25937   unspecified
25939 other specify
25940 other specify
25941           mcg
25942           mcg
25943         drops
25948            mg
25949 other specify
25950 other specify
25951           mcg
25952         drops
25953           mcg
25954         drops
25964           mcg
25965            mg
25966           mcg
25967            mg
25981         drops
25983         drops
25985 other specify
25986 other specify
25998   unspecified
26004           mcg
26022            mg
26024 other specify
26027            mg
26031 other specify
26033 other specify
26037 other specify
26039 other specify
26047 other specify
26048 other specify
26050 other specify
26054 other specify
26056 other specify
26064 other specify
26075            mg
26078            mg
26084   unspecified
26085   unspecified
26093 other specify
26094 other specify
26095            mg
26110           mcg
26113 other specify
26114 other specify
26115 other specify
26120 other specify
26121 other specify
26122 other specify
26123 other specify
26124 other specify
26127 other specify
26128 other specify
26129 other specify
26133 other specify
26134 other specify
26138         units
26139 other specify
26141 other specify
26148 other specify
26149 other specify
26150 other specify
26151 other specify
26152 other specify
26153         drops
26154            ml
26155            mg
26156 other specify
26157 other specify
26158         units
26159         units
26160            mg
26161            mg
26165 other specify
26166 other specify
26178 other specify
26179 other specify
26180 other specify
26181 other specify
26184 other specify
26187 other specify
26189         units
26190 other specify
26192 other specify
26197         drops
26199 other specify
26200 other specify
26201 other specify
26203 other specify
26204 other specify
26205            ml
26206            mg
26207 other specify
26208 other specify
26211         units
26212         units
26213            mg
26214 other specify
26215 other specify
26222            mg
26227            mg
26229   unspecified
26237            mg
26238 other specify
26239 other specify
26258            oz
26259            mg
26264            mg
26265            mg
26278         drops
26279 other specify
26280         drops
26281 other specify
26282 other specify
26286 other specify
26287 other specify
26294 other specify
26295 other specify
26299 other specify
26300         units
26307 other specify
26315 other specify
26336   unspecified
26337   unspecified
26355 other specify
26373         drops
26375 other specify
26380 other specify
26386 other specify
26387            mg
26391   unspecified
26393 other specify
26395            mg
26399            mg
26400            mg
26401            mg
26423            mg
26433   unspecified
26454            mg
26464 other specify
26469 other specify
26471            mg
26473            mg
26474         drops
26475 other specify
26476 other specify
26477            mg
26488 other specify
26489 other specify
26490 other specify
26502 other specify
26503            mg
26505 other specify
26508 other specify
26517 other specify
26518 other specify
26519 other specify
26520 other specify
26521            mg
26522 other specify
26534   unspecified
26540 other specify
26543 other specify
26544 other specify
26546 other specify
26547 other specify
26550 other specify
26551            mg
26553            mg
26568 other specify
26574 other specify
26576            mg
26583         drops
26584 other specify
26585 other specify
26587 other specify
26589 other specify
26590 other specify
26591 other specify
26592 other specify
26594 other specify
26610         drops
26611 other specify
26615 other specify
26616 other specify
26628           mcg
26629 other specify
26631 other specify
26637 other specify
26638 other specify
26643            mg
26644 other specify
26645 other specify
26647   unspecified
26650 other specify
26651 other specify
26652 other specify
26654           mcg
26655            mg
26662 other specify
26663 other specify
26668 other specify
26669 other specify
26670 other specify
26673           mcg
26674            gm
26675            mg
26676 other specify
26677           mcg
26680           mcg
26681            mg
26682 other specify
26683 other specify
26684 other specify
26685 other specify
26694            mg
26720            mg
26721            mg
26722 other specify
26723            mg
26724            mg
26726 other specify
26727            mg
26734 other specify
26735 other specify
26736           mcg
26738            mg
26740            mg
26741            mg
26742            mg
26743            mg
26744            mg
26745            mg
26747            ml
26749            mg
26750 other specify
26751            mg
26760 other specify
26761 other specify
26764 other specify
26765 other specify
26766 other specify
26769 other specify
26772 other specify
26773 other specify
26774 other specify
26780 other specify
26803            oz
26817            mg
26818            mg
26819            gm
26821            mg
26822            mg
26823            ml
26825            gm
26826            gm
26827            mg
26828            mg
26829            mg
26830            mg
26831            mg
26832            mg
26833            ml
26836         drops
26837 other specify
26838            mg
26839 other specify
26840 other specify
26841         drops
26842 other specify
26843 other specify
26844         drops
26846 other specify
26847         drops
26848 other specify
26849 other specify
26850 other specify
26851 other specify
26852           mcg
26853            mg
26857            mg
26861 other specify
26862         units
26863         units
26864         units
26865         units
26867 other specify
26868 other specify
26869 other specify
26870            ml
26871         drops
26872            oz
26905            ml
26926 other specify
26930 other specify
26931 other specify
26932            mg
26944 other specify
26948 other specify
26966            mg
26972            mg
26974 other specify
26975 other specify
26976 other specify
26977 other specify
26978            mg
26979 other specify
26980 other specify
26981 other specify
26983            mg
26984 other specify
26986            mg
26987            ml
26988            mg
26990            mg
26991            mg
26992            mg
26993            mg
27012 other specify
27020 other specify
27021         drops
27022         drops
27030            mg
27047         drops
27058 other specify
27062   unspecified
27063   unspecified
27065 other specify
27080         drops
27081         drops
27082 other specify
27083 other specify
27084            mg
27085 other specify
27086 other specify
27092 other specify
27095         drops
27096           mcg
27100 other specify
27117 other specify
27118 other specify
27124 other specify
27128         drops
27134 other specify
27136 other specify
27137            ml
27140 other specify
27144 other specify
27158 other specify
27163 other specify
27170 other specify
27172 other specify
27173 other specify
27174 other specify
27203           mcg
27212         units
27213            mg
27214 other specify
27217 other specify
27219 other specify
27220 other specify
27222 other specify
27223 other specify
27224 other specify
27225            mg
27226 other specify
27228         units
27229 other specify
27231 other specify
27232         units
27247            mg
27249            ml
27251            mg
27256 other specify
27257 other specify
27258 other specify
27262         drops
27265         units
27268         drops
27270         units
27273 other specify
27274 other specify
27275 other specify
27280 other specify
27281         units
27282         units
27285 other specify
27306 other specify
27309 other specify
27310 other specify
27311 other specify
27315           mcg
27322 other specify
27333            mg
27345           mcg
27346            mg
27347            mg
27348 other specify
27349 other specify
27350         drops
27353            mg
27358 other specify
27360 other specify
27361            mg
27362            mg
27364            mg
27368 other specify
27370 other specify
27371            mg
27384            mg
27407         drops
27413 other specify
27414 other specify
27421 other specify
27422 other specify
27423           mcg
27425 other specify
27427         drops
27431 other specify
27432 other specify
27434         drops
27435            mg
27445         drops
27446            ml
27447 other specify
27456 other specify
27458 other specify
27459            mg
27465 other specify
27474            mg
27479           mcg
27481           mcg
27492 other specify
27494         drops
27498 other specify
27500         drops
27501         drops
27502 other specify
27506 other specify
27507 other specify
27511 other specify
27512 other specify
27523 other specify
27524 other specify
27529 other specify
27530 other specify
27589 other specify
27590 other specify
27594            mg
27595            mg
27596            mg
27598         drops
27620 other specify
27640 other specify
27646 other specify
27654 other specify
27657 other specify
27658            mg
27659            mg
27674   unspecified
27697 other specify
27699            mg
27700 other specify
27701 other specify
27703 other specify
27704 other specify
27710 other specify
27713            mg
27714   unspecified
27715   unspecified
27722         drops
27723         drops
27724            mg
27728         drops
27736 other specify
27745 other specify
27747 other specify
27748 other specify
27750 other specify
27769 other specify
27770            mg
27772            mg
27776   unspecified
27791 other specify
27794 other specify
27802   unspecified
27824 other specify
27826 other specify
27828 other specify
27833 other specify
27834 other specify
27836   unspecified
27875 other specify
27878 other specify
27880 other specify
27883            mg
27884            ml
27885            mg
27886 other specify
27891            mg
27892            mg
27895 other specify
27896 other specify
27897            ml
27898 other specify
27899         drops
27900            ml
27901            ml
27903 other specify
27904            ml
27910            mg
27913            mg
27917         units
27921         units
27922         units
27923         units
27927   unspecified
27929 other specify
27931            mg
27934            mg
27935            mg
27936            mg
27937            mg
27938            mg
27939            mg
27940            mg
27941         drops
27942            mg
27954 other specify
27957            mg
27958            mg
27959            mg
27960            mg
27961 other specify
27962 other specify
27973         drops
27974 other specify
27981 other specify
27982 other specify
27992 other specify
27999 other specify
28000 other specify
28004           mcg
28006 other specify
28008 other specify
28009 other specify
28010 other specify
28011         drops
28014         drops
28015            mg
28016 other specify
28017 other specify
28018 other specify
28020         drops
28023 other specify
28024 other specify
28025 other specify
28026            mg
28029 other specify
28040 other specify
28045           mcg
28046 other specify
28047 other specify
28048 other specify
28049 other specify
28071         drops
28073 other specify
28075 other specify
28076 other specify
28081 other specify
28087 other specify
28088 other specify
28089            mg
28090         drops
28094         drops
28096   unspecified
28098            mg
28100 other specify
28101 other specify
28102 other specify
28103 other specify
28104 other specify
28105 other specify
28106            mg
28107            mg
28108 other specify
28109 other specify
28116 other specify
28119 other specify
28120 other specify
28128            mg
28129            mg
28130 other specify
28131            mg
28134 other specify
28135 other specify
28137 other specify
28138            iu
28141         drops
28143 other specify
28144 other specify
28150            mg
28151            mg
28152            mg
28153            ml
28154            ml
28155            ml
28156            mg
28158 other specify
28162 other specify
28163 other specify
28164 other specify
28165            mg
28166 other specify
28167   unspecified
28168         drops
28174 other specify
28176 other specify
28244            mg
28245            mg
28246 other specify
28260 other specify
28261 other specify
28262            mg
28263 other specify
28264 other specify
28269 other specify
28277 other specify
28279 other specify
28307 other specify
28309 other specify
28311 other specify
28316 other specify
28320 other specify
28325            mg
28332 other specify
28333 other specify
28371 other specify
28375 other specify
28390         units
28392 other specify
28393            mg
28396            mg
28397 other specify
28398 other specify
28399 other specify
28400 other specify
28401 other specify
28403 other specify
28404 other specify
28405           mcg
28407            mg
28425   unspecified
28427         drops
28437            mg
28448            mg
28449            mg
28453           mcg
28483 other specify
28484         drops
28486 other specify
28487            mg
28488 other specify
28505 other specify
28507 other specify
28508 other specify
28516 other specify
28517 other specify
28518            mg
28519            mg
28520            ml
28528            mg
28529            mg
28530            mg
28531 other specify
28533 other specify
28534            mg
28535            mg
28536 other specify
28538 other specify
28545           mcg
28549 other specify
28552 other specify
28553 other specify
28554 other specify
28556 other specify
28557 other specify
28571 other specify
28572   unspecified
28573 other specify
28574 other specify
28576 other specify
28577         drops
28580 other specify
28582 other specify
28583 other specify
28590   unspecified
28601 other specify
28602 other specify
28603            mg
28604            ml
28605 other specify
28606            mg
28610            mg
28611            mg
28612            mg
28614            mg
28616            ml
28620            mg
28621            ml
28624 other specify
28626            ml
28630 other specify
28631 other specify
28632            mg
28639            mg
28660 other specify
28668 other specify
28673         drops
28674 other specify
28675 other specify
28681 other specify
28685   unspecified
28686   unspecified
28687   unspecified
28690            mg
28691 other specify
28692            mg
28693 other specify
28694 other specify
28696 other specify
28698            mg
28699            mg
28710         drops
28714         drops
28716         drops
28717            mg
28718            gm
28719            gm
28723 other specify
28726 other specify
28727 other specify
28730         units
28731         units
28732            mg
28735            mg
28736            mg
28750 other specify
28751 other specify
28762            ml
28764         drops
28765            mg
28766            mg
28768 other specify
28772   unspecified
28773   unspecified
28780 other specify
28781 other specify
28782 other specify
28784         units
28806 other specify
28809 other specify
28818 other specify
28819 other specify
28826 other specify
28829           tsp
28831         drops
28832            mg
28833 other specify
28855 other specify
28873         drops
28874            mg
28882 other specify
28883 other specify
28884         units
28888 other specify
28893 other specify
28897 other specify
28898 other specify
28899 other specify
28900 other specify
28901 other specify
28904 other specify
28905         drops
28906         drops
28907 other specify
28910 other specify
28934 other specify
28939            mg
28940            mg
28941 other specify
28946            ml
28979 other specify
28980 other specify
28982 other specify
28983 other specify
28986 other specify
28987 other specify
28988            mg
28998            mg
28999            mg
29000 other specify
29007            ml
29008            mg
29015 other specify
29022   unspecified
29023   unspecified
29036 other specify
29037            mg
29039 other specify
29040   unspecified
29043   unspecified
29050 other specify
29053 other specify
29056 other specify
29060 other specify
29064 other specify
29067           mcg
29069            mg
29070 other specify
29071 other specify
29072 other specify
29073 other specify
29075 other specify
29078            ml
29079 other specify
29080 other specify
29081 other specify
29082 other specify
29083 other specify
29086            mg
29087            mg
29091            mg
29092            ml
29095 other specify
29096 other specify
29097            ml
29098            ml
29099            ml
29100            mg
29103           mcg
29104           mcg
29108 other specify
29135            mg
29136 other specify
29139 other specify
29143           mcg
29150            mg
29151 other specify
29152            mg
29153            ml
29154 other specify
29161 other specify
29166 other specify
29183 other specify
29184 other specify
29196 other specify
29197 other specify
29220 other specify
29232   unspecified
29234   unspecified
29235   unspecified
29244   unspecified
29245   unspecified
29248   unspecified
29283            mg
29285         drops
29291 other specify
29293 other specify
29298            mg
29313         drops
29315 other specify
29321 other specify
29324 other specify
29327 other specify
29328 other specify
29330 other specify
29331 other specify
29332 other specify
29340            oz
29342         drops
29374            mg
29375         units
29376 other specify
29377         units
29378         units
29379         units
29380 other specify
29381 other specify
29382 other specify
29383 other specify
29395            mg
29397            mg
29404            mg
29405            mg
29406            mg
29428 other specify
29438 other specify
29446 other specify
29447 other specify
29453 other specify
29469 other specify
29470 other specify
29471         drops
29472 other specify
29475 other specify
29479 other specify
29480 other specify
29481 other specify
29482 other specify
29483 other specify
29490 other specify
29499         units
29500         units
29501 other specify
29502 other specify
29504 other specify
29505 other specify
29506            mg
29509            mg
29511 other specify
29525 other specify
29526 other specify
29531 other specify
29532         drops
29533           tbs
29534         drops
29535         drops
29536 other specify
29537         drops
29538            mg
29539            oz
29540 other specify
29567 other specify
29568         drops
29572 other specify
29573 other specify
29574            oz
29575            mg
29578 other specify
29579 other specify
29580 other specify
29583 other specify
29588 other specify
29589 other specify
29592            mg
29601            mg
29602            mg
29604            mg
29606           mcg
29608 other specify
29617 other specify
29626            mg
29633           mcg
29662   unspecified
29666           tsp
29669   unspecified
29670   unspecified
29678            mg
29679 other specify
29691            mg
29692            mg
29693            mg
29694            mg
29695            mg
29696            gm
29697            mg
29698            mg
29699            mg
29700         drops
29705         drops
29707         drops
29709 other specify
29715 other specify
29716 other specify
29719 other specify
29720            mg
29722 other specify
29724            ml
29726 other specify
29729            gm
29730            mg
29733            mg
29734            mg
29736 other specify
29744 other specify
29749 other specify
29753            mg
29755 other specify
29764 other specify
29765 other specify
29766 other specify
29767 other specify
29770 other specify
29771 other specify
29772 other specify
29794         drops
29797            mg
29798           mcg
29799           mcg
29800            mg
29801 other specify
29802           mcg
29803            mg
29822 other specify
29823 other specify
29824           mcg
29825            mg
29827            mg
29829         units
29831         drops
29832            ml
29838   unspecified
29839   unspecified
29840   unspecified
29847            ml
29848            ml
29851            mg
29857 other specify
29858            ml
29859            ml
29860            ml
29861            mg
29862            mg
29865            mg
29880         units
29882 other specify
29883 other specify
29906            mg
29907            mg
29933 other specify
29937 other specify
29940 other specify
29941 other specify
29943 other specify
29948 other specify
29954 other specify
29955 other specify
29956 other specify
29957 other specify
29963 other specify
29964 other specify
29966   unspecified
29969 other specify
29970 other specify
29978            mg
29990 other specify
29991            mg
29993            mg
30001            mg
30048            ml
30067 other specify
30068 other specify
30070 other specify
30075 other specify
30076 other specify
30081 other specify
30082 other specify
30083 other specify
30095 other specify
30096 other specify
30098            mg
30099 other specify
30104   unspecified
30105   unspecified
30127            mg
30131            mg
30132   unspecified
30138           mcg
30142         units
30143 other specify
30162   unspecified
30164            ml
30165            mg
30166            mg
30169 other specify
30172            mg
30174            mg
30178 other specify
30179         drops
30185 other specify
30186            mg
30191            mg
30192            mg
30193            mg
30198         drops
30211 other specify
30212 other specify
30213 other specify
30214 other specify
30218 other specify
30221 other specify
30239            mg
30241            mg
30242            mg
30246   unspecified
30263 other specify
30264 other specify
30268 other specify
30269 other specify
30270 other specify
30271 other specify
30274 other specify
30275 other specify
30277 other specify
30278 other specify
30284 other specify
30285 other specify
30286 other specify
30290 other specify
30291 other specify
30298 other specify
30299         units
30300         drops
30306            mg
30310 other specify
30311 other specify
30312 other specify
30313 other specify
30317 other specify
30319 other specify
30320 other specify
30321 other specify
30327 other specify
30329         drops
30337 other specify
30338         drops
30344 other specify
30347 other specify
30350 other specify
30351 other specify
30352 other specify
30353 other specify
30354 other specify
30355 other specify
30356            mg
30357 other specify
30358            mg
30359            mg
30360 other specify
30361 other specify
30366            mg
30367            mg
30368           mcg
30371            mg
30372 other specify
30373 other specify
30374 other specify
30375 other specify
30376 other specify
30377            mg
30378           tsp
30383 other specify
30384 other specify
30385 other specify
30386 other specify
30387 other specify
30388   unspecified
30389 other specify
30395 other specify
30396 other specify
30403 other specify
30404 other specify
30405            mg
30406            ml
30418           mcg
30450   unspecified
30464         drops
30471            mg
30479 other specify
30480 other specify
30483 other specify
30484   unspecified
30485   unspecified
30492            mg
30494            mg
30496 other specify
30515            mg
30523            mg
30528            mg
30529         drops
30534           mcg
30536 other specify
30541            mg
30555 other specify
30556            mg
30573            mg
30574            mg
30590 other specify
30602 other specify
30604 other specify
30607 other specify
30608 other specify
30619            mg
30620            mg
30623         drops
30644            mg
30685 other specify
30689 other specify
30692 other specify
30700 other specify
30701 other specify
30702            mg
30707 other specify
30708 other specify
30709 other specify
30710 other specify
30713            ml
30714         drops
30717   unspecified
30730           mcg
30752           tbs
30753 other specify
30754         drops
30756         units
30757         units
30758 other specify
30764            mg
30765            mg
30766            mg
30768           mcg
30769         drops
30779 other specify
30784 other specify
30792         drops
30793 other specify
30794           tsp
30796 other specify
30797 other specify
30799 other specify
30800 other specify
30803 other specify
30811 other specify
30812            mg
30813         units
30814         units
30815         units
30816         units
30817         units
30819 other specify
30820 other specify
30821 other specify
30822 other specify
30823 other specify
30824 other specify
30826 other specify
30833 other specify
30834 other specify
30840            mg
30844 other specify
30876            ml
30877           mcg
30893            ml
30901 other specify
30909           mcg
30917 other specify
30919           mcg
30920         drops
30936   unspecified
30943            mg
30944            mg
30945            mg
30947 other specify
30948 other specify
30949            mg
30953   unspecified
30960           tsp
30961            mg
30962 other specify
30963            mg
30998 other specify
30999 other specify
31000 other specify
31001 other specify
31003 other specify
31004 other specify
31010 other specify
31011 other specify
31012            mg
31016           tsp
31022 other specify
31023 other specify
31034            mg
31043 other specify
31046 other specify
31089            mg
31094 other specify
31095 other specify
31096 other specify
31097            mg
31098            mg
31105 other specify
31106 other specify
31132 other specify
31133 other specify
31134 other specify
31135 other specify
31136            mg
31137            mg
31138            mg
31139            mg
31142            mg
31148           mcg
31149           mcg
31152           mcg
31154           mcg
31183         units
31186         drops
31195            mg
31196   unspecified
31197 other specify
31198            mg
31199 other specify
31200            mg
31203         units
31209            mg
31228 other specify
31232 other specify
31233            mg
31234 other specify
31235            mg
31243            mg
31245         drops
31247            mg
31248 other specify
31249            mg
31250 other specify
31260 other specify
31263 other specify
31264 other specify
31265         drops
31268 other specify
31284 other specify
31297         units
31299         units
31300         units
31301         units
31303            ml
31307 other specify
31308 other specify
31309 other specify
31317 other specify
31322            mg
31328   unspecified
31330         drops
31350   unspecified
31353            mg
31356 other specify
31357 other specify
31358 other specify
31359 other specify
31360 other specify
31361 other specify
31363 other specify
31365 other specify
31366 other specify
31367 other specify
31369 other specify
31370 other specify
31371           tsp
31373            mg
31374            gm
31375 other specify
31380            mg
31381         drops
31383 other specify
31384 other specify
31385 other specify
31386 other specify
31389 other specify
31408 other specify
31410            mg
31411            mg
31412            ml
31413            mg
31414 other specify
31415 other specify
31416            mg
31417           mcg
31418           mcg
31419            mg
31420            mg
31423         drops
31434         drops
31437 other specify
31438 other specify
31439         drops
31440         units
31441 other specify
31446 other specify
31447 other specify
31449 other specify
31450 other specify
31452         units
31457   unspecified
31463   unspecified
31471 other specify
31502 other specify
31503 other specify
31504 other specify
31506 other specify
31507            mg
31508 other specify
31528 other specify
31529 other specify
31531 other specify
31539 other specify
31542   unspecified
31548         units
31551            ml
31552         drops
31553         drops
31599            mg
31602 other specify
31603 other specify
31611 other specify
31612 other specify
31616 other specify
31617 other specify
31618 other specify
31619 other specify
31637 other specify
31638 other specify
31640 other specify
31641            mg
31643 other specify
31644            mg
31645            ml
31646 other specify
31647 other specify
31651            mg
31652 other specify
31653           mcg
31654            mg
31655            mg
31656            ml
31657         units
31665 other specify
31666 other specify
31678 other specify
31679 other specify
31680 other specify
31687 other specify
31688 other specify
31689 other specify
31696 other specify
31707 other specify
31713 other specify
31716            mg
31725         drops
31726 other specify
31727 other specify
31730            mg
31731         drops
31734 other specify
31735         drops
31736 other specify
31737 other specify
31742         drops
31747 other specify
31748            mg
31760 other specify
31761            ml
31762 other specify
31763 other specify
31765 other specify
31766 other specify
31768            mg
31769           mcg
31771           mcg
31773           mcg
31774            ml
31777 other specify
31780            mg
31781            mg
31798 other specify
31800 other specify
31803 other specify
31804 other specify
31807 other specify
31808 other specify
31810 other specify
31811 other specify
31818 other specify
31819 other specify
31824 other specify
31825 other specify
31826 other specify
31833   unspecified
31834 other specify
31836   unspecified
31837 other specify
31840 other specify
31841         units
31842 other specify
31843            ml
31844            mg
31845            ml
31846 other specify
31847 other specify
31848            mg
31849 other specify
31850         drops
31853         drops
31861            mg
31864            mg
31866            mg
31868 other specify
31869 other specify
31873            mg
31874 other specify
31876 other specify
31880            mg
31883 other specify
31885 other specify
31888 other specify
31891 other specify
31892 other specify
31895 other specify
31896 other specify
31897 other specify
31898 other specify
31906 other specify
31907         units
31908         units
31909 other specify
31911 other specify
31916 other specify
31917 other specify
31930            mg
31937            mg
31938            mg
31939            mg
31940            mg
31941            mg
31942 other specify
31945         units
31946         units
31947         units
31948         units
31953         drops
31954 other specify
31955 other specify
31967            mg
31968            mg
31969 other specify
31985   unspecified
31990 other specify
31991 other specify
31993 other specify
32002            mg
32003            mg
32006            mg
32015         drops
32016 other specify
32020            mg
32025 other specify
32032            mg
32034            mg
32035            mg
32040 other specify
32046         drops
32053 other specify
32054 other specify
32055         drops
32056 other specify
32057 other specify
32058 other specify
32059 other specify
32060 other specify
32074 other specify
32076 other specify
32078 other specify
32079 other specify
32080 other specify
32084 other specify
32095 other specify
32097 other specify
32098 other specify
32099 other specify
32100 other specify
32101 other specify
32102 other specify
32103 other specify
32104 other specify
32105 other specify
32106 other specify
32108 other specify
32114 other specify
32116 other specify
32119         drops
32121 other specify
32122 other specify
32123            mg
32128            mg
32129            mg
32131            mg
32132            mg
32133 other specify
32134 other specify
32139 other specify
32140 other specify
32146 other specify
32147 other specify
32153 other specify
32154 other specify
32160 other specify
32161 other specify
32168 other specify
32171         drops
32175         drops
32179 other specify
32180 other specify
32183         drops
32184         drops
32187   unspecified
32196 other specify
32212            mg
32221            mg
32222 other specify
32231 other specify
32232 other specify
32233 other specify
32234 other specify
32236 other specify
32237 other specify
32251 other specify
32252 other specify
32266 other specify
32276   unspecified
32290 other specify
32295 other specify
32296 other specify
32297         drops
32310 other specify
32312 other specify
32313 other specify
32315 other specify
32320            ml
32343 other specify
32354            mg
32355            mg
32356            mg
32358            ml
32359         drops
32360            mg
32362            oz
32363 other specify
32364            mg
32365            ml
32366            mg
32370 other specify
32384 other specify
32389 other specify
32390            ml
32393 other specify
32394            mg
32397            mg
32417 other specify
32425            ml
32426            mg
32427            mg
32445   unspecified
32447            mg
32448            mg
32449            mg
32460            mg
32463 other specify
32464 other specify
32466 other specify
32467 other specify
32475            mg
32476            mg
32477 other specify
32478 other specify
32504 other specify
32505 other specify
32507            oz
32509 other specify
32510 other specify
32511 other specify
32512 other specify
32513 other specify
32520         drops
32521         drops
32529 other specify
32530 other specify
32535 other specify
32536 other specify
32538 other specify
32542   unspecified
32557 other specify
32558 other specify
32561 other specify
32562 other specify
32575   unspecified
32576   unspecified
32629 other specify
32631 other specify
32632 other specify
32633 other specify
32635 other specify
32637 other specify
32639 other specify
32640 other specify
32642 other specify
32643 other specify
32652   unspecified
32654 other specify
32657            mg
32664 other specify
32670            mg
32672 other specify
32673 other specify
32678            mg
32680            mg
32682            mg
32685            mg
32692 other specify
32694 other specify
32695 other specify
32698 other specify
32703 other specify
32708            ml
32726         drops
32737         drops
32739 other specify
32740 other specify
32742 other specify
32743 other specify
32744 other specify
32745 other specify
32750 other specify
32751 other specify
32767 other specify
32768 other specify
32769            ml
32770 other specify
32777            mg
32798 other specify
32815 other specify
32829 other specify
32841         drops
32844            mg
32849 other specify
32850 other specify
32856 other specify
32857           mcg
32858            ml
32859           mcg
32860            mg
32862         drops
32863         drops
32869 other specify
32870            mg
32871            ml
32879 other specify
32883 other specify
32884            mg
32887 other specify
32888 other specify
32903         drops
32912         drops
32915 other specify
32923 other specify
32930 other specify
32937         drops
32938 other specify
32939            mg
32940 other specify
32942 other specify
32943 other specify
32944 other specify
32949 other specify
32950            ml
32951 other specify
32952 other specify
32953            mg
32954            mg
32955         units
32956         units
32964   unspecified
32965         drops
32983            mg
32999 other specify
33000 other specify
33004 other specify
33005 other specify
33008 other specify
33009 other specify
33010   unspecified
33011   unspecified
33014   unspecified
33015 other specify
33018 other specify
33022           mcg
33023 other specify
33027           mcg
33043           mcg
33047            mg
33066 other specify
33067 other specify
33068         units
33073            ml
33074 other specify
33075 other specify
33077 other specify
33078 other specify
33079 other specify
33080 other specify
33081 other specify
33085 other specify
33086            mg
33087            ml
33088            mg
33089            ml
33090            mg
33091            ml
33092 other specify
33096 other specify
33107            mg
33108            mg
33110 other specify
33113 other specify
33123            mg
33124 other specify
33125 other specify
33126 other specify
33128 other specify
33132 other specify
33133 other specify
33138 other specify
33157   unspecified
33159   unspecified
33166 other specify
33187           mcg
33188            mg
33189            mg
33190            mg
33191 other specify
33209 other specify
33211 other specify
33212 other specify
33220 other specify
33222 other specify
33223 other specify
33226         units
33227 other specify
33229 other specify
33230 other specify
33233 other specify
33235 other specify
33236         units
33239         units
33242 other specify
33243 other specify
33271   unspecified
33286         units
33289 other specify
33292 other specify
33293         drops
33317           mcg
33318 other specify
33327 other specify
33333            mg
33335            mg
33336 other specify
33338            mg
33347 other specify
33354            oz
33355            oz
33358 other specify
33363 other specify
33364 other specify
33369         units
33370         units
33374         units
33375         units
33376         units
33377         units
33385         drops
33387   unspecified
33389   unspecified
33410 other specify
33411 other specify
33412 other specify
33414 other specify
33416            mg
33419 other specify
33456   unspecified
33468 other specify
33471         drops
33479 other specify
33480 other specify
33482   unspecified
33489 other specify
33490            mg
33491            mg
33492            mg
33493            mg
33497 other specify
33499           mcg
33500 other specify
33502            mg
33504           mcg
33521            mg
33539 other specify
33541 other specify
33542         drops
33543 other specify
33544 other specify
33573 other specify
33576            mg
33577 other specify
33580 other specify
33581 other specify
33582            mg
33583            mg
33590 other specify
33591 other specify
33592 other specify
33601 other specify
33602 other specify
33614   unspecified
33641 other specify
33644 other specify
33645 other specify
33647         drops
33649 other specify
33651 other specify
33653            mg
33655 other specify
33665 other specify
33666 other specify
33667 other specify
33683 other specify
33684 other specify
33690           mcg
33691            mg
33692            mg
33693            mg
33694            mg
33695            mg
33696 other specify
33697            mg
33702 other specify
33704            mg
33706            mg
33710 other specify
33711 other specify
33714 other specify
33717 other specify
33722 other specify
33723 other specify
33724 other specify
33725 other specify
33737 other specify
33739 other specify
33740 other specify
33756         drops
33767            mg
33797 other specify
33798 other specify
33804 other specify
33805 other specify
33815   unspecified
33818            mg
33822           mcg
33823            mg
33824           mcg
33825            mg
33828            mg
33844         drops
33850           mcg
33868 other specify
33869            mg
33870 other specify
33882            mg
33885 other specify
33890            mg
33894 other specify
33901 other specify
33905 other specify
33907 other specify
33909 other specify
33911 other specify
33913 other specify
33914 other specify
33916            ml
33919 other specify
33927 other specify
33929         drops
33939 other specify
33940 other specify
33987 other specify
33988 other specify
33989 other specify
33990 other specify
33991 other specify
33992 other specify
33993 other specify
33994            ml
33995 other specify
33998 other specify
34000 other specify
34002 other specify
34003         drops
34005 other specify
34011   unspecified
34012            ml
34014 other specify
34015 other specify
34016 other specify
34020 other specify
34021 other specify
34022 other specify
34024 other specify
34025 other specify
34026 other specify
34027 other specify
34028 other specify
34029 other specify
34030 other specify
34031 other specify
34043 other specify
34044 other specify
34046         drops
34047 other specify
34048 other specify
34049 other specify
34051         units
34053 other specify
34054 other specify
34069           mcg
34070            mg
34071            mg
34072            mg
34073         drops
34074           mcg
34075            ml
34077 other specify
34087 other specify
34090 other specify
34091 other specify
34092         units
34093 other specify
34094            oz
34095         units
34096 other specify
34105 other specify
34107         drops
34108           mcg
34109 other specify
34110            ml
34111            mg
34112            mg
34113         drops
34115         drops
34125 other specify
34126 other specify
34128 other specify
34132 other specify
34134 other specify
34135 other specify
34138 other specify
34140            mg
34147 other specify
34148 other specify
34152 other specify
34155 other specify
34156            mg
34157            mg
34161           mcg
34162            mg
34227 other specify
34230            mg
34231            mg
34232           tsp
34233            mg
34234            mg
34235            mg
34238 other specify
34239            ml
34240            ml
34241            mg
34242            mg
34243            ml
34246            ml
34247            mg
34249 other specify
34254 other specify
34260            mg
34262            mg
34264            mg
34267            mg
34268 other specify
34269 other specify
34282 other specify
34287         drops
34288           mcg
34289            ml
34290            ml
34293            ml
34304            ml
34327           mcg
34332           mcg
34333 other specify
34334 other specify
34336 other specify
34340 other specify
34341           mcg
34342 other specify
34343 other specify
34344           mcg
34345 other specify
34348         drops
34356            mg
34359 other specify
34360 other specify
34361            mg
34362            mg
34367 other specify
34369            mg
34374 other specify
34375 other specify
34378   unspecified
34379   unspecified
34388 other specify
34401 other specify
34403 other specify
34409            mg
34410            mg
34418 other specify
34419 other specify
34425 other specify
34429 other specify
34430            ml
34433 other specify
34434 other specify
34435            mg
34436           tbs
34456 other specify
34457            gm
34458            mg
34459            mg
34460            mg
34461            mg
34462            mg
34463            gm
34464            mg
34465            mg
34466            mg
34467            mg
34468            mg
34474            mg
34493            mg
34510            mg
34513 other specify
34519 other specify
34520 other specify
34528            mg
34533 other specify
34536 other specify
34545   unspecified
34548   unspecified
34579   unspecified
34583 other specify
34584           tbs
34587 other specify
34588         drops
34593            mg
34594            mg
34606   unspecified
34608 other specify
34609 other specify
34612            mg
34614 other specify
34617 other specify
34624            gm
34628 other specify
34629 other specify
34630 other specify
34635 other specify
34636 other specify
34637 other specify
34638 other specify
34639 other specify
34640 other specify
34642 other specify
34643 other specify
34648         units
34669 other specify
34670 other specify
34671 other specify
34672 other specify
34673 other specify
34674 other specify
34675         drops
34676            mg
34677         drops
34678 other specify
34680         drops
34684 other specify
34697 other specify
34704 other specify
34705            mg
34706         units
34707 other specify
34708 other specify
34709 other specify
34710 other specify
34727   unspecified
34728   unspecified
34729   unspecified
34730 other specify
34733 other specify
34734 other specify
34741         drops
34744         drops
34747 other specify
34748 other specify
34749 other specify
34750           mcg
34763 other specify
34764 other specify
34766           mcg
34767            mg
34787 other specify
34788 other specify
34789            mg
34790 other specify
34791 other specify
34796 other specify
34797 other specify
34798 other specify
34799 other specify
34811 other specify
34813 other specify
34828 other specify
34832            mg
34833 other specify
34834 other specify
34835 other specify
34838 other specify
34845 other specify
34867            mg
34874            gm
34875            mg
34881            mg
34887 other specify
34888 other specify
34889 other specify
34890 other specify
34891 other specify
34892 other specify
34900            mg
34901            mg
34902            mg
34903         drops
34904            mg
34905 other specify
34906 other specify
34907         drops
34908            ml
34917   unspecified
34918         drops
34920           mcg
34922            mg
34923            mg
34924            mg
34940            mg
34953   unspecified
34955   unspecified
34956   unspecified
34966 other specify
34973            mg
34979 other specify
34981 other specify
34982 other specify
34983 other specify
34991           mcg
34992 other specify
34996 other specify
35002         units
35004         units
35014 other specify
35025 other specify
35026           tsp
35027 other specify
35034            mg
35049 other specify
35069 other specify
35070            mg
35074   unspecified
35077 other specify
35094 other specify
35095 other specify
35101            mg
35102            mg
35103 other specify
35109   unspecified
35110 other specify
35119 other specify
35122            ml
35124            ml
35125 other specify
35126            gm
35128 other specify
35132 other specify
35134 other specify
35143 other specify
35144 other specify
35145 other specify
35146 other specify
35147 other specify
35148 other specify
35149   unspecified
35150 other specify
35152 other specify
35153 other specify
35154 other specify
35155            mg
35160   unspecified
35167 other specify
35170           mcg
35171           mcg
35176            mg
35181 other specify
35182           mcg
35183            mg
35189 other specify
35190            mg
35191            mg
35203 other specify
35204 other specify
35205 other specify
35207           mcg
35212 other specify
35213            mg
35214 other specify
35215            mg
35216            mg
35232            mg
35245 other specify
35252         drops
35258            mg
35262           mcg
35263            mg
35264           mcg
35278 other specify
35279 other specify
35282            mg
35283 other specify
35284 other specify
35291 other specify
35298 other specify
35299 other specify
35300 other specify
35314 other specify
35315            mg
35316            mg
35318            mg
35354            mg
35382 other specify
35386 other specify
35388            ml
35393 other specify
35399 other specify
35400            mg
35401 other specify
35404 other specify
35405 other specify
35406 other specify
35414            mg
35417            mg
35420            mg
35421            mg
35422 other specify
35423 other specify
35424 other specify
35425            mg
35432            mg
35434         drops
35443         drops
35450         drops
35453 other specify
35454 other specify
35495 other specify
35496 other specify
35497            mg
35498            mg
35499         units
35501           mcg
35503            mg
35504         units
35506         drops
35507         drops
35509 other specify
35513            mg
35525 other specify
35526 other specify
35528            mg
35539            mg
35560 other specify
35561 other specify
35562 other specify
35563 other specify
35565         units
35566         units
35569           mcg
35571 other specify
35572 other specify
35573 other specify
35574            mg
35575 other specify
35576         units
35577         units
35578 other specify
35579 other specify
35580            mg
35581 other specify
35582 other specify
35584            mg
35592         drops
35593 other specify
35598 other specify
35605 other specify
35616            mg
35617            mg
35618            mg
35619            mg
35620         drops
35621 other specify
35622            mg
35624         drops
35626 other specify
35627            mg
35628         drops
35633 other specify
35638 other specify
35639 other specify
35641 other specify
35642 other specify
35643         drops
35644            mg
35645            ml
35656 other specify
35657 other specify
35658 other specify
35659            mg
35662 other specify
35664 other specify
35665 other specify
35668   unspecified
35673 other specify
35674         drops
35689 other specify
35696            oz
35697 other specify
35699 other specify
35700 other specify
35709 other specify
35717 other specify
35721 other specify
35722 other specify
35725           mcg
35727            mg
35740            ml
35743         drops
35746            mg
35747            mg
35748            mg
35749            mg
35751            mg
35756         units
35757            mg
35758            mg
35762 other specify
35767 other specify
35768 other specify
35769 other specify
35770 other specify
35771 other specify
35772 other specify
35773 other specify
35774 other specify
35775 other specify
35776 other specify
35777 other specify
35778 other specify
35779            mg
35782           mcg
35784 other specify
35786 other specify
35791            ml
35792           mcg
35793         units
35808   unspecified
35809   unspecified
35810   unspecified
35812 other specify
35820 other specify
35821 other specify
35826 other specify
35827 other specify
35831            mg
35832            mg
35835            mg
35850 other specify
35853 other specify
35855 other specify
35858            mg
35859            mg
35889 other specify
35903           tbs
35905            mg
35907            mg
35908            mg
35909            mg
35931         units
35954 other specify
35955 other specify
35963 other specify
35965         drops
35968         drops
35969 other specify
35973 other specify
35980           mcg
35982 other specify
35983 other specify
36019 other specify
36021 other specify
36023 other specify
36030            oz
36042 other specify
36043            mg
36044 other specify
36065 other specify
36069 other specify
36070 other specify
36078         drops
36081         drops
36082            mg
36083            mg
36084 other specify
36108            mg
36110            mg
36112 other specify
36113   unspecified
36115 other specify
36134            mg
36137 other specify
36144 other specify
36145 other specify
36150 other specify
36151 other specify
36153            mg
36155 other specify
36156 other specify
36159 other specify
36171   unspecified
36191 other specify
36192            oz
36196            mg
36198 other specify
36200            ml
36201 other specify
36202         drops
36203         drops
36205         drops
36218 other specify
36220 other specify
36221 other specify
36222 other specify
36223 other specify
36225 other specify
36226 other specify
36227 other specify
36228 other specify
36229 other specify
36231 other specify
36232 other specify
36233 other specify
36235 other specify
36237 other specify
36238            mg
36240            mg
36254   unspecified
36256         drops
36258            mg
36264         units
36268   unspecified
36271            mg
36272            mg
36273 other specify
36275 other specify
36276 other specify
36280 other specify
36283            mg
36284            mg
36288         units
36289            mg
36292            ml
36293         drops
36294            ml
36295           tbs
36296            ml
36297            ml
36298            ml
36299            ml
36300         drops
36301           tsp
36302            ml
36303            ml
36304            ml
36305            ml
36306 other specify
36307 other specify
36308            ml
36309            ml
36310            ml
36311   unspecified
36322         drops
36323            ml
36324            ml
36325            ml
36326            ml
36327            ml
36328            ml
36329         drops
36330           tsp
36331            ml
36332            ml
36333         drops
36334            ml
36335 other specify
36336 other specify
36337            ml
36338            ml
36339   unspecified
36340   unspecified
36357            mg
36358         drops
36359            ml
36360            ml
36361            ml
36362            ml
36363            ml
36364            ml
36365         drops
36366           tsp
36367            ml
36368            ml
36369            ml
36370         drops
36371 other specify
36372 other specify
36373   unspecified
36374   unspecified
36376            ml
36377         drops
36378            ml
36379            ml
36380         drops
36381            ml
36382            ml
36383            ml
36384         drops
36385           tsp
36397            mg
36398            ml
36399            mg
36400            mg
36401            mg
36402            mg
36403         drops
36404           tsp
36405         units
36406         units
36410   unspecified
36427 other specify
36429           mcg
36430 other specify
36438         units
36439 other specify
36440 other specify
36443            mg
36444 other specify
36448 other specify
36451 other specify
36460 other specify
36461 other specify
36464         units
36474   unspecified
36491 other specify
36497            mg
36513   unspecified
36520           tsp
36533 other specify
36535 other specify
36559 other specify
36560 other specify
36562 other specify
36563 other specify
36568 other specify
36571 other specify
36574   unspecified
36579 other specify
36580            mg
36595 other specify
36597         drops
36598            mg
36599            mg
36600 other specify
36601 other specify
36602 other specify
36603 other specify
36605 other specify
36606         drops
36607 other specify
36608 other specify
36616 other specify
36623         drops
36624 other specify
36626 other specify
36627 other specify
36628 other specify
36630 other specify
36631         drops
36632 other specify
36633         drops
36635 other specify
36636 other specify
36637         drops
36652 other specify
36657            mg
36660           mcg
36661            mg
36667            mg
36670 other specify
36698 other specify
36699 other specify
36705            mg
36708 other specify
36709 other specify
36735            mg
36751 other specify
36752 other specify
36753 other specify
36772 other specify
36776            mg
36777            mg
36778           tbs
36816 other specify
36817 other specify
36818         drops
36819         drops
36824 other specify
36833 other specify
36834 other specify
36835 other specify
36840            mg
36842            gm
36846            mg
36847            mg
36848            mg
36849 other specify
36850 other specify
36851            gm
36853         drops
36855   unspecified
36859   unspecified
36874            ml
36875            mg
36876            mg
36877            mg
36878 other specify
36879            ml
36880            mg
36881 other specify
36882            mg
36883 other specify
36884 other specify
36892         drops
36893 other specify
36894 other specify
36900 other specify
36901 other specify
36911 other specify
36914 other specify
36916         drops
36919            mg
36920 other specify
36921 other specify
36925           mcg
36945            gm
36946            mg
36969         units
36970         units
36982 other specify
36983 other specify
36984 other specify
36985 other specify
36994 other specify
37007            mg
37015 other specify
37017 other specify
37018 other specify
37019 other specify
37020         drops
37021 other specify
37022 other specify
37025 other specify
37027 other specify
37036 other specify
37038            mg
37046         units
37054 other specify
37055 other specify
37056 other specify
37057           mcg
37061 other specify
37063 other specify
37069           mcg
37070 other specify
37071 other specify
37073 other specify
37074            mg
37075 other specify
37076 other specify
37077 other specify
37078 other specify
37080 other specify
37087 other specify
37088 other specify
37091            mg
37098 other specify
37099 other specify
37103            mg
37104         drops
37115 other specify
37116            mg
37117 other specify
37135 other specify
37157   unspecified
37164         drops
37165 other specify
37168 other specify
37169 other specify
37179         units
37193           tbs
37194 other specify
37195            mg
37197            mg
37200 other specify
37201 other specify
37202 other specify
37219 other specify
37221            mg
37252 other specify
37259            mg
37260            ml
37261 other specify
37262 other specify
37263            mg
37266 other specify
37267         drops
37270 other specify
37271 other specify
37272            mg
37273         drops
37277 other specify
37278   unspecified
37279   unspecified
37302           mcg
37303         drops
37304            mg
37306            mg
37307            mg
37308            mg
37309 other specify
37311            mg
37316 other specify
37324            mg
37325            gm
37326            ml
37332 other specify
37337 other specify
37344 other specify
37349 other specify
37359            mg
37373 other specify
37374 other specify
37375         units
37376         units
37377           tsp
37385 other specify
37386 other specify
37387 other specify
37392 other specify
37396 other specify
37397 other specify
37434   unspecified
37435   unspecified
37439 other specify
37440 other specify
37446 other specify
37447 other specify
37448 other specify
37449 other specify
37451 other specify
37453 other specify
37454 other specify
37455 other specify
37457 other specify
37463 other specify
37464 other specify
37465 other specify
37467 other specify
37468 other specify
37469 other specify
37477         drops
37478         drops
37482 other specify
37485 other specify
37491 other specify
37493 other specify
37494 other specify
37495 other specify
37496         drops
37510            mg
37526            mg
37527 other specify
37533 other specify
37536 other specify
37540 other specify
37541 other specify
37545 other specify
37546 other specify
37547 other specify
37552 other specify
37553 other specify
37568            mg
37569 other specify
37571            mg
37576 other specify
37577            mg
37578            oz
37579           mcg
37580            mg
37581            mg
37582            mg
37584   unspecified
37585   unspecified
37586   unspecified
37597   unspecified
37598   unspecified
37601 other specify
37602 other specify
37603 other specify
37608 other specify
37621 other specify
37622 other specify
37623           mcg
37624 other specify
37627 other specify
37628 other specify
37629 other specify
37630 other specify
37639   unspecified
37648 other specify
37649            ml
37651 other specify
37652 other specify
37655 other specify
37657 other specify
37662 other specify
37664 other specify
37669 other specify
37670 other specify
37675 other specify
37682            mg
37686            mg
37691 other specify
37692           mcg
37695            mg
37696            mg
37697            mg
37698            mg
37699         drops
37704 other specify
37705 other specify
37708            mg
37709            mg
37710            mg
37712   unspecified
37713   unspecified
37714   unspecified
37717   unspecified
37718   unspecified
37731 other specify
37738 other specify
37739 other specify
37740 other specify
37742 other specify
37771         drops
37785 other specify
37786 other specify
37797 other specify
37798           mcg
37805            mg
37806            mg
37807            mg
37809 other specify
37816   unspecified
37817   unspecified
37820            iu
37821   unspecified
37822 other specify
37834 other specify
37835 other specify
37836            mg
37837            mg
37838 other specify
37839 other specify
37845 other specify
37846 other specify
37847 other specify
37848 other specify
37849 other specify
37850 other specify
37851 other specify
37852 other specify
37855 other specify
37858 other specify
37860 other specify
37863 other specify
37864 other specify
37865 other specify
37885 other specify
37894 other specify
37895 other specify
37905 other specify
37907            mg
37908 other specify
37916 other specify
37920 other specify
37929         drops
37930         drops
37933 other specify
37934 other specify
37935         drops
37936 other specify
37937         drops
37940            mg
37941         drops
37942         drops
37944            mg
37945            mg
37956            mg
37976 other specify
37977 other specify
37978 other specify
37979 other specify
37980 other specify
37984 other specify
37989 other specify
37990 other specify
37992 other specify
37993 other specify
38018            mg
38036 other specify
38041 other specify
38046 other specify
38048            mg
38050 other specify
38051 other specify
38052   unspecified
38056           tsp
38070 other specify
38071         drops
38072 other specify
38073            mg
38074         drops
38075         drops
38102            mg
38123 other specify
38126 other specify
38129            mg
38132   unspecified
38134 other specify
38135 other specify
38136 other specify
38141 other specify
38142 other specify
38150 other specify
38151 other specify
38152         units
38156            mg
38165            mg
38166            mg
38177 other specify
38179         drops
38181   unspecified
38182   unspecified
38184   unspecified
38185         drops
38193 other specify
38204           tsp
38211         drops
38216 other specify
38217 other specify
38219            mg
38220 other specify
38240 other specify
38241 other specify
38248            mg
38255 other specify
38256           tbs
38257            mg
38259            mg
38260            mg
38262 other specify
38268         drops
38273         units
38284 other specify
38287 other specify
38288 other specify
38289 other specify
38291 other specify
38292 other specify
38293            mg
38294 other specify
38295 other specify
38296 other specify
38301 other specify
38305         drops
38306 other specify
38321            mg
38324            ml
38326 other specify
38330 other specify
38339 other specify
38341 other specify
38342 other specify
38350         units
38351 other specify
38352 other specify
38353 other specify
38354 other specify
38361 other specify
38362            mg
38365 other specify
38366 other specify
38367 other specify
38369         drops
38370            ml
38371            ml
38372 other specify
38373 other specify
38377   unspecified
38378         drops
38380 other specify
38381 other specify
38386   unspecified
38387   unspecified
38388 other specify
38394 other specify
38396 other specify
38397 other specify
38398            mg
38399 other specify
38406 other specify
38419            ml
38420 other specify
38422 other specify
38423 other specify
38427            gm
38431 other specify
38436 other specify
38438 other specify
38439 other specify
38442            ml
38461            ml
38462            mg
38464            mg
38465            ml
38466            mg
38470            mg
38471            mg
38472            mg
38473            mg
38496           mcg
38499            mg
38504            ml
38505            mg
38507            mg
38508            ml
38509            mg
38510            mg
38511            mg
38512            mg
38522            mg
38526 other specify
38527 other specify
38528 other specify
38529 other specify
38531 other specify
38532 other specify
38533         drops
38534 other specify
38535           tbs
38536 other specify
38544 other specify
38550   unspecified
38551   unspecified
38557   unspecified
38567 other specify
38568 other specify
38569 other specify
38570   unspecified
38588 other specify
38602 other specify
38605         drops
38606            mg
38607            oz
38610 other specify
38611 other specify
38618           tsp
38626 other specify
38630 other specify
38635 other specify
38636 other specify
38637 other specify
38638         drops
38643 other specify
38644 other specify
38647            ml
38652 other specify
38655 other specify
38656 other specify
38665            mg
38691 other specify
38716            gm
38722         drops
38723 other specify
38724 other specify
38754   unspecified
38764            mg
38772 other specify
38773         units
38775            ml
38776         drops
38779            gm
38780            oz
38787 other specify
38789   unspecified
38796 other specify
38802   unspecified
38808            mg
38809         drops
38810            ml
38816 other specify
38818            mg
38820            mg
38821            mg
38828 other specify
38839         drops
38841         drops
38843         drops
38845           tsp
38847 other specify
38850 other specify
38851   unspecified
38854         drops
38855 other specify
38861            ml
38864         drops
38865         drops
38868           mcg
38871   unspecified
38890 other specify
38891 other specify
38892 other specify
38893 other specify
38896 other specify
38897 other specify
38899 other specify
38900 other specify
38902 other specify
38924            mg
38925 other specify
38926 other specify
38930 other specify
38931 other specify
38940 other specify
38941 other specify
38945 other specify
38946 other specify
38950 other specify
38951 other specify
38952 other specify
38956   unspecified
38963 other specify
38964 other specify
38970   unspecified
38971   unspecified
38974   unspecified
38976   unspecified
38978         units
38983 other specify
38986 other specify
38988 other specify
38997   unspecified
39004 other specify
39005 other specify
39006         drops
39010 other specify
39035   unspecified
39073 other specify
39083            mg
39099 other specify
39105 other specify
39106 other specify
39113            mg
39117            mg
39120 other specify
39121 other specify
39122 other specify
39123 other specify
39125            ml
39127         drops
39128         drops
39141            mg
39158            mg
39165            mg
39167 other specify
39171 other specify
39175            ml
39176 other specify
39177            mg
39181 other specify
39182 other specify
39188         drops
39198 other specify
39201         drops
39202 other specify
39207         drops
39209         drops
39210         drops
39211 other specify
39212         drops
39218         drops
39258 other specify
39259 other specify
39260 other specify
39261           tsp
39262            mg
39273            mg
39316 other specify
39325            mg
39326            oz
39327            mg
39328            mg
39329            mg
39330            mg
39331            mg
39332            mg
39337 other specify
39338 other specify
39339 other specify
39340 other specify
39385           mcg
39388 other specify
39389 other specify
39390           mcg
39392         drops
39415 other specify
39416            mg
39423   unspecified
39425 other specify
39433            oz
39434         drops
39435 other specify
39436            mg
39438 other specify
39439 other specify
39440         units
39441         units
39442         units
39443         units
39444         units
39445         units
39446         units
39447         units
39450         units
39451         units
39453 other specify
39464           mcg
39478           mcg
39486 other specify
39495         drops
39496           mcg
39511         units
39513         drops
39516 other specify
39519         drops
39525 other specify
39526 other specify
39528         drops
39531 other specify
39532            mg
39534         drops
39536 other specify
39539         drops
39541 other specify
39542 other specify
39543 other specify
39546 other specify
39548            mg
39566   unspecified
39567   unspecified
39573   unspecified
39579         drops
39581 other specify
39582 other specify
39586 other specify
39591   unspecified
39599   unspecified
39605            mg
39607            mg
39609 other specify
39617            mg
39618            mg
39634 other specify
39635 other specify
39637            mg
39639 other specify
39642 other specify
39651 other specify
39695 other specify
39705            mg
39706            mg
39707            mg
39708           mcg
39714 other specify
39715 other specify
39737   unspecified
39744 other specify
39745 other specify
39750         drops
39754 other specify
39755 other specify
39756            mg
39759            mg
39760         units
39763            mg
39764 other specify
39776            mg
39777            mg
39778            mg
39785            mg
39786 other specify
39787 other specify
39788 other specify
39795            mg
39796           mcg
39809           mcg
39833            mg
39849            mg
39856            mg
39860            mg
39871           mcg
39875           mcg
39877            mg
39881 other specify
39901            mg
39909 other specify
39916         drops
39917         drops
39918         drops
39919 other specify
39924 other specify
39948 other specify
39949 other specify
39958 other specify
39968 other specify
39969 other specify
39970 other specify
39972 other specify
39973 other specify
39974 other specify
39975 other specify
39976 other specify
39980 other specify
39981 other specify
39982 other specify
39987         drops
39988         drops
40003            mg
40013 other specify
40014 other specify
40021         drops
40023 other specify
40024         drops
40038            mg
40042           mcg
40043            ml
40052 other specify
40053           mcg
40054            mg
40092 other specify
40093 other specify
40095           mcg
40102   unspecified
40108           mcg
40109            mg
40115 other specify
40117 other specify
40121           mcg
40123 other specify
40124 other specify
40125 other specify
40133            mg
40134            mg
40138 other specify
40141         drops
40142            mg
40143 other specify
40144 other specify
40149 other specify
40154 other specify
40164 other specify
40165 other specify
40166 other specify
40180 other specify
40181 other specify
40186 other specify
40193           mcg
40194 other specify
40196 other specify
40200 other specify
40206 other specify
40209 other specify
40210 other specify
40211 other specify
40214 other specify
40216 other specify
40217 other specify
40218 other specify
40221 other specify
40222 other specify
40223 other specify
40224 other specify
40244 other specify
40245 other specify
40290           mcg
40296            mg
40297            ml
40298            ml
40299 other specify
40302         drops
40308            mg
40309            mg
40312 other specify
40313            mg
40315 other specify
40317 other specify
40325            mg
40331            mg
40343         drops
40346            mg
40390 other specify
40391 other specify
40392            mg
40394   unspecified
40403 other specify
40405            mg
40406            mg
40407           mcg
40408 other specify
40417 other specify
40418 other specify
40422 other specify
40425 other specify
40446            mg
40447         drops
40451            mg
40454            mg
40464            mg
40468         units
40472 other specify
40474 other specify
40483 other specify
40484 other specify
40486         units
40487         units
40488 other specify
40489         drops
40490            mg
40494            mg
40503 other specify
40504 other specify
40505 other specify
40508         drops
40511            mg
40519 other specify
40521         drops
40535            mg
40541         units
40542            ml
40543            mg
40547            mg
40567         units
40568 other specify
40571         drops
40572         units
40573 other specify
40574 other specify
40579 other specify
40580            mg
40581            mg
40582 other specify
40583            ml
40594 other specify
40595 other specify
40600 other specify
40601 other specify
40603 other specify
40604 other specify
40606 other specify
40607 other specify
40610 other specify
40611 other specify
40615            mg
40616 other specify
40617 other specify
40618   unspecified
40619   unspecified
40620   unspecified
40624            mg
40625            mg
40634 other specify
40635            mg
40636         units
40637         units
40644   unspecified
40653 other specify
40654 other specify
40655 other specify
40656            mg
40657           mcg
40658           mcg
40684 other specify
40685 other specify
40686 other specify
40687 other specify
40688 other specify
40689 other specify
40690 other specify
40691 other specify
40693 other specify
40695 other specify
40696 other specify
40699            mg
40700 other specify
40701 other specify
40718         drops
40719 other specify
40721 other specify
40722 other specify
40723         drops
40724         drops
40725 other specify
40726         drops
40727         drops
40739 other specify
40744 other specify
40745 other specify
40747            mg
40748 other specify
40749 other specify
40750           tbs
40751 other specify
40754 other specify
40755 other specify
40756 other specify
40758         drops
40760 other specify
40774 other specify
40775 other specify
40776 other specify
40781 other specify
40783         units
40793 other specify
40794         drops
40795 other specify
40796 other specify
40799 other specify
40800 other specify
40801 other specify
40803 other specify
40804 other specify
40810 other specify
40823 other specify
40824 other specify
40825 other specify
40826            mg
40827 other specify
40828 other specify
40829 other specify
40833 other specify
40834 other specify
40838 other specify
40839 other specify
40840 other specify
40843 other specify
40846            mg
40848 other specify
40866 other specify
40868 other specify
40869            mg
40870 other specify
40873 other specify
40875 other specify
40876           mcg
40879 other specify
40895   unspecified
40897            mg
40899            mg
40900            mg
40902           mcg
40905           mcg
40919   unspecified
40943            ml
40957 other specify
40958 other specify
40959 other specify
40960 other specify
40961 other specify
40962 other specify
40965 other specify
40966 other specify
40967 other specify
40968 other specify
40969 other specify
40970 other specify
40971 other specify
40972 other specify
40974 other specify
40975 other specify
40984   unspecified
40987   unspecified
40990   unspecified
40992         units
40993         units
40994         units
40997 other specify
40998            ml
41002            mg
41003            mg
41004            mg
41005            oz
41006            gm
41007            gm
41008            mg
41009            mg
41010            ml
41011            mg
41012            mg
41013            mg
41014            gm
41015            mg
41016            ml
41017            mg
41018 other specify
41020   unspecified
41021 other specify
41022         drops
41023 other specify
41024 other specify
41025            ml
41055            mg
41057         drops
41068 other specify
41069 other specify
41073 other specify
41078 other specify
41082            mg
41083            mg
41084            ml
41085            mg
41086            mg
41087            mg
41088            ml
41089            mg
41090           tsp
41091         drops
41092            mg
41094            mg
41095            mg
41096            ml
41097         drops
41098            ml
41099            mg
41100            mg
41101            gm
41102            mg
41103            ml
41104            mg
41105            mg
41121 other specify
41125 other specify
41128 other specify
41129            mg
41130            mg
41131 other specify
41132 other specify
41133 other specify
41134 other specify
41137 other specify
41139         drops
41147         drops
41151         drops
41152   unspecified
41170 other specify
41198           mcg
41199           mcg
41200           mcg
41201           mcg
41203 other specify
41204 other specify
41206 other specify
41207 other specify
41208 other specify
41209 other specify
41210 other specify
41216         drops
41217 other specify
41219 other specify
41220            mg
41221 other specify
41222           mcg
41223         units
41224         units
41225            mg
41240 other specify
41241 other specify
41242 other specify
41243           mcg
41246 other specify
41250 other specify
41251            mg
41252            mg
41254 other specify
41255            mg
41256            mg
41260   unspecified
41267 other specify
41278 other specify
41279 other specify
41281 other specify
41283            mg
41302            mg
41313         drops
41314            mg
41315         drops
41316            mg
41318         drops
41319           mcg
41320 other specify
41325            mg
41332            mg
41335 other specify
41336 other specify
41340 other specify
41343         drops
41360   unspecified
41370         units
41371         units
41372         units
41373 other specify
41374 other specify
41376            mg
41377 other specify
41378 other specify
41381            ml
41384 other specify
41385 other specify
41386 other specify
41387 other specify
41388         drops
41396         drops
41398         units
41399         drops
41400            ml
41407            mg
41413         drops
41417           mcg
41418            ml
41420            mg
41421 other specify
41422 other specify
41424 other specify
41425 other specify
41426 other specify
41430            mg
41431            mg
41432 other specify
41433         drops
41435            mg
41442 other specify
41443            mg
41444            mg
41446 other specify
41447            mg
41451            mg
41464 other specify
41466 other specify
41470   unspecified
41497 other specify
41500         units
41502 other specify
41505 other specify
41524            mg
41525 other specify
41531 other specify
41533            mg
41550            mg
41557 other specify
41572 other specify
41573 other specify
41581 other specify
41612            mg
41615 other specify
41617            mg
41621            mg
41629 other specify
41632            mg
41633            mg
41636 other specify
41637 other specify
41638 other specify
41639 other specify
41640 other specify
41641           mcg
41648         drops
41653            mg
41655         drops
41661            mg
41674            mg
41724   unspecified
41725 other specify
41726 other specify
41727 other specify
41728 other specify
41729 other specify
41731         units
41732 other specify
41737 other specify
41738 other specify
41739 other specify
41740 other specify
41743            mg
41746 other specify
41747 other specify
41748 other specify
41749 other specify
41750 other specify
41751 other specify
41752 other specify
41753 other specify
41754 other specify
41756           mcg
41759 other specify
41774            mg
41775            mg
41778 other specify
41779 other specify
41781         units
41803 other specify
41804 other specify
41811         drops
41816         drops
41819            mg
41827 other specify
41830            mg
41835 other specify
41836 other specify
41837 other specify
41838 other specify
41840 other specify
41841 other specify
41842         drops
41846            gm
41849 other specify
41850 other specify
41851            mg
41853            mg
41854 other specify
41855 other specify
41856 other specify
41861 other specify
41862         drops
41863         drops
41866           mcg
41867            mg
41870            mg
41872            mg
41884 other specify
41885 other specify
41888 other specify
41891            mg
41892            mg
41893         drops
41894            mg
41895            mg
41896            mg
41897            mg
41898            mg
41899            mg
41900            mg
41901            mg
41902            mg
41903            mg
41904            mg
41905            mg
41906            mg
41907           tsp
41921   unspecified
41929 other specify
41930 other specify
41937 other specify
41938 other specify
41939 other specify
41946           mcg
41947           mcg
41950           mcg
41966 other specify
41967 other specify
41969 other specify
41971 other specify
41973 other specify
41975            mg
41976 other specify
41988 other specify
41989 other specify
41992 other specify
41993 other specify
41996 other specify
41999 other specify
42004         units
42005         units
42011 other specify
42012 other specify
42030 other specify
42032 other specify
42033            mg
42034            mg
42035            mg
42036         drops
42037 other specify
42039 other specify
42040 other specify
42041            mg
42042            mg
42043 other specify
42044 other specify
42051 other specify
42053 other specify
42054 other specify
42055            gm
42057            mg
42061 other specify
42063 other specify
42066 other specify
42096 other specify
42100 other specify
42101 other specify
42112 other specify
42113            mg
42114            mg
42115            mg
42116            mg
42117            mg
42119   unspecified
42122   unspecified
42147 other specify
42148 other specify
42149 other specify
42150 other specify
42151 other specify
42152 other specify
42154 other specify
42157            mg
42171         drops
42174 other specify
42175            ml
42176            mg
42198 other specify
42201 other specify
42215   unspecified
42218         units
42219         units
42221 other specify
42227 other specify
42229 other specify
42240   unspecified
42241   unspecified
42242   unspecified
42243   unspecified
42256 other specify
42257 other specify
42259 other specify
42267         drops
42272            mg
42273            mg
42278 other specify
42284            mg
42286 other specify
42287 other specify
42289 other specify
42290 other specify
42291 other specify
42313 other specify
42314 other specify
42345 other specify
42346 other specify
42348 other specify
42349 other specify
42353 other specify
42354 other specify
42355           tsp
42356 other specify
42357 other specify
42358 other specify
42361 other specify
42365 other specify
42366 other specify
42367 other specify
42368         units
42378 other specify
42379 other specify
42381            mg
42384 other specify
42385 other specify
42386 other specify
42387 other specify
42399 other specify
42401         drops
42402 other specify
42403 other specify
42404 other specify
42412 other specify
42413 other specify
42417 other specify
42425 other specify
42426 other specify
42433 other specify
42435            mg
42451 other specify
42455            mg
42463 other specify
42464 other specify
42465 other specify
42466            mg
42468   unspecified
42474 other specify
42475            mg
42476 other specify
42477 other specify
42478            mg
42479            oz
42480            oz
42481            mg
42482 other specify
42483 other specify
42486 other specify
42488 other specify
42489            mg
42502            mg
42506 other specify
42512 other specify
42513         units
42515 other specify
42516 other specify
42518            mg
42519            mg
42522 other specify
42537 other specify
42551 other specify
42552 other specify
42553 other specify
42566 other specify
42569 other specify
42570 other specify
42572           mcg
42573 other specify
42574 other specify
42575 other specify
42578            mg
42579            mg
42583            mg
42593           mcg
42594           mcg
42624 other specify
42625 other specify
42626         drops
42627 other specify
42628 other specify
42632 other specify
42633 other specify
42634 other specify
42637 other specify
42638            mg
42640 other specify
42646            ml
42647            ml
42648            ml
42651 other specify
42652 other specify
42655 other specify
42656 other specify
42666 other specify
42667 other specify
42668            mg
42675   unspecified
42678         drops
42679         drops
42694 other specify
42695 other specify
42696 other specify
42697 other specify
42700         drops
42704 other specify
42712 other specify
42716 other specify
42721         units
42725 other specify
42726 other specify
42727         units
42728 other specify
42729 other specify
42740 other specify
42741 other specify
42752         units
42753         units
42758            mg
42760 other specify
42761 other specify
42764            mg
42766 other specify
42767 other specify
42768            mg
42769            mg
42785            mg
42786            mg
42787            mg
42791            mg
42792            mg
42799   unspecified
42809 other specify
42810 other specify
42821 other specify
42829         drops
42833            mg
42860 other specify
42866 other specify
42867 other specify
42869 other specify
42870 other specify
42876            mg
42879         drops
42887   unspecified
42890 other specify
42891 other specify
42892   unspecified
42893   unspecified
42894   unspecified
42909            mg
42913 other specify
42915 other specify
42920            mg
42923 other specify
42926 other specify
42930 other specify
42931 other specify
42932 other specify
42935 other specify
42936 other specify
42939 other specify
42940 other specify
42946   unspecified
42952            mg
42956 other specify
42959 other specify
42960           mcg
42967 other specify
42994 other specify
43013           mcg
43045 other specify
43064 other specify
43065 other specify
43069 other specify
43072 other specify
43073 other specify
43074 other specify
43081 other specify
43086 other specify
43105 other specify
43116 other specify
43119 other specify
43123            mg
43134            mg
43135            mg
43136            mg
43137            mg
43138            mg
43144 other specify
43149            mg
43151            mg
43153            mg
43169 other specify
43173 other specify
43183            mg
43184            mg
43187            mg
43191 other specify
43200            mg
43202            ml
43204 other specify
43224         drops
43228 other specify
43236            mg
43238 other specify
43239 other specify
43240            mg
43241 other specify
43242 other specify
43243 other specify
43244 other specify
43246 other specify
43247   unspecified
43251            mg
43254            mg
43258            mg
43259            mg
43265            mg
43270            mg
43286            mg
43291            mg
43292            oz
43293 other specify
43310 other specify
43329            mg
43334            mg
43366         drops
43370 other specify
43388 other specify
43396            gm
43397            gm
43398            mg
43399            mg
43400            mg
43405 other specify
43412 other specify
43416 other specify
43423           mcg
43424            mg
43430 other specify
43435 other specify
43436            mg
43442 other specify
43443            mg
43465 other specify
43467 other specify
43469 other specify
43470 other specify
43471 other specify
43482 other specify
43491 other specify
43493            mg
43494            mg
43496            mg
43497            mg
43498            mg
43510 other specify
43511 other specify
43512 other specify
43522 other specify
43527 other specify
43531 other specify
43532 other specify
43535 other specify
43538 other specify
43539 other specify
43540         drops
43545 other specify
43546 other specify
43547 other specify
43548 other specify
43549 other specify
43550 other specify
43561            mg
43563 other specify
43570         drops
43601         drops
43610 other specify
43611           mcg
43620            mg
43621 other specify
43622           mcg
43636 other specify
43637 other specify
43639            gm
43640         drops
43641 other specify
43642         drops
43643 other specify
43644         units
43645         units
43646         units
43650            oz
43652 other specify
43653 other specify
43669 other specify
43670            mg
43674 other specify
43675            mg
43678 other specify
43683 other specify
43684 other specify
43685 other specify
43686 other specify
43697 other specify
43698 other specify
43701 other specify
43702 other specify
43706 other specify
43707 other specify
43709 other specify
43712 other specify
43714 other specify
43715 other specify
43738   unspecified
43743 other specify
43744 other specify
43745 other specify
43746 other specify
43747 other specify
43751 other specify
43755            mg
43756            mg
43765 other specify
43766            mg
43778           mcg
43783 other specify
43784 other specify
43785 other specify
43790         units
43806 other specify
43807 other specify
43829            ml
43831           mcg
43838   unspecified
43843            mg
43844            mg
43851            mg
43853   unspecified
43854   unspecified
43878 other specify
43880 other specify
43884         units
43885 other specify
43887         drops
43889 other specify
43893 other specify
43894 other specify
43896 other specify
43897         drops
43898            mg
43919 other specify
43920 other specify
43938 other specify
43939 other specify
43949 other specify
43950 other specify
43958 other specify
43959 other specify
43960 other specify
43963            mg
43965         drops
43975 other specify
43976           mcg
43977           mcg
43980           mcg
43997 other specify
44031           mcg
44037           mcg
44050 other specify
44051         drops
44055         drops
44084 other specify
44087 other specify
44090 other specify
44119         drops
44123 other specify
44126 other specify
44127 other specify
44129 other specify
44131 other specify
44132 other specify
44154 other specify
44155 other specify
44157 other specify
44158 other specify
44164 other specify
44207 other specify
44209 other specify
44211 other specify
44212 other specify
44214            mg
44216 other specify
44218 other specify
44219            mg
44220            ml
44222   unspecified
44223         drops
44224         drops
44225         drops
44226         units
44227         drops
44234         units
44235         units
44240         drops
44241            mg
44242           tsp
44243   unspecified
44244   unspecified
44245            mg
44246         units
44247         units
44249 other specify
44250 other specify
44251 other specify
44252 other specify
44253 other specify
44255 other specify
44268 other specify
44280 other specify
44282 other specify
44309   unspecified
44321 other specify
44330 other specify
44331 other specify
44334 other specify
44335 other specify
44336 other specify
44337 other specify
44347   unspecified
44350            mg
44363            mg
44372 other specify
44382 other specify
44385            mg
44386            mg
44390 other specify
44391            mg
44392            mg
44395 other specify
44398 other specify
44408 other specify
44420 other specify
44421 other specify
44422 other specify
44423 other specify
44425 other specify
44428 other specify
44429            mg
44431 other specify
44434            gm
44452 other specify
44473 other specify
44501         drops
44502            mg
44503            mg
44504            mg
44505            mg
44507         drops
44508            mg
44509            mg
44518           mcg
44520         drops
44524         units
44525            ml
44531         units
44532            mg
44542 other specify
44543 other specify
44544 other specify
44545            ml
44546 other specify
44547 other specify
44552            ml
44558 other specify
44559 other specify
44570 other specify
44571 other specify
44576 other specify
44577 other specify
44595 other specify
44607 other specify
44608 other specify
44609 other specify
44614 other specify
44616 other specify
44618 other specify
44646            ml
44649 other specify
44652   unspecified
44653   unspecified
44654   unspecified
44655   unspecified
44658   unspecified
44660            mg
44663            mg
44671 other specify
44672            mg
44674 other specify
44677            mg
44679            mg
44683         drops
44684 other specify
44706 other specify
44732            mg
44742 other specify
44743 other specify
44745 other specify
44746            mg
44747 other specify
44755   unspecified
44757   unspecified
44769         drops
44771 other specify
44779         units
44782   unspecified
44795 other specify
44796         drops
44797         drops
44798            mg
44799            mg
44800            mg
44804            mg
44805            mg
44820 other specify
44827 other specify
44828 other specify
44829 other specify
44830         units
44831         drops
44834 other specify
44843 other specify
44844 other specify
44857            mg
44858            mg
44862 other specify
44863           mcg
44864           mcg
44866   unspecified
44867 other specify
44868 other specify
44869 other specify
44870            mg
44875            mg
44877           mcg
44878            mg
44879 other specify
44899   unspecified
44905   unspecified
44915         drops
44916            mg
44917 other specify
44918 other specify
44920         drops
44922            mg
44924 other specify
44925         drops
44927 other specify
44933            ml
44936            mg
44937            ml
44938            ml
44939            oz
44946 other specify
44947 other specify
44948 other specify
44949 other specify
44950 other specify
44957 other specify
44958 other specify
44990            gm
44994 other specify
44997 other specify
45000 other specify
45005            mg
45007 other specify
45009            oz
45011            mg
45013         units
45014 other specify
45015            mg
45016 other specify
45017            mg
45023         drops
45027         drops
45034 other specify
45045 other specify
45047         units
45053 other specify
45054 other specify
45055 other specify
45056 other specify
45057 other specify
45058 other specify
45059 other specify
45061 other specify
45062 other specify
45063            mg
45064 other specify
45066         drops
45068 other specify
45072            mg
45073            mg
45076 other specify
45109 other specify
45110            mg
45112 other specify
45115            mg
45116            mg
45117 other specify
45123         units
45128 other specify
45129 other specify
45134            mg
45139            mg
45140 other specify
45149 other specify
45150 other specify
45154 other specify
45172         drops
45173         drops
45174            ml
45175            ml
45178 other specify
45179 other specify
45180 other specify
45181 other specify
45182 other specify
45183 other specify
45184 other specify
45185 other specify
45186 other specify
45187 other specify
45188 other specify
45189 other specify
45195            mg
45199            mg
45203 other specify
45204            mg
45208 other specify
45209         drops
45210 other specify
45212 other specify
45213 other specify
45216 other specify
45217 other specify
45224   unspecified
45225 other specify
45226 other specify
45236 other specify
45237 other specify
45240 other specify
45241 other specify
45242 other specify
45255            mg
45257         drops
45263 other specify
45268 other specify
45273         drops
45274         drops
45280           mcg
45283 other specify
45284 other specify
45286           mcg
45287           mcg
45294           mcg
45295            gm
45297         drops
45298 other specify
45299 other specify
45301 other specify
45302 other specify
45305            mg
45307 other specify
45309            mg
45310 other specify
45311 other specify
45312 other specify
45313 other specify
45322            mg
45327            mg
45335            mg
45344 other specify
45345 other specify
45358   unspecified
45359   unspecified
45372 other specify
45383            ml
45403   unspecified
45405 other specify
45406 other specify
45411 other specify
45425 other specify
45426 other specify
45434   unspecified
45435         drops
45443 other specify
45445 other specify
45451 other specify
45452 other specify
45463            mg
45468            mg
45470 other specify
45471 other specify
45474 other specify
45476            mg
45479         drops
45480            mg
45484 other specify
45498            mg
45499 other specify
45500 other specify
45503            mg
45504 other specify
45508 other specify
45531            mg
45534            mg
45553         drops
45555 other specify
45556 other specify
45572         drops
45582 other specify
45585 other specify
45586            mg
45587            mg
45590 other specify
45591         drops
45592            mg
45626            mg
45629            ml
45642           mcg
45650 other specify
45651 other specify
45654            mg
45655 other specify
45656 other specify
45663         drops
45664 other specify
45665 other specify
45666            mg
45667 other specify
45670            mg
45671            mg
45674 other specify
45675 other specify
45676 other specify
45683 other specify
45684            mg
45699         drops
45700         drops
45703            ml
45704         drops
45722 other specify
45724         units
45725         units
45726         units
45727            oz
45728         units
45729            mg
45735 other specify
45736 other specify
45742 other specify
45751   unspecified
45764         units
45775         drops
45776         drops
45786            mg
45787 other specify
45791 other specify
45794            mg
45798            mg
45799 other specify
45800 other specify
45816 other specify
45820 other specify
45843 other specify
45844            mg
45853 other specify
45862 other specify
45863 other specify
45864 other specify
45868 other specify
45869 other specify
45870 other specify
45871         drops
45872 other specify
45876            mg
45884 other specify
45885 other specify
45886         drops
45898 other specify
45899 other specify
45901 other specify
45908 other specify
45909 other specify
45914 other specify
45924            mg
45928 other specify
45968            mg
45969 other specify
45970 other specify
45971            mg
45972            gm
45974            mg
45990 other specify
45994         units
45995 other specify
45996         drops
45997 other specify
46014 other specify
46018 other specify
46019 other specify
46020            ml
46021 other specify
46022 other specify
46025 other specify
46043 other specify
46044 other specify
46071 other specify
46075            mg
46076 other specify
46077 other specify
46078 other specify
46079 other specify
46085   unspecified
46091 other specify
46092 other specify
46094            mg
46095         units
46100 other specify
46101         drops
46102         drops
46103            mg
46107 other specify
46108 other specify
46110 other specify
46116 other specify
46119 other specify
46122 other specify
46128           mcg
46131         drops
46132         drops
46134 other specify
46169            mg
46170 other specify
46171 other specify
46173 other specify
46174 other specify
46177           mcg
46178           mcg
46179            mg
46186   unspecified
46198 other specify
46200 other specify
46201 other specify
46202            mg
46213 other specify
46218 other specify
46219 other specify
46226            mg
46227 other specify
46255 other specify
46265            mg
46277 other specify
46278 other specify
46287 other specify
46288 other specify
46291 other specify
46292 other specify
46293 other specify
46295 other specify
46296 other specify
46302 other specify
46303            mg
46304 other specify
46305            mg
46308            mg
46311   unspecified
46312 other specify
46313   unspecified
46314   unspecified
46319 other specify
46320            mg
46324         drops
46325            mg
46328            mg
46345            mg
46350            mg
46355            mg
46358            mg
46360 other specify
46377 other specify
46379            mg
46399 other specify
46406 other specify
46410            mg
46411         drops
46413 other specify
46418 other specify
46424 other specify
46431 other specify
46432 other specify
46435            mg
46436 other specify
46474 other specify
46475 other specify
46476 other specify
46478 other specify
46479 other specify
46480 other specify
46481 other specify
46482 other specify
46483 other specify
46486 other specify
46487 other specify
46488 other specify
46489 other specify
46490            mg
46491 other specify
46492 other specify
46493 other specify
46494 other specify
46499            mg
46502            ml
46504            ml
46505         drops
46506         drops
46512            mg
46517         units
46521         drops
46524         drops
46526            mg
46527            ml
46528         drops
46529            gm
46530         drops
46532            mg
46533            mg
46534         drops
46543            mg
46544            mg
46547            ml
46551         drops
46553         drops
46555 other specify
46568           mcg
46569            ml
46570            mg
46571         drops
46572 other specify
46573            mg
46574           mcg
46575           mcg
46579   unspecified
46588            ml
46590         drops
46591           mcg
46593         drops
46606         drops
46607            mg
46615 other specify
46616 other specify
46617 other specify
46618            mg
46664 other specify
46665            mg
46672 other specify
46676 other specify
46680         units
46687         drops
46690 other specify
46694 other specify
46702 other specify
46703 other specify
46716            mg
46717            mg
46718            mg
46729 other specify
46730 other specify
46732            ml
46737   unspecified
46747   unspecified
46753 other specify
46762            ml
46763            mg
46766            mg
46767 other specify
46771            mg
46775 other specify
46776 other specify
46777 other specify
46781 other specify
46782 other specify
46783 other specify
46784 other specify
46785 other specify
46786 other specify
46787 other specify
46788 other specify
46789 other specify
46804           mcg
46811 other specify
46812 other specify
46816 other specify
46818            mg
46826            ml
46827         drops
46835            mg
46836           mcg
46849           mcg
46853           mcg
46867            mg
46874 other specify
46880 other specify
46881            mg
46883            mg
46884 other specify
46885 other specify
46889            mg
46891 other specify
46902         drops
46903 other specify
46904 other specify
46905         drops
46908 other specify
46915 other specify
46931 other specify
46933 other specify
46938 other specify
46944 other specify
46961 other specify
46962         drops
46972 other specify
46973 other specify
46976           mcg
46977 other specify
46978         drops
46979           mcg
46980            mg
46981         drops
46982 other specify
46983            ml
46984 other specify
46985 other specify
46986 other specify
46987 other specify
47000            mg
47004 other specify
47010 other specify
47011 other specify
47018 other specify
47024 other specify
47025 other specify
47040            mg
47041            mg
47042            mg
47043 other specify
47044 other specify
47045            mg
47049         drops
47050            mg
47053 other specify
47055           mcg
47060   unspecified
47065            mg
47069         drops
47076         drops
47080            oz
47081           tsp
47085 other specify
47086 other specify
47090            mg
47095 other specify
47096 other specify
47097 other specify
47098 other specify
47104 other specify
47105 other specify
47106 other specify
47108            ml
47123           mcg
47125           mcg
47126            mg
47128            mg
47136         drops
47137         drops
47140            ml
47143 other specify
47146            mg
47152         drops
47153 other specify
47154 other specify
47155 other specify
47156 other specify
47162 other specify
47164 other specify
47178 other specify
47180         drops
47181 other specify
47183 other specify
47184 other specify
47185            mg
47186            mg
47187 other specify
47193 other specify
47194 other specify
47196 other specify
47197 other specify
47204   unspecified
47208 other specify
47209 other specify
47210 other specify
47220 other specify
47221            mg
47222 other specify
47240         drops
47248 other specify
47251 other specify
47253 other specify
47255 other specify
47260 other specify
47266            mg
47277 other specify
47286 other specify
47302         drops
47305 other specify
47313 other specify
47323            mg
47325            mg
47334 other specify
47337            mg
47343            mg
47345            mg
47349            mg
47350 other specify
47355 other specify
47360   unspecified
47390 other specify
47407            mg
47409            mg
47411 other specify
47412 other specify
47415 other specify
47416 other specify
47417 other specify
47420 other specify
47421 other specify
47433            mg
47439            mg
47451            mg
47478 other specify
47479 other specify
47481 other specify
47483 other specify
47484 other specify
47486 other specify
47490           mcg
47493 other specify
47496 other specify
47497 other specify
47498 other specify
47513            iu
47515 other specify
47517           mcg
47524           mcg
47539         drops
47540 other specify
47544   unspecified
47547         drops
47557 other specify
47559            ml
47561            gm
47562 other specify
47563 other specify
47576 other specify
47577 other specify
47578 other specify
47580 other specify
47586 other specify
47587 other specify
47588 other specify
47589            mg
47590            ml
47592            mg
47593            ml
47594            mg
47595            ml
47597            mg
47600            mg
47609 other specify
47628 other specify
47629            mg
47630         drops
47635         units
47636            mg
47658         drops
47681 other specify
47682 other specify
47684 other specify
47693 other specify
47694 other specify
47696 other specify
47698 other specify
47699 other specify
47702         drops
47706            mg
47715   unspecified
47716   unspecified
47720 other specify
47721         drops
47733 other specify
47734         drops
47739   unspecified
47743            mg
47744 other specify
47745            mg
47746         units
47752 other specify
47755 other specify
47760 other specify
47800 other specify
47801 other specify
47802 other specify
47803 other specify
47808 other specify
47809 other specify
47810 other specify
47811 other specify
47812 other specify
47815 other specify
47816 other specify
47817 other specify
47825   unspecified
47835 other specify
47836 other specify
47840 other specify
47847 other specify
47860            mg
47861            ml
47862            ml
47863         units
47867            mg
47870 other specify
47877            mg
47887 other specify
47888 other specify
47889         drops
47890            mg
47891           tsp
47892            mg
47894            mg
47900 other specify
47902 other specify
47906 other specify
47908 other specify
47909         units
47910         drops
47917            mg
47928            mg
47949            mg
47950         units
47951         drops
47952            mg
47953 other specify
47969 other specify
47970 other specify
47971 other specify
47975 other specify
47976 other specify
47979 other specify
47980 other specify
47981 other specify
47983            mg
47984 other specify
47985 other specify
47989 other specify
47990 other specify
47995 other specify
47996 other specify
47997 other specify
47998            mg
47999            ml
48000            mg
48001            mg
48002            mg
48003            mg
48004            mg
48005            mg
48006            mg
48007            mg
48008            mg
48012 other specify
48013 other specify
48014 other specify
48016         drops
48020 other specify
48021 other specify
48028 other specify
48029 other specify
48030 other specify
48031 other specify
48032 other specify
48033 other specify
48034 other specify
48035 other specify
48040 other specify
48041            oz
48046 other specify
48047 other specify
48048 other specify
48049 other specify
48052 other specify
48069 other specify
48072 other specify
48076 other specify
48083 other specify
48084 other specify
48087 other specify
48088 other specify
48089         units
48090         units
48094         units
48100 other specify
48101         drops
48102 other specify
48103            ml
48105 other specify
48106 other specify
48107 other specify
48108 other specify
48109 other specify
48110 other specify
48114 other specify
48120 other specify
48121         units
48127 other specify
48128            mg
48129            mg
48131         units
48132 other specify
48133 other specify
48142 other specify
48143         units
48147 other specify
48148 other specify
48151 other specify
48152 other specify
48154            mg
48155            mg
48157 other specify
48158 other specify
48159 other specify
48160 other specify
48161            mg
48162            mg
48163   unspecified
48167 other specify
48169            mg
48170            mg
48171            mg
48178         drops
48182 other specify
48184            ml
48185            mg
48188 other specify
48201            mg
48213 other specify
48214 other specify
48215 other specify
48217            mg
48218            mg
48220 other specify
48221 other specify
48222 other specify
48223            ml
48231            mg
48237 other specify
48238            mg
48240            mg
48248            mg
48251 other specify
48252 other specify
48258 other specify
48265            oz
48266            oz
48267         drops
48271            mg
48274         drops
48277         drops
48285            gm
48287            ml
48288         drops
48289         units
48290         units
48291            gm
48292            mg
48294 other specify
48297 other specify
48298 other specify
48299 other specify
48300 other specify
48306 other specify
48307         drops
48310 other specify
48311         drops
48312            mg
48314            mg
48322 other specify
48327            ml
48328            mg
48334            ml
48336            mg
48337            mg
48338            mg
48339            mg
48342            mg
48343 other specify
48344            mg
48345 other specify
48350            mg
48351            mg
48352            mg
48353            mg
48354            mg
48355 other specify
48374         drops
48376         drops
48377            mg
48378         drops
48380 other specify
48381 other specify
48383 other specify
48384 other specify
48394         drops
48406 other specify
48420            mg
48438           mcg
48439 other specify
48440 other specify
48441 other specify
48442 other specify
48444 other specify
48447 other specify
48448 other specify
48481         drops
48483         drops
48494 other specify
48495            mg
48496            mg
48497            mg
48498            mg
48499 other specify
48500            mg
48502            mg
48503 other specify
48504            mg
48505            mg
48508            mg
48513 other specify
48514 other specify
48520           tsp
48521            ml
48540            mg
48541 other specify
48542 other specify
48560 other specify
48598 other specify
48602            mg
48603            mg
48609            mg
48610            mg
48611            mg
48615           mcg
48621 other specify
48624 other specify
48633   unspecified
48636 other specify
48643 other specify
48661 other specify
48662            ml
48664 other specify
48667 other specify
48668 other specify
48673   unspecified
48680 other specify
48683 other specify
48684 other specify
48692            mg
48693            mg
48694         drops
48696 other specify
48697 other specify
48698 other specify
48712 other specify
48713 other specify
48718            mg
48719         drops
48720 other specify
48721 other specify
48722 other specify
48724 other specify
48725 other specify
48729 other specify
48733 other specify
48734 other specify
48735 other specify
48736 other specify
48770         units
48782   unspecified
48802         drops
48806         drops
48808         drops
48812            ml
48819            mg
48821            mg
48835 other specify
48842            mg
48845 other specify
48855            mg
48859            mg
48862            mg
48869            mg
48877            mg
48889 other specify
48890 other specify
48891 other specify
48892 other specify
48893         drops
48894            mg
48902 other specify
48906 other specify
48917 other specify
48918 other specify
48921 other specify
48935 other specify
48938           mcg
48946            mg
48971            mg
48994            mg
48997   unspecified
49002           mcg
49005         drops
49012 other specify
49015            ml
49016         drops
49017           mcg
49018           mcg
49019            mg
49025           mcg
49026         drops
49027 other specify
49028            mg
49030            gm
49033 other specify
49034 other specify
49035 other specify
49036 other specify
49042 other specify
49044 other specify
49046 other specify
49051   unspecified
49052   unspecified
49066 other specify
49067 other specify
49082 other specify
49083 other specify
49084 other specify
49085 other specify
49096 other specify
49105   unspecified
49113 other specify
49114           mcg
49117           mcg
49120            mg
49123 other specify
49127            mg
49128 other specify
49129 other specify
49130 other specify
49163            mg
49164 other specify
49167            mg
49168           mcg
49169            mg
49170            mg
49184 other specify
49185           mcg
49186            mg
49193            mg
49196            mg
49208 other specify
49209 other specify
49216 other specify
49217 other specify
49218 other specify
49219            mg
49220            mg
49227 other specify
49229 other specify
49231 other specify
49232 other specify
49248            mg
49250 other specify
49251 other specify
49252 other specify
49253 other specify
49266 other specify
49304 other specify
49305 other specify
49314 other specify
49316 other specify
49317           tbs
49323 other specify
49324 other specify
49343 other specify
49345 other specify
49346 other specify
49347 other specify
49348 other specify
49349 other specify
49350 other specify
49351 other specify
49352 other specify
49353 other specify
49371 other specify
49372            mg
49375            mg
49376 other specify
49377 other specify
49378 other specify
49379 other specify
49388 other specify
49393         units
49394         units
49395         units
49398            mg
49401            mg
49403            mg
49404            mg
49408 other specify
49409 other specify
49410            mg
49421            mg
49424            mg
49437 other specify
49438 other specify
49442 other specify
49460 other specify
49461 other specify
49462         units
49463 other specify
49464 other specify
49473 other specify
49487 other specify
49488 other specify
49491 other specify
49492 other specify
49509 other specify
49510 other specify
49518           mcg
49520            mg
49523           tbs
49524           tbs
49525            ml
49526 other specify
49531   unspecified
49544 other specify
49545 other specify
49549 other specify
49550 other specify
49551 other specify
49552 other specify
49553           mcg
49554           mcg
49567 other specify
49568 other specify
49569 other specify
49572 other specify
49588           mcg
49589           mcg
49590 other specify
49591 other specify
49592 other specify
49593 other specify
49596 other specify
49601         drops
49604            mg
49605 other specify
49606            mg
49607            mg
49608         units
49640           mcg
49645 other specify
49649 other specify
49654 other specify
49659 other specify
49680            mg
49698            mg
49699 other specify
49705   unspecified
49714           mcg
49715 other specify
49731 other specify
49748 other specify
49752 other specify
49753            oz
49754            oz
49755            mg
49756            ml
49757            mg
49758            mg
49762 other specify
49764         drops
49765            mg
49766         drops
49767 other specify
49768 other specify
49769 other specify
49773 other specify
49783            mg
49792 other specify
49793 other specify
49799   unspecified
49812            mg
49820 other specify
49821 other specify
49845            mg
49846            mg
49848            mg
49849 other specify
49852 other specify
49854 other specify
49855 other specify
49856            ml
49857            mg
49861 other specify
49862 other specify
49871 other specify
49878 other specify
49883 other specify
49884 other specify
49886 other specify
49887 other specify
49889 other specify
49890 other specify
49898 other specify
49899 other specify
49905 other specify
49906 other specify
49907 other specify
49908 other specify
49909 other specify
49911 other specify
49912 other specify
49923            mg
49924            mg
49925            mg
49928            mg
49929            mg
49963            mg
49966            iu
49978 other specify
49980            mg
49985 other specify
49986 other specify
49987 other specify
49990 other specify
49991 other specify
49992 other specify
49993 other specify
49994 other specify
49995 other specify
49996 other specify
49997            mg
49998            mg
49999           mcg
50000 other specify
50001 other specify
50002 other specify
50004 other specify
50005 other specify
50006 other specify
50007 other specify
50008 other specify
50009 other specify
50011         drops
50012   unspecified
50014   unspecified
50022            mg
50029            mg
50030            mg
50033            mg
50034            mg
50048            mg
50050            mg
50073 other specify
50076 other specify
50077         units
50107 other specify
50108 other specify
50115 other specify
50116 other specify
50117 other specify
50118           mcg
50125 other specify
50154            mg
50159   unspecified
50161   unspecified
50180 other specify
50187 other specify
50188 other specify
50189 other specify
50190 other specify
50194 other specify
50195 other specify
50196 other specify
50198 other specify
50199 other specify
                                                      dose_unit_specify
2                                                                  <NA>
22                                                                 <NA>
40                                                      based on weight
41                                                                 <NA>
42                                                      based on weight
46                                                  tablet/pill/capsule
48                                                                 tube
49                                                                 tube
51                                                  tablet/pill/capsule
59                                                1 tablet/pill/capsule
60                                                          bottle/vial
62                                                          application
63                                                  tablet/pill/capsule
67                                                         small amount
70                                                         small amount
74                                                                drops
84                                                                spray
87                                                      0.25 inch strip
91                                                                 <NA>
111                                                                <NA>
112                                                                <NA>
113                                                                <NA>
114                                                                <NA>
149                                                      shampoo/mousse
150                                                        small amount
151                                                         application
152                                                 tablet/pill/capsule
153                                                 tablet/pill/capsule
155                                                 tablet/pill/capsule
167                                                                <NA>
188                                                 tablet/pill/capsule
192                                                 tablet/pill/capsule
195                                                     based on weight
220                                                 tablet/pill/capsule
230                         272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                               drops
235                                                                <NA>
236                                                                tube
237                                                                tube
238                                                        small amount
239                                                                <NA>
242                                                                <NA>
243                                                                tube
244                                                     based on weight
248                                                                tube
257                                                                <NA>
275                                                 tablet/pill/capsule
276                                                 tablet/pill/capsule
277                                                 tablet/pill/capsule
279                                                     moderate amount
280                                                        small amount
287                                                                <NA>
310                                                                <NA>
317                                                                <NA>
318                                                                <NA>
324                                                     based on weight
328                                                     based on weight
329                                                     based on weight
332                                                     based on weight
333                                                     based on weight
347                                                                <NA>
348                                                                <NA>
350                                                                <NA>
351                                                                <NA>
353                                                                <NA>
355                                                                <NA>
366                                                                <NA>
368                                                                <NA>
372                                                                <NA>
375                                                 tablet/pill/capsule
376                                                 tablet/pill/capsule
383                                                 tablet/pill/capsule
384                                        based on weight (50-100 lbs)
385                                        based on weight (50-100 lbs)
386                                                 tablet/pill/capsule
402                                                     based on weight
403                                                                <NA>
404                                                                <NA>
414                                                                <NA>
447                                                                <NA>
449                                                                <NA>
453                                                                <NA>
480                                                              1 tube
496                                                                <NA>
497                                                                <NA>
498                                                     based on weight
519                                                         unspecified
537                                                                <NA>
597                                                                   1
598                                                                   1
603                                                 tablet/pill/capsule
604                                                 tablet/pill/capsule
610                                                                <NA>
619                                                 tablet/pill/capsule
635                                                                <NA>
637                                                     based on weight
642                                                                <NA>
645                                                                <NA>
686                                                                <NA>
688                                                                <NA>
703                                                     based on weight
704                                                     based on weight
709                                                                <NA>
710                                                                <NA>
712                                                                <NA>
725                                                                <NA>
728                                                 tablet/pill/capsule
729                                                 tablet/pill/capsule
730                                                                <NA>
731                                                                <NA>
733                                                                <NA>
734                                                          inch strip
735                                                                <NA>
736                                                                <NA>
737                                                                <NA>
738                                        based on weight (50-100 lbs)
739                                        based on weight (60-120 lbs)
750                                                                <NA>
754                                                 tablet/pill/capsule
755                                                     based on weight
756                                                     based on weight
757                                                     based on weight
760                                                                <NA>
771                                                                <NA>
778                                                                <NA>
785                                                 tablet/pill/capsule
790                                                 tablet/pill/capsule
792                                                 tablet/pill/capsule
797                                                                <NA>
798                                                                <NA>
799                                                                <NA>
800                                                                <NA>
801                                                                <NA>
802                                                                <NA>
803                                                     based on weight
804                                                         unspecified
810                                                         bottle/vial
816                                                        pack/package
819                                                                <NA>
820                                                                <NA>
823                                                                <NA>
824                                                 tablet/pill/capsule
832                                                                <NA>
850                                                                <NA>
851                                                                <NA>
862                                                 tablet/pill/capsule
863                                                                <NA>
871                                                                <NA>
874                                                                <NA>
877                                                                <NA>
878                                                                <NA>
879                                                                <NA>
880                                                                <NA>
881                                                     based on weight
884                                                                <NA>
887                                                                <NA>
891                                                                <NA>
893                                                                <NA>
899                                                                <NA>
900                                                     based on weight
901                                                                <NA>
905                                                                <NA>
913                                                     based on weight
917                                                                <NA>
918                                                                <NA>
921                                                     based on weight
929                                                                <NA>
930                                                                <NA>
950                                                                <NA>
955                                                              collar
958                                                                <NA>
969                                                                <NA>
970                                                              1 pump
977                                                                <NA>
979                                                     based on weight
980                                                     based on weight
982                                                 tablet/pill/capsule
983                                                 tablet/pill/capsule
989                                                     based on weight
991                                                     based on weight
992                                                     based on weight
995                                                     based on weight
996                                                     based on weight
1001                                                               <NA>
1017                                                tablet/pill/capsule
1018                                                tablet/pill/capsule
1019                                                             1 pump
1020                                                         inch strip
1021                                                           wipe/pad
1027                                                     shampoo/mousse
1028                                                               <NA>
1029                                                           wipe/pad
1030                                                     shampoo/mousse
1031                                                               <NA>
1033                                                               <NA>
1036                                                       small amount
1037                                                       small amount
1039                                                        bottle/vial
1042                                                           wipe/pad
1050                                                    based on weight
1051                                                    based on weight
1052                                                    based on weight
1060                                                    based on weight
1061                                                    based on weight
1072                                                               <NA>
1073                                                               pump
1074                                                tablet/pill/capsule
1087                           27 mg milbemycin oxime, 1620 mg spinosad
1088                                                               <NA>
1091                                                               <NA>
1092                                                               <NA>
1093                                                               <NA>
1097                                                               <NA>
1098                                                               <NA>
1099                                                tablet/pill/capsule
1100                                                tablet/pill/capsule
1101                                                tablet/pill/capsule
1108                                                           wipe/pad
1111                                                               <NA>
1112                                                        unspecified
1116                                                        unspecified
1129                                                tablet/pill/capsule
1131                                                               <NA>
1150                                                       small amount
1152                                       based on weight (50-100 lbs)
1153                                       based on weight (50-100 lbs)
1154                                       based on weight (50-100 lbs)
1155                                                tablet/pill/capsule
1159      460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                       based on weight (50-100 lbs)
1161                                          based on weight (60+ lbs)
1168                                                               <NA>
1169                                                               <NA>
1170                                                               dose
1173                                                        application
1174                                                               <NA>
1175                                                                  %
1176                                                               <NA>
1177                                                                  %
1179                                                       small amount
1185                                                    based on weight
1186                                                    based on weight
1187                                                               <NA>
1189                                                    based on weight
1190                                                    based on weight
1193                                                               <NA>
1194                                                               <NA>
1195                                                    based on weight
1208                                                     1 pack/package
1209                                                tablet/pill/capsule
1217                                                        combination
1226                                                    based on weight
1233                                                               <NA>
1247                                                    based on weight
1248                                                    based on weight
1274                                                               <NA>
1285                                                               <NA>
1307                                                               <NA>
1328                                                    based on weight
1329                                                    based on weight
1336                                                               <NA>
1344                                                tablet/pill/capsule
1345                                                               <NA>
1346                                                       small amount
1348                                                              spray
1355                                                    based on weight
1371                                              1 tablet/pill/capsule
1377                                                               <NA>
1378                                                               <NA>
1379                                                               <NA>
1380                                                               <NA>
1398                                                               <NA>
1404                                                              spray
1405                                                               <NA>
1415                                                       small amount
1416                                                               <NA>
1417                                                               tube
1418                                                               <NA>
1419                                       based on weight (50-100 lbs)
1420                                                               <NA>
1422                                                tablet/pill/capsule
1434                                                               tube
1435                                                tablet/pill/capsule
1438                                                tablet/pill/capsule
1441                                                tablet/pill/capsule
1442                                                tablet/pill/capsule
1443                                                        bottle/vial
1450                                                               tube
1451                                                tablet/pill/capsule
1459                                                        application
1462                                                        bottle/vial
1464                                                    based on weight
1473                                                               <NA>
1475                                                               <NA>
1491                                                               <NA>
1499                                                               <NA>
1500                                                               <NA>
1501                                              1 tablet/pill/capsule
1502                                                               <NA>
1503                                                    based on weight
1504                                                               <NA>
1511                                                    based on weight
1512                                                    based on weight
1514                                                    based on weight
1528                                                    based on weight
1529                                                    based on weight
1532                                                             1 tube
1534                                                               <NA>
1535                                                               <NA>
1536                                                        application
1537                                                tablet/pill/capsule
1538                                                               <NA>
1539                                                               tube
1541                                                               <NA>
1542                                                               <NA>
1556                                                           inhalant
1571                                        based on weight (44-88 lbs)
1572                                       based on weight (50-100 lbs)
1586                                                               <NA>
1587                                                        combination
1598                                                    based on weight
1599                                                               <NA>
1633                                       based on weight (50-100 lbs)
1634                                                               <NA>
1635                                           4 tablets/pills/capsules
1636                                                               <NA>
1650                                                               <NA>
1663                                       based on weight (60-120 lbs)
1668                                                    moderate amount
1671                                                    based on weight
1683                                                             collar
1684                                                     shampoo/mousse
1685                                                              spray
1689                                                    moderate amount
1690                                                              spray
1692                                                    moderate amount
1695                                                               <NA>
1697                                                             collar
1708                                                               <NA>
1710                                                               <NA>
1712                                       based on weight (50-100 lbs)
1715                                       based on weight (50-100 lbs)
1718                                                               <NA>
1719                                                               <NA>
1720                                       based on weight (50-100 lbs)
1729                                                               <NA>
1730                                                               <NA>
1743                                                               <NA>
1747                                                        bottle/vial
1748                                                      1 bottle/vial
1749                                                    based on weight
1756                                                        unspecified
1757                                                        unspecified
1758                                                    based on weight
1759                                                    based on weight
1760                                                               <NA>
1761                                                              spray
1769                                                               <NA>
1773                                                tablet/pill/capsule
1774                                                               <NA>
1775                                                               <NA>
1789                                                               <NA>
1791                                                               <NA>
1794                                                               <NA>
1795                                                               <NA>
1796                                                tablet/pill/capsule
1798                                                               <NA>
1805                                                               <NA>
1809                                                               <NA>
1812                                                               <NA>
1813                                                               <NA>
1819                                                               <NA>
1820                                                        unspecified
1823                                                               <NA>
1845                                                               tube
1846                                                tablet/pill/capsule
1847                                                               tube
1848                                                tablet/pill/capsule
1849                                                    based on weight
1850                                                         inch strip
1851                                                    0.25 inch strip
1861                                                               <NA>
1864                                                    based on weight
1866                                                    based on weight
1867                                                    based on weight
1872                                                    based on weight
1873                                                    based on weight
1877                                                        unspecified
1887                                                              spray
1888                                                             collar
1905                                                               <NA>
1906                                                               <NA>
1909                                                    based on weight
1916                                                    based on weight
1917                                                    based on weight
1922                                                              spray
1925                                                     shampoo/mousse
1926                                                       small amount
1928                                                    based on weight
1929                                                    based on weight
1931                                                       small amount
1939                                                        unspecified
1941                                                       small amount
1945                                                              daily
1948                                                tablet/pill/capsule
1954                                                    based on weight
1955                                                    based on weight
1956                                                    based on weight
1960                                                    based on weight
1962                                                    based on weight
1965                                                               <NA>
1980                                                               tube
1981                                                tablet/pill/capsule
1982                                              1 tablet/pill/capsule
1983                                                             1 tube
1984                                            0.5 tablet/pill/capsule
1985                                              1 tablet/pill/capsule
1994                                                               <NA>
1998                                                               puff
2006                                                               <NA>
2007                                                               <NA>
2012                                                               <NA>
2013                                                               <NA>
2016                                                    based on weight
2022                                                       small amount
2025                                                        bottle/vial
2026                                                tablet/pill/capsule
2029                                                               <NA>
2030                                                               <NA>
2032                                                        unspecified
2033                                                        unspecified
2034                                                        unspecified
2035                                                    based on weight
2036                                                    based on weight
2041                                                        as directed
2042                                                        as directed
2043                                                               <NA>
2044                                                              mg/kg
2050                                                    based on weight
2051                                                    based on weight
2072                                                               <NA>
2075                                       based on weight (50-100 lbs)
2083                                        based on weight (40-88 lbs)
2084                                       based on weight (50-100 lbs)
2085                                                    based on weight
2086                                       based on weight (50-100 lbs)
2087                                       based on weight (50-100 lbs)
2088                                        based on weight (44-88 lbs)
2089                                          based on weight (80+ lbs)
2091                                                    based on weight
2093                                                    based on weight
2107                                                tablet/pill/capsule
2108                                              1 tablet/pill/capsule
2109                                              1 tablet/pill/capsule
2110                                                    based on weight
2113                                                tablet/pill/capsule
2115                                                               <NA>
2116                                                       small amount
2123                                           2 tablets/pills/capsules
2126                                                tablet/pill/capsule
2127                                                tablet/pill/capsule
2149                                                    based on weight
2151                                                    based on weight
2161                                                    based on weight
2162                                                    based on weight
2165                                                              drops
2166                                                               <NA>
2195                                                        unspecified
2199                                                    based on weight
2200                                                    based on weight
2201                                                tablet/pill/capsule
2202                                                tablet/pill/capsule
2203                                                tablet/pill/capsule
2204                                                tablet/pill/capsule
2205                                                tablet/pill/capsule
2206                                              1 tablet/pill/capsule
2207                                              1 tablet/pill/capsule
2211                                                               <NA>
2219                                              1 tablet/pill/capsule
2220                                              1 tablet/pill/capsule
2221                                                               <NA>
2224                                              1 tablet/pill/capsule
2225                                                               <NA>
2226                                              1 tablet/pill/capsule
2228                                                               <NA>
2229                                              1 tablet/pill/capsule
2230                                                               <NA>
2233                                                               <NA>
2241                                                        application
2243                                                    based on weight
2244                                                    based on weight
2245                                                               <NA>
2250                                                        unspecified
2251                                                               <NA>
2255                                                               tube
2258                                                               <NA>
2259                                                               <NA>
2260                                                               <NA>
2261                                                               <NA>
2262                                                               <NA>
2263                                                               <NA>
2264                                                               <NA>
2265                                                               <NA>
2266                                                               <NA>
2269                                                               <NA>
2270                                                               <NA>
2272                                                               <NA>
2278                                                               <NA>
2279                                                               <NA>
2280                                                    based on weight
2283                                                    based on weight
2301                                                             liquid
2302                                                               <NA>
2333                                                               <NA>
2339                                                               <NA>
2342                                                               <NA>
2345                                                               <NA>
2347                                                               <NA>
2352                                                               <NA>
2356                                                               <NA>
2384                                                    based on weight
2386                                                    based on weight
2390                                                              spray
2398                                                              spray
2404                                                tablet/pill/capsule
2405                                                        application
2406                                                               <NA>
2408                                                        application
2409                                                               <NA>
2411                                                               <NA>
2412                                                               <NA>
2418                                                               <NA>
2419                                                               <NA>
2424                                                               <NA>
2425                                                               <NA>
2426                                                               <NA>
2427                                                               <NA>
2428                                                               <NA>
2450                                                               <NA>
2453                                                               <NA>
2455                                                               <NA>
2456                                                               <NA>
2463                                                       pack/package
2464                                                               <NA>
2467                                                               <NA>
2473                                                               <NA>
2474                                                               <NA>
2477                                                               <NA>
2478                                                               <NA>
2479                                                tablet/pill/capsule
2481                                                              spray
2482                                       based on weight (50-100 lbs)
2483                                       based on weight (60-120 lbs)
2486                                                          as needed
2487                                                           biweekly
2490                                                            5 drops
2491                                                       small amount
2492                                                         1 wipe/pad
2499                                                       pack/package
2500                                              1 tablet/pill/capsule
2501                                                               <NA>
2502                                                               <NA>
2503                                                               <NA>
2504                                              1 tablet/pill/capsule
2505                                       based on weight (50-100 lbs)
2506                                       based on weight (60-120 lbs)
2508                                                tablet/pill/capsule
2517                                                               <NA>
2518                                                tablet/pill/capsule
2534                                                               <NA>
2539                                                    based on weight
2540                                       based on weight (50-100 lbs)
2542                                       based on weight (50-100 lbs)
2543                                                             collar
2544                                                               <NA>
2545                                                tablet/pill/capsule
2546                                                             collar
2547                                              1 tablet/pill/capsule
2548                                          based on weight (18+ lbs)
2549                                                               <NA>
2550                                                               <NA>
2558                                                    based on weight
2559                                                    based on weight
2560                                                    based on weight
2562                                                               <NA>
2566                                                               <NA>
2572                                                    based on weight
2575                                                               <NA>
2578                                                              spray
2580                                                           ointment
2583                                                               <NA>
2587                                                               <NA>
2588                                                               <NA>
2589                                                               <NA>
2599                                                               <NA>
2600                                                    based on weight
2627                                                               <NA>
2636                                                               <NA>
2642                                                              spray
2651                                                        unspecified
2652                                                               <NA>
2653                                                               <NA>
2655                                                               <NA>
2659                                                        unspecified
2660                                                        unspecified
2661                                                        unspecified
2699                                                              spray
2710                                                    based on weight
2721                                                               <NA>
2726                                                               dose
2731                                                               <NA>
2735                                                               <NA>
2737                                                               <NA>
2738                                                               <NA>
2739                                                               <NA>
2742                                                    based on weight
2743                                                    based on weight
2745                                                    based on weight
2746                                                    based on weight
2748                                                    based on weight
2749                                                    based on weight
2750                                                               <NA>
2753                                                    based on weight
2756                                                    based on weight
2805                                                               <NA>
2808                                                               <NA>
2815                                                               <NA>
2817                                                    based on weight
2818                                                       pack/package
2825                                                    based on weight
2826                                                    based on weight
2827                                                    based on weight
2828                                                tablet/pill/capsule
2833                                                               <NA>
2838                                              1 tablet/pill/capsule
2839                                                               <NA>
2842                                                               <NA>
2844                                                               <NA>
2846                                              1 tablet/pill/capsule
2855                                                tablet/pill/capsule
2869                                                               <NA>
2897                                                     shampoo/mousse
2900                                                       small amount
2903                                                     shampoo/mousse
2904                                                    moderate amount
2905                                                             weekly
2907                                                       pack/package
2910                                                    based on weight
2911                                       based on weight (50-100 lbs)
2912                                        based on weight (24-60 lbs)
2913                                                               <NA>
2919                                              1 tablet/pill/capsule
2920                                              1 tablet/pill/capsule
2921                                                                 gm
2922                                                tablet/pill/capsule
2923                                                tablet/pill/capsule
2925                                                        unspecified
2926                                                    based on weight
2927                                                    based on weight
2941                                                               <NA>
2942                                                                  %
2943                                              1 tablet/pill/capsule
2944                                                               <NA>
2946                                                               <NA>
2951                                                               <NA>
2958                                                tablet/pill/capsule
2959                                                tablet/pill/capsule
2960                                                tablet/pill/capsule
2961                                                tablet/pill/capsule
2962                                                tablet/pill/capsule
2963                                                tablet/pill/capsule
2964                                                tablet/pill/capsule
2968                                        based on weight (44-88 lbs)
2974                                                tablet/pill/capsule
2975                                                        application
2978                                                tablet/pill/capsule
2980                                                               <NA>
2981                                                               <NA>
2982                                                               <NA>
2988                                                               <NA>
2993                                                               <NA>
2997                                                               <NA>
3002                                                               <NA>
3003                                                       small amount
3007                                                               <NA>
3028                                                               <NA>
3031                                                               <NA>
3043                                                               <NA>
3051                                                               <NA>
3055                                                           ointment
3058                                                       small amount
3060                                        based on weight (26-50 lbs)
3092                                                               <NA>
3095                                                        unspecified
3096                                                               <NA>
3108                                                               <NA>
3110                                                               <NA>
3119                                                               <NA>
3140                                                        unspecified
3146                                                               <NA>
3147                                                               <NA>
3179                                                               <NA>
3180                                                               <NA>
3208                                                               <NA>
3209                                                               <NA>
3212                                                               <NA>
3246                                                    based on weight
3247                                                tablet/pill/capsule
3250                                                    based on weight
3251                                                    based on weight
3253                                       based on weight (50-100 lbs)
3254                                                    based on weight
3255                                                    based on weight
3257                                                               <NA>
3261                                                               <NA>
3270                                                               <NA>
3271                                                tablet/pill/capsule
3278                                                         inch strip
3280                                              1 tablet/pill/capsule
3284                                                    based on weight
3287                                                       small amount
3291                                                       small amount
3293                                                       small amount
3294                                                tablet/pill/capsule
3300                                                tablet/pill/capsule
3303                                                               <NA>
3305                                                       small amount
3312                                                    moderate amount
3313                                                       small amount
3339                                                tablet/pill/capsule
3342                                                        application
3345                                                               <NA>
3346                                                               <NA>
3350                                                               <NA>
3359                                                    based on weight
3360                                                    based on weight
3366                                                               <NA>
3372                                                               <NA>
3375                                                               <NA>
3376                                                        application
3384                                                    based on weight
3394                                                               <NA>
3399                                                               <NA>
3403                                                               <NA>
3404                                        based on weight (24-60 lbs)
3405                                        based on weight (26-50 lbs)
3406                                                               tube
3407                                                    based on weight
3408                                                    based on weight
3421                                                               <NA>
3422                                                               <NA>
3423                                                               <NA>
3425                                                    based on weight
3426                                                        as directed
3429                                                               <NA>
3437                                                               <NA>
3439                                                               <NA>
3444                                                               <NA>
3445                                                               <NA>
3446                                                               <NA>
3447                                                               <NA>
3448                                                               <NA>
3449                                                               <NA>
3451                                                               <NA>
3455                                                               <NA>
3456                                                             1 tube
3457                                                tablet/pill/capsule
3458                                                               tube
3459                                                               <NA>
3465                                                               <NA>
3487                                                    based on weight
3488                                          based on weight (25+ lbs)
3490                                                    based on weight
3491                                                    based on weight
3492                                                    based on weight
3495                                                    based on weight
3496                                                    based on weight
3497                                                    based on weight
3498                                                    based on weight
3512                                              1 tablet/pill/capsule
3513                                                    based on weight
3514                                       based on weight (50-100 lbs)
3515                                                               <NA>
3516                                                tablet/pill/capsule
3517                                                               <NA>
3519                                                    based on weight
3520                                                               <NA>
3522                                                               <NA>
3525                                                               <NA>
3526                                                               <NA>
3530                                                               pump
3531                                                               <NA>
3535                                                               <NA>
3581                                                tablet/pill/capsule
3588                                                                  %
3600                                                               <NA>
3601                                                               <NA>
3619                                                               <NA>
3622                                                       pack/package
3631                                              1 tablet/pill/capsule
3632                                              1 tablet/pill/capsule
3635                                                               <NA>
3636                                                               <NA>
3639                                                               <NA>
3640                                                               <NA>
3641                                                              spray
3649                                                               <NA>
3650                                                               <NA>
3651                                                               <NA>
3652                                                               <NA>
3666                                                              spray
3667                                                       small amount
3675                                                              spray
3684                                                tablet/pill/capsule
3685                                                               tube
3691                                                        bottle/vial
3692                                                tablet/pill/capsule
3693                                                              spray
3698                                                    based on weight
3699                                                    based on weight
3701                                                    based on weight
3704                                                    based on weight
3705                                                tablet/pill/capsule
3706                                                               <NA>
3710                                                               <NA>
3718                                                               <NA>
3719                                              1 tablet/pill/capsule
3725                                                               <NA>
3726                                                tablet/pill/capsule
3735                                                               <NA>
3738                                                               <NA>
3741                                                               <NA>
3742                                                               <NA>
3743                                                               <NA>
3744                                                               <NA>
3745                                                               <NA>
3750                                                               <NA>
3760                                                               <NA>
3773                                                               <NA>
3781                                                               <NA>
3782                                                               <NA>
3783                                                               <NA>
3784                                                               <NA>
3785                                                               <NA>
3786                                                               <NA>
3789                                                               <NA>
3797                                                              spray
3798                                                       small amount
3800                                                       small amount
3803                                                               <NA>
3804                                                               <NA>
3815                                                               <NA>
3829                                                               <NA>
3830                                                               <NA>
3835                                                               <NA>
3836                                                               <NA>
3837                                                               <NA>
3838                                                               <NA>
3839                                                               <NA>
3840                                                        application
3848                                                         inch strip
3857                                              1 tablet/pill/capsule
3858                                                             1 tube
3859                                              1 tablet/pill/capsule
3860                                                tablet/pill/capsule
3861                                                               <NA>
3867                                                               <NA>
3870                                                               <NA>
3871                                                               <NA>
3872                                                               <NA>
3874                                                        application
3881                                                               <NA>
3884                                                    based on weight
3885                                                    based on weight
3886                                                    based on weight
3889                                                    based on weight
3890                                                    based on weight
3896                                                    based on weight
3897                                                    based on weight
3898                                                               <NA>
3900                                                               <NA>
3902                                                    based on weight
3903                                                    based on weight
3904                                                    based on weight
3906                                                    based on weight
3907                                                    based on weight
3911                                                    based on weight
3912                                                    based on weight
3936                                                    based on weight
3938                                                    based on weight
3942                                                    based on weight
3943                                                    based on weight
3944                                                       small amount
3945                                                               <NA>
3946                                                    based on weight
3952                                                    based on weight
3955                                                    based on weight
3972                                                    based on weight
3980                                                    based on weight
3981                                                    based on weight
3984                                                    based on weight
3985                                                    based on weight
3989                                                tablet/pill/capsule
3990                                                tablet/pill/capsule
4000                                                               <NA>
4017                                              1 tablet/pill/capsule
4030                                                               <NA>
4031                                                tablet/pill/capsule
4042                                                               <NA>
4044                                                               <NA>
4045                                                tablet/pill/capsule
4047                                                               <NA>
4058                                                    based on weight
4059                                                               <NA>
4060                                                               <NA>
4063                                                               <NA>
4064                                                               <NA>
4066                                                    based on weight
4067                                                    based on weight
4068                                                               <NA>
4069                                                               <NA>
4070                                                               <NA>
4071                                                       small amount
4072                                                    based on weight
4073                                       based on weight (50-100 lbs)
4074                                                               <NA>
4075                                                               <NA>
4076                                                               <NA>
4077                                                               <NA>
4087                                                               <NA>
4088                                                           ointment
4089                                                               <NA>
4092                                                    syringe/pipette
4095                                                tablet/pill/capsule
4096                                                               <NA>
4097                                                               <NA>
4111                                                tablet/pill/capsule
4112                                                tablet/pill/capsule
4113                                                               <NA>
4114                                                               <NA>
4116                                                               <NA>
4117                                                        bottle/vial
4118                                                tablet/pill/capsule
4119                                                               <NA>
4120                                                tablet/pill/capsule
4122                                                    based on weight
4125                                                               <NA>
4127                                                    based on weight
4128                                                    based on weight
4130                                                    based on weight
4131                                                              spray
4132                                                               <NA>
4133                                                               <NA>
4134                                                               <NA>
4159                                                               <NA>
4160                                                               <NA>
4161                                                               <NA>
4162                                                               <NA>
4172                                        based on weight (44-88 lbs)
4183                                                        as directed
4184                                                               <NA>
4189                                                tablet/pill/capsule
4190                                                tablet/pill/capsule
4191                                                    based on weight
4193                                                               <NA>
4198                                                    based on weight
4199                                                    based on weight
4204                                                        unspecified
4209                                                tablet/pill/capsule
4210                                       based on weight (60-120 lbs)
4212                                                               <NA>
4213                                                               <NA>
4215                                                               <NA>
4216                                                               <NA>
4218                                                               <NA>
4229                                                          100 mg/ml
4234                                                               <NA>
4244                                                               <NA>
4245                                                               <NA>
4247                                                               <NA>
4265                                                               <NA>
4266                                                               <NA>
4274                                                               <NA>
4281                                                               <NA>
4282                                                               <NA>
4298                                        based on weight (44-88 lbs)
4299                                       based on weight (50-100 lbs)
4302                                       based on weight (50-100 lbs)
4303                                        based on weight (44-88 lbs)
4304                                                        unspecified
4305                                                        unspecified
4306                                                        unspecified
4307                                                tablet/pill/capsule
4308                                                               <NA>
4309                                                               <NA>
4311                                                               <NA>
4313                                                    based on weight
4314                                                    based on weight
4323                                                    based on weight
4324                                                             powder
4325                                                    based on weight
4326                                                             powder
4334                                                               <NA>
4336                                                tablet/pill/capsule
4338                                                tablet/pill/capsule
4341                                                               <NA>
4348                                                         inch strip
4349                                                    based on weight
4350                                                    based on weight
4351                                                    based on weight
4353                                                    based on weight
4354                                                tablet/pill/capsule
4359                                                    based on weight
4360                                                            1 spray
4368                                                               <NA>
4371                                                               <NA>
4384                                                               <NA>
4389                                                tablet/pill/capsule
4390                                                tablet/pill/capsule
4395                                                               <NA>
4405                                                               <NA>
4409                                                       small amount
4426                                                tablet/pill/capsule
4427                                                               tube
4428                                              1 tablet/pill/capsule
4430                                                               pump
4431                                                               pump
4444                                                               tube
4445                           27 mg milbemycin oxime, 1620 mg spinosad
4446                                                        1 gm/sachet
4454                                                           inhalant
4469                                                       small amount
4470                                                       small amount
4471                                                           wipe/pad
4472                                                       small amount
4480                                                       small amount
4481                                                           wipe/pad
4483                                                tablet/pill/capsule
4486                                                tablet/pill/capsule
4488                                                               <NA>
4491                                                               <NA>
4497                                                    based on weight
4498                                                    based on weight
4499                                                tablet/pill/capsule
4500                                                tablet/pill/capsule
4501                                                        as directed
4502                                                tablet/pill/capsule
4504                                                        unspecified
4505                                              1 tablet/pill/capsule
4509                                       based on weight (50-100 lbs)
4510                                       based on weight (60-120 lbs)
4511                                                tablet/pill/capsule
4515                                       based on weight (50-100 lbs)
4516                                       based on weight (60-120 lbs)
4517                                                               <NA>
4524                                                    based on weight
4532                                                    based on weight
4533                                                               <NA>
4534                                                                tbs
4535                                                               <NA>
4536                                                    based on weight
4544                                                               <NA>
4545                                                tablet/pill/capsule
4547                                                               <NA>
4558                                                    based on weight
4559                                                    based on weight
4560                                                tablet/pill/capsule
4561                                                              spray
4562                                                tablet/pill/capsule
4564                                                    based on weight
4565                                                    based on weight
4566                                                    based on weight
4567                                                    based on weight
4568                                                        unspecified
4569                                                    based on weight
4587                                                               <NA>
4597                                                        unspecified
4598                                                               <NA>
4599                                                               <NA>
4600                                                               <NA>
4611                                                               <NA>
4617                                                              spray
4627                                                               <NA>
4628                                                               <NA>
4629                                                               <NA>
4630                                                       small amount
4631                                                               <NA>
4634                                                       pack/package
4638                                                               <NA>
4640                                                               <NA>
4642                                                               <NA>
4643                                                              0.20%
4644                                                               <NA>
4645                                                               <NA>
4646                                                              0.03%
4647                                                               <NA>
4648                                                               <NA>
4649                                                               <NA>
4651                                                           ointment
4652                                                    moderate amount
4654                                                               <NA>
4655                                                               <NA>
4688                                                               <NA>
4693                                                tablet/pill/capsule
4694                                                tablet/pill/capsule
4695                                                tablet/pill/capsule
4696                                                               <NA>
4697                                                               <NA>
4700                                                               <NA>
4703                                                               <NA>
4705                                                               <NA>
4711                                                               <NA>
4716                                                               <NA>
4717                                                               <NA>
4719                                                               <NA>
4720                                                               <NA>
4726                                                    based on weight
4738                                       based on weight (60-120 lbs)
4739                                                    based on weight
4743                                                               <NA>
4744                                                               <NA>
4745                                                               <NA>
4748                                                               <NA>
4757                                                               <NA>
4760                                                tablet/pill/capsule
4761                                                               <NA>
4763                                          based on weight (55+ lbs)
4764                                                               <NA>
4766                                                    based on weight
4777                                                     shampoo/mousse
4780                                          based on weight (88+ lbs)
4782                                                tablet/pill/capsule
4798                                                               <NA>
4801                                                               <NA>
4802                                                tablet/pill/capsule
4803                                                               <NA>
4804                                                               <NA>
4805                                                               <NA>
4806                                       based on weight (60-120 lbs)
4807                                                               <NA>
4813                                                               <NA>
4824                                                               <NA>
4826                                                              units
4828                                                             powder
4832                                                                  %
4850                                                     shampoo/mousse
4853                                                       small amount
4855                                                               <NA>
4858                                                               <NA>
4859                                                               <NA>
4861                                                               <NA>
4862                                                               <NA>
4881                                                         inch strip
4902                                                                  %
4904                                                        combination
4905                                                               <NA>
4907                                                                  %
4908                                                               <NA>
4910                                                             collar
4912                                                               <NA>
4913                                                             collar
4914                                                               <NA>
4917                                                               <NA>
4935                                                    based on weight
4956                                                       small amount
4960                                                       small amount
4968                                                               <NA>
4969                                                               <NA>
4980                                                       pack/package
4981                                                               <NA>
4989                                                               <NA>
4990                                                               <NA>
4996                                                        unspecified
4998                                                               <NA>
5040                                                               <NA>
5043                                                               <NA>
5046                                                               <NA>
5066                                                    based on weight
5067                                                    based on weight
5078                                                    based on weight
5122                                                               <NA>
5123                                                               <NA>
5125                                                               <NA>
5127                                                        unspecified
5134                                                               <NA>
5140                                                               <NA>
5150                                                    based on weight
5159                                                               <NA>
5160                                                               <NA>
5161                                                               <NA>
5165                                                               <NA>
5173                                                tablet/pill/capsule
5174                                                tablet/pill/capsule
5175                                                               <NA>
5189                                                    based on weight
5191                                                               <NA>
5192                                                               <NA>
5193                                                               <NA>
5195                                                    based on weight
5201                                                               <NA>
5203                                                tablet/pill/capsule
5210                                                    moderate amount
5211                                                    moderate amount
5212                                                              spray
5213                                                    moderate amount
5214                                                    based on weight
5220                                                              spray
5221                                                              spray
5222                                                    based on weight
5223                                                    based on weight
5225                                                tablet/pill/capsule
5234                                           2 tablets/pills/capsules
5235                                                    based on weight
5243                                                    based on weight
5244                                                    based on weight
5247                                                    based on weight
5248                                                    based on weight
5253                                                    based on weight
5255                                                    based on weight
5256                                                    based on weight
5257                                                    based on weight
5258                                                tablet/pill/capsule
5261                                                    based on weight
5262                                                tablet/pill/capsule
5264                                                    based on weight
5265                                                    based on weight
5270                                                    based on weight
5271                                                    based on weight
5289                                                               dose
5332                                                    based on weight
5333                                                        unspecified
5334                                                tablet/pill/capsule
5335                                                             collar
5336                                                tablet/pill/capsule
5337                                                               <NA>
5340                                                            monthly
5341                                                               pump
5354                                                             collar
5357                                                               <NA>
5359                                                               <NA>
5360                                                               <NA>
5361                                                               <NA>
5362                                                tablet/pill/capsule
5369                                                tablet/pill/capsule
5377                                                        combination
5378                                                                  %
5379                                                    based on weight
5380                                                    based on weight
5382                                                    based on weight
5384                                                               <NA>
5385                                                               <NA>
5386                                                               <NA>
5387                                                               <NA>
5388                                                               <NA>
5391                                              1 tablet/pill/capsule
5392                                              1 tablet/pill/capsule
5403                                                tablet/pill/capsule
5424                                                             3.5 gm
5428                                                        bottle/vial
5440                                                               <NA>
5460                                                               <NA>
5464                                                               <NA>
5469                                                               <NA>
5483                                                tablet/pill/capsule
5484                                                               <NA>
5485                                                               <NA>
5490                                                               <NA>
5491                                                               <NA>
5492                                                tablet/pill/capsule
5497                                                tablet/pill/capsule
5498                                                tablet/pill/capsule
5499                                                               dose
5500                                                tablet/pill/capsule
5501                                                       small amount
5502                                                        bottle/vial
5507                                                tablet/pill/capsule
5508                                                tablet/pill/capsule
5509                                                    based on weight
5511                                                    based on weight
5513                                                tablet/pill/capsule
5527                                                       small amount
5528                                                        application
5529                                                        application
5533                                                       small amount
5534                                       based on weight (50-100 lbs)
5535                                                               <NA>
5537                                                              spray
5541                                                tablet/pill/capsule
5542                                                    syringe/pipette
5545                                              1 tablet/pill/capsule
5546                                           2 tablets/pills/capsules
5552                                                               <NA>
5553                                                               <NA>
5556                                                     1 pack/package
5557                                                tablet/pill/capsule
5568                                                    based on weight
5571                                                    based on weight
5574                                                    based on weight
5576                                                tablet/pill/capsule
5577                                                             collar
5578                                                tablet/pill/capsule
5595                                       based on weight (50-100 lbs)
5600                                                    based on weight
5601                                                    based on weight
5602                                                    based on weight
5607                                                               <NA>
5626                                                    based on weight
5627                                                               <NA>
5628                                                               <NA>
5629                                                               <NA>
5630                                                               <NA>
5631                                                    based on weight
5632                                                    based on weight
5641                                                               <NA>
5649                                                        billion cfu
5668                                                               <NA>
5681                                                tablet/pill/capsule
5682                                                tablet/pill/capsule
5695                                                               <NA>
5721                                                               <NA>
5722                                                               <NA>
5723                                                               <NA>
5724                                                               <NA>
5725                                                               <NA>
5728                                                               <NA>
5729                                                               <NA>
5731                                                               <NA>
5737                                                               <NA>
5747                                                tablet/pill/capsule
5748                                                tablet/pill/capsule
5760                                                    based on weight
5762                                                               <NA>
5768                                       based on weight (50-100 lbs)
5771                                                               <NA>
5774                                                               <NA>
5777                                                        unspecified
5793                                                    based on weight
5794                                                    based on weight
5804                                                               <NA>
5814                                                               <NA>
5834                                                               <NA>
5839                                                               <NA>
5840                                                               <NA>
5858                                                         inch strip
5869                                                               <NA>
5872                                                    based on weight
5873                                                    based on weight
5877                                                    based on weight
5884                                                        unspecified
5887                                                               <NA>
5890                                                    based on weight
5896                                                    based on weight
5913                                                tablet/pill/capsule
5917                                                               <NA>
5925                                                    based on weight
5928                                                    based on weight
5930                                                    based on weight
5931                                                    based on weight
5932                                                               <NA>
5933                                                    based on weight
5934                                                    based on weight
5935                                                               <NA>
5936                                                    based on weight
5937                                                    based on weight
5941                                                    based on weight
5942                                                    based on weight
5945                                                           wipe/pad
5963                                                    based on weight
5964                                                    based on weight
5965                                                               <NA>
5966                                                               <NA>
5967                                                               <NA>
5968                                                               <NA>
5976                                                               <NA>
5977                                                               <NA>
5978                                                               <NA>
5979                                                               <NA>
5980                                                    based on weight
5981                                                tablet/pill/capsule
5985                                                    based on weight
5987                                                               <NA>
5988                                                               <NA>
5991                                                    syringe/pipette
5992                                                tablet/pill/capsule
5993                                                               <NA>
5994                                                               <NA>
6000                                                               <NA>
6002                                                                  %
6003                                                               <NA>
6004                                                               <NA>
6005                                                               <NA>
6012                                                    based on weight
6014                                                               <NA>
6015                                                               <NA>
6016                                                               <NA>
6017                                                               <NA>
6021                                                               <NA>
6022                                                               <NA>
6036                                                               <NA>
6038                                                tablet/pill/capsule
6039                                       based on weight (50-100 lbs)
6059                                                    based on weight
6060                                                    based on weight
6063                                                        as directed
6068                                                               <NA>
6069                                                        application
6070                                                               <NA>
6071                                       based on weight (50-100 lbs)
6072                                                        unspecified
6073                                                            monthly
6074                                                              spray
6076                                                             collar
6078                                                             collar
6088                                                    0.25 inch strip
6089                                                               <NA>
6090                                                    0.25 inch strip
6092                                                               <NA>
6093                                       based on weight (50-100 lbs)
6094                                                               <NA>
6095                                                              spray
6096                                                               <NA>
6097                                                               <NA>
6098                                                               <NA>
6099                                                               <NA>
6101                                                               <NA>
6102                                                               <NA>
6104                                                               <NA>
6109                                                               <NA>
6129                                       based on weight (50-100 lbs)
6130                                       based on weight (60-120 lbs)
6132                                                tablet/pill/capsule
6133                                                tablet/pill/capsule
6134                                                               <NA>
6135                                                               <NA>
6136                                                tablet/pill/capsule
6137                                                tablet/pill/capsule
6139                                                tablet/pill/capsule
6140                                                tablet/pill/capsule
6148                                                               <NA>
6149                                                               <NA>
6150                                                               <NA>
6152                                                               <NA>
6160                                                    based on weight
6161                                                               <NA>
6164                                                          as needed
6189                                                               <NA>
6200                                                tablet/pill/capsule
6202                                                tablet/pill/capsule
6206                                                             1 tube
6208                                                               tube
6215                                                              spray
6217                                                               <NA>
6218                                                             joules
6221                                                               <NA>
6224                                                    based on weight
6225                                                    based on weight
6226                                                    based on weight
6231                                                    based on weight
6232                                                    based on weight
6244                                                               <NA>
6254                                                tablet/pill/capsule
6255                                                               <NA>
6257                                                        application
6258                                                tablet/pill/capsule
6262                                       based on weight (50-100 lbs)
6263                                        based on weight (24-60 lbs)
6266                                                               <NA>
6267                                                               <NA>
6275                                                        application
6282                                                               <NA>
6283                                                        application
6284                                                               <NA>
6293                                                tablet/pill/capsule
6296                                                               <NA>
6302                                                               <NA>
6307                                                               <NA>
6312                                                               <NA>
6319                                                               <NA>
6320                                                               <NA>
6325                                                               <NA>
6326                                                        application
6328                                                               <NA>
6329                                       based on weight (50-100 lbs)
6331                                                    based on weight
6341                                                tablet/pill/capsule
6342                                                               <NA>
6343                                                               <NA>
6354                                                    based on weight
6358                                                     shampoo/mousse
6362                                                    based on weight
6382                                                               <NA>
6388                                                               <NA>
6390                                                               <NA>
6395                                                    based on weight
6399                                                               <NA>
6405                                                    based on weight
6406                                                             collar
6411                                                               <NA>
6437                                                               <NA>
6441                                                               <NA>
6443                                                               <NA>
6444                                              1 tablet/pill/capsule
6451                                                        unspecified
6459                                                               <NA>
6461                                                               <NA>
6474                                                tablet/pill/capsule
6475                                              1 tablet/pill/capsule
6486                                                               <NA>
6495                                                              drops
6497                                                              drops
6498                                                               <NA>
6499                                                tablet/pill/capsule
6500                                                    based on weight
6522                                                    based on weight
6523                                                    based on weight
6527                                                    based on weight
6528                                                    based on weight
6555                                                    based on weight
6562                                                       small amount
6565                                                tablet/pill/capsule
6569                                                tablet/pill/capsule
6570                                                               tube
6571                                                        unspecified
6573                                                        bottle/vial
6579                                                    based on weight
6581                                                        unspecified
6594                                       based on weight (50-100 lbs)
6602                                              1 tablet/pill/capsule
6606                                         1-2 tablets/pills/capsules
6612                                                tablet/pill/capsule
6625                                              1 tablet/pill/capsule
6636                                                tablet/pill/capsule
6639                                                    based on weight
6644                                                    based on weight
6647                                              1 tablet/pill/capsule
6648                                              1 tablet/pill/capsule
6649                                                               <NA>
6650                                                               <NA>
6657                                              1 tablet/pill/capsule
6658                                                tablet/pill/capsule
6662                                       based on weight (50-100 lbs)
6663                                                tablet/pill/capsule
6674                                                    based on weight
6675                                                    based on weight
6676                                                    based on weight
6680                                                    based on weight
6683                                                       small amount
6687                                                    based on weight
6688                                                    based on weight
6693                                              1 tablet/pill/capsule
6694                                                               <NA>
6696                                                    based on weight
6697                                                               <NA>
6698                                                tablet/pill/capsule
6702                                                tablet/pill/capsule
6703                                                               <NA>
6714                                                               <NA>
6715                                        based on weight (26-50 lbs)
6716                                                        unspecified
6717                                                        unspecified
6733                                                               <NA>
6739                                                               <NA>
6751                                                               <NA>
6759                                                               <NA>
6760                                          based on weight (51+ lbs)
6763                                                               <NA>
6764                                                    based on weight
6778                                                tablet/pill/capsule
6779                                                tablet/pill/capsule
6781                                                tablet/pill/capsule
6783                                                tablet/pill/capsule
6786                                                               <NA>
6789                                                               <NA>
6796                                                    based on weight
6797                                                               <NA>
6815                                                               <NA>
6816                                                         inch strip
6817                                                         inch strip
6818                                                               <NA>
6824                                                               <NA>
6826                                                               <NA>
6828                                                               dose
6839                                                               <NA>
6854                                                    based on weight
6864                                                               <NA>
6868                                                           inhalant
6880                                                           inhalant
6886                                                    moderate amount
6891                                                        application
6892                                                       small amount
6898                                                    based on weight
6906                                                tablet/pill/capsule
6908                                                               1 ml
6909                                                tablet/pill/capsule
6910                                                tablet/pill/capsule
6928                                                     shampoo/mousse
6934                                                               <NA>
6935                                                               <NA>
6936                                                               <NA>
6938                                                    based on weight
6946                                                               <NA>
6956                                                               <NA>
6957                                                    based on weight
6981                                                tablet/pill/capsule
6982                                                tablet/pill/capsule
6983                                                tablet/pill/capsule
6984                                                tablet/pill/capsule
6986                                                               <NA>
6992                                                    based on weight
6995                                                    based on weight
6998                                                    based on weight
6999                                                               tube
7002                                                               <NA>
7005                                                               <NA>
7006                                                               <NA>
7013                                                               <NA>
7017                                                tablet/pill/capsule
7018                                                               <NA>
7019                                                               <NA>
7021                                                tablet/pill/capsule
7023                                                               <NA>
7025                                                               <NA>
7027                                                               <NA>
7030                                                               <NA>
7042                                                               <NA>
7047                                                               <NA>
7053                                                               <NA>
7054                                                               <NA>
7064                                                    based on weight
7065                                                    based on weight
7067                                                    based on weight
7071                                                               <NA>
7092                                                              spray
7093                                                tablet/pill/capsule
7095                                                               <NA>
7096                                                               <NA>
7116                                                               <NA>
7127                                                               <NA>
7130                                                               <NA>
7131                                                               <NA>
7137                                                              scoop
7149                                              1 tablet/pill/capsule
7151                                                           ointment
7152                                                     1 pack/package
7153                                                       small amount
7154                                                             liquid
7155                                                             powder
7172                                                             powder
7173                                                           wipe/pad
7175                                                               <NA>
7177                                                               <NA>
7180                                                               pump
7189                                                              spray
7208                                                    0.25 inch strip
7218                                                               <NA>
7219                                                    based on weight
7240                                                               <NA>
7243                                                               <NA>
7247                                                tablet/pill/capsule
7248                                                tablet/pill/capsule
7249                                                tablet/pill/capsule
7260                                                tablet/pill/capsule
7261                                                tablet/pill/capsule
7262                                                tablet/pill/capsule
7285                                                               <NA>
7286                                                               <NA>
7291                                                tablet/pill/capsule
7294                                                               <NA>
7295                                                tablet/pill/capsule
7297                                           2 tablets/pills/capsules
7320                                                    based on weight
7342                                                    syringe/pipette
7343                                                    syringe/pipette
7344                                                        unspecified
7345                                                        unspecified
7346                                                               <NA>
7371                                                       small amount
7413                                                    based on weight
7426                                                               <NA>
7432                                                               <NA>
7499                                                               <NA>
7503                                                tablet/pill/capsule
7510                                                tablet/pill/capsule
7511                                                tablet/pill/capsule
7512                                                tablet/pill/capsule
7513                                                tablet/pill/capsule
7519                                                               <NA>
7521                                                        combination
7522                                                               <NA>
7523                                                               <NA>
7524                                                        unspecified
7525                                                               <NA>
7526                                                               <NA>
7551                                              1 tablet/pill/capsule
7555                                                tablet/pill/capsule
7563                                                tablet/pill/capsule
7564                                                               <NA>
7565                                                               <NA>
7566                                       based on weight (50-100 lbs)
7568                                                               <NA>
7576                                                               <NA>
7577                                                               <NA>
7578                                                               <NA>
7579                                                               <NA>
7580                                                               <NA>
7583                                       based on weight (50-100 lbs)
7584                                                               <NA>
7585                                                               <NA>
7586                                                               <NA>
7587                                                               <NA>
7588                                                               <NA>
7589                                                               <NA>
7590                                                               <NA>
7598                                                           wipe/pad
7635                                                               <NA>
7636                                                               <NA>
7637                                                               <NA>
7660                                       based on weight (50-100 lbs)
7671                                                               <NA>
7673                                                        unspecified
7674                                                        unspecified
7675                                                               <NA>
7678                                                    0.25 inch strip
7679                                                             1 pump
7681                                                               <NA>
7682                                                    based on weight
7683                                                    based on weight
7684                                                    based on weight
7692                                                               <NA>
7696                                                               <NA>
7699                                                               <NA>
7701                                                               <NA>
7705                                                              daily
7732                                        based on weight (25-50 lbs)
7742                                                               <NA>
7743                                                               <NA>
7744                                                    based on weight
7745                                                    based on weight
7746                                                tablet/pill/capsule
7747                                                        application
7748                                                               <NA>
7749                                                               <NA>
7750                                                               <NA>
7751                                                               <NA>
7754                                                               <NA>
7759                                                             1 tube
7763                                              1 tablet/pill/capsule
7772                                                               <NA>
7776                                                               <NA>
7783                                                             1 tube
7784                                              1 tablet/pill/capsule
7787                                                               <NA>
7795                                                tablet/pill/capsule
7812                                                       small amount
7818                                                               <NA>
7820                                                               <NA>
7822                                                               <NA>
7832                                                               <NA>
7837                                                               <NA>
7839                                                             powder
7840                                                               <NA>
7845                                                               <NA>
7846                                                               <NA>
7848                                                               <NA>
7852                                                               <NA>
7853                                                               pump
7854                                                               <NA>
7862                                                               <NA>
7864                                                               <NA>
7883                                              1 tablet/pill/capsule
7884                                              1 tablet/pill/capsule
7885                                                               <NA>
7887                                                               <NA>
7889                                                               <NA>
7895                                                               <NA>
7926                                                             powder
7929                                                       small amount
7934                                                               <NA>
7935                                                               <NA>
7941                                                               <NA>
7944                                                               <NA>
7946                                                               <NA>
7961                                                           ointment
7966                                                tablet/pill/capsule
7967                                                tablet/pill/capsule
7968                                                tablet/pill/capsule
7969                                                tablet/pill/capsule
7970                                                               <NA>
7973                                                               <NA>
7987                                                               <NA>
7988                                                    based on weight
7993                                                    based on weight
7995                                                               <NA>
7998                                                       pack/package
8000                                                    based on weight
8009                                                        unspecified
8012                                                           ointment
8014                                                       small amount
8017                                                       small amount
8029                                                        combination
8030                                                    based on weight
8040                                                               <NA>
8042                                                               <NA>
8043                                                               <NA>
8044                                                               <NA>
8045                                                               <NA>
8063                                                    based on weight
8066                                                    based on weight
8067                                                    based on weight
8069                                                    based on weight
8070                                                    based on weight
8071                                                    based on weight
8075                                                               <NA>
8086                                                       small amount
8091                                                               <NA>
8098                                                               <NA>
8099                                                               <NA>
8100                                                               <NA>
8120                                                    based on weight
8121                                       based on weight (50-100 lbs)
8122                                                               <NA>
8123                                                tablet/pill/capsule
8125                                                               <NA>
8128                                                       small amount
8130                                                    based on weight
8131                                                    based on weight
8135                                                               <NA>
8136                                                    based on weight
8137                                                    based on weight
8138                                                    based on weight
8139                                                    based on weight
8140                                                       small amount
8160                                                        unspecified
8165                                                               <NA>
8182                                                       small amount
8184                                                             powder
8185                                       based on weight (50-100 lbs)
8186                                       based on weight (50-100 lbs)
8187                                       based on weight (50-100 lbs)
8188                                       based on weight (60-120 lbs)
8195                                                    based on weight
8196                                                    based on weight
8205                                                    based on weight
8206                                                    based on weight
8207                                                    based on weight
8208                                                    based on weight
8209                                                               <NA>
8210                                                               <NA>
8211                                                               <NA>
8212                                                    based on weight
8214                                                               <NA>
8215                                                    based on weight
8220                                              1 tablet/pill/capsule
8221                                              1 tablet/pill/capsule
8222                                              1 tablet/pill/capsule
8223                                                               <NA>
8224                                                               <NA>
8234                                                            8 drops
8235                                                       small amount
8236                                                              spray
8238                                                               <NA>
8241                                                               <NA>
8244                                                    based on weight
8248                                                tablet/pill/capsule
8251                                                               <NA>
8252                                                              spray
8280                                                               <NA>
8284                                                       small amount
8293                                                       small amount
8296                                       based on weight (50-100 lbs)
8297                                        based on weight (44-88 lbs)
8298                                                               <NA>
8299                                                               1 ml
8300                                                               <NA>
8301                                                    based on weight
8302                                                    based on weight
8303                                                               <NA>
8304                                                               <NA>
8305                                                              spray
8306                                                    based on weight
8307                                                    based on weight
8311                                                               <NA>
8312                                                               <NA>
8313                                                               <NA>
8314                                                               <NA>
8315                                                               <NA>
8326                                                    based on weight
8332                                                    based on weight
8335                                                    based on weight
8337                                                               <NA>
8338                                                               <NA>
8340                                                    based on weight
8341                                                               <NA>
8349                                                    based on weight
8354                                                tablet/pill/capsule
8355                                                      1 application
8358                                                    based on weight
8359                                                    based on weight
8362                                                       small amount
8369                                                       small amount
8370                                                tablet/pill/capsule
8371                                                tablet/pill/capsule
8376                                                       small amount
8377                                                tablet/pill/capsule
8378                                                tablet/pill/capsule
8389                                                               <NA>
8405                                                               tube
8408                                                                  1
8410                                                    based on weight
8418                                                           inhalant
8420                                                    based on weight
8421                                                tablet/pill/capsule
8424                                                             1 tube
8425                                                tablet/pill/capsule
8427                                                tablet/pill/capsule
8435                                                     1 pack/package
8436                                                       small amount
8440                                                               <NA>
8441                                                               <NA>
8451                                                               <NA>
8452                                                               <NA>
8454                                                tablet/pill/capsule
8461                                                    based on weight
8465                                                    based on weight
8466                                              1 tablet/pill/capsule
8467                                                       small amount
8475                                                     shampoo/mousse
8478                                                     shampoo/mousse
8489                                                    based on weight
8509                                                tablet/pill/capsule
8510                                                               <NA>
8514                                                tablet/pill/capsule
8515                                                tablet/pill/capsule
8528                                                tablet/pill/capsule
8531                                                tablet/pill/capsule
8532                                                tablet/pill/capsule
8533                                                tablet/pill/capsule
8534                                                tablet/pill/capsule
8541                                                               <NA>
8546                                                               <NA>
8547                                                               <NA>
8550                                                               <NA>
8554                                                    based on weight
8555                                                    based on weight
8575                                                               <NA>
8578                                                       small amount
8581                                                       small amount
8582                                              1 tablet/pill/capsule
8583                                                               <NA>
8584                                                               <NA>
8585                                                             powder
8586                                                         1 wipe/pad
8588                                                               <NA>
8591                                                tablet/pill/capsule
8607                                                    based on weight
8609                                                    based on weight
8613                                                               <NA>
8673                                                               <NA>
8674                                                    based on weight
8675                                                tablet/pill/capsule
8676                                                tablet/pill/capsule
8677                                                tablet/pill/capsule
8685                                                               <NA>
8694                                                      1 bottle/vial
8695                                                               <NA>
8697                                                               <NA>
8702                                                        bottle/vial
8707                                                      1 bottle/vial
8721                                                               <NA>
8731                                                             collar
8735                                                       small amount
8736                                                           wipe/pad
8744                                                               <NA>
8745                                                               <NA>
8756                                              1 tablet/pill/capsule
8757                                                               <NA>
8759                                                    based on weight
8760                                                    based on weight
8768                                          based on weight (51+ lbs)
8769                                          based on weight (56+ lbs)
8770                                              1 tablet/pill/capsule
8771                                                             1 tube
8776                                                    based on weight
8777                                                    based on weight
8778                                              1 tablet/pill/capsule
8779                                                      1 application
8780                                              1 tablet/pill/capsule
8781                                                      1 application
8786                                                    based on weight
8787                                                    based on weight
8790                                                    based on weight
8791                                                    based on weight
8792                                                               <NA>
8793                                                tablet/pill/capsule
8794                                                tablet/pill/capsule
8795                                                    based on weight
8796                                                    based on weight
8797                                                               <NA>
8805                                                tablet/pill/capsule
8808                                                        application
8815                                                         inch strip
8819                                                    based on weight
8820                                                    based on weight
8825                                                               <NA>
8826                                                               dose
8827                                                    based on weight
8828                                                    based on weight
8831                                                               <NA>
8833                                                    based on weight
8834                                                               <NA>
8837                                                               <NA>
8843                                                               <NA>
8851                                                               <NA>
8852                                                               <NA>
8853                                                               <NA>
8855                                                               <NA>
8860                                                               <NA>
8875                                                               <NA>
8876                                                               <NA>
8877                                                               <NA>
8879                                                    based on weight
8885                                                               <NA>
8908                                                               <NA>
8911                                                    based on weight
8929                                                        as directed
8930                                                               <NA>
8961                                                        as directed
8962                                                               <NA>
8994                                                               <NA>
8995                                                               <NA>
8997                                                               <NA>
8998                                                               <NA>
9026                                       based on weight (50-100 lbs)
9046                                              1 tablet/pill/capsule
9047                                                               <NA>
9049                                                               <NA>
9050                                                tablet/pill/capsule
9052                                                               <NA>
9053                                                tablet/pill/capsule
9054                                                tablet/pill/capsule
9055                                                    based on weight
9056                                                               <NA>
9060                                              1 tablet/pill/capsule
9064                                                               <NA>
9065                                                               <NA>
9070                                                tablet/pill/capsule
9071                                                tablet/pill/capsule
9084                                                               <NA>
9094                                                    based on weight
9095                                                    based on weight
9098                                                    based on weight
9099                                                               <NA>
9100                                                        unspecified
9101                                                        unspecified
9109                                                    0.25 inch strip
9118                                                         inch strip
9132                                                tablet/pill/capsule
9135                                                               <NA>
9136                                                       small amount
9137                                                               <NA>
9156                                                               <NA>
9160                                                    based on weight
9161                                                    based on weight
9164                                                    based on weight
9170                                                    based on weight
9171                                                    based on weight
9172                                                    based on weight
9187                                                               <NA>
9189                                                tablet/pill/capsule
9193                                                       pack/package
9202                                              1 tablet/pill/capsule
9229                                                               <NA>
9230                                                       small amount
9233                                                               <NA>
9236                                                    based on weight
9239                                                               <NA>
9240                                                        as directed
9241                                                        unspecified
9242                                                tablet/pill/capsule
9243                                                               <NA>
9244                                                               <NA>
9245                                                               <NA>
9252                                                       pack/package
9253                                                          as needed
9254                                                tablet/pill/capsule
9259                                                               <NA>
9267                                                    based on weight
9268                                                    based on weight
9269                                              1 tablet/pill/capsule
9270                                              1 tablet/pill/capsule
9271                                                               <NA>
9290                                                tablet/pill/capsule
9292                                                               <NA>
9294                                                               <NA>
9295                                                               <NA>
9297                                                               <NA>
9299                                                    based on weight
9312                                                               <NA>
9337                                                               <NA>
9338                                                               <NA>
9339                                                               <NA>
9348                                                               <NA>
9384                                                               <NA>
9385                                                               <NA>
9386                                                tablet/pill/capsule
9387                                                        bottle/vial
9390                                                               <NA>
9416                                                               <NA>
9418                                                               <NA>
9421                                                             collar
9422                                                tablet/pill/capsule
9426                                              1 tablet/pill/capsule
9429                                                        application
9432                                                             collar
9433                                                               <NA>
9434                                                    based on weight
9435                                                        unspecified
9436                                                tablet/pill/capsule
9438                                                       small amount
9447                                                               <NA>
9452                                                               <NA>
9453                                                                  %
9454                                                         inch strip
9485                                                               <NA>
9494                                                        unspecified
9495                                                        unspecified
9511                                                               <NA>
9516                                                   0.125 inch strip
9524                                                               <NA>
9544                                                    based on weight
9546                                                    based on weight
9548                                                    based on weight
9549                                                    based on weight
9575                                                tablet/pill/capsule
9578                                                               <NA>
9584                                              1 tablet/pill/capsule
9588                                                               <NA>
9592                                                               <NA>
9596                                                               <NA>
9600                                                    based on weight
9601                                                    based on weight
9602                                                               <NA>
9603                                                               <NA>
9604                                                               <NA>
9609                                                tablet/pill/capsule
9610                                                tablet/pill/capsule
9612                                                              spray
9613                                                              spray
9614                                                           wipe/pad
9615                                                tablet/pill/capsule
9616                                                tablet/pill/capsule
9617                                                tablet/pill/capsule
9618                                                tablet/pill/capsule
9619                                                tablet/pill/capsule
9620                                                tablet/pill/capsule
9621                                       based on weight (50-100 lbs)
9632                                                    based on weight
9635                                                               <NA>
9638                                                    based on weight
9640                                                tablet/pill/capsule
9641                                                tablet/pill/capsule
9643                                                tablet/pill/capsule
9657                                                    based on weight
9712                                                    based on weight
9717                                                    based on weight
9718                                                        unspecified
9723                                                               <NA>
9729                                                    based on weight
9730                                                    based on weight
9759                        272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                               <NA>
9761                                                    based on weight
9763                                                               <NA>
9764                                                               <NA>
9765                                                               <NA>
9766                                                    based on weight
9770                                                    based on weight
9771                                                    based on weight
9785                                                               <NA>
9791                                                               <NA>
9800                                       based on weight (50-100 lbs)
9807                                                               <NA>
9808                                                               <NA>
9809                                                               <NA>
9815                                                               <NA>
9821                                                       pack/package
9823                                                               <NA>
9824                                                               <NA>
9825                                                               <NA>
9826                                                         inch strip
9827                                                               <NA>
9828                                                               <NA>
9829                                                               <NA>
9833                                                    0.25 inch strip
9837                                                               <NA>
9840                                                               <NA>
9843                                                               <NA>
9860                                                               <NA>
9862                                                               <NA>
9863                                                           wipe/pad
9865                                                               pump
9873                                                               <NA>
9877                                                               <NA>
9884                                                                 1%
9889                                                tablet/pill/capsule
9890                                                        bottle/vial
9891                                                         inch strip
9892                                                       small amount
9893                                       based on weight (60-120 lbs)
9894                                                               <NA>
9895                                                               <NA>
9896                                                               <NA>
9897                                       based on weight (50-100 lbs)
9898                                       based on weight (60-120 lbs)
9899                                                tablet/pill/capsule
9900                                              1 tablet/pill/capsule
9901                                              1 tablet/pill/capsule
9902                                              1 tablet/pill/capsule
9903                                                    0.25 inch strip
9907                                                               <NA>
9917                                                    based on weight
9918                                                    based on weight
9919                                                               <NA>
9920                                                               <NA>
9923                                                               <NA>
9924                                                               <NA>
9928                                                               <NA>
9931                                              1 tablet/pill/capsule
9935                                                tablet/pill/capsule
9942                                                             cup(s)
9943                                                               <NA>
9944                                                        unspecified
9945                                                    based on weight
9960                                                               <NA>
9961                                                             1 tube
9962                                                               <NA>
9963                                                    based on weight
9966                                                    based on weight
9967                                                               <NA>
9968                                                    based on weight
9969                                                               <NA>
9970                                                       small amount
9971                                                               <NA>
9972                                                               <NA>
10017                                                   based on weight
10026                                                              <NA>
10027                                                       application
10037                                                              <NA>
10042                                                              <NA>
10053                                                   based on weight
10056                                                              <NA>
10057                                                              <NA>
10061                                                      small amount
10063                                                   based on weight
10066                                                   based on weight
10074                                                              <NA>
10075                                                              <NA>
10092                                                              <NA>
10093                                                              <NA>
10106                                                              <NA>
10107                                                              <NA>
10108                                                              <NA>
10109                                                              <NA>
10111                                                              <NA>
10112                                                              <NA>
10113                                                              <NA>
10115                                               tablet/pill/capsule
10116                                                              <NA>
10119                                                       combination
10120                                                              <NA>
10121                                               tablet/pill/capsule
10123                                                              <NA>
10130                                                              <NA>
10131                                                              <NA>
10132                                                              <NA>
10133                                                              <NA>
10134                                               tablet/pill/capsule
10149                                                              <NA>
10151                                                              <NA>
10152                                                              <NA>
10153                                                              <NA>
10154                                                              <NA>
10160                                                              <NA>
10164                                                   based on weight
10167                                      based on weight (50-100 lbs)
10168                                                              <NA>
10169                                                              <NA>
10170                                      based on weight (50-100 lbs)
10176                                                      small amount
10187                                                      small amount
10188                                               tablet/pill/capsule
10195                                                              <NA>
10198                                                              <NA>
10200                                               tablet/pill/capsule
10209                                                   based on weight
10219                                                   based on weight
10230                                      based on weight (50-100 lbs)
10231                                      based on weight (60-120 lbs)
10232                                                              <NA>
10233                                                              <NA>
10234                                                              <NA>
10235                                                              <NA>
10236                                                              <NA>
10245                                               tablet/pill/capsule
10249                                       based on weight (44-88 lbs)
10260                                                              <NA>
10264                                                   moderate amount
10271                                                              <NA>
10273                                                   based on weight
10274                                                   based on weight
10275                                                   based on weight
10276                                                   based on weight
10292                                                              <NA>
10301                                                              <NA>
10312                                                              <NA>
10313                                                              <NA>
10314                                                              <NA>
10316                                                              <NA>
10320                                                              <NA>
10324                                                              <NA>
10332                                                   based on weight
10333                                                   based on weight
10334                                               tablet/pill/capsule
10335                                               tablet/pill/capsule
10343                                                              <NA>
10345                                                      small amount
10347                                               tablet/pill/capsule
10348                                               tablet/pill/capsule
10349                                                      small amount
10356                                                      small amount
10365                                               tablet/pill/capsule
10366                                                              tube
10367                                                              <NA>
10370                                                              <NA>
10372                                                       combination
10374                                                       combination
10379                                                              <NA>
10400                                                              <NA>
10403                                                            1 tube
10404                                                              <NA>
10405                                                   based on weight
10408                                               tablet/pill/capsule
10409                                                              <NA>
10410                                                              <NA>
10412                                                              <NA>
10429                                                              <NA>
10432                                                              <NA>
10435                                                              <NA>
10436                                                          wipe/pad
10441                                                              <NA>
10445                                                             spray
10470                                                              <NA>
10477                                                       bottle/vial
10478                                      based on weight (50-100 lbs)
10483                                                              <NA>
10485                                                              <NA>
10487                                                              <NA>
10499                                                              <NA>
10500                                                              <NA>
10502                                                              <NA>
10503                                             1 tablet/pill/capsule
10505                                             1 tablet/pill/capsule
10506                                                              <NA>
10510                                                              <NA>
10511                                                              <NA>
10523                                                              <NA>
10524                                                              <NA>
10525                                                              <NA>
10526                                                       unspecified
10529                                                      small amount
10555                                                       application
10557                                                              <NA>
10565                                                              <NA>
10573                                                              <NA>
10575                                                      small amount
10576                                                              <NA>
10577                                                              <NA>
10578                                                              <NA>
10579                                                              <NA>
10580                                                              <NA>
10583                                                   based on weight
10587                                                              <NA>
10588                                               tablet/pill/capsule
10589                                               tablet/pill/capsule
10590                                               tablet/pill/capsule
10591                                             1 tablet/pill/capsule
10594                                                   based on weight
10610                                                              <NA>
10617                                                              <NA>
10618                                               tablet/pill/capsule
10619                                               tablet/pill/capsule
10624                                                   based on weight
10628                                                        inch strip
10642                                                              <NA>
10650                                                              <NA>
10652                                                              <NA>
10653                                               tablet/pill/capsule
10655                                      based on weight (50-100 lbs)
10656                                                              <NA>
10658                                                              <NA>
10667                                                              <NA>
10668                                                              <NA>
10669                                                              <NA>
10671                                                              <NA>
10678                                                              <NA>
10682                                                              <NA>
10683                                      based on weight (50-100 lbs)
10684                                      based on weight (50-100 lbs)
10685                                                   based on weight
10686                                                       unspecified
10687                                                        1-2 scoops
10688                                                              <NA>
10689                                      based on weight (50-100 lbs)
10693                                                              <NA>
10694                                      based on weight (50-100 lbs)
10696                                                              <NA>
10697                                                              <NA>
10701                                                              <NA>
10706                                                              <NA>
10707                                      based on weight (50-100 lbs)
10711                                      based on weight (50-100 lbs)
10712                                                   based on weight
10713                                                       unspecified
10714                                                        1-2 scoops
10715                                                              <NA>
10717                                      based on weight (50-100 lbs)
10718                                                              <NA>
10725                                      based on weight (50-100 lbs)
10726                                                            powder
10727                                                       unspecified
10740                                                              <NA>
10743                                                          wipe/pad
10751                                                              <NA>
10755                                                              <NA>
10756                                             1 tablet/pill/capsule
10766                                                              <NA>
10769                                                              <NA>
10780                                                   based on weight
10781                                                   based on weight
10782                                                              <NA>
10783                                                              <NA>
10792                                                              <NA>
10794                                                   based on weight
10796                                                       combination
10825                                                            collar
10827                                                            collar
10830                                               tablet/pill/capsule
10837                                                    125 mg, 500 mg
10841                       2 mg prednisone, 5 mg trimeprazine tartrate
10842                                      based on weight (50-100 lbs)
10843                                      based on weight (85-130 lbs)
10846                                               tablet/pill/capsule
10849                                                   based on weight
10850                                                   based on weight
10851                                                   based on weight
10853                                                      small amount
10863                                                              pump
10865                                                              <NA>
10866                                                              <NA>
10867                                                              <NA>
10870                                               tablet/pill/capsule
10871                                                       bottle/vial
10874                                               tablet/pill/capsule
10877                                               tablet/pill/capsule
10878                                               tablet/pill/capsule
10892                                                              <NA>
10893                                                              <NA>
10894                                                              <NA>
10896                                                              <NA>
10898                                                              <NA>
10899                                                              <NA>
10900                                                              <NA>
10901                                                              <NA>
10905                                                             spray
10925                                                              <NA>
10926                                                              <NA>
10928                                                              tube
10929                                                              tube
10930                                                              <NA>
10932                                                   based on weight
10933                                                   based on weight
10934                                                   based on weight
10938                                               tablet/pill/capsule
10950                                                   based on weight
10953                                                              <NA>
10959                                                              <NA>
10966                                                   based on weight
10967                                                   based on weight
10970                                               tablet/pill/capsule
10971                                               tablet/pill/capsule
11003                                               tablet/pill/capsule
11006                                                              <NA>
11007                                                   based on weight
11008                                             1 tablet/pill/capsule
11009                                             1 tablet/pill/capsule
11010                                                   based on weight
11011                                                   based on weight
11016                                                      small amount
11021                                                              <NA>
11035                                               tablet/pill/capsule
11036                                               tablet/pill/capsule
11037                                               tablet/pill/capsule
11038                                               tablet/pill/capsule
11052                                                              tube
11065                                                              <NA>
11066                                                              <NA>
11067                                                              <NA>
11069                                               tablet/pill/capsule
11070                                      based on weight (50-100 lbs)
11071                                                              <NA>
11085                                                              <NA>
11088                                                              <NA>
11091                                       based on weight (21-55 lbs)
11093                                                              <NA>
11112                                                              <NA>
11134                                                   based on weight
11142                                                              <NA>
11144                                                              <NA>
11145                                                              <NA>
11152                                                   based on weight
11153                                                   based on weight
11155                                                              <NA>
11156                                                              <NA>
11158                                                   based on weight
11159                                                              <NA>
11163                                                              <NA>
11165                                                   based on weight
11166                                                   based on weight
11182                                                              <NA>
11186                                               tablet/pill/capsule
11189                                                              <NA>
11208                                                              <NA>
11210                                                       unspecified
11211                                                       unspecified
11212                                                   based on weight
11213                                                              <NA>
11214                                                              <NA>
11224                                               tablet/pill/capsule
11227                                                       bottle/vial
11228                                               tablet/pill/capsule
11229                                                              <NA>
11230                                                              <NA>
11233                                               tablet/pill/capsule
11241                                                              <NA>
11242                          460 mg lufenuron, 23 mg milbemycin oxime
11276                                                              <NA>
11291                                                   based on weight
11292                                                   based on weight
11293                                             1 tablet/pill/capsule
11294                                             1 tablet/pill/capsule
11295                                             1 tablet/pill/capsule
11296                                             1 tablet/pill/capsule
11301                                                              <NA>
11305                                                              <NA>
11307                                               tablet/pill/capsule
11311                                                              <NA>
11312                                                              <NA>
11315                                                              <NA>
11316                                                              <NA>
11317                                                              <NA>
11318                                                              <NA>
11326                                               tablet/pill/capsule
11327                                               tablet/pill/capsule
11338                                                      small amount
11340                                                              <NA>
11341                                                   based on weight
11342                                                   based on weight
11346                                                            liquid
11349                                                            liquid
11350                                                              <NA>
11351                                                              <NA>
11352                                                              <NA>
11353                                                              <NA>
11354                                                              <NA>
11356                                                      small amount
11360                                                              <NA>
11363                                                              <NA>
11366                                                   based on weight
11368                                               tablet/pill/capsule
11377                                                   based on weight
11385                                               tablet/pill/capsule
11386                                               tablet/pill/capsule
11387                                                      pack/package
11388                                                      pack/package
11394                                                      small amount
11415                                                      small amount
11425                                                   based on weight
11436                                                   based on weight
11437                                                   based on weight
11441                                                              <NA>
11461                                                   based on weight
11464                                                      small amount
11470                                                              <NA>
11471                                                              <NA>
11473                                                   based on weight
11474                                                   based on weight
11477                                               tablet/pill/capsule
11482                                                              <NA>
11493                                                              <NA>
11509                                      based on weight (50-100 lbs)
11511                                                              <NA>
11536                                                              <NA>
11537                                                              <NA>
11538                                                              <NA>
11545                                                              <NA>
11546                                                   based on weight
11547                                                              <NA>
11551                                                              <NA>
11560                                             1 tablet/pill/capsule
11561                                                   based on weight
11562                                                   based on weight
11563                                                              <NA>
11564                                                              <NA>
11565                                                              <NA>
11566                                                              <NA>
11567                                               tablet/pill/capsule
11568                                               tablet/pill/capsule
11570                                               tablet/pill/capsule
11575                                                              <NA>
11576                                                              <NA>
11577                                                              <NA>
11578                                                              <NA>
11589                                                   based on weight
11590                                                   based on weight
11593                                               tablet/pill/capsule
11596                                                   based on weight
11599                                                              tube
11600                                               tablet/pill/capsule
11620                                                              <NA>
11621                                                              <NA>
11627                                                              <NA>
11628                                                              <NA>
11630                                                              <NA>
11633                                                              <NA>
11634                                                              <NA>
11635                                                              <NA>
11636                                                              <NA>
11637                                       based on weight (25-60 lbs)
11641                                                              <NA>
11651                                               tablet/pill/capsule
11652                                                              tube
11653                                      based on weight (60-120 lbs)
11654                                             1 tablet/pill/capsule
11655                                               tablet/pill/capsule
11656                                                   based on weight
11659                                                              <NA>
11660                                                   based on weight
11661                                             1 tablet/pill/capsule
11662                                             1 tablet/pill/capsule
11663                                                   based on weight
11664                                                   based on weight
11665                                                              <NA>
11666                                                              <NA>
11667                                                              <NA>
11669                                                              <NA>
11671                                                              <NA>
11673                                                              <NA>
11678                                                   based on weight
11680                                                   based on weight
11681                                                   based on weight
11683                                                   based on weight
11684                                                   based on weight
11691                                         based on weight (51+ lbs)
11692                                                              <NA>
11693                                                              <NA>
11695                                                      small amount
11698                                                   based on weight
11701                                               tablet/pill/capsule
11702                                                              <NA>
11709                                               tablet/pill/capsule
11710                                               tablet/pill/capsule
11719                                                              <NA>
11722                                                              <NA>
11723                                                              <NA>
11725                                                              <NA>
11735                                                   based on weight
11741                                               tablet/pill/capsule
11742                                                              <NA>
11790                                                              <NA>
11802                                                              <NA>
11806                                                       unspecified
11812                                               tablet/pill/capsule
11813                                                              <NA>
11814                                                   based on weight
11815                                                   based on weight
11816                                                   based on weight
11817                                                              <NA>
11822                                               tablet/pill/capsule
11823                                               tablet/pill/capsule
11824                                                       application
11825                                               tablet/pill/capsule
11826                                                              <NA>
11832                                                       combination
11833                                                       combination
11835                                               tablet/pill/capsule
11836                                               tablet/pill/capsule
11837                                               tablet/pill/capsule
11840                                                              <NA>
11844                                                              <NA>
11846                                                              <NA>
11847                                               tablet/pill/capsule
11848                                               tablet/pill/capsule
11850                                                              <NA>
11856                                                              <NA>
11861                                                       combination
11862                                                       combination
11873                                               tablet/pill/capsule
11874                                               tablet/pill/capsule
11875                                               tablet/pill/capsule
11876                                                              <NA>
11877                                                              <NA>
11878                                                              <NA>
11879                                                              <NA>
11880                                                              <NA>
11881                                                   based on weight
11882                                                   based on weight
11883                                                              <NA>
11889                                                   based on weight
11898                                                              <NA>
11911                                                              <NA>
11919                                               tablet/pill/capsule
11926                                                              <NA>
11930                                                       billion cfu
11959                                                              <NA>
11960                                                       as directed
11962                                                              <NA>
11964                                                   based on weight
11978                                                             spray
11979                                                              <NA>
11980                                                            1 tube
11983                                                              <NA>
11993                                                              <NA>
12009                                                              <NA>
12010                                                              <NA>
12014                                                   based on weight
12018                                                              tube
12019                                               tablet/pill/capsule
12020                                      based on weight (50-100 lbs)
12023                                                              <NA>
12025                                                              <NA>
12043                                                              <NA>
12047                                                              <NA>
12048                                                              <NA>
12051                                                      pack/package
12054                                                       unspecified
12090                                                   based on weight
12108                                                              <NA>
12111                                                   moderate amount
12120                                                              <NA>
12128                                                   based on weight
12129                                                   based on weight
12130                                                              <NA>
12135                                               tablet/pill/capsule
12136                                               tablet/pill/capsule
12154                                             1 tablet/pill/capsule
12155                                             1 tablet/pill/capsule
12159                                                       unspecified
12160                                                       unspecified
12164                                                       unspecified
12173                                             1 tablet/pill/capsule
12190                                                             spray
12194                                                              <NA>
12213                                                              <NA>
12215                                                              <NA>
12221                                                              <NA>
12222                                                              <NA>
12223                                                         0.5 drops
12261                                               tablet/pill/capsule
12265                                                   based on weight
12266                                                   based on weight
12267                                                   based on weight
12268                                                   based on weight
12271                                                   based on weight
12272                                                   based on weight
12273                                                          ointment
12275                                                   based on weight
12276                                                   based on weight
12279                                                              <NA>
12283                                                              <NA>
12299                                                              <NA>
12306                                                      small amount
12309                                                              pump
12313                                                              <NA>
12314                                                              <NA>
12322                                                              <NA>
12324                                               tablet/pill/capsule
12334                                                              <NA>
12336                                                              <NA>
12337                                                       unspecified
12342                                               tablet/pill/capsule
12343                                                       unspecified
12345                                                              <NA>
12346                                                              <NA>
12349                                                       bottle/vial
12351                                                              <NA>
12353                                                              <NA>
12364                                                              <NA>
12366                                               tablet/pill/capsule
12373                                               tablet/pill/capsule
12375                                                              <NA>
12376                                                              <NA>
12379                                                              <NA>
12386                                                              <NA>
12394                                                              <NA>
12397                                                              <NA>
12398                                                              <NA>
12401                                                   based on weight
12402                                                   based on weight
12405                                                              <NA>
12406                                               tablet/pill/capsule
12409                                                    1 pack/package
12410                                             1 tablet/pill/capsule
12411                                                             drops
12412                                                              <NA>
12414                                                   based on weight
12415                                                   based on weight
12417                                               tablet/pill/capsule
12418                                               tablet/pill/capsule
12420                                                          ointment
12421                                                              <NA>
12422                                                              <NA>
12423                                                      small amount
12427                                                              <NA>
12429                                                              <NA>
12430                                               tablet/pill/capsule
12431                                               tablet/pill/capsule
12432                                               tablet/pill/capsule
12433                                                              <NA>
12434                                                              <NA>
12438                                                              <NA>
12439                                                              <NA>
12453                                                       combination
12454                                      based on weight (50-100 lbs)
12455                                                              <NA>
12456                                                   based on weight
12457                                                   based on weight
12461                                                          wipe/pad
12462                                               tablet/pill/capsule
12463                                                              <NA>
12466                                                              <NA>
12469                                                              <NA>
12470                                                              <NA>
12471                                                              <NA>
12472                                                              <NA>
12473                                                   based on weight
12474                                                   based on weight
12475                                                              <NA>
12476                                                              <NA>
12477                                                              <NA>
12481                                                   based on weight
12485                                                              <NA>
12487                                                              <NA>
12495                                                   based on weight
12496                                                   based on weight
12497                                                       billion cfu
12498                                                   based on weight
12500                                               tablet/pill/capsule
12506                                                              <NA>
12511                                               tablet/pill/capsule
12512                                               tablet/pill/capsule
12513                                               tablet/pill/capsule
12514                                                              <NA>
12515                                                              <NA>
12516                                                              <NA>
12517                                                              <NA>
12520                                                   based on weight
12521                                             1 tablet/pill/capsule
12523                                                   based on weight
12528                                                      small amount
12529                                                      small amount
12530                                                   based on weight
12535                                                      small amount
12536                                                              <NA>
12540                                                              dose
12541                                                              dose
12542                                               tablet/pill/capsule
12543                                                       bottle/vial
12546                                                             scoop
12547                                                              <NA>
12548                                                              <NA>
12549                                                              <NA>
12550                                               tablet/pill/capsule
12551                                                              tube
12552                                               tablet/pill/capsule
12553                                                      small amount
12554                                                      small amount
12567                                                              <NA>
12569                                                              <NA>
12571                                                                1%
12578                                                              <NA>
12580                                                              <NA>
12585                                                              <NA>
12588                                                              <NA>
12589                                                              <NA>
12595                                                              <NA>
12596                                                              <NA>
12605                                                              <NA>
12607                                                              <NA>
12608                                                              <NA>
12609                                                              <NA>
12612                                                              <NA>
12613                                                              <NA>
12615                                                              <NA>
12616                                      based on weight (50-100 lbs)
12620                                             1 tablet/pill/capsule
12623                                             1 tablet/pill/capsule
12630                                                              <NA>
12632                                                              <NA>
12636                                                              <NA>
12638                                                   based on weight
12639                                             1 tablet/pill/capsule
12642                                                              <NA>
12645                                                              <NA>
12686                                             1 tablet/pill/capsule
12692                                                              <NA>
12693                                               tablet/pill/capsule
12694                                               tablet/pill/capsule
12712                                                              <NA>
12713                                                              <NA>
12714                                                   based on weight
12730                                                              <NA>
12732                                                              <NA>
12735                                                      small amount
12738                                                              <NA>
12740                                                              <NA>
12744                                                              <NA>
12749                                                              <NA>
12754                                                              <NA>
12755                                                              <NA>
12756                                                              <NA>
12771                                                         injection
12774                                               tablet/pill/capsule
12780                                                      pack/package
12781                                                              <NA>
12784                                                      pack/package
12786                                                              tube
12787                                                            collar
12788                                                   0.25 inch strip
12795                                             1 tablet/pill/capsule
12796                                                            collar
12797                                                    1 pack/package
12801                                                            powder
12826                                                       application
12828                                                       application
12833                                                              <NA>
12836                                                              <NA>
12837                                                   based on weight
12841                                                   based on weight
12849                                                              <NA>
12850                                                              <NA>
12860                                                             mg/kg
12861                                                              <NA>
12865                                                              <NA>
12866                                                       unspecified
12870                                                            powder
12873                                                              <NA>
12874                                                              <NA>
12879                                      based on weight (50-100 lbs)
12880                                      based on weight (60-120 lbs)
12881                                                      small amount
12882                                                      small amount
12893                                                              <NA>
12894                                                              <NA>
12895                                                       unspecified
12901                                                              <NA>
12902                                                              <NA>
12903                                                              <NA>
12904                                                              <NA>
12905                                                              <NA>
12906                                                                ml
12907                                                       unspecified
12908                                                       unspecified
12909                                                              <NA>
12910                                                              <NA>
12911                                                              <NA>
12916                                                   based on weight
12920                                                   based on weight
12929                                                   based on weight
12942                                               tablet/pill/capsule
12943                                                   based on weight
12944                                                   based on weight
12945                                               tablet/pill/capsule
12947                                                              <NA>
12948                                               tablet/pill/capsule
12949                                                              <NA>
12950                                                              <NA>
12952                                               tablet/pill/capsule
12953                                                              <NA>
12955                                               tablet/pill/capsule
12956                                                       as directed
12957                                      based on weight (50-100 lbs)
12959                                                             drops
12962                                                              <NA>
12963                                          2 tablets/pills/capsules
12966                                                   based on weight
12979                                                              <NA>
12987                                                              <NA>
12988                                                              <NA>
12989                                                              <NA>
12990                                                              <NA>
12992                                                   based on weight
12993                                                              <NA>
12994                                                              tube
12995                                               tablet/pill/capsule
12996                                                              <NA>
13005                                      based on weight (50-100 lbs)
13006                                      based on weight (60-120 lbs)
13008                                             1 tablet/pill/capsule
13010                                                              <NA>
13013                                                              <NA>
13020                                                              <NA>
13034                                       based on weight (20-40 lbs)
13041                                                              <NA>
13049                                                      small amount
13061                                               tablet/pill/capsule
13062                                                              <NA>
13063                                               tablet/pill/capsule
13074                                                              <NA>
13075                                                              <NA>
13076                                                              <NA>
13081                                                              <NA>
13084                                                              <NA>
13086                                                              <NA>
13096                                                      small amount
13098                                                              <NA>
13104                                                              <NA>
13108                                                              <NA>
13109                                                              <NA>
13110                                                       combination
13111                                                       combination
13112                                                       combination
13113                                                              <NA>
13114                                                              <NA>
13115                                                              <NA>
13116                                                              <NA>
13124                                                      small amount
13126                                                              <NA>
13127                                                              <NA>
13129                                                      small amount
13130                                                      small amount
13133                                                              <NA>
13136                                                   based on weight
13137                                       based on weight (44-88 lbs)
13138                                                              <NA>
13139                                                              <NA>
13140                                                              <NA>
13142                                                   based on weight
13143                                                   based on weight
13148                                                              <NA>
13149                                             1 tablet/pill/capsule
13150                                             1 tablet/pill/capsule
13151                                             1 tablet/pill/capsule
13152                                             1 tablet/pill/capsule
13154                                                              <NA>
13157                                             1 tablet/pill/capsule
13159                                                              <NA>
13160                                                              <NA>
13167                                               tablet/pill/capsule
13168                                               tablet/pill/capsule
13169                                               tablet/pill/capsule
13170                                               tablet/pill/capsule
13171                                                              <NA>
13173                                                              <NA>
13183                                                              <NA>
13184                                                              <NA>
13187                                                             spray
13188                                                              <NA>
13189                                                              <NA>
13190                                                              <NA>
13195                                                             spray
13196                                                    shampoo/mousse
13198                                                      small amount
13199                                               tablet/pill/capsule
13208                                               tablet/pill/capsule
13209                                               tablet/pill/capsule
13233                                                       application
13238                                                              <NA>
13246                                                        inch strip
13248                                                              <NA>
13249                                                              <NA>
13262                                                              <NA>
13264                                                              <NA>
13270                                                              <NA>
13271                                               tablet/pill/capsule
13277                                                              <NA>
13278                                                          ointment
13279                                                          ointment
13286                                                              <NA>
13287                                                              <NA>
13288                                                              <NA>
13297                                               tablet/pill/capsule
13298                                               tablet/pill/capsule
13299                                                              <NA>
13307                                               tablet/pill/capsule
13308                                                   based on weight
13309                                                   based on weight
13313                                                   based on weight
13314                                                   based on weight
13315                                                              <NA>
13318                                                              <NA>
13321                                                   moderate amount
13331                                                   based on weight
13332                                                         2-3 drops
13333                                                              <NA>
13334                                                              <NA>
13336                                                   based on weight
13340                                                              <NA>
13341                                               tablet/pill/capsule
13343                                               tablet/pill/capsule
13344                                               tablet/pill/capsule
13345                                                              <NA>
13348                                                              <NA>
13349                                                              <NA>
13353                                                              <NA>
13354                                               tablet/pill/capsule
13355                                               tablet/pill/capsule
13356                                                              <NA>
13357                                                       unspecified
13376                                                              <NA>
13405                                                              <NA>
13411                                                              <NA>
13454                                                   based on weight
13455                                                   based on weight
13456                                                              <NA>
13459                                                   based on weight
13460                                                      small amount
13461                                               tablet/pill/capsule
13462                                               tablet/pill/capsule
13464                                                              <NA>
13468                                                       unspecified
13470                                               tablet/pill/capsule
13471                                                   based on weight
13475                                                   based on weight
13476                                               tablet/pill/capsule
13479                                                   based on weight
13483                                                   based on weight
13484                                                   based on weight
13485                                                              <NA>
13487                                                              <NA>
13496                                                              <NA>
13502                                                              <NA>
13503                                                              <NA>
13506                                               tablet/pill/capsule
13532                                                      pack/package
13537                                                              <NA>
13538                                               tablet/pill/capsule
13562                                                              <NA>
13563                                                    shampoo/mousse
13564                                                              <NA>
13575                                                          titrated
13576                                             1 tablet/pill/capsule
13579                                                              <NA>
13581                                                              <NA>
13585                                                              <NA>
13590                                                         as needed
13594                                                              <NA>
13595                                                              <NA>
13601                                                        inch strip
13603                                                              <NA>
13605                                                              <NA>
13609                                                   0.25 inch strip
13615                                                              <NA>
13619                                                              <NA>
13623                                                       bottle/vial
13624                                                   based on weight
13625                                                              tube
13628                                                   based on weight
13631                                                      small amount
13654                                                      small amount
13657                                                      small amount
13659                                                              <NA>
13660                                                            powder
13666                                                     1 bottle/vial
13687                                                              <NA>
13688                                                              <NA>
13693                                               tablet/pill/capsule
13715                                                              <NA>
13723                                       based on weight (44-88 lbs)
13724                                                   based on weight
13730                                               tablet/pill/capsule
13737                                               tablet/pill/capsule
13740                                                              <NA>
13741                                                              <NA>
13747                                                              <NA>
13756                                                              <NA>
13766                                               tablet/pill/capsule
13768                                                              <NA>
13769                                                             spray
13774                                                              <NA>
13775                                                              <NA>
13776                                                   based on weight
13781                                             1 tablet/pill/capsule
13782                                                   syringe/pipette
13783                                                   based on weight
13786                                                              tube
13796                                                          wipe/pad
13801                                               tablet/pill/capsule
13803                                                              <NA>
13841                                                              dose
13881                                                              <NA>
13884                                                              <NA>
13893                                                              <NA>
13894                                                              <NA>
13896                                                   based on weight
13897                                                   based on weight
13902                                                              <NA>
13903                                                              <NA>
13904                                                              <NA>
13905                                                              <NA>
13906                                                              <NA>
13908                                                              <NA>
13910                                                   based on weight
13911                                                   based on weight
13912                                                              <NA>
13913                                                              <NA>
13925                                                              <NA>
13943                                                              <NA>
13946                                                             spray
13994                                                              <NA>
13995                                                              <NA>
13996                                                              <NA>
13998                                             1 tablet/pill/capsule
14006                                                             spray
14007                                               tablet/pill/capsule
14008                                                              <NA>
14050                                                   0.25 inch strip
14051                                               tablet/pill/capsule
14055                                                              <NA>
14059                                                              <NA>
14060                                               tablet/pill/capsule
14061                                                              <NA>
14062                                                              <NA>
14063                                                              <NA>
14064                                                   based on weight
14071                                                   based on weight
14072                                                              <NA>
14080                                                              <NA>
14081                                                            liquid
14106                                                   based on weight
14114                                               tablet/pill/capsule
14118                                                              <NA>
14120                                                              <NA>
14121                                                              <NA>
14122                                                              <NA>
14123                                                              <NA>
14124                                                              <NA>
14128                                                              <NA>
14129                                                   based on weight
14131                                                      small amount
14147                                               tablet/pill/capsule
14148                                                       bottle/vial
14151                                               tablet/pill/capsule
14153                                                   based on weight
14154                                               tablet/pill/capsule
14162                                               tablet/pill/capsule
14163                                               tablet/pill/capsule
14164                                               tablet/pill/capsule
14165                                                              <NA>
14166                                                              <NA>
14169                                                              <NA>
14170                                                      small amount
14171                                                              tube
14172                                                   based on weight
14173                                                   based on weight
14174                                                              tube
14175                                                              <NA>
14177                                             1 tablet/pill/capsule
14178                                                              tube
14179                                                              tube
14180                                                              <NA>
14181                                               tablet/pill/capsule
14190                                                              <NA>
14219                                                   based on weight
14221                                                              <NA>
14228                                                              <NA>
14238                                                      small amount
14241                                                              <NA>
14242                                                              <NA>
14243                                                              <NA>
14245                                                              <NA>
14249                                                   based on weight
14251                                                              <NA>
14282                                                              <NA>
14284                                                              <NA>
14286                                                   based on weight
14291                                                              pump
14296                                                              <NA>
14297                                                              <NA>
14298                                                   based on weight
14301                                      based on weight (50-100 lbs)
14302                                         based on weight (25+ lbs)
14319                                                              <NA>
14323                                                        inch strip
14324                                                              <NA>
14330                                                              <NA>
14334                                                              tube
14336                                                              <NA>
14342                                                              <NA>
14365                                                       combination
14366                       272 mcg ivermectin, 227 mg pyrantel pamoate
14367   680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14372                                                   based on weight
14373                                         based on weight (18+ lbs)
14375                                                   based on weight
14376                                                            collar
14378                                               tablet/pill/capsule
14379                                                   based on weight
14380                                                            collar
14385                                                              <NA>
14386                                                              <NA>
14387                                                              <NA>
14388                                                              <NA>
14404                                                              <NA>
14405                                                              <NA>
14406                                      based on weight (50-100 lbs)
14407                                                              <NA>
14408                                               tablet/pill/capsule
14409                                                              <NA>
14412                                                              <NA>
14413                                                              <NA>
14414                                                       unspecified
14415                                                              <NA>
14419                                                              <NA>
14420                                                              <NA>
14421                                                              <NA>
14426                                                              <NA>
14428                                                              <NA>
14429                                      based on weight (50-100 lbs)
14431                                      based on weight (50-100 lbs)
14432                                                   based on weight
14433                                                       unspecified
14434                                                             scoop
14443                                      based on weight (50-100 lbs)
14444                                                       unspecified
14445                                                       unspecified
14446                                                       unspecified
14447                                                       unspecified
14448                                      based on weight (50-100 lbs)
14449                                      based on weight (50-100 lbs)
14451                                               tablet/pill/capsule
14455                                                   0.25 inch strip
14471                                                       unspecified
14473                                                       unspecified
14477                                                              <NA>
14479                                                   based on weight
14488                                             1 tablet/pill/capsule
14489                                               tablet/pill/capsule
14490                                      based on weight (50-100 lbs)
14492                                                              <NA>
14493                                                              <NA>
14495                                             1 tablet/pill/capsule
14498                                               tablet/pill/capsule
14499                                      based on weight (50-100 lbs)
14512                                                              <NA>
14513                                                              <NA>
14527                                                   based on weight
14528                                       based on weight (44-88 lbs)
14529                                      based on weight (50-100 lbs)
14547                                      based on weight (50-100 lbs)
14562                                                   based on weight
14563                                                              <NA>
14576                                                   based on weight
14577                                                   based on weight
14578                                         based on weight (25+ lbs)
14582                                                   based on weight
14583                                                   based on weight
14584                                                   based on weight
14585                                                   based on weight
14586                                                   based on weight
14587                                                   based on weight
14588                                                   based on weight
14601                                                       unspecified
14605                                                              <NA>
14608                                                              <NA>
14623                                                   based on weight
14631                                                   based on weight
14637                                                              <NA>
14645                                                              <NA>
14649                                                              <NA>
14650                                                      small amount
14654                                                                 %
14656                                                              <NA>
14657                                                              <NA>
14658                       272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                              <NA>
14660                                                              <NA>
14664                                      based on weight (50-100 lbs)
14665                                      based on weight (60-120 lbs)
14697                                                          ointment
14699                                                       application
14700                                                   based on weight
14701                                                   based on weight
14702                                                              <NA>
14711                                      based on weight (50-100 lbs)
14712                                       based on weight (56-95 lbs)
14713                                          based on weight (85 lbs)
14720                                      based on weight (50-100 lbs)
14721                                       based on weight (56-95 lbs)
14722                                      based on weight (50-100 lbs)
14723                                      based on weight (50-100 lbs)
14726                                       based on weight (44-88 lbs)
14727                                                              <NA>
14728                                                              <NA>
14730                                                              <NA>
14731                                                              <NA>
14733                                                              <NA>
14734                                                              <NA>
14737                                      based on weight (50-100 lbs)
14738                                       based on weight (44-88 lbs)
14744                                                   based on weight
14746                                       based on weight (44-88 lbs)
14748                                                             drops
14754                                         based on weight (22+ lbs)
14755                                      based on weight (50-100 lbs)
14756                                                              <NA>
14757                                                              <NA>
14758                                                              <NA>
14759                                                              <NA>
14760                                                   based on weight
14763                                      based on weight (50-100 lbs)
14764                                                              <NA>
14775                                                              <NA>
14777                                                              <NA>
14778                                                              <NA>
14833                                                              <NA>
14834                                                              <NA>
14838                                                              <NA>
14839                                                              <NA>
14857                                                              <NA>
14858                                                              <NA>
14861                                                   based on weight
14862                                                              <NA>
14863                                                              <NA>
14864                                                              <NA>
14867                                                              <NA>
14870                                                              <NA>
14871                                                              <NA>
14874                                                   based on weight
14875                                                   based on weight
14878                                                              <NA>
14883                                                              <NA>
14884                                                              <NA>
14899                                                              <NA>
14907                                                              <NA>
14911                                                              <NA>
14913                                                              <NA>
14914                                                              <NA>
14928                                                              <NA>
14934                                                              <NA>
14943                                                              <NA>
14944                                                              <NA>
14949                                                              <NA>
14969                                                              <NA>
14972                                               tablet/pill/capsule
14973                                                       unspecified
14974                                               tablet/pill/capsule
14975                                               tablet/pill/capsule
14976                                                              <NA>
14977                                                              <NA>
14978                                               tablet/pill/capsule
14979                                           0.5 tablet/pill/capsule
14981                                                   based on weight
14982                                               tablet/pill/capsule
14983                                                       as directed
14999                                                              <NA>
15001                                                              <NA>
15002                                                              <NA>
15004                                                              <NA>
15005                                                              <NA>
15006                                                              <NA>
15007                                                              <NA>
15008                                                              <NA>
15009                                                              <NA>
15010                                                              <NA>
15011                                                              <NA>
15017                                      based on weight (50-100 lbs)
15021                                                              <NA>
15022                                                              <NA>
15023                                                     1 bottle/vial
15025                                                              <NA>
15026                                                              <NA>
15027                                                              <NA>
15028                                                              <NA>
15029                                                              <NA>
15030                                                              <NA>
15035                                                              <NA>
15036                                                              <NA>
15045                                                              <NA>
15048                                                   based on weight
15055                                                              <NA>
15059                                             1 tablet/pill/capsule
15061                                               tablet/pill/capsule
15077                                                            collar
15092                                                              <NA>
15102                                                              <NA>
15129                                                             drops
15130                                                              <NA>
15131                                                              <NA>
15132                                                              <NA>
15137                                                             spray
15139                                                       combination
15140                                                       combination
15144                                                              <NA>
15145                                                              <NA>
15150                                                   based on weight
15151                                                              <NA>
15155                                                              <NA>
15170                                                              <NA>
15172                                                              <NA>
15173                                                              <NA>
15174                                                              <NA>
15179                                                              <NA>
15184                                                              <NA>
15196                                                       unspecified
15197                                                      small amount
15202                                                              <NA>
15203                                                              <NA>
15209                                                       bottle/vial
15213                                                              pump
15244                                                              <NA>
15250                                                              tube
15252                                                              <NA>
15253                                                              <NA>
15256                                                              <NA>
15259                                                              <NA>
15268                                      based on weight (50-100 lbs)
15269                                       based on weight (24-60 lbs)
15274                                                              <NA>
15308                                               tablet/pill/capsule
15309                                               tablet/pill/capsule
15310                                             1 tablet/pill/capsule
15311                                                            collar
15314                                                              <NA>
15315                                                            collar
15317                                               tablet/pill/capsule
15319                                                              <NA>
15321                                             1 tablet/pill/capsule
15322                                                            collar
15323                                                              <NA>
15332                                                       as directed
15333                                                              <NA>
15334                                                             spray
15337                                                   based on weight
15339                                                              <NA>
15345                                                              <NA>
15348                                                              <NA>
15360                                                              <NA>
15361                                               tablet/pill/capsule
15362                                               tablet/pill/capsule
15363                                                              <NA>
15365                                               tablet/pill/capsule
15366                                               tablet/pill/capsule
15367                                             1 tablet/pill/capsule
15373                                                   based on weight
15374                                                   based on weight
15375                                             1 tablet/pill/capsule
15376                                                            1 tube
15377                                             1 tablet/pill/capsule
15378                                                       bottle/vial
15379                                                              <NA>
15383                                                              <NA>
15384                                                              <NA>
15402                                                              <NA>
15412                                                              <NA>
15441                                                              <NA>
15445                                                              <NA>
15448                                                              <NA>
15451                                               tablet/pill/capsule
15453                                                   moderate amount
15454                                                              <NA>
15455                                                              <NA>
15456                                                              <NA>
15512                                                              <NA>
15513                                                              <NA>
15515                                             1 tablet/pill/capsule
15524                                               tablet/pill/capsule
15527                                               tablet/pill/capsule
15528                                                              <NA>
15530                                                   based on weight
15531                                                              <NA>
15533                                               tablet/pill/capsule
15545                                                   based on weight
15551                                                   based on weight
15552                                               tablet/pill/capsule
15554                                                   based on weight
15555                                                   based on weight
15556                                                   based on weight
15558                                                              <NA>
15563                                                          ointment
15581                                                            liquid
15582                                                              <NA>
15583                                                              <NA>
15584                                                              <NA>
15585                                             1 tablet/pill/capsule
15586                                                       application
15587                                                              <NA>
15588                                                   based on weight
15589                                                   based on weight
15590                                               tablet/pill/capsule
15591                                               tablet/pill/capsule
15592                                                              <NA>
15593                                               tablet/pill/capsule
15594                                               tablet/pill/capsule
15597                                               tablet/pill/capsule
15598                                               tablet/pill/capsule
15599                                                          ointment
15600                                             1 tablet/pill/capsule
15601                                             1 tablet/pill/capsule
15602                                                              <NA>
15603                                                              <NA>
15604                                                              <NA>
15613                                                              <NA>
15614                                                              <NA>
15616                                                              <NA>
15618                                                              <NA>
15633                                                              <NA>
15636                                                              <NA>
15649                                                   based on weight
15650                                                   based on weight
15661                                               tablet/pill/capsule
15662                                                              <NA>
15663                                                       bottle/vial
15667                                                              <NA>
15669                                                              <NA>
15670                                                              <NA>
15672                                                              <NA>
15673                                                              <NA>
15674                                                              <NA>
15675                                                            1 tube
15689                                               tablet/pill/capsule
15690                                                              <NA>
15691                                                              <NA>
15692                                                              <NA>
15693                                                              <NA>
15699                                                              <NA>
15701                                                   13.5 mg, 810 mg
15705                                                              <NA>
15706                                                      small amount
15707                                                              <NA>
15712                                               tablet/pill/capsule
15715                                                              <NA>
15733                                                              <NA>
15750                                                              <NA>
15757                                               tablet/pill/capsule
15758                                                       bottle/vial
15767                                                              <NA>
15768                                                              <NA>
15769                                                              <NA>
15770                                                              <NA>
15776                                                              <NA>
15778                                                             spray
15781                                                   0.25 inch strip
15782                                                             spray
15787                                                              <NA>
15788                                                         1.5 mg/ml
15790                                                       unspecified
15796                                                              <NA>
15799                                                              <NA>
15811                                                      pack/package
15815                                                   based on weight
15816                                                   based on weight
15818                                                              <NA>
15829                                                              <NA>
15839                                                       unspecified
15840                                                       unspecified
15841                                      based on weight (50-100 lbs)
15842                                      based on weight (50-100 lbs)
15844                                      based on weight (50-100 lbs)
15848                                                   based on weight
15849                                      based on weight (50-100 lbs)
15850                                      based on weight (50-100 lbs)
15856                                                            1 tube
15857                                               tablet/pill/capsule
15858                                                              <NA>
15859                                             1 tablet/pill/capsule
15860                                                              <NA>
15861                                                             spray
15862                                                        inch strip
15863                                                        inch strip
15864                                                             drops
15867                                               tablet/pill/capsule
15868                                             1 tablet/pill/capsule
15869                                                   based on weight
15870                                                   based on weight
15871                                                              <NA>
15886                                               tablet/pill/capsule
15888                                                              <NA>
15889                                                              <NA>
15890                                                              <NA>
15891                                                   based on weight
15892                                                              <NA>
15907                                                              <NA>
15911                                                              <NA>
15912                                                              <NA>
15917                                               tablet/pill/capsule
15918                                                              <NA>
15919                                                              <NA>
15920                                                              <NA>
15921                                               tablet/pill/capsule
15922                                                   based on weight
15923                                                              <NA>
15924                                                              <NA>
15925                                                              <NA>
15926                                                              <NA>
15927                                                              <NA>
15928                                                      pack/package
15929                                               tablet/pill/capsule
15930                                                              <NA>
15931                                                              <NA>
15932                                                              <NA>
15933                                                              <NA>
15934                                                              <NA>
15935                                                              <NA>
15936                                                              <NA>
15937                                                   based on weight
15944                                                              <NA>
15945                                                              <NA>
15981                                      based on weight (50-100 lbs)
15983                                                      small amount
15986                                       based on weight (56-95 lbs)
15992                                      based on weight (50-100 lbs)
15993                                       based on weight (56-95 lbs)
15995                                      based on weight (50-100 lbs)
15996                                       based on weight (56-95 lbs)
15997                                       based on weight (44-88 lbs)
15998                                                     1 bottle/vial
15999                                      based on weight (50-100 lbs)
16000                                       based on weight (44-88 lbs)
16005                                                              <NA>
16007                                                              <NA>
16008                                                              <NA>
16009                                                              <NA>
16016                                                          ointment
16026                                                      small amount
16033                                                              <NA>
16035                                                   based on weight
16036                                                   based on weight
16037                                                              <NA>
16038                                                   based on weight
16039                                                       application
16052                                               tablet/pill/capsule
16053                                                              tube
16094                       272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                               tablet/pill/capsule
16098                                               tablet/pill/capsule
16105                                                              <NA>
16106                                                              <NA>
16107                                                         6-8 drops
16108                                                              <NA>
16109                                                              <NA>
16110                                                              <NA>
16111                                                              <NA>
16112                                                              <NA>
16113                                                       unspecified
16114                                                              <NA>
16115                                                              <NA>
16116                                                              <NA>
16117                                                              <NA>
16118                                                              <NA>
16150                                                       bottle/vial
16152                                                              tube
16153                                               tablet/pill/capsule
16154                                                       bottle/vial
16155                                                       bottle/vial
16156                                                      pack/package
16157                                               tablet/pill/capsule
16158                                               tablet/pill/capsule
16159                                               tablet/pill/capsule
16160                                               tablet/pill/capsule
16161                                               tablet/pill/capsule
16162                                               tablet/pill/capsule
16163                                               tablet/pill/capsule
16164                                               tablet/pill/capsule
16165                                               tablet/pill/capsule
16177                                                      small amount
16179                                                          wipe/pad
16199                                                              <NA>
16229                                               tablet/pill/capsule
16230                                      based on weight (50-100 lbs)
16239                                                              <NA>
16240                                                              <NA>
16241                                                              <NA>
16242                                                              <NA>
16251                                                              <NA>
16253                                                              <NA>
16285                                                              <NA>
16286                                                              <NA>
16287                                       based on weight (26-50 lbs)
16288                                       based on weight (44-88 lbs)
16289                                               tablet/pill/capsule
16290                                                              <NA>
16291                                               tablet/pill/capsule
16292                                                              <NA>
16293                                                              <NA>
16294                                                              <NA>
16295                                                              <NA>
16296                                                              <NA>
16312                                               tablet/pill/capsule
16313                                               tablet/pill/capsule
16315                                               tablet/pill/capsule
16316                                               tablet/pill/capsule
16317                                                              <NA>
16318                                             1 tablet/pill/capsule
16319                                             1 tablet/pill/capsule
16321                                             1 tablet/pill/capsule
16322                                             1 tablet/pill/capsule
16324                                             1 tablet/pill/capsule
16325                                             1 tablet/pill/capsule
16326                                      based on weight (50-100 lbs)
16339                                                   based on weight
16340                                                   based on weight
16347                                                                 %
16352                                                              <NA>
16355                                                      small amount
16356                                                       as directed
16367                                                              <NA>
16371                                                              <NA>
16374                                                              <NA>
16376                                                              <NA>
16378                                                              <NA>
16382                                                              <NA>
16386                                                              <NA>
16387                                                    shampoo/mousse
16388                                                             spray
16389                                                              <NA>
16400                                               tablet/pill/capsule
16401                                               tablet/pill/capsule
16403                                                   based on weight
16404                                                   based on weight
16408                                                              <NA>
16413                                               tablet/pill/capsule
16414                                               tablet/pill/capsule
16415                                                              <NA>
16416                                                              <NA>
16418                                                       unspecified
16419                                                       unspecified
16420                                                       unspecified
16425                                       based on weight (44-88 lbs)
16426                                       based on weight (44-88 lbs)
16434                                                              <NA>
16435                                                              <NA>
16436                                                              <NA>
16437                                                              <NA>
16440                                      based on weight (50-100 lbs)
16441                                      based on weight (50-100 lbs)
16442                                                       unspecified
16443                                                       unspecified
16447                                      based on weight (50-100 lbs)
16448                                                       unspecified
16450                                      based on weight (50-100 lbs)
16452                                                              <NA>
16453                                                              <NA>
16454                                                              <NA>
16462                                                              <NA>
16472                                                              <NA>
16474                                                   syringe/pipette
16477                                                              <NA>
16478                                                              <NA>
16479                                                   syringe/pipette
16485                                                   based on weight
16497                                                              <NA>
16522                                               tablet/pill/capsule
16523                                               tablet/pill/capsule
16524                                                       bottle/vial
16525                                                              <NA>
16526                                                              <NA>
16538                                                   based on weight
16543                                                   based on weight
16544                                                       bottle/vial
16546                                                              <NA>
16551                                                   based on weight
16553                                                   based on weight
16554                                                   based on weight
16579                                                   based on weight
16580                                                      small amount
16590                                                              <NA>
16595                                      based on weight (50-100 lbs)
16596                                                   based on weight
16597                                                   based on weight
16598                                                   based on weight
16599                                                   based on weight
16601                                                   based on weight
16602                                                              <NA>
16605                                                              <NA>
16606                                                   based on weight
16608                                                   based on weight
16616                                                              <NA>
16617                                                              <NA>
16624                                                              <NA>
16630                                      based on weight (50-100 lbs)
16631                                      based on weight (50-100 lbs)
16635                                                          ointment
16636                                               tablet/pill/capsule
16637                                                   based on weight
16638                                                   based on weight
16639                                               tablet/pill/capsule
16640                                               tablet/pill/capsule
16646                                                              <NA>
16657                                                              <NA>
16667                                                              <NA>
16678                                                              <NA>
16684                                                            powder
16685                                                          wipe/pad
16687                                                              dose
16689                                                   based on weight
16690                                                              <NA>
16694                                               tablet/pill/capsule
16695                                               tablet/pill/capsule
16702                                                   0.25 inch strip
16703                                                            powder
16704                                               tablet/pill/capsule
16705                                               tablet/pill/capsule
16711                                                      small amount
16712                                                    shampoo/mousse
16714                                                      small amount
16717                                                      small amount
16718                                                      small amount
16721                                               tablet/pill/capsule
16722                                                   based on weight
16723                                                            powder
16724                                                              <NA>
16726                                                             spray
16745                                                              <NA>
16746                                                              <NA>
16749                                                              <NA>
16750                                                              <NA>
16751                                                              <NA>
16774                                               tablet/pill/capsule
16777                                               tablet/pill/capsule
16778                                                       bottle/vial
16779                                                             mg/kg
16783                                                              <NA>
16784                                                              <NA>
16785                                                              <NA>
16786                                                              <NA>
16787                                                              <NA>
16789                                                               10%
16791                                                              <NA>
16793                                                              <NA>
16798                                                              <NA>
16805                                                   based on weight
16807                                                       application
16809                                                              tube
16810                                                       combination
16811                                                   based on weight
16814                                                              <NA>
16815                                                       unspecified
16816                                                              <NA>
16821                                               tablet/pill/capsule
16823                                                              <NA>
16834                                                              <NA>
16838                                                              <NA>
16840                                                              <NA>
16841                                                              <NA>
16847                                                              <NA>
16849                                                              pump
16860                                                              <NA>
16864                                                   based on weight
16866                                                   based on weight
16869                                                   based on weight
16877                                                              <NA>
16882                                                            collar
16915                                                              <NA>
16916                                                              <NA>
16918                                                       unspecified
16920                                                   based on weight
16929                                                       as directed
16930                                                              dose
16931                                                              <NA>
16933                                                              <NA>
16935                                                              <NA>
16936                                       based on weight (26-50 lbs)
16937                                       based on weight (44-88 lbs)
16939                                                              <NA>
16970                                                              <NA>
16983                                               tablet/pill/capsule
16993                                                      small amount
16994                                                      small amount
16998                                                             tubes
16999                                                              <NA>
17000                                                              <NA>
17010                                                       combination
17012                                                       bottle/vial
17013                                               tablet/pill/capsule
17014                                                   based on weight
17018                                                       unspecified
17019                                               tablet/pill/capsule
17020                                                              <NA>
17022                                                              <NA>
17033                                                              <NA>
17035                                                              <NA>
17036                                                              <NA>
17041                                                   based on weight
17042                                                   based on weight
17049                                                              <NA>
17051                                                              <NA>
17053                                                              <NA>
17057                                                   based on weight
17062                                                              <NA>
17088                                                       combination
17089                                                              <NA>
17090                                             1 tablet/pill/capsule
17091                                             1 tablet/pill/capsule
17094                                      based on weight (50-100 lbs)
17095                                      based on weight (60-120 lbs)
17098                                                              <NA>
17099                                                              <NA>
17120                                                      small amount
17121                                                      small amount
17126                                                         as needed
17127                                                         as needed
17131                                                              <NA>
17138                                               tablet/pill/capsule
17143                                                   based on weight
17151                                                   based on weight
17153                                                              <NA>
17156                                               tablet/pill/capsule
17157                                               tablet/pill/capsule
17173                                                              <NA>
17177                                               tablet/pill/capsule
17180                                               tablet/pill/capsule
17196                                                   based on weight
17197                                                   based on weight
17202                                                   based on weight
17209                                               tablet/pill/capsule
17210                                                              <NA>
17211                                                              <NA>
17218                                                              <NA>
17220                                                              <NA>
17221                                                              <NA>
17225                                                              <NA>
17226                                                              <NA>
17227                                                              <NA>
17228                                                              <NA>
17229                                                              <NA>
17232                                               tablet/pill/capsule
17233                                                              tube
17234                                               tablet/pill/capsule
17236                                                            1 tube
17237                                               tablet/pill/capsule
17238                                                              tube
17239                                               tablet/pill/capsule
17240                                                              <NA>
17241                                                              <NA>
17248                                      based on weight (50-100 lbs)
17251                                      based on weight (50-100 lbs)
17252                                                   syringe/pipette
17253                                                              <NA>
17254                                                      small amount
17255                                             1 tablet/pill/capsule
17263                                                              <NA>
17264                                                              <NA>
17266                                                              <NA>
17268                                                   based on weight
17283                                                              <NA>
17285                                                              <NA>
17294                                                   based on weight
17295                                                   based on weight
17297                                                              <NA>
17298                                                   based on weight
17307                                                              <NA>
17308                                                              <NA>
17309                                                              <NA>
17310                                                              <NA>
17313                                                              <NA>
17314                                                              <NA>
17315                                                              <NA>
17327                                                       application
17329                                                       application
17330                                                       application
17335                                                       application
17352                                                             spray
17355                                                      small amount
17381                                                         2-3 drops
17386                                                              <NA>
17387                                                              <NA>
17389                                                              <NA>
17390                                               tablet/pill/capsule
17391                                                              <NA>
17393                                                          ointment
17399                                               tablet/pill/capsule
17406                                                   based on weight
17407                                                             spray
17412                                                              <NA>
17417                                                            collar
17418                                               tablet/pill/capsule
17419                                               tablet/pill/capsule
17420                                               tablet/pill/capsule
17426                                                              <NA>
17427                                                              <NA>
17440                                                              <NA>
17446                                                              <NA>
17461                                                              <NA>
17463                                                      pack/package
17468                                                              <NA>
17470                                                              <NA>
17482                                                              <NA>
17484                                                   based on weight
17486                                                   based on weight
17487                                                   based on weight
17488                                                   based on weight
17489                                                   based on weight
17490                                                   based on weight
17491                                                   based on weight
17492                                                   based on weight
17493                                                   based on weight
17494                                                   based on weight
17495                                                   based on weight
17496                                                   based on weight
17497                                                   based on weight
17498                                                   based on weight
17518                                                   based on weight
17519                                             1 tablet/pill/capsule
17576                                                   0.25 inch strip
17583                                                              <NA>
17585                                                              <NA>
17588                                                             spray
17602                                                      small amount
17603                                                             23 mg
17605                                                              <NA>
17611                                                   based on weight
17615                                                   based on weight
17627                                                   based on weight
17633                                                              <NA>
17659                                               tablet/pill/capsule
17670                                                   based on weight
17672                                                              <NA>
17673                                                              <NA>
17680                                                              <NA>
17697                                                              <NA>
17702                                                              <NA>
17703                                                              <NA>
17719                                                              <NA>
17720                                                      small amount
17722                                                   based on weight
17723                                                   based on weight
17742                                                              <NA>
17743                                                              <NA>
17755                                                   syringe/pipette
17779                                                       application
17780                                                              <NA>
17781                                                              <NA>
17782                                                       application
17798                                                              <NA>
17802                                                             paste
17803                                                              <NA>
17804                                                              <NA>
17818                                                   based on weight
17832                                          based on weight (80 lbs)
17845                                                   based on weight
17853                                                              <NA>
17855                                                              <NA>
17856                                                              <NA>
17860                                                              <NA>
17863                                               tablet/pill/capsule
17865                                                              <NA>
17882                                                              <NA>
17955                                                              <NA>
17957                                                              <NA>
18001                                                   based on weight
18003                                                   based on weight
18009                                                   based on weight
18010                                                   based on weight
18011                                                   based on weight
18014                                                   based on weight
18015                                                   based on weight
18021                                                   based on weight
18023                                                   based on weight
18024                                                   based on weight
18055                                                              <NA>
18056                                                              <NA>
18057                                                   based on weight
18058                                                   based on weight
18072                                               tablet/pill/capsule
18073                                               tablet/pill/capsule
18074                                                              <NA>
18075                                                              dose
18076                                                              dose
18094                                               tablet/pill/capsule
18095                                               tablet/pill/capsule
18096                                                              <NA>
18098                                                              <NA>
18114                                                              <NA>
18115                                                              <NA>
18116                                                              <NA>
18117                                                   based on weight
18118                                         based on weight (55+ lbs)
18119                                      based on weight (50-100 lbs)
18124                                                   based on weight
18125                                                   based on weight
18134                                                              <NA>
18141                                                              <NA>
18147                                                              hour
18159                                                              <NA>
18164                                                              <NA>
18165                                                      small amount
18188                                               tablet/pill/capsule
18192                                                              <NA>
18193                                                              <NA>
18195                                                              <NA>
18199                                                              <NA>
18202                                                   based on weight
18205                                                   based on weight
18213                                                              <NA>
18214                                                   based on weight
18215                                                              <NA>
18216                                                              <NA>
18217                                                              <NA>
18218                                                              <NA>
18220                                                              <NA>
18221                                                              <NA>
18222                                               tablet/pill/capsule
18238                                                       unspecified
18249                                                              <NA>
18251                                                            powder
18252                                                              <NA>
18258                                                                 %
18260                                                              <NA>
18262                                                                 %
18263                                                              <NA>
18264                                                              <NA>
18266                                                              <NA>
18271                                                              <NA>
18275                                                      small amount
18276                                                              <NA>
18277                                                              <NA>
18284                                                              <NA>
18323                                                              <NA>
18325                                                              <NA>
18326                                                              <NA>
18329                                                              <NA>
18330                                                              <NA>
18337                                               tablet/pill/capsule
18338                                                              <NA>
18339                                               tablet/pill/capsule
18340                                               tablet/pill/capsule
18341                                                       unspecified
18342                                                              <NA>
18343                                                              <NA>
18344                                             1 tablet/pill/capsule
18345                                                              <NA>
18365                                               tablet/pill/capsule
18366                                               tablet/pill/capsule
18370                                               tablet/pill/capsule
18371                                               tablet/pill/capsule
18373                                             1 tablet/pill/capsule
18374                                             1 tablet/pill/capsule
18375                                                   based on weight
18404                                                              <NA>
18415                                                   based on weight
18416                                                   based on weight
18427                                                        inch strip
18441                                                              <NA>
18459                                                   based on weight
18460                                                              dose
18461                                                              dose
18464                                                              <NA>
18466                                                              <NA>
18467                                                              <NA>
18469                                                   0.25 inch strip
18470                                                              <NA>
18471                                                   0.25 inch strip
18472                                                              <NA>
18473                                                   based on weight
18479                                                              <NA>
18480                                                              <NA>
18483                                                              <NA>
18489                                               tablet/pill/capsule
18490                                               tablet/pill/capsule
18494                                               tablet/pill/capsule
18495                                               tablet/pill/capsule
18500                                               tablet/pill/capsule
18502                                               tablet/pill/capsule
18512                                                              <NA>
18514                                       based on weight (21-55 lbs)
18519                                                   based on weight
18520                                          based on weight (60 lbs)
18525                                                              <NA>
18534                                                             daily
18539                                                   based on weight
18542                                                   based on weight
18543                                                             drops
18562                                                            powder
18565                                                            1 tube
18571                                               tablet/pill/capsule
18572                                               tablet/pill/capsule
18576                                               tablet/pill/capsule
18577                                               tablet/pill/capsule
18580                                               tablet/pill/capsule
18588                                                              <NA>
18591                                                             spray
18595                                                   based on weight
18609                                                              <NA>
18612                                                       unspecified
18614                                                   based on weight
18621                                                              <NA>
18649                                                   based on weight
18685                                                              <NA>
18686                                                              <NA>
18687                                                              <NA>
18688                                                              <NA>
18689                                                              <NA>
18690                                                              <NA>
18694                                                              <NA>
18696                                                       combination
18697                                                       combination
18703                       272 mcg ivermectin, 227 mg pyrantel pamoate
18704                                                  68 mg afoxolaner
18705                                                              <NA>
18707                                                              <NA>
18716                                                          ointment
18718                                                             spray
18729                                                          ointment
18734                                               tablet/pill/capsule
18735                                               tablet/pill/capsule
18736                                               tablet/pill/capsule
18743                                               tablet/pill/capsule
18750                                                              <NA>
18753                                                              <NA>
18774                                                              <NA>
18775                                                              <NA>
18795                                               tablet/pill/capsule
18796                                                       bottle/vial
18797                                               tablet/pill/capsule
18798                                                       bottle/vial
18799                                                              <NA>
18800                                                              <NA>
18820                                                              <NA>
18821                                                              <NA>
18829                                                              <NA>
18837                                               tablet/pill/capsule
18838                                          2 tablets/pills/capsules
18839                                             1 tablet/pill/capsule
18844                                                   syringe/pipette
18845                                               tablet/pill/capsule
18846                                               tablet/pill/capsule
18847                                          2 tablets/pills/capsules
18850                                             1 tablet/pill/capsule
18851                                                              <NA>
18852                                               tablet/pill/capsule
18853                                             1 tablet/pill/capsule
18854                                             1 tablet/pill/capsule
18855                                                   based on weight
18856                                                   based on weight
18882                                                              dose
18904                                                              <NA>
18905                                                              <NA>
18908                                                   based on weight
18909                                                   based on weight
18919                                                            collar
18921                                                            collar
18924                                                   based on weight
18931                                                              <NA>
18932                                                              <NA>
18933                                                              <NA>
18934                                                              <NA>
18935                                      based on weight (50-100 lbs)
18936                                                            collar
18937                                               tablet/pill/capsule
18961                                          2 tablets/pills/capsules
18964                                               tablet/pill/capsule
18970                                               tablet/pill/capsule
18987                                                              <NA>
18988                                                       unspecified
18989                                                       unspecified
18991                                                      small amount
18993                                                              <NA>
18997                                                              <NA>
18998                                                              <NA>
19003                                                              <NA>
19004                                                              <NA>
19005                                                             spray
19006                                                             spray
19008                                        1-2 tablets/pills/capsules
19009                                        1-2 tablets/pills/capsules
19015                                                              <NA>
19019                                                              <NA>
19021                                                              <NA>
19022                                               tablet/pill/capsule
19023                                                      small amount
19025                                      based on weight (50-100 lbs)
19040                                                              <NA>
19041                                                              <NA>
19043                                                   based on weight
19051                                                              <NA>
19055                                                   based on weight
19056                                                       unspecified
19057                                                              <NA>
19061                                                   based on weight
19062                                                              <NA>
19068                                                              <NA>
19070                                               tablet/pill/capsule
19072                                                              tube
19073                                               tablet/pill/capsule
19077                                                   based on weight
19078                                                   based on weight
19082                                                            1 tube
19102                                                   based on weight
19122                                                   based on weight
19130                                               tablet/pill/capsule
19152                                                              <NA>
19153                                               tablet/pill/capsule
19154                                               tablet/pill/capsule
19159                                                              <NA>
19165                                               tablet/pill/capsule
19169                                             1 tablet/pill/capsule
19170                                                            1 tube
19183                                                                 1
19184                                                       unspecified
19213                                                       unspecified
19214                                                       unspecified
19215                                                       as directed
19216                                                       as directed
19217                                                              tube
19220                                                              <NA>
19221                                             1 tablet/pill/capsule
19222                                             1 tablet/pill/capsule
19223                                             1 tablet/pill/capsule
19224                                                            collar
19241                                                              <NA>
19242                                                              <NA>
19246                                                       as directed
19252                                                              <NA>
19253                                                              <NA>
19254                                                              <NA>
19255                                                              <NA>
19256                                                              <NA>
19257                                                              <NA>
19258                                                              <NA>
19259                                                              <NA>
19271                                                   based on weight
19272                                                   based on weight
19273                                                   based on weight
19276                                                              <NA>
19278                                                       combination
19281                                                   based on weight
19282                                                   based on weight
19288                                                              <NA>
19298                                                              <NA>
19299                                                              dose
19315                                                   based on weight
19318                                                   based on weight
19325                                                              <NA>
19326                                                   based on weight
19327                                                   based on weight
19331                                                              <NA>
19335                                                              <NA>
19336                                                              <NA>
19338                                                   based on weight
19350                                                        inch strip
19353                                                              <NA>
19354                                                              <NA>
19356                                                              <NA>
19357                                         based on weight (55+ lbs)
19373                                               tablet/pill/capsule
19374                                               tablet/pill/capsule
19386                                                   based on weight
19387                                                   based on weight
19390                                                      small amount
19391                                                   based on weight
19423                                                   based on weight
19424                                                   based on weight
19427                                               tablet/pill/capsule
19445                                               tablet/pill/capsule
19446                                                       application
19447                                                   based on weight
19448                                                   based on weight
19449                                                   based on weight
19450                                                   based on weight
19451                                                              <NA>
19452                                                              <NA>
19453                                                              <NA>
19454                                                              <NA>
19457                                                   based on weight
19461                                                   based on weight
19462                                             1 tablet/pill/capsule
19463                                             1 tablet/pill/capsule
19464                                                              <NA>
19465                                                              <NA>
19476                                                   syringe/pipette
19482                       272 mcg ivermectin, 227 mg pyrantel pamoate
19486                                                              <NA>
19487                                               tablet/pill/capsule
19491                                                              <NA>
19492                                               tablet/pill/capsule
19493                                               tablet/pill/capsule
19495                                               tablet/pill/capsule
19500                                                              <NA>
19537                                               tablet/pill/capsule
19567                                                              <NA>
19568                                                            1 pump
19596                                                              <NA>
19597                                                   based on weight
19603                                               tablet/pill/capsule
19604                                                              tube
19617                                                              <NA>
19618                                                              <NA>
19641                                                              <NA>
19651                                                              <NA>
19662                                                      pack/package
19663                                                              <NA>
19669                                                              <NA>
19673                                                   based on weight
19674                                                   based on weight
19684                                                              <NA>
19685                                                   based on weight
19686                                                              <NA>
19688                                               tablet/pill/capsule
19689                                                              <NA>
19690                                                              <NA>
19708                                                              <NA>
19710                                                   based on weight
19711                                                   based on weight
19712                                                   based on weight
19713                                             1 tablet/pill/capsule
19714                                                            collar
19715                                               tablet/pill/capsule
19716                                                            collar
19717                                                   based on weight
19718                                                   based on weight
19722                                               tablet/pill/capsule
19735                                                      small amount
19737                                                              <NA>
19741                                                              <NA>
19754                                                              <NA>
19767                                                              <NA>
19768                                                              dose
19771                                                              <NA>
19776                                       based on weight (40-60 lbs)
19777                                             1 tablet/pill/capsule
19778                                                   based on weight
19788                                                          wipe/pad
19790                                                              <NA>
19792                                                              <NA>
19800                                                   based on weight
19801                                                   based on weight
19803                                               tablet/pill/capsule
19823                                                          ointment
19828                                                   based on weight
19829                                                   based on weight
19838                                                              <NA>
19843                                                              <NA>
19844                                                              <NA>
19845                                                              <NA>
19851                                                              <NA>
19853                                                   based on weight
19854                                                   based on weight
19856                                                   based on weight
19857                                                   based on weight
19860                                                              <NA>
19866                                                             spray
19876                                                              <NA>
19881                                                              <NA>
19888                                               tablet/pill/capsule
19907                                                              <NA>
19909                                                              <NA>
19911                                                   based on weight
19912                                                              <NA>
19914                                                       unspecified
19917                                                      small amount
19925                                                              <NA>
19926                                                              <NA>
19927                                                              <NA>
19928                                                              <NA>
19930                                                              <NA>
19932                                                              <NA>
19933                                                   based on weight
19936                                                   based on weight
19943                                                   based on weight
19944                                                              <NA>
19945                                                              <NA>
19946                                                   based on weight
19947                                                              <NA>
19948                                                              <NA>
19949                                                              <NA>
19950                                                              <NA>
19952                                                       unspecified
19958                                                            collar
19969                                                              <NA>
19975                                                       combination
19984                                                              <NA>
20001                                                              <NA>
20002                                                              <NA>
20003                                                              <NA>
20006                                                              <NA>
20007                                                             spray
20019                                             1 tablet/pill/capsule
20020                                             1 tablet/pill/capsule
20024                                               tablet/pill/capsule
20025                                               tablet/pill/capsule
20026                                               tablet/pill/capsule
20027                                               tablet/pill/capsule
20028                                               tablet/pill/capsule
20038                                               tablet/pill/capsule
20039                                               tablet/pill/capsule
20065                                                              <NA>
20067                                                              <NA>
20068                                                              <NA>
20069                                                   moderate amount
20070                                                              <NA>
20072                                                              <NA>
20074                                                              <NA>
20096                                                            powder
20099                                                       combination
20105                                                              <NA>
20106                                                              <NA>
20125                                                              <NA>
20126                                             1 tablet/pill/capsule
20127                                             1 tablet/pill/capsule
20130                                                              <NA>
20131                                                              <NA>
20135                                                              <NA>
20144                                               tablet/pill/capsule
20145                                                         injection
20149                                                              <NA>
20150                                                      small amount
20164                                                              <NA>
20173                                                              tube
20174                                             1 tablet/pill/capsule
20175                                                              <NA>
20179                                                              <NA>
20182                                                   moderate amount
20193                                               tablet/pill/capsule
20195                                                   based on weight
20218                                                   based on weight
20219                                               tablet/pill/capsule
20220                                                              <NA>
20221                                               tablet/pill/capsule
20222                                                   based on weight
20224                                                       unspecified
20225                                                              <NA>
20226                                                       unspecified
20231                                                              <NA>
20232                                                              <NA>
20233                                               tablet/pill/capsule
20234                                                          ointment
20240                                                     1 bottle/vial
20241                                         based on weight (55+ lbs)
20243                                                              <NA>
20244                                                   based on weight
20245                                                   based on weight
20246                                                   based on weight
20247                                                   based on weight
20251                                                      pack/package
20272                                                               tbs
20275                                                              <NA>
20282                                                              <NA>
20292                                                              <NA>
20293                                                                 %
20295                                                              tube
20297                                                              <NA>
20298                                                              <NA>
20299                                                              <NA>
20300                                                      pack/package
20301                                                            collar
20302                                                              <NA>
20303                                                                 %
20306                                                              <NA>
20307                                                              <NA>
20312                                         based on weight (51+ lbs)
20315                                                              <NA>
20324                                                              <NA>
20337                                                         as needed
20339                                                          wipe/pad
20340                                                      small amount
20342                                                    shampoo/mousse
20343                                                     tapering dose
20344                                                              <NA>
20348                       272 mcg ivermectin, 227 mg pyrantel pamoate
20356                                                              <NA>
20374                                                   based on weight
20376                                                       as directed
20377                                                   based on weight
20378                                                   based on weight
20380                                                       as directed
20382                                                              <NA>
20387                                      based on weight (50-100 lbs)
20388                                      based on weight (50-100 lbs)
20390                                      based on weight (50-100 lbs)
20392                                                              <NA>
20393                                                              <NA>
20402                                      based on weight (50-100 lbs)
20405                                      based on weight (50-100 lbs)
20406                                                              <NA>
20409                                                              <NA>
20411                                                              <NA>
20413                                                              <NA>
20425                                                   based on weight
20426                                                   based on weight
20437                                                   based on weight
20438                                                   based on weight
20441                                                      small amount
20442                                                              <NA>
20444                                          based on weight (90 lbs)
20446                                                              <NA>
20453                                                              <NA>
20460                                                              <NA>
20485                                                       application
20490                                             1 tablet/pill/capsule
20491                                             1 tablet/pill/capsule
20510                                               tablet/pill/capsule
20511                                             1 tablet/pill/capsule
20512                                             1 tablet/pill/capsule
20516                                             1 tablet/pill/capsule
20517                                             1 tablet/pill/capsule
20518                                                              pump
20519                                                              <NA>
20554                                                   based on weight
20555                                                   based on weight
20557                                                   based on weight
20561                                                   based on weight
20565                                      based on weight (60-120 lbs)
20568                                      based on weight (60-120 lbs)
20574                                                              <NA>
20577                                                              <NA>
20579                                             1 tablet/pill/capsule
20582                                      based on weight (60-120 lbs)
20585                                                      small amount
20615                                                              <NA>
20623                                                      pack/package
20636                                                              <NA>
20637                                                              <NA>
20638                                                              <NA>
20640                                                              <NA>
20641                                                            collar
20642                                                              <NA>
20645                                                       unspecified
20648                                                              <NA>
20651                                                              <NA>
20659                                                              <NA>
20666                                                              <NA>
20667                                                              <NA>
20678                                                              <NA>
20698                                                        inch strip
20700                                                   based on weight
20701                                                   based on weight
20702                                      based on weight (50-100 lbs)
20704                                                      small amount
20705                                                       application
20707                                               tablet/pill/capsule
20708                                                          wipe/pad
20709                                                            powder
20712                                                          wipe/pad
20717                                                   based on weight
20718                                                              <NA>
20719                                                   based on weight
20728                                                              <NA>
20738                                                              <NA>
20745                                                             spray
20748                                                              <NA>
20750                                                              <NA>
20761                                                              <NA>
20762                                                              <NA>
20763                                                              <NA>
20766                                                              <NA>
20767                                                              <NA>
20771                                                              <NA>
20783                                                              <NA>
20791                                                              <NA>
20796                                                              <NA>
20799                                                              <NA>
20800                                               tablet/pill/capsule
20808                                               tablet/pill/capsule
20809                                               tablet/pill/capsule
20814                                                             spray
20817                                                              <NA>
20819                                                              <NA>
20820                                                              <NA>
20849                                                              <NA>
20852                                                              <NA>
20854                                                              <NA>
20855                                                              <NA>
20857                                                              <NA>
20858                                                              <NA>
20859                                                              <NA>
20860                                                              <NA>
20861                                                              <NA>
20862                                                                 l
20863                                                   based on weight
20872                                                   based on weight
20897                                                              <NA>
20918                                                              <NA>
20939                                                   based on weight
20940                                                   based on weight
20941                                               tablet/pill/capsule
20947                                                            collar
20949                                                   based on weight
20962                                                              <NA>
20963                                                              <NA>
20964                                               tablet/pill/capsule
20965                                                              <NA>
20966                                                              <NA>
20971                                                              dose
20972                                                              <NA>
21003                                                          ointment
21013                                                        inch strip
21017                                                           1 spray
21022                                                              <NA>
21025                                                              <NA>
21029                                                              <NA>
21069                                                              <NA>
21070                                                              <NA>
21071                                                              <NA>
21074                                                   based on weight
21078                                               tablet/pill/capsule
21080                                                              <NA>
21087                                       based on weight (44-88 lbs)
21088                                                       unspecified
21091                                                   based on weight
21098                                                   based on weight
21100                                                   based on weight
21102                                                              <NA>
21103                                                   based on weight
21108                                                              <NA>
21109                                                       as directed
21110                                                   based on weight
21111                                                              <NA>
21112                                                              <NA>
21114                                               tablet/pill/capsule
21115                                                       application
21116                                                              <NA>
21117                                                              <NA>
21118                                                              <NA>
21119                                                              <NA>
21122                                               tablet/pill/capsule
21123                                                              tube
21124                                                              <NA>
21125                                                              <NA>
21126                                                              <NA>
21127                                               tablet/pill/capsule
21128                                                              <NA>
21129                                                              <NA>
21130                                                              <NA>
21131                                                    shampoo/mousse
21132                                                              <NA>
21133                                                   based on weight
21168                                                              <NA>
21169                                                              <NA>
21170                                                              <NA>
21172                                                              <NA>
21178                                                   0.25 inch strip
21179                                                              <NA>
21180                                                              <NA>
21181                                               tablet/pill/capsule
21182                                                              <NA>
21183                                                              <NA>
21189                                      based on weight (60-120 lbs)
21190                                               tablet/pill/capsule
21192                                                            1 pump
21201                                                              <NA>
21224                                                          ointment
21253                                                              <NA>
21254                                               tablet/pill/capsule
21256                                                              <NA>
21267                                                              <NA>
21268                                                              <NA>
21269                                             1 tablet/pill/capsule
21273                                                              <NA>
21278                                                              <NA>
21282                                                              <NA>
21287                                                              <NA>
21309                                                              <NA>
21326                                                              <NA>
21328                                                              <NA>
21331                                                              <NA>
21336                                                              <NA>
21337                                                              <NA>
21338                                                   based on weight
21348                                                              <NA>
21359                                                              <NA>
21361                                                              <NA>
21364                                                              <NA>
21367                                                              <NA>
21369                                                   based on weight
21373                                                              <NA>
21374                                                              <NA>
21376                                                   based on weight
21384                                                              <NA>
21385                                                              <NA>
21386                                                              <NA>
21387                                                              <NA>
21388                                                              <NA>
21389                                                              <NA>
21394                                                              <NA>
21403                                                              <NA>
21413                                                              <NA>
21416                                                              tube
21437                                                   based on weight
21438                                                   based on weight
21442                                                              <NA>
21445                                                   based on weight
21447                                                   based on weight
21448                                                   based on weight
21449                                                   based on weight
21460                                                              <NA>
21465                                                              <NA>
21472                                                              <NA>
21481                                                              <NA>
21491                                                              <NA>
21492                                             1 tablet/pill/capsule
21493                                             1 tablet/pill/capsule
21495                                                              <NA>
21498                                                              <NA>
21504                                                      pack/package
21507                                                      pack/package
21508                                                              <NA>
21509                                                       unspecified
21522                                                              tube
21527                                                              <NA>
21528                                                   based on weight
21531                                                              <NA>
21532                                             1 tablet/pill/capsule
21533                                             1 tablet/pill/capsule
21534                                                            1.5 ml
21535                                                              <NA>
21545                                                           1000 mg
21546 16 mg florfenicol, 2.2 mg mometasone furoate, 14.8 mg terbinafine
21547                                                              <NA>
21548                                                              <NA>
21549                                                              <NA>
21552                                                              3 ml
21553                                                              <NA>
21554                                                              <NA>
21555                                                              <NA>
21558                                                              <NA>
21561                                                   based on weight
21562                                                   based on weight
21563                                                   based on weight
21564                                                   based on weight
21580                                                              <NA>
21585                                               tablet/pill/capsule
21586                                               tablet/pill/capsule
21587                                                              <NA>
21593                                                              <NA>
21600                                          based on weight (55 lbs)
21602                                                              <NA>
21603                                                              <NA>
21604                                                              <NA>
21605                                                              <NA>
21606                                                              <NA>
21607                                                              <NA>
21608                                                              <NA>
21609                                                              <NA>
21612                                                              <NA>
21614                                       based on weight (44-88 lbs)
21615                                      based on weight (50-100 lbs)
21616                                                        inch strip
21617                                                              <NA>
21618                                                              <NA>
21619                                      based on weight (50-100 lbs)
21620                                       based on weight (44-88 lbs)
21621                                      based on weight (50-100 lbs)
21622                                       based on weight (44-88 lbs)
21625                                                              <NA>
21626                                                   based on weight
21627                                                   based on weight
21632                                                              <NA>
21637                                                              <NA>
21642                                                   based on weight
21643                                                              <NA>
21644                                                   based on weight
21645                       272 mcg ivermectin, 227 mg pyrantel pamoate
21646                                               tablet/pill/capsule
21648                                                   based on weight
21649                                                   based on weight
21650                                                       as directed
21651                                                              <NA>
21652                                                   based on weight
21653                                                      small amount
21654                                                              <NA>
21655                                                   based on weight
21658                                                            collar
21659                                                      small amount
21660                                                   0.25 inch strip
21661                                                             spray
21666                                                            collar
21673                                                              <NA>
21677                                                              <NA>
21678                                                             spray
21680                                                              <NA>
21685                                                       application
21701                                                            collar
21705                                                            collar
21707                                                            collar
21708                                                       unspecified
21723                                                              <NA>
21725                                                   based on weight
21726                                                   based on weight
21727                                               tablet/pill/capsule
21738                                                   based on weight
21739                                                              <NA>
21748                                                             23 mg
21749                                                          0.135 ml
21753                                                              <NA>
21754                                                              <NA>
21755                                                              <NA>
21757                                                              <NA>
21759                                                              <NA>
21760                                                              <NA>
21767                                                              <NA>
21782                                                              <NA>
21783                                                                 %
21787                                                   based on weight
21796                                                              <NA>
21809                                                              <NA>
21810                                                              <NA>
21814                                               tablet/pill/capsule
21815                                                              <NA>
21833                                                              <NA>
21844                                                              <NA>
21851                                                              <NA>
21865                                                       combination
21866             8.8% imidacloprid, 44% permethrin, 0.44% pyriproxyfen
21867                                                              <NA>
21869                                                              <NA>
21872                                                              <NA>
21873                                                              <NA>
21875                                                              <NA>
21876                                                              <NA>
21877                                                              <NA>
21878                                                              <NA>
21886                                                              <NA>
21894                                                              <NA>
21897                                               tablet/pill/capsule
21898                                               tablet/pill/capsule
21899                                                            powder
21911                                                              <NA>
21912                                                              <NA>
21914                                               tablet/pill/capsule
21915                                                              tube
21918                                                      pack/package
21921                                                              <NA>
21925                                                      pack/package
21927                                                              <NA>
21949                                                              <NA>
21955                                                              <NA>
21956                                                              <NA>
21957                                                              <NA>
21959                                                              <NA>
21982                                                      pack/package
21993                                               tablet/pill/capsule
22013                                                   based on weight
22016                                                              <NA>
22017                                                              <NA>
22020                                                      small amount
22022                                                              <NA>
22023                                               tablet/pill/capsule
22024                                               tablet/pill/capsule
22025                                      based on weight (50-100 lbs)
22026                                                   based on weight
22027                                                   based on weight
22037                                                   based on weight
22038                                                   based on weight
22041                                               tablet/pill/capsule
22042                                               tablet/pill/capsule
22043                                                              <NA>
22045                                                   based on weight
22046                                                   based on weight
22048                                                             spray
22050                                                              <NA>
22051                                                              <NA>
22052                                                              <NA>
22060                                                              <NA>
22062                                                   based on weight
22063                                                   based on weight
22064                                               tablet/pill/capsule
22088                                               tablet/pill/capsule
22089                                             1 tablet/pill/capsule
22092                                             1 tablet/pill/capsule
22093                                             1 tablet/pill/capsule
22112                                                              <NA>
22118                                                   based on weight
22120                                                          ointment
22121                                                              <NA>
22125                                                              <NA>
22128                                                              <NA>
22136                                                   based on weight
22137                                                   based on weight
22140                                                   based on weight
22141                                                   based on weight
22151                                                              <NA>
22159                                                   based on weight
22160                                                              <NA>
22161                                                   based on weight
22162                                                              <NA>
22163                                                              <NA>
22173                                             1 tablet/pill/capsule
22175                                                       application
22176                                                              <NA>
22177                                                              <NA>
22179                                                          ointment
22189                                                      small amount
22190                                                            liquid
22191                                                            1 tube
22196                                                                ml
22197                                                              tube
22199                                               tablet/pill/capsule
22201                                                              <NA>
22216                                                   based on weight
22217                                                   based on weight
22218                                                              <NA>
22219                                                              <NA>
22221                                                            1 tube
22222                                             1 tablet/pill/capsule
22223                                               tablet/pill/capsule
22224                                                              tube
22225                                                              <NA>
22226                                                              <NA>
22227                                                              <NA>
22228                                                              <NA>
22229                                      based on weight (50-100 lbs)
22230                                                              <NA>
22237                                                              <NA>
22238                                                              <NA>
22239                                                              <NA>
22240                                                              <NA>
22241                                                              <NA>
22243                                                              <NA>
22245                                                              <NA>
22253                                               tablet/pill/capsule
22260                                                   based on weight
22261                                               tablet/pill/capsule
22262                                               tablet/pill/capsule
22265                                               tablet/pill/capsule
22267                                                   based on weight
22268                                                   based on weight
22269                                                              <NA>
22270                                                       unspecified
22272                                                      small amount
22289                                                              <NA>
22299                                                              <NA>
22306                          460 mg lufenuron, 23 mg milbemycin oxime
22308                                                              <NA>
22311                                                              <NA>
22313                                                      small amount
22314                                               tablet/pill/capsule
22315                                                    1 pack/package
22316                                                              <NA>
22319                                                              <NA>
22321                                                   based on weight
22323                                               tablet/pill/capsule
22341                                                              tube
22342                                                          wipe/pad
22343                                                              dose
22345                                                              <NA>
22346                                                              <NA>
22347                                                              <NA>
22349                                                              <NA>
22351                                                              <NA>
22352                                                              <NA>
22353                                                              <NA>
22367                                                              <NA>
22403                                                              <NA>
22404                                                      small amount
22407                                                              <NA>
22408                                                      small amount
22410                                                      small amount
22413                                                   based on weight
22417                                                   based on weight
22418                                                   based on weight
22430                                                   based on weight
22439                                               tablet/pill/capsule
22440                                                              <NA>
22441                                                   based on weight
22442                                                   based on weight
22459                                                              <NA>
22463                                                              <NA>
22482                                                              <NA>
22520                                                              <NA>
22521                                                              <NA>
22524                                                   based on weight
22530                                                              <NA>
22531                                               tablet/pill/capsule
22532                                               tablet/pill/capsule
22533                                                            collar
22534                                                              <NA>
22537                                                    shampoo/mousse
22540                                                              <NA>
22541                                               tablet/pill/capsule
22545                                               tablet/pill/capsule
22546                                               tablet/pill/capsule
22547                                                              <NA>
22548                                                              <NA>
22549                                               tablet/pill/capsule
22552                                                              <NA>
22556                                                              <NA>
22557                                                   based on weight
22558                                                   based on weight
22574                                                              <NA>
22575                                                   0.25 inch strip
22577                       272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                             1 tablet/pill/capsule
22579                                                              <NA>
22583                                          2 tablets/pills/capsules
22585                                                              <NA>
22598                                                            1 tube
22599                                                              <NA>
22600                                                              <NA>
22601                                                              <NA>
22606                                                       as directed
22607                                                       as directed
22610                                                              <NA>
22611                                                              <NA>
22625                                                   based on weight
22653                                                       unspecified
22655                                       based on weight (44-88 lbs)
22656                                                   based on weight
22662                                                      small amount
22667                                                      small amount
22669                                                              <NA>
22670                                                              tube
22672                                                              <NA>
22673                                                              <NA>
22674                                                   based on weight
22679                                                   based on weight
22681                                                      small amount
22682                                               tablet/pill/capsule
22683                                                              tube
22690                                                            collar
22691                                                              <NA>
22692                                                   based on weight
22693                                                   based on weight
22704                                             1 tablet/pill/capsule
22705                                                              tube
22707                                               tablet/pill/capsule
22708                                                              tube
22709                                                              <NA>
22710                                                              <NA>
22711                                               tablet/pill/capsule
22713                                               tablet/pill/capsule
22714                                               tablet/pill/capsule
22715                                                              <NA>
22716                                               tablet/pill/capsule
22717                                               tablet/pill/capsule
22718                                      based on weight (50-100 lbs)
22719                                               tablet/pill/capsule
22721                                                              <NA>
22733                                                            collar
22734                                                              <NA>
22748                                               tablet/pill/capsule
22749                                                              <NA>
22750                                                   based on weight
22751                                                              <NA>
22752                                                              <NA>
22754                                                   based on weight
22763                                                   based on weight
22764                                                              tube
22765                                                      small amount
22766                                                              <NA>
22770                                                              <NA>
22777                                                              <NA>
22778                                                              <NA>
22779                                                              <NA>
22780                                                              <NA>
22795                                               tablet/pill/capsule
22796                                                              <NA>
22797                                                           monthly
22798                                                           monthly
22799                                                   based on weight
22800                                                   based on weight
22801                                                   based on weight
22802                                                      small amount
22803                                                   based on weight
22804                                                   based on weight
22830                                                              <NA>
22840                                                              <NA>
22848                                                      small amount
22853                                                          ointment
22858                                                    shampoo/mousse
22875                                                                 %
22886                                                      small amount
22909                                                              <NA>
22910                                                              <NA>
22911                                                              <NA>
22912                                                              <NA>
22919                                      based on weight (60-120 lbs)
22920                                      based on weight (50-100 lbs)
22921                                                              <NA>
22922                                                              <NA>
22923                                               tablet/pill/capsule
22926                                                      small amount
22929                                                      small amount
22936                                                              pump
22938                                                              <NA>
22939                                                              <NA>
22954                                                              <NA>
22955                                                              <NA>
22963                                                              tube
22965                                      based on weight (50-100 lbs)
22966                                                   based on weight
22967                                               tablet/pill/capsule
22970                                                   based on weight
22971                                                   based on weight
22990                                                          wipe/pad
22991                                                              <NA>
22992                                                              <NA>
22994                                               tablet/pill/capsule
23005                                                              <NA>
23006                                                              <NA>
23007                                                              <NA>
23008                                                              <NA>
23009                                                              <NA>
23018                                                              <NA>
23019                                                              <NA>
23024                                                      pack/package
23025                                               tablet/pill/capsule
23043                                               tablet/pill/capsule
23049                                                              <NA>
23051                                                              <NA>
23053                                               tablet/pill/capsule
23055                                                              <NA>
23059                                               tablet/pill/capsule
23060                                                   based on weight
23061                                                   based on weight
23064                                                              <NA>
23065                                                              <NA>
23066                                                   based on weight
23074                                                   based on weight
23075                                                   based on weight
23083                                                              <NA>
23095                                               tablet/pill/capsule
23096                                               tablet/pill/capsule
23100                                                              <NA>
23102                                                              <NA>
23103                                                              <NA>
23108                                                              <NA>
23122                                                   based on weight
23123                                                   based on weight
23124                                                   based on weight
23125                                                   based on weight
23134                                                              <NA>
23137                                                              <NA>
23138                                               tablet/pill/capsule
23141                                                   based on weight
23143                                                              <NA>
23144                                                              <NA>
23145                                                              <NA>
23146                                                              <NA>
23153                                                              <NA>
23154                                                              <NA>
23163                                                              <NA>
23169                                                              <NA>
23173                                                   based on weight
23175                                                              <NA>
23184                                                              <NA>
23186                                                              <NA>
23187                                                              <NA>
23202                                               tablet/pill/capsule
23237                                                              <NA>
23248                                                              <NA>
23249                                                              <NA>
23250                                                   based on weight
23251                                                              <NA>
23257                                                              <NA>
23258                                             1 tablet/pill/capsule
23259                                                            1 tube
23266                                                          inhalant
23267                                                              <NA>
23268                                       based on weight (56-95 lbs)
23276                                                          inhalant
23278                                                      small amount
23279                                             1 tablet/pill/capsule
23280                                             1 tablet/pill/capsule
23281                                                              <NA>
23282                                                              <NA>
23283                                                              <NA>
23284                                                              <NA>
23285                                                              <NA>
23286                                                              <NA>
23288                                                      small amount
23294                                                              <NA>
23299                                                              <NA>
23304                                                              <NA>
23305                                                             spray
23306                                                             spray
23308                                                    shampoo/mousse
23321                                                              <NA>
23322                                                      small amount
23325                                          based on weight (80 lbs)
23333                                                              <NA>
23336                                                              dose
23337                                                     1 bottle/vial
23338                                                     1 bottle/vial
23340                                                      small amount
23341                                             1 tablet/pill/capsule
23342                                                            1 tube
23344                                                              <NA>
23345                                       based on weight (56-95 lbs)
23349                                                      small amount
23350                                                              <NA>
23351                                                              <NA>
23352                                                              <NA>
23353                                                              <NA>
23354                                                              <NA>
23355                                                              <NA>
23356                                                              <NA>
23357                                                              <NA>
23360                                                              <NA>
23361                                                              <NA>
23364                                                              <NA>
23366                                                              <NA>
23384                                                              <NA>
23385                                      based on weight (50-100 lbs)
23386                                                              <NA>
23388                                               tablet/pill/capsule
23389                                                   based on weight
23401                                                   based on weight
23402                                                   based on weight
23403                                                   based on weight
23404                                                   based on weight
23412                                                   based on weight
23413                                                   based on weight
23414                                                   based on weight
23419                                                       unspecified
23422                                                              tube
23423                                                              tube
23427                                                   based on weight
23428                                                              <NA>
23437                                                   based on weight
23450                                                              dose
23452                                                             spray
23455                                                              <NA>
23456                                                             spray
23457                                                              <NA>
23472                                                              dose
23476                                                   based on weight
23477                                                   based on weight
23481                                                   based on weight
23482                                                              tube
23483                                                   based on weight
23484                                                       as directed
23485                                                       as directed
23487                                                       0.159 fl oz
23491                                                              <NA>
23503                                                   based on weight
23504                                                   based on weight
23507                                                      pack/package
23508                                                      pack/package
23509                                                            1 tube
23510                                               tablet/pill/capsule
23514                                                       as directed
23515                                                       as directed
23520                                                       0.159 fl oz
23533                                                              <NA>
23534                                                             spray
23540                                                   based on weight
23541                                                   based on weight
23548                                                              <NA>
23552                                                              <NA>
23553                                                   based on weight
23555                                                              <NA>
23556                                                   based on weight
23557                                                   based on weight
23558                                                              <NA>
23565                                                              <NA>
23566                                                              <NA>
23568                                                   based on weight
23571                       272 mcg ivermectin, 227 mg pyrantel pamoate
23572          9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen
23588                                               tablet/pill/capsule
23589                                                              tube
23590                                               tablet/pill/capsule
23593                                                              <NA>
23594                                                              <NA>
23610                                                              <NA>
23617                                                   based on weight
23618                                             1 tablet/pill/capsule
23619                                                              <NA>
23620                                                   based on weight
23622                                      based on weight (50-100 lbs)
23646                                                   based on weight
23647                                                   based on weight
23651                                                   based on weight
23657                                                   based on weight
23659                                                   based on weight
23685                                               tablet/pill/capsule
23686                                               tablet/pill/capsule
23688                                               tablet/pill/capsule
23707                                                             spray
23718                                                              <NA>
23721                                               tablet/pill/capsule
23722                                               tablet/pill/capsule
23724                                                                60
23730                                                   based on weight
23732                                             1 tablet/pill/capsule
23733                                                              <NA>
23740                                                   based on weight
23747                                                              <NA>
23749                                                              <NA>
23757                                                              <NA>
23758                                                              <NA>
23792                                                              <NA>
23804                                                              <NA>
23805                                                   based on weight
23808                                               tablet/pill/capsule
23809                                                            collar
23819                                                   based on weight
23820                                                   based on weight
23824                                                   based on weight
23825                                                              <NA>
23861                                                   based on weight
23862                                                   based on weight
23865                                                              <NA>
23866                                                              tube
23868                                                              <NA>
23871                                                              <NA>
23872                                                    shampoo/mousse
23873                                                          wipe/pad
23898                                                            collar
23899                                                    shampoo/mousse
23900                                               tablet/pill/capsule
23901                                                           monthly
23902                                                   based on weight
23905                                             1 tablet/pill/capsule
23906                                                            collar
23909                                                         as needed
23910                                               tablet/pill/capsule
23914                                                       application
23917                                                          ointment
23924                                                              <NA>
23925                                                              <NA>
23933                                                              <NA>
23942                                                              <NA>
23955                                                   based on weight
23956                                                   based on weight
23957                                                              <NA>
23958                                                              <NA>
23959                                                              <NA>
23965                                                              <NA>
23969                                                              <NA>
23972                                                   based on weight
23974                                         based on weight (55+ lbs)
23976                                                              <NA>
23980                                                              <NA>
23989                                                              <NA>
23990                                                              <NA>
24008                                                              <NA>
24010                                                              <NA>
24012                                                      small amount
24017                                                              <NA>
24018                                                              <NA>
24019                                                              <NA>
24020                                                              <NA>
24022                                                              <NA>
24029                                                              <NA>
24044                                                              <NA>
24045                                                              <NA>
24046                                                              <NA>
24062                                               tablet/pill/capsule
24067                                                              <NA>
24068                                                       unspecified
24069                                                              <NA>
24072                                                              <NA>
24075                                                   based on weight
24076                                                   based on weight
24077                                               tablet/pill/capsule
24078                                               tablet/pill/capsule
24079                                                              dose
24104                                                              <NA>
24106                                                              <NA>
24113                                                              <NA>
24116                                               tablet/pill/capsule
24117                                               tablet/pill/capsule
24139                                                              <NA>
24142                                               tablet/pill/capsule
24144                                                              <NA>
24145                                                       unspecified
24146                                                              <NA>
24149                                                              <NA>
24154                                                              <NA>
24155                                                              <NA>
24157                                                   based on weight
24162                                                   based on weight
24165                                                   based on weight
24166                                                   based on weight
24172                                                   0.25 inch strip
24173                                                   based on weight
24174                                               tablet/pill/capsule
24185                                                              <NA>
24189                                                              <NA>
24192                                                              <NA>
24193                                                              <NA>
24194                                                              <NA>
24195                                                              <NA>
24201                                                              <NA>
24202                                                              <NA>
24203                                                      small amount
24205                                                              <NA>
24206                                                              <NA>
24207                                                              <NA>
24208                                                              <NA>
24209                                                             spray
24215                                                      small amount
24217                                                         as needed
24218                                                              <NA>
24219                                                              <NA>
24221                                                   moderate amount
24222                                                      small amount
24246                                                              <NA>
24250                                             1 tablet/pill/capsule
24251                                                              <NA>
24253                                               tablet/pill/capsule
24257                                                   based on weight
24258                                               tablet/pill/capsule
24259                                               tablet/pill/capsule
24260                                                              <NA>
24261                                               tablet/pill/capsule
24262                                                              <NA>
24263                                                              <NA>
24264                                                              <NA>
24265                                               tablet/pill/capsule
24266                                                              <NA>
24267                                                              <NA>
24268                                                              <NA>
24269                                                              <NA>
24276                                                              <NA>
24282                                               tablet/pill/capsule
24312                                                             spray
24313                                                              <NA>
24314                                               tablet/pill/capsule
24319                                                              <NA>
24322                                                             spray
24325                                                              <NA>
24328                                                              <NA>
24343                                                              <NA>
24375                                                              <NA>
24379                                                              <NA>
24393                                               tablet/pill/capsule
24394                                               tablet/pill/capsule
24395                                               tablet/pill/capsule
24396                                                              <NA>
24397                                                              <NA>
24399                                                              <NA>
24400                                                              <NA>
24401                                                              <NA>
24402                                             1 tablet/pill/capsule
24403                                             1 tablet/pill/capsule
24404                                                              <NA>
24405                                                              <NA>
24406                                                              <NA>
24407                                                              <NA>
24408                                                              <NA>
24409                                                              <NA>
24410                                               tablet/pill/capsule
24413                                             1 tablet/pill/capsule
24416                                                             drops
24417                                                          0.25 tsp
24418                                                              <NA>
24419                                                              <NA>
24420                                                              <NA>
24421                                               tablet/pill/capsule
24422                                                              tube
24424                                                       unspecified
24425                                                   based on weight
24426                                                   based on weight
24427                                                              <NA>
24428                                                              <NA>
24429                                                              <NA>
24431                                                              <NA>
24432                                                              <NA>
24434                                                              <NA>
24435                                               tablet/pill/capsule
24436                                                             drops
24437                                               tablet/pill/capsule
24438                                                              <NA>
24451                                                      small amount
24452                                                            1 drop
24453                                                            1 drop
24455                                                    1 pack/package
24459                                                              <NA>
24460                                                              <NA>
24461                                                              <NA>
24462                                                              <NA>
24468                                                              <NA>
24473                                                              <NA>
24475                                                              <NA>
24476                                               tablet/pill/capsule
24477                                               tablet/pill/capsule
24478                                                      pack/package
24479                                                              <NA>
24480                                               tablet/pill/capsule
24481                                               tablet/pill/capsule
24482                                                              <NA>
24484                                      based on weight (50-100 lbs)
24486                                               tablet/pill/capsule
24499                                                              <NA>
24503                                                              <NA>
24504                                                              <NA>
24514                                                      pack/package
24520                                                       bottle/vial
24521                                                   based on weight
24526                                                             spray
24529                                                   based on weight
24534                                                              <NA>
24536                                                              <NA>
24562                                                   based on weight
24563                                                   based on weight
24565                                                   based on weight
24567                                                   based on weight
24593                                                              <NA>
24597                                                              <NA>
24598                                                              <NA>
24599                                                              <NA>
24601                                                              <NA>
24602                                                              <NA>
24605                                                   based on weight
24610                                                      small amount
24621                                       based on weight (56-95 lbs)
24622                                                   based on weight
24647                                                      small amount
24648                                                              <NA>
24651                                                              <NA>
24652                                                              <NA>
24653                                                              <NA>
24654                                                              dose
24660                                               tablet/pill/capsule
24666                                                              <NA>
24669                                                   based on weight
24688                                                        inch strip
24707                                                   0.25 inch strip
24733                                                              <NA>
24734                                                              <NA>
24758                                                   0.25 inch strip
24762                                                              <NA>
24768                                                   based on weight
24769                                                   based on weight
24776                                                              <NA>
24782                                                              <NA>
24802                                                              <NA>
24804                                                              <NA>
24805                                                              <NA>
24806                                                              <NA>
24814                                                              <NA>
24817                                                      small amount
24819                                                       application
24824                                               tablet/pill/capsule
24825                                               tablet/pill/capsule
24826                                                              <NA>
24827                                                              <NA>
24828                                           0.5 tablet/pill/capsule
24829                                                   based on weight
24830                                                          wipe/pad
24835                                                              <NA>
24839                                               tablet/pill/capsule
24840                                               tablet/pill/capsule
24850                                                              <NA>
24867                                                   based on weight
24878                                                   moderate amount
24880                                                              <NA>
24897                                                              <NA>
24898                                                              puff
24899                                                              <NA>
24902                                                              <NA>
24903                                                              <NA>
24904                                                              <NA>
24907                                                              <NA>
24917                                                             spray
24918                                                          wipe/pad
24919                                                              <NA>
24935                                                              <NA>
24937                                                              <NA>
24938                                                              <NA>
24940                                                              <NA>
24942                                                              <NA>
24948                                                      small amount
24949                                                              <NA>
24950                                       based on weight (44-88 lbs)
24963                                                              <NA>
24964                                                              <NA>
24967                                                              pump
24968                                                   based on weight
24969                                                   based on weight
24971                                                   based on weight
24973                                               tablet/pill/capsule
24974                                                            collar
24975                                                      small amount
24982                                       based on weight (44-88 lbs)
24984                                                              <NA>
24985                                       based on weight (44-88 lbs)
24987                                      based on weight (50-100 lbs)
24988                                                              <NA>
24989                                                      small amount
24993                                                              <NA>
25003                                                              <NA>
25004                                               tablet/pill/capsule
25020                                                              <NA>
25021                                                   based on weight
25022                                                              <NA>
25040                                                              <NA>
25041                                                              <NA>
25059                       272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                              <NA>
25079                                                   based on weight
25080                                                   based on weight
25084                                                              <NA>
25087                                                            collar
25094                                                              <NA>
25099                                                              <NA>
25100                                                              <NA>
25101                                                              <NA>
25102                                                              <NA>
25118                                                   based on weight
25119                                                   based on weight
25120                                                   based on weight
25124                                                              <NA>
25129                                               tablet/pill/capsule
25131                                                   based on weight
25132                                                   based on weight
25191                                                   based on weight
25196                                                   based on weight
25198                                                              <NA>
25233                                                   based on weight
25234                                                   based on weight
25241                                                      small amount
25255                                                                ml
25258                                                      small amount
25262                                                              <NA>
25269                                                              <NA>
25270                                                              <NA>
25273                                                              <NA>
25296                                                              <NA>
25299                                               tablet/pill/capsule
25300                                               tablet/pill/capsule
25301                                               tablet/pill/capsule
25309                                                              <NA>
25310                                                              <NA>
25311                                                              <NA>
25315                                                              <NA>
25316                                                              <NA>
25317                                                              <NA>
25331                                                              <NA>
25337                                      based on weight (60-120 lbs)
25342                                                   based on weight
25343                                                   based on weight
25345                                                                 2
25346                                                                 1
25347                                                              <NA>
25358                                                              <NA>
25359                                                              <NA>
25366                                                              <NA>
25367                                               tablet/pill/capsule
25369                                                              <NA>
25370                                                              <NA>
25372                                                              <NA>
25374                                                              <NA>
25377                                                              <NA>
25378                                                              <NA>
25390                                                              <NA>
25391                                                              <NA>
25405                                                   based on weight
25409                                                        inch strip
25410                                                        1 wipe/pad
25417                                                       bottle/vial
25421                                                   based on weight
25424                                                              <NA>
25425                                                              <NA>
25437                                                              <NA>
25444                                                              <NA>
25473                                                   based on weight
25482                                                              <NA>
25493                                                   based on weight
25494                                                   based on weight
25495                                                   based on weight
25498                                                   based on weight
25499                                                   based on weight
25501                                                   based on weight
25502                                                   based on weight
25514                                                              <NA>
25515                                                              <NA>
25516                                                              <NA>
25517                                                              <NA>
25520                                             1 tablet/pill/capsule
25521                                             1 tablet/pill/capsule
25523                                             1 tablet/pill/capsule
25547                                                              <NA>
25554                                                              <NA>
25555                                                              <NA>
25556                                                              <NA>
25557                                                              <NA>
25558                                                   based on weight
25564                                                              <NA>
25575                                                              <NA>
25576                                               tablet/pill/capsule
25577                                                   based on weight
25579                                                              <NA>
25589                                                              <NA>
25590                                                              <NA>
25591                                                              <NA>
25612                                                              <NA>
25613                                                   based on weight
25617                                                      small amount
25619                                                             drops
25622                                                              <NA>
25636                                                   based on weight
25659                                                   based on weight
25660                                                      small amount
25663                                                      small amount
25666                                          3 tablets/pills/capsules
25670                                                              tube
25671                                                            liquid
25672                                                              <NA>
25674                                                              <NA>
25683                                                              <NA>
25706                                                            1 tube
25707                                                       unspecified
25708                                             1 tablet/pill/capsule
25711                                                              <NA>
25725                                                       billion cfu
25726                                                              <NA>
25727                                               tablet/pill/capsule
25730                                                    shampoo/mousse
25737                                                              <NA>
25740                                               tablet/pill/capsule
25741                                               tablet/pill/capsule
25743                                                              tube
25744                                                         as needed
25748                                               tablet/pill/capsule
25749                                               tablet/pill/capsule
25750                                                            1 tube
25751                                                        inch strip
25753                                                              <NA>
25754                                             1 tablet/pill/capsule
25755                                             1 tablet/pill/capsule
25756                                                            1 tube
25757                                             1 tablet/pill/capsule
25765                                                              <NA>
25795                                          based on weight (60 lbs)
25804                                                              <NA>
25806                                               tablet/pill/capsule
25807                                             1 tablet/pill/capsule
25816                                                              <NA>
25817                                                              <NA>
25818                                                   based on weight
25819                                                              <NA>
25820                                               tablet/pill/capsule
25825                                                              <NA>
25826                                                              <NA>
25827                                             1 tablet/pill/capsule
25828                                                              <NA>
25829                                                              <NA>
25830                                                              <NA>
25837                                                              puff
25839                                                      pack/package
25846                                                              dose
25870                                                   based on weight
25884                                               tablet/pill/capsule
25887                                               tablet/pill/capsule
25888                                               tablet/pill/capsule
25919                                                              <NA>
25936                                                              <NA>
25937                                                              <NA>
25939                                               tablet/pill/capsule
25940                                               tablet/pill/capsule
25941                                                              <NA>
25942                                                              <NA>
25943                                                              <NA>
25948                                                              <NA>
25949                                               tablet/pill/capsule
25950                                               tablet/pill/capsule
25951                                                              <NA>
25952                                                              <NA>
25953                                                              <NA>
25954                                                              <NA>
25964                                                              <NA>
25965                                                              <NA>
25966                                                              <NA>
25967                                                              <NA>
25981                                                              <NA>
25983                                                              <NA>
25985                                                   based on weight
25986                                                   based on weight
25998                                                              <NA>
26004                                                              <NA>
26022                                                              <NA>
26024                                               tablet/pill/capsule
26027                                                              <NA>
26031                                               tablet/pill/capsule
26033                                               tablet/pill/capsule
26037                                               tablet/pill/capsule
26039                                               tablet/pill/capsule
26047                                               tablet/pill/capsule
26048                                               tablet/pill/capsule
26050                                               tablet/pill/capsule
26054                                               tablet/pill/capsule
26056                                               tablet/pill/capsule
26064                                                    1 pack/package
26075                                                              <NA>
26078                                                              <NA>
26084                                                              <NA>
26085                                                              <NA>
26093                                                             spray
26094                                                             spray
26095                                                              <NA>
26110                                                              <NA>
26113                                                   based on weight
26114                                                   based on weight
26115                                                           5 drops
26120                                                   based on weight
26121                                                   based on weight
26122                                                   based on weight
26123                                                   based on weight
26124                                                   based on weight
26127                                                      small amount
26128                                                      small amount
26129                                                      small amount
26133                                                      small amount
26134                                                      small amount
26138                                                              <NA>
26139                                                    shampoo/mousse
26141                                                              dose
26148                                                   based on weight
26149                                                   based on weight
26150                                                   based on weight
26151                                                      small amount
26152                                                      small amount
26153                                                              <NA>
26154                                                              <NA>
26155                                                              <NA>
26156                                               tablet/pill/capsule
26157                                                       bottle/vial
26158                                                              <NA>
26159                                                              <NA>
26160                                                              <NA>
26161                                                              <NA>
26165                                                      small amount
26166                                                      small amount
26178                                                   based on weight
26179                                                   based on weight
26180                                                   based on weight
26181                                                   based on weight
26184                                                   0.25 inch strip
26187                                                    0.5 inch strip
26189                                                              <NA>
26190                                                    shampoo/mousse
26192                                                              dose
26197                                                              <NA>
26199                                                   based on weight
26200                                                   based on weight
26201                                                   based on weight
26203                                               tablet/pill/capsule
26204                                                      small amount
26205                                                              <NA>
26206                                                              <NA>
26207                                                      small amount
26208                                                       bottle/vial
26211                                                              <NA>
26212                                                              <NA>
26213                                                              <NA>
26214                                                      small amount
26215                                                       bottle/vial
26222                                                              <NA>
26227                                                              <NA>
26229                                                              <NA>
26237                                                              <NA>
26238                                          based on weight (60 lbs)
26239                                               tablet/pill/capsule
26258                                                              <NA>
26259                                                              <NA>
26264                                                              <NA>
26265                                                              <NA>
26278                                                              <NA>
26279                                               tablet/pill/capsule
26280                                                              <NA>
26281                                               tablet/pill/capsule
26282                                               tablet/pill/capsule
26286                                                   based on weight
26287                                                              dose
26294                                               tablet/pill/capsule
26295                                               tablet/pill/capsule
26299                                               tablet/pill/capsule
26300                                                              <NA>
26307                                                             mg/kg
26315                                                   based on weight
26336                                                              <NA>
26337                                                              <NA>
26355                                                    shampoo/mousse
26373                                                              <NA>
26375                                                   based on weight
26380                                                            1 tube
26386                                                    114 mg, 136 mg
26387                                                              <NA>
26391                                                              <NA>
26393                                                             spray
26395                                                              <NA>
26399                                                              <NA>
26400                                                              <NA>
26401                                                              <NA>
26423                                                              <NA>
26433                                                              <NA>
26454                                                              <NA>
26464                                                              dose
26469                                               tablet/pill/capsule
26471                                                              <NA>
26473                                                              <NA>
26474                                                              <NA>
26475                                               tablet/pill/capsule
26476                                               tablet/pill/capsule
26477                                                              <NA>
26488                                               tablet/pill/capsule
26489                                               tablet/pill/capsule
26490                                               tablet/pill/capsule
26502                                                      small amount
26503                                                              <NA>
26505                                                         as needed
26508                                                              pump
26517                                                   based on weight
26518                                                   based on weight
26519                                                   based on weight
26520                                               tablet/pill/capsule
26521                                                              <NA>
26522                                               tablet/pill/capsule
26534                                                              <NA>
26540                                                              pump
26543                                                   based on weight
26544                                                   based on weight
26546                                                   based on weight
26547                                                   based on weight
26550                                                   based on weight
26551                                                              <NA>
26553                                                              <NA>
26568                                                   based on weight
26574                                                   based on weight
26576                                                              <NA>
26583                                                              <NA>
26584                                                              dose
26585                                                              dose
26587                                               tablet/pill/capsule
26589                                                       as directed
26590                                                       as directed
26591                                                              dose
26592                                                              dose
26594                                               tablet/pill/capsule
26610                                                              <NA>
26611                                               tablet/pill/capsule
26615                                               tablet/pill/capsule
26616                                               tablet/pill/capsule
26628                                                              <NA>
26629                                                   based on weight
26631                                                   based on weight
26637                                                       application
26638                                      based on weight (50-100 lbs)
26643                                                              <NA>
26644                                                                 %
26645                                                   based on weight
26647                                                              <NA>
26650                                                   based on weight
26651                                                   based on weight
26652                                             1 tablet/pill/capsule
26654                                                              <NA>
26655                                                              <NA>
26662                                               tablet/pill/capsule
26663                                               tablet/pill/capsule
26668                                                       bottle/vial
26669                                                   based on weight
26670                                                            collar
26673                                                              <NA>
26674                                                              <NA>
26675                                                              <NA>
26676                                                              dose
26677                                                              <NA>
26680                                                              <NA>
26681                                                              <NA>
26682                                               tablet/pill/capsule
26683                                               tablet/pill/capsule
26684                                             1 tablet/pill/capsule
26685                                             1 tablet/pill/capsule
26694                                                              <NA>
26720                                                              <NA>
26721                                                              <NA>
26722                                                   based on weight
26723                                                              <NA>
26724                                                              <NA>
26726                                               tablet/pill/capsule
26727                                                              <NA>
26734                                               tablet/pill/capsule
26735                                               tablet/pill/capsule
26736                                                              <NA>
26738                                                              <NA>
26740                                                              <NA>
26741                                                              <NA>
26742                                                              <NA>
26743                                                              <NA>
26744                                                              <NA>
26745                                                              <NA>
26747                                                              <NA>
26749                                                              <NA>
26750                                                       combination
26751                                                              <NA>
26760                                             1 tablet/pill/capsule
26761                                                       application
26764                                                      small amount
26765                                                      small amount
26766                                                      small amount
26769                                               tablet/pill/capsule
26772                                                      small amount
26773                                                      small amount
26774                                                      small amount
26780                                             1 tablet/pill/capsule
26803                                                              <NA>
26817                                                              <NA>
26818                                                              <NA>
26819                                                              <NA>
26821                                                              <NA>
26822                                                              <NA>
26823                                                              <NA>
26825                                                              <NA>
26826                                                              <NA>
26827                                                              <NA>
26828                                                              <NA>
26829                                                              <NA>
26830                                                              <NA>
26831                                                              <NA>
26832                                                              <NA>
26833                                                              <NA>
26836                                                              <NA>
26837                                                    1 pack/package
26838                                                              <NA>
26839                                                            powder
26840                                               tablet/pill/capsule
26841                                                              <NA>
26842                                               tablet/pill/capsule
26843                                                      pack/package
26844                                                              <NA>
26846                                               tablet/pill/capsule
26847                                                              <NA>
26848                                                            powder
26849                                               tablet/pill/capsule
26850                                                           monthly
26851                                                            powder
26852                                                              <NA>
26853                                                              <NA>
26857                                                              <NA>
26861                                                   based on weight
26862                                                              <NA>
26863                                                              <NA>
26864                                                              <NA>
26865                                                              <NA>
26867                                                       application
26868                                               tablet/pill/capsule
26869                                               tablet/pill/capsule
26870                                                              <NA>
26871                                                              <NA>
26872                                                              <NA>
26905                                                              <NA>
26926                                                   based on weight
26930                                                   based on weight
26931                                                   based on weight
26932                                                              <NA>
26944                                                              dose
26948                                                   based on weight
26966                                                              <NA>
26972                                                              <NA>
26974                                                       unspecified
26975                                                   based on weight
26976                                               tablet/pill/capsule
26977                                                   based on weight
26978                                                              <NA>
26979                                      based on weight (50-100 lbs)
26980                                      based on weight (50-100 lbs)
26981                                      based on weight (50-100 lbs)
26983                                                              <NA>
26984                                       based on weight (44-88 lbs)
26986                                                              <NA>
26987                                                              <NA>
26988                                                              <NA>
26990                                                              <NA>
26991                                                              <NA>
26992                                                              <NA>
26993                                                              <NA>
27012                                                      small amount
27020                                                       as directed
27021                                                              <NA>
27022                                                              <NA>
27030                                                              <NA>
27047                                                              <NA>
27058                                                              pump
27062                                                              <NA>
27063                                                              <NA>
27065                                               tablet/pill/capsule
27080                                                              <NA>
27081                                                              <NA>
27082                                                           monthly
27083                                               tablet/pill/capsule
27084                                                              <NA>
27085                                               tablet/pill/capsule
27086                                               tablet/pill/capsule
27092                                                      pack/package
27095                                                              <NA>
27096                                                              <NA>
27100                                               tablet/pill/capsule
27117                                                       application
27118                                                       application
27124                                                      pack/package
27128                                                              <NA>
27134                                                      small amount
27136                                                   based on weight
27137                                                              <NA>
27140                                                      small amount
27144                                                   based on weight
27158                                                      small amount
27163                                               tablet/pill/capsule
27170                                               tablet/pill/capsule
27172                                               tablet/pill/capsule
27173                                                        1.5 scoops
27174                                               tablet/pill/capsule
27203                                                              <NA>
27212                                                              <NA>
27213                                                              <NA>
27214                                                            collar
27217                                                             spray
27219                                                      small amount
27220                                                            collar
27222                                                            powder
27223                                                             spray
27224                                                      small amount
27225                                                              <NA>
27226                                                            collar
27228                                                              <NA>
27229                                                   based on weight
27231                                               tablet/pill/capsule
27232                                                              <NA>
27247                                                              <NA>
27249                                                              <NA>
27251                                                              <NA>
27256                                                             spray
27257                                                   based on weight
27258                                                   based on weight
27262                                                              <NA>
27265                                                              <NA>
27268                                                              <NA>
27270                                                              <NA>
27273                                                   based on weight
27274                                                   based on weight
27275                                                   based on weight
27280                                               tablet/pill/capsule
27281                                                              <NA>
27282                                                              <NA>
27285                                                   based on weight
27306                                                   based on weight
27309                                                   based on weight
27310                                                   based on weight
27311                                                   based on weight
27315                                                              <NA>
27322                                                              pump
27333                                                              <NA>
27345                                                              <NA>
27346                                                              <NA>
27347                                                              <NA>
27348                                                   based on weight
27349                                                   based on weight
27350                                                              <NA>
27353                                                              <NA>
27358                                               tablet/pill/capsule
27360                                               tablet/pill/capsule
27361                                                              <NA>
27362                                                              <NA>
27364                                                              <NA>
27368                                               tablet/pill/capsule
27370                                                              tube
27371                                                              <NA>
27384                                                              <NA>
27407                                                              <NA>
27413                                               tablet/pill/capsule
27414                                               tablet/pill/capsule
27421                                                              tube
27422                                               tablet/pill/capsule
27423                                                              <NA>
27425                                                      small amount
27427                                                              <NA>
27431                                                      small amount
27432                                          based on weight (50 lbs)
27434                                                              <NA>
27435                                                              <NA>
27445                                                              <NA>
27446                                                              <NA>
27447                                               tablet/pill/capsule
27456                                               tablet/pill/capsule
27458                                               tablet/pill/capsule
27459                                                              <NA>
27465                                                        inch strip
27474                                                              <NA>
27479                                                              <NA>
27481                                                              <NA>
27492                                               tablet/pill/capsule
27494                                                              <NA>
27498                                                   based on weight
27500                                                              <NA>
27501                                                              <NA>
27502                                                   based on weight
27506                                             1 tablet/pill/capsule
27507                                                            1 tube
27511                                                   based on weight
27512                                                   based on weight
27523                                                   based on weight
27524                                                   based on weight
27529                                                   based on weight
27530                                                   based on weight
27589                                               tablet/pill/capsule
27590                                                   based on weight
27594                                                              <NA>
27595                                                              <NA>
27596                                                              <NA>
27598                                                              <NA>
27620                                               tablet/pill/capsule
27640                                                           monthly
27646                                                          ointment
27654                                      based on weight (60-120 lbs)
27657                          27 mg milbemycin oxime, 1620 mg spinosad
27658                                                              <NA>
27659                                                              <NA>
27674                                                              <NA>
27697                                                      small amount
27699                                                              <NA>
27700                                                   based on weight
27701                                                   based on weight
27703                                                   based on weight
27704                                                   based on weight
27710                                       based on weight (44-88 lbs)
27713                                                              <NA>
27714                                                              <NA>
27715                                                              <NA>
27722                                                              <NA>
27723                                                              <NA>
27724                                                              <NA>
27728                                                              <NA>
27736                                                                90
27745                                                       combination
27747                                                              puff
27748                                                       combination
27750                                                       combination
27769                                                       combination
27770                                                              <NA>
27772                                                              <NA>
27776                                                              <NA>
27791                                                       combination
27794                                                       combination
27802                                                              <NA>
27824                                                       combination
27826                                                       combination
27828                                                       combination
27833                                               tablet/pill/capsule
27834                                               tablet/pill/capsule
27836                                                              <NA>
27875                                                                 %
27878                                                   based on weight
27880                                                       unspecified
27883                                                              <NA>
27884                                                              <NA>
27885                                                              <NA>
27886                                               tablet/pill/capsule
27891                                                              <NA>
27892                                                              <NA>
27895                                                   based on weight
27896                                                   based on weight
27897                                                              <NA>
27898                                                   based on weight
27899                                                              <NA>
27900                                                              <NA>
27901                                                              <NA>
27903                                                   based on weight
27904                                                              <NA>
27910                                                              <NA>
27913                                                              <NA>
27917                                                              <NA>
27921                                                              <NA>
27922                                                              <NA>
27923                                                              <NA>
27927                                                              <NA>
27929                                                      small amount
27931                                                              <NA>
27934                                                              <NA>
27935                                                              <NA>
27936                                                              <NA>
27937                                                              <NA>
27938                                                              <NA>
27939                                                              <NA>
27940                                                              <NA>
27941                                                              <NA>
27942                                                              <NA>
27954                                                   based on weight
27957                                                              <NA>
27958                                                              <NA>
27959                                                              <NA>
27960                                                              <NA>
27961                                                   based on weight
27962                                                              tube
27973                                                              <NA>
27974                                                      small amount
27981                                                     1 bottle/vial
27982                                             1 tablet/pill/capsule
27992                                                              dose
27999                                                     1 bottle/vial
28000                                             1 tablet/pill/capsule
28004                                                              <NA>
28006                                                              pump
28008                                                    1 pack/package
28009                                                              pump
28010                                                      pack/package
28011                                                              <NA>
28014                                                              <NA>
28015                                                              <NA>
28016                                               tablet/pill/capsule
28017                                               tablet/pill/capsule
28018                                               tablet/pill/capsule
28020                                                              <NA>
28023                                               tablet/pill/capsule
28024                                               tablet/pill/capsule
28025                                                      pack/package
28026                                                              <NA>
28029                                                   based on weight
28040                                                   based on weight
28045                                                              <NA>
28046                                                       unspecified
28047                                                       unspecified
28048                                                   based on weight
28049                                                   based on weight
28071                                                              <NA>
28073                                                   based on weight
28075                                                   based on weight
28076                                                   based on weight
28081                                                   based on weight
28087                                                              dose
28088                                                              dose
28089                                                              <NA>
28090                                                              <NA>
28094                                                              <NA>
28096                                                              <NA>
28098                                                              <NA>
28100                                                   based on weight
28101                                                   based on weight
28102                                               tablet/pill/capsule
28103                                               tablet/pill/capsule
28104                                               tablet/pill/capsule
28105                                               tablet/pill/capsule
28106                                                              <NA>
28107                                                              <NA>
28108                                                   based on weight
28109                                                   based on weight
28116                                                    1 pack/package
28119                                                   based on weight
28120                                               tablet/pill/capsule
28128                                                              <NA>
28129                                                              <NA>
28130                                                       combination
28131                                                              <NA>
28134                                               tablet/pill/capsule
28135                                             1 tablet/pill/capsule
28137                                                   based on weight
28138                                                              <NA>
28141                                                              <NA>
28143                                                   based on weight
28144                                                   based on weight
28150                                                              <NA>
28151                                                              <NA>
28152                                                              <NA>
28153                                                              <NA>
28154                                                              <NA>
28155                                                              <NA>
28156                                                              <NA>
28158                                                            collar
28162                                                   based on weight
28163                                                       as directed
28164                                          based on weight (60 lbs)
28165                                                              <NA>
28166                                             1 tablet/pill/capsule
28167                                                              <NA>
28168                                                              <NA>
28174                                                          ointment
28176                                                          ointment
28244                                                              <NA>
28245                                                              <NA>
28246                                               tablet/pill/capsule
28260                                                          ointment
28261                       272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                              <NA>
28263                                               tablet/pill/capsule
28264                                                       combination
28269                                               tablet/pill/capsule
28277                                               tablet/pill/capsule
28279                                                      small amount
28307                       2 mg prednisone, 5 mg trimeprazine tartrate
28309                          27 mg milbemycin oxime, 1620 mg spinosad
28311                          460 mg lufenuron, 23 mg milbemycin oxime
28316                                                            powder
28320                                                   based on weight
28325                                                              <NA>
28332                                                      small amount
28333                                                       unspecified
28371                                                      pack/package
28375                                               tablet/pill/capsule
28390                                                              <NA>
28392                                               tablet/pill/capsule
28393                                                              <NA>
28396                                                              <NA>
28397                                               tablet/pill/capsule
28398                                               tablet/pill/capsule
28399                                               tablet/pill/capsule
28400                                               tablet/pill/capsule
28401                                               tablet/pill/capsule
28403                                                   based on weight
28404                                               tablet/pill/capsule
28405                                                              <NA>
28407                                                              <NA>
28425                                                              <NA>
28427                                                              <NA>
28437                                                              <NA>
28448                                                              <NA>
28449                                                              <NA>
28453                                                              <NA>
28483                                             1 tablet/pill/capsule
28484                                                              <NA>
28486                                                             spray
28487                                                              <NA>
28488                                               tablet/pill/capsule
28505                                                     5 billion cfu
28507                                                                1%
28508                                                      small amount
28516     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28517                                                       application
28518                                                              <NA>
28519                                                              <NA>
28520                                                              <NA>
28528                                                              <NA>
28529                                                              <NA>
28530                                                              <NA>
28531                                                       billion cfu
28533                                                                 %
28534                                                              <NA>
28535                                                              <NA>
28536                                                                 %
28538                                                       billion cfu
28545                                                              <NA>
28549                                             1 tablet/pill/capsule
28552                                                   based on weight
28553                                                   based on weight
28554                                                   based on weight
28556                                                   based on weight
28557                                         based on weight (50+ lbs)
28571                                                   based on weight
28572                                                              <NA>
28573                                               tablet/pill/capsule
28574                                                            collar
28576                                               tablet/pill/capsule
28577                                                              <NA>
28580                                                        inch strip
28582                                                   based on weight
28583                                                            collar
28590                                                              <NA>
28601                                                       unspecified
28602                                                   based on weight
28603                                                              <NA>
28604                                                              <NA>
28605                                                            collar
28606                                                              <NA>
28610                                                              <NA>
28611                                                              <NA>
28612                                                              <NA>
28614                                                              <NA>
28616                                                              <NA>
28620                                                              <NA>
28621                                                              <NA>
28624                                                   syringe/pipette
28626                                                              <NA>
28630                                      based on weight (50-100 lbs)
28631                                      based on weight (60-120 lbs)
28632                                                              <NA>
28639                                                              <NA>
28660                                                           2 pumps
28668                                                       combination
28673                                                              <NA>
28674                                               tablet/pill/capsule
28675                                                              tube
28681                                      based on weight (50-100 lbs)
28685                                                              <NA>
28686                                                              <NA>
28687                                                              <NA>
28690                                                              <NA>
28691                                                   based on weight
28692                                                              <NA>
28693                                               tablet/pill/capsule
28694                                                     1 bottle/vial
28696                                               tablet/pill/capsule
28698                                                              <NA>
28699                                                              <NA>
28710                                                              <NA>
28714                                                              <NA>
28716                                                              <NA>
28717                                                              <NA>
28718                                                              <NA>
28719                                                              <NA>
28723                                                   based on weight
28726                                                   based on weight
28727                                                          ointment
28730                                                              <NA>
28731                                                              <NA>
28732                                                              <NA>
28735                                                              <NA>
28736                                                              <NA>
28750                                                       unspecified
28751                                                       unspecified
28762                                                              <NA>
28764                                                              <NA>
28765                                                              <NA>
28766                                                              <NA>
28768                                               tablet/pill/capsule
28772                                                              <NA>
28773                                                              <NA>
28780                                                       combination
28781                                                   based on weight
28782                                                   based on weight
28784                                                              <NA>
28806                                                   based on weight
28809                                                   based on weight
28818                                                   based on weight
28819                                                             drops
28826                                                             spray
28829                                                              <NA>
28831                                                              <NA>
28832                                                              <NA>
28833                                                              tube
28855                                                   based on weight
28873                                                              <NA>
28874                                                              <NA>
28882                                               tablet/pill/capsule
28883                                               tablet/pill/capsule
28884                                                              <NA>
28888                                                   based on weight
28893                                                   based on weight
28897                                                   based on weight
28898                                                   based on weight
28899                                                   based on weight
28900                                                   based on weight
28901                                                   based on weight
28904                                                   based on weight
28905                                                              <NA>
28906                                                              <NA>
28907                                                   based on weight
28910                                                   based on weight
28934                                               tablet/pill/capsule
28939                                                              <NA>
28940                                                              <NA>
28941                                                          ointment
28946                                                              <NA>
28979                                                   based on weight
28980                                                   based on weight
28982                                                   based on weight
28983                                             1 tablet/pill/capsule
28986                                             1 tablet/pill/capsule
28987                                                     1 application
28988                                                              <NA>
28998                                                              <NA>
28999                                                              <NA>
29000                                                              tube
29007                                                              <NA>
29008                                                              <NA>
29015                                                          ointment
29022                                                              <NA>
29023                                                              <NA>
29036                                                       application
29037                                                              <NA>
29039                                               tablet/pill/capsule
29040                                                              <NA>
29043                                                              <NA>
29050                                                             spray
29053                                                       application
29056                                      based on weight (60-120 lbs)
29060                                                       unspecified
29064                                                   based on weight
29067                                                              <NA>
29069                                                              <NA>
29070                                                        inch strip
29071                                                      small amount
29072                                                        inch strip
29073                                                        inch strip
29075                                                        inch strip
29078                                                              <NA>
29079                                                   0.25 inch strip
29080                                               tablet/pill/capsule
29081                                                        inch strip
29082                                               tablet/pill/capsule
29083                                                      pack/package
29086                                                              <NA>
29087                                                              <NA>
29091                                                              <NA>
29092                                                              <NA>
29095                                                   based on weight
29096                                                   based on weight
29097                                                              <NA>
29098                                                              <NA>
29099                                                              <NA>
29100                                                              <NA>
29103                                                              <NA>
29104                                                              <NA>
29108                                                             spray
29135                                                              <NA>
29136                                                   based on weight
29139                                                      small amount
29143                                                              <NA>
29150                                                              <NA>
29151                                                       bottle/vial
29152                                                              <NA>
29153                                                              <NA>
29154                                                              tube
29161                                                      small amount
29166                                                       application
29183                                                   based on weight
29184                                      based on weight (50-100 lbs)
29196                                                        inch strip
29197                                               tablet/pill/capsule
29220                                                      small amount
29232                                                              <NA>
29234                                                              <NA>
29235                                                              <NA>
29244                                                              <NA>
29245                                                              <NA>
29248                                                              <NA>
29283                                                              <NA>
29285                                                              <NA>
29291                                                             spray
29293                                               tablet/pill/capsule
29298                                                              <NA>
29313                                                              <NA>
29315                                               tablet/pill/capsule
29321                                                        inch strip
29324                                                       unspecified
29327                                                       unspecified
29328                                                   based on weight
29330                                       based on weight (44-88 lbs)
29331                                      based on weight (50-100 lbs)
29332                                       based on weight (44-88 lbs)
29340                                                              <NA>
29342                                                              <NA>
29374                                                              <NA>
29375                                                              <NA>
29376                                                   based on weight
29377                                                              <NA>
29378                                                              <NA>
29379                                                              <NA>
29380                                                       unspecified
29381                                                   based on weight
29382                                                   based on weight
29383                                                   based on weight
29395                                                              <NA>
29397                                                              <NA>
29404                                                              <NA>
29405                                                              <NA>
29406                                                              <NA>
29428                                                              pump
29438                                                      small amount
29446                                                      small amount
29447                                                      small amount
29453                                                      small amount
29469                                               tablet/pill/capsule
29470                                                            collar
29471                                                              <NA>
29472                                                   based on weight
29475                                                   based on weight
29479                                                   based on weight
29480                                                   based on weight
29481                                                   based on weight
29482                                                   based on weight
29483                                                   based on weight
29490                                                   based on weight
29499                                                              <NA>
29500                                                              <NA>
29501                                             1 tablet/pill/capsule
29502                                             1 tablet/pill/capsule
29504                                               tablet/pill/capsule
29505                                                              tube
29506                                                              <NA>
29509                                                              <NA>
29511                                             1 tablet/pill/capsule
29525                                                   based on weight
29526                                                   based on weight
29531                                               tablet/pill/capsule
29532                                                              <NA>
29533                                                              <NA>
29534                                                              <NA>
29535                                                              <NA>
29536                                               tablet/pill/capsule
29537                                                              <NA>
29538                                                              <NA>
29539                                                              <NA>
29540                                               tablet/pill/capsule
29567                                                   based on weight
29568                                                              <NA>
29572                                                              dose
29573                                               tablet/pill/capsule
29574                                                              <NA>
29575                                                              <NA>
29578                                                   based on weight
29579                                                                gm
29580                                             1 tablet/pill/capsule
29583                                                   based on weight
29588                                                   based on weight
29589                                                   based on weight
29592                                                              <NA>
29601                                                              <NA>
29602                                                              <NA>
29604                                                              <NA>
29606                                                              <NA>
29608                                       based on weight (44-88 lbs)
29617                                             1 tablet/pill/capsule
29626                                                              <NA>
29633                                                              <NA>
29662                                                              <NA>
29666                                                              <NA>
29669                                                              <NA>
29670                                                              <NA>
29678                                                              <NA>
29679                                                   based on weight
29691                                                              <NA>
29692                                                              <NA>
29693                                                              <NA>
29694                                                              <NA>
29695                                                              <NA>
29696                                                              <NA>
29697                                                              <NA>
29698                                                              <NA>
29699                                                              <NA>
29700                                                              <NA>
29705                                                              <NA>
29707                                                              <NA>
29709                                                              tube
29715                                                            collar
29716                                                            collar
29719                                                            collar
29720                                                              <NA>
29722                                                            collar
29724                                                              <NA>
29726                                                            collar
29729                                                              <NA>
29730                                                              <NA>
29733                                                              <NA>
29734                                                              <NA>
29736                                                   based on weight
29744                                                   based on weight
29749                                                                mg
29753                                                              <NA>
29755                                                   based on weight
29764                                                       unspecified
29765                                                       unspecified
29766                                                   based on weight
29767                                                   based on weight
29770                                                   based on weight
29771                                                   based on weight
29772                                                   based on weight
29794                                                              <NA>
29797                                                              <NA>
29798                                                              <NA>
29799                                                              <NA>
29800                                                              <NA>
29801                                                          wipe/pad
29802                                                              <NA>
29803                                                              <NA>
29822                                               tablet/pill/capsule
29823                                               tablet/pill/capsule
29824                                                              <NA>
29825                                                              <NA>
29827                                                              <NA>
29829                                                              <NA>
29831                                                              <NA>
29832                                                              <NA>
29838                                                              <NA>
29839                                                              <NA>
29840                                                              <NA>
29847                                                              <NA>
29848                                                              <NA>
29851                                                              <NA>
29857                                                   based on weight
29858                                                              <NA>
29859                                                              <NA>
29860                                                              <NA>
29861                                                              <NA>
29862                                                              <NA>
29865                                                              <NA>
29880                                                              <NA>
29882                                                   based on weight
29883                                                   based on weight
29906                                                              <NA>
29907                                                              <NA>
29933                                       based on weight (25-50 lbs)
29937                                                   based on weight
29940                                      based on weight (50-100 lbs)
29941                                                   based on weight
29943                                                   based on weight
29948                                                           2 tubes
29954                                             1 tablet/pill/capsule
29955                                                            1 tube
29956                                      based on weight (50-100 lbs)
29957                                                   based on weight
29963                                                   based on weight
29964                                                   based on weight
29966                                                              <NA>
29969                                                   based on weight
29970                                                   based on weight
29978                                                              <NA>
29990                                         based on weight (55+ lbs)
29991                                                              <NA>
29993                                                              <NA>
30001                                                              <NA>
30048                                                              <NA>
30067                                                   based on weight
30068                                                   based on weight
30070                                                        inch strip
30075                                                      pack/package
30076                                               tablet/pill/capsule
30081                                                   based on weight
30082                                                   based on weight
30083                                                   based on weight
30095                                                   based on weight
30096                                                   based on weight
30098                                                              <NA>
30099                                                   based on weight
30104                                                              <NA>
30105                                                              <NA>
30127                                                              <NA>
30131                                                              <NA>
30132                                                              <NA>
30138                                                              <NA>
30142                                                              <NA>
30143                                                      small amount
30162                                                              <NA>
30164                                                              <NA>
30165                                                              <NA>
30166                                                              <NA>
30169                                                      pack/package
30172                                                              <NA>
30174                                                              <NA>
30178                                                          ointment
30179                                                              <NA>
30185                       272 mcg ivermectin, 227 mg pyrantel pamoate
30186                                                              <NA>
30191                                                              <NA>
30192                                                              <NA>
30193                                                              <NA>
30198                                                              <NA>
30211                                               tablet/pill/capsule
30212                                               tablet/pill/capsule
30213                                                  2 packs/packages
30214                                                              tube
30218                                             1 tablet/pill/capsule
30221                                             1 tablet/pill/capsule
30239                                                              <NA>
30241                                                              <NA>
30242                                                              <NA>
30246                                                              <NA>
30263                                             1 tablet/pill/capsule
30264                                             1 tablet/pill/capsule
30268                                             1 tablet/pill/capsule
30269                                                            1 tube
30270                                                   based on weight
30271                                                   based on weight
30274                                                   based on weight
30275                                                   based on weight
30277                                                   based on weight
30278                                                   based on weight
30284                                                   based on weight
30285                                                   based on weight
30286                                                   based on weight
30290                                                   based on weight
30291                                                   based on weight
30298                                                   based on weight
30299                                                              <NA>
30300                                                              <NA>
30306                                                              <NA>
30310                                                   based on weight
30311                                                        inch strip
30312                                                         1-2 pumps
30313                                                   based on weight
30317                                                      small amount
30319                                                      small amount
30320                                      based on weight (50-100 lbs)
30321                                       based on weight (44-88 lbs)
30327                                                   0.25 inch strip
30329                                                              <NA>
30337                                                             spray
30338                                                              <NA>
30344                                                   based on weight
30347                          27 mg milbemycin oxime, 1620 mg spinosad
30350                                                   based on weight
30351                                                   based on weight
30352                                                   based on weight
30353                                                             drops
30354                                                             drops
30355                                                      small amount
30356                                                              <NA>
30357                                                             spray
30358                                                              <NA>
30359                                                              <NA>
30360                                                      pack/package
30361                                               tablet/pill/capsule
30366                                                              <NA>
30367                                                              <NA>
30368                                                              <NA>
30371                                                              <NA>
30372                                                   based on weight
30373                                                                 1
30374                                                                 1
30375                                                                 1
30376                                               tablet/pill/capsule
30377                                                              <NA>
30378                                                              <NA>
30383                                                   based on weight
30384                                                   based on weight
30385                                                   based on weight
30386                                                   based on weight
30387                                                       unspecified
30388                                                              <NA>
30389                                                       unspecified
30395                                                   based on weight
30396                                                   based on weight
30403                                                   based on weight
30404                                                   based on weight
30405                                                              <NA>
30406                                                              <NA>
30418                                                              <NA>
30450                                                              <NA>
30464                                                              <NA>
30471                                                              <NA>
30479                                         based on weight (55+ lbs)
30480                       272 mcg ivermectin, 227 mg pyrantel pamoate
30483                                         based on weight (55+ lbs)
30484                                                              <NA>
30485                                                              <NA>
30492                                                              <NA>
30494                                                              <NA>
30496                                                               50%
30515                                                              <NA>
30523                                                              <NA>
30528                                                              <NA>
30529                                                              <NA>
30534                                                              <NA>
30536                                                             drops
30541                                                              <NA>
30555                                      based on weight (50-100 lbs)
30556                                                              <NA>
30573                                                              <NA>
30574                                                              <NA>
30590                                                   based on weight
30602                                                   based on weight
30604                                                   based on weight
30607                                                   based on weight
30608                                                   based on weight
30619                                                              <NA>
30620                                                              <NA>
30623                                                              <NA>
30644                                                              <NA>
30685                                               tablet/pill/capsule
30689                                               tablet/pill/capsule
30692                                                      small amount
30700                                                   based on weight
30701                                               tablet/pill/capsule
30702                                                              <NA>
30707                                                   based on weight
30708                                                   based on weight
30709                                               tablet/pill/capsule
30710                                               tablet/pill/capsule
30713                                                              <NA>
30714                                                              <NA>
30717                                                              <NA>
30730                                                              <NA>
30752                                                              <NA>
30753                                                   based on weight
30754                                                              <NA>
30756                                                              <NA>
30757                                                              <NA>
30758                                               tablet/pill/capsule
30764                                                              <NA>
30765                                                              <NA>
30766                                                              <NA>
30768                                                              <NA>
30769                                                              <NA>
30779                                                   based on weight
30784                                                             scoop
30792                                                              <NA>
30793                                               tablet/pill/capsule
30794                                                              <NA>
30796                                               tablet/pill/capsule
30797                                               tablet/pill/capsule
30799                                                   based on weight
30800                                                   based on weight
30803                                                             scoop
30811                                                              tube
30812                                                              <NA>
30813                                                              <NA>
30814                                                              <NA>
30815                                                              <NA>
30816                                                              <NA>
30817                                                              <NA>
30819                                                              tube
30820                                               tablet/pill/capsule
30821                                                            250 mg
30822                                               tablet/pill/capsule
30823                                                   syringe/pipette
30824                                                   syringe/pipette
30826                                               tablet/pill/capsule
30833                                               tablet/pill/capsule
30834                                                              tube
30840                                                              <NA>
30844                                                       combination
30876                                                              <NA>
30877                                                              <NA>
30893                                                              <NA>
30901                                                        inch strip
30909                                                              <NA>
30917                                                             spray
30919                                                              <NA>
30920                                                              <NA>
30936                                                              <NA>
30943                                                              <NA>
30944                                                              <NA>
30945                                                              <NA>
30947                                               tablet/pill/capsule
30948                                               tablet/pill/capsule
30949                                                              <NA>
30953                                                              <NA>
30960                                                              <NA>
30961                                                              <NA>
30962                                               tablet/pill/capsule
30963                                                              <NA>
30998                                                   based on weight
30999                                                   based on weight
31000                                                            1 tube
31001                                               tablet/pill/capsule
31003                                                            1 tube
31004                                                   based on weight
31010                                      based on weight (50-100 lbs)
31011                                         based on weight (55+ lbs)
31012                                                              <NA>
31016                                                              <NA>
31022                                                   based on weight
31023                                                   based on weight
31034                                                              <NA>
31043                                                   based on weight
31046                                             1 tablet/pill/capsule
31089                                                              <NA>
31094                                               tablet/pill/capsule
31095                                               tablet/pill/capsule
31096                                               tablet/pill/capsule
31097                                                              <NA>
31098                                                              <NA>
31105                                                   based on weight
31106                                                   based on weight
31132                                                      small amount
31133                                               tablet/pill/capsule
31134                                               tablet/pill/capsule
31135                                               tablet/pill/capsule
31136                                                              <NA>
31137                                                              <NA>
31138                                                              <NA>
31139                                                              <NA>
31142                                                              <NA>
31148                                                              <NA>
31149                                                              <NA>
31152                                                              <NA>
31154                                                              <NA>
31183                                                              <NA>
31186                                                              <NA>
31195                                                              <NA>
31196                                                              <NA>
31197                                                      pack/package
31198                                                              <NA>
31199                                               tablet/pill/capsule
31200                                                              <NA>
31203                                                              <NA>
31209                                                              <NA>
31228                                                                 %
31232                                                                 %
31233                                                              <NA>
31234                                                                 %
31235                                                              <NA>
31243                                                              <NA>
31245                                                              <NA>
31247                                                              <NA>
31248                                                                 %
31249                                                              <NA>
31250                                                                 %
31260                                                   based on weight
31263                                                   based on weight
31264                                                   based on weight
31265                                                              <NA>
31268                                                          inhalant
31284                                                   based on weight
31297                                                              <NA>
31299                                                              <NA>
31300                                                              <NA>
31301                                                              <NA>
31303                                                              <NA>
31307                                                              tube
31308                                               tablet/pill/capsule
31309                                                         2.6 mg/lb
31317                                                            cup(s)
31322                                                              <NA>
31328                                                              <NA>
31330                                                              <NA>
31350                                                              <NA>
31353                                                              <NA>
31356                                                      small amount
31357                                             1 tablet/pill/capsule
31358                                             1 tablet/pill/capsule
31359                                             1 tablet/pill/capsule
31360                                             1 tablet/pill/capsule
31361                                                   based on weight
31363                                                   based on weight
31365                                             1 tablet/pill/capsule
31366                                             1 tablet/pill/capsule
31367                                                              tube
31369                                                          wipe/pad
31370                                                       application
31371                                                              <NA>
31373                                                              <NA>
31374                                                              <NA>
31375                                                   based on weight
31380                                                              <NA>
31381                                                              <NA>
31383                                             1 tablet/pill/capsule
31384                                             1 tablet/pill/capsule
31385                                             1 tablet/pill/capsule
31386                                             1 tablet/pill/capsule
31389                                             1 tablet/pill/capsule
31408                       272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                              <NA>
31411                                                              <NA>
31412                                                              <NA>
31413                                                              <NA>
31414                                               tablet/pill/capsule
31415                                               tablet/pill/capsule
31416                                                              <NA>
31417                                                              <NA>
31418                                                              <NA>
31419                                                              <NA>
31420                                                              <NA>
31423                                                              <NA>
31434                                                              <NA>
31437                                          2 tablets/pills/capsules
31438                                                      small amount
31439                                                              <NA>
31440                                                              <NA>
31441                                                              dose
31446                                                      small amount
31447                                                      small amount
31449                                               tablet/pill/capsule
31450                                               tablet/pill/capsule
31452                                                              <NA>
31457                                                              <NA>
31463                                                              <NA>
31471                                               tablet/pill/capsule
31502                                                   based on weight
31503                                                   based on weight
31504                                                   based on weight
31506                                               tablet/pill/capsule
31507                                                              <NA>
31508                                                              dose
31528                                                   based on weight
31529                                                   based on weight
31531                                               tablet/pill/capsule
31539                                                                 %
31542                                                              <NA>
31548                                                              <NA>
31551                                                              <NA>
31552                                                              <NA>
31553                                                              <NA>
31599                                                              <NA>
31602                                      based on weight (50-100 lbs)
31603                                       based on weight (44-88 lbs)
31611                                                      small amount
31612                                                      small amount
31616                                             1 tablet/pill/capsule
31617                                                              dose
31618                                                              dose
31619                                             1 tablet/pill/capsule
31637                                             1 tablet/pill/capsule
31638                                             1 tablet/pill/capsule
31640                                                      small amount
31641                                                              <NA>
31643                                               tablet/pill/capsule
31644                                                              <NA>
31645                                                              <NA>
31646                                             1 tablet/pill/capsule
31647                                             1 tablet/pill/capsule
31651                                                              <NA>
31652                                                      small amount
31653                                                              <NA>
31654                                                              <NA>
31655                                                              <NA>
31656                                                              <NA>
31657                                                              <NA>
31665                                               tablet/pill/capsule
31666                                               tablet/pill/capsule
31678                                                   based on weight
31679                                                   based on weight
31680                                               tablet/pill/capsule
31687                                                   based on weight
31688                                                   based on weight
31689                                                   based on weight
31696                                       based on weight (44-88 lbs)
31707                                               tablet/pill/capsule
31713                       272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                              <NA>
31725                                                              <NA>
31726                                                            1 tube
31727                                             1 tablet/pill/capsule
31730                                                              <NA>
31731                                                              <NA>
31734                                               tablet/pill/capsule
31735                                                              <NA>
31736                                                      pack/package
31737                                                            powder
31742                                                              <NA>
31747                                               tablet/pill/capsule
31748                                                              <NA>
31760                                               tablet/pill/capsule
31761                                                              <NA>
31762                                                   based on weight
31763                                                   based on weight
31765                                      based on weight (50-100 lbs)
31766                                       based on weight (44-88 lbs)
31768                                                              <NA>
31769                                                              <NA>
31771                                                              <NA>
31773                                                              <NA>
31774                                                              <NA>
31777                                               tablet/pill/capsule
31780                                                              <NA>
31781                                                              <NA>
31798                                                   based on weight
31800                                                   based on weight
31803                                                   based on weight
31804                                             1 tablet/pill/capsule
31807                                                            1 tube
31808                                             1 tablet/pill/capsule
31810                                      based on weight (50-100 lbs)
31811                                       based on weight (44-88 lbs)
31818                                       based on weight (44-88 lbs)
31819                                      based on weight (50-100 lbs)
31824                                      based on weight (50-100 lbs)
31825                                       based on weight (44-88 lbs)
31826                                                      small amount
31833                                                              <NA>
31834                                                             spray
31836                                                              <NA>
31837                                                   0.25 inch strip
31840                                                   based on weight
31841                                                              <NA>
31842                                                            1 pump
31843                                                              <NA>
31844                                                              <NA>
31845                                                              <NA>
31846                                                            collar
31847                          460 mg lufenuron, 23 mg milbemycin oxime
31848                                                              <NA>
31849                                                              1 ml
31850                                                              <NA>
31853                                                              <NA>
31861                                                              <NA>
31864                                                              <NA>
31866                                                              <NA>
31868                                                   based on weight
31869                                             1 tablet/pill/capsule
31873                                                              <NA>
31874                                                   based on weight
31876                                                      small amount
31880                                                              <NA>
31883                                                   based on weight
31885                                                   based on weight
31888                                                       unspecified
31891                                                   based on weight
31892                                                   based on weight
31895                                                         per month
31896                                                         per month
31897                                             1 tablet/pill/capsule
31898                                             1 tablet/pill/capsule
31906                                                            powder
31907                                                              <NA>
31908                                                              <NA>
31909                                             1 tablet/pill/capsule
31911                                               tablet/pill/capsule
31916                                                   based on weight
31917                                                   based on weight
31930                                                              <NA>
31937                                                              <NA>
31938                                                              <NA>
31939                                                              <NA>
31940                                                              <NA>
31941                                                              <NA>
31942                                             1 tablet/pill/capsule
31945                                                              <NA>
31946                                                              <NA>
31947                                                              <NA>
31948                                                              <NA>
31953                                                              <NA>
31954                                               tablet/pill/capsule
31955                                               tablet/pill/capsule
31967                                                              <NA>
31968                                                              <NA>
31969                                                   based on weight
31985                                                              <NA>
31990                                                   based on weight
31991                                                   based on weight
31993                                                   based on weight
32002                                                              <NA>
32003                                                              <NA>
32006                                                              <NA>
32015                                                              <NA>
32016                                               tablet/pill/capsule
32020                                                              <NA>
32025                                                       unspecified
32032                                                              <NA>
32034                                                              <NA>
32035                                                              <NA>
32040                                               tablet/pill/capsule
32046                                                              <NA>
32053                                             1 tablet/pill/capsule
32054                                                     1 application
32055                                                              <NA>
32056                                             1 tablet/pill/capsule
32057                                             1 tablet/pill/capsule
32058                                             1 tablet/pill/capsule
32059                                               tablet/pill/capsule
32060                                               tablet/pill/capsule
32074                                                      small amount
32076                                                   based on weight
32078                                                   based on weight
32079                                                   based on weight
32080                                                   based on weight
32084                                                        inch strip
32095                                               tablet/pill/capsule
32097                                               tablet/pill/capsule
32098                                               tablet/pill/capsule
32099                                               tablet/pill/capsule
32100                                                   based on weight
32101                                                   based on weight
32102                                               tablet/pill/capsule
32103                                               tablet/pill/capsule
32104                                               tablet/pill/capsule
32105                                                   based on weight
32106                                                   based on weight
32108                                                   based on weight
32114                                                                 %
32116                                                                 %
32119                                                              <NA>
32121                                                           monthly
32122                                                           monthly
32123                                                              <NA>
32128                                                              <NA>
32129                                                              <NA>
32131                                                              <NA>
32132                                                              <NA>
32133                                          based on weight (74 lbs)
32134                                          based on weight (74 lbs)
32139                                                   based on weight
32140                                                   based on weight
32146                                                   based on weight
32147                                                   based on weight
32153                                                   based on weight
32154                                                   based on weight
32160                                                   based on weight
32161                                                   based on weight
32168                                                            powder
32171                                                              <NA>
32175                                                              <NA>
32179                                             1 tablet/pill/capsule
32180                                             1 tablet/pill/capsule
32183                                                              <NA>
32184                                                              <NA>
32187                                                              <NA>
32196                                                            powder
32212                                                              <NA>
32221                                                              <NA>
32222                                                   based on weight
32231                                      based on weight (50-100 lbs)
32232                                       based on weight (44-88 lbs)
32233                                             1 tablet/pill/capsule
32234                                             1 tablet/pill/capsule
32236                                      based on weight (50-100 lbs)
32237                                       based on weight (24-60 lbs)
32251                                                   based on weight
32252                                                   based on weight
32266                                                              puff
32276                                                              <NA>
32290                                                          inhalant
32295                                               tablet/pill/capsule
32296                                               tablet/pill/capsule
32297                                                              <NA>
32310                                                             spray
32312                                               tablet/pill/capsule
32313                                               tablet/pill/capsule
32315                                                        inch strip
32320                                                              <NA>
32343                                                        inch strip
32354                                                              <NA>
32355                                                              <NA>
32356                                                              <NA>
32358                                                              <NA>
32359                                                              <NA>
32360                                                              <NA>
32362                                                              <NA>
32363                                                       unspecified
32364                                                              <NA>
32365                                                              <NA>
32366                                                              <NA>
32370                                                          ointment
32384                                                   based on weight
32389                                                   based on weight
32390                                                              <NA>
32393                                                   based on weight
32394                                                              <NA>
32397                                                              <NA>
32417                                      based on weight (50-100 lbs)
32425                                                              <NA>
32426                                                              <NA>
32427                                                              <NA>
32445                                                              <NA>
32447                                                              <NA>
32448                                                              <NA>
32449                                                              <NA>
32460                                                              <NA>
32463                                               tablet/pill/capsule
32464                                               tablet/pill/capsule
32466                                             1 tablet/pill/capsule
32467                                             1 tablet/pill/capsule
32475                                                              <NA>
32476                                                              <NA>
32477                                               tablet/pill/capsule
32478                                               tablet/pill/capsule
32504                                               tablet/pill/capsule
32505                                                       application
32507                                                              <NA>
32509                                               tablet/pill/capsule
32510                                                      small amount
32511                                      based on weight (50-100 lbs)
32512                                         based on weight (56+ lbs)
32513                                                      small amount
32520                                                              <NA>
32521                                                              <NA>
32529                                                              dose
32530                                      based on weight (50-100 lbs)
32535                                                   based on weight
32536                                                   based on weight
32538                                                   moderate amount
32542                                                              <NA>
32557                       272 mcg ivermectin, 227 mg pyrantel pamoate
32558                                                   based on weight
32561                                                       as directed
32562                                                       as directed
32575                                                              <NA>
32576                                                              <NA>
32629                                                       unspecified
32631                                                   based on weight
32632                                                   based on weight
32633                                                       unspecified
32635                                                   based on weight
32637                                                             spray
32639                                                   based on weight
32640                                                   based on weight
32642                                      based on weight (50-100 lbs)
32643                                      based on weight (50-100 lbs)
32652                                                              <NA>
32654                                                       unspecified
32657                                                              <NA>
32664                                                   based on weight
32670                                                              <NA>
32672                                                    shampoo/mousse
32673                                                       combination
32678                                                              <NA>
32680                                                              <NA>
32682                                                              <NA>
32685                                                              <NA>
32692                                       based on weight (40-60 lbs)
32694                                                             spray
32695                                                   based on weight
32698                                               tablet/pill/capsule
32703                                      based on weight (60-120 lbs)
32708                                                              <NA>
32726                                                              <NA>
32737                                                              <NA>
32739                                               tablet/pill/capsule
32740                                                   based on weight
32742                                               tablet/pill/capsule
32743                                               tablet/pill/capsule
32744                                             1 tablet/pill/capsule
32745                                             1 tablet/pill/capsule
32750                                             1 tablet/pill/capsule
32751                                             1 tablet/pill/capsule
32767                                                       unspecified
32768                                               tablet/pill/capsule
32769                                                              <NA>
32770                                               tablet/pill/capsule
32777                                                              <NA>
32798                                                       bottle/vial
32815                                                            powder
32829                                                   syringe/pipette
32841                                                              <NA>
32844                                                              <NA>
32849                                               tablet/pill/capsule
32850                                               tablet/pill/capsule
32856                                       based on weight (44-88 lbs)
32857                                                              <NA>
32858                                                              <NA>
32859                                                              <NA>
32860                                                              <NA>
32862                                                              <NA>
32863                                                              <NA>
32869                                                       unspecified
32870                                                              <NA>
32871                                                              <NA>
32879                                               tablet/pill/capsule
32883                                               tablet/pill/capsule
32884                                                              <NA>
32887                                                   0.25 inch strip
32888                                                      small amount
32903                                                              <NA>
32912                                                              <NA>
32915                                                   based on weight
32923                                                       unspecified
32930     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32937                                                              <NA>
32938                                               tablet/pill/capsule
32939                                                              <NA>
32940                                                       application
32942                                               tablet/pill/capsule
32943                                               tablet/pill/capsule
32944                                               tablet/pill/capsule
32949                                                       application
32950                                                              <NA>
32951                                             1 tablet/pill/capsule
32952                                             1 tablet/pill/capsule
32953                                                              <NA>
32954                                                              <NA>
32955                                                              <NA>
32956                                                              <NA>
32964                                                              <NA>
32965                                                              <NA>
32983                                                              <NA>
32999                                                   based on weight
33000                                                   based on weight
33004                                                   based on weight
33005                                                   based on weight
33008                                                       bottle/vial
33009                                               tablet/pill/capsule
33010                                                              <NA>
33011                                                              <NA>
33014                                                              <NA>
33015                                                   based on weight
33018                                                   based on weight
33022                                                              <NA>
33023                                                      pack/package
33027                                                              <NA>
33043                                                              <NA>
33047                                                              <NA>
33066                                                       bottle/vial
33067                                                       bottle/vial
33068                                                              <NA>
33073                                                              <NA>
33074                                                   based on weight
33075                                                   based on weight
33077                                                   based on weight
33078                                                   based on weight
33079                                                   based on weight
33080                                                   based on weight
33081                                               tablet/pill/capsule
33085                                                       bottle/vial
33086                                                              <NA>
33087                                                              <NA>
33088                                                              <NA>
33089                                                              <NA>
33090                                                              <NA>
33091                                                              <NA>
33092                                               tablet/pill/capsule
33096                                               tablet/pill/capsule
33107                                                              <NA>
33108                                                              <NA>
33110                                                   based on weight
33113                                                   based on weight
33123                                                              <NA>
33124                                                             spray
33125                                               tablet/pill/capsule
33126                                                             spray
33128                                                              dose
33132                                      based on weight (60-120 lbs)
33133                                      based on weight (50-100 lbs)
33138                                             1 tablet/pill/capsule
33157                                                              <NA>
33159                                                              <NA>
33166                                                   based on weight
33187                                                              <NA>
33188                                                              <NA>
33189                                                              <NA>
33190                                                              <NA>
33191                                                      small amount
33209                                                             spray
33211                                                   based on weight
33212                                                   based on weight
33220                                               tablet/pill/capsule
33222                                                   based on weight
33223                                                   based on weight
33226                                                              <NA>
33227                                                      pack/package
33229                                                            1 tube
33230                                               tablet/pill/capsule
33233                                                      pack/package
33235                                             1 tablet/pill/capsule
33236                                                              <NA>
33239                                                              <NA>
33242                                                   based on weight
33243                                                   based on weight
33271                                                              <NA>
33286                                                              <NA>
33289                                               tablet/pill/capsule
33292                                               tablet/pill/capsule
33293                                                              <NA>
33317                                                              <NA>
33318                                                           2.68 ml
33327                                                   based on weight
33333                                                              <NA>
33335                                                              <NA>
33336                                               tablet/pill/capsule
33338                                                              <NA>
33347                                       based on weight (70-80 lbs)
33354                                                              <NA>
33355                                                              <NA>
33358                                      based on weight (50-100 lbs)
33363                                               tablet/pill/capsule
33364                                               tablet/pill/capsule
33369                                                              <NA>
33370                                                              <NA>
33374                                                              <NA>
33375                                                              <NA>
33376                                                              <NA>
33377                                                              <NA>
33385                                                              <NA>
33387                                                              <NA>
33389                                                              <NA>
33410                                               tablet/pill/capsule
33411                                                            collar
33412                                               tablet/pill/capsule
33414                                                            collar
33416                                                              <NA>
33419                                                   based on weight
33456                                                              <NA>
33468                                                       bottle/vial
33471                                                              <NA>
33479                                      based on weight (60-120 lbs)
33480                                                           monthly
33482                                                              <NA>
33489                                                       unspecified
33490                                                              <NA>
33491                                                              <NA>
33492                                                              <NA>
33493                                                              <NA>
33497                                             1 tablet/pill/capsule
33499                                                              <NA>
33500                                             1 tablet/pill/capsule
33502                                                              <NA>
33504                                                              <NA>
33521                                                              <NA>
33539                                                            collar
33541                                                            collar
33542                                                              <NA>
33543                                                            collar
33544                                                            collar
33573                                                   based on weight
33576                                                              <NA>
33577                                                   based on weight
33580                                               tablet/pill/capsule
33581                                                       application
33582                                                              <NA>
33583                                                              <NA>
33590                                      based on weight (50-100 lbs)
33591                                               tablet/pill/capsule
33592                       23 mg milbemycin oxime, 228 mg praziquantel
33601                                                   based on weight
33602                                                   based on weight
33614                                                              <NA>
33641                                      based on weight (50-100 lbs)
33644                                                   based on weight
33645                                                   based on weight
33647                                                              <NA>
33649                                               tablet/pill/capsule
33651                                               tablet/pill/capsule
33653                                                              <NA>
33655                                               tablet/pill/capsule
33665                                                   based on weight
33666                                                   based on weight
33667                                                   based on weight
33683                                               tablet/pill/capsule
33684                                                       unspecified
33690                                                              <NA>
33691                                                              <NA>
33692                                                              <NA>
33693                                                              <NA>
33694                                                              <NA>
33695                                                              <NA>
33696                                                       combination
33697                                                              <NA>
33702                                                          3 scoops
33704                                                              <NA>
33706                                                              <NA>
33710                                                   based on weight
33711                                                   based on weight
33714                                                              dose
33717                                               tablet/pill/capsule
33722                                                       application
33723                                                              dose
33724                                                   based on weight
33725                                                   based on weight
33737                                                       as directed
33739                                      based on weight (60-120 lbs)
33740                                      based on weight (60-120 lbs)
33756                                                              <NA>
33767                                                              <NA>
33797                                                   based on weight
33798                                                   based on weight
33804                                                              dose
33805                                                              dose
33815                                                              <NA>
33818                                                              <NA>
33822                                                              <NA>
33823                                                              <NA>
33824                                                              <NA>
33825                                                              <NA>
33828                                                              <NA>
33844                                                              <NA>
33850                                                              <NA>
33868                                                   based on weight
33869                                                              <NA>
33870                                                   based on weight
33882                                                              <NA>
33885                                                   based on weight
33890                                                              <NA>
33894                                                      small amount
33901                                                       unspecified
33905                                                             spray
33907                                                             spray
33909                                                      small amount
33911                                                       application
33913                                                             spray
33914                                                             spray
33916                                                              <NA>
33919                                                      small amount
33927                                                              tube
33929                                                              <NA>
33939                                                          ointment
33940                                                            powder
33987                                               tablet/pill/capsule
33988                                               tablet/pill/capsule
33989                                                              tube
33990                                               tablet/pill/capsule
33991                                                      small amount
33992                                               tablet/pill/capsule
33993                                               tablet/pill/capsule
33994                                                              <NA>
33995                                               tablet/pill/capsule
33998                                                         as needed
34000                                               tablet/pill/capsule
34002                                               tablet/pill/capsule
34003                                                              <NA>
34005                                               tablet/pill/capsule
34011                                                              <NA>
34012                                                              <NA>
34014                                                       unspecified
34015                                                   based on weight
34016                                                       unspecified
34020                                                   based on weight
34021                                                   based on weight
34022                                                       unspecified
34024                                                       unspecified
34025                                                   based on weight
34026                                                   based on weight
34027                                                   based on weight
34028                                                   based on weight
34029                                                       unspecified
34030                                                   based on weight
34031                                                   based on weight
34043                                                   based on weight
34044                                      based on weight (50-100 lbs)
34046                                                              <NA>
34047                                               tablet/pill/capsule
34048                                               tablet/pill/capsule
34049                                                            collar
34051                                                              <NA>
34053                                               tablet/pill/capsule
34054                                                            collar
34069                                                              <NA>
34070                                                              <NA>
34071                                                              <NA>
34072                                                              <NA>
34073                                                              <NA>
34074                                                              <NA>
34075                                                              <NA>
34077                                                   based on weight
34087                                             1 tablet/pill/capsule
34090                                                      small amount
34091                                             1 tablet/pill/capsule
34092                                                              <NA>
34093                                                            collar
34094                                                              <NA>
34095                                                              <NA>
34096                                                   based on weight
34105                                                              pump
34107                                                              <NA>
34108                                                              <NA>
34109                                                      pack/package
34110                                                              <NA>
34111                                                              <NA>
34112                                                              <NA>
34113                                                              <NA>
34115                                                              <NA>
34125                                                            1 tube
34126                                             1 tablet/pill/capsule
34128                                                  1-2 applications
34132                                      based on weight (50-100 lbs)
34134                                               tablet/pill/capsule
34135                                                     1 application
34138                                                      pack/package
34140                                                              <NA>
34147                                               tablet/pill/capsule
34148                                               tablet/pill/capsule
34152                                                            powder
34155                                                       unspecified
34156                                                              <NA>
34157                                                              <NA>
34161                                                              <NA>
34162                                                              <NA>
34227                                                             scoop
34230                                                              <NA>
34231                                                              <NA>
34232                                                              <NA>
34233                                                              <NA>
34234                                                              <NA>
34235                                                              <NA>
34238                                               tablet/pill/capsule
34239                                                              <NA>
34240                                                              <NA>
34241                                                              <NA>
34242                                                              <NA>
34243                                                              <NA>
34246                                                              <NA>
34247                                                              <NA>
34249                                                   based on weight
34254                                             1 tablet/pill/capsule
34260                                                              <NA>
34262                                                              <NA>
34264                                                              <NA>
34267                                                              <NA>
34268                                                      small amount
34269                                                      small amount
34282                                                              pump
34287                                                              <NA>
34288                                                              <NA>
34289                                                              <NA>
34290                                                              <NA>
34293                                                              <NA>
34304                                                              <NA>
34327                                                              <NA>
34332                                                              <NA>
34333                                                      small amount
34334                                                            1 tube
34336                                                      small amount
34340                                                              dose
34341                                                              <NA>
34342                                                            collar
34343                                                             spray
34344                                                              <NA>
34345                                                   based on weight
34348                                                              <NA>
34356                                                              <NA>
34359                                                   based on weight
34360                                                   based on weight
34361                                                              <NA>
34362                                                              <NA>
34367                                                            powder
34369                                                              <NA>
34374                                               tablet/pill/capsule
34375                                               tablet/pill/capsule
34378                                                              <NA>
34379                                                              <NA>
34388                                                      small amount
34401                                                   based on weight
34403                                                   based on weight
34409                                                              <NA>
34410                                                              <NA>
34418                                                   based on weight
34419                                                   based on weight
34425                                                   based on weight
34429                                                   based on weight
34430                                                              <NA>
34433                                                                ml
34434                                                   based on weight
34435                                                              <NA>
34436                                                              <NA>
34456                                                             spray
34457                                                              <NA>
34458                                                              <NA>
34459                                                              <NA>
34460                                                              <NA>
34461                                                              <NA>
34462                                                              <NA>
34463                                                              <NA>
34464                                                              <NA>
34465                                                              <NA>
34466                                                              <NA>
34467                                                              <NA>
34468                                                              <NA>
34474                                                              <NA>
34493                                                              <NA>
34510                                                              <NA>
34513                                                   based on weight
34519                                                   based on weight
34520                                                   based on weight
34528                                                              <NA>
34533                                                   based on weight
34536                                             1 tablet/pill/capsule
34545                                                              <NA>
34548                                                              <NA>
34579                                                              <NA>
34583                                             1 tablet/pill/capsule
34584                                                              <NA>
34587                                                         as needed
34588                                                              <NA>
34593                                                              <NA>
34594                                                              <NA>
34606                                                              <NA>
34608                                               tablet/pill/capsule
34609                                                              1 ml
34612                                                              <NA>
34614                                                            1 pump
34617                                                       bottle/vial
34624                                                              <NA>
34628                                      based on weight (60-120 lbs)
34629                                       based on weight (40-60 lbs)
34630                                                         as needed
34635                                                          wipe/pad
34636                                                   based on weight
34637                                                       unspecified
34638                                                          wipe/pad
34639                                                   based on weight
34640                                                   based on weight
34642                                               tablet/pill/capsule
34643                                               tablet/pill/capsule
34648                                                              <NA>
34669                                               tablet/pill/capsule
34670                                                   syringe/pipette
34671                                             1 tablet/pill/capsule
34672                                                             spray
34673                                                          ointment
34674                                                          ointment
34675                                                              <NA>
34676                                                              <NA>
34677                                                              <NA>
34678                                                             spray
34680                                                              <NA>
34684                                                   based on weight
34697                                                   based on weight
34704                                                       unspecified
34705                                                              <NA>
34706                                                              <NA>
34707                                                   based on weight
34708                                                       unspecified
34709                                                       unspecified
34710                                                          biweekly
34727                                                              <NA>
34728                                                              <NA>
34729                                                              <NA>
34730                                                   based on weight
34733                                               tablet/pill/capsule
34734                                               tablet/pill/capsule
34741                                                              <NA>
34744                                                              <NA>
34747                                               tablet/pill/capsule
34748                                               tablet/pill/capsule
34749                                               tablet/pill/capsule
34750                                                              <NA>
34763                                                   based on weight
34764                                                   based on weight
34766                                                              <NA>
34767                                                              <NA>
34787                                               tablet/pill/capsule
34788                                                      small amount
34789                                                              <NA>
34790                                                   based on weight
34791                                                   based on weight
34796                                                   based on weight
34797                                                                mg
34798                                                                mg
34799                                                   based on weight
34811                                               tablet/pill/capsule
34813                                                       unspecified
34828                                                   based on weight
34832                                                              <NA>
34833                                               tablet/pill/capsule
34834                                               tablet/pill/capsule
34835                                               tablet/pill/capsule
34838                                               tablet/pill/capsule
34845                                               tablet/pill/capsule
34867                                                              <NA>
34874                                                              <NA>
34875                                                              <NA>
34881                                                              <NA>
34887                                               tablet/pill/capsule
34888                                                            1 tube
34889                                                   based on weight
34890                                                   based on weight
34891                                             1 tablet/pill/capsule
34892                                                 1 syringe/pipette
34900                                                              <NA>
34901                                                              <NA>
34902                                                              <NA>
34903                                                              <NA>
34904                                                              <NA>
34905                                                   based on weight
34906                                                   based on weight
34907                                                              <NA>
34908                                                              <NA>
34917                                                              <NA>
34918                                                              <NA>
34920                                                              <NA>
34922                                                              <NA>
34923                                                              <NA>
34924                                                              <NA>
34940                                                              <NA>
34953                                                              <NA>
34955                                                              <NA>
34956                                                              <NA>
34966                                                   based on weight
34973                                                              <NA>
34979                                                                 1
34981                                               tablet/pill/capsule
34982                                               tablet/pill/capsule
34983                                               tablet/pill/capsule
34991                                                              <NA>
34992                                                   based on weight
34996                                                   based on weight
35002                                                              <NA>
35004                                                              <NA>
35014                                               tablet/pill/capsule
35025                                                   based on weight
35026                                                              <NA>
35027                                                            cup(s)
35034                                                              <NA>
35049                                                      small amount
35069                                               tablet/pill/capsule
35070                                                              <NA>
35074                                                              <NA>
35077                                                   based on weight
35094                                                   based on weight
35095                                                   based on weight
35101                                                              <NA>
35102                                                              <NA>
35103                                                     1 application
35109                                                              <NA>
35110                                                   based on weight
35119                                      based on weight (60-120 lbs)
35122                                                              <NA>
35124                                                              <NA>
35125                                               tablet/pill/capsule
35126                                                              <NA>
35128                                                   based on weight
35132                                               tablet/pill/capsule
35134                                                          ointment
35143     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
35144                                                      small amount
35145                                                       unspecified
35146                                               tablet/pill/capsule
35147                                                   based on weight
35148                                                       unspecified
35149                                                              <NA>
35150                                                   based on weight
35152                                                   based on weight
35153                                                   based on weight
35154                                               tablet/pill/capsule
35155                                                              <NA>
35160                                                              <NA>
35167                                                   based on weight
35170                                                              <NA>
35171                                                              <NA>
35176                                                              <NA>
35181                                               tablet/pill/capsule
35182                                                              <NA>
35183                                                              <NA>
35189                                                   based on weight
35190                                                              <NA>
35191                                                              <NA>
35203                                               tablet/pill/capsule
35204                                                       bottle/vial
35205                                                      small amount
35207                                                              <NA>
35212                                                   based on weight
35213                                                              <NA>
35214                                                   based on weight
35215                                                              <NA>
35216                                                              <NA>
35232                                                              <NA>
35245                                                             drops
35252                                                              <NA>
35258                                                              <NA>
35262                                                              <NA>
35263                                                              <NA>
35264                                                              <NA>
35278                                               tablet/pill/capsule
35279                                               tablet/pill/capsule
35282                                                              <NA>
35283                                               tablet/pill/capsule
35284                                               tablet/pill/capsule
35291                                             1 tablet/pill/capsule
35298                                                   based on weight
35299                                                       bottle/vial
35300                                               tablet/pill/capsule
35314                                                   0.25 inch strip
35315                                                              <NA>
35316                                                              <NA>
35318                                                              <NA>
35354                                                              <NA>
35382                                               tablet/pill/capsule
35386                                               tablet/pill/capsule
35388                                                              <NA>
35393                                                       unspecified
35399                                               tablet/pill/capsule
35400                                                              <NA>
35401                                               tablet/pill/capsule
35404                                               tablet/pill/capsule
35405                                               tablet/pill/capsule
35406                                             1 tablet/pill/capsule
35414                                                              <NA>
35417                                                              <NA>
35420                                                              <NA>
35421                                                              <NA>
35422                          460 mg lufenuron, 23 mg milbemycin oxime
35423                                      based on weight (50-100 lbs)
35424                                      based on weight (88-123 lbs)
35425                                                              <NA>
35432                                                              <NA>
35434                                                              <NA>
35443                                                              <NA>
35450                                                              <NA>
35453                                               tablet/pill/capsule
35454                                               tablet/pill/capsule
35495                                      based on weight (55-100 lbs)
35496                                                272 mcg ivermectin
35497                                                              <NA>
35498                                                              <NA>
35499                                                              <NA>
35501                                                              <NA>
35503                                                              <NA>
35504                                                              <NA>
35506                                                              <NA>
35507                                                              <NA>
35509                                                   0.25 inch strip
35513                                                              <NA>
35525                                                   based on weight
35526                                                   based on weight
35528                                                              <NA>
35539                                                              <NA>
35560                                               tablet/pill/capsule
35561                                               tablet/pill/capsule
35562                                               tablet/pill/capsule
35563                                               tablet/pill/capsule
35565                                                              <NA>
35566                                                              <NA>
35569                                                              <NA>
35571                                                   based on weight
35572                                                   based on weight
35573                                                   based on weight
35574                                                              <NA>
35575                                                   based on weight
35576                                                              <NA>
35577                                                              <NA>
35578                                                   based on weight
35579                                                   based on weight
35580                                                              <NA>
35581                                                   based on weight
35582                                                   based on weight
35584                                                              <NA>
35592                                                              <NA>
35593                                                   based on weight
35598                                                   based on weight
35605                                                             spray
35616                                                              <NA>
35617                                                              <NA>
35618                                                              <NA>
35619                                                              <NA>
35620                                                              <NA>
35621                                                     1 bottle/vial
35622                                                              <NA>
35624                                                              <NA>
35626                                                            powder
35627                                                              <NA>
35628                                                              <NA>
35633                                               tablet/pill/capsule
35638                                       based on weight (44-88 lbs)
35639                                               tablet/pill/capsule
35641                                               tablet/pill/capsule
35642                                                       application
35643                                                              <NA>
35644                                                              <NA>
35645                                                              <NA>
35656                                                       unspecified
35657                                                   based on weight
35658                                                   based on weight
35659                                                              <NA>
35662                                               tablet/pill/capsule
35664                                                   based on weight
35665                                                   based on weight
35668                                                              <NA>
35673                                                             spray
35674                                                              <NA>
35689                                                   based on weight
35696                                                              <NA>
35697                                               tablet/pill/capsule
35699                                             1 tablet/pill/capsule
35700                                                             spray
35709                                                   based on weight
35717                                                   based on weight
35721                                                   based on weight
35722                                                       unspecified
35725                                                              <NA>
35727                                                              <NA>
35740                                                              <NA>
35743                                                              <NA>
35746                                                              <NA>
35747                                                              <NA>
35748                                                              <NA>
35749                                                              <NA>
35751                                                              <NA>
35756                                                              <NA>
35757                                                              <NA>
35758                                                              <NA>
35762                                                             daily
35767                                               tablet/pill/capsule
35768                                                              tube
35769                                                   based on weight
35770                                                              tube
35771                                               tablet/pill/capsule
35772                                                       unspecified
35773                                                      pack/package
35774                                               tablet/pill/capsule
35775                                                   based on weight
35776                                                   based on weight
35777                                                       unspecified
35778                                                       unspecified
35779                                                              <NA>
35782                                                              <NA>
35784                       272 mcg ivermectin, 227 mg pyrantel pamoate
35786                                                       application
35791                                                              <NA>
35792                                                              <NA>
35793                                                              <NA>
35808                                                              <NA>
35809                                                              <NA>
35810                                                              <NA>
35812                                      based on weight (60-120 lbs)
35820                                               tablet/pill/capsule
35821                                                       application
35826                                                   based on weight
35827                                                   based on weight
35831                                                              <NA>
35832                                                              <NA>
35835                                                              <NA>
35850                                             1 tablet/pill/capsule
35853                                                       unspecified
35855                                               tablet/pill/capsule
35858                                                              <NA>
35859                                                              <NA>
35889                                                   based on weight
35903                                                              <NA>
35905                                                              <NA>
35907                                                              <NA>
35908                                                              <NA>
35909                                                              <NA>
35931                                                              <NA>
35954                                                   based on weight
35955                                               tablet/pill/capsule
35963                                                      small amount
35965                                                              <NA>
35968                                                              <NA>
35969                                                         as needed
35973                                                       combination
35980                                                              <NA>
35982                                                   based on weight
35983                                                   based on weight
36019                                                   based on weight
36021                                                   based on weight
36023                                                      small amount
36030                                                              <NA>
36042                                               tablet/pill/capsule
36043                                                              <NA>
36044                                               tablet/pill/capsule
36065                                             1 tablet/pill/capsule
36069                                                   based on weight
36070                                                   based on weight
36078                                                              <NA>
36081                                                              <NA>
36082                                                              <NA>
36083                                                              <NA>
36084                                                       unspecified
36108                                                              <NA>
36110                                                              <NA>
36112                                                   based on weight
36113                                                              <NA>
36115                                                   based on weight
36134                                                              <NA>
36137                                                              pump
36144                                                     1 bottle/vial
36145                                             1 tablet/pill/capsule
36150                                                   based on weight
36151                                                   based on weight
36153                                                              <NA>
36155                                                              tube
36156                                               tablet/pill/capsule
36159                                                   based on weight
36171                                                              <NA>
36191                                               tablet/pill/capsule
36192                                                              <NA>
36196                                                              <NA>
36198                                                       unspecified
36200                                                              <NA>
36201                                                                ml
36202                                                              <NA>
36203                                                              <NA>
36205                                                              <NA>
36218                                               tablet/pill/capsule
36220                                                   based on weight
36221                                               tablet/pill/capsule
36222                                                      small amount
36223                                                    1 pack/package
36225                                                   based on weight
36226                                                   based on weight
36227                                               tablet/pill/capsule
36228                                               tablet/pill/capsule
36229                                               tablet/pill/capsule
36231                                                       bottle/vial
36232                                               tablet/pill/capsule
36233                                               tablet/pill/capsule
36235                                                          ointment
36237                                                        inch strip
36238                                                              <NA>
36240                                                              <NA>
36254                                                              <NA>
36256                                                              <NA>
36258                                                              <NA>
36264                                                              <NA>
36268                                                              <NA>
36271                                                              <NA>
36272                                                              <NA>
36273                                       based on weight (40-60 lbs)
36275                                                   based on weight
36276                                                       unspecified
36280                                      based on weight (85-130 lbs)
36283                                                              <NA>
36284                                                              <NA>
36288                                                              <NA>
36289                                                              <NA>
36292                                                              <NA>
36293                                                              <NA>
36294                                                              <NA>
36295                                                              <NA>
36296                                                              <NA>
36297                                                              <NA>
36298                                                              <NA>
36299                                                              <NA>
36300                                                              <NA>
36301                                                              <NA>
36302                                                              <NA>
36303                                                              <NA>
36304                                                              <NA>
36305                                                              <NA>
36306                                                   based on weight
36307                                                   based on weight
36308                                                              <NA>
36309                                                              <NA>
36310                                                              <NA>
36311                                                              <NA>
36322                                                              <NA>
36323                                                              <NA>
36324                                                              <NA>
36325                                                              <NA>
36326                                                              <NA>
36327                                                              <NA>
36328                                                              <NA>
36329                                                              <NA>
36330                                                              <NA>
36331                                                              <NA>
36332                                                              <NA>
36333                                                              <NA>
36334                                                              <NA>
36335                                                   based on weight
36336                                                   based on weight
36337                                                              <NA>
36338                                                              <NA>
36339                                                              <NA>
36340                                                              <NA>
36357                                                              <NA>
36358                                                              <NA>
36359                                                              <NA>
36360                                                              <NA>
36361                                                              <NA>
36362                                                              <NA>
36363                                                              <NA>
36364                                                              <NA>
36365                                                              <NA>
36366                                                              <NA>
36367                                                              <NA>
36368                                                              <NA>
36369                                                              <NA>
36370                                                              <NA>
36371                                                   based on weight
36372                                                   based on weight
36373                                                              <NA>
36374                                                              <NA>
36376                                                              <NA>
36377                                                              <NA>
36378                                                              <NA>
36379                                                              <NA>
36380                                                              <NA>
36381                                                              <NA>
36382                                                              <NA>
36383                                                              <NA>
36384                                                              <NA>
36385                                                              <NA>
36397                                                              <NA>
36398                                                              <NA>
36399                                                              <NA>
36400                                                              <NA>
36401                                                              <NA>
36402                                                              <NA>
36403                                                              <NA>
36404                                                              <NA>
36405                                                              <NA>
36406                                                              <NA>
36410                                                              <NA>
36427                                                   based on weight
36429                                                              <NA>
36430                                                                 %
36438                                                              <NA>
36439                                                   based on weight
36440                                                   based on weight
36443                                                              <NA>
36444                                                   based on weight
36448                                                   based on weight
36451                                                       unspecified
36460                                               tablet/pill/capsule
36461                                               tablet/pill/capsule
36464                                                              <NA>
36474                                                              <NA>
36491                                                       unspecified
36497                                                              <NA>
36513                                                              <NA>
36520                                                              <NA>
36533                                                      small amount
36535                                                          wipe/pad
36559                                                   based on weight
36560                                                   based on weight
36562                                                   based on weight
36563                                                              tube
36568                                               tablet/pill/capsule
36571                                                        inch strip
36574                                                              <NA>
36579                                                            1 tube
36580                                                              <NA>
36595                                               tablet/pill/capsule
36597                                                              <NA>
36598                                                              <NA>
36599                                                              <NA>
36600                                                              pump
36601                                               tablet/pill/capsule
36602                                               tablet/pill/capsule
36603                                               tablet/pill/capsule
36605                                               tablet/pill/capsule
36606                                                              <NA>
36607                                               tablet/pill/capsule
36608                                               tablet/pill/capsule
36616                                               tablet/pill/capsule
36623                                                              <NA>
36624                                                                25
36626                                                              pump
36627                                               tablet/pill/capsule
36628                                               tablet/pill/capsule
36630                                               tablet/pill/capsule
36631                                                              <NA>
36632                                               tablet/pill/capsule
36633                                                              <NA>
36635                                               tablet/pill/capsule
36636                                               tablet/pill/capsule
36637                                                              <NA>
36652                                               tablet/pill/capsule
36657                                                              <NA>
36660                                                              <NA>
36661                                                              <NA>
36667                                                              <NA>
36670                                               tablet/pill/capsule
36698                                                   based on weight
36699                                                   based on weight
36705                                                              <NA>
36708                                                       unspecified
36709                                                          wipe/pad
36735                                                              <NA>
36751                                               tablet/pill/capsule
36752                                                       application
36753                                                            powder
36772                                                             spray
36776                                                              <NA>
36777                                                              <NA>
36778                                                              <NA>
36816                                                      pack/package
36817                                                   based on weight
36818                                                              <NA>
36819                                                              <NA>
36824                                               tablet/pill/capsule
36833                                                   based on weight
36834                                                   0.25 inch strip
36835                                                          wipe/pad
36840                                                              <NA>
36842                                                              <NA>
36846                                                              <NA>
36847                                                              <NA>
36848                                                              <NA>
36849                                                   based on weight
36850                                                   based on weight
36851                                                              <NA>
36853                                                              <NA>
36855                                                              <NA>
36859                                                              <NA>
36874                                                              <NA>
36875                                                              <NA>
36876                                                              <NA>
36877                                                              <NA>
36878                                                            1 tube
36879                                                              <NA>
36880                                                              <NA>
36881                                               tablet/pill/capsule
36882                                                              <NA>
36883                                               tablet/pill/capsule
36884                                                           1 spray
36892                                                              <NA>
36893                                             1 tablet/pill/capsule
36894                                             1 tablet/pill/capsule
36900                                               tablet/pill/capsule
36901                                               tablet/pill/capsule
36911                                                   based on weight
36914                                                   based on weight
36916                                                              <NA>
36919                                                              <NA>
36920                                                   based on weight
36921                                                       unspecified
36925                                                              <NA>
36945                                                              <NA>
36946                                                              <NA>
36969                                                              <NA>
36970                                                              <NA>
36982                                                     1 bottle/vial
36983                                             1 tablet/pill/capsule
36984                                             1 tablet/pill/capsule
36985                                             1 tablet/pill/capsule
36994                                                             spray
37007                                                              <NA>
37015                                               tablet/pill/capsule
37017                                                          wipe/pad
37018                                                   based on weight
37019                                                   based on weight
37020                                                              <NA>
37021                                               tablet/pill/capsule
37022                                      based on weight (50-100 lbs)
37025                                                   based on weight
37027                                                   based on weight
37036                                                              1 ml
37038                                                              <NA>
37046                                                              <NA>
37054                                               tablet/pill/capsule
37055                                             1 tablet/pill/capsule
37056                                                       unspecified
37057                                                              <NA>
37061                                                            collar
37063                                                                 %
37069                                                              <NA>
37070                                         based on weight (55+ lbs)
37071                                      based on weight (50-100 lbs)
37073                                                      small amount
37074                                                              <NA>
37075                                                      small amount
37076                                                            1 tube
37077                                                   based on weight
37078                                                   based on weight
37080                                                              tube
37087                                                   based on weight
37088                                                   based on weight
37091                                                              <NA>
37098                                                              tube
37099                                               tablet/pill/capsule
37103                                                              <NA>
37104                                                              <NA>
37115                                                           7 drops
37116                                                              <NA>
37117                                                   based on weight
37135                                                   moderate amount
37157                                                              <NA>
37164                                                              <NA>
37165                                               tablet/pill/capsule
37168                                                            powder
37169                                                      small amount
37179                                                              <NA>
37193                                                              <NA>
37194                                                            collar
37195                                                              <NA>
37197                                                              <NA>
37200                                                   based on weight
37201                                                   based on weight
37202                                                   based on weight
37219                                               tablet/pill/capsule
37221                                                              <NA>
37252                                               tablet/pill/capsule
37259                                                              <NA>
37260                                                              <NA>
37261                                                   based on weight
37262                                                       application
37263                                                              <NA>
37266                                               tablet/pill/capsule
37267                                                              <NA>
37270                                                       application
37271                                                       application
37272                                                              <NA>
37273                                                              <NA>
37277                                                    shampoo/mousse
37278                                                              <NA>
37279                                                              <NA>
37302                                                              <NA>
37303                                                              <NA>
37304                                                              <NA>
37306                                                              <NA>
37307                                                              <NA>
37308                                                              <NA>
37309                                                      small amount
37311                                                              <NA>
37316                                                   based on weight
37324                                                              <NA>
37325                                                              <NA>
37326                                                              <NA>
37332                                                      small amount
37337                                                   based on weight
37344                                               tablet/pill/capsule
37349                       272 mcg ivermectin, 227 mg pyrantel pamoate
37359                                                              <NA>
37373                                               tablet/pill/capsule
37374                                               tablet/pill/capsule
37375                                                              <NA>
37376                                                              <NA>
37377                                                              <NA>
37385                                               tablet/pill/capsule
37386                                               tablet/pill/capsule
37387                                               tablet/pill/capsule
37392                                                             spray
37396                                                   based on weight
37397                                       based on weight (44-88 lbs)
37434                                                              <NA>
37435                                                              <NA>
37439                                                   based on weight
37440                                                   based on weight
37446                                                              dose
37447                                                              dose
37448                                                              pump
37449                                                   moderate amount
37451                                                      small amount
37453                                                            1 pump
37454                                                   moderate amount
37455                                                              dose
37457                                                       as directed
37463                                                       application
37464                                                             spray
37465                                                             spray
37467                                                   moderate amount
37468                                      based on weight (50-100 lbs)
37469                                       based on weight (44-88 lbs)
37477                                                              <NA>
37478                                                              <NA>
37482                                                   based on weight
37485                                                   based on weight
37491                                                            1 pump
37493                                               tablet/pill/capsule
37494                                               tablet/pill/capsule
37495                                                             spray
37496                                                              <NA>
37510                                                              <NA>
37526                                                              <NA>
37527                                                        inch strip
37533                                                      small amount
37536                                             1:10 part water ratio
37540                                                   based on weight
37541                                                   based on weight
37545                                               tablet/pill/capsule
37546                                               tablet/pill/capsule
37547                                               tablet/pill/capsule
37552                                               tablet/pill/capsule
37553                                               tablet/pill/capsule
37568                                                              <NA>
37569                                                           monthly
37571                                                              <NA>
37576                                                      small amount
37577                                                              <NA>
37578                                                              <NA>
37579                                                              <NA>
37580                                                              <NA>
37581                                                              <NA>
37582                                                              <NA>
37584                                                              <NA>
37585                                                              <NA>
37586                                                              <NA>
37597                                                              <NA>
37598                                                              <NA>
37601                                                   based on weight
37602                                                   based on weight
37603                                               tablet/pill/capsule
37608                                                       unspecified
37621                                               tablet/pill/capsule
37622                                               tablet/pill/capsule
37623                                                              <NA>
37624                                                   based on weight
37627                                                   based on weight
37628                                                   based on weight
37629                                                       unspecified
37630                                               tablet/pill/capsule
37639                                                              <NA>
37648                                                   based on weight
37649                                                              <NA>
37651                                                            collar
37652                                          based on weight (64 lbs)
37655                                                            collar
37657                                                            collar
37662                                                            collar
37664                                                            collar
37669                                                          wipe/pad
37670                                                       application
37675                                                       application
37682                                                              <NA>
37686                                                              <NA>
37691                                                          ointment
37692                                                              <NA>
37695                                                              <NA>
37696                                                              <NA>
37697                                                              <NA>
37698                                                              <NA>
37699                                                              <NA>
37704                                             1 tablet/pill/capsule
37705                                                            1 tube
37708                                                              <NA>
37709                                                              <NA>
37710                                                              <NA>
37712                                                              <NA>
37713                                                              <NA>
37714                                                              <NA>
37717                                                              <NA>
37718                                                              <NA>
37731                                                   based on weight
37738                                                   based on weight
37739                                             1 tablet/pill/capsule
37740                                                            1 tube
37742                                             1 tablet/pill/capsule
37771                                                              <NA>
37785                                                   based on weight
37786                                                   based on weight
37797                                                   based on weight
37798                                                              <NA>
37805                                                              <NA>
37806                                                              <NA>
37807                                                              <NA>
37809                                                          inhalant
37816                                                              <NA>
37817                                                              <NA>
37820                                                              <NA>
37821                                                              <NA>
37822                                             1 tablet/pill/capsule
37834                                                   based on weight
37835                                                   based on weight
37836                                                              <NA>
37837                                                              <NA>
37838                                               tablet/pill/capsule
37839                                               tablet/pill/capsule
37845                                                   based on weight
37846                                                   based on weight
37847                                               tablet/pill/capsule
37848                                               tablet/pill/capsule
37849                                               tablet/pill/capsule
37850                                               tablet/pill/capsule
37851                                               tablet/pill/capsule
37852                                               tablet/pill/capsule
37855                                                   based on weight
37858                                                   based on weight
37860                                                   based on weight
37863                                                   based on weight
37864                                                   based on weight
37865                                                   based on weight
37885                                               tablet/pill/capsule
37894                                               tablet/pill/capsule
37895                                               tablet/pill/capsule
37905                                                   based on weight
37907                                                              <NA>
37908                                      based on weight (60-120 lbs)
37916                                                   based on weight
37920                                                     1 bottle/vial
37929                                                              <NA>
37930                                                              <NA>
37933                                               tablet/pill/capsule
37934                                               tablet/pill/capsule
37935                                                              <NA>
37936                                               tablet/pill/capsule
37937                                                              <NA>
37940                                                              <NA>
37941                                                              <NA>
37942                                                              <NA>
37944                                                              <NA>
37945                                                              <NA>
37956                                                              <NA>
37976                                               tablet/pill/capsule
37977                                                             drops
37978                                               tablet/pill/capsule
37979                                                             spray
37980                                                      small amount
37984                                               tablet/pill/capsule
37989                                             1 tablet/pill/capsule
37990                                                      small amount
37992                                               tablet/pill/capsule
37993                                               tablet/pill/capsule
38018                                                              <NA>
38036                                               tablet/pill/capsule
38041                                               tablet/pill/capsule
38046                                                   based on weight
38048                                                              <NA>
38050                                                   based on weight
38051                                                   based on weight
38052                                                              <NA>
38056                                                              <NA>
38070                                               tablet/pill/capsule
38071                                                              <NA>
38072                                                                 %
38073                                                              <NA>
38074                                                              <NA>
38075                                                              <NA>
38102                                                              <NA>
38123                                               tablet/pill/capsule
38126                                               tablet/pill/capsule
38129                                                              <NA>
38132                                                              <NA>
38134                                               tablet/pill/capsule
38135                                               tablet/pill/capsule
38136                                                       application
38141                                               tablet/pill/capsule
38142                                               tablet/pill/capsule
38150                                                   based on weight
38151                                                              dose
38152                                                              <NA>
38156                                                              <NA>
38165                                                              <NA>
38166                                                              <NA>
38177                                                              pump
38179                                                              <NA>
38181                                                              <NA>
38182                                                              <NA>
38184                                                              <NA>
38185                                                              <NA>
38193                                                              tube
38204                                                              <NA>
38211                                                              <NA>
38216                                               tablet/pill/capsule
38217                                             1 tablet/pill/capsule
38219                                                              <NA>
38220                                                            1 pump
38240                                                              dose
38241                                                   based on weight
38248                                                              <NA>
38255                                                   based on weight
38256                                                              <NA>
38257                                                              <NA>
38259                                                              <NA>
38260                                                              <NA>
38262                                                   based on weight
38268                                                              <NA>
38273                                                              <NA>
38284                                                       combination
38287                                                              pump
38288                                               tablet/pill/capsule
38289                                               tablet/pill/capsule
38291                                                   based on weight
38292                                                   based on weight
38293                                                              <NA>
38294                                                             drops
38295                                                   based on weight
38296                                                   based on weight
38301                                                              tube
38305                                                              <NA>
38306                                               tablet/pill/capsule
38321                                                              <NA>
38324                                                              <NA>
38326                                                             spray
38330                                               tablet/pill/capsule
38339                                             1 tablet/pill/capsule
38341                                                      small amount
38342                                             1 tablet/pill/capsule
38350                                                              <NA>
38351                                               tablet/pill/capsule
38352                                               tablet/pill/capsule
38353                                               tablet/pill/capsule
38354                                               tablet/pill/capsule
38361                                                   0.25 inch strip
38362                                                              <NA>
38365                                                   based on weight
38366                                                   based on weight
38367                                                   based on weight
38369                                                              <NA>
38370                                                              <NA>
38371                                                              <NA>
38372                                                             drops
38373                                                   based on weight
38377                                                              <NA>
38378                                                              <NA>
38380                                                   based on weight
38381                                                   based on weight
38386                                                              <NA>
38387                                                              <NA>
38388                                                   based on weight
38394                                                   based on weight
38396                                               tablet/pill/capsule
38397                                               tablet/pill/capsule
38398                                                              <NA>
38399                                               tablet/pill/capsule
38406                                                      pack/package
38419                                                              <NA>
38420                                               tablet/pill/capsule
38422                                                   based on weight
38423                                                   based on weight
38427                                                              <NA>
38431                                                      small amount
38436                                                              pump
38438                                               tablet/pill/capsule
38439                                               tablet/pill/capsule
38442                                                              <NA>
38461                                                              <NA>
38462                                                              <NA>
38464                                                              <NA>
38465                                                              <NA>
38466                                                              <NA>
38470                                                              <NA>
38471                                                              <NA>
38472                                                              <NA>
38473                                                              <NA>
38496                                                              <NA>
38499                                                              <NA>
38504                                                              <NA>
38505                                                              <NA>
38507                                                              <NA>
38508                                                              <NA>
38509                                                              <NA>
38510                                                              <NA>
38511                                                              <NA>
38512                                                              <NA>
38522                                                              <NA>
38526                                                       as directed
38527                                                   based on weight
38528                                                   based on weight
38529                                                         as needed
38531                                                      small amount
38532                                             1 tablet/pill/capsule
38533                                                              <NA>
38534                                          2 tablets/pills/capsules
38535                                                              <NA>
38536                                             1 tablet/pill/capsule
38544                                                      small amount
38550                                                              <NA>
38551                                                              <NA>
38557                                                              <NA>
38567                                               tablet/pill/capsule
38568                                                   based on weight
38569                                                   based on weight
38570                                                              <NA>
38588                                                   moderate amount
38602                                               tablet/pill/capsule
38605                                                              <NA>
38606                                                              <NA>
38607                                                              <NA>
38610                                               tablet/pill/capsule
38611                                                              pump
38618                                                              <NA>
38626                                             1 tablet/pill/capsule
38630                                               tablet/pill/capsule
38635                                                   based on weight
38636                                                   based on weight
38637                                                   based on weight
38638                                                              <NA>
38643                                                   based on weight
38644                                                   based on weight
38647                                                              <NA>
38652                                                   based on weight
38655                                                      pack/package
38656                                                     1 application
38665                                                              <NA>
38691                                                   based on weight
38716                                                              <NA>
38722                                                              <NA>
38723                                                          wipe/pad
38724                                                   based on weight
38754                                                              <NA>
38764                                                              <NA>
38772                                                      small amount
38773                                                              <NA>
38775                                                              <NA>
38776                                                              <NA>
38779                                                              <NA>
38780                                                              <NA>
38787                                               tablet/pill/capsule
38789                                                              <NA>
38796                                               tablet/pill/capsule
38802                                                              <NA>
38808                                                              <NA>
38809                                                              <NA>
38810                                                              <NA>
38816                                                      pack/package
38818                                                              <NA>
38820                                                              <NA>
38821                                                              <NA>
38828                                                             spray
38839                                                              <NA>
38841                                                              <NA>
38843                                                              <NA>
38845                                                              <NA>
38847                                                       application
38850                                                          ointment
38851                                                              <NA>
38854                                                              <NA>
38855                                                       application
38861                                                              <NA>
38864                                                              <NA>
38865                                                              <NA>
38868                                                              <NA>
38871                                                              <NA>
38890                                               tablet/pill/capsule
38891                                               tablet/pill/capsule
38892                                                   based on weight
38893                                                   based on weight
38896                                                   based on weight
38897                                                   based on weight
38899                                                   based on weight
38900                                                   based on weight
38902                                                      small amount
38924                                                              <NA>
38925                                       based on weight (21-55 lbs)
38926                                      based on weight (50-100 lbs)
38930                                                   based on weight
38931                                                   based on weight
38940                                                   based on weight
38941                                                   based on weight
38945                                                   based on weight
38946                                                   based on weight
38950                                             1 tablet/pill/capsule
38951                                             1 tablet/pill/capsule
38952                                             1 tablet/pill/capsule
38956                                                              <NA>
38963                                                   based on weight
38964                                                   based on weight
38970                                                              <NA>
38971                                                              <NA>
38974                                                              <NA>
38976                                                              <NA>
38978                                                              <NA>
38983                                                   based on weight
38986                                                   based on weight
38988                                                   based on weight
38997                                                              <NA>
39004                                               tablet/pill/capsule
39005                                               tablet/pill/capsule
39006                                                              <NA>
39010                                                   based on weight
39035                                                              <NA>
39073                                               tablet/pill/capsule
39083                                                              <NA>
39099                                             1 tablet/pill/capsule
39105                                                   based on weight
39106                                                   based on weight
39113                                                              <NA>
39117                                                              <NA>
39120                                                       combination
39121                                                   based on weight
39122                                                     1 application
39123                                               tablet/pill/capsule
39125                                                              <NA>
39127                                                              <NA>
39128                                                              <NA>
39141                                                              <NA>
39158                                                              <NA>
39165                                                              <NA>
39167                                               tablet/pill/capsule
39171                                                      small amount
39175                                                              <NA>
39176                                      based on weight (50-100 lbs)
39177                                                              <NA>
39181                                                    shampoo/mousse
39182                                                             spray
39188                                                              <NA>
39198                                                             spray
39201                                                              <NA>
39202                                                            liquid
39207                                                              <NA>
39209                                                              <NA>
39210                                                              <NA>
39211                                                      pack/package
39212                                                              <NA>
39218                                                              <NA>
39258                                               tablet/pill/capsule
39259                                               tablet/pill/capsule
39260                                               tablet/pill/capsule
39261                                                              <NA>
39262                                                              <NA>
39273                                                              <NA>
39316                                                       unspecified
39325                                                              <NA>
39326                                                              <NA>
39327                                                              <NA>
39328                                                              <NA>
39329                                                              <NA>
39330                                                              <NA>
39331                                                              <NA>
39332                                                              <NA>
39337                                                   based on weight
39338                                                   based on weight
39339                                                            collar
39340                                                   based on weight
39385                                                              <NA>
39388                                                   based on weight
39389                                                   based on weight
39390                                                              <NA>
39392                                                              <NA>
39415                                                             spray
39416                                                              <NA>
39423                                                              <NA>
39425                                                          ointment
39433                                                              <NA>
39434                                                              <NA>
39435                                                   syringe/pipette
39436                                                              <NA>
39438                                                   based on weight
39439                                                   based on weight
39440                                                              <NA>
39441                                                              <NA>
39442                                                              <NA>
39443                                                              <NA>
39444                                                              <NA>
39445                                                              <NA>
39446                                                              <NA>
39447                                                              <NA>
39450                                                              <NA>
39451                                                              <NA>
39453                                                       application
39464                                                              <NA>
39478                                                              <NA>
39486                                                            1 tube
39495                                                              <NA>
39496                                                              <NA>
39511                                                              <NA>
39513                                                              <NA>
39516                                                       unspecified
39519                                                              <NA>
39525                                                       bottle/vial
39526                                                       unspecified
39528                                                              <NA>
39531                                                       combination
39532                                                              <NA>
39534                                                              <NA>
39536                                                      pack/package
39539                                                              <NA>
39541                                                             spray
39542                                                       application
39543                                                        inch strip
39546                                                       bottle/vial
39548                                                              <NA>
39566                                                              <NA>
39567                                                              <NA>
39573                                                              <NA>
39579                                                              <NA>
39581                                                   based on weight
39582                                                   based on weight
39586                                             1 tablet/pill/capsule
39591                                                              <NA>
39599                                                              <NA>
39605                                                              <NA>
39607                                                              <NA>
39609                                             1 tablet/pill/capsule
39617                                                              <NA>
39618                                                              <NA>
39634                                                   based on weight
39635                                               tablet/pill/capsule
39637                                                              <NA>
39639                                                      small amount
39642                                                   based on weight
39651                                                             spray
39695                                                   based on weight
39705                                                              <NA>
39706                                                              <NA>
39707                                                              <NA>
39708                                                              <NA>
39714                                             1 tablet/pill/capsule
39715                                             1 tablet/pill/capsule
39737                                                              <NA>
39744                                                       unspecified
39745                                                       unspecified
39750                                                              <NA>
39754                                                   based on weight
39755                                                              tube
39756                                                              <NA>
39759                                                              <NA>
39760                                                              <NA>
39763                                                              <NA>
39764                                      based on weight (50-100 lbs)
39776                                                              <NA>
39777                                                              <NA>
39778                                                              <NA>
39785                                                              <NA>
39786                                               tablet/pill/capsule
39787                                                       application
39788                                                   based on weight
39795                                                              <NA>
39796                                                              <NA>
39809                                                              <NA>
39833                                                              <NA>
39849                                                              <NA>
39856                                                              <NA>
39860                                                              <NA>
39871                                                              <NA>
39875                                                              <NA>
39877                                                              <NA>
39881                                          based on weight (60 lbs)
39901                                                              <NA>
39909                                       based on weight (40-60 lbs)
39916                                                              <NA>
39917                                                              <NA>
39918                                                              <NA>
39919                                                        inch strip
39924                                               tablet/pill/capsule
39948                                      based on weight (50-100 lbs)
39949                                       based on weight (24-60 lbs)
39958                                                   based on weight
39968                                                   based on weight
39969                                                   based on weight
39970                                                   based on weight
39972                                                   based on weight
39973                                             1 tablet/pill/capsule
39974                                                      small amount
39975                                                      small amount
39976                                                   based on weight
39980                                                            powder
39981                                                          wipe/pad
39982                                                   0.25 inch strip
39987                                                              <NA>
39988                                                              <NA>
40003                                                              <NA>
40013                                                   based on weight
40014                                                   based on weight
40021                                                              <NA>
40023                                      based on weight (60-120 lbs)
40024                                                              <NA>
40038                                                              <NA>
40042                                                              <NA>
40043                                                              <NA>
40052                                                           monthly
40053                                                              <NA>
40054                                                              <NA>
40092                                       based on weight (44-88 lbs)
40093                                      based on weight (50-100 lbs)
40095                                                              <NA>
40102                                                              <NA>
40108                                                              <NA>
40109                                                              <NA>
40115                                                   based on weight
40117                                               tablet/pill/capsule
40121                                                              <NA>
40123                                                       unspecified
40124                                               tablet/pill/capsule
40125                                                       unspecified
40133                                                              <NA>
40134                                                              <NA>
40138                                               tablet/pill/capsule
40141                                                              <NA>
40142                                                              <NA>
40143                                                             spray
40144                                               tablet/pill/capsule
40149                                      based on weight (50-100 lbs)
40154                                                   based on weight
40164                                                      small amount
40165                                                   based on weight
40166                                                   based on weight
40180                                                   based on weight
40181                                                   based on weight
40186                                                   based on weight
40193                                                              <NA>
40194                                                       combination
40196                                                       as directed
40200                                                   based on weight
40206                                                   based on weight
40209                                                      small amount
40210                                                   based on weight
40211                                                   based on weight
40214                                                       application
40216                                               tablet/pill/capsule
40217                                               tablet/pill/capsule
40218                                               tablet/pill/capsule
40221                                                   based on weight
40222                                                   based on weight
40223                                                   based on weight
40224                                                   based on weight
40244                                                       application
40245                                                   based on weight
40290                                                              <NA>
40296                                                              <NA>
40297                                                              <NA>
40298                                                              <NA>
40299                                                      small amount
40302                                                              <NA>
40308                                                              <NA>
40309                                                              <NA>
40312                                          based on weight (70 lbs)
40313                                                              <NA>
40315                                                   based on weight
40317                                                      small amount
40325                                                              <NA>
40331                                                              <NA>
40343                                                              <NA>
40346                                                              <NA>
40390                                               tablet/pill/capsule
40391                                                   based on weight
40392                                                              <NA>
40394                                                              <NA>
40403                                                      small amount
40405                                                              <NA>
40406                                                              <NA>
40407                                                              <NA>
40408                                                   based on weight
40417                                               tablet/pill/capsule
40418                                               tablet/pill/capsule
40422                                                   based on weight
40425                                       based on weight (44-88 lbs)
40446                                                              <NA>
40447                                                              <NA>
40451                                                              <NA>
40454                                                              <NA>
40464                                                              <NA>
40468                                                              <NA>
40472                                               tablet/pill/capsule
40474                                                   based on weight
40483                                               tablet/pill/capsule
40484                                               tablet/pill/capsule
40486                                                              <NA>
40487                                                              <NA>
40488                                                            1 tube
40489                                                              <NA>
40490                                                              <NA>
40494                                                              <NA>
40503                                               tablet/pill/capsule
40504                                               tablet/pill/capsule
40505                                                              tube
40508                                                              <NA>
40511                                                              <NA>
40519                                               tablet/pill/capsule
40521                                                              <NA>
40535                                                              <NA>
40541                                                              <NA>
40542                                                              <NA>
40543                                                              <NA>
40547                                                              <NA>
40567                                                              <NA>
40568                                                   based on weight
40571                                                              <NA>
40572                                                              <NA>
40573                                                   based on weight
40574                                                   based on weight
40579                                             1 tablet/pill/capsule
40580                                                              <NA>
40581                                                              <NA>
40582                                                        inch strip
40583                                                              <NA>
40594                                                   based on weight
40595                                                          2 sprays
40600                                                   based on weight
40601                                                   based on weight
40603                                                       bottle/vial
40604                                                            powder
40606                                                      small amount
40607                                                   moderate amount
40610                                                   based on weight
40611                                                   based on weight
40615                                                              <NA>
40616                                                   based on weight
40617                                                   based on weight
40618                                                              <NA>
40619                                                              <NA>
40620                                                              <NA>
40624                                                              <NA>
40625                                                              <NA>
40634                                                        inch strip
40635                                                              <NA>
40636                                                              <NA>
40637                                                              <NA>
40644                                                              <NA>
40653                                                       bottle/vial
40654                                               tablet/pill/capsule
40655                                               tablet/pill/capsule
40656                                                              <NA>
40657                                                              <NA>
40658                                                              <NA>
40684                                                   based on weight
40685                                                   based on weight
40686                                                   based on weight
40687                                                   based on weight
40688                                                          wipe/pad
40689                                                          ointment
40690                                                   based on weight
40691                                                   based on weight
40693                                                     tapering dose
40695                                      based on weight (50-100 lbs)
40696                                      based on weight (60-100 lbs)
40699                                                              <NA>
40700                                               tablet/pill/capsule
40701                                               tablet/pill/capsule
40718                                                              <NA>
40719                                             1 tablet/pill/capsule
40721                                               tablet/pill/capsule
40722                                                          ointment
40723                                                              <NA>
40724                                                              <NA>
40725                                               tablet/pill/capsule
40726                                                              <NA>
40727                                                              <NA>
40739                                                   based on weight
40744                                                   based on weight
40745                                                             spray
40747                                                              <NA>
40748                                                          wipe/pad
40749                                               tablet/pill/capsule
40750                                                              <NA>
40751                                                   based on weight
40754                                                   based on weight
40755                                                   based on weight
40756                                                        inch strip
40758                                                              <NA>
40760                                                   based on weight
40774                                                   based on weight
40775                                               tablet/pill/capsule
40776                                               tablet/pill/capsule
40781                                               tablet/pill/capsule
40783                                                              <NA>
40793                                               tablet/pill/capsule
40794                                                              <NA>
40795                                               tablet/pill/capsule
40796                                               tablet/pill/capsule
40799                                               tablet/pill/capsule
40800                                               tablet/pill/capsule
40801                                               tablet/pill/capsule
40803                                                   based on weight
40804                                                   based on weight
40810                                                      small amount
40823                                                   based on weight
40824                                                             drops
40825                                                              dose
40826                                                              <NA>
40827                                                   based on weight
40828                                                   based on weight
40829                                                   based on weight
40833                       272 mcg ivermectin, 227 mg pyrantel pamoate
40834                                                    240 mg, 360 mg
40838                                                             spray
40839                                                       bottle/vial
40840                                                       bottle/vial
40843                                                             spray
40846                                                              <NA>
40848                                                   0.25 inch strip
40866                                                          wipe/pad
40868                                               tablet/pill/capsule
40869                                                              <NA>
40870                                                   based on weight
40873                                               tablet/pill/capsule
40875                                               tablet/pill/capsule
40876                                                              <NA>
40879                                               tablet/pill/capsule
40895                                                              <NA>
40897                                                              <NA>
40899                                                              <NA>
40900                                                              <NA>
40902                                                              <NA>
40905                                                              <NA>
40919                                                              <NA>
40943                                                              <NA>
40957                                                   based on weight
40958                                                       unspecified
40959                                                       unspecified
40960                                                       unspecified
40961                                                       unspecified
40962                                                        inch strip
40965                                               tablet/pill/capsule
40966                                               tablet/pill/capsule
40967                                               tablet/pill/capsule
40968                                               tablet/pill/capsule
40969                                                    shampoo/mousse
40970                                                          ointment
40971                                               tablet/pill/capsule
40972                                               tablet/pill/capsule
40974                                                   based on weight
40975                                                   based on weight
40984                                                              <NA>
40987                                                              <NA>
40990                                                              <NA>
40992                                                              <NA>
40993                                                              <NA>
40994                                                              <NA>
40997                                               tablet/pill/capsule
40998                                                              <NA>
41002                                                              <NA>
41003                                                              <NA>
41004                                                              <NA>
41005                                                              <NA>
41006                                                              <NA>
41007                                                              <NA>
41008                                                              <NA>
41009                                                              <NA>
41010                                                              <NA>
41011                                                              <NA>
41012                                                              <NA>
41013                                                              <NA>
41014                                                              <NA>
41015                                                              <NA>
41016                                                              <NA>
41017                                                              <NA>
41018                                               tablet/pill/capsule
41020                                                              <NA>
41021                                      based on weight (50-100 lbs)
41022                                                              <NA>
41023                                       based on weight (56-95 lbs)
41024                                               tablet/pill/capsule
41025                                                              <NA>
41055                                                              <NA>
41057                                                              <NA>
41068                                                       bottle/vial
41069                                               tablet/pill/capsule
41073                                                   based on weight
41078                                                   based on weight
41082                                                              <NA>
41083                                                              <NA>
41084                                                              <NA>
41085                                                              <NA>
41086                                                              <NA>
41087                                                              <NA>
41088                                                              <NA>
41089                                                              <NA>
41090                                                              <NA>
41091                                                              <NA>
41092                                                              <NA>
41094                                                              <NA>
41095                                                              <NA>
41096                                                              <NA>
41097                                                              <NA>
41098                                                              <NA>
41099                                                              <NA>
41100                                                              <NA>
41101                                                              <NA>
41102                                                              <NA>
41103                                                              <NA>
41104                                                              <NA>
41105                                                              <NA>
41121                          27 mg milbemycin oxime, 1620 mg spinosad
41125                                                   based on weight
41128                                                   based on weight
41129                                                              <NA>
41130                                                              <NA>
41131                                                   based on weight
41132                                                   based on weight
41133                                      based on weight (50-100 lbs)
41134                                      based on weight (60-120 lbs)
41137                                                             spray
41139                                                              <NA>
41147                                                              <NA>
41151                                                              <NA>
41152                                                              <NA>
41170                                                        inch strip
41198                                                              <NA>
41199                                                              <NA>
41200                                                              <NA>
41201                                                              <NA>
41203                                               tablet/pill/capsule
41204                                                              tube
41206                                                              tube
41207                                               tablet/pill/capsule
41208                                               tablet/pill/capsule
41209                                               tablet/pill/capsule
41210                                               tablet/pill/capsule
41216                                                              <NA>
41217                                               tablet/pill/capsule
41219                                      based on weight (50-100 lbs)
41220                                                              <NA>
41221                                                   based on weight
41222                                                              <NA>
41223                                                              <NA>
41224                                                              <NA>
41225                                                              <NA>
41240                                                            1 tube
41241                                             1 tablet/pill/capsule
41242                                                   based on weight
41243                                                              <NA>
41246                                                          ointment
41250                                                            1 tube
41251                                                              <NA>
41252                                                              <NA>
41254                                                           monthly
41255                                                              <NA>
41256                                                              <NA>
41260                                                              <NA>
41267                                                   based on weight
41278                                                             spray
41279                                       based on weight (1-121 lbs)
41281                                       based on weight (44-88 lbs)
41283                                                              <NA>
41302                                                              <NA>
41313                                                              <NA>
41314                                                              <NA>
41315                                                              <NA>
41316                                                              <NA>
41318                                                              <NA>
41319                                                              <NA>
41320                                                   based on weight
41325                                                              <NA>
41332                                                              <NA>
41335                                                      small amount
41336                                                              pump
41340                                                      small amount
41343                                                              <NA>
41360                                                              <NA>
41370                                                              <NA>
41371                                                              <NA>
41372                                                              <NA>
41373                                               tablet/pill/capsule
41374                                               tablet/pill/capsule
41376                                                              <NA>
41377                                                   based on weight
41378                                                   based on weight
41381                                                              <NA>
41384                                               tablet/pill/capsule
41385                                               tablet/pill/capsule
41386                                               tablet/pill/capsule
41387                                               tablet/pill/capsule
41388                                                              <NA>
41396                                                              <NA>
41398                                                              <NA>
41399                                                              <NA>
41400                                                              <NA>
41407                                                              <NA>
41413                                                              <NA>
41417                                                              <NA>
41418                                                              <NA>
41420                                                              <NA>
41421                                                   based on weight
41422                                      based on weight (50-100 lbs)
41424                                                       unspecified
41425                                                      small amount
41426                                             1 tablet/pill/capsule
41430                                                              <NA>
41431                                                              <NA>
41432                                                   based on weight
41433                                                              <NA>
41435                                                              <NA>
41442                                                          wipe/pad
41443                                                              <NA>
41444                                                              <NA>
41446                                                            1 pump
41447                                                              <NA>
41451                                                              <NA>
41464                                                      small amount
41466                                                      small amount
41470                                                              <NA>
41497                                                       unspecified
41500                                                              <NA>
41502                                                              tube
41505                                                          inhalant
41524                                                              <NA>
41525                                                      small amount
41531                                                      small amount
41533                                                              <NA>
41550                                                              <NA>
41557                                                        inch strip
41572                                               tablet/pill/capsule
41573                                               tablet/pill/capsule
41581                                               tablet/pill/capsule
41612                                                              <NA>
41615                                             1 tablet/pill/capsule
41617                                                              <NA>
41621                                                              <NA>
41629                                                          per hour
41632                                                              <NA>
41633                                                              <NA>
41636                                      based on weight (50-100 lbs)
41637                                      based on weight (60-120 lbs)
41638                                               tablet/pill/capsule
41639                                               tablet/pill/capsule
41640                                             1 tablet/pill/capsule
41641                                                              <NA>
41648                                                              <NA>
41653                                                              <NA>
41655                                                              <NA>
41661                                                              <NA>
41674                                                              <NA>
41724                                                              <NA>
41725                                                            1 tube
41726                                             1 tablet/pill/capsule
41727                                             1 tablet/pill/capsule
41728                                             1 tablet/pill/capsule
41729                                                                 1
41731                                                              <NA>
41732                                                            1 tube
41737                                                            1 tube
41738                                             1 tablet/pill/capsule
41739                                             1 tablet/pill/capsule
41740                                             1 tablet/pill/capsule
41743                                                              <NA>
41746                                             1 tablet/pill/capsule
41747                                                       unspecified
41748                                                       unspecified
41749                                                       unspecified
41750                                                       unspecified
41751                                                       unspecified
41752                                                       unspecified
41753                                                       unspecified
41754                                                       unspecified
41756                                                              <NA>
41759                                               tablet/pill/capsule
41774                                                              <NA>
41775                                                              <NA>
41778                                       based on weight (44-88 lbs)
41779                                      based on weight (50-100 lbs)
41781                                                              <NA>
41803                                               tablet/pill/capsule
41804                                               tablet/pill/capsule
41811                                                              <NA>
41816                                                              <NA>
41819                                                              <NA>
41827                                                   based on weight
41830                                                              <NA>
41835                                                   based on weight
41836                                                   based on weight
41837                                      based on weight (50-100 lbs)
41838                                      based on weight (89-132 lbs)
41840                                      based on weight (50-100 lbs)
41841                                       based on weight (44-88 lbs)
41842                                                              <NA>
41846                                                              <NA>
41849                                                   based on weight
41850                                                   based on weight
41851                                                              <NA>
41853                                                              <NA>
41854                                                   based on weight
41855                                                   based on weight
41856                                                   based on weight
41861                                                   based on weight
41862                                                              <NA>
41863                                                              <NA>
41866                                                              <NA>
41867                                                              <NA>
41870                                                              <NA>
41872                                                              <NA>
41884                                                   based on weight
41885                                                   based on weight
41888                                                        inch strip
41891                                                              <NA>
41892                                                              <NA>
41893                                                              <NA>
41894                                                              <NA>
41895                                                              <NA>
41896                                                              <NA>
41897                                                              <NA>
41898                                                              <NA>
41899                                                              <NA>
41900                                                              <NA>
41901                                                              <NA>
41902                                                              <NA>
41903                                                              <NA>
41904                                                              <NA>
41905                                                              <NA>
41906                                                              <NA>
41907                                                              <NA>
41921                                                              <NA>
41929                                               tablet/pill/capsule
41930                                               tablet/pill/capsule
41937                                               tablet/pill/capsule
41938                                                              tube
41939                                                             spray
41946                                                              <NA>
41947                                                              <NA>
41950                                                              <NA>
41966                                                   based on weight
41967                                                   based on weight
41969                                                   based on weight
41971                                                   based on weight
41973                                                      small amount
41975                                                              <NA>
41976                                                      small amount
41988                                                   based on weight
41989                                                   based on weight
41992                                                   based on weight
41993                                                   based on weight
41996                                                   based on weight
41999                                                   based on weight
42004                                                              <NA>
42005                                                              <NA>
42011                                                   based on weight
42012                                                   based on weight
42030                                                             drops
42032                                                   based on weight
42033                                                              <NA>
42034                                                              <NA>
42035                                                              <NA>
42036                                                              <NA>
42037                                                   based on weight
42039                                             1 tablet/pill/capsule
42040                                                            1 tube
42041                                                              <NA>
42042                                                              <NA>
42043                                                   based on weight
42044                                                   based on weight
42051                                                   based on weight
42053                                                   based on weight
42054                                                       unspecified
42055                                                              <NA>
42057                                                              <NA>
42061                                                                 %
42063                                                   based on weight
42066                                                   based on weight
42096                                                   based on weight
42100                                                      small amount
42101                                                             spray
42112                                                       combination
42113                                                              <NA>
42114                                                              <NA>
42115                                                              <NA>
42116                                                              <NA>
42117                                                              <NA>
42119                                                              <NA>
42122                                                              <NA>
42147                                               tablet/pill/capsule
42148                                               tablet/pill/capsule
42149                                               tablet/pill/capsule
42150                                               tablet/pill/capsule
42151                                               tablet/pill/capsule
42152                                               tablet/pill/capsule
42154                                       based on weight (44-88 lbs)
42157                                                              <NA>
42171                                                              <NA>
42174                                                   based on weight
42175                                                              <NA>
42176                                                              <NA>
42198                                                            collar
42201                                                            collar
42215                                                              <NA>
42218                                                              <NA>
42219                                                              <NA>
42221                                                       application
42227                                                       application
42229                                                       application
42240                                                              <NA>
42241                                                              <NA>
42242                                                              <NA>
42243                                                              <NA>
42256                                                      small amount
42257                                                      small amount
42259                                                      small amount
42267                                                              <NA>
42272                                                              <NA>
42273                                                              <NA>
42278                                               tablet/pill/capsule
42284                                                              <NA>
42286                                                                kg
42287                                                   based on weight
42289                                                   based on weight
42290                                                   based on weight
42291                                                       unspecified
42313                                                       application
42314                                               tablet/pill/capsule
42345                                                   based on weight
42346                                                   based on weight
42348                                               tablet/pill/capsule
42349                                               tablet/pill/capsule
42353                                               tablet/pill/capsule
42354                                               tablet/pill/capsule
42355                                                              <NA>
42356                                               tablet/pill/capsule
42357                                      based on weight (50-100 lbs)
42358                                      based on weight (60-120 lbs)
42361                                                      pack/package
42365                                                            1 pump
42366                                               tablet/pill/capsule
42367                                                      small amount
42368                                                              <NA>
42378                                                   based on weight
42379                                                   based on weight
42381                                                              <NA>
42384                                                   based on weight
42385                                                   based on weight
42386                                                   based on weight
42387                                                   based on weight
42399                                                            collar
42401                                                              <NA>
42402                                               tablet/pill/capsule
42403                                                              tube
42404                                               tablet/pill/capsule
42412                                               tablet/pill/capsule
42413                                               tablet/pill/capsule
42417                                                          ointment
42425                                                             spray
42426                                                             spray
42433                                               tablet/pill/capsule
42435                                                              <NA>
42451                                                   based on weight
42455                                                              <NA>
42463                                                       as directed
42464                                                      small amount
42465                                               tablet/pill/capsule
42466                                                              <NA>
42468                                                              <NA>
42474                                                       unspecified
42475                                                              <NA>
42476                                                       unspecified
42477                                                       unspecified
42478                                                              <NA>
42479                                                              <NA>
42480                                                              <NA>
42481                                                              <NA>
42482                                                            1 tube
42483                                               tablet/pill/capsule
42486                                               tablet/pill/capsule
42488                                                       unspecified
42489                                                              <NA>
42502                                                              <NA>
42506                                                    1 pack/package
42512                                               tablet/pill/capsule
42513                                                              <NA>
42515                                                   based on weight
42516                                                   based on weight
42518                                                              <NA>
42519                                                              <NA>
42522                                               tablet/pill/capsule
42537                                                       application
42551                                               tablet/pill/capsule
42552                                               tablet/pill/capsule
42553                                                   based on weight
42566                                                   moderate amount
42569                                                   based on weight
42570                                                   based on weight
42572                                                              <NA>
42573                                                   based on weight
42574                                                   based on weight
42575                                                   based on weight
42578                                                              <NA>
42579                                                              <NA>
42583                                                              <NA>
42593                                                              <NA>
42594                                                              <NA>
42624                                                   based on weight
42625                                                   based on weight
42626                                                              <NA>
42627                                               tablet/pill/capsule
42628                                               tablet/pill/capsule
42632                                               tablet/pill/capsule
42633                                               tablet/pill/capsule
42634                                                            collar
42637                                                           monthly
42638                                                              <NA>
42640                                                               10%
42646                                                              <NA>
42647                                                              <NA>
42648                                                              <NA>
42651                                       based on weight (26-50 lbs)
42652                                       based on weight (22-44 lbs)
42655                                               tablet/pill/capsule
42656                                               tablet/pill/capsule
42666                                                   based on weight
42667                                                   based on weight
42668                                                              <NA>
42675                                                              <NA>
42678                                                              <NA>
42679                                                              <NA>
42694                                                   based on weight
42695                                                   based on weight
42696                                                   based on weight
42697                                                   based on weight
42700                                                              <NA>
42704                                                   based on weight
42712                                               tablet/pill/capsule
42716                                                      small amount
42721                                                              <NA>
42725                                                       bottle/vial
42726                                                              dose
42727                                                              <NA>
42728                                               tablet/pill/capsule
42729                                               tablet/pill/capsule
42740                                                   based on weight
42741                                                   based on weight
42752                                                              <NA>
42753                                                              <NA>
42758                                                              <NA>
42760                                               tablet/pill/capsule
42761                                                       application
42764                                                              <NA>
42766                                               tablet/pill/capsule
42767                                               tablet/pill/capsule
42768                                                              <NA>
42769                                                              <NA>
42785                                                              <NA>
42786                                                              <NA>
42787                                                              <NA>
42791                                                              <NA>
42792                                                              <NA>
42799                                                              <NA>
42809                                                   based on weight
42810                                                   based on weight
42821                                               tablet/pill/capsule
42829                                                              <NA>
42833                                                              <NA>
42860                                                            cup(s)
42866                                                   based on weight
42867                                                   based on weight
42869                                                   based on weight
42870                                                   based on weight
42876                                                              <NA>
42879                                                              <NA>
42887                                                              <NA>
42890                                               tablet/pill/capsule
42891                                               tablet/pill/capsule
42892                                                              <NA>
42893                                                              <NA>
42894                                                              <NA>
42909                                                              <NA>
42913                                         based on weight (60+ lbs)
42915                                                       application
42920                                                              <NA>
42923                                                   based on weight
42926                                                   based on weight
42930                                                   based on weight
42931                                                   based on weight
42932                                                   based on weight
42935                                                   based on weight
42936                                                   based on weight
42939                                                   based on weight
42940                                                   based on weight
42946                                                              <NA>
42952                                                              <NA>
42956                                                   based on weight
42959                                               tablet/pill/capsule
42960                                                              <NA>
42967                                                   based on weight
42994                                                   based on weight
43013                                                              <NA>
43045                                                   based on weight
43064                                             1 tablet/pill/capsule
43065                                                              dose
43069                                                       application
43072                                                       unspecified
43073                                                   based on weight
43074                                                   based on weight
43081                                                              tube
43086                                                              pump
43105                                                          wipe/pad
43116                                               tablet/pill/capsule
43119                                                   based on weight
43123                                                              <NA>
43134                                                              <NA>
43135                                                              <NA>
43136                                                              <NA>
43137                                                              <NA>
43138                                                              <NA>
43144                                                   based on weight
43149                                                              <NA>
43151                                                              <NA>
43153                                                              <NA>
43169                                                      small amount
43173                                                      small amount
43183                                                              <NA>
43184                                                              <NA>
43187                                                              <NA>
43191                                                         as needed
43200                                                              <NA>
43202                                                              <NA>
43204                                                   based on weight
43224                                                              <NA>
43228                                                            collar
43236                                                              <NA>
43238                                      based on weight (50-100 lbs)
43239                                                            collar
43240                                                              <NA>
43241                                      based on weight (50-100 lbs)
43242                                         based on weight (18+ lbs)
43243                                               tablet/pill/capsule
43244                                                            collar
43246                                                   based on weight
43247                                                              <NA>
43251                                                              <NA>
43254                                                              <NA>
43258                                                              <NA>
43259                                                              <NA>
43265                                                              <NA>
43270                                                              <NA>
43286                                                              <NA>
43291                                                              <NA>
43292                                                              <NA>
43293                                       based on weight (55-88 lbs)
43310                                               tablet/pill/capsule
43329                                                              <NA>
43334                                                              <NA>
43366                                                              <NA>
43370                                                   based on weight
43388                                                   based on weight
43396                                                              <NA>
43397                                                              <NA>
43398                                                              <NA>
43399                                                              <NA>
43400                                                              <NA>
43405                                                      small amount
43412                                                      small amount
43416                                                             spray
43423                                                              <NA>
43424                                                              <NA>
43430                                                            powder
43435                                                   based on weight
43436                                                              <NA>
43442                                                   based on weight
43443                                                              <NA>
43465                                               tablet/pill/capsule
43467                                                       unspecified
43469                                                       unspecified
43470                                                       unspecified
43471                                                       unspecified
43482                                               tablet/pill/capsule
43491                                                   based on weight
43493                                                              <NA>
43494                                                              <NA>
43496                                                              <NA>
43497                                                              <NA>
43498                                                              <NA>
43510                                                   based on weight
43511                                                   based on weight
43512                                                   based on weight
43522                                                   based on weight
43527                       272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                               tablet/pill/capsule
43532                                               tablet/pill/capsule
43535                                               tablet/pill/capsule
43538                                               tablet/pill/capsule
43539                                               tablet/pill/capsule
43540                                                              <NA>
43545                                                   based on weight
43546                                       based on weight (44-88 lbs)
43547                                                   based on weight
43548                                               tablet/pill/capsule
43549                                                       bottle/vial
43550                                                      small amount
43561                                                              <NA>
43563                                               tablet/pill/capsule
43570                                                              <NA>
43601                                                              <NA>
43610                                                  0.125 inch strip
43611                                                              <NA>
43620                                                              <NA>
43621                                                                 %
43622                                                              <NA>
43636                                       based on weight (40-85 lbs)
43637                                             1 tablet/pill/capsule
43639                                                              <NA>
43640                                                              <NA>
43641                                               tablet/pill/capsule
43642                                                              <NA>
43643                                                          wipe/pad
43644                                                              <NA>
43645                                                              <NA>
43646                                                              <NA>
43650                                                              <NA>
43652                                                              tube
43653                                               tablet/pill/capsule
43669                                                          wipe/pad
43670                                                              <NA>
43674                                               tablet/pill/capsule
43675                                                              <NA>
43678                                                       application
43683                                               tablet/pill/capsule
43684                                                   0.25 inch strip
43685                                                      small amount
43686                                                      small amount
43697                                      based on weight (50-100 lbs)
43698                                       based on weight (24-60 lbs)
43701                                      based on weight (50-100 lbs)
43702                                       based on weight (44-88 lbs)
43706                                             1 tablet/pill/capsule
43707                                             1 tablet/pill/capsule
43709                                                            1 tube
43712                                                      small amount
43714                                                   moderate amount
43715                                                      small amount
43738                                                              <NA>
43743                                               tablet/pill/capsule
43744                                                            liquid
43745                                                    1 pack/package
43746                                                   based on weight
43747                                                   based on weight
43751                                                      pack/package
43755                                                              <NA>
43756                                                              <NA>
43765                                                              pump
43766                                                              <NA>
43778                                                              <NA>
43783                                                   based on weight
43784                                                   based on weight
43785                                                   based on weight
43790                                                              <NA>
43806                                                             spray
43807                                                    shampoo/mousse
43829                                                              <NA>
43831                                                              <NA>
43838                                                              <NA>
43843                                                              <NA>
43844                                                              <NA>
43851                                                              <NA>
43853                                                              <NA>
43854                                                              <NA>
43878                                               tablet/pill/capsule
43880                                               tablet/pill/capsule
43884                                                              <NA>
43885                                               tablet/pill/capsule
43887                                                              <NA>
43889                                                   based on weight
43893                                               tablet/pill/capsule
43894                                                            collar
43896                                               tablet/pill/capsule
43897                                                              <NA>
43898                                                              <NA>
43919                                               tablet/pill/capsule
43920                                                              tube
43938                                                   based on weight
43939                                                   based on weight
43949                                                   based on weight
43950                                                   based on weight
43958                                                   based on weight
43959                                                   based on weight
43960                                                   based on weight
43963                                                              <NA>
43965                                                              <NA>
43975                                                   1.5 billion cfu
43976                                                              <NA>
43977                                                              <NA>
43980                                                              <NA>
43997                                                        inch strip
44031                                                              <NA>
44037                                                              <NA>
44050                                                        1 wipe/pad
44051                                                              <NA>
44055                                                              <NA>
44084                                                        inch strip
44087                                                       unspecified
44090                                                       unspecified
44119                                                              <NA>
44123                                                             spray
44126                                               tablet/pill/capsule
44127                                               tablet/pill/capsule
44129                                             1 tablet/pill/capsule
44131                                                   based on weight
44132                                                   based on weight
44154                                                       unspecified
44155                                                   based on weight
44157                                                   based on weight
44158                                                   based on weight
44164                                                   based on weight
44207                                                      small amount
44209                                                              1 ml
44211                                      based on weight (60-120 lbs)
44212                                               tablet/pill/capsule
44214                                                              <NA>
44216                                      based on weight (60-120 lbs)
44218                                      based on weight (60-120 lbs)
44219                                                              <NA>
44220                                                              <NA>
44222                                                              <NA>
44223                                                              <NA>
44224                                                              <NA>
44225                                                              <NA>
44226                                                              <NA>
44227                                                              <NA>
44234                                                              <NA>
44235                                                              <NA>
44240                                                              <NA>
44241                                                              <NA>
44242                                                              <NA>
44243                                                              <NA>
44244                                                              <NA>
44245                                                              <NA>
44246                                                              <NA>
44247                                                              <NA>
44249                                             1 tablet/pill/capsule
44250                                             1 tablet/pill/capsule
44251                                             1 tablet/pill/capsule
44252                                             1 tablet/pill/capsule
44253                                                   based on weight
44255                                                   based on weight
44268                                                   based on weight
44280                                                      small amount
44282                                                      small amount
44309                                                              <NA>
44321                                                   based on weight
44330                                               tablet/pill/capsule
44331                                               tablet/pill/capsule
44334                                               tablet/pill/capsule
44335                                               tablet/pill/capsule
44336                                               tablet/pill/capsule
44337                                               tablet/pill/capsule
44347                                                              <NA>
44350                                                              <NA>
44363                                                              <NA>
44372                                                          ointment
44382                                                   based on weight
44385                                                              <NA>
44386                                                              <NA>
44390                                               tablet/pill/capsule
44391                                                              <NA>
44392                                                              <NA>
44395                                               tablet/pill/capsule
44398                                                      pack/package
44408                                                   based on weight
44420                                                   based on weight
44421                                                   based on weight
44422                                                   based on weight
44423                                                   based on weight
44425                                                   based on weight
44428                                               tablet/pill/capsule
44429                                                              <NA>
44431                                                   based on weight
44434                                                              <NA>
44452                                                   based on weight
44473                                                   based on weight
44501                                                              <NA>
44502                                                              <NA>
44503                                                              <NA>
44504                                                              <NA>
44505                                                              <NA>
44507                                                              <NA>
44508                                                              <NA>
44509                                                              <NA>
44518                                                              <NA>
44520                                                              <NA>
44524                                                              <NA>
44525                                                              <NA>
44531                                                              <NA>
44532                                                              <NA>
44542                                                      pack/package
44543                                               tablet/pill/capsule
44544                                      based on weight (50-100 lbs)
44545                                                              <NA>
44546                                                   based on weight
44547                                                   based on weight
44552                                                              <NA>
44558                                               tablet/pill/capsule
44559                                                       bottle/vial
44570                                               tablet/pill/capsule
44571                                                       bottle/vial
44576                                               tablet/pill/capsule
44577                                                       bottle/vial
44595                                                   0.25 inch strip
44607                                                     1 application
44608                                               tablet/pill/capsule
44609                                                       unspecified
44614                                               tablet/pill/capsule
44616                                               tablet/pill/capsule
44618                                               tablet/pill/capsule
44646                                                              <NA>
44649                                      based on weight (85-130 lbs)
44652                                                              <NA>
44653                                                              <NA>
44654                                                              <NA>
44655                                                              <NA>
44658                                                              <NA>
44660                                                              <NA>
44663                                                              <NA>
44671                                                   based on weight
44672                                                              <NA>
44674                                                   based on weight
44677                                                              <NA>
44679                                                              <NA>
44683                                                              <NA>
44684                                               tablet/pill/capsule
44706                                                          ointment
44732                                                              <NA>
44742                                                   based on weight
44743                                                   based on weight
44745                                                   based on weight
44746                                                              <NA>
44747                                                            collar
44755                                                              <NA>
44757                                                              <NA>
44769                                                              <NA>
44771                                                   based on weight
44779                                                              <NA>
44782                                                              <NA>
44795                                                        inch strip
44796                                                              <NA>
44797                                                              <NA>
44798                                                              <NA>
44799                                                              <NA>
44800                                                              <NA>
44804                                                              <NA>
44805                                                              <NA>
44820                                               tablet/pill/capsule
44827                                               tablet/pill/capsule
44828                                               tablet/pill/capsule
44829                                               tablet/pill/capsule
44830                                                              <NA>
44831                                                              <NA>
44834                                                              tube
44843                                             1 tablet/pill/capsule
44844                                             1 tablet/pill/capsule
44857                                                              <NA>
44858                                                              <NA>
44862                                               tablet/pill/capsule
44863                                                              <NA>
44864                                                              <NA>
44866                                                              <NA>
44867                                                            1 tube
44868                                                            1 tube
44869                                             1 tablet/pill/capsule
44870                                                              <NA>
44875                                                              <NA>
44877                                                              <NA>
44878                                                              <NA>
44879                                               tablet/pill/capsule
44899                                                              <NA>
44905                                                              <NA>
44915                                                              <NA>
44916                                                              <NA>
44917                                                            1 tube
44918                                                       combination
44920                                                              <NA>
44922                                                              <NA>
44924                                               tablet/pill/capsule
44925                                                              <NA>
44927                                                   based on weight
44933                                                              <NA>
44936                                                              <NA>
44937                                                              <NA>
44938                                                              <NA>
44939                                                              <NA>
44946                                               tablet/pill/capsule
44947                                               tablet/pill/capsule
44948                                               tablet/pill/capsule
44949                                               tablet/pill/capsule
44950                                               tablet/pill/capsule
44957                                             1 tablet/pill/capsule
44958                                             1 tablet/pill/capsule
44990                                                              <NA>
44994                                                   based on weight
44997                                                      pack/package
45000                                                   based on weight
45005                                                              <NA>
45007                                                   based on weight
45009                                                              <NA>
45011                                                              <NA>
45013                                                              <NA>
45014                                                   based on weight
45015                                                              <NA>
45016                                             1 tablet/pill/capsule
45017                                                              <NA>
45023                                                              <NA>
45027                                                              <NA>
45034                                                   0.25 inch strip
45045                                                   based on weight
45047                                                              <NA>
45053                                          based on weight (25 lbs)
45054                                       based on weight (10-24 lbs)
45055                                       based on weight (25-60 lbs)
45056                                       based on weight (26-50 lbs)
45057                                       based on weight (25-60 lbs)
45058                                       based on weight (26-50 lbs)
45059                                      based on weight (50-100 lbs)
45061                                                   based on weight
45062                                                   based on weight
45063                                                              <NA>
45064                                                   based on weight
45066                                                              <NA>
45068                                                   based on weight
45072                                                              <NA>
45073                                                              <NA>
45076                                               tablet/pill/capsule
45109                                               tablet/pill/capsule
45110                                                              <NA>
45112                                                      small amount
45115                                                              <NA>
45116                                                              <NA>
45117                                                      pack/package
45123                                                              <NA>
45128                                                   based on weight
45129                                                   based on weight
45134                                                              <NA>
45139                                                              <NA>
45140                                                   based on weight
45149                                               tablet/pill/capsule
45150                                               tablet/pill/capsule
45154                                                   based on weight
45172                                                              <NA>
45173                                                              <NA>
45174                                                              <NA>
45175                                                              <NA>
45178                                             1 tablet/pill/capsule
45179                                                     1 bottle/vial
45180                                                      small amount
45181                                                      small amount
45182                                                   based on weight
45183                                                   based on weight
45184                                      based on weight (50-100 lbs)
45185                                       based on weight (44-88 lbs)
45186                                                   based on weight
45187                                                   based on weight
45188                                                   based on weight
45189                                                   based on weight
45195                                                              <NA>
45199                                                              <NA>
45203                                               tablet/pill/capsule
45204                                                              <NA>
45208                                                              pump
45209                                                              <NA>
45210                                                      small amount
45212                                                   based on weight
45213                                                   based on weight
45216                                                   based on weight
45217                                                   based on weight
45224                                                              <NA>
45225                                                   based on weight
45226                                                   based on weight
45236                                                   based on weight
45237                                                   based on weight
45240                                                   based on weight
45241                                                   based on weight
45242                                                   based on weight
45255                                                              <NA>
45257                                                              <NA>
45263                                               tablet/pill/capsule
45268                                                       unspecified
45273                                                              <NA>
45274                                                              <NA>
45280                                                              <NA>
45283                                                   based on weight
45284                                                   based on weight
45286                                                              <NA>
45287                                                              <NA>
45294                                                              <NA>
45295                                                              <NA>
45297                                                              <NA>
45298                                                   based on weight
45299                                                   based on weight
45301                                                   based on weight
45302                                                   based on weight
45305                                                              <NA>
45307                                                       unspecified
45309                                                              <NA>
45310                                                   based on weight
45311                                                   based on weight
45312                                                   based on weight
45313                                                   based on weight
45322                                                              <NA>
45327                                                              <NA>
45335                                                              <NA>
45344                                               tablet/pill/capsule
45345                                               tablet/pill/capsule
45358                                                              <NA>
45359                                                              <NA>
45372                                                      small amount
45383                                                              <NA>
45403                                                              <NA>
45405                                                   based on weight
45406                                                   based on weight
45411                                                          ointment
45425                       272 mcg ivermectin, 227 mg pyrantel pamoate
45426                                                       unspecified
45434                                                              <NA>
45435                                                              <NA>
45443                                                       combination
45445                                               tablet/pill/capsule
45451                                                   based on weight
45452                                                   based on weight
45463                                                              <NA>
45468                                                              <NA>
45470                                                   based on weight
45471                                                             mg/ml
45474                                                   based on weight
45476                                                              <NA>
45479                                                              <NA>
45480                                                              <NA>
45484                                                   based on weight
45498                                                              <NA>
45499                                               tablet/pill/capsule
45500                                               tablet/pill/capsule
45503                                                              <NA>
45504                                               tablet/pill/capsule
45508                                                            1 tube
45531                                                              <NA>
45534                                                              <NA>
45553                                                              <NA>
45555                                                       unspecified
45556                                                   based on weight
45572                                                              <NA>
45582                                                   based on weight
45585                                               tablet/pill/capsule
45586                                                              <NA>
45587                                                              <NA>
45590                                                   based on weight
45591                                                              <NA>
45592                                                              <NA>
45626                                                              <NA>
45629                                                              <NA>
45642                                                              <NA>
45650                                                   based on weight
45651                                               tablet/pill/capsule
45654                                                              <NA>
45655                                                   based on weight
45656                                                   based on weight
45663                                                              <NA>
45664                                                   based on weight
45665                                                   based on weight
45666                                                              <NA>
45667                                                                 %
45670                                                              <NA>
45671                                                              <NA>
45674                                                             drops
45675                                                             drops
45676                                                             drops
45683                                                   based on weight
45684                                                              <NA>
45699                                                              <NA>
45700                                                              <NA>
45703                                                              <NA>
45704                                                              <NA>
45722                                                   based on weight
45724                                                              <NA>
45725                                                              <NA>
45726                                                              <NA>
45727                                                              <NA>
45728                                                              <NA>
45729                                                              <NA>
45735                                               tablet/pill/capsule
45736                                                              tube
45742                                                   based on weight
45751                                                              <NA>
45764                                                              <NA>
45775                                                              <NA>
45776                                                              <NA>
45786                                                              <NA>
45787                                                   based on weight
45791                                                   based on weight
45794                                                              <NA>
45798                                                              <NA>
45799                                             1 tablet/pill/capsule
45800                                             1 tablet/pill/capsule
45816                                                            collar
45820                                                   based on weight
45843                                                         as needed
45844                                                              <NA>
45853                                                          inhalant
45862                                               tablet/pill/capsule
45863                                               tablet/pill/capsule
45864                                               tablet/pill/capsule
45868                                                   based on weight
45869                                                   based on weight
45870                                                            1 pump
45871                                                              <NA>
45872                                             1 tablet/pill/capsule
45876                                                              <NA>
45884                                               tablet/pill/capsule
45885                                               tablet/pill/capsule
45886                                                              <NA>
45898                                               tablet/pill/capsule
45899                                                              tube
45901                                      based on weight (50-100 lbs)
45908                                               tablet/pill/capsule
45909                                                              tube
45914                                      based on weight (50-100 lbs)
45924                                                              <NA>
45928                                                   based on weight
45968                                                              <NA>
45969                                                   based on weight
45970                                                   based on weight
45971                                                              <NA>
45972                                                              <NA>
45974                                                              <NA>
45990                                                   based on weight
45994                                                              <NA>
45995                                                      pack/package
45996                                                              <NA>
45997                                                   based on weight
46014                                                        inch strip
46018                                                   based on weight
46019                                                   based on weight
46020                                                              <NA>
46021                                               tablet/pill/capsule
46022                                               tablet/pill/capsule
46025                                               tablet/pill/capsule
46043                                               tablet/pill/capsule
46044                                               tablet/pill/capsule
46071                                               tablet/pill/capsule
46075                                                              <NA>
46076                                               tablet/pill/capsule
46077                                               tablet/pill/capsule
46078                                      based on weight (50-100 lbs)
46079                                                         50-100 mg
46085                                                              <NA>
46091                                                   based on weight
46092                                                   based on weight
46094                                                              <NA>
46095                                                              <NA>
46100                                      based on weight (50-100 lbs)
46101                                                              <NA>
46102                                                              <NA>
46103                                                              <NA>
46107                                               tablet/pill/capsule
46108                                                         injection
46110                                                   based on weight
46116                                      based on weight (50-100 lbs)
46119                                                   based on weight
46122                                                   based on weight
46128                                                              <NA>
46131                                                              <NA>
46132                                                              <NA>
46134                                                      pack/package
46169                                                              <NA>
46170                                                      small amount
46171                                                      small amount
46173                                                   based on weight
46174                                                   based on weight
46177                                                              <NA>
46178                                                              <NA>
46179                                                              <NA>
46186                                                              <NA>
46198                                                   based on weight
46200                                               tablet/pill/capsule
46201                                               tablet/pill/capsule
46202                                                              <NA>
46213                                                            1 tube
46218                                               tablet/pill/capsule
46219                                               tablet/pill/capsule
46226                                                              <NA>
46227                                                   based on weight
46255                                                      small amount
46265                                                              <NA>
46277                                             1 tablet/pill/capsule
46278                                             1 tablet/pill/capsule
46287                                             1 tablet/pill/capsule
46288                                             1 tablet/pill/capsule
46291                                             1 tablet/pill/capsule
46292                                             1 tablet/pill/capsule
46293                                             1 tablet/pill/capsule
46295                                             1 tablet/pill/capsule
46296                                             1 tablet/pill/capsule
46302                                               tablet/pill/capsule
46303                                                              <NA>
46304                                                   based on weight
46305                                                              <NA>
46308                                                              <NA>
46311                                                              <NA>
46312                                               tablet/pill/capsule
46313                                                              <NA>
46314                                                              <NA>
46319                                                      small amount
46320                                                              <NA>
46324                                                              <NA>
46325                                                              <NA>
46328                                                              <NA>
46345                                                              <NA>
46350                                                              <NA>
46355                                                              <NA>
46358                                                              <NA>
46360                                                              pump
46377                                                              pump
46379                                                              <NA>
46399                                               tablet/pill/capsule
46406                                                              3 ml
46410                                                              <NA>
46411                                                              <NA>
46413                                                            collar
46418                                                            collar
46424                                                            collar
46431                                                            collar
46432                                                      small amount
46435                                                              <NA>
46436                                                       application
46474                                                   based on weight
46475                                                   based on weight
46476                                                   based on weight
46478                                                   based on weight
46479                                                   based on weight
46480                                                   based on weight
46481                                                   based on weight
46482                                      based on weight (50-100 lbs)
46483                                       based on weight (56-95 lbs)
46486                                                   based on weight
46487                                               tablet/pill/capsule
46488                                               tablet/pill/capsule
46489                                               tablet/pill/capsule
46490                                                              <NA>
46491                                                   based on weight
46492                                                   based on weight
46493                                                   based on weight
46494                                               tablet/pill/capsule
46499                                                              <NA>
46502                                                              <NA>
46504                                                              <NA>
46505                                                              <NA>
46506                                                              <NA>
46512                                                              <NA>
46517                                                              <NA>
46521                                                              <NA>
46524                                                              <NA>
46526                                                              <NA>
46527                                                              <NA>
46528                                                              <NA>
46529                                                              <NA>
46530                                                              <NA>
46532                                                              <NA>
46533                                                              <NA>
46534                                                              <NA>
46543                                                              <NA>
46544                                                              <NA>
46547                                                              <NA>
46551                                                              <NA>
46553                                                              <NA>
46555                                                             spray
46568                                                              <NA>
46569                                                              <NA>
46570                                                              <NA>
46571                                                              <NA>
46572                                                       combination
46573                                                              <NA>
46574                                                              <NA>
46575                                                              <NA>
46579                                                              <NA>
46588                                                              <NA>
46590                                                              <NA>
46591                                                              <NA>
46593                                                              <NA>
46606                                                              <NA>
46607                                                              <NA>
46615                                                   based on weight
46616                                                   based on weight
46617                                               tablet/pill/capsule
46618                                                              <NA>
46664                                                            1 tube
46665                                                              <NA>
46672                                                   based on weight
46676                                                      small amount
46680                                                              <NA>
46687                                                              <NA>
46690                                                             spray
46694                                                       application
46702                                                             spray
46703                                                          wipe/pad
46716                                                              <NA>
46717                                                              <NA>
46718                                                              <NA>
46729                                                       combination
46730                                                       combination
46732                                                              <NA>
46737                                                              <NA>
46747                                                              <NA>
46753                                                      small amount
46762                                                              <NA>
46763                                                              <NA>
46766                                                              <NA>
46767                                                   based on weight
46771                                                              <NA>
46775                                                   based on weight
46776                                                   based on weight
46777                                                   based on weight
46781                                      based on weight (50-100 lbs)
46782                                      based on weight (60-120 lbs)
46783                                                      small amount
46784                                      based on weight (50-100 lbs)
46785                                      based on weight (60-120 lbs)
46786                                                   based on weight
46787                                                   based on weight
46788                                             1 tablet/pill/capsule
46789                                             1 tablet/pill/capsule
46804                                                              <NA>
46811                                             1 tablet/pill/capsule
46812                                             1 tablet/pill/capsule
46816                                                   based on weight
46818                                                              <NA>
46826                                                              <NA>
46827                                                              <NA>
46835                                                              <NA>
46836                                                              <NA>
46849                                                              <NA>
46853                                                              <NA>
46867                                                              <NA>
46874                                                        inch strip
46880                                                          ointment
46881                                                              <NA>
46883                                                              <NA>
46884                                             1 tablet/pill/capsule
46885                                             1 tablet/pill/capsule
46889                                                              <NA>
46891                                                    160 mg, 800 mg
46902                                                              <NA>
46903                                                       application
46904                                               tablet/pill/capsule
46905                                                              <NA>
46908                                                             spray
46915                                                          ointment
46931                                                      pack/package
46933                                                   based on weight
46938                                                      pack/package
46944                                                      pack/package
46961                                                          ointment
46962                                                              <NA>
46972                                             1 tablet/pill/capsule
46973                                             1 tablet/pill/capsule
46976                                                              <NA>
46977                                                                 %
46978                                                              <NA>
46979                                                              <NA>
46980                                                              <NA>
46981                                                              <NA>
46982                                                      small amount
46983                                                              <NA>
46984                                                              dose
46985                                                              dose
46986                                                   based on weight
46987                                                   based on weight
47000                                                              <NA>
47004                                      based on weight (50-100 lbs)
47010                                                   based on weight
47011                                                   based on weight
47018                                                   based on weight
47024                                                   based on weight
47025                                                   based on weight
47040                                                              <NA>
47041                                                              <NA>
47042                                                              <NA>
47043                                                   based on weight
47044                                                   based on weight
47045                                                              <NA>
47049                                                              <NA>
47050                                                              <NA>
47053                                                   based on weight
47055                                                              <NA>
47060                                                              <NA>
47065                                                              <NA>
47069                                                              <NA>
47076                                                              <NA>
47080                                                              <NA>
47081                                                              <NA>
47085                                                   based on weight
47086                                                   based on weight
47090                                                              <NA>
47095                                                   based on weight
47096                                                   based on weight
47097                                                   based on weight
47098                                                       unspecified
47104                                                      small amount
47105                                                      small amount
47106                                                              tube
47108                                                              <NA>
47123                                                              <NA>
47125                                                              <NA>
47126                                                              <NA>
47128                                                              <NA>
47136                                                              <NA>
47137                                                              <NA>
47140                                                              <NA>
47143                                                   based on weight
47146                                                              <NA>
47152                                                              <NA>
47153                                                   based on weight
47154                                                   based on weight
47155                                             1 tablet/pill/capsule
47156                                             1 tablet/pill/capsule
47162                                                       application
47164                                                             units
47178                                                   based on weight
47180                                                              <NA>
47181                                                              tube
47183                                               tablet/pill/capsule
47184                                               tablet/pill/capsule
47185                                                              <NA>
47186                                                              <NA>
47187                                               tablet/pill/capsule
47193                                                   based on weight
47194                                                   based on weight
47196                                                   based on weight
47197                                               tablet/pill/capsule
47204                                                              <NA>
47208                                               tablet/pill/capsule
47209                                             1 tablet/pill/capsule
47210                                             1 tablet/pill/capsule
47220                                                            collar
47221                                                              <NA>
47222                                                             spray
47240                                                              <NA>
47248                                                       unspecified
47251                                                       unspecified
47253                                                   based on weight
47255                                                   based on weight
47260                                                   based on weight
47266                                                              <NA>
47277                                                   based on weight
47286                                                   based on weight
47302                                                              <NA>
47305                                             1 tablet/pill/capsule
47313                                                   based on weight
47323                                                              <NA>
47325                                                              <NA>
47334                                                   based on weight
47337                                                              <NA>
47343                                                              <NA>
47345                                                              <NA>
47349                                                              <NA>
47350                                                              puff
47355                                                      small amount
47360                                                              <NA>
47390                                                       combination
47407                                                              <NA>
47409                                                              <NA>
47411                                                   based on weight
47412                                             1 tablet/pill/capsule
47415                                             1 tablet/pill/capsule
47416                                                   based on weight
47417                                                   based on weight
47420                                                   based on weight
47421                                                   based on weight
47433                                                              <NA>
47439                                                              <NA>
47451                                                              <NA>
47478                                                   based on weight
47479                                               tablet/pill/capsule
47481                                                        2.27 mg/lb
47483                                                      small amount
47484                                                            collar
47486                                                   based on weight
47490                                                              <NA>
47493                                                   based on weight
47496                                               tablet/pill/capsule
47497                                             1 tablet/pill/capsule
47498                                                            collar
47513                                                              <NA>
47515                                                               mcg
47517                                                              <NA>
47524                                                              <NA>
47539                                                              <NA>
47540                                                   moderate amount
47544                                                              <NA>
47547                                                              <NA>
47557                                                            collar
47559                                                              <NA>
47561                                                              <NA>
47562                                                   based on weight
47563                                                   based on weight
47576                                                       bottle/vial
47577                                               tablet/pill/capsule
47578                                               tablet/pill/capsule
47580                                                   syringe/pipette
47586                                               tablet/pill/capsule
47587                                                       bottle/vial
47588                                                       combination
47589                                                              <NA>
47590                                                              <NA>
47592                                                              <NA>
47593                                                              <NA>
47594                                                              <NA>
47595                                                              <NA>
47597                                                              <NA>
47600                                                              <NA>
47609                                                   based on weight
47628                                                              tube
47629                                                              <NA>
47630                                                              <NA>
47635                                                              <NA>
47636                                                              <NA>
47658                                                              <NA>
47681                                               tablet/pill/capsule
47682                                               tablet/pill/capsule
47684                                                             spray
47693                                                          wipe/pad
47694                                                            powder
47696                                               tablet/pill/capsule
47698                                                          wipe/pad
47699                                                            powder
47702                                                              <NA>
47706                                                              <NA>
47715                                                              <NA>
47716                                                              <NA>
47720                                                      small amount
47721                                                              <NA>
47733                                                   based on weight
47734                                                              <NA>
47739                                                              <NA>
47743                                                              <NA>
47744                                               tablet/pill/capsule
47745                                                              <NA>
47746                                                              <NA>
47752                                                            1 tube
47755                                                            1 tube
47760                                             1 tablet/pill/capsule
47800                                               tablet/pill/capsule
47801                                                       application
47802                                               tablet/pill/capsule
47803                                                      small amount
47808                                                   based on weight
47809                                                   based on weight
47810                                                   based on weight
47811                                                   based on weight
47812                                                   based on weight
47815                                                   based on weight
47816                                                   based on weight
47817                                                       unspecified
47825                                                              <NA>
47835                                             1 tablet/pill/capsule
47836                                                   based on weight
47840                                             23 mg, 228 mg, 460 mg
47847                                                       unspecified
47860                                                              <NA>
47861                                                              <NA>
47862                                                              <NA>
47863                                                              <NA>
47867                                                              <NA>
47870                                                   based on weight
47877                                                              <NA>
47887                                                   based on weight
47888                                                   based on weight
47889                                                              <NA>
47890                                                              <NA>
47891                                                              <NA>
47892                                                              <NA>
47894                                                              <NA>
47900                                                      small amount
47902                                                   based on weight
47906                                                   based on weight
47908                                                   based on weight
47909                                                              <NA>
47910                                                              <NA>
47917                                                              <NA>
47928                                                              <NA>
47949                                                              <NA>
47950                                                              <NA>
47951                                                              <NA>
47952                                                              <NA>
47953                                                             spray
47969                                                   based on weight
47970                                                   based on weight
47971                                                   based on weight
47975                                               tablet/pill/capsule
47976                                             1 tablet/pill/capsule
47979                                                   based on weight
47980                                                   based on weight
47981                                                   based on weight
47983                                                              <NA>
47984                                                   based on weight
47985                                                   based on weight
47989                                                   based on weight
47990                                                   based on weight
47995                                                      small amount
47996                                      based on weight (50-100 lbs)
47997                                      based on weight (60-120 lbs)
47998                                                              <NA>
47999                                                              <NA>
48000                                                              <NA>
48001                                                              <NA>
48002                                                              <NA>
48003                                                              <NA>
48004                                                              <NA>
48005                                                              <NA>
48006                                                              <NA>
48007                                                              <NA>
48008                                                              <NA>
48012                                                   based on weight
48013                                                   based on weight
48014                                                   based on weight
48016                                                              <NA>
48020                                             1 tablet/pill/capsule
48021                                             1 tablet/pill/capsule
48028                                             1 tablet/pill/capsule
48029                                             1 tablet/pill/capsule
48030                                             1 tablet/pill/capsule
48031                                          2 tablets/pills/capsules
48032                                             1 tablet/pill/capsule
48033                                             1 tablet/pill/capsule
48034                                                          0.25 tsp
48035                                                 0.25 pack/package
48040                                               tablet/pill/capsule
48041                                                              <NA>
48046                                             1 tablet/pill/capsule
48047                                             1 tablet/pill/capsule
48048                                             1 tablet/pill/capsule
48049                                               tablet/pill/capsule
48052                                                      pack/package
48069                                                       unspecified
48072                                                      small amount
48076                                                   based on weight
48083                                                   based on weight
48084                                                   based on weight
48087                                               tablet/pill/capsule
48088                                               tablet/pill/capsule
48089                                                              <NA>
48090                                                              <NA>
48094                                                              <NA>
48100                                                        inch strip
48101                                                              <NA>
48102                                               tablet/pill/capsule
48103                                                              <NA>
48105                                               tablet/pill/capsule
48106                                                      small amount
48107                                                      small amount
48108                                                      small amount
48109                                               tablet/pill/capsule
48110                                                            collar
48114                                                      small amount
48120                                               tablet/pill/capsule
48121                                                              <NA>
48127                                               tablet/pill/capsule
48128                                                              <NA>
48129                                                              <NA>
48131                                                              <NA>
48132                                               tablet/pill/capsule
48133                                               tablet/pill/capsule
48142                                               tablet/pill/capsule
48143                                                              <NA>
48147                                               tablet/pill/capsule
48148                                               tablet/pill/capsule
48151                                               tablet/pill/capsule
48152                                               tablet/pill/capsule
48154                                                              <NA>
48155                                                              <NA>
48157                                               tablet/pill/capsule
48158                                               tablet/pill/capsule
48159                                             1 tablet/pill/capsule
48160                                             1 tablet/pill/capsule
48161                                                              <NA>
48162                                                              <NA>
48163                                                              <NA>
48167                                               tablet/pill/capsule
48169                                                              <NA>
48170                                                              <NA>
48171                                                              <NA>
48178                                                              <NA>
48182                                                       combination
48184                                                              <NA>
48185                                                              <NA>
48188                                                      small amount
48201                                                              <NA>
48213                                                            liquid
48214                                               tablet/pill/capsule
48215                                               tablet/pill/capsule
48217                                                              <NA>
48218                                                              <NA>
48220                                                       unspecified
48221                                                       unspecified
48222                                                       unspecified
48223                                                              <NA>
48231                                                              <NA>
48237                                                        inch strip
48238                                                              <NA>
48240                                                              <NA>
48248                                                              <NA>
48251                                                   based on weight
48252                                                   based on weight
48258                                             1 tablet/pill/capsule
48265                                                              <NA>
48266                                                              <NA>
48267                                                              <NA>
48271                                                              <NA>
48274                                                              <NA>
48277                                                              <NA>
48285                                                              <NA>
48287                                                              <NA>
48288                                                              <NA>
48289                                                              <NA>
48290                                                              <NA>
48291                                                              <NA>
48292                                                              <NA>
48294                                                          ointment
48297                                               tablet/pill/capsule
48298                                               tablet/pill/capsule
48299                                                          ointment
48300                                               tablet/pill/capsule
48306                                                   based on weight
48307                                                              <NA>
48310                                                   based on weight
48311                                                              <NA>
48312                                                              <NA>
48314                                                              <NA>
48322                                                     5 billion cfu
48327                                                              <NA>
48328                                                              <NA>
48334                                                              <NA>
48336                                                              <NA>
48337                                                              <NA>
48338                                                              <NA>
48339                                                              <NA>
48342                                                              <NA>
48343                                                             spray
48344                                                              <NA>
48345                                                       application
48350                                                              <NA>
48351                                                              <NA>
48352                                                              <NA>
48353                                                              <NA>
48354                                                              <NA>
48355                                                                 %
48374                                                              <NA>
48376                                                              <NA>
48377                                                              <NA>
48378                                                              <NA>
48380                                               tablet/pill/capsule
48381                                               tablet/pill/capsule
48383                                               tablet/pill/capsule
48384                                               tablet/pill/capsule
48394                                                              <NA>
48406                                               tablet/pill/capsule
48420                                                              <NA>
48438                                                              <NA>
48439                                               tablet/pill/capsule
48440                                               tablet/pill/capsule
48441                                               tablet/pill/capsule
48442                                               tablet/pill/capsule
48444                                             1 tablet/pill/capsule
48447                                                   based on weight
48448                                                   based on weight
48481                                                              <NA>
48483                                                              <NA>
48494                                               tablet/pill/capsule
48495                                                              <NA>
48496                                                              <NA>
48497                                                              <NA>
48498                                                              <NA>
48499                                                      small amount
48500                                                              <NA>
48502                                                              <NA>
48503                                                              tube
48504                                                              <NA>
48505                                                              <NA>
48508                                                              <NA>
48513                                               tablet/pill/capsule
48514                                                              tube
48520                                                              <NA>
48521                                                              <NA>
48540                                                              <NA>
48541                                               tablet/pill/capsule
48542                                               tablet/pill/capsule
48560                                                              tube
48598                                               tablet/pill/capsule
48602                                                              <NA>
48603                                                              <NA>
48609                                                              <NA>
48610                                                              <NA>
48611                                                              <NA>
48615                                                              <NA>
48621                                                      small amount
48624                                                             spray
48633                                                              <NA>
48636                                                                2%
48643                                               tablet/pill/capsule
48661                                               tablet/pill/capsule
48662                                                              <NA>
48664                                             1 tablet/pill/capsule
48667                                             1 tablet/pill/capsule
48668                                                     1 application
48673                                                              <NA>
48680                                               tablet/pill/capsule
48683                                                   based on weight
48684                                                   based on weight
48692                                                              <NA>
48693                                                              <NA>
48694                                                              <NA>
48696                                                   based on weight
48697                                                   based on weight
48698                                                   based on weight
48712                                             1 tablet/pill/capsule
48713                                             1 tablet/pill/capsule
48718                                                              <NA>
48719                                                              <NA>
48720                                      based on weight (50-100 lbs)
48721                                                   based on weight
48722                                                            collar
48724                                               tablet/pill/capsule
48725                                                            collar
48729                                               tablet/pill/capsule
48733                                               tablet/pill/capsule
48734                                             1 tablet/pill/capsule
48735                                             1 tablet/pill/capsule
48736                                                            collar
48770                                                              <NA>
48782                                                              <NA>
48802                                                              <NA>
48806                                                              <NA>
48808                                                              <NA>
48812                                                              <NA>
48819                                                              <NA>
48821                                                              <NA>
48835                                                             drops
48842                                                              <NA>
48845                                                   based on weight
48855                                                              <NA>
48859                                                              <NA>
48862                                                              <NA>
48869                                                              <NA>
48877                                                              <NA>
48889                                                      pack/package
48890                                               tablet/pill/capsule
48891                                               tablet/pill/capsule
48892                                                          ointment
48893                                                              <NA>
48894                                                              <NA>
48902                                                      small amount
48906                                                      small amount
48917                                      based on weight (50-100 lbs)
48918                                      based on weight (50-100 lbs)
48921                                                             spray
48935                                      based on weight (50-100 lbs)
48938                                                              <NA>
48946                                                              <NA>
48971                                                              <NA>
48994                                                              <NA>
48997                                                              <NA>
49002                                                              <NA>
49005                                                              <NA>
49012                                                       application
49015                                                              <NA>
49016                                                              <NA>
49017                                                              <NA>
49018                                                              <NA>
49019                                                              <NA>
49025                                                              <NA>
49026                                                              <NA>
49027                                                             spray
49028                                                              <NA>
49030                                                              <NA>
49033                                               tablet/pill/capsule
49034                                               tablet/pill/capsule
49035                                               tablet/pill/capsule
49036                                                       unspecified
49042                                                       unspecified
49044                                                       unspecified
49046                                                       unspecified
49051                                                              <NA>
49052                                                              <NA>
49066                                                   based on weight
49067                                                   based on weight
49082                                                   based on weight
49083                                                   based on weight
49084                                                   based on weight
49085                                                   based on weight
49096                                                   based on weight
49105                                                              <NA>
49113                                                      small amount
49114                                                              <NA>
49117                                                              <NA>
49120                                                              <NA>
49123                                               tablet/pill/capsule
49127                                                              <NA>
49128                                      based on weight (50-100 lbs)
49129                                      based on weight (60-120 lbs)
49130                                                      small amount
49163                                                              <NA>
49164                                                   based on weight
49167                                                              <NA>
49168                                                              <NA>
49169                                                              <NA>
49170                                                              <NA>
49184                                                       application
49185                                                              <NA>
49186                                                              <NA>
49193                                                              <NA>
49196                                                              <NA>
49208                                               tablet/pill/capsule
49209                                               tablet/pill/capsule
49216                                               tablet/pill/capsule
49217                                               tablet/pill/capsule
49218                          27 mg milbemycin oxime, 1620 mg spinosad
49219                                                              <NA>
49220                                                              <NA>
49227                                                      small amount
49229                                                      small amount
49231                                                      small amount
49232                                                    0.5 inch strip
49248                                                              <NA>
49250                                                   based on weight
49251                                                   based on weight
49252                                             1 tablet/pill/capsule
49253                                             1 tablet/pill/capsule
49266                                                   based on weight
49304                                                      small amount
49305                                                   based on weight
49314                                                   based on weight
49316                                               tablet/pill/capsule
49317                                                              <NA>
49323                                                            1 tube
49324                                             1 tablet/pill/capsule
49343                                               tablet/pill/capsule
49345                                                             spray
49346                                                   based on weight
49347                                                   based on weight
49348                                                   based on weight
49349                                                   based on weight
49350                                               tablet/pill/capsule
49351                                               tablet/pill/capsule
49352                                                   based on weight
49353                                                   based on weight
49371                                               tablet/pill/capsule
49372                                                              <NA>
49375                                                              <NA>
49376                                               tablet/pill/capsule
49377                                                              tube
49378                                               tablet/pill/capsule
49379                                                            1 tube
49388                          460 mg lufenuron, 23 mg milbemycin oxime
49393                                                              <NA>
49394                                                              <NA>
49395                                                              <NA>
49398                                                              <NA>
49401                                                              <NA>
49403                                                              <NA>
49404                                                              <NA>
49408                                               tablet/pill/capsule
49409                                               tablet/pill/capsule
49410                                                              <NA>
49421                                                              <NA>
49424                                                              <NA>
49437                                               tablet/pill/capsule
49438                                               tablet/pill/capsule
49442                                               tablet/pill/capsule
49460                                                   based on weight
49461                                                   based on weight
49462                                                              <NA>
49463                                                   based on weight
49464                                                   based on weight
49473                                                   based on weight
49487                                                   based on weight
49488                                                   based on weight
49491                                                   based on weight
49492                                                   based on weight
49509                                                       bottle/vial
49510                                               tablet/pill/capsule
49518                                                              <NA>
49520                                                              <NA>
49523                                                              <NA>
49524                                                              <NA>
49525                                                              <NA>
49526                                                      small amount
49531                                                              <NA>
49544                                                   based on weight
49545                                                   based on weight
49549                                                   based on weight
49550                                                   based on weight
49551                                                   based on weight
49552                                                   based on weight
49553                                                              <NA>
49554                                                              <NA>
49567                                                   based on weight
49568                                                          inhalant
49569                                      based on weight (50-100 lbs)
49572                                                   based on weight
49588                                                              <NA>
49589                                                              <NA>
49590                                                   based on weight
49591                                                   based on weight
49592                                               tablet/pill/capsule
49593                                                   based on weight
49596                                                              tube
49601                                                              <NA>
49604                                                              <NA>
49605                                               tablet/pill/capsule
49606                                                              <NA>
49607                                                              <NA>
49608                                                              <NA>
49640                                                              <NA>
49645                                                   based on weight
49649                                                   0.25 inch strip
49654                                                   0.25 inch strip
49659                                                        inch strip
49680                                                              <NA>
49698                                                              <NA>
49699                                                            1 tube
49705                                                              <NA>
49714                                                              <NA>
49715                                                              tube
49731                                                       unspecified
49748                                       based on weight (21-55 lbs)
49752                                                   based on weight
49753                                                              <NA>
49754                                                              <NA>
49755                                                              <NA>
49756                                                              <NA>
49757                                                              <NA>
49758                                                              <NA>
49762                                                   based on weight
49764                                                              <NA>
49765                                                              <NA>
49766                                                              <NA>
49767                                                       application
49768                                               tablet/pill/capsule
49769                                                      small amount
49773                                                          ointment
49783                                                              <NA>
49792                                                   based on weight
49793                                                   based on weight
49799                                                              <NA>
49812                                                              <NA>
49820                                      based on weight (50-100 lbs)
49821                                       based on weight (24-60 lbs)
49845                                                              <NA>
49846                                                              <NA>
49848                                                              <NA>
49849                                                       application
49852                                                     5 billion cfu
49854                                                      pack/package
49855                                                   based on weight
49856                                                              <NA>
49857                                                              <NA>
49861                                                   based on weight
49862                                                   based on weight
49871                                                          222 mg/g
49878                                                   based on weight
49883                                                      pack/package
49884                                                   based on weight
49886                                                   based on weight
49887                                                   based on weight
49889                                               tablet/pill/capsule
49890                                                       application
49898                                                          222 mg/g
49899                                                   based on weight
49905                                                   based on weight
49906                                                   based on weight
49907                                                   based on weight
49908                                                   based on weight
49909                                                   based on weight
49911                                               tablet/pill/capsule
49912                                                       application
49923                                                              <NA>
49924                                                              <NA>
49925                                                              <NA>
49928                                                              <NA>
49929                                                              <NA>
49963                                                              <NA>
49966                                                              <NA>
49978                                                   based on weight
49980                                                              <NA>
49985                                             1 tablet/pill/capsule
49986                                                     1 bottle/vial
49987                                             1 tablet/pill/capsule
49990                                                    1 pack/package
49991                                                   based on weight
49992                                                             drops
49993                                             1 tablet/pill/capsule
49994                                                             mg/kg
49995                                                             mg/kg
49996                                                       unspecified
49997                                                              <NA>
49998                                                              <NA>
49999                                                              <NA>
50000                                               tablet/pill/capsule
50001                                      based on weight (50-100 lbs)
50002                                                              pump
50004                                                   based on weight
50005                                       based on weight (44-88 lbs)
50006                                                   based on weight
50007                                                           2 pumps
50008                                                   based on weight
50009                                                   based on weight
50011                                                              <NA>
50012                                                              <NA>
50014                                                              <NA>
50022                                                              <NA>
50029                                                              <NA>
50030                                                              <NA>
50033                                                              <NA>
50034                                                              <NA>
50048                                                              <NA>
50050                                                              <NA>
50073                                                              tube
50076                                                          25 mg/kg
50077                                                              <NA>
50107                                                   based on weight
50108                                                   based on weight
50115                                               tablet/pill/capsule
50116                                               tablet/pill/capsule
50117                                                   based on weight
50118                                                              <NA>
50125                                                   based on weight
50154                                                              <NA>
50159                                                              <NA>
50161                                                              <NA>
50180                                               tablet/pill/capsule
50187                                                   based on weight
50188                                                   based on weight
50189                                                   based on weight
50190                                                   based on weight
50194                                                   based on weight
50195                                                   based on weight
50196                                                   based on weight
50198                                             1 tablet/pill/capsule
50199                                                              dose
                                                                                              dose_original
2                                                                                                    75-100
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
195                                                                                                   45-88
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
244                                                                                                   45-88
248                                                                                                  1 tube
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
287                                                                                                  272 mg
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
372                                                                                                  136 mg
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
402                                                                                                  50-100
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
480                                                                                                  1 tube
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
635                                                                                                    3 mg
637                                                                                         based on weight
642                                                                                            small amount
645                                                                                                    3 mg
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
750                                                                                                  136 mg
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
756                                                                                                   44-88
757                                                                            based on weight (51-100 lbs)
760                                                                                                  1 drop
771                                                                                                   50 mg
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
863                                                                                                  200 mg
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
881                                                                                                  61-120
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
900                                                                                                  61-120
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
917                                                                                                  227 mg
918                                                                                                  250 mg
921                                                                            based on weight (51-100 lbs)
929                                                                                                  1 drop
930                                                                                                  1 drop
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
970                                                                                                  1 pump
977                                                                                             application
979                                                                                                  50-100
980                                                                                                  60-121
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
991                                                                                                  50-100
992                                                                                                  60-121
995                                                                                                  60-121
996                                                                                                  50-100
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1037                                                                                                 1 pump
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1051                                                                                                 50-100
1052                                                                                                 60-121
1060                                                                                                 60-121
1061                                                                                                 50-100
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1131                                                                                                5 drops
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1209                                                                                                 50-100
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1248                                                                                                 60-120
1274                                                                                                  23 mg
1285                                                                                            unspecified
1307                                                                                                 600 mg
1328                                                                                                 50-100
1329                                                                                                  44-88
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1348                                                                                               2 sprays
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1503                                                                                                  50-95
1504                                                                                               0.25 tsp
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1671                                                                                                  44-88
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1690                                                                                                1 spray
1692                                                                                        moderate amount
1695                                                                                                 1 drop
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1861                                                                                                  75 mg
1864                                                                                                  56-95
1866                                                                                                  56-95
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1873                                                                                                  56-95
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1909                                                                                                  56-95
1916                                                                                                  56-95
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1954                                                                                                   0-22
1955                                                                                                  23-44
1956                                                                                                  26-50
1960                                                                                                  45-88
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2035                                                                                                  26-50
2036                                                                                                  45-88
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2050                                                                           based on weight (51-100 lbs)
2051                                                                                                  45-88
2072                                                                                                 500 mg
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2086                                                                                                 50-100
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2162                                                                                                  44-88
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2333                                                                                                 272 mg
2339                                                                                                 1 drop
2342                                                                                                 1 drop
2345                                                                                                272 mcg
2347                                                                                                272 mcg
2352                                                                                                272 mcg
2356                                                                                                272 mcg
2384                                                                                                 50-100
2386                                                                                                 50-100
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2408                                                                                                  44-88
2409                                                                           based on weight (51-100 lbs)
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2450                                                                                                 150 mg
2453                                                                                                  60 mg
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2483                                                                                                 60-120
2486                                                                                            as directed
2487                                                                                            as directed
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2572                                                                                                  21-55
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2599                                                                                            unspecified
2600                                                                                            unspecified
2627                                                                                                0.57 mg
2636                                                                                                  16 mg
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2699                                                                                               2 sprays
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2808                                                                                                1400 mg
2815                                                                                               300, 600
2817                                                                                                   0-25
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2826                                                                                                  25-50
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2910                                                                                                  24-60
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2926                                                                                                 50-100
2927                                                                                                 60-121
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2951                                                                                                 1 tube
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2968                                                                                                  45-88
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3043                                                                                                  45-88
3051                                                                                                 68-136
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3092                                                                                                 100 mg
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3108                                                                                                  25-50
3110                                                                                           small amount
3119                                                                                            as directed
3140                                                                                                2 pumps
3146                                                                                                  10 mg
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3212                                                                                                 1 pump
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3254                                                                                                 50-100
3255                                                                                                 50-100
3257                                                                           based on weight (50-100 lbs)
3261                                                                                                 500 mg
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3303                                                                                                 50-100
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3359                                                                                                  44-88
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3384                                                                                                  44-88
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3407                                                                                                 50-100
3408                                                                                                  24-60
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3439                                                                                                 1 tube
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3465                                                                                                  50 mg
3487                                                                                                  45-88
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3588                                                                                                1.5-2.5
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3738                                                                                                1 mg/kg
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3803                                                                                              1200-2400
3804                                                                                                 200 mg
3815                                                                                        based on weight
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3884                                                                                                  45-88
3885                                                                                                  45-88
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3890                                                                                                  45-88
3896                                                                                                  44-88
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3902                                                                                                  44-88
3903                                                                           based on weight (51-100 lbs)
3904                                                                                                  45-88
3906                                                                           based on weight (51-100 lbs)
3907                                                                                                  45-88
3911                                                                           based on weight (51-100 lbs)
3912                                                                                                  45-88
3936                                                                                                  41-60
3938                                                                           based on weight (51-100 lbs)
3942                                                                                                  25-60
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3955                                                                                                  24-50
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3981                                                                                                  24-60
3984                                                                           based on weight (51-100 lbs)
3985                                                                                                  24-60
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4047                                                                                                  80 mg
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4122                                                                                                 60-120
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4130                                                                                                 60-120
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4204                                                                                                   1 ml
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4229                                                                                                15.7 ml
4234                                                                                                 100 mg
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4265                                                                                                 1 drop
4266                                                                                            as directed
4274                                                                                            unspecified
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4303                                                                                                  45-88
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4334                                                                                                   1 ml
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4341                                                                                                 100 mg
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4351                                                                                                  41-60
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4359                                                                                                 60-120
4360                                                                                                1 spray
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4488                                                                                                   1 ml
4491                                                                                                   1 ml
4497                                                                           based on weight (51-100 lbs)
4498                                                                                                 60-121
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4611                                                                                               27, 1620
4617                                                                                             0.57 mg/ml
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4688                                                                                                 125 mg
4693                                                                                                 50-100
4694                                                                                                  24-60
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4700                                                                                                   5 mg
4703                                                                                                  23 mg
4705                                                                                                  23 mg
4711                                                                                                 1 drop
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4798                                                                                                  20 mg
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4850                                                                                                 1 drop
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4907                                                                                                 4.5-10
4908                                                                                                272 mcg
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4996                                                                                            unspecified
4998                                                                                            unspecified
5040                                                                                                 136 mg
5043                                                                                                  spray
5046                                                                                                  spray
5066                                                                                                 60-120
5067                                                                                                 60-120
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5125                                                                                                   1 ml
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5150                                                                                                  40-60
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5165                                                                                                 100 mg
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5189                                                                                                 60-120
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5201                                                                                                  75 mg
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5380                                                                                                  45-88
5382                                                                                                  45-88
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5469                                                                                                   2 ml
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5556                                                                                                  44-88
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5574                                                                                                 50-100
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5601                                                                                                  45-88
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5641                                                                                                 1.7 ml
5649                                                                                          5 billion cfu
5668                                                                                                272 mcg
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5737                                                                                                 750 mg
5747                                                                                        based on weight
5748                                                                                                  60-10
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5774                                                                                                 750 mg
5777                                                                                            unspecified
5793                                                                                                  26-50
5794                                                                                                  41-60
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5872                                                                                                  0-125
5873                                                                                                   0-88
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5890                                                                                                 86-130
5896                                                                                                 88-123
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5925                                                                                                 60-120
5928                                                                                                 60-120
5930                                                                           based on weight (51-100 lbs)
5931                                                                                                  44-88
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5985                                                                                                 88-123
5987                                                                                                100-150
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6012                                                                                                 50-121
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6060                                                                                                 60-121
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6073                                                                                                 50-100
6074                                                                                                1 spray
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6089                                                                                                  25-50
6090                                                                                        0.25 inch strip
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6152                                                                                                  23 mg
6160                                                                                                  45-88
6161                                                                                                23, 460
6164                                                                                           small amount
6189                                                                                                  25-50
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6215                                                                                                 1 pump
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6296                                                                                              0.125 tsp
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6354                                                                                                  45-88
6358                                                                                            unspecified
6362                                                                                                  45-88
6382                                                                                                 60-120
6388                                                                                                 1 drop
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6399                                                                                                8 drops
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6639                                                                                                 51-100
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6674                                                                                                   0-25
6675                                                                                                  26-50
6676                                                                                                 50-100
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6739                                                                                                 125 mg
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6789                                                                                                272 mcg
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6839                                                                                                  75 mg
6854                                                                                                  45-88
6864                                                                                                   1 ml
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6898                                                                                                  45-88
6906                                                                                                272 mcg
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6938                                                                                                 60-120
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
6992                                                                                                  40-85
6995                                                                                                  40-85
6998                                                                                                  40-85
6999                                                                                                 1 tube
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7013                                                                                                  20 mg
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7021                                                                            based on weight (44-88 lbs)
7023                                                                                                 1.6 ml
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7047                                                                                                 272 ug
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7064                                                                                                  26-50
7065                                                                                                 50-100
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7219                                                                                                 60-120
7240                                                                                                2 drops
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7291                                                                            based on weight (44-88 lbs)
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7343                                                                                                  45-88
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7426                                                                                                150-480
7432                                                                                                 50-100
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7568                                                                                                500-125
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7682                                                                                                 60-120
7683                                                                                                 50-100
7684                                                                                                  44-88
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7744                                                                                                  45-88
7745                                                                                                 50-100
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7787                                                                                                 1 tube
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7837                                                                                                 100 mg
7839                                                                                            application
7840                                                                                                  25-50
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7864                                                                                                 50-100
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7941                                                                                                   1 ml
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8063                                                                                                  26-60
8066                                                                                                  21-55
8067                                                                                                  21-55
8069                                                                                                  21-55
8070                                                                                                  26-50
8071                                                                                                  26-50
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8135                                                                                                  15-20
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8165                                                                                               750-1000
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8220                                                                                                  26-50
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8238                                                                                           small amount
8241                                                                                                  23 mg
8244                                                                                                  44-88
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8301                                                                                                 50-100
8302                                                                                                 50-100
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8306                                                                                                 50-100
8307                                                                                                  44-88
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8326                                                                                                  56-95
8332                                                                                                  56-95
8335                                                                                                  56-95
8337                                                                                            unspecified
8338                                                                                            unspecified
8340                                                                                                  56-95
8341                                                                                                 1 drop
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8405                                                                                                 1 tube
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8454                                                                           based on weight (50-100 lbs)
8461                                                                                                 50-100
8465                                                                                                  26-50
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8489                                                                                                  44-88
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8541                                                                                                  spray
8546                                                                                                8 drops
8547                                                                                                 500 mg
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8575                                                                                                  25-50
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8685                                                                                                150-100
8694                                                                            based on weight (45-88 lbs)
8695                                                                                                25-37.5
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8721                                                                                                 200 mg
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8776                                                                                                  56-95
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8787                                                                                                  44-88
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8796                                                                                                  44-88
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8808                                                                                                  44-88
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8827                                                                                                 60-120
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8855                                                                                                272 mcg
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9049                                                                                                2 drops
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9164                                                                                                 88-132
9170                                                                           based on weight (51-100 lbs)
9171                                                                                                   0-25
9172                                                                                                 88-132
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9229                                                                                                  75 mg
9230                                                                                           small amount
9233                                                                                                 250 mg
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9268                                                                                                  44-88
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9290                                                                                                 60-120
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9299                                                                                                 60-120
9312                                                                                                272 mcg
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9348                                                                                                 136 mg
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9390                                                                                                272 mcg
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9485                                                                                                 500 mg
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9575                                                                                                 60-120
9578                                                                                                 60-120
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9632                                                                                                 60-120
9635                                                                                               27, 1620
9638                                                                                                 60-120
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9657                                                                                                  21-55
9712                                                                                                 51-100
9717                                                                                                 51-100
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9729                                                                                                 51-100
9730                                                                                                 51-100
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9771                                                                                                  45-88
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9815                                                                                                  28 mg
9821                                                                                         1 pack/package
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9860                                                                                                  75 mg
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9918                                                                                                  41-85
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10056                                                                                               272 mcg
10057                                                                                                227 mg
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10123                                                                                                500 mg
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10149                                                                                              10 drops
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10160                                                                                                1.5 ml
10164                                                                                                50-100
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10236                                                                                                60-121
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10271                                                                                                 23 mg
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10292                                                                                                 23 mg
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10332                                                                                                60-120
10333                                                                                                88-123
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10343                                                                                                480 mg
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10432                                                                                                1 tube
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10500                                                                                             113.5-227
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10594                                                                                                 21-55
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10650                                                                                                100 mg
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10658                                                                                                 50 mg
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10766                                                                                               272 mcg
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10850                                                                                                88-123
10851                                                                                                 56-95
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10905                                                                                           application
10925                                                                                                400 mg
10926                                                                                                  5 mg
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10932                                                                                                60-120
10933                                                                                                50-100
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10950                                                                                                89-132
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10966                                                                                                50-100
10967                                                                                                 44-88
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11006                                                                                                50-100
11007                                                                                                50-100
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11052                                                                                                1 tube
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11085                                                                                           unspecified
11088                                                                                           unspecified
11091                                                                                                 21-55
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11112                                                                                                200 mg
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11166                                                                                                 24-60
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11224                                                                                           unspecified
11227                                                                                                 40-88
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11230                                                                                                 44-88
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11341                                                                                                50-100
11342                                                                                                 56-95
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11356                                                                                           unspecified
11360                                                                                           unspecified
11363                                                                                                50-100
11366                                                                                                50-100
11368                                                                          based on weight (50-100 lbs)
11377                                                                                                 40-85
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11425                                                                                                 26-50
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11461                                                                                                 55-95
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11474                                                                                                 24-60
11477                                                                          based on weight (51-100 lbs)
11482                                                                                            1.14 mg/lb
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11511                                                                                                125 mg
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11590                                                                                                 24-60
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11635                                                                                                 5-100
11636                                                                                                100 mg
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11663                                                                                                50-100
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11669                                                                                                0.5 mg
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11684                                                                                                 44-88
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11698                                                                                                 45-88
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11725                                                                                               100-150
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11790                                                                                                 15 gm
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11815                                                                                                50-100
11816                                                                                                50-100
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11826                                                                                               100-150
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11856                                                                                               8 drops
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11926                                                                                               272 mcg
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12023                                                                                               5 mg/kg
12025                                                                                                 44-88
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12190                                                                                                1 pump
12194                                                                                                272 ug
12213                                                                                               272 mcg
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12265                                                                                                50-100
12266                                                                                                 45-88
12267                                                                                                50-100
12268                                                                                                 45-88
12271                                                                           based on weight (45-88 lbs)
12272                                                                                                50-100
12273                                                                                          small amount
12275                                                                                                 44-88
12276                                                                                                50-100
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12373                                                                                                60-120
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12386                                                                                                1.4 ml
12394                                                                                           unspecified
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12401                                                                                                 45-88
12402                                                                          based on weight (51-100 lbs)
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12496                                                                                                 24-60
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12515                                                                                                 50-80
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12567                                                                                               8 drops
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12694                                                                                                50-100
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12784                                                                                        1 pack/package
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12833                                                                                                 27 mg
12836                                                                          based on weight (60-120 lbs)
12837                                                                                                60-120
12841                                                                                                60-120
12849                                                                                                 drops
12850                                                                                                 drops
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12874                                                                                                500 mg
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12893                                                                                               100-200
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12944                                                                                                 44-88
12945                                                                          based on weight (51-100 lbs)
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12950                                                                                                 44-88
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12959                                                                                               8 drops
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12979                                                                                               1 spray
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12992                                                                                                 20-55
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12995                                                                                                 44-88
12996                                                                                                 16 mg
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13034                                                                                                 20-40
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13098                                                                                                50-100
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13167                                                                                                60-121
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13173                                                                                                1 drop
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13238                                                                                                500 mg
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13262                                                                                               272 mcg
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13318                                                                                               8 drops
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13333                                                                                                60-120
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13336                                                                                                60-120
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13487                                                                                                 20 mg
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13619                                                                                                100 mg
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13666                                                                                           application
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13693                                                                          based on weight (60-120 lbs)
13715                                                                                                750 mg
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13766                                                                                                 40-60
13768                                                                                           application
13769                                                                                                 spray
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13781                                                                                                 25-50
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13786                                                                                                1 tube
13796                                                                                            1 wipe/pad
13801                                                                                                50-100
13803                                                                                                375 mg
13841                                                                                                 44-88
13881                                                                                                  7 ml
13884                                                                                              2 sprays
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13897                                                                                                 56-95
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13908                                                                                             100 mg/ml
13910                                                                        based on weight (50.1-100 lbs)
13911                                                                                                 56-95
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14071                                                                                                 44-88
14072                                                                                               1500 mg
14080                                                                                                50-100
14081                                                                                                 44-88
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14153                                                                                                60-120
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14243                                                                                                 45-88
14245                                                                           based on weight (22-44 lbs)
14249                                                                                                 45-88
14251                                                                                                 45-88
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14286                                                                                                50-100
14291                                                                                           unspecified
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14298                                                                                                50-100
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14342                                                                                                 22-30
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14372                                                                                                50-100
14373                                                                                       based on weight
14375                                                                                                50-100
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14379                                                                                                50-100
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14409                                                                                                 44-88
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14527                                                                                                 45-88
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14562                                                                                                85-132
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14577                                                                                                 45-88
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14623                                                                                                 45-88
14631                                                                                                 44-88
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14746                                                                                                 44-88
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14861                                                                                                50-100
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14874                                                                                                50-100
14875                                                                                                50-100
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14907                                                                                                 30 mg
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14928                                                                                                60-120
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14969                                                                                             50 mcg/kg
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14999                                                                                             50 mcg/kg
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15092                                                                                                300 mg
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15137                                                                                              2 sprays
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15179                                                                           based on weight (25-75 lbs)
15184                                                                                                750 mg
15196                                                                                           application
15197                                                                                          small amount
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15252                                                                                               4 drops
15253                                                                                                227 mg
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15337                                                                                                60-120
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15455                                                                                                50-100
15456                                                                                                50-100
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15527                                                                                                50-100
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15545                                                                                                 21-55
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15558                                                                                                 50-75
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15588                                                                                                 45-88
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15616                                                                                               272 mcg
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15776                                                                                                500 mg
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15816                                                                                                 44-88
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16035                                                                                                 44-88
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16291                                                                                                51-100
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16339                                                                                                 56-95
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16485                                                                                                 45-88
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16538                                                                                                50-100
16543                                                                                                 44-88
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16551                                                                                                 44-88
16553                                                                        based on weight (50.1-100 lbs)
16554                                                                                                 44-88
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16590                                                                                               100-150
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16637                                                                                                 44-88
16638                                                                                                50-100
16639                                                                          based on weight (51-100 lbs)
16640                                                                                                60-121
16646                                                                                              10 drops
16657                                                                                             6-8 drops
16667                                                                                                 25-50
16678                                                                                               27-1620
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16689                                                                                             1.5 mg/ml
16690                                                                                               100-150
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16789                                                                                                1.1 ml
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16849                                                                                                1 pump
16860                                                                                                 80 mg
16864                                                                                                51-100
16866                                                                                                50-100
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16915                                                                                                100 mg
16916                                                                                                500 mg
16918                                                                                           unspecified
16920                                                                                                 44-88
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17033                                                                                               272 mcg
17035                                                                                               272 mcg
17036                                                                                                136 mg
17041                                                                                                50-100
17042                                                                        based on weight (50.1-100 lbs)
17049                                                                                               272 mcg
17051                                                                                               1000 mg
17053                                                                                 1 tablet/pill/capsule
17057                                                                                                60-121
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17131                                                                                                 20-25
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17151                                                                                                 40-60
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17196                                                                                                 26-50
17197                                                                                                 26-50
17202                                                                                                 45-88
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17294                                                                                                50-100
17295                                                                                                 45-88
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17381                                                                                                 30 ml
17386                                                                                               272 mcg
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17440                                                                                                500 mg
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17484                                                                                                50-100
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17494                                                                                                 45-88
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17497                                                                                                50-100
17498                                                                                                 45-88
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17585                                                                                                 1-1.5
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17633                                                                                               1.71 ml
17659                                                                          based on weight (50-100 lbs)
17670                                                                                                60-120
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17723                                                                                                60-120
17742                                                                                           application
17743                                                                                                1 drop
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17955                                                                                                 23 mg
17957                                                                                               4 drops
18001                                                                                                 26-50
18003                                                                                                50-100
18009                                                                                                 44-88
18010                                                                                                50-100
18011                                                                                                 45-88
18014                                                                                                 45-88
18015                                                                                                50-100
18021                                                                                                50-100
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18073                                                                                                 44-88
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18076                                                                                                 44-88
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18117                                                                                                50-100
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18125                                                                                                 21-55
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18159                                                                                               6 drops
18164                                                                                               6 drops
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18249                                                                                                150 mg
18251                                                                                                powder
18252                                                                                                150 mg
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18284                                                                                                50-100
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18375                                                                                                50-100
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18416                                                                                                 44-88
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18464                                                                                                500 mg
18466                                                                                                1 drop
18467                                                                                               272 mcg
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18473                                                                                                60-120
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18512                                                                                               272 mcg
18514                                                                           based on weight (21-55 lbs)
18519                                                                                                 24-60
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18539                                                                                                 45-88
18542                                                                                                 45-88
18543                                                                                               6 drops
18562                                                                                                  1 ml
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18614                                                                                                 40-60
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18704                                                                                                 24-60
18705                                                                                                 26-50
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18753                                                                                                 75 mg
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18821                                                                                               5 drops
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18846                                                                                                 44-88
18847                                                                                       based on weight
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18855                                                                                                50-100
18856                                                                                                 44-88
18882                                                                                           application
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18931                                                                                                 45-88
18932                                                                                                55-100
18933                                                                                           unspecified
18934                                                                                                55-100
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19043                                                                                                 45-88
19051                                                                                                 45-88
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19077                                                                                                 45-88
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19102                                                                                               55.1-88
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19241                                                                                                300 mg
19242                                                                                                 75 mg
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19276                                                                                                1 tube
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19315                                                                                                 44-88
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19331                                                                                                500 mg
19335                                                                                                200 mg
19336                                                                                                100 mg
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19374                                                                                                 44-88
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19424                                                                                                 44-88
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19461                                                                                                 44-88
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19500                                                                                               0.57 mg
19537                                                                                       based on weight
19567                                                                                                150 mg
19568                                                                                                1 pump
19596                                                                          based on weight (51-100 lbs)
19597                                                                                                 56-95
19603                                                                           based on weight (40-60 lbs)
19604                                                                                                50-100
19617                                                                                       2.68 ml of 9.8%
19618                                                                                                 50-75
19641                                                                                           unspecified
19651                                                                                                1 drop
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19669                                                                                                50-100
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19708                                                                                               272 mcg
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19800                                                                                                50-100
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19853                                                                                                50-100
19854                                                                                                89-132
19856                                                                        based on weight (50.1-100 lbs)
19857                                                                                                89-132
19860                                                                                               1 mg/lb
19866                                                                                              2 sprays
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19936                                                                                                 40-60
19943                                                                                                60-120
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19969                                                                                               2 drops
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20001                                                                                                200 mg
20002                                                                                                500 mg
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20067                                                                                               12.5-25
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20179                                                                                                 50-75
20182                                                                                          small amount
20193                                                                                                500 mg
20195                                                                                                60-120
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20225                                                                                                200 mg
20226                                                                                                60-120
20231                                                                                                1 drop
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20246                                                                                                50-100
20247                                                                                                 45-80
20251                                                                                          pack/package
20272                                                                                                1 tbsp
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20299                                                                                                1 tube
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20307                                                                                                 10 mg
20312                                                                                                2.3 mg
20315                                                                                           unspecified
20324                                                                                                 2-2.5
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20378                                                                                                 26-50
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20406                                                                                                  3 ml
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20437                                                                                                50-100
20438                                                                                                60-121
20441                                                                                           application
20442                                                                                                600 mg
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20519                                                                                               240-480
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20557                                                                                                60-120
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20637                                                                                               272 mcg
20638                                                                                       2.68 ml of 9.8%
20640                                                                                               272 mcg
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20700                                                                                                50-100
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20719                                                                                                 56-95
20728                                                                                           unspecified
20738                                                                                              tapering
20745                                                                                                1 pump
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20750                                                                                               6 drops
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20799                                                                                                 45-85
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20820                                                                                               1200 mg
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20857                                                                                                136 mg
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20859                                                                                                136 mg
20860                                                                                                100 mg
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
20971                                                                                                 56-95
20972                                                                                                 15 ml
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21017                                                                                               1 spray
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21069                                                                                               1000 mg
21070                                                                                               1000 mg
21071                                                                                                 23 mg
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21087                                                                                                 44-88
21088                                                                                           unspecified
21091                                                                                                60-120
21098                                                                                                 40-80
21100                                                                                                 40-80
21102                                                                           based on weight (40-80 lbs)
21103                                                                                                 44-88
21108                                                                                                 26-50
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21116                                                                                                250 mg
21117                                                                                                200 mg
21118                                                                                                100 mg
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21124                                                                                               3 drops
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21132                                                                                                  3 ml
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21170                                                                                               272 mcg
21172                                                                                                 23 mg
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21192                                                                                                1 pump
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21328                                                                                                 50 mg
21331                                                                                           unspecified
21336                                                                                                960 mg
21337                                                                                               272 mcg
21338                                                                             based on weight (55+ lbs)
21348                                                                                                0.5 mg
21359                                                                                               23, 460
21361                                                                                               23, 460
21364                                                                                                750 mg
21367                                                                                                  2 ml
21369                                                                          based on weight (51-100 lbs)
21373                                                                                               100-200
21374                                                                                                500 mg
21376                                                                                                 40-60
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21394                                                                                                272 mg
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21437                                                                                                50-100
21438                                                                                                 24-60
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21447                                                                                                 24-60
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21460                                                                                                 23 mg
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21491                                                                                                1 drop
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21498                                                                                                 90 mg
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21522                                                                                                1 tube
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21534                                                                                                1.5 ml
21535                                                                                                 16 mg
21545                                                                                 1 tablet/pill/capsule
21546                                                                                                1 tube
21547                                                                                                600 mg
21548                                                                                                500 mg
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21554                                                                                               2 mg/ml
21555                                                                                           unspecified
21558                                                                                               23, 460
21561                                                                                                50-100
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21580                                                                                                88-123
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21587                                                                                               8 drops
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21603                                                                                               1000 mg
21604                                                                                                375 mg
21605                                                                             based on weight (55+ lbs)
21606                                                                                                 50 mg
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21626                                                                                                51-100
21627                                                                                                 44-88
21632                                                                                           unspecified
21637                                                                                                1 drop
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21726                                                                                                 44-88
21727                                                                                           unspecified
21738                                                                                                50-100
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21759                                                                                                 44-88
21760                                                                                                50-100
21767                                                                                           unspecified
21782                                                                                               272 mcg
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21787                                                                                                60-121
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21844                                                                                                272 mg
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21866                                                                                                  4 ml
21867                                                                                                136 mg
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21899                                                                                              50 mg/kg
21911                                                                                                 50 mg
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21915                                                                                                1 tube
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21927                                                                                                 20 mg
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22013                                                                                                 45-88
22016                                                                                                 45-88
22017                                                                                               272 mcg
22020                                                                                           as directed
22022                                                                                                  1 gm
22023                                                                          based on weight (51-100 lbs)
22024                                                                                                60-120
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22027                                                                                                60-120
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22052                                                                                               27-1620
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22063                                                                                                 44-88
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22112                                                                                                 68 mg
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22137                                                                                                60-121
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22159                                                                                                50-100
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22162                                                                                                 75 mg
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22191                                                                                                1 tube
22196                                                                                          small amount
22197                                                                                                1 tube
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22221                                                                                                89-132
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22260                                                                                                60-120
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22269                                                                                               2000 mg
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22403                                                                                                 50 mg
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22418                                                                                                60-120
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22442                                                                                                88-123
22459                                                                                           unspecified
22463                                                                                           unspecified
22482                                                                                                110 mg
22520                                                                                                  1 gm
22521                                                                                                50-100
22524                                                                                                50-100
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22556                                                                                                1 pump
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22599                                                                                                 25 mg
22600                                                                                                200 mg
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22670                                                                                                1 tube
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22674                                                                                                50-100
22679                                                                                                 45-88
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22709                                                                                                 15 gm
22710                                                                                                 60 ml
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22715                                                                                                 15 gm
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22721                                                                                                0.2 ml
22733                                                                                                collar
22734                                                                                                 23 mg
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22910                                                                                                136 mg
22911                                                                                                 20 mg
22912                                                                                                 20 mg
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22921                                                                                                500 mg
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22970                                                                                                 44-88
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23005                                                                                                1 drop
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23008                                                                                                1 drop
23009                                                                                                 12 ml
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23065                                                                                                 23 mg
23066                                                                          based on weight (51-100 lbs)
23074                                                                                                 60-80
23075                                                                                                 40-80
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23141                                                                                               45-88.9
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23145                                                                                                100 mg
23146                                                                                                 16 mg
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23184                                                                                                 10 mg
23186                                                                                                  8 mg
23187                                                                                                 60 mg
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23248                                                                                               1000 mg
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23257                                                                                               1000 ml
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23281                                                                                                500 mg
23282                                                                                                 16 mg
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23285                                                                                                100 mg
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23305                                                                                                1 pump
23306                                                                                                1 pump
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23351                                                                                                 68 mg
23352                                                                                                 25 mg
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23354                                                                                                 15 mg
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23357                                                                                                 68 mg
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23361                                                                                                136 mg
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23385                                                                                                 23 mg
23386                                                                                                500 mg
23388                                                                          based on weight (51-100 lbs)
23389                                                                                                50-100
23401                                                                                                50-100
23402                                                                                                 44-88
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23412                                                                                                 45-88
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23422                                                                                                1 tube
23423                                                                                                1 tube
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23452                                                                                              2 sprays
23455                                                                                                 75 mg
23456                                                                                                 spray
23457                                                                                                750 mg
23472                                                                           based on weight (21-55 lbs)
23476                                                                                                 56-95
23477                                                                                                50-100
23481                                                                                                 21-55
23482                                                                           based on weight (55-90 lbs)
23483                                                                                                50-100
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23503                                                                                                 56-95
23504                                                                                                50-100
23507                                                                          based on weight (51-100 lbs)
23508                                                                                                 56-95
23509                                                                                                 56-95
23510                                                                                                50-100
23514                                                                                                50-100
23515                                                                                                 56-95
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23548                                                                                                 23 mg
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23555                                                                                                0.3 mg
23556                                                                                                50-100
23557                                                                          based on weight (51-100 lbs)
23558                                                                                                0.7 mg
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23589                                                                                                1 tube
23590                                                                                           unspecified
23593                                                                                             0.6 mg/ml
23594                                                                                                300 mg
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23733                                                                                               5 drops
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23758                                                                                                 44-88
23792                                                                                               272 mcg
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23820                                                                                                 56-95
23824                                                                                                 41-85
23825                                                                                                 10 mg
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23972                                                                                                 44-88
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
23989                                                                                               272 mcg
23990                                                                                                136 mg
24008                                                                                               272 mcg
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24044                                                                                               272 mcg
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24067                                                                                              800-1000
24068                                                                                           unspecified
24069                                                                                             50 mcg/kg
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24078                                                                                                50-100
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24113                                                                                                150 mg
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24146                                                                                                4.7 ml
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24173                                                                                                50-100
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24201                                                                                               8 drops
24202                                                                                               8 drops
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24218                                                                                               272 mcg
24219                                                                                                136 mg
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24251                                                                                                1 drop
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24260                                                                                                100 mg
24261                                                                                 1 tablet/pill/capsule
24262                                                                                                1.4 ml
24263                                                                                                4.8 ml
24264                                                                                                500 mg
24265                                                                                 1 tablet/pill/capsule
24266                                                                                                 60 mg
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24325                                                                                                100 mg
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24379                                                                                                68 mcg
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24396                                                                                                500 mg
24397                                                                                                  1 gm
24399                                                                                                136 mg
24400                                                                          based on weight (50-100 lbs)
24401                                                                                                100 mg
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24404                                                                                                 25 mg
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24408                                                                                                 15 ml
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24418                                                                                                 10 mg
24419                                                                                                0.5 mg
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24427                                                                                                0.6 mg
24428                                                                                                 10 mg
24429                                                                                             0.125 tsp
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24434                                                                                                1 drop
24435                                                                          based on weight (50-100 lbs)
24436                                                                                                1 drop
24437                                                                          based on weight (60-120 lbs)
24438                                                                                                0.6 mg
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24461                                                                                             0.5 mg/kg
24462                                                                                               2 mg/kg
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24479                                                                                               5 drops
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24482                                                                                                136 mg
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24499                                                                                                 75 mg
24503                                                                                               2 drops
24504                                                                                                 40-50
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24529                                                                                                 45-88
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24562                                                                                                 41-85
24563                                                                                                 44-88
24565                                                                                                60-120
24567                                                                                                61-120
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24621                                                                                                 56-95
24622                                                                                                 56-95
24647                                                                                           unspecified
24648                                                                                           application
24651                                                                                                 50 mg
24652                                                                                                1 tube
24653                                                                                       moderate amount
24654                                                                                                1 tube
24660                                                                                       based on weight
24666                                                                                                 50 mg
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24776                                                                                               4 drops
24782                                                                                               4 drops
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24814                                                                                               272 mcg
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24826                                                                                               1000 mg
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24835                                                                                               272 mcg
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24880                                                                                               6 drops
24897                                                                                                200 mg
24898                                                                                                powder
24899                                                                                                 60 mg
24902                                                                          based on weight (51-100 lbs)
24903                                                                                                 60 mg
24904                                                                                                 16 mg
24907                                                                                                 16 mg
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24967                                                                                              2 sprays
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25003                                                                                                1 drop
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25040                                                                                                 23 mg
25041                                                                                               2.68 ml
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                                                               272 mcg
25079                                                                          based on weight (51-100 lbs)
25080                                                                                                 44-88
25084                                                                                                325 mg
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25131                                                                                                 44-88
25132                                                                                                50-100
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25273                                                                                                 21-55
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25301                                                                                                50-100
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25358                                                                                               8 drops
25359                                                                                                375 mg
25366                                                                                               8 drops
25367                                                                                           unspecified
25369                                                                                                  1 ml
25370                                                                                               6 drops
25372                                                                                                500 mg
25374                                                                                                500 mg
25377                                                                                                100 mg
25378                                                                                             0.125 tsp
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25495                                                                                                50-100
25498                                                                                                50-100
25499                                                                                                 45-88
25501                                                                          based on weight (51-100 lbs)
25502                                                                                                 45-88
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25517                                                                                             2.5 mg/kg
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25558                                                                                                60-120
25564                                                                                               272 mcg
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25579                                                                                                272 gm
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25590                                                                                               1000 mg
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25613                                                                                                60-120
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25636                                                                                                 44-88
25659                                                                                                 55-88
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25672                                                                                                0.5 ml
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25711                                                                                                1 tube
25725                                                                                              5 x 10^7
25726                                                                                               8 drops
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25816                                                                                                 20 mg
25817                                                                                                  2 ml
25818                                                                                                 46-60
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25825                                                                                                500 mg
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25829                                                                                               1400 mg
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25839                                                                                                88-110
25846                                                                          based on weight (88-123 lbs)
25870                                                                                                 56-95
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25942                                                                                               272 mcg
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                               5 drops
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26094                                                                                               1 spray
26095                                                                                               1620 mg
26110                                                                                               227 mcg
26113                                                                                                89-132
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26120                                                                                                2.5-20
26121                                                                                                  0-25
26122                                                                                                 21-55
26123                                                                                                 26-50
26124                                                                                                 41-85
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26149                                                                                                50-100
26150                                                                                                 56-95
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26153                                                                                                1 drop
26154                                                                                                 13 ml
26155                                                                                                625 mg
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26160                                                                                              20 mg/kg
26161                                                                                               1 mg/kg
26165                                                                                       based on weight
26166                                                                                       based on weight
26178                                                                                                2.5-20
26179                                                                                                  0-25
26180                                                                                                 21-55
26181                                                                                                 26-50
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26189                                                                                                1 tube
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26200                                                                                                50-100
26201                                                                                                 56-95
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26205                                                                                                 13 ml
26206                                                                                                625 mg
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26213                                                                                             4.4 mg/kg
26214                                                                                       based on weight
26215                                                                                       based on weight
26222                                                                                                 50 mg
26227                                                                                           unspecified
26229                                                                                           unspecified
26237                                                                                                100 mg
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26259                                                                                               1000 mg
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26286                                                                                                60-120
26287                                                                          based on weight (50-100 lbs)
26294                                                                                                50-100
26295                                                                          based on weight (60-121 lbs)
26299                                                                                                60-120
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26373                                                                                               2 drops
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26423                                                                                                240 mg
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26469                                                                                                60-121
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26474                                                                                                 30 gm
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26477                                                                                                0.3 mg
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26503                                                                                                500 mg
26505                                                                                           as directed
26508                                                                                                1 pump
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26540                                                                                                1 pump
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26547                                                                                                60-120
26550                                                                                                60-121
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26576                                                                                                 50 mg
26583                                                                                           unspecified
26584                                                                                                50-100
26585                                                                                                 44-88
26587                                                                                                 44-88
26589                                                                                                 44-88
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26616                                                                                                60-120
26628                                                                                               272 mcg
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26674                                                                                               8 drops
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26727                                                                                                136 mg
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26741                                                                                                136 mg
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26743                                                                                                 75 mg
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26751                                                                                                136 mg
26760                                                                          based on weight (51-100 lbs)
26761                                                                                                 45-88
26764                                                                                                100 ml
26765                                                                                                100 ml
26766                                                                                                100 ml
26769                                                                          based on weight (50-100 lbs)
26772                                                                                                100 ml
26773                                                                                                100 ml
26774                                                                                                100 ml
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26817                                                                                                 15 mg
26818                                                                                                100 mg
26819                                                                                                 15 gm
26821                                                                                                 50 mg
26822                                                                                                150 mg
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26832                                                                                              20 mg/kg
26833                                                                                              17 ml/lb
26836                                                                                               5 drops
26837                                                                                          pack/package
26838                                                                                                200 mg
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26857                                                                                                200 mg
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26966                                                                                              10 mg/kg
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26987                                                                                                  3 ml
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26991                                                                                               1000 mg
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
26993                                                                                               1000 mg
27012                                                                                              0.25 tsp
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27080                                                                                                0.3 ml
27081                                                                                               8 drops
27082                                                                                           as directed
27083                                                                                                50-100
27084                                                                                                100 mg
27085                                                                                 1 tablet/pill/capsule
27086                                                                                                50-100
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27137                                                                                                1 tube
27140                                                                                          small amount
27144                                                                                                60-120
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27225                                                                                               1500 mg
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27249                                                                                               6 ug/kg
27251                                                                                              50 mg/kg
27256                                                                                               1 spray
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27310                                                                                                 44-88
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27345                                                                                               272 mcg
27346                                                                                                136 mg
27347                                                                                               1620 mg
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27353                                                                                                500 mg
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27362                                                                                                 16 mg
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27370                                                                                                1 tube
27371                                                                                                500 mg
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27435                                                                                                 50 mg
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27456                                                                                                60-120
27458                                                                                                60-120
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27479                                                                                               272 mcg
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27498                                                                                                 56-95
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27524                                                                                                 24-60
27529                                                                          based on weight (51-100 lbs)
27530                                                                                                60-121
27589                                                                                              27, 1620
27590                                                                                                60-120
27594                                                                          based on weight (60-120 lbs)
27595                                                                                                500 mg
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27658                                                                                                 20 mg
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27703                                                                                                 45-88
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27723                                                                                                240 mg
27724                                                                                                 20 mg
27728                                                                                                240 mg
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27875                                                                                                4.5-10
27878                                                                                           unspecified
27880                                                                                           unspecified
27883                                                                                                 50 mg
27884                                                                                               2.68 ml
27885                                                                                                 23 mg
27886                                                                          based on weight (51-100 lbs)
27891                                                                                            0.23 mg/lb
27892                                                                                                136 mg
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27900                                                                                                1.4 ml
27901                                                                                                1.5 ml
27903                                                                                                60-120
27904                                                                                               1.59 ml
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27931                                                                                                100 mg
27934                                                                                            0.02 mg/kg
27935                                                                                               4 mg/kg
27936                                                                                             0.5 mg/kg
27937                                                                                               3 mg/kg
27938                                                                                                 50 mg
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27960                                                                                                 75 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28004                                                                                                272 ug
28006                                                                                                1 pump
28008                                                                                        1 pack/package
28009                                                                                                1 pump
28010                                                                                        1 pack/package
28011                                                                                               8 drops
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28017                                                                                                60-121
28018                                                                                       based on weight
28020                                                                                               5 drops
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28026                                                                                                500 mg
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28071                                                                                                1 tube
28073                                                                                                 31-60
28075                                                                                                50-100
28076                                                                                                 44-88
28081                                                                                                 31-60
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28089                                                                                                100 mg
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28107                                                                                               1000 mg
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28129                                                                                               1000 mg
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28131                                                                                               1000 mg
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28141                                                                                               4 drops
28143                                                                                                 45-88
28144                                                                          based on weight (51-100 lbs)
28150                                                                                                 10 mg
28151                                                                                                 20 mg
28152                                                                                               1000 mg
28153                                                                                               1 mg/lb
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28156                                                                                               1000 mg
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28244                                                                                                  2 mg
28245                                                                                               11.5 mg
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                                                               1000 mg
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28320                                                                                                50-100
28325                                                                                                75-100
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28393                                                                                                 50 mg
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28403                                                                                                50-100
28404                                                                           based on weight (40-60 lbs)
28405                                                                                                 40-60
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28487                                                                                                 50-75
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28529                                                                                                136 mg
28530                                                                                               1000 mg
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28603                                                                                               100-150
28604                                                                                                1 tube
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28616                                                                                               1 spray
28620                                                                                                50-100
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28626                                                                                               0.35 ml
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28632                                                                                                 50 mg
28639                                                                                                 75 mg
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28690                                                                                                 23 mg
28691                                                                                                55-100
28692                                                                                                0.3 mg
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28698                                                                                                0.3 mg
28699                                                                                                 50 mg
28710                                                                                           unspecified
28714                                                                                          small amount
28716                                                                                                 15 gm
28717                                                                                                960 mg
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28732                                                                                                500 mg
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28762                                                                                                  1 ml
28764                                                                                                1 drop
28765                                                                                                 50 mg
28766                                                                                                 50 mg
28768                                                                                                 1-1.5
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28781                                                                                                 21-55
28782                                                                                                 26-50
28784                                                                                               25.1-50
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28818                                                                                                 45-88
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28831                                                                                                1 drop
28832                                                                                                500 mg
28833                                                                                                1 tube
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28893                                                                                                 20-40
28897                                                                          based on weight (51-100 lbs)
28898                                                                                                 40-60
28899                                                                          based on weight (50-100 lbs)
28900                                                                                                50-100
28901                                                                                                 24-60
28904                                                                          based on weight (51-100 lbs)
28905                                                                                                 15 mg
28906                                                                                                  3 ml
28907                                                                         based on weight (24.1-60 lbs)
28910                                                                                                60-120
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28988                                                                                                375 mg
28998                                                                                                 25 mg
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29008                                                                                                 23 mg
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29092                                                                                                  1 ml
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29097                                                                                                  1 ml
29098                                                                                                    ml
29099                                                                                                    ml
29100                                                                                                 75 mg
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29135                                                                                                  8 mg
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29150                                                                                                240 mg
29151                                                                           based on weight (40-88 lbs)
29152                                                                                                0.6 mg
29153                                                                                           unspecified
29154                                                                                                240 mg
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29183                                                                                                 44-88
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29330                                                                                                 45-88
29331                                                                                                50-100
29332                                                                                                 45-88
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29397                                                                                                 25-50
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29472                                                                                                60-100
29475                                                                                                60-100
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29506                                                                                                 50 mg
29509                                                                                                0.6 mg
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29578                                                                                                 44-88
29579                                                                                                 15 gm
29580                                                                          based on weight (51-100 lbs)
29583                                                                                                 44-88
29588                                                                          based on weight (51-100 lbs)
29589                                                                                                 24-60
29592                                                                                                375 mg
29601                                                                                                 16 mg
29602                                                                                                 16 mg
29604                                                                                                 16 mg
29606                                                                                               272 mcg
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29626                                                                                             32.4-64.8
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29679                                                                                                 21-55
29691                                                                                                200 mg
29692                                                                                                150 mg
29693                                                                                                  1 mg
29694                                                                                                100 mg
29695                                                                                                 50 mg
29696                                                                                                1.5 gm
29697                                                                                                250 mg
29698                                                                                                250 mg
29699                                                                                                200 mg
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29729                                                                                                  1 gm
29730                                                                                                1.5 gm
29733                                                                                                750 mg
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29755                                                                                                 44-88
29764                                                                                           unspecified
29765                                                                                           unspecified
29766                                                                                                 24-60
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29771                                                                                                60-121
29772                                                                                                 45-88
29794                                                                                           unspecified
29797                                                                                                227 mg
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29832                                                                                                1.5 ml
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29848                                                                                                1.5 ml
29851                                                                                                500 mg
29857                                                                                                 44-88
29858                                                                                           unspecified
29859                                                                                                7.4 ml
29860                                                                                                7.4 ml
29861                                                                                                7.4 ml
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29906                                                                                                 25 mg
29907                                                                                                 15 mg
29933                                                                                 1 tablet/pill/capsule
29937                                                                                                50-100
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29943                                                                                                50-100
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30067                                                                                                 26-50
30068                                                                                                 45-88
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30095                                                                                                50-100
30096                                                                                                 44-88
30098                                                                                               1000 mg
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30127                                                                                                100 mg
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30164                                                                                                2.5 ml
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30186                                                                                                 16 mg
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30213                                                                                                  4 gm
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30271                                                                                                60-121
30274                                                                          based on weight (51-100 lbs)
30275                                                                                                60-121
30277                                                                          based on weight (51-100 lbs)
30278                                                                                                60-121
30284                                                                                                50-100
30285                                                                                                60-121
30286                                                                          based on weight (51-100 lbs)
30290                                                                                                51-100
30291                                                                                                60-121
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30306                                                                                                 16 mg
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30320                                                                                                50-100
30321                                                                                                 44-88
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30350                                                                                                60-120
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30353                                                                                                1 drop
30354                                                                                              10 drops
30355                                                                                          small amount
30356                                                                                                200 mg
30357                                                                                                 spray
30358                                                                                                100 mg
30359                                                                                                 75 mg
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30368                                                                                               272 mcg
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30383                                                                                                 45-88
30384                                                                                                50-100
30385                                                                          based on weight (51-100 lbs)
30386                                                                                                 44-88
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30403                                                                                                 45-88
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30494                                                                                                 23 mg
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30523                                                                                                 75 mg
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30534                                                                                               272 mcg
30536                                                                                             4-5 drops
30541                                                                                                1 tube
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30573                                                                                                 34 mg
30574                                                                                                230 mg
30590                                                                           based on weight (40-60 lbs)
30602                                                                                                 40-60
30604                                                                         based on weight (40-60.1 lbs)
30607                                                                                                 40-60
30608                                                                                                 21-55
30619                                                                                                500 mg
30620                                                                                                300 mg
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30700                                                                                                 40-60
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30730                                                                                               272 mcg
30752                                                                                                50-100
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30758                                                                                                50-100
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30784                                                                                               1000 mg
30792                                                                                                1 tube
30793                                                                                 1 tablet/pill/capsule
30794                                                                                              0.25-0.5
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30800                                                                                                 44-88
30803                                                                                           unspecified
30811                                                                                                1 tube
30812                                                                                                160 mg
30813                                                                          based on weight (51-100 lbs)
30814                                                                                                1 tube
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30893                                                                                                1.9 ml
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30919                                                                                                50-100
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30944                                                                                               1000 mg
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30960                                                                                                 1 tsp
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
30999                                                                                                50-100
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31012                                                                                                0.5 mg
31016                                                                                              0.75 tsp
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31097                                                                                               1000 mg
31098                                                                                                 25 mg
31105                                                                          based on weight (51-100 lbs)
31106                                                                                                 45-88
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31136                                                                                                 23 mg
31137                                                                                                136 mg
31138                                                                                                23-228
31139                                                                        based on weight (60.1-121 lbs)
31142                                                                                                23-228
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31200                                                                                                 30 mg
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31233                                                                                                 23 mg
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31235                                                                                                 23 mg
31243                                                                                                 23 mg
31245                                                                                               6 drops
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31264                                                                                                 56-95
31265                                                                                       based on weight
31268                                                                                           as directed
31284                                                                                                51-100
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31330                                                                                                1 pump
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31363                                                                                                60-121
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31380                                                                                                 16 mg
31381                                                                                                 15 gm
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                                                               5 mg/kg
31411                                                                                               1 mg/kg
31412                                                                                               6 mg/ml
31413                                                                                                 50 mg
31414                                                                                               1000 mg
31415                                                                                               272 mcg
31416                                                                                               1000 mg
31417                                                                                               272 mcg
31418                                                                                               272 mcg
31419                                                                                               1000 mg
31420                                                                                                500 mg
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31507                                                                                                0.4 mg
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31599                                                                                                100 mg
31602                                                                          based on weight (51-100 lbs)
31603                                                                                                 44-88
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31638                                                                                                136 mg
31640                                                                                          small amount
31641                                                                                                300 mg
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31651                                                                                                200 mg
31652                                                                                                  5 ml
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31654                                                                                                136 mg
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31679                                                                                                 45-88
31680                                                                          based on weight (51-100 lbs)
31687                                                                                                 45-88
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31727                                                                                                50-100
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31763                                                                                                 44-88
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31800                                                                                                 45-88
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31811                                                                                                1 tube
31818                                                                                                1 tube
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31825                                                                                                1 tube
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31842                                                                                                1 pump
31843                                                                                       based on weight
31844                                                                                       based on weight
31845                                                                                                  1 ml
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31848                                                                                                 23 mg
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31873                                                                                             1000-2000
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31883                                                                                                50-100
31885                                                                                                50-100
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31897                                                                                                50-100
31898                                                                          based on weight (60-121 lbs)
31906                                                                                                1 tbsp
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31917                                                                                                 25-60
31930                                                                                                 50 mg
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31967                                                                                                500 mg
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31969                                                                                                 45-88
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
31991                                                                                                 44-88
31993                                                                                                 45-88
32002                                                                          based on weight (51-100 lbs)
32003                                                                                                60-121
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32034                                                                                                50-100
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32078                                                                                                50-100
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32131                                                                                                  1 mg
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32139                                                                                                50-100
32140                                                                                                 44-88
32146                                                                                                 44-88
32147                                                                                                50-100
32153                                                                                                50-100
32154                                                                                                 44-88
32160                                                                                                 44-88
32161                                                                                                50-100
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32212                                                                                                345 mg
32221                                                                                                 23 mg
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32251                                                                                                 41-88
32252                                                                                               50.1-75
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32354                                                                                                 25 mg
32355                                                                                                  5 mg
32356                                                                                                 25 mg
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32364                                                                                               1.75 ml
32365                                                                                               1.75 ml
32366                                                                                                 16 mg
32370                                                                                           unspecified
32384                                                                                                 44-88
32389                                                                                                 44-88
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32397                                                                                                0.6 mg
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32475                                                                                                300 mg
32476                                                                                                 75 mg
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32521                                                                                                1 drop
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32632                                                                                                 56-95
32633                                                                                           unspecified
32635                                                                                           application
32637                                                                                                1 pump
32639                                                                                                50-100
32640                                                                                                 44-88
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32657                                                                                                 0.5-2
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32692                                                                                                 40-60
32694                                                                                                 spray
32695                                                                                                60-120
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32708                                                                                                100 mg
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32740                                                                                                50-100
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32744                                                                                                50-100
32745                                                                                                 40-60
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32860                                                                                                 16 mg
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32912                                                                                                1 drop
32915                                                                                                50-100
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32939                                                                                                 30 mg
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32953                                                                                                 16 mg
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32983                                                                                                500 mg
32999                                                                          based on weight (51-100 lbs)
33000                                                                                                 21-55
33004                                                                          based on weight (51-100 lbs)
33005                                                                                                 21-55
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33014                                                                                                1 tube
33015                                                                              based on weight (30 lbs)
33018                                                                                                 21-30
33022                                                                                               272 mcg
33023                                                                                       based on weight
33027                                                                                                136 mg
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33067                                                                                               5 drops
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33074                                                                                                 21-55
33075                                                                                                 26-50
33077                                                                                                 45-88
33078                                                                          based on weight (51-100 lbs)
33079                                                                                                 56-95
33080                                                                                                 45-88
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33108                                                                                               272 mcg
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33123                                                                                                200 mg
33124                                                                                          small amount
33125                                                                                                100 mg
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33188                                                                                               1000 mg
33189                                                                                                 50 mg
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33212                                                                                                 55-95
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33223                                                                                                 21-55
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33243                                                                                                 21-55
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33317                                                                                               272 mcg
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33327                                                                                                89-130
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33338                                                                                                 90 mg
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33369                                                                                                88-124
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33416                                                                                               100-150
33419                                                                                                51-100
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33502                                                                                                 44-88
33504                                                                                                272 ug
33521                                                                                                 23 mg
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33573                                                                                                50-100
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33577                                                                                                 44-88
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33601                                                                                                 44-88
33602                                                                                                50-100
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33653                                                                                               100-250
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33665                                                                                                 26-50
33666                                                                                               25.1-50
33667                                                                                                 21-55
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33691                                                                                                136 mg
33692                                                                                                150 mg
33693                                                                                                150 mg
33694                                                                                                500 mg
33695                                                                                                500 mg
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33697                                                                                                136 mg
33702                                                                                           unspecified
33704                                                                                                60-120
33706                                                                                               23, 460
33710                                                                                                50-100
33711                                                                                                60-121
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33818                                                                                                 15 mg
33822                                                                                               272 mcg
33823                                                                                                136 mg
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33825                                                                                                136 mg
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33850                                                                                               272 mcg
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33882                                                                                                50-150
33885                                                                                                50-100
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33905                                                                                               1 spray
33907                                                                                                 spray
33909                                                                                               1 spray
33911                                                                           based on weight (44-88 lbs)
33913                                                                                               1 spray
33914                                                                                               1 spray
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33929                                                                                                1 tube
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33988                                                                                                50-100
33989                                                                                                 44-88
33990                                                                                                 44-88
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34015                                                                                                 23-44
34016                                                                                           unspecified
34020                                                                                                50-100
34021                                                                                                 45-88
34022                                                                                           unspecified
34024                                                                                           unspecified
34025                                                                                                 45-88
34026                                                                                                60-120
34027                                                                                                60-120
34028                                                                                                 45-88
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34031                                                                                                 45-88
34043                                                                          based on weight (50-100 lbs)
34044                                                                                                0.5 mg
34046                                                                           based on weight (44-88 lbs)
34047                                                                                                50-100
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34070                                                                                                136 mg
34071                                                                                                 50 mg
34072                                                                                                500 mg
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34092                                                                                                1 tube
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34105                                                                                               1 spray
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34110                                                                                                 44-88
34111                                                                          based on weight (51-100 lbs)
34112                                                                                                 68 mg
34113                                                                                                  tube
34115                                                                                                 44-88
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34162                                                                                                136 mg
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34282                                                                                                1 pump
34287                                                                                                1 drop
34288                                                                                               272 mcg
34289                                                                                                1 tube
34290                                                                                                  1 ml
34293                                                                                                1 tube
34304                                                                                                1 tube
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34341                                                                                               272 mcg
34342                                                                                           unspecified
34343                                                                                           unspecified
34344                                                                                               272 mcg
34345                                                                           based on weight (45-88 lbs)
34348                                                                                               5 drops
34356                                                                                                810 mg
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34369                                                                                                200 mg
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34425                                                                                                 44-88
34429                                                                                                 44-88
34430                                                                                       based on weight
34433                                                                                            0.05 mg/kg
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34456                                                                                               2 pumps
34457                                                                                                  1 gm
34458                                                                                                 30 mg
34459                                                                                                650 mg
34460                                                                                                 60 mg
34461                                                                                               1 mg/kg
34462                                                                                               1 mg/kg
34463                                                                                                  1 gm
34464                                                                                                325 mg
34465                                                                                                 20 mg
34466                                                                                                500 mg
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34468                                                                                               1620 mg
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34510                                                                                                400 mg
34513                                                                           based on weight (45-88 lbs)
34519                                                                                                61-100
34520                                                                                                61-100
34528                                                                                                 60 mg
34533                                                                                                60-121
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34594                                                                                                60-120
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34612                                                                                                 16 mg
34614                                                                                                  1 ml
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34628                                                                                                61-120
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34639                                                                                                 41-60
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34643                                                                                                50-100
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34670                                                                                                 45-80
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34684                                                                                                50-100
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34707                                                                                                 40-60
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34748                                                                                                 44-88
34749                                                                                                50-100
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34767                                                                                             2.5 mg/kg
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34790                                                                                                50-100
34791                                                                          based on weight (50-100 lbs)
34796                                                                                                60-121
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34834                                                                                                60-120
34835                                                                                                 44-88
34838                                                                                                60-120
34845                                                                                   tablet/pill/capsule
34867                                                                                                100 mg
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34881                                                                                                 23 mg
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34940                                                                                                 35 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34973                                                                                                375 mg
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35026                                                                                             0.125 tsp
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35070                                                                                                500 mg
35074                                                                                           unspecified
35077                                                                                                60-120
35094                                                                          based on weight (51-100 lbs)
35095                                                                                                88-132
35101                                                                                                100 mg
35102                                                                                                0.2 mg
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35119                                                                                                60-121
35122                                                                                               2.25 ml
35124                                                                                                2.2 ml
35125                                                                          based on weight (60-121 lbs)
35126                                                                                                7.5 gm
35128                                                                                                88-123
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35155                                                                                                 16 mg
35160                                                                                           unspecified
35167                                                                                                 45-88
35170                                                                                               272 mcg
35171                                                                                               272 mcg
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35190                                                                                                 10 mg
35191                                                                                                0.6 mg
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35213                                                                                                0.6 mg
35214                                                                          based on weight (51-100 lbs)
35215                                                                                                0.5 mg
35216                                                                                                 10 mg
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35258                                                                                               4 drops
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35263                                                                                                136 mg
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35282                                                                                                 50 mg
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35298                                                                                                 45-88
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35316                                                                                                 68 mg
35318                                                                                                 60 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35386                                                                                                60-120
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35498                                                                                                136 mg
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35503                                                                                                200 mg
35504                                                                                          pack/package
35506                                                                                          small amount
35507                                                                                                1 drop
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35584                                                                                                  2 mg
35592                                                                                               3 drops
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35616                                                                                                200 mg
35617                                                                                                 20 mg
35618                                                                                                300 mg
35619                                                                                                500 mg
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35622                                                                                                200 mg
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35627                                                                                                 10 mg
35628                                                                                       based on weight
35633                                                                                           unspecified
35638                                                                                                 45-88
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35643                                                                                                7.5 ml
35644                                                                                                2.5 mg
35645                                                                                                    ml
35656                                                                                           application
35657                                                                                                50-100
35658                                                                                                50-100
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35689                                                                                                60-120
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35700                                                                                               1 spray
35709                                                                                                 45-88
35717                                                                                                 45-88
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35746                                                                                                200 mg
35747                                                                                                 50 mg
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35749                                                                                                136 mg
35751                                                                                                 16 mg
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35767                                                                                                50-100
35768                                                                             based on weight (55+ lbs)
35769                                                                                                50-100
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35776                                                                                                 21-55
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35779                                                                                               1500 mg
35782                                                                                               272 mcg
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35826                                                                                                50-100
35827                                                                                                 44-88
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35832                                                                                                900 mg
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35853                                                                                                200 ml
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35889                                                                                                 44-88
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35909                                                                                                60-120
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35968                                                                                                 15-20
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35980                                                                                               272 mcg
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36070                                                                                                88-123
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36083                                                                                                0.8 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36151                                                                                                 45-88
36153                                                                                          small amount
36155                                                                                                1 tube
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36196                                                                                                0.4 mg
36198                                                                                                1.5 ml
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36226                                                                                                10-121
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36258                                                                                                 75 mg
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36284                                                                                                500 mg
36288                                                                                       based on weight
36289                                                                                                300 mg
36292                                                                                               2.68 ml
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36376                                                                                               0.25 ml
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36400                                                                                                500 mg
36401                                                                                                 20 mg
36402                                                                                                2.5 mg
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36520                                                                                                 2 tsp
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36563                                                                                                 45-88
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36579                                                                                                1 tube
36580                                                                                                 50 mg
36595                                                                          based on weight (50-100 lbs)
36597                                                                                                 15 gm
36598                                                                                                500 mg
36599                                                                                                200 mg
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36603                                                                                                50-100
36605                                                                          based on weight (50-100 lbs)
36606                                                                                                 15 gm
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36623                                                                                                 15 gm
36624                                                                                           application
36626                                                                                          small amount
36627                                                                                                50-100
36628                                                                                                50-100
36630                                                                          based on weight (50-100 lbs)
36631                                                                                                 15 gm
36632                                                                          based on weight (50-100 lbs)
36633                                                                                                 15 gm
36635                                                                          based on weight (50-100 lbs)
36636                                                                                                 16 mg
36637                                                                                                 15 gm
36652                                                                                                 40-60
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36660                                                                                               272 mcg
36661                                                                                                227 mg
36667                                                                                               9 mg/lb
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36776                                                                                                 10 mg
36777                                                                                                 20 mg
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36874                                                                                             1.5 mg/ml
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36879                                                                                             1.5 mg/ml
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36884                                                                                                1 pump
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36914                                                                                                 45-88
36916                                                                                                  3 mg
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36946                                                                                                136 mg
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37022                                                                                                50-100
37025                                                                                                50-100
37027                                                                                                50-100
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37076                                                                                                1 tube
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37080                                                                                                1 tube
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37091                                                                                                200 mg
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37103                                                                                               1 mg/kg
37104                                                                                             1-2 drops
37115                                                                                               7 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37252                                                                                                50-100
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37261                                                                                                50-100
37262                                                                             based on weight (55+ lbs)
37263                                                                                                 10 mg
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37273                                                                                               8 drops
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37304                                                                                                 75 mg
37306                                                                                               5 mg/kg
37307                                                                                               1 mg/kg
37308                                                                                             0.5 mg/kg
37309                                                                                          small amount
37311                                                                                                 25-35
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37440                                                                                                 44-88
37446                                                                          based on weight (51-100 lbs)
37447                                                                                                 44-88
37448                                                                                                1 pump
37449                                                                                       moderate amount
37451                                                                                           application
37453                                                                                                1 pump
37454                                                                                       moderate amount
37455                                                                                                 44-88
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37482                                                                                                 44-88
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37494                                                                                                89-132
37495                                                                                                 spray
37496                                                                                               5 drops
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37541                                                                                                 44-88
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37553                                                                                                 44-88
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37581                                                                                                500 mg
37582                                                                                                  5 mg
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37623                                                                                                50-100
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37649                                                                                                1.8 ml
37651                                                                                                collar
37652                                                                                             1.5 mg/ml
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37682                                                                                                500 mg
37686                                                                                                500 mg
37691                                                                                           application
37692                                                                                               272 mcg
37695                                                                                                200 mg
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37699                                                                                                1 drop
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37708                                                                                               1000 mg
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37807                                                                                                325 mg
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37836                                                                                                  1 mg
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37860                                                                                                 44-88
37863                                                                                                 26-50
37864                                                                                                 23-44
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37905                                                                                                50-100
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37908                                                                                                61-120
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37940                                                                                                 20 mg
37941                                                                                               5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37945                                                                                                 20-60
37956                                                                                                 16 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38073                                                                                               272 mcg
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38129                                                                                                  2 mg
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38150                                                                                                 25-50
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38220                                                                                                 15 gm
38240                                                                           based on weight (22-55 lbs)
38241                                                                                                50-100
38248                                                                                                 16 mg
38255                                                                                                 45-88
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38260                                                                                                136 mg
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38291                                                                                                50-100
38292                                                                                                 44-88
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38295                                                                                                50-100
38296                                                                                                 44-88
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38321                                                                                                 23 mg
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38341                                                                                               1 spray
38342                                                                          based on weight (51-100 lbs)
38350                                                                                                1 tube
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38354                                                                                                 44-88
38361                                                                                       0.25 inch strip
38362                                                                                                 10 mg
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38370                                                                                               0.65 ml
38371                                                                                                 13 ml
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38380                                                                                                50-100
38381                                                                                                50-100
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38394                                                                                                50-100
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38398                                                                                                  5 mg
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38419                                                                                                 45-88
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38496                                                                                               272 mcg
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38526                                                                                                 41-88
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38535                                                                                                1 tbsp
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38635                                                                                                 44-88
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38638                                                                                                 15 gm
38643                                                                          based on weight (51-100 lbs)
38644                                                                                                 44-88
38647                                                                                                  2, 4
38652                                                                                                 44-88
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38716                                                                                                 15 gm
38722                                                                                          small amount
38723                                                                                              wipe/pad
38724                                                                                                50-100
38754                                                                                           unspecified
38764                                                                                                400 mg
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38776                                                                                               8 drops
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38808                                                                                                375 mg
38809                                                                                           unspecified
38810                                                                                                  3 ml
38816                                                                                        1 pack/package
38818                                                                                                460 mg
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38893                                                                                                 24-60
38896                                                                          based on weight (51-100 lbs)
38897                                                                                                 24-60
38899                                                                                                51-100
38900                                                                                                 24-60
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38978                                                                                                1 tube
38983                                                                                                 45-88
38986                                                                                                 40-85
38988                                                                                                 45-88
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39010                                                                                                 40-60
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39105                                                                                                50-100
39106                                                                                                60-121
39113                                                                                                100 mg
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39141                                                                                               100-200
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39175                                                                                              10 mg/ml
39176                                                                          based on weight (51-100 lbs)
39177                                                                                                102 mg
39181                                                                                                  bath
39182                                                                                                 spray
39188                                                                                                 15 gm
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39261                                                                                              0.25 tsp
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39327                                                                                                 23 mg
39328                                                                                                 80 mg
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39337                                                                                                50-100
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39385                                                                                               272 mcg
39388                                                                          based on weight (51-100 lbs)
39389                                                                                                 48-88
39390                                                                                               272 mcg
39392                                                                                           unspecified
39415                                                                                                1 pump
39416                                                                                                 23 mg
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39436                                                                                                500 mg
39438                                                                          based on weight (51-100 lbs)
39439                                                                                                 45-88
39440                                                                          based on weight (51-100 lbs)
39441                                                                                                 44-88
39442                                                                                                 44-88
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39464                                                                                               272 mcg
39478                                                                                               272 mcg
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39532                                                                                                500 mg
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39579                                                                                                 15 gm
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39605                                                                                                 75 mg
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39634                                                                                                60-120
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39642                                                                                                60-120
39651                                                                                           unspecified
39695                                                                                                60-120
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39708                                                                                               272 mcg
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39745                                                                                                1 tube
39750                                                                                               4 drops
39754                                                                          based on weight (51-100 lbs)
39755                                                                                                1 tube
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39785                                                                                                 25 mg
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39809                                                                                               272 mcg
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39901                                                                                                0.3 mg
39909                                                                           based on weight (41-60 lbs)
39916                                                                                               3 drops
39917                                                                                               3 drops
39918                                                                                               2 drops
39919                                                                                       0.25 inch strip
39924                                                                                                 44-88
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39968                                                                                               24.1-60
39969                                                                                              50.1-100
39970                                                                                              50.1-100
39972                                                                                                 44-88
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39976                                                                                                50-100
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40003                                                                                                227 mg
40013                                                                            based on weight (0-10 lbs)
40014                                                                                                 24-60
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40024                                                                                              10 drops
40038                                                                                              250, 500
40042                                                                                               272 mcg
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40053                                                                                               272 mcg
40054                                                                                                227 mg
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40095                                                                                               272 mcg
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40166                                                                                                 45-88
40180                                                                          based on weight (51-100 lbs)
40181                                                                                                 45-88
40186                                                                          based on weight (51-100 lbs)
40193                                                                                                272 ug
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40200                                                                                                 40-60
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40210                                                                                                50-100
40211                                                                                                 44-88
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40245                                                                                                50-100
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40308                                                                                                 68 mg
40309                                                                                              50 mg/ml
40312                                                                              based on weight (70 lbs)
40313                                                                                                375 mg
40315                                                                                                 24-60
40317                                                                                          small amount
40325                                                                                                272 mg
40331                                                                                               23, 228
40343                                                                                       moderate amount
40346                                                                                                960 mg
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40405                                                                                                100 mg
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40408                                                                                                50-100
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40447                                                                                               4 drops
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40490                                                                                                500 mg
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40505                                                                                                240 mg
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40542                                                                                                  8 ml
40543                                                                                                 23 mg
40547                                                                                                0.5 mg
40567                                                                                                50-100
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40594                                                                                                 56-95
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40610                                                                                                 56-95
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40624                                                                                                150 mg
40625                                                                                                 75 mg
40634                                                                                       0.25 inch strip
40635                                                                                                500 mg
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40657                                                                                               272 mcg
40658                                                                                                136 mg
40684                                                                          based on weight (51-100 lbs)
40685                                                                                                 44-88
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40739                                                                                                50-100
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40774                                                                                                50-100
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40793                                                                                                50-100
40794                                                                                        0.5 inch strip
40795                                                                                                60-120
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40803                                                                                                50-100
40804                                                                                                88-132
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40826                                                                                                250 mg
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40869                                                                                                 75 mg
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40876                                                                                               272 mcg
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40957                                                                                                 20-40
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40975                                                                                                60-121
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41002                                                                                               1000 mg
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41008                                                                                                500 mg
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41012                                                                                               1000 mg
41013                                                                                               1000 mg
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41017                                                                                                500 mg
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41055                                                                                                 60 mg
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41073                                                                                                50-100
41078                                                                                                 44-88
41082                                                                                                500 mg
41083                                                                                                6.3 mg
41084                                                                              based on weight (70 lbs)
41085                                                                                                 50 mg
41086                                                                                                300 mg
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41092                                                                                                500 mg
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41100                                                                                                500 mg
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41105                                                                                               1000 mg
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41128                                                                                                81-120
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41225                                                                                                 20 mg
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41243                                                                                               272 mcg
41246                                                                                           application
41250                                                                                                1 tube
41251                                                                                             0.5 mg/kg
41252                                                                                             6.1 mg/kg
41254                                                                                 1 tablet/pill/capsule
41255                                                                                                 16 mg
41256                                                                                                200 mg
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41302                                                                                                 60 mg
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41336                                                                                                1 pump
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41370                                                                                               11.5 mg
41371                                                                                           application
41372                                                                                                500 mg
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41399                                                                                               8 drops
41400                                                                                               0.75 ml
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41418                                                                                               1.34 ml
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41426                                                                                                50-100
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41502                                                                                                1 tube
41505                                                                                              inhalant
41524                                                                                               100-200
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41550                                                                                               100-200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41648                                                                                                 44-88
41653                                                                                               23, 460
41655                                                                                           unspecified
41661                                                                                                 75 mg
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41732                                                                                                 45-88
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41775                                                                                                136 mg
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41804                                                                                                 44-88
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41827                                                                                                 40-60
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41836                                                                                                89-132
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41841                                                                                                 45-88
41842                                                                                                1 drop
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41855                                                                                                60-120
41856                                                                                                500 mg
41861                                                                                                 40-60
41862                                                                                               2 drops
41863                                                                                       moderate amount
41866                                                                                               272 mcg
41867                                                                                                 68 mg
41870                                                                                               23, 228
41872                                                                                           unspecified
41884                                                                                                 26-50
41885                                                                                                 22-44
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41892                                                                                                200 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41895                                                                                              25 drops
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41907                                                                                                100 gm
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41966                                                                                                56-100
41967                                                                                                51-100
41969                                                                                                 45-88
41971                                                                                                51-100
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41976                                                                                                 15 ml
41988                                                                          based on weight (51-100 lbs)
41989                                                                                                 44-88
41992                                                                                                50-100
41993                                                                                                 45-88
41996                                                                                                 45-88
41999                                                                                                50-100
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42030                                                                                               5 drops
42032                                                                          based on weight (51-100 lbs)
42033                                                                                                 50 mg
42034                                                                                                500 mg
42035                                                                                                150 mg
42036                                                                                               3 drops
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42040                                                                                                1 tube
42041                                                                                                500 mg
42042                                                                                                 20 mg
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42051                                                                                                 55-88
42053                                                                          based on weight (60-121 lbs)
42054                                                                                                 20 mg
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42096                                                                                                 60-80
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42113                                                                                                136 mg
42114                                                                                                375 mg
42115                                                                                                 60 mg
42116                                                                      2 tablets/pills/capsules - 50 mg
42117                                                                                                300 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42157                                                                                               62.5-75
42171                                                                                               8 drops
42174                                                                          based on weight (51-100 lbs)
42175                                                                                                250 mg
42176                                                                                                125 mg
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42290                                                                                                 45-88
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42355                                                                                               1.5 tsp
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42365                                                                                                1 pump
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42381                                                                                                50-100
42384                                                                          based on weight (51-100 lbs)
42385                                                                                                50-100
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42401                                                                                                 45-88
42402                                                                          based on weight (51-100 lbs)
42403                                                                                                1 tube
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42435                                                                                                 80-90
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42479                                                                                                1 tube
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42515                                                                                                 45-88
42516                                                                                                50-100
42518                                                                                                160 mg
42519                                                                                                 20 mg
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42566                                                                                                5 tbsp
42569                                                                                                 22-55
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42575                                                                                              85.1-130
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42583                                                                                                75-100
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42625                                                                                                60-121
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42667                                                                                                60-120
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42741                                                                                                 24-60
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42767                                                                                                 68 mg
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42769                                                                                                 80 mg
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42809                                                                                                 21-55
42810                                                                                                 26-50
42821                                                                          based on weight (50-100 lbs)
42829                                                                                               4 drops
42833                                                                                               23, 228
42860                                                                                           as directed
42866                                                                                                 25-50
42867                                                                                                 45-88
42869                                                                                                 25-50
42870                                                                                                 45-88
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42909                                                                                                 75 mg
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43073                                                                                                 20-40
43074                                                                                                 40-85
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43144                                                                                                50-100
43149                                                                                                  5 mg
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43187                                                                                                 50 mg
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43240                                                                                                 30 mg
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43251                                                                                                 23 mg
43254                                                                                                 23 mg
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43265                                                                                                460 mg
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43329                                                                                                272 mg
43334                                                                                               23, 228
43366                                                                                          small amount
43370                                                                                                50-100
43388                                                                                           unspecified
43396                                                                                                 15 gm
43397                                                                                                3.5 gm
43398                                                                                                500 mg
43399                                                                                                 50 mg
43400                                                                                                500 mg
43405                                                                                          small amount
43412                                                                                          small amount
43416                                                                                                 15 gm
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43435                                                                                                 44-88
43436                                                                                                 16 mg
43442                                                                                                 44-88
43443                                                                                                 16 mg
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43498                                                                                                900 mg
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43561                                                                                                500 mg
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43601                                                                                                1 drop
43610                                                                                      0.125 inch strip
43611                                                                                               272 mcg
43620                                                                                           unspecified
43621                                                                                           unspecified
43622                                                                                               272 mcg
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43641                                                                                                250 mg
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43670                                                                                                 20-30
43674                                                                                                 44-88
43675                                                                                                 15-20
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43712                                                                                               1 spray
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43755                                                                                                227 mg
43756                                                                                                136 mg
43765                                                                                                1 pump
43766                                                                                                125 mg
43778                                                                                               272 mcg
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43829                                                                                                600 ml
43831                                                                                               272 mcg
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43880                                                                                                50-100
43884                                                                                                  tube
43885                                                                                                50-100
43887                                                                                                  tube
43889                                                                                                50-100
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43897                                                                                                 15 gm
43898                                                                                                 16 mg
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44051                                                                                               5 drops
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44132                                                                                                60-121
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44164                                                                                                50-100
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44220                                                                                                1 tube
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44242                                                                                                 3 tsp
44243                                                                                           unspecified
44244                                                                                           unspecified
44245                                                                                                250 mg
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44255                                                                                                50-100
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44321                                                                                                50-100
44330                                                                          based on weight (51-100 lbs)
44331                                                                                                 24-60
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44382                                                                                                60-120
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44408                                                                                                60-120
44420                                                                                                 56-95
44421                                                                        based on weight (50.1-100 lbs)
44422                                                                                                 26-50
44423                                                                                                 21-55
44425                                                                                                  0-25
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44501                                                                                               8 drops
44502                                                                                                  4 mg
44503                                                                                                 50 mg
44504                                                                                                 50 mg
44505                                                                                                500 mg
44507                                                                                          small amount
44508                                                                                                  4 mg
44509                                                                                                 45 mg
44518                                                                                               272 mcg
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44525                                                                                               0.5-0.7
44531                                                                              based on weight (70 lbs)
44532                                                                                                500 mg
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44552                                                                                                  1 ml
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44674                                                                                                60-120
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44779                                                                                                60-120
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44796                                                                                                1 drop
44797                                                                                                1 drop
44798                                                                                                100 mg
44799                                                                                           unspecified
44800                                                                                                100 mg
44804                                                                                           unspecified
44805                                                                                               1000 mg
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44831                                                                                                1 drop
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44870                                                                                                  1 mg
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44878                                                                                                300 mg
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44927                                                                                                 44-88
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44990                                                                                                0.5 gm
44994                                                                                                 24-60
44997                                                                                           as directed
45000                                                                                                 24-60
45005                                                                                           unspecified
45007                                                                                           unspecified
45009                                                                                                 40-85
45011                                                                                                 40-85
45013                                                                                                60-120
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45047                                                                                                1 tube
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45056                                                                                                 26-50
45057                                                                                                 25-60
45058                                                                                                 25-60
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45068                                                                                                60-120
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45110                                                                                                150 mg
45112                                                                                               6 drops
45115                                                                                                100 mg
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45128                                                                                                50-100
45129                                                                                                 40-60
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45140                                                                                                60-120
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45183                                                                                                 45-88
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45203                                                                                                136 mg
45204                                                                                                  8 mg
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45213                                                                                                 45-88
45216                                                                          based on weight (51-100 lbs)
45217                                                                                                60-121
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45226                                                                                                60-121
45236                                                                          based on weight (51-100 lbs)
45237                                                                                                60-121
45240                                                                                                51-100
45241                                                                                                60-121
45242                                                                                                50-100
45255                                                                                       based on weight
45257                                                                                                  1 ml
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45274                                                                                               5 drops
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45284                                                                                                60-120
45286                                                                          based on weight (51-100 lbs)
45287                                                                                                60-120
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45301                                                                                                 24-60
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45405                                                                                                 45-88
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45474                                                                                                60-120
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45498                                                                                                 75 mg
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45553                                                                                                240 mg
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45586                                                                                                375 mg
45587                                                                                                500 mg
45590                                                                                                60-120
45591                                                                                               8 drops
45592                                                                                                 16 mg
45626                                                                        based on weight (50.1-100 lbs)
45629                                                                                                1 tube
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45654                                                                                               100-200
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45666                                                                                                 23 mg
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45674                                                                                               2 drops
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45684                                                                                                 25 mg
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45703                                                                                                  3 ml
45704                                                                                          small amount
45722                                                                                                 44-88
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45742                                                                                                 44-88
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45786                                                                                                 20 mg
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45794                                                                                                 23 mg
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45844                                                                                                 25-50
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45868                                                                                                88-123
45869                                                                        based on weight (50.1-100 lbs)
45870                                                                                                 60 ml
45871                                                                                                7.5 ml
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45884                                                                                               25.1-50
45885                                                                                               25.1-50
45886                                                                                               5 drops
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45928                                                                                                 44-88
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45972                                                                                               8 drops
45974                                                                                               1000 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46020                                                                                                  1 ml
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46077                                                                                                150 mg
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46079                                                                                                900 mg
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46101                                                                                               3 drops
46102                                                                                               3 drops
46103                                                                                                136 mg
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46128                                                                                               272 mcg
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46169                                                                                                 23 mg
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46178                                                                                                 56-88
46179                                                                                                250 mg
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46226                                                                                                200 mg
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46304                                                                                                 22-44
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46328                                                                                               1400 mg
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46432                                                                                                1 pump
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46480                                                                                                 40-60
46481                                                                                                55-100
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46491                                                                                                 26-50
46492                                                                                                 26-50
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46502                                                                                               3 pumps
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46524                                                                                               5 drops
46526                                                                                       0.25 inch strip
46527                                                                                               5 drops
46528                                                                           based on weight (45-88 lbs)
46529                                                                                                  1 gm
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46534                                                                                               5 drops
46543                                                                                                 45-88
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46590                                                                                               8 drops
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46664                                                                                                1 tube
46665                                                                                 1 tablet/pill/capsule
46672                                                                                                50-100
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46718                                                                                                 16 mg
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46762                                                                                               4 mg/ml
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46771                                                                                                250 mg
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46787                                                                                                60-121
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46818                                                                                                 10 mg
46826                                                                                             500 mg/ml
46827                                                                                             1-2 drops
46835                                                                                                0.5 mg
46836                                                                                               0.5 mcg
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46867                                                                                                250 mg
46874                                                                                          small amount
46880                                                                                          small amount
46881                                                                                                 23 mg
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46933                                                                                                50-100
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46978                                                                                                1 drop
46979                                                                                               272 mcg
46980                                                                                                227 mg
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
46987                                                                                                 45-88
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47040                                                                                                 23 mg
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47042                                                                                                500 mg
47043                                                                          based on weight (51-100 lbs)
47044                                                                                                 45-88
47045                                                                                                 60 mg
47049                                                                           based on weight (40-85 lbs)
47050                                                                                                500 mg
47053                                                                                                 40-80
47055                                                                                               272 mcg
47060                                                                                           unspecified
47065                                                                                                 60 mg
47069                                                                                                 15 gm
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47108                                                                                                1 tube
47123                                                                                               272 mcg
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47136                                                                                                 40-85
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47153                                                                                                 44-88
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47181                                                                                                1 tube
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47185                                                                                                 23 mg
47186                                                                                                 23 mg
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47255                                                                                                50-100
47260                                                                          based on weight (50-100 lbs)
47266                                                                                              12 mg/kg
47277                                                                                                 23-44
47286                                                                                                 41-88
47302                                                                                          small amount
47305                                                                                                500 mg
47313                                                                                                 56-95
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47337                                                                                                50-100
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47349                                                                                               12.5-25
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47481                                                                                            2.27 mg/lb
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47490                                                                                               272 mcg
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47513                                                                                              10 drops
47515                                                                                                272 ug
47517                                                                                                272 ug
47524                                                                                                272 ug
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47559                                                                                                1 drop
47561                                                                                                  1 gm
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47580                                                                                             1.5 mg/ml
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47609                                                                                                60-120
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47682                                                                                                136 mg
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47809                                                                                                 44-88
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47847                                                                                             0.125 tsp
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47862                                                                                                0.1 ml
47863                                                                                 1 tablet/pill/capsule
47867                                                                                                100 mg
47870                                                                                                50-100
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47892                                                                                                100 mg
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47902                                                                                                50-100
47906                                                                                                 45-88
47908                                                                                                50-100
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47917                                                                                                100 mg
47928                                                                                                125 mg
47949                                                                                               1000 mg
47950                                                                                                60-121
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47979                                                                                                 45-88
47980                                                                                                 44-88
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
47999                                                                                                  4 ml
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48006                                                                                              28 mg/m2
48007                                                                              0.75 tablet/pill/capsule
48008                                                                                                 80 mg
48012                                                                                                 45-88
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48032                                                                                               1000 mg
48033                                                                                                300 mg
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48052                                                                                            0.125-0.25
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48076                                                                                                60-120
48083                                                                                                 26-50
48084                                                                                                 21-55
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48128                                                                                                 25 mg
48129                                                                                                 16 mg
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48154                                                                                               1620 mg
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48161                                                                                                500 mg
48162                                                                                                100 mg
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48170                                                                                                100 mg
48171                                                                                                100 mg
48178                                                                                                 15 gm
48182                                                                                       136 mcg, 114 mg
48184                                                                                             1.1 - 1.6
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48218                                                                                                 80 mg
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48223                                                                                                0.5 ml
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48290                                                                                                136 mg
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48311                                                                                               5 drops
48312                                                                                                500 mg
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48374                                                                                                 10 ml
48376                                                                                                 drops
48377                                                                                                 10 mg
48378                                                                                                1 drop
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48440                                                                                               1000 mg
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48499                                                                                               5 drops
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48503                                                                                                1 tube
48504                                                                                       based on weight
48505                                                                                       based on weight
48508                                                                                                 57 mg
48513                                                                          based on weight (51-100 lbs)
48514                                                                                                 44-88
48520                                                                                                 1 tsp
48521                                                                                                  2 ml
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48560                                                                                                1 tube
48598                                                                                           unspecified
48602                                                                                              tapering
48603                                                                                                 25-50
48609                                                                                                 68 mg
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48662                                                                                               2.68 ml
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48835                                                                                               5 drops
48842                                                                                                500 mg
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48869                                                                                                 20 mg
48877                                                                                                 75 mg
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48893                                                                                                1 drop
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48917                                                                                               272 mcg
48918                                                                                           unspecified
48921                                                                                                 60 ml
48935                                                                                           unspecified
48938                                                                                               272 mcg
48946                                                                            1.5 tablets/pills/capsules
48971                                                                                                272 mg
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49015                                                                                               4.02 ml
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49019                                                                                                500 mg
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49027                                                                                                 60 ml
49028                                                                                                 20 mg
49030                                                                                                 30 gm
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49066                                                                                                50-100
49067                                                                                                60-121
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49083                                                                                                60-120
49084                                                                          based on weight (51-100 lbs)
49085                                                                                                60-120
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49114                                                                                               272 mcg
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49185                                                                                               272 mcg
49186                                                                                                227 mg
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49250                                                                                                50-100
49251                                                                                                 44-88
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49266                                                                                                 40-60
49304                                                                                              10 drops
49305                                                                                                 26-50
49314                                                                                                0.5 mg
49316                                                                                           unspecified
49317                                                                                                 1-1.5
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49345                                                                                                1 pump
49346                                                                          based on weight (51-100 lbs)
49347                                                                                                60-120
49348                                                                          based on weight (51-100 lbs)
49349                                                                                                60-120
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49353                                                                                                 60-80
49371                                                                                                 30 ml
49372                                                                                 1 tablet/pill/capsule
49375                                                                                               37.5 mg
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49401                                                                                                 23 mg
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49410                                                                                                250 mg
49421                                                                                                50-100
49424                                                                                               100-150
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49464                                                                                                 56-95
49473                                                                          based on weight (51-100 lbs)
49487                                                                                                50-100
49488                                                                                                 45-88
49491                                                                                                50-100
49492                                                                                                 45-88
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49524                                                                                                136 mg
49525                                                                                               0.57 mg
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49544                                                                                                50-100
49545                                                                                                60-120
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49551                                                                                                50-100
49552                                                                                                 24-60
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49589                                                                                               272 mcg
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49604                                                                                                500 mg
49605                                                                                 1 tablet/pill/capsule
49606                                                                                                500 mg
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49640                                                                                               272 mcg
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49680                                                                                               1000 mg
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49714                                                                                               272 mcg
49715                                                                                                1 tube
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49752                                                                                                 45-88
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49762                                                                                                 44-88
49764                                                                                                 15 ml
49765                                                                                                 68 mg
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49783                                                                                              56.25 mg
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49848                                                                                                500 mg
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49856                                                                                                1.7 ml
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49884                                                                                                50-100
49886                                                                          based on weight (51-100 lbs)
49887                                                                                                 56-95
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49899                                                                                                 26-50
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49909                                                                                                 56-95
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49923                                                                                               1000 mg
49924                                                                                               1000 mg
49925                                                                                                750 mg
49928                                                                                               1000 mg
49929                                                                                                750 mg
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49980                                                                                                 50 mg
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49994                                                                                             0.2 mg/kg
49995                                                                                             0.2 mg/kg
49996                                                                                           as directed
49997                                                                                                375 mg
49998                                                                                                 50 mg
49999                                                                                                100 mg
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50002                                                                                               3 pumps
50004                                                                          based on weight (51-100 lbs)
50005                                                                                                 44-88
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50022                                                                                             0.2 mg/kg
50029                                                                                 1 tablet/pill/capsule
50030                                                                                                1 tube
50033                                                                                 1 tablet/pill/capsule
50034                                                                                                1 tube
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50073                                                                                                1 tube
50076                                                                                              25 mg/kg
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50125                                                                                                 45-88
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50180                                                                                                 24-60
50187                                                                          based on weight (51-100 lbs)
50188                                                                                                 21-55
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
print(nrow(non_numeric_dose))
[1] 11899
#first regex tidying pass
#some rules to apply to dose
#1)if 2 numbers with NO other strings in it are split by a '-' then do avg of the 2 numbers
#2)delete mg/kg or any "X/X" units from strings

#3)strip mg,ml and tbs, tsp, g, mcg from a string if only a single number is there (no comma seperating multi drugs in dose)


###1)
dash_pattern <- grepl("^\\d+(\\.\\d+)?\\s*-\\s*\\d+(\\.\\d+)?$", dose$dose)

# Calculate the average for rows matching the pattern
dose$dose[dash_pattern] <- sapply(dose$dose[dash_pattern], function(x) {
  # Split the string by '-'
  nums <- as.numeric(unlist(strsplit(x, "-")))
  # Return the average
  mean(nums)
})


#1) fixes about 1000 rows

non_numeric_dose2 <- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

# View the result
print(non_numeric_dose2)
                                                                                                        medication_ingredients
22                                                                                                                   meloxicam
40                                                                                              polysulfated glycosaminoglycan
41                                                                                      joint supplement (glucosamine hcl/msm)
42                                                                                                                   meloxicam
46                                                                                                                    spinosad
48                                                                                                    imidacloprid, moxidectin
49                                                                                                                imidacloprid
51                                                                      joint supplement (chondroitin sulfate/glucosamine hcl)
59                                                                                                                  ivermectin
60                                                                                                  imidacloprid, pyriproxyfen
62                                                                                                  imidacloprid, pyriproxyfen
63                                                                                                                  ivermectin
67                                                                                                                   mupirocin
70                                                                                                                   mupirocin
74                                                                                                  imidacloprid, pyriproxyfen
84                                                                                           betamethasone, gentamicin sulfate
87                                                                                                               dexamethasone
91                                                                             betamethasone, clotrimazole, gentamicin sulfate
111                                                                            betamethasone, clotrimazole, gentamicin sulfate
112                                                                                          enrofloxacin, silver sulfadiazine
113                                                                               florfenicol, mometasone furoate, terbinafine
114                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
149                                                                                chlorhexidine gluconate, miconazole nitrate
150                                                                                                                  tris-edta
151                                                                                                    chlorhexidine gluconate
152                                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                               multivitamin
155                                                                                                  immune support supplement
167                                                                                                   joint supplement (other)
188                                                                                                                 fluralaner
192                                                                                                                 fluralaner
220                                                                                                                 fluralaner
230                                                                                               ivermectin, pyrantel pamoate
233                                                                                        ear cleaner (zymox), hydrocortisone
235                                                                                               ivermectin, pyrantel pamoate
236                                                                                    betamethasone, florfenicol, terbinafine
237                                                                                    betamethasone, florfenicol, terbinafine
238                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
239                                                                                                                 afoxolaner
242                                                                                    betamethasone, florfenicol, terbinafine
243                                                                                    betamethasone, florfenicol, terbinafine
248                                                                               florfenicol, mometasone furoate, terbinafine
257                                                                                                 milbemycin oxime, spinosad
275                                                                                               ivermectin, pyrantel pamoate
276                                                                                                                 ivermectin
277                                                                                                                 afoxolaner
279                                                                    chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                    triamcinolone acetonide
287                                                                                                                 ivermectin
310                                                                                               ivermectin, pyrantel pamoate
317                                                                                                 imidacloprid, pyriproxyfen
318                                                                                               ivermectin, pyrantel pamoate
324                                                                                                 imidacloprid, pyriproxyfen
328                                                                                                   imidacloprid, permethrin
329                                                                                               ivermectin, pyrantel pamoate
332                                                                                                 imidacloprid, pyriproxyfen
333                                                                                               ivermectin, pyrantel pamoate
347                                                                                                lufenuron, milbemycin oxime
348                                                                                                lufenuron, milbemycin oxime
350                                                                                                lufenuron, milbemycin oxime
351                                                                                                lufenuron, milbemycin oxime
353                                                                                                lufenuron, milbemycin oxime
355                                                                                                lufenuron, milbemycin oxime
366                                                                                                               coenzyme q10
368                                                                                                                 afoxolaner
372                                                                                                                 afoxolaner
375                                                                                               ivermectin, pyrantel pamoate
376                                                                                                                 fluralaner
383                                                                                                lufenuron, milbemycin oxime
384                                                                                                lufenuron, milbemycin oxime
385                                                                                                lufenuron, milbemycin oxime
386                                                                                                lufenuron, milbemycin oxime
403                                                                                                                 ivermectin
404                                                                                                                 ivermectin
414                                                                                                lufenuron, milbemycin oxime
447                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
449                                                                  activated charcoal, bismuth subsalicylate, kaolin, pectin
453                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
480                                                                               florfenicol, mometasone furoate, terbinafine
496                                                                                                                 ivermectin
497                                                                                                                 afoxolaner
498                                                                                               ivermectin, pyrantel pamoate
519                                                                                                                 isoflurane
537                                                                               dexamethasone, neomycin sulfate, polymyxin b
597                                                                                                   fipronil, (s)-methoprene
598                                                                                                                 afoxolaner
603                                                                                               ivermectin, pyrantel pamoate
604                                                                                                                 afoxolaner
610                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
619                                                                                                       cognitive supplement
635                                                                                                                  melatonin
637                                                                                                                  omega 3-6
642                                                              bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
645                                                                                                                  melatonin
686                                                                                                                 afoxolaner
688                                                                                         amoxicillin, clavulanate potassium
703                                                                                               ivermectin, pyrantel pamoate
704                                                                                                                  sarolaner
709                                                                                                           liver supplement
710                                                                                                                  lomustine
712                                                                                                       prednisolone acetate
725                                                                                                 milbemycin oxime, spinosad
728                                                                                               ivermectin, pyrantel pamoate
729                                                                                                                 afoxolaner
730                                                                                               ivermectin, pyrantel pamoate
731                                                                                                                  sarolaner
733                                                                                                                  ketorolac
734                                                                               dexamethasone, neomycin sulfate, polymyxin b
735                                                                                                                 prednisone
736                                                                                                      mycophenolate mofetil
737                                                                                                       dorzolamide, timolol
738                                                                                               ivermectin, pyrantel pamoate
739                                                                                                                 afoxolaner
750                                                                                                               enrofloxacin
754                                                                                               ivermectin, pyrantel pamoate
755                                                                                                   fipronil, (s)-methoprene
757                                                                                  lufenuron, milbemycin oxime, praziquantel
760                                                                                                                tropicamide
771                                                                                                                  carprofen
778                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
785                                                                                                 milbemycin oxime, spinosad
790                                                                                                 milbemycin oxime, spinosad
792                                                                                                lufenuron, milbemycin oxime
797                                                                                                           liver supplement
798                                                                                                         maropitant citrate
799                                                                                                                bedinvetmab
800                                                                                                                mirtazapine
801                                                                                                                 furosemide
802                                                                                                                  carprofen
803                                                                                                                 fluralaner
804                                                                                                                 fluralaner
810                                                                                                                 selamectin
816                                                                                                     rx diet - renal health
819                                                                                               ivermectin, pyrantel pamoate
820                                                                                               ivermectin, pyrantel pamoate
823                                                                                                   fipronil, (s)-methoprene
824                                                                                               ivermectin, pyrantel pamoate
832                                                                                                                    omega 3
850                                                                                     fipronil, pyriproxyfen, (s)-methoprene
851                                                                                               ivermectin, pyrantel pamoate
862                                                                                                                 ivermectin
863                                                                                                                doxycycline
871                                                                                                 milbemycin oxime, spinosad
874                                                                                                 milbemycin oxime, spinosad
877                                                                                                         miconazole nitrate
878                                                                                                 milbemycin oxime, spinosad
879                                                                                                 milbemycin oxime, spinosad
880                                                                                                 milbemycin oxime, spinosad
884                                                                                                 milbemycin oxime, spinosad
887                                                                                                 milbemycin oxime, spinosad
891                                                                                                 milbemycin oxime, spinosad
893                                                                                                 milbemycin oxime, spinosad
899                                                                                                 milbemycin oxime, spinosad
901                                                                                                    chlorhexidine gluconate
905                                                                                          allergy immunotherapy - injection
913                                                                                                 imidacloprid, pyriproxyfen
917                                                                                                                  firocoxib
918                                                                                                              metronidazole
921                                                                                               ivermectin, pyrantel pamoate
929                                                                                                                  ketorolac
930                                                                                                                dorzolamide
950                                                                                                                 ivermectin
955                                                                                                   flumethrin, imidacloprid
958                                                                                               ivermectin, pyrantel pamoate
969                                                                                                    acetic acid, boric acid
970                                                                     hydrocortisone, gentamicin sulfate, miconazole nitrate
977                                                                                                                  ophytrium
982                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                  probiotic
989                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
1001                                                                                                             yunnan baiyao
1017                                                                                                                ivermectin
1018                                                                                                                afoxolaner
1019                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
1020                                                                                                          neomycin sulfate
1021                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
1027                                                                                        chlorhexidine gluconate, ophytrium
1028                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1029                                                                                        chlorhexidine gluconate, ophytrium
1030                                                                                                unspecified shampoo/mousse
1031                                                                                                   enrofloxacin, tris-edta
1033                                                                              florfenicol, mometasone furoate, terbinafine
1036                                                                       enrofloxacin, ketoconazole, triamcinolone acetonide
1037                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1039                                                                              florfenicol, mometasone furoate, terbinafine
1042                                                                                                   chlorhexidine gluconate
1050                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1072                                                                                          burow's solution, hydrocortisone
1073                                                                                        chlorhexidine gluconate, tris-edta
1074                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1087                                                                                                milbemycin oxime, spinosad
1088                                                                                                              acepromazine
1091                                                                                           ear cleaner (epi-otic advanced)
1092                                                                                                                prednisone
1093                                                                                                                cephalexin
1097                                                                                                milbemycin oxime, spinosad
1098                                                                                                  imidacloprid, permethrin
1099                                                                                              ivermectin, pyrantel pamoate
1100                                                                                               lufenuron, milbemycin oxime
1101                                                                                                                fluralaner
1108                                                                                        chlorhexidine gluconate, ophytrium
1111                                                                                               lufenuron, milbemycin oxime
1112                                                                                        chlorhexidine gluconate, ophytrium
1116                                                                                ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                              imidacloprid
1131                                                                                                       ear cleaner (zymox)
1150                                                                                                   ketoconazole, tris-edta
1152                                                                                                          milbemycin oxime
1153                                                                                                                ivermectin
1154                                                                                               lufenuron, milbemycin oxime
1155                                                                                               lufenuron, milbemycin oxime
1159                                                                                               lufenuron, milbemycin oxime
1160                                                                                               lufenuron, milbemycin oxime
1161                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1168                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                              ivermectin, pyrantel pamoate
1170                                                                                                  fipronil, (s)-methoprene
1173                                                                                                  fipronil, (s)-methoprene
1174                                                                                              ivermectin, pyrantel pamoate
1175                                                                                                  fipronil, (s)-methoprene
1176                                                                                              ivermectin, pyrantel pamoate
1177                                                                                                  fipronil, (s)-methoprene
1179                                                                           betamethasone, clotrimazole, gentamicin sulfate
1185                                                                                                                ivermectin
1186                                                                                              ivermectin, pyrantel pamoate
1187                                                                                                         megestrol acetate
1189                                                                                              ivermectin, pyrantel pamoate
1190                                                                                              ivermectin, pyrantel pamoate
1193                                                                                                                ivermectin
1194                                                                                              ivermectin, pyrantel pamoate
1195                                                                                                          milbemycin oxime
1208                                                                                                  imidacloprid, permethrin
1217                                                                                              ivermectin, pyrantel pamoate
1226                                                                                                imidacloprid, pyriproxyfen
1233                                                                                                       silver sulfadiazine
1247                                                                                               lufenuron, milbemycin oxime
1274                                                                                                          milbemycin oxime
1285                                                                                            sulfamethoxazole, trimethoprim
1307                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1336                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1344                                                                                ivermectin, praziquantel, pyrantel pamoate
1345                                                                            dexamethasone, neomycin sulfate, thiabendazole
1346                                                                                           ear cleaner (epi-otic advanced)
1348                                                                                                   triamcinolone acetonide
1355                                                                                                  fipronil, (s)-methoprene
1371                                                                                              ivermectin, pyrantel pamoate
1377                                                                                                             levothyroxine
1378                                                                                                      cefpodoxime proxetil
1379                                                                                                                 carprofen
1380                                                                                                             metronidazole
1398                                                                                         dexamethasone, miconazole nitrate
1404                                                                                         betamethasone, gentamicin sulfate
1405                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1415                                                                                         dexamethasone, miconazole nitrate
1416                                                                                                                lokivetmab
1417                                                                                   betamethasone, florfenicol, terbinafine
1418                                                                                                             metronidazole
1419                                                                                               lufenuron, milbemycin oxime
1420                                                                                                                   omega 3
1422                                                                                               lufenuron, milbemycin oxime
1434                                                                                                  fipronil, (s)-methoprene
1435                                                                                               lufenuron, milbemycin oxime
1438                                                                                               lufenuron, milbemycin oxime
1441                                                                                               lufenuron, milbemycin oxime
1442                                                                                ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                  fipronil, (s)-methoprene
1450                                                                                    fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                          milbemycin oxime
1459                                                                                     dinotefuran, permethrin, pyriproxyfen
1462                                                                                     dinotefuran, permethrin, pyriproxyfen
1464                                                                                               lufenuron, milbemycin oxime
1473                                                                                                    unspecified medication
1475                                                                                                  imidacloprid, permethrin
1491                                                                                              ivermectin, pyrantel pamoate
1499                                                                                                milbemycin oxime, spinosad
1500                                                                                                milbemycin oxime, spinosad
1501                                                                                              ivermectin, pyrantel pamoate
1502                                                                                              ivermectin, pyrantel pamoate
1504                                                                                                                 vitamin c
1511                                                                                                                afoxolaner
1512                                                                                     dinotefuran, permethrin, pyriproxyfen
1514                                                                                                                afoxolaner
1528                                                                                                  imidacloprid, permethrin
1529                                                                                                                ivermectin
1532                                                                                                imidacloprid, pyriproxyfen
1534                                                                                                imidacloprid, pyriproxyfen
1535                                                                                                          milbemycin oxime
1536                                                                                                imidacloprid, pyriproxyfen
1537                                                                                                          milbemycin oxime
1538                                                                                                          milbemycin oxime
1539                                                                                                imidacloprid, pyriproxyfen
1541                                                                                                imidacloprid, pyriproxyfen
1542                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1556                                                                                                               sevoflurane
1571                                                                                                                 sarolaner
1572                                                                                            milbemycin oxime, praziquantel
1586                                                                                                              ketoconazole
1587                                                                                              ivermectin, pyrantel pamoate
1598                                                                                              ivermectin, pyrantel pamoate
1599                                                                                              ivermectin, pyrantel pamoate
1633                                                                                                          milbemycin oxime
1634                                                                                                  fipronil, (s)-methoprene
1635                                                                                    joint supplement (glucosamine hcl/msm)
1636                                                                                                                   omega 3
1650                                                                                                  fipronil, (s)-methoprene
1663                                                                                                milbemycin oxime, spinosad
1668                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1683                                                                                                  flumethrin, imidacloprid
1684                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                         betamethasone, gentamicin sulfate
1689                                                                                     chlorhexidine gluconate, ketoconazole
1690                                                                                         betamethasone, gentamicin sulfate
1692                                                                           betamethasone, clotrimazole, gentamicin sulfate
1695                                                                              dexamethasone, neomycin sulfate, polymyxin b
1697                                                                                                  flumethrin, imidacloprid
1708                                                                                               lufenuron, milbemycin oxime
1710                                                                                               lufenuron, milbemycin oxime
1712                                                                                               lufenuron, milbemycin oxime
1715                                                                                               lufenuron, milbemycin oxime
1718                                                                                               lufenuron, milbemycin oxime
1719                                                                                                                 sarolaner
1720                                                                                               lufenuron, milbemycin oxime
1729                                                                                                              imidacloprid
1730                                                                                                                ivermectin
1743                                                                                                              imidacloprid
1747                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                            hydrocortisone
1749                                                                                                milbemycin oxime, spinosad
1756                                                                                                                 probiotic
1757                                                                                                    coprophagia supplement
1758                                                                                              ivermectin, pyrantel pamoate
1759                                                                                                                afoxolaner
1760                                                                                                                 cefovecin
1761                                                                                         betamethasone, gentamicin sulfate
1769                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
1773                                                                                         trimeprazine tartrate, prednisone
1774                                                                                               lufenuron, milbemycin oxime
1775                                                                                                                fluralaner
1789                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1791                                                                                                                 mupirocin
1794                                                                                     chlorhexidine gluconate, ketoconazole
1795                                                                                                unspecified shampoo/mousse
1796                                                                                        joint supplement (glucosamine hcl)
1798                                                                                                                 meloxicam
1805                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1809                                                                                                  joint supplement (other)
1812                                                                                                                      kelp
1813                                                                                                                   omega 3
1819                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                             unspecified herbal thyroid support supplement
1823                                                                            mometasone furoate, orbifloxacin, posaconazole
1845                                                                                                  imidacloprid, permethrin
1846                                                                                              ivermectin, pyrantel pamoate
1847                                                                                                imidacloprid, pyriproxyfen
1848                                                                                              ivermectin, pyrantel pamoate
1849                                                                                              ivermectin, pyrantel pamoate
1850                                                                              dexamethasone, neomycin sulfate, polymyxin b
1851                                                                              dexamethasone, neomycin sulfate, polymyxin b
1861                                                                                                                 vitamin k
1867                                                                                              ivermectin, pyrantel pamoate
1872                                                                                              ivermectin, pyrantel pamoate
1877                                                                                 unspecified herbal flea/tick preventative
1887                                                                                       cedarwood oil, rosemary oil, sesame
1888                                                                                 unspecified herbal flea/tick preventative
1905                                                                                                                 vitamin k
1906                                                                                                             metronidazole
1917                                                                                              ivermectin, pyrantel pamoate
1922                                                                                         betamethasone, gentamicin sulfate
1925                                                                                                          benzoyl peroxide
1926                                                                                     chlorhexidine gluconate, ketoconazole
1928                                                                                                                ivermectin
1929                                                                                     dinotefuran, permethrin, pyriproxyfen
1931                                                                                                          benzoyl peroxide
1939                                                                                 unspecified herbal flea/tick preventative
1941                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1945                                                                                       cedarwood oil, rosemary oil, sesame
1948                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1962                                                                                                                ivermectin
1965                                                                                           ear cleaner (epi-otic advanced)
1980                                                                                                imidacloprid, pyriproxyfen
1981                                                                                              ivermectin, pyrantel pamoate
1982                                                                                              ivermectin, pyrantel pamoate
1983                                                                                                imidacloprid, pyriproxyfen
1984                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                   omega 3
1994                                                                                                               doxorubicin
1998                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2006                                                                                              ivermectin, pyrantel pamoate
2007                                                                                                             levetiracetam
2012                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                   omega 3
2016                                                                                               lufenuron, milbemycin oxime
2022                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2025                                                                                                imidacloprid, pyriproxyfen
2026                                                                                              ivermectin, pyrantel pamoate
2029                                                                                              ivermectin, pyrantel pamoate
2030                                                                                                                 sarolaner
2032                                                                                                          pyrantel pamoate
2033                                                                                                          milbemycin oxime
2034                                                                                                              fenbendazole
2041                                                                                                                ivermectin
2042                                                                                                                ivermectin
2043                                                                                                              fenbendazole
2044                                                                                                                 ponazuril
2050                                                                                              ivermectin, pyrantel pamoate
2072                                                                                                             metronidazole
2075                                                                                                                ivermectin
2083                                                                                                                selamectin
2084                                                                                                                ivermectin
2085                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2087                                                                                               lufenuron, milbemycin oxime
2088                                                                                                                fluralaner
2089                                                                                                  joint supplement (other)
2091                                                                                                                ivermectin
2093                                                                                                  joint supplement (other)
2107                                                                                              ivermectin, pyrantel pamoate
2108                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                              ivermectin, pyrantel pamoate
2110                                                                                              ivermectin, pyrantel pamoate
2113                                                                                         trimeprazine tartrate, prednisone
2115                                                                                                 unspecified otic ointment
2116                                                                                                    unspecified otic flush
2123                                                                                                                 probiotic
2126                                                                                               lufenuron, milbemycin oxime
2127                                                                                ivermectin, praziquantel, pyrantel pamoate
2149                                                                                               lufenuron, milbemycin oxime
2151                                                                                               lufenuron, milbemycin oxime
2161                                                                                               lufenuron, milbemycin oxime
2165                                                                           betamethasone, clotrimazole, gentamicin sulfate
2166                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2195                                                                                digestive supplement, prebiotic, probiotic
2199                                                                                              ivermectin, pyrantel pamoate
2200                                                                                                                afoxolaner
2201                                                                                              ivermectin, pyrantel pamoate
2202                                                                                                                afoxolaner
2203                                                                                                  urinary tract supplement
2204                                                                                              ivermectin, pyrantel pamoate
2205                                                                                                                afoxolaner
2206                                                                                                  urinary tract supplement
2207                                                                                    joint supplement (glucosamine hcl/msm)
2211                                                                              dexamethasone, neomycin sulfate, polymyxin b
2219                                                                                                                    arnica
2220                                                                                                                 hypericum
2221                                                                                                             metronidazole
2224                                                                                                 spinal support supplement
2225                                                                                                                   omega 3
2226                                                                                                                 probiotic
2228                                                                                                        mangosteen extract
2229                                                                                                                 shu jin i
2230                                                                                                             metronidazole
2233                                                                                ivermectin, praziquantel, pyrantel pamoate
2241                                                                                     dinotefuran, permethrin, pyriproxyfen
2243                                                                                                          milbemycin oxime
2244                                                                                     dinotefuran, permethrin, pyriproxyfen
2245                                                                                                             levothyroxine
2250                                                                                                                ivermectin
2251                                                                                                     clorsulon, ivermectin
2255                                                                                     dinotefuran, permethrin, pyriproxyfen
2258                                                                                                                 probiotic
2259                                                                                                                 vitamin d
2260                                                                                                                 vitamin a
2261                                                                                                                 vitamin c
2262                                                                                                              multivitamin
2263                                                                                                  kidney health supplement
2264                                                                                             unspecified herbal supplement
2265                                                                                                                  turmeric
2266                                                                                toothpaste/dental health solution or chews
2269                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                  turmeric
2272                                                                            mometasone furoate, orbifloxacin, posaconazole
2278                                                                                ivermectin, praziquantel, pyrantel pamoate
2279                                                                                              ivermectin, pyrantel pamoate
2280                                                                                              ivermectin, pyrantel pamoate
2283                                                                                              ivermectin, pyrantel pamoate
2301                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                     butorphanol tartrate, dexmedetomidine
2333                                                                                              ivermectin, pyrantel pamoate
2339                                                                                                             dexamethasone
2342                                                                              dexamethasone, neomycin sulfate, polymyxin b
2345                                                                                              ivermectin, pyrantel pamoate
2347                                                                                              ivermectin, pyrantel pamoate
2352                                                                                              ivermectin, pyrantel pamoate
2356                                                                                              ivermectin, pyrantel pamoate
2390                                                                                         betamethasone, gentamicin sulfate
2398                                                                                         betamethasone, gentamicin sulfate
2404                                                                                              ivermectin, pyrantel pamoate
2405                                                                                                  fipronil, (s)-methoprene
2406                                                                                                                   omega 3
2409                                                                                              ivermectin, pyrantel pamoate
2411                                                                                                                ivermectin
2412                                                                                                               clindamycin
2418                                                                                              ivermectin, pyrantel pamoate
2419                                                                                              ivermectin, pyrantel pamoate
2424                                                                                                        maropitant citrate
2425                                                                                                                omeprazole
2426                                                                                                               amoxicillin
2427                                                                                                             metronidazole
2428                                                                                                               oclacitinib
2450                                                                                                               clindamycin
2453                                                                                                        maropitant citrate
2455                                                                                                                famotidine
2456                                                                                                        maropitant citrate
2463                                                                                         rx diet - selected protein (duck)
2464                                                                                              ivermectin, pyrantel pamoate
2467                                                                                         trimeprazine tartrate, prednisone
2473                                                                            dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                   ketoconazole, tris-edta
2477                                                                                                             buprenorphine
2478                                                                                                                ampicillin
2479                                                                                                                 probiotic
2481                                                                                                                  fipronil
2482                                                                                              ivermectin, pyrantel pamoate
2486                                                                                                   acetic acid, boric acid
2487                                                                                                   ketoconazole, tris-edta
2490                                                                                                           dexmedetomidine
2491                                                                                                        miconazole nitrate
2492                                                                                                   acetic acid, boric acid
2499                                                                                         rx diet - selected protein (duck)
2500                                                                                              ivermectin, pyrantel pamoate
2501                                                                                                                 carprofen
2502                                                                                                                alprazolam
2503                                                                                                               oclacitinib
2504                                                                                                                afoxolaner
2505                                                                                                                ivermectin
2506                                                                                                                afoxolaner
2508                                                                                                                 probiotic
2517                                                                                               lufenuron, milbemycin oxime
2518                                                                                                  joint supplement (other)
2534                                                                                            unspecified eye dilation drops
2539                                                                                 lufenuron, milbemycin oxime, praziquantel
2540                                                                                               lufenuron, milbemycin oxime
2542                                                                                            milbemycin oxime, praziquantel
2543                                                                                                  flumethrin, imidacloprid
2544                                                                                                             metronidazole
2545                                                                                            milbemycin oxime, praziquantel
2546                                                                                                  flumethrin, imidacloprid
2547                                                                                                          milbemycin oxime
2548                                                                                                  flumethrin, imidacloprid
2549                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                   omega 3
2558                                                                                              ivermectin, pyrantel pamoate
2559                                                                                              ivermectin, pyrantel pamoate
2560                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2562                                                                                              ivermectin, pyrantel pamoate
2566                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2575                                                                                         betamethasone, gentamicin sulfate
2578                                                                                         betamethasone, gentamicin sulfate
2580                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2583                                                                                                                ivermectin
2587                                                                                                               doxycycline
2588                                                                                                                fluralaner
2589                                                                                                                grapiprant
2599                                                                                                       polyethylene glycol
2600                                                                                                         vision supplement
2627                                                                                         betamethasone, gentamicin sulfate
2636                                                                                                               oclacitinib
2642                                                                                         betamethasone, gentamicin sulfate
2651                                                        ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                       ear cleaner (zymox)
2655                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2659                                                                                                  skin and coat supplement
2660                                                                                                   unspecified ear cleaner
2661                                                                                                          colloidal silver
2699                                                                                         betamethasone, gentamicin sulfate
2710                                                                                                  imidacloprid, moxidectin
2721                                                                           betamethasone, clotrimazole, gentamicin sulfate
2726                                                                                              ivermectin, pyrantel pamoate
2731                                                                                                milbemycin oxime, spinosad
2735                                                                                                milbemycin oxime, spinosad
2737                                                                                               lufenuron, milbemycin oxime
2738                                                                                                          milbemycin oxime
2739                                                                                                                afoxolaner
2742                                                                                               lufenuron, milbemycin oxime
2743                                                                                                                fluralaner
2745                                                                                               lufenuron, milbemycin oxime
2746                                                                                                                fluralaner
2748                                                                                               lufenuron, milbemycin oxime
2749                                                                                                                fluralaner
2750                                                                                                               oclacitinib
2753                                                                                 lufenuron, milbemycin oxime, praziquantel
2756                                                                                                                lokivetmab
2805                                                                                                  fipronil, (s)-methoprene
2808                                                                                                                   omega 3
2815                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2818                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2825                                                                                                          milbemycin oxime
2827                                                                                              ivermectin, pyrantel pamoate
2828                                                                                              ivermectin, pyrantel pamoate
2833                                                                                               lufenuron, milbemycin oxime
2838                                                                                                          milbemycin oxime
2839                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
2842                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2844                                                                              dexamethasone, neomycin sulfate, polymyxin b
2846                                                                                                          milbemycin oxime
2855                                                                                                             yunnan baiyao
2869                                                                                        unspecified heartworm preventative
2897                                                                                     chlorhexidine gluconate, ketoconazole
2900                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2903                                                                                     chlorhexidine gluconate, ketoconazole
2904                                                                                     chlorhexidine gluconate, ketoconazole
2905                                                                                     chlorhexidine gluconate, ketoconazole
2907                                                                                                                 probiotic
2911                                                                                               lufenuron, milbemycin oxime
2912                                                                                                                afoxolaner
2913                                                                                                                 probiotic
2919                                                                                            milbemycin oxime, praziquantel
2920                                                                                                                afoxolaner
2921                                                                                                                 probiotic
2922                                                                                                          milbemycin oxime
2923                                                                                                                afoxolaner
2925                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2941                                                                                               lufenuron, milbemycin oxime
2942                                                                                                  imidacloprid, permethrin
2943                                                                                               lufenuron, milbemycin oxime
2944                                                                                                imidacloprid, pyriproxyfen
2946                                                                                                imidacloprid, pyriproxyfen
2951                                                                                                imidacloprid, pyriproxyfen
2958                                                                                                                ivermectin
2959                                                                                                                ivermectin
2960                                                                                              ivermectin, pyrantel pamoate
2961                                                                                              ivermectin, pyrantel pamoate
2962                                                                                              ivermectin, pyrantel pamoate
2963                                                                                              ivermectin, pyrantel pamoate
2964                                                                                              ivermectin, pyrantel pamoate
2974                                                                                               lufenuron, milbemycin oxime
2975                                                                                                  fipronil, (s)-methoprene
2978                                                                                 lufenuron, milbemycin oxime, praziquantel
2980                                                                                                      prednisolone acetate
2981                                                                                 lufenuron, milbemycin oxime, praziquantel
2982                                                                                                                afoxolaner
2988                                                                                                              fenbendazole
2993                                                                                                              fenbendazole
2997                                                                                                             metronidazole
3002                                                                                                      prednisolone acetate
3003                                                                                           ear cleaner (epi-otic advanced)
3007                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3028                                                                                                  fipronil, (s)-methoprene
3031                                                                                                          liver supplement
3055                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
3058                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3060                                                                                                                ivermectin
3092                                                                                                               minocycline
3095                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3096                                                                                                             metronidazole
3110                                                                            mometasone furoate, orbifloxacin, posaconazole
3119                                                                                dimethyl sulfoxide, fluocinolone acetonide
3140                                                                                             allergy immunotherapy - drops
3146                                                                                                                cetirizine
3147                                                                                             allergy immunotherapy - drops
3179                                                                                              ivermectin, pyrantel pamoate
3180                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3208                                                                                              ivermectin, pyrantel pamoate
3209                                                                                                                fluralaner
3212                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
3246                                                                                ivermectin, praziquantel, pyrantel pamoate
3247                                                                                ivermectin, praziquantel, pyrantel pamoate
3250                                                                                ivermectin, praziquantel, pyrantel pamoate
3251                                                                                            milbemycin oxime, praziquantel
3253                                                                                ivermectin, praziquantel, pyrantel pamoate
3257                                                                                ivermectin, praziquantel, pyrantel pamoate
3261                                                                                                                   omega 3
3270                                                                                                             metronidazole
3271                                                                                ivermectin, praziquantel, pyrantel pamoate
3278                                                                              dexamethasone, neomycin sulfate, polymyxin b
3280                                                                                ivermectin, praziquantel, pyrantel pamoate
3284                                                                                                          milbemycin oxime
3287                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3291                                                                                                                 mupirocin
3293                                                                           betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                          milbemycin oxime
3300                                                                                                          milbemycin oxime
3305                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3312                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                 mupirocin
3339                                                                                            milbemycin oxime, praziquantel
3342                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3345                                                                                               lufenuron, milbemycin oxime
3346                                                                                               lufenuron, milbemycin oxime
3350                                                                                                                ivermectin
3360                                                                                                  joint supplement (other)
3366                                                                                                              enrofloxacin
3372                                                                                                                ivermectin
3375                                                                                  febantel, praziquantel, pyrantel pamoate
3376                                                                                                                 mupirocin
3394                                                                                                   triamcinolone acetonide
3399                                                                                                milbemycin oxime, spinosad
3403                                                                                                milbemycin oxime, spinosad
3404                                                                                                                afoxolaner
3405                                                                                              ivermectin, pyrantel pamoate
3406                                                                              florfenicol, mometasone furoate, terbinafine
3421                                                                                             allergy immunotherapy - drops
3422                                                                                             allergy immunotherapy - drops
3423                                                                                                                selamectin
3425                                                                                                                selamectin
3426                                                                                             allergy immunotherapy - drops
3429                                                                                                milbemycin oxime, spinosad
3437                                                                           betamethasone, clotrimazole, gentamicin sulfate
3439                                                                              florfenicol, mometasone furoate, terbinafine
3444                                                                                                                lokivetmab
3445                                                                                                                cephalexin
3446                                                                                                                lokivetmab
3447                                                                           betamethasone, clotrimazole, gentamicin sulfate
3448                                                                              florfenicol, mometasone furoate, terbinafine
3449                                                                                                                 carprofen
3451                                                                                               lufenuron, milbemycin oxime
3455                                                                                               lufenuron, milbemycin oxime
3456                                                                                                  fipronil, (s)-methoprene
3457                                                                                               lufenuron, milbemycin oxime
3458                                                                                                imidacloprid, pyriproxyfen
3459                                                                                               lufenuron, milbemycin oxime
3465                                                                                                       phenylpropanolamine
3488                                                                                                                nitenpyram
3490                                                                                                                 sarolaner
3491                                                                                               lufenuron, milbemycin oxime
3492                                                                                                                 sarolaner
3495                                                                                 lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                 sarolaner
3497                                                                                 lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                 sarolaner
3512                                                                                              ivermectin, pyrantel pamoate
3513                                                                                              ivermectin, pyrantel pamoate
3514                                                                                              ivermectin, pyrantel pamoate
3515                                                                                              ivermectin, pyrantel pamoate
3516                                                                                              ivermectin, pyrantel pamoate
3517                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3519                                                                                                                ivermectin
3520                                                                                ivermectin, praziquantel, pyrantel pamoate
3522                                                                                              ivermectin, pyrantel pamoate
3525                                                                                              ivermectin, pyrantel pamoate
3526                                                                                ivermectin, praziquantel, pyrantel pamoate
3530                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3535                                                                              dexamethasone, neomycin sulfate, polymyxin b
3581                                                                                                              multivitamin
3600                                                                                                        gentamicin sulfate
3601                                                                                                                 carprofen
3619                                                                                            milbemycin oxime, praziquantel
3622                                                                                                                 probiotic
3631                                                                                                                ivermectin
3632                                                                                                                ivermectin
3635                                                                                                                fluralaner
3636                                                                                            polysulfated glycosaminoglycan
3639                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                   acetic acid, boric acid
3641                                                                                         betamethasone, gentamicin sulfate
3649                                                                                                  imidacloprid, moxidectin
3650                                                                                                  imidacloprid, moxidectin
3651                                                                                                             metronidazole
3652                                                                                                      prebiotic, probiotic
3666                                                                                         betamethasone, gentamicin sulfate
3667                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
3675                                                                                         betamethasone, gentamicin sulfate
3684                                                                                                          milbemycin oxime
3685                                                                                                  fipronil, (s)-methoprene
3691                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                          milbemycin oxime
3693                                                                                         betamethasone, gentamicin sulfate
3698                                                                                                                selamectin
3699                                                                                                                selamectin
3701                                                                                                          milbemycin oxime
3704                                                                                                          milbemycin oxime
3705                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                lokivetmab
3710                                                                                                           cbd or hemp oil
3718                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                              ivermectin, pyrantel pamoate
3725                                                                                              ivermectin, pyrantel pamoate
3726                                                                                              ivermectin, pyrantel pamoate
3735                                                                                                                 ketotifen
3738                                                                                                        maropitant citrate
3741                                                                                                               amoxicillin
3742                                                                                                              azathioprine
3743                                                                                                                cetirizine
3744                                                                                                                 lactulose
3745                                                                                                                 carprofen
3750                                                                                                          milbemycin oxime
3760                                                                                                milbemycin oxime, spinosad
3773                                                                              dexamethasone, neomycin sulfate, polymyxin b
3781                                                                                                                 ketorolac
3782                                                                                                                 ofloxacin
3783                                                                                                               tropicamide
3784                                                                                                     mycophenolate mofetil
3785                                                                                                                prednisone
3786                                                                                                                famotidine
3789                                                                                         betamethasone, gentamicin sulfate
3797                                                                                                   triamcinolone acetonide
3798                                                                           betamethasone, clotrimazole, gentamicin sulfate
3800                                                                           betamethasone, clotrimazole, gentamicin sulfate
3804                                                                                                      cefpodoxime proxetil
3815                                                                                              ivermectin, pyrantel pamoate
3829                                                                           betamethasone, clotrimazole, gentamicin sulfate
3830                                                                                                                 meloxicam
3835                                                                                              ivermectin, pyrantel pamoate
3836                                                                                                                afoxolaner
3837                                                                                                                 thyroxine
3838                                                                                                                afoxolaner
3839                                                                                                                 thyroxine
3840                                                                           betamethasone, clotrimazole, gentamicin sulfate
3848                                                                              dexamethasone, neomycin sulfate, polymyxin b
3857                                                                                              ivermectin, pyrantel pamoate
3858                                                                                                  fipronil, (s)-methoprene
3859                                                                                                          milbemycin oxime
3860                                                                                                                afoxolaner
3861                                                                                                        gentamicin sulfate
3867                                                                           betamethasone, clotrimazole, gentamicin sulfate
3870                                                                                              ivermectin, pyrantel pamoate
3871                                                                                                                afoxolaner
3872                                                                                                                afoxolaner
3874                                                                           betamethasone, clotrimazole, gentamicin sulfate
3881                                                                                                                ivermectin
3886                                                                                              ivermectin, pyrantel pamoate
3889                                                                                              ivermectin, pyrantel pamoate
3897                                                                                              ivermectin, pyrantel pamoate
3898                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
3900                                                                                                                ivermectin
3903                                                                                              ivermectin, pyrantel pamoate
3906                                                                                              ivermectin, pyrantel pamoate
3911                                                                                              ivermectin, pyrantel pamoate
3938                                                                                              ivermectin, pyrantel pamoate
3943                                                                                              ivermectin, pyrantel pamoate
3944                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3945                                                                                          propylene glycol, salicylic acid
3946                                                                                                                afoxolaner
3952                                                                                              ivermectin, pyrantel pamoate
3972                                                                                                milbemycin oxime, spinosad
3980                                                                                              ivermectin, pyrantel pamoate
3984                                                                                              ivermectin, pyrantel pamoate
3989                                                                                              ivermectin, pyrantel pamoate
3990                                                                                                                afoxolaner
4000                                                                                                                 meloxicam
4017                                                                                              ivermectin, pyrantel pamoate
4030                                                                                                milbemycin oxime, spinosad
4031                                                                                                milbemycin oxime, spinosad
4042                                                                                                    unspecified medication
4044                                                                                                                moxidectin
4045                                                                                                                 sarolaner
4047                                                                                                                 sarolaner
4058                                                                                                                ivermectin
4059                                                                                         trimeprazine tartrate, prednisone
4060                                                                                              ivermectin, pyrantel pamoate
4063                                                                                              ivermectin, pyrantel pamoate
4064                                                                                                                fluralaner
4066                                                                                                                ivermectin
4067                                                                                                                fluralaner
4068                                                                                toothpaste/dental health solution or chews
4069                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                               oclacitinib
4071                                                                                toothpaste/dental health solution or chews
4072                                                                                                                afoxolaner
4073                                                                                              ivermectin, pyrantel pamoate
4074                                                                                                  fipronil, (s)-methoprene
4075                                                                                              ivermectin, pyrantel pamoate
4076                                                                                                               oclacitinib
4077                                                                                                                afoxolaner
4087                                                                                                                 cefazolin
4088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                 ofloxacin
4092                                                                                                              imidacloprid
4095                                                                                                                 sarolaner
4096                                                                                                                moxidectin
4097                                                                                                                 sarolaner
4111                                                                                                milbemycin oxime, spinosad
4112                                                                                ivermectin, praziquantel, pyrantel pamoate
4113                                                                                           ear cleaner (epi-otic advanced)
4114                                                                                                   ketoconazole, tris-edta
4116                                                                                         trimeprazine tartrate, prednisone
4117                                                                                                  fipronil, (s)-methoprene
4118                                                                                                milbemycin oxime, spinosad
4119                                                                                                   ketoconazole, tris-edta
4120                                                                                                milbemycin oxime, spinosad
4125                                                                                                milbemycin oxime, spinosad
4127                                                                                            milbemycin oxime, praziquantel
4128                                                                                                                afoxolaner
4131                                                                                         betamethasone, gentamicin sulfate
4132                                                                                         betamethasone, gentamicin sulfate
4133                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4159                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4160                                                                                 clotrimazole, dexamethasone, enrofloxacin
4161                                                                                                                ivermectin
4162                                                                                        fipronil, permethrin, pyriproxyfen
4172                                                                                                  fipronil, (s)-methoprene
4183                                                                                                                selamectin
4184                                                                                                                selamectin
4189                                                                                                      cefpodoxime proxetil
4190                                                                                                                 carprofen
4191                                                                                                milbemycin oxime, spinosad
4193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4198                                                                                                                afoxolaner
4199                                                                                                          milbemycin oxime
4204                                                                                                                lokivetmab
4209                                                                                                milbemycin oxime, spinosad
4210                                                                                                milbemycin oxime, spinosad
4212                                                                                                milbemycin oxime, spinosad
4213                                                                                 lufenuron, milbemycin oxime, praziquantel
4215                                                                                               lufenuron, milbemycin oxime
4216                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4218                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4229                                                                                                              fenbendazole
4234                                                                                                               doxycycline
4244                                                                                                          pyrantel pamoate
4245                                                                           betamethasone, clotrimazole, gentamicin sulfate
4247                                                                                              ivermectin, pyrantel pamoate
4265                                                                                                                tobramycin
4266                                                                                                   ketoconazole, tris-edta
4274                                                                                                                isoflurane
4281                                                                                                                 carprofen
4282                                                                                                                cephalexin
4298                                                                                        fipronil, permethrin, pyriproxyfen
4299                                                                                                                ivermectin
4302                                                                                               lufenuron, milbemycin oxime
4304                                                                                               lufenuron, milbemycin oxime
4305                                                                                                  fipronil, (s)-methoprene
4306                                                                                                                   omega 3
4307                                                                                               lufenuron, milbemycin oxime
4308                                                                                               lufenuron, milbemycin oxime
4309                                                                                                  fipronil, (s)-methoprene
4311                                                                                        joint supplement (glucosamine hcl)
4313                                                                                               lufenuron, milbemycin oxime
4314                                                                                                  fipronil, (s)-methoprene
4323                                                                                                                selamectin
4324                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                          milbemycin oxime
4326                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4334                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4336                                                                                                                fluralaner
4338                                                                                 lufenuron, milbemycin oxime, praziquantel
4341                                                                                                               doxycycline
4348                                                                              dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                milbemycin oxime, spinosad
4350                                                                                                milbemycin oxime, spinosad
4353                                                                                                milbemycin oxime, spinosad
4354                                                                                                milbemycin oxime, spinosad
4360                                                                                         betamethasone, gentamicin sulfate
4368                                                                                                        calming supplement
4371                                                                                                                   omega 3
4384                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                               lufenuron, milbemycin oxime
4390                                                                                                                fluralaner
4395                                                                                              ivermectin, pyrantel pamoate
4405                                                                                                milbemycin oxime, spinosad
4409                                                                                                  enrofloxacin, tobramycin
4426                                                                                              ivermectin, pyrantel pamoate
4427                                                                                                imidacloprid, pyriproxyfen
4428                                                                                                                  spinosad
4430                                                                                                         hypochlorous acid
4431                                                                                   over-the-counter antipruritic/astrigent
4444                                                                                                  fipronil, (s)-methoprene
4445                                                                                                milbemycin oxime, spinosad
4446                                                                                                                 probiotic
4454                                                                                                                isoflurane
4469                                                                                                   ketoconazole, tris-edta
4470                                                                                                   ketoconazole, tris-edta
4471                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4480                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4483                                                                                               lufenuron, milbemycin oxime
4486                                                                                                                   omega 3
4488                                                                                   betamethasone, florfenicol, terbinafine
4491                                                                                   betamethasone, florfenicol, terbinafine
4497                                                                                               lufenuron, milbemycin oxime
4499                                                                                            milbemycin oxime, praziquantel
4500                                                                                                                afoxolaner
4501                                                                                       rx diet - skin and food sensitivity
4502                                                                                                                afoxolaner
4504                                                                                       rx diet - skin and food sensitivity
4505                                                                                                          milbemycin oxime
4509                                                                                                          milbemycin oxime
4510                                                                                                                afoxolaner
4511                                                                                                                   omega 3
4515                                                                                                          milbemycin oxime
4516                                                                                                                afoxolaner
4517                                                                                                                 probiotic
4524                                                                                ivermectin, praziquantel, pyrantel pamoate
4532                                                                                                          milbemycin oxime
4533                                                                                                      prebiotic, probiotic
4534                                                                                                               coconut oil
4535                                                                                                               oclacitinib
4536                                                                                                          milbemycin oxime
4544                                                                                                                   omega 3
4545                                                                                ivermectin, praziquantel, pyrantel pamoate
4547                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4558                                                                                              ivermectin, pyrantel pamoate
4559                                                                                        fipronil, permethrin, pyriproxyfen
4560                                                                                              ivermectin, pyrantel pamoate
4561                                                                                         betamethasone, gentamicin sulfate
4562                                                                                                                fluralaner
4564                                                                                              ivermectin, pyrantel pamoate
4565                                                                                                                fluralaner
4566                                                                                              ivermectin, pyrantel pamoate
4567                                                                                                                fluralaner
4568                                                                                                                fluralaner
4569                                                                                                          milbemycin oxime
4587                                                                                              ivermectin, pyrantel pamoate
4597                                                                                clinical trial - cancer prevention vaccine
4598                                                                                                                 firocoxib
4599                                                                                                                ivermectin
4600                                                                                                                afoxolaner
4611                                                                                                milbemycin oxime, spinosad
4617                                                                                         betamethasone, gentamicin sulfate
4627                                                                                                                  fipronil
4628                                                                                                            (s)-methoprene
4629                                                                                               lufenuron, milbemycin oxime
4630                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4631                                                                                                  fipronil, (s)-methoprene
4634                                                                                               rx diet - digestive support
4638                                                                                                  fipronil, (s)-methoprene
4640                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4642                                                                                            milbemycin oxime, praziquantel
4643                                                                                                              cyclosporine
4644                                                                                                                      edta
4645                                                                                                                      edta
4646                                                                                                              flurbiprofen
4647                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4648                                                                                            milbemycin oxime, praziquantel
4649                                                                                                  fipronil, (s)-methoprene
4651                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4654                                                                                                  fipronil, (s)-methoprene
4655                                                                                            milbemycin oxime, praziquantel
4688                                                                                                          sulfadimethoxine
4695                                                                                                          milbemycin oxime
4696                                                                                                                afoxolaner
4697                                                                                            milbemycin oxime, praziquantel
4700                                                                                                    dinoprost tromethamine
4703                                                                                                          milbemycin oxime
4705                                                                                                          milbemycin oxime
4711                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
4716                                                                                                      cefpodoxime proxetil
4717                                                                                                                  spinosad
4719                                                                            mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                   ketoconazole, tris-edta
4726                                                                                                          milbemycin oxime
4738                                                                                                milbemycin oxime, spinosad
4739                                                                                                milbemycin oxime, spinosad
4743                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                         betamethasone, gentamicin sulfate
4745                                                                                                milbemycin oxime, spinosad
4748                                                                                                milbemycin oxime, spinosad
4757                                                                                                imidacloprid, pyriproxyfen
4760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4761                                                                                                 immune support supplement
4763                                                                                                imidacloprid, pyriproxyfen
4764                                                                                                imidacloprid, pyriproxyfen
4766                                                                                                imidacloprid, pyriproxyfen
4777                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
4780                                                                                                  joint supplement (other)
4782                                                                                                                 probiotic
4798                                                                                                                prednisone
4801                                                                                                                prednisone
4802                                                                                              ivermectin, pyrantel pamoate
4803                                                                              dexamethasone, neomycin sulfate, polymyxin b
4804                                                                                                                prednisone
4805                                                                              dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                afoxolaner
4807                                                                                                                 carprofen
4813                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4824                                                                                                  imidacloprid, moxidectin
4826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4828                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4832                                                                                     enrofloxacin, triamcinolone acetonide
4850                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4853                                                                                                   ketoconazole, tris-edta
4855                                                                                                milbemycin oxime, spinosad
4858                                                                                                milbemycin oxime, spinosad
4859                                                                                              ivermectin, pyrantel pamoate
4861                                                                                              ivermectin, pyrantel pamoate
4862                                                                                              ivermectin, pyrantel pamoate
4881                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4902                                                                                                  fipronil, (s)-methoprene
4904                                                                                                milbemycin oxime, spinosad
4905                                                                                                milbemycin oxime, spinosad
4908                                                                                                milbemycin oxime, spinosad
4910                                                                                                  flumethrin, imidacloprid
4912                                                                                            milbemycin oxime, praziquantel
4913                                                                                                  flumethrin, imidacloprid
4914                                                                                            milbemycin oxime, praziquantel
4917                                                                                            milbemycin oxime, praziquantel
4935                                                                                                                ivermectin
4956                                                                                                   ketoconazole, tris-edta
4960                                                                                                   ketoconazole, tris-edta
4968                                                                                                milbemycin oxime, spinosad
4969                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
4980                                                                                                                 probiotic
4981                                                                                            milbemycin oxime, praziquantel
4989                                                                                                                 carprofen
4990                                                                                                                  tramadol
4996                                                                                         betamethasone, gentamicin sulfate
4998                                                                                                             oxymetazoline
5040                                                                                                                afoxolaner
5043                                                                                                  fipronil, (s)-methoprene
5046                                                                                         betamethasone, gentamicin sulfate
5078                                                                                                milbemycin oxime, spinosad
5122                                                                                              ivermectin, pyrantel pamoate
5123                                                                                                                afoxolaner
5125                                                                                         allergy immunotherapy - injection
5127                                                                                            polysulfated glycosaminoglycan
5134                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5140                                                                                        amoxicillin, clavulanate potassium
5159                                                                                        joint supplement (glucosamine hcl)
5160                                                                                                                   omega 3
5161                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5165                                                                                                                 deracoxib
5173                                                                                              ivermectin, pyrantel pamoate
5174                                                                                                                afoxolaner
5175                                                                                                              enrofloxacin
5191                                                                                                milbemycin oxime, spinosad
5192                                                                                                                 carprofen
5193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5195                                                                                                  flumethrin, imidacloprid
5201                                                                                                                 carprofen
5203                                                                                                                ivermectin
5210                                                                                                              ketoconazole
5211                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                               chlorhexidine gluconate, miconazole nitrate
5213                                                                                                    ear cleaner (otirinse)
5214                                                                                               lufenuron, milbemycin oxime
5220                                                                                         betamethasone, gentamicin sulfate
5221                                                                               chlorhexidine gluconate, miconazole nitrate
5222                                                                                                  imidacloprid, permethrin
5223                                                                                               lufenuron, milbemycin oxime
5225                                                                                               lufenuron, milbemycin oxime
5234                                                                                  febantel, praziquantel, pyrantel pamoate
5235                                                                                               lufenuron, milbemycin oxime
5243                                                                                               lufenuron, milbemycin oxime
5244                                                                                                imidacloprid, pyriproxyfen
5247                                                                                            milbemycin oxime, praziquantel
5248                                                                                                  imidacloprid, permethrin
5253                                                                                              ivermectin, pyrantel pamoate
5255                                                                                               lufenuron, milbemycin oxime
5256                                                                                               lufenuron, milbemycin oxime
5257                                                                                               lufenuron, milbemycin oxime
5258                                                                                               lufenuron, milbemycin oxime
5261                                                                                               lufenuron, milbemycin oxime
5262                                                                                  febantel, praziquantel, pyrantel pamoate
5264                                                                                                imidacloprid, pyriproxyfen
5265                                                                                                          milbemycin oxime
5270                                                                                            milbemycin oxime, praziquantel
5271                                                                                                  imidacloprid, permethrin
5289                                                                                                          milbemycin oxime
5332                                                                                                                   amitraz
5333                                                                                                                   omega 3
5334                                                                                              ivermectin, pyrantel pamoate
5335                                                                                                                   amitraz
5336                                                                                                  urinary tract supplement
5337                                                                                              ivermectin, pyrantel pamoate
5340                                                                                              ivermectin, pyrantel pamoate
5341                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
5354                                                                                                  flumethrin, imidacloprid
5357                                                                              dexamethasone, neomycin sulfate, polymyxin b
5359                                                                                              ivermectin, pyrantel pamoate
5360                                                                                              ivermectin, pyrantel pamoate
5361                                                                                                           diphenhydramine
5362                                                                            attapulgite, bismuth subcarbonate, kanamycin a
5369                                                                                              ivermectin, pyrantel pamoate
5377                                                                                              ivermectin, pyrantel pamoate
5378                                                                                                  fipronil, (s)-methoprene
5379                                                                                                                ivermectin
5384                                                                                                          milbemycin oxime
5385                                                                                                  fipronil, (s)-methoprene
5386                                                                                              ivermectin, pyrantel pamoate
5387                                                                                                          milbemycin oxime
5388                                                                                     dinotefuran, permethrin, pyriproxyfen
5391                                                                                                                afoxolaner
5392                                                                                              ivermectin, pyrantel pamoate
5403                                                                                                          milbemycin oxime
5424                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5428                                                                                         betamethasone, gentamicin sulfate
5440                                                                                                                   omega 3
5460                                        chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5464                                                                                                milbemycin oxime, spinosad
5469                                                                                                                moxidectin
5483                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                   omega 3
5485                                                                                                             metronidazole
5490                                                                                                               oclacitinib
5491                                                                                                  fipronil, (s)-methoprene
5492                                                                                                                ivermectin
5497                                                                                              ivermectin, pyrantel pamoate
5498                                                                                              ivermectin, pyrantel pamoate
5499                                                                                                  fipronil, (s)-methoprene
5500                                                                                              ivermectin, pyrantel pamoate
5501                                                                                                   chlorhexidine gluconate
5502                                                                                                     rattlesnake antivenin
5507                                                                                              ivermectin, pyrantel pamoate
5508                                                                                              ivermectin, pyrantel pamoate
5509                                                                                              ivermectin, pyrantel pamoate
5511                                                                                              ivermectin, pyrantel pamoate
5513                                                                                              ivermectin, pyrantel pamoate
5527                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                    cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                   triamcinolone acetonide
5533                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                              ivermectin, pyrantel pamoate
5535                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5537                                                                                                   triamcinolone acetonide
5541                                                                                              ivermectin, pyrantel pamoate
5542                                                                                    cyphenothrin, fipronil, (s)-methoprene
5545                                                                                              ivermectin, pyrantel pamoate
5546                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5552                                                                                              ivermectin, pyrantel pamoate
5553                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5557                                                                                              ivermectin, pyrantel pamoate
5568                                                                                               lufenuron, milbemycin oxime
5571                                                                                               lufenuron, milbemycin oxime
5576                                                                                               lufenuron, milbemycin oxime
5577                                                                                                              deltamethrin
5578                                                                                               lufenuron, milbemycin oxime
5595                                                                                               lufenuron, milbemycin oxime
5600                                                                                               lufenuron, milbemycin oxime
5602                                                                                               lufenuron, milbemycin oxime
5607                                                                                               lufenuron, milbemycin oxime
5626                                                                                              ivermectin, pyrantel pamoate
5627                                                                                              ivermectin, pyrantel pamoate
5628                                                                                                                afoxolaner
5629                                                                                              ivermectin, pyrantel pamoate
5630                                                                                                                afoxolaner
5631                                                                                                                ivermectin
5632                                                                                                                afoxolaner
5641                                                                                                                moxidectin
5649                                                                                                                 probiotic
5668                                                                                                                ivermectin
5681                                                                                                                afoxolaner
5682                                                                                                          milbemycin oxime
5695                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5721                                                                                                milbemycin oxime, spinosad
5722                                                                                                milbemycin oxime, spinosad
5723                                                                                                milbemycin oxime, spinosad
5724                                                                                                milbemycin oxime, spinosad
5725                                                                                                milbemycin oxime, spinosad
5728                                                                                                milbemycin oxime, spinosad
5729                                                                            mometasone furoate, orbifloxacin, posaconazole
5731                                                                              florfenicol, mometasone furoate, terbinafine
5737                                                                                                             metronidazole
5747                                                                                              ivermectin, pyrantel pamoate
5760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5762                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5768                                                                                                                ivermectin
5771                                                                                                          milbemycin oxime
5774                                                                                                                cephalexin
5777                                                                                                          melanoma vaccine
5804                                                                                                          milbemycin oxime
5814                                                                                                          tylosin tartrate
5834                                                                                              ivermectin, pyrantel pamoate
5839                                                                                               lufenuron, milbemycin oxime
5840                                                                                               lufenuron, milbemycin oxime
5858                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
5869                                                                                              ivermectin, pyrantel pamoate
5877                                                                                  febantel, praziquantel, pyrantel pamoate
5884                                                                                     chlorhexidine gluconate, ketoconazole
5887                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5913                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5917                                                                            dexamethasone, neomycin sulfate, thiabendazole
5930                                                                                              ivermectin, pyrantel pamoate
5932                                                                                                              cyclosporine
5933                                                                                                                fluralaner
5934                                                                                              ivermectin, pyrantel pamoate
5935                                                                                                      prednisolone acetate
5936                                                                                              ivermectin, pyrantel pamoate
5937                                                                                                                fluralaner
5941                                                                                              ivermectin, pyrantel pamoate
5942                                                                                                                fluralaner
5945                                                                               hydroquinone, mometasone furoate, tretinoin
5963                                                                                               lufenuron, milbemycin oxime
5964                                                                                                                afoxolaner
5965                                                                                               lufenuron, milbemycin oxime
5966                                                                                               lufenuron, milbemycin oxime
5967                                                                                               lufenuron, milbemycin oxime
5968                                                                                               lufenuron, milbemycin oxime
5976                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5977                                                                                                                 carprofen
5978                                                                                                                  tramadol
5979                                                                                                                cephalexin
5980                                                                                                                  spinosad
5981                                                                                    joint supplement (glucosamine hcl/msm)
5988                                                                                                                  spinosad
5991                                                                                                  fipronil, (s)-methoprene
5992                                                                                              ivermectin, pyrantel pamoate
5993                                                                                              ivermectin, pyrantel pamoate
5994                                                                                    fipronil, pyriproxyfen, (s)-methoprene
6000                                                                                               lufenuron, milbemycin oxime
6002                                                                                                imidacloprid, pyriproxyfen
6003                                                                                               lufenuron, milbemycin oxime
6004                                                                                                imidacloprid, pyriproxyfen
6005                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6014                                                                                               lufenuron, milbemycin oxime
6015                                                                                                                afoxolaner
6016                                                                                                                afoxolaner
6017                                                                                               lufenuron, milbemycin oxime
6021                                                                                              ivermectin, pyrantel pamoate
6022                                                                                              ivermectin, pyrantel pamoate
6036                                                                                                milbemycin oxime, spinosad
6038                                                                                               lufenuron, milbemycin oxime
6039                                                                                              ivermectin, pyrantel pamoate
6059                                                                                              ivermectin, pyrantel pamoate
6063                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6068                                                                                              ivermectin, pyrantel pamoate
6069                                                                                     dinotefuran, permethrin, pyriproxyfen
6070                                                                                                           diphenhydramine
6071                                                                                                                ivermectin
6072                                                                                                  flumethrin, imidacloprid
6074                                                                                         betamethasone, gentamicin sulfate
6076                                                                                                  flumethrin, imidacloprid
6078                                                                                                  flumethrin, imidacloprid
6088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6090                                                                           betamethasone, clotrimazole, gentamicin sulfate
6092                                                                                                           apomorphine hcl
6093                                                                                 lufenuron, milbemycin oxime, praziquantel
6094                                                                                                                    barium
6095                                                                                         betamethasone, gentamicin sulfate
6096                                                                                                                prednisone
6097                                                                           betamethasone, clotrimazole, gentamicin sulfate
6098                                                                                                           apomorphine hcl
6099                                                                                                        maropitant citrate
6101                                                                                               lufenuron, milbemycin oxime
6102                                                                           betamethasone, clotrimazole, gentamicin sulfate
6104                                                                                               lufenuron, milbemycin oxime
6109                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6129                                                                                              ivermectin, pyrantel pamoate
6130                                                                                                                afoxolaner
6132                                                                                              ivermectin, pyrantel pamoate
6133                                                                                                                afoxolaner
6134                                                                                                          milbemycin oxime
6135                                                                                                                 sarolaner
6136                                                                                                          milbemycin oxime
6137                                                                                                                 sarolaner
6139                                                                                                          milbemycin oxime
6140                                                                                                                 sarolaner
6148                                                                                                milbemycin oxime, spinosad
6149                                                                                                milbemycin oxime, spinosad
6150                                                                                                milbemycin oxime, spinosad
6152                                                                                               lufenuron, milbemycin oxime
6161                                                                                               lufenuron, milbemycin oxime
6164                                                                                                        miconazole nitrate
6200                                                                                                                 sarolaner
6202                                                                                                                afoxolaner
6206                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6208                                                                           betamethasone, clotrimazole, gentamicin sulfate
6215                                                                                                                 pramoxine
6217                                                                              florfenicol, mometasone furoate, terbinafine
6218                                                                                                             laser therapy
6221                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
6224                                                                                                          milbemycin oxime
6225                                                                                                                 sarolaner
6226                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6231                                                                                            milbemycin oxime, praziquantel
6232                                                                                                                 sarolaner
6244                                                                              florfenicol, mometasone furoate, terbinafine
6254                                                                                                                ivermectin
6255                                                                                                      cefpodoxime proxetil
6257                                                                                                                selamectin
6258                                                                                              ivermectin, pyrantel pamoate
6262                                                                                                                ivermectin
6263                                                                                                                afoxolaner
6266                                                                                   betamethasone, florfenicol, terbinafine
6267                                                                                            ketoconazole, phytosphingosine
6275                                                                                                       silver sulfadiazine
6282                                                                                              ivermectin, pyrantel pamoate
6283                                                                                                    indoxacarb, permethrin
6284                                                                                                                   omega 3
6293                                                                                                                afoxolaner
6296                                                                                                          tylosin tartrate
6302                                                                                                                ivermectin
6307                                                                                        amoxicillin, clavulanate potassium
6312                                                                           dexamethasone, enrofloxacin, miconazole nitrate
6319                                                                                     chlorhexidine gluconate, ketoconazole
6320                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6325                                                                                               lufenuron, milbemycin oxime
6326                                                                                     dinotefuran, permethrin, pyriproxyfen
6328                                                                                    joint supplement (glucosamine hcl/msm)
6329                                                                                               lufenuron, milbemycin oxime
6331                                                                                               lufenuron, milbemycin oxime
6341                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6342                                                                                                  fipronil, (s)-methoprene
6343                                                                                                                ivermectin
6358                                                                                                   chlorhexidine gluconate
6388                                                                                                                diclofenac
6390                                                                                                               doxycycline
6395                                                                                        fipronil, permethrin, pyriproxyfen
6399                                                                                                        miconazole nitrate
6405                                                                                                  fipronil, (s)-methoprene
6406                                                                                                  flumethrin, imidacloprid
6411                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
6437                                                                                              ivermectin, pyrantel pamoate
6441                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6443                                                                                                imidacloprid, pyriproxyfen
6444                                                                                              ivermectin, pyrantel pamoate
6451                                                                            mometasone furoate, orbifloxacin, posaconazole
6459                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6461                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6474                                                                                              ivermectin, pyrantel pamoate
6475                                                                                                                fluralaner
6486                                                                                            milbemycin oxime, praziquantel
6495                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6497                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6498                                                                                                           apomorphine hcl
6499                                                                                              ivermectin, pyrantel pamoate
6500                                                                                                                 sarolaner
6522                                                                                               lufenuron, milbemycin oxime
6523                                                                                                                afoxolaner
6527                                                                                               lufenuron, milbemycin oxime
6528                                                                                                                afoxolaner
6555                                                                                               lufenuron, milbemycin oxime
6562                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6565                                                                                              ivermectin, pyrantel pamoate
6569                                                                                                                ivermectin
6570                                                                                                  fipronil, (s)-methoprene
6571                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6573                                                                                                  fipronil, (s)-methoprene
6579                                                                                                                fluralaner
6581                                                                                              ivermectin, pyrantel pamoate
6594                                                                                               lufenuron, milbemycin oxime
6602                                                                                               lufenuron, milbemycin oxime
6606                                                                                              ivermectin, pyrantel pamoate
6612                                                                                                          milbemycin oxime
6625                                                                                                          milbemycin oxime
6636                                                                                               lufenuron, milbemycin oxime
6644                                                                                               lufenuron, milbemycin oxime
6647                                                                                               lufenuron, milbemycin oxime
6648                                                                                                                 sarolaner
6649                                                                                                                ivermectin
6650                                                                                         betamethasone, gentamicin sulfate
6657                                                                                              ivermectin, pyrantel pamoate
6658                                                                                              ivermectin, pyrantel pamoate
6662                                                                                              ivermectin, pyrantel pamoate
6663                                                                                              ivermectin, pyrantel pamoate
6680                                                                                                  imidacloprid, moxidectin
6683                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6687                                                                                                                ivermectin
6688                                                                                                  fipronil, (s)-methoprene
6693                                                                                                                ivermectin
6694                                                                                         trimeprazine tartrate, prednisone
6696                                                                                                                ivermectin
6697                                                                                                  fipronil, (s)-methoprene
6698                                                                                              ivermectin, pyrantel pamoate
6702                                                                                                                ivermectin
6703                                                                                                  fipronil, (s)-methoprene
6714                                                                                                                  diazepam
6715                                                                                               lufenuron, milbemycin oxime
6716                                                                                                        calming supplement
6717                                                                                                               shen calmer
6733                                                                                              ivermectin, pyrantel pamoate
6739                                                                                                                 carprofen
6751                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6759                                                                           betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                              ivermectin, pyrantel pamoate
6763                                                                                              ivermectin, pyrantel pamoate
6764                                                                                                  fipronil, (s)-methoprene
6778                                                                                               lufenuron, milbemycin oxime
6779                                                                                               lufenuron, milbemycin oxime
6781                                                                                               lufenuron, milbemycin oxime
6783                                                                                            milbemycin oxime, praziquantel
6786                                                                                                imidacloprid, pyriproxyfen
6789                                                                                              ivermectin, pyrantel pamoate
6796                                                                                               lufenuron, milbemycin oxime
6797                                                                                                          milbemycin oxime
6815                                                                                                                ivermectin
6816                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6824                                                                                            polysulfated glycosaminoglycan
6826                                                                                                                grapiprant
6828                                                                                               lufenuron, milbemycin oxime
6839                                                                                                                 carprofen
6864                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6868                                                                                                                isoflurane
6880                                                                                                                isoflurane
6886                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6891                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6906                                                                                ivermectin, praziquantel, pyrantel pamoate
6908                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
6909                                                                                                                ivermectin
6910                                                                                ivermectin, praziquantel, pyrantel pamoate
6928                                                                                     chlorhexidine gluconate, ketoconazole
6934                                                                          chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                      burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                           ear cleaner (epi-otic advanced)
6946                                                                                                milbemycin oxime, spinosad
6956                                                                                                                 mupirocin
6957                                                                                                                lokivetmab
6981                                                                                                                fluralaner
6982                                                                                                                ivermectin
6983                                                                                                                ivermectin
6984                                                                                                                 probiotic
6986                                                                                                               clindamycin
6999                                                                              florfenicol, mometasone furoate, terbinafine
7002                                                                                                milbemycin oxime, spinosad
7005                                                                                                              ketoconazole
7006                                                                                                unspecified shampoo/mousse
7013                                                                                                                famotidine
7017                                                                                                                 sarolaner
7018                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
7019                                                                                                             metronidazole
7021                                                                                                                 sarolaner
7023                                                                                                                moxidectin
7025                                                                            mometasone furoate, orbifloxacin, posaconazole
7027                                                                              dexamethasone, neomycin sulfate, polymyxin b
7030                                                                                                          milbemycin oxime
7042                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7047                                                                                              ivermectin, pyrantel pamoate
7053                                                                                              ivermectin, pyrantel pamoate
7054                                                                                              ivermectin, pyrantel pamoate
7067                                                                                               lufenuron, milbemycin oxime
7071                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7092                                                                                         betamethasone, gentamicin sulfate
7093                                                                                                milbemycin oxime, spinosad
7095                                                                                                milbemycin oxime, spinosad
7096                                                                                                milbemycin oxime, spinosad
7116                                                                           dexamethasone, enrofloxacin, miconazole nitrate
7127                                                                                        chlorhexidine gluconate, tris-edta
7130                                                                                                milbemycin oxime, spinosad
7131                                                                                              ivermectin, pyrantel pamoate
7137                                                 digestive supplement, immune support supplement, skin and coat supplement
7149                                                                                                milbemycin oxime, spinosad
7151                                                                              dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                 probiotic
7153                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                       ear cleaner (zymox), hydrocortisone
7155                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7172                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                   acetic acid, boric acid
7175                                                                                                                 mupirocin
7177                                                                                         betamethasone, gentamicin sulfate
7180                                                                                         betamethasone, gentamicin sulfate
7189                                                                                         betamethasone, gentamicin sulfate
7208                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7218                                                                                                milbemycin oxime, spinosad
7240                                                                                                                diclofenac
7243                                                                                              ivermectin, pyrantel pamoate
7247                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                afoxolaner
7249                                                                                              ivermectin, pyrantel pamoate
7260                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                              ivermectin, pyrantel pamoate
7262                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7285                                                                                                                gabapentin
7286                                                                                                                 carprofen
7291                                                                                                                 sarolaner
7294                                                                                                               oclacitinib
7295                                                                                                                 sarolaner
7297                                                                                                  joint supplement (other)
7320                                                                                              ivermectin, pyrantel pamoate
7342                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7344                                                                                                                ivermectin
7345                                                                                                                ivermectin
7346                                                                                                  fipronil, (s)-methoprene
7371                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7413                                                                                              ivermectin, pyrantel pamoate
7499                                                                                              ivermectin, pyrantel pamoate
7503                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7510                                                                                                                ivermectin
7511                                                                                                                afoxolaner
7512                                                                                                              multivitamin
7513                                                                                                               omega 3-6-9
7519                                                                                              ivermectin, pyrantel pamoate
7521                                                                                              ivermectin, pyrantel pamoate
7522                                                                                                                afoxolaner
7523                                                                                                                 vitamin b
7524                                                                                                               omega 3-6-9
7525                                                                                              ivermectin, pyrantel pamoate
7526                                                                                                                afoxolaner
7551                                                                                                                afoxolaner
7555                                                                                                                fluralaner
7563                                                                                              ivermectin, pyrantel pamoate
7564                                                                                                          phytosphingosine
7565                                                                                              ivermectin, pyrantel pamoate
7566                                                                                              ivermectin, pyrantel pamoate
7576                                                                                                  fipronil, (s)-methoprene
7577                                                                                               lufenuron, milbemycin oxime
7578                                                                                               lufenuron, milbemycin oxime
7579                                                                                                                cephalexin
7580                                                                                                                 carprofen
7583                                                                                               lufenuron, milbemycin oxime
7584                                                                                               lufenuron, milbemycin oxime
7585                                                                                                                 probiotic
7586                                                                                                           cbd or hemp oil
7587                                                                                                 immune support supplement
7588                                                                                                                   omega 3
7589                                                                                toothpaste/dental health solution or chews
7590                                                                                                                     algae
7598                                                                                        chlorhexidine gluconate, ophytrium
7635                                                                                dextromethorphan hydrobromide, guaifenesin
7636                                                                                                               doxycycline
7637                                                                                                               hydroxyzine
7660                                                                                               lufenuron, milbemycin oxime
7671                                                                                   transcranial magnetic stimulation (tms)
7673                                                                                                          pyrantel pamoate
7674                                                                                                          sulfadimethoxine
7675                                                                                                milbemycin oxime, spinosad
7678                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                   ketoconazole, tris-edta
7681                                                                                                milbemycin oxime, spinosad
7692                                                                                            milbemycin oxime, praziquantel
7696                                                                                            milbemycin oxime, praziquantel
7699                                                                                            milbemycin oxime, praziquantel
7701                                                                                            milbemycin oxime, praziquantel
7705                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7732                                                                                ivermectin, praziquantel, pyrantel pamoate
7742                                                                                              ivermectin, pyrantel pamoate
7743                                                                                                  fipronil, (s)-methoprene
7746                                                                                              ivermectin, pyrantel pamoate
7747                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                   omega 3
7749                                                                                              ivermectin, pyrantel pamoate
7750                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                       ear cleaner (zymox), hydrocortisone
7754                                                                                                                 carvacrol
7759                                                                                     dinotefuran, permethrin, pyriproxyfen
7763                                                                                              ivermectin, pyrantel pamoate
7772                                                                                                                 probiotic
7776                                                                                                                 vitamin d
7783                                                                                                                  fipronil
7784                                                                                               lufenuron, milbemycin oxime
7787                                                                                     dinotefuran, permethrin, pyriproxyfen
7795                                                                                                                   omega 3
7812                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7818                                                                                         trimeprazine tartrate, prednisone
7820                                                                                         betamethasone, gentamicin sulfate
7822                                                                                         betamethasone, gentamicin sulfate
7832                                                                                                  fipronil, (s)-methoprene
7837                                                                                                                 carprofen
7839                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7845                                                                                                       ear cleaner (zymox)
7846                                                                            mometasone furoate, orbifloxacin, posaconazole
7848                                                                                                    unspecified medication
7852                                                                                                               hydrocodone
7853                                                                                                         albuterol sulfate
7854                                                                                                        maropitant citrate
7862                                                                                                                    arnica
7883                                                                                                          milbemycin oxime
7884                                                                                                                afoxolaner
7885                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7887                                                                              florfenicol, mometasone furoate, terbinafine
7889                                                                              florfenicol, mometasone furoate, terbinafine
7895                                                                                dimethyl sulfoxide, fluocinolone acetonide
7926                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7929                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7934                                                                                                                 carprofen
7935                                                                                                                 carprofen
7941                                                                                                 bordetella bronchiseptica
7944                                                                                                   acetic acid, boric acid
7946                                                                                                          phytosphingosine
7961                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7966                                                                                              ivermectin, pyrantel pamoate
7967                                                                                                                afoxolaner
7968                                                                                              ivermectin, pyrantel pamoate
7969                                                                                                                afoxolaner
7970                                                                                        amoxicillin, clavulanate potassium
7973                                                                                              ofloxacin, unspecified nsaid
7987                                                                                                milbemycin oxime, spinosad
7988                                                                                              ivermectin, pyrantel pamoate
7993                                                                                                                selamectin
7995                                                                                            polysulfated glycosaminoglycan
7998                                                                                                                selamectin
8000                                                                                                                selamectin
8009                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8012                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8014                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8017                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8029                                                                                              ivermectin, pyrantel pamoate
8030                                                                                              ivermectin, pyrantel pamoate
8040                                                                                              ivermectin, pyrantel pamoate
8042                                                                                               lufenuron, milbemycin oxime
8043                                                                                            milbemycin oxime, praziquantel
8044                                                                                            milbemycin oxime, praziquantel
8045                                                                                                          milbemycin oxime
8075                                                                                                        calming supplement
8086                                                                           betamethasone, clotrimazole, gentamicin sulfate
8091                                                                                        amoxicillin, clavulanate potassium
8098                                                                                                  fipronil, (s)-methoprene
8099                                                                                            milbemycin oxime, praziquantel
8100                                                                                                               oclacitinib
8120                                                                                                                ivermectin
8121                                                                                                                ivermectin
8122                                                                                    joint supplement (glucosamine hcl/msm)
8123                                                                                                                ivermectin
8125                                                                                            joint supplement (unspecified)
8128                                                                                                   ketoconazole, tris-edta
8130                                                                                              ivermectin, pyrantel pamoate
8131                                                                                                                afoxolaner
8136                                                                                            milbemycin oxime, praziquantel
8137                                                                                                                 lotilaner
8138                                                                                                          milbemycin oxime
8139                                                                                                                 lotilaner
8140                                                                                                   ketoconazole, tris-edta
8160                                                                                                                 probiotic
8182                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8184                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                              ivermectin, pyrantel pamoate
8186                                                                                              ivermectin, pyrantel pamoate
8187                                                                                              ivermectin, pyrantel pamoate
8188                                                                                                                afoxolaner
8195                                                                                              ivermectin, pyrantel pamoate
8196                                                                                                                afoxolaner
8205                                                                                                                  fipronil
8206                                                                                 lufenuron, milbemycin oxime, praziquantel
8207                                                                                 lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                  fipronil
8209                                                                                               lufenuron, milbemycin oxime
8210                                                                                               lufenuron, milbemycin oxime
8211                                                                                                      fipronil, permethrin
8212                                                                                               lufenuron, milbemycin oxime
8214                                                                                               lufenuron, milbemycin oxime
8215                                                                                                      fipronil, permethrin
8221                                                                                                                ivermectin
8222                                                                                                                ivermectin
8223                                                                                                                ivermectin
8224                                                                                              ivermectin, pyrantel pamoate
8234                                                                            dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                   chlorhexidine gluconate
8236                                                                                         betamethasone, gentamicin sulfate
8238                                                                                                   chlorhexidine gluconate
8241                                                                                               lufenuron, milbemycin oxime
8248                                                                                                                fluralaner
8251                                                                                                             metronidazole
8252                                                                                         betamethasone, gentamicin sulfate
8280                                                                                                                isoflurane
8284                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8293                                                                                         betamethasone, gentamicin sulfate
8296                                                                                              ivermectin, pyrantel pamoate
8297                                                                                                  fipronil, (s)-methoprene
8298                                                                                       ear cleaner (zymox), hydrocortisone
8299                                                                                         allergy immunotherapy - injection
8300                                                                                                                diclofenac
8303                                                                                                               oclacitinib
8304                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8305                                                   acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
8311                                                                                                              flurbiprofen
8312                                                                                          burow's solution, hydrocortisone
8313                                                                                                              flurbiprofen
8314                                                                                              ivermectin, pyrantel pamoate
8315                                                                                                imidacloprid, pyriproxyfen
8337                                                                                                             cephalosporin
8338                                                                                                                prednisone
8341                                                                              dexamethasone, neomycin sulfate, polymyxin b
8349                                                                                     dinotefuran, permethrin, pyriproxyfen
8354                                                                                               lufenuron, milbemycin oxime
8355                                                                                        fipronil, permethrin, pyriproxyfen
8358                                                                                               lufenuron, milbemycin oxime
8359                                                                                                                fluralaner
8362                                                                                               chloroxylenol, ketoconazole
8369                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                               lufenuron, milbemycin oxime
8371                                                                                                                 sarolaner
8376                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                               lufenuron, milbemycin oxime
8378                                                                                                                 sarolaner
8389                                                                                              ivermectin, pyrantel pamoate
8405                                                                                                 unspecified otic ear pack
8408                                                                                              ivermectin, pyrantel pamoate
8410                                                                                                                ivermectin
8418                                                                                                                isoflurane
8420                                                                                                                ivermectin
8421                                                                                                                ivermectin
8424                                                                                                imidacloprid, pyriproxyfen
8425                                                                                              ivermectin, pyrantel pamoate
8427                                                                                              ivermectin, pyrantel pamoate
8435                                                                                                                 probiotic
8436                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8440                                                                                                  fipronil, (s)-methoprene
8441                                                                                              ivermectin, pyrantel pamoate
8451                                                                                ivermectin, praziquantel, pyrantel pamoate
8452                                                                                        amoxicillin, clavulanate potassium
8454                                                                                                          milbemycin oxime
8466                                                                                               lufenuron, milbemycin oxime
8467                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8475                                                                                                   chlorhexidine gluconate
8478                                                                                                   chlorhexidine gluconate
8509                                                                                                                 probiotic
8510                                                                                                             metronidazole
8514                                                                                               lufenuron, milbemycin oxime
8515                                                                                               lufenuron, milbemycin oxime
8528                                                                                            milbemycin oxime, praziquantel
8531                                                                                            milbemycin oxime, praziquantel
8532                                                                                                       phenylpropanolamine
8533                                                                                                             levothyroxine
8534                                                                                        amoxicillin, clavulanate potassium
8541                                                                                                        miconazole nitrate
8546                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8547                                                                                                                cephalexin
8550                                                                                ivermectin, praziquantel, pyrantel pamoate
8554                                                                                                          milbemycin oxime
8555                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8578                                                                                                   acetic acid, boric acid
8581                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                               lufenuron, milbemycin oxime
8583                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                       ear cleaner (zymox), hydrocortisone
8585                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
8588                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8591                                                                                                milbemycin oxime, spinosad
8607                                                                                                imidacloprid, pyriproxyfen
8609                                                                                               lufenuron, milbemycin oxime
8613                                                                                         betamethasone, gentamicin sulfate
8673                                                                                                milbemycin oxime, spinosad
8674                                                                                                milbemycin oxime, spinosad
8675                                                                                                milbemycin oxime, spinosad
8676                                                                                                milbemycin oxime, spinosad
8677                                                                                                milbemycin oxime, spinosad
8694                                                                                                  fipronil, (s)-methoprene
8697                                                                                       allergy immunotherapy - unspecified
8702                                                                                                  fipronil, (s)-methoprene
8707                                                                                                  fipronil, (s)-methoprene
8721                                                                                                                 trazodone
8731                                                                                                  flumethrin, imidacloprid
8735                                                                                                                 mupirocin
8736                                                                                     chlorhexidine gluconate, ketoconazole
8744                                                                                                                 mupirocin
8745                                                                                     chlorhexidine gluconate, ketoconazole
8756                                                                                                          milbemycin oxime
8757                                                                                                          milbemycin oxime
8759                                                                                                imidacloprid, pyriproxyfen
8760                                                                                               lufenuron, milbemycin oxime
8768                                                                                              ivermectin, pyrantel pamoate
8769                                                                                     dinotefuran, permethrin, pyriproxyfen
8770                                                                                              ivermectin, pyrantel pamoate
8771                                                                                     dinotefuran, permethrin, pyriproxyfen
8777                                                                                              ivermectin, pyrantel pamoate
8778                                                                                              ivermectin, pyrantel pamoate
8779                                                                                     dinotefuran, permethrin, pyriproxyfen
8780                                                                                              ivermectin, pyrantel pamoate
8781                                                                                     dinotefuran, permethrin, pyriproxyfen
8786                                                                                              ivermectin, pyrantel pamoate
8790                                                                                              ivermectin, pyrantel pamoate
8791                                                                                                                fluralaner
8792                                                                                                   ketoconazole, tris-edta
8793                                                                                                                fluralaner
8794                                                                                              ivermectin, pyrantel pamoate
8795                                                                                              ivermectin, pyrantel pamoate
8797                                                                                                                gabapentin
8805                                                                                                                ivermectin
8815                                                                              dexamethasone, neomycin sulfate, polymyxin b
8819                                                                                              ivermectin, pyrantel pamoate
8820                                                                                                                afoxolaner
8825                                                                                        amoxicillin, clavulanate potassium
8826                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
8828                                                                                              ivermectin, pyrantel pamoate
8831                                                                                              ivermectin, pyrantel pamoate
8833                                                                                              ivermectin, pyrantel pamoate
8834                                                                                                                cephalexin
8837                                                                                                                afoxolaner
8843                                                                                                  fipronil, (s)-methoprene
8851                                                                                                                 probiotic
8852                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
8855                                                                                                                ivermectin
8860                                                                           betamethasone, clotrimazole, gentamicin sulfate
8875                                                                                                                lokivetmab
8876                                                                                         betamethasone, gentamicin sulfate
8877                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8879                                                                                              ivermectin, pyrantel pamoate
8885                                                                                              ivermectin, pyrantel pamoate
8908                                                                                                milbemycin oxime, spinosad
8911                                                                                               lufenuron, milbemycin oxime
8929                                                                                ivermectin, praziquantel, pyrantel pamoate
8930                                                                                ivermectin, praziquantel, pyrantel pamoate
8961                                                                                ivermectin, praziquantel, pyrantel pamoate
8962                                                                                ivermectin, praziquantel, pyrantel pamoate
8994                                                                                                               oclacitinib
8995                                                                                                        miconazole nitrate
8997                                                                           dexamethasone, enrofloxacin, miconazole nitrate
8998                                                                           dexamethasone, enrofloxacin, miconazole nitrate
9026                                                                                            milbemycin oxime, praziquantel
9046                                                                                               lufenuron, milbemycin oxime
9047                                                                           betamethasone, clotrimazole, gentamicin sulfate
9049                                                                              dexamethasone, neomycin sulfate, polymyxin b
9050                                                                                               lufenuron, milbemycin oxime
9052                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                 probiotic
9054                                                                                                          milbemycin oxime
9055                                                                                              ivermectin, pyrantel pamoate
9056                                                                                            milbemycin oxime, praziquantel
9060                                                                                              ivermectin, pyrantel pamoate
9064                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                sucralfate
9070                                                                                              ivermectin, pyrantel pamoate
9071                                                                                                                fluralaner
9084                                                                                                    unspecified medication
9094                                                                                                milbemycin oxime, spinosad
9095                                                                                              ivermectin, pyrantel pamoate
9098                                                                                              ivermectin, pyrantel pamoate
9099                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                 probiotic
9101                                                                                                                   omega 3
9109                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9118                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9132                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9135                                                                                                             metronidazole
9136                                                                                          burow's solution, hydrocortisone
9137                                                                                                      cefpodoxime proxetil
9156                                                                           betamethasone, clotrimazole, gentamicin sulfate
9160                                                                                                  fipronil, (s)-methoprene
9161                                                                                              ivermectin, pyrantel pamoate
9170                                                                                                          milbemycin oxime
9187                                                                                         betamethasone, gentamicin sulfate
9189                                                                                              ivermectin, pyrantel pamoate
9193                                                                                                                 probiotic
9202                                                                                              ivermectin, pyrantel pamoate
9229                                                                                                           diphenhydramine
9230                                                                                           ear cleaner (epi-otic advanced)
9233                                                                                                                cephalexin
9236                                                                                              ivermectin, pyrantel pamoate
9239                                                                                       allergy immunotherapy - unspecified
9240                                                                                            unspecified allergy medication
9241                                                                                             allergy immunotherapy - drops
9242                                                                                              ivermectin, pyrantel pamoate
9243                                                                                                             levothyroxine
9244                                                                                       allergy immunotherapy - unspecified
9245                                                                                                             levothyroxine
9252                                                                                                                ivermectin
9253                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                              ivermectin, pyrantel pamoate
9259                                                                                                                afoxolaner
9267                                                                                                          milbemycin oxime
9269                                                                                              ivermectin, pyrantel pamoate
9270                                                                                                                fluralaner
9271                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9292                                                                                                milbemycin oxime, spinosad
9294                                                                                                milbemycin oxime, spinosad
9295                                                                                                milbemycin oxime, spinosad
9297                                                                                                                   omega 3
9312                                                                                                                ivermectin
9337                                                                                              ivermectin, pyrantel pamoate
9338                                                                                                      cefpodoxime proxetil
9339                                                                                                                grapiprant
9348                                                                                                              enrofloxacin
9384                                                                                       ear cleaner (zymox), hydrocortisone
9385                                                                                                       ear cleaner (zymox)
9386                                                                                              ivermectin, pyrantel pamoate
9387                                                                                     dinotefuran, permethrin, pyriproxyfen
9390                                                                                              ivermectin, pyrantel pamoate
9416                                                                                                   acetic acid, boric acid
9418                                                                                                          phytosphingosine
9421                                                                                                  flumethrin, imidacloprid
9422                                                                                              ivermectin, pyrantel pamoate
9426                                                                                              ivermectin, pyrantel pamoate
9429                                                       bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9432                                                                                                  flumethrin, imidacloprid
9433                                                                                              ivermectin, pyrantel pamoate
9434                                                                                              ivermectin, pyrantel pamoate
9435                                                                                         allergy immunotherapy - injection
9436                                                                                              ivermectin, pyrantel pamoate
9438                                                                                         allergy immunotherapy - injection
9447                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9452                                                                                              ivermectin, pyrantel pamoate
9453                                                                                                  fipronil, (s)-methoprene
9454                                                                              dexamethasone, neomycin sulfate, polymyxin b
9485                                                                                                             metronidazole
9494                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9511                                                                                        amoxicillin, clavulanate potassium
9516                                                                              dexamethasone, neomycin sulfate, polymyxin b
9524                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9544                                                                                                                afoxolaner
9546                                                                                                                afoxolaner
9548                                                                                                                 sarolaner
9549                                                                                                                afoxolaner
9584                                                                                                          milbemycin oxime
9588                                                                                                                 tris-edta
9592                                                                              dexamethasone, neomycin sulfate, polymyxin b
9596                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9600                                                                                               lufenuron, milbemycin oxime
9601                                                                                                                ivermectin
9602                                                                                                                 carprofen
9603                                                                                                                  tramadol
9604                                                                                               acepromazine, hydromorphone
9609                                                                                               lufenuron, milbemycin oxime
9610                                                                                                                fluralaner
9612                                                                           betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                         betamethasone, gentamicin sulfate
9614                                                                                     chlorhexidine gluconate, ketoconazole
9615                                                                                               lufenuron, milbemycin oxime
9616                                                                                                                fluralaner
9617                                                                                               lufenuron, milbemycin oxime
9618                                                                                                                fluralaner
9619                                                                                               lufenuron, milbemycin oxime
9620                                                                                                                fluralaner
9621                                                                                               lufenuron, milbemycin oxime
9635                                                                                                milbemycin oxime, spinosad
9640                                                                                                milbemycin oxime, spinosad
9641                                                                                                milbemycin oxime, spinosad
9643                                                                                                milbemycin oxime, spinosad
9718                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9723                                                                                              ivermectin, pyrantel pamoate
9759                                                                                              ivermectin, pyrantel pamoate
9760                                                                                                imidacloprid, pyriproxyfen
9761                                                                                              ivermectin, pyrantel pamoate
9763                                                                                                                ivermectin
9764                                                                                                                cetirizine
9765                                                                                                                afoxolaner
9766                                                                                                                ivermectin
9770                                                                                ivermectin, praziquantel, pyrantel pamoate
9785                                                                                              ivermectin, pyrantel pamoate
9791                                                                                                          milbemycin oxime
9800                                                                                                          milbemycin oxime
9807                                                                              dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                               latanoprost
9809                                                                                                               dorzolamide
9815                                                                                                        maropitant citrate
9821                                                                                                                 probiotic
9823                                                                                                                 tris-edta
9824                                                                                                        miconazole nitrate
9825                                                                                                                 tris-edta
9826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9827                                                                                                        miconazole nitrate
9828                                                                                                               hydrocodone
9829                                                                                                               amoxicillin
9833                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9837                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9840                                                                                    dexamethasone, ketoconazole, tris-edta
9843                                                                                                                    arnica
9860                                                                                                                 carprofen
9862                                                                                                                 carprofen
9863                                                                                                        miconazole nitrate
9865                                                                                         betamethasone, gentamicin sulfate
9873                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9877                                                                                                                 carprofen
9884                                                                                                              cyclosporine
9889                                                                                                                ivermectin
9890                                                                                        fipronil, permethrin, pyriproxyfen
9891                                                                                                              cyclosporine
9892                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                afoxolaner
9894                                                                                                          milbemycin oxime
9895                                                                                                                afoxolaner
9896                                                                                                              cyclosporine
9897                                                                                                          milbemycin oxime
9898                                                                                                                afoxolaner
9899                                                                                            milbemycin oxime, praziquantel
9900                                                                                                                   omega 3
9901                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                afoxolaner
9903                                                                                                              cyclosporine
9907                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9917                                                                                                                ivermectin
9919                                                                                                                cephalexin
9920                                                                                                                cetirizine
9923                                                                                                                cephalexin
9924                                                                                                             ciprofloxacin
9928                                                                                                           dexmedetomidine
9931                                                                                                                ivermectin
9935                                                                                                milbemycin oxime, spinosad
9942                                                                                                      rx diet - gi low fat
9943                                                                                                milbemycin oxime, spinosad
9944                                                                                                milbemycin oxime, spinosad
9945                                                                                              ivermectin, pyrantel pamoate
9960                                                                                                                ivermectin
9961                                                                                        fipronil, permethrin, pyriproxyfen
9962                                                                                                                ivermectin
9963                                                                                                  imidacloprid, permethrin
9966                                                                                                imidacloprid, pyriproxyfen
9967                                                                                              ivermectin, pyrantel pamoate
9968                                                                                                imidacloprid, pyriproxyfen
9969                                                                                              ivermectin, pyrantel pamoate
9970                                                                                                   acetic acid, boric acid
9971                                                                                              ivermectin, pyrantel pamoate
9972                                                                                                imidacloprid, pyriproxyfen
10017                                                                                              lufenuron, milbemycin oxime
10026                                                                                              lufenuron, milbemycin oxime
10027                                                                                                 flumethrin, imidacloprid
10037                                                                                              dexamethasone, ketoconazole
10042                                                                             florfenicol, mometasone furoate, terbinafine
10053                                                                                              lufenuron, milbemycin oxime
10056                                                                                             ivermectin, pyrantel pamoate
10057                                                                                             ivermectin, pyrantel pamoate
10061                                                                                          ear cleaner (epi-otic advanced)
10063                                                                                                 flumethrin, imidacloprid
10066                                                                                                 flumethrin, imidacloprid
10074                                                                             dexamethasone, neomycin sulfate, polymyxin b
10075                                                                                                               ivermectin
10092                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                        betamethasone, gentamicin sulfate
10106                                                                                             ivermectin, pyrantel pamoate
10107                                                                                                 fipronil, (s)-methoprene
10108                                                                                             ivermectin, pyrantel pamoate
10109                                                                                                 fipronil, (s)-methoprene
10111                                                                                             ivermectin, pyrantel pamoate
10112                                                                                             ivermectin, pyrantel pamoate
10113                                                                                                 fipronil, (s)-methoprene
10115                                                                                             ivermectin, pyrantel pamoate
10116                                                                                                 fipronil, (s)-methoprene
10119                                                                                             ivermectin, pyrantel pamoate
10120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                probiotic
10123                                                                                                            metronidazole
10130                                                                                                                 propofol
10131                                                                                                            buprenorphine
10132                                                                                                             acepromazine
10133                                                                                                         atropine sulfate
10134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10149                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10152                                                                                                  triamcinolone acetonide
10153                                                                                                     cefpodoxime proxetil
10154                                                                                                                  taurine
10160                                                                                                            dexamethasone
10167                                                                                             ivermectin, pyrantel pamoate
10168                                                                                                               cephalexin
10169                                                                                                                carprofen
10170                                                                                             ivermectin, pyrantel pamoate
10176                                                                          betamethasone, clotrimazole, gentamicin sulfate
10187                                                                          betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                        trimeprazine tartrate, prednisone
10195                                                                                                            metronidazole
10198                                                                                                 imidacloprid, permethrin
10200                                                                                                               fluralaner
10209                                                                                             ivermectin, pyrantel pamoate
10219                                                                                             ivermectin, pyrantel pamoate
10230                                                                                             ivermectin, pyrantel pamoate
10231                                                                                                               afoxolaner
10232                                                                                                               prednisone
10233                                                                                                          diphenhydramine
10234                                                                                                               cetirizine
10235                                                                                             ivermectin, pyrantel pamoate
10245                                                                                             ivermectin, pyrantel pamoate
10249                                                                                                 fipronil, (s)-methoprene
10260                                                                                                 flumethrin, imidacloprid
10264                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10271                                                                                                         milbemycin oxime
10273                                                                                             ivermectin, pyrantel pamoate
10274                                                                                                               afoxolaner
10275                                                                                             ivermectin, pyrantel pamoate
10276                                                                                                               afoxolaner
10292                                                                                                         milbemycin oxime
10301                                                                                              lufenuron, milbemycin oxime
10312                                                                                                               selamectin
10313                                                                                           praziquantel, pyrantel pamoate
10314                                                                                       amoxicillin, clavulanate potassium
10316                                                                                                            ciprofloxacin
10320                                                                                       amoxicillin, clavulanate potassium
10324                                                                                                               selamectin
10334                                                                                               milbemycin oxime, spinosad
10335                                                                                                               fluralaner
10343                                                                                           sulfamethoxazole, trimethoprim
10345                                                                                                       calming supplement
10347                                                                                                 urinary tract supplement
10348                                                                                                            magnolia bark
10349                                                                                        betamethasone, gentamicin sulfate
10356                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10365                                                                                             ivermectin, pyrantel pamoate
10366                                                                                       fipronil, permethrin, pyriproxyfen
10367                                                                                             ivermectin, pyrantel pamoate
10370                                                                                             ivermectin, pyrantel pamoate
10372                                                                                                               ivermectin
10374                                                                                             ivermectin, pyrantel pamoate
10379                                                                                           milbemycin oxime, praziquantel
10400                                                                                                               ivermectin
10403                                                                                                 fipronil, (s)-methoprene
10404                                                                                             ivermectin, pyrantel pamoate
10405                                                                                                 fipronil, (s)-methoprene
10408                                                                                                         milbemycin oxime
10409                                                                                                         milbemycin oxime
10410                                                                                           milbemycin oxime, praziquantel
10412                                                                                                         milbemycin oxime
10429                                                                          betamethasone, clotrimazole, gentamicin sulfate
10432                                                                                                               selamectin
10435                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
10441                                                                                       chlorhexidine gluconate, ophytrium
10445                                                                                        betamethasone, gentamicin sulfate
10470                                                                                                                mupirocin
10477                                                                                               imidacloprid, pyriproxyfen
10478                                                                               ivermectin, praziquantel, pyrantel pamoate
10483                                                                                             ivermectin, pyrantel pamoate
10485                                                                                                               ivermectin
10487                                                                                                               ivermectin
10499                                                                                                         milbemycin oxime
10502                                                                                                              doxycycline
10503                                                                                                         milbemycin oxime
10505                                                                                             ivermectin, pyrantel pamoate
10506                                                                               ivermectin, praziquantel, pyrantel pamoate
10510                                                                                             ivermectin, pyrantel pamoate
10511                                                                                             ivermectin, pyrantel pamoate
10523                                                                                                              oclacitinib
10524                                                                                                     cefpodoxime proxetil
10525                                                                                       staphylococcus aureus phage lysate
10526                                                                                      allergy immunotherapy - unspecified
10529                                                                                                                mupirocin
10555                                                                                                                mupirocin
10557                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10565                                                                                        betamethasone, gentamicin sulfate
10573                                                      betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10575                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                          diphenhydramine
10577                                                                                                               famotidine
10578                                                                                                       maropitant citrate
10579                                                                                                            metronidazole
10580                                                                                                              vinblastine
10583                                                                                               milbemycin oxime, spinosad
10587                                                                                                                carprofen
10588                                                                                                               ivermectin
10589                                                                                             ivermectin, pyrantel pamoate
10590                                                                                             ivermectin, pyrantel pamoate
10591                                                                                             ivermectin, pyrantel pamoate
10610                                                                                             ivermectin, pyrantel pamoate
10617                                                                                       fipronil, permethrin, pyriproxyfen
10618                                                                               ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                     cefpodoxime proxetil
10624                                                                                               imidacloprid, pyriproxyfen
10628                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10642                                                                                                  chlorhexidine gluconate
10650                                                                                                              doxycycline
10652                                                                                                                deracoxib
10653                                                                                               milbemycin oxime, spinosad
10655                                                                                             ivermectin, pyrantel pamoate
10656                                                                                                                trazodone
10658                                                                                                                carprofen
10667                                                                                              lufenuron, milbemycin oxime
10668                                                                                       amoxicillin, clavulanate potassium
10669                                                                                              lufenuron, milbemycin oxime
10671                                                                                               imidacloprid, pyriproxyfen
10678                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10682                                                                                                         pyrantel pamoate
10683                                                                                              lufenuron, milbemycin oxime
10684                                                                                              lufenuron, milbemycin oxime
10685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                  omega 3
10687                                                                                                             multivitamin
10688                                                                                                              coconut oil
10689                                                                                              lufenuron, milbemycin oxime
10693                                                                                                               cetirizine
10694                                                                                              lufenuron, milbemycin oxime
10696                                                                                                      ear cleaner (zymox)
10697 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10701                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10706                                                                                                         pyrantel pamoate
10707                                                                                              lufenuron, milbemycin oxime
10711                                                                                              lufenuron, milbemycin oxime
10712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                  omega 3
10714                                                                                                             multivitamin
10715                                                                                                              coconut oil
10717                                                                                              lufenuron, milbemycin oxime
10718                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10725                                                                                              lufenuron, milbemycin oxime
10726 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                   unspecified medication
10740                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10743                                                                                                  chlorhexidine gluconate
10751                                                                                           ketoconazole, phytosphingosine
10755                                                                                             ivermectin, pyrantel pamoate
10756                                                                                                               ivermectin
10766                                                                                                               ivermectin
10769                                                                                             ivermectin, pyrantel pamoate
10780                                                                                             ivermectin, pyrantel pamoate
10781                                                                                                               afoxolaner
10782                                                                                                              clindamycin
10783                                                                                                                oxycodone
10792                                                                                             ivermectin, pyrantel pamoate
10794                                                                                             ivermectin, pyrantel pamoate
10796                                                                                             ivermectin, pyrantel pamoate
10825                                                                                                 flumethrin, imidacloprid
10827                                                                                                 flumethrin, imidacloprid
10830                                                                                             ivermectin, pyrantel pamoate
10837                                                                                       amoxicillin, clavulanate potassium
10841                                                                                        trimeprazine tartrate, prednisone
10842                                                                                             ivermectin, pyrantel pamoate
10843                                                                                                               selamectin
10846                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10849                                                                                             ivermectin, pyrantel pamoate
10853                                                                                                                  amitraz
10863                                                                                        betamethasone, gentamicin sulfate
10865                                                                                             ivermectin, pyrantel pamoate
10866                                                                                       fipronil, permethrin, pyriproxyfen
10867                                                                                                      phenylpropanolamine
10870                                                                                              lufenuron, milbemycin oxime
10871                                                                                                 fipronil, (s)-methoprene
10874                                                                                              lufenuron, milbemycin oxime
10877                                                                                             ivermectin, pyrantel pamoate
10878                                                                                                               afoxolaner
10892                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10893                                                                                             ivermectin, pyrantel pamoate
10894                                                                                                                 tramadol
10896                                                                           mometasone furoate, orbifloxacin, posaconazole
10898                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10899                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10900                                                                                             ivermectin, pyrantel pamoate
10901                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10905                                                                                        betamethasone, gentamicin sulfate
10925                                                                                                              clindamycin
10926                                                                                                            dexamethasone
10928                                                                                                               afoxolaner
10929                                                                                             ivermectin, pyrantel pamoate
10930                                                                                                               afoxolaner
10934                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10938                                                                                                         milbemycin oxime
10953                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10959                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10970                                                                                                         milbemycin oxime
10971                                                                                                               fluralaner
11003                                                                                             afoxolaner, milbemycin oxime
11008                                                                                             ivermectin, pyrantel pamoate
11009                                                                                             ivermectin, pyrantel pamoate
11010                                                                                                               ivermectin
11011                                                                                             ivermectin, pyrantel pamoate
11016                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11021                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
11035                                                                                             ivermectin, pyrantel pamoate
11036                                                                                                               afoxolaner
11037                                                                                             ivermectin, pyrantel pamoate
11038                                                                                                               afoxolaner
11052                                                                             florfenicol, mometasone furoate, terbinafine
11065                                                                                              lufenuron, milbemycin oxime
11066                                                                                                               fluralaner
11067                                                                                                                 tramadol
11069                                                                                   joint supplement (glucosamine hcl/msm)
11070                                                                                              lufenuron, milbemycin oxime
11071                                                                                                                 tramadol
11085                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11088                                                                                                          cbd or hemp oil
11093                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
11112                                                                                                             ketoconazole
11134                                                                                                 fipronil, (s)-methoprene
11142                                                                             florfenicol, mometasone furoate, terbinafine
11144                                                                                                  chlorhexidine gluconate
11145                                                                                                  ketoconazole, tris-edta
11152                                                                                              lufenuron, milbemycin oxime
11153                                                                                                 imidacloprid, permethrin
11155                                                                                              lufenuron, milbemycin oxime
11156                                                                                                 imidacloprid, permethrin
11158                                                                                lufenuron, milbemycin oxime, praziquantel
11159                                                                                             ivermectin, pyrantel pamoate
11163                                                                                             ivermectin, pyrantel pamoate
11165                                                                                             ivermectin, pyrantel pamoate
11182                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11186                                                                                             ivermectin, pyrantel pamoate
11189                                                                                             ivermectin, pyrantel pamoate
11208                                                                                              lufenuron, milbemycin oxime
11210                                                                                                                probiotic
11211                                                                                                   unspecified medication
11212                                                                                              lufenuron, milbemycin oxime
11213                                                                                                immune support supplement
11214                                                                                       amoxicillin, clavulanate potassium
11224                                                                                                               ivermectin
11228                                                                                             ivermectin, pyrantel pamoate
11229                                                                                             ivermectin, pyrantel pamoate
11233                                                                                                                probiotic
11241                                                                                               milbemycin oxime, spinosad
11242                                                                                              lufenuron, milbemycin oxime
11276                                                                                              lufenuron, milbemycin oxime
11291                                                                                             ivermectin, pyrantel pamoate
11292                                                                                                                 spinosad
11293                                                                                             ivermectin, pyrantel pamoate
11294                                                                                                               afoxolaner
11295                                                                                             ivermectin, pyrantel pamoate
11296                                                                                                               afoxolaner
11301                                                                                             ivermectin, pyrantel pamoate
11305                                                                                                 skin and coat supplement
11307                                                                                             ivermectin, pyrantel pamoate
11311                                                                                             ivermectin, pyrantel pamoate
11312                                                                                                                sarolaner
11315                                                                                             ivermectin, pyrantel pamoate
11316                                                                                                                sarolaner
11317                                                                                                              clindamycin
11318                                                                                                                firocoxib
11326                                                                                              lufenuron, milbemycin oxime
11327                                                                                               milbemycin oxime, spinosad
11338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11340                                                                               dextromethorphan hydrobromide, guaifenesin
11346                                                                                                      ear cleaner (zymox)
11349                                                                                                      ear cleaner (zymox)
11350                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                             ivermectin, pyrantel pamoate
11352                                                                                                               afoxolaner
11353                                                                                 febantel, praziquantel, pyrantel pamoate
11354                                                                                        betamethasone, gentamicin sulfate
11356                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11360                                                                                                                carprofen
11368                                                                                                         milbemycin oxime
11385                                                                                                               ivermectin
11386                                                                                                               ivermectin
11387                                                                                                             fenbendazole
11388                                                                                                             fenbendazole
11394                                                                                                               benzocaine
11415                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11436                                                                                lufenuron, milbemycin oxime, praziquantel
11437                                                                                              lufenuron, milbemycin oxime
11441                                                                                              lufenuron, milbemycin oxime
11464                                                                                      ear cleaner (zymox), hydrocortisone
11470                                                                                                               isoflurane
11471                                                                                                           dental sealant
11473                                                                                                               ivermectin
11477                                                                                             ivermectin, pyrantel pamoate
11482                                                                                                               afoxolaner
11493                                                                                       joint supplement (glucosamine hcl)
11509                                                                               ivermectin, praziquantel, pyrantel pamoate
11511                                                                                                              doxycycline
11536                                                                                              lufenuron, milbemycin oxime
11537                                                                                              lufenuron, milbemycin oxime
11538                                                                                              lufenuron, milbemycin oxime
11545                                                                                              lufenuron, milbemycin oxime
11546                                                                                              lufenuron, milbemycin oxime
11547                                                                                              lufenuron, milbemycin oxime
11551                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11560                                                                                             ivermectin, pyrantel pamoate
11561                                                                                             ivermectin, pyrantel pamoate
11562                                                                                                               afoxolaner
11563                                                                                                                  omega 3
11564                                                                               toothpaste/dental health solution or chews
11565                                                                                                              clindamycin
11566                                                                                                                carprofen
11567                                                                                             ivermectin, pyrantel pamoate
11568                                                                                                               afoxolaner
11570                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11575                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                  omega 3
11577                                                                                                                probiotic
11578                                                                                            unspecified vision supplement
11589                                                                                                               ivermectin
11593                                                                                             ivermectin, pyrantel pamoate
11596                                                                                             ivermectin, pyrantel pamoate
11599                                                                                                 fipronil, (s)-methoprene
11600                                                                                             ivermectin, pyrantel pamoate
11620                                                                           mometasone furoate, orbifloxacin, posaconazole
11621                                                                             florfenicol, mometasone furoate, terbinafine
11627                                                                                                               ivermectin
11628                                                                                                 fipronil, (s)-methoprene
11630                                                                                                               ivermectin
11633                                                                                             ivermectin, pyrantel pamoate
11634                                                                                           praziquantel, pyrantel pamoate
11636                                                                                                              doxycycline
11637                                                                                                               afoxolaner
11641                                                                                                         milbemycin oxime
11651                                                                                                               ivermectin
11652                                                                                                 imidacloprid, permethrin
11653                                                                                               milbemycin oxime, spinosad
11654                                                                                              lufenuron, milbemycin oxime
11655                                                                                               milbemycin oxime, spinosad
11656                                                                                              lufenuron, milbemycin oxime
11659                                                                                                                meloxicam
11660                                                                                lufenuron, milbemycin oxime, praziquantel
11661                                                                                lufenuron, milbemycin oxime, praziquantel
11662                                                                                                               fluralaner
11664                                                                                                               fluralaner
11665                                                                                                              oclacitinib
11666                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                        dexamethasone, miconazole nitrate
11669                                                                                                               alprazolam
11671                                                                                  betamethasone, florfenicol, terbinafine
11673                                                                                                         phytosphingosine
11678                                                                                             ivermectin, pyrantel pamoate
11680                                                                                                 fipronil, (s)-methoprene
11681                                                                                             ivermectin, pyrantel pamoate
11683                                                                                             ivermectin, pyrantel pamoate
11691                                                                                              lufenuron, milbemycin oxime
11692                                                                          betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                          ear cleaner (epi-otic advanced)
11695                                                                                                  acetic acid, boric acid
11701                                                                                                               ivermectin
11702                                                                                             ivermectin, pyrantel pamoate
11709                                                                                       joint supplement (glucosamine hcl)
11710                                                                                                                   garlic
11719                                                                                              lufenuron, milbemycin oxime
11722                                                                                                          cbd or hemp oil
11723                                                                                                                   garlic
11735                                                                                                         milbemycin oxime
11741                                                                                                                  omega 3
11742                                                                                                               selamectin
11790                                                                          betamethasone, clotrimazole, gentamicin sulfate
11802                                                                                lufenuron, milbemycin oxime, praziquantel
11806                                         diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11812                                                                                              lufenuron, milbemycin oxime
11813                                                                                              lufenuron, milbemycin oxime
11814                                                                                               imidacloprid, pyriproxyfen
11817                                                                                              lufenuron, milbemycin oxime
11822                                                                                                               ivermectin
11823                                                                                                               ivermectin
11824                                                                                                 fipronil, (s)-methoprene
11825                                                                                                               afoxolaner
11832                                                                                             ivermectin, pyrantel pamoate
11833                                                                                             ivermectin, pyrantel pamoate
11835                                                                                             ivermectin, pyrantel pamoate
11836                                                                                             ivermectin, pyrantel pamoate
11837                                                                                                               afoxolaner
11840                                                                               dextromethorphan hydrobromide, guaifenesin
11844                                                                               dextromethorphan hydrobromide, guaifenesin
11846                                                                                               acetaminophen, hydrocodone
11847                                                                                             ivermectin, pyrantel pamoate
11848                                                                                             ivermectin, pyrantel pamoate
11850                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
11856                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11861                                                                                             ivermectin, pyrantel pamoate
11862                                                                                             ivermectin, pyrantel pamoate
11873                                                                                             ivermectin, pyrantel pamoate
11874                                                                                             ivermectin, pyrantel pamoate
11875                                                                                                               afoxolaner
11876                                                                                                                carprofen
11877                                                                                                               gabapentin
11878                                                                                                              oclacitinib
11879                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
11880                                                                                                                carprofen
11881                                                                                             ivermectin, pyrantel pamoate
11882                                                                                                               afoxolaner
11883                                                                                                                carprofen
11889                                                                                                         milbemycin oxime
11898                                                                                             ivermectin, pyrantel pamoate
11911                                                                                                              oclacitinib
11919                                                                                                                probiotic
11926                                                                                                               ivermectin
11930                                                                                                                probiotic
11959                                                                                              lufenuron, milbemycin oxime
11960                                                                               toothpaste/dental health solution or chews
11962                                                                                              lufenuron, milbemycin oxime
11964                                                                                              lufenuron, milbemycin oxime
11978                                                                                                  triamcinolone acetonide
11979                                                                                                 fipronil, (s)-methoprene
11980                                                                                                 fipronil, (s)-methoprene
11983                                                                                                 fipronil, (s)-methoprene
11993                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12009                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                  ketoconazole, tris-edta
12014                                                                                                               ivermectin
12018                                                                                    dinotefuran, permethrin, pyriproxyfen
12019                                                                               ivermectin, praziquantel, pyrantel pamoate
12020                                                                               ivermectin, praziquantel, pyrantel pamoate
12023                                                                                                            metronidazole
12043                                                                                                               gabapentin
12047                                                                                   joint supplement (glucosamine hcl/msm)
12048                                                                                       fipronil, permethrin, pyriproxyfen
12051                                                                                                                probiotic
12054                                                                                   joint supplement (glucosamine hcl/msm)
12090                                                                                                         milbemycin oxime
12108                                                                          betamethasone, clotrimazole, gentamicin sulfate
12111                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12128                                                                                                               fluralaner
12129                                                                                             ivermectin, pyrantel pamoate
12130                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12135                                                                                                               fluralaner
12136                                                                                           milbemycin oxime, praziquantel
12154                                                                                   joint supplement (glucosamine hcl/msm)
12155                                                                                                        vision supplement
12159                                                                                   joint supplement (glucosamine hcl/msm)
12160                                                                                                        vision supplement
12164                                                                                   joint supplement (glucosamine hcl/msm)
12173                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12190                                                                                        betamethasone, gentamicin sulfate
12194                                                                                             ivermectin, pyrantel pamoate
12213                                                                                             ivermectin, pyrantel pamoate
12215                                                                                             ivermectin, pyrantel pamoate
12221                                                                                                              liver happy
12222                                                                                                              shen calmer
12223                                                                                                homeopathic vaccine spray
12261                                                                                               milbemycin oxime, spinosad
12271                                                                                                 fipronil, (s)-methoprene
12273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12283                                                                                           milbemycin oxime, praziquantel
12299                                                                                       amoxicillin, clavulanate potassium
12306                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12309                                                                                       chlorhexidine gluconate, ophytrium
12313                                                                                              lufenuron, milbemycin oxime
12314                                                                                               milbemycin oxime, spinosad
12322                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12324                                                                                               milbemycin oxime, spinosad
12334                                                                                                              vincristine
12336                                                                                                              doxorubicin
12337                                                                                          anti-cd52 monoclonal antibodies
12342                                                                                               milbemycin oxime, spinosad
12343                                                                                          anti-cd52 monoclonal antibodies
12345                                                                                                                  omega 3
12346                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12349                                                                                          anti-cd52 monoclonal antibodies
12351                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12353                                                                                                    ampicillin, sulbactam
12364                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12366                                                                                               milbemycin oxime, spinosad
12375                                                                                                                  omega 3
12376                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12379                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12386                                                                                           polysulfated glycosaminoglycan
12394                                                                                   joint supplement (glucosamine hcl/msm)
12397                                                                                                         pyrantel pamoate
12398                                                                                                               ivermectin
12402                                                                                             ivermectin, pyrantel pamoate
12405                                                                                                         tylosin tartrate
12406                                                                                                                probiotic
12409                                                                                                                probiotic
12410                                                                                             ivermectin, pyrantel pamoate
12411                                                                                       fipronil, permethrin, pyriproxyfen
12412                                                                                                            metronidazole
12414                                                                                             ivermectin, pyrantel pamoate
12415                                                                                                               afoxolaner
12417                                                                                             ivermectin, pyrantel pamoate
12418                                                                                                               afoxolaner
12420                                                                          betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                             ivermectin, pyrantel pamoate
12422                                                                                                                sarolaner
12423                                                                          betamethasone, clotrimazole, gentamicin sulfate
12427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12429                                                                                                   indoxacarb, permethrin
12430                                                                                             ivermectin, pyrantel pamoate
12431                                                                                                               afoxolaner
12432                                                                                                               fluralaner
12433                                                                                             ivermectin, pyrantel pamoate
12434                                                                                                                sarolaner
12438                                                                                             ivermectin, pyrantel pamoate
12439                                                                                                                sarolaner
12453                                                                                                               ivermectin
12454                                                                                             ivermectin, pyrantel pamoate
12455                                                                                             ivermectin, pyrantel pamoate
12456                                                                                             ivermectin, pyrantel pamoate
12457                                                                                                               afoxolaner
12461                                                                                       chlorhexidine gluconate, ophytrium
12462                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                  omega 3
12466                                                                               ivermectin, praziquantel, pyrantel pamoate
12469                                                                                                               selamectin
12470                                                                                                              hydroxyzine
12471                                                                                                              oclacitinib
12472                                                                                                              oclacitinib
12473                                                                                                               selamectin
12474                                                                                                               selamectin
12475                                                                                                              oclacitinib
12476                                                                                                     cefpodoxime proxetil
12477                                                                          betamethasone, clotrimazole, gentamicin sulfate
12481                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12485                                                                          betamethasone, clotrimazole, gentamicin sulfate
12487                                                                                                         sulfadimethoxine
12495                                                                                             ivermectin, pyrantel pamoate
12497                                                                                                                probiotic
12498                                                                                             ivermectin, pyrantel pamoate
12500                                                                                                               ivermectin
12506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12511                                                                                             ivermectin, pyrantel pamoate
12512                                                                                                               afoxolaner
12513                                                                                                               cephalexin
12514                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12516                                                                                             ivermectin, pyrantel pamoate
12517                                                                                                                carprofen
12520                                                                                lufenuron, milbemycin oxime, praziquantel
12521                                                                                               milbemycin oxime, spinosad
12523                                                                                                         milbemycin oxime
12528                                                                                             ivermectin, pyrantel pamoate
12529                                                                                    dinotefuran, permethrin, pyriproxyfen
12530                                                                                             ivermectin, pyrantel pamoate
12535                                                                                                      silver sulfadiazine
12536                                                                                                                mupirocin
12540                                                                                             ivermectin, pyrantel pamoate
12541                                                                                    dinotefuran, permethrin, pyriproxyfen
12542                                                                                             ivermectin, pyrantel pamoate
12543                                                                                    dinotefuran, permethrin, pyriproxyfen
12546                                                                               toothpaste/dental health solution or chews
12547                                                                                   joint supplement (glucosamine hcl/msm)
12548                                                                                             ivermectin, pyrantel pamoate
12549                                                                                    dinotefuran, permethrin, pyriproxyfen
12550                                                                                             ivermectin, pyrantel pamoate
12551                                                                                    dinotefuran, permethrin, pyriproxyfen
12552                                                                                   joint supplement (glucosamine hcl/msm)
12553                                                                                             ivermectin, pyrantel pamoate
12554                                                                                    dinotefuran, permethrin, pyriproxyfen
12567                                                                                        dexamethasone, miconazole nitrate
12569                                                                                               milbemycin oxime, spinosad
12571                                                                                                       miconazole nitrate
12578                                                                                             ivermectin, pyrantel pamoate
12580                                                                                             ivermectin, pyrantel pamoate
12585                                                                                             ivermectin, pyrantel pamoate
12588                                                                           dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                             ivermectin, pyrantel pamoate
12595                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                  omega 3
12605                                                                                                         milbemycin oxime
12607                                                                                                            metronidazole
12608                                                                                           milbemycin oxime, praziquantel
12609                                                                                                               afoxolaner
12612                                                                                             ivermectin, pyrantel pamoate
12613                                                                                             ivermectin, pyrantel pamoate
12615                                                                                                               moxidectin
12616                                                                                                               ivermectin
12620                                                                                             ivermectin, pyrantel pamoate
12623                                                                                             ivermectin, pyrantel pamoate
12630                                                                                             ivermectin, pyrantel pamoate
12632                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12636                                                                                             ivermectin, pyrantel pamoate
12638                                                                                                               ivermectin
12639                                                                                             ivermectin, pyrantel pamoate
12642                                                                                             ivermectin, pyrantel pamoate
12645                                                                                                              amoxicillin
12686                                                                                             ivermectin, pyrantel pamoate
12692                                                                                           milbemycin oxime, praziquantel
12693                                                                                                         milbemycin oxime
12712                                                                               dimethyl sulfoxide, fluocinolone acetonide
12713                                                                                                               prednisone
12714                                                                               ivermectin, praziquantel, pyrantel pamoate
12730                                                                           mometasone furoate, orbifloxacin, posaconazole
12732                                                                           mometasone furoate, orbifloxacin, posaconazole
12735                                                                                              chloroxylenol, ketoconazole
12738                                                                                                               fluralaner
12740                                                                                               milbemycin oxime, spinosad
12744                                                                                               milbemycin oxime, spinosad
12749                                                                                               milbemycin oxime, spinosad
12754                                                                                               milbemycin oxime, spinosad
12755                                                                                               milbemycin oxime, spinosad
12756                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12771                                                                                                               moxidectin
12774                                                                                                               ivermectin
12780                                                                                                               ivermectin
12781                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12784                                                                                                     digestive supplement
12786                                                                                   cyphenothrin, fipronil, (s)-methoprene
12787                                                                                                 flumethrin, imidacloprid
12788                                                                             dexamethasone, neomycin sulfate, polymyxin b
12795                                                                                             ivermectin, pyrantel pamoate
12796                                                                                                 flumethrin, imidacloprid
12797                                                                                                     digestive supplement
12801                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12826                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12828                                                                                                  chlorhexidine gluconate
12833                                                                                                         milbemycin oxime
12836                                                                                               milbemycin oxime, spinosad
12849                                                                          betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                              chloroxylenol, ketoconazole
12860                                                                                                          apomorphine hcl
12861                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12865                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12870                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12873                                                                          betamethasone, clotrimazole, gentamicin sulfate
12874                                                                                                            metronidazole
12879                                                                                             ivermectin, pyrantel pamoate
12880                                                                                                               afoxolaner
12881                                                                             dexamethasone, neomycin sulfate, polymyxin b
12882                                                                          betamethasone, clotrimazole, gentamicin sulfate
12894                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                    chlorhexidine gluconate, ketoconazole
12901                                                                                                               ivermectin
12902                                                                                                               afoxolaner
12903                                                                               toothpaste/dental health solution or chews
12904                                                                                                        potassium bromide
12905                                                                                                                midazolam
12906                                                                                                        potassium bromide
12907                                                                                                        potassium bromide
12908                                                                                                              terbinafine
12909                                                                                                            levetiracetam
12910                                                                                                                thyroxine
12911                                                                                                   unspecified medication
12916                                                                                             ivermectin, pyrantel pamoate
12920                                                                                             ivermectin, pyrantel pamoate
12929                                                                                             ivermectin, pyrantel pamoate
12942                                                                                             ivermectin, pyrantel pamoate
12943                                                                                             ivermectin, pyrantel pamoate
12945                                                                                             ivermectin, pyrantel pamoate
12947                                                                                                            metronidazole
12948                                                                                             ivermectin, pyrantel pamoate
12949                                                                                             ivermectin, pyrantel pamoate
12952                                                                                             ivermectin, pyrantel pamoate
12953                                                                           dexamethasone, neomycin sulfate, thiabendazole
12955                                                                                                             multivitamin
12956                                                                                                 fipronil, (s)-methoprene
12957                                                                                              lufenuron, milbemycin oxime
12959                                                                          betamethasone, clotrimazole, gentamicin sulfate
12962                                                                                                 fipronil, (s)-methoprene
12963                                                                                                             multivitamin
12966                                                                                                 fipronil, (s)-methoprene
12979                                                                                        betamethasone, gentamicin sulfate
12987                                                                                                              doxycycline
12988                                                                                                               ivermectin
12989                                                                                             ivermectin, pyrantel pamoate
12990                                                                                                                carprofen
12993                                                                                             ivermectin, pyrantel pamoate
12994                                                                                               imidacloprid, pyriproxyfen
12996                                                                                                              oclacitinib
13005                                                                                                               ivermectin
13006                                                                                                               afoxolaner
13008                                                                                                               ivermectin
13010                                                                                                         neomycin sulfate
13013                                                                                                  triamcinolone acetonide
13020                                                                                                             fenbendazole
13041                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                               fluralaner
13062                                                                                           polysulfated glycosaminoglycan
13063                                                                                                                carprofen
13074                                                                                           polysulfated glycosaminoglycan
13075                                                                                lufenuron, milbemycin oxime, praziquantel
13076                                                                                                 flumethrin, imidacloprid
13081                                                                                                               lokivetmab
13084                                                                                              lufenuron, milbemycin oxime
13086                                                                                              lufenuron, milbemycin oxime
13096                                                                                      ear cleaner (zymox), hydrocortisone
13104                                                                                                              vincristine
13108                                                                                               milbemycin oxime, spinosad
13109                                                                                               milbemycin oxime, spinosad
13110                                                                                                              doxorubicin
13111                                                                                                              vincristine
13112                                                                                                         cyclophosphamide
13113                                                                                          anti-cd52 monoclonal antibodies
13114                                                                                               milbemycin oxime, spinosad
13115                                                                                               milbemycin oxime, spinosad
13116                                                                                               milbemycin oxime, spinosad
13124                                                                          betamethasone, clotrimazole, gentamicin sulfate
13126                                                                                          ear cleaner (epi-otic advanced)
13127                                                                          betamethasone, clotrimazole, gentamicin sulfate
13129                                                                          betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                          ear cleaner (epi-otic advanced)
13133                                                                          betamethasone, clotrimazole, gentamicin sulfate
13136                                                                                             ivermectin, pyrantel pamoate
13137                                                                                                               fluralaner
13138                                                                             dexamethasone, neomycin sulfate, polymyxin b
13139                                                                                             ivermectin, pyrantel pamoate
13140                                                                                                               fluralaner
13142                                                                                             ivermectin, pyrantel pamoate
13143                                                                                                               fluralaner
13148                                                                                       amoxicillin, clavulanate potassium
13149                                                                                             ivermectin, pyrantel pamoate
13150                                                                                                               fluralaner
13151                                                                                                         milbemycin oxime
13152                                                                                                               fluralaner
13154                                                                                       amoxicillin, clavulanate potassium
13157                                                                                             ivermectin, pyrantel pamoate
13159                                                                                       joint supplement (glucosamine hcl)
13160                                                                                                                 turmeric
13168                                                                                             ivermectin, pyrantel pamoate
13169                                                                                             ivermectin, pyrantel pamoate
13170                                                                                                               afoxolaner
13171                                                                                                              oclacitinib
13173                                                                                                               tobramycin
13183                                                                                                               cephalexin
13184                                                                                                       methylprednisolone
13187                                                                                        betamethasone, gentamicin sulfate
13188                                                                                                 fipronil, (s)-methoprene
13189                                                                                             ivermectin, pyrantel pamoate
13190                                                                                                              clindamycin
13195                                                                                        betamethasone, gentamicin sulfate
13196                                                                                                  chlorhexidine gluconate
13198                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                        trimeprazine tartrate, prednisone
13208                                                                                           milbemycin oxime, praziquantel
13209                                                                                                               afoxolaner
13233                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13238                                                                                                               cephalexin
13246                                                                             dexamethasone, neomycin sulfate, polymyxin b
13248                                                                                             ivermectin, pyrantel pamoate
13249                                                                                                 fipronil, (s)-methoprene
13262                                                                                             ivermectin, pyrantel pamoate
13264                                                                                             ivermectin, pyrantel pamoate
13270                                                                                             ivermectin, pyrantel pamoate
13271                                                                                             ivermectin, pyrantel pamoate
13277                                                                          betamethasone, clotrimazole, gentamicin sulfate
13278                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13286                                                                          betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                 fipronil, (s)-methoprene
13288                                                                                             ivermectin, pyrantel pamoate
13297                                                                                                               ivermectin
13298                                                                                                               afoxolaner
13299                                                                                                               ivermectin
13307                                                                                                               afoxolaner
13308                                                                                             ivermectin, pyrantel pamoate
13309                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13313                                                                                             ivermectin, pyrantel pamoate
13314                                                                                                               afoxolaner
13315                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13318                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13321                                                                       ceramide iii, chlorhexidine gluconate, microsilver
13331                                                                                               milbemycin oxime, spinosad
13332                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
13334                                                                                               milbemycin oxime, spinosad
13340                                                                          betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                             ivermectin, pyrantel pamoate
13343                                                                                             ivermectin, pyrantel pamoate
13344                                                                                                               afoxolaner
13345                                                                          betamethasone, clotrimazole, gentamicin sulfate
13348                                                                                                             fenbendazole
13349                                                                                             ivermectin, pyrantel pamoate
13353                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                               milbemycin oxime, spinosad
13356                                                                                               milbemycin oxime, spinosad
13357                                                                                                 flumethrin, imidacloprid
13376                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13405                                                                                       amoxicillin, clavulanate potassium
13411                                                                                                              doxorubicin
13454                                                                                             ivermectin, pyrantel pamoate
13455                                                                                                               afoxolaner
13456                                                                                                          diphenhydramine
13459                                                                                      ear cleaner (zymox), hydrocortisone
13460                                                                                           lotion or leave in conditioner
13461                                                                                             ivermectin, pyrantel pamoate
13462                                                                                                               afoxolaner
13464                                                                                             ivermectin, pyrantel pamoate
13468                                                                                             ivermectin, pyrantel pamoate
13470                                                                                 febantel, praziquantel, pyrantel pamoate
13471                                                                                             ivermectin, pyrantel pamoate
13475                                                                                              lufenuron, milbemycin oxime
13476                                                                                                     prebiotic, probiotic
13479                                                                                                                meloxicam
13483                                                                                              lufenuron, milbemycin oxime
13484                                                                                                   cyphenothrin, fipronil
13485                                                                                                               omeprazole
13487                                                                                                               omeprazole
13496                                                                                               imidacloprid, pyriproxyfen
13502                                                                                                               ivermectin
13503                                                                                                 imidacloprid, permethrin
13506                                                                                             ivermectin, pyrantel pamoate
13532                                                                                                                probiotic
13537                                                                                              lufenuron, milbemycin oxime
13538                                                                                lufenuron, milbemycin oxime, praziquantel
13562                                                                                               milbemycin oxime, spinosad
13563                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                               milbemycin oxime, spinosad
13575                                                                                                               isoflurane
13576                                                                                               milbemycin oxime, spinosad
13579                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13581                                                                                               milbemycin oxime, spinosad
13585                                                                                               milbemycin oxime, spinosad
13590                                                                                                  chlorhexidine gluconate
13594                                                                                        betamethasone, gentamicin sulfate
13595                                                                          betamethasone, clotrimazole, gentamicin sulfate
13601                                                                             dexamethasone, neomycin sulfate, polymyxin b
13603                                                                                                             enrofloxacin
13605                                                                                                                carprofen
13609                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13615                                                                          betamethasone, clotrimazole, gentamicin sulfate
13619                                                                                                              doxycycline
13623                                                                                               imidacloprid, pyriproxyfen
13624                                                                                               imidacloprid, pyriproxyfen
13625                                                                                               imidacloprid, pyriproxyfen
13628                                                                                               imidacloprid, pyriproxyfen
13631                                                                          betamethasone, clotrimazole, gentamicin sulfate
13654                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13657                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13659                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13660                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13666                                                                             florfenicol, mometasone furoate, terbinafine
13687                                                                                                               fluralaner
13688                                                                                                    clorsulon, ivermectin
13693                                                                                               milbemycin oxime, spinosad
13715                                                                                                            methocarbamol
13723                                                                                                 fipronil, (s)-methoprene
13724                                                                                                 flumethrin, imidacloprid
13730                                                                                                                probiotic
13737                                                                                             ivermectin, pyrantel pamoate
13740                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                        trimeprazine tartrate, prednisone
13747                                                                                              lufenuron, milbemycin oxime
13756                                                                          betamethasone, clotrimazole, gentamicin sulfate
13768                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                        betamethasone, gentamicin sulfate
13774                                                                                                              doxycycline
13775                                                                               ivermectin, praziquantel, pyrantel pamoate
13776                                                                                                         milbemycin oxime
13782                                                                                                                meloxicam
13783                                                                                                         milbemycin oxime
13786                                                                                  betamethasone, florfenicol, terbinafine
13796                                                                                       chlorhexidine gluconate, ophytrium
13803                                                                                       amoxicillin, clavulanate potassium
13881                                                                                                         sulfadimethoxine
13884                                                                                        betamethasone, gentamicin sulfate
13893                                                                                                         milbemycin oxime
13894                                                                                    dinotefuran, permethrin, pyriproxyfen
13896                                                                                                         milbemycin oxime
13902                                                                                                         pyrantel pamoate
13903                                                                                                            marbofloxacin
13904                                                                                       amoxicillin, clavulanate potassium
13905                                                                                                         milbemycin oxime
13906                                                                                    dinotefuran, permethrin, pyriproxyfen
13908                                                                                                             fenbendazole
13910                                                                                                         milbemycin oxime
13912                                                                                                               lokivetmab
13913                                                                                                              bedinvetmab
13925                                                                                               milbemycin oxime, spinosad
13943                                                                                             ivermectin, pyrantel pamoate
13946                                                                                        betamethasone, gentamicin sulfate
13994                                                                                             ivermectin, pyrantel pamoate
13995                                                                                                                sarolaner
13996                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13998                                                                                             ivermectin, pyrantel pamoate
14006                                                                                        betamethasone, gentamicin sulfate
14007                                                                                                         milbemycin oxime
14008                                                                                        enrofloxacin, silver sulfadiazine
14050                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                         milbemycin oxime
14055                                                                                                         milbemycin oxime
14059                                                                                                               selamectin
14060                                                                                                               ivermectin
14061                                                                                             ivermectin, pyrantel pamoate
14062                                                                                             ivermectin, pyrantel pamoate
14063                                                                                                 fipronil, (s)-methoprene
14064                                                                                             ivermectin, pyrantel pamoate
14072                                                                                                                  taurine
14106                                                                                              lufenuron, milbemycin oxime
14114                                                                                               milbemycin oxime, spinosad
14118                                                                                               milbemycin oxime, spinosad
14120                                                                                                     butorphanol tartrate
14121                                                                                                          dexmedetomidine
14122                                                                                                              atipamezole
14123                                                                                               lactated ringer's solution
14124                                                                                                       maropitant citrate
14128                                                                                               milbemycin oxime, spinosad
14129                                                                                               milbemycin oxime, spinosad
14131                                                                                                  ketoconazole, tris-edta
14147                                                                                                               ivermectin
14148                                                                                                 fipronil, (s)-methoprene
14151                                                                                             ivermectin, pyrantel pamoate
14154                                                                                             ivermectin, pyrantel pamoate
14162                                                                                              lufenuron, milbemycin oxime
14163                                                                                              lufenuron, milbemycin oxime
14164                                                                                             ivermectin, pyrantel pamoate
14165                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                       miconazole nitrate
14169                                                                                                               prednisone
14170                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14171                                                                             florfenicol, mometasone furoate, terbinafine
14172                                                                                             ivermectin, pyrantel pamoate
14173                                                                                             ivermectin, pyrantel pamoate
14174                                                                                                 fipronil, (s)-methoprene
14175                                                                             florfenicol, mometasone furoate, terbinafine
14177                                                                                                         milbemycin oxime
14178                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14179                                                                             florfenicol, mometasone furoate, terbinafine
14180                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                         milbemycin oxime
14190                                                                             dexamethasone, neomycin sulfate, polymyxin b
14219                                                                                                         milbemycin oxime
14221                                                                                                   unspecified astringent
14228                                                                                                   unspecified medication
14238                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14241                                                                                                 fipronil, (s)-methoprene
14242                                                                                             ivermectin, pyrantel pamoate
14245                                                                                                 fipronil, (s)-methoprene
14282                                                                                                               ivermectin
14284                                                                                                               ivermectin
14291                                                                              chlorhexidine gluconate, miconazole nitrate
14296                                                                               ivermectin, praziquantel, pyrantel pamoate
14297                                                                               ivermectin, praziquantel, pyrantel pamoate
14301                                                                                                               ivermectin
14302                                                                                                               nitenpyram
14319                                                                                             ivermectin, pyrantel pamoate
14323                                                                          betamethasone, clotrimazole, gentamicin sulfate
14324                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14330                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14334                                                                                                 imidacloprid, moxidectin
14336                                                                             dexamethasone, neomycin sulfate, polymyxin b
14365                                                                                             ivermectin, pyrantel pamoate
14366                                                                                             ivermectin, pyrantel pamoate
14367                                                                                 febantel, praziquantel, pyrantel pamoate
14373                                                                                                 flumethrin, imidacloprid
14376                                                                                                 flumethrin, imidacloprid
14378                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14380                                                                                                 flumethrin, imidacloprid
14385                                                                                              lufenuron, milbemycin oxime
14386                                                                                                               afoxolaner
14387                                                                                              lufenuron, milbemycin oxime
14388                                                                                                               afoxolaner
14404                                                                                              lufenuron, milbemycin oxime
14405                                                                                                                firocoxib
14406                                                                                             ivermectin, pyrantel pamoate
14407                                                                                                 fipronil, (s)-methoprene
14408                                                                                             ivermectin, pyrantel pamoate
14412                                                                                               milbemycin oxime, spinosad
14413                                                                                                 fipronil, (s)-methoprene
14414                                                                                   cyphenothrin, fipronil, (s)-methoprene
14415                                                                                             ivermectin, pyrantel pamoate
14419                                                                                                                thyroxine
14420                                                                                             ivermectin, pyrantel pamoate
14421                                                                                                                thyroxine
14426                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14428                                                                                                         pyrantel pamoate
14429                                                                                              lufenuron, milbemycin oxime
14431                                                                                              lufenuron, milbemycin oxime
14432                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                  omega 3
14434                                                                                                             multivitamin
14443                                                                                              lufenuron, milbemycin oxime
14444                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                               toothpaste/dental health solution or chews
14446 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                 urinary tract supplement
14448                                                                                              lufenuron, milbemycin oxime
14449                                                                                              lufenuron, milbemycin oxime
14451                                                                                              lufenuron, milbemycin oxime
14455                                                                             dexamethasone, neomycin sulfate, polymyxin b
14471                                                                                              lufenuron, milbemycin oxime
14473                                                                                              lufenuron, milbemycin oxime
14477                                                                                              lufenuron, milbemycin oxime
14479                                                                                                 flumethrin, imidacloprid
14488                                                                                             ivermectin, pyrantel pamoate
14489                                                                                             ivermectin, pyrantel pamoate
14490                                                                                             ivermectin, pyrantel pamoate
14492                                                                                                           metoclopramide
14493                                                                                                               famotidine
14495                                                                                             ivermectin, pyrantel pamoate
14498                                                                                             ivermectin, pyrantel pamoate
14499                                                                                             ivermectin, pyrantel pamoate
14512                                                                                                         milbemycin oxime
14513                                                                                                               lokivetmab
14528                                                                                   cyphenothrin, fipronil, (s)-methoprene
14529                                                                                             ivermectin, pyrantel pamoate
14547                                                                                                               ivermectin
14563                                                                                                               ivermectin
14576                                                                                              lufenuron, milbemycin oxime
14578                                                                                                               nitenpyram
14582                                                                                                                sarolaner
14583                                                                                              lufenuron, milbemycin oxime
14584                                                                                                                sarolaner
14585                                                                                lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                sarolaner
14587                                                                                lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                sarolaner
14601                                                                                       unspecified flea/tick preventative
14605                                                                                           milbemycin oxime, praziquantel
14608                                                                                                         milbemycin oxime
14637                                                                                       fipronil, permethrin, pyriproxyfen
14645                                                                                               milbemycin oxime, spinosad
14649                                                                                                               cephalexin
14650                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14654                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14656                                                                                           milbemycin oxime, praziquantel
14657                                                                                                               afoxolaner
14658                                                                                             ivermectin, pyrantel pamoate
14659                                                                                                            metronidazole
14660                                                                                                            metronidazole
14664                                                                                           milbemycin oxime, praziquantel
14665                                                                                                               afoxolaner
14697                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14699                                                                                                 fipronil, (s)-methoprene
14700                                                                                             ivermectin, pyrantel pamoate
14701                                                                                               imidacloprid, pyriproxyfen
14702                                                                                             ivermectin, pyrantel pamoate
14711                                                                                              lufenuron, milbemycin oxime
14712                                                                                    dinotefuran, permethrin, pyriproxyfen
14713                                                                                                             fenbendazole
14720                                                                                              lufenuron, milbemycin oxime
14721                                                                                    dinotefuran, permethrin, pyriproxyfen
14722                                                                                                         milbemycin oxime
14723                                                                                           milbemycin oxime, praziquantel
14726                                                                                                               fluralaner
14727                                                                                           milbemycin oxime, praziquantel
14728                                                                                  milbemycin oxime, oxantel, praziquantel
14730                                                                                           milbemycin oxime, praziquantel
14731                                                                                                               fluralaner
14733                                                                                                         milbemycin oxime
14734                                                                                                               fluralaner
14737                                                                                              lufenuron, milbemycin oxime
14738                                                                                                                 fipronil
14744                                                                                                 flumethrin, imidacloprid
14748                                                                          betamethasone, clotrimazole, gentamicin sulfate
14754                                                                                                 flumethrin, imidacloprid
14755                                                                                           milbemycin oxime, praziquantel
14756                                                                          betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                         burow's solution, hydrocortisone
14758                                                                                                            metronidazole
14759                                                                                                                carprofen
14760                                                                                           milbemycin oxime, praziquantel
14763                                                                                           milbemycin oxime, praziquantel
14764                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14775                                                                                      allergy immunotherapy - unspecified
14777                                                                          betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                  betamethasone, florfenicol, terbinafine
14833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                               milbemycin oxime, spinosad
14838                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                              lufenuron, milbemycin oxime
14857                                                                                                             multivitamin
14858                                                                                              lufenuron, milbemycin oxime
14862                                                                                                             multivitamin
14863                                                                                                             multivitamin
14864                                                                                              lufenuron, milbemycin oxime
14867                                                                                           milbemycin oxime, praziquantel
14870                                                                                                         milbemycin oxime
14871                                                                                                                lotilaner
14878                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14883                                                                                  milbemycin oxime, oxantel, praziquantel
14884                                                                                                               fluralaner
14899                                                                                                              bedinvetmab
14907                                                                                                                methadone
14911                                                                                               milbemycin oxime, spinosad
14913                                                                                               milbemycin oxime, spinosad
14914                                                                                             ivermectin, pyrantel pamoate
14934                                                                                                               afoxolaner
14943                                                                                                               fluralaner
14944                                                                                      allergy immunotherapy - unspecified
14949                                                                                                               lokivetmab
14969                                                                                                               ivermectin
14972                                                                                               milbemycin oxime, spinosad
14973                                                                                                             multivitamin
14974                                                                                               milbemycin oxime, spinosad
14975                                                                                               milbemycin oxime, spinosad
14976                                                                                                     cefpodoxime proxetil
14977                                                                                           polysulfated glycosaminoglycan
14978                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14979                                                                                                                deracoxib
14981                                                                                               milbemycin oxime, spinosad
14982                                                                                                                  omega 3
14983                                                                                                                probiotic
14999                                                                                                               ivermectin
15001                                                                               ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                 fipronil, (s)-methoprene
15004                                                                                               imidacloprid, pyriproxyfen
15005                                                                                                 fipronil, (s)-methoprene
15006                                                                                                         milbemycin oxime
15007                                                                                                         milbemycin oxime
15008                                                                                               imidacloprid, pyriproxyfen
15009                                                                                                 fipronil, (s)-methoprene
15010                                                                                                 fipronil, (s)-methoprene
15011                                                                                           milbemycin oxime, praziquantel
15017                                                                               ivermectin, praziquantel, pyrantel pamoate
15021                                                                               ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                 fipronil, (s)-methoprene
15023                                                                                                 fipronil, (s)-methoprene
15025                                                                                               imidacloprid, pyriproxyfen
15026                                                                                                 fipronil, (s)-methoprene
15027                                                                                                 fipronil, (s)-methoprene
15028                                                                                                         milbemycin oxime
15029                                                                                           milbemycin oxime, praziquantel
15030                                                                                                 fipronil, (s)-methoprene
15035                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                           milbemycin oxime, praziquantel
15045                                                                                             ivermectin, pyrantel pamoate
15048                                                                                              lufenuron, milbemycin oxime
15055                                                                                                   acetaminophen, codeine
15059                                                                                             ivermectin, pyrantel pamoate
15061                                                                                             ivermectin, pyrantel pamoate
15077                                                                                                 flumethrin, imidacloprid
15092                                                                                                               zonisamide
15102                                                                                                  acetic acid, boric acid
15129                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                             ivermectin, pyrantel pamoate
15131                                                                                              sulfadimidine, trimethoprim
15132                                                                                                               afoxolaner
15137                                                                                        betamethasone, gentamicin sulfate
15139                                                                                             ivermectin, pyrantel pamoate
15140                                                                                                 fipronil, (s)-methoprene
15144                                                                                             ivermectin, pyrantel pamoate
15145                                                                                                 fipronil, (s)-methoprene
15150                                                                                                         milbemycin oxime
15151                                                                                                               fluralaner
15155                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15170                                                                                              lufenuron, milbemycin oxime
15172                                                                                                               gabapentin
15173                                                                                                              amoxicillin
15174                                                                                                                carprofen
15179                                                                                                                 tramadol
15184                                                                                                            metronidazole
15196                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                             clomipramine
15202                                                                                             ivermectin, pyrantel pamoate
15203                                                                                             ivermectin, pyrantel pamoate
15209                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15213                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
15244                                                                                                 homatropine, hydrocodone
15250                                                                                                 imidacloprid, permethrin
15252                                                                          betamethasone, clotrimazole, gentamicin sulfate
15253                                                                                             ivermectin, pyrantel pamoate
15256                                                                                                                meloxicam
15259                                                                                                              shen calmer
15268                                                                                             ivermectin, pyrantel pamoate
15269                                                                                                               afoxolaner
15274                                                                                            unspecified herbal supplement
15308                                                                                                               ivermectin
15309                                                                                                               afoxolaner
15310                                                                                             ivermectin, pyrantel pamoate
15311                                                                                                 flumethrin, imidacloprid
15314                                                                                             ivermectin, pyrantel pamoate
15315                                                                                                 flumethrin, imidacloprid
15317                                                                                             ivermectin, pyrantel pamoate
15319                                                                                           milbemycin oxime, praziquantel
15321                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                 flumethrin, imidacloprid
15323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15332                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                probiotic
15334                                                                                        betamethasone, gentamicin sulfate
15339                                                                                               milbemycin oxime, spinosad
15345                                                                                               milbemycin oxime, spinosad
15348                                                                                               milbemycin oxime, spinosad
15360                                                                                                            metronidazole
15361                                                                                                               ivermectin
15362                                                                                                               ivermectin
15363                                                                          betamethasone, clotrimazole, gentamicin sulfate
15365                                                                                                               ivermectin
15366                                                                                             ivermectin, pyrantel pamoate
15367                                                                                              lufenuron, milbemycin oxime
15373                                                                                lufenuron, milbemycin oxime, praziquantel
15374                                                                                                 fipronil, (s)-methoprene
15375                                                                                lufenuron, milbemycin oxime, praziquantel
15376                                                                                                 fipronil, (s)-methoprene
15377                                                                                lufenuron, milbemycin oxime, praziquantel
15378                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15379                                                                                                                carprofen
15383                                                                                                              doxycycline
15384                                                                                                                carprofen
15402                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15412                                                                                             ivermectin, pyrantel pamoate
15441                                                                                                              guaifenesin
15445                                                                                                        hypochlorous acid
15448                                                                                             ivermectin, pyrantel pamoate
15451                                                                                             ivermectin, pyrantel pamoate
15453                                                                                      ear cleaner (zymox), hydrocortisone
15454                                                                                                           (s)-methoprene
15512                                                                                                               fluralaner
15513                                                                                                                  omega 3
15515                                                                                                               fluralaner
15524                                                                                             ivermectin, pyrantel pamoate
15528                                                                                           milbemycin oxime, praziquantel
15530                                                                                    dinotefuran, permethrin, pyriproxyfen
15531                                                                                           milbemycin oxime, praziquantel
15533                                                                                                 urinary tract supplement
15551                                                                                                                meloxicam
15552                                                                                                               fluralaner
15554                                                                                                               fluralaner
15555                                                                                                         milbemycin oxime
15556                                                                                             ivermectin, pyrantel pamoate
15563                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15581                                                                                                         pyrantel pamoate
15582                                                                                                                carprofen
15583                                                                                                               cephalexin
15584                                                                           dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                             ivermectin, pyrantel pamoate
15586                                                                                       fipronil, permethrin, pyriproxyfen
15587                                                                                                                carprofen
15589                                                                                             ivermectin, pyrantel pamoate
15590                                                                                             ivermectin, pyrantel pamoate
15591                                                                                                               afoxolaner
15592                                                                                                 fipronil, (s)-methoprene
15593                                                                                             ivermectin, pyrantel pamoate
15594                                                                                                               afoxolaner
15597                                                                                             ivermectin, pyrantel pamoate
15598                                                                                                               afoxolaner
15599                                                                          betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                             ivermectin, pyrantel pamoate
15601                                                                                                                sarolaner
15602                                                                                                              doxycycline
15603                                                                                                                mupirocin
15604                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15613                                                                                             ivermectin, pyrantel pamoate
15614                                                                                      ear cleaner (zymox), hydrocortisone
15616                                                                                             ivermectin, pyrantel pamoate
15618                                                                                             ivermectin, pyrantel pamoate
15633                                                                                                               prednisone
15636                                                                                              lufenuron, milbemycin oxime
15649                                                                                             ivermectin, pyrantel pamoate
15650                                                                                                 fipronil, (s)-methoprene
15661                                                                                                               ivermectin
15662                                                                             dexamethasone, neomycin sulfate, polymyxin b
15663                                                                                                 fipronil, (s)-methoprene
15667                                                                                                  ketoconazole, tris-edta
15669                                                                                             ivermectin, pyrantel pamoate
15670                                                                                                                sarolaner
15672                                                                                             ivermectin, pyrantel pamoate
15673                                                                                             ivermectin, pyrantel pamoate
15674                                                                                                                sarolaner
15675                                                                             florfenicol, mometasone furoate, terbinafine
15689                                                                                               milbemycin oxime, spinosad
15690                                                                                               milbemycin oxime, spinosad
15691                                                                                               milbemycin oxime, spinosad
15692                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                               milbemycin oxime, spinosad
15699                                                                                             ivermectin, pyrantel pamoate
15701                                                                                               milbemycin oxime, spinosad
15705                                                                                      ear cleaner (zymox), hydrocortisone
15706                                                                                                      ear cleaner (zymox)
15707                                                                                               milbemycin oxime, spinosad
15712                                                                                               milbemycin oxime, spinosad
15715                                                                                               milbemycin oxime, spinosad
15733                                                                                             ivermectin, pyrantel pamoate
15750                                                             butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15757                                                                                             ivermectin, pyrantel pamoate
15758                                                                                                 fipronil, (s)-methoprene
15767                                                                             dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                       gentamicin sulfate
15769                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                     dorzolamide, timolol
15776                                                                                                               cephalexin
15778                                                                                                  triamcinolone acetonide
15781                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                  triamcinolone acetonide
15787                                                                                                               grapiprant
15788                                                                                                                meloxicam
15790                                                                                                 kidney health supplement
15796                                                                                       amoxicillin, clavulanate potassium
15799                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15811                                                                                                   cyphenothrin, fipronil
15815                                                                                                         milbemycin oxime
15818                                                                                                         milbemycin oxime
15829                                                                                             ivermectin, pyrantel pamoate
15839                                                                                                         pyrantel pamoate
15840                                                                                       joint supplement (glucosamine hcl)
15841                                                                                             ivermectin, pyrantel pamoate
15842                                                                                              lufenuron, milbemycin oxime
15844                                                                                              lufenuron, milbemycin oxime
15848                                                                                                                probiotic
15849                                                                                              lufenuron, milbemycin oxime
15850                                                                                           milbemycin oxime, praziquantel
15856                                                                                                 imidacloprid, permethrin
15857                                                                                                               fluralaner
15858                                                                                                                deracoxib
15859                                                                                              lufenuron, milbemycin oxime
15860                                                                                                     cefpodoxime proxetil
15861                                                                                        betamethasone, gentamicin sulfate
15862                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                         atropine sulfate
15864                                                                                                             flurbiprofen
15867                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                        vision supplement
15869                                                                                              lufenuron, milbemycin oxime
15870                                                                                                               fluralaner
15871                                                                             florfenicol, mometasone furoate, terbinafine
15886                                                                                                        vision supplement
15888                                                                                                               fluralaner
15889                                                                                        enrofloxacin, silver sulfadiazine
15890                                                                                            dextromethorphan, guaifenesin
15891                                                                                              lufenuron, milbemycin oxime
15892                                                                                              lufenuron, milbemycin oxime
15907                                                                                                         phytosphingosine
15911                                                                                                             fenbendazole
15912                                                                                                               budesonide
15917                                                                                                               ivermectin
15918                                                                                                     digestive supplement
15919                                                                                                               famotidine
15920                                                                                                         tylosin tartrate
15921                                                                                                                probiotic
15922                                                                                                               ivermectin
15923                                                                                                         tylosin tartrate
15924                                                                                                                vitamin b
15925                                                                                                               budesonide
15926                                                                                                             cyclosporine
15927                                                                                                                vitamin a
15928                                                                                                                probiotic
15929                                                                                                             multivitamin
15930                                                                                             ivermectin, pyrantel pamoate
15931                                                                                                         tylosin tartrate
15932                                                                                                                vitamin b
15933                                                                                                                vitamin a
15934                                                                                                               budesonide
15935                                                                                                                probiotic
15936                                                                                                             cyclosporine
15937                                                                                                               ivermectin
15944                                                                                                               ivermectin
15945                                                                                                                probiotic
15981                                                                                              lufenuron, milbemycin oxime
15983                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15986                                                                                    dinotefuran, permethrin, pyriproxyfen
15992                                                                                              lufenuron, milbemycin oxime
15993                                                                                    dinotefuran, permethrin, pyriproxyfen
15995                                                                                              lufenuron, milbemycin oxime
15996                                                                                    dinotefuran, permethrin, pyriproxyfen
15997                                                                                                               fluralaner
15998                                                                                             hydrocortisone, ketoconazole
15999                                                                                           milbemycin oxime, praziquantel
16000                                                                                                               fluralaner
16005                                                                                                         milbemycin oxime
16007                                                                                                         milbemycin oxime
16008                                                                                                               fluralaner
16009                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
16016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
16026                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16033                                                                                                 fipronil, (s)-methoprene
16036                                                                                lufenuron, milbemycin oxime, praziquantel
16037                                                                                                              amoxicillin
16038                                                                                             ivermectin, pyrantel pamoate
16039                                                                                                 fipronil, (s)-methoprene
16052                                                                                lufenuron, milbemycin oxime, praziquantel
16053                                                                                               imidacloprid, pyriproxyfen
16094                                                                                             ivermectin, pyrantel pamoate
16097                                                                                             ivermectin, pyrantel pamoate
16098                                                                                                               afoxolaner
16105                                                                                              lufenuron, milbemycin oxime
16106                                                                                                             ketoconazole
16107                                                                                   gentamicin sulfate, miconazole nitrate
16108                                                                                              lufenuron, milbemycin oxime
16109                                                                                              lufenuron, milbemycin oxime
16110                                                                             florfenicol, mometasone furoate, terbinafine
16111                                                                                                            dexamethasone
16112                                                                                                              terbinafine
16113                                                                                                  chlorhexidine gluconate
16114                                                                                              chloroxylenol, ketoconazole
16115                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16116                                                                                                              terbinafine
16117                                                                                                              clindamycin
16118                                                                                                               prednisone
16150                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
16152                                                                                               imidacloprid, pyriproxyfen
16153                                                                                             ivermectin, pyrantel pamoate
16154                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16155                                                                                          ear cleaner (epi-otic advanced)
16156                                                                                                                probiotic
16157                                                                                             ivermectin, pyrantel pamoate
16158                                                                                                               fluralaner
16159                                                                                                         milbemycin oxime
16160                                                                                                               fluralaner
16161                                                                                             ivermectin, pyrantel pamoate
16162                                                                                                               fluralaner
16163                                                                                             ivermectin, pyrantel pamoate
16164                                                                                                               fluralaner
16165                                                                                           milbemycin oxime, praziquantel
16177                                                                              chlorhexidine gluconate, miconazole nitrate
16179                                                                                    chlorhexidine gluconate, ketoconazole
16199                                                                                           sulfamethoxazole, trimethoprim
16229                                                                                             ivermectin, pyrantel pamoate
16230                                                                                             ivermectin, pyrantel pamoate
16239                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                  omega 3
16241                                                                               toothpaste/dental health solution or chews
16242                                                                               toothpaste/dental health solution or chews
16251                                                                          betamethasone, clotrimazole, gentamicin sulfate
16253                                                                           mometasone furoate, orbifloxacin, posaconazole
16285                                                                                                               fluralaner
16286                                                                                               unspecified eye medication
16287                                                                                             ivermectin, pyrantel pamoate
16288                                                                                                 fipronil, (s)-methoprene
16289                                                                                             ivermectin, pyrantel pamoate
16290                                                                                                 fipronil, (s)-methoprene
16292                                                                                                         milbemycin oxime
16293                                                                                                 fipronil, (s)-methoprene
16294                                                                                             ivermectin, pyrantel pamoate
16295                                                                                                 fipronil, (s)-methoprene
16296                                                                                                               ivermectin
16312                                                                                             ivermectin, pyrantel pamoate
16313                                                                                                               afoxolaner
16315                                                                                             ivermectin, pyrantel pamoate
16316                                                                                                               afoxolaner
16317                                                                                        dexamethasone, miconazole nitrate
16318                                                                                             ivermectin, pyrantel pamoate
16319                                                                                                               afoxolaner
16321                                                                                             ivermectin, pyrantel pamoate
16322                                                                                                               afoxolaner
16324                                                                                             ivermectin, pyrantel pamoate
16325                                                                                                               afoxolaner
16326                                                                                                         milbemycin oxime
16340                                                                                             ivermectin, pyrantel pamoate
16347                                                                                    dinotefuran, permethrin, pyriproxyfen
16352                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16355                                                                                                                mupirocin
16356                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16374                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16376                                                                                                                  omega 3
16378                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16382                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16386                                                                                                              oclacitinib
16387                                                                                                                ophytrium
16388                                                                                                         phytosphingosine
16389                                                                                             ivermectin, pyrantel pamoate
16400                                                                                             ivermectin, pyrantel pamoate
16401                                                                                                                 spinosad
16403                                                                                             ivermectin, pyrantel pamoate
16404                                                                                                                 spinosad
16408                                                                                             ivermectin, pyrantel pamoate
16413                                                                                                         milbemycin oxime
16414                                                                                                               fluralaner
16415                                                                                                           chlorphenamine
16416                                                                                                              oclacitinib
16418                                                                                                 fipronil, (s)-methoprene
16419                                                                                                   unspecified antibiotic
16420                                                                                                    unspecified analgesic
16425                                                                                                 fipronil, (s)-methoprene
16426                                                                                                 fipronil, (s)-methoprene
16434                                                                                                             multivitamin
16435                                                                                                                  omega 3
16436                                                                                                                 spinosad
16437                                                                                                         sulfadimethoxine
16440                                                                                              lufenuron, milbemycin oxime
16441                                                                                              lufenuron, milbemycin oxime
16442                                                                                                             multivitamin
16443                                                                                                                  omega 3
16447                                                                                              lufenuron, milbemycin oxime
16448                                                                                                             multivitamin
16450                                                                                           milbemycin oxime, praziquantel
16452                                                                                                       maropitant citrate
16453                                                                                                               famotidine
16454                                                                                                               famotidine
16462                                                                                                                lactulose
16472                                                                                              lufenuron, milbemycin oxime
16474                                                                                                 fipronil, (s)-methoprene
16477                                                                                              lufenuron, milbemycin oxime
16478                                                                                                 fipronil, (s)-methoprene
16479                                                                                                 fipronil, (s)-methoprene
16497                                                                                                 fipronil, (s)-methoprene
16522                                                                                             ivermectin, pyrantel pamoate
16523                                                                                                               ivermectin
16524                                                                                                   cyphenothrin, fipronil
16525                                                                                                         milbemycin oxime
16526                                                                                    dinotefuran, permethrin, pyriproxyfen
16544                                                                                                   cyphenothrin, fipronil
16546                                                                                           milbemycin oxime, praziquantel
16553                                                                                           milbemycin oxime, praziquantel
16579                                                                                             ivermectin, pyrantel pamoate
16580                                                                                                  ketoconazole, tris-edta
16595                                                                                                               ivermectin
16596                                                                                             ivermectin, pyrantel pamoate
16597                                                                                                               ivermectin
16598                                                                                       fipronil, permethrin, pyriproxyfen
16599                                                                                                               ivermectin
16601                                                                                                 fipronil, (s)-methoprene
16602                                                                                                            levothyroxine
16605                                                                                 febantel, praziquantel, pyrantel pamoate
16606                                                                                                         milbemycin oxime
16608                                                                                                         milbemycin oxime
16616                                                                                                               omeprazole
16617                                                                                                               sucralfate
16624                                                                                               milbemycin oxime, spinosad
16630                                                                                                         milbemycin oxime
16631                                                                                                                lotilaner
16635                                                                             dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                             ivermectin, pyrantel pamoate
16639                                                                                           milbemycin oxime, praziquantel
16646                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16657                                                                           mometasone furoate, orbifloxacin, posaconazole
16684                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16687                                                                                             ivermectin, pyrantel pamoate
16689                                                                                                                meloxicam
16694                                                                                             ivermectin, pyrantel pamoate
16695                                                                                                               afoxolaner
16702                                                                          betamethasone, clotrimazole, gentamicin sulfate
16703                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                             ivermectin, pyrantel pamoate
16705                                                                                                               afoxolaner
16711                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
16714                                                                                                                mupirocin
16717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16721                                                                                             ivermectin, pyrantel pamoate
16722                                                                                                                meloxicam
16723                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16726                                                                                        betamethasone, gentamicin sulfate
16745                                                                                              lufenuron, milbemycin oxime
16746                                                                                                               fluralaner
16749                                                                                              lufenuron, milbemycin oxime
16750                                                                                                               fluralaner
16751                                                                                              lufenuron, milbemycin oxime
16774                                                                                                                vitamin b
16777                                                                                             ivermectin, pyrantel pamoate
16778                                                                                                   cyphenothrin, fipronil
16779                                                                                                               cetirizine
16783                                                                                                               cetirizine
16784                                                                                                     digestive supplement
16785                                                                                                  ketoconazole, tris-edta
16786                                                                                                               moxidectin
16787                                                                                                               moxidectin
16789                                                                                                               moxidectin
16791                                                                                    dinotefuran, permethrin, pyriproxyfen
16793                                                                                                               afoxolaner
16798                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16805                                                                                             ivermectin, pyrantel pamoate
16807                                                                                                 imidacloprid, permethrin
16809                                                                                               imidacloprid, pyriproxyfen
16810                                                                                             ivermectin, pyrantel pamoate
16811                                                                                                 flumethrin, imidacloprid
16814                                                                                                        vision supplement
16815                                                                                                              ashwagandha
16816                                                                                                 betamethasone, ofloxacin
16821                                                                                                        vision supplement
16823                                                                                                 betamethasone, ofloxacin
16834                                                                                                 fipronil, (s)-methoprene
16838                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
16840                                                                                                 fipronil, (s)-methoprene
16841                                                                                                              bedinvetmab
16847                                                                                                 urinary tract supplement
16849                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16860                                                                                                                  sotalol
16869                                                                                                         milbemycin oxime
16877                                                                                               milbemycin oxime, spinosad
16882                                                                                                 flumethrin, imidacloprid
16915                                                                                                              doxycycline
16916                                                                                                         sulfadimethoxine
16918                                                                                                                  omega 3
16929                                                                                               milbemycin oxime, spinosad
16930                                                                                                               cephalexin
16931                                                                                               milbemycin oxime, spinosad
16933                                                                                               milbemycin oxime, spinosad
16935                                                                                               milbemycin oxime, spinosad
16936                                                                                             ivermectin, pyrantel pamoate
16937                                                                                                 fipronil, (s)-methoprene
16939                                                                                                      ear cleaner (zymox)
16970                                                                                                               ivermectin
16983                                                                                             ivermectin, pyrantel pamoate
16993                                                                                                  ketoconazole, tris-edta
16994                                                                          betamethasone, clotrimazole, gentamicin sulfate
16998                                                                                    dinotefuran, permethrin, pyriproxyfen
16999                                                                                             ivermectin, pyrantel pamoate
17000                                                                                    dinotefuran, permethrin, pyriproxyfen
17010                                                                                             ivermectin, pyrantel pamoate
17012                                                                                                           (s)-methoprene
17013                                                                                             ivermectin, pyrantel pamoate
17014                                                                                             ivermectin, pyrantel pamoate
17018                                                      chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                             ivermectin, pyrantel pamoate
17020                                                                                                               fluralaner
17022                                                                           dexamethasone, neomycin sulfate, thiabendazole
17033                                                                                                               ivermectin
17035                                                                                             ivermectin, pyrantel pamoate
17036                                                                                                               afoxolaner
17042                                                                                                                lotilaner
17049                                                                                             ivermectin, pyrantel pamoate
17051                                                                                                               cephalexin
17053                                                                                             ivermectin, pyrantel pamoate
17062                                                                           dexamethasone, neomycin sulfate, thiabendazole
17088                                                                                             ivermectin, pyrantel pamoate
17089                                                                                                               afoxolaner
17090                                                                                             ivermectin, pyrantel pamoate
17091                                                                                                               afoxolaner
17094                                                                                             ivermectin, pyrantel pamoate
17095                                                                                                               afoxolaner
17098                                                                                             ivermectin, pyrantel pamoate
17099                                                                                                               afoxolaner
17120                                                                                                                 squalane
17121                                                                                          ear cleaner (epi-otic advanced)
17126                                                                                    chlorhexidine gluconate, ketoconazole
17127                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17138                                                                                             ivermectin, pyrantel pamoate
17143                                                                                             ivermectin, pyrantel pamoate
17153                                                                               ivermectin, praziquantel, pyrantel pamoate
17156                                                                               ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                               afoxolaner
17173                                                                               dimethyl sulfoxide, fluocinolone acetonide
17177                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17180                                                                                                                probiotic
17209                                                                                             ivermectin, pyrantel pamoate
17210                                                                                             ivermectin, pyrantel pamoate
17211                                                                                                                carprofen
17218                                                                                    dinotefuran, permethrin, pyriproxyfen
17220                                                                                                               ivermectin
17221                                                                                                               afoxolaner
17225                                                                                             ivermectin, pyrantel pamoate
17226                                                                                                               afoxolaner
17227                                                                                             ivermectin, pyrantel pamoate
17228                                                                                                               afoxolaner
17229                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17232                                                                               ivermectin, praziquantel, pyrantel pamoate
17233                                                                                               imidacloprid, pyriproxyfen
17234                                                                                                         milbemycin oxime
17236                                                                                               imidacloprid, pyriproxyfen
17237                                                                                                         milbemycin oxime
17238                                                                                               imidacloprid, pyriproxyfen
17239                                                                                                         milbemycin oxime
17240                                                                                             ivermectin, pyrantel pamoate
17241                                                                                                               afoxolaner
17248                                                                                             ivermectin, pyrantel pamoate
17251                                                                                             ivermectin, pyrantel pamoate
17252                                                                                                 fipronil, (s)-methoprene
17253                                                                                                               grapiprant
17254                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                               milbemycin oxime, spinosad
17264                                                                                               milbemycin oxime, spinosad
17266                                                                                               milbemycin oxime, spinosad
17268                                                                                                               ivermectin
17283                                                                                             ivermectin, pyrantel pamoate
17285                                                                                             ivermectin, pyrantel pamoate
17297                                                                                           sulfamethoxazole, trimethoprim
17298                                                                                             ivermectin, pyrantel pamoate
17307                                                                                        trimeprazine tartrate, prednisone
17308                                                                                        trimeprazine tartrate, prednisone
17309                                                                                        trimeprazine tartrate, prednisone
17310                                                                                        trimeprazine tartrate, prednisone
17313                                                                                             ivermectin, pyrantel pamoate
17314                                                                                    dinotefuran, permethrin, pyriproxyfen
17315                                                                                                            metronidazole
17327                                                                                             oxytetracycline, polymyxin b
17329                                                                                                           corneal repair
17330                                                                                                                ofloxacin
17335                                                                                                           corneal repair
17352                                                                                        betamethasone, gentamicin sulfate
17355                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17381                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17386                                                                                             ivermectin, pyrantel pamoate
17387                                                                                             ivermectin, pyrantel pamoate
17389                                                                                             ivermectin, pyrantel pamoate
17390                                                                                             ivermectin, pyrantel pamoate
17391                                                                                             ivermectin, pyrantel pamoate
17393                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17399                                                                                              lufenuron, milbemycin oxime
17406                                                                                              lufenuron, milbemycin oxime
17407                                                                                        betamethasone, gentamicin sulfate
17412                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17417                                                                                                 flumethrin, imidacloprid
17418                                                                                                                  omega 3
17419                                                                                                                sarolaner
17420                                                                                             ivermectin, pyrantel pamoate
17426                                                                                                               gabapentin
17427                                                                                                   unspecified medication
17440                                                                                                            metronidazole
17446                                                                                  betamethasone, florfenicol, terbinafine
17461                                                                                              lufenuron, milbemycin oxime
17463                                                                                                                probiotic
17468                                                                                              lufenuron, milbemycin oxime
17470                                                                                                                probiotic
17482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17486                                                                                             ivermectin, pyrantel pamoate
17487                                                                                                 fipronil, (s)-methoprene
17488                                                                                lufenuron, milbemycin oxime, praziquantel
17489                                                                                                 fipronil, (s)-methoprene
17490                                                                                                 fipronil, (s)-methoprene
17491                                                                                           milbemycin oxime, praziquantel
17492                                                                                lufenuron, milbemycin oxime, praziquantel
17493                                                                                           milbemycin oxime, praziquantel
17495                                                                                           milbemycin oxime, praziquantel
17496                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17518                                                                                              lufenuron, milbemycin oxime
17519                                                                                              lufenuron, milbemycin oxime
17576                                                                             dexamethasone, neomycin sulfate, polymyxin b
17583                                                                                        betamethasone, gentamicin sulfate
17588                                                                                        betamethasone, gentamicin sulfate
17602                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                              lufenuron, milbemycin oxime
17605                                                                                lufenuron, milbemycin oxime, praziquantel
17611                                                                                                               fluralaner
17615                                                                                                                 fipronil
17627                                                                                                               fluralaner
17633                                                                                                               moxidectin
17659                                                                                                         milbemycin oxime
17672                                                                                               milbemycin oxime, spinosad
17673                                                                                               milbemycin oxime, spinosad
17680                                                                                                               prednisone
17697                                                                                               milbemycin oxime, spinosad
17702                                                                               dextromethorphan hydrobromide, guaifenesin
17703                                                                                              lufenuron, milbemycin oxime
17719                                                                                              lufenuron, milbemycin oxime
17720                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
17722                                                                                              lufenuron, milbemycin oxime
17742                                                                             dexamethasone, neomycin sulfate, polymyxin b
17743                                                                             dexamethasone, neomycin sulfate, polymyxin b
17755                                                                                                 fipronil, (s)-methoprene
17779                                                                                   cyphenothrin, fipronil, (s)-methoprene
17780                                                                                        trimeprazine tartrate, prednisone
17781                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                   cyphenothrin, fipronil, (s)-methoprene
17798                                                                           mometasone furoate, orbifloxacin, posaconazole
17802                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                        betamethasone, gentamicin sulfate
17804                                                                                        trimeprazine tartrate, prednisone
17818                                                                                                               afoxolaner
17832                                                                                                                meloxicam
17845                                                                                                               afoxolaner
17853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17855                                                                                                               diclofenac
17856                                                                                                     prednisolone acetate
17860                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17863                                                                                                                  omega 3
17865                                                                                                 urinary tract supplement
17882                                                                                        betamethasone, gentamicin sulfate
17955                                                                                                         milbemycin oxime
17957                                                                          betamethasone, clotrimazole, gentamicin sulfate
18023                                                                                                         milbemycin oxime
18024                                                                                                               afoxolaner
18055                                                                           dexamethasone, neomycin sulfate, thiabendazole
18056                                                                                          atropine sulfate, diphenoxylate
18057                                                                                                               afoxolaner
18058                                                                                             ivermectin, pyrantel pamoate
18072                                                                                               milbemycin oxime, spinosad
18074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                lufenuron, milbemycin oxime, praziquantel
18094                                                                                             ivermectin, pyrantel pamoate
18095                                                                                                               afoxolaner
18096                                                                           mometasone furoate, orbifloxacin, posaconazole
18098                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18114                                                                                                                vitamin e
18115                                                                                              lufenuron, milbemycin oxime
18116                                                                                                 imidacloprid, permethrin
18118                                                                                               imidacloprid, pyriproxyfen
18119                                                                                              lufenuron, milbemycin oxime
18124                                                                                              lufenuron, milbemycin oxime
18134                                                                                        betamethasone, gentamicin sulfate
18141                                                                                           polysulfated glycosaminoglycan
18147                                                                                                               isoflurane
18159                                                                           mometasone furoate, orbifloxacin, posaconazole
18164                                                                           mometasone furoate, orbifloxacin, posaconazole
18165                                                                                                 ear cleaner (oti-soothe)
18188                                                                               dextromethorphan hydrobromide, guaifenesin
18192                                                                                             ivermectin, pyrantel pamoate
18193                                                                                                               ivermectin
18195                                                                                                               grapiprant
18199                                                                                        trimeprazine tartrate, prednisone
18202                                                                                                               ivermectin
18205                                                                                                               ivermectin
18213                                                                                                 imidacloprid, permethrin
18214                                                                                             ivermectin, pyrantel pamoate
18215                                                                                                                carprofen
18216                                                                                                               loratadine
18217                                                                                                               fluralaner
18218                                                                                                         milbemycin oxime
18220                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18221                                                                                                               lokivetmab
18222                                                                                                         milbemycin oxime
18238                                                                                                           dental sealant
18249                                                                                                             ketoconazole
18251                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
18252                                                                                                             ketoconazole
18258                                                                                    dinotefuran, permethrin, pyriproxyfen
18260                                                                                               milbemycin oxime, spinosad
18262                                                                                    dinotefuran, permethrin, pyriproxyfen
18263                                                                                      allergy immunotherapy - unspecified
18264                                                                                               milbemycin oxime, spinosad
18266                                                                                               milbemycin oxime, spinosad
18271                                                                                      allergy immunotherapy - unspecified
18275                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                         phytosphingosine
18277                                                                                                             fenbendazole
18323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18325                                                                                         burow's solution, hydrocortisone
18326                                                                                                  ketoconazole, tris-edta
18329                                                                                                         pyrantel pamoate
18330                                                                                                                ponazuril
18337                                                                                             ivermectin, pyrantel pamoate
18338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                             ivermectin, pyrantel pamoate
18340                                                                                                               afoxolaner
18341                                                                                                                  omega 3
18342                                                                                             ivermectin, pyrantel pamoate
18343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18344                                                                                             ivermectin, pyrantel pamoate
18345                                                                                                   acetaminophen, codeine
18365                                                                                             ivermectin, pyrantel pamoate
18366                                                                                                               afoxolaner
18370                                                                                             ivermectin, pyrantel pamoate
18371                                                                                                               afoxolaner
18373                                                                                             ivermectin, pyrantel pamoate
18374                                                                                                               afoxolaner
18404                                                                                                  ketoconazole, tris-edta
18415                                                                                             ivermectin, pyrantel pamoate
18427                                                                                                                     edta
18441                                                                                        trimeprazine tartrate, prednisone
18459                                                                                              lufenuron, milbemycin oxime
18460                                                                                              lufenuron, milbemycin oxime
18461                                                                                                               fluralaner
18464                                                                                                               cephalexin
18466                                                                                neomycin sulfate, polymyxin b, gramicidin
18467                                                                                             ivermectin, pyrantel pamoate
18469                                                                                                             cyclosporine
18470                                                                                             ivermectin, pyrantel pamoate
18471                                                                                                             cyclosporine
18472                                                                                             ivermectin, pyrantel pamoate
18479                                                                                               milbemycin oxime, spinosad
18480                                                                                               milbemycin oxime, spinosad
18483                                                                                               milbemycin oxime, spinosad
18489                                                                                             ivermectin, pyrantel pamoate
18490                                                                                              lufenuron, milbemycin oxime
18494                                                                                              lufenuron, milbemycin oxime
18495                                                                                             ivermectin, pyrantel pamoate
18500                                                                                             ivermectin, pyrantel pamoate
18502                                                                                           milbemycin oxime, praziquantel
18512                                                                                                               ivermectin
18514                                                                                               imidacloprid, pyriproxyfen
18520                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18525                                                                                                               afoxolaner
18534                                                                                                                probiotic
18543                                                                          betamethasone, clotrimazole, gentamicin sulfate
18562                                                                                                        ferrum metallicum
18565                                                                                               imidacloprid, pyriproxyfen
18571                                                                                             ivermectin, pyrantel pamoate
18572                                                                                                               afoxolaner
18576                                                                                             ivermectin, pyrantel pamoate
18577                                                                                                               afoxolaner
18580                                                                                             ivermectin, pyrantel pamoate
18588                                                                                                               prednisone
18591                                                                                        betamethasone, gentamicin sulfate
18595                                                                                               imidacloprid, pyriproxyfen
18609                                                                                                                trazodone
18612                                                                                                            levetiracetam
18621                                                                             florfenicol, mometasone furoate, terbinafine
18649                                                                                                               nitenpyram
18685                                                                                       amoxicillin, clavulanate potassium
18686                                                                                             ivermectin, pyrantel pamoate
18687                                                                          betamethasone, clotrimazole, gentamicin sulfate
18688                                                                                                            levothyroxine
18689                                                                                                           chlorphenamine
18690                                                                                                               ivermectin
18694                                                                                              lufenuron, milbemycin oxime
18696                                                                                                   cyphenothrin, fipronil
18697                                                                                              lufenuron, milbemycin oxime
18703                                                                                             ivermectin, pyrantel pamoate
18707                                                                                             ivermectin, pyrantel pamoate
18716                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18718                                                                                        betamethasone, gentamicin sulfate
18729                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
18734                                                                                               milbemycin oxime, spinosad
18735                                                                                                               nitenpyram
18736                                                                                               milbemycin oxime, spinosad
18743                                                                                                               ivermectin
18750                                                                                             ivermectin, pyrantel pamoate
18753                                                                                                                carprofen
18774                                                                                               milbemycin oxime, spinosad
18775                                                                                               milbemycin oxime, spinosad
18795                                                                                             ivermectin, pyrantel pamoate
18796                                                                                                   cyphenothrin, fipronil
18797                                                                                             ivermectin, pyrantel pamoate
18798                                                                                                   cyphenothrin, fipronil
18799                                                                                             ivermectin, pyrantel pamoate
18800                                                                                             ivermectin, pyrantel pamoate
18820                                                                                                      ear cleaner (zymox)
18821                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18829                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18837                                                                                               milbemycin oxime, spinosad
18838                                                                                                                  omega 3
18839                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18844                                                                                                 skin and coat supplement
18845                                                                                                         milbemycin oxime
18847                                                                                                                  omega 3
18850                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18851                                                                                                              oclacitinib
18852                                                                                                               fluralaner
18853                                                                                                         milbemycin oxime
18854                                                                                                                  omega 3
18882                                                               dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18904                                                                                                            methocarbamol
18905                                                                                                            buprenorphine
18908                                                                                                               ivermectin
18909                                                                                                 imidacloprid, permethrin
18919                                                                                                 flumethrin, imidacloprid
18921                                                                                                 flumethrin, imidacloprid
18924                                                                                              lufenuron, milbemycin oxime
18933                                                                                                               fluralaner
18935                                                                                             ivermectin, pyrantel pamoate
18936                                                                                                 flumethrin, imidacloprid
18937                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18961                                                                                                                probiotic
18964                                                                                                                probiotic
18970                                                                                                                probiotic
18987                                                                                             ivermectin, pyrantel pamoate
18988                                                                                                                probiotic
18989                                                                                                 joint supplement (other)
18991                                                                                             ivermectin, pyrantel pamoate
18993                                                                                                                probiotic
18997                                                                                                   acetaminophen, codeine
18998                                                                                                       maropitant citrate
19003                                                                                                 fipronil, (s)-methoprene
19004                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                        betamethasone, gentamicin sulfate
19006                                                                                                        hypochlorous acid
19008                                                                                                               wind toxin
19009                                                                                                            stomach happy
19015                                                                                                               cetirizine
19019                                                                                                   acetaminophen, codeine
19021                                                                                           polysulfated glycosaminoglycan
19022                                                                                               milbemycin oxime, spinosad
19023                                                                          betamethasone, clotrimazole, gentamicin sulfate
19025                                                                                              lufenuron, milbemycin oxime
19040                                                                                               milbemycin oxime, spinosad
19041                                                                                                         milbemycin oxime
19055                                                                                                 fipronil, (s)-methoprene
19056                                                                                                             multivitamin
19057                                                                          dexamethasone, enrofloxacin, miconazole nitrate
19061                                                                                                 fipronil, (s)-methoprene
19062                                                                                             ivermectin, pyrantel pamoate
19068                                                                                             ivermectin, pyrantel pamoate
19070                                                                                              lufenuron, milbemycin oxime
19072                                                                                                 fipronil, (s)-methoprene
19073                                                                                              lufenuron, milbemycin oxime
19078                                                                                              lufenuron, milbemycin oxime
19082                                                                                                 fipronil, (s)-methoprene
19122                                                                                                 imidacloprid, permethrin
19130                                                                                                               fluralaner
19152                                                                               dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                               afoxolaner
19154                                                                                                         milbemycin oxime
19159                                                                                                                lomustine
19165                                                                                             ivermectin, pyrantel pamoate
19169                                                                                                               ivermectin
19170                                                                                                 fipronil, (s)-methoprene
19183                                                                                                 flumethrin, imidacloprid
19184                                                                                                               ivermectin
19213                                                                                                         pyrantel pamoate
19214                                                                                                              toltrazuril
19215                                                                                              lufenuron, milbemycin oxime
19216                                                                                    dinotefuran, permethrin, pyriproxyfen
19217                                                                                    dinotefuran, permethrin, pyriproxyfen
19220                                                                                             ivermectin, pyrantel pamoate
19221                                                                                             ivermectin, pyrantel pamoate
19222                                                                                                               fluralaner
19223                                                                                             ivermectin, pyrantel pamoate
19224                                                                                                 flumethrin, imidacloprid
19241                                                                                                     cefpodoxime proxetil
19242                                                                                                                carprofen
19246                                                                                                 joint supplement (other)
19252                                                                                                            ciprofloxacin
19253                                                                                                     cefpodoxime proxetil
19254                                                                                                               prednisone
19255                                                                                             ivermectin, pyrantel pamoate
19256                                                                                             ivermectin, pyrantel pamoate
19257                                                                                                         milbemycin oxime
19258                                                                                                         milbemycin oxime
19259                                                                                                         milbemycin oxime
19271                                                                                              lufenuron, milbemycin oxime
19272                                                                                                               fluralaner
19273                                                                                              lufenuron, milbemycin oxime
19276                                                                             florfenicol, mometasone furoate, terbinafine
19278                                                                                              lufenuron, milbemycin oxime
19281                                                                                              lufenuron, milbemycin oxime
19282                                                                                                               fluralaner
19288                                                                             florfenicol, mometasone furoate, terbinafine
19298                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                             florfenicol, mometasone furoate, terbinafine
19318                                                                                                 fipronil, (s)-methoprene
19325                                                                                                     prednisolone acetate
19326                                                                                              lufenuron, milbemycin oxime
19327                                                                                                 imidacloprid, permethrin
19331                                                                                                            metronidazole
19335                                                                                                     cefpodoxime proxetil
19336                                                                                                                carprofen
19338                                                                                                         liver supplement
19350                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
19353                                                                                           polysulfated glycosaminoglycan
19354                                                                                                             chlorambucil
19356                                                                                                               ivermectin
19357                                                                                                         milbemycin oxime
19373                                                                                             ivermectin, pyrantel pamoate
19386                                                                                              lufenuron, milbemycin oxime
19387                                                                                              lufenuron, milbemycin oxime
19390                                                                                        betamethasone, gentamicin sulfate
19391                                                                                              lufenuron, milbemycin oxime
19423                                                                               ivermectin, praziquantel, pyrantel pamoate
19427                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19445                                                                                              lufenuron, milbemycin oxime
19446                                                                                                   cyphenothrin, fipronil
19447                                                                                              lufenuron, milbemycin oxime
19448                                                                                                               fluralaner
19449                                                                               joint supplement (chondroitin sulfate/msm)
19450                                                                                                                  omega 3
19451                                                                                                            metronidazole
19452                                                                                    chlorhexidine gluconate, ketoconazole
19453                                                                          betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                  ketoconazole, tris-edta
19457                                                                                              lufenuron, milbemycin oxime
19462                                                                                              lufenuron, milbemycin oxime
19463                                                                                                               fluralaner
19464                                                                                                             enrofloxacin
19465                                                                                           ketoconazole, phytosphingosine
19476                                                                                                                meloxicam
19482                                                                                             ivermectin, pyrantel pamoate
19486                                                                                             ivermectin, pyrantel pamoate
19487                                                                                                               afoxolaner
19491                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19492                                                                                             ivermectin, pyrantel pamoate
19493                                                                                                               afoxolaner
19495                                                                               toothpaste/dental health solution or chews
19500                                                                                        betamethasone, gentamicin sulfate
19537                                                                                                               ivermectin
19567                                                                                                             ketoconazole
19568                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
19596                                                                                lufenuron, milbemycin oxime, praziquantel
19603                                                                                               milbemycin oxime, spinosad
19617                                                                                                 fipronil, (s)-methoprene
19641                                                                                                            yunnan baiyao
19651                                                                             dexamethasone, neomycin sulfate, polymyxin b
19662                                                                                                                probiotic
19663                                                                                       amoxicillin, clavulanate potassium
19673                                                                                             ivermectin, pyrantel pamoate
19674                                                                                                                sarolaner
19684                                                                                              lufenuron, milbemycin oxime
19685                                                                                              lufenuron, milbemycin oxime
19686                                                                                              lufenuron, milbemycin oxime
19688                                                                                              lufenuron, milbemycin oxime
19689                                                                                              lufenuron, milbemycin oxime
19690                                                                          betamethasone, clotrimazole, gentamicin sulfate
19708                                                                                             ivermectin, pyrantel pamoate
19710                                                                                             ivermectin, pyrantel pamoate
19711                                                                                lufenuron, milbemycin oxime, praziquantel
19712                                                                                                 flumethrin, imidacloprid
19713                                                                                lufenuron, milbemycin oxime, praziquantel
19714                                                                                                 flumethrin, imidacloprid
19715                                                                                              lufenuron, milbemycin oxime
19716                                                                                                 flumethrin, imidacloprid
19717                                                                                              lufenuron, milbemycin oxime
19718                                                                                                 flumethrin, imidacloprid
19722                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19735                                                                          betamethasone, clotrimazole, gentamicin sulfate
19737                                                                          betamethasone, clotrimazole, gentamicin sulfate
19741                                                                                              lufenuron, milbemycin oxime
19754                                                                                                         milbemycin oxime
19767                                                                                         naphazoline, pheniramine maleate
19768                                                                                                               selamectin
19771                                                                                               milbemycin oxime, spinosad
19776                                                                                               milbemycin oxime, spinosad
19777                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                          dexmedetomidine
19788                                                                              chlorhexidine gluconate, miconazole nitrate
19790                                                                                                                mupirocin
19792                                                                                       chlorhexidine gluconate, ophytrium
19801                                                                                                               fluralaner
19803                                                                                              lufenuron, milbemycin oxime
19823                                                                                                       gentamicin sulfate
19828                                                                                           milbemycin oxime, praziquantel
19829                                                                                    dinotefuran, permethrin, pyriproxyfen
19838                                                                                                              omega 3-6-9
19843                                                                           mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                               lokivetmab
19845                                                                           mometasone furoate, orbifloxacin, posaconazole
19851                                                                                                               ivermectin
19856                                                                                                         milbemycin oxime
19860                                                                                                                carprofen
19866                                                                                        betamethasone, gentamicin sulfate
19876                                                                                                            marbofloxacin
19881                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19888                                                                               ivermectin, praziquantel, pyrantel pamoate
19907                                                                                               milbemycin oxime, spinosad
19909                                                                                                         milbemycin oxime
19911                                                                               toothpaste/dental health solution or chews
19912                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19914                                                                                                     prebiotic, probiotic
19917                                                                                     diatomaceous earth, neem oil, yarrow
19925                                                                                                             enrofloxacin
19926                                                                                                              florfenicol
19927                                                                                                       gentamicin sulfate
19928                                                                                                              polymyxin b
19930                                                                                               milbemycin oxime, spinosad
19932                                                                                               milbemycin oxime, spinosad
19933                                                                                               milbemycin oxime, spinosad
19944                                                                                       joint supplement (glucosamine hcl)
19945                                                                                                                  omega 3
19946                                                                                               milbemycin oxime, spinosad
19947                                                                                       joint supplement (glucosamine hcl)
19948                                                                                                                  omega 3
19949                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                  omega 3
19952                                                                                                         pyrantel pamoate
19958                                                                                                 flumethrin, imidacloprid
19969                                                                                        betamethasone, gentamicin sulfate
19975                                                                                             ivermectin, pyrantel pamoate
19984                                                                                                               fluralaner
20001                                                                                                              doxycycline
20002                                                                                                               cephalexin
20003                                                                                             ivermectin, pyrantel pamoate
20006                                                                                       amoxicillin, clavulanate potassium
20007                                                                                        betamethasone, gentamicin sulfate
20019                                                                                             ivermectin, pyrantel pamoate
20020                                                                                                               afoxolaner
20024                                                                                                                probiotic
20025                                                                                                     digestive supplement
20026                                                                                                             multivitamin
20027                                                                                                               afoxolaner
20028                                                                                             ivermectin, pyrantel pamoate
20038                                                                                                               afoxolaner
20039                                                                                                               ivermectin
20065                                                                                                             imidacloprid
20068                                                                                                               nitenpyram
20069                                                                                    chlorhexidine gluconate, ketoconazole
20070                                                                                                 imidacloprid, moxidectin
20072                                                                                                               ivermectin
20074                                                                                               milbemycin oxime, spinosad
20096                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20099                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20105                                                                                                         atropine sulfate
20106                                                                                                                 xylazine
20125                                                                                                  triamcinolone acetonide
20126                                                                                                               ivermectin
20127                                                                                                               afoxolaner
20130                                                                                                  acetic acid, boric acid
20131                                                                                                         milbemycin oxime
20135                                                                                           milbemycin oxime, praziquantel
20144                                                                                                         milbemycin oxime
20145                                                                                                               lokivetmab
20149                                                                                                         burow's solution
20150                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20164                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20173                                                                                                 imidacloprid, permethrin
20174                                                                                              lufenuron, milbemycin oxime
20175                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20182                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20193                                                                                   joint supplement (glucosamine hcl/msm)
20218                                                                                                               ivermectin
20219                                                                                                               ivermectin
20220                                                                                                               ivermectin
20221                                                                                                               afoxolaner
20222                                                                                                               afoxolaner
20224                                                                                                               afoxolaner
20225                                                                                                     cefpodoxime proxetil
20231                                                                                                                ketotifen
20232                                                                                               imidacloprid, pyriproxyfen
20233                                                                                              lufenuron, milbemycin oxime
20234                                                                             dexamethasone, neomycin sulfate, polymyxin b
20240                                                                                                 imidacloprid, permethrin
20241                                                                                               imidacloprid, pyriproxyfen
20243                                                                                       fipronil, permethrin, pyriproxyfen
20244                                                                                                               ivermectin
20245                                                                                             ivermectin, pyrantel pamoate
20251                                                                                                                probiotic
20272                                                                               toothpaste/dental health solution or chews
20275                                                                                              lufenuron, milbemycin oxime
20282                                                                                              lufenuron, milbemycin oxime
20292                                                                                                               ivermectin
20293                                                                                    dinotefuran, permethrin, pyriproxyfen
20295                                                                                    dinotefuran, permethrin, pyriproxyfen
20297                                                                                                 imidacloprid, moxidectin
20298                                                                                                               tobramycin
20299                                                                             florfenicol, mometasone furoate, terbinafine
20300                                                                                                 imidacloprid, moxidectin
20301                                                                                                 flumethrin, imidacloprid
20302                                                                                                 imidacloprid, moxidectin
20303                                                                                                 flumethrin, imidacloprid
20306                                                                                              lufenuron, milbemycin oxime
20307                                                                                                               cetirizine
20312                                                                                              lufenuron, milbemycin oxime
20315                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20337                                                                                                  ketoconazole, tris-edta
20339                                                                                                  acetic acid, boric acid
20340                                                                                                      silver sulfadiazine
20342                                                                                                                pramoxine
20343                                                                                        trimeprazine tartrate, prednisone
20344                                                                                               milbemycin oxime, spinosad
20348                                                                                             ivermectin, pyrantel pamoate
20356                                                                                           milbemycin oxime, praziquantel
20374                                                                                                             fenbendazole
20376                                                                                                                probiotic
20377                                                                                              lufenuron, milbemycin oxime
20380                                                                                                                probiotic
20382                                                                                 febantel, praziquantel, pyrantel pamoate
20387                                                                                              lufenuron, milbemycin oxime
20388                                                                                              lufenuron, milbemycin oxime
20390                                                                                              lufenuron, milbemycin oxime
20392                                                                               dimethyl sulfoxide, fluocinolone acetonide
20393                                                                                                                mupirocin
20402                                                                                              lufenuron, milbemycin oxime
20405                                                                                           milbemycin oxime, praziquantel
20406                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
20409                                                                                           milbemycin oxime, praziquantel
20411                                                                                           milbemycin oxime, praziquantel
20413                                                                                                         milbemycin oxime
20425                                                                                              lufenuron, milbemycin oxime
20426                                                                                lufenuron, milbemycin oxime, praziquantel
20441                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20442                                                                                                               cephalexin
20444                                                                                                                meloxicam
20446                                                                                                                meloxicam
20453                                                                                              lufenuron, milbemycin oxime
20460                                                                                              lufenuron, milbemycin oxime
20485                                                                                                                mupirocin
20490                                                                                             ivermectin, pyrantel pamoate
20491                                                                                                               afoxolaner
20510                                                                                               sulfadiazine, trimethoprim
20511                                                                                             ivermectin, pyrantel pamoate
20512                                                                                                               afoxolaner
20516                                                                                             ivermectin, pyrantel pamoate
20517                                                                                                               afoxolaner
20518                                                                                                                  omega 3
20554                                                                                               milbemycin oxime, spinosad
20555                                                                                               milbemycin oxime, spinosad
20561                                                                                               milbemycin oxime, spinosad
20565                                                                                               milbemycin oxime, spinosad
20568                                                                                               milbemycin oxime, spinosad
20574                                                                                                  ketoconazole, tris-edta
20577                                                                                       chlorhexidine gluconate, tris-edta
20579                                                                                               milbemycin oxime, spinosad
20582                                                                                               milbemycin oxime, spinosad
20585                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20615                                                                                               imidacloprid, pyriproxyfen
20623                                                                                                                probiotic
20636                                                                                                 fipronil, (s)-methoprene
20637                                                                                                               ivermectin
20638                                                                                       fipronil, permethrin, pyriproxyfen
20640                                                                                             ivermectin, pyrantel pamoate
20641                                                                 citronella, geranium oil, lemongrass oil, peppermint oil
20642                                                                                                 fipronil, (s)-methoprene
20645                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20648                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20651                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20659                                                                                                  jing tang max's formula
20666                                                                                                immune support supplement
20667                                                                                                                probiotic
20678                                                                                                              finasteride
20698                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20701                                                                                               imidacloprid, pyriproxyfen
20702                                                                                             ivermectin, pyrantel pamoate
20704                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20705                                                                                                  chlorhexidine gluconate
20707                                                                                               milbemycin oxime, spinosad
20708                                                                                                  chlorhexidine gluconate
20709                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20712                                                                                                        unspecified wipes
20717                                                                                                         milbemycin oxime
20718                                                                                                         milbemycin oxime
20728                                                                                                              amoxicillin
20738                                                                                                               prednisone
20745                                                                                        betamethasone, gentamicin sulfate
20748                                                                                             ivermectin, pyrantel pamoate
20750                                                                          betamethasone, clotrimazole, gentamicin sulfate
20761                                                                                               milbemycin oxime, spinosad
20762                                                                                               milbemycin oxime, spinosad
20763                                                                                               milbemycin oxime, spinosad
20766                                                                                               milbemycin oxime, spinosad
20767                                                                                               milbemycin oxime, spinosad
20771                                                                                       amoxicillin, clavulanate potassium
20783                                                                                               milbemycin oxime, spinosad
20791                                                                                   joint supplement (glucosamine hcl/msm)
20796                                                                                   joint supplement (glucosamine hcl/msm)
20800                                                                                                         milbemycin oxime
20808                                                                                             ivermectin, pyrantel pamoate
20809                                                                                                               afoxolaner
20814                                                                                        betamethasone, gentamicin sulfate
20817                                                                                               milbemycin oxime, spinosad
20819                                                                                               milbemycin oxime, spinosad
20820                                                                                                                  omega 3
20849                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20852                                                                                        trimeprazine tartrate, prednisone
20854                                                                                             ivermectin, pyrantel pamoate
20855                                                                                                               afoxolaner
20857                                                                                                               afoxolaner
20858                                                                                             ivermectin, pyrantel pamoate
20859                                                                                                               afoxolaner
20860                                                                                                                trazodone
20861                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20862                                                                                             ivermectin, pyrantel pamoate
20863                                                                                                               afoxolaner
20872                                                                                                               selamectin
20897                                                                                                                mupirocin
20918                                                                                        trimeprazine tartrate, prednisone
20939                                                                                                 flumethrin, imidacloprid
20940                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20941                                                                                                             multivitamin
20947                                                                                                 flumethrin, imidacloprid
20949                                                                                                 flumethrin, imidacloprid
20962                                                                                             ivermectin, pyrantel pamoate
20963                                                                                                 fipronil, (s)-methoprene
20964                                                                                             ivermectin, pyrantel pamoate
20965                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20966                                                                                             ivermectin, pyrantel pamoate
20972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21003                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21013                                                                             dexamethasone, neomycin sulfate, polymyxin b
21017                                                                                chlorhexidine gluconate, phytosphingosine
21022                                                                                               milbemycin oxime, spinosad
21025                                                                                        trimeprazine tartrate, prednisone
21029                                                                                               milbemycin oxime, spinosad
21069                                                                                                               cephalexin
21070                                                                                                               fluralaner
21071                                                                                                         milbemycin oxime
21074                                                                                               milbemycin oxime, spinosad
21078                                                                                               milbemycin oxime, spinosad
21080                                                                                               milbemycin oxime, spinosad
21088                                                                                                                 niosomes
21102                                                                                                               selamectin
21109                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21110                                                                                              lufenuron, milbemycin oxime
21111                                                                          betamethasone, clotrimazole, gentamicin sulfate
21112                                                                                                  ketoconazole, tris-edta
21114                                                                                                         milbemycin oxime
21115                                                                                                                 fipronil
21116                                                                                                         sulfadimethoxine
21117                                                                                                     cefpodoxime proxetil
21118                                                                                                                carprofen
21119                                                                               dextromethorphan hydrobromide, guaifenesin
21122                                                                                                         milbemycin oxime
21123                                                                                                                 fipronil
21124                                                                           dexamethasone, neomycin sulfate, thiabendazole
21125                                                                           mometasone furoate, orbifloxacin, posaconazole
21126                                                                                                     cefpodoxime proxetil
21127                                                                                              lufenuron, milbemycin oxime
21128                                                                                                               prednisone
21129                                                                                                     cefpodoxime proxetil
21130                                                                                                                  omega 3
21131                                                                                       chlorhexidine gluconate, ophytrium
21132                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21133                                                                                              lufenuron, milbemycin oxime
21168                                                                                             ivermectin, pyrantel pamoate
21169                                                                                                 fipronil, (s)-methoprene
21170                                                                                             ivermectin, pyrantel pamoate
21172                                                                                                         milbemycin oxime
21178                                                                             dexamethasone, neomycin sulfate, polymyxin b
21179                                                                                              lufenuron, milbemycin oxime
21180                                                                                               milbemycin oxime, spinosad
21181                                                                                              lufenuron, milbemycin oxime
21182                                                                                              lufenuron, milbemycin oxime
21183                                                                                              lufenuron, milbemycin oxime
21189                                                                                               milbemycin oxime, spinosad
21190                                                                                               milbemycin oxime, spinosad
21192                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
21201                                                                                           milbemycin oxime, praziquantel
21224                                                                                                             erythromycin
21253                                                                                               milbemycin oxime, spinosad
21254                                                                                              lufenuron, milbemycin oxime
21256                                                                                              lufenuron, milbemycin oxime
21267                                                                                               milbemycin oxime, spinosad
21268                                                                          betamethasone, clotrimazole, gentamicin sulfate
21269                                                                                               milbemycin oxime, spinosad
21273                                                                                              lufenuron, milbemycin oxime
21278                                                                          betamethasone, clotrimazole, gentamicin sulfate
21282                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21287                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21309                                                                                        trimeprazine tartrate, prednisone
21326                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21328                                                                                                              hydroxyzine
21331                                                                                       joint supplement (glucosamine hcl)
21336                                                                                           sulfamethoxazole, trimethoprim
21337                                                                                             ivermectin, pyrantel pamoate
21338                                                                                               imidacloprid, pyriproxyfen
21348                                                                                                            levothyroxine
21359                                                                                              lufenuron, milbemycin oxime
21361                                                                                              lufenuron, milbemycin oxime
21364                                                                                                              amoxicillin
21367                                                                                                                meloxicam
21369                                                                                              lufenuron, milbemycin oxime
21374                                                                                                            metronidazole
21384                                                                                             ivermectin, pyrantel pamoate
21385                                                                                                               afoxolaner
21386                                                                          betamethasone, clotrimazole, gentamicin sulfate
21387                                                                                                             enrofloxacin
21388                                                                                                             ketoconazole
21389                                                                                                  triamcinolone acetonide
21394                                                                                             ivermectin, pyrantel pamoate
21403                                                                                                         milbemycin oxime
21413                                                                                                   unspecified medication
21416                                                                             florfenicol, mometasone furoate, terbinafine
21442                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21445                                                                                             ivermectin, pyrantel pamoate
21448                                                                                             ivermectin, pyrantel pamoate
21449                                                                                                               afoxolaner
21460                                                                                              lufenuron, milbemycin oxime
21465                                                                                                               gabapentin
21472                                                                                       amoxicillin, clavulanate potassium
21481                                                                                               imidacloprid, pyriproxyfen
21491                                                                                                       gentamicin sulfate
21492                                                                                             ivermectin, pyrantel pamoate
21493                                                                                                               afoxolaner
21495                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21498                                                                                                               lokivetmab
21504                                                                                                             fenbendazole
21507                                                                                                             fenbendazole
21508                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21509                                                                                                         pyrantel pamoate
21522                                                                                  betamethasone, florfenicol, terbinafine
21527                                                                                                 imidacloprid, moxidectin
21528                                                                                                             imidacloprid
21531                                                                                             ivermectin, pyrantel pamoate
21532                                                                                             ivermectin, pyrantel pamoate
21533                                                                                                               afoxolaner
21534                                                                                           polysulfated glycosaminoglycan
21535                                                                                                              oclacitinib
21545                                                                                                               fluralaner
21546                                                                             florfenicol, mometasone furoate, terbinafine
21547                                                                                                               cephalexin
21548                                                                                                               cephalexin
21549                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21552                                                                                           ketoconazole, phytosphingosine
21553                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21554                                                                                                            dexamethasone
21555                                                                                                            dexamethasone
21558                                                                                              lufenuron, milbemycin oxime
21562                                                                                               imidacloprid, pyriproxyfen
21563                                                                                              lufenuron, milbemycin oxime
21564                                                                                               imidacloprid, pyriproxyfen
21585                                                                                               milbemycin oxime, spinosad
21586                                                                                                         milbemycin oxime
21587                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21593                                                                                                                  omega 3
21600                                                                                                                meloxicam
21602                                                                                              lufenuron, milbemycin oxime
21603                                                                                                               fluralaner
21604                                                                                       amoxicillin, clavulanate potassium
21605                                                                                                                meloxicam
21606                                                                                                                 tramadol
21607                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21608                                                                                              lufenuron, milbemycin oxime
21609                                                                                                               fluralaner
21612                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21614                                                                                                               fluralaner
21615                                                                                              lufenuron, milbemycin oxime
21616                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21617                                                                                              lufenuron, milbemycin oxime
21618                                                                                                               fluralaner
21619                                                                                              lufenuron, milbemycin oxime
21620                                                                                                               fluralaner
21621                                                                                              lufenuron, milbemycin oxime
21622                                                                                                               fluralaner
21625                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21632                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21637                                                                             dexamethasone, neomycin sulfate, polymyxin b
21642                                                                                              lufenuron, milbemycin oxime
21643                                                                                              lufenuron, milbemycin oxime
21644                                                                                              lufenuron, milbemycin oxime
21645                                                                                              lufenuron, milbemycin oxime
21646                                                                                              lufenuron, milbemycin oxime
21648                                                                                               imidacloprid, pyriproxyfen
21649                                                                                              lufenuron, milbemycin oxime
21650                                                                                                                probiotic
21651                                                                                              lufenuron, milbemycin oxime
21652                                                                                                 flumethrin, imidacloprid
21653                                                                                                      ear cleaner (zymox)
21654                                                                                              lufenuron, milbemycin oxime
21655                                                                                                 flumethrin, imidacloprid
21658                                                                                                 flumethrin, imidacloprid
21659                                                                                                      ear cleaner (zymox)
21660                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21661                                                                                        betamethasone, gentamicin sulfate
21666                                                                                                 flumethrin, imidacloprid
21673                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21677                                                                                                                probiotic
21678                                                                                        betamethasone, gentamicin sulfate
21680                                                                             florfenicol, mometasone furoate, terbinafine
21685                                                                                                                mupirocin
21701                                                                                                 flumethrin, imidacloprid
21705                                                                                                 flumethrin, imidacloprid
21707                                                                                                 flumethrin, imidacloprid
21708                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21723                                                                                               milbemycin oxime, spinosad
21725                                                                                                         milbemycin oxime
21727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21739                                                                                              lufenuron, milbemycin oxime
21748                                                                                              lufenuron, milbemycin oxime
21749                                                                                                 imidacloprid, permethrin
21753                                                                                                         milbemycin oxime
21754                                                                                                         milbemycin oxime
21755                                                                                                               fluralaner
21757                                                                                                         milbemycin oxime
21767                                                                                                                trazodone
21782                                                                                             ivermectin, pyrantel pamoate
21783                                                                                   fipronil, pyriproxyfen, (s)-methoprene
21796                                                                                                               ivermectin
21809                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21810                                                                                               cardiac support supplement
21814                                                                                             ivermectin, pyrantel pamoate
21815                                                                                                 fipronil, (s)-methoprene
21833                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21844                                                                                             ivermectin, pyrantel pamoate
21851                                                                                                         milbemycin oxime
21865                                                                                             ivermectin, pyrantel pamoate
21866                                                                                               imidacloprid, pyriproxyfen
21867                                                                                 febantel, praziquantel, pyrantel pamoate
21869                                                                                                               ivermectin
21872                                                                                               imidacloprid, pyriproxyfen
21873                                                                                             ivermectin, pyrantel pamoate
21875                                                                                             ivermectin, pyrantel pamoate
21876                                                                                               imidacloprid, pyriproxyfen
21877                                                                                                              oclacitinib
21878                                                                                                           hydrocortisone
21886                                                                                               imidacloprid, pyriproxyfen
21894                                                                                              lufenuron, milbemycin oxime
21897                                                                                              lufenuron, milbemycin oxime
21898                                                                                                               afoxolaner
21899                                                                                                             fenbendazole
21911                                                                                                          diphenhydramine
21912                                                                                             ivermectin, pyrantel pamoate
21914                                                                                                               ivermectin
21915                                                                                                 fipronil, (s)-methoprene
21918                                                                                                                probiotic
21921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21925                                                                              rx diet - hypoallergenic hydrolyzed protein
21927                                                                                                               prednisone
21949                                                                             florfenicol, mometasone furoate, terbinafine
21955                                                                                                               fluralaner
21956                                                                                                               ivermectin
21957                                                                                                                  omega 3
21959                                                                                           sulfamethoxazole, trimethoprim
21982                                                                                       fipronil, permethrin, pyriproxyfen
21993                                                                                                         milbemycin oxime
22017                                                                                             ivermectin, pyrantel pamoate
22020                                                                                         phytosphingosine, salicylic acid
22022                                                                                                               sucralfate
22023                                                                                              lufenuron, milbemycin oxime
22025                                                                                              lufenuron, milbemycin oxime
22026                                                                                              lufenuron, milbemycin oxime
22037                                                                                             ivermectin, pyrantel pamoate
22038                                                                                                               afoxolaner
22041                                                                                             ivermectin, pyrantel pamoate
22042                                                                                                               afoxolaner
22043                                                                                                                meloxicam
22045                                                                                             ivermectin, pyrantel pamoate
22046                                                                                                               afoxolaner
22048                                                                                        betamethasone, gentamicin sulfate
22050                                                                                                                probiotic
22051                                                                                               milbemycin oxime, spinosad
22060                                                                                               milbemycin oxime, spinosad
22062                                                                                                         milbemycin oxime
22064                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22088                                                                                             ivermectin, pyrantel pamoate
22089                                                                                                               afoxolaner
22092                                                                                             ivermectin, pyrantel pamoate
22093                                                                                                               afoxolaner
22112                                                                                                               afoxolaner
22118                                                                                                               ivermectin
22120                                                                             dexamethasone, neomycin sulfate, polymyxin b
22121                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22125                                                                                             ivermectin, pyrantel pamoate
22128                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22136                                                                                             ivermectin, pyrantel pamoate
22140                                                                                                         milbemycin oxime
22141                                                                                                               fluralaner
22151                                                                                                              vincristine
22160                                                                                             ivermectin, pyrantel pamoate
22161                                                                                             ivermectin, pyrantel pamoate
22162                                                                                                                carprofen
22163                                                                                             ivermectin, pyrantel pamoate
22173                                                                                             ivermectin, pyrantel pamoate
22175                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22176                                                                                             ivermectin, pyrantel pamoate
22177                                                                                                               afoxolaner
22179                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22189                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22190                                                                                          ear cleaner (epi-otic advanced)
22191                                                                             florfenicol, mometasone furoate, terbinafine
22196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22197                                                                             florfenicol, mometasone furoate, terbinafine
22199                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22201                                                                             florfenicol, mometasone furoate, terbinafine
22216                                                                                             ivermectin, pyrantel pamoate
22217                                                                                                               afoxolaner
22218                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
22219                                                                          betamethasone, clotrimazole, gentamicin sulfate
22222                                                                                              lufenuron, milbemycin oxime
22223                                                                                              lufenuron, milbemycin oxime
22224                                                                                                                 fipronil
22225                                                                                              lufenuron, milbemycin oxime
22226                                                                                                               afoxolaner
22227                                                                                              lufenuron, milbemycin oxime
22228                                                                                                               afoxolaner
22229                                                                                                         milbemycin oxime
22230                                                                                                                lotilaner
22237                                                                                               milbemycin oxime, spinosad
22238                                                                                               milbemycin oxime, spinosad
22239                                                                                               milbemycin oxime, spinosad
22240                                                                                                                carprofen
22241                                                                                                          dexmedetomidine
22243                                                                                                   unspecified medication
22245                                                                                                               cephalexin
22253                                                                                               milbemycin oxime, spinosad
22261                                                                                             ivermectin, pyrantel pamoate
22262                                                                                                               afoxolaner
22265                                                                                             ivermectin, pyrantel pamoate
22267                                                                                             ivermectin, pyrantel pamoate
22268                                                                                                               afoxolaner
22269                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22270                                                                                                                  omega 3
22272                                                                                                                mupirocin
22289                                                                                                         milbemycin oxime
22299                                                                                               milbemycin oxime, spinosad
22306                                                                                              lufenuron, milbemycin oxime
22308                                                                                              lufenuron, milbemycin oxime
22311                                                                                              lufenuron, milbemycin oxime
22313                                                                                                          dexmedetomidine
22314                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22315                                                                                                                probiotic
22316                                                                                              lufenuron, milbemycin oxime
22319                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22321                                                                                              lufenuron, milbemycin oxime
22323                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22341                                                                                  betamethasone, florfenicol, terbinafine
22342                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22343                                                                                  betamethasone, florfenicol, terbinafine
22345                                                                                                             enrofloxacin
22346                                                                                                       miconazole nitrate
22347                                                                                                            dexamethasone
22349                                                                                                                meloxicam
22351                                                                                               milbemycin oxime, spinosad
22352                                                                                               milbemycin oxime, spinosad
22353                                                                                               milbemycin oxime, spinosad
22367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22403                                                                                                                carprofen
22404                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22407                                                                                                     cefpodoxime proxetil
22408                                                                                                  chlorhexidine gluconate
22410                                                                                                  chlorhexidine gluconate
22413                                                                                             ivermectin, pyrantel pamoate
22417                                                                                             ivermectin, pyrantel pamoate
22430                                                                                                                meloxicam
22439                                                                                               milbemycin oxime, spinosad
22440                                                                                               milbemycin oxime, spinosad
22441                                                                                              lufenuron, milbemycin oxime
22459                                                                                                  triamcinolone acetonide
22463                                                                                                  triamcinolone acetonide
22482                                                                                                               lokivetmab
22520                                                                                                               sucralfate
22530                                                                                             ivermectin, pyrantel pamoate
22531                                                                                              lufenuron, milbemycin oxime
22532                                                                                              lufenuron, milbemycin oxime
22533                                                                                                 flumethrin, imidacloprid
22534                                                                                              lufenuron, milbemycin oxime
22537                                                                                                                ophytrium
22540                                                                                                            yunnan baiyao
22541                                                                                              lufenuron, milbemycin oxime
22545                                                                                              lufenuron, milbemycin oxime
22546                                                                                              lufenuron, milbemycin oxime
22547                                                                                               imidacloprid, pyriproxyfen
22548                                                                                              lufenuron, milbemycin oxime
22549                                                                                              lufenuron, milbemycin oxime
22552                                                                                                                  omega 3
22556                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
22557                                                                                             ivermectin, pyrantel pamoate
22558                                                                                             ivermectin, pyrantel pamoate
22574                                                                                                  triamcinolone acetonide
22575                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
22577                                                                                             ivermectin, pyrantel pamoate
22578                                                                                             ivermectin, pyrantel pamoate
22579                                                                                             ivermectin, pyrantel pamoate
22583                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22585                                                                                                                probiotic
22598                                                                                                 fipronil, (s)-methoprene
22599                                                                                                          diphenhydramine
22600                                                                                                     cefpodoxime proxetil
22601                                                                                                 fipronil, (s)-methoprene
22606                                                                                             ivermectin, pyrantel pamoate
22607                                                                                                 fipronil, (s)-methoprene
22610                                                                                               milbemycin oxime, spinosad
22611                                                                                               milbemycin oxime, spinosad
22625                                                                                             ivermectin, pyrantel pamoate
22653                                                                                              lufenuron, milbemycin oxime
22655                                                                                                 fipronil, (s)-methoprene
22656                                                                                              lufenuron, milbemycin oxime
22662                                                                          betamethasone, clotrimazole, gentamicin sulfate
22667                                                                          betamethasone, clotrimazole, gentamicin sulfate
22669                                                                          betamethasone, clotrimazole, gentamicin sulfate
22670                                                                                  betamethasone, florfenicol, terbinafine
22672                                                                          betamethasone, clotrimazole, gentamicin sulfate
22673                                                                                        trimeprazine tartrate, prednisone
22681                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22682                                                                                             ivermectin, pyrantel pamoate
22683                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22690                                                                                                 flumethrin, imidacloprid
22691                                                                                              lufenuron, milbemycin oxime
22692                                                                                              lufenuron, milbemycin oxime
22693                                                                                                         milbemycin oxime
22704                                                                                             ivermectin, pyrantel pamoate
22705                                                                                                 fipronil, (s)-methoprene
22707                                                                                             ivermectin, pyrantel pamoate
22708                                                                                                 fipronil, (s)-methoprene
22709                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22710                                                                                                       miconazole nitrate
22711                                                                                             ivermectin, pyrantel pamoate
22713                                                                                             ivermectin, pyrantel pamoate
22714                                                                                                                sarolaner
22715                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22716                                                                                             ivermectin, pyrantel pamoate
22717                                                                                                                sarolaner
22718                                                                                             ivermectin, pyrantel pamoate
22719                                                                                             ivermectin, pyrantel pamoate
22721                                                                                                       miconazole nitrate
22733                                                                                                 flumethrin, imidacloprid
22734                                                                                              lufenuron, milbemycin oxime
22748                                                                                              lufenuron, milbemycin oxime
22749                                                                                              lufenuron, milbemycin oxime
22750                                                                                               imidacloprid, pyriproxyfen
22751                                                                                              lufenuron, milbemycin oxime
22752                                                                                               imidacloprid, pyriproxyfen
22754                                                                                              lufenuron, milbemycin oxime
22763                                                                                             ivermectin, pyrantel pamoate
22764                                                                                               imidacloprid, pyriproxyfen
22765                                                                                          ear cleaner (epi-otic advanced)
22766                                                                                                         milbemycin oxime
22770                                                                                                         milbemycin oxime
22777                                                                                               milbemycin oxime, spinosad
22778                                                                                               milbemycin oxime, spinosad
22779                                                                                               milbemycin oxime, spinosad
22780                                                                                               milbemycin oxime, spinosad
22795                                                                                             ivermectin, pyrantel pamoate
22796                                                                                               imidacloprid, pyriproxyfen
22797                                                                                              lufenuron, milbemycin oxime
22798                                                                                       fipronil, permethrin, pyriproxyfen
22799                                                                                              lufenuron, milbemycin oxime
22800                                                                                                               afoxolaner
22801                                                                                              lufenuron, milbemycin oxime
22802                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22803                                                                                             ivermectin, pyrantel pamoate
22804                                                                                                               afoxolaner
22830                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22840                                                                                             ivermectin, pyrantel pamoate
22848                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22858                                                                                                  chlorhexidine gluconate
22875                                                                                               imidacloprid, pyriproxyfen
22886                                                                                                  ketoconazole, tris-edta
22909                                                                                             ivermectin, pyrantel pamoate
22910                                                                                                               afoxolaner
22911                                                                                                               fluoxetine
22912                                                                                                     prednisolone acetate
22919                                                                                                               afoxolaner
22920                                                                                                             fenbendazole
22921                                                                                                            metronidazole
22922                                                                                                  ketoconazole, tris-edta
22923                                                                                                     prebiotic, probiotic
22926                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22929                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22936                                                                                       chlorhexidine gluconate, tris-edta
22938                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22939                                                                          betamethasone, clotrimazole, gentamicin sulfate
22954                                                                                               imidacloprid, pyriproxyfen
22955                                                                                             ivermectin, pyrantel pamoate
22963                                                                                                 fipronil, (s)-methoprene
22965                                                                                             ivermectin, pyrantel pamoate
22966                                                                                                 flumethrin, imidacloprid
22967                                                                                                                probiotic
22971                                                                                             ivermectin, pyrantel pamoate
22990                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22991                                                                                                         milbemycin oxime
22992                                                                                                             imidacloprid
22994                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23005                                                                                                            dexamethasone
23006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23007                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23008                                                                                                            dexamethasone
23009                                                                                                         pyrantel pamoate
23018                                                                                                            metronidazole
23019                                                                                                                carprofen
23024                                                                                                                probiotic
23025                                                                                                     digestive supplement
23043                                                                                                 joint supplement (other)
23049                                                                                                               ivermectin
23051                                                                                                               ivermectin
23053                                                                                             ivermectin, pyrantel pamoate
23055                                                                                                               fluralaner
23059                                                                                                         milbemycin oxime
23060                                                                                                         milbemycin oxime
23061                                                                                                               fluralaner
23064                                                                                              lufenuron, milbemycin oxime
23065                                                                                              lufenuron, milbemycin oxime
23066                                                                                              lufenuron, milbemycin oxime
23083                                                                                               milbemycin oxime, spinosad
23095                                                                                               milbemycin oxime, spinosad
23096                                                                                                               fluralaner
23100                                                                             florfenicol, mometasone furoate, terbinafine
23102                                                                                       amoxicillin, clavulanate potassium
23103                                                                             florfenicol, mometasone furoate, terbinafine
23108                                                                                                  chlorhexidine gluconate
23122                                                                                             ivermectin, pyrantel pamoate
23123                                                                                               imidacloprid, pyriproxyfen
23124                                                                                               imidacloprid, pyriproxyfen
23125                                                                                             ivermectin, pyrantel pamoate
23134                                                                                              lufenuron, milbemycin oxime
23137                                                                                              lufenuron, milbemycin oxime
23138                                                                                              lufenuron, milbemycin oxime
23143                                                                                              lufenuron, milbemycin oxime
23144                                                                                                                sarolaner
23145                                                                                                            marbofloxacin
23146                                                                                                              oclacitinib
23153                                                                                                                mupirocin
23154                                                                             dexamethasone, neomycin sulfate, polymyxin b
23163                                                                           dexamethasone, neomycin sulfate, thiabendazole
23169                                                                                       unspecified heartworm preventative
23173                                                                                        unspecified parasite preventative
23175                                                                                             ivermectin, pyrantel pamoate
23184                                                                           mometasone furoate, orbifloxacin, posaconazole
23186                                                                                                              oclacitinib
23187                                                                                                               lokivetmab
23202                                                                                                               ivermectin
23237                                                                                           praziquantel, pyrantel pamoate
23248                                                                                                               fluralaner
23249                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23250                                                                                                               afoxolaner
23251                                                                                             ivermectin, pyrantel pamoate
23257                                                                                               lactated ringer's solution
23258                                                                                             ivermectin, pyrantel pamoate
23259                                                                                    dinotefuran, permethrin, pyriproxyfen
23266                                                                                                               isoflurane
23267                                                                                             ivermectin, pyrantel pamoate
23268                                                                                    dinotefuran, permethrin, pyriproxyfen
23276                                                                                                               isoflurane
23278                                                                                                         phytosphingosine
23279                                                                                             ivermectin, pyrantel pamoate
23280                                                                                                               afoxolaner
23281                                                                                                               cephalexin
23282                                                                                                              oclacitinib
23283                                                                                       chlorhexidine gluconate, ophytrium
23284                                                                                       amoxicillin, clavulanate potassium
23285                                                                                                              doxycycline
23286                                                                                             ivermectin, pyrantel pamoate
23288                                                                                                         phytosphingosine
23294                                                                                             ivermectin, pyrantel pamoate
23299                                                                                       amoxicillin, clavulanate potassium
23304                                                                                                         phytosphingosine
23305                                                                                chlorhexidine gluconate, phytosphingosine
23306                                                                                                  triamcinolone acetonide
23308                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23321                                                                                 febantel, praziquantel, pyrantel pamoate
23322                                                                                                                mupirocin
23325                                                                                                               lokivetmab
23333                                                                                             ivermectin, pyrantel pamoate
23336                                                                                             ivermectin, pyrantel pamoate
23337                                                                                                 fipronil, (s)-methoprene
23338                                                                                    dinotefuran, permethrin, pyriproxyfen
23340                                                                                          ear cleaner (epi-otic advanced)
23341                                                                                             ivermectin, pyrantel pamoate
23342                                                                                    dinotefuran, permethrin, pyriproxyfen
23344                                                                                             ivermectin, pyrantel pamoate
23345                                                                                    dinotefuran, permethrin, pyriproxyfen
23349                                                                                                         phytosphingosine
23350                                                                                             ivermectin, pyrantel pamoate
23351                                                                                                               afoxolaner
23352                                                                                                          diphenhydramine
23353                                                                                       amoxicillin, clavulanate potassium
23354                                                                                                              oclacitinib
23355                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23356                                                                                             ivermectin, pyrantel pamoate
23357                                                                                                               afoxolaner
23360                                                                                             ivermectin, pyrantel pamoate
23361                                                                                                               afoxolaner
23364                                                                                                         phytosphingosine
23366                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23384                                                                                                 fipronil, (s)-methoprene
23385                                                                                              lufenuron, milbemycin oxime
23386                                                                                                               cephalexin
23388                                                                                                               ivermectin
23403                                                                                                         milbemycin oxime
23404                                                                                                               fluralaner
23413                                                                                                               ivermectin
23414                                                                                             ivermectin, pyrantel pamoate
23419                                                                                              dexamethasone, enrofloxacin
23422                                                                             florfenicol, mometasone furoate, terbinafine
23423                                                                             florfenicol, mometasone furoate, terbinafine
23427                                                                                              lufenuron, milbemycin oxime
23428                                                                                              lufenuron, milbemycin oxime
23437                                                                                               milbemycin oxime, spinosad
23450                                                                                       fipronil, permethrin, pyriproxyfen
23452                                                                                        betamethasone, gentamicin sulfate
23455                                                                                                                carprofen
23456                                                                                        betamethasone, gentamicin sulfate
23457                                                                                                               cephalexin
23472                                                                                    dinotefuran, permethrin, pyriproxyfen
23482                                                                                    dinotefuran, permethrin, pyriproxyfen
23484                                                                                                         milbemycin oxime
23485                                                                                    dinotefuran, permethrin, pyriproxyfen
23487                                                                                    dinotefuran, permethrin, pyriproxyfen
23491                                                                                       amoxicillin, clavulanate potassium
23507                                                                                              lufenuron, milbemycin oxime
23520                                                                                    dinotefuran, permethrin, pyriproxyfen
23533                                                                             dexamethasone, neomycin sulfate, polymyxin b
23534                                                                                        betamethasone, gentamicin sulfate
23540                                                                                             ivermectin, pyrantel pamoate
23541                                                                                                               afoxolaner
23548                                                                                              lufenuron, milbemycin oxime
23552                                                                                             ivermectin, pyrantel pamoate
23553                                                                                             ivermectin, pyrantel pamoate
23555                                                                                                                thyroxine
23557                                                                                                               ivermectin
23558                                                                                                            levothyroxine
23565                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23566                                                                                      ear cleaner (zymox), hydrocortisone
23568                                                                                                 flumethrin, imidacloprid
23571                                                                                             ivermectin, pyrantel pamoate
23572                                                                                                 fipronil, (s)-methoprene
23588                                                                                               milbemycin oxime, spinosad
23589                                                                                  betamethasone, florfenicol, terbinafine
23590                                                                                                                vitamin c
23593                                                                                                            buprenorphine
23594                                                                                                               gabapentin
23610                                                                                              lufenuron, milbemycin oxime
23617                                                                                              lufenuron, milbemycin oxime
23618                                                                                              lufenuron, milbemycin oxime
23619                                                                                              lufenuron, milbemycin oxime
23620                                                                                              lufenuron, milbemycin oxime
23622                                                                                              lufenuron, milbemycin oxime
23646                                                                                               milbemycin oxime, spinosad
23647                                                                                               milbemycin oxime, spinosad
23651                                                                                           milbemycin oxime, praziquantel
23657                                                                                                         milbemycin oxime
23659                                                                                                               fluralaner
23685                                                                                              lufenuron, milbemycin oxime
23686                                                                                                               fluralaner
23688                                                                                                               fluralaner
23707                                                                                        betamethasone, gentamicin sulfate
23718                                                                                             ivermectin, pyrantel pamoate
23721                                                                                             ivermectin, pyrantel pamoate
23722                                                                                                               afoxolaner
23724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23730                                                                                              lufenuron, milbemycin oxime
23732                                                                                              lufenuron, milbemycin oxime
23733                                                                          betamethasone, clotrimazole, gentamicin sulfate
23740                                                                                                         milbemycin oxime
23747                                                                                              lufenuron, milbemycin oxime
23749                                                                                                   unspecified medication
23757                                                                                              lufenuron, milbemycin oxime
23792                                                                                             ivermectin, pyrantel pamoate
23804                                                                                              lufenuron, milbemycin oxime
23805                                                                                              lufenuron, milbemycin oxime
23808                                                                                              lufenuron, milbemycin oxime
23809                                                                                                 flumethrin, imidacloprid
23819                                                                                              lufenuron, milbemycin oxime
23825                                                                                                               cephalexin
23861                                                                                                         milbemycin oxime
23862                                                                                                               afoxolaner
23865                                                                                             ivermectin, pyrantel pamoate
23866                                                                                               imidacloprid, pyriproxyfen
23868                                                                                               imidacloprid, pyriproxyfen
23871                                                                                               imidacloprid, pyriproxyfen
23872                                                                                                  chlorhexidine gluconate
23873                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
23898                                                                                                 flumethrin, imidacloprid
23899                                                                              over-the-counter unmedicated shampoo/mousse
23900                                                                                              lufenuron, milbemycin oxime
23901                                                                                              lufenuron, milbemycin oxime
23902                                                                                                 flumethrin, imidacloprid
23905                                                                                lufenuron, milbemycin oxime, praziquantel
23906                                                                                                 flumethrin, imidacloprid
23909                                                                                                  chlorhexidine gluconate
23910                                                                                                         milbemycin oxime
23914                                                                             florfenicol, mometasone furoate, terbinafine
23917                                                                                                                mupirocin
23924                                                                                             ivermectin, pyrantel pamoate
23925                                                                                                               afoxolaner
23933                                                                                  betamethasone, florfenicol, terbinafine
23942                                                                                                                mupirocin
23955                                                                                                         milbemycin oxime
23956                                                                                                 fipronil, (s)-methoprene
23957                                                                                                            metronidazole
23958                                                                          betamethasone, clotrimazole, gentamicin sulfate
23959                                                                                                  ketoconazole, tris-edta
23965                                                                          betamethasone, clotrimazole, gentamicin sulfate
23969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23974                                                                                               imidacloprid, pyriproxyfen
23976                                                                                               imidacloprid, pyriproxyfen
23980                                                                                                             multivitamin
23989                                                                                             ivermectin, pyrantel pamoate
23990                                                                                                               afoxolaner
24008                                                                                             ivermectin, pyrantel pamoate
24010                                                                                               milbemycin oxime, spinosad
24012                                                                             dexamethasone, neomycin sulfate, polymyxin b
24017                                                                                               milbemycin oxime, spinosad
24018                                                                                               milbemycin oxime, spinosad
24019                                                                                               milbemycin oxime, spinosad
24020                                                                                               milbemycin oxime, spinosad
24022                                                                                               milbemycin oxime, spinosad
24029                                                                                               milbemycin oxime, spinosad
24044                                                                                                               ivermectin
24045                                                                                             ivermectin, pyrantel pamoate
24046                                                                                                              oclacitinib
24062                                                                                              lufenuron, milbemycin oxime
24068                                                                                                                probiotic
24069                                                                                                               ivermectin
24072                                                                                              lufenuron, milbemycin oxime
24075                                                                                              lufenuron, milbemycin oxime
24076                                                                                              lufenuron, milbemycin oxime
24077                                                                                              lufenuron, milbemycin oxime
24079                                                                                              lufenuron, milbemycin oxime
24104                                                                                                                carprofen
24106                                                                                                                 tramadol
24113                                                                                                              doxycycline
24116                                                                                                               afoxolaner
24117                                                                                             ivermectin, pyrantel pamoate
24139                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24142                                                                               ivermectin, praziquantel, pyrantel pamoate
24144                                                                                                         milbemycin oxime
24145                                                                                       joint supplement (glucosamine hcl)
24146                                                                                    dinotefuran, permethrin, pyriproxyfen
24149                                                                                                         milbemycin oxime
24154                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24155                                                                                                                  omega 3
24157                                                                                                                sarolaner
24162                                                                               ivermectin, praziquantel, pyrantel pamoate
24165                                                                                                         milbemycin oxime
24166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24172                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24174                                                                                             ivermectin, pyrantel pamoate
24185                                                                                                 homatropine, hydrocodone
24189                                                                                        betamethasone, gentamicin sulfate
24192                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24193                                                                                                                  omega 3
24194                                                                                             ivermectin, pyrantel pamoate
24195                                                                                                                probiotic
24201                                                                          betamethasone, clotrimazole, gentamicin sulfate
24202                                                                          betamethasone, clotrimazole, gentamicin sulfate
24203                                                                                                  acetic acid, boric acid
24205                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24206                                                                                                                probiotic
24207                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
24208                                                                          betamethasone, clotrimazole, gentamicin sulfate
24209                                                                                        betamethasone, gentamicin sulfate
24215                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24217                                                                                                  chlorhexidine gluconate
24218                                                                                             ivermectin, pyrantel pamoate
24219                                                                                                               afoxolaner
24221                                                                                                      silver sulfadiazine
24222                                                                                                      silver sulfadiazine
24246                                                                                        trimeprazine tartrate, prednisone
24250                                                                                             ivermectin, pyrantel pamoate
24251                                                                             dexamethasone, neomycin sulfate, polymyxin b
24253                                                                                             ivermectin, pyrantel pamoate
24257                                                                                                         milbemycin oxime
24258                                                                                                         milbemycin oxime
24259                                                                                                               afoxolaner
24260                                                                                                                trazodone
24261                                                                                           milbemycin oxime, praziquantel
24262                                                                                                               famotidine
24263                                                                                                               ampicillin
24264                                                                                                            metronidazole
24265                                                                                          atropine sulfate, diphenoxylate
24266                                                                                                       maropitant citrate
24267                                                                                               lactated ringer's solution
24268                                                                                               lactated ringer's solution
24269                                                                                                              oclacitinib
24276                                                                                              lufenuron, milbemycin oxime
24282                                                                                                                probiotic
24312                                                                                        betamethasone, gentamicin sulfate
24313                                                                                         burow's solution, hydrocortisone
24314                                                                                                                probiotic
24319                                                                                                                firocoxib
24322                                                                                        betamethasone, gentamicin sulfate
24325                                                                                                              doxycycline
24328                                                                                                              doxycycline
24343                                                                                               milbemycin oxime, spinosad
24375                                                                                                               ivermectin
24379                                                                                                               afoxolaner
24393                                                                                              lufenuron, milbemycin oxime
24394                                                                                lufenuron, milbemycin oxime, praziquantel
24395                                                                                                               afoxolaner
24396                                                                                                               cephalexin
24397                                                                                                               sucralfate
24399                                                                                                               afoxolaner
24400                                                                                              lufenuron, milbemycin oxime
24401                                                                                                                  omega 3
24402                                                                                                               afoxolaner
24403                                                                                lufenuron, milbemycin oxime, praziquantel
24404                                                                                                          diphenhydramine
24405                                                                                                                  omega 3
24406                                                                                                               prednisone
24407                                                                                                              clindamycin
24408                                                                           dexamethasone, neomycin sulfate, thiabendazole
24409                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24410                                                                                                               afoxolaner
24413                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24416                                                                           mometasone furoate, orbifloxacin, posaconazole
24417                                                                                                         tylosin tartrate
24418                                                                                                               famotidine
24419                                                                                                            levothyroxine
24420                                                                                                         tylosin tartrate
24421                                                                                                               ivermectin
24422                                                                                                 fipronil, (s)-methoprene
24424                                                                                                                probiotic
24425                                                                                             ivermectin, pyrantel pamoate
24426                                                                                                               afoxolaner
24427                                                                                           unspecified thyroid medication
24428                                                                                                               famotidine
24429                                                                                                         tylosin tartrate
24431                                                                                             ivermectin, pyrantel pamoate
24432                                                                                                               afoxolaner
24434                                                                             dexamethasone, neomycin sulfate, polymyxin b
24435                                                                                                               ivermectin
24436                                                                             dexamethasone, neomycin sulfate, polymyxin b
24437                                                                                                               afoxolaner
24438                                                                                           unspecified thyroid medication
24451                                                                           mometasone furoate, orbifloxacin, posaconazole
24452                                                                             dexamethasone, neomycin sulfate, polymyxin b
24453                                                                                                     prednisolone acetate
24455                                                                                                                probiotic
24459                                                                                       joint supplement (glucosamine hcl)
24460                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24461                                                                                                               famotidine
24462                                                                                                          diphenhydramine
24468                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24473                                                                                               milbemycin oxime, spinosad
24475                                                                                               milbemycin oxime, spinosad
24476                                                                                                               ivermectin
24477                                                                               ivermectin, praziquantel, pyrantel pamoate
24478                                                                                                                probiotic
24479                                                                          betamethasone, clotrimazole, gentamicin sulfate
24480                                                                                                         milbemycin oxime
24481                                                                                                         milbemycin oxime
24482                                                                                                             enrofloxacin
24484                                                                                                         milbemycin oxime
24486                                                                                             ivermectin, pyrantel pamoate
24499                                                                                                                carprofen
24503                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24514                                                                                                                probiotic
24520                                                                                       fipronil, permethrin, pyriproxyfen
24521                                                                                             ivermectin, pyrantel pamoate
24526                                                                                        betamethasone, gentamicin sulfate
24534                                                                                       fipronil, permethrin, pyriproxyfen
24536                                                                                             ivermectin, pyrantel pamoate
24593                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24597                                                                                               milbemycin oxime, spinosad
24598                                                                                                         liver supplement
24599                                                                                               milbemycin oxime, spinosad
24601                                                                                               milbemycin oxime, spinosad
24602                                                                                               milbemycin oxime, spinosad
24605                                                                                               milbemycin oxime, spinosad
24610                                                                                                  acetic acid, boric acid
24647                                                                                          ear cleaner (epi-otic advanced)
24648                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24651                                                                                                                deracoxib
24652                                                                             florfenicol, mometasone furoate, terbinafine
24653                                                                                      ear cleaner (zymox), hydrocortisone
24654                                                                             florfenicol, mometasone furoate, terbinafine
24660                                                                                                               afoxolaner
24666                                                                                                                carprofen
24669                                                                                                               afoxolaner
24688                                                                             dexamethasone, neomycin sulfate, polymyxin b
24707                                                                                                                mupirocin
24733                                                                                                               ivermectin
24734                                                                                                               afoxolaner
24758                                                                             dexamethasone, neomycin sulfate, polymyxin b
24762                                                                                              lufenuron, milbemycin oxime
24768                                                                                             ivermectin, pyrantel pamoate
24769                                                                                                               afoxolaner
24776                                                                           mometasone furoate, orbifloxacin, posaconazole
24782                                                                           mometasone furoate, orbifloxacin, posaconazole
24802                                                                                                               selamectin
24804                                                                                                                cefovecin
24805                                                                                                              oclacitinib
24806                                                                                                              oclacitinib
24814                                                                                             ivermectin, pyrantel pamoate
24817                                                                                                                tris-edta
24819                                                                                                               benzocaine
24824                                                                                             ivermectin, pyrantel pamoate
24825                                                                                                               fluralaner
24826                                                                                                                  omega 3
24827                                                                               toothpaste/dental health solution or chews
24828                                                                                   joint supplement (glucosamine hcl/msm)
24829                                                                                             ivermectin, pyrantel pamoate
24830                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24835                                                                                                               ivermectin
24839                                                                                             ivermectin, pyrantel pamoate
24840                                                                                                               afoxolaner
24850                                                                                                         milbemycin oxime
24867                                                                                              lufenuron, milbemycin oxime
24878                                                                                        betamethasone, gentamicin sulfate
24880                                                                                        betamethasone, gentamicin sulfate
24897                                                                                                     cefpodoxime proxetil
24898                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24899                                                                                                               lokivetmab
24902                                                                                              lufenuron, milbemycin oxime
24903                                                                                                               lokivetmab
24904                                                                                                              oclacitinib
24907                                                                                                              oclacitinib
24917                                                                                        betamethasone, gentamicin sulfate
24918                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24919                                                                                  moxidectin, pyrantel pamoate, sarolaner
24935                                                                                              lufenuron, milbemycin oxime
24937                                                                                              lufenuron, milbemycin oxime
24938                                                                                              lufenuron, milbemycin oxime
24940                                                                                              lufenuron, milbemycin oxime
24942                                                                                              lufenuron, milbemycin oxime
24948                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24949                                                                                              lufenuron, milbemycin oxime
24950                                                                                                   cyphenothrin, fipronil
24963                                                                                              lufenuron, milbemycin oxime
24964                                                                                           milbemycin oxime, praziquantel
24967                                                                                chlorhexidine gluconate, phytosphingosine
24968                                                                                             ivermectin, pyrantel pamoate
24969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24971                                                                                             ivermectin, pyrantel pamoate
24973                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24974                                                                                                 flumethrin, imidacloprid
24975                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24982                                                                                                 fipronil, (s)-methoprene
24984                                                                                              lufenuron, milbemycin oxime
24985                                                                                                 fipronil, (s)-methoprene
24987                                                                                              lufenuron, milbemycin oxime
24988                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24989                                                                                                            dexamethasone
24993                                                                                                                 geraniol
25003                                                                                                               tobramycin
25004                                                                                                               afoxolaner
25020                                                                                              lufenuron, milbemycin oxime
25021                                                                                                               fluralaner
25022                                                                                              lufenuron, milbemycin oxime
25040                                                                                              lufenuron, milbemycin oxime
25041                                                                                                 fipronil, (s)-methoprene
25059                                                                                             ivermectin, pyrantel pamoate
25067                                                                                             ivermectin, pyrantel pamoate
25079                                                                                             ivermectin, pyrantel pamoate
25084                                                                                                         tylosin tartrate
25087                                                                                                 flumethrin, imidacloprid
25094                                                                                               milbemycin oxime, spinosad
25099                                                                                             ivermectin, pyrantel pamoate
25100                                                                                                               fluralaner
25101                                                                                                               fluralaner
25102                                                                                             ivermectin, pyrantel pamoate
25118                                                                                                         milbemycin oxime
25119                                                                                              lufenuron, milbemycin oxime
25120                                                                                    dinotefuran, permethrin, pyriproxyfen
25124                                                                                          ear cleaner (epi-otic advanced)
25129                                                                                                                probiotic
25191                                                                                                         milbemycin oxime
25196                                                                                              lufenuron, milbemycin oxime
25198                                                                                                  ketoconazole, tris-edta
25233                                                                                                               ivermectin
25234                                                                                             ivermectin, pyrantel pamoate
25241                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25255                                                                                         phytosphingosine, salicylic acid
25258                                                                                                       paw protection wax
25262                                                                          betamethasone, clotrimazole, gentamicin sulfate
25269                                                                                                               gabapentin
25270                                                                                                                trazodone
25296                                                                                             ivermectin, pyrantel pamoate
25299                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25300                                                                                                               afoxolaner
25309                                                                                lufenuron, milbemycin oxime, praziquantel
25310                                                                                                 fipronil, (s)-methoprene
25311                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25315                                                                                              lufenuron, milbemycin oxime
25316                                                                                             ivermectin, pyrantel pamoate
25317                                                                                                               afoxolaner
25331                                                                                              lufenuron, milbemycin oxime
25337                                                                                               milbemycin oxime, spinosad
25342                                                                                                               afoxolaner
25343                                                                                                         milbemycin oxime
25345                                                                                  betamethasone, florfenicol, terbinafine
25346                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
25347                                                                                       joint supplement (glucosamine hcl)
25358                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25359                                                                                       amoxicillin, clavulanate potassium
25366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25367                                                                                        trimeprazine tartrate, prednisone
25369                                                                                                bordetella bronchiseptica
25370                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25372                                                                                                            sulfasalazine
25374                                                                                                         milbemycin oxime
25377                                                                                                              doxycycline
25378                                                                                                         tylosin tartrate
25390                                                                                                               prednisone
25391                                                                                                     cefpodoxime proxetil
25405                                                                                                               selamectin
25409                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
25410                                                                                    chlorhexidine gluconate, ketoconazole
25417                                                                                                  chlorhexidine gluconate
25421                                                                                                               selamectin
25424                                                                                                                probiotic
25425                                                                                                               loratadine
25437                                                                                              lufenuron, milbemycin oxime
25444                                                                                              lufenuron, milbemycin oxime
25473                                                                                             ivermectin, pyrantel pamoate
25482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25493                                                                                             ivermectin, pyrantel pamoate
25494                                                                                             ivermectin, pyrantel pamoate
25501                                                                                             ivermectin, pyrantel pamoate
25514                                                                                       joint supplement (glucosamine hcl)
25515                                                                                                                  omega 3
25516                                                                                             ivermectin, pyrantel pamoate
25517                                                                                                               afoxolaner
25520                                                                                             ivermectin, pyrantel pamoate
25521                                                                                                               afoxolaner
25523                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25547                                                                                                             acepromazine
25554                                                                                               milbemycin oxime, spinosad
25555                                                                                               milbemycin oxime, spinosad
25556                                                                                               milbemycin oxime, spinosad
25557                                                                                               milbemycin oxime, spinosad
25564                                                                                                               ivermectin
25575                                                                                             ivermectin, pyrantel pamoate
25576                                                                                                               ivermectin
25577                                                                                                               ivermectin
25579                                                                                                               ivermectin
25589                                                                                                         milbemycin oxime
25590                                                                                                               fluralaner
25591                                                                                                         milbemycin oxime
25612                                                                                               milbemycin oxime, spinosad
25617                                                                                                           liquid bandage
25619                                                                          betamethasone, clotrimazole, gentamicin sulfate
25622                                                                             florfenicol, mometasone furoate, terbinafine
25660                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25663                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25666                                                                                        trimeprazine tartrate, prednisone
25670                                                                                                 imidacloprid, moxidectin
25671                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25672                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25674                                                                                                 imidacloprid, moxidectin
25683                                                                                             ivermectin, pyrantel pamoate
25706                                                                                               imidacloprid, pyriproxyfen
25707                                                                                                             fenbendazole
25708                                                                                              lufenuron, milbemycin oxime
25711                                                                                               imidacloprid, pyriproxyfen
25725                                                                                                                probiotic
25726                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25727                                                                                             ivermectin, pyrantel pamoate
25730                                                                                                         benzoyl peroxide
25737                                                                                                     digestive supplement
25740                                                                                                               afoxolaner
25741                                                                                              lufenuron, milbemycin oxime
25743                                                                                    dinotefuran, permethrin, pyriproxyfen
25744                                                                                                  ketoconazole, tris-edta
25748                                                                                                         milbemycin oxime
25749                                                                                             ivermectin, pyrantel pamoate
25750                                                                                                 fipronil, (s)-methoprene
25751                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
25753                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25754                                                                                              lufenuron, milbemycin oxime
25755                                                                                                               fluralaner
25756                                                                                    dinotefuran, permethrin, pyriproxyfen
25757                                                                                                               afoxolaner
25765                                                                                                  ketoconazole, tris-edta
25795                                                                                                             fenbendazole
25804                                                                                              lufenuron, milbemycin oxime
25806                                                                                              lufenuron, milbemycin oxime
25807                                                                                              lufenuron, milbemycin oxime
25816                                                                                                               prednisone
25817                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25819                                                                                               milbemycin oxime, spinosad
25820                                                                                               milbemycin oxime, spinosad
25825                                                                                                               cephalexin
25826                                                                                                         milbemycin oxime
25827                                                                                                         milbemycin oxime
25828                                                                                                         milbemycin oxime
25829                                                                                                               fluralaner
25830                                                                                                         milbemycin oxime
25837                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
25846                                                                                                               fluralaner
25884                                                                                             ivermectin, pyrantel pamoate
25887                                                                                             ivermectin, pyrantel pamoate
25888                                                                                                               afoxolaner
25919                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25936                                                                                                               gabapentin
25937                                                                                                               prednisone
25939                                                                                           milbemycin oxime, praziquantel
25940                                                                                                               fluralaner
25941                                                                                             ivermectin, pyrantel pamoate
25942                                                                                             ivermectin, pyrantel pamoate
25943                                                                                                               selamectin
25948                                                                                                               ivermectin
25949                                                                                           milbemycin oxime, praziquantel
25950                                                                                                               fluralaner
25951                                                                                             ivermectin, pyrantel pamoate
25952                                                                           dexamethasone, neomycin sulfate, thiabendazole
25953                                                                                             ivermectin, pyrantel pamoate
25954                                                                                                               selamectin
25964                                                                                             ivermectin, pyrantel pamoate
25965                                                                                                               afoxolaner
25966                                                                                                               ivermectin
25967                                                                                   joint supplement (glucosamine hcl/msm)
25981                                                                           mometasone furoate, orbifloxacin, posaconazole
25983                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25985                                                                                               imidacloprid, pyriproxyfen
25986                                                                                                 imidacloprid, moxidectin
25998                                                                                                                toceranib
26004                                                                                             ivermectin, pyrantel pamoate
26022                                                                                       amoxicillin, clavulanate potassium
26024                                                                                                               fluralaner
26027                                                                                       amoxicillin, clavulanate potassium
26031                                                                                                         milbemycin oxime
26033                                                                                                               fluralaner
26037                                                                                                               fluralaner
26039                                                                                                               fluralaner
26047                                                                                                               fluralaner
26048                                                                                                         milbemycin oxime
26050                                                                                                               fluralaner
26054                                                                                                               fluralaner
26056                                                                                                               fluralaner
26064                                                                                                                probiotic
26075                                                                                                                  amforal
26078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26084                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
26085                                                                             florfenicol, mometasone furoate, terbinafine
26093                                                                                        betamethasone, gentamicin sulfate
26094                                                                                        betamethasone, gentamicin sulfate
26095                                                                                               milbemycin oxime, spinosad
26110                                                                                             ivermectin, pyrantel pamoate
26114                                                                                             ivermectin, pyrantel pamoate
26115                                                                           dexamethasone, neomycin sulfate, thiabendazole
26127                                                                                                         phytosphingosine
26128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
26129                                                                          betamethasone, clotrimazole, gentamicin sulfate
26133                                                                          betamethasone, clotrimazole, gentamicin sulfate
26134                                                                          betamethasone, clotrimazole, gentamicin sulfate
26138                                                                                    dinotefuran, permethrin, pyriproxyfen
26139                                                                                    chlorhexidine gluconate, ketoconazole
26141                                                                                    dinotefuran, permethrin, pyriproxyfen
26148                                                                                    dinotefuran, permethrin, pyriproxyfen
26151                                                                                           milbemycin oxime, praziquantel
26152                                                                                    dinotefuran, permethrin, pyriproxyfen
26153                                                                                                     prednisolone acetate
26154                                                                                                             fenbendazole
26155                                                                                                         sulfadimethoxine
26156                                                                                           milbemycin oxime, praziquantel
26157                                                                                    dinotefuran, permethrin, pyriproxyfen
26158                                                                                           milbemycin oxime, praziquantel
26159                                                                                    dinotefuran, permethrin, pyriproxyfen
26160                                                                                                            metronidazole
26161                                                                                                       maropitant citrate
26165                                                                                           milbemycin oxime, praziquantel
26166                                                                                    dinotefuran, permethrin, pyriproxyfen
26184                                                                             dexamethasone, neomycin sulfate, polymyxin b
26187                                                                             dexamethasone, neomycin sulfate, polymyxin b
26189                                                                                    dinotefuran, permethrin, pyriproxyfen
26190                                                                                    chlorhexidine gluconate, ketoconazole
26192                                                                                    dinotefuran, permethrin, pyriproxyfen
26197                                                                             dexamethasone, neomycin sulfate, polymyxin b
26199                                                                                    dinotefuran, permethrin, pyriproxyfen
26203                                                                                           milbemycin oxime, praziquantel
26204                                                                                    dinotefuran, permethrin, pyriproxyfen
26205                                                                                                             fenbendazole
26206                                                                                                         sulfadimethoxine
26207                                                                                           milbemycin oxime, praziquantel
26208                                                                                    dinotefuran, permethrin, pyriproxyfen
26211                                                                                           milbemycin oxime, praziquantel
26212                                                                                    dinotefuran, permethrin, pyriproxyfen
26213                                                                                                                carprofen
26214                                                                                           milbemycin oxime, praziquantel
26215                                                                                    dinotefuran, permethrin, pyriproxyfen
26222                                                                                                                carprofen
26227                                                                                                                 tramadol
26229                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26237                                                                                                                carprofen
26238                                                                                                         milbemycin oxime
26239                                                                                                 kidney health supplement
26258                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26259                                                                                                               cephalexin
26264                                                                                                                trazodone
26265                                                                               dextromethorphan hydrobromide, guaifenesin
26278                                                                               dimethyl sulfoxide, fluocinolone acetonide
26279                                                                                               milbemycin oxime, spinosad
26280                                                                                    dinotefuran, permethrin, pyriproxyfen
26281                                                                                                               afoxolaner
26282                                                                               ivermectin, praziquantel, pyrantel pamoate
26287                                                                               ivermectin, praziquantel, pyrantel pamoate
26295                                                                                                               afoxolaner
26300                                                                               ivermectin, praziquantel, pyrantel pamoate
26307                                                                                                            metronidazole
26315                                                                                                         milbemycin oxime
26336                                                                                       chlorhexidine gluconate, ophytrium
26337                                                                                                        hypochlorous acid
26355                                                                                                  chlorhexidine gluconate
26373                                                                             dexamethasone, neomycin sulfate, polymyxin b
26375                                                                                              lufenuron, milbemycin oxime
26380                                                                             florfenicol, mometasone furoate, terbinafine
26386                                                                                             ivermectin, pyrantel pamoate
26387                                                                                                               fluralaner
26391                                                                                                               lokivetmab
26393                                                                                        betamethasone, gentamicin sulfate
26395                                                                                               milbemycin oxime, spinosad
26399                                                                                               milbemycin oxime, spinosad
26400                                                                                               milbemycin oxime, spinosad
26401                                                                                               milbemycin oxime, spinosad
26423                                                                                                               selamectin
26433                                                                                        betamethasone, gentamicin sulfate
26454                                                                                   joint supplement (glucosamine hcl/msm)
26464                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26471                                                                                             ivermectin, pyrantel pamoate
26473                                                                                                               afoxolaner
26474                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26475                                                                                             ivermectin, pyrantel pamoate
26476                                                                                                               afoxolaner
26477                                                                                                            levothyroxine
26488                                                                                                               afoxolaner
26489                                                                                              lufenuron, milbemycin oxime
26490                                                                                              lufenuron, milbemycin oxime
26502                                                                                                  ketoconazole, tris-edta
26503                                                                                                               cephalexin
26505                                                                                         propylene glycol, salicylic acid
26508                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
26517                                                                                             ivermectin, pyrantel pamoate
26518                                                                                                 fipronil, (s)-methoprene
26519                                                                                             ivermectin, pyrantel pamoate
26520                                                                                                               ivermectin
26521                                                                                                               ivermectin
26522                                                                                                               ivermectin
26534                                                                                        trimeprazine tartrate, prednisone
26540                                                                                       chlorhexidine gluconate, ophytrium
26543                                                                                             ivermectin, pyrantel pamoate
26544                                                                                               imidacloprid, pyriproxyfen
26546                                                                                             ivermectin, pyrantel pamoate
26551                                                                                                         milbemycin oxime
26553                                                                                                         milbemycin oxime
26568                                                                                                         milbemycin oxime
26574                                                                                                         milbemycin oxime
26576                                                                                                                 tramadol
26583                                                                                            allergy immunotherapy - drops
26590                                                                                             ivermectin, pyrantel pamoate
26591                                                                                             ivermectin, pyrantel pamoate
26592                                                                                                               fluralaner
26594                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26610                                                                             dexamethasone, neomycin sulfate, polymyxin b
26611                                                                                             ivermectin, pyrantel pamoate
26615                                                                                             ivermectin, pyrantel pamoate
26628                                                                                                               ivermectin
26629                                                                                                                 fipronil
26631                                                                                             ivermectin, pyrantel pamoate
26637                                                                                                 fipronil, (s)-methoprene
26638                                                                                             ivermectin, pyrantel pamoate
26643                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26644                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
26645                                                                                                 fipronil, (s)-methoprene
26647                                                                                                 fipronil, (s)-methoprene
26650                                                                                              lufenuron, milbemycin oxime
26651                                                                                              lufenuron, milbemycin oxime
26652                                                                                                               fluralaner
26654                                                                                             ivermectin, pyrantel pamoate
26655                                                                                               milbemycin oxime, spinosad
26662                                                                                             ivermectin, pyrantel pamoate
26663                                                                                                               afoxolaner
26668                                                                                                 imidacloprid, permethrin
26669                                                                                               imidacloprid, pyriproxyfen
26670                                                                                                 flumethrin, imidacloprid
26673                                                                                             ivermectin, pyrantel pamoate
26674                                                                           mometasone furoate, orbifloxacin, posaconazole
26675                                                                                                     cefpodoxime proxetil
26676                                                                                                 fipronil, (s)-methoprene
26677                                                                                             ivermectin, pyrantel pamoate
26680                                                                                             ivermectin, pyrantel pamoate
26681                                                                                                               afoxolaner
26682                                                                                             ivermectin, pyrantel pamoate
26683                                                                                                               afoxolaner
26684                                                                                             ivermectin, pyrantel pamoate
26685                                                                                                               afoxolaner
26694                                                                                       amoxicillin, clavulanate potassium
26720                                                                                        trimeprazine tartrate, prednisone
26721                                                                                              lufenuron, milbemycin oxime
26722                                                                                              lufenuron, milbemycin oxime
26723                                                                                              lufenuron, milbemycin oxime
26724                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26726                                                                                              lufenuron, milbemycin oxime
26727                                                                                                             enrofloxacin
26734                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26735                                                                                               milbemycin oxime, spinosad
26736                                                                                             ivermectin, pyrantel pamoate
26738                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26740                                                                                           milbemycin oxime, praziquantel
26741                                                                                                               afoxolaner
26742                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26743                                                                                                                carprofen
26744                                                                                                         milbemycin oxime
26745                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26747                                                                                                unspecified otic ear pack
26749                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26750                                                                                             ivermectin, pyrantel pamoate
26751                                                                                                               afoxolaner
26760                                                                                             ivermectin, pyrantel pamoate
26764                                                                                                                lidocaine
26765                                                                                                          diphenhydramine
26766                                                                                 aluminium hydroxide, magnesium hydroxide
26769                                                                                                         milbemycin oxime
26772                                                                                                                lidocaine
26773                                                                                                          diphenhydramine
26774                                                                                 aluminium hydroxide, magnesium hydroxide
26780                                                                                                         milbemycin oxime
26803                                                                          betamethasone, clotrimazole, gentamicin sulfate
26817                                                                                                               prednisone
26818                                                                                                          diphenhydramine
26819                                                                          betamethasone, clotrimazole, gentamicin sulfate
26821                                                                                                                carprofen
26822                                                                                                              clindamycin
26823                                                                                                                meloxicam
26825                                                                          betamethasone, clotrimazole, gentamicin sulfate
26826                                                                                                         liver supplement
26827                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26828                                                                                                                carprofen
26829                                                                                                               cephalexin
26830                                                                                                              clindamycin
26831                                                                                                       maropitant citrate
26832                                                                                                              amoxicillin
26833                                                                                                         pyrantel pamoate
26836                                                                                                       miconazole nitrate
26837                                                                                                                probiotic
26838                                                                                                     cefpodoxime proxetil
26839                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26840                                                                                              lufenuron, milbemycin oxime
26841                                                                                       fipronil, permethrin, pyriproxyfen
26842                                                                                             ivermectin, pyrantel pamoate
26843                                                                                                                probiotic
26844                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
26846                                                                                             ivermectin, pyrantel pamoate
26847                                                                                                 fipronil, (s)-methoprene
26848                                                                                                                probiotic
26849                                                                                             ivermectin, pyrantel pamoate
26850                                                                                                 fipronil, (s)-methoprene
26851                                                                                                                probiotic
26852                                                                                             ivermectin, pyrantel pamoate
26853                                                                                                               afoxolaner
26857                                                                                                              doxycycline
26861                                                                               ivermectin, praziquantel, pyrantel pamoate
26862                                                                                                 fipronil, (s)-methoprene
26863                                                                               ivermectin, praziquantel, pyrantel pamoate
26864                                                                                                               nitenpyram
26865                                                                                               imidacloprid, pyriproxyfen
26867                                                                                               imidacloprid, pyriproxyfen
26868                                                                                                         milbemycin oxime
26869                                                                                           milbemycin oxime, praziquantel
26870                                                                                               imidacloprid, pyriproxyfen
26871                                                                           mometasone furoate, orbifloxacin, posaconazole
26872                                                                                          ear cleaner (epi-otic advanced)
26905                                                                                          ear cleaner (epi-otic advanced)
26926                                                                                              lufenuron, milbemycin oxime
26930                                                                                              lufenuron, milbemycin oxime
26931                                                                                    dinotefuran, permethrin, pyriproxyfen
26932                                                                                              lufenuron, milbemycin oxime
26944                                                                                    dinotefuran, permethrin, pyriproxyfen
26948                                                                                    dinotefuran, permethrin, pyriproxyfen
26966                                                                                                              doxycycline
26972                                                                                              lufenuron, milbemycin oxime
26974                                                                                                   unspecified supplement
26975                                                                                             ivermectin, pyrantel pamoate
26976                                                                                                                probiotic
26977                                                                                              lufenuron, milbemycin oxime
26978                                                                                 febantel, praziquantel, pyrantel pamoate
26979                                                                                              lufenuron, milbemycin oxime
26980                                                                                              lufenuron, milbemycin oxime
26981                                                                                              lufenuron, milbemycin oxime
26983                                                                                                                probiotic
26984                                                                                                               fluralaner
26986                                                                                                               fluralaner
26987                                                                             betamethasone, chloramphenicol, ketoconazole
26988                                                                                                         milbemycin oxime
26990                                                                                                         milbemycin oxime
26991                                                                                                               fluralaner
26992                                                                                                         milbemycin oxime
26993                                                                                                               fluralaner
27012                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
27021                                                                                                               tobramycin
27022                                                                                                                ofloxacin
27030                                                                                                         milbemycin oxime
27047                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27058                                                                                        betamethasone, gentamicin sulfate
27062                                                                                                               grapiprant
27063                                                                                                   unspecified medication
27065                                                                                             ivermectin, pyrantel pamoate
27080                                                                           mometasone furoate, orbifloxacin, posaconazole
27081                                                                           mometasone furoate, orbifloxacin, posaconazole
27082                                                                                              lufenuron, milbemycin oxime
27084                                                                                                                carprofen
27085                                                                                              lufenuron, milbemycin oxime
27092                                                                                                             fenbendazole
27095                                                                                                            ciprofloxacin
27096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27100                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27117                                                                                                                mupirocin
27118                                                                                        betamethasone, gentamicin sulfate
27124                                                                                                                probiotic
27128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27134                                                                             florfenicol, mometasone furoate, terbinafine
27136                                                                                                         milbemycin oxime
27137                                                                             florfenicol, mometasone furoate, terbinafine
27140                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27158                                                                          betamethasone, clotrimazole, gentamicin sulfate
27163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27170                                                                                              lufenuron, milbemycin oxime
27172                                                                                                 joint supplement (other)
27173                                                                                                                  omega 3
27174                                                                                              lufenuron, milbemycin oxime
27203                                                                                             ivermectin, pyrantel pamoate
27212                                                                                        betamethasone, gentamicin sulfate
27213                                                                               ivermectin, praziquantel, pyrantel pamoate
27214                                                                                                             deltamethrin
27217                                                                                        betamethasone, gentamicin sulfate
27219                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27220                                                                                                 flumethrin, imidacloprid
27222                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27223                                                                                        betamethasone, gentamicin sulfate
27224                                                                                              phytosphingosine, pramoxine
27225                                                                                                               cephalexin
27226                                                                                                 flumethrin, imidacloprid
27228                                                                                                 flumethrin, imidacloprid
27229                                                                                           milbemycin oxime, praziquantel
27231                                                                                                               afoxolaner
27232                                                                                              lufenuron, milbemycin oxime
27247                                                                                              lufenuron, milbemycin oxime
27249                                                                                                               ivermectin
27251                                                                                                               ivermectin
27256                                                                                        betamethasone, gentamicin sulfate
27257                                                                                                 flumethrin, imidacloprid
27258                                                                                             ivermectin, pyrantel pamoate
27262                                                                                                               tobramycin
27265                                                                                             ivermectin, pyrantel pamoate
27268                                                                                                               tobramycin
27270                                                                                                 flumethrin, imidacloprid
27273                                                                                             ivermectin, pyrantel pamoate
27274                                                                                                               afoxolaner
27275                                                                                               imidacloprid, pyriproxyfen
27280                                                                                                               fluralaner
27281                                                                                             ivermectin, pyrantel pamoate
27282                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27285                                                                                             ivermectin, pyrantel pamoate
27306                                                                                             ivermectin, pyrantel pamoate
27309                                                                                                               fluralaner
27311                                                                                             ivermectin, pyrantel pamoate
27315                                                                                             ivermectin, pyrantel pamoate
27322                                                                                                                pramoxine
27333                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27345                                                                                             ivermectin, pyrantel pamoate
27346                                                                                                               afoxolaner
27347                                                                                               milbemycin oxime, spinosad
27348                                                                                                             imidacloprid
27349                                                                                             ivermectin, pyrantel pamoate
27350                                                                                               imidacloprid, pyriproxyfen
27353                                                                                                              amoxicillin
27358                                                                                              lufenuron, milbemycin oxime
27360                                                                                              lufenuron, milbemycin oxime
27361                                                                                              lufenuron, milbemycin oxime
27362                                                                                                       maropitant citrate
27364                                                                                              lufenuron, milbemycin oxime
27368                                                                                              lufenuron, milbemycin oxime
27370                                                                             florfenicol, mometasone furoate, terbinafine
27371                                                                                                              amoxicillin
27384                                                                                           milbemycin oxime, praziquantel
27407                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27413                                                                                                                vitamin b
27414                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27421                                                                                               imidacloprid, pyriproxyfen
27422                                                                                             ivermectin, pyrantel pamoate
27423                                                                                             ivermectin, pyrantel pamoate
27425                                                                                                  chlorhexidine gluconate
27427                                                                                                  chlorhexidine gluconate
27431                                                                               toothpaste/dental health solution or chews
27432                                                                                                                meloxicam
27434                                                                                    dinotefuran, permethrin, pyriproxyfen
27435                                                                                                              hydroxyzine
27445                                                                                               imidacloprid, pyriproxyfen
27446                                                                                                 imidacloprid, permethrin
27447                                                                                                                probiotic
27459                                                                                               milbemycin oxime, spinosad
27465                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
27474                                                                                             ivermectin, pyrantel pamoate
27479                                                                                             ivermectin, pyrantel pamoate
27481                                                                                             ivermectin, pyrantel pamoate
27492                                                                                        trimeprazine tartrate, prednisone
27494                                                                                                     prednisolone acetate
27500                                                                 dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
27501                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
27502                                                                                                               ivermectin
27506                                                                                                               ivermectin
27507                                                                                       fipronil, permethrin, pyriproxyfen
27511                                                                                                               ivermectin
27512                                                                                                 fipronil, (s)-methoprene
27523                                                                                             ivermectin, pyrantel pamoate
27529                                                                                                               ivermectin
27589                                                                                               milbemycin oxime, spinosad
27594                                                                                               milbemycin oxime, spinosad
27595                                                                                                            metronidazole
27596                                                                                               milbemycin oxime, spinosad
27598                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27620                                                                                                               fluralaner
27640                                                                                             ivermectin, pyrantel pamoate
27646                                                                                                                mupirocin
27654                                                                                               milbemycin oxime, spinosad
27657                                                                                               milbemycin oxime, spinosad
27658                                                                                                               prednisone
27659                                                                                                                mupirocin
27674                                                                                                     digestive supplement
27697                                                                                                                mupirocin
27699                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27700                                                                                             ivermectin, pyrantel pamoate
27701                                                                                                 fipronil, (s)-methoprene
27704                                                                                             ivermectin, pyrantel pamoate
27710                                                                                                 fipronil, (s)-methoprene
27713                                                                                       amoxicillin, clavulanate potassium
27714                                                                                                 fipronil, (s)-methoprene
27715                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27722                                                                                                               selamectin
27723                                                                                                               selamectin
27724                                                                                                               fluoxetine
27728                                                                                                               selamectin
27736                                                                                                               lokivetmab
27745                                                                                             ivermectin, pyrantel pamoate
27747                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27748                                                                               ivermectin, praziquantel, pyrantel pamoate
27750                                                                                             ivermectin, pyrantel pamoate
27769                                                                                             ivermectin, pyrantel pamoate
27770                                                                                              lufenuron, milbemycin oxime
27772                                                                                              lufenuron, milbemycin oxime
27776                                                                                                       maropitant citrate
27791                                                                               ivermectin, praziquantel, pyrantel pamoate
27794                                                                                             ivermectin, pyrantel pamoate
27802                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27824                                                                                             ivermectin, pyrantel pamoate
27826                                                                               ivermectin, praziquantel, pyrantel pamoate
27828                                                                                             ivermectin, pyrantel pamoate
27833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27834                                                                                                                  omega 3
27836                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27878                                                                                                 flumethrin, imidacloprid
27880                                                                                                             multivitamin
27883                                                                                                                carprofen
27884                                                                                   cyphenothrin, fipronil, (s)-methoprene
27885                                                                                              lufenuron, milbemycin oxime
27886                                                                                              lufenuron, milbemycin oxime
27891                                                                                                         milbemycin oxime
27892                                                                                                               afoxolaner
27895                                                                                                               moxidectin
27896                                                                                                               afoxolaner
27897                                                                                                               moxidectin
27898                                                                                                               afoxolaner
27899                                                                             dexamethasone, neomycin sulfate, polymyxin b
27900                                                                                                               moxidectin
27901                                                                                                               moxidectin
27904                                                                                                               moxidectin
27910                                                                                              lufenuron, milbemycin oxime
27913                                                                                              lufenuron, milbemycin oxime
27917                                                                                              lufenuron, milbemycin oxime
27921                                                                                              lufenuron, milbemycin oxime
27922                                                                                              lufenuron, milbemycin oxime
27923                                                                                              lufenuron, milbemycin oxime
27927                                                                                                   unspecified medication
27929                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27931                                                                                                                carprofen
27934                                                                                                            buprenorphine
27935                                                                                                                 propofol
27936                                                                                                                midazolam
27937                                                                                                                carprofen
27938                                                                                                                carprofen
27939                                                                                                 imidacloprid, permethrin
27940                                                                                              lufenuron, milbemycin oxime
27941                                                                           mometasone furoate, orbifloxacin, posaconazole
27942                                                                                                               cephalexin
27954                                                                                    dinotefuran, permethrin, pyriproxyfen
27957                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27958                                                                                       amoxicillin, clavulanate potassium
27959                                                                                                                 tramadol
27960                                                                                                                carprofen
27961                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27962                                                                                                 fipronil, (s)-methoprene
27973                                                                                                  ketoconazole, tris-edta
27974                                                                                       chlorhexidine gluconate, ophytrium
27981                                                                                               imidacloprid, pyriproxyfen
27982                                                                                                               ivermectin
27992                                                                                      allergy immunotherapy - unspecified
27999                                                                                               imidacloprid, pyriproxyfen
28000                                                                                                               ivermectin
28004                                                                                             ivermectin, pyrantel pamoate
28006                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
28008                                                                                                                probiotic
28009                                                                                              pramoxine, phytosphingosine
28010                                                                                                 fipronil, (s)-methoprene
28011                                                                           mometasone furoate, orbifloxacin, posaconazole
28014                                                                                               imidacloprid, pyriproxyfen
28015                                                                                                         liver supplement
28016                                                                                             ivermectin, pyrantel pamoate
28018                                                                                             ivermectin, pyrantel pamoate
28020                                                                           mometasone furoate, orbifloxacin, posaconazole
28023                                                                                             ivermectin, pyrantel pamoate
28024                                                                                                               afoxolaner
28025                                                                                                                probiotic
28026                                                                                                            metronidazole
28029                                                                                                               ivermectin
28040                                                                                             ivermectin, pyrantel pamoate
28045                                                                                             ivermectin, pyrantel pamoate
28046                                                                                                              doxorubicin
28047                                                                                                              vincristine
28048                                                                                             ivermectin, pyrantel pamoate
28049                                                                                             ivermectin, pyrantel pamoate
28071                                                                                                               selamectin
28087                                                                                                         milbemycin oxime
28088                                                                                                               fluralaner
28089                                                                                                                carprofen
28090                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28094                                                                               dimethyl sulfoxide, fluocinolone acetonide
28096                                                                                                         tylosin tartrate
28098                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28100                                                                                                               fluralaner
28101                                                                                lufenuron, milbemycin oxime, praziquantel
28102                                                                                           milbemycin oxime, praziquantel
28103                                                                                                               fluralaner
28104                                                                                                               fluralaner
28105                                                                                           milbemycin oxime, praziquantel
28106                                                                                           milbemycin oxime, praziquantel
28107                                                                                                               fluralaner
28108                                                                                                               fluralaner
28109                                                                                           milbemycin oxime, praziquantel
28116                                                                                                                probiotic
28119                                                                                              lufenuron, milbemycin oxime
28120                                                                                              lufenuron, milbemycin oxime
28128                                                                                              lufenuron, milbemycin oxime
28129                                                                                                               fluralaner
28130                                                                                             ivermectin, pyrantel pamoate
28131                                                                                                               fluralaner
28134                                                                                             ivermectin, pyrantel pamoate
28135                                                                                             ivermectin, pyrantel pamoate
28137                                                                               ivermectin, praziquantel, pyrantel pamoate
28138                                                                                                                vitamin d
28141                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28144                                                                                                               ivermectin
28150                                                                                                               prednisone
28151                                                                                                               prednisone
28152                                                                                                               cephalexin
28153                                                                                                               ketoprofen
28154                                                                                                 fipronil, (s)-methoprene
28155                                                                                             ivermectin, pyrantel pamoate
28156                                                                                                                  omega 3
28158                                                                                                 flumethrin, imidacloprid
28162                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28163                                                                                                 flumethrin, imidacloprid
28164                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28165                                                                                                                  omega 3
28166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28167                                                                                                                  omega 3
28168                                                                                                               tobramycin
28174                                                                             dexamethasone, neomycin sulfate, polymyxin b
28176                                                                             dexamethasone, neomycin sulfate, polymyxin b
28244                                                                                        trimeprazine tartrate, prednisone
28245                                                                                                         milbemycin oxime
28246                                                                                        trimeprazine tartrate, prednisone
28260                                                                                                            dexamethasone
28261                                                                                             ivermectin, pyrantel pamoate
28262                                                                                                               fluralaner
28263                                                                                                               fluralaner
28264                                                                                             ivermectin, pyrantel pamoate
28269                                                                                             ivermectin, pyrantel pamoate
28277                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28279                                                                                       chlorhexidine gluconate, ophytrium
28307                                                                                        trimeprazine tartrate, prednisone
28309                                                                                               milbemycin oxime, spinosad
28311                                                                                              lufenuron, milbemycin oxime
28316                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
28332                                                                                      ear cleaner (zymox), hydrocortisone
28333                                                                                      ear cleaner (zymox), hydrocortisone
28371                                                                                                                probiotic
28375                                                                                                               fluralaner
28390                                                                          betamethasone, clotrimazole, gentamicin sulfate
28392                                                                                                               afoxolaner
28393                                                                                                                carprofen
28396                                                                                           praziquantel, pyrantel pamoate
28397                                                                                              lufenuron, milbemycin oxime
28398                                                                                                               fluralaner
28399                                                                                           milbemycin oxime, praziquantel
28400                                                                                                               fluralaner
28401                                                                                           milbemycin oxime, praziquantel
28404                                                                                               milbemycin oxime, spinosad
28407                                                                                               milbemycin oxime, spinosad
28425                                                                                                             enrofloxacin
28427                                                                                                            dexamethasone
28437                                                                                              lufenuron, milbemycin oxime
28448                                                                                              lufenuron, milbemycin oxime
28449                                                                                               imidacloprid, pyriproxyfen
28453                                                                                                               ivermectin
28483                                                                                             ivermectin, pyrantel pamoate
28484                                                                                      ear cleaner (zymox), hydrocortisone
28486                                                                                        betamethasone, gentamicin sulfate
28488                                                                                                         milbemycin oxime
28505                                                                                                                probiotic
28507                                                                                                       miconazole nitrate
28508                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28516                                                                                lufenuron, milbemycin oxime, praziquantel
28517                                                                                                 fipronil, (s)-methoprene
28518                                                                                              lufenuron, milbemycin oxime
28519                                                                                             ivermectin, pyrantel pamoate
28520                                                                                                 fipronil, (s)-methoprene
28528                                                                                              lufenuron, milbemycin oxime
28529                                                                                                               afoxolaner
28530                                                                                                               cephalexin
28531                                                                                                                probiotic
28533                                                                                              chloroxylenol, ketoconazole
28534                                                                                              lufenuron, milbemycin oxime
28535                                                                                                               afoxolaner
28536                                                                                                 fipronil, (s)-methoprene
28538                                                                                                                probiotic
28545                                                                                             ivermectin, pyrantel pamoate
28549                                                                                                               ivermectin
28552                                                                                                 imidacloprid, permethrin
28553                                                                                                               fluralaner
28554                                                                                                               ivermectin
28556                                                                                                               lokivetmab
28557                                                                                                               fluralaner
28571                                                                                             ivermectin, pyrantel pamoate
28572                                                                                                 flumethrin, imidacloprid
28573                                                                                             ivermectin, pyrantel pamoate
28574                                                                                                 flumethrin, imidacloprid
28576                                                                               dextromethorphan hydrobromide, guaifenesin
28577                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28580                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
28582                                                                                             ivermectin, pyrantel pamoate
28583                                                                                                 flumethrin, imidacloprid
28590                                                                                       joint supplement (glucosamine hcl)
28601                                                                                               imidacloprid, pyriproxyfen
28602                                                                                              lufenuron, milbemycin oxime
28604                                                                                               imidacloprid, pyriproxyfen
28605                                                                                                   unspecified medication
28606                                                                                              lufenuron, milbemycin oxime
28610                                                                                           praziquantel, pyrantel pamoate
28611                                                                                                             multivitamin
28612                                                                                                             multivitamin
28614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28616                                                                                        betamethasone, gentamicin sulfate
28621                                                                                               imidacloprid, pyriproxyfen
28624                                                                                                                meloxicam
28626                                                                                                               ivermectin
28630                                                                                              lufenuron, milbemycin oxime
28631                                                                                                               afoxolaner
28632                                                                                                                carprofen
28639                                                                                                                carprofen
28660                                                                                        betamethasone, gentamicin sulfate
28668                                                                                             ivermectin, pyrantel pamoate
28673                                                                          betamethasone, clotrimazole, gentamicin sulfate
28674                                                                                             ivermectin, pyrantel pamoate
28675                                                                                                 fipronil, (s)-methoprene
28681                                                                                             ivermectin, pyrantel pamoate
28685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28686                                                                                                                probiotic
28687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28690                                                                                              lufenuron, milbemycin oxime
28692                                                                                                            levothyroxine
28693                                                                                              lufenuron, milbemycin oxime
28694                                                                                                         milbemycin oxime
28696                                                                                              lufenuron, milbemycin oxime
28698                                                                                                            levothyroxine
28699                                                                                                                carprofen
28710                                                                                                 imidacloprid, moxidectin
28714                                                                          betamethasone, clotrimazole, gentamicin sulfate
28716                                                                          betamethasone, clotrimazole, gentamicin sulfate
28717                                                                                           sulfamethoxazole, trimethoprim
28718                                                                                                               wind toxin
28719                                                                                                     long dan xie gan wan
28723                                                                                                               selamectin
28726                                                                                               milbemycin oxime, spinosad
28727                                                                          betamethasone, clotrimazole, gentamicin sulfate
28730                                                                                               milbemycin oxime, spinosad
28731                                                                          betamethasone, clotrimazole, gentamicin sulfate
28732                                                                                                               cephalexin
28735                                                                                                         milbemycin oxime
28736                                                                                                                lotilaner
28750                                                                                                                   arnica
28751                                                                                                                vitamin b
28762                                                                                                  ketoconazole, tris-edta
28764                                                                                                                ofloxacin
28765                                                                                                              hydroxyzine
28766                                                                                                              hydroxyzine
28772                                                                                                                  omega 3
28773                                                                                                              di tan tang
28780                                                                                             ivermectin, pyrantel pamoate
28806                                                                                                 fipronil, (s)-methoprene
28809                                                                                             ivermectin, pyrantel pamoate
28819                                                                           dexamethasone, neomycin sulfate, thiabendazole
28826                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
28829                                                                                                                mupirocin
28831                                                                             dexamethasone, neomycin sulfate, polymyxin b
28832                                                                                                            metronidazole
28833                                                                             florfenicol, mometasone furoate, terbinafine
28855                                                                                                             fenbendazole
28873                                                                                                 fipronil, (s)-methoprene
28874                                                                                                               ivermectin
28882                                                                                                               afoxolaner
28883                                                                                                               afoxolaner
28884                                                                                                               afoxolaner
28888                                                                                                               afoxolaner
28897                                                                               ivermectin, praziquantel, pyrantel pamoate
28899                                                                                             ivermectin, pyrantel pamoate
28904                                                                                             ivermectin, pyrantel pamoate
28905                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28906                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
28907                                                                                                               afoxolaner
28934                                                                                                               afoxolaner
28939                                                                                              lufenuron, milbemycin oxime
28940                                                                                                 homatropine, hydrocodone
28941                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
28946                                                                                         phytosphingosine, salicylic acid
28979                                                                                              lufenuron, milbemycin oxime
28980                                                                                       fipronil, permethrin, pyriproxyfen
28982                                                                                              lufenuron, milbemycin oxime
28983                                                                                               milbemycin oxime, spinosad
28986                                                                                             ivermectin, pyrantel pamoate
28987                                                                                                 fipronil, (s)-methoprene
28988                                                                                       amoxicillin, clavulanate potassium
28998                                                                                                      phenylpropanolamine
28999                                                                                                      phenylpropanolamine
29000                                                                                                               selamectin
29007                                                                                                 fipronil, (s)-methoprene
29008                                                                                                         milbemycin oxime
29015                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29022                                                                               dextromethorphan hydrobromide, guaifenesin
29023                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
29036                                                                             dexamethasone, neomycin sulfate, polymyxin b
29037                                                                                              lufenuron, milbemycin oxime
29039                                                                                                                  taurine
29040                                                                                                                  taurine
29043                                                                                                                  taurine
29050                                                                                        betamethasone, gentamicin sulfate
29053                                                                                                           hydrocortisone
29056                                                                                               milbemycin oxime, spinosad
29060                                                                                                               benzocaine
29064                                                                                               milbemycin oxime, spinosad
29067                                                                                             ivermectin, pyrantel pamoate
29069                                                                                             ivermectin, pyrantel pamoate
29070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29071                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29072                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29073                                                                                                         atropine sulfate
29075                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29078                                                                                                     fipronil, permethrin
29079                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29080                                                                                              lufenuron, milbemycin oxime
29081                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29082                                                                                               milbemycin oxime, spinosad
29083                                                                                                                probiotic
29086                                                                                               milbemycin oxime, spinosad
29087                                                                                               milbemycin oxime, spinosad
29091                                                                                               milbemycin oxime, spinosad
29092                                                                             florfenicol, mometasone furoate, terbinafine
29095                                                                                               milbemycin oxime, spinosad
29096                                                                                                               afoxolaner
29097                                                                             florfenicol, mometasone furoate, terbinafine
29098                                                                                                  ketoconazole, tris-edta
29099                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
29100                                                                                                                carprofen
29103                                                                                                                 fentanyl
29104                                                                                                                 ketamine
29108                                                                                        betamethasone, gentamicin sulfate
29135                                                                                                              oclacitinib
29136                                                                                                         milbemycin oxime
29139                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29143                                                                                             ivermectin, pyrantel pamoate
29150                                                                                                               selamectin
29151                                                                                                               selamectin
29152                                                                                                            levothyroxine
29153                                                                                                unspecified otic ear pack
29154                                                                                                               selamectin
29161                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29166                                                                                                               indoxacarb
29184                                                                                              lufenuron, milbemycin oxime
29196                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29197                                                                                                          cbd or hemp oil
29220                                                                                                                mupirocin
29232                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29234                                                                                                  chlorhexidine gluconate
29235                                                                                                               penicillin
29244                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
29245                                                                                                                  omega 3
29248                                                                                                            dexamethasone
29283                                                                                                               lokivetmab
29285                                                                           dexamethasone, neomycin sulfate, thiabendazole
29291                                                                                       chlorhexidine gluconate, tris-edta
29293                                                                                                               ivermectin
29298                                                                                              lufenuron, milbemycin oxime
29313                                                                                                                ketorolac
29315                                                                                             ivermectin, pyrantel pamoate
29321                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29324                                                                                               imidacloprid, pyriproxyfen
29327                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29328                                                                                             ivermectin, pyrantel pamoate
29340                                                                                                               benzocaine
29342                                                                                                      ear cleaner (zymox)
29374                                                                                              lufenuron, milbemycin oxime
29375                                                                                                 imidacloprid, permethrin
29376                                                                                              lufenuron, milbemycin oxime
29377                                                                                               imidacloprid, pyriproxyfen
29378                                                                                              lufenuron, milbemycin oxime
29379                                                                                              lufenuron, milbemycin oxime
29380                                                                                              lufenuron, milbemycin oxime
29381                                                                                              lufenuron, milbemycin oxime
29382                                                                                              lufenuron, milbemycin oxime
29383                                                                                               imidacloprid, pyriproxyfen
29395                                                                                               acetaminophen, hydrocodone
29404                                                                                                               prednisone
29405                                                                                                              doxycycline
29406                                                                                                                 tramadol
29428                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
29438                                                                                                               isoflurane
29446                                                                                                               benzocaine
29447                                                                                              phytosphingosine, pramoxine
29453                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29469                                                                                                               ivermectin
29470                                                                                                 flumethrin, imidacloprid
29471                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29479                                                                                              lufenuron, milbemycin oxime
29480                                                                                              lufenuron, milbemycin oxime
29481                                                                                              lufenuron, milbemycin oxime
29482                                                                                              lufenuron, milbemycin oxime
29483                                                                                                               fluralaner
29490                                                                                              lufenuron, milbemycin oxime
29499                                                                                             ivermectin, pyrantel pamoate
29500                                                                                                 fipronil, (s)-methoprene
29501                                                                                             ivermectin, pyrantel pamoate
29502                                                                                                         milbemycin oxime
29504                                                                                                         milbemycin oxime
29505                                                                                   fipronil, pyriproxyfen, (s)-methoprene
29506                                                                                                                carprofen
29509                                                                                                            levothyroxine
29511                                                                                                         milbemycin oxime
29525                                                                                              lufenuron, milbemycin oxime
29526                                                                                                   cyphenothrin, fipronil
29531                                                                                              lufenuron, milbemycin oxime
29532                                                                                                                 fipronil
29533                                                                                                         milbemycin oxime
29534                                                                                               imidacloprid, pyriproxyfen
29535                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29536                                                                                                         milbemycin oxime
29537                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29538                                                                                                         milbemycin oxime
29539                                                                                                 imidacloprid, permethrin
29540                                                                                                         milbemycin oxime
29567                                                                                             ivermectin, pyrantel pamoate
29568                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29572                                                                                    dinotefuran, permethrin, pyriproxyfen
29573                                                                                             ivermectin, pyrantel pamoate
29574                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29575                                                                                                     cefpodoxime proxetil
29579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29580                                                                                             ivermectin, pyrantel pamoate
29588                                                                                             ivermectin, pyrantel pamoate
29592                                                                                                            metronidazole
29601                                                                                                              oclacitinib
29602                                                                                                              oclacitinib
29604                                                                                                              oclacitinib
29606                                                                                                               ivermectin
29608                                                                                                 fipronil, (s)-methoprene
29617                                                                                                               afoxolaner
29633                                                                               ivermectin, praziquantel, pyrantel pamoate
29662                                                                                                                  omega 3
29666                                                                                                             multivitamin
29669                                                                                                                probiotic
29670                                                                                                 skin and coat supplement
29678                                                                                       amoxicillin, clavulanate potassium
29691                                                                                                              amoxicillin
29692                                                                                                               ranitidine
29693                                                                                                               sucralfate
29694                                                                                                                carprofen
29695                                                                                                                 tramadol
29696                                                                                                     digestive supplement
29697                                                                                                            metronidazole
29698                                                                                       amoxicillin, clavulanate potassium
29699                                                                                                     cefpodoxime proxetil
29700                                                                                                             imidacloprid
29705                                                                                               imidacloprid, pyriproxyfen
29707                                                                                               imidacloprid, pyriproxyfen
29709                                                                                               imidacloprid, pyriproxyfen
29715                                                                                                 flumethrin, imidacloprid
29716                                                                                                 flumethrin, imidacloprid
29719                                                                                                 flumethrin, imidacloprid
29720                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
29722                                                                                                 flumethrin, imidacloprid
29724                                                                                                 flumethrin, imidacloprid
29726                                                                                                 flumethrin, imidacloprid
29729                                                                                                            phenobarbital
29730                                                                                                            phenobarbital
29733                                                                                                            levetiracetam
29734                                                                                              lufenuron, milbemycin oxime
29736                                                                                lufenuron, milbemycin oxime, praziquantel
29744                                                                                              lufenuron, milbemycin oxime
29749                                                                                        trimeprazine tartrate, prednisone
29753                                                                                             ivermectin, pyrantel pamoate
29764                                                                                                               moxidectin
29765                                                                                                               fluralaner
29767                                                                                                         milbemycin oxime
29770                                                                                             ivermectin, pyrantel pamoate
29794                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29797                                                                                                               ivermectin
29798                                                                                             ivermectin, pyrantel pamoate
29799                                                                                             ivermectin, pyrantel pamoate
29800                                                                                                               afoxolaner
29801                                                                                                  chlorhexidine gluconate
29802                                                                                             ivermectin, pyrantel pamoate
29803                                                                                                               afoxolaner
29822                                                                                             ivermectin, pyrantel pamoate
29823                                                                                                               afoxolaner
29824                                                                                             ivermectin, pyrantel pamoate
29825                                                                                                               afoxolaner
29827                                                                           mometasone furoate, orbifloxacin, posaconazole
29829                                                                                        betamethasone, gentamicin sulfate
29831                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29832                                                                                                  ketoconazole, tris-edta
29838                                                                                   joint supplement (glucosamine hcl/msm)
29839                                                                                                 joint supplement (other)
29840                                                                                                           wei qi booster
29847                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29848                                                                                                  ketoconazole, tris-edta
29851                                                                                                               cephalexin
29858                                                                                                               ivermectin
29859                                                                                                               ivermectin
29860                                                                                                               ivermectin
29861                                                                                                               ivermectin
29862                                                                                               milbemycin oxime, spinosad
29865                                                                                               milbemycin oxime, spinosad
29880                                                                                                               ivermectin
29882                                                                                             ivermectin, pyrantel pamoate
29883                                                                                                               afoxolaner
29906                                                                                                             azathioprine
29907                                                                                                   pyridostigmine bromide
29933                                                                               ivermectin, praziquantel, pyrantel pamoate
29940                                                                               ivermectin, praziquantel, pyrantel pamoate
29941                                                                               ivermectin, praziquantel, pyrantel pamoate
29948                                                                             florfenicol, mometasone furoate, terbinafine
29954                                                                                                               ivermectin
29955                                                                                               imidacloprid, pyriproxyfen
29956                                                                                                               ivermectin
29957                                                                                                 imidacloprid, permethrin
29963                                                                                               imidacloprid, pyriproxyfen
29964                                                                                             ivermectin, pyrantel pamoate
29966                                                                                        betamethasone, gentamicin sulfate
29969                                                                                               imidacloprid, pyriproxyfen
29970                                                                                             ivermectin, pyrantel pamoate
29978                                                                                              lufenuron, milbemycin oxime
29990                                                                                               imidacloprid, pyriproxyfen
29991                                                                                              lufenuron, milbemycin oxime
29993                                                                                              lufenuron, milbemycin oxime
30001                                                                                       amoxicillin, clavulanate potassium
30048                                                                                                         pyrantel pamoate
30070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30075                                                                                                 fipronil, (s)-methoprene
30076                                                                                                               ivermectin
30081                                                                                                               ivermectin
30082                                                                                                 fipronil, (s)-methoprene
30083                                                                                             ivermectin, pyrantel pamoate
30098                                                                                                               fluralaner
30099                                                                                              lufenuron, milbemycin oxime
30104                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30105                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30127                                                                                                                carprofen
30131                                                                                                                  omega 3
30132                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30138                                                                                             ivermectin, pyrantel pamoate
30142                                                                                               milbemycin oxime, spinosad
30143                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
30162                                                                                                   unspecified medication
30164                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
30165                                                                                               milbemycin oxime, spinosad
30166                                                                                              lufenuron, milbemycin oxime
30169                                                                                                         tylosin tartrate
30172                                                                                              lufenuron, milbemycin oxime
30174                                                                                              lufenuron, milbemycin oxime
30178                                                                                                         neomycin sulfate
30179                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30185                                                                                             ivermectin, pyrantel pamoate
30186                                                                                                       maropitant citrate
30191                                                                                               milbemycin oxime, spinosad
30192                                                                                               milbemycin oxime, spinosad
30193                                                                                               milbemycin oxime, spinosad
30198                                                                                                     prednisolone acetate
30211                                                                                              lufenuron, milbemycin oxime
30212                                                                                                               fluralaner
30213                                                                                                             fenbendazole
30214                                                                                    dinotefuran, permethrin, pyriproxyfen
30218                                                                                                               fluralaner
30221                                                                                              lufenuron, milbemycin oxime
30239                                                                                              lufenuron, milbemycin oxime
30241                                                                                              lufenuron, milbemycin oxime
30242                                                                                              lufenuron, milbemycin oxime
30246                                                                                                            yunnan baiyao
30263                                                                                                               ivermectin
30264                                                                                       fipronil, permethrin, pyriproxyfen
30268                                                                                                               ivermectin
30269                                                                                       fipronil, permethrin, pyriproxyfen
30270                                                                                                               ivermectin
30274                                                                                             ivermectin, pyrantel pamoate
30277                                                                                             ivermectin, pyrantel pamoate
30286                                                                                             ivermectin, pyrantel pamoate
30298                                                                                              lufenuron, milbemycin oxime
30299                                                                                              lufenuron, milbemycin oxime
30300                                                                                                 fipronil, (s)-methoprene
30306                                                                                                              oclacitinib
30310                                                                                              lufenuron, milbemycin oxime
30311                                                                             dexamethasone, neomycin sulfate, polymyxin b
30312                                                                                        betamethasone, gentamicin sulfate
30313                                                                                              lufenuron, milbemycin oxime
30317                                                                                                                mupirocin
30319                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30327                                                                                                               tobramycin
30329                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30337                                                                                        betamethasone, gentamicin sulfate
30338                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30344                                                                                                               ivermectin
30347                                                                                               milbemycin oxime, spinosad
30351                                                                                                               fluralaner
30352                                                                                             ivermectin, pyrantel pamoate
30353                                                                             dexamethasone, neomycin sulfate, polymyxin b
30354                                                                          betamethasone, clotrimazole, gentamicin sulfate
30355                                                                                                  chlorhexidine gluconate
30356                                                                                                     cefpodoxime proxetil
30357                                                                                        betamethasone, gentamicin sulfate
30358                                                                                                                 tramadol
30359                                                                                                                carprofen
30360                                                                                                                probiotic
30361                                                                                   joint supplement (glucosamine hcl/msm)
30366                                                                                                               fluralaner
30367                                                                                             ivermectin, pyrantel pamoate
30368                                                                                             ivermectin, pyrantel pamoate
30371                                                                                              lufenuron, milbemycin oxime
30372                                                                                                 flumethrin, imidacloprid
30373                                                                                                         milbemycin oxime
30374                                                                                                               fluralaner
30375                                                                                                 flumethrin, imidacloprid
30376                                                                                              lufenuron, milbemycin oxime
30377                                                                                                            metronidazole
30378                                                                                                   unspecified medication
30385                                                                                                         milbemycin oxime
30387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30388                                                                                                                  omega 3
30389                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30395                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30396                                                                                                                  omega 3
30404                                                                                                         milbemycin oxime
30405                                                                                                         milbemycin oxime
30406                                                                                                 fipronil, (s)-methoprene
30418                                                                               ivermectin, praziquantel, pyrantel pamoate
30450                                                                             florfenicol, mometasone furoate, terbinafine
30464                                                                          betamethasone, clotrimazole, gentamicin sulfate
30471                                                                                              lufenuron, milbemycin oxime
30479                                                                                                 imidacloprid, permethrin
30480                                                                                             ivermectin, pyrantel pamoate
30483                                                                                               imidacloprid, pyriproxyfen
30484                                                                                               imidacloprid, pyriproxyfen
30485                                                                                        betamethasone, gentamicin sulfate
30492                                                                                              lufenuron, milbemycin oxime
30494                                                                                              lufenuron, milbemycin oxime
30496                                                                                                             pantoprazole
30515                                                                                              lufenuron, milbemycin oxime
30523                                                                                                                deracoxib
30528                                                                                              lufenuron, milbemycin oxime
30529                                                                                                       miconazole nitrate
30534                                                                                             ivermectin, pyrantel pamoate
30536                                                                                                      ear cleaner (zymox)
30541                                                                                  betamethasone, florfenicol, terbinafine
30555                                                                                              lufenuron, milbemycin oxime
30556                                                                                              lufenuron, milbemycin oxime
30573                                                                                                             praziquantel
30574                                                                                                             fenbendazole
30590                                                                                               milbemycin oxime, spinosad
30604                                                                                               milbemycin oxime, spinosad
30619                                                                                                            metronidazole
30620                                                                                                              doxycycline
30623                                                                           dexamethasone, neomycin sulfate, thiabendazole
30644                                                                          betamethasone, clotrimazole, gentamicin sulfate
30685                                                                                                     digestive supplement
30689                                                                                                            yunnan baiyao
30692                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30701                                                                                                               fluralaner
30702                                                                                              lufenuron, milbemycin oxime
30707                                                                                                               fluralaner
30708                                                                                              lufenuron, milbemycin oxime
30709                                                                                              lufenuron, milbemycin oxime
30710                                                                                                               fluralaner
30713                                                                                                  chlorhexidine gluconate
30714                                                                             dexamethasone, neomycin sulfate, polymyxin b
30717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
30730                                                                                             ivermectin, pyrantel pamoate
30753                                                                                                         milbemycin oxime
30754                                                                                               imidacloprid, pyriproxyfen
30756                                                                                               imidacloprid, pyriproxyfen
30757                                                                                               imidacloprid, pyriproxyfen
30764                                                                                               milbemycin oxime, spinosad
30765                                                                                                         milbemycin oxime
30766                                                                                                                sarolaner
30768                                                                                             ivermectin, pyrantel pamoate
30769                                                                                               bacitracin, hydrocortisone
30779                                                                                             ivermectin, pyrantel pamoate
30784                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30792                                                                                               imidacloprid, pyriproxyfen
30793                                                                                             ivermectin, pyrantel pamoate
30796                                                                                             ivermectin, pyrantel pamoate
30797                                                                                                                sarolaner
30799                                                                                             ivermectin, pyrantel pamoate
30803                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30811                                                                                    dinotefuran, permethrin, pyriproxyfen
30812                                                                                                       maropitant citrate
30813                                                                                             ivermectin, pyrantel pamoate
30814                                                                          betamethasone, clotrimazole, gentamicin sulfate
30815                                                                                                       calming supplement
30816                                                                                                                 tramadol
30817                                                                                                       calming supplement
30819                                                                                    dinotefuran, permethrin, pyriproxyfen
30820                                                                                             ivermectin, pyrantel pamoate
30821                                                                                                            metronidazole
30822                                                                                                              amoxicillin
30823                                                                                                                carvacrol
30824                                                                                                   unspecified medication
30826                                                                                             ivermectin, pyrantel pamoate
30833                                                                                                               fluralaner
30834                                                                                  betamethasone, florfenicol, terbinafine
30840                                                                               dextromethorphan hydrobromide, guaifenesin
30844                                                                                             ivermectin, pyrantel pamoate
30876                                                                                                         pyrantel pamoate
30877                                                                                             ivermectin, pyrantel pamoate
30893                                                                                                             praziquantel
30901                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30909                                                                               ivermectin, praziquantel, pyrantel pamoate
30917                                                                                        betamethasone, gentamicin sulfate
30920                                                                                       fipronil, permethrin, pyriproxyfen
30936                                                                                                            yunnan baiyao
30943                                                                                lufenuron, milbemycin oxime, praziquantel
30944                                                                                                               fluralaner
30945                                                                                              lufenuron, milbemycin oxime
30947                                                                                              lufenuron, milbemycin oxime
30948                                                                                                               fluralaner
30949                                                                                              lufenuron, milbemycin oxime
30953                                                                                                                probiotic
30960                                                                                                                  omega 3
30961                                                                                                             multivitamin
30962                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30963                                                                                                                carprofen
30998                                                                                                 imidacloprid, permethrin
31000                                                                                                 imidacloprid, permethrin
31001                                                                                             ivermectin, pyrantel pamoate
31003                                                                                                               selamectin
31004                                                                                               imidacloprid, pyriproxyfen
31010                                                                                             ivermectin, pyrantel pamoate
31011                                                                                               imidacloprid, pyriproxyfen
31012                                                                                                            levothyroxine
31016                                                                                                immune support supplement
31022                                                                                             ivermectin, pyrantel pamoate
31023                                                                                                               fluralaner
31034                                                                                                         milbemycin oxime
31043                                                                                               imidacloprid, pyriproxyfen
31046                                                                                lufenuron, milbemycin oxime, praziquantel
31089                                                                                             ivermectin, pyrantel pamoate
31094                                                                                           milbemycin oxime, praziquantel
31095                                                                                                                carprofen
31096                                                                                           milbemycin oxime, praziquantel
31097                                                                                                                  taurine
31098                                                                                                                meclizine
31105                                                                                             ivermectin, pyrantel pamoate
31132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31133                                                                                              lufenuron, milbemycin oxime
31134                                                                                                               afoxolaner
31135                                                                                              lufenuron, milbemycin oxime
31136                                                                                              lufenuron, milbemycin oxime
31137                                                                                                               afoxolaner
31139                                                                                                               afoxolaner
31148                                                                                             ivermectin, pyrantel pamoate
31149                                                                                             ivermectin, pyrantel pamoate
31152                                                                                                               ivermectin
31154                                                                                             ivermectin, pyrantel pamoate
31183                                                                                                               fluralaner
31186                                                                                                     dorzolamide, timolol
31195                                                                                lufenuron, milbemycin oxime, praziquantel
31196                                                                                                                deracoxib
31197                                                                                                                probiotic
31198                                                                                                               alprazolam
31199                                                                                             ivermectin, pyrantel pamoate
31200                                                                                                               fluoxetine
31203                                                                                                                probiotic
31209                                                                                                               gabapentin
31228                                                                                                               isoflurane
31232                                                                                                               isoflurane
31233                                                                                              lufenuron, milbemycin oxime
31234                                                                                                 fipronil, (s)-methoprene
31235                                                                                                         milbemycin oxime
31243                                                                                                         milbemycin oxime
31245                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31247                                                                                                         milbemycin oxime
31248                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31249                                                                                                         milbemycin oxime
31250                                                                                                 fipronil, (s)-methoprene
31260                                                                                                         milbemycin oxime
31263                                                                                              lufenuron, milbemycin oxime
31265                                                                                    dinotefuran, permethrin, pyriproxyfen
31268                                                                                                              sevoflurane
31297                                                                                                               selamectin
31299                                                                                                               selamectin
31300                                                                                                               ivermectin
31301                                                                                                               fluralaner
31303                                                                                                               selamectin
31307                                                                                               imidacloprid, pyriproxyfen
31308                                                                                                         milbemycin oxime
31309                                                                                                               selamectin
31317                                                                                              rx diet - digestive support
31322                                                                                               milbemycin oxime, spinosad
31328                                                                                                               afoxolaner
31330                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31350                                                                           mometasone furoate, orbifloxacin, posaconazole
31353                                                                                                               prednisone
31356                                                                                                  ketoconazole, tris-edta
31357                                                                                             ivermectin, pyrantel pamoate
31358                                                                                                               afoxolaner
31359                                                                                   joint supplement (glucosamine hcl/msm)
31360                                                                                                                  omega 3
31361                                                                                             ivermectin, pyrantel pamoate
31365                                                                                                         milbemycin oxime
31366                                                                                                               afoxolaner
31367                                                                                                              robenacoxib
31369                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
31370                                                                                  betamethasone, florfenicol, terbinafine
31371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31373                                                                                              lufenuron, milbemycin oxime
31374                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31375                                                                                              lufenuron, milbemycin oxime
31380                                                                                                              oclacitinib
31381                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31383                                                                                              lufenuron, milbemycin oxime
31384                                                                                               milbemycin oxime, spinosad
31385                                                                                                               afoxolaner
31386                                                                                             ivermectin, pyrantel pamoate
31389                                                                                                         pyrantel pamoate
31408                                                                                                               ivermectin
31410                                                                                                                vitamin k
31411                                                                                                       maropitant citrate
31412                                                                                                       activated charcoal
31413                                                                                                                vitamin k
31414                                                                                                               fluralaner
31415                                                                                             ivermectin, pyrantel pamoate
31416                                                                                                               fluralaner
31417                                                                                             ivermectin, pyrantel pamoate
31418                                                                                             ivermectin, pyrantel pamoate
31419                                                                                                               fluralaner
31420                                                                                                                  taurine
31423                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31434                                                                                                  ketoconazole, tris-edta
31437                                                                                        trimeprazine tartrate, prednisone
31438                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31439                                                                          betamethasone, clotrimazole, gentamicin sulfate
31440                                                                                             ivermectin, pyrantel pamoate
31441                                                                                             ivermectin, pyrantel pamoate
31446                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31447                                                                                         phytosphingosine, salicylic acid
31449                                                                                             ivermectin, pyrantel pamoate
31450                                                                                                               afoxolaner
31452                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31457                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31463                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31471                                                                                                               ivermectin
31502                                                                                                               ivermectin
31503                                                                                                               afoxolaner
31504                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31506                                                                                                               afoxolaner
31507                                                                                                            levothyroxine
31508                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31528                                                                                                               afoxolaner
31529                                                                                             ivermectin, pyrantel pamoate
31531                                                                                                               afoxolaner
31539                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31542                                                                                                 urinary tract supplement
31548                                                                                                               lokivetmab
31551                                                                                                  ketoconazole, tris-edta
31552                                                                                                 fipronil, (s)-methoprene
31553                                                                                                 fipronil, (s)-methoprene
31599                                                                                                                carprofen
31602                                                                                             ivermectin, pyrantel pamoate
31611                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31612                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
31616                                                                                                                  omega 3
31617                                                                                                               ivermectin
31618                                                                                                               afoxolaner
31619                                                                                                                  omega 3
31637                                                                                             ivermectin, pyrantel pamoate
31638                                                                                                               afoxolaner
31640                                                                                                         phytosphingosine
31641                                                                                                                  omega 3
31643                                                                                             ivermectin, pyrantel pamoate
31644                                                                                                                meloxicam
31645                                                                                                         phytosphingosine
31646                                                                                             ivermectin, pyrantel pamoate
31647                                                                                                               afoxolaner
31651                                                                                                              doxycycline
31652                                                                                                  ketoconazole, tris-edta
31653                                                                                             ivermectin, pyrantel pamoate
31654                                                                                                               afoxolaner
31655                                                                                                               gabapentin
31656                                                                                                  ketoconazole, tris-edta
31657                                                                                                                meloxicam
31665                                                                                             ivermectin, pyrantel pamoate
31666                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31678                                                                                             ivermectin, pyrantel pamoate
31680                                                                                             ivermectin, pyrantel pamoate
31688                                                                                             ivermectin, pyrantel pamoate
31689                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31696                                                                                                 fipronil, (s)-methoprene
31707                                                                                             ivermectin, pyrantel pamoate
31713                                                                                             ivermectin, pyrantel pamoate
31716                                                                                              lufenuron, milbemycin oxime
31725                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31726                                                                                               imidacloprid, pyriproxyfen
31730                                                                                              lufenuron, milbemycin oxime
31731                                                                                               imidacloprid, pyriproxyfen
31734                                                                                              lufenuron, milbemycin oxime
31735                                                                                               imidacloprid, pyriproxyfen
31736                                                                                                                probiotic
31737                                                                                                             fenbendazole
31742                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
31747                                                                                                         milbemycin oxime
31748                                                                                                               gabapentin
31760                                                                                             ivermectin, pyrantel pamoate
31761                                                                                                             fenbendazole
31762                                                                                             ivermectin, pyrantel pamoate
31765                                                                                             ivermectin, pyrantel pamoate
31766                                                                                                               fluralaner
31768                                                                                               milbemycin oxime, spinosad
31769                                                                                             ivermectin, pyrantel pamoate
31771                                                                                             ivermectin, pyrantel pamoate
31773                                                                                             ivermectin, pyrantel pamoate
31774                                                                                        betamethasone, gentamicin sulfate
31777                                                                                                               ivermectin
31780                                                                                              lufenuron, milbemycin oxime
31781                                                                                           milbemycin oxime, praziquantel
31798                                                                                             ivermectin, pyrantel pamoate
31803                                                                                           praziquantel, pyrantel pamoate
31804                                                                                                               afoxolaner
31807                                                                                                 fipronil, (s)-methoprene
31808                                                                                             ivermectin, pyrantel pamoate
31810                                                                                             ivermectin, pyrantel pamoate
31811                                                                                                 fipronil, (s)-methoprene
31818                                                                                                 fipronil, (s)-methoprene
31819                                                                                             ivermectin, pyrantel pamoate
31824                                                                                                               ivermectin
31825                                                                                                 fipronil, (s)-methoprene
31826                                                                                        betamethasone, gentamicin sulfate
31833                                                                                                 urinary tract supplement
31834                                                                                        betamethasone, gentamicin sulfate
31836                                                                                                 urinary tract supplement
31837                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
31840                                                                                              lufenuron, milbemycin oxime
31841                                                                                                                meloxicam
31842                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31843                                                                                                             fenbendazole
31844                                                                                              lufenuron, milbemycin oxime
31845                                                                          betamethasone, clotrimazole, gentamicin sulfate
31846                                                                                                 flumethrin, imidacloprid
31847                                                                                              lufenuron, milbemycin oxime
31848                                                                                              lufenuron, milbemycin oxime
31849                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31850                                                                                    enrofloxacin, ketoconazole, tris-edta
31853                                                                                                 fipronil, (s)-methoprene
31861                                                                                           milbemycin oxime, praziquantel
31864                                                                                                         milbemycin oxime
31866                                                                                                         milbemycin oxime
31868                                                                                              lufenuron, milbemycin oxime
31869                                                                                                         milbemycin oxime
31874                                                                                                         milbemycin oxime
31876                                                                                                      ear cleaner (zymox)
31880                                                                                  transcranial magnetic stimulation (tms)
31888                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31891                                                                               ivermectin, praziquantel, pyrantel pamoate
31892                                                                                                               afoxolaner
31895                                                                                                         milbemycin oxime
31896                                                                                                               afoxolaner
31898                                                                                                               afoxolaner
31906                                                                                                 skin and coat supplement
31907                                                                                                               fluralaner
31908                                                                                                               ivermectin
31909                                                                                                               ivermectin
31911                                                                                              lufenuron, milbemycin oxime
31916                                                                                              lufenuron, milbemycin oxime
31930                                                                                                                deracoxib
31937                                                                                               milbemycin oxime, spinosad
31938                                                                                              lufenuron, milbemycin oxime
31939                                                                                              lufenuron, milbemycin oxime
31940                                                                                              lufenuron, milbemycin oxime
31941                                                                                              lufenuron, milbemycin oxime
31942                                                                                              lufenuron, milbemycin oxime
31945                                                                                             ivermectin, pyrantel pamoate
31946                                                                                             ivermectin, pyrantel pamoate
31947                                                                                             ivermectin, pyrantel pamoate
31948                                                                                                               fluralaner
31953                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31954                                                                                                               fluralaner
31955                                                                                             ivermectin, pyrantel pamoate
31967                                                                                                            metronidazole
31968                                                                                             ivermectin, pyrantel pamoate
31985                                                                                                               isoflurane
31990                                                                                              lufenuron, milbemycin oxime
32002                                                                                             ivermectin, pyrantel pamoate
32006                                                                               dextromethorphan hydrobromide, guaifenesin
32015                                                                                                 fipronil, (s)-methoprene
32016                                                                                             ivermectin, pyrantel pamoate
32020                                                                                                               ivermectin
32025                                                                                                                cisapride
32032                                                                                lufenuron, milbemycin oxime, praziquantel
32035                                                                                              lufenuron, milbemycin oxime
32040                                                                                              lufenuron, milbemycin oxime
32046                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32053                                                                                             ivermectin, pyrantel pamoate
32054                                                                                                 fipronil, (s)-methoprene
32055                                                                                                 fipronil, (s)-methoprene
32056                                                                                             ivermectin, pyrantel pamoate
32057                                                                                                               afoxolaner
32058                                                                                             ivermectin, pyrantel pamoate
32059                                                                                             ivermectin, pyrantel pamoate
32060                                                                                                               afoxolaner
32074                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32076                                                                                             ivermectin, pyrantel pamoate
32079                                                                                                               afoxolaner
32080                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32084                                                                             dexamethasone, neomycin sulfate, polymyxin b
32095                                                                                                               fluralaner
32097                                                                                                         milbemycin oxime
32098                                                                                           milbemycin oxime, praziquantel
32099                                                                                                               fluralaner
32100                                                                                           milbemycin oxime, praziquantel
32101                                                                                                               fluralaner
32102                                                                                                               fluralaner
32103                                                                                           milbemycin oxime, praziquantel
32104                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32105                                                                                           milbemycin oxime, praziquantel
32106                                                                                                               fluralaner
32108                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32114                                                                                                 flumethrin, imidacloprid
32116                                                                                                 flumethrin, imidacloprid
32119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32121                                                                                                               ivermectin
32122                                                                                                               afoxolaner
32123                                                                                                         tylosin tartrate
32128                                                                                                               ivermectin
32129                                                                                                               afoxolaner
32131                                                                                                               alprazolam
32132                                                                                                               ivermectin
32133                                                                                                               ivermectin
32134                                                                                                         milbemycin oxime
32168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32171                                                                                      ear cleaner (zymox), hydrocortisone
32175                                                                                      ear cleaner (zymox), hydrocortisone
32179                                                                                             ivermectin, pyrantel pamoate
32180                                                                                                               afoxolaner
32183                                                                                      ear cleaner (zymox), hydrocortisone
32184                                                                                                         phytosphingosine
32187                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32212                                                                                                         tylosin tartrate
32221                                                                                                         milbemycin oxime
32222                                                                                                         milbemycin oxime
32231                                                                                             ivermectin, pyrantel pamoate
32232                                                                                                               fluralaner
32233                                                                               ivermectin, praziquantel, pyrantel pamoate
32234                                                                                                               fluralaner
32236                                                                                             ivermectin, pyrantel pamoate
32237                                                                                                               afoxolaner
32266                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32276                                                                                        betamethasone, gentamicin sulfate
32290                                                                                                               isoflurane
32295                                                                                               milbemycin oxime, spinosad
32296                                                                                                               ivermectin
32297                                                                                   cyphenothrin, fipronil, (s)-methoprene
32310                                                                                        betamethasone, gentamicin sulfate
32312                                                                                             ivermectin, pyrantel pamoate
32313                                                                                                               fluralaner
32315                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32320                                                                                                               isoflurane
32343                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32354                                                                                                              hydroxyzine
32355                                                                                                               prednisone
32356                                                                                                          diphenhydramine
32358                                                                                        betamethasone, gentamicin sulfate
32359                                                                                                 fipronil, (s)-methoprene
32360                                                                                              lufenuron, milbemycin oxime
32362                                                                                              lufenuron, milbemycin oxime
32363                                                                                                   unspecified medication
32364                                                                                                               lokivetmab
32365                                                                                                               lokivetmab
32366                                                                                                              oclacitinib
32370                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32390                                                                                                               moxidectin
32393                                                                                                               moxidectin
32394                                                                                                               fluralaner
32397                                                                                                            levothyroxine
32417                                                                                              lufenuron, milbemycin oxime
32425                                                                                                 fipronil, (s)-methoprene
32426                                                                                             ivermectin, pyrantel pamoate
32427                                                                                                         milbemycin oxime
32445                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32447                                                                                              lufenuron, milbemycin oxime
32448                                                                                                         milbemycin oxime
32449                                                                                                               afoxolaner
32460                                                                                                               prednisone
32463                                                                                                         milbemycin oxime
32464                                                                                                               fluralaner
32466                                                                                             ivermectin, pyrantel pamoate
32467                                                                                                               fluralaner
32475                                                                                                              clindamycin
32476                                                                                                                carprofen
32477                                                                                             ivermectin, pyrantel pamoate
32478                                                                                                               fluralaner
32504                                                                                              lufenuron, milbemycin oxime
32505                                                                                               imidacloprid, pyriproxyfen
32507                                                                                                                mupirocin
32509                                                                                              lufenuron, milbemycin oxime
32510                                                                                               imidacloprid, pyriproxyfen
32511                                                                                              lufenuron, milbemycin oxime
32512                                                                                               imidacloprid, pyriproxyfen
32513                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32520                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32521                                                                                                                ofloxacin
32529                                                                                              lufenuron, milbemycin oxime
32530                                                                                              lufenuron, milbemycin oxime
32535                                                                                              lufenuron, milbemycin oxime
32536                                                                                                               fluralaner
32538                                                                          betamethasone, clotrimazole, gentamicin sulfate
32542                                                                          betamethasone, clotrimazole, gentamicin sulfate
32557                                                                                             ivermectin, pyrantel pamoate
32558                                                                                                 fipronil, (s)-methoprene
32561                                                                                             ivermectin, pyrantel pamoate
32562                                                                                               imidacloprid, pyriproxyfen
32575                                                                                       chlorhexidine gluconate, ophytrium
32576                                                                                       joint supplement (glucosamine hcl)
32629                                                                                                             multivitamin
32631                                                                                           milbemycin oxime, praziquantel
32633                                                                                                             multivitamin
32635                                                                                    dinotefuran, permethrin, pyriproxyfen
32637                                                                                        betamethasone, gentamicin sulfate
32642                                                                                              lufenuron, milbemycin oxime
32643                                                                                                         milbemycin oxime
32652                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32654                                                                                                         pyrantel pamoate
32664                                                                                             ivermectin, pyrantel pamoate
32670                                                                                              lufenuron, milbemycin oxime
32672                                                                                                  chlorhexidine gluconate
32673                                                                                             ivermectin, pyrantel pamoate
32678                                                                                              lufenuron, milbemycin oxime
32680                                                                                              lufenuron, milbemycin oxime
32682                                                                                              lufenuron, milbemycin oxime
32685                                                                                              lufenuron, milbemycin oxime
32694                                                                                        betamethasone, gentamicin sulfate
32698                                                                                                                 spinosad
32703                                                                                                                 spinosad
32708                                                                                           polysulfated glycosaminoglycan
32726                                                                                                                ketorolac
32737                                                                             dexamethasone, neomycin sulfate, polymyxin b
32739                                                                               ivermectin, praziquantel, pyrantel pamoate
32742                                                                                                         milbemycin oxime
32743                                                                                                                lotilaner
32750                                                                                             ivermectin, pyrantel pamoate
32751                                                                                                               afoxolaner
32767                                                                                        allergy immunotherapy - injection
32768                                                                                                               afoxolaner
32769                                                                                                               moxidectin
32770                                                                                                              oclacitinib
32777                                                                                                                probiotic
32798                                                                             florfenicol, mometasone furoate, terbinafine
32815                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32829                                                                                                 fipronil, (s)-methoprene
32841                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
32844                                                                                       amoxicillin, clavulanate potassium
32849                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
32850                                                                                                                trazodone
32856                                                                                                 fipronil, (s)-methoprene
32857                                                                                             ivermectin, pyrantel pamoate
32858                                                                                                 fipronil, (s)-methoprene
32859                                                                                             ivermectin, pyrantel pamoate
32860                                                                                                              oclacitinib
32862                                                                                                 fipronil, (s)-methoprene
32863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32869                                                                                                               fluralaner
32870                                                                                             ivermectin, pyrantel pamoate
32871                                                                                                               lokivetmab
32879                                                                                                                  omega 3
32883                                                                                                               ivermectin
32884                                                                            attapulgite, bismuth subsalicylate, kanamycin
32887                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32888                                                                                                  ketoconazole, tris-edta
32903                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32912                                                                             dexamethasone, neomycin sulfate, polymyxin b
32923                                                                                             ivermectin, pyrantel pamoate
32930                                                                                              lufenuron, milbemycin oxime
32937                                                                                                 imidacloprid, permethrin
32938                                                                                             ivermectin, pyrantel pamoate
32939                                                                                                               cetirizine
32940                                                                                                                ophytrium
32942                                                                                             ivermectin, pyrantel pamoate
32943                                                                                                               fluralaner
32944                                                                                                               afoxolaner
32949                                                                                                                ophytrium
32950                                                                                                                  omega 3
32951                                                                                             ivermectin, pyrantel pamoate
32952                                                                                                               afoxolaner
32953                                                                                                              oclacitinib
32954                                                                                       amoxicillin, clavulanate potassium
32955                                                                                             ivermectin, pyrantel pamoate
32956                                                                                                               afoxolaner
32964                                                                                    chlorhexidine gluconate, ketoconazole
32965                                                                           dexamethasone, neomycin sulfate, thiabendazole
32983                                                                                                               cephalexin
32999                                                                                              lufenuron, milbemycin oxime
33004                                                                                              lufenuron, milbemycin oxime
33008                                                                                               imidacloprid, pyriproxyfen
33009                                                                                              lufenuron, milbemycin oxime
33010                                                                                              lufenuron, milbemycin oxime
33011                                                                                                               afoxolaner
33014                                                                             florfenicol, mometasone furoate, terbinafine
33015                                                                                                             fenbendazole
33022                                                                                             ivermectin, pyrantel pamoate
33023                                                                                                 fipronil, (s)-methoprene
33027                                                                                                               afoxolaner
33043                                                                                             ivermectin, pyrantel pamoate
33047                                                                                       amoxicillin, clavulanate potassium
33066                                                                                                               selamectin
33067                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33068                                                                                                               selamectin
33073                                                                                                         pyrantel pamoate
33078                                                                                                               ivermectin
33081                                                                                                         milbemycin oxime
33085                                                                                    dinotefuran, permethrin, pyriproxyfen
33086                                                                                                         milbemycin oxime
33087                                                                                    dinotefuran, permethrin, pyriproxyfen
33088                                                                                                         milbemycin oxime
33089                                                                                    dinotefuran, permethrin, pyriproxyfen
33090                                                                                                         milbemycin oxime
33091                                                                                    dinotefuran, permethrin, pyriproxyfen
33092                                                                                                         milbemycin oxime
33096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33107                                                                                             ivermectin, pyrantel pamoate
33108                                                                                             ivermectin, pyrantel pamoate
33110                                                                                                         milbemycin oxime
33113                                                                                             ivermectin, pyrantel pamoate
33123                                                                                                             ketoconazole
33124                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
33125                                                                                                              doxycycline
33126                                                                                        betamethasone, gentamicin sulfate
33128                                                                             florfenicol, mometasone furoate, terbinafine
33132                                                                                                               afoxolaner
33133                                                                                                               ivermectin
33138                                                                                             ivermectin, pyrantel pamoate
33157                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33159                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33166                                                                                                   cyphenothrin, fipronil
33187                                                                                             ivermectin, pyrantel pamoate
33188                                                                                                               fluralaner
33189                                                                                                              hydroxyzine
33190                                                                                               milbemycin oxime, spinosad
33191                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33209                                                                               chloroxylenol, lactic acid, salicylic acid
33211                                                                                              lufenuron, milbemycin oxime
33220                                                                                 febantel, praziquantel, pyrantel pamoate
33222                                                                                              lufenuron, milbemycin oxime
33226                                                                                                                  omega 3
33227                                                                                                                probiotic
33229                                                                                    dinotefuran, permethrin, pyriproxyfen
33230                                                                                              lufenuron, milbemycin oxime
33233                                                                                                                probiotic
33235                                                                                              lufenuron, milbemycin oxime
33236                                                                                    dinotefuran, permethrin, pyriproxyfen
33239                                                                                                                probiotic
33242                                                                                              lufenuron, milbemycin oxime
33271                                                                                                   unspecified medication
33286                                                                                             ivermectin, pyrantel pamoate
33289                                                                               ivermectin, praziquantel, pyrantel pamoate
33292                                                                                             ivermectin, pyrantel pamoate
33293                                                                                                 fipronil, (s)-methoprene
33317                                                                                                               ivermectin
33318                                                                                                 fipronil, (s)-methoprene
33333                                                                                              lufenuron, milbemycin oxime
33335                                                                                              lufenuron, milbemycin oxime
33336                                                                                              lufenuron, milbemycin oxime
33338                                                                                                               lokivetmab
33347                                                                                                               lokivetmab
33354                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33355                                                                                        betamethasone, gentamicin sulfate
33358                                                                                             ivermectin, pyrantel pamoate
33363                                                                                             ivermectin, pyrantel pamoate
33364                                                                                                               fluralaner
33370                                                                                             ivermectin, pyrantel pamoate
33374                                                                                    chlorhexidine gluconate, ketoconazole
33375                                                                               coal tar solution, menthol, salicylic acid
33376                                                                                                 joint supplement (other)
33377                                                                                                                  omega 3
33385                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33387                                                                                                       gentamicin sulfate
33389                                                                                               neomycin sulfate, nystatin
33410                                                                                             ivermectin, pyrantel pamoate
33411                                                                                                 flumethrin, imidacloprid
33412                                                                                             ivermectin, pyrantel pamoate
33414                                                                                                 flumethrin, imidacloprid
33456                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33468                                                                                                  ketoconazole, tris-edta
33471                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33479                                                                                                               afoxolaner
33480                                                                                             ivermectin, pyrantel pamoate
33482                                                                             dexamethasone, neomycin sulfate, polymyxin b
33489                                                                                                         pyrantel pamoate
33490                                                                                              lufenuron, milbemycin oxime
33491                                                                                              lufenuron, milbemycin oxime
33492                                                                                              lufenuron, milbemycin oxime
33493                                                                                              lufenuron, milbemycin oxime
33497                                                                                              lufenuron, milbemycin oxime
33499                                                                                                 skin and coat supplement
33500                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33504                                                                                             ivermectin, pyrantel pamoate
33521                                                                                              lufenuron, milbemycin oxime
33539                                                                                                             deltamethrin
33541                                                                                                             deltamethrin
33542                                                                           dexamethasone, neomycin sulfate, thiabendazole
33543                                                                                                             deltamethrin
33544                                                                                                             deltamethrin
33576                                                                                             ivermectin, pyrantel pamoate
33580                                                                                              lufenuron, milbemycin oxime
33581                                                                                                               indoxacarb
33582                                                                                                              doxycycline
33583                                                                                        trimeprazine tartrate, prednisone
33590                                                                                              lufenuron, milbemycin oxime
33591                                                                                              lufenuron, milbemycin oxime
33592                                                                                                         milbemycin oxime
33614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33641                                                                                lufenuron, milbemycin oxime, praziquantel
33644                                                                                lufenuron, milbemycin oxime, praziquantel
33645                                                                                              lufenuron, milbemycin oxime
33647                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33649                                                                                              lufenuron, milbemycin oxime
33651                                                                                lufenuron, milbemycin oxime, praziquantel
33655                                                                                              lufenuron, milbemycin oxime
33683                                                                                                         milbemycin oxime
33684                                                                                                 unspecified chemotherapy
33690                                                                                             ivermectin, pyrantel pamoate
33691                                                                                                               afoxolaner
33692                                                                                                                 tramadol
33693                                                                                                                carprofen
33694                                                                                                            metronidazole
33695                                                                                                               cephalexin
33696                                                                                             ivermectin, pyrantel pamoate
33697                                                                                                               afoxolaner
33702                                                                                                                  omega 3
33706                                                                                              lufenuron, milbemycin oxime
33714                                                                                              lufenuron, milbemycin oxime
33717                                                                                                                probiotic
33722                                                                                       chlorhexidine gluconate, ophytrium
33723                                                                                              lufenuron, milbemycin oxime
33724                                                                                              lufenuron, milbemycin oxime
33725                                                                                                                sarolaner
33737                                                                                                                probiotic
33739                                                                                               milbemycin oxime, spinosad
33740                                                                                               milbemycin oxime, spinosad
33756                                                                                neomycin sulfate, polymyxin b, gramicidin
33767                                                                                                         milbemycin oxime
33797                                                                                               imidacloprid, pyriproxyfen
33798                                                                                             ivermectin, pyrantel pamoate
33804                                                                                             ivermectin, pyrantel pamoate
33805                                                                                               imidacloprid, pyriproxyfen
33815                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33818                                                                                                               famotidine
33822                                                                                             ivermectin, pyrantel pamoate
33823                                                                                                               afoxolaner
33824                                                                                             ivermectin, pyrantel pamoate
33825                                                                                                               afoxolaner
33828                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33844                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33850                                                                                             ivermectin, pyrantel pamoate
33868                                                                                                               ivermectin
33869                                                                                             ivermectin, pyrantel pamoate
33870                                                                                             ivermectin, pyrantel pamoate
33890                                                                                                               amantadine
33894                                                                                                  ketoconazole, tris-edta
33901                                                                                             testicular health supplement
33905                                                                                        betamethasone, gentamicin sulfate
33907                                                                                        betamethasone, gentamicin sulfate
33909                                                                                        betamethasone, gentamicin sulfate
33911                                                                                                 fipronil, (s)-methoprene
33913                                                                                                  triamcinolone acetonide
33914                                                                                        betamethasone, gentamicin sulfate
33916                                                                                        allergy immunotherapy - injection
33919                                                                                                                mupirocin
33927                                                                                                 skin and coat supplement
33929                                                                                                 imidacloprid, moxidectin
33939                                                                                                                mupirocin
33940                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33987                                                                                                             multivitamin
33991                                                                                          ear cleaner (epi-otic advanced)
33992                                                                                             ivermectin, pyrantel pamoate
33993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33994                                                                                                  ketoconazole, tris-edta
33995                                                                                                               fluralaner
33998                                                                                                  ketoconazole, tris-edta
34000                                                                                                             multivitamin
34002                                                                                   joint supplement (glucosamine hcl/msm)
34003                                                                                                  ketoconazole, tris-edta
34005                                                                                                       calming supplement
34011                                                                          betamethasone, clotrimazole, gentamicin sulfate
34012                                                                                                  ketoconazole, tris-edta
34014                                                                                 ceramide complex, coconut oil, safflower
34016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34022                                                                                          ear cleaner (epi-otic advanced)
34024                                                                               dextromethorphan hydrobromide, guaifenesin
34029                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34030                                                                                              lufenuron, milbemycin oxime
34043                                                                                              lufenuron, milbemycin oxime
34044                                                                                              lufenuron, milbemycin oxime
34046                                                                                                 fipronil, (s)-methoprene
34048                                                                                              lufenuron, milbemycin oxime
34049                                                                                                 flumethrin, imidacloprid
34051                                                                                              lufenuron, milbemycin oxime
34053                                                                                              lufenuron, milbemycin oxime
34054                                                                                                 flumethrin, imidacloprid
34069                                                                                             ivermectin, pyrantel pamoate
34070                                                                                                               afoxolaner
34071                                                                                                                carprofen
34072                                                                                                               cephalexin
34073                                                                                                               diclofenac
34074                                                                                             ivermectin, pyrantel pamoate
34075                                                                                   imidacloprid, permethrin, pyriproxyfen
34077                                                                                              lufenuron, milbemycin oxime
34087                                                                                               milbemycin oxime, spinosad
34090                                                                                                      ear cleaner (zymox)
34091                                                                                             ivermectin, pyrantel pamoate
34092                                                                                                 fipronil, (s)-methoprene
34093                                                                                                 flumethrin, imidacloprid
34094                                                                                                  acetic acid, boric acid
34095                                                                                                         milbemycin oxime
34096                                                                                           milbemycin oxime, praziquantel
34105                                                                                                hydrocortisone, pramoxine
34107                                                                                                 fipronil, (s)-methoprene
34108                                                                               ivermectin, praziquantel, pyrantel pamoate
34109                                                                                                             fenbendazole
34111                                                                                             ivermectin, pyrantel pamoate
34112                                                                                 febantel, praziquantel, pyrantel pamoate
34113                                                                                                 fipronil, (s)-methoprene
34125                                                                                    dinotefuran, permethrin, pyriproxyfen
34126                                                                                             ivermectin, pyrantel pamoate
34128                                                                                        betamethasone, gentamicin sulfate
34132                                                                                             ivermectin, pyrantel pamoate
34134                                                                                             ivermectin, pyrantel pamoate
34135                                                                                    dinotefuran, permethrin, pyriproxyfen
34138                                                                                                                probiotic
34140                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34147                                                                                             ivermectin, pyrantel pamoate
34148                                                                                                               afoxolaner
34152                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34155                                                                                                                probiotic
34156                                                                                                               loratadine
34157                                                                                                               famotidine
34161                                                                                             ivermectin, pyrantel pamoate
34162                                                                                                               afoxolaner
34227                                                                                                                  rx clay
34230                                                                                                                cisapride
34231                                                                                                              ondansetron
34232                                                                                                                probiotic
34233                                                                                                               famotidine
34234                                                                                                       maropitant citrate
34235                                                                                                              mirtazapine
34238                                                                                             ivermectin, pyrantel pamoate
34239                                                                                                 imidacloprid, permethrin
34240                                                                                               imidacloprid, pyriproxyfen
34241                                                                                             ivermectin, pyrantel pamoate
34242                                                                                                         milbemycin oxime
34243                                                                                               imidacloprid, pyriproxyfen
34246                                                                                               imidacloprid, pyriproxyfen
34247                                                                                                         milbemycin oxime
34249                                                                                                             fenbendazole
34254                                                                                              lufenuron, milbemycin oxime
34260                                                                                       amoxicillin, clavulanate potassium
34262                                                                                              lufenuron, milbemycin oxime
34264                                                                                       amoxicillin, clavulanate potassium
34267                                                                                              lufenuron, milbemycin oxime
34268                                                                                              lufenuron, milbemycin oxime
34269                                                                                                             multivitamin
34282                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
34287                                                                             dexamethasone, neomycin sulfate, polymyxin b
34288                                                                                             ivermectin, pyrantel pamoate
34289                                                                             florfenicol, mometasone furoate, terbinafine
34290                                                                             florfenicol, mometasone furoate, terbinafine
34293                                                                             florfenicol, mometasone furoate, terbinafine
34304                                                                             florfenicol, mometasone furoate, terbinafine
34327                                                                                                                vitamin b
34332                                                                                                               ivermectin
34333                                                                          betamethasone, clotrimazole, gentamicin sulfate
34334                                                                                               imidacloprid, pyriproxyfen
34336                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34340                                                                                                               afoxolaner
34341                                                                                             ivermectin, pyrantel pamoate
34342                                                                                                                 geraniol
34343                                                                                      cedarwood oil, rosemary oil, sesame
34344                                                                                             ivermectin, pyrantel pamoate
34345                                                                                                 fipronil, (s)-methoprene
34348                                                                           dexamethasone, neomycin sulfate, thiabendazole
34356                                                                                                                 spinosad
34359                                                                                                                 spinosad
34360                                                                                                               ivermectin
34361                                                                                             ivermectin, pyrantel pamoate
34362                                                                                                                 spinosad
34367                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34369                                                                                                     cefpodoxime proxetil
34374                                                                                                         milbemycin oxime
34375                                                                                                               fluralaner
34378                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34379                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34388                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34401                                                                                             ivermectin, pyrantel pamoate
34403                                                                                                               afoxolaner
34409                                                                                                               ivermectin
34410                                                                                                               afoxolaner
34418                                                                                              lufenuron, milbemycin oxime
34419                                                                                              lufenuron, milbemycin oxime
34430                                                                                                               moxidectin
34433                                                                                                               moxidectin
34434                                                                                                               fluralaner
34435                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34436                                                                                                 endocrine system support
34456                                                                                        betamethasone, gentamicin sulfate
34457                                                                                                               sucralfate
34458                                                                                                               omeprazole
34459                                                                                                         tylosin tartrate
34460                                                                                                       maropitant citrate
34461                                                                                                       maropitant citrate
34462                                                                                                               famotidine
34463                                                                                                               sucralfate
34464                                                                                                         tylosin tartrate
34465                                                                                                               prednisone
34466                                                                                                               cephalexin
34467                                                                                lufenuron, milbemycin oxime, praziquantel
34468                                                                                                                 spinosad
34474                                                                                lufenuron, milbemycin oxime, praziquantel
34493                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
34510                                                                                                              amoxicillin
34513                                                                                                 fipronil, (s)-methoprene
34528                                                                                                       maropitant citrate
34536                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34545                                                                                                                vitamin b
34548                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34579                                                                                                            yunnan baiyao
34583                                                                                                               ivermectin
34584                                                                                             ivermectin, pyrantel pamoate
34587                                                                                        betamethasone, gentamicin sulfate
34588                                                                                                  ketoconazole, tris-edta
34593                                                                                                               ivermectin
34606                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34608                                                                                        trimeprazine tartrate, prednisone
34609                                                                           dexamethasone, neomycin sulfate, thiabendazole
34612                                                                                                              oclacitinib
34614                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
34617                                                                                                 fipronil, (s)-methoprene
34624                                                                      neomycin sulfate, nystatin, triamcinolone acetonide
34629                                                                                               milbemycin oxime, spinosad
34630                                                                                                  ketoconazole, tris-edta
34635                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
34636                                                                                               milbemycin oxime, spinosad
34637                                                                                        trimeprazine tartrate, prednisone
34638                                                                                       chlorhexidine gluconate, ophytrium
34640                                                                                               milbemycin oxime, spinosad
34642                                                                                                               afoxolaner
34648                                                                                                               ivermectin
34669                                                                                             ivermectin, pyrantel pamoate
34671                                                                                   joint supplement (glucosamine hcl/msm)
34672                                                                                        betamethasone, gentamicin sulfate
34673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34674                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34675                                                                                                               lokivetmab
34676                                                                                           milbemycin oxime, praziquantel
34677                                                                                            allergy immunotherapy - drops
34678                                                                       chlorhexidine gluconate, hydrocortisone, tris-edta
34680                                                                                  betamethasone, florfenicol, terbinafine
34697                                                                                               milbemycin oxime, spinosad
34704                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34705                                                                                               milbemycin oxime, spinosad
34706                                                                                               milbemycin oxime, spinosad
34708                                                                                                    bismuth subsalicylate
34709                                                                                                             multivitamin
34710                                                                                                                probiotic
34727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34728                                                                                                                  omega 3
34729                                                                                                      unspecified vitamin
34730                                                                                             ivermectin, pyrantel pamoate
34733                                                                                             ivermectin, pyrantel pamoate
34734                                                                                                               fluralaner
34741                                                                                    chlorhexidine gluconate, ketoconazole
34744                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34747                                                                                                               fluralaner
34750                                                                                             ivermectin, pyrantel pamoate
34763                                                                                             ivermectin, pyrantel pamoate
34764                                                                                                               afoxolaner
34766                                                                                             ivermectin, pyrantel pamoate
34767                                                                                                               afoxolaner
34787                                                                                       joint supplement (glucosamine hcl)
34788                                                                                                                mupirocin
34789                                                                                             ivermectin, pyrantel pamoate
34791                                                                                             ivermectin, pyrantel pamoate
34797                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34798                                                                                                                  omega 3
34799                                                                                                               ivermectin
34811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34813                                                                                                     prebiotic, probiotic
34828                                                                                               milbemycin oxime, spinosad
34832                                                                                               milbemycin oxime, spinosad
34833                                                                                              lufenuron, milbemycin oxime
34845                                                                                                     prebiotic, probiotic
34867                                                                                                                carprofen
34874                                                                                                               sucralfate
34875                                                                                                               omeprazole
34881                                                                                              lufenuron, milbemycin oxime
34887                                                                                                               ivermectin
34888                                                                                       fipronil, permethrin, pyriproxyfen
34889                                                                                             ivermectin, pyrantel pamoate
34890                                                                                                 fipronil, (s)-methoprene
34891                                                                                             ivermectin, pyrantel pamoate
34892                                                                                                 fipronil, (s)-methoprene
34900                                                                                                         milbemycin oxime
34901                                                                                                               fluralaner
34902                                                                                                               lokivetmab
34903                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34904                                                                                                                  omega 3
34905                                                                                                         milbemycin oxime
34906                                                                                                               fluralaner
34907                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34908                                                                                                               lokivetmab
34917                                                                                                  triamcinolone acetonide
34918                                                                                                            difluprednate
34920                                                                               ivermectin, praziquantel, pyrantel pamoate
34922                                                                                                         milbemycin oxime
34923                                                                                                         milbemycin oxime
34924                                                                                                               fluralaner
34940                                                                                                               cetirizine
34953                                                                                                   gut restore supplement
34955                                                                                                     digestive supplement
34956                                                                                                                  omega 3
34966                                                                                                         milbemycin oxime
34973                                                                                                            metronidazole
34979                                                                                                               fluralaner
34981                                                                                                         milbemycin oxime
34982                                                                               ivermectin, praziquantel, pyrantel pamoate
34983                                                                               ivermectin, praziquantel, pyrantel pamoate
34991                                                                                             ivermectin, pyrantel pamoate
34992                                                                                                               ivermectin
34996                                                                                             ivermectin, pyrantel pamoate
35002                                                                                               imidacloprid, pyriproxyfen
35004                                                                                             ivermectin, pyrantel pamoate
35014                                                                                              lufenuron, milbemycin oxime
35025                                                                                lufenuron, milbemycin oxime, praziquantel
35026                                                                                                         tylosin tartrate
35027                                                                                              rx diet - digestive support
35034                                                                                                         milbemycin oxime
35049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35069                                                                                              lufenuron, milbemycin oxime
35070                                                                                                               cephalexin
35074                                                                                        betamethasone, gentamicin sulfate
35094                                                                                           milbemycin oxime, praziquantel
35101                                                                                                                trazodone
35102                                                                                                                clonidine
35103                                                                                                 fipronil, (s)-methoprene
35109                                                                                                                  calcium
35110                                                                                                         milbemycin oxime
35122                                                                                                               moxidectin
35124                                                                                                               moxidectin
35125                                                                                                               afoxolaner
35126                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35132                                                                                                               fluralaner
35134                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35143                                                                                              lufenuron, milbemycin oxime
35144                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35145                                                                                             ivermectin, pyrantel pamoate
35146                                                                                               milbemycin oxime, spinosad
35147                                                                                                         milbemycin oxime
35148                                                                                       joint supplement (glucosamine hcl)
35149                                                                                                         milbemycin oxime
35150                                                                                               milbemycin oxime, spinosad
35152                                                                                                         milbemycin oxime
35153                                                                                                               fluralaner
35154                                                                                                         milbemycin oxime
35155                                                                                                              oclacitinib
35160                                                                           mometasone furoate, orbifloxacin, posaconazole
35170                                                                                             ivermectin, pyrantel pamoate
35171                                                                                             ivermectin, pyrantel pamoate
35176                                                                                        trimeprazine tartrate, prednisone
35181                                                                                                               ivermectin
35182                                                                                             ivermectin, pyrantel pamoate
35183                                                                                                                  omega 3
35189                                                                                             ivermectin, pyrantel pamoate
35190                                                                                                               cetirizine
35191                                                                                                            levothyroxine
35203                                                                                                               ivermectin
35204                                                                                       fipronil, permethrin, pyriproxyfen
35205                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35207                                                                                             ivermectin, pyrantel pamoate
35212                                                                                                               ivermectin
35213                                                                                                            levothyroxine
35214                                                                                             ivermectin, pyrantel pamoate
35215                                                                                                            levothyroxine
35216                                                                                                               cetirizine
35232                                                                                             ivermectin, pyrantel pamoate
35245                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35252                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35258                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35262                                                                                             ivermectin, pyrantel pamoate
35263                                                                                                               afoxolaner
35264                                                                                             ivermectin, pyrantel pamoate
35278                                                                                             ivermectin, pyrantel pamoate
35279                                                                                                               afoxolaner
35282                                                                                                              hydroxyzine
35283                                                                                             ivermectin, pyrantel pamoate
35284                                                                                                               afoxolaner
35291                                                                                              lufenuron, milbemycin oxime
35299                                                                                                 fipronil, (s)-methoprene
35300                                                                                             ivermectin, pyrantel pamoate
35314                                                                             dexamethasone, neomycin sulfate, polymyxin b
35315                                                                                                         milbemycin oxime
35316                                                                                                               afoxolaner
35318                                                                                                               lokivetmab
35354                                                                                              lufenuron, milbemycin oxime
35382                                                                                             ivermectin, pyrantel pamoate
35388                                                                                                                  menthol
35393                                                                                             ivermectin, pyrantel pamoate
35399                                                                                                               ivermectin
35400                                                                                             ivermectin, pyrantel pamoate
35401                                                                                             ivermectin, pyrantel pamoate
35404                                                                                             ivermectin, pyrantel pamoate
35405                                                                                             ivermectin, pyrantel pamoate
35406                                                                                             ivermectin, pyrantel pamoate
35414                                                                                              lufenuron, milbemycin oxime
35417                                                                                               milbemycin oxime, spinosad
35420                                                                                              lufenuron, milbemycin oxime
35421                                                                                                               fluralaner
35422                                                                                              lufenuron, milbemycin oxime
35423                                                                                              lufenuron, milbemycin oxime
35424                                                                                                               fluralaner
35425                                                                                              lufenuron, milbemycin oxime
35432                                                                                              lufenuron, milbemycin oxime
35434                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35443                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35450                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35453                                                                                                 joint supplement (other)
35454                                                                                                                  omega 3
35495                                                                                             ivermectin, pyrantel pamoate
35496                                                                                             ivermectin, pyrantel pamoate
35497                                                                                             ivermectin, pyrantel pamoate
35498                                                                                                               afoxolaner
35499                                                                                                                probiotic
35501                                                                                                               ivermectin
35503                                                                                                     cefpodoxime proxetil
35504                                                                                                                probiotic
35506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35507                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
35509                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35513                                                                               dextromethorphan hydrobromide, guaifenesin
35525                                                                                                 fipronil, (s)-methoprene
35526                                                                                                         milbemycin oxime
35528                                                                                                         milbemycin oxime
35539                                                                                           milbemycin oxime, praziquantel
35560                                                                                                               ivermectin
35561                                                                                                               afoxolaner
35562                                                                                                               afoxolaner
35563                                                                                             ivermectin, pyrantel pamoate
35565                                                                                             ivermectin, pyrantel pamoate
35566                                                                                                               afoxolaner
35569                                                                                             ivermectin, pyrantel pamoate
35571                                                                               ivermectin, praziquantel, pyrantel pamoate
35572                                                                                               imidacloprid, pyriproxyfen
35573                                                                                                                meloxicam
35574                                                                                                                firocoxib
35575                                                                                              lufenuron, milbemycin oxime
35576                                                                                                         milbemycin oxime
35577                                                                                                               fluralaner
35578                                                                                                               fluralaner
35579                                                                                              lufenuron, milbemycin oxime
35580                                                                                                               prednisone
35581                                                                                                               ivermectin
35582                                                                                              lufenuron, milbemycin oxime
35584                                                                                        trimeprazine tartrate, prednisone
35592                                                                           dexamethasone, neomycin sulfate, thiabendazole
35593                                                                                             ivermectin, pyrantel pamoate
35598                                                                                                         milbemycin oxime
35605                                                                              over-the-counter unmedicated shampoo/mousse
35616                                                                                                              minocycline
35617                                                                                                               famotidine
35618                                                                                                              doxycycline
35619                                                                                                            metronidazole
35620                                                                                                   cyphenothrin, fipronil
35621                                                                                                   cyphenothrin, fipronil
35622                                                                                                     cefpodoxime proxetil
35624                                                                                                               selamectin
35626                                                                                                         tylosin tartrate
35627                                                                                                           metoclopramide
35628                                                                                                               selamectin
35633                                                                                                 joint supplement (other)
35639                                                                                             ivermectin, pyrantel pamoate
35641                                                                                                               afoxolaner
35642                                                                                          ear cleaner (epi-otic advanced)
35643                                                                          betamethasone, clotrimazole, gentamicin sulfate
35644                                                                                        trimeprazine tartrate, prednisone
35645                                                                                                         pyrantel pamoate
35656                                                                                         propylene glycol, salicylic acid
35659                                                                                                         milbemycin oxime
35662                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
35664                                                                                                         milbemycin oxime
35665                                                                                                                sarolaner
35668                                                                                        betamethasone, gentamicin sulfate
35673                                                                                        betamethasone, gentamicin sulfate
35674                                                                          betamethasone, clotrimazole, gentamicin sulfate
35696                                                                                                                probiotic
35697                                                                                                               afoxolaner
35699                                                                                                               afoxolaner
35700                                                                                        betamethasone, gentamicin sulfate
35721                                                                                                 fipronil, (s)-methoprene
35722                                                                                                             multivitamin
35725                                                                                             ivermectin, pyrantel pamoate
35727                                                                                             ivermectin, pyrantel pamoate
35740                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35743                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35746                                                                                                     cefpodoxime proxetil
35747                                                                                                                 tramadol
35748                                                                                             ivermectin, pyrantel pamoate
35749                                                                                                               afoxolaner
35751                                                                                                              oclacitinib
35756                                                                                             ivermectin, pyrantel pamoate
35757                                                                                             ivermectin, pyrantel pamoate
35758                                                                                                               afoxolaner
35762                                                                                                  triamcinolone acetonide
35768                                                                                                 imidacloprid, permethrin
35770                                                                                               imidacloprid, pyriproxyfen
35771                                                                                             ivermectin, pyrantel pamoate
35772                                                                                                                  omega 3
35773                                                                                                 imidacloprid, permethrin
35774                                                                                             ivermectin, pyrantel pamoate
35775                                                                                                               ivermectin
35777                                                                                               imidacloprid, pyriproxyfen
35778                                                                                             ivermectin, pyrantel pamoate
35779                                                                                       joint supplement (glucosamine hcl)
35782                                                                                             ivermectin, pyrantel pamoate
35784                                                                                             ivermectin, pyrantel pamoate
35786                                                                                       fipronil, permethrin, pyriproxyfen
35791                                                                                                 fipronil, (s)-methoprene
35792                                                                                             ivermectin, pyrantel pamoate
35793                                                                                                                probiotic
35808                                                                                                                  rx clay
35809                                                                                       chlorhexidine gluconate, ophytrium
35810                                                                                                                probiotic
35812                                                                                               milbemycin oxime, spinosad
35820                                                                                                               ivermectin
35821                                                                                       fipronil, permethrin, pyriproxyfen
35831                                                                                                         milbemycin oxime
35832                                                                                                                lotilaner
35835                                                                                                         milbemycin oxime
35850                                                                                             ivermectin, pyrantel pamoate
35853                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
35855                                                                                             ivermectin, pyrantel pamoate
35858                                                                                                     cefpodoxime proxetil
35859                                                                                        trimeprazine tartrate, prednisone
35903                                                                                                               epsom salt
35905                                                                                                             orbifloxacin
35907                                                                                                                firocoxib
35908                                                                                              lufenuron, milbemycin oxime
35931                                                                                             ivermectin, pyrantel pamoate
35954                                                                                             ivermectin, pyrantel pamoate
35955                                                                                             ivermectin, pyrantel pamoate
35963                                                                          betamethasone, clotrimazole, gentamicin sulfate
35965                                                                                        enrofloxacin, silver sulfadiazine
35969                                                                                                         phytosphingosine
35973                                                                                               milbemycin oxime, spinosad
35980                                                                                             ivermectin, pyrantel pamoate
35982                                                                                             ivermectin, pyrantel pamoate
35983                                                                                                               afoxolaner
36019                                                                                                               afoxolaner
36021                                                                                                               afoxolaner
36023                                                                                        betamethasone, gentamicin sulfate
36030                                                                                        betamethasone, gentamicin sulfate
36042                                                                                               milbemycin oxime, spinosad
36043                                                                                               milbemycin oxime, spinosad
36044                                                                                               milbemycin oxime, spinosad
36065                                                                                             ivermectin, pyrantel pamoate
36069                                                                                             ivermectin, pyrantel pamoate
36078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36081                                                                                                  ketoconazole, tris-edta
36082                                                                                                               ivermectin
36083                                                                                                            levothyroxine
36084                                                                                                               cetirizine
36108                                                                                                         milbemycin oxime
36110                                                                                               milbemycin oxime, spinosad
36112                                                                                                 joint supplement (other)
36113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36115                                                                                                 joint supplement (other)
36134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36137                                                                                                   unspecified antiseptic
36144                                                                                                 fipronil, (s)-methoprene
36145                                                                                                               ivermectin
36150                                                                                             ivermectin, pyrantel pamoate
36153                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36155                                                                                   fipronil, pyriproxyfen, (s)-methoprene
36156                                                                                             ivermectin, pyrantel pamoate
36159                                                                                                               afoxolaner
36171                                                                                                            metronidazole
36191                                                                                             ivermectin, pyrantel pamoate
36192                                                                                                               fluralaner
36196                                                                                               thyroid support supplement
36198                                                                                                unspecified otic ear pack
36200                                                                                               unspecified ear medication
36201                                                                                                             ketoconazole
36202                                                                                            allergy immunotherapy - drops
36203                                                                                            allergy immunotherapy - drops
36205                                                                                            allergy immunotherapy - drops
36218                                                                                                         milbemycin oxime
36220                                                                                             ivermectin, pyrantel pamoate
36221                                                                                                               fluralaner
36222                                                                                            silver oxide, type i collagen
36223                                                                                                                probiotic
36225                                                                                             ivermectin, pyrantel pamoate
36227                                                                                                               afoxolaner
36228                                                                                                               afoxolaner
36229                                                                                             ivermectin, pyrantel pamoate
36231                                                                             florfenicol, mometasone furoate, terbinafine
36232                                                                                                               afoxolaner
36233                                                                                                               ivermectin
36235                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
36237                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36238                                                                                                                carprofen
36240                                                                                                         milbemycin oxime
36254                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36256                                                                          betamethasone, clotrimazole, gentamicin sulfate
36258                                                                                                                carprofen
36264                                                                                                         milbemycin oxime
36268                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36271                                                                                               milbemycin oxime, spinosad
36272                                                                                               milbemycin oxime, spinosad
36273                                                                                               milbemycin oxime, spinosad
36275                                                                                                               selamectin
36276                                                                              chlorhexidine gluconate, miconazole nitrate
36280                                                                                                               selamectin
36283                                                                                                         milbemycin oxime
36284                                                                                                               cephalexin
36288                                                                                                         milbemycin oxime
36289                                                                                                              doxycycline
36292                                                                                                 fipronil, (s)-methoprene
36293                                                                                                 fipronil, (s)-methoprene
36294                                                                                                         pyrantel pamoate
36295                                                                                                             fenbendazole
36296                                                                                                 fipronil, (s)-methoprene
36297                                                                                                         pyrantel pamoate
36298                                                                                                             fenbendazole
36299                                                                                                               ivermectin
36300                                                                                                 fipronil, (s)-methoprene
36301                                                                                                             fenbendazole
36302                                                                                                             fenbendazole
36303                                                                                                         pyrantel pamoate
36304                                                                                                               ivermectin
36305                                                                                                 fipronil, (s)-methoprene
36306                                                                                                             fenbendazole
36307                                                                                                         pyrantel pamoate
36308                                                                                                             fenbendazole
36309                                                                                                         pyrantel pamoate
36310                                                                                                         pyrantel pamoate
36311                                                                                                             fenbendazole
36322                                                                                                 fipronil, (s)-methoprene
36323                                                                                                         pyrantel pamoate
36324                                                                                                             fenbendazole
36325                                                                                                 fipronil, (s)-methoprene
36326                                                                                                         pyrantel pamoate
36327                                                                                                             fenbendazole
36328                                                                                                               ivermectin
36329                                                                                                 fipronil, (s)-methoprene
36330                                                                                                             fenbendazole
36331                                                                                                             fenbendazole
36332                                                                                                         pyrantel pamoate
36333                                                                                                 fipronil, (s)-methoprene
36334                                                                                                               ivermectin
36335                                                                                                             fenbendazole
36336                                                                                                         pyrantel pamoate
36337                                                                                                             fenbendazole
36338                                                                                                         pyrantel pamoate
36339                                                                                                             fenbendazole
36340                                                                                                         pyrantel pamoate
36357                                                                                                               cephalexin
36358                                                                                                 fipronil, (s)-methoprene
36359                                                                                                         pyrantel pamoate
36360                                                                                                             fenbendazole
36361                                                                                                 fipronil, (s)-methoprene
36362                                                                                                         pyrantel pamoate
36363                                                                                                             fenbendazole
36364                                                                                                               ivermectin
36365                                                                                                 fipronil, (s)-methoprene
36366                                                                                                             fenbendazole
36367                                                                                                             fenbendazole
36368                                                                                                         pyrantel pamoate
36369                                                                                                               ivermectin
36370                                                                                                 fipronil, (s)-methoprene
36371                                                                                                             fenbendazole
36372                                                                                                         pyrantel pamoate
36373                                                                                                             fenbendazole
36374                                                                                                         pyrantel pamoate
36376                                                                                                                 oxytocin
36377                                                                                                 fipronil, (s)-methoprene
36378                                                                                                         pyrantel pamoate
36379                                                                                                             fenbendazole
36380                                                                                                 fipronil, (s)-methoprene
36381                                                                                                             fenbendazole
36382                                                                                                         pyrantel pamoate
36383                                                                                                               ivermectin
36384                                                                                                 fipronil, (s)-methoprene
36385                                                                                                             fenbendazole
36397                                                                                                               prednisone
36398                                                                                                 fipronil, (s)-methoprene
36399                                                                                             ivermectin, pyrantel pamoate
36400                                                                                                            metronidazole
36401                                                                                                               prednisone
36402                                                                                                            diphenoxylate
36403                                                                                                 fipronil, (s)-methoprene
36404                                                                                                             fenbendazole
36405                                                                                             ivermectin, pyrantel pamoate
36406                                                                                                 fipronil, (s)-methoprene
36410                                                                                                                vitamin b
36427                                                                                               imidacloprid, pyriproxyfen
36429                                                                                             ivermectin, pyrantel pamoate
36430                                                                                               imidacloprid, pyriproxyfen
36438                                                                                               imidacloprid, pyriproxyfen
36439                                                                                             ivermectin, pyrantel pamoate
36440                                                                                        trimeprazine tartrate, prednisone
36443                                                                                             ivermectin, pyrantel pamoate
36444                                                                                               imidacloprid, pyriproxyfen
36448                                                                                               imidacloprid, pyriproxyfen
36451                                                                                           praziquantel, pyrantel pamoate
36460                                                                                              lufenuron, milbemycin oxime
36461                                                                                                               fluralaner
36464                                                                                        betamethasone, gentamicin sulfate
36474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36491                                                                                             ivermectin, pyrantel pamoate
36497                                                                                             ivermectin, pyrantel pamoate
36513                                                                                                             ketoconazole
36520                                                                                                             fenbendazole
36533                                                                              chlorhexidine gluconate, miconazole nitrate
36535                                                                                       chlorhexidine gluconate, ophytrium
36559                                                                                             ivermectin, pyrantel pamoate
36560                                                                                                 fipronil, (s)-methoprene
36562                                                                                             ivermectin, pyrantel pamoate
36568                                                                                              lufenuron, milbemycin oxime
36571                                                                             dexamethasone, neomycin sulfate, polymyxin b
36574                                                                           mometasone furoate, orbifloxacin, posaconazole
36579                                                                                                               selamectin
36580                                                                                                                carprofen
36595                                                                               ivermectin, praziquantel, pyrantel pamoate
36597                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36598                                                                                                               cephalexin
36599                                                                                                              fluconazole
36600                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36601                                                                               ivermectin, praziquantel, pyrantel pamoate
36602                                                                                                         milbemycin oxime
36605                                                                                                         milbemycin oxime
36606                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36607                                                                                                         milbemycin oxime
36608                                                                                                         milbemycin oxime
36616                                                                               ivermectin, praziquantel, pyrantel pamoate
36623                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36624                                                                                                  acetic acid, boric acid
36626                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36630                                                                                                         milbemycin oxime
36631                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36632                                                                                                         milbemycin oxime
36633                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36635                                                                                                         milbemycin oxime
36636                                                                                                              oclacitinib
36637                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36657                                                                                               milbemycin oxime, spinosad
36660                                                                                             ivermectin, pyrantel pamoate
36661                                                                                             ivermectin, pyrantel pamoate
36667                                                                                                                lotilaner
36670                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36698                                                                                             ivermectin, pyrantel pamoate
36699                                                                                             ivermectin, pyrantel pamoate
36705                                                                                        betamethasone, gentamicin sulfate
36708                                                                                             ivermectin, pyrantel pamoate
36709                                                                              chlorhexidine gluconate, miconazole nitrate
36735                                                                                                                carprofen
36751                                                                                             ivermectin, pyrantel pamoate
36752                                                                                                 fipronil, (s)-methoprene
36753                                                                                                             fenbendazole
36772                                                                                        betamethasone, gentamicin sulfate
36776                                                                                                               fluoxetine
36777                                                                                                               fluoxetine
36778                                                                                                         milbemycin oxime
36816                                                                              rx diet - hypoallergenic hydrolyzed protein
36817                                                                               ivermectin, praziquantel, pyrantel pamoate
36818                                                                                  betamethasone, florfenicol, terbinafine
36819                                                                                                  ketoconazole, tris-edta
36824                                                                                             ivermectin, pyrantel pamoate
36833                                                                                              lufenuron, milbemycin oxime
36834                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36835                                                                                       chlorhexidine gluconate, ophytrium
36840                                                                                              lufenuron, milbemycin oxime
36842                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36846                                                                                              lufenuron, milbemycin oxime
36847                                                                                                               fluralaner
36848                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36849                                                                                                               afoxolaner
36850                                                                                              lufenuron, milbemycin oxime
36851                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36855                                                                                                                probiotic
36859                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36874                                                                                                                meloxicam
36875                                                                                                             acepromazine
36876                                                                                                                 tramadol
36877                                                                                                                firocoxib
36878                                                                                    dinotefuran, permethrin, pyriproxyfen
36879                                                                                                                meloxicam
36880                                                                                                             acepromazine
36881                                                                                             ivermectin, pyrantel pamoate
36882                                                                                                              clindamycin
36883                                                                                                               afoxolaner
36884                                                                                        betamethasone, gentamicin sulfate
36892                                                                                          ear cleaner (epi-otic advanced)
36893                                                                                                               afoxolaner
36894                                                                                             ivermectin, pyrantel pamoate
36900                                                                                             ivermectin, pyrantel pamoate
36901                                                                                                               afoxolaner
36911                                                                                              lufenuron, milbemycin oxime
36916                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36919                                                                                              lufenuron, milbemycin oxime
36920                                                                                                   cyphenothrin, fipronil
36921                                                                                                                probiotic
36925                                                                                              lufenuron, milbemycin oxime
36945                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36946                                                                                                               afoxolaner
36969                                                                                             ivermectin, pyrantel pamoate
36970                                                                                    dinotefuran, permethrin, pyriproxyfen
36982                                                                                               imidacloprid, pyriproxyfen
36983                                                                                                               ivermectin
36984                                                                                                                 spinosad
36985                                                                                                         milbemycin oxime
36994                                                                                                        hypochlorous acid
37007                                                                                              lufenuron, milbemycin oxime
37015                                                                               ivermectin, praziquantel, pyrantel pamoate
37017                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
37018                                                                                                         milbemycin oxime
37019                                                                                                 fipronil, (s)-methoprene
37020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
37021                                                                               ivermectin, praziquantel, pyrantel pamoate
37036                                                                                   dexamethasone, ketoconazole, tris-edta
37038                                                                                       amoxicillin, clavulanate potassium
37046                                                                                                               afoxolaner
37054                                                                                              lufenuron, milbemycin oxime
37055                                                                                             ivermectin, pyrantel pamoate
37056                                                                                             ivermectin, pyrantel pamoate
37057                                                                                             ivermectin, pyrantel pamoate
37061                                                                                                 flumethrin, imidacloprid
37063                                                                                                 flumethrin, imidacloprid
37069                                                                                             ivermectin, pyrantel pamoate
37070                                                                                               imidacloprid, pyriproxyfen
37071                                                                                              lufenuron, milbemycin oxime
37073                                                                           beclomethasone, clotrimazole, neomycin sulfate
37074                                                                                              lufenuron, milbemycin oxime
37075                                                                          betamethasone, clotrimazole, gentamicin sulfate
37076                                                                                               imidacloprid, pyriproxyfen
37077                                                                                               imidacloprid, pyriproxyfen
37078                                                                                              lufenuron, milbemycin oxime
37080                                                                                               imidacloprid, pyriproxyfen
37087                                                                                               imidacloprid, pyriproxyfen
37088                                                                                                         milbemycin oxime
37091                                                                                                     cefpodoxime proxetil
37098                                                                                               imidacloprid, pyriproxyfen
37099                                                                                                         milbemycin oxime
37103                                                                                                       maropitant citrate
37104                                                                                                                ofloxacin
37115                                                                           dexamethasone, neomycin sulfate, thiabendazole
37116                                                                                                 fipronil, (s)-methoprene
37117                                                                                                         liver supplement
37135                                                                              chlorhexidine gluconate, miconazole nitrate
37157                                                                                        betamethasone, gentamicin sulfate
37164                                                                          betamethasone, clotrimazole, gentamicin sulfate
37165                                                                               ivermectin, praziquantel, pyrantel pamoate
37168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37169                                                                                                  chlorhexidine gluconate
37179                                                                                             ivermectin, pyrantel pamoate
37193                                                                                             ivermectin, pyrantel pamoate
37194                                                                                                                 geraniol
37195                                                                                                               ivermectin
37197                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37200                                                                                             ivermectin, pyrantel pamoate
37201                                                                                                               afoxolaner
37202                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37219                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37221                                                                                                                trazodone
37259                                                                                                               cephalexin
37260                                                                           dexamethasone, neomycin sulfate, thiabendazole
37262                                                                                               imidacloprid, pyriproxyfen
37263                                                                                                               prednisone
37266                                                                                                         milbemycin oxime
37267                                                                                    dinotefuran, permethrin, pyriproxyfen
37270                                                                                    dinotefuran, permethrin, pyriproxyfen
37271                                                                                               imidacloprid, pyriproxyfen
37272                                                                                        trimeprazine tartrate, prednisone
37273                                                                           dexamethasone, neomycin sulfate, thiabendazole
37277                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
37278                                                                                                  chlorhexidine gluconate
37279                                                                              rx diet - hypoallergenic hydrolyzed protein
37302                                                                                             ivermectin, pyrantel pamoate
37303                                                                          betamethasone, clotrimazole, gentamicin sulfate
37304                                                                                                                carprofen
37306                                                                                                              amoxicillin
37307                                                                                                                carprofen
37308                                                                                                                 tramadol
37309                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37316                                                                                                               ivermectin
37324                                                                                                                sarolaner
37325                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37326                                                                                                               moxidectin
37332                                                                                                          dexmedetomidine
37337                                                                                                               lokivetmab
37344                                                                                                 joint supplement (other)
37349                                                                                             ivermectin, pyrantel pamoate
37359                                                                                                         milbemycin oxime
37373                                                                                              lufenuron, milbemycin oxime
37374                                                                                                               afoxolaner
37375                                                                                             ivermectin, pyrantel pamoate
37376                                                                                                               afoxolaner
37377                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37385                                                                                             ivermectin, pyrantel pamoate
37386                                                                                                               afoxolaner
37387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37392                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
37396                                                                                                               ivermectin
37397                                                                                                               fluralaner
37434                                                                                   joint supplement (glucosamine hcl/msm)
37435                                                                                           polysulfated glycosaminoglycan
37439                                                                                                               ivermectin
37446                                                                                             ivermectin, pyrantel pamoate
37448                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
37449                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37451                                                                                                                mupirocin
37453                                                                                        betamethasone, gentamicin sulfate
37454                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37457                                                                              rx diet - hypoallergenic hydrolyzed protein
37463                                                                                    chlorhexidine gluconate, ketoconazole
37464                                                                                                  chlorhexidine gluconate
37465                                                                                        betamethasone, gentamicin sulfate
37467                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37468                                                                                lufenuron, milbemycin oxime, praziquantel
37469                                                                                                               fluralaner
37477                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37478                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37485                                                                                lufenuron, milbemycin oxime, praziquantel
37491                                                                                        betamethasone, gentamicin sulfate
37493                                                                                lufenuron, milbemycin oxime, praziquantel
37495                                                                                        betamethasone, gentamicin sulfate
37496                                                                                                       miconazole nitrate
37510                                                                                                               alprazolam
37526                                                                                                              minocycline
37527                                                                             dexamethasone, neomycin sulfate, polymyxin b
37533                                                                                                         phytosphingosine
37536                                                                                                  chlorhexidine gluconate
37540                                                                                             ivermectin, pyrantel pamoate
37545                                                                                             ivermectin, pyrantel pamoate
37546                                                                                                               fluralaner
37547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37552                                                                                             ivermectin, pyrantel pamoate
37568                                                                                              lufenuron, milbemycin oxime
37569                                                                                                 imidacloprid, permethrin
37571                                                                                              lufenuron, milbemycin oxime
37576                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37577                                                                                              lufenuron, milbemycin oxime
37578                                                                                               imidacloprid, pyriproxyfen
37579                                                                                               imidacloprid, pyriproxyfen
37580                                                                                                               ivermectin
37581                                                                                                               cephalexin
37582                                                                                                               prednisone
37584                                                                                                                  omega 3
37585                                                                                                                probiotic
37586                                                                                       joint supplement (glucosamine hcl)
37597                                                                                               imidacloprid, pyriproxyfen
37598                                                                                                               ivermectin
37601                                                                                             ivermectin, pyrantel pamoate
37602                                                                                                               afoxolaner
37603                                                                                                               afoxolaner
37608                                                                                                               selamectin
37621                                                                                              lufenuron, milbemycin oxime
37622                                                                                              lufenuron, milbemycin oxime
37624                                                                                              lufenuron, milbemycin oxime
37627                                                                                             ivermectin, pyrantel pamoate
37628                                                                                             ivermectin, pyrantel pamoate
37629                                                                                             ivermectin, pyrantel pamoate
37630                                                                                             ivermectin, pyrantel pamoate
37639                                                                                                                probiotic
37648                                                                                    dinotefuran, permethrin, pyriproxyfen
37649                                                                                                                meloxicam
37651                                                                                                 flumethrin, imidacloprid
37652                                                                                                                meloxicam
37655                                                                                                 flumethrin, imidacloprid
37657                                                                                                 flumethrin, imidacloprid
37662                                                                                                 flumethrin, imidacloprid
37664                                                                                                 flumethrin, imidacloprid
37669                                                                                       chlorhexidine gluconate, ophytrium
37670                                                                                         burow's solution, hydrocortisone
37675                                                                                       chlorhexidine gluconate, ophytrium
37682                                                                                                              amoxicillin
37686                                                                                                            metronidazole
37691                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37692                                                                                             ivermectin, pyrantel pamoate
37695                                                                                                              minocycline
37696                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
37697                                                                                                                carprofen
37698                                                                                                              amoxicillin
37699                                                                                                               tobramycin
37704                                                                                              lufenuron, milbemycin oxime
37705                                                                                    dinotefuran, permethrin, pyriproxyfen
37708                                                                                                                  taurine
37709                                                                                                                  omega 3
37710                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37713                                                                                                                  omega 3
37714                                                                                                                probiotic
37717                                                                                                                  omega 3
37718                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37731                                                                                              lufenuron, milbemycin oxime
37738                                                                                              lufenuron, milbemycin oxime
37739                                                                                              lufenuron, milbemycin oxime
37740                                                                                                                 fipronil
37742                                                                                              lufenuron, milbemycin oxime
37771                                                                             dexamethasone, neomycin sulfate, polymyxin b
37785                                                                                                               afoxolaner
37786                                                                                             ivermectin, pyrantel pamoate
37797                                                                               ivermectin, praziquantel, pyrantel pamoate
37798                                                                               ivermectin, praziquantel, pyrantel pamoate
37805                                                                                           milbemycin oxime, praziquantel
37806                                                                                                               afoxolaner
37807                                                                                       amoxicillin, clavulanate potassium
37809                                                                                                              sevoflurane
37816                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37817                                                                                                                  omega 3
37820                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37821                                                                                    dinotefuran, permethrin, pyriproxyfen
37822                                                                                                                probiotic
37834                                                                                             ivermectin, pyrantel pamoate
37835                                                                                       fipronil, permethrin, pyriproxyfen
37836                                                                                                       diethylstilbestrol
37837                                                                                             ivermectin, pyrantel pamoate
37838                                                                                             ivermectin, pyrantel pamoate
37839                                                                                                               fluralaner
37845                                                                                             ivermectin, pyrantel pamoate
37846                                                                                       fipronil, permethrin, pyriproxyfen
37847                                                                                             ivermectin, pyrantel pamoate
37848                                                                                                               fluralaner
37849                                                                                             ivermectin, pyrantel pamoate
37850                                                                                                               fluralaner
37851                                                                                                               fluralaner
37852                                                                                             ivermectin, pyrantel pamoate
37855                                                                                              lufenuron, milbemycin oxime
37858                                                                                lufenuron, milbemycin oxime, praziquantel
37865                                                                                                                 fipronil
37885                                                                                             ivermectin, pyrantel pamoate
37894                                                                                                               ivermectin
37895                                                                                                                sarolaner
37907                                                                                               milbemycin oxime, spinosad
37916                                                                                               milbemycin oxime, spinosad
37920                                                                                                 imidacloprid, permethrin
37929                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37930                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37933                                                                                             ivermectin, pyrantel pamoate
37934                                                                                                               afoxolaner
37935                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37936                                                                                             ivermectin, pyrantel pamoate
37937                                                                          betamethasone, clotrimazole, gentamicin sulfate
37940                                                                                                               prednisone
37941                                                                          betamethasone, clotrimazole, gentamicin sulfate
37942                                                                                                  ketoconazole, tris-edta
37944                                                                                                    mycophenolate mofetil
37956                                                                                                              oclacitinib
37976                                                                                              lufenuron, milbemycin oxime
37977                                                                                                   cyphenothrin, fipronil
37978                                                                                              lufenuron, milbemycin oxime
37979                                                                                        betamethasone, gentamicin sulfate
37980                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37984                                                                                              lufenuron, milbemycin oxime
37989                                                                                              lufenuron, milbemycin oxime
37990                                                                                        betamethasone, gentamicin sulfate
37992                                                                                              lufenuron, milbemycin oxime
37993                                                                                                               fluralaner
38018                                                                                               milbemycin oxime, spinosad
38036                                                                                                         milbemycin oxime
38041                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38046                                                                                                         milbemycin oxime
38048                                                                                       amoxicillin, clavulanate potassium
38050                                                                                                                lotilaner
38051                                                                                                         milbemycin oxime
38052                                                                                                                lotilaner
38056                                                                                                         tylosin tartrate
38070                                                                                             ivermectin, pyrantel pamoate
38071                                                                                               imidacloprid, pyriproxyfen
38072                                                                                                 flumethrin, imidacloprid
38073                                                                                             ivermectin, pyrantel pamoate
38074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38075                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38102                                                                               dextromethorphan hydrobromide, guaifenesin
38123                                                                                             ivermectin, pyrantel pamoate
38126                                                                                             ivermectin, pyrantel pamoate
38129                                                                                                            dexamethasone
38132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38134                                                                                                               cetirizine
38135                                                                                                       maropitant citrate
38136                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38141                                                                                                         milbemycin oxime
38142                                                                                                               afoxolaner
38151                                                                                                               afoxolaner
38152                                                                                                               afoxolaner
38156                                                                                                               afoxolaner
38165                                                                                             ivermectin, pyrantel pamoate
38166                                                                                                               afoxolaner
38177                                                                                               unspecified shampoo/mousse
38179                                                                                          ear cleaner (epi-otic advanced)
38181                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38182                                                                                                                  omega 3
38184                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38185                                                                             dexamethasone, neomycin sulfate, polymyxin b
38193                                                                                       fipronil, permethrin, pyriproxyfen
38204                                                                                                     digestive supplement
38211                                                                                      ear cleaner (zymox), hydrocortisone
38216                                                                                                                   arnica
38217                                                                                             ivermectin, pyrantel pamoate
38219                                                                                                                  omega 3
38220                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38240                                                                                    dinotefuran, permethrin, pyriproxyfen
38248                                                                                                              oclacitinib
38256                                                                                                         milbemycin oxime
38257                                                                                           milbemycin oxime, praziquantel
38259                                                                                                         milbemycin oxime
38260                                                                                                               afoxolaner
38262                                                                                                               afoxolaner
38268                                                                          betamethasone, clotrimazole, gentamicin sulfate
38273                                                                          betamethasone, clotrimazole, gentamicin sulfate
38284                                                                                             ivermectin, pyrantel pamoate
38287                                                                                                                probiotic
38288                                                                                           milbemycin oxime, praziquantel
38289                                                                                                               fluralaner
38293                                                                                              lufenuron, milbemycin oxime
38294                                                                           dexamethasone, neomycin sulfate, thiabendazole
38301                                                                                               imidacloprid, pyriproxyfen
38305                                                                                               imidacloprid, pyriproxyfen
38306                                                                                             ivermectin, pyrantel pamoate
38321                                                                                              lufenuron, milbemycin oxime
38324                                                                                                  ketoconazole, tris-edta
38326                                                                                                         phytosphingosine
38330                                                                                             ivermectin, pyrantel pamoate
38339                                                                                                               fluralaner
38341                                                                                        betamethasone, gentamicin sulfate
38342                                                                                              lufenuron, milbemycin oxime
38350                                                                                  betamethasone, florfenicol, terbinafine
38351                                                                                                                sarolaner
38352                                                                                             ivermectin, pyrantel pamoate
38353                                                                                             ivermectin, pyrantel pamoate
38361                                                                             dexamethasone, neomycin sulfate, polymyxin b
38362                                                                                                               prednisone
38365                                                                                             ivermectin, pyrantel pamoate
38366                                                                                                 fipronil, (s)-methoprene
38367                                                                                               imidacloprid, pyriproxyfen
38369                                                                                               imidacloprid, pyriproxyfen
38370                                                                                                               ivermectin
38371                                                                                                             fenbendazole
38372                                                                          betamethasone, clotrimazole, gentamicin sulfate
38373                                                                                                               lokivetmab
38377                                                                             florfenicol, mometasone furoate, terbinafine
38378                                                                           mometasone furoate, orbifloxacin, posaconazole
38386                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38387                                                                                     burow's solution, miconazole nitrate
38388                                                                                                               lokivetmab
38396                                                                                             ivermectin, pyrantel pamoate
38397                                                                                                               afoxolaner
38398                                                                                                    trimeprazine tartrate
38399                                                                                             ivermectin, pyrantel pamoate
38406                                                                                                                probiotic
38420                                                                                              lufenuron, milbemycin oxime
38422                                                                                              lufenuron, milbemycin oxime
38423                                                                                              lufenuron, milbemycin oxime
38427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38431                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38438                                                                                           milbemycin oxime, praziquantel
38439                                                                                                               fluralaner
38442                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38461                                                                                    dinotefuran, permethrin, pyriproxyfen
38462                                                                                             ivermectin, pyrantel pamoate
38464                                                                                                         milbemycin oxime
38465                                                                                    dinotefuran, permethrin, pyriproxyfen
38466                                                                                                                sarolaner
38470                                                                                                                sarolaner
38471                                                                                                         milbemycin oxime
38472                                                                                           milbemycin oxime, praziquantel
38473                                                                                                                sarolaner
38496                                                                                             ivermectin, pyrantel pamoate
38499                                                                               dextromethorphan hydrobromide, guaifenesin
38504                                                                                    dinotefuran, permethrin, pyriproxyfen
38505                                                                                             ivermectin, pyrantel pamoate
38507                                                                                                         milbemycin oxime
38508                                                                                    dinotefuran, permethrin, pyriproxyfen
38509                                                                                                                sarolaner
38510                                                                                                         milbemycin oxime
38511                                                                                           milbemycin oxime, praziquantel
38512                                                                                                                sarolaner
38522                                                                                 febantel, praziquantel, pyrantel pamoate
38527                                                                                             ivermectin, pyrantel pamoate
38528                                                                                   fipronil, pyriproxyfen, (s)-methoprene
38529                                                                           dexamethasone, neomycin sulfate, thiabendazole
38531                                                                                                  ketoconazole, tris-edta
38532                                                                                             ivermectin, pyrantel pamoate
38533                                                                                                 fipronil, (s)-methoprene
38534                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
38535                                                                                                                olive oil
38536                                                                               toothpaste/dental health solution or chews
38544                                                                           dexamethasone, neomycin sulfate, thiabendazole
38550                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38551                                                                                                                  omega 3
38557                                                                                        betamethasone, gentamicin sulfate
38567                                                                                                               ivermectin
38568                                                                                             ivermectin, pyrantel pamoate
38569                                                                                                               ivermectin
38570                                                                                                   unspecified medication
38588                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38602                                                                                              lufenuron, milbemycin oxime
38605                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38606                                                                                              lufenuron, milbemycin oxime
38607                                                                                       chlorhexidine gluconate, tris-edta
38610                                                                                              lufenuron, milbemycin oxime
38611                                                                                        betamethasone, gentamicin sulfate
38618                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38626                                                                                              lufenuron, milbemycin oxime
38630                                                                                                     digestive supplement
38636                                                                                                               ivermectin
38637                                                                                                 fipronil, (s)-methoprene
38638                                                                           mometasone furoate, orbifloxacin, posaconazole
38643                                                                                             ivermectin, pyrantel pamoate
38647                                                                                                       maropitant citrate
38655                                                                                                      unspecified rx diet
38656                                                                                                 fipronil, (s)-methoprene
38665                                                                                                                vitamin b
38691                                                                                                                probiotic
38716                                                                          betamethasone, clotrimazole, gentamicin sulfate
38722                                                                          betamethasone, clotrimazole, gentamicin sulfate
38723                                                                                       chlorhexidine gluconate, ophytrium
38754                                                                                                            metronidazole
38764                                                                                                              amoxicillin
38772                                                                                                             ketoconazole
38773                                                                                                               fluralaner
38775                                                                                                  unspecified ear cleaner
38776                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38779                                                                                                               fluralaner
38780                                                                                        betamethasone, gentamicin sulfate
38787                                                                                                                probiotic
38789                                                                                                             multivitamin
38796                                                                                                                probiotic
38802                                                                                                                probiotic
38808                                                                                       amoxicillin, clavulanate potassium
38809                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38810                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
38816                                                                                                                probiotic
38818                                                                                              lufenuron, milbemycin oxime
38820                                                                                              lufenuron, milbemycin oxime
38821                                                                                                               fluralaner
38828                                                                                   chlorhexidine gluconate, dexamethasone
38839                                                                                                       miconazole nitrate
38841                                                                                                         phytosphingosine
38843                                                                             florfenicol, mometasone furoate, terbinafine
38845                                                                                                         tylosin tartrate
38847                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38850                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
38851                                                                                                                  taurine
38854                                                                             florfenicol, mometasone furoate, terbinafine
38855                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38861                                                                             florfenicol, mometasone furoate, terbinafine
38864                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38865                                                                                                  ketoconazole, tris-edta
38868                                                                     vitamin b, vitamin b complex, vitamin b12, vitamin e
38871                                                                                                         tylosin tartrate
38890                                                                                             ivermectin, pyrantel pamoate
38891                                                                                                               afoxolaner
38892                                                                                             ivermectin, pyrantel pamoate
38896                                                                                             ivermectin, pyrantel pamoate
38902                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38924                                                                               dextromethorphan hydrobromide, guaifenesin
38925                                                                                               imidacloprid, pyriproxyfen
38926                                                                                lufenuron, milbemycin oxime, praziquantel
38930                                                                                              lufenuron, milbemycin oxime
38931                                                                                                 flumethrin, imidacloprid
38940                                                                                               milbemycin oxime, spinosad
38941                                                                                                               afoxolaner
38945                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38946                                                                                lufenuron, milbemycin oxime, praziquantel
38950                                                                                lufenuron, milbemycin oxime, praziquantel
38951                                                                                                               afoxolaner
38952                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38956                                                                                       chlorhexidine gluconate, ophytrium
38963                                                                                                         milbemycin oxime
38964                                                                                                                sarolaner
38970                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38971                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38974                                                                            ear cleaner (epi-otic advanced), ketoconazole
38976                                                                                                            yunnan baiyao
38978                                                                                                 fipronil, (s)-methoprene
38997                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39004                                                                                                               fluralaner
39005                                                                                                         milbemycin oxime
39006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39035                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39073                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
39083                                                                                lufenuron, milbemycin oxime, praziquantel
39099                                                                                             ivermectin, pyrantel pamoate
39113                                                                                                                carprofen
39117                                                                                               milbemycin oxime, spinosad
39120                                                                                             ivermectin, pyrantel pamoate
39121                                                                                                               ivermectin
39122                                                                                               imidacloprid, pyriproxyfen
39123                                                                                                               ivermectin
39125                                                                                           polysulfated glycosaminoglycan
39127                                                                             florfenicol, mometasone furoate, terbinafine
39128                                                                                        enrofloxacin, silver sulfadiazine
39158                                                                                           milbemycin oxime, praziquantel
39165                                                                                       amoxicillin, clavulanate potassium
39167                                                                                   joint supplement (glucosamine hcl/msm)
39171                                                                                    chlorhexidine gluconate, ketoconazole
39175                                                                                                       maropitant citrate
39176                                                                                                               ivermectin
39177                                                                                                             enrofloxacin
39181                                                                                    chlorhexidine gluconate, ketoconazole
39182                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
39188                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39198                                                                                        betamethasone, gentamicin sulfate
39201                                                                             florfenicol, mometasone furoate, terbinafine
39202                                                                                                  ketoconazole, tris-edta
39207                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39209                                                                                                 fipronil, (s)-methoprene
39210                                                                                                 fipronil, (s)-methoprene
39211                                                                                                 fipronil, (s)-methoprene
39212                                                                                                 fipronil, (s)-methoprene
39218                                                                                                 fipronil, (s)-methoprene
39258                                                                                                                probiotic
39259                                                                                                               ivermectin
39260                                                                                                               fluralaner
39261                                                                                                         tylosin tartrate
39262                                                                                             ivermectin, pyrantel pamoate
39273                                                                                             ivermectin, pyrantel pamoate
39316                                                                                               imidacloprid, pyriproxyfen
39325                                                                                                         milbemycin oxime
39326                                                                                                 fipronil, (s)-methoprene
39327                                                                                                         milbemycin oxime
39328                                                                                                                sarolaner
39329                                                                                                         milbemycin oxime
39330                                                                                                                sarolaner
39331                                                                                                         milbemycin oxime
39332                                                                                                                sarolaner
39338                                                                                             ivermectin, pyrantel pamoate
39339                                                                                                 flumethrin, imidacloprid
39340                                                                                             ivermectin, pyrantel pamoate
39385                                                                                             ivermectin, pyrantel pamoate
39388                                                                                             ivermectin, pyrantel pamoate
39390                                                                                             ivermectin, pyrantel pamoate
39392                                                                             dexamethasone, neomycin sulfate, polymyxin b
39415                                                                                      ear cleaner (zymox), hydrocortisone
39416                                                                                              lufenuron, milbemycin oxime
39423                                                                                                                probiotic
39425                                                                                             silver sulfadiazine, insulin
39433                                                                                                  acetic acid, boric acid
39434                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39435                                                                                                                carvacrol
39436                                                                                                            metronidazole
39438                                                                                             ivermectin, pyrantel pamoate
39440                                                                                             ivermectin, pyrantel pamoate
39443                                                                                             ivermectin, pyrantel pamoate
39444                                                                                             ivermectin, pyrantel pamoate
39445                                                                                                 fipronil, (s)-methoprene
39446                                                                                                 fipronil, (s)-methoprene
39447                                                                                             ivermectin, pyrantel pamoate
39450                                                                                                 fipronil, (s)-methoprene
39451                                                                                             ivermectin, pyrantel pamoate
39453                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39464                                                                                             ivermectin, pyrantel pamoate
39478                                                                                             ivermectin, pyrantel pamoate
39486                                                                                               imidacloprid, pyriproxyfen
39495                                                                                                 fipronil, (s)-methoprene
39496                                                                                             ivermectin, pyrantel pamoate
39511                                                                                                   cyphenothrin, fipronil
39513                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39516                                                                                                               ivermectin
39519                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39525                                                                                                               selamectin
39526                                                                                              lufenuron, milbemycin oxime
39528                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39531                                                                                 febantel, praziquantel, pyrantel pamoate
39532                                                                                                               cephalexin
39534                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39536                                                                                                                probiotic
39539                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39541                                                                                                                  menthol
39542                                                                                                                mupirocin
39543                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39546                                                                                                               selamectin
39548                                                                                                                sarolaner
39566                                                                                                                probiotic
39567                                                                                                 joint supplement (other)
39573                                                                                        betamethasone, gentamicin sulfate
39579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39581                                                                                                               ivermectin
39582                                                                                                               ivermectin
39586                                                                                             ivermectin, pyrantel pamoate
39591                                                                                                   unspecified medication
39599                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39605                                                                                                                carprofen
39607                                                                               dextromethorphan hydrobromide, guaifenesin
39609                                                                                             ivermectin, pyrantel pamoate
39617                                                                                                         pyrantel pamoate
39618                                                                                                               moxidectin
39635                                                                                               milbemycin oxime, spinosad
39637                                                                                               milbemycin oxime, spinosad
39639                                                                                         phytosphingosine, salicylic acid
39651                                                                                        betamethasone, gentamicin sulfate
39705                                                                                                               fluralaner
39706                                                                                             ivermectin, pyrantel pamoate
39707                                                                                                              oclacitinib
39708                                                                                             ivermectin, pyrantel pamoate
39714                                                                                                     digestive supplement
39715                                                                                                                probiotic
39737                                                                                       joint supplement (glucosamine hcl)
39744                                                                                               milbemycin oxime, spinosad
39745                                                                                       fipronil, permethrin, pyriproxyfen
39750                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39754                                                                                              lufenuron, milbemycin oxime
39755                                                                                  betamethasone, florfenicol, terbinafine
39756                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39759                                                                                              lufenuron, milbemycin oxime
39760                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39763                                                                                              lufenuron, milbemycin oxime
39764                                                                                              lufenuron, milbemycin oxime
39776                                                                                                                  omega 3
39777                                                                                       joint supplement (glucosamine hcl)
39778                                                                                                                     kelp
39785                                                                                                          diphenhydramine
39786                                                                                                             multivitamin
39787                                                                                    dinotefuran, permethrin, pyriproxyfen
39788                                                                                               milbemycin oxime, spinosad
39795                                                                                                               afoxolaner
39796                                                                                             ivermectin, pyrantel pamoate
39809                                                                                             ivermectin, pyrantel pamoate
39833                                                                                              lufenuron, milbemycin oxime
39849                                                                                              lufenuron, milbemycin oxime
39856                                                                                              lufenuron, milbemycin oxime
39860                                                                                             ivermectin, pyrantel pamoate
39871                                                                                             ivermectin, pyrantel pamoate
39875                                                                                             ivermectin, pyrantel pamoate
39877                                                                                             ivermectin, pyrantel pamoate
39881                                                                                                             fenbendazole
39901                                                                                                                thyroxine
39909                                                                                               milbemycin oxime, spinosad
39916                                                                             dexamethasone, neomycin sulfate, polymyxin b
39917                                                                                                               tobramycin
39918                                                                                                         atropine sulfate
39919                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39948                                                                                             ivermectin, pyrantel pamoate
39949                                                                                                               afoxolaner
39958                                                                                                               fluralaner
39973                                                                                           milbemycin oxime, praziquantel
39974                                                                                                   benzocaine, resorcinol
39975                                                                                         phytosphingosine, salicylic acid
39980                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39981                                                                                       chlorhexidine gluconate, ophytrium
39982                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39987                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39988                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
40003                                                                                             ivermectin, pyrantel pamoate
40013                                                                                                             imidacloprid
40021                                                                                                   indoxacarb, permethrin
40023                                                                                                               afoxolaner
40024                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40038                                                                                                               ampicillin
40042                                                                                             ivermectin, pyrantel pamoate
40043                                                                                    dinotefuran, permethrin, pyriproxyfen
40052                                                                                             ivermectin, pyrantel pamoate
40053                                                                                             ivermectin, pyrantel pamoate
40054                                                                                             ivermectin, pyrantel pamoate
40092                                                                                                                 fipronil
40093                                                                                           milbemycin oxime, praziquantel
40095                                                                                             ivermectin, pyrantel pamoate
40102                                                                                                                probiotic
40108                                                                                             ivermectin, pyrantel pamoate
40109                                                                                                 fipronil, (s)-methoprene
40115                                                                                                             fenbendazole
40117                                                                                              lufenuron, milbemycin oxime
40121                                                                                             ivermectin, pyrantel pamoate
40123                                                                                                                probiotic
40124                                                                                             ivermectin, pyrantel pamoate
40125                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40133                                                                                lufenuron, milbemycin oxime, praziquantel
40134                                                                                lufenuron, milbemycin oxime, praziquantel
40138                                                                                                         viola clear fire
40141                                                                        grapefruit seed extract, lavender oil, noni fruit
40142                                                                                             ivermectin, pyrantel pamoate
40143                                                                             castor oil, cinnamon, lemongrass oil, sesame
40144                                                                                             ivermectin, pyrantel pamoate
40149                                                                                             ivermectin, pyrantel pamoate
40154                                                                                             ivermectin, pyrantel pamoate
40164                                                                                          ear cleaner (epi-otic advanced)
40165                                                                                             ivermectin, pyrantel pamoate
40180                                                                                                               ivermectin
40186                                                                                                         milbemycin oxime
40193                                                                                             ivermectin, pyrantel pamoate
40194                                                                                                               ivermectin
40196                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40206                                                                                               milbemycin oxime, spinosad
40209                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40214                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40216                                                                                                         milbemycin oxime
40217                                                                                                               afoxolaner
40218                                                                                                                sarolaner
40221                                                                                                         milbemycin oxime
40222                                                                                                               afoxolaner
40223                                                                                                                sarolaner
40224                                                                                                               fluralaner
40244                                                                                                 fipronil, (s)-methoprene
40290                                                                                             ivermectin, pyrantel pamoate
40296                                                                                                                probiotic
40297                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
40298                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40299                                                                                   dexamethasone, ketoconazole, tris-edta
40302                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40308                                                                                                               afoxolaner
40309                                                                                                               lokivetmab
40312                                                                                                                meloxicam
40313                                                                                       amoxicillin, clavulanate potassium
40317                                                                                  betamethasone, florfenicol, terbinafine
40325                                                                                             ivermectin, pyrantel pamoate
40331                                                                                                         milbemycin oxime
40343                                                                                                  acetic acid, boric acid
40346                                                                                           sulfamethoxazole, trimethoprim
40390                                                                                                         milbemycin oxime
40391                                                                                                         milbemycin oxime
40392                                                                                                         milbemycin oxime
40394                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40403                                                                                                  ketoconazole, tris-edta
40405                                                                                                                trazodone
40406                                                                                                 homatropine, hydrocodone
40407                                                                                             ivermectin, pyrantel pamoate
40417                                                                                                               afoxolaner
40418                                                                                                               ivermectin
40422                                                                                                               afoxolaner
40425                                                                                                                sarolaner
40446                                                                                       amoxicillin, clavulanate potassium
40447                                                                          betamethasone, clotrimazole, gentamicin sulfate
40451                                                                                                               ivermectin
40454                                                                                       amoxicillin, clavulanate potassium
40464                                                                               dextromethorphan hydrobromide, guaifenesin
40468                                                                                                               afoxolaner
40472                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40483                                                                                             ivermectin, pyrantel pamoate
40484                                                                                                               afoxolaner
40486                                                                                             ivermectin, pyrantel pamoate
40487                                                                                                               afoxolaner
40488                                                                                                 imidacloprid, permethrin
40489                                                                                               imidacloprid, pyriproxyfen
40490                                                                                                               cephalexin
40494                                                                                                                carprofen
40503                                                                                                         milbemycin oxime
40504                                                                                                     fipronil, permethrin
40505                                                                                                               selamectin
40508                                                                                                               selamectin
40511                                                                                                             praziquantel
40519                                                                                              lufenuron, milbemycin oxime
40521                                                                                                                 fipronil
40535                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40541                                                                                                               ivermectin
40542                                                                                                 fipronil, (s)-methoprene
40543                                                                                                         milbemycin oxime
40547                                                                                                                thyroxine
40568                                                                                             ivermectin, pyrantel pamoate
40571                                                                             dexamethasone, neomycin sulfate, polymyxin b
40572                                                                                                     prebiotic, probiotic
40573                                                                                             ivermectin, pyrantel pamoate
40574                                                                                                               afoxolaner
40579                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40580                                                                                                              amoxicillin
40581                                                                                           sulfamethoxazole, trimethoprim
40582                                                                             dexamethasone, neomycin sulfate, polymyxin b
40583                                                                                                         pyrantel pamoate
40595                                                                                        betamethasone, gentamicin sulfate
40600                                                                                              lufenuron, milbemycin oxime
40601                                                                                    dinotefuran, permethrin, pyriproxyfen
40603                                                                                                  chlorhexidine gluconate
40604                                                                                                     digestive supplement
40606                                                                                                  ketoconazole, tris-edta
40607                                                                                               unspecified shampoo/mousse
40611                                                                                              lufenuron, milbemycin oxime
40615                                                                                                               lokivetmab
40616                                                                                    dinotefuran, permethrin, pyriproxyfen
40617                                                                                              lufenuron, milbemycin oxime
40618                                                                                               unspecified shampoo/mousse
40619                                                                                                      ear cleaner (zymox)
40620                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40624                                                                                                     cefpodoxime proxetil
40625                                                                                                          diphenhydramine
40634                                                                             dexamethasone, neomycin sulfate, polymyxin b
40635                                                                                                            metronidazole
40636                                                                                                             fenbendazole
40637                                                                                                                probiotic
40644                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40653                                                                                                                 fipronil
40654                                                                               ivermectin, praziquantel, pyrantel pamoate
40655                                                                                           milbemycin oxime, praziquantel
40656                                                                                                         milbemycin oxime
40657                                                                                             ivermectin, pyrantel pamoate
40658                                                                                                               afoxolaner
40684                                                                                lufenuron, milbemycin oxime, praziquantel
40686                                                                                             ivermectin, pyrantel pamoate
40687                                                                                                   indoxacarb, permethrin
40688                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40689                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40690                                                                                             ivermectin, pyrantel pamoate
40691                                                                                                               indoxacarb
40693                                                                                        trimeprazine tartrate, prednisone
40695                                                                                             ivermectin, pyrantel pamoate
40696                                                                                                               afoxolaner
40699                                                                                                              doxycycline
40700                                                                                             ivermectin, pyrantel pamoate
40701                                                                                                                sarolaner
40718                                                                          betamethasone, clotrimazole, gentamicin sulfate
40719                                                                                             ivermectin, pyrantel pamoate
40721                                                                                             ivermectin, pyrantel pamoate
40722                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40723                                                                          betamethasone, clotrimazole, gentamicin sulfate
40724                                                                                        enrofloxacin, silver sulfadiazine
40725                                                                                             ivermectin, pyrantel pamoate
40726                                                                                                       gentamicin sulfate
40727                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40744                                                                                              lufenuron, milbemycin oxime
40745                                                                                                  triamcinolone acetonide
40747                                                                                        trimeprazine tartrate, prednisone
40748                                                                                       chlorhexidine gluconate, ophytrium
40749                                                                                                               fluralaner
40750                                                                                              lufenuron, milbemycin oxime
40751                                                                                              lufenuron, milbemycin oxime
40754                                                                                              lufenuron, milbemycin oxime
40755                                                                                                               fluralaner
40756                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40758                                                                           mometasone furoate, orbifloxacin, posaconazole
40760                                                                                              lufenuron, milbemycin oxime
40775                                                                                             ivermectin, pyrantel pamoate
40776                                                                                                         milbemycin oxime
40781                                                                                                         milbemycin oxime
40783                                                                                                         milbemycin oxime
40794                                                                             dexamethasone, neomycin sulfate, polymyxin b
40796                                                                                               milbemycin oxime, spinosad
40799                                                                                             ivermectin, pyrantel pamoate
40800                                                                                             ivermectin, pyrantel pamoate
40801                                                                                                                sarolaner
40810                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40823                                                                                             ivermectin, pyrantel pamoate
40824                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40825                                                                                    dinotefuran, permethrin, pyriproxyfen
40826                                                                                                            metronidazole
40827                                                                                                               fluralaner
40828                                                                                             ivermectin, pyrantel pamoate
40829                                                                                                               fluralaner
40833                                                                                             ivermectin, pyrantel pamoate
40834                                                                                                                  omega 3
40838                                                                                        betamethasone, gentamicin sulfate
40839                                                                                                               lokivetmab
40840                                                                                                               lokivetmab
40843                                                                                        betamethasone, gentamicin sulfate
40846                                                                                                               fluralaner
40848                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
40866                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40868                                                                                             ivermectin, pyrantel pamoate
40869                                                                                                                carprofen
40870                                                                                             ivermectin, pyrantel pamoate
40873                                                                                                                probiotic
40875                                                                                                                probiotic
40876                                                                               ivermectin, praziquantel, pyrantel pamoate
40879                                                                                             ivermectin, pyrantel pamoate
40895                                                                                                            yunnan baiyao
40897                                                                                              lufenuron, milbemycin oxime
40899                                                                                              lufenuron, milbemycin oxime
40900                                                                                              lufenuron, milbemycin oxime
40902                                                                                              lufenuron, milbemycin oxime
40905                                                                                                         milbemycin oxime
40919                                                                                                                  omega 3
40943                                                                                                        vision supplement
40958                                                                                                             fenbendazole
40959                                                                                                         sulfadimethoxine
40960                                                                                                            metronidazole
40961                                                                                                               sucralfate
40962                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40965                                                                                                         milbemycin oxime
40966                                                                                                               afoxolaner
40967                                                                                                         milbemycin oxime
40968                                                                                                               afoxolaner
40969                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40970                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
40971                                                                                                         milbemycin oxime
40972                                                                                                               afoxolaner
40974                                                                                           milbemycin oxime, praziquantel
40984                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40987                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40990                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40992                                                                                                               ivermectin
40993                                                                                    dinotefuran, permethrin, pyriproxyfen
40994                                                                                          ear cleaner (epi-otic advanced)
40997                                                                                                         milbemycin oxime
40998                                                                                    dinotefuran, permethrin, pyriproxyfen
41002                                                                                                                  omega 3
41003                                                                                                         tylosin tartrate
41004                                                                                                         milbemycin oxime
41005                                                                                    dinotefuran, permethrin, pyriproxyfen
41006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41007                                                                                                         tylosin tartrate
41008                                                                                                            metronidazole
41009                                                                                 febantel, praziquantel, pyrantel pamoate
41010                                                                                    dinotefuran, permethrin, pyriproxyfen
41011                                                                                                         milbemycin oxime
41012                                                                                                                  omega 3
41013                                                                                                                  omega 3
41014                                                                                                         tylosin tartrate
41015                                                                                                         milbemycin oxime
41016                                                                                    dinotefuran, permethrin, pyriproxyfen
41017                                                                                                            metronidazole
41018                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
41020                                                                                                  acetic acid, boric acid
41021                                                                                                         milbemycin oxime
41022                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41023                                                                                    dinotefuran, permethrin, pyriproxyfen
41024                                                                                                                  omega 3
41025                                                                                                   bupivacaine, lidocaine
41055                                                                                                               lokivetmab
41057                                                                               dimethyl sulfoxide, fluocinolone acetonide
41068                                                                                    dinotefuran, permethrin, pyriproxyfen
41069                                                                                             ivermectin, pyrantel pamoate
41082                                                                                                            metronidazole
41083                                                                                                                meloxicam
41084                                                                                                                meloxicam
41085                                                                                                                 tramadol
41086                                                                                                              doxycycline
41087                                                                                                         milbemycin oxime
41088                                                                                    dinotefuran, permethrin, pyriproxyfen
41089                                                                                                               fluralaner
41090                                                                                                 skin and coat supplement
41091                                                                          betamethasone, clotrimazole, gentamicin sulfate
41092                                                                                                               cephalexin
41094                                                                                                         milbemycin oxime
41095                                                                                                               fluralaner
41096                                                                                    dinotefuran, permethrin, pyriproxyfen
41097                                                                          betamethasone, clotrimazole, gentamicin sulfate
41098                                                                                    dinotefuran, permethrin, pyriproxyfen
41099                                                                                                               fluralaner
41100                                                                                                            metronidazole
41101                                                                          betamethasone, clotrimazole, gentamicin sulfate
41102                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41103                                                                                                                meloxicam
41104                                                                                                               omeprazole
41105                                                                                                                  taurine
41121                                                                                               milbemycin oxime, spinosad
41125                                                                                             ivermectin, pyrantel pamoate
41129                                                                                                               ivermectin
41130                                                                                                               afoxolaner
41131                                                                                                         milbemycin oxime
41132                                                                                                               afoxolaner
41133                                                                                                         milbemycin oxime
41134                                                                                                               afoxolaner
41137                                                                                        betamethasone, gentamicin sulfate
41139                                                                                        enrofloxacin, silver sulfadiazine
41147                                                                                        enrofloxacin, silver sulfadiazine
41151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41152                                                                                      ear cleaner (zymox), hydrocortisone
41170                                                                             dexamethasone, neomycin sulfate, polymyxin b
41198                                                                                             ivermectin, pyrantel pamoate
41199                                                                                             ivermectin, pyrantel pamoate
41200                                                                                             ivermectin, pyrantel pamoate
41201                                                                                             ivermectin, pyrantel pamoate
41203                                                                                             ivermectin, pyrantel pamoate
41204                                                                                               imidacloprid, pyriproxyfen
41206                                                                                                 fipronil, (s)-methoprene
41207                                                                                             ivermectin, pyrantel pamoate
41208                                                                                                               afoxolaner
41209                                                                                             ivermectin, pyrantel pamoate
41210                                                                                                               afoxolaner
41216                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41217                                                                                               milbemycin oxime, spinosad
41219                                                                                              lufenuron, milbemycin oxime
41220                                                                                              lufenuron, milbemycin oxime
41221                                                                                              lufenuron, milbemycin oxime
41222                                                                                                         milbemycin oxime
41223                                                                                                         milbemycin oxime
41224                                                                                                               fluralaner
41225                                                                                                     prednisolone acetate
41240                                                                                               imidacloprid, pyriproxyfen
41241                                                                                             ivermectin, pyrantel pamoate
41242                                                                                                 imidacloprid, permethrin
41243                                                                                             ivermectin, pyrantel pamoate
41246                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41250                                                                                                 imidacloprid, permethrin
41251                                                                                                              oclacitinib
41252                                                                                                     cefpodoxime proxetil
41254                                                                                             ivermectin, pyrantel pamoate
41255                                                                                                              oclacitinib
41256                                                                                                     cefpodoxime proxetil
41260                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
41267                                                                                             ivermectin, pyrantel pamoate
41278                                                                                        betamethasone, gentamicin sulfate
41279                                                                                                               afoxolaner
41281                                                                                                 fipronil, (s)-methoprene
41283                                                                                              lufenuron, milbemycin oxime
41302                                                                                                               lokivetmab
41313                                                                                    dinotefuran, permethrin, pyriproxyfen
41314                                                                                             ivermectin, pyrantel pamoate
41315                                                                                               imidacloprid, pyriproxyfen
41316                                                                                             ivermectin, pyrantel pamoate
41318                                                                                               imidacloprid, pyriproxyfen
41319                                                                                                         milbemycin oxime
41320                                                                                           milbemycin oxime, praziquantel
41325                                                                                              lufenuron, milbemycin oxime
41332                                                                                              lufenuron, milbemycin oxime
41335                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41336                                                                                        betamethasone, gentamicin sulfate
41340                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41360                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41370                                                                                lufenuron, milbemycin oxime, praziquantel
41371                                                                                                                 fipronil
41372                                                                                                               fluralaner
41373                                                                                lufenuron, milbemycin oxime, praziquantel
41374                                                                                                               fluralaner
41376                                                                                lufenuron, milbemycin oxime, praziquantel
41377                                                                                lufenuron, milbemycin oxime, praziquantel
41378                                                                                                               fluralaner
41381                                                                                                                meloxicam
41384                                                                                              lufenuron, milbemycin oxime
41385                                                                                                               fluralaner
41386                                                                                              lufenuron, milbemycin oxime
41387                                                                                                               fluralaner
41388                                                                                          ear cleaner (epi-otic advanced)
41396                                                                           dexamethasone, neomycin sulfate, thiabendazole
41398                                                                                                   unspecified medication
41399                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41400                                                                                                  triamcinolone acetonide
41407                                                                                                               afoxolaner
41413                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41417                                                                                             ivermectin, pyrantel pamoate
41418                                                                                   cyphenothrin, fipronil, (s)-methoprene
41420                                                                                                               ivermectin
41421                                                                                                               ivermectin
41422                                                                                                               ivermectin
41424                                                                                                               fluralaner
41425                                                                                                               fluralaner
41430                                                                                               milbemycin oxime, spinosad
41431                                                                                               milbemycin oxime, spinosad
41432                                                                                               milbemycin oxime, spinosad
41433                                                                           mometasone furoate, orbifloxacin, posaconazole
41435                                                                                               milbemycin oxime, spinosad
41442                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41443                                                                                               milbemycin oxime, spinosad
41444                                                                                               milbemycin oxime, spinosad
41446                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41447                                                                                               milbemycin oxime, spinosad
41451                                                                                               milbemycin oxime, spinosad
41464                                                                                                       miconazole nitrate
41466                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41470                                                                                        allergy immunotherapy - injection
41497                                                                                                               isoflurane
41500                                                                             florfenicol, mometasone furoate, terbinafine
41502                                                                             florfenicol, mometasone furoate, terbinafine
41505                                                                                                               isoflurane
41525                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41531                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41533                                                                                                               gabapentin
41557                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41572                                                                                             ivermectin, pyrantel pamoate
41573                                                                                                               afoxolaner
41581                                                                                             ivermectin, pyrantel pamoate
41612                                                                                                               cephalexin
41615                                                                                             ivermectin, pyrantel pamoate
41617                                                                                                         milbemycin oxime
41621                                                                                                               ampicillin
41629                                                                                                               isoflurane
41632                                                                                                 imidacloprid, moxidectin
41633                                                                                             ivermectin, pyrantel pamoate
41636                                                                                             ivermectin, pyrantel pamoate
41637                                                                                                               afoxolaner
41638                                                                                             ivermectin, pyrantel pamoate
41639                                                                                 febantel, praziquantel, pyrantel pamoate
41640                                                                                             ivermectin, pyrantel pamoate
41641                                                                                             ivermectin, pyrantel pamoate
41653                                                                                              lufenuron, milbemycin oxime
41655                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41661                                                                                                                carprofen
41674                                                                                             ivermectin, pyrantel pamoate
41724                                                                                                   unspecified medication
41725                                                                                                 fipronil, (s)-methoprene
41726                                                                                                               ivermectin
41727                                                                                                         milbemycin oxime
41728                                                                                   joint supplement (glucosamine hcl/msm)
41729                                                                                                             multivitamin
41731                                                                                                 fipronil, (s)-methoprene
41737                                                                                                 fipronil, (s)-methoprene
41738                                                                                                               ivermectin
41739                                                                                   joint supplement (glucosamine hcl/msm)
41740                                                                                                             multivitamin
41743                                                                                           sulfamethoxazole, trimethoprim
41746                                                                                             ivermectin, pyrantel pamoate
41747                                                                                                                  omega 3
41748                                                                                                                vitamin c
41749                                                                                       joint supplement (glucosamine hcl)
41750                                                                                                                vitamin e
41751                                                                                                 urinary tract supplement
41752                                                                                   joint supplement (glucosamine hcl/msm)
41753                                                                                   joint supplement (glucosamine hcl/msm)
41754                                                                                                 skin and coat supplement
41756                                                                                       amoxicillin, clavulanate potassium
41759                                                                                                         milbemycin oxime
41774                                                                                              lufenuron, milbemycin oxime
41775                                                                                                               afoxolaner
41778                                                                                                               fluralaner
41779                                                                                             ivermectin, pyrantel pamoate
41781                                                                                             ivermectin, pyrantel pamoate
41803                                                                                                               ivermectin
41811                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41816                                                                           mometasone furoate, orbifloxacin, posaconazole
41819                                                                                              lufenuron, milbemycin oxime
41830                                                                                        trimeprazine tartrate, prednisone
41835                                                                                              lufenuron, milbemycin oxime
41837                                                                                              lufenuron, milbemycin oxime
41838                                                                                                                 fipronil
41840                                                                                              lufenuron, milbemycin oxime
41842                                                                             dexamethasone, neomycin sulfate, polymyxin b
41846                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41849                                                                                              lufenuron, milbemycin oxime
41850                                                                                              lufenuron, milbemycin oxime
41851                                                                                              lufenuron, milbemycin oxime
41853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41854                                                                                             ivermectin, pyrantel pamoate
41856                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41862                                                                             dexamethasone, neomycin sulfate, polymyxin b
41863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41866                                                                                             ivermectin, pyrantel pamoate
41867                                                                                                               afoxolaner
41870                                                                                                         milbemycin oxime
41872                                                                                                                trazodone
41888                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
41891                                                                                             ivermectin, pyrantel pamoate
41892                                                                                                     cefpodoxime proxetil
41893                                                                          betamethasone, clotrimazole, gentamicin sulfate
41894                                                                                                                    algae
41895                                                                                                 kidney health supplement
41896                                                                                                 urinary tract supplement
41897                                                                                                                  omega 3
41898                                                                                                                    algae
41899                                                                                                               walnut oil
41900                                                                                                 kidney health supplement
41901                                                                                                                 curcumin
41902                                                                                                                probiotic
41903                                                                                                                  omega 3
41904                                                                                                                    algae
41905                                                                                                 kidney health supplement
41906                                                                                                                probiotic
41907                                                                                                         tylosin tartrate
41921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41929                                                                                                               ivermectin
41930                                                                                             ivermectin, pyrantel pamoate
41937                                                                                             ivermectin, pyrantel pamoate
41938                                                                                                 fipronil, (s)-methoprene
41939                                                                                        betamethasone, gentamicin sulfate
41946                                                                                             ivermectin, pyrantel pamoate
41947                                                                                                 fipronil, (s)-methoprene
41950                                                                                             ivermectin, pyrantel pamoate
41973                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41975                                                                                                            metronidazole
41976                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41988                                                                                              lufenuron, milbemycin oxime
42004                                                                                             ivermectin, pyrantel pamoate
42005                                                                                                 fipronil, (s)-methoprene
42011                                                                                             ivermectin, pyrantel pamoate
42012                                                                                                 fipronil, (s)-methoprene
42030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42032                                                                                                         milbemycin oxime
42033                                                                                                              hydroxyzine
42034                                                                                                              amoxicillin
42035                                                                                                              clindamycin
42036                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
42037                                                                                                         milbemycin oxime
42039                                                                                                         milbemycin oxime
42040                                                                             florfenicol, mometasone furoate, terbinafine
42041                                                                                                               cephalexin
42042                                                                                                               prednisone
42043                                                                                                         milbemycin oxime
42044                                                                                                         milbemycin oxime
42053                                                                                                               afoxolaner
42054                                                                                                               famotidine
42055                                                                                                               sucralfate
42057                                                                                                              doxycycline
42061                                                                                             ivermectin, pyrantel pamoate
42063                                                                                                               ivermectin
42066                                                                                             ivermectin, pyrantel pamoate
42100                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42101                                                                                        betamethasone, gentamicin sulfate
42112                                                                                             ivermectin, pyrantel pamoate
42113                                                                                                               afoxolaner
42114                                                                                       amoxicillin, clavulanate potassium
42115                                                                                                       maropitant citrate
42116                                                                                                                 tramadol
42117                                                                                                               gabapentin
42119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42122                                                                             florfenicol, mometasone furoate, terbinafine
42147                                                                                              lufenuron, milbemycin oxime
42148                                                                                                               fluralaner
42149                                                                                              lufenuron, milbemycin oxime
42150                                                                                                               fluralaner
42151                                                                                                               fluralaner
42152                                                                                              lufenuron, milbemycin oxime
42154                                                                                                               fluralaner
42171                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42174                                                                                                         milbemycin oxime
42175                                                                                                             fenbendazole
42176                                                                                                         sulfadimethoxine
42198                                                                                                 flumethrin, imidacloprid
42201                                                                                                 flumethrin, imidacloprid
42215                                                                                            unspecified herbal supplement
42218                                                                                             ivermectin, pyrantel pamoate
42219                                                                                               imidacloprid, pyriproxyfen
42221                                                                                                 imidacloprid, moxidectin
42227                                                                                                 imidacloprid, moxidectin
42229                                                                                                 imidacloprid, moxidectin
42240                                                                                                         liver supplement
42241                                                                                                                  omega 3
42242                                                                                                                vitamin b
42243                                                                                                             multivitamin
42256                                                                                   dexamethasone, enrofloxacin, tris-edta
42257                                                                                                                mupirocin
42259                                                                                                                mupirocin
42267                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
42272                                                                                              lufenuron, milbemycin oxime
42273                                                                                                               fluralaner
42278                                                                                                 urinary tract supplement
42284                                                                                             ivermectin, pyrantel pamoate
42286                                                                                                 imidacloprid, permethrin
42287                                                                                             ivermectin, pyrantel pamoate
42289                                                                                             ivermectin, pyrantel pamoate
42291                                                                                                       calming supplement
42313                                                                                                 fipronil, (s)-methoprene
42314                                                                                             ivermectin, pyrantel pamoate
42345                                                                                                         milbemycin oxime
42346                                                                                                                sarolaner
42348                                                                                                         milbemycin oxime
42349                                                                                                                sarolaner
42353                                                                                              lufenuron, milbemycin oxime
42354                                                                                                               afoxolaner
42355                                                                                                                  omega 3
42356                                                                                                               afoxolaner
42357                                                                                              lufenuron, milbemycin oxime
42358                                                                                                               afoxolaner
42361                                                                                                                probiotic
42365                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
42366                                                                                                               ivermectin
42367                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
42368                                                                                             ivermectin, pyrantel pamoate
42378                                                                                             ivermectin, pyrantel pamoate
42379                                                                                             ivermectin, pyrantel pamoate
42384                                                                                             ivermectin, pyrantel pamoate
42386                                                                                             ivermectin, pyrantel pamoate
42387                                                                                             ivermectin, pyrantel pamoate
42399                                                                                                 flumethrin, imidacloprid
42402                                                                                             ivermectin, pyrantel pamoate
42403                                                                                                 fipronil, (s)-methoprene
42404                                                                                             ivermectin, pyrantel pamoate
42412                                                                                             ivermectin, pyrantel pamoate
42413                                                                                                               afoxolaner
42417                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42425                                                                                                           hydrocortisone
42426                                                                                                           hydrocortisone
42433                                                                                             ivermectin, pyrantel pamoate
42451                                                                                              lufenuron, milbemycin oxime
42455                                                                                              lufenuron, milbemycin oxime
42463                                                                               ivermectin, praziquantel, pyrantel pamoate
42464                                                                                                    ear cleaner (aurocin)
42465                                                                               ivermectin, praziquantel, pyrantel pamoate
42466                                                                                                                carprofen
42468                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
42474                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42475                                                                                                                  omega 3
42476                                                                                              lufenuron, milbemycin oxime
42477                                                                                               imidacloprid, pyriproxyfen
42478                                                                                              lufenuron, milbemycin oxime
42479                                                                                               imidacloprid, pyriproxyfen
42480                                                                                          ear cleaner (epi-otic advanced)
42481                                                                                             ormetoprim, sulfadimethoxine
42482                                                                                               imidacloprid, pyriproxyfen
42483                                                                                              lufenuron, milbemycin oxime
42486                                                                                                                probiotic
42488                                                                                               imidacloprid, pyriproxyfen
42489                                                                                              lufenuron, milbemycin oxime
42502                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42506                                                                                                                probiotic
42512                                                                                           milbemycin oxime, praziquantel
42513                                                                                                 fipronil, (s)-methoprene
42518                                                                                                       maropitant citrate
42519                                                                                                     prednisolone acetate
42522                                                                                                         liver supplement
42537                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42551                                                                                              lufenuron, milbemycin oxime
42552                                                                                              lufenuron, milbemycin oxime
42553                                                                                              lufenuron, milbemycin oxime
42566                                                                                               unspecified shampoo/mousse
42570                                                                                                                 spinosad
42572                                                                                             ivermectin, pyrantel pamoate
42573                                                                                             ivermectin, pyrantel pamoate
42574                                                                                             ivermectin, pyrantel pamoate
42578                                                                                             ivermectin, pyrantel pamoate
42579                                                                                                               fluralaner
42593                                                                                             ivermectin, pyrantel pamoate
42594                                                                                                               fluralaner
42624                                                                                              lufenuron, milbemycin oxime
42626                                                                          betamethasone, clotrimazole, gentamicin sulfate
42627                                                                                              lufenuron, milbemycin oxime
42628                                                                                                               fluralaner
42632                                                                                                               fluralaner
42633                                                                                              lufenuron, milbemycin oxime
42634                                                                                                 flumethrin, imidacloprid
42637                                                                                              lufenuron, milbemycin oxime
42638                                                                                              lufenuron, milbemycin oxime
42640                                                                                                 flumethrin, imidacloprid
42646                                                                                                         pyrantel pamoate
42647                                                                                                                ponazuril
42648                                                                                                             fenbendazole
42651                                                                                              lufenuron, milbemycin oxime
42652                                                                                                                 fipronil
42655                                                                                             ivermectin, pyrantel pamoate
42656                                                                                                                sarolaner
42666                                                                                             ivermectin, pyrantel pamoate
42668                                                                                             ivermectin, pyrantel pamoate
42675                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42678                                                                             dexamethasone, neomycin sulfate, polymyxin b
42679                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42694                                                                                   cyphenothrin, fipronil, (s)-methoprene
42695                                                                                             ivermectin, pyrantel pamoate
42696                                                                                                 fipronil, (s)-methoprene
42697                                                                                                               ivermectin
42700                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42704                                                                                             ivermectin, pyrantel pamoate
42712                                                                                                               ivermectin
42716                                                                                             ivermectin, pyrantel pamoate
42721                                                                                             ivermectin, pyrantel pamoate
42725                                                                                                 fipronil, (s)-methoprene
42726                                                                                             ivermectin, pyrantel pamoate
42727                                                                                             ivermectin, pyrantel pamoate
42728                                                                                             ivermectin, pyrantel pamoate
42729                                                                                                         milbemycin oxime
42740                                                                                             ivermectin, pyrantel pamoate
42752                                                                                              lufenuron, milbemycin oxime
42753                                                                                              lufenuron, milbemycin oxime
42758                                                                                              lufenuron, milbemycin oxime
42760                                                                                                         milbemycin oxime
42761                                                                                                 fipronil, (s)-methoprene
42764                                                                                           milbemycin oxime, praziquantel
42766                                                                                           milbemycin oxime, praziquantel
42767                                                                                                               afoxolaner
42768                                                                                           milbemycin oxime, praziquantel
42769                                                                                                                sarolaner
42785                                                                                                               afoxolaner
42786                                                                                                         milbemycin oxime
42787                                                                                       joint supplement (glucosamine hcl)
42791                                                                                                         milbemycin oxime
42792                                                                                                         milbemycin oxime
42799                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42821                                                                               ivermectin, praziquantel, pyrantel pamoate
42829                                                                          betamethasone, clotrimazole, gentamicin sulfate
42833                                                                                                         milbemycin oxime
42860                                                                                                     rx diet - aging care
42876                                                                                                                  omega 3
42879                                                                                    dinotefuran, permethrin, pyriproxyfen
42887                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42890                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42891                                                                                                                probiotic
42892                                                                                                                  omega 3
42893                                                                                                                  omega 3
42894                                                                                                 urinary tract supplement
42909                                                                                                                carprofen
42913                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42915                                                                                                 imidacloprid, permethrin
42920                                                                                             ivermectin, pyrantel pamoate
42923                                                                                                               selamectin
42926                                                                                                 fipronil, (s)-methoprene
42930                                                                                             ivermectin, pyrantel pamoate
42931                                                                                              lufenuron, milbemycin oxime
42932                                                                                                                sarolaner
42935                                                                                                                sarolaner
42936                                                                                              lufenuron, milbemycin oxime
42939                                                                                           milbemycin oxime, praziquantel
42940                                                                                                                sarolaner
42946                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42952                                                                                               milbemycin oxime, spinosad
42956                                                                                              lufenuron, milbemycin oxime
42959                                                                                             ivermectin, pyrantel pamoate
42960                                                                                             ivermectin, pyrantel pamoate
42967                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42994                                                                                               imidacloprid, pyriproxyfen
43013                                                                                             ivermectin, pyrantel pamoate
43045                                                                                             ivermectin, pyrantel pamoate
43064                                                                                             ivermectin, pyrantel pamoate
43065                                                                                               imidacloprid, pyriproxyfen
43069                                                                                               imidacloprid, pyriproxyfen
43072                                                                                               imidacloprid, pyriproxyfen
43081                                                                                                               selamectin
43086                                                                                        betamethasone, gentamicin sulfate
43105                                                                                    chlorhexidine gluconate, ketoconazole
43116                                                                                              lufenuron, milbemycin oxime
43119                                                                                           milbemycin oxime, praziquantel
43123                                                                                                         milbemycin oxime
43134                                                                                       amoxicillin, clavulanate potassium
43135                                                                                                               cephalexin
43136                                                                                                                carprofen
43137                                                                                                         milbemycin oxime
43138                                                                                                               fluralaner
43149                                                                                                              hydrocodone
43151                                                                                           milbemycin oxime, praziquantel
43153                                                                           mometasone furoate, orbifloxacin, posaconazole
43169                                                                                                          dexmedetomidine
43173                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
43183                                                                                              lufenuron, milbemycin oxime
43184                                                                                              lufenuron, milbemycin oxime
43187                                                                                                          diphenhydramine
43191                                                                                                              sevoflurane
43200                                                                                               milbemycin oxime, spinosad
43202                                                                                               imidacloprid, pyriproxyfen
43204                                                                                                               selamectin
43224                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43228                                                                                                 flumethrin, imidacloprid
43236                                                                                              lufenuron, milbemycin oxime
43238                                                                                           milbemycin oxime, praziquantel
43239                                                                                                 flumethrin, imidacloprid
43240                                                                                                               famotidine
43241                                                                                           milbemycin oxime, praziquantel
43242                                                                                                 flumethrin, imidacloprid
43243                                                                                           milbemycin oxime, praziquantel
43244                                                                                                 flumethrin, imidacloprid
43246                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43247                                                                                                                 curcumin
43251                                                                                              lufenuron, milbemycin oxime
43254                                                                                              lufenuron, milbemycin oxime
43258                                                                                              lufenuron, milbemycin oxime
43259                                                                                    dinotefuran, permethrin, pyriproxyfen
43265                                                                                              lufenuron, milbemycin oxime
43270                                                                                                            metronidazole
43286                                                                                                            levetiracetam
43291                                                                                                 imidacloprid, moxidectin
43292                                                                                                  chlorhexidine gluconate
43293                                                                                                 imidacloprid, moxidectin
43310                                                                                              lufenuron, milbemycin oxime
43329                                                                                             ivermectin, pyrantel pamoate
43334                                                                                                         milbemycin oxime
43366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43388                                                                                                               fluralaner
43396                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43397                                                                             dexamethasone, neomycin sulfate, polymyxin b
43398                                                                                                            metronidazole
43399                                                                                                                carprofen
43400                                                                                                               cephalexin
43405                                                                                                  ketoconazole, tris-edta
43412                                                                          betamethasone, clotrimazole, gentamicin sulfate
43416                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43423                                                                                                               afoxolaner
43424                                                                                                                  omega 3
43430                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43436                                                                                                              oclacitinib
43443                                                                                                              oclacitinib
43465                                                                                                             multivitamin
43467                                                                                                  ketoconazole, tris-edta
43469                                                                                       joint supplement (glucosamine hcl)
43470                                                                                                                  omega 3
43471                                                                                                      unspecified vitamin
43482                                                                                lufenuron, milbemycin oxime, praziquantel
43491                                                                                              lufenuron, milbemycin oxime
43493                                                                                                         milbemycin oxime
43494                                                                                                         milbemycin oxime
43496                                                                                                         milbemycin oxime
43497                                                                                                         milbemycin oxime
43498                                                                                                                lotilaner
43510                                                                                              lufenuron, milbemycin oxime
43511                                                                                                               fluralaner
43512                                                                                                     fipronil, permethrin
43522                                                                                                               fluralaner
43527                                                                                             ivermectin, pyrantel pamoate
43531                                                                                           milbemycin oxime, praziquantel
43532                                                                                                               afoxolaner
43535                                                                                           milbemycin oxime, praziquantel
43538                                                                                           milbemycin oxime, praziquantel
43539                                                                                                               afoxolaner
43540                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43545                                                                                             ivermectin, pyrantel pamoate
43546                                                                                                 fipronil, (s)-methoprene
43547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43548                                                                                                               ivermectin
43549                                                                                                 fipronil, (s)-methoprene
43550                                                                                                               ivermectin
43561                                                                                                               cephalexin
43563                                                                                                               afoxolaner
43570                                                                                                 fipronil, (s)-methoprene
43601                                                                                                            ciprofloxacin
43610                                                                                             oxytetracycline, polymyxin b
43611                                                                                             ivermectin, pyrantel pamoate
43620                                                                                                                sarolaner
43621                                                                                                 flumethrin, imidacloprid
43622                                                                                             ivermectin, pyrantel pamoate
43636                                                                                                               selamectin
43637                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43639                                                                                                                mupirocin
43640                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43641                                                                                                            metronidazole
43642                                                                                          ear cleaner (epi-otic advanced)
43643                                                                                                   unspecified antiseptic
43644                                                                                             ivermectin, pyrantel pamoate
43645                                                                                                               afoxolaner
43646                                                                                                             fenbendazole
43650                                                                             dexamethasone, neomycin sulfate, polymyxin b
43652                                                                                                 fipronil, (s)-methoprene
43653                                                                                             ivermectin, pyrantel pamoate
43669                                                                                       chlorhexidine gluconate, ophytrium
43678                                                                                        betamethasone, gentamicin sulfate
43683                                                                                             ivermectin, pyrantel pamoate
43684                                                                             dexamethasone, neomycin sulfate, polymyxin b
43685                                                                                                             ketoconazole
43686                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43697                                                                                lufenuron, milbemycin oxime, praziquantel
43698                                                                                                               afoxolaner
43701                                                                                              lufenuron, milbemycin oxime
43702                                                                                                               fluralaner
43706                                                                                              lufenuron, milbemycin oxime
43707                                                                                                               fluralaner
43709                                                                                    dinotefuran, permethrin, pyriproxyfen
43712                                                                                                  triamcinolone acetonide
43714                                                                                       chlorhexidine gluconate, ophytrium
43715                                                                                                         phytosphingosine
43738                                                                                        betamethasone, gentamicin sulfate
43743                                                                                             ivermectin, pyrantel pamoate
43744                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43745                                                                                                                probiotic
43746                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43747                                                                                             ivermectin, pyrantel pamoate
43751                                                                                                                probiotic
43755                                                                                             ivermectin, pyrantel pamoate
43756                                                                                                               afoxolaner
43765                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
43766                                                                                                            metronidazole
43778                                                                                             ivermectin, pyrantel pamoate
43783                                                                                             ivermectin, pyrantel pamoate
43784                                                                                                               afoxolaner
43785                                                                                   joint supplement (glucosamine hcl/msm)
43790                                                                                   joint supplement (glucosamine hcl/msm)
43806                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
43807                                                                              chlorhexidine gluconate, miconazole nitrate
43829                                                                                               lactated ringer's solution
43831                                                                                             ivermectin, pyrantel pamoate
43838                                                                                                             capromorelin
43843                                                                                                         milbemycin oxime
43844                                                                                                               afoxolaner
43851                                                                                                 flumethrin, imidacloprid
43853                                                                                                               lokivetmab
43854                                                                                                                carprofen
43878                                                                               ivermectin, praziquantel, pyrantel pamoate
43884                                                                                  betamethasone, florfenicol, terbinafine
43887                                                                                  betamethasone, florfenicol, terbinafine
43893                                                                                             ivermectin, pyrantel pamoate
43894                                                                                                 flumethrin, imidacloprid
43896                                                                                             ivermectin, pyrantel pamoate
43897                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43898                                                                                                              oclacitinib
43919                                                                                                               ivermectin
43920                                                                                                               afoxolaner
43938                                                                                                         milbemycin oxime
43939                                                                                                               afoxolaner
43949                                                                                                         milbemycin oxime
43950                                                                                                               afoxolaner
43958                                                                                                         milbemycin oxime
43959                                                                                                         milbemycin oxime
43960                                                                                                               afoxolaner
43963                                                                                              lufenuron, milbemycin oxime
43965                                                                          betamethasone, clotrimazole, gentamicin sulfate
43975                                                                                                                probiotic
43976                                                                                             ivermectin, pyrantel pamoate
43977                                                                                             ivermectin, pyrantel pamoate
43980                                                                                             ivermectin, pyrantel pamoate
43997                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
44031                                                                                             ivermectin, pyrantel pamoate
44037                                                                                             ivermectin, pyrantel pamoate
44050                                                                                    chlorhexidine gluconate, ketoconazole
44051                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44055                                                                           dexamethasone, neomycin sulfate, thiabendazole
44084                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44087                                                                                            cedarwood oil, peppermint oil
44090                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44119                                                                                                                ofloxacin
44123                                                                                                  triamcinolone acetonide
44126                                                                                                               ivermectin
44127                                                                                                               afoxolaner
44129                                                                                             ivermectin, pyrantel pamoate
44131                                                                                              lufenuron, milbemycin oxime
44154                                                  fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
44155                                                                                lufenuron, milbemycin oxime, praziquantel
44157                                                                                lufenuron, milbemycin oxime, praziquantel
44158                                                                                                               fluralaner
44207                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44209                                                                             florfenicol, mometasone furoate, terbinafine
44211                                                                                               milbemycin oxime, spinosad
44212                                                                                                       calming supplement
44214                                                                                               milbemycin oxime, spinosad
44216                                                                                               milbemycin oxime, spinosad
44218                                                                                               milbemycin oxime, spinosad
44219                                                                                               milbemycin oxime, spinosad
44220                                                                             florfenicol, mometasone furoate, terbinafine
44222                                                                                        betamethasone, gentamicin sulfate
44223                                                                                                              latanoprost
44224                                                                                                              dorzolamide
44225                                                                                                                  timolol
44226                                                                                                                probiotic
44227                                                                                                               diclofenac
44234                                                                                               imidacloprid, pyriproxyfen
44235                                                                                                               ivermectin
44240                                                                                              ear cleaner (well and good)
44241                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44242                                                                                                                  omega 3
44243                                                                                                                 turmeric
44244                                                                                                                  aspirin
44245                                                                                                            metronidazole
44246                                                                                                               ivermectin
44247                                                                                                                 spinosad
44249                                                                                                               afoxolaner
44250                                                                                                               ivermectin
44251                                                                                                               ivermectin
44252                                                                                                               afoxolaner
44253                                                                               ivermectin, praziquantel, pyrantel pamoate
44268                                                                               ivermectin, praziquantel, pyrantel pamoate
44280                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44282                                                                                                  ketoconazole, tris-edta
44309                                                                                                        tigilanol tiglate
44330                                                                                              lufenuron, milbemycin oxime
44334                                                                                             ivermectin, pyrantel pamoate
44335                                                                                                               afoxolaner
44336                                                                                             ivermectin, pyrantel pamoate
44337                                                                                                               afoxolaner
44347                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
44350                                                                                       amoxicillin, clavulanate potassium
44363                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44372                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
44385                                                                                               milbemycin oxime, spinosad
44386                                                                                               milbemycin oxime, spinosad
44390                                                                                                         milbemycin oxime
44391                                                                                                         milbemycin oxime
44392                                                                                                         milbemycin oxime
44395                                                                                                         milbemycin oxime
44398                                                                                                                probiotic
44421                                                                               ivermectin, praziquantel, pyrantel pamoate
44428                                                                                               milbemycin oxime, spinosad
44429                                                                                               milbemycin oxime, spinosad
44431                                                                                                               fluralaner
44434                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44452                                                                                               milbemycin oxime, spinosad
44473                                                                                               imidacloprid, pyriproxyfen
44501                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44502                                                                                                            dexamethasone
44503                                                                                                          diphenhydramine
44504                                                                                                          diphenhydramine
44505                                                                                                               cephalexin
44507                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44508                                                                                                            dexamethasone
44509                                                                                                          diphenhydramine
44518                                                                                             ivermectin, pyrantel pamoate
44520                                                                                                                tris-edta
44524                                                                                             ivermectin, pyrantel pamoate
44531                                                                                                                meloxicam
44532                                                                                                            metronidazole
44542                                                                                                 fipronil, (s)-methoprene
44543                                                                                                               ivermectin
44544                                                                                             ivermectin, pyrantel pamoate
44545                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44546                                                                                             ivermectin, pyrantel pamoate
44547                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44552                                                                                                                  omega 3
44558                                                                                             ivermectin, pyrantel pamoate
44559                                                                                                 fipronil, (s)-methoprene
44570                                                                                             ivermectin, pyrantel pamoate
44571                                                                                                 fipronil, (s)-methoprene
44576                                                                                             ivermectin, pyrantel pamoate
44577                                                                                                 fipronil, (s)-methoprene
44595                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44607                                                                                    chlorhexidine gluconate, ketoconazole
44608                                                                                               milbemycin oxime, spinosad
44609                                                                                    chlorhexidine gluconate, ketoconazole
44614                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44616                                                                                              lufenuron, milbemycin oxime
44618                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44646                                                                                                               selamectin
44649                                                                                                               selamectin
44652                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44653                                                                                        betamethasone, gentamicin sulfate
44654                                                                                                 fipronil, (s)-methoprene
44655                                                                                                 flumethrin, imidacloprid
44658                                                                                                       calming supplement
44660                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44663                                                                                                     cefpodoxime proxetil
44671                                                                                               milbemycin oxime, spinosad
44672                                                                                               milbemycin oxime, spinosad
44677                                                                                               milbemycin oxime, spinosad
44679                                                                                                   acetaminophen, codeine
44683                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44684                                                                                       joint supplement (glucosamine hcl)
44706                                                                                             oxytetracycline, polymyxin b
44732                                                                                              lufenuron, milbemycin oxime
44742                                                                                              lufenuron, milbemycin oxime
44743                                                                                                 fipronil, (s)-methoprene
44745                                                                                              lufenuron, milbemycin oxime
44746                                                                                              lufenuron, milbemycin oxime
44747                                                                                                 flumethrin, imidacloprid
44755                                                                                                                probiotic
44757                                                                                                                probiotic
44769                                                                                                 fipronil, (s)-methoprene
44771                                                                                                 fipronil, (s)-methoprene
44782                                                                                                         liver supplement
44795                                                                                             oxytetracycline, polymyxin b
44796                                                                                                unspecified eye lubricant
44797                                                                                                                ofloxacin
44798                                                                                                                carprofen
44799                                                                                                                carprofen
44800                                                                                                                trazodone
44804                                                                                                                carprofen
44805                                                                                                               cephalexin
44820                                                                                              lufenuron, milbemycin oxime
44827                                                                                                               ivermectin
44828                                                                                                               afoxolaner
44829                                                                                             ivermectin, pyrantel pamoate
44830                                                                                             ivermectin, pyrantel pamoate
44831                                                                                                     prednisolone acetate
44834                                                                             florfenicol, mometasone furoate, terbinafine
44843                                                                                             ivermectin, pyrantel pamoate
44844                                                                                                               afoxolaner
44857                                                                                        trimeprazine tartrate, prednisone
44858                                                                                        trimeprazine tartrate, prednisone
44862                                                                                                                  omega 3
44863                                                                                             ivermectin, pyrantel pamoate
44864                                                                                             ivermectin, pyrantel pamoate
44866                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44867                                                                                                 imidacloprid, moxidectin
44868                                                                                                 imidacloprid, moxidectin
44869                                                                                                               afoxolaner
44870                                                                                                       diethylstilbestrol
44875                                                                                              lufenuron, milbemycin oxime
44877                                                                                                         milbemycin oxime
44878                                                                                                              clindamycin
44879                                                                                                         milbemycin oxime
44899                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44905                                                                                                            metronidazole
44915                                                                                                 fipronil, (s)-methoprene
44916                                                                                             ivermectin, pyrantel pamoate
44917                                                                                               imidacloprid, pyriproxyfen
44918                                                                                             ivermectin, pyrantel pamoate
44920                                                                                               imidacloprid, pyriproxyfen
44922                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44924                                                                                             ivermectin, pyrantel pamoate
44925                                                                                                 imidacloprid, permethrin
44933                                                                                           polysulfated glycosaminoglycan
44936                                                                                                               selamectin
44937                                                                                                               selamectin
44938                                                                                                               selamectin
44939                                                                                                               selamectin
44946                                                                                             ivermectin, pyrantel pamoate
44947                                                                                                               fluralaner
44948                                                                                                       diethylstilbestrol
44949                                                                                             ivermectin, pyrantel pamoate
44950                                                                                                               fluralaner
44957                                                                                                               fluralaner
44958                                                                                             ivermectin, pyrantel pamoate
44990                                                                                                      aluminium hydroxide
44997                                                                                                   rx diet - renal health
45005                                                                                                            levetiracetam
45007                                                                                                               afoxolaner
45014                                                                                               milbemycin oxime, spinosad
45015                                                                                                               loratadine
45016                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45017                                                                                                               lokivetmab
45023                                                                                                     prednisolone acetate
45027                                                                                   cyphenothrin, fipronil, (s)-methoprene
45034                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
45045                                                                                                               selamectin
45047                                                                                                 fipronil, (s)-methoprene
45053                                                                                                               ivermectin
45054                                                                                                               afoxolaner
45055                                                                                                               afoxolaner
45059                                                                                                               ivermectin
45061                                                                                             ivermectin, pyrantel pamoate
45062                                                                                                                 spinosad
45063                                                                                               milbemycin oxime, spinosad
45064                                                                                               milbemycin oxime, spinosad
45066                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45072                                                                                               milbemycin oxime, spinosad
45073                                                                                               milbemycin oxime, spinosad
45076                                                                                                                probiotic
45109                                                                                               milbemycin oxime, spinosad
45110                                                                                                                trazodone
45112                                                                                                          dexmedetomidine
45115                                                                                                               gabapentin
45116                                                                                                                carprofen
45117                                                                                                       calming supplement
45123                                                                                             ivermectin, pyrantel pamoate
45134                                                                                           sulfamethoxazole, trimethoprim
45139                                                                                             ivermectin, pyrantel pamoate
45149                                                                                              lufenuron, milbemycin oxime
45150                                                                                              lufenuron, milbemycin oxime
45154                                                                                              lufenuron, milbemycin oxime
45172                                                                               dimethyl sulfoxide, fluocinolone acetonide
45173                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45174                                                                                                              bedinvetmab
45175                                                                                                               lokivetmab
45178                                                                                             ivermectin, pyrantel pamoate
45179                                                                                                 fipronil, (s)-methoprene
45180                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
45181                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
45182                                                                                             ivermectin, pyrantel pamoate
45184                                                                                                         milbemycin oxime
45185                                                                                                 fipronil, (s)-methoprene
45186                                                                                                         milbemycin oxime
45187                                                                                                                sarolaner
45188                                                                                                         milbemycin oxime
45189                                                                                                                sarolaner
45195                                                                                                               gabapentin
45199                                                                                                                trazodone
45203                                                                                                               afoxolaner
45204                                                                                                              ondansetron
45208                                                                                        betamethasone, gentamicin sulfate
45209                                                                                           ketoconazole, phytosphingosine
45210                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45212                                                                                                         milbemycin oxime
45216                                                                                             ivermectin, pyrantel pamoate
45224                                                                                                  chlorhexidine gluconate
45225                                                                                             ivermectin, pyrantel pamoate
45236                                                                                             ivermectin, pyrantel pamoate
45255                                                                                               imidacloprid, pyriproxyfen
45257                                                                             florfenicol, mometasone furoate, terbinafine
45263                                                                                                               afoxolaner
45268                                                                                                         milbemycin oxime
45273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45274                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45280                                                                                             ivermectin, pyrantel pamoate
45283                                                                                             ivermectin, pyrantel pamoate
45286                                                                                             ivermectin, pyrantel pamoate
45294                                                                                               milbemycin oxime, spinosad
45295                                                                                                     digestive supplement
45297                                                                                                                meloxicam
45298                                                                                                               afoxolaner
45299                                                                                             ivermectin, pyrantel pamoate
45302                                                                                             ivermectin, pyrantel pamoate
45305                                                                                                                  taurine
45307                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
45309                                                                                                                  taurine
45310                                                                                             ivermectin, pyrantel pamoate
45311                                                                                                               afoxolaner
45312                                                                                                               afoxolaner
45313                                                                                             ivermectin, pyrantel pamoate
45322                                                                                       amoxicillin, clavulanate potassium
45327                                                                                                                carprofen
45335                                                                                              lufenuron, milbemycin oxime
45344                                                                                                                body sore
45345                                                                                                              liver happy
45358                                                                                                              liver happy
45359                                                                                                                body sore
45372                                                                          betamethasone, clotrimazole, gentamicin sulfate
45383                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45403                                                                                                                ophytrium
45406                                                                                              lufenuron, milbemycin oxime
45411                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
45425                                                                                             ivermectin, pyrantel pamoate
45426                                                                                            unspecified flea preventative
45434                                                                                                     cefpodoxime proxetil
45435                                                                                                     cefpodoxime proxetil
45443                                                                                             ivermectin, pyrantel pamoate
45445                                                                                             ivermectin, pyrantel pamoate
45451                                                                                                               ivermectin
45452                                                                                                               afoxolaner
45463                                                                                               milbemycin oxime, spinosad
45468                                                                                              lufenuron, milbemycin oxime
45470                                                                                               milbemycin oxime, spinosad
45471                                                                             dexamethasone, neomycin sulfate, polymyxin b
45476                                                                                               milbemycin oxime, spinosad
45479                                                                             dexamethasone, neomycin sulfate, polymyxin b
45480                                                                                               milbemycin oxime, spinosad
45484                                                                                               milbemycin oxime, spinosad
45498                                                                                                                carprofen
45499                                                                                             ivermectin, pyrantel pamoate
45500                                                                                                               afoxolaner
45503                                                                                        trimeprazine tartrate, prednisone
45504                                                                                              lufenuron, milbemycin oxime
45508                                                                                                                 fipronil
45531                                                                                                 imidacloprid, moxidectin
45534                                                                                               milbemycin oxime, spinosad
45553                                                                                                               selamectin
45555                                                                                                              coconut oil
45556                                                                                                               selamectin
45572                                                                                       fipronil, permethrin, pyriproxyfen
45582                                                                                                 fipronil, (s)-methoprene
45585                                                                                             ivermectin, pyrantel pamoate
45586                                                                                                            ciprofloxacin
45587                                                                                                               cephalexin
45591                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45592                                                                                                              oclacitinib
45626                                                                                                         milbemycin oxime
45629                                                                                  betamethasone, florfenicol, terbinafine
45642                                                                                             ivermectin, pyrantel pamoate
45650                                                                                                               afoxolaner
45651                                                                                             ivermectin, pyrantel pamoate
45655                                                                                             ivermectin, pyrantel pamoate
45656                                                                                                               afoxolaner
45663                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45664                                                                                lufenuron, milbemycin oxime, praziquantel
45665                                                                                                   cyphenothrin, fipronil
45666                                                                                lufenuron, milbemycin oxime, praziquantel
45667                                                                                                   cyphenothrin, fipronil
45670                                                                                                         milbemycin oxime
45671                                                                                                                lotilaner
45674                                                                                        betamethasone, gentamicin sulfate
45675                                                                         dexamethasone, enrofloxacin, silver sulfadiazine
45676                                                                           mometasone furoate, orbifloxacin, posaconazole
45683                                                                                              lufenuron, milbemycin oxime
45684                                                                                                          diphenhydramine
45699                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45700                                                                                                  acetic acid, boric acid
45703                                                                enrofloxacin, miconazole nitrate, triamcinolone acetonide
45704                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45725                                                                                                                probiotic
45726                                                                                                   joint supplement (msm)
45727                                                                                                                  omega 3
45728                                                                                                 joint supplement (other)
45729                                                                                                               cetirizine
45735                                                                                             ivermectin, pyrantel pamoate
45736                                                                                                 fipronil, (s)-methoprene
45751                                                                                                 fipronil, (s)-methoprene
45764                                                                                             ivermectin, pyrantel pamoate
45775                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45776                                                                             florfenicol, mometasone furoate, terbinafine
45786                                                                                                               fluoxetine
45787                                                                                                 fipronil, (s)-methoprene
45791                                                                                              lufenuron, milbemycin oxime
45794                                                                                lufenuron, milbemycin oxime, praziquantel
45798                                                                                                         milbemycin oxime
45799                                                                                                         milbemycin oxime
45800                                                                                                                lotilaner
45816                                                                                                 flumethrin, imidacloprid
45820                                                                                             ivermectin, pyrantel pamoate
45843                                                                                                          povidone-iodine
45853                                                                                                               isoflurane
45862                                                                                                         milbemycin oxime
45863                                                                                                               afoxolaner
45864                                                                                                               fluralaner
45869                                                                                           milbemycin oxime, praziquantel
45870                                                                                        betamethasone, gentamicin sulfate
45871                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45872                                                                                                               fluralaner
45876                                                                                               milbemycin oxime, spinosad
45886                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45898                                                                                                         milbemycin oxime
45899                                                                                               imidacloprid, pyriproxyfen
45901                                                                                           milbemycin oxime, praziquantel
45908                                                                                                         milbemycin oxime
45909                                                                                                 imidacloprid, permethrin
45914                                                                                           milbemycin oxime, praziquantel
45924                                                                                             ivermectin, pyrantel pamoate
45968                                                                                              lufenuron, milbemycin oxime
45969                                                                                              lufenuron, milbemycin oxime
45970                                                                                                               afoxolaner
45971                                                                                              lufenuron, milbemycin oxime
45972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45974                                                                                                               cephalexin
45990                                                                                               milbemycin oxime, spinosad
45994                                                                                                 imidacloprid, permethrin
45995                                                                                                                probiotic
45996                                                                                              chloroxylenol, ketoconazole
45997                                                                                                         milbemycin oxime
46014                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46018                                                                                             ivermectin, pyrantel pamoate
46019                                                                                                               afoxolaner
46020                                                                             florfenicol, mometasone furoate, terbinafine
46021                                                                                             ivermectin, pyrantel pamoate
46022                                                                                                               afoxolaner
46025                                                                                             ivermectin, pyrantel pamoate
46043                                                                                                               ivermectin
46044                                                                                                               afoxolaner
46071                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46075                                                                                             ivermectin, pyrantel pamoate
46076                                                                                                         milbemycin oxime
46077                                                                                                              doxycycline
46078                                                                                                         milbemycin oxime
46079                                                                                                                lotilaner
46085                                                                                        betamethasone, gentamicin sulfate
46091                                                                                             ivermectin, pyrantel pamoate
46092                                                                               ivermectin, praziquantel, pyrantel pamoate
46094                                                                                                         milbemycin oxime
46095                                                                                           milbemycin oxime, praziquantel
46100                                                                                                               ivermectin
46101                                                                           dexamethasone, neomycin sulfate, thiabendazole
46102                                                                               dimethyl sulfoxide, fluocinolone acetonide
46103                                                                                                             enrofloxacin
46107                                                                                             ivermectin, pyrantel pamoate
46108                                                                                                               lokivetmab
46110                                                                                             ivermectin, pyrantel pamoate
46116                                                                               ivermectin, praziquantel, pyrantel pamoate
46119                                                                               ivermectin, praziquantel, pyrantel pamoate
46122                                                                               ivermectin, praziquantel, pyrantel pamoate
46128                                                                               ivermectin, praziquantel, pyrantel pamoate
46131                                                                           mometasone furoate, orbifloxacin, posaconazole
46132                                                                                                                ofloxacin
46134                                                                                                                probiotic
46169                                                                                              lufenuron, milbemycin oxime
46170                                                                                    dinotefuran, permethrin, pyriproxyfen
46171                                                                                                  ketoconazole, tris-edta
46173                                                                                    dinotefuran, permethrin, pyriproxyfen
46174                                                                                                         milbemycin oxime
46177                                                                                                         milbemycin oxime
46179                                                                                                            metronidazole
46186                                                                                                                probiotic
46198                                                                                             ivermectin, pyrantel pamoate
46200                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46201                                                                               toothpaste/dental health solution or chews
46202                                                                                             ivermectin, pyrantel pamoate
46213                                                                                                 imidacloprid, permethrin
46218                                                                                                         milbemycin oxime
46219                                                                                                               afoxolaner
46226                                                                                                              doxycycline
46227                                                                                                               afoxolaner
46255                                                                                           ketoconazole, phytosphingosine
46265                                                                                                              hydrocodone
46277                                                                                             ivermectin, pyrantel pamoate
46278                                                                                                               afoxolaner
46287                                                                                             ivermectin, pyrantel pamoate
46288                                                                                                               afoxolaner
46291                                                                                             ivermectin, pyrantel pamoate
46292                                                                                             ivermectin, pyrantel pamoate
46293                                                                                                               afoxolaner
46295                                                                                             ivermectin, pyrantel pamoate
46296                                                                                                               afoxolaner
46302                                                                                              lufenuron, milbemycin oxime
46303                                                                                              lufenuron, milbemycin oxime
46305                                                                                              lufenuron, milbemycin oxime
46308                                                                                              lufenuron, milbemycin oxime
46311                                                                                           polysulfated glycosaminoglycan
46312                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46313                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46314                                                                                                                  omega 3
46319                                                                                      ear cleaner (zymox), hydrocortisone
46320                                                                                                         milbemycin oxime
46324                                                                                                      ear cleaner (zymox)
46325                                                                                                         milbemycin oxime
46328                                                                                                               fluralaner
46345                                                                                             ivermectin, pyrantel pamoate
46350                                                                                           milbemycin oxime, praziquantel
46355                                                                                           milbemycin oxime, praziquantel
46358                                                                               dextromethorphan hydrobromide, guaifenesin
46360                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
46377                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
46379                                                                                               milbemycin oxime, spinosad
46399                                                                                               milbemycin oxime, spinosad
46406                                                                                                unspecified otic ear pack
46410                                                                                                               ivermectin
46411                                                                                                 imidacloprid, permethrin
46413                                                                                                 flumethrin, imidacloprid
46418                                                                                                 flumethrin, imidacloprid
46424                                                                                                 flumethrin, imidacloprid
46431                                                                                                 flumethrin, imidacloprid
46432                                                                                                                  omega 3
46435                                                                                             ivermectin, pyrantel pamoate
46436                                                                                                 flumethrin, imidacloprid
46474                                                                                                               ivermectin
46475                                                                                    dinotefuran, permethrin, pyriproxyfen
46476                                                                                                         milbemycin oxime
46478                                                                                             ivermectin, pyrantel pamoate
46479                                                                               ivermectin, praziquantel, pyrantel pamoate
46482                                                                                             ivermectin, pyrantel pamoate
46483                                                                                    dinotefuran, permethrin, pyriproxyfen
46486                                                                                                               afoxolaner
46487                                                                                             ivermectin, pyrantel pamoate
46488                                                                                                               ivermectin
46489                                                                                             ivermectin, pyrantel pamoate
46490                                                                                             ivermectin, pyrantel pamoate
46493                                                                                              lufenuron, milbemycin oxime
46494                                                                                           milbemycin oxime, praziquantel
46499                                                                                                         milbemycin oxime
46502                                                                                                                  omega 3
46504                                                                                                  chlorhexidine gluconate
46505                                                                               chloroxylenol, lactic acid, salicylic acid
46506                                                                           dexamethasone, neomycin sulfate, thiabendazole
46512                                                                                                               ivermectin
46517                                                                                                                probiotic
46521                                                                                        dexamethasone, miconazole nitrate
46524                                                                          betamethasone, clotrimazole, gentamicin sulfate
46526                                                                             dexamethasone, neomycin sulfate, polymyxin b
46527                                                                          betamethasone, clotrimazole, gentamicin sulfate
46528                                                                                                 fipronil, (s)-methoprene
46529                                                                                                               sucralfate
46530                                                                                                  ketoconazole, tris-edta
46532                                                                                                         milbemycin oxime
46533                                                                             dexamethasone, neomycin sulfate, polymyxin b
46534                                                                           dexamethasone, neomycin sulfate, thiabendazole
46544                                                                                                         milbemycin oxime
46547                                                                                                 fipronil, (s)-methoprene
46551                                                                          betamethasone, clotrimazole, gentamicin sulfate
46553                                                                             florfenicol, mometasone furoate, terbinafine
46555                                                                                                                pramoxine
46568                                                                                             ivermectin, pyrantel pamoate
46569                                                                                               imidacloprid, pyriproxyfen
46570                                                                                 febantel, praziquantel, pyrantel pamoate
46571                                                                                               imidacloprid, pyriproxyfen
46572                                                                                             ivermectin, pyrantel pamoate
46573                                                                                             ivermectin, pyrantel pamoate
46574                                                                                               imidacloprid, pyriproxyfen
46575                                                                                             ivermectin, pyrantel pamoate
46579                                                                                                 imidacloprid, permethrin
46588                                                                                                               selamectin
46590                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46591                                                                                             ivermectin, pyrantel pamoate
46593                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46606                    dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
46607                                                                                                               gabapentin
46615                                                                                                               fluralaner
46616                                                                                              lufenuron, milbemycin oxime
46617                                                                                              lufenuron, milbemycin oxime
46618                                                                                              lufenuron, milbemycin oxime
46664                                                                                  betamethasone, florfenicol, terbinafine
46665                                                                                                               afoxolaner
46676                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
46680                                                                                               imidacloprid, pyriproxyfen
46687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46690                                                                                        betamethasone, gentamicin sulfate
46694                                                                                                               selamectin
46702                                                                                        betamethasone, gentamicin sulfate
46703                                                                                       chlorhexidine gluconate, ophytrium
46716                                                                                               milbemycin oxime, spinosad
46717                                                                                               milbemycin oxime, spinosad
46718                                                                                                              oclacitinib
46729                                                                                             ivermectin, pyrantel pamoate
46730                                                                                             ivermectin, pyrantel pamoate
46732                                                                                      allergy immunotherapy - unspecified
46737                                                                                                       calming supplement
46747                                                                                                                ophytrium
46753                                                                                        betamethasone, gentamicin sulfate
46762                                                                                        dexamethasone, miconazole nitrate
46763                                                                                                                carprofen
46766                                                                                                                deracoxib
46767                                                                                              lufenuron, milbemycin oxime
46771                                                                                       amoxicillin, clavulanate potassium
46775                                                                                             ivermectin, pyrantel pamoate
46776                                                                                                               afoxolaner
46777                                                                                           praziquantel, pyrantel pamoate
46781                                                                                             ivermectin, pyrantel pamoate
46782                                                                                                               afoxolaner
46783                                                                                                         phytosphingosine
46784                                                                                             ivermectin, pyrantel pamoate
46785                                                                                                               afoxolaner
46786                                                                                             ivermectin, pyrantel pamoate
46788                                                                                             ivermectin, pyrantel pamoate
46789                                                                                                               afoxolaner
46804                                                                                             ivermectin, pyrantel pamoate
46811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46812                                                                                             ivermectin, pyrantel pamoate
46816                                                                                             ivermectin, pyrantel pamoate
46818                                                                                                               prednisone
46826                                                                                                        potassium bromide
46827                                                                             dexamethasone, neomycin sulfate, polymyxin b
46835                                                                                                            levothyroxine
46836                                                                                                            levothyroxine
46849                                                                                             ivermectin, pyrantel pamoate
46853                                                                                             ivermectin, pyrantel pamoate
46867                                                                                                         sulfadimethoxine
46874                                                                                             oxytetracycline, polymyxin b
46880                                                                                                            oxymetazoline
46881                                                                                lufenuron, milbemycin oxime, praziquantel
46883                                                                                                         milbemycin oxime
46884                                                                                                         milbemycin oxime
46885                                                                                                                lotilaner
46889                                                                                           sulfamethoxazole, trimethoprim
46891                                                                                           sulfamethoxazole, trimethoprim
46902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46903                                                                                               imidacloprid, pyriproxyfen
46904                                                                                             ivermectin, pyrantel pamoate
46905                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46908                                                                                        betamethasone, gentamicin sulfate
46915                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
46931                                                                                                                probiotic
46938                                                                                                                probiotic
46944                                                                                                                probiotic
46961                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46962                                          carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
46972                                                                                             ivermectin, pyrantel pamoate
46973                                                                                             ivermectin, pyrantel pamoate
46976                                                                                             ivermectin, pyrantel pamoate
46977                                                                                                 fipronil, (s)-methoprene
46978                                                                             dexamethasone, neomycin sulfate, polymyxin b
46979                                                                                             ivermectin, pyrantel pamoate
46980                                                                                             ivermectin, pyrantel pamoate
46981                                                                          betamethasone, clotrimazole, gentamicin sulfate
46982                                                                                                  ketoconazole, tris-edta
46983                                                                                                 fipronil, (s)-methoprene
46984                                                                                                 fipronil, (s)-methoprene
46985                                                                                             ivermectin, pyrantel pamoate
46986                                                                                             ivermectin, pyrantel pamoate
47000                                                                                                                sarolaner
47004                                                                                              lufenuron, milbemycin oxime
47010                                                                                              lufenuron, milbemycin oxime
47011                                                                                                               afoxolaner
47018                                                                                                         milbemycin oxime
47024                                                                                                         milbemycin oxime
47025                                                                                                                sarolaner
47040                                                                                              lufenuron, milbemycin oxime
47041                                                                                              lufenuron, milbemycin oxime
47042                                                                                                            metronidazole
47043                                                                                              lufenuron, milbemycin oxime
47045                                                                                                       maropitant citrate
47049                                                                                                               selamectin
47050                                                                                                            metronidazole
47055                                                                                                               ivermectin
47060                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47065                                                                                                       maropitant citrate
47069                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47076                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
47080                                                                                                                  omega 3
47081                                                                                                immune support supplement
47085                                                                                             ivermectin, pyrantel pamoate
47086                                                                                                               afoxolaner
47090                                                                                        betamethasone, gentamicin sulfate
47095                                                                                               milbemycin oxime, spinosad
47096                                                                                             ivermectin, pyrantel pamoate
47097                                                                                                               afoxolaner
47098                                                               benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
47104                                                                          betamethasone, clotrimazole, gentamicin sulfate
47105                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47106                                                                                    dinotefuran, permethrin, pyriproxyfen
47108                                                                                    dinotefuran, permethrin, pyriproxyfen
47123                                                                               ivermectin, praziquantel, pyrantel pamoate
47125                                                                                             ivermectin, pyrantel pamoate
47126                                                                                                               fluralaner
47128                                                                                        trimeprazine tartrate, prednisone
47137                                                                           mometasone furoate, orbifloxacin, posaconazole
47140                                                                                                               selamectin
47143                                                                                                               selamectin
47146                                                                                                               selamectin
47152                                                                          betamethasone, clotrimazole, gentamicin sulfate
47154                                                                                             ivermectin, pyrantel pamoate
47155                                                                                             ivermectin, pyrantel pamoate
47156                                                                                                               fluralaner
47162                                                                                                               indoxacarb
47164                                                                                                               indoxacarb
47178                                                                                             ivermectin, pyrantel pamoate
47180                                                                          betamethasone, clotrimazole, gentamicin sulfate
47181                                                                             florfenicol, mometasone furoate, terbinafine
47183                                                                                                               fluralaner
47184                                                                                              lufenuron, milbemycin oxime
47185                                                                                              lufenuron, milbemycin oxime
47186                                                                                              lufenuron, milbemycin oxime
47187                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47193                                                                                             ivermectin, pyrantel pamoate
47194                                                                                                 fipronil, (s)-methoprene
47196                                                                                                 fipronil, (s)-methoprene
47197                                                                                             ivermectin, pyrantel pamoate
47204                                                                                                   unspecified medication
47208                                                                                                            yunnan baiyao
47209                                                                                              lufenuron, milbemycin oxime
47210                                                                                                         milbemycin oxime
47220                                                                                                 flumethrin, imidacloprid
47221                                                                                                     cefpodoxime proxetil
47222                                                                                        betamethasone, gentamicin sulfate
47240                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47248                                                                                                         pyrantel pamoate
47251                                                                                                             fenbendazole
47253                                                                                                         milbemycin oxime
47260                                                                                                         milbemycin oxime
47266                                                                                       amoxicillin, clavulanate potassium
47302                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47305                                                                                                            metronidazole
47323                                                                                                         milbemycin oxime
47325                                                                                           milbemycin oxime, praziquantel
47334                                                                                           milbemycin oxime, praziquantel
47343                                                                                                         milbemycin oxime
47345                                                                                           milbemycin oxime, praziquantel
47350                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47355                                                                                                      silver sulfadiazine
47360                                                                                                                probiotic
47390                                                                                             ivermectin, pyrantel pamoate
47407                                                                                                               prednisone
47409                                                                                                         milbemycin oxime
47411                                                                                                               afoxolaner
47412                                                                                           milbemycin oxime, praziquantel
47415                                                                                                                sarolaner
47416                                                                                                         milbemycin oxime
47417                                                                                                                sarolaner
47420                                                                                                         milbemycin oxime
47421                                                                                                                sarolaner
47433                                                                                             ivermectin, pyrantel pamoate
47439                                                                                        trimeprazine tartrate, prednisone
47451                                                                                             ivermectin, pyrantel pamoate
47478                                                                                lufenuron, milbemycin oxime, praziquantel
47479                                                                                              lufenuron, milbemycin oxime
47481                                                                                                         pyrantel pamoate
47483                                                                                          ear cleaner (epi-otic advanced)
47484                                                                                                 flumethrin, imidacloprid
47486                                                                                                 flumethrin, imidacloprid
47490                                                                                             ivermectin, pyrantel pamoate
47493                                                                                                 flumethrin, imidacloprid
47496                                                                                                   unspecified medication
47497                                                                                                               ivermectin
47498                                                                                                 flumethrin, imidacloprid
47513                                                                           mometasone furoate, orbifloxacin, posaconazole
47515                                                                                             ivermectin, pyrantel pamoate
47517                                                                                             ivermectin, pyrantel pamoate
47524                                                                                             ivermectin, pyrantel pamoate
47539                                                                                                 imidacloprid, permethrin
47540                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47544                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47547                                                                                              betamethasone, enrofloxacin
47557                                                                                                 flumethrin, imidacloprid
47559                                                                                                     prednisolone acetate
47561                                                                                                               sucralfate
47562                                                                                                         milbemycin oxime
47563                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47576                                                                                    dinotefuran, permethrin, pyriproxyfen
47577                                                                                             ivermectin, pyrantel pamoate
47578                                                                                             ivermectin, pyrantel pamoate
47580                                                                                                                meloxicam
47586                                                                                             ivermectin, pyrantel pamoate
47587                                                                                    dinotefuran, permethrin, pyriproxyfen
47588                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
47589                                                                                                         milbemycin oxime
47590                                                                                    dinotefuran, permethrin, pyriproxyfen
47592                                                                                                         milbemycin oxime
47593                                                                                    dinotefuran, permethrin, pyriproxyfen
47594                                                                                                               ivermectin
47595                                                                                    dinotefuran, permethrin, pyriproxyfen
47597                                                                                                 imidacloprid, moxidectin
47600                                                                                                 imidacloprid, moxidectin
47628                                                                                                 fipronil, (s)-methoprene
47629                                                                                             ivermectin, pyrantel pamoate
47630                                                                                               imidacloprid, pyriproxyfen
47635                                                                                                 imidacloprid, permethrin
47636                                                                                                               ivermectin
47658                                                                             florfenicol, mometasone furoate, terbinafine
47681                                                                                             ivermectin, pyrantel pamoate
47682                                                                                                               afoxolaner
47684                                                                                        betamethasone, gentamicin sulfate
47693                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47694                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47696                                                                                             ivermectin, pyrantel pamoate
47698                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47699                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47702                                                                                                       miconazole nitrate
47706                                                                                               milbemycin oxime, spinosad
47715                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47716                                                                                                  ketoconazole, tris-edta
47720                                                                                                  ketoconazole, tris-edta
47721                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47733                                                                                               milbemycin oxime, spinosad
47734                                                                             dexamethasone, neomycin sulfate, polymyxin b
47739                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47743                                                                                              lufenuron, milbemycin oxime
47744                                                                                              lufenuron, milbemycin oxime
47745                                                                                              lufenuron, milbemycin oxime
47746                                                                                              lufenuron, milbemycin oxime
47752                                                                             florfenicol, mometasone furoate, terbinafine
47755                                                                                                 fipronil, (s)-methoprene
47760                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47800                                                                                             ivermectin, pyrantel pamoate
47801                                                                                                 fipronil, (s)-methoprene
47802                                                                                             ivermectin, pyrantel pamoate
47803                                                                                                 fipronil, (s)-methoprene
47808                                                                                             ivermectin, pyrantel pamoate
47810                                                                                                               afoxolaner
47811                                                                                             ivermectin, pyrantel pamoate
47812                                                                                                               afoxolaner
47815                                                                                             ivermectin, pyrantel pamoate
47816                                                                                                               afoxolaner
47817                                                                               clinical trial - cancer prevention vaccine
47825                                                                                                            yunnan baiyao
47835                                                                                lufenuron, milbemycin oxime, praziquantel
47836                                                                                lufenuron, milbemycin oxime, praziquantel
47840                                                                                lufenuron, milbemycin oxime, praziquantel
47847                                                                                                         tylosin tartrate
47860                                                                                                               fluralaner
47861                                                                                                    clorsulon, ivermectin
47862                                                                                                    clorsulon, ivermectin
47863                                                                                                               fluralaner
47867                                                                                                                carprofen
47877                                                                                                  triamcinolone acetonide
47887                                                                                                               fluralaner
47888                                                                                             ivermectin, pyrantel pamoate
47889                                                                                                                  omega 3
47890                                                                                       joint supplement (glucosamine hcl)
47891                                                                                                                probiotic
47892                                                                                                                carprofen
47894                                                                                        trimeprazine tartrate, prednisone
47900                                                                                        betamethasone, gentamicin sulfate
47909                                                                                             ivermectin, pyrantel pamoate
47910                                                                             florfenicol, mometasone furoate, terbinafine
47917                                                                                                              doxycycline
47928                                                                                                                 tramadol
47949                                                                                                               fluralaner
47951                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47952                                                                                                     cefpodoxime proxetil
47953                                                                                        betamethasone, gentamicin sulfate
47969                                                                                lufenuron, milbemycin oxime, praziquantel
47970                                                                                                               afoxolaner
47971                                                                                              lufenuron, milbemycin oxime
47975                                                                                lufenuron, milbemycin oxime, praziquantel
47976                                                                                              lufenuron, milbemycin oxime
47981                                                                                                         milbemycin oxime
47983                                                                                           milbemycin oxime, praziquantel
47984                                                                                       fipronil, permethrin, pyriproxyfen
47985                                                                                              lufenuron, milbemycin oxime
47989                                                                                              lufenuron, milbemycin oxime
47990                                                                                               imidacloprid, pyriproxyfen
47995                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47996                                                                                              lufenuron, milbemycin oxime
47997                                                                                                               afoxolaner
47998                                                                                                       maropitant citrate
47999                                                                                                       maropitant citrate
48000                                                                                                                carprofen
48001                                                                                                             enrofloxacin
48002                                                                                                         liver supplement
48003                                                                                                              ondansetron
48004                                                                                                            metronidazole
48005                                                                                                         cyclophosphamide
48006                                                                                                              doxorubicin
48007                                                                                                                  sotalol
48008                                                                                                                  sotalol
48013                                                                                                               afoxolaner
48014                                                                                                               afoxolaner
48016                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
48020                                                                                             ivermectin, pyrantel pamoate
48021                                                                                                               afoxolaner
48028                                                                                             ivermectin, pyrantel pamoate
48029                                                                                                               afoxolaner
48030                                                                                                             multivitamin
48031                                                                                                                  omega 3
48032                                                                                                                vitamin c
48033                                                                                   joint supplement (glucosamine hcl/msm)
48034                                                                                                     digestive supplement
48035                                                                                                                probiotic
48040                                                                                             ivermectin, pyrantel pamoate
48041                                                                                                               afoxolaner
48046                                                                                             ivermectin, pyrantel pamoate
48047                                                                                                               afoxolaner
48048                                                                                                             multivitamin
48049                                                                                                                  omega 3
48069                                                                                                         tylosin tartrate
48072                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48087                                                                                             ivermectin, pyrantel pamoate
48088                                                                                                               fluralaner
48089                                                                                                                probiotic
48090                                                                                                                  omega 3
48094                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
48100                                                                             dexamethasone, neomycin sulfate, polymyxin b
48101                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48102                                                                                             ivermectin, pyrantel pamoate
48103                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48105                                                                                             ivermectin, pyrantel pamoate
48106                                                                                                 flumethrin, imidacloprid
48107                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
48108                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48109                                                                                           milbemycin oxime, praziquantel
48110                                                                                                 flumethrin, imidacloprid
48114                                                                                      ear cleaner (zymox), hydrocortisone
48120                                                                                              lufenuron, milbemycin oxime
48121                                                                                               imidacloprid, pyriproxyfen
48127                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48128                                                                                                              hydroxyzine
48129                                                                                                              oclacitinib
48131                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48132                                                                                              lufenuron, milbemycin oxime
48133                                                                                                               fluralaner
48142                                                                                              lufenuron, milbemycin oxime
48143                                                                                               imidacloprid, pyriproxyfen
48147                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48148                                                                                              lufenuron, milbemycin oxime
48151                                                                                              lufenuron, milbemycin oxime
48152                                                                                                               fluralaner
48154                                                                                               milbemycin oxime, spinosad
48155                                                                                              lufenuron, milbemycin oxime
48157                                                                                             ivermectin, pyrantel pamoate
48158                                                                                                               fluralaner
48159                                                                                             ivermectin, pyrantel pamoate
48160                                                                                                               fluralaner
48161                                                                                                               cephalexin
48162                                                                                                                carprofen
48163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48167                                                                                                               ivermectin
48169                                                                                                                trazodone
48170                                                                                                                trazodone
48171                                                                                                                trazodone
48178                                                                          betamethasone, clotrimazole, gentamicin sulfate
48182                                                                                             ivermectin, pyrantel pamoate
48185                                                                                                         sulfadimethoxine
48188                                                                          betamethasone, clotrimazole, gentamicin sulfate
48201                                                                          betamethasone, clotrimazole, gentamicin sulfate
48213                                                                                                         phytosphingosine
48214                                                                                                               afoxolaner
48215                                                                                             ivermectin, pyrantel pamoate
48217                                                                                             ivermectin, pyrantel pamoate
48218                                                                                                                sarolaner
48220                                                                                                               ampicillin
48221                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48222                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48223                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48231                                                                                              lufenuron, milbemycin oxime
48237                                                                             dexamethasone, neomycin sulfate, polymyxin b
48238                                                                                              lufenuron, milbemycin oxime
48240                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48248                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48251                                                                                                         milbemycin oxime
48252                                                                                                               afoxolaner
48258                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48265                                                                          betamethasone, clotrimazole, gentamicin sulfate
48266                                                                                                      sodium hypochlorite
48267                                                                          betamethasone, clotrimazole, gentamicin sulfate
48271                                                                                              lufenuron, milbemycin oxime
48274                                                                                                 imidacloprid, permethrin
48277                                                                                                 fipronil, (s)-methoprene
48285                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48287                                                                                                          interferon alfa
48288                                                                                      ear cleaner (zymox), hydrocortisone
48289                                                                                             ivermectin, pyrantel pamoate
48290                                                                                                               afoxolaner
48291                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48292                                                                                             ivermectin, pyrantel pamoate
48294                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48297                                                                                             ivermectin, pyrantel pamoate
48298                                                                                                               afoxolaner
48299                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48300                                                                                             ivermectin, pyrantel pamoate
48306                                                                                              lufenuron, milbemycin oxime
48307                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48310                                                                                              lufenuron, milbemycin oxime
48311                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48312                                                                                                               cephalexin
48314                                                                                                              omega 3-6-9
48322                                                                                                                probiotic
48327                                                                                                 fipronil, (s)-methoprene
48328                                                                                lufenuron, milbemycin oxime, praziquantel
48334                                                                                                  triamcinolone acetonide
48336                                                                                        betamethasone, gentamicin sulfate
48337                                                                                                            dexamethasone
48338                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48339                                                                           dexamethasone, neomycin sulfate, thiabendazole
48342                                                                                                            dexamethasone
48343                                                                                        betamethasone, gentamicin sulfate
48344                                                                                              lufenuron, milbemycin oxime
48345                                                                             dexamethasone, neomycin sulfate, polymyxin b
48350                                                                                                                 ketamine
48351                                                                                                                 diazepam
48352                                                                                                             acepromazine
48353                                                                                                         atropine sulfate
48354                                                                                                            buprenorphine
48355                                                                                                               isoflurane
48374                                                                                                     prednisolone acetate
48376                                                                                                            dexamethasone
48377                                                                                                               famotidine
48378                                                                                                     prednisolone acetate
48380                                                                                             ivermectin, pyrantel pamoate
48381                                                                                                               afoxolaner
48383                                                                                                               afoxolaner
48384                                                                                             ivermectin, pyrantel pamoate
48394                                                                           mometasone furoate, orbifloxacin, posaconazole
48406                                                                                                                probiotic
48420                                                                                           sulfamethoxazole, trimethoprim
48438                                                                               ivermectin, praziquantel, pyrantel pamoate
48439                                                                                           milbemycin oxime, praziquantel
48440                                                                                                               fluralaner
48441                                                                                             ivermectin, pyrantel pamoate
48442                                                                                                               fluralaner
48444                                                                                             ivermectin, pyrantel pamoate
48447                                                                                             ivermectin, pyrantel pamoate
48448                                                                                                               afoxolaner
48481                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48483                                                                                                      silver sulfadiazine
48494                                                                                             ivermectin, pyrantel pamoate
48495                                                                                                               fluralaner
48496                                                                                                               fluralaner
48497                                                                                                          dexmedetomidine
48498                                                                                                         milbemycin oxime
48499                                                                                                          dexmedetomidine
48500                                                                                                         milbemycin oxime
48502                                                                                                            metronidazole
48503                                                                                                          dexmedetomidine
48504                                                                                                         milbemycin oxime
48505                                                                                                               fluralaner
48508                                                                                                                firocoxib
48513                                                                                              lufenuron, milbemycin oxime
48520                                                                                                   ear cleaner (otirinse)
48521                                                                          betamethasone, clotrimazole, gentamicin sulfate
48540                                                                                              lufenuron, milbemycin oxime
48541                                                                                              lufenuron, milbemycin oxime
48542                                                                                                               fluralaner
48560                                                                                  betamethasone, florfenicol, terbinafine
48598                                                                                              lufenuron, milbemycin oxime
48602                                                                                                     prednisolone acetate
48609                                                                                                               afoxolaner
48610                                                                                                               ivermectin
48611                                                                                             ivermectin, pyrantel pamoate
48615                                                                                             ivermectin, pyrantel pamoate
48621                                                                                        betamethasone, gentamicin sulfate
48624                                                                                        betamethasone, gentamicin sulfate
48633                                                                                        betamethasone, gentamicin sulfate
48636                                                                                                                mupirocin
48643                                                                                              lufenuron, milbemycin oxime
48661                                                                                                               ivermectin
48662                                                                                                 fipronil, (s)-methoprene
48664                                                                                             ivermectin, pyrantel pamoate
48667                                                                                             ivermectin, pyrantel pamoate
48668                                                                                                 fipronil, (s)-methoprene
48673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48680                                                                                                               afoxolaner
48683                                                                                                 imidacloprid, permethrin
48684                                                                                             ivermectin, pyrantel pamoate
48692                                                                                                     cefpodoxime proxetil
48693                                                                                                                carprofen
48694                                                                           dexamethasone, neomycin sulfate, thiabendazole
48696                                                                                             ivermectin, pyrantel pamoate
48697                                                                                                               afoxolaner
48698                                                                                                 fipronil, (s)-methoprene
48712                                                                                             ivermectin, pyrantel pamoate
48713                                                                                                               afoxolaner
48718                                                                               ivermectin, praziquantel, pyrantel pamoate
48719                                                                             dexamethasone, neomycin sulfate, polymyxin b
48720                                                                                                         milbemycin oxime
48721                                                                                                         milbemycin oxime
48722                                                                                                 flumethrin, imidacloprid
48724                                                                                           milbemycin oxime, praziquantel
48725                                                                                                 flumethrin, imidacloprid
48729                                                                                           milbemycin oxime, praziquantel
48733                                                                                                               fluralaner
48734                                                                                           milbemycin oxime, praziquantel
48735                                                                                                               afoxolaner
48736                                                                                                 flumethrin, imidacloprid
48770                                                                             dexamethasone, neomycin sulfate, polymyxin b
48782                                                                                                 flumethrin, imidacloprid
48802                                                                             dexamethasone, neomycin sulfate, polymyxin b
48806                                                                          betamethasone, clotrimazole, gentamicin sulfate
48808                                                                          betamethasone, clotrimazole, gentamicin sulfate
48812                                                                                                 fipronil, (s)-methoprene
48819                                                                                              lufenuron, milbemycin oxime
48821                                                                                              lufenuron, milbemycin oxime
48835                                                                           dexamethasone, neomycin sulfate, thiabendazole
48842                                                                                                               cephalexin
48845                                                                                             ivermectin, pyrantel pamoate
48855                                                                                               milbemycin oxime, spinosad
48859                                                                                          atropine sulfate, diphenoxylate
48862                                                                               dextromethorphan hydrobromide, guaifenesin
48869                                                                                                               fluoxetine
48877                                                                                                                carprofen
48889                                                                                                                probiotic
48890                                                                                             ivermectin, pyrantel pamoate
48891                                                                                                               fluralaner
48892                                                                          betamethasone, clotrimazole, gentamicin sulfate
48893                                                                             dexamethasone, neomycin sulfate, polymyxin b
48894                                                                                           milbemycin oxime, praziquantel
48902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48906                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48917                                                                                                               ivermectin
48918                                                                                                 fipronil, (s)-methoprene
48921                                                                                        betamethasone, gentamicin sulfate
48935                                                                                                               ivermectin
48938                                                                                             ivermectin, pyrantel pamoate
48946                                                                                 febantel, praziquantel, pyrantel pamoate
48971                                                                                             ivermectin, pyrantel pamoate
48994                                                                                                 imidacloprid, moxidectin
48997                                                                                                 joint supplement (other)
49002                                                                                             ivermectin, pyrantel pamoate
49005                                                                                        betamethasone, gentamicin sulfate
49012                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
49015                                                                                                 fipronil, (s)-methoprene
49016                                                                                   cyphenothrin, fipronil, (s)-methoprene
49017                                                                                             ivermectin, pyrantel pamoate
49018                                                                                                               nitenpyram
49019                                                                                                               cephalexin
49025                                                                                             ivermectin, pyrantel pamoate
49026                                                                                   fipronil, pyriproxyfen, (s)-methoprene
49027                                                                                        betamethasone, gentamicin sulfate
49028                                                                                                       methylprednisolone
49030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49033                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49034                                                                                             ivermectin, pyrantel pamoate
49035                                                                                                               fluralaner
49036                                                                                                                  omega 3
49042                                                                                    chlorhexidine gluconate, ketoconazole
49044                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
49046                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49051                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49052                                                                             dexamethasone, neomycin sulfate, polymyxin b
49082                                                                                             ivermectin, pyrantel pamoate
49084                                                                                             ivermectin, pyrantel pamoate
49096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49105                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49114                                                                               ivermectin, praziquantel, pyrantel pamoate
49117                                                                                             ivermectin, pyrantel pamoate
49120                                                                                           sulfamethoxazole, trimethoprim
49123                                                                                               milbemycin oxime, spinosad
49127                                                                              mebendazole, praziquantel, pyrantel pamoate
49128                                                                                                               ivermectin
49129                                                                                                               afoxolaner
49130                                                                           beclomethasone, clotrimazole, neomycin sulfate
49163                                                                                        allergy immunotherapy - injection
49164                                                                                             ivermectin, pyrantel pamoate
49167                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49168                                                                                                   unspecified medication
49169                                                                                             ivermectin, pyrantel pamoate
49170                                                                                                 flumethrin, imidacloprid
49184                                                                                                                 fipronil
49185                                                                                             ivermectin, pyrantel pamoate
49186                                                                                             ivermectin, pyrantel pamoate
49193                                                                                                         liver supplement
49196                                                                                 febantel, praziquantel, pyrantel pamoate
49208                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49209                                                                                                          cbd or hemp oil
49216                                                                                               milbemycin oxime, spinosad
49217                                                                                               milbemycin oxime, spinosad
49218                                                                                               milbemycin oxime, spinosad
49219                                                                                               milbemycin oxime, spinosad
49220                                                                                               milbemycin oxime, spinosad
49227                                                                                                               benzocaine
49229                                                                                                               benzocaine
49231                                                                                         burow's solution, hydrocortisone
49232                                                                             dexamethasone, neomycin sulfate, polymyxin b
49248                                                                               ivermectin, praziquantel, pyrantel pamoate
49252                                                                                              lufenuron, milbemycin oxime
49253                                                                                                                sarolaner
49304                                                                          betamethasone, clotrimazole, gentamicin sulfate
49314                                                                                                                midazolam
49316                                                                                             ivermectin, pyrantel pamoate
49323                                                                                                 fipronil, (s)-methoprene
49324                                                                                             ivermectin, pyrantel pamoate
49343                                                                                              lufenuron, milbemycin oxime
49345                                                                                        betamethasone, gentamicin sulfate
49346                                                                                              lufenuron, milbemycin oxime
49348                                                                                              lufenuron, milbemycin oxime
49350                                                                                              lufenuron, milbemycin oxime
49351                                                                                                               afoxolaner
49352                                                                                              lufenuron, milbemycin oxime
49371                                                                                                     natural wart remover
49372                                                                                             ivermectin, pyrantel pamoate
49375                                                                                                                deracoxib
49376                                                                                              lufenuron, milbemycin oxime
49377                                                                                                 fipronil, (s)-methoprene
49378                                                                                              lufenuron, milbemycin oxime
49379                                                                                               imidacloprid, pyriproxyfen
49388                                                                                              lufenuron, milbemycin oxime
49393                                                                             florfenicol, mometasone furoate, terbinafine
49394                                                                             florfenicol, mometasone furoate, terbinafine
49395                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
49398                                                                                                    gabapentin, trazodone
49401                                                                                           milbemycin oxime, praziquantel
49403                                                                                           milbemycin oxime, praziquantel
49404                                                                                                               fluralaner
49408                                                                                             ivermectin, pyrantel pamoate
49409                                                                                                               afoxolaner
49410                                                                                                                meloxicam
49437                                                                                                               afoxolaner
49438                                                                                             ivermectin, pyrantel pamoate
49442                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49460                                                                                    dinotefuran, permethrin, pyriproxyfen
49461                                                                                             ivermectin, pyrantel pamoate
49462                                                                                   joint supplement (glucosamine hcl/msm)
49463                                                                                             ivermectin, pyrantel pamoate
49473                                                                                                         milbemycin oxime
49509                                                                                               imidacloprid, pyriproxyfen
49510                                                                                             ivermectin, pyrantel pamoate
49518                                                                                             ivermectin, pyrantel pamoate
49520                                                                             florfenicol, mometasone furoate, terbinafine
49523                                                                                             ivermectin, pyrantel pamoate
49524                                                                                                               afoxolaner
49525                                                                                        betamethasone, gentamicin sulfate
49526                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49531                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49549                                                                                             ivermectin, pyrantel pamoate
49550                                                                                                               afoxolaner
49553                                                                                             ivermectin, pyrantel pamoate
49554                                                                                                               afoxolaner
49567                                                                                             ivermectin, pyrantel pamoate
49568                                                                                                               isoflurane
49569                                                                                             ivermectin, pyrantel pamoate
49572                                                                                             ivermectin, pyrantel pamoate
49588                                                                                             ivermectin, pyrantel pamoate
49589                                                                                                               ivermectin
49590                                                                                               imidacloprid, pyriproxyfen
49591                                                                                             ivermectin, pyrantel pamoate
49592                                                                                   joint supplement (glucosamine hcl/msm)
49593                                                                                              lufenuron, milbemycin oxime
49596                                                                                                               selamectin
49601                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49604                                                                                                               cephalexin
49605                                                                                   joint supplement (glucosamine hcl/msm)
49606                                                                                                            ciprofloxacin
49607                                                                                               milbemycin oxime, spinosad
49608                                                                                   joint supplement (glucosamine hcl/msm)
49640                                                                                             ivermectin, pyrantel pamoate
49645                                                                                             ivermectin, pyrantel pamoate
49649                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49654                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49659                                                                             dexamethasone, neomycin sulfate, polymyxin b
49680                                                                                                        potassium bromide
49698                                                                                               milbemycin oxime, spinosad
49699                                                                                               imidacloprid, pyriproxyfen
49705                                                                              joint supplement (glucosamine hcl), omega 3
49714                                                                                             ivermectin, pyrantel pamoate
49715                                                                             florfenicol, mometasone furoate, terbinafine
49731                                                                                             ivermectin, pyrantel pamoate
49748                                                                                                 imidacloprid, permethrin
49753                                                                                               imidacloprid, pyriproxyfen
49754                                                                                                 fipronil, (s)-methoprene
49755                                                                                                         milbemycin oxime
49756                                                                                                 fipronil, (s)-methoprene
49757                                                                                                         milbemycin oxime
49758                                                                                                         milbemycin oxime
49764                                                                                        enrofloxacin, silver sulfadiazine
49765                                                                                                             enrofloxacin
49766                                                                                                  chlorhexidine gluconate
49767                                                                                                 fipronil, (s)-methoprene
49768                                                                                                               ivermectin
49769                                                                                                  chlorhexidine gluconate
49773                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
49783                                                                                                                carprofen
49792                                                                                             ivermectin, pyrantel pamoate
49793                                                                                                               afoxolaner
49799                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49812                                                                             florfenicol, mometasone furoate, terbinafine
49820                                                                                             ivermectin, pyrantel pamoate
49821                                                                                                               afoxolaner
49845                                                                                                             enrofloxacin
49846                                                                                       amoxicillin, clavulanate potassium
49848                                                                                                               cephalexin
49849                                                                                    dinotefuran, permethrin, pyriproxyfen
49852                                                                                                                probiotic
49854                                                                                    dinotefuran, permethrin, pyriproxyfen
49855                                                                                                                probiotic
49856                                                                                                                meloxicam
49857                                                                                    dinotefuran, permethrin, pyriproxyfen
49861                                                                                    dinotefuran, permethrin, pyriproxyfen
49862                                                                                    dinotefuran, permethrin, pyriproxyfen
49871                                                                                                             fenbendazole
49878                                                                                                               ivermectin
49883                                                                                                                probiotic
49886                                                                                             ivermectin, pyrantel pamoate
49889                                                                                             ivermectin, pyrantel pamoate
49890                                                                                    dinotefuran, permethrin, pyriproxyfen
49898                                                                                                             fenbendazole
49905                                                                                                               ivermectin
49906                                                                                                  acetic acid, boric acid
49907                                                                                           milbemycin oxime, praziquantel
49908                                                                                             ivermectin, pyrantel pamoate
49911                                                                                             ivermectin, pyrantel pamoate
49912                                                                                    dinotefuran, permethrin, pyriproxyfen
49923                                                                                                            levetiracetam
49924                                                                                                            levetiracetam
49925                                                                                                        potassium bromide
49928                                                                                                            levetiracetam
49929                                                                                                        potassium bromide
49963                                                                                             ivermectin, pyrantel pamoate
49966                                                                             dexamethasone, neomycin sulfate, polymyxin b
49978                                                                                              lufenuron, milbemycin oxime
49980                                                                                                                carprofen
49985                                                                                              lufenuron, milbemycin oxime
49986                                                                                                 fipronil, (s)-methoprene
49987                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49990                                                                                                                probiotic
49991                                                                                              lufenuron, milbemycin oxime
49992                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49994                                                                                                                midazolam
49995                                                                                                                methadone
49996                                                                                                                 propofol
49997                                                                                       amoxicillin, clavulanate potassium
49998                                                                                                                 tramadol
49999                                                                                                                carprofen
50000                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50001                                                                                              lufenuron, milbemycin oxime
50002                                                                                                                  omega 3
50004                                                                                              lufenuron, milbemycin oxime
50006                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50007                                                                                                                  omega 3
50008                                                                                              lufenuron, milbemycin oxime
50009                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50011                                                                                                 fipronil, (s)-methoprene
50012                                                                                                                  omega 3
50014                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50022                                                                                                                meloxicam
50029                                                                                              lufenuron, milbemycin oxime
50030                                                                                                 fipronil, (s)-methoprene
50033                                                                                              lufenuron, milbemycin oxime
50034                                                                                                 fipronil, (s)-methoprene
50048                                                                                              lufenuron, milbemycin oxime
50050                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
50073                                                                             florfenicol, mometasone furoate, terbinafine
50076                                                                                                               fluralaner
50077                                                                                                               ivermectin
50107                                                                                             ivermectin, pyrantel pamoate
50108                                                                                                               fluralaner
50115                                                                                                               ivermectin
50116                                                                                                               afoxolaner
50117                                                                                             ivermectin, pyrantel pamoate
50118                                                                                                               ivermectin
50154                                                                                                         milbemycin oxime
50159                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
50161                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
50187                                                                                lufenuron, milbemycin oxime, praziquantel
50189                                                                                               imidacloprid, pyriproxyfen
50190                                                                                              lufenuron, milbemycin oxime
50194                                                                                              lufenuron, milbemycin oxime
50195                                                                                               imidacloprid, pyriproxyfen
50196                                                                                              lufenuron, milbemycin oxime
50198                                                                                              lufenuron, milbemycin oxime
50199                                                                                               imidacloprid, pyriproxyfen
                                                                                                       dose
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
248                                                                                                  1 tube
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
287                                                                                                  272 mg
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
372                                                                                                  136 mg
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
480                                                                                                  1 tube
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
635                                                                                                    3 mg
637                                                                                         based on weight
642                                                                                            small amount
645                                                                                                    3 mg
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
750                                                                                                  136 mg
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
757                                                                            based on weight (51-100 lbs)
760                                                                                                  1 drop
771                                                                                                   50 mg
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
863                                                                                                  200 mg
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
917                                                                                                  227 mg
918                                                                                                  250 mg
921                                                                            based on weight (51-100 lbs)
929                                                                                                  1 drop
930                                                                                                  1 drop
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
970                                                                                                  1 pump
977                                                                                             application
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1037                                                                                                 1 pump
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1131                                                                                                5 drops
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1274                                                                                                  23 mg
1285                                                                                            unspecified
1307                                                                                                 600 mg
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1348                                                                                               2 sprays
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1504                                                                                               0.25 tsp
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1690                                                                                                1 spray
1692                                                                                        moderate amount
1695                                                                                                 1 drop
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1861                                                                                                  75 mg
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2050                                                                           based on weight (51-100 lbs)
2072                                                                                                 500 mg
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2333                                                                                                 272 mg
2339                                                                                                 1 drop
2342                                                                                                 1 drop
2345                                                                                                272 mcg
2347                                                                                                272 mcg
2352                                                                                                272 mcg
2356                                                                                                272 mcg
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2409                                                                           based on weight (51-100 lbs)
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2450                                                                                                 150 mg
2453                                                                                                  60 mg
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2486                                                                                            as directed
2487                                                                                            as directed
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2599                                                                                            unspecified
2600                                                                                            unspecified
2627                                                                                                0.57 mg
2636                                                                                                  16 mg
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2699                                                                                               2 sprays
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2808                                                                                                1400 mg
2815                                                                                               300, 600
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2951                                                                                                 1 tube
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3092                                                                                                 100 mg
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3110                                                                                           small amount
3119                                                                                            as directed
3140                                                                                                2 pumps
3146                                                                                                  10 mg
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3212                                                                                                 1 pump
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3257                                                                           based on weight (50-100 lbs)
3261                                                                                                 500 mg
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3439                                                                                                 1 tube
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3465                                                                                                  50 mg
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3738                                                                                                1 mg/kg
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3804                                                                                                 200 mg
3815                                                                                        based on weight
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3903                                                                           based on weight (51-100 lbs)
3906                                                                           based on weight (51-100 lbs)
3911                                                                           based on weight (51-100 lbs)
3938                                                                           based on weight (51-100 lbs)
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3984                                                                           based on weight (51-100 lbs)
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4047                                                                                                  80 mg
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4204                                                                                                   1 ml
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4229                                                                                                15.7 ml
4234                                                                                                 100 mg
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4265                                                                                                 1 drop
4266                                                                                            as directed
4274                                                                                            unspecified
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4334                                                                                                   1 ml
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4341                                                                                                 100 mg
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4360                                                                                                1 spray
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4488                                                                                                   1 ml
4491                                                                                                   1 ml
4497                                                                           based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4611                                                                                               27, 1620
4617                                                                                             0.57 mg/ml
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4688                                                                                                 125 mg
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4700                                                                                                   5 mg
4703                                                                                                  23 mg
4705                                                                                                  23 mg
4711                                                                                                 1 drop
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4798                                                                                                  20 mg
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4850                                                                                                 1 drop
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4908                                                                                                272 mcg
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4996                                                                                            unspecified
4998                                                                                            unspecified
5040                                                                                                 136 mg
5043                                                                                                  spray
5046                                                                                                  spray
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5125                                                                                                   1 ml
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5165                                                                                                 100 mg
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5201                                                                                                  75 mg
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5469                                                                                                   2 ml
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5641                                                                                                 1.7 ml
5649                                                                                          5 billion cfu
5668                                                                                                272 mcg
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5737                                                                                                 750 mg
5747                                                                                        based on weight
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5774                                                                                                 750 mg
5777                                                                                            unspecified
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5930                                                                           based on weight (51-100 lbs)
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6074                                                                                                1 spray
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6090                                                                                        0.25 inch strip
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6152                                                                                                  23 mg
6161                                                                                                23, 460
6164                                                                                           small amount
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6215                                                                                                 1 pump
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6296                                                                                              0.125 tsp
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6358                                                                                            unspecified
6388                                                                                                 1 drop
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6399                                                                                                8 drops
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6739                                                                                                 125 mg
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6789                                                                                                272 mcg
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6839                                                                                                  75 mg
6864                                                                                                   1 ml
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6906                                                                                                272 mcg
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
6999                                                                                                 1 tube
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7013                                                                                                  20 mg
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7021                                                                            based on weight (44-88 lbs)
7023                                                                                                 1.6 ml
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7047                                                                                                 272 ug
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7240                                                                                                2 drops
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7291                                                                            based on weight (44-88 lbs)
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7787                                                                                                 1 tube
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7837                                                                                                 100 mg
7839                                                                                            application
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7941                                                                                                   1 ml
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8238                                                                                           small amount
8241                                                                                                  23 mg
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8337                                                                                            unspecified
8338                                                                                            unspecified
8341                                                                                                 1 drop
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8405                                                                                                 1 tube
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8454                                                                           based on weight (50-100 lbs)
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8541                                                                                                  spray
8546                                                                                                8 drops
8547                                                                                                 500 mg
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8694                                                                            based on weight (45-88 lbs)
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8721                                                                                                 200 mg
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8855                                                                                                272 mcg
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9049                                                                                                2 drops
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                           based on weight (51-100 lbs)
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9229                                                                                                  75 mg
9230                                                                                           small amount
9233                                                                                                 250 mg
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9312                                                                                                272 mcg
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9348                                                                                                 136 mg
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9390                                                                                                272 mcg
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9485                                                                                                 500 mg
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9635                                                                                               27, 1620
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9815                                                                                                  28 mg
9821                                                                                         1 pack/package
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9860                                                                                                  75 mg
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10056                                                                                               272 mcg
10057                                                                                                227 mg
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10123                                                                                                500 mg
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10149                                                                                              10 drops
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10160                                                                                                1.5 ml
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10271                                                                                                 23 mg
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10292                                                                                                 23 mg
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10343                                                                                                480 mg
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10432                                                                                                1 tube
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10650                                                                                                100 mg
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10658                                                                                                 50 mg
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10766                                                                                               272 mcg
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10905                                                                                           application
10925                                                                                                400 mg
10926                                                                                                  5 mg
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11052                                                                                                1 tube
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11085                                                                                           unspecified
11088                                                                                           unspecified
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11112                                                                                                200 mg
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11224                                                                                           unspecified
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11356                                                                                           unspecified
11360                                                                                           unspecified
11368                                                                          based on weight (50-100 lbs)
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11477                                                                          based on weight (51-100 lbs)
11482                                                                                            1.14 mg/lb
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11511                                                                                                125 mg
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11636                                                                                                100 mg
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11669                                                                                                0.5 mg
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11790                                                                                                 15 gm
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11856                                                                                               8 drops
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11926                                                                                               272 mcg
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12023                                                                                               5 mg/kg
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12190                                                                                                1 pump
12194                                                                                                272 ug
12213                                                                                               272 mcg
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12271                                                                           based on weight (45-88 lbs)
12273                                                                                          small amount
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12386                                                                                                1.4 ml
12394                                                                                           unspecified
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12402                                                                          based on weight (51-100 lbs)
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12567                                                                                               8 drops
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12784                                                                                        1 pack/package
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12833                                                                                                 27 mg
12836                                                                          based on weight (60-120 lbs)
12849                                                                                                 drops
12850                                                                                                 drops
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12874                                                                                                500 mg
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12945                                                                          based on weight (51-100 lbs)
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12959                                                                                               8 drops
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12979                                                                                               1 spray
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12996                                                                                                 16 mg
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13173                                                                                                1 drop
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13238                                                                                                500 mg
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13262                                                                                               272 mcg
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13318                                                                                               8 drops
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13487                                                                                                 20 mg
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13619                                                                                                100 mg
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13666                                                                                           application
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13693                                                                          based on weight (60-120 lbs)
13715                                                                                                750 mg
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13768                                                                                           application
13769                                                                                                 spray
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13786                                                                                                1 tube
13796                                                                                            1 wipe/pad
13803                                                                                                375 mg
13881                                                                                                  7 ml
13884                                                                                              2 sprays
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13908                                                                                             100 mg/ml
13910                                                                        based on weight (50.1-100 lbs)
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14072                                                                                               1500 mg
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14245                                                                           based on weight (22-44 lbs)
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14291                                                                                           unspecified
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14373                                                                                       based on weight
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14907                                                                                                 30 mg
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14969                                                                                             50 mcg/kg
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14999                                                                                             50 mcg/kg
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15092                                                                                                300 mg
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15137                                                                                              2 sprays
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15179                                                                           based on weight (25-75 lbs)
15184                                                                                                750 mg
15196                                                                                           application
15197                                                                                          small amount
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15252                                                                                               4 drops
15253                                                                                                227 mg
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15616                                                                                               272 mcg
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15776                                                                                                500 mg
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16553                                                                        based on weight (50.1-100 lbs)
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16639                                                                          based on weight (51-100 lbs)
16646                                                                                              10 drops
16657                                                                                             6-8 drops
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16689                                                                                             1.5 mg/ml
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16789                                                                                                1.1 ml
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16849                                                                                                1 pump
16860                                                                                                 80 mg
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16915                                                                                                100 mg
16916                                                                                                500 mg
16918                                                                                           unspecified
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17033                                                                                               272 mcg
17035                                                                                               272 mcg
17036                                                                                                136 mg
17042                                                                        based on weight (50.1-100 lbs)
17049                                                                                               272 mcg
17051                                                                                               1000 mg
17053                                                                                 1 tablet/pill/capsule
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17381                                                                                                 30 ml
17386                                                                                               272 mcg
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17440                                                                                                500 mg
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17633                                                                                               1.71 ml
17659                                                                          based on weight (50-100 lbs)
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17742                                                                                           application
17743                                                                                                1 drop
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17955                                                                                                 23 mg
17957                                                                                               4 drops
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18159                                                                                               6 drops
18164                                                                                               6 drops
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18249                                                                                                150 mg
18251                                                                                                powder
18252                                                                                                150 mg
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18464                                                                                                500 mg
18466                                                                                                1 drop
18467                                                                                               272 mcg
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18512                                                                                               272 mcg
18514                                                                           based on weight (21-55 lbs)
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18543                                                                                               6 drops
18562                                                                                                  1 ml
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18753                                                                                                 75 mg
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18821                                                                                               5 drops
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18847                                                                                       based on weight
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18882                                                                                           application
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18933                                                                                           unspecified
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19241                                                                                                300 mg
19242                                                                                                 75 mg
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19276                                                                                                1 tube
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19331                                                                                                500 mg
19335                                                                                                200 mg
19336                                                                                                100 mg
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19500                                                                                               0.57 mg
19537                                                                                       based on weight
19567                                                                                                150 mg
19568                                                                                                1 pump
19596                                                                          based on weight (51-100 lbs)
19603                                                                           based on weight (40-60 lbs)
19617                                                                                       2.68 ml of 9.8%
19641                                                                                           unspecified
19651                                                                                                1 drop
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19708                                                                                               272 mcg
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19856                                                                        based on weight (50.1-100 lbs)
19860                                                                                               1 mg/lb
19866                                                                                              2 sprays
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19969                                                                                               2 drops
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20001                                                                                                200 mg
20002                                                                                                500 mg
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20182                                                                                          small amount
20193                                                                                                500 mg
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20225                                                                                                200 mg
20231                                                                                                1 drop
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20251                                                                                          pack/package
20272                                                                                                1 tbsp
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20299                                                                                                1 tube
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20307                                                                                                 10 mg
20312                                                                                                2.3 mg
20315                                                                                           unspecified
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20406                                                                                                  3 ml
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20441                                                                                           application
20442                                                                                                600 mg
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20637                                                                                               272 mcg
20638                                                                                       2.68 ml of 9.8%
20640                                                                                               272 mcg
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20728                                                                                           unspecified
20738                                                                                              tapering
20745                                                                                                1 pump
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20750                                                                                               6 drops
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20820                                                                                               1200 mg
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20857                                                                                                136 mg
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20859                                                                                                136 mg
20860                                                                                                100 mg
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
20972                                                                                                 15 ml
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21017                                                                                               1 spray
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21069                                                                                               1000 mg
21070                                                                                               1000 mg
21071                                                                                                 23 mg
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21088                                                                                           unspecified
21102                                                                           based on weight (40-80 lbs)
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21116                                                                                                250 mg
21117                                                                                                200 mg
21118                                                                                                100 mg
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21124                                                                                               3 drops
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21132                                                                                                  3 ml
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21170                                                                                               272 mcg
21172                                                                                                 23 mg
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21192                                                                                                1 pump
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21328                                                                                                 50 mg
21331                                                                                           unspecified
21336                                                                                                960 mg
21337                                                                                               272 mcg
21338                                                                             based on weight (55+ lbs)
21348                                                                                                0.5 mg
21359                                                                                               23, 460
21361                                                                                               23, 460
21364                                                                                                750 mg
21367                                                                                                  2 ml
21369                                                                          based on weight (51-100 lbs)
21374                                                                                                500 mg
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21394                                                                                                272 mg
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21460                                                                                                 23 mg
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21491                                                                                                1 drop
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21498                                                                                                 90 mg
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21522                                                                                                1 tube
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21534                                                                                                1.5 ml
21535                                                                                                 16 mg
21545                                                                                 1 tablet/pill/capsule
21546                                                                                                1 tube
21547                                                                                                600 mg
21548                                                                                                500 mg
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21554                                                                                               2 mg/ml
21555                                                                                           unspecified
21558                                                                                               23, 460
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21587                                                                                               8 drops
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21603                                                                                               1000 mg
21604                                                                                                375 mg
21605                                                                             based on weight (55+ lbs)
21606                                                                                                 50 mg
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21632                                                                                           unspecified
21637                                                                                                1 drop
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21727                                                                                           unspecified
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21767                                                                                           unspecified
21782                                                                                               272 mcg
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21844                                                                                                272 mg
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21866                                                                                                  4 ml
21867                                                                                                136 mg
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21899                                                                                              50 mg/kg
21911                                                                                                 50 mg
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21915                                                                                                1 tube
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21927                                                                                                 20 mg
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22017                                                                                               272 mcg
22020                                                                                           as directed
22022                                                                                                  1 gm
22023                                                                          based on weight (51-100 lbs)
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22112                                                                                                 68 mg
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22162                                                                                                 75 mg
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22191                                                                                                1 tube
22196                                                                                          small amount
22197                                                                                                1 tube
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22269                                                                                               2000 mg
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22403                                                                                                 50 mg
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22459                                                                                           unspecified
22463                                                                                           unspecified
22482                                                                                                110 mg
22520                                                                                                  1 gm
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22556                                                                                                1 pump
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22599                                                                                                 25 mg
22600                                                                                                200 mg
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22670                                                                                                1 tube
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22709                                                                                                 15 gm
22710                                                                                                 60 ml
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22715                                                                                                 15 gm
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22721                                                                                                0.2 ml
22733                                                                                                collar
22734                                                                                                 23 mg
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22910                                                                                                136 mg
22911                                                                                                 20 mg
22912                                                                                                 20 mg
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22921                                                                                                500 mg
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23005                                                                                                1 drop
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23008                                                                                                1 drop
23009                                                                                                 12 ml
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23065                                                                                                 23 mg
23066                                                                          based on weight (51-100 lbs)
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23145                                                                                                100 mg
23146                                                                                                 16 mg
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23184                                                                                                 10 mg
23186                                                                                                  8 mg
23187                                                                                                 60 mg
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23248                                                                                               1000 mg
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23257                                                                                               1000 ml
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23281                                                                                                500 mg
23282                                                                                                 16 mg
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23285                                                                                                100 mg
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23305                                                                                                1 pump
23306                                                                                                1 pump
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23351                                                                                                 68 mg
23352                                                                                                 25 mg
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23354                                                                                                 15 mg
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23357                                                                                                 68 mg
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23361                                                                                                136 mg
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23385                                                                                                 23 mg
23386                                                                                                500 mg
23388                                                                          based on weight (51-100 lbs)
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23422                                                                                                1 tube
23423                                                                                                1 tube
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23452                                                                                              2 sprays
23455                                                                                                 75 mg
23456                                                                                                 spray
23457                                                                                                750 mg
23472                                                                           based on weight (21-55 lbs)
23482                                                                           based on weight (55-90 lbs)
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23507                                                                          based on weight (51-100 lbs)
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23548                                                                                                 23 mg
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23555                                                                                                0.3 mg
23557                                                                          based on weight (51-100 lbs)
23558                                                                                                0.7 mg
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23589                                                                                                1 tube
23590                                                                                           unspecified
23593                                                                                             0.6 mg/ml
23594                                                                                                300 mg
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23733                                                                                               5 drops
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23792                                                                                               272 mcg
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23825                                                                                                 10 mg
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
23989                                                                                               272 mcg
23990                                                                                                136 mg
24008                                                                                               272 mcg
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24044                                                                                               272 mcg
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24068                                                                                           unspecified
24069                                                                                             50 mcg/kg
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24113                                                                                                150 mg
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24146                                                                                                4.7 ml
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24201                                                                                               8 drops
24202                                                                                               8 drops
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24218                                                                                               272 mcg
24219                                                                                                136 mg
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24251                                                                                                1 drop
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24260                                                                                                100 mg
24261                                                                                 1 tablet/pill/capsule
24262                                                                                                1.4 ml
24263                                                                                                4.8 ml
24264                                                                                                500 mg
24265                                                                                 1 tablet/pill/capsule
24266                                                                                                 60 mg
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24325                                                                                                100 mg
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24379                                                                                                68 mcg
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24396                                                                                                500 mg
24397                                                                                                  1 gm
24399                                                                                                136 mg
24400                                                                          based on weight (50-100 lbs)
24401                                                                                                100 mg
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24404                                                                                                 25 mg
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24408                                                                                                 15 ml
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24418                                                                                                 10 mg
24419                                                                                                0.5 mg
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24427                                                                                                0.6 mg
24428                                                                                                 10 mg
24429                                                                                             0.125 tsp
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24434                                                                                                1 drop
24435                                                                          based on weight (50-100 lbs)
24436                                                                                                1 drop
24437                                                                          based on weight (60-120 lbs)
24438                                                                                                0.6 mg
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24461                                                                                             0.5 mg/kg
24462                                                                                               2 mg/kg
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24479                                                                                               5 drops
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24482                                                                                                136 mg
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24499                                                                                                 75 mg
24503                                                                                               2 drops
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24647                                                                                           unspecified
24648                                                                                           application
24651                                                                                                 50 mg
24652                                                                                                1 tube
24653                                                                                       moderate amount
24654                                                                                                1 tube
24660                                                                                       based on weight
24666                                                                                                 50 mg
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24776                                                                                               4 drops
24782                                                                                               4 drops
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24814                                                                                               272 mcg
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24826                                                                                               1000 mg
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24835                                                                                               272 mcg
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24880                                                                                               6 drops
24897                                                                                                200 mg
24898                                                                                                powder
24899                                                                                                 60 mg
24902                                                                          based on weight (51-100 lbs)
24903                                                                                                 60 mg
24904                                                                                                 16 mg
24907                                                                                                 16 mg
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24967                                                                                              2 sprays
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25003                                                                                                1 drop
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25040                                                                                                 23 mg
25041                                                                                               2.68 ml
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                                                               272 mcg
25079                                                                          based on weight (51-100 lbs)
25084                                                                                                325 mg
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25358                                                                                               8 drops
25359                                                                                                375 mg
25366                                                                                               8 drops
25367                                                                                           unspecified
25369                                                                                                  1 ml
25370                                                                                               6 drops
25372                                                                                                500 mg
25374                                                                                                500 mg
25377                                                                                                100 mg
25378                                                                                             0.125 tsp
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25501                                                                          based on weight (51-100 lbs)
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25517                                                                                             2.5 mg/kg
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25564                                                                                               272 mcg
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25579                                                                                                272 gm
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25590                                                                                               1000 mg
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25672                                                                                                0.5 ml
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25711                                                                                                1 tube
25725                                                                                              5 x 10^7
25726                                                                                               8 drops
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25816                                                                                                 20 mg
25817                                                                                                  2 ml
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25825                                                                                                500 mg
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25829                                                                                               1400 mg
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25846                                                                          based on weight (88-123 lbs)
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25942                                                                                               272 mcg
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                               5 drops
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26094                                                                                               1 spray
26095                                                                                               1620 mg
26110                                                                                               227 mcg
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26153                                                                                                1 drop
26154                                                                                                 13 ml
26155                                                                                                625 mg
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26160                                                                                              20 mg/kg
26161                                                                                               1 mg/kg
26165                                                                                       based on weight
26166                                                                                       based on weight
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26189                                                                                                1 tube
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26205                                                                                                 13 ml
26206                                                                                                625 mg
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26213                                                                                             4.4 mg/kg
26214                                                                                       based on weight
26215                                                                                       based on weight
26222                                                                                                 50 mg
26227                                                                                           unspecified
26229                                                                                           unspecified
26237                                                                                                100 mg
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26259                                                                                               1000 mg
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26287                                                                          based on weight (50-100 lbs)
26295                                                                          based on weight (60-121 lbs)
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26373                                                                                               2 drops
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26423                                                                                                240 mg
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26474                                                                                                 30 gm
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26477                                                                                                0.3 mg
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26503                                                                                                500 mg
26505                                                                                           as directed
26508                                                                                                1 pump
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26540                                                                                                1 pump
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26576                                                                                                 50 mg
26583                                                                                           unspecified
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26628                                                                                               272 mcg
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26674                                                                                               8 drops
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26727                                                                                                136 mg
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26741                                                                                                136 mg
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26743                                                                                                 75 mg
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26751                                                                                                136 mg
26760                                                                          based on weight (51-100 lbs)
26764                                                                                                100 ml
26765                                                                                                100 ml
26766                                                                                                100 ml
26769                                                                          based on weight (50-100 lbs)
26772                                                                                                100 ml
26773                                                                                                100 ml
26774                                                                                                100 ml
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26817                                                                                                 15 mg
26818                                                                                                100 mg
26819                                                                                                 15 gm
26821                                                                                                 50 mg
26822                                                                                                150 mg
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26832                                                                                              20 mg/kg
26833                                                                                              17 ml/lb
26836                                                                                               5 drops
26837                                                                                          pack/package
26838                                                                                                200 mg
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26857                                                                                                200 mg
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26966                                                                                              10 mg/kg
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26987                                                                                                  3 ml
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26991                                                                                               1000 mg
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
26993                                                                                               1000 mg
27012                                                                                              0.25 tsp
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27080                                                                                                0.3 ml
27081                                                                                               8 drops
27082                                                                                           as directed
27084                                                                                                100 mg
27085                                                                                 1 tablet/pill/capsule
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27137                                                                                                1 tube
27140                                                                                          small amount
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27225                                                                                               1500 mg
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27249                                                                                               6 ug/kg
27251                                                                                              50 mg/kg
27256                                                                                               1 spray
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27345                                                                                               272 mcg
27346                                                                                                136 mg
27347                                                                                               1620 mg
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27353                                                                                                500 mg
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27362                                                                                                 16 mg
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27370                                                                                                1 tube
27371                                                                                                500 mg
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27435                                                                                                 50 mg
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27479                                                                                               272 mcg
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27529                                                                          based on weight (51-100 lbs)
27589                                                                                              27, 1620
27594                                                                          based on weight (60-120 lbs)
27595                                                                                                500 mg
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27658                                                                                                 20 mg
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27723                                                                                                240 mg
27724                                                                                                 20 mg
27728                                                                                                240 mg
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27878                                                                                           unspecified
27880                                                                                           unspecified
27883                                                                                                 50 mg
27884                                                                                               2.68 ml
27885                                                                                                 23 mg
27886                                                                          based on weight (51-100 lbs)
27891                                                                                            0.23 mg/lb
27892                                                                                                136 mg
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27900                                                                                                1.4 ml
27901                                                                                                1.5 ml
27904                                                                                               1.59 ml
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27931                                                                                                100 mg
27934                                                                                            0.02 mg/kg
27935                                                                                               4 mg/kg
27936                                                                                             0.5 mg/kg
27937                                                                                               3 mg/kg
27938                                                                                                 50 mg
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27960                                                                                                 75 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28004                                                                                                272 ug
28006                                                                                                1 pump
28008                                                                                        1 pack/package
28009                                                                                                1 pump
28010                                                                                        1 pack/package
28011                                                                                               8 drops
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28018                                                                                       based on weight
28020                                                                                               5 drops
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28026                                                                                                500 mg
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28071                                                                                                1 tube
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28089                                                                                                100 mg
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28107                                                                                               1000 mg
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28129                                                                                               1000 mg
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28131                                                                                               1000 mg
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28141                                                                                               4 drops
28144                                                                          based on weight (51-100 lbs)
28150                                                                                                 10 mg
28151                                                                                                 20 mg
28152                                                                                               1000 mg
28153                                                                                               1 mg/lb
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28156                                                                                               1000 mg
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28244                                                                                                  2 mg
28245                                                                                               11.5 mg
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                                                               1000 mg
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28393                                                                                                 50 mg
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28404                                                                           based on weight (40-60 lbs)
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28529                                                                                                136 mg
28530                                                                                               1000 mg
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28604                                                                                                1 tube
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28616                                                                                               1 spray
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28626                                                                                               0.35 ml
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28632                                                                                                 50 mg
28639                                                                                                 75 mg
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28690                                                                                                 23 mg
28692                                                                                                0.3 mg
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28698                                                                                                0.3 mg
28699                                                                                                 50 mg
28710                                                                                           unspecified
28714                                                                                          small amount
28716                                                                                                 15 gm
28717                                                                                                960 mg
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28732                                                                                                500 mg
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28762                                                                                                  1 ml
28764                                                                                                1 drop
28765                                                                                                 50 mg
28766                                                                                                 50 mg
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28831                                                                                                1 drop
28832                                                                                                500 mg
28833                                                                                                1 tube
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28897                                                                          based on weight (51-100 lbs)
28899                                                                          based on weight (50-100 lbs)
28904                                                                          based on weight (51-100 lbs)
28905                                                                                                 15 mg
28906                                                                                                  3 ml
28907                                                                         based on weight (24.1-60 lbs)
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28988                                                                                                375 mg
28998                                                                                                 25 mg
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29008                                                                                                 23 mg
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29092                                                                                                  1 ml
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29097                                                                                                  1 ml
29098                                                                                                    ml
29099                                                                                                    ml
29100                                                                                                 75 mg
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29135                                                                                                  8 mg
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29150                                                                                                240 mg
29151                                                                           based on weight (40-88 lbs)
29152                                                                                                0.6 mg
29153                                                                                           unspecified
29154                                                                                                240 mg
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29506                                                                                                 50 mg
29509                                                                                                0.6 mg
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29579                                                                                                 15 gm
29580                                                                          based on weight (51-100 lbs)
29588                                                                          based on weight (51-100 lbs)
29592                                                                                                375 mg
29601                                                                                                 16 mg
29602                                                                                                 16 mg
29604                                                                                                 16 mg
29606                                                                                               272 mcg
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29691                                                                                                200 mg
29692                                                                                                150 mg
29693                                                                                                  1 mg
29694                                                                                                100 mg
29695                                                                                                 50 mg
29696                                                                                                1.5 gm
29697                                                                                                250 mg
29698                                                                                                250 mg
29699                                                                                                200 mg
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29729                                                                                                  1 gm
29730                                                                                                1.5 gm
29733                                                                                                750 mg
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29764                                                                                           unspecified
29765                                                                                           unspecified
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29794                                                                                           unspecified
29797                                                                                                227 mg
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29832                                                                                                1.5 ml
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29848                                                                                                1.5 ml
29851                                                                                                500 mg
29858                                                                                           unspecified
29859                                                                                                7.4 ml
29860                                                                                                7.4 ml
29861                                                                                                7.4 ml
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29906                                                                                                 25 mg
29907                                                                                                 15 mg
29933                                                                                 1 tablet/pill/capsule
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30098                                                                                               1000 mg
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30127                                                                                                100 mg
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30164                                                                                                2.5 ml
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30186                                                                                                 16 mg
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30213                                                                                                  4 gm
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30274                                                                          based on weight (51-100 lbs)
30277                                                                          based on weight (51-100 lbs)
30286                                                                          based on weight (51-100 lbs)
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30306                                                                                                 16 mg
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30353                                                                                                1 drop
30354                                                                                              10 drops
30355                                                                                          small amount
30356                                                                                                200 mg
30357                                                                                                 spray
30358                                                                                                100 mg
30359                                                                                                 75 mg
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30368                                                                                               272 mcg
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30385                                                                          based on weight (51-100 lbs)
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30494                                                                                                 23 mg
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30523                                                                                                 75 mg
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30534                                                                                               272 mcg
30536                                                                                             4-5 drops
30541                                                                                                1 tube
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30573                                                                                                 34 mg
30574                                                                                                230 mg
30590                                                                           based on weight (40-60 lbs)
30604                                                                         based on weight (40-60.1 lbs)
30619                                                                                                500 mg
30620                                                                                                300 mg
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30730                                                                                               272 mcg
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30784                                                                                               1000 mg
30792                                                                                                1 tube
30793                                                                                 1 tablet/pill/capsule
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30803                                                                                           unspecified
30811                                                                                                1 tube
30812                                                                                                160 mg
30813                                                                          based on weight (51-100 lbs)
30814                                                                                                1 tube
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30893                                                                                                1.9 ml
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30944                                                                                               1000 mg
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30960                                                                                                 1 tsp
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31012                                                                                                0.5 mg
31016                                                                                              0.75 tsp
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31097                                                                                               1000 mg
31098                                                                                                 25 mg
31105                                                                          based on weight (51-100 lbs)
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31136                                                                                                 23 mg
31137                                                                                                136 mg
31139                                                                        based on weight (60.1-121 lbs)
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31200                                                                                                 30 mg
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31233                                                                                                 23 mg
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31235                                                                                                 23 mg
31243                                                                                                 23 mg
31245                                                                                               6 drops
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31265                                                                                       based on weight
31268                                                                                           as directed
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31330                                                                                                1 pump
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31380                                                                                                 16 mg
31381                                                                                                 15 gm
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                                                               5 mg/kg
31411                                                                                               1 mg/kg
31412                                                                                               6 mg/ml
31413                                                                                                 50 mg
31414                                                                                               1000 mg
31415                                                                                               272 mcg
31416                                                                                               1000 mg
31417                                                                                               272 mcg
31418                                                                                               272 mcg
31419                                                                                               1000 mg
31420                                                                                                500 mg
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31507                                                                                                0.4 mg
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31599                                                                                                100 mg
31602                                                                          based on weight (51-100 lbs)
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31638                                                                                                136 mg
31640                                                                                          small amount
31641                                                                                                300 mg
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31651                                                                                                200 mg
31652                                                                                                  5 ml
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31654                                                                                                136 mg
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31680                                                                          based on weight (51-100 lbs)
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31811                                                                                                1 tube
31818                                                                                                1 tube
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31825                                                                                                1 tube
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31842                                                                                                1 pump
31843                                                                                       based on weight
31844                                                                                       based on weight
31845                                                                                                  1 ml
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31848                                                                                                 23 mg
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31898                                                                          based on weight (60-121 lbs)
31906                                                                                                1 tbsp
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31930                                                                                                 50 mg
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31967                                                                                                500 mg
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
32002                                                                          based on weight (51-100 lbs)
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32131                                                                                                  1 mg
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32212                                                                                                345 mg
32221                                                                                                 23 mg
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32354                                                                                                 25 mg
32355                                                                                                  5 mg
32356                                                                                                 25 mg
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32364                                                                                               1.75 ml
32365                                                                                               1.75 ml
32366                                                                                                 16 mg
32370                                                                                           unspecified
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32397                                                                                                0.6 mg
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32475                                                                                                300 mg
32476                                                                                                 75 mg
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32521                                                                                                1 drop
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32633                                                                                           unspecified
32635                                                                                           application
32637                                                                                                1 pump
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32694                                                                                                 spray
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32708                                                                                                100 mg
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32860                                                                                                 16 mg
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32912                                                                                                1 drop
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32939                                                                                                 30 mg
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32953                                                                                                 16 mg
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32983                                                                                                500 mg
32999                                                                          based on weight (51-100 lbs)
33004                                                                          based on weight (51-100 lbs)
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33014                                                                                                1 tube
33015                                                                              based on weight (30 lbs)
33022                                                                                               272 mcg
33023                                                                                       based on weight
33027                                                                                                136 mg
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33067                                                                                               5 drops
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33078                                                                          based on weight (51-100 lbs)
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33108                                                                                               272 mcg
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33123                                                                                                200 mg
33124                                                                                          small amount
33125                                                                                                100 mg
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33188                                                                                               1000 mg
33189                                                                                                 50 mg
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33317                                                                                               272 mcg
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33338                                                                                                 90 mg
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33504                                                                                                272 ug
33521                                                                                                 23 mg
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33691                                                                                                136 mg
33692                                                                                                150 mg
33693                                                                                                150 mg
33694                                                                                                500 mg
33695                                                                                                500 mg
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33697                                                                                                136 mg
33702                                                                                           unspecified
33706                                                                                               23, 460
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33818                                                                                                 15 mg
33822                                                                                               272 mcg
33823                                                                                                136 mg
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33825                                                                                                136 mg
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33850                                                                                               272 mcg
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33905                                                                                               1 spray
33907                                                                                                 spray
33909                                                                                               1 spray
33911                                                                           based on weight (44-88 lbs)
33913                                                                                               1 spray
33914                                                                                               1 spray
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33929                                                                                                1 tube
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34016                                                                                           unspecified
34022                                                                                           unspecified
34024                                                                                           unspecified
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34043                                                                          based on weight (50-100 lbs)
34044                                                                                                0.5 mg
34046                                                                           based on weight (44-88 lbs)
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34070                                                                                                136 mg
34071                                                                                                 50 mg
34072                                                                                                500 mg
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34092                                                                                                1 tube
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34105                                                                                               1 spray
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34111                                                                          based on weight (51-100 lbs)
34112                                                                                                 68 mg
34113                                                                                                  tube
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34162                                                                                                136 mg
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34282                                                                                                1 pump
34287                                                                                                1 drop
34288                                                                                               272 mcg
34289                                                                                                1 tube
34290                                                                                                  1 ml
34293                                                                                                1 tube
34304                                                                                                1 tube
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34341                                                                                               272 mcg
34342                                                                                           unspecified
34343                                                                                           unspecified
34344                                                                                               272 mcg
34345                                                                           based on weight (45-88 lbs)
34348                                                                                               5 drops
34356                                                                                                810 mg
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34369                                                                                                200 mg
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34430                                                                                       based on weight
34433                                                                                            0.05 mg/kg
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34456                                                                                               2 pumps
34457                                                                                                  1 gm
34458                                                                                                 30 mg
34459                                                                                                650 mg
34460                                                                                                 60 mg
34461                                                                                               1 mg/kg
34462                                                                                               1 mg/kg
34463                                                                                                  1 gm
34464                                                                                                325 mg
34465                                                                                                 20 mg
34466                                                                                                500 mg
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34468                                                                                               1620 mg
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34510                                                                                                400 mg
34513                                                                           based on weight (45-88 lbs)
34528                                                                                                 60 mg
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34612                                                                                                 16 mg
34614                                                                                                  1 ml
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34767                                                                                             2.5 mg/kg
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34791                                                                          based on weight (50-100 lbs)
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34845                                                                                   tablet/pill/capsule
34867                                                                                                100 mg
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34881                                                                                                 23 mg
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34940                                                                                                 35 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34973                                                                                                375 mg
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35026                                                                                             0.125 tsp
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35070                                                                                                500 mg
35074                                                                                           unspecified
35094                                                                          based on weight (51-100 lbs)
35101                                                                                                100 mg
35102                                                                                                0.2 mg
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35122                                                                                               2.25 ml
35124                                                                                                2.2 ml
35125                                                                          based on weight (60-121 lbs)
35126                                                                                                7.5 gm
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35155                                                                                                 16 mg
35160                                                                                           unspecified
35170                                                                                               272 mcg
35171                                                                                               272 mcg
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35190                                                                                                 10 mg
35191                                                                                                0.6 mg
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35213                                                                                                0.6 mg
35214                                                                          based on weight (51-100 lbs)
35215                                                                                                0.5 mg
35216                                                                                                 10 mg
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35258                                                                                               4 drops
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35263                                                                                                136 mg
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35282                                                                                                 50 mg
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35316                                                                                                 68 mg
35318                                                                                                 60 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35498                                                                                                136 mg
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35503                                                                                                200 mg
35504                                                                                          pack/package
35506                                                                                          small amount
35507                                                                                                1 drop
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35584                                                                                                  2 mg
35592                                                                                               3 drops
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35616                                                                                                200 mg
35617                                                                                                 20 mg
35618                                                                                                300 mg
35619                                                                                                500 mg
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35622                                                                                                200 mg
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35627                                                                                                 10 mg
35628                                                                                       based on weight
35633                                                                                           unspecified
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35643                                                                                                7.5 ml
35644                                                                                                2.5 mg
35645                                                                                                    ml
35656                                                                                           application
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35700                                                                                               1 spray
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35746                                                                                                200 mg
35747                                                                                                 50 mg
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35749                                                                                                136 mg
35751                                                                                                 16 mg
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35768                                                                             based on weight (55+ lbs)
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35779                                                                                               1500 mg
35782                                                                                               272 mcg
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35832                                                                                                900 mg
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35853                                                                                                200 ml
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35980                                                                                               272 mcg
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36083                                                                                                0.8 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36153                                                                                          small amount
36155                                                                                                1 tube
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36196                                                                                                0.4 mg
36198                                                                                                1.5 ml
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36258                                                                                                 75 mg
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36284                                                                                                500 mg
36288                                                                                       based on weight
36289                                                                                                300 mg
36292                                                                                               2.68 ml
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36376                                                                                               0.25 ml
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36400                                                                                                500 mg
36401                                                                                                 20 mg
36402                                                                                                2.5 mg
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36520                                                                                                 2 tsp
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36579                                                                                                1 tube
36580                                                                                                 50 mg
36595                                                                          based on weight (50-100 lbs)
36597                                                                                                 15 gm
36598                                                                                                500 mg
36599                                                                                                200 mg
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36605                                                                          based on weight (50-100 lbs)
36606                                                                                                 15 gm
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36623                                                                                                 15 gm
36624                                                                                           application
36626                                                                                          small amount
36630                                                                          based on weight (50-100 lbs)
36631                                                                                                 15 gm
36632                                                                          based on weight (50-100 lbs)
36633                                                                                                 15 gm
36635                                                                          based on weight (50-100 lbs)
36636                                                                                                 16 mg
36637                                                                                                 15 gm
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36660                                                                                               272 mcg
36661                                                                                                227 mg
36667                                                                                               9 mg/lb
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36776                                                                                                 10 mg
36777                                                                                                 20 mg
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36874                                                                                             1.5 mg/ml
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36879                                                                                             1.5 mg/ml
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36884                                                                                                1 pump
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36916                                                                                                  3 mg
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36946                                                                                                136 mg
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37076                                                                                                1 tube
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37080                                                                                                1 tube
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37091                                                                                                200 mg
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37103                                                                                               1 mg/kg
37104                                                                                             1-2 drops
37115                                                                                               7 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37262                                                                             based on weight (55+ lbs)
37263                                                                                                 10 mg
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37273                                                                                               8 drops
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37304                                                                                                 75 mg
37306                                                                                               5 mg/kg
37307                                                                                               1 mg/kg
37308                                                                                             0.5 mg/kg
37309                                                                                          small amount
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37446                                                                          based on weight (51-100 lbs)
37448                                                                                                1 pump
37449                                                                                       moderate amount
37451                                                                                           application
37453                                                                                                1 pump
37454                                                                                       moderate amount
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37495                                                                                                 spray
37496                                                                                               5 drops
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37581                                                                                                500 mg
37582                                                                                                  5 mg
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37649                                                                                                1.8 ml
37651                                                                                                collar
37652                                                                                             1.5 mg/ml
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37682                                                                                                500 mg
37686                                                                                                500 mg
37691                                                                                           application
37692                                                                                               272 mcg
37695                                                                                                200 mg
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37699                                                                                                1 drop
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37708                                                                                               1000 mg
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37807                                                                                                325 mg
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37836                                                                                                  1 mg
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37940                                                                                                 20 mg
37941                                                                                               5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37956                                                                                                 16 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38073                                                                                               272 mcg
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38129                                                                                                  2 mg
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38220                                                                                                 15 gm
38240                                                                           based on weight (22-55 lbs)
38248                                                                                                 16 mg
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38260                                                                                                136 mg
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38321                                                                                                 23 mg
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38341                                                                                               1 spray
38342                                                                          based on weight (51-100 lbs)
38350                                                                                                1 tube
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38361                                                                                       0.25 inch strip
38362                                                                                                 10 mg
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38370                                                                                               0.65 ml
38371                                                                                                 13 ml
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38398                                                                                                  5 mg
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38496                                                                                               272 mcg
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38535                                                                                                1 tbsp
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38638                                                                                                 15 gm
38643                                                                          based on weight (51-100 lbs)
38647                                                                                                  2, 4
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38716                                                                                                 15 gm
38722                                                                                          small amount
38723                                                                                              wipe/pad
38754                                                                                           unspecified
38764                                                                                                400 mg
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38776                                                                                               8 drops
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38808                                                                                                375 mg
38809                                                                                           unspecified
38810                                                                                                  3 ml
38816                                                                                        1 pack/package
38818                                                                                                460 mg
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38896                                                                          based on weight (51-100 lbs)
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38978                                                                                                1 tube
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39113                                                                                                100 mg
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39175                                                                                              10 mg/ml
39176                                                                          based on weight (51-100 lbs)
39177                                                                                                102 mg
39181                                                                                                  bath
39182                                                                                                 spray
39188                                                                                                 15 gm
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39261                                                                                              0.25 tsp
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39327                                                                                                 23 mg
39328                                                                                                 80 mg
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39385                                                                                               272 mcg
39388                                                                          based on weight (51-100 lbs)
39390                                                                                               272 mcg
39392                                                                                           unspecified
39415                                                                                                1 pump
39416                                                                                                 23 mg
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39436                                                                                                500 mg
39438                                                                          based on weight (51-100 lbs)
39440                                                                          based on weight (51-100 lbs)
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39464                                                                                               272 mcg
39478                                                                                               272 mcg
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39532                                                                                                500 mg
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39579                                                                                                 15 gm
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39605                                                                                                 75 mg
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39651                                                                                           unspecified
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39708                                                                                               272 mcg
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39745                                                                                                1 tube
39750                                                                                               4 drops
39754                                                                          based on weight (51-100 lbs)
39755                                                                                                1 tube
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39785                                                                                                 25 mg
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39809                                                                                               272 mcg
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39901                                                                                                0.3 mg
39909                                                                           based on weight (41-60 lbs)
39916                                                                                               3 drops
39917                                                                                               3 drops
39918                                                                                               2 drops
39919                                                                                       0.25 inch strip
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40003                                                                                                227 mg
40013                                                                            based on weight (0-10 lbs)
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40024                                                                                              10 drops
40038                                                                                              250, 500
40042                                                                                               272 mcg
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40053                                                                                               272 mcg
40054                                                                                                227 mg
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40095                                                                                               272 mcg
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40180                                                                          based on weight (51-100 lbs)
40186                                                                          based on weight (51-100 lbs)
40193                                                                                                272 ug
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40308                                                                                                 68 mg
40309                                                                                              50 mg/ml
40312                                                                              based on weight (70 lbs)
40313                                                                                                375 mg
40317                                                                                          small amount
40325                                                                                                272 mg
40331                                                                                               23, 228
40343                                                                                       moderate amount
40346                                                                                                960 mg
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40405                                                                                                100 mg
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40447                                                                                               4 drops
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40490                                                                                                500 mg
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40505                                                                                                240 mg
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40542                                                                                                  8 ml
40543                                                                                                 23 mg
40547                                                                                                0.5 mg
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40624                                                                                                150 mg
40625                                                                                                 75 mg
40634                                                                                       0.25 inch strip
40635                                                                                                500 mg
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40657                                                                                               272 mcg
40658                                                                                                136 mg
40684                                                                          based on weight (51-100 lbs)
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40794                                                                                        0.5 inch strip
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40826                                                                                                250 mg
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40869                                                                                                 75 mg
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40876                                                                                               272 mcg
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41002                                                                                               1000 mg
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41008                                                                                                500 mg
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41012                                                                                               1000 mg
41013                                                                                               1000 mg
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41017                                                                                                500 mg
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41055                                                                                                 60 mg
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41082                                                                                                500 mg
41083                                                                                                6.3 mg
41084                                                                              based on weight (70 lbs)
41085                                                                                                 50 mg
41086                                                                                                300 mg
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41092                                                                                                500 mg
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41100                                                                                                500 mg
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41105                                                                                               1000 mg
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41225                                                                                                 20 mg
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41243                                                                                               272 mcg
41246                                                                                           application
41250                                                                                                1 tube
41251                                                                                             0.5 mg/kg
41252                                                                                             6.1 mg/kg
41254                                                                                 1 tablet/pill/capsule
41255                                                                                                 16 mg
41256                                                                                                200 mg
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41302                                                                                                 60 mg
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41336                                                                                                1 pump
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41370                                                                                               11.5 mg
41371                                                                                           application
41372                                                                                                500 mg
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41399                                                                                               8 drops
41400                                                                                               0.75 ml
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41418                                                                                               1.34 ml
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41502                                                                                                1 tube
41505                                                                                              inhalant
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41653                                                                                               23, 460
41655                                                                                           unspecified
41661                                                                                                 75 mg
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41775                                                                                                136 mg
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41842                                                                                                1 drop
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41856                                                                                                500 mg
41862                                                                                               2 drops
41863                                                                                       moderate amount
41866                                                                                               272 mcg
41867                                                                                                 68 mg
41870                                                                                               23, 228
41872                                                                                           unspecified
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41892                                                                                                200 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41895                                                                                              25 drops
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41907                                                                                                100 gm
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41976                                                                                                 15 ml
41988                                                                          based on weight (51-100 lbs)
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42030                                                                                               5 drops
42032                                                                          based on weight (51-100 lbs)
42033                                                                                                 50 mg
42034                                                                                                500 mg
42035                                                                                                150 mg
42036                                                                                               3 drops
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42040                                                                                                1 tube
42041                                                                                                500 mg
42042                                                                                                 20 mg
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42053                                                                          based on weight (60-121 lbs)
42054                                                                                                 20 mg
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42113                                                                                                136 mg
42114                                                                                                375 mg
42115                                                                                                 60 mg
42116                                                                      2 tablets/pills/capsules - 50 mg
42117                                                                                                300 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42171                                                                                               8 drops
42174                                                                          based on weight (51-100 lbs)
42175                                                                                                250 mg
42176                                                                                                125 mg
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42355                                                                                               1.5 tsp
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42365                                                                                                1 pump
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42384                                                                          based on weight (51-100 lbs)
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42402                                                                          based on weight (51-100 lbs)
42403                                                                                                1 tube
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42479                                                                                                1 tube
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42518                                                                                                160 mg
42519                                                                                                 20 mg
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42566                                                                                                5 tbsp
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42767                                                                                                 68 mg
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42769                                                                                                 80 mg
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42821                                                                          based on weight (50-100 lbs)
42829                                                                                               4 drops
42833                                                                                               23, 228
42860                                                                                           as directed
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42909                                                                                                 75 mg
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43149                                                                                                  5 mg
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43187                                                                                                 50 mg
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43240                                                                                                 30 mg
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43251                                                                                                 23 mg
43254                                                                                                 23 mg
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43265                                                                                                460 mg
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43329                                                                                                272 mg
43334                                                                                               23, 228
43366                                                                                          small amount
43388                                                                                           unspecified
43396                                                                                                 15 gm
43397                                                                                                3.5 gm
43398                                                                                                500 mg
43399                                                                                                 50 mg
43400                                                                                                500 mg
43405                                                                                          small amount
43412                                                                                          small amount
43416                                                                                                 15 gm
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43436                                                                                                 16 mg
43443                                                                                                 16 mg
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43498                                                                                                900 mg
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43561                                                                                                500 mg
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43601                                                                                                1 drop
43610                                                                                      0.125 inch strip
43611                                                                                               272 mcg
43620                                                                                           unspecified
43621                                                                                           unspecified
43622                                                                                               272 mcg
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43641                                                                                                250 mg
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43712                                                                                               1 spray
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43755                                                                                                227 mg
43756                                                                                                136 mg
43765                                                                                                1 pump
43766                                                                                                125 mg
43778                                                                                               272 mcg
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43829                                                                                                600 ml
43831                                                                                               272 mcg
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43884                                                                                                  tube
43887                                                                                                  tube
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43897                                                                                                 15 gm
43898                                                                                                 16 mg
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44051                                                                                               5 drops
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44220                                                                                                1 tube
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44242                                                                                                 3 tsp
44243                                                                                           unspecified
44244                                                                                           unspecified
44245                                                                                                250 mg
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44330                                                                          based on weight (51-100 lbs)
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44421                                                                        based on weight (50.1-100 lbs)
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44501                                                                                               8 drops
44502                                                                                                  4 mg
44503                                                                                                 50 mg
44504                                                                                                 50 mg
44505                                                                                                500 mg
44507                                                                                          small amount
44508                                                                                                  4 mg
44509                                                                                                 45 mg
44518                                                                                               272 mcg
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44531                                                                              based on weight (70 lbs)
44532                                                                                                500 mg
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44552                                                                                                  1 ml
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44796                                                                                                1 drop
44797                                                                                                1 drop
44798                                                                                                100 mg
44799                                                                                           unspecified
44800                                                                                                100 mg
44804                                                                                           unspecified
44805                                                                                               1000 mg
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44831                                                                                                1 drop
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44870                                                                                                  1 mg
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44878                                                                                                300 mg
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44990                                                                                                0.5 gm
44997                                                                                           as directed
45005                                                                                           unspecified
45007                                                                                           unspecified
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45047                                                                                                1 tube
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45110                                                                                                150 mg
45112                                                                                               6 drops
45115                                                                                                100 mg
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45203                                                                                                136 mg
45204                                                                                                  8 mg
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45216                                                                          based on weight (51-100 lbs)
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45236                                                                          based on weight (51-100 lbs)
45255                                                                                       based on weight
45257                                                                                                  1 ml
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45274                                                                                               5 drops
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45286                                                                          based on weight (51-100 lbs)
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45498                                                                                                 75 mg
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45553                                                                                                240 mg
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45586                                                                                                375 mg
45587                                                                                                500 mg
45591                                                                                               8 drops
45592                                                                                                 16 mg
45626                                                                        based on weight (50.1-100 lbs)
45629                                                                                                1 tube
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45666                                                                                                 23 mg
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45674                                                                                               2 drops
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45684                                                                                                 25 mg
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45703                                                                                                  3 ml
45704                                                                                          small amount
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45786                                                                                                 20 mg
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45794                                                                                                 23 mg
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45869                                                                        based on weight (50.1-100 lbs)
45870                                                                                                 60 ml
45871                                                                                                7.5 ml
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45886                                                                                               5 drops
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45972                                                                                               8 drops
45974                                                                                               1000 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46020                                                                                                  1 ml
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46077                                                                                                150 mg
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46079                                                                                                900 mg
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46101                                                                                               3 drops
46102                                                                                               3 drops
46103                                                                                                136 mg
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46128                                                                                               272 mcg
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46169                                                                                                 23 mg
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46179                                                                                                250 mg
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46226                                                                                                200 mg
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46328                                                                                               1400 mg
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46432                                                                                                1 pump
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46502                                                                                               3 pumps
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46524                                                                                               5 drops
46526                                                                                       0.25 inch strip
46527                                                                                               5 drops
46528                                                                           based on weight (45-88 lbs)
46529                                                                                                  1 gm
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46534                                                                                               5 drops
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46590                                                                                               8 drops
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46664                                                                                                1 tube
46665                                                                                 1 tablet/pill/capsule
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46718                                                                                                 16 mg
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46762                                                                                               4 mg/ml
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46771                                                                                                250 mg
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46818                                                                                                 10 mg
46826                                                                                             500 mg/ml
46827                                                                                             1-2 drops
46835                                                                                                0.5 mg
46836                                                                                               0.5 mcg
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46867                                                                                                250 mg
46874                                                                                          small amount
46880                                                                                          small amount
46881                                                                                                 23 mg
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46978                                                                                                1 drop
46979                                                                                               272 mcg
46980                                                                                                227 mg
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47040                                                                                                 23 mg
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47042                                                                                                500 mg
47043                                                                          based on weight (51-100 lbs)
47045                                                                                                 60 mg
47049                                                                           based on weight (40-85 lbs)
47050                                                                                                500 mg
47055                                                                                               272 mcg
47060                                                                                           unspecified
47065                                                                                                 60 mg
47069                                                                                                 15 gm
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47108                                                                                                1 tube
47123                                                                                               272 mcg
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47181                                                                                                1 tube
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47185                                                                                                 23 mg
47186                                                                                                 23 mg
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47260                                                                          based on weight (50-100 lbs)
47266                                                                                              12 mg/kg
47302                                                                                          small amount
47305                                                                                                500 mg
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47481                                                                                            2.27 mg/lb
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47490                                                                                               272 mcg
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47513                                                                                              10 drops
47515                                                                                                272 ug
47517                                                                                                272 ug
47524                                                                                                272 ug
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47559                                                                                                1 drop
47561                                                                                                  1 gm
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47580                                                                                             1.5 mg/ml
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47682                                                                                                136 mg
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47847                                                                                             0.125 tsp
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47862                                                                                                0.1 ml
47863                                                                                 1 tablet/pill/capsule
47867                                                                                                100 mg
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47892                                                                                                100 mg
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47917                                                                                                100 mg
47928                                                                                                125 mg
47949                                                                                               1000 mg
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
47999                                                                                                  4 ml
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48006                                                                                              28 mg/m2
48007                                                                              0.75 tablet/pill/capsule
48008                                                                                                 80 mg
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48032                                                                                               1000 mg
48033                                                                                                300 mg
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48128                                                                                                 25 mg
48129                                                                                                 16 mg
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48154                                                                                               1620 mg
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48161                                                                                                500 mg
48162                                                                                                100 mg
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48170                                                                                                100 mg
48171                                                                                                100 mg
48178                                                                                                 15 gm
48182                                                                                       136 mcg, 114 mg
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48218                                                                                                 80 mg
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48223                                                                                                0.5 ml
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48290                                                                                                136 mg
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48311                                                                                               5 drops
48312                                                                                                500 mg
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48374                                                                                                 10 ml
48376                                                                                                 drops
48377                                                                                                 10 mg
48378                                                                                                1 drop
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48440                                                                                               1000 mg
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48499                                                                                               5 drops
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48503                                                                                                1 tube
48504                                                                                       based on weight
48505                                                                                       based on weight
48508                                                                                                 57 mg
48513                                                                          based on weight (51-100 lbs)
48520                                                                                                 1 tsp
48521                                                                                                  2 ml
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48560                                                                                                1 tube
48598                                                                                           unspecified
48602                                                                                              tapering
48609                                                                                                 68 mg
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48662                                                                                               2.68 ml
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48835                                                                                               5 drops
48842                                                                                                500 mg
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48869                                                                                                 20 mg
48877                                                                                                 75 mg
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48893                                                                                                1 drop
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48917                                                                                               272 mcg
48918                                                                                           unspecified
48921                                                                                                 60 ml
48935                                                                                           unspecified
48938                                                                                               272 mcg
48946                                                                            1.5 tablets/pills/capsules
48971                                                                                                272 mg
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49015                                                                                               4.02 ml
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49019                                                                                                500 mg
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49027                                                                                                 60 ml
49028                                                                                                 20 mg
49030                                                                                                 30 gm
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                          based on weight (51-100 lbs)
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49114                                                                                               272 mcg
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49185                                                                                               272 mcg
49186                                                                                                227 mg
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49304                                                                                              10 drops
49314                                                                                                0.5 mg
49316                                                                                           unspecified
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49345                                                                                                1 pump
49346                                                                          based on weight (51-100 lbs)
49348                                                                          based on weight (51-100 lbs)
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49371                                                                                                 30 ml
49372                                                                                 1 tablet/pill/capsule
49375                                                                                               37.5 mg
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49401                                                                                                 23 mg
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49410                                                                                                250 mg
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49473                                                                          based on weight (51-100 lbs)
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49524                                                                                                136 mg
49525                                                                                               0.57 mg
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49589                                                                                               272 mcg
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49604                                                                                                500 mg
49605                                                                                 1 tablet/pill/capsule
49606                                                                                                500 mg
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49640                                                                                               272 mcg
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49680                                                                                               1000 mg
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49714                                                                                               272 mcg
49715                                                                                                1 tube
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49764                                                                                                 15 ml
49765                                                                                                 68 mg
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49783                                                                                              56.25 mg
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49848                                                                                                500 mg
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49856                                                                                                1.7 ml
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49886                                                                          based on weight (51-100 lbs)
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49923                                                                                               1000 mg
49924                                                                                               1000 mg
49925                                                                                                750 mg
49928                                                                                               1000 mg
49929                                                                                                750 mg
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49980                                                                                                 50 mg
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49994                                                                                             0.2 mg/kg
49995                                                                                             0.2 mg/kg
49996                                                                                           as directed
49997                                                                                                375 mg
49998                                                                                                 50 mg
49999                                                                                                100 mg
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50002                                                                                               3 pumps
50004                                                                          based on weight (51-100 lbs)
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50022                                                                                             0.2 mg/kg
50029                                                                                 1 tablet/pill/capsule
50030                                                                                                1 tube
50033                                                                                 1 tablet/pill/capsule
50034                                                                                                1 tube
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50073                                                                                                1 tube
50076                                                                                              25 mg/kg
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50187                                                                          based on weight (51-100 lbs)
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
          dose_unit
22      unspecified
40    other specify
41      unspecified
42    other specify
46    other specify
48    other specify
49    other specify
51    other specify
59    other specify
60    other specify
62    other specify
63    other specify
67    other specify
70    other specify
74    other specify
84    other specify
87    other specify
91            drops
111           drops
112           drops
113           drops
114           drops
149   other specify
150   other specify
151   other specify
152   other specify
153   other specify
155   other specify
167     unspecified
188   other specify
192   other specify
220   other specify
230   other specify
233   other specify
235              mg
236   other specify
237   other specify
238   other specify
239              mg
242              ml
243   other specify
248   other specify
257           units
275   other specify
276   other specify
277   other specify
279   other specify
280   other specify
287              mg
310             mcg
317           units
318           units
324   other specify
328   other specify
329   other specify
332   other specify
333   other specify
347              mg
348              mg
350              mg
351              mg
353              mg
355              mg
366     unspecified
368              mg
372              mg
375   other specify
376   other specify
383   other specify
384   other specify
385   other specify
386   other specify
403             mcg
404              mg
414              mg
447           drops
449     unspecified
453           drops
480   other specify
496             mcg
497              mg
498   other specify
519   other specify
537           drops
597   other specify
598   other specify
603   other specify
604   other specify
610           drops
619   other specify
635              mg
637   other specify
642              ml
645              mg
686     unspecified
688              mg
703   other specify
704   other specify
709     unspecified
710     unspecified
712     unspecified
725              mg
728   other specify
729   other specify
730             mcg
731              mg
733           drops
734   other specify
735              mg
736              mg
737           drops
738   other specify
739   other specify
750              mg
754   other specify
755   other specify
757   other specify
760           drops
771              mg
778     unspecified
785   other specify
790   other specify
792   other specify
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803   other specify
804   other specify
810   other specify
816   other specify
819             mcg
820             mcg
823              ml
824   other specify
832     unspecified
850              ml
851             mcg
862   other specify
863              mg
871              mg
874              mg
877           drops
878              mg
879              mg
880              mg
884              mg
887              mg
891              mg
893              mg
899              mg
901           drops
905              ml
913   other specify
917              mg
918              mg
921   other specify
929           drops
930           drops
950           units
955   other specify
958              mg
969           drops
970   other specify
977           drops
982   other specify
983   other specify
989   other specify
1001    unspecified
1017  other specify
1018  other specify
1019  other specify
1020  other specify
1021  other specify
1027  other specify
1028          drops
1029  other specify
1030  other specify
1031          drops
1033          drops
1036  other specify
1037  other specify
1039  other specify
1042  other specify
1050  other specify
1072          drops
1073  other specify
1074  other specify
1087  other specify
1088             mg
1091          drops
1092             mg
1093             mg
1097             mg
1098             ml
1099  other specify
1100  other specify
1101  other specify
1108  other specify
1111             mg
1112  other specify
1116  other specify
1129  other specify
1131          drops
1150  other specify
1152  other specify
1153  other specify
1154  other specify
1155  other specify
1159  other specify
1160  other specify
1161  other specify
1168          units
1169          units
1170  other specify
1173  other specify
1174             mg
1175  other specify
1176            mcg
1177  other specify
1179  other specify
1185  other specify
1186  other specify
1187             mg
1189  other specify
1190  other specify
1193             mg
1194          units
1195  other specify
1208  other specify
1217  other specify
1226  other specify
1233    unspecified
1247  other specify
1274             mg
1285             mg
1307             mg
1336    unspecified
1344  other specify
1345          drops
1346  other specify
1348  other specify
1355  other specify
1371  other specify
1377             mg
1378             mg
1379             mg
1380             mg
1398          drops
1404  other specify
1405          drops
1415  other specify
1416             mg
1417  other specify
1418             mg
1419  other specify
1420             mg
1422  other specify
1434  other specify
1435  other specify
1438  other specify
1441  other specify
1442  other specify
1443  other specify
1450  other specify
1451  other specify
1459  other specify
1462  other specify
1464  other specify
1473    unspecified
1475    unspecified
1491          units
1499             mg
1500             mg
1501  other specify
1502            mcg
1504            tsp
1511  other specify
1512  other specify
1514  other specify
1528  other specify
1529  other specify
1532  other specify
1534          units
1535          units
1536  other specify
1537  other specify
1538             mg
1539  other specify
1541    unspecified
1542    unspecified
1556  other specify
1571  other specify
1572  other specify
1586             oz
1587  other specify
1598  other specify
1599            mcg
1633  other specify
1634          drops
1635  other specify
1636          units
1650    unspecified
1663  other specify
1668  other specify
1683  other specify
1684  other specify
1685  other specify
1689  other specify
1690  other specify
1692  other specify
1695          drops
1697  other specify
1708             mg
1710             mg
1712  other specify
1715  other specify
1718             mg
1719             mg
1720  other specify
1729             ml
1730            mcg
1743            mcg
1747  other specify
1748  other specify
1749  other specify
1756  other specify
1757  other specify
1758  other specify
1759  other specify
1760             ml
1761  other specify
1769             mg
1773  other specify
1774             mg
1775             mg
1789          drops
1791    unspecified
1794    unspecified
1795    unspecified
1796  other specify
1798             ml
1805          drops
1809             mg
1812            tsp
1813            tbs
1819          drops
1820  other specify
1823          drops
1845  other specify
1846  other specify
1847  other specify
1848  other specify
1849  other specify
1850  other specify
1851  other specify
1861             mg
1867  other specify
1872  other specify
1877  other specify
1887  other specify
1888  other specify
1905             mg
1906             mg
1917  other specify
1922  other specify
1925  other specify
1926  other specify
1928  other specify
1929  other specify
1931  other specify
1939  other specify
1941  other specify
1945  other specify
1948  other specify
1962  other specify
1965             ml
1980  other specify
1981  other specify
1982  other specify
1983  other specify
1984  other specify
1985  other specify
1994    unspecified
1998  other specify
2006            mcg
2007             mg
2012    unspecified
2013    unspecified
2016  other specify
2022  other specify
2025  other specify
2026  other specify
2029            mcg
2030             mg
2032  other specify
2033  other specify
2034  other specify
2041  other specify
2042  other specify
2043             ml
2044  other specify
2050  other specify
2072             mg
2075  other specify
2083  other specify
2084  other specify
2085  other specify
2087  other specify
2088  other specify
2089  other specify
2091  other specify
2093  other specify
2107  other specify
2108  other specify
2109  other specify
2110  other specify
2113  other specify
2115          drops
2116  other specify
2123  other specify
2126  other specify
2127  other specify
2149  other specify
2151  other specify
2161  other specify
2165  other specify
2166          drops
2195  other specify
2199  other specify
2200  other specify
2201  other specify
2202  other specify
2203  other specify
2204  other specify
2205  other specify
2206  other specify
2207  other specify
2211          drops
2219  other specify
2220  other specify
2221             mg
2224  other specify
2225             mg
2226  other specify
2228            tbs
2229  other specify
2230             mg
2233             mg
2241  other specify
2243  other specify
2244  other specify
2245             mg
2250  other specify
2251            mcg
2255  other specify
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2269    unspecified
2270    unspecified
2272             ml
2278            mcg
2279          units
2280  other specify
2283  other specify
2301  other specify
2302             ml
2333            mcg
2339          drops
2342          drops
2345            mcg
2347            mcg
2352            mcg
2356            mcg
2390  other specify
2398  other specify
2404  other specify
2405  other specify
2406            tsp
2409             mg
2411             ml
2412             mg
2418            mcg
2419            mcg
2424             mg
2425             mg
2426             mg
2427             mg
2428             mg
2450             mg
2453             mg
2455             mg
2456             mg
2463  other specify
2464          units
2467            tbs
2473          drops
2474          drops
2477             mg
2478             mg
2479  other specify
2481  other specify
2482  other specify
2486  other specify
2487  other specify
2490  other specify
2491  other specify
2492  other specify
2499  other specify
2500  other specify
2501             mg
2502             mg
2503             mg
2504  other specify
2505  other specify
2506  other specify
2508  other specify
2517             mg
2518  other specify
2534          drops
2539  other specify
2540  other specify
2542  other specify
2543  other specify
2544             mg
2545  other specify
2546  other specify
2547  other specify
2548  other specify
2549    unspecified
2550    unspecified
2558  other specify
2559  other specify
2560  other specify
2562             mg
2566             mg
2575    unspecified
2578  other specify
2580  other specify
2583             ml
2587             mg
2588             mg
2589             mg
2599          drops
2600  other specify
2627             mg
2636             mg
2642  other specify
2651  other specify
2652          drops
2653          drops
2655    unspecified
2659  other specify
2660  other specify
2661  other specify
2699  other specify
2710  other specify
2721          drops
2726  other specify
2731             mg
2735             mg
2737             mg
2738             mg
2739             mg
2742  other specify
2743  other specify
2745  other specify
2746  other specify
2748  other specify
2749  other specify
2750             mg
2753  other specify
2756  other specify
2805             mg
2808             mg
2815             mg
2818  other specify
2825  other specify
2827  other specify
2828  other specify
2833          units
2838  other specify
2839             ml
2842             oz
2844             mg
2846  other specify
2855  other specify
2869          units
2897  other specify
2900  other specify
2903  other specify
2904  other specify
2905  other specify
2907  other specify
2911  other specify
2912  other specify
2913             gm
2919  other specify
2920  other specify
2921  other specify
2922  other specify
2923  other specify
2925  other specify
2941             mg
2942  other specify
2943  other specify
2944          drops
2946          drops
2951          drops
2958  other specify
2959  other specify
2960  other specify
2961  other specify
2962  other specify
2963  other specify
2964  other specify
2974  other specify
2975  other specify
2978  other specify
2980          drops
2981             mg
2982             mg
2988          drops
2993    unspecified
2997             mg
3002             mg
3003  other specify
3007          drops
3028          drops
3031    unspecified
3055  other specify
3058  other specify
3060  other specify
3092             mg
3095  other specify
3096             mg
3110          drops
3119          drops
3140  other specify
3146             mg
3147          drops
3179             mg
3180             mg
3208             mg
3209             mg
3212             ml
3246  other specify
3247  other specify
3250  other specify
3251  other specify
3253  other specify
3257            mcg
3261             mg
3270             mg
3271  other specify
3278  other specify
3280  other specify
3284  other specify
3287  other specify
3291  other specify
3293  other specify
3294  other specify
3300  other specify
3305  other specify
3312  other specify
3313  other specify
3339  other specify
3342  other specify
3345             mg
3346             mg
3350          units
3360  other specify
3366          drops
3372          units
3375          units
3376  other specify
3394    unspecified
3399             mg
3403             mg
3404  other specify
3405  other specify
3406  other specify
3421          drops
3422          drops
3423             ml
3425  other specify
3426  other specify
3429          units
3437          drops
3439          drops
3444             mg
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3451             mg
3455             mg
3456  other specify
3457  other specify
3458  other specify
3459             mg
3465             mg
3488  other specify
3490  other specify
3491  other specify
3492  other specify
3495  other specify
3496  other specify
3497  other specify
3498  other specify
3512  other specify
3513  other specify
3514  other specify
3515          units
3516  other specify
3517    unspecified
3519  other specify
3520             mg
3522             mg
3525            mcg
3526            mcg
3530  other specify
3531          drops
3535          drops
3581  other specify
3600             ml
3601             mg
3619             mg
3622  other specify
3631  other specify
3632  other specify
3635             mg
3636             ml
3639          drops
3640          drops
3641  other specify
3649             mg
3650          units
3651             mg
3652             mg
3666  other specify
3667  other specify
3675  other specify
3684  other specify
3685  other specify
3691  other specify
3692  other specify
3693  other specify
3698  other specify
3699  other specify
3701  other specify
3704  other specify
3705  other specify
3706             mg
3710    unspecified
3718          drops
3719  other specify
3725            mcg
3726  other specify
3735          drops
3738             mg
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3750             mg
3760             mg
3773          drops
3781          drops
3782          drops
3783          drops
3784             mg
3785             mg
3786             mg
3789    unspecified
3797  other specify
3798  other specify
3800  other specify
3804             mg
3815          units
3829          drops
3830             ml
3835            tbs
3836            tbs
3837             mg
3838          units
3839             mg
3840  other specify
3848  other specify
3857  other specify
3858  other specify
3859  other specify
3860  other specify
3861             gm
3867          drops
3870             mg
3871             mg
3872          units
3874  other specify
3881            mcg
3886  other specify
3889  other specify
3897  other specify
3898    unspecified
3900            mcg
3903  other specify
3906  other specify
3911  other specify
3938  other specify
3943  other specify
3944  other specify
3945          drops
3946  other specify
3952  other specify
3972  other specify
3980  other specify
3984  other specify
3989  other specify
3990  other specify
4000    unspecified
4017  other specify
4030             mg
4031  other specify
4042    unspecified
4044             ml
4045  other specify
4047             mg
4058  other specify
4059             mg
4060            mcg
4063            mcg
4064             mg
4066  other specify
4067  other specify
4068             ml
4069             ml
4070             mg
4071  other specify
4072  other specify
4073  other specify
4074             ml
4075             mg
4076             mg
4077             mg
4087          drops
4088  other specify
4089          drops
4092  other specify
4095  other specify
4096             mg
4097             mg
4111  other specify
4112  other specify
4113          drops
4114          drops
4116             mg
4117  other specify
4118  other specify
4119          drops
4120  other specify
4125             mg
4127  other specify
4128  other specify
4131  other specify
4132    unspecified
4133    unspecified
4134          drops
4159             ml
4160             ml
4161             mg
4162             ml
4172  other specify
4183  other specify
4184          units
4189  other specify
4190  other specify
4191  other specify
4193          drops
4198  other specify
4199  other specify
4204  other specify
4209  other specify
4210  other specify
4212             mg
4213             mg
4215             mg
4216          drops
4218          drops
4229  other specify
4234             mg
4244             ml
4245          drops
4247            mcg
4265          drops
4266          drops
4274    unspecified
4281             mg
4282             mg
4298  other specify
4299  other specify
4302  other specify
4304  other specify
4305  other specify
4306  other specify
4307  other specify
4308             mg
4309             mg
4311             mg
4313  other specify
4314  other specify
4323  other specify
4324  other specify
4325  other specify
4326  other specify
4334             ml
4336  other specify
4338  other specify
4341             mg
4348  other specify
4349  other specify
4350  other specify
4353  other specify
4354  other specify
4360  other specify
4368             mg
4371             mg
4384             mg
4389  other specify
4390  other specify
4395             mg
4405             mg
4409  other specify
4426  other specify
4427  other specify
4428  other specify
4430  other specify
4431  other specify
4444  other specify
4445  other specify
4446  other specify
4454  other specify
4469  other specify
4470  other specify
4471  other specify
4472  other specify
4480  other specify
4481  other specify
4483  other specify
4486  other specify
4488             ml
4491             ml
4497  other specify
4499  other specify
4500  other specify
4501  other specify
4502  other specify
4504  other specify
4505  other specify
4509  other specify
4510  other specify
4511  other specify
4515  other specify
4516  other specify
4517             gm
4524  other specify
4532  other specify
4533            tsp
4534  other specify
4535             mg
4536  other specify
4544          units
4545  other specify
4547          drops
4558  other specify
4559  other specify
4560  other specify
4561  other specify
4562  other specify
4564  other specify
4565  other specify
4566  other specify
4567  other specify
4568  other specify
4569  other specify
4587          units
4597  other specify
4598             mg
4599            mcg
4600             mg
4611             mg
4617  other specify
4627             ml
4628             ml
4629             mg
4630  other specify
4631             ml
4634  other specify
4638             ml
4640             gm
4642             mg
4643  other specify
4644          drops
4645          drops
4646  other specify
4647          drops
4648             mg
4649             ml
4651  other specify
4652  other specify
4654             ml
4655             mg
4688             mg
4695  other specify
4696             mg
4697             mg
4700             mg
4703             mg
4705             mg
4711          drops
4716             mg
4717             mg
4719          drops
4720          drops
4726  other specify
4738  other specify
4739  other specify
4743          drops
4744          drops
4745             mg
4748          units
4757          drops
4760  other specify
4761            tsp
4763  other specify
4764             oz
4766  other specify
4777  other specify
4780  other specify
4782  other specify
4798             mg
4801             mg
4802  other specify
4803          drops
4804             mg
4805          drops
4806  other specify
4807             mg
4813    unspecified
4824             ml
4826  other specify
4828  other specify
4832  other specify
4850  other specify
4853  other specify
4855             mg
4858             mg
4859             mg
4861             mg
4862            mcg
4881  other specify
4902  other specify
4904  other specify
4905             mg
4908            mcg
4910  other specify
4912             mg
4913  other specify
4914             mg
4917            mcg
4935  other specify
4956  other specify
4960  other specify
4968             mg
4969             mg
4980  other specify
4981             mg
4989             mg
4990             mg
4996  other specify
4998          drops
5040             mg
5043          units
5046          units
5078  other specify
5122          units
5123          units
5125             ml
5127  other specify
5134          units
5140             mg
5159    unspecified
5160    unspecified
5161    unspecified
5165             mg
5173  other specify
5174  other specify
5175             mg
5191             mg
5192             mg
5193          drops
5195  other specify
5201             mg
5203  other specify
5210  other specify
5211  other specify
5212  other specify
5213  other specify
5214  other specify
5220  other specify
5221  other specify
5222  other specify
5223  other specify
5225  other specify
5234  other specify
5235  other specify
5243  other specify
5244  other specify
5247  other specify
5248  other specify
5253  other specify
5255  other specify
5256  other specify
5257  other specify
5258  other specify
5261  other specify
5262  other specify
5264  other specify
5265  other specify
5270  other specify
5271  other specify
5289  other specify
5332  other specify
5333  other specify
5334  other specify
5335  other specify
5336  other specify
5337            mcg
5340  other specify
5341  other specify
5354  other specify
5357          drops
5359            mcg
5360             mg
5361             mg
5362  other specify
5369  other specify
5377  other specify
5378  other specify
5379  other specify
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5391  other specify
5392  other specify
5403  other specify
5424  other specify
5428  other specify
5440             mg
5460          drops
5464             mg
5469             ml
5483  other specify
5484             mg
5485             mg
5490             mg
5491          drops
5492  other specify
5497  other specify
5498  other specify
5499  other specify
5500  other specify
5501  other specify
5502  other specify
5507  other specify
5508  other specify
5509  other specify
5511  other specify
5513  other specify
5527  other specify
5528  other specify
5529  other specify
5533  other specify
5534  other specify
5535          drops
5537  other specify
5541  other specify
5542  other specify
5545  other specify
5546  other specify
5552            tbs
5553            tbs
5557  other specify
5568  other specify
5571  other specify
5576  other specify
5577  other specify
5578  other specify
5595  other specify
5600  other specify
5602  other specify
5607             mg
5626  other specify
5627          units
5628          units
5629             mg
5630             mg
5631  other specify
5632  other specify
5641             ml
5649  other specify
5668            mcg
5681  other specify
5682  other specify
5695             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5728             mg
5729          drops
5731          drops
5737             mg
5747  other specify
5760  other specify
5762             mg
5768  other specify
5771             mg
5774             mg
5777  other specify
5804             mg
5814            tsp
5834            mcg
5839             mg
5840             mg
5858  other specify
5869            mcg
5877  other specify
5884  other specify
5887          drops
5913  other specify
5917          drops
5930  other specify
5932    unspecified
5933  other specify
5934  other specify
5935          drops
5936  other specify
5937  other specify
5941  other specify
5942  other specify
5945  other specify
5963  other specify
5964  other specify
5965             mg
5966             mg
5967             mg
5968             mg
5976          drops
5977             mg
5978             mg
5979             mg
5980  other specify
5981  other specify
5988             mg
5991  other specify
5992  other specify
5993            mcg
5994          drops
6000             mg
6002  other specify
6003             mg
6004             ml
6005             gm
6014            mcg
6015            mcg
6016             mg
6017             mg
6021            mcg
6022             mg
6036             mg
6038  other specify
6039  other specify
6059  other specify
6063  other specify
6068          units
6069  other specify
6070             mg
6071  other specify
6072  other specify
6074  other specify
6076  other specify
6078  other specify
6088  other specify
6090  other specify
6092             mg
6093  other specify
6094             ml
6095  other specify
6096             mg
6097             mg
6098             mg
6099             mg
6101             mg
6102             mg
6104             mg
6109             mg
6129  other specify
6130  other specify
6132  other specify
6133  other specify
6134          units
6135          units
6136  other specify
6137  other specify
6139  other specify
6140  other specify
6148             mg
6149             mg
6150             mg
6152             mg
6161             mg
6164  other specify
6200  other specify
6202  other specify
6206  other specify
6208  other specify
6215  other specify
6217             mg
6218  other specify
6221          drops
6224  other specify
6225  other specify
6226  other specify
6231  other specify
6232  other specify
6244          drops
6254  other specify
6255             mg
6257  other specify
6258  other specify
6262  other specify
6263  other specify
6266          drops
6267          drops
6275  other specify
6282            mcg
6283  other specify
6284             mg
6293  other specify
6296            tsp
6302            mcg
6307             mg
6312    unspecified
6319    unspecified
6320    unspecified
6325             mg
6326  other specify
6328             mg
6329  other specify
6331  other specify
6341  other specify
6342             oz
6343             mg
6358  other specify
6388          drops
6390    unspecified
6395  other specify
6399          drops
6405  other specify
6406  other specify
6411          units
6437             mg
6441             mg
6443          drops
6444  other specify
6451  other specify
6459             mg
6461          drops
6474  other specify
6475  other specify
6486             mg
6495  other specify
6497  other specify
6498             mg
6499  other specify
6500  other specify
6522  other specify
6523  other specify
6527  other specify
6528  other specify
6555  other specify
6562  other specify
6565  other specify
6569  other specify
6570  other specify
6571  other specify
6573  other specify
6579  other specify
6581  other specify
6594  other specify
6602  other specify
6606  other specify
6612  other specify
6625  other specify
6636  other specify
6644  other specify
6647  other specify
6648  other specify
6649             mg
6650             ml
6657  other specify
6658  other specify
6662  other specify
6663  other specify
6680  other specify
6683  other specify
6687  other specify
6688  other specify
6693  other specify
6694             mg
6696  other specify
6697          drops
6698  other specify
6702  other specify
6703          drops
6714             mg
6715  other specify
6716  other specify
6717  other specify
6733            mcg
6739             mg
6751    unspecified
6759          drops
6760  other specify
6763            mcg
6764  other specify
6778  other specify
6779  other specify
6781  other specify
6783  other specify
6786          drops
6789            mcg
6796  other specify
6797             mg
6815             mg
6816  other specify
6817  other specify
6818          drops
6824    unspecified
6826             mg
6828  other specify
6839             mg
6864             ml
6868  other specify
6880  other specify
6886  other specify
6891  other specify
6892  other specify
6906  other specify
6908  other specify
6909  other specify
6910  other specify
6928  other specify
6934          drops
6935          drops
6936          drops
6946             mg
6956    unspecified
6957  other specify
6981  other specify
6982  other specify
6983  other specify
6984  other specify
6986             mg
6999  other specify
7002             mg
7005    unspecified
7006    unspecified
7013             mg
7017  other specify
7018          drops
7019             mg
7021  other specify
7023             ml
7025          drops
7027             gm
7030             mg
7042          drops
7047            mcg
7053            mcg
7054            mcg
7067  other specify
7071          drops
7092  other specify
7093  other specify
7095             mg
7096             mg
7116          drops
7127    unspecified
7130             mg
7131            mcg
7137  other specify
7149  other specify
7151  other specify
7152  other specify
7153  other specify
7154  other specify
7155  other specify
7172  other specify
7173  other specify
7175             oz
7177             oz
7180  other specify
7189  other specify
7208  other specify
7218             mg
7240          drops
7243            mcg
7247  other specify
7248  other specify
7249  other specify
7260  other specify
7261  other specify
7262  other specify
7285             mg
7286             mg
7291  other specify
7294             mg
7295  other specify
7297  other specify
7320  other specify
7342  other specify
7344  other specify
7345  other specify
7346          drops
7371  other specify
7413  other specify
7499             mg
7503  other specify
7510  other specify
7511  other specify
7512  other specify
7513  other specify
7519            mcg
7521  other specify
7522             mg
7523            mcg
7524  other specify
7525            mcg
7526             mg
7551  other specify
7555  other specify
7563  other specify
7564    unspecified
7565            mcg
7566  other specify
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7583  other specify
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7598  other specify
7635             mg
7636             mg
7637             mg
7660  other specify
7671             mg
7673  other specify
7674  other specify
7675             mg
7678  other specify
7679  other specify
7681             mg
7692             mg
7696             mg
7699             mg
7701             mg
7705  other specify
7732  other specify
7742          units
7743          units
7746  other specify
7747  other specify
7748          units
7749          units
7750          units
7751          drops
7754             ml
7759  other specify
7763  other specify
7772    unspecified
7776    unspecified
7783  other specify
7784  other specify
7787          drops
7795  other specify
7812  other specify
7818    unspecified
7820    unspecified
7822    unspecified
7832             ml
7837             mg
7839  other specify
7845          drops
7846          drops
7848             ml
7852    unspecified
7853  other specify
7854    unspecified
7862             mg
7883  other specify
7884  other specify
7885             ml
7887          units
7889          units
7895          drops
7926  other specify
7929  other specify
7934             mg
7935             mg
7941             ml
7944          drops
7946          drops
7961  other specify
7966  other specify
7967  other specify
7968  other specify
7969  other specify
7970             mg
7973          drops
7987             mg
7988  other specify
7993  other specify
7995             mg
7998  other specify
8000  other specify
8009  other specify
8012  other specify
8014  other specify
8017  other specify
8029  other specify
8030  other specify
8040            mcg
8042             mg
8043             mg
8044             mg
8045             mg
8075    unspecified
8086  other specify
8091             mg
8098             oz
8099             oz
8100             mg
8120  other specify
8121  other specify
8122             mg
8123  other specify
8125          units
8128  other specify
8130  other specify
8131  other specify
8136  other specify
8137  other specify
8138  other specify
8139  other specify
8140  other specify
8160  other specify
8182  other specify
8184  other specify
8185  other specify
8186  other specify
8187  other specify
8188  other specify
8195  other specify
8196  other specify
8205  other specify
8206  other specify
8207  other specify
8208  other specify
8209             mg
8210          units
8211          units
8212  other specify
8214             mg
8215  other specify
8221  other specify
8222  other specify
8223          units
8224            mcg
8234  other specify
8235  other specify
8236  other specify
8238          units
8241             mg
8248  other specify
8251             mg
8252  other specify
8280    unspecified
8284  other specify
8293  other specify
8296  other specify
8297  other specify
8298          drops
8299  other specify
8300          drops
8303             mg
8304             ml
8305  other specify
8311          drops
8312          drops
8313          drops
8314             mg
8315             mg
8337             mg
8338             mg
8341          drops
8349  other specify
8354  other specify
8355  other specify
8358  other specify
8359  other specify
8362  other specify
8369  other specify
8370  other specify
8371  other specify
8376  other specify
8377  other specify
8378  other specify
8389             mg
8405  other specify
8408  other specify
8410  other specify
8418  other specify
8420  other specify
8421  other specify
8424  other specify
8425  other specify
8427  other specify
8435  other specify
8436  other specify
8440            mcg
8441            mcg
8451            mcg
8452             mg
8454  other specify
8466  other specify
8467  other specify
8475  other specify
8478  other specify
8509  other specify
8510             mg
8514  other specify
8515  other specify
8528  other specify
8531  other specify
8532  other specify
8533  other specify
8534  other specify
8541             oz
8546          drops
8547             mg
8550             mg
8554  other specify
8555  other specify
8578  other specify
8581  other specify
8582  other specify
8583          drops
8584          drops
8585  other specify
8586  other specify
8588          drops
8591  other specify
8607  other specify
8609  other specify
8613             ml
8673             mg
8674  other specify
8675  other specify
8676  other specify
8677  other specify
8694  other specify
8697             ml
8702  other specify
8707  other specify
8721             mg
8731  other specify
8735  other specify
8736  other specify
8744    unspecified
8745    unspecified
8756  other specify
8757             mg
8759  other specify
8760  other specify
8768  other specify
8769  other specify
8770  other specify
8771  other specify
8777  other specify
8778  other specify
8779  other specify
8780  other specify
8781  other specify
8786  other specify
8790  other specify
8791  other specify
8792    unspecified
8793  other specify
8794  other specify
8795  other specify
8797             mg
8805  other specify
8815  other specify
8819  other specify
8820  other specify
8825             mg
8826  other specify
8828  other specify
8831            mcg
8833  other specify
8834             mg
8837             mg
8843             ml
8851    unspecified
8852    unspecified
8853    unspecified
8855            mcg
8860          drops
8875    unspecified
8876    unspecified
8877          drops
8879  other specify
8885            mcg
8908             mg
8911  other specify
8929  other specify
8930            mcg
8961  other specify
8962            mcg
8994             mg
8995             ml
8997             ml
8998             ml
9026  other specify
9046  other specify
9047          drops
9049          drops
9050  other specify
9052             oz
9053  other specify
9054  other specify
9055  other specify
9056             mg
9060  other specify
9064          drops
9065             gm
9070  other specify
9071  other specify
9084    unspecified
9094  other specify
9095  other specify
9098  other specify
9099             mg
9100  other specify
9101  other specify
9109  other specify
9118  other specify
9132  other specify
9135             mg
9136  other specify
9137             mg
9156          drops
9160  other specify
9161  other specify
9170  other specify
9187          drops
9189  other specify
9193  other specify
9202  other specify
9229             mg
9230  other specify
9233             mg
9236  other specify
9239             ml
9240  other specify
9241  other specify
9242  other specify
9243             mg
9244          drops
9245             mg
9252  other specify
9253  other specify
9254  other specify
9259          units
9267  other specify
9269  other specify
9270  other specify
9271             mg
9292             mg
9294             mg
9295             mg
9297             mg
9312            mcg
9337            mcg
9338             mg
9339             mg
9348             mg
9384          drops
9385          drops
9386  other specify
9387  other specify
9390            mcg
9416             ml
9418          drops
9421  other specify
9422  other specify
9426  other specify
9429  other specify
9432  other specify
9433            tbs
9434  other specify
9435  other specify
9436  other specify
9438  other specify
9447          drops
9452            mcg
9453  other specify
9454  other specify
9485             mg
9494  other specify
9495  other specify
9511             mg
9516  other specify
9524             ml
9544  other specify
9546  other specify
9548  other specify
9549  other specify
9584  other specify
9588          drops
9592    unspecified
9596          drops
9600  other specify
9601  other specify
9602             mg
9603             mg
9604             mg
9609  other specify
9610  other specify
9612  other specify
9613  other specify
9614  other specify
9615  other specify
9616  other specify
9617  other specify
9618  other specify
9619  other specify
9620  other specify
9621  other specify
9635             mg
9640  other specify
9641  other specify
9643  other specify
9718  other specify
9723          units
9759  other specify
9760             ml
9761  other specify
9763             mg
9764             mg
9765             mg
9766  other specify
9770  other specify
9785            mcg
9791             mg
9800  other specify
9807          drops
9808          drops
9809          drops
9815             mg
9821  other specify
9823             ml
9824          drops
9825             ml
9826  other specify
9827          drops
9828             mg
9829             mg
9833  other specify
9837    unspecified
9840    unspecified
9843    unspecified
9860             mg
9862             mg
9863  other specify
9865  other specify
9873    unspecified
9877    unspecified
9884  other specify
9889  other specify
9890  other specify
9891  other specify
9892  other specify
9893  other specify
9894          units
9895          units
9896          units
9897  other specify
9898  other specify
9899  other specify
9900  other specify
9901  other specify
9902  other specify
9903  other specify
9907    unspecified
9917  other specify
9919             mg
9920             mg
9923             mg
9924             mg
9928    unspecified
9931  other specify
9935  other specify
9942  other specify
9943             mg
9944  other specify
9945  other specify
9960            mcg
9961  other specify
9962            mcg
9963  other specify
9966  other specify
9967            mcg
9968  other specify
9969            mcg
9970  other specify
9971            mcg
9972          units
10017 other specify
10026            mg
10027 other specify
10037         drops
10042   unspecified
10053 other specify
10056           mcg
10057            mg
10061 other specify
10063 other specify
10066 other specify
10074         drops
10075           mcg
10092         drops
10093   unspecified
10106           mcg
10107            ml
10108           mcg
10109            ml
10111           mcg
10112           mcg
10113            ml
10115 other specify
10116         drops
10119 other specify
10120         drops
10121 other specify
10123            mg
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134 other specify
10149         drops
10151         drops
10152            mg
10153            mg
10154            mg
10160            mg
10167 other specify
10168            mg
10169            mg
10170 other specify
10176 other specify
10187 other specify
10188 other specify
10195            mg
10198            ml
10200 other specify
10209 other specify
10219 other specify
10230 other specify
10231 other specify
10232            mg
10233            mg
10234            mg
10235           mcg
10245 other specify
10249 other specify
10260   unspecified
10264 other specify
10271            mg
10273 other specify
10274 other specify
10275 other specify
10276 other specify
10292            mg
10301            mg
10312         drops
10313            mg
10314            mg
10316            mg
10320            mg
10324            ml
10334 other specify
10335 other specify
10343            mg
10345 other specify
10347 other specify
10348 other specify
10349 other specify
10356 other specify
10365 other specify
10366 other specify
10367           mcg
10370            mg
10372 other specify
10374 other specify
10379            mg
10400            ml
10403 other specify
10404           mcg
10405 other specify
10408 other specify
10409            mg
10410            mg
10412            mg
10429         drops
10432           mcg
10435            ml
10436 other specify
10441   unspecified
10445 other specify
10470            gm
10477 other specify
10478 other specify
10483           mcg
10485           mcg
10487           mcg
10499            mg
10502            mg
10503 other specify
10505 other specify
10506           mcg
10510           mcg
10511           mcg
10523            mg
10524            mg
10525            ml
10526 other specify
10529 other specify
10555 other specify
10557   unspecified
10565   unspecified
10573   unspecified
10575 other specify
10576            mg
10577            mg
10578            mg
10579            mg
10580            ml
10583 other specify
10587            mg
10588 other specify
10589 other specify
10590 other specify
10591 other specify
10610           mcg
10617            ml
10618 other specify
10619 other specify
10624 other specify
10628 other specify
10642            oz
10650            mg
10652            mg
10653 other specify
10655 other specify
10656            mg
10658            mg
10667            mg
10668            mg
10669            mg
10671            mg
10678            mg
10682            mg
10683 other specify
10684 other specify
10685 other specify
10686 other specify
10687 other specify
10688           tbs
10689 other specify
10693            mg
10694 other specify
10696         drops
10697           tbs
10701            mg
10706            mg
10707 other specify
10711 other specify
10712 other specify
10713 other specify
10714 other specify
10715           tbs
10717 other specify
10718         drops
10725 other specify
10726 other specify
10727 other specify
10740   unspecified
10743 other specify
10751   unspecified
10755           mcg
10756 other specify
10766           mcg
10769           mcg
10780 other specify
10781 other specify
10782            mg
10783            mg
10792           mcg
10794 other specify
10796 other specify
10825 other specify
10827 other specify
10830 other specify
10837 other specify
10841 other specify
10842 other specify
10843 other specify
10846 other specify
10849 other specify
10853 other specify
10863 other specify
10865         units
10866         units
10867            mg
10870 other specify
10871 other specify
10874 other specify
10877 other specify
10878 other specify
10892         drops
10893           mcg
10894            mg
10896         drops
10898            ml
10899         drops
10900           mcg
10901         drops
10905 other specify
10925            mg
10926            mg
10928 other specify
10929 other specify
10930            mg
10934 other specify
10938 other specify
10953         drops
10959         drops
10970 other specify
10971 other specify
11003 other specify
11008 other specify
11009 other specify
11010 other specify
11011 other specify
11016 other specify
11021   unspecified
11035 other specify
11036 other specify
11037 other specify
11038 other specify
11052 other specify
11065            mg
11066            mg
11067            mg
11069 other specify
11070 other specify
11071            mg
11085   unspecified
11088   unspecified
11093         drops
11112            mg
11134 other specify
11142   unspecified
11144            oz
11145            oz
11152 other specify
11153 other specify
11155         units
11156         units
11158 other specify
11159         units
11163         units
11165 other specify
11182   unspecified
11186 other specify
11189            mg
11208            mg
11210 other specify
11211 other specify
11212 other specify
11213   unspecified
11214            mg
11224 other specify
11228 other specify
11229           mcg
11233 other specify
11241            mg
11242 other specify
11276            mg
11291 other specify
11292 other specify
11293 other specify
11294 other specify
11295 other specify
11296 other specify
11301            mg
11305            mg
11307 other specify
11311           mcg
11312           mcg
11315            mg
11316            mg
11317            mg
11318            mg
11326 other specify
11327 other specify
11338 other specify
11340            mg
11346 other specify
11349 other specify
11350         units
11351         units
11352         units
11353            mg
11354         units
11356 other specify
11360   unspecified
11368 other specify
11385 other specify
11386 other specify
11387 other specify
11388 other specify
11394 other specify
11415 other specify
11436 other specify
11437 other specify
11441            mg
11464 other specify
11470   unspecified
11471   unspecified
11473 other specify
11477 other specify
11482            mg
11493   unspecified
11509 other specify
11511            mg
11536            mg
11537         units
11538         units
11545            mg
11546 other specify
11547            mg
11551   unspecified
11560 other specify
11561 other specify
11562 other specify
11563            mg
11564         units
11565            mg
11566            mg
11567 other specify
11568 other specify
11570 other specify
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11589 other specify
11593 other specify
11596 other specify
11599 other specify
11600 other specify
11620         drops
11621         drops
11627         units
11628         units
11630         units
11633            mg
11634            mg
11636            mg
11637 other specify
11641            mg
11651 other specify
11652 other specify
11653 other specify
11654 other specify
11655 other specify
11656 other specify
11659            ml
11660 other specify
11661 other specify
11662 other specify
11664 other specify
11665            mg
11666         drops
11667         drops
11669            mg
11671         drops
11673         drops
11678 other specify
11680 other specify
11681 other specify
11683 other specify
11691 other specify
11692         drops
11693           tbs
11695 other specify
11701 other specify
11702           mcg
11709 other specify
11710 other specify
11719         units
11722         drops
11723            mg
11735 other specify
11741 other specify
11742            ml
11790         drops
11802            mg
11806 other specify
11812 other specify
11813            mg
11814 other specify
11817            mg
11822 other specify
11823 other specify
11824 other specify
11825 other specify
11832 other specify
11833 other specify
11835 other specify
11836 other specify
11837 other specify
11840            mg
11844            mg
11846            mg
11847 other specify
11848 other specify
11850            mg
11856         drops
11861 other specify
11862 other specify
11873 other specify
11874 other specify
11875 other specify
11876            mg
11877            mg
11878            mg
11879         drops
11880            mg
11881 other specify
11882 other specify
11883            mg
11889 other specify
11898           mcg
11911            mg
11919 other specify
11926           mcg
11930 other specify
11959            mg
11960 other specify
11962            mg
11964 other specify
11978 other specify
11979            ml
11980 other specify
11983         units
11993         drops
12009         drops
12010         drops
12014 other specify
12018 other specify
12019 other specify
12020 other specify
12023            mg
12043            mg
12047            mg
12048            ml
12051 other specify
12054 other specify
12090 other specify
12108         drops
12111 other specify
12120   unspecified
12128 other specify
12129 other specify
12130         drops
12135 other specify
12136 other specify
12154 other specify
12155 other specify
12159 other specify
12160 other specify
12164 other specify
12173 other specify
12190 other specify
12194           mcg
12213           mcg
12215           mcg
12221           tsp
12222           tsp
12223 other specify
12261 other specify
12271 other specify
12273 other specify
12279         drops
12283            mg
12299            mg
12306 other specify
12309 other specify
12313            mg
12314            mg
12322            mg
12324 other specify
12334            mg
12336            mg
12337 other specify
12342 other specify
12343 other specify
12345            mg
12346            mg
12349 other specify
12351            mg
12353            mg
12364            mg
12366 other specify
12375            mg
12376            mg
12379            mg
12386            ml
12394   unspecified
12397            ml
12398           mcg
12402 other specify
12405           tsp
12406 other specify
12409 other specify
12410 other specify
12411 other specify
12412            mg
12414 other specify
12415 other specify
12417 other specify
12418 other specify
12420 other specify
12421         units
12422         units
12423 other specify
12427   unspecified
12429         drops
12430 other specify
12431 other specify
12432 other specify
12433           mcg
12434            mg
12438           mcg
12439            mg
12453 other specify
12454 other specify
12455           mcg
12456 other specify
12457 other specify
12461 other specify
12462 other specify
12463           tbs
12466            mg
12469            mg
12470            mg
12471            mg
12472            mg
12473 other specify
12474 other specify
12475            mg
12476            mg
12477   unspecified
12481 other specify
12485         drops
12487            mg
12495 other specify
12497 other specify
12498 other specify
12500 other specify
12506         drops
12511 other specify
12512 other specify
12513 other specify
12514         drops
12516         units
12517            mg
12520 other specify
12521 other specify
12523 other specify
12528 other specify
12529 other specify
12530 other specify
12535 other specify
12536         units
12540 other specify
12541 other specify
12542 other specify
12543 other specify
12546 other specify
12547         units
12548         units
12549         units
12550 other specify
12551 other specify
12552 other specify
12553 other specify
12554 other specify
12567         drops
12569            mg
12571 other specify
12578           mcg
12580           mcg
12585           mcg
12588            mg
12589           mcg
12595            mg
12596            mg
12605            mg
12607            mg
12608            mg
12609            mg
12612           mcg
12613           mcg
12615            ml
12616 other specify
12620 other specify
12623 other specify
12630         units
12632         drops
12636   unspecified
12638 other specify
12639 other specify
12642           mcg
12645            mg
12686 other specify
12692            mg
12693 other specify
12712         drops
12713            mg
12714 other specify
12730         drops
12732         drops
12735 other specify
12738            mg
12740            mg
12744            mg
12749            mg
12754            mg
12755            mg
12756         drops
12771 other specify
12774 other specify
12780 other specify
12781         drops
12784 other specify
12786 other specify
12787 other specify
12788 other specify
12795 other specify
12796 other specify
12797 other specify
12801 other specify
12826 other specify
12828 other specify
12833            mg
12836            mg
12849         drops
12850         drops
12860 other specify
12861         drops
12865         drops
12866 other specify
12870 other specify
12873         drops
12874            mg
12879 other specify
12880 other specify
12881 other specify
12882 other specify
12894         drops
12895 other specify
12901           mcg
12902            mg
12903            mg
12904            mg
12905            ml
12906 other specify
12907 other specify
12908 other specify
12909            mg
12910            mg
12911   unspecified
12916 other specify
12920 other specify
12929 other specify
12942 other specify
12943 other specify
12945 other specify
12947            mg
12948 other specify
12949           mcg
12952 other specify
12953         drops
12955 other specify
12956 other specify
12957 other specify
12959 other specify
12962         drops
12963 other specify
12966 other specify
12979            oz
12987            mg
12988           mcg
12989           mcg
12990            mg
12993           mcg
12994 other specify
12996            mg
13005 other specify
13006 other specify
13008 other specify
13010   unspecified
13013   unspecified
13020   unspecified
13041         drops
13049 other specify
13061 other specify
13062            ml
13063 other specify
13074   unspecified
13075         units
13076         units
13081   unspecified
13084            mg
13086            mg
13096 other specify
13104   unspecified
13108            mg
13109            mg
13110 other specify
13111 other specify
13112 other specify
13113            mg
13114            mg
13115            mg
13116            mg
13124 other specify
13126         drops
13127            ml
13129 other specify
13130 other specify
13133         drops
13136 other specify
13137 other specify
13138         drops
13139           mcg
13140            mg
13142 other specify
13143 other specify
13148            mg
13149 other specify
13150 other specify
13151 other specify
13152 other specify
13154            mg
13157 other specify
13159   unspecified
13160   unspecified
13168 other specify
13169 other specify
13170 other specify
13171            mg
13173         drops
13183            mg
13184            mg
13187 other specify
13188            ml
13189           mcg
13190            mg
13195 other specify
13196 other specify
13198 other specify
13199 other specify
13208 other specify
13209 other specify
13233 other specify
13238            mg
13246 other specify
13248         units
13249         units
13262           mcg
13264           mcg
13270            mg
13271 other specify
13277         drops
13278 other specify
13279 other specify
13286            gm
13287            oz
13288           mcg
13297 other specify
13298 other specify
13299            mg
13307 other specify
13308 other specify
13309 other specify
13313 other specify
13314 other specify
13315         drops
13318         drops
13321 other specify
13331 other specify
13332 other specify
13334            mg
13340         drops
13341 other specify
13343 other specify
13344 other specify
13345         drops
13348            ml
13349            mg
13353         drops
13354 other specify
13355 other specify
13356            mg
13357 other specify
13376         units
13405            mg
13411   unspecified
13454 other specify
13455 other specify
13456            mg
13459 other specify
13460 other specify
13461 other specify
13462 other specify
13464            mg
13468 other specify
13470 other specify
13471 other specify
13475 other specify
13476 other specify
13479 other specify
13483 other specify
13484 other specify
13485            mg
13487            mg
13496         drops
13502         units
13503         units
13506 other specify
13532 other specify
13537            mg
13538 other specify
13562            mg
13563 other specify
13564            mg
13575 other specify
13576 other specify
13579         drops
13581            mg
13585            mg
13590 other specify
13594         drops
13595         drops
13601 other specify
13603            mg
13605            mg
13609 other specify
13615         drops
13619            mg
13623 other specify
13624 other specify
13625 other specify
13628 other specify
13631 other specify
13654 other specify
13657 other specify
13659         drops
13660 other specify
13666 other specify
13687            mg
13688            ml
13693 other specify
13715            mg
13723 other specify
13724 other specify
13730 other specify
13737 other specify
13740   unspecified
13741   unspecified
13747            mg
13756         drops
13768         drops
13769 other specify
13774            mg
13775           mcg
13776 other specify
13782 other specify
13783 other specify
13786 other specify
13796 other specify
13803            mg
13881            ml
13884            ml
13893            mg
13894            mg
13896 other specify
13902            mg
13903            mg
13904            mg
13905            mg
13906            mg
13908            ml
13910 other specify
13912   unspecified
13913   unspecified
13925            mg
13943         units
13946 other specify
13994         units
13995         units
13996         drops
13998 other specify
14006 other specify
14007 other specify
14008         drops
14050 other specify
14051 other specify
14055            mg
14059         drops
14060 other specify
14061            mg
14062            mg
14063         drops
14064 other specify
14072            mg
14106 other specify
14114 other specify
14118            mg
14120            ml
14121            ml
14122            ml
14123            ml
14124            ml
14128            mg
14129 other specify
14131 other specify
14147 other specify
14148 other specify
14151 other specify
14154 other specify
14162 other specify
14163 other specify
14164 other specify
14165         units
14166         units
14169            mg
14170 other specify
14171 other specify
14172 other specify
14173 other specify
14174 other specify
14175         drops
14177 other specify
14178 other specify
14179 other specify
14180         drops
14181 other specify
14190         drops
14219 other specify
14221         drops
14228   unspecified
14238 other specify
14241            ml
14242           mcg
14245            ml
14282            mg
14284         units
14291 other specify
14296           mcg
14297           mcg
14301 other specify
14302 other specify
14319           mcg
14323 other specify
14324         drops
14330         drops
14334 other specify
14336         drops
14365 other specify
14366 other specify
14367 other specify
14373 other specify
14376 other specify
14378 other specify
14380 other specify
14385            mg
14386            mg
14387            mg
14388            mg
14404            mg
14405            mg
14406 other specify
14407         drops
14408 other specify
14412            mg
14413            ml
14414 other specify
14415           mcg
14419            mg
14420           mcg
14421            mg
14426            mg
14428            mg
14429 other specify
14431 other specify
14432 other specify
14433 other specify
14434 other specify
14443 other specify
14444 other specify
14445 other specify
14446 other specify
14447 other specify
14448 other specify
14449 other specify
14451 other specify
14455 other specify
14471 other specify
14473 other specify
14477         units
14479 other specify
14488 other specify
14489 other specify
14490 other specify
14492            mg
14493            mg
14495 other specify
14498 other specify
14499 other specify
14512         units
14513         units
14528 other specify
14529 other specify
14547 other specify
14563            mg
14576 other specify
14578 other specify
14582 other specify
14583 other specify
14584 other specify
14585 other specify
14586 other specify
14587 other specify
14588 other specify
14601 other specify
14605            mg
14608            mg
14637         drops
14645            mg
14649            mg
14650 other specify
14654 other specify
14656            mg
14657            mg
14658 other specify
14659            mg
14660            mg
14664 other specify
14665 other specify
14697 other specify
14699 other specify
14700 other specify
14701 other specify
14702           mcg
14711 other specify
14712 other specify
14713 other specify
14720 other specify
14721 other specify
14722 other specify
14723 other specify
14726 other specify
14727            mg
14728            mg
14730            mg
14731            mg
14733            mg
14734            mg
14737 other specify
14738 other specify
14744 other specify
14748 other specify
14754 other specify
14755 other specify
14756         drops
14757         drops
14758            mg
14759            mg
14760 other specify
14763 other specify
14764         drops
14775   unspecified
14777   unspecified
14778   unspecified
14833            mg
14834            mg
14838            mg
14839            mg
14857         units
14858            mg
14862            mg
14863            mg
14864         units
14867            mg
14870         units
14871         units
14878   unspecified
14883            mg
14884            mg
14899            ml
14907            mg
14911            mg
14913            mg
14914            mg
14934         units
14943         units
14944            ml
14949            mg
14969           mcg
14972 other specify
14973 other specify
14974 other specify
14975 other specify
14976            mg
14977            ml
14978 other specify
14979 other specify
14981 other specify
14982 other specify
14983 other specify
14999           mcg
15001           mcg
15002            oz
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15017 other specify
15021           mcg
15022            oz
15023 other specify
15025            oz
15026            oz
15027            oz
15028            mg
15029            mg
15030            ml
15035         units
15036         units
15045            mg
15048 other specify
15055            mg
15059 other specify
15061 other specify
15077 other specify
15092            mg
15102         drops
15129 other specify
15130           mcg
15131            mg
15132            mg
15137 other specify
15139 other specify
15140 other specify
15144         units
15145         units
15150 other specify
15151         units
15155   unspecified
15170            mg
15172            mg
15173            mg
15174            mg
15179            mg
15184            mg
15196 other specify
15197 other specify
15202           mcg
15203           mcg
15209 other specify
15213 other specify
15244            mg
15250 other specify
15252         drops
15253            mg
15256         units
15259           tsp
15268 other specify
15269 other specify
15274   unspecified
15308 other specify
15309 other specify
15310 other specify
15311 other specify
15314         units
15315 other specify
15317 other specify
15319            mg
15321 other specify
15322 other specify
15323            oz
15332 other specify
15333            gm
15334 other specify
15339            mg
15345            mg
15348            mg
15360            mg
15361 other specify
15362 other specify
15363         drops
15365 other specify
15366 other specify
15367 other specify
15373 other specify
15374 other specify
15375 other specify
15376 other specify
15377 other specify
15378 other specify
15379            mg
15383            mg
15384            mg
15402            oz
15412           mcg
15441            mg
15445         drops
15448           mcg
15451 other specify
15453 other specify
15454   unspecified
15512         units
15513         units
15515 other specify
15524 other specify
15528            mg
15530 other specify
15531            mg
15533 other specify
15551 other specify
15552 other specify
15554 other specify
15555 other specify
15556 other specify
15563 other specify
15581 other specify
15582            mg
15583            mg
15584         drops
15585 other specify
15586 other specify
15587            mg
15589 other specify
15590 other specify
15591 other specify
15592         drops
15593 other specify
15594 other specify
15597 other specify
15598 other specify
15599 other specify
15600 other specify
15601 other specify
15602            mg
15603   unspecified
15604   unspecified
15613           tbs
15614         drops
15616           mcg
15618           mcg
15633            mg
15636         units
15649 other specify
15650 other specify
15661 other specify
15662         drops
15663 other specify
15667         drops
15669           mcg
15670            mg
15672           mcg
15673           mcg
15674            mg
15675 other specify
15689 other specify
15690         units
15691         units
15692         units
15693         units
15699           mcg
15701 other specify
15705         drops
15706 other specify
15707            mg
15712 other specify
15715            mg
15733           mcg
15750   unspecified
15757 other specify
15758 other specify
15767         drops
15768         drops
15769         drops
15770         drops
15776            mg
15778 other specify
15781 other specify
15782 other specify
15787            mg
15788 other specify
15790 other specify
15796            mg
15799   unspecified
15811 other specify
15815 other specify
15818         units
15829           mcg
15839 other specify
15840 other specify
15841 other specify
15842 other specify
15844 other specify
15848 other specify
15849 other specify
15850 other specify
15856 other specify
15857 other specify
15858            mg
15859 other specify
15860            mg
15861 other specify
15862 other specify
15863 other specify
15864 other specify
15867 other specify
15868 other specify
15869 other specify
15870 other specify
15871            mg
15886 other specify
15888   unspecified
15889         drops
15890            mg
15891 other specify
15892            mg
15907         drops
15911         units
15912            mg
15917 other specify
15918           tsp
15919            mg
15920           tsp
15921 other specify
15922 other specify
15923            gm
15924           mcg
15925            mg
15926            mg
15927            iu
15928 other specify
15929 other specify
15930         units
15931            mg
15932           mcg
15933            iu
15934            mg
15935         units
15936            mg
15937 other specify
15944            mg
15945         units
15981 other specify
15983 other specify
15986 other specify
15992 other specify
15993 other specify
15995 other specify
15996 other specify
15997 other specify
15998 other specify
15999 other specify
16000 other specify
16005            mg
16007            mg
16008            mg
16009            ml
16016 other specify
16026 other specify
16033           mcg
16036 other specify
16037            mg
16038 other specify
16039 other specify
16052 other specify
16053 other specify
16094 other specify
16097 other specify
16098 other specify
16105            mg
16106            mg
16107 other specify
16108            mg
16109            mg
16110         units
16111            ml
16112            mg
16113 other specify
16114         drops
16115         drops
16116            mg
16117            mg
16118            mg
16150 other specify
16152 other specify
16153 other specify
16154 other specify
16155 other specify
16156 other specify
16157 other specify
16158 other specify
16159 other specify
16160 other specify
16161 other specify
16162 other specify
16163 other specify
16164 other specify
16165 other specify
16177 other specify
16179 other specify
16199            mg
16229 other specify
16230 other specify
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16251         drops
16253            gm
16285            mg
16286   unspecified
16287 other specify
16288 other specify
16289 other specify
16290         drops
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16312 other specify
16313 other specify
16315 other specify
16316 other specify
16317         drops
16318 other specify
16319 other specify
16321 other specify
16322 other specify
16324 other specify
16325 other specify
16326 other specify
16340 other specify
16347 other specify
16352            mg
16355 other specify
16356 other specify
16367         drops
16371         drops
16374         drops
16376   unspecified
16378         drops
16382         drops
16386            mg
16387 other specify
16388 other specify
16389           mcg
16400 other specify
16401 other specify
16403 other specify
16404 other specify
16408           mcg
16413 other specify
16414 other specify
16415            mg
16416            mg
16418 other specify
16419 other specify
16420 other specify
16425 other specify
16426 other specify
16434            mg
16435            mg
16436            mg
16437            mg
16440 other specify
16441 other specify
16442 other specify
16443 other specify
16447 other specify
16448 other specify
16450 other specify
16452            ml
16453            ml
16454            mg
16462            ml
16472            mg
16474 other specify
16477            mg
16478         drops
16479 other specify
16497         drops
16522 other specify
16523 other specify
16524 other specify
16525            mg
16526            ml
16544 other specify
16546         units
16553 other specify
16579 other specify
16580 other specify
16595 other specify
16596 other specify
16597 other specify
16598 other specify
16599 other specify
16601 other specify
16602            mg
16605           tbs
16606 other specify
16608 other specify
16616            mg
16617            gm
16624            mg
16630 other specify
16631 other specify
16635 other specify
16636 other specify
16639 other specify
16646         drops
16657         drops
16684 other specify
16685 other specify
16687 other specify
16689 other specify
16694 other specify
16695 other specify
16702 other specify
16703 other specify
16704 other specify
16705 other specify
16711 other specify
16712 other specify
16714 other specify
16717 other specify
16718 other specify
16721 other specify
16722 other specify
16723 other specify
16724           tbs
16726 other specify
16745            mg
16746            mg
16749            mg
16750            mg
16751            mg
16774 other specify
16777 other specify
16778 other specify
16779 other specify
16783   unspecified
16784   unspecified
16785   unspecified
16786            mg
16787            mg
16789 other specify
16791            ml
16793            mg
16798         drops
16805 other specify
16807 other specify
16809 other specify
16810 other specify
16811 other specify
16814            ml
16815 other specify
16816         drops
16821 other specify
16823         drops
16834   unspecified
16838   unspecified
16840   unspecified
16841   unspecified
16847   unspecified
16849 other specify
16860            mg
16869 other specify
16877            mg
16882 other specify
16915            mg
16916            mg
16918 other specify
16929 other specify
16930 other specify
16931            mg
16933            mg
16935         units
16936 other specify
16937 other specify
16939         drops
16970           mcg
16983 other specify
16993 other specify
16994 other specify
16998 other specify
16999           mcg
17000            ml
17010 other specify
17012 other specify
17013 other specify
17014 other specify
17018 other specify
17019 other specify
17020   unspecified
17022         drops
17033           mcg
17035         units
17036         units
17042 other specify
17049           mcg
17051            mg
17053         units
17062         drops
17088 other specify
17089            mg
17090 other specify
17091 other specify
17094 other specify
17095 other specify
17098           mcg
17099            mg
17120 other specify
17121 other specify
17126 other specify
17127 other specify
17138 other specify
17143 other specify
17153            mg
17156 other specify
17157 other specify
17173         drops
17177 other specify
17180 other specify
17209 other specify
17210           mcg
17211            mg
17218           mcg
17220           mcg
17221           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17232 other specify
17233 other specify
17234 other specify
17236 other specify
17237 other specify
17238 other specify
17239 other specify
17240           mcg
17241           mcg
17248 other specify
17251 other specify
17252 other specify
17253            mg
17254 other specify
17255 other specify
17263            mg
17264            mg
17266         units
17268 other specify
17283           mcg
17285           mcg
17297            mg
17298 other specify
17307            mg
17308            mg
17309            mg
17310            mg
17313           mcg
17314            mg
17315            mg
17327 other specify
17329 other specify
17330 other specify
17335 other specify
17352 other specify
17355 other specify
17381 other specify
17386           mcg
17387           mcg
17389           mcg
17390 other specify
17391           mcg
17393 other specify
17399 other specify
17406 other specify
17407 other specify
17412   unspecified
17417 other specify
17418 other specify
17419 other specify
17420 other specify
17426   unspecified
17427   unspecified
17440            mg
17446         drops
17461            mg
17463 other specify
17468            mg
17470            gm
17482            oz
17486 other specify
17487 other specify
17488 other specify
17489 other specify
17490 other specify
17491 other specify
17492 other specify
17493 other specify
17495 other specify
17496 other specify
17518 other specify
17519 other specify
17576 other specify
17583            ml
17588 other specify
17602 other specify
17603 other specify
17605            mg
17611 other specify
17615 other specify
17627 other specify
17633            ml
17659 other specify
17672            mg
17673            mg
17680   unspecified
17697            mg
17702            mg
17703            mg
17719            mg
17720 other specify
17722 other specify
17742         drops
17743         drops
17755 other specify
17779 other specify
17780            mg
17781         drops
17782 other specify
17798         drops
17802 other specify
17803   unspecified
17804   unspecified
17818 other specify
17832 other specify
17845 other specify
17853   unspecified
17855         drops
17856         drops
17860   unspecified
17863 other specify
17865   unspecified
17882            mg
17955            mg
17957            gm
18023 other specify
18024 other specify
18055         drops
18056            mg
18057 other specify
18058 other specify
18072 other specify
18074         drops
18075 other specify
18094 other specify
18095 other specify
18096            ml
18098         drops
18114            mg
18115            mg
18116            mg
18118 other specify
18119 other specify
18124 other specify
18134   unspecified
18141   unspecified
18147 other specify
18159         drops
18164         drops
18165 other specify
18188 other specify
18192            iu
18193            mg
18195            mg
18199            mg
18202 other specify
18205 other specify
18213         units
18214 other specify
18215            mg
18216            mg
18217           mcg
18218           mcg
18220            mg
18221            ml
18222 other specify
18238 other specify
18249            mg
18251 other specify
18252            mg
18258 other specify
18260            mg
18262 other specify
18263            iu
18264            mg
18266            mg
18271            ml
18275 other specify
18276         drops
18277         units
18323   unspecified
18325   unspecified
18326   unspecified
18329            ml
18330            ml
18337 other specify
18338         drops
18339 other specify
18340 other specify
18341 other specify
18342         units
18343         drops
18344 other specify
18345            mg
18365 other specify
18366 other specify
18370 other specify
18371 other specify
18373 other specify
18374 other specify
18404         drops
18415 other specify
18427 other specify
18441            mg
18459 other specify
18460 other specify
18461 other specify
18464            mg
18466         drops
18467           mcg
18469 other specify
18470           mcg
18471 other specify
18472           mcg
18479            mg
18480            mg
18483            mg
18489 other specify
18490 other specify
18494 other specify
18495 other specify
18500 other specify
18502 other specify
18512           mcg
18514 other specify
18520 other specify
18525            mg
18534 other specify
18543 other specify
18562 other specify
18565 other specify
18571 other specify
18572 other specify
18576 other specify
18577 other specify
18580 other specify
18588   unspecified
18591 other specify
18595 other specify
18609            mg
18612 other specify
18621         drops
18649 other specify
18685            mg
18686           mcg
18687         drops
18688            mg
18689            mg
18690           mcg
18694            mg
18696 other specify
18697 other specify
18703 other specify
18707           mcg
18716 other specify
18718 other specify
18729 other specify
18734 other specify
18735 other specify
18736 other specify
18743 other specify
18750           mcg
18753            mg
18774            mg
18775            mg
18795 other specify
18796 other specify
18797 other specify
18798 other specify
18799           mcg
18800           mcg
18820         drops
18821         drops
18829            mg
18837 other specify
18838 other specify
18839 other specify
18844 other specify
18845 other specify
18847 other specify
18850 other specify
18851            mg
18852 other specify
18853 other specify
18854 other specify
18882 other specify
18904            mg
18905            mg
18908 other specify
18909 other specify
18919 other specify
18921 other specify
18924 other specify
18933            mg
18935 other specify
18936 other specify
18937 other specify
18961 other specify
18964 other specify
18970 other specify
18987           mcg
18988 other specify
18989 other specify
18991 other specify
18993           tbs
18997            mg
18998   unspecified
19003   unspecified
19004         drops
19005 other specify
19006 other specify
19008 other specify
19009 other specify
19015            mg
19019            mg
19021   unspecified
19022 other specify
19023 other specify
19025 other specify
19040            mg
19041            mg
19055 other specify
19056 other specify
19057         drops
19061 other specify
19062            mg
19068            mg
19070 other specify
19072 other specify
19073 other specify
19078 other specify
19082 other specify
19122 other specify
19130 other specify
19152         drops
19153 other specify
19154 other specify
19159   unspecified
19165 other specify
19169 other specify
19170 other specify
19183 other specify
19184 other specify
19213 other specify
19214 other specify
19215 other specify
19216 other specify
19217 other specify
19220           mcg
19221 other specify
19222 other specify
19223 other specify
19224 other specify
19241            mg
19242            mg
19246 other specify
19252            mg
19253            mg
19254            mg
19255           mcg
19256            mg
19257            mg
19258            mg
19259            mg
19271 other specify
19272 other specify
19273 other specify
19276         drops
19278 other specify
19281 other specify
19282 other specify
19288         drops
19298         drops
19299 other specify
19318 other specify
19325         drops
19326 other specify
19327 other specify
19331            mg
19335            mg
19336            mg
19338 other specify
19350 other specify
19353   unspecified
19354   unspecified
19356           mcg
19357 other specify
19373 other specify
19386 other specify
19387 other specify
19390 other specify
19391 other specify
19423 other specify
19427 other specify
19445 other specify
19446 other specify
19447 other specify
19448 other specify
19449 other specify
19450 other specify
19451            mg
19452   unspecified
19453   unspecified
19454   unspecified
19457 other specify
19462 other specify
19463 other specify
19464         drops
19465         drops
19476 other specify
19482 other specify
19486         units
19487 other specify
19491         drops
19492 other specify
19493 other specify
19495 other specify
19500            mg
19537 other specify
19567            mg
19568 other specify
19596            mg
19603 other specify
19617            ml
19641   unspecified
19651         drops
19662 other specify
19663            mg
19673 other specify
19674 other specify
19684            mg
19685 other specify
19686            mg
19688 other specify
19689            mg
19690            gm
19708           mcg
19710 other specify
19711 other specify
19712 other specify
19713 other specify
19714 other specify
19715 other specify
19716 other specify
19717 other specify
19718 other specify
19722 other specify
19735 other specify
19737         drops
19741         units
19754            mg
19767         drops
19768 other specify
19771            mg
19776 other specify
19777 other specify
19778 other specify
19788 other specify
19790            oz
19792   unspecified
19801 other specify
19803 other specify
19823 other specify
19828 other specify
19829 other specify
19838   unspecified
19843         drops
19844            ml
19845         drops
19851         units
19856 other specify
19860            mg
19866 other specify
19876            mg
19881   unspecified
19888 other specify
19907            mg
19909            mg
19911 other specify
19912         drops
19914 other specify
19917 other specify
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19930            mg
19932         units
19933 other specify
19944            mg
19945            mg
19946 other specify
19947            mg
19948            mg
19949            mg
19950            mg
19952 other specify
19958 other specify
19969         drops
19975 other specify
19984   unspecified
20001            mg
20002            mg
20003           mcg
20006            mg
20007 other specify
20019 other specify
20020 other specify
20024 other specify
20025 other specify
20026 other specify
20027 other specify
20028 other specify
20038 other specify
20039 other specify
20065            ml
20068            mg
20069 other specify
20070            ml
20072           mcg
20074            mg
20096 other specify
20099 other specify
20105            ml
20106            ml
20125            ml
20126 other specify
20127 other specify
20130         drops
20131            mg
20135            mg
20144 other specify
20145 other specify
20149         drops
20150 other specify
20164         drops
20173 other specify
20174 other specify
20175            gm
20182 other specify
20193 other specify
20218 other specify
20219 other specify
20220            mg
20221 other specify
20222 other specify
20224 other specify
20225            mg
20231         drops
20232         drops
20233 other specify
20234 other specify
20240 other specify
20241 other specify
20243         drops
20244 other specify
20245 other specify
20251 other specify
20272 other specify
20275            mg
20282            mg
20292           mcg
20293 other specify
20295 other specify
20297         units
20298         drops
20299         drops
20300 other specify
20301 other specify
20302            mg
20303 other specify
20306         units
20307            mg
20312 other specify
20315   unspecified
20337 other specify
20339 other specify
20340 other specify
20342 other specify
20343 other specify
20344            mg
20348 other specify
20356            mg
20374 other specify
20376 other specify
20377 other specify
20380 other specify
20382            mg
20387 other specify
20388 other specify
20390 other specify
20392         drops
20393         drops
20402 other specify
20405 other specify
20406            ml
20409            mg
20411            mg
20413            mg
20425 other specify
20426 other specify
20441 other specify
20442            mg
20444 other specify
20446            ml
20453            mg
20460            mg
20485 other specify
20490 other specify
20491 other specify
20510 other specify
20511 other specify
20512 other specify
20516 other specify
20517 other specify
20518 other specify
20554 other specify
20555 other specify
20561 other specify
20565 other specify
20568 other specify
20574         drops
20577   unspecified
20579 other specify
20582 other specify
20585 other specify
20615   unspecified
20623 other specify
20636            ml
20637           mcg
20638            ml
20640           mcg
20641 other specify
20642            ml
20645 other specify
20648            ml
20651            ml
20659   unspecified
20666   unspecified
20667   unspecified
20678   unspecified
20698 other specify
20701 other specify
20702 other specify
20704 other specify
20705 other specify
20707 other specify
20708 other specify
20709 other specify
20712 other specify
20717 other specify
20718            mg
20728            mg
20738            mg
20745 other specify
20748           mcg
20750         drops
20761            mg
20762            mg
20763            mg
20766            mg
20767            mg
20771            mg
20783           mcg
20791   unspecified
20796   unspecified
20800 other specify
20808 other specify
20809 other specify
20814 other specify
20817            mg
20819            mg
20820            mg
20849         drops
20852            mg
20854            mg
20855            mg
20857            mg
20858            mg
20859            mg
20860            mg
20861         drops
20862 other specify
20863 other specify
20872 other specify
20897            oz
20918            mg
20939 other specify
20940 other specify
20941 other specify
20947 other specify
20949 other specify
20962         units
20963         units
20964 other specify
20965         units
20966         units
20972            ml
21003 other specify
21013 other specify
21017 other specify
21022            mg
21025            mg
21029            mg
21069            mg
21070            mg
21071            mg
21074 other specify
21078 other specify
21080            mg
21088 other specify
21102         units
21109 other specify
21110 other specify
21111            gm
21112         drops
21114 other specify
21115 other specify
21116            mg
21117            mg
21118            mg
21119            mg
21122 other specify
21123 other specify
21124         drops
21125            mg
21126            mg
21127 other specify
21128            mg
21129            mg
21130            mg
21131 other specify
21132            ml
21133 other specify
21168            mg
21169            ml
21170           mcg
21172            mg
21178 other specify
21179            mg
21180            mg
21181 other specify
21182            mg
21183            mg
21189 other specify
21190 other specify
21192 other specify
21201            mg
21224 other specify
21253            mg
21254 other specify
21256            mg
21267            mg
21268         drops
21269 other specify
21273            mg
21278         drops
21282         drops
21287         drops
21309            mg
21326         drops
21328            mg
21331   unspecified
21336            mg
21337            mg
21338 other specify
21348            mg
21359            mg
21361            mg
21364            mg
21367            ml
21369 other specify
21374            mg
21384           mcg
21385            mg
21386         drops
21387            gm
21388            gm
21389            gm
21394            mg
21403            mg
21413   unspecified
21416 other specify
21442            mg
21445 other specify
21448 other specify
21449 other specify
21460            mg
21465            mg
21472            mg
21481         drops
21491         drops
21492 other specify
21493 other specify
21495            gm
21498            mg
21504 other specify
21507 other specify
21508         drops
21509 other specify
21522 other specify
21527         drops
21528 other specify
21531            mg
21532 other specify
21533 other specify
21534 other specify
21535            mg
21545 other specify
21546 other specify
21547            mg
21548            mg
21549         units
21552 other specify
21553         drops
21554         drops
21555            ml
21558            mg
21562 other specify
21563 other specify
21564 other specify
21585 other specify
21586 other specify
21587         drops
21593   unspecified
21600 other specify
21602            mg
21603            mg
21604            mg
21605         units
21606            mg
21607            mg
21608            mg
21609            mg
21612            mg
21614 other specify
21615 other specify
21616 other specify
21617            mg
21618            mg
21619 other specify
21620 other specify
21621 other specify
21622 other specify
21625           tsp
21632   unspecified
21637         drops
21642 other specify
21643            mg
21644 other specify
21645 other specify
21646 other specify
21648 other specify
21649 other specify
21650 other specify
21651            mg
21652 other specify
21653 other specify
21654            mg
21655 other specify
21658 other specify
21659 other specify
21660 other specify
21661 other specify
21666 other specify
21673   unspecified
21677   unspecified
21678 other specify
21680         drops
21685 other specify
21701 other specify
21705 other specify
21707 other specify
21708 other specify
21723            mg
21725 other specify
21727 other specify
21739            mg
21748 other specify
21749 other specify
21753            mg
21754            mg
21755            mg
21757            mg
21767            mg
21782           mcg
21783 other specify
21796            mg
21809   unspecified
21810   unspecified
21814 other specify
21815         drops
21833         drops
21844           mcg
21851            mg
21865 other specify
21866 other specify
21867            mg
21869           mcg
21872            ml
21873            mg
21875           mcg
21876           mcg
21877            ml
21878   unspecified
21886   unspecified
21894           tbs
21897 other specify
21898 other specify
21899 other specify
21911            mg
21912           mcg
21914 other specify
21915 other specify
21918 other specify
21921         drops
21925 other specify
21927            mg
21949         drops
21955           tbs
21956           tbs
21957           tbs
21959            mg
21982 other specify
21993 other specify
22017           mcg
22020 other specify
22022            gm
22023 other specify
22025 other specify
22026 other specify
22037 other specify
22038 other specify
22041 other specify
22042 other specify
22043            ml
22045 other specify
22046 other specify
22048 other specify
22050         units
22051            mg
22060            mg
22062 other specify
22064 other specify
22088 other specify
22089 other specify
22092 other specify
22093 other specify
22112            mg
22118 other specify
22120 other specify
22121         drops
22125         units
22128            ml
22136 other specify
22140 other specify
22141 other specify
22151   unspecified
22160         units
22161 other specify
22162            mg
22163         units
22173 other specify
22175 other specify
22176           mcg
22177            mg
22179 other specify
22189 other specify
22190 other specify
22191 other specify
22196 other specify
22197 other specify
22199 other specify
22201   unspecified
22216 other specify
22217 other specify
22218         drops
22219         drops
22222 other specify
22223 other specify
22224 other specify
22225            mg
22226            mg
22227            mg
22228            mg
22229 other specify
22230            mg
22237            mg
22238            mg
22239            mg
22240            ml
22241            ml
22243   unspecified
22245            mg
22253 other specify
22261 other specify
22262 other specify
22265 other specify
22267 other specify
22268 other specify
22269            mg
22270 other specify
22272 other specify
22289            mg
22299            mg
22306 other specify
22308            mg
22311            mg
22313 other specify
22314 other specify
22315 other specify
22316            mg
22319            mg
22321 other specify
22323 other specify
22341 other specify
22342 other specify
22343 other specify
22345   unspecified
22346   unspecified
22347   unspecified
22349   unspecified
22351            mg
22352            mg
22353            mg
22367         units
22403            mg
22404 other specify
22407            mg
22408 other specify
22410 other specify
22413 other specify
22417 other specify
22430 other specify
22439 other specify
22440            mg
22441 other specify
22459   unspecified
22463   unspecified
22482            mg
22520            gm
22530            mg
22531 other specify
22532 other specify
22533 other specify
22534            mg
22537 other specify
22540   unspecified
22541 other specify
22545 other specify
22546 other specify
22547         drops
22548            mg
22549 other specify
22552   unspecified
22556            ml
22557 other specify
22558 other specify
22574         units
22575 other specify
22577 other specify
22578 other specify
22579           mcg
22583 other specify
22585   unspecified
22598 other specify
22599            mg
22600            mg
22601         units
22606 other specify
22607 other specify
22610            mg
22611            mg
22625 other specify
22653 other specify
22655 other specify
22656 other specify
22662 other specify
22667 other specify
22669         drops
22670 other specify
22672         drops
22673            mg
22681 other specify
22682 other specify
22683 other specify
22690 other specify
22691            mg
22692 other specify
22693 other specify
22704 other specify
22705 other specify
22707 other specify
22708 other specify
22709            gm
22710            ml
22711 other specify
22713 other specify
22714 other specify
22715            gm
22716 other specify
22717 other specify
22718 other specify
22719 other specify
22721            ml
22733 other specify
22734            mg
22748 other specify
22749            mg
22750 other specify
22751            mg
22752            mg
22754 other specify
22763 other specify
22764 other specify
22765 other specify
22766            mg
22770            mg
22777            mg
22778            mg
22779            mg
22780            mg
22795 other specify
22796         drops
22797 other specify
22798 other specify
22799 other specify
22800 other specify
22801 other specify
22802 other specify
22803 other specify
22804 other specify
22830            mg
22840           mcg
22848 other specify
22853 other specify
22858 other specify
22875 other specify
22886 other specify
22909           mcg
22910            mg
22911            mg
22912            mg
22919 other specify
22920 other specify
22921            mg
22922         drops
22923 other specify
22926 other specify
22929 other specify
22936 other specify
22938            ml
22939         drops
22954            ml
22955           mcg
22963 other specify
22965 other specify
22966 other specify
22967 other specify
22971 other specify
22990 other specify
22991            mg
22992         drops
22994 other specify
23005         drops
23006         drops
23007         drops
23008         drops
23009            ml
23018            mg
23019            mg
23024 other specify
23025 other specify
23043 other specify
23049            mg
23051           mcg
23053 other specify
23055         units
23059 other specify
23060 other specify
23061 other specify
23064            mg
23065            mg
23066 other specify
23083            mg
23095 other specify
23096 other specify
23100         drops
23102            mg
23103         drops
23108   unspecified
23122 other specify
23123 other specify
23124 other specify
23125 other specify
23134            mg
23137            mg
23138 other specify
23143            mg
23144            mg
23145            mg
23146            mg
23153   unspecified
23154         drops
23163   unspecified
23169            mg
23173 other specify
23175           mcg
23184            ml
23186            mg
23187            mg
23202 other specify
23237            mg
23248            mg
23249         drops
23250 other specify
23251         units
23257            ml
23258 other specify
23259 other specify
23266 other specify
23267           mcg
23268 other specify
23276 other specify
23278 other specify
23279 other specify
23280 other specify
23281            mg
23282            mg
23283            ml
23284            mg
23285            mg
23286           mcg
23288 other specify
23294           mcg
23299            mg
23304         drops
23305 other specify
23306 other specify
23308 other specify
23321            mg
23322 other specify
23325 other specify
23333         units
23336 other specify
23337 other specify
23338 other specify
23340 other specify
23341 other specify
23342 other specify
23344           mcg
23345 other specify
23349 other specify
23350            mg
23351            mg
23352            mg
23353            mg
23354            mg
23355            ml
23356           mcg
23357            mg
23360            mg
23361            mg
23364         drops
23366   unspecified
23384            ml
23385 other specify
23386            mg
23388 other specify
23403 other specify
23404 other specify
23413 other specify
23414 other specify
23419 other specify
23422 other specify
23423 other specify
23427 other specify
23428            mg
23437 other specify
23450 other specify
23452 other specify
23455            mg
23456 other specify
23457            mg
23472 other specify
23482 other specify
23484 other specify
23485 other specify
23487 other specify
23491            mg
23507 other specify
23520 other specify
23533         drops
23534 other specify
23540 other specify
23541 other specify
23548            mg
23552         units
23553 other specify
23555            mg
23557 other specify
23558            mg
23565         drops
23566         drops
23568 other specify
23571 other specify
23572 other specify
23588 other specify
23589 other specify
23590 other specify
23593            ml
23594            mg
23610            mg
23617 other specify
23618 other specify
23619            mg
23620 other specify
23622 other specify
23646 other specify
23647 other specify
23651 other specify
23657 other specify
23659 other specify
23685 other specify
23686 other specify
23688 other specify
23707 other specify
23718           mcg
23721 other specify
23722 other specify
23724 other specify
23730 other specify
23732 other specify
23733            gm
23740 other specify
23747            mg
23749           mcg
23757           mcg
23792            mg
23804            mg
23805 other specify
23808 other specify
23809 other specify
23819 other specify
23825            mg
23861 other specify
23862 other specify
23865            mg
23866 other specify
23868         drops
23871         drops
23872 other specify
23873 other specify
23898 other specify
23899 other specify
23900 other specify
23901 other specify
23902 other specify
23905 other specify
23906 other specify
23909 other specify
23910 other specify
23914 other specify
23917 other specify
23924            mg
23925            mg
23933         drops
23942            gm
23955 other specify
23956 other specify
23957   unspecified
23958   unspecified
23959   unspecified
23965         drops
23969           tbs
23974 other specify
23976            ml
23980         units
23989           mcg
23990            mg
24008           mcg
24010            mg
24012 other specify
24017            mg
24018            mg
24019            mg
24020            mg
24022            mg
24029            mg
24044           mcg
24045           mcg
24046            mg
24062 other specify
24068 other specify
24069           mcg
24072            mg
24075 other specify
24076 other specify
24077 other specify
24079 other specify
24104            mg
24106            mg
24113            mg
24116 other specify
24117 other specify
24139            mg
24142 other specify
24144            mg
24145 other specify
24146            ml
24149            mg
24154   unspecified
24155   unspecified
24157 other specify
24162 other specify
24165 other specify
24166 other specify
24172 other specify
24174 other specify
24185            mg
24189            mg
24192            mg
24193            mg
24194            mg
24195            mg
24201         drops
24202         drops
24203 other specify
24205   unspecified
24206   unspecified
24207   unspecified
24208   unspecified
24209 other specify
24215 other specify
24217 other specify
24218           mcg
24219            mg
24221 other specify
24222 other specify
24246            mg
24250 other specify
24251         drops
24253 other specify
24257 other specify
24258 other specify
24259 other specify
24260            mg
24261 other specify
24262            ml
24263            ml
24264            gm
24265 other specify
24266            mg
24267            ml
24268            ml
24269            mg
24276         units
24282 other specify
24312 other specify
24313         drops
24314 other specify
24319            mg
24322 other specify
24325            mg
24328            mg
24343            mg
24375            mg
24379           mcg
24393 other specify
24394 other specify
24395 other specify
24396            mg
24397            gm
24399            mg
24400            mg
24401            mg
24402 other specify
24403 other specify
24404            mg
24405            mg
24406            mg
24407            mg
24408            ml
24409            oz
24410 other specify
24413 other specify
24416 other specify
24417 other specify
24418            mg
24419            mg
24420           tsp
24421 other specify
24422 other specify
24424 other specify
24425 other specify
24426 other specify
24427            mg
24428            mg
24429           tsp
24431         units
24432         units
24434         drops
24435 other specify
24436 other specify
24437 other specify
24438            mg
24451 other specify
24452 other specify
24453 other specify
24455 other specify
24459            mg
24460            mg
24461            ml
24462            mg
24468            mg
24473            mg
24475            mg
24476 other specify
24477 other specify
24478 other specify
24479         drops
24480 other specify
24481 other specify
24482            mg
24484 other specify
24486 other specify
24499            mg
24503         drops
24514 other specify
24520 other specify
24521 other specify
24526 other specify
24534            ml
24536           mcg
24593         drops
24597            mg
24598            mg
24599            mg
24601            mg
24602            mg
24605 other specify
24610 other specify
24647 other specify
24648            ml
24651            mg
24652         drops
24653         drops
24654 other specify
24660 other specify
24666            mg
24669 other specify
24688 other specify
24707 other specify
24733           mcg
24734            mg
24758 other specify
24762           mcg
24768 other specify
24769 other specify
24776         drops
24782         drops
24802            ml
24804            mg
24805            mg
24806            mg
24814           mcg
24817 other specify
24819 other specify
24824 other specify
24825 other specify
24826         units
24827         units
24828 other specify
24829 other specify
24830 other specify
24835           mcg
24839 other specify
24840 other specify
24850            mg
24867 other specify
24878 other specify
24880         drops
24897            mg
24898 other specify
24899            mg
24902            mg
24903            mg
24904            mg
24907            mg
24917 other specify
24918 other specify
24919            mg
24935            mg
24937            mg
24938            mg
24940            mg
24942            mg
24948 other specify
24949            mg
24950 other specify
24963            mg
24964            mg
24967 other specify
24968 other specify
24969 other specify
24971 other specify
24973 other specify
24974 other specify
24975 other specify
24982 other specify
24984            mg
24985 other specify
24987 other specify
24988         drops
24989 other specify
24993         drops
25003         drops
25004 other specify
25020            mg
25021 other specify
25022            mg
25040            mg
25041            ml
25059 other specify
25067           mcg
25079 other specify
25084           tsp
25087 other specify
25094            mg
25099           mcg
25100            mg
25101            mg
25102            mg
25118 other specify
25119 other specify
25120 other specify
25124         drops
25129 other specify
25191 other specify
25196 other specify
25198         drops
25233 other specify
25234 other specify
25241 other specify
25255 other specify
25258 other specify
25262   unspecified
25269            mg
25270            mg
25296           mcg
25299 other specify
25300 other specify
25309         units
25310         units
25311         drops
25315         units
25316         units
25317         units
25331            mg
25337 other specify
25342 other specify
25343 other specify
25345 other specify
25346 other specify
25347   unspecified
25358         drops
25359            mg
25366         drops
25367 other specify
25369            ml
25370         drops
25372            mg
25374            mg
25377            mg
25378           tsp
25390            mg
25391            mg
25405 other specify
25409 other specify
25410 other specify
25417 other specify
25421 other specify
25424            mg
25425            mg
25437            mg
25444            mg
25473 other specify
25482   unspecified
25493 other specify
25494 other specify
25501 other specify
25514            mg
25515            mg
25516            mg
25517            mg
25520 other specify
25521 other specify
25523 other specify
25547            ml
25554            mg
25555            mg
25556            mg
25557            mg
25564           mcg
25575            mg
25576 other specify
25577 other specify
25579           mcg
25589            mg
25590            mg
25591            mg
25612            mg
25617 other specify
25619 other specify
25622   unspecified
25660 other specify
25663 other specify
25666 other specify
25670 other specify
25671 other specify
25672            ml
25674         drops
25683           mcg
25706 other specify
25707 other specify
25708 other specify
25711         units
25725 other specify
25726         drops
25727 other specify
25730 other specify
25737   unspecified
25740 other specify
25741 other specify
25743 other specify
25744 other specify
25748 other specify
25749 other specify
25750 other specify
25751 other specify
25753         drops
25754 other specify
25755 other specify
25756 other specify
25757 other specify
25765            ml
25795 other specify
25804            mg
25806 other specify
25807 other specify
25816            mg
25817            ml
25819            mg
25820 other specify
25825            mg
25826            mg
25827 other specify
25828         units
25829         units
25830            mg
25837 other specify
25846 other specify
25884 other specify
25887 other specify
25888 other specify
25919            mg
25936   unspecified
25937   unspecified
25939 other specify
25940 other specify
25941           mcg
25942           mcg
25943         drops
25948            mg
25949 other specify
25950 other specify
25951           mcg
25952         drops
25953           mcg
25954         drops
25964           mcg
25965            mg
25966           mcg
25967            mg
25981         drops
25983         drops
25985 other specify
25986 other specify
25998   unspecified
26004           mcg
26022            mg
26024 other specify
26027            mg
26031 other specify
26033 other specify
26037 other specify
26039 other specify
26047 other specify
26048 other specify
26050 other specify
26054 other specify
26056 other specify
26064 other specify
26075            mg
26078            mg
26084   unspecified
26085   unspecified
26093 other specify
26094 other specify
26095            mg
26110           mcg
26114 other specify
26115 other specify
26127 other specify
26128 other specify
26129 other specify
26133 other specify
26134 other specify
26138         units
26139 other specify
26141 other specify
26148 other specify
26151 other specify
26152 other specify
26153         drops
26154            ml
26155            mg
26156 other specify
26157 other specify
26158         units
26159         units
26160            mg
26161            mg
26165 other specify
26166 other specify
26184 other specify
26187 other specify
26189         units
26190 other specify
26192 other specify
26197         drops
26199 other specify
26203 other specify
26204 other specify
26205            ml
26206            mg
26207 other specify
26208 other specify
26211         units
26212         units
26213            mg
26214 other specify
26215 other specify
26222            mg
26227            mg
26229   unspecified
26237            mg
26238 other specify
26239 other specify
26258            oz
26259            mg
26264            mg
26265            mg
26278         drops
26279 other specify
26280         drops
26281 other specify
26282 other specify
26287 other specify
26295 other specify
26300         units
26307 other specify
26315 other specify
26336   unspecified
26337   unspecified
26355 other specify
26373         drops
26375 other specify
26380 other specify
26386 other specify
26387            mg
26391   unspecified
26393 other specify
26395            mg
26399            mg
26400            mg
26401            mg
26423            mg
26433   unspecified
26454            mg
26464 other specify
26471            mg
26473            mg
26474         drops
26475 other specify
26476 other specify
26477            mg
26488 other specify
26489 other specify
26490 other specify
26502 other specify
26503            mg
26505 other specify
26508 other specify
26517 other specify
26518 other specify
26519 other specify
26520 other specify
26521            mg
26522 other specify
26534   unspecified
26540 other specify
26543 other specify
26544 other specify
26546 other specify
26551            mg
26553            mg
26568 other specify
26574 other specify
26576            mg
26583         drops
26590 other specify
26591 other specify
26592 other specify
26594 other specify
26610         drops
26611 other specify
26615 other specify
26628           mcg
26629 other specify
26631 other specify
26637 other specify
26638 other specify
26643            mg
26644 other specify
26645 other specify
26647   unspecified
26650 other specify
26651 other specify
26652 other specify
26654           mcg
26655            mg
26662 other specify
26663 other specify
26668 other specify
26669 other specify
26670 other specify
26673           mcg
26674            gm
26675            mg
26676 other specify
26677           mcg
26680           mcg
26681            mg
26682 other specify
26683 other specify
26684 other specify
26685 other specify
26694            mg
26720            mg
26721            mg
26722 other specify
26723            mg
26724            mg
26726 other specify
26727            mg
26734 other specify
26735 other specify
26736           mcg
26738            mg
26740            mg
26741            mg
26742            mg
26743            mg
26744            mg
26745            mg
26747            ml
26749            mg
26750 other specify
26751            mg
26760 other specify
26764 other specify
26765 other specify
26766 other specify
26769 other specify
26772 other specify
26773 other specify
26774 other specify
26780 other specify
26803            oz
26817            mg
26818            mg
26819            gm
26821            mg
26822            mg
26823            ml
26825            gm
26826            gm
26827            mg
26828            mg
26829            mg
26830            mg
26831            mg
26832            mg
26833            ml
26836         drops
26837 other specify
26838            mg
26839 other specify
26840 other specify
26841         drops
26842 other specify
26843 other specify
26844         drops
26846 other specify
26847         drops
26848 other specify
26849 other specify
26850 other specify
26851 other specify
26852           mcg
26853            mg
26857            mg
26861 other specify
26862         units
26863         units
26864         units
26865         units
26867 other specify
26868 other specify
26869 other specify
26870            ml
26871         drops
26872            oz
26905            ml
26926 other specify
26930 other specify
26931 other specify
26932            mg
26944 other specify
26948 other specify
26966            mg
26972            mg
26974 other specify
26975 other specify
26976 other specify
26977 other specify
26978            mg
26979 other specify
26980 other specify
26981 other specify
26983            mg
26984 other specify
26986            mg
26987            ml
26988            mg
26990            mg
26991            mg
26992            mg
26993            mg
27012 other specify
27020 other specify
27021         drops
27022         drops
27030            mg
27047         drops
27058 other specify
27062   unspecified
27063   unspecified
27065 other specify
27080         drops
27081         drops
27082 other specify
27084            mg
27085 other specify
27092 other specify
27095         drops
27096           mcg
27100 other specify
27117 other specify
27118 other specify
27124 other specify
27128         drops
27134 other specify
27136 other specify
27137            ml
27140 other specify
27158 other specify
27163 other specify
27170 other specify
27172 other specify
27173 other specify
27174 other specify
27203           mcg
27212         units
27213            mg
27214 other specify
27217 other specify
27219 other specify
27220 other specify
27222 other specify
27223 other specify
27224 other specify
27225            mg
27226 other specify
27228         units
27229 other specify
27231 other specify
27232         units
27247            mg
27249            ml
27251            mg
27256 other specify
27257 other specify
27258 other specify
27262         drops
27265         units
27268         drops
27270         units
27273 other specify
27274 other specify
27275 other specify
27280 other specify
27281         units
27282         units
27285 other specify
27306 other specify
27309 other specify
27311 other specify
27315           mcg
27322 other specify
27333            mg
27345           mcg
27346            mg
27347            mg
27348 other specify
27349 other specify
27350         drops
27353            mg
27358 other specify
27360 other specify
27361            mg
27362            mg
27364            mg
27368 other specify
27370 other specify
27371            mg
27384            mg
27407         drops
27413 other specify
27414 other specify
27421 other specify
27422 other specify
27423           mcg
27425 other specify
27427         drops
27431 other specify
27432 other specify
27434         drops
27435            mg
27445         drops
27446            ml
27447 other specify
27459            mg
27465 other specify
27474            mg
27479           mcg
27481           mcg
27492 other specify
27494         drops
27500         drops
27501         drops
27502 other specify
27506 other specify
27507 other specify
27511 other specify
27512 other specify
27523 other specify
27529 other specify
27589 other specify
27594            mg
27595            mg
27596            mg
27598         drops
27620 other specify
27640 other specify
27646 other specify
27654 other specify
27657 other specify
27658            mg
27659            mg
27674   unspecified
27697 other specify
27699            mg
27700 other specify
27701 other specify
27704 other specify
27710 other specify
27713            mg
27714   unspecified
27715   unspecified
27722         drops
27723         drops
27724            mg
27728         drops
27736 other specify
27745 other specify
27747 other specify
27748 other specify
27750 other specify
27769 other specify
27770            mg
27772            mg
27776   unspecified
27791 other specify
27794 other specify
27802   unspecified
27824 other specify
27826 other specify
27828 other specify
27833 other specify
27834 other specify
27836   unspecified
27878 other specify
27880 other specify
27883            mg
27884            ml
27885            mg
27886 other specify
27891            mg
27892            mg
27895 other specify
27896 other specify
27897            ml
27898 other specify
27899         drops
27900            ml
27901            ml
27904            ml
27910            mg
27913            mg
27917         units
27921         units
27922         units
27923         units
27927   unspecified
27929 other specify
27931            mg
27934            mg
27935            mg
27936            mg
27937            mg
27938            mg
27939            mg
27940            mg
27941         drops
27942            mg
27954 other specify
27957            mg
27958            mg
27959            mg
27960            mg
27961 other specify
27962 other specify
27973         drops
27974 other specify
27981 other specify
27982 other specify
27992 other specify
27999 other specify
28000 other specify
28004           mcg
28006 other specify
28008 other specify
28009 other specify
28010 other specify
28011         drops
28014         drops
28015            mg
28016 other specify
28018 other specify
28020         drops
28023 other specify
28024 other specify
28025 other specify
28026            mg
28029 other specify
28040 other specify
28045           mcg
28046 other specify
28047 other specify
28048 other specify
28049 other specify
28071         drops
28087 other specify
28088 other specify
28089            mg
28090         drops
28094         drops
28096   unspecified
28098            mg
28100 other specify
28101 other specify
28102 other specify
28103 other specify
28104 other specify
28105 other specify
28106            mg
28107            mg
28108 other specify
28109 other specify
28116 other specify
28119 other specify
28120 other specify
28128            mg
28129            mg
28130 other specify
28131            mg
28134 other specify
28135 other specify
28137 other specify
28138            iu
28141         drops
28144 other specify
28150            mg
28151            mg
28152            mg
28153            ml
28154            ml
28155            ml
28156            mg
28158 other specify
28162 other specify
28163 other specify
28164 other specify
28165            mg
28166 other specify
28167   unspecified
28168         drops
28174 other specify
28176 other specify
28244            mg
28245            mg
28246 other specify
28260 other specify
28261 other specify
28262            mg
28263 other specify
28264 other specify
28269 other specify
28277 other specify
28279 other specify
28307 other specify
28309 other specify
28311 other specify
28316 other specify
28332 other specify
28333 other specify
28371 other specify
28375 other specify
28390         units
28392 other specify
28393            mg
28396            mg
28397 other specify
28398 other specify
28399 other specify
28400 other specify
28401 other specify
28404 other specify
28407            mg
28425   unspecified
28427         drops
28437            mg
28448            mg
28449            mg
28453           mcg
28483 other specify
28484         drops
28486 other specify
28488 other specify
28505 other specify
28507 other specify
28508 other specify
28516 other specify
28517 other specify
28518            mg
28519            mg
28520            ml
28528            mg
28529            mg
28530            mg
28531 other specify
28533 other specify
28534            mg
28535            mg
28536 other specify
28538 other specify
28545           mcg
28549 other specify
28552 other specify
28553 other specify
28554 other specify
28556 other specify
28557 other specify
28571 other specify
28572   unspecified
28573 other specify
28574 other specify
28576 other specify
28577         drops
28580 other specify
28582 other specify
28583 other specify
28590   unspecified
28601 other specify
28602 other specify
28604            ml
28605 other specify
28606            mg
28610            mg
28611            mg
28612            mg
28614            mg
28616            ml
28621            ml
28624 other specify
28626            ml
28630 other specify
28631 other specify
28632            mg
28639            mg
28660 other specify
28668 other specify
28673         drops
28674 other specify
28675 other specify
28681 other specify
28685   unspecified
28686   unspecified
28687   unspecified
28690            mg
28692            mg
28693 other specify
28694 other specify
28696 other specify
28698            mg
28699            mg
28710         drops
28714         drops
28716         drops
28717            mg
28718            gm
28719            gm
28723 other specify
28726 other specify
28727 other specify
28730         units
28731         units
28732            mg
28735            mg
28736            mg
28750 other specify
28751 other specify
28762            ml
28764         drops
28765            mg
28766            mg
28772   unspecified
28773   unspecified
28780 other specify
28806 other specify
28809 other specify
28819 other specify
28826 other specify
28829           tsp
28831         drops
28832            mg
28833 other specify
28855 other specify
28873         drops
28874            mg
28882 other specify
28883 other specify
28884         units
28888 other specify
28897 other specify
28899 other specify
28904 other specify
28905         drops
28906         drops
28907 other specify
28934 other specify
28939            mg
28940            mg
28941 other specify
28946            ml
28979 other specify
28980 other specify
28982 other specify
28983 other specify
28986 other specify
28987 other specify
28988            mg
28998            mg
28999            mg
29000 other specify
29007            ml
29008            mg
29015 other specify
29022   unspecified
29023   unspecified
29036 other specify
29037            mg
29039 other specify
29040   unspecified
29043   unspecified
29050 other specify
29053 other specify
29056 other specify
29060 other specify
29064 other specify
29067           mcg
29069            mg
29070 other specify
29071 other specify
29072 other specify
29073 other specify
29075 other specify
29078            ml
29079 other specify
29080 other specify
29081 other specify
29082 other specify
29083 other specify
29086            mg
29087            mg
29091            mg
29092            ml
29095 other specify
29096 other specify
29097            ml
29098            ml
29099            ml
29100            mg
29103           mcg
29104           mcg
29108 other specify
29135            mg
29136 other specify
29139 other specify
29143           mcg
29150            mg
29151 other specify
29152            mg
29153            ml
29154 other specify
29161 other specify
29166 other specify
29184 other specify
29196 other specify
29197 other specify
29220 other specify
29232   unspecified
29234   unspecified
29235   unspecified
29244   unspecified
29245   unspecified
29248   unspecified
29283            mg
29285         drops
29291 other specify
29293 other specify
29298            mg
29313         drops
29315 other specify
29321 other specify
29324 other specify
29327 other specify
29328 other specify
29340            oz
29342         drops
29374            mg
29375         units
29376 other specify
29377         units
29378         units
29379         units
29380 other specify
29381 other specify
29382 other specify
29383 other specify
29395            mg
29404            mg
29405            mg
29406            mg
29428 other specify
29438 other specify
29446 other specify
29447 other specify
29453 other specify
29469 other specify
29470 other specify
29471         drops
29479 other specify
29480 other specify
29481 other specify
29482 other specify
29483 other specify
29490 other specify
29499         units
29500         units
29501 other specify
29502 other specify
29504 other specify
29505 other specify
29506            mg
29509            mg
29511 other specify
29525 other specify
29526 other specify
29531 other specify
29532         drops
29533           tbs
29534         drops
29535         drops
29536 other specify
29537         drops
29538            mg
29539            oz
29540 other specify
29567 other specify
29568         drops
29572 other specify
29573 other specify
29574            oz
29575            mg
29579 other specify
29580 other specify
29588 other specify
29592            mg
29601            mg
29602            mg
29604            mg
29606           mcg
29608 other specify
29617 other specify
29633           mcg
29662   unspecified
29666           tsp
29669   unspecified
29670   unspecified
29678            mg
29691            mg
29692            mg
29693            mg
29694            mg
29695            mg
29696            gm
29697            mg
29698            mg
29699            mg
29700         drops
29705         drops
29707         drops
29709 other specify
29715 other specify
29716 other specify
29719 other specify
29720            mg
29722 other specify
29724            ml
29726 other specify
29729            gm
29730            mg
29733            mg
29734            mg
29736 other specify
29744 other specify
29749 other specify
29753            mg
29764 other specify
29765 other specify
29767 other specify
29770 other specify
29794         drops
29797            mg
29798           mcg
29799           mcg
29800            mg
29801 other specify
29802           mcg
29803            mg
29822 other specify
29823 other specify
29824           mcg
29825            mg
29827            mg
29829         units
29831         drops
29832            ml
29838   unspecified
29839   unspecified
29840   unspecified
29847            ml
29848            ml
29851            mg
29858            ml
29859            ml
29860            ml
29861            mg
29862            mg
29865            mg
29880         units
29882 other specify
29883 other specify
29906            mg
29907            mg
29933 other specify
29940 other specify
29941 other specify
29948 other specify
29954 other specify
29955 other specify
29956 other specify
29957 other specify
29963 other specify
29964 other specify
29966   unspecified
29969 other specify
29970 other specify
29978            mg
29990 other specify
29991            mg
29993            mg
30001            mg
30048            ml
30070 other specify
30075 other specify
30076 other specify
30081 other specify
30082 other specify
30083 other specify
30098            mg
30099 other specify
30104   unspecified
30105   unspecified
30127            mg
30131            mg
30132   unspecified
30138           mcg
30142         units
30143 other specify
30162   unspecified
30164            ml
30165            mg
30166            mg
30169 other specify
30172            mg
30174            mg
30178 other specify
30179         drops
30185 other specify
30186            mg
30191            mg
30192            mg
30193            mg
30198         drops
30211 other specify
30212 other specify
30213 other specify
30214 other specify
30218 other specify
30221 other specify
30239            mg
30241            mg
30242            mg
30246   unspecified
30263 other specify
30264 other specify
30268 other specify
30269 other specify
30270 other specify
30274 other specify
30277 other specify
30286 other specify
30298 other specify
30299         units
30300         drops
30306            mg
30310 other specify
30311 other specify
30312 other specify
30313 other specify
30317 other specify
30319 other specify
30327 other specify
30329         drops
30337 other specify
30338         drops
30344 other specify
30347 other specify
30351 other specify
30352 other specify
30353 other specify
30354 other specify
30355 other specify
30356            mg
30357 other specify
30358            mg
30359            mg
30360 other specify
30361 other specify
30366            mg
30367            mg
30368           mcg
30371            mg
30372 other specify
30373 other specify
30374 other specify
30375 other specify
30376 other specify
30377            mg
30378           tsp
30385 other specify
30387 other specify
30388   unspecified
30389 other specify
30395 other specify
30396 other specify
30404 other specify
30405            mg
30406            ml
30418           mcg
30450   unspecified
30464         drops
30471            mg
30479 other specify
30480 other specify
30483 other specify
30484   unspecified
30485   unspecified
30492            mg
30494            mg
30496 other specify
30515            mg
30523            mg
30528            mg
30529         drops
30534           mcg
30536 other specify
30541            mg
30555 other specify
30556            mg
30573            mg
30574            mg
30590 other specify
30604 other specify
30619            mg
30620            mg
30623         drops
30644            mg
30685 other specify
30689 other specify
30692 other specify
30701 other specify
30702            mg
30707 other specify
30708 other specify
30709 other specify
30710 other specify
30713            ml
30714         drops
30717   unspecified
30730           mcg
30753 other specify
30754         drops
30756         units
30757         units
30764            mg
30765            mg
30766            mg
30768           mcg
30769         drops
30779 other specify
30784 other specify
30792         drops
30793 other specify
30796 other specify
30797 other specify
30799 other specify
30803 other specify
30811 other specify
30812            mg
30813         units
30814         units
30815         units
30816         units
30817         units
30819 other specify
30820 other specify
30821 other specify
30822 other specify
30823 other specify
30824 other specify
30826 other specify
30833 other specify
30834 other specify
30840            mg
30844 other specify
30876            ml
30877           mcg
30893            ml
30901 other specify
30909           mcg
30917 other specify
30920         drops
30936   unspecified
30943            mg
30944            mg
30945            mg
30947 other specify
30948 other specify
30949            mg
30953   unspecified
30960           tsp
30961            mg
30962 other specify
30963            mg
30998 other specify
31000 other specify
31001 other specify
31003 other specify
31004 other specify
31010 other specify
31011 other specify
31012            mg
31016           tsp
31022 other specify
31023 other specify
31034            mg
31043 other specify
31046 other specify
31089            mg
31094 other specify
31095 other specify
31096 other specify
31097            mg
31098            mg
31105 other specify
31132 other specify
31133 other specify
31134 other specify
31135 other specify
31136            mg
31137            mg
31139            mg
31148           mcg
31149           mcg
31152           mcg
31154           mcg
31183         units
31186         drops
31195            mg
31196   unspecified
31197 other specify
31198            mg
31199 other specify
31200            mg
31203         units
31209            mg
31228 other specify
31232 other specify
31233            mg
31234 other specify
31235            mg
31243            mg
31245         drops
31247            mg
31248 other specify
31249            mg
31250 other specify
31260 other specify
31263 other specify
31265         drops
31268 other specify
31297         units
31299         units
31300         units
31301         units
31303            ml
31307 other specify
31308 other specify
31309 other specify
31317 other specify
31322            mg
31328   unspecified
31330         drops
31350   unspecified
31353            mg
31356 other specify
31357 other specify
31358 other specify
31359 other specify
31360 other specify
31361 other specify
31365 other specify
31366 other specify
31367 other specify
31369 other specify
31370 other specify
31371           tsp
31373            mg
31374            gm
31375 other specify
31380            mg
31381         drops
31383 other specify
31384 other specify
31385 other specify
31386 other specify
31389 other specify
31408 other specify
31410            mg
31411            mg
31412            ml
31413            mg
31414 other specify
31415 other specify
31416            mg
31417           mcg
31418           mcg
31419            mg
31420            mg
31423         drops
31434         drops
31437 other specify
31438 other specify
31439         drops
31440         units
31441 other specify
31446 other specify
31447 other specify
31449 other specify
31450 other specify
31452         units
31457   unspecified
31463   unspecified
31471 other specify
31502 other specify
31503 other specify
31504 other specify
31506 other specify
31507            mg
31508 other specify
31528 other specify
31529 other specify
31531 other specify
31539 other specify
31542   unspecified
31548         units
31551            ml
31552         drops
31553         drops
31599            mg
31602 other specify
31611 other specify
31612 other specify
31616 other specify
31617 other specify
31618 other specify
31619 other specify
31637 other specify
31638 other specify
31640 other specify
31641            mg
31643 other specify
31644            mg
31645            ml
31646 other specify
31647 other specify
31651            mg
31652 other specify
31653           mcg
31654            mg
31655            mg
31656            ml
31657         units
31665 other specify
31666 other specify
31678 other specify
31680 other specify
31688 other specify
31689 other specify
31696 other specify
31707 other specify
31713 other specify
31716            mg
31725         drops
31726 other specify
31730            mg
31731         drops
31734 other specify
31735         drops
31736 other specify
31737 other specify
31742         drops
31747 other specify
31748            mg
31760 other specify
31761            ml
31762 other specify
31765 other specify
31766 other specify
31768            mg
31769           mcg
31771           mcg
31773           mcg
31774            ml
31777 other specify
31780            mg
31781            mg
31798 other specify
31803 other specify
31804 other specify
31807 other specify
31808 other specify
31810 other specify
31811 other specify
31818 other specify
31819 other specify
31824 other specify
31825 other specify
31826 other specify
31833   unspecified
31834 other specify
31836   unspecified
31837 other specify
31840 other specify
31841         units
31842 other specify
31843            ml
31844            mg
31845            ml
31846 other specify
31847 other specify
31848            mg
31849 other specify
31850         drops
31853         drops
31861            mg
31864            mg
31866            mg
31868 other specify
31869 other specify
31874 other specify
31876 other specify
31880            mg
31888 other specify
31891 other specify
31892 other specify
31895 other specify
31896 other specify
31898 other specify
31906 other specify
31907         units
31908         units
31909 other specify
31911 other specify
31916 other specify
31930            mg
31937            mg
31938            mg
31939            mg
31940            mg
31941            mg
31942 other specify
31945         units
31946         units
31947         units
31948         units
31953         drops
31954 other specify
31955 other specify
31967            mg
31968            mg
31985   unspecified
31990 other specify
32002            mg
32006            mg
32015         drops
32016 other specify
32020            mg
32025 other specify
32032            mg
32035            mg
32040 other specify
32046         drops
32053 other specify
32054 other specify
32055         drops
32056 other specify
32057 other specify
32058 other specify
32059 other specify
32060 other specify
32074 other specify
32076 other specify
32079 other specify
32080 other specify
32084 other specify
32095 other specify
32097 other specify
32098 other specify
32099 other specify
32100 other specify
32101 other specify
32102 other specify
32103 other specify
32104 other specify
32105 other specify
32106 other specify
32108 other specify
32114 other specify
32116 other specify
32119         drops
32121 other specify
32122 other specify
32123            mg
32128            mg
32129            mg
32131            mg
32132            mg
32133 other specify
32134 other specify
32168 other specify
32171         drops
32175         drops
32179 other specify
32180 other specify
32183         drops
32184         drops
32187   unspecified
32196 other specify
32212            mg
32221            mg
32222 other specify
32231 other specify
32232 other specify
32233 other specify
32234 other specify
32236 other specify
32237 other specify
32266 other specify
32276   unspecified
32290 other specify
32295 other specify
32296 other specify
32297         drops
32310 other specify
32312 other specify
32313 other specify
32315 other specify
32320            ml
32343 other specify
32354            mg
32355            mg
32356            mg
32358            ml
32359         drops
32360            mg
32362            oz
32363 other specify
32364            mg
32365            ml
32366            mg
32370 other specify
32390            ml
32393 other specify
32394            mg
32397            mg
32417 other specify
32425            ml
32426            mg
32427            mg
32445   unspecified
32447            mg
32448            mg
32449            mg
32460            mg
32463 other specify
32464 other specify
32466 other specify
32467 other specify
32475            mg
32476            mg
32477 other specify
32478 other specify
32504 other specify
32505 other specify
32507            oz
32509 other specify
32510 other specify
32511 other specify
32512 other specify
32513 other specify
32520         drops
32521         drops
32529 other specify
32530 other specify
32535 other specify
32536 other specify
32538 other specify
32542   unspecified
32557 other specify
32558 other specify
32561 other specify
32562 other specify
32575   unspecified
32576   unspecified
32629 other specify
32631 other specify
32633 other specify
32635 other specify
32637 other specify
32642 other specify
32643 other specify
32652   unspecified
32654 other specify
32664 other specify
32670            mg
32672 other specify
32673 other specify
32678            mg
32680            mg
32682            mg
32685            mg
32694 other specify
32698 other specify
32703 other specify
32708            ml
32726         drops
32737         drops
32739 other specify
32742 other specify
32743 other specify
32750 other specify
32751 other specify
32767 other specify
32768 other specify
32769            ml
32770 other specify
32777            mg
32798 other specify
32815 other specify
32829 other specify
32841         drops
32844            mg
32849 other specify
32850 other specify
32856 other specify
32857           mcg
32858            ml
32859           mcg
32860            mg
32862         drops
32863         drops
32869 other specify
32870            mg
32871            ml
32879 other specify
32883 other specify
32884            mg
32887 other specify
32888 other specify
32903         drops
32912         drops
32923 other specify
32930 other specify
32937         drops
32938 other specify
32939            mg
32940 other specify
32942 other specify
32943 other specify
32944 other specify
32949 other specify
32950            ml
32951 other specify
32952 other specify
32953            mg
32954            mg
32955         units
32956         units
32964   unspecified
32965         drops
32983            mg
32999 other specify
33004 other specify
33008 other specify
33009 other specify
33010   unspecified
33011   unspecified
33014   unspecified
33015 other specify
33022           mcg
33023 other specify
33027           mcg
33043           mcg
33047            mg
33066 other specify
33067 other specify
33068         units
33073            ml
33078 other specify
33081 other specify
33085 other specify
33086            mg
33087            ml
33088            mg
33089            ml
33090            mg
33091            ml
33092 other specify
33096 other specify
33107            mg
33108            mg
33110 other specify
33113 other specify
33123            mg
33124 other specify
33125 other specify
33126 other specify
33128 other specify
33132 other specify
33133 other specify
33138 other specify
33157   unspecified
33159   unspecified
33166 other specify
33187           mcg
33188            mg
33189            mg
33190            mg
33191 other specify
33209 other specify
33211 other specify
33220 other specify
33222 other specify
33226         units
33227 other specify
33229 other specify
33230 other specify
33233 other specify
33235 other specify
33236         units
33239         units
33242 other specify
33271   unspecified
33286         units
33289 other specify
33292 other specify
33293         drops
33317           mcg
33318 other specify
33333            mg
33335            mg
33336 other specify
33338            mg
33347 other specify
33354            oz
33355            oz
33358 other specify
33363 other specify
33364 other specify
33370         units
33374         units
33375         units
33376         units
33377         units
33385         drops
33387   unspecified
33389   unspecified
33410 other specify
33411 other specify
33412 other specify
33414 other specify
33456   unspecified
33468 other specify
33471         drops
33479 other specify
33480 other specify
33482   unspecified
33489 other specify
33490            mg
33491            mg
33492            mg
33493            mg
33497 other specify
33499           mcg
33500 other specify
33504           mcg
33521            mg
33539 other specify
33541 other specify
33542         drops
33543 other specify
33544 other specify
33576            mg
33580 other specify
33581 other specify
33582            mg
33583            mg
33590 other specify
33591 other specify
33592 other specify
33614   unspecified
33641 other specify
33644 other specify
33645 other specify
33647         drops
33649 other specify
33651 other specify
33655 other specify
33683 other specify
33684 other specify
33690           mcg
33691            mg
33692            mg
33693            mg
33694            mg
33695            mg
33696 other specify
33697            mg
33702 other specify
33706            mg
33714 other specify
33717 other specify
33722 other specify
33723 other specify
33724 other specify
33725 other specify
33737 other specify
33739 other specify
33740 other specify
33756         drops
33767            mg
33797 other specify
33798 other specify
33804 other specify
33805 other specify
33815   unspecified
33818            mg
33822           mcg
33823            mg
33824           mcg
33825            mg
33828            mg
33844         drops
33850           mcg
33868 other specify
33869            mg
33870 other specify
33890            mg
33894 other specify
33901 other specify
33905 other specify
33907 other specify
33909 other specify
33911 other specify
33913 other specify
33914 other specify
33916            ml
33919 other specify
33927 other specify
33929         drops
33939 other specify
33940 other specify
33987 other specify
33991 other specify
33992 other specify
33993 other specify
33994            ml
33995 other specify
33998 other specify
34000 other specify
34002 other specify
34003         drops
34005 other specify
34011   unspecified
34012            ml
34014 other specify
34016 other specify
34022 other specify
34024 other specify
34029 other specify
34030 other specify
34043 other specify
34044 other specify
34046         drops
34048 other specify
34049 other specify
34051         units
34053 other specify
34054 other specify
34069           mcg
34070            mg
34071            mg
34072            mg
34073         drops
34074           mcg
34075            ml
34077 other specify
34087 other specify
34090 other specify
34091 other specify
34092         units
34093 other specify
34094            oz
34095         units
34096 other specify
34105 other specify
34107         drops
34108           mcg
34109 other specify
34111            mg
34112            mg
34113         drops
34125 other specify
34126 other specify
34128 other specify
34132 other specify
34134 other specify
34135 other specify
34138 other specify
34140            mg
34147 other specify
34148 other specify
34152 other specify
34155 other specify
34156            mg
34157            mg
34161           mcg
34162            mg
34227 other specify
34230            mg
34231            mg
34232           tsp
34233            mg
34234            mg
34235            mg
34238 other specify
34239            ml
34240            ml
34241            mg
34242            mg
34243            ml
34246            ml
34247            mg
34249 other specify
34254 other specify
34260            mg
34262            mg
34264            mg
34267            mg
34268 other specify
34269 other specify
34282 other specify
34287         drops
34288           mcg
34289            ml
34290            ml
34293            ml
34304            ml
34327           mcg
34332           mcg
34333 other specify
34334 other specify
34336 other specify
34340 other specify
34341           mcg
34342 other specify
34343 other specify
34344           mcg
34345 other specify
34348         drops
34356            mg
34359 other specify
34360 other specify
34361            mg
34362            mg
34367 other specify
34369            mg
34374 other specify
34375 other specify
34378   unspecified
34379   unspecified
34388 other specify
34401 other specify
34403 other specify
34409            mg
34410            mg
34418 other specify
34419 other specify
34430            ml
34433 other specify
34434 other specify
34435            mg
34436           tbs
34456 other specify
34457            gm
34458            mg
34459            mg
34460            mg
34461            mg
34462            mg
34463            gm
34464            mg
34465            mg
34466            mg
34467            mg
34468            mg
34474            mg
34493            mg
34510            mg
34513 other specify
34528            mg
34536 other specify
34545   unspecified
34548   unspecified
34579   unspecified
34583 other specify
34584           tbs
34587 other specify
34588         drops
34593            mg
34606   unspecified
34608 other specify
34609 other specify
34612            mg
34614 other specify
34617 other specify
34624            gm
34629 other specify
34630 other specify
34635 other specify
34636 other specify
34637 other specify
34638 other specify
34640 other specify
34642 other specify
34648         units
34669 other specify
34671 other specify
34672 other specify
34673 other specify
34674 other specify
34675         drops
34676            mg
34677         drops
34678 other specify
34680         drops
34697 other specify
34704 other specify
34705            mg
34706         units
34708 other specify
34709 other specify
34710 other specify
34727   unspecified
34728   unspecified
34729   unspecified
34730 other specify
34733 other specify
34734 other specify
34741         drops
34744         drops
34747 other specify
34750           mcg
34763 other specify
34764 other specify
34766           mcg
34767            mg
34787 other specify
34788 other specify
34789            mg
34791 other specify
34797 other specify
34798 other specify
34799 other specify
34811 other specify
34813 other specify
34828 other specify
34832            mg
34833 other specify
34845 other specify
34867            mg
34874            gm
34875            mg
34881            mg
34887 other specify
34888 other specify
34889 other specify
34890 other specify
34891 other specify
34892 other specify
34900            mg
34901            mg
34902            mg
34903         drops
34904            mg
34905 other specify
34906 other specify
34907         drops
34908            ml
34917   unspecified
34918         drops
34920           mcg
34922            mg
34923            mg
34924            mg
34940            mg
34953   unspecified
34955   unspecified
34956   unspecified
34966 other specify
34973            mg
34979 other specify
34981 other specify
34982 other specify
34983 other specify
34991           mcg
34992 other specify
34996 other specify
35002         units
35004         units
35014 other specify
35025 other specify
35026           tsp
35027 other specify
35034            mg
35049 other specify
35069 other specify
35070            mg
35074   unspecified
35094 other specify
35101            mg
35102            mg
35103 other specify
35109   unspecified
35110 other specify
35122            ml
35124            ml
35125 other specify
35126            gm
35132 other specify
35134 other specify
35143 other specify
35144 other specify
35145 other specify
35146 other specify
35147 other specify
35148 other specify
35149   unspecified
35150 other specify
35152 other specify
35153 other specify
35154 other specify
35155            mg
35160   unspecified
35170           mcg
35171           mcg
35176            mg
35181 other specify
35182           mcg
35183            mg
35189 other specify
35190            mg
35191            mg
35203 other specify
35204 other specify
35205 other specify
35207           mcg
35212 other specify
35213            mg
35214 other specify
35215            mg
35216            mg
35232            mg
35245 other specify
35252         drops
35258            mg
35262           mcg
35263            mg
35264           mcg
35278 other specify
35279 other specify
35282            mg
35283 other specify
35284 other specify
35291 other specify
35299 other specify
35300 other specify
35314 other specify
35315            mg
35316            mg
35318            mg
35354            mg
35382 other specify
35388            ml
35393 other specify
35399 other specify
35400            mg
35401 other specify
35404 other specify
35405 other specify
35406 other specify
35414            mg
35417            mg
35420            mg
35421            mg
35422 other specify
35423 other specify
35424 other specify
35425            mg
35432            mg
35434         drops
35443         drops
35450         drops
35453 other specify
35454 other specify
35495 other specify
35496 other specify
35497            mg
35498            mg
35499         units
35501           mcg
35503            mg
35504         units
35506         drops
35507         drops
35509 other specify
35513            mg
35525 other specify
35526 other specify
35528            mg
35539            mg
35560 other specify
35561 other specify
35562 other specify
35563 other specify
35565         units
35566         units
35569           mcg
35571 other specify
35572 other specify
35573 other specify
35574            mg
35575 other specify
35576         units
35577         units
35578 other specify
35579 other specify
35580            mg
35581 other specify
35582 other specify
35584            mg
35592         drops
35593 other specify
35598 other specify
35605 other specify
35616            mg
35617            mg
35618            mg
35619            mg
35620         drops
35621 other specify
35622            mg
35624         drops
35626 other specify
35627            mg
35628         drops
35633 other specify
35639 other specify
35641 other specify
35642 other specify
35643         drops
35644            mg
35645            ml
35656 other specify
35659            mg
35662 other specify
35664 other specify
35665 other specify
35668   unspecified
35673 other specify
35674         drops
35696            oz
35697 other specify
35699 other specify
35700 other specify
35721 other specify
35722 other specify
35725           mcg
35727            mg
35740            ml
35743         drops
35746            mg
35747            mg
35748            mg
35749            mg
35751            mg
35756         units
35757            mg
35758            mg
35762 other specify
35768 other specify
35770 other specify
35771 other specify
35772 other specify
35773 other specify
35774 other specify
35775 other specify
35777 other specify
35778 other specify
35779            mg
35782           mcg
35784 other specify
35786 other specify
35791            ml
35792           mcg
35793         units
35808   unspecified
35809   unspecified
35810   unspecified
35812 other specify
35820 other specify
35821 other specify
35831            mg
35832            mg
35835            mg
35850 other specify
35853 other specify
35855 other specify
35858            mg
35859            mg
35903           tbs
35905            mg
35907            mg
35908            mg
35931         units
35954 other specify
35955 other specify
35963 other specify
35965         drops
35969 other specify
35973 other specify
35980           mcg
35982 other specify
35983 other specify
36019 other specify
36021 other specify
36023 other specify
36030            oz
36042 other specify
36043            mg
36044 other specify
36065 other specify
36069 other specify
36078         drops
36081         drops
36082            mg
36083            mg
36084 other specify
36108            mg
36110            mg
36112 other specify
36113   unspecified
36115 other specify
36134            mg
36137 other specify
36144 other specify
36145 other specify
36150 other specify
36153            mg
36155 other specify
36156 other specify
36159 other specify
36171   unspecified
36191 other specify
36192            oz
36196            mg
36198 other specify
36200            ml
36201 other specify
36202         drops
36203         drops
36205         drops
36218 other specify
36220 other specify
36221 other specify
36222 other specify
36223 other specify
36225 other specify
36227 other specify
36228 other specify
36229 other specify
36231 other specify
36232 other specify
36233 other specify
36235 other specify
36237 other specify
36238            mg
36240            mg
36254   unspecified
36256         drops
36258            mg
36264         units
36268   unspecified
36271            mg
36272            mg
36273 other specify
36275 other specify
36276 other specify
36280 other specify
36283            mg
36284            mg
36288         units
36289            mg
36292            ml
36293         drops
36294            ml
36295           tbs
36296            ml
36297            ml
36298            ml
36299            ml
36300         drops
36301           tsp
36302            ml
36303            ml
36304            ml
36305            ml
36306 other specify
36307 other specify
36308            ml
36309            ml
36310            ml
36311   unspecified
36322         drops
36323            ml
36324            ml
36325            ml
36326            ml
36327            ml
36328            ml
36329         drops
36330           tsp
36331            ml
36332            ml
36333         drops
36334            ml
36335 other specify
36336 other specify
36337            ml
36338            ml
36339   unspecified
36340   unspecified
36357            mg
36358         drops
36359            ml
36360            ml
36361            ml
36362            ml
36363            ml
36364            ml
36365         drops
36366           tsp
36367            ml
36368            ml
36369            ml
36370         drops
36371 other specify
36372 other specify
36373   unspecified
36374   unspecified
36376            ml
36377         drops
36378            ml
36379            ml
36380         drops
36381            ml
36382            ml
36383            ml
36384         drops
36385           tsp
36397            mg
36398            ml
36399            mg
36400            mg
36401            mg
36402            mg
36403         drops
36404           tsp
36405         units
36406         units
36410   unspecified
36427 other specify
36429           mcg
36430 other specify
36438         units
36439 other specify
36440 other specify
36443            mg
36444 other specify
36448 other specify
36451 other specify
36460 other specify
36461 other specify
36464         units
36474   unspecified
36491 other specify
36497            mg
36513   unspecified
36520           tsp
36533 other specify
36535 other specify
36559 other specify
36560 other specify
36562 other specify
36568 other specify
36571 other specify
36574   unspecified
36579 other specify
36580            mg
36595 other specify
36597         drops
36598            mg
36599            mg
36600 other specify
36601 other specify
36602 other specify
36605 other specify
36606         drops
36607 other specify
36608 other specify
36616 other specify
36623         drops
36624 other specify
36626 other specify
36630 other specify
36631         drops
36632 other specify
36633         drops
36635 other specify
36636 other specify
36637         drops
36657            mg
36660           mcg
36661            mg
36667            mg
36670 other specify
36698 other specify
36699 other specify
36705            mg
36708 other specify
36709 other specify
36735            mg
36751 other specify
36752 other specify
36753 other specify
36772 other specify
36776            mg
36777            mg
36778           tbs
36816 other specify
36817 other specify
36818         drops
36819         drops
36824 other specify
36833 other specify
36834 other specify
36835 other specify
36840            mg
36842            gm
36846            mg
36847            mg
36848            mg
36849 other specify
36850 other specify
36851            gm
36853         drops
36855   unspecified
36859   unspecified
36874            ml
36875            mg
36876            mg
36877            mg
36878 other specify
36879            ml
36880            mg
36881 other specify
36882            mg
36883 other specify
36884 other specify
36892         drops
36893 other specify
36894 other specify
36900 other specify
36901 other specify
36911 other specify
36916         drops
36919            mg
36920 other specify
36921 other specify
36925           mcg
36945            gm
36946            mg
36969         units
36970         units
36982 other specify
36983 other specify
36984 other specify
36985 other specify
36994 other specify
37007            mg
37015 other specify
37017 other specify
37018 other specify
37019 other specify
37020         drops
37021 other specify
37036 other specify
37038            mg
37046         units
37054 other specify
37055 other specify
37056 other specify
37057           mcg
37061 other specify
37063 other specify
37069           mcg
37070 other specify
37071 other specify
37073 other specify
37074            mg
37075 other specify
37076 other specify
37077 other specify
37078 other specify
37080 other specify
37087 other specify
37088 other specify
37091            mg
37098 other specify
37099 other specify
37103            mg
37104         drops
37115 other specify
37116            mg
37117 other specify
37135 other specify
37157   unspecified
37164         drops
37165 other specify
37168 other specify
37169 other specify
37179         units
37193           tbs
37194 other specify
37195            mg
37197            mg
37200 other specify
37201 other specify
37202 other specify
37219 other specify
37221            mg
37259            mg
37260            ml
37262 other specify
37263            mg
37266 other specify
37267         drops
37270 other specify
37271 other specify
37272            mg
37273         drops
37277 other specify
37278   unspecified
37279   unspecified
37302           mcg
37303         drops
37304            mg
37306            mg
37307            mg
37308            mg
37309 other specify
37316 other specify
37324            mg
37325            gm
37326            ml
37332 other specify
37337 other specify
37344 other specify
37349 other specify
37359            mg
37373 other specify
37374 other specify
37375         units
37376         units
37377           tsp
37385 other specify
37386 other specify
37387 other specify
37392 other specify
37396 other specify
37397 other specify
37434   unspecified
37435   unspecified
37439 other specify
37446 other specify
37448 other specify
37449 other specify
37451 other specify
37453 other specify
37454 other specify
37457 other specify
37463 other specify
37464 other specify
37465 other specify
37467 other specify
37468 other specify
37469 other specify
37477         drops
37478         drops
37485 other specify
37491 other specify
37493 other specify
37495 other specify
37496         drops
37510            mg
37526            mg
37527 other specify
37533 other specify
37536 other specify
37540 other specify
37545 other specify
37546 other specify
37547 other specify
37552 other specify
37568            mg
37569 other specify
37571            mg
37576 other specify
37577            mg
37578            oz
37579           mcg
37580            mg
37581            mg
37582            mg
37584   unspecified
37585   unspecified
37586   unspecified
37597   unspecified
37598   unspecified
37601 other specify
37602 other specify
37603 other specify
37608 other specify
37621 other specify
37622 other specify
37624 other specify
37627 other specify
37628 other specify
37629 other specify
37630 other specify
37639   unspecified
37648 other specify
37649            ml
37651 other specify
37652 other specify
37655 other specify
37657 other specify
37662 other specify
37664 other specify
37669 other specify
37670 other specify
37675 other specify
37682            mg
37686            mg
37691 other specify
37692           mcg
37695            mg
37696            mg
37697            mg
37698            mg
37699         drops
37704 other specify
37705 other specify
37708            mg
37709            mg
37710            mg
37712   unspecified
37713   unspecified
37714   unspecified
37717   unspecified
37718   unspecified
37731 other specify
37738 other specify
37739 other specify
37740 other specify
37742 other specify
37771         drops
37785 other specify
37786 other specify
37797 other specify
37798           mcg
37805            mg
37806            mg
37807            mg
37809 other specify
37816   unspecified
37817   unspecified
37820            iu
37821   unspecified
37822 other specify
37834 other specify
37835 other specify
37836            mg
37837            mg
37838 other specify
37839 other specify
37845 other specify
37846 other specify
37847 other specify
37848 other specify
37849 other specify
37850 other specify
37851 other specify
37852 other specify
37855 other specify
37858 other specify
37865 other specify
37885 other specify
37894 other specify
37895 other specify
37907            mg
37916 other specify
37920 other specify
37929         drops
37930         drops
37933 other specify
37934 other specify
37935         drops
37936 other specify
37937         drops
37940            mg
37941         drops
37942         drops
37944            mg
37956            mg
37976 other specify
37977 other specify
37978 other specify
37979 other specify
37980 other specify
37984 other specify
37989 other specify
37990 other specify
37992 other specify
37993 other specify
38018            mg
38036 other specify
38041 other specify
38046 other specify
38048            mg
38050 other specify
38051 other specify
38052   unspecified
38056           tsp
38070 other specify
38071         drops
38072 other specify
38073            mg
38074         drops
38075         drops
38102            mg
38123 other specify
38126 other specify
38129            mg
38132   unspecified
38134 other specify
38135 other specify
38136 other specify
38141 other specify
38142 other specify
38151 other specify
38152         units
38156            mg
38165            mg
38166            mg
38177 other specify
38179         drops
38181   unspecified
38182   unspecified
38184   unspecified
38185         drops
38193 other specify
38204           tsp
38211         drops
38216 other specify
38217 other specify
38219            mg
38220 other specify
38240 other specify
38248            mg
38256           tbs
38257            mg
38259            mg
38260            mg
38262 other specify
38268         drops
38273         units
38284 other specify
38287 other specify
38288 other specify
38289 other specify
38293            mg
38294 other specify
38301 other specify
38305         drops
38306 other specify
38321            mg
38324            ml
38326 other specify
38330 other specify
38339 other specify
38341 other specify
38342 other specify
38350         units
38351 other specify
38352 other specify
38353 other specify
38361 other specify
38362            mg
38365 other specify
38366 other specify
38367 other specify
38369         drops
38370            ml
38371            ml
38372 other specify
38373 other specify
38377   unspecified
38378         drops
38386   unspecified
38387   unspecified
38388 other specify
38396 other specify
38397 other specify
38398            mg
38399 other specify
38406 other specify
38420 other specify
38422 other specify
38423 other specify
38427            gm
38431 other specify
38436 other specify
38438 other specify
38439 other specify
38442            ml
38461            ml
38462            mg
38464            mg
38465            ml
38466            mg
38470            mg
38471            mg
38472            mg
38473            mg
38496           mcg
38499            mg
38504            ml
38505            mg
38507            mg
38508            ml
38509            mg
38510            mg
38511            mg
38512            mg
38522            mg
38527 other specify
38528 other specify
38529 other specify
38531 other specify
38532 other specify
38533         drops
38534 other specify
38535           tbs
38536 other specify
38544 other specify
38550   unspecified
38551   unspecified
38557   unspecified
38567 other specify
38568 other specify
38569 other specify
38570   unspecified
38588 other specify
38602 other specify
38605         drops
38606            mg
38607            oz
38610 other specify
38611 other specify
38618           tsp
38626 other specify
38630 other specify
38636 other specify
38637 other specify
38638         drops
38643 other specify
38647            ml
38655 other specify
38656 other specify
38665            mg
38691 other specify
38716            gm
38722         drops
38723 other specify
38754   unspecified
38764            mg
38772 other specify
38773         units
38775            ml
38776         drops
38779            gm
38780            oz
38787 other specify
38789   unspecified
38796 other specify
38802   unspecified
38808            mg
38809         drops
38810            ml
38816 other specify
38818            mg
38820            mg
38821            mg
38828 other specify
38839         drops
38841         drops
38843         drops
38845           tsp
38847 other specify
38850 other specify
38851   unspecified
38854         drops
38855 other specify
38861            ml
38864         drops
38865         drops
38868           mcg
38871   unspecified
38890 other specify
38891 other specify
38892 other specify
38896 other specify
38902 other specify
38924            mg
38925 other specify
38926 other specify
38930 other specify
38931 other specify
38940 other specify
38941 other specify
38945 other specify
38946 other specify
38950 other specify
38951 other specify
38952 other specify
38956   unspecified
38963 other specify
38964 other specify
38970   unspecified
38971   unspecified
38974   unspecified
38976   unspecified
38978         units
38997   unspecified
39004 other specify
39005 other specify
39006         drops
39035   unspecified
39073 other specify
39083            mg
39099 other specify
39113            mg
39117            mg
39120 other specify
39121 other specify
39122 other specify
39123 other specify
39125            ml
39127         drops
39128         drops
39158            mg
39165            mg
39167 other specify
39171 other specify
39175            ml
39176 other specify
39177            mg
39181 other specify
39182 other specify
39188         drops
39198 other specify
39201         drops
39202 other specify
39207         drops
39209         drops
39210         drops
39211 other specify
39212         drops
39218         drops
39258 other specify
39259 other specify
39260 other specify
39261           tsp
39262            mg
39273            mg
39316 other specify
39325            mg
39326            oz
39327            mg
39328            mg
39329            mg
39330            mg
39331            mg
39332            mg
39338 other specify
39339 other specify
39340 other specify
39385           mcg
39388 other specify
39390           mcg
39392         drops
39415 other specify
39416            mg
39423   unspecified
39425 other specify
39433            oz
39434         drops
39435 other specify
39436            mg
39438 other specify
39440         units
39443         units
39444         units
39445         units
39446         units
39447         units
39450         units
39451         units
39453 other specify
39464           mcg
39478           mcg
39486 other specify
39495         drops
39496           mcg
39511         units
39513         drops
39516 other specify
39519         drops
39525 other specify
39526 other specify
39528         drops
39531 other specify
39532            mg
39534         drops
39536 other specify
39539         drops
39541 other specify
39542 other specify
39543 other specify
39546 other specify
39548            mg
39566   unspecified
39567   unspecified
39573   unspecified
39579         drops
39581 other specify
39582 other specify
39586 other specify
39591   unspecified
39599   unspecified
39605            mg
39607            mg
39609 other specify
39617            mg
39618            mg
39635 other specify
39637            mg
39639 other specify
39651 other specify
39705            mg
39706            mg
39707            mg
39708           mcg
39714 other specify
39715 other specify
39737   unspecified
39744 other specify
39745 other specify
39750         drops
39754 other specify
39755 other specify
39756            mg
39759            mg
39760         units
39763            mg
39764 other specify
39776            mg
39777            mg
39778            mg
39785            mg
39786 other specify
39787 other specify
39788 other specify
39795            mg
39796           mcg
39809           mcg
39833            mg
39849            mg
39856            mg
39860            mg
39871           mcg
39875           mcg
39877            mg
39881 other specify
39901            mg
39909 other specify
39916         drops
39917         drops
39918         drops
39919 other specify
39948 other specify
39949 other specify
39958 other specify
39973 other specify
39974 other specify
39975 other specify
39980 other specify
39981 other specify
39982 other specify
39987         drops
39988         drops
40003            mg
40013 other specify
40021         drops
40023 other specify
40024         drops
40038            mg
40042           mcg
40043            ml
40052 other specify
40053           mcg
40054            mg
40092 other specify
40093 other specify
40095           mcg
40102   unspecified
40108           mcg
40109            mg
40115 other specify
40117 other specify
40121           mcg
40123 other specify
40124 other specify
40125 other specify
40133            mg
40134            mg
40138 other specify
40141         drops
40142            mg
40143 other specify
40144 other specify
40149 other specify
40154 other specify
40164 other specify
40165 other specify
40180 other specify
40186 other specify
40193           mcg
40194 other specify
40196 other specify
40206 other specify
40209 other specify
40214 other specify
40216 other specify
40217 other specify
40218 other specify
40221 other specify
40222 other specify
40223 other specify
40224 other specify
40244 other specify
40290           mcg
40296            mg
40297            ml
40298            ml
40299 other specify
40302         drops
40308            mg
40309            mg
40312 other specify
40313            mg
40317 other specify
40325            mg
40331            mg
40343         drops
40346            mg
40390 other specify
40391 other specify
40392            mg
40394   unspecified
40403 other specify
40405            mg
40406            mg
40407           mcg
40417 other specify
40418 other specify
40422 other specify
40425 other specify
40446            mg
40447         drops
40451            mg
40454            mg
40464            mg
40468         units
40472 other specify
40474 other specify
40483 other specify
40484 other specify
40486         units
40487         units
40488 other specify
40489         drops
40490            mg
40494            mg
40503 other specify
40504 other specify
40505 other specify
40508         drops
40511            mg
40519 other specify
40521         drops
40535            mg
40541         units
40542            ml
40543            mg
40547            mg
40568 other specify
40571         drops
40572         units
40573 other specify
40574 other specify
40579 other specify
40580            mg
40581            mg
40582 other specify
40583            ml
40595 other specify
40600 other specify
40601 other specify
40603 other specify
40604 other specify
40606 other specify
40607 other specify
40611 other specify
40615            mg
40616 other specify
40617 other specify
40618   unspecified
40619   unspecified
40620   unspecified
40624            mg
40625            mg
40634 other specify
40635            mg
40636         units
40637         units
40644   unspecified
40653 other specify
40654 other specify
40655 other specify
40656            mg
40657           mcg
40658           mcg
40684 other specify
40686 other specify
40687 other specify
40688 other specify
40689 other specify
40690 other specify
40691 other specify
40693 other specify
40695 other specify
40696 other specify
40699            mg
40700 other specify
40701 other specify
40718         drops
40719 other specify
40721 other specify
40722 other specify
40723         drops
40724         drops
40725 other specify
40726         drops
40727         drops
40744 other specify
40745 other specify
40747            mg
40748 other specify
40749 other specify
40750           tbs
40751 other specify
40754 other specify
40755 other specify
40756 other specify
40758         drops
40760 other specify
40775 other specify
40776 other specify
40781 other specify
40783         units
40794         drops
40796 other specify
40799 other specify
40800 other specify
40801 other specify
40810 other specify
40823 other specify
40824 other specify
40825 other specify
40826            mg
40827 other specify
40828 other specify
40829 other specify
40833 other specify
40834 other specify
40838 other specify
40839 other specify
40840 other specify
40843 other specify
40846            mg
40848 other specify
40866 other specify
40868 other specify
40869            mg
40870 other specify
40873 other specify
40875 other specify
40876           mcg
40879 other specify
40895   unspecified
40897            mg
40899            mg
40900            mg
40902           mcg
40905           mcg
40919   unspecified
40943            ml
40958 other specify
40959 other specify
40960 other specify
40961 other specify
40962 other specify
40965 other specify
40966 other specify
40967 other specify
40968 other specify
40969 other specify
40970 other specify
40971 other specify
40972 other specify
40974 other specify
40984   unspecified
40987   unspecified
40990   unspecified
40992         units
40993         units
40994         units
40997 other specify
40998            ml
41002            mg
41003            mg
41004            mg
41005            oz
41006            gm
41007            gm
41008            mg
41009            mg
41010            ml
41011            mg
41012            mg
41013            mg
41014            gm
41015            mg
41016            ml
41017            mg
41018 other specify
41020   unspecified
41021 other specify
41022         drops
41023 other specify
41024 other specify
41025            ml
41055            mg
41057         drops
41068 other specify
41069 other specify
41082            mg
41083            mg
41084            ml
41085            mg
41086            mg
41087            mg
41088            ml
41089            mg
41090           tsp
41091         drops
41092            mg
41094            mg
41095            mg
41096            ml
41097         drops
41098            ml
41099            mg
41100            mg
41101            gm
41102            mg
41103            ml
41104            mg
41105            mg
41121 other specify
41125 other specify
41129            mg
41130            mg
41131 other specify
41132 other specify
41133 other specify
41134 other specify
41137 other specify
41139         drops
41147         drops
41151         drops
41152   unspecified
41170 other specify
41198           mcg
41199           mcg
41200           mcg
41201           mcg
41203 other specify
41204 other specify
41206 other specify
41207 other specify
41208 other specify
41209 other specify
41210 other specify
41216         drops
41217 other specify
41219 other specify
41220            mg
41221 other specify
41222           mcg
41223         units
41224         units
41225            mg
41240 other specify
41241 other specify
41242 other specify
41243           mcg
41246 other specify
41250 other specify
41251            mg
41252            mg
41254 other specify
41255            mg
41256            mg
41260   unspecified
41267 other specify
41278 other specify
41279 other specify
41281 other specify
41283            mg
41302            mg
41313         drops
41314            mg
41315         drops
41316            mg
41318         drops
41319           mcg
41320 other specify
41325            mg
41332            mg
41335 other specify
41336 other specify
41340 other specify
41343         drops
41360   unspecified
41370         units
41371         units
41372         units
41373 other specify
41374 other specify
41376            mg
41377 other specify
41378 other specify
41381            ml
41384 other specify
41385 other specify
41386 other specify
41387 other specify
41388         drops
41396         drops
41398         units
41399         drops
41400            ml
41407            mg
41413         drops
41417           mcg
41418            ml
41420            mg
41421 other specify
41422 other specify
41424 other specify
41425 other specify
41430            mg
41431            mg
41432 other specify
41433         drops
41435            mg
41442 other specify
41443            mg
41444            mg
41446 other specify
41447            mg
41451            mg
41464 other specify
41466 other specify
41470   unspecified
41497 other specify
41500         units
41502 other specify
41505 other specify
41525 other specify
41531 other specify
41533            mg
41557 other specify
41572 other specify
41573 other specify
41581 other specify
41612            mg
41615 other specify
41617            mg
41621            mg
41629 other specify
41632            mg
41633            mg
41636 other specify
41637 other specify
41638 other specify
41639 other specify
41640 other specify
41641           mcg
41653            mg
41655         drops
41661            mg
41674            mg
41724   unspecified
41725 other specify
41726 other specify
41727 other specify
41728 other specify
41729 other specify
41731         units
41737 other specify
41738 other specify
41739 other specify
41740 other specify
41743            mg
41746 other specify
41747 other specify
41748 other specify
41749 other specify
41750 other specify
41751 other specify
41752 other specify
41753 other specify
41754 other specify
41756           mcg
41759 other specify
41774            mg
41775            mg
41778 other specify
41779 other specify
41781         units
41803 other specify
41811         drops
41816         drops
41819            mg
41830            mg
41835 other specify
41837 other specify
41838 other specify
41840 other specify
41842         drops
41846            gm
41849 other specify
41850 other specify
41851            mg
41853            mg
41854 other specify
41856 other specify
41862         drops
41863         drops
41866           mcg
41867            mg
41870            mg
41872            mg
41888 other specify
41891            mg
41892            mg
41893         drops
41894            mg
41895            mg
41896            mg
41897            mg
41898            mg
41899            mg
41900            mg
41901            mg
41902            mg
41903            mg
41904            mg
41905            mg
41906            mg
41907           tsp
41921   unspecified
41929 other specify
41930 other specify
41937 other specify
41938 other specify
41939 other specify
41946           mcg
41947           mcg
41950           mcg
41973 other specify
41975            mg
41976 other specify
41988 other specify
42004         units
42005         units
42011 other specify
42012 other specify
42030 other specify
42032 other specify
42033            mg
42034            mg
42035            mg
42036         drops
42037 other specify
42039 other specify
42040 other specify
42041            mg
42042            mg
42043 other specify
42044 other specify
42053 other specify
42054 other specify
42055            gm
42057            mg
42061 other specify
42063 other specify
42066 other specify
42100 other specify
42101 other specify
42112 other specify
42113            mg
42114            mg
42115            mg
42116            mg
42117            mg
42119   unspecified
42122   unspecified
42147 other specify
42148 other specify
42149 other specify
42150 other specify
42151 other specify
42152 other specify
42154 other specify
42171         drops
42174 other specify
42175            ml
42176            mg
42198 other specify
42201 other specify
42215   unspecified
42218         units
42219         units
42221 other specify
42227 other specify
42229 other specify
42240   unspecified
42241   unspecified
42242   unspecified
42243   unspecified
42256 other specify
42257 other specify
42259 other specify
42267         drops
42272            mg
42273            mg
42278 other specify
42284            mg
42286 other specify
42287 other specify
42289 other specify
42291 other specify
42313 other specify
42314 other specify
42345 other specify
42346 other specify
42348 other specify
42349 other specify
42353 other specify
42354 other specify
42355           tsp
42356 other specify
42357 other specify
42358 other specify
42361 other specify
42365 other specify
42366 other specify
42367 other specify
42368         units
42378 other specify
42379 other specify
42384 other specify
42386 other specify
42387 other specify
42399 other specify
42402 other specify
42403 other specify
42404 other specify
42412 other specify
42413 other specify
42417 other specify
42425 other specify
42426 other specify
42433 other specify
42451 other specify
42455            mg
42463 other specify
42464 other specify
42465 other specify
42466            mg
42468   unspecified
42474 other specify
42475            mg
42476 other specify
42477 other specify
42478            mg
42479            oz
42480            oz
42481            mg
42482 other specify
42483 other specify
42486 other specify
42488 other specify
42489            mg
42502            mg
42506 other specify
42512 other specify
42513         units
42518            mg
42519            mg
42522 other specify
42537 other specify
42551 other specify
42552 other specify
42553 other specify
42566 other specify
42570 other specify
42572           mcg
42573 other specify
42574 other specify
42578            mg
42579            mg
42593           mcg
42594           mcg
42624 other specify
42626         drops
42627 other specify
42628 other specify
42632 other specify
42633 other specify
42634 other specify
42637 other specify
42638            mg
42640 other specify
42646            ml
42647            ml
42648            ml
42651 other specify
42652 other specify
42655 other specify
42656 other specify
42666 other specify
42668            mg
42675   unspecified
42678         drops
42679         drops
42694 other specify
42695 other specify
42696 other specify
42697 other specify
42700         drops
42704 other specify
42712 other specify
42716 other specify
42721         units
42725 other specify
42726 other specify
42727         units
42728 other specify
42729 other specify
42740 other specify
42752         units
42753         units
42758            mg
42760 other specify
42761 other specify
42764            mg
42766 other specify
42767 other specify
42768            mg
42769            mg
42785            mg
42786            mg
42787            mg
42791            mg
42792            mg
42799   unspecified
42821 other specify
42829         drops
42833            mg
42860 other specify
42876            mg
42879         drops
42887   unspecified
42890 other specify
42891 other specify
42892   unspecified
42893   unspecified
42894   unspecified
42909            mg
42913 other specify
42915 other specify
42920            mg
42923 other specify
42926 other specify
42930 other specify
42931 other specify
42932 other specify
42935 other specify
42936 other specify
42939 other specify
42940 other specify
42946   unspecified
42952            mg
42956 other specify
42959 other specify
42960           mcg
42967 other specify
42994 other specify
43013           mcg
43045 other specify
43064 other specify
43065 other specify
43069 other specify
43072 other specify
43081 other specify
43086 other specify
43105 other specify
43116 other specify
43119 other specify
43123            mg
43134            mg
43135            mg
43136            mg
43137            mg
43138            mg
43149            mg
43151            mg
43153            mg
43169 other specify
43173 other specify
43183            mg
43184            mg
43187            mg
43191 other specify
43200            mg
43202            ml
43204 other specify
43224         drops
43228 other specify
43236            mg
43238 other specify
43239 other specify
43240            mg
43241 other specify
43242 other specify
43243 other specify
43244 other specify
43246 other specify
43247   unspecified
43251            mg
43254            mg
43258            mg
43259            mg
43265            mg
43270            mg
43286            mg
43291            mg
43292            oz
43293 other specify
43310 other specify
43329            mg
43334            mg
43366         drops
43388 other specify
43396            gm
43397            gm
43398            mg
43399            mg
43400            mg
43405 other specify
43412 other specify
43416 other specify
43423           mcg
43424            mg
43430 other specify
43436            mg
43443            mg
43465 other specify
43467 other specify
43469 other specify
43470 other specify
43471 other specify
43482 other specify
43491 other specify
43493            mg
43494            mg
43496            mg
43497            mg
43498            mg
43510 other specify
43511 other specify
43512 other specify
43522 other specify
43527 other specify
43531 other specify
43532 other specify
43535 other specify
43538 other specify
43539 other specify
43540         drops
43545 other specify
43546 other specify
43547 other specify
43548 other specify
43549 other specify
43550 other specify
43561            mg
43563 other specify
43570         drops
43601         drops
43610 other specify
43611           mcg
43620            mg
43621 other specify
43622           mcg
43636 other specify
43637 other specify
43639            gm
43640         drops
43641 other specify
43642         drops
43643 other specify
43644         units
43645         units
43646         units
43650            oz
43652 other specify
43653 other specify
43669 other specify
43678 other specify
43683 other specify
43684 other specify
43685 other specify
43686 other specify
43697 other specify
43698 other specify
43701 other specify
43702 other specify
43706 other specify
43707 other specify
43709 other specify
43712 other specify
43714 other specify
43715 other specify
43738   unspecified
43743 other specify
43744 other specify
43745 other specify
43746 other specify
43747 other specify
43751 other specify
43755            mg
43756            mg
43765 other specify
43766            mg
43778           mcg
43783 other specify
43784 other specify
43785 other specify
43790         units
43806 other specify
43807 other specify
43829            ml
43831           mcg
43838   unspecified
43843            mg
43844            mg
43851            mg
43853   unspecified
43854   unspecified
43878 other specify
43884         units
43887         drops
43893 other specify
43894 other specify
43896 other specify
43897         drops
43898            mg
43919 other specify
43920 other specify
43938 other specify
43939 other specify
43949 other specify
43950 other specify
43958 other specify
43959 other specify
43960 other specify
43963            mg
43965         drops
43975 other specify
43976           mcg
43977           mcg
43980           mcg
43997 other specify
44031           mcg
44037           mcg
44050 other specify
44051         drops
44055         drops
44084 other specify
44087 other specify
44090 other specify
44119         drops
44123 other specify
44126 other specify
44127 other specify
44129 other specify
44131 other specify
44154 other specify
44155 other specify
44157 other specify
44158 other specify
44207 other specify
44209 other specify
44211 other specify
44212 other specify
44214            mg
44216 other specify
44218 other specify
44219            mg
44220            ml
44222   unspecified
44223         drops
44224         drops
44225         drops
44226         units
44227         drops
44234         units
44235         units
44240         drops
44241            mg
44242           tsp
44243   unspecified
44244   unspecified
44245            mg
44246         units
44247         units
44249 other specify
44250 other specify
44251 other specify
44252 other specify
44253 other specify
44268 other specify
44280 other specify
44282 other specify
44309   unspecified
44330 other specify
44334 other specify
44335 other specify
44336 other specify
44337 other specify
44347   unspecified
44350            mg
44363            mg
44372 other specify
44385            mg
44386            mg
44390 other specify
44391            mg
44392            mg
44395 other specify
44398 other specify
44421 other specify
44428 other specify
44429            mg
44431 other specify
44434            gm
44452 other specify
44473 other specify
44501         drops
44502            mg
44503            mg
44504            mg
44505            mg
44507         drops
44508            mg
44509            mg
44518           mcg
44520         drops
44524         units
44531         units
44532            mg
44542 other specify
44543 other specify
44544 other specify
44545            ml
44546 other specify
44547 other specify
44552            ml
44558 other specify
44559 other specify
44570 other specify
44571 other specify
44576 other specify
44577 other specify
44595 other specify
44607 other specify
44608 other specify
44609 other specify
44614 other specify
44616 other specify
44618 other specify
44646            ml
44649 other specify
44652   unspecified
44653   unspecified
44654   unspecified
44655   unspecified
44658   unspecified
44660            mg
44663            mg
44671 other specify
44672            mg
44677            mg
44679            mg
44683         drops
44684 other specify
44706 other specify
44732            mg
44742 other specify
44743 other specify
44745 other specify
44746            mg
44747 other specify
44755   unspecified
44757   unspecified
44769         drops
44771 other specify
44782   unspecified
44795 other specify
44796         drops
44797         drops
44798            mg
44799            mg
44800            mg
44804            mg
44805            mg
44820 other specify
44827 other specify
44828 other specify
44829 other specify
44830         units
44831         drops
44834 other specify
44843 other specify
44844 other specify
44857            mg
44858            mg
44862 other specify
44863           mcg
44864           mcg
44866   unspecified
44867 other specify
44868 other specify
44869 other specify
44870            mg
44875            mg
44877           mcg
44878            mg
44879 other specify
44899   unspecified
44905   unspecified
44915         drops
44916            mg
44917 other specify
44918 other specify
44920         drops
44922            mg
44924 other specify
44925         drops
44933            ml
44936            mg
44937            ml
44938            ml
44939            oz
44946 other specify
44947 other specify
44948 other specify
44949 other specify
44950 other specify
44957 other specify
44958 other specify
44990            gm
44997 other specify
45005            mg
45007 other specify
45014 other specify
45015            mg
45016 other specify
45017            mg
45023         drops
45027         drops
45034 other specify
45045 other specify
45047         units
45053 other specify
45054 other specify
45055 other specify
45059 other specify
45061 other specify
45062 other specify
45063            mg
45064 other specify
45066         drops
45072            mg
45073            mg
45076 other specify
45109 other specify
45110            mg
45112 other specify
45115            mg
45116            mg
45117 other specify
45123         units
45134            mg
45139            mg
45149 other specify
45150 other specify
45154 other specify
45172         drops
45173         drops
45174            ml
45175            ml
45178 other specify
45179 other specify
45180 other specify
45181 other specify
45182 other specify
45184 other specify
45185 other specify
45186 other specify
45187 other specify
45188 other specify
45189 other specify
45195            mg
45199            mg
45203 other specify
45204            mg
45208 other specify
45209         drops
45210 other specify
45212 other specify
45216 other specify
45224   unspecified
45225 other specify
45236 other specify
45255            mg
45257         drops
45263 other specify
45268 other specify
45273         drops
45274         drops
45280           mcg
45283 other specify
45286           mcg
45294           mcg
45295            gm
45297         drops
45298 other specify
45299 other specify
45302 other specify
45305            mg
45307 other specify
45309            mg
45310 other specify
45311 other specify
45312 other specify
45313 other specify
45322            mg
45327            mg
45335            mg
45344 other specify
45345 other specify
45358   unspecified
45359   unspecified
45372 other specify
45383            ml
45403   unspecified
45406 other specify
45411 other specify
45425 other specify
45426 other specify
45434   unspecified
45435         drops
45443 other specify
45445 other specify
45451 other specify
45452 other specify
45463            mg
45468            mg
45470 other specify
45471 other specify
45476            mg
45479         drops
45480            mg
45484 other specify
45498            mg
45499 other specify
45500 other specify
45503            mg
45504 other specify
45508 other specify
45531            mg
45534            mg
45553         drops
45555 other specify
45556 other specify
45572         drops
45582 other specify
45585 other specify
45586            mg
45587            mg
45591         drops
45592            mg
45626            mg
45629            ml
45642           mcg
45650 other specify
45651 other specify
45655 other specify
45656 other specify
45663         drops
45664 other specify
45665 other specify
45666            mg
45667 other specify
45670            mg
45671            mg
45674 other specify
45675 other specify
45676 other specify
45683 other specify
45684            mg
45699         drops
45700         drops
45703            ml
45704         drops
45724         units
45725         units
45726         units
45727            oz
45728         units
45729            mg
45735 other specify
45736 other specify
45751   unspecified
45764         units
45775         drops
45776         drops
45786            mg
45787 other specify
45791 other specify
45794            mg
45798            mg
45799 other specify
45800 other specify
45816 other specify
45820 other specify
45843 other specify
45853 other specify
45862 other specify
45863 other specify
45864 other specify
45869 other specify
45870 other specify
45871         drops
45872 other specify
45876            mg
45886         drops
45898 other specify
45899 other specify
45901 other specify
45908 other specify
45909 other specify
45914 other specify
45924            mg
45968            mg
45969 other specify
45970 other specify
45971            mg
45972            gm
45974            mg
45990 other specify
45994         units
45995 other specify
45996         drops
45997 other specify
46014 other specify
46018 other specify
46019 other specify
46020            ml
46021 other specify
46022 other specify
46025 other specify
46043 other specify
46044 other specify
46071 other specify
46075            mg
46076 other specify
46077 other specify
46078 other specify
46079 other specify
46085   unspecified
46091 other specify
46092 other specify
46094            mg
46095         units
46100 other specify
46101         drops
46102         drops
46103            mg
46107 other specify
46108 other specify
46110 other specify
46116 other specify
46119 other specify
46122 other specify
46128           mcg
46131         drops
46132         drops
46134 other specify
46169            mg
46170 other specify
46171 other specify
46173 other specify
46174 other specify
46177           mcg
46179            mg
46186   unspecified
46198 other specify
46200 other specify
46201 other specify
46202            mg
46213 other specify
46218 other specify
46219 other specify
46226            mg
46227 other specify
46255 other specify
46265            mg
46277 other specify
46278 other specify
46287 other specify
46288 other specify
46291 other specify
46292 other specify
46293 other specify
46295 other specify
46296 other specify
46302 other specify
46303            mg
46305            mg
46308            mg
46311   unspecified
46312 other specify
46313   unspecified
46314   unspecified
46319 other specify
46320            mg
46324         drops
46325            mg
46328            mg
46345            mg
46350            mg
46355            mg
46358            mg
46360 other specify
46377 other specify
46379            mg
46399 other specify
46406 other specify
46410            mg
46411         drops
46413 other specify
46418 other specify
46424 other specify
46431 other specify
46432 other specify
46435            mg
46436 other specify
46474 other specify
46475 other specify
46476 other specify
46478 other specify
46479 other specify
46482 other specify
46483 other specify
46486 other specify
46487 other specify
46488 other specify
46489 other specify
46490            mg
46493 other specify
46494 other specify
46499            mg
46502            ml
46504            ml
46505         drops
46506         drops
46512            mg
46517         units
46521         drops
46524         drops
46526            mg
46527            ml
46528         drops
46529            gm
46530         drops
46532            mg
46533            mg
46534         drops
46544            mg
46547            ml
46551         drops
46553         drops
46555 other specify
46568           mcg
46569            ml
46570            mg
46571         drops
46572 other specify
46573            mg
46574           mcg
46575           mcg
46579   unspecified
46588            ml
46590         drops
46591           mcg
46593         drops
46606         drops
46607            mg
46615 other specify
46616 other specify
46617 other specify
46618            mg
46664 other specify
46665            mg
46676 other specify
46680         units
46687         drops
46690 other specify
46694 other specify
46702 other specify
46703 other specify
46716            mg
46717            mg
46718            mg
46729 other specify
46730 other specify
46732            ml
46737   unspecified
46747   unspecified
46753 other specify
46762            ml
46763            mg
46766            mg
46767 other specify
46771            mg
46775 other specify
46776 other specify
46777 other specify
46781 other specify
46782 other specify
46783 other specify
46784 other specify
46785 other specify
46786 other specify
46788 other specify
46789 other specify
46804           mcg
46811 other specify
46812 other specify
46816 other specify
46818            mg
46826            ml
46827         drops
46835            mg
46836           mcg
46849           mcg
46853           mcg
46867            mg
46874 other specify
46880 other specify
46881            mg
46883            mg
46884 other specify
46885 other specify
46889            mg
46891 other specify
46902         drops
46903 other specify
46904 other specify
46905         drops
46908 other specify
46915 other specify
46931 other specify
46938 other specify
46944 other specify
46961 other specify
46962         drops
46972 other specify
46973 other specify
46976           mcg
46977 other specify
46978         drops
46979           mcg
46980            mg
46981         drops
46982 other specify
46983            ml
46984 other specify
46985 other specify
46986 other specify
47000            mg
47004 other specify
47010 other specify
47011 other specify
47018 other specify
47024 other specify
47025 other specify
47040            mg
47041            mg
47042            mg
47043 other specify
47045            mg
47049         drops
47050            mg
47055           mcg
47060   unspecified
47065            mg
47069         drops
47076         drops
47080            oz
47081           tsp
47085 other specify
47086 other specify
47090            mg
47095 other specify
47096 other specify
47097 other specify
47098 other specify
47104 other specify
47105 other specify
47106 other specify
47108            ml
47123           mcg
47125           mcg
47126            mg
47128            mg
47137         drops
47140            ml
47143 other specify
47146            mg
47152         drops
47154 other specify
47155 other specify
47156 other specify
47162 other specify
47164 other specify
47178 other specify
47180         drops
47181 other specify
47183 other specify
47184 other specify
47185            mg
47186            mg
47187 other specify
47193 other specify
47194 other specify
47196 other specify
47197 other specify
47204   unspecified
47208 other specify
47209 other specify
47210 other specify
47220 other specify
47221            mg
47222 other specify
47240         drops
47248 other specify
47251 other specify
47253 other specify
47260 other specify
47266            mg
47302         drops
47305 other specify
47323            mg
47325            mg
47334 other specify
47343            mg
47345            mg
47350 other specify
47355 other specify
47360   unspecified
47390 other specify
47407            mg
47409            mg
47411 other specify
47412 other specify
47415 other specify
47416 other specify
47417 other specify
47420 other specify
47421 other specify
47433            mg
47439            mg
47451            mg
47478 other specify
47479 other specify
47481 other specify
47483 other specify
47484 other specify
47486 other specify
47490           mcg
47493 other specify
47496 other specify
47497 other specify
47498 other specify
47513            iu
47515 other specify
47517           mcg
47524           mcg
47539         drops
47540 other specify
47544   unspecified
47547         drops
47557 other specify
47559            ml
47561            gm
47562 other specify
47563 other specify
47576 other specify
47577 other specify
47578 other specify
47580 other specify
47586 other specify
47587 other specify
47588 other specify
47589            mg
47590            ml
47592            mg
47593            ml
47594            mg
47595            ml
47597            mg
47600            mg
47628 other specify
47629            mg
47630         drops
47635         units
47636            mg
47658         drops
47681 other specify
47682 other specify
47684 other specify
47693 other specify
47694 other specify
47696 other specify
47698 other specify
47699 other specify
47702         drops
47706            mg
47715   unspecified
47716   unspecified
47720 other specify
47721         drops
47733 other specify
47734         drops
47739   unspecified
47743            mg
47744 other specify
47745            mg
47746         units
47752 other specify
47755 other specify
47760 other specify
47800 other specify
47801 other specify
47802 other specify
47803 other specify
47808 other specify
47810 other specify
47811 other specify
47812 other specify
47815 other specify
47816 other specify
47817 other specify
47825   unspecified
47835 other specify
47836 other specify
47840 other specify
47847 other specify
47860            mg
47861            ml
47862            ml
47863         units
47867            mg
47877            mg
47887 other specify
47888 other specify
47889         drops
47890            mg
47891           tsp
47892            mg
47894            mg
47900 other specify
47909         units
47910         drops
47917            mg
47928            mg
47949            mg
47951         drops
47952            mg
47953 other specify
47969 other specify
47970 other specify
47971 other specify
47975 other specify
47976 other specify
47981 other specify
47983            mg
47984 other specify
47985 other specify
47989 other specify
47990 other specify
47995 other specify
47996 other specify
47997 other specify
47998            mg
47999            ml
48000            mg
48001            mg
48002            mg
48003            mg
48004            mg
48005            mg
48006            mg
48007            mg
48008            mg
48013 other specify
48014 other specify
48016         drops
48020 other specify
48021 other specify
48028 other specify
48029 other specify
48030 other specify
48031 other specify
48032 other specify
48033 other specify
48034 other specify
48035 other specify
48040 other specify
48041            oz
48046 other specify
48047 other specify
48048 other specify
48049 other specify
48069 other specify
48072 other specify
48087 other specify
48088 other specify
48089         units
48090         units
48094         units
48100 other specify
48101         drops
48102 other specify
48103            ml
48105 other specify
48106 other specify
48107 other specify
48108 other specify
48109 other specify
48110 other specify
48114 other specify
48120 other specify
48121         units
48127 other specify
48128            mg
48129            mg
48131         units
48132 other specify
48133 other specify
48142 other specify
48143         units
48147 other specify
48148 other specify
48151 other specify
48152 other specify
48154            mg
48155            mg
48157 other specify
48158 other specify
48159 other specify
48160 other specify
48161            mg
48162            mg
48163   unspecified
48167 other specify
48169            mg
48170            mg
48171            mg
48178         drops
48182 other specify
48185            mg
48188 other specify
48201            mg
48213 other specify
48214 other specify
48215 other specify
48217            mg
48218            mg
48220 other specify
48221 other specify
48222 other specify
48223            ml
48231            mg
48237 other specify
48238            mg
48240            mg
48248            mg
48251 other specify
48252 other specify
48258 other specify
48265            oz
48266            oz
48267         drops
48271            mg
48274         drops
48277         drops
48285            gm
48287            ml
48288         drops
48289         units
48290         units
48291            gm
48292            mg
48294 other specify
48297 other specify
48298 other specify
48299 other specify
48300 other specify
48306 other specify
48307         drops
48310 other specify
48311         drops
48312            mg
48314            mg
48322 other specify
48327            ml
48328            mg
48334            ml
48336            mg
48337            mg
48338            mg
48339            mg
48342            mg
48343 other specify
48344            mg
48345 other specify
48350            mg
48351            mg
48352            mg
48353            mg
48354            mg
48355 other specify
48374         drops
48376         drops
48377            mg
48378         drops
48380 other specify
48381 other specify
48383 other specify
48384 other specify
48394         drops
48406 other specify
48420            mg
48438           mcg
48439 other specify
48440 other specify
48441 other specify
48442 other specify
48444 other specify
48447 other specify
48448 other specify
48481         drops
48483         drops
48494 other specify
48495            mg
48496            mg
48497            mg
48498            mg
48499 other specify
48500            mg
48502            mg
48503 other specify
48504            mg
48505            mg
48508            mg
48513 other specify
48520           tsp
48521            ml
48540            mg
48541 other specify
48542 other specify
48560 other specify
48598 other specify
48602            mg
48609            mg
48610            mg
48611            mg
48615           mcg
48621 other specify
48624 other specify
48633   unspecified
48636 other specify
48643 other specify
48661 other specify
48662            ml
48664 other specify
48667 other specify
48668 other specify
48673   unspecified
48680 other specify
48683 other specify
48684 other specify
48692            mg
48693            mg
48694         drops
48696 other specify
48697 other specify
48698 other specify
48712 other specify
48713 other specify
48718            mg
48719         drops
48720 other specify
48721 other specify
48722 other specify
48724 other specify
48725 other specify
48729 other specify
48733 other specify
48734 other specify
48735 other specify
48736 other specify
48770         units
48782   unspecified
48802         drops
48806         drops
48808         drops
48812            ml
48819            mg
48821            mg
48835 other specify
48842            mg
48845 other specify
48855            mg
48859            mg
48862            mg
48869            mg
48877            mg
48889 other specify
48890 other specify
48891 other specify
48892 other specify
48893         drops
48894            mg
48902 other specify
48906 other specify
48917 other specify
48918 other specify
48921 other specify
48935 other specify
48938           mcg
48946            mg
48971            mg
48994            mg
48997   unspecified
49002           mcg
49005         drops
49012 other specify
49015            ml
49016         drops
49017           mcg
49018           mcg
49019            mg
49025           mcg
49026         drops
49027 other specify
49028            mg
49030            gm
49033 other specify
49034 other specify
49035 other specify
49036 other specify
49042 other specify
49044 other specify
49046 other specify
49051   unspecified
49052   unspecified
49082 other specify
49084 other specify
49096 other specify
49105   unspecified
49113 other specify
49114           mcg
49117           mcg
49120            mg
49123 other specify
49127            mg
49128 other specify
49129 other specify
49130 other specify
49163            mg
49164 other specify
49167            mg
49168           mcg
49169            mg
49170            mg
49184 other specify
49185           mcg
49186            mg
49193            mg
49196            mg
49208 other specify
49209 other specify
49216 other specify
49217 other specify
49218 other specify
49219            mg
49220            mg
49227 other specify
49229 other specify
49231 other specify
49232 other specify
49248            mg
49252 other specify
49253 other specify
49304 other specify
49314 other specify
49316 other specify
49323 other specify
49324 other specify
49343 other specify
49345 other specify
49346 other specify
49348 other specify
49350 other specify
49351 other specify
49352 other specify
49371 other specify
49372            mg
49375            mg
49376 other specify
49377 other specify
49378 other specify
49379 other specify
49388 other specify
49393         units
49394         units
49395         units
49398            mg
49401            mg
49403            mg
49404            mg
49408 other specify
49409 other specify
49410            mg
49437 other specify
49438 other specify
49442 other specify
49460 other specify
49461 other specify
49462         units
49463 other specify
49473 other specify
49509 other specify
49510 other specify
49518           mcg
49520            mg
49523           tbs
49524           tbs
49525            ml
49526 other specify
49531   unspecified
49549 other specify
49550 other specify
49553           mcg
49554           mcg
49567 other specify
49568 other specify
49569 other specify
49572 other specify
49588           mcg
49589           mcg
49590 other specify
49591 other specify
49592 other specify
49593 other specify
49596 other specify
49601         drops
49604            mg
49605 other specify
49606            mg
49607            mg
49608         units
49640           mcg
49645 other specify
49649 other specify
49654 other specify
49659 other specify
49680            mg
49698            mg
49699 other specify
49705   unspecified
49714           mcg
49715 other specify
49731 other specify
49748 other specify
49753            oz
49754            oz
49755            mg
49756            ml
49757            mg
49758            mg
49764         drops
49765            mg
49766         drops
49767 other specify
49768 other specify
49769 other specify
49773 other specify
49783            mg
49792 other specify
49793 other specify
49799   unspecified
49812            mg
49820 other specify
49821 other specify
49845            mg
49846            mg
49848            mg
49849 other specify
49852 other specify
49854 other specify
49855 other specify
49856            ml
49857            mg
49861 other specify
49862 other specify
49871 other specify
49878 other specify
49883 other specify
49886 other specify
49889 other specify
49890 other specify
49898 other specify
49905 other specify
49906 other specify
49907 other specify
49908 other specify
49911 other specify
49912 other specify
49923            mg
49924            mg
49925            mg
49928            mg
49929            mg
49963            mg
49966            iu
49978 other specify
49980            mg
49985 other specify
49986 other specify
49987 other specify
49990 other specify
49991 other specify
49992 other specify
49993 other specify
49994 other specify
49995 other specify
49996 other specify
49997            mg
49998            mg
49999           mcg
50000 other specify
50001 other specify
50002 other specify
50004 other specify
50006 other specify
50007 other specify
50008 other specify
50009 other specify
50011         drops
50012   unspecified
50014   unspecified
50022            mg
50029            mg
50030            mg
50033            mg
50034            mg
50048            mg
50050            mg
50073 other specify
50076 other specify
50077         units
50107 other specify
50108 other specify
50115 other specify
50116 other specify
50117 other specify
50118           mcg
50154            mg
50159   unspecified
50161   unspecified
50187 other specify
50189 other specify
50190 other specify
50194 other specify
50195 other specify
50196 other specify
50198 other specify
50199 other specify
                                                      dose_unit_specify
22                                                                 <NA>
40                                                      based on weight
41                                                                 <NA>
42                                                      based on weight
46                                                  tablet/pill/capsule
48                                                                 tube
49                                                                 tube
51                                                  tablet/pill/capsule
59                                                1 tablet/pill/capsule
60                                                          bottle/vial
62                                                          application
63                                                  tablet/pill/capsule
67                                                         small amount
70                                                         small amount
74                                                                drops
84                                                                spray
87                                                      0.25 inch strip
91                                                                 <NA>
111                                                                <NA>
112                                                                <NA>
113                                                                <NA>
114                                                                <NA>
149                                                      shampoo/mousse
150                                                        small amount
151                                                         application
152                                                 tablet/pill/capsule
153                                                 tablet/pill/capsule
155                                                 tablet/pill/capsule
167                                                                <NA>
188                                                 tablet/pill/capsule
192                                                 tablet/pill/capsule
220                                                 tablet/pill/capsule
230                         272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                               drops
235                                                                <NA>
236                                                                tube
237                                                                tube
238                                                        small amount
239                                                                <NA>
242                                                                <NA>
243                                                                tube
248                                                                tube
257                                                                <NA>
275                                                 tablet/pill/capsule
276                                                 tablet/pill/capsule
277                                                 tablet/pill/capsule
279                                                     moderate amount
280                                                        small amount
287                                                                <NA>
310                                                                <NA>
317                                                                <NA>
318                                                                <NA>
324                                                     based on weight
328                                                     based on weight
329                                                     based on weight
332                                                     based on weight
333                                                     based on weight
347                                                                <NA>
348                                                                <NA>
350                                                                <NA>
351                                                                <NA>
353                                                                <NA>
355                                                                <NA>
366                                                                <NA>
368                                                                <NA>
372                                                                <NA>
375                                                 tablet/pill/capsule
376                                                 tablet/pill/capsule
383                                                 tablet/pill/capsule
384                                        based on weight (50-100 lbs)
385                                        based on weight (50-100 lbs)
386                                                 tablet/pill/capsule
403                                                                <NA>
404                                                                <NA>
414                                                                <NA>
447                                                                <NA>
449                                                                <NA>
453                                                                <NA>
480                                                              1 tube
496                                                                <NA>
497                                                                <NA>
498                                                     based on weight
519                                                         unspecified
537                                                                <NA>
597                                                                   1
598                                                                   1
603                                                 tablet/pill/capsule
604                                                 tablet/pill/capsule
610                                                                <NA>
619                                                 tablet/pill/capsule
635                                                                <NA>
637                                                     based on weight
642                                                                <NA>
645                                                                <NA>
686                                                                <NA>
688                                                                <NA>
703                                                     based on weight
704                                                     based on weight
709                                                                <NA>
710                                                                <NA>
712                                                                <NA>
725                                                                <NA>
728                                                 tablet/pill/capsule
729                                                 tablet/pill/capsule
730                                                                <NA>
731                                                                <NA>
733                                                                <NA>
734                                                          inch strip
735                                                                <NA>
736                                                                <NA>
737                                                                <NA>
738                                        based on weight (50-100 lbs)
739                                        based on weight (60-120 lbs)
750                                                                <NA>
754                                                 tablet/pill/capsule
755                                                     based on weight
757                                                     based on weight
760                                                                <NA>
771                                                                <NA>
778                                                                <NA>
785                                                 tablet/pill/capsule
790                                                 tablet/pill/capsule
792                                                 tablet/pill/capsule
797                                                                <NA>
798                                                                <NA>
799                                                                <NA>
800                                                                <NA>
801                                                                <NA>
802                                                                <NA>
803                                                     based on weight
804                                                         unspecified
810                                                         bottle/vial
816                                                        pack/package
819                                                                <NA>
820                                                                <NA>
823                                                                <NA>
824                                                 tablet/pill/capsule
832                                                                <NA>
850                                                                <NA>
851                                                                <NA>
862                                                 tablet/pill/capsule
863                                                                <NA>
871                                                                <NA>
874                                                                <NA>
877                                                                <NA>
878                                                                <NA>
879                                                                <NA>
880                                                                <NA>
884                                                                <NA>
887                                                                <NA>
891                                                                <NA>
893                                                                <NA>
899                                                                <NA>
901                                                                <NA>
905                                                                <NA>
913                                                     based on weight
917                                                                <NA>
918                                                                <NA>
921                                                     based on weight
929                                                                <NA>
930                                                                <NA>
950                                                                <NA>
955                                                              collar
958                                                                <NA>
969                                                                <NA>
970                                                              1 pump
977                                                                <NA>
982                                                 tablet/pill/capsule
983                                                 tablet/pill/capsule
989                                                     based on weight
1001                                                               <NA>
1017                                                tablet/pill/capsule
1018                                                tablet/pill/capsule
1019                                                             1 pump
1020                                                         inch strip
1021                                                           wipe/pad
1027                                                     shampoo/mousse
1028                                                               <NA>
1029                                                           wipe/pad
1030                                                     shampoo/mousse
1031                                                               <NA>
1033                                                               <NA>
1036                                                       small amount
1037                                                       small amount
1039                                                        bottle/vial
1042                                                           wipe/pad
1050                                                    based on weight
1072                                                               <NA>
1073                                                               pump
1074                                                tablet/pill/capsule
1087                           27 mg milbemycin oxime, 1620 mg spinosad
1088                                                               <NA>
1091                                                               <NA>
1092                                                               <NA>
1093                                                               <NA>
1097                                                               <NA>
1098                                                               <NA>
1099                                                tablet/pill/capsule
1100                                                tablet/pill/capsule
1101                                                tablet/pill/capsule
1108                                                           wipe/pad
1111                                                               <NA>
1112                                                        unspecified
1116                                                        unspecified
1129                                                tablet/pill/capsule
1131                                                               <NA>
1150                                                       small amount
1152                                       based on weight (50-100 lbs)
1153                                       based on weight (50-100 lbs)
1154                                       based on weight (50-100 lbs)
1155                                                tablet/pill/capsule
1159      460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                       based on weight (50-100 lbs)
1161                                          based on weight (60+ lbs)
1168                                                               <NA>
1169                                                               <NA>
1170                                                               dose
1173                                                        application
1174                                                               <NA>
1175                                                                  %
1176                                                               <NA>
1177                                                                  %
1179                                                       small amount
1185                                                    based on weight
1186                                                    based on weight
1187                                                               <NA>
1189                                                    based on weight
1190                                                    based on weight
1193                                                               <NA>
1194                                                               <NA>
1195                                                    based on weight
1208                                                     1 pack/package
1217                                                        combination
1226                                                    based on weight
1233                                                               <NA>
1247                                                    based on weight
1274                                                               <NA>
1285                                                               <NA>
1307                                                               <NA>
1336                                                               <NA>
1344                                                tablet/pill/capsule
1345                                                               <NA>
1346                                                       small amount
1348                                                              spray
1355                                                    based on weight
1371                                              1 tablet/pill/capsule
1377                                                               <NA>
1378                                                               <NA>
1379                                                               <NA>
1380                                                               <NA>
1398                                                               <NA>
1404                                                              spray
1405                                                               <NA>
1415                                                       small amount
1416                                                               <NA>
1417                                                               tube
1418                                                               <NA>
1419                                       based on weight (50-100 lbs)
1420                                                               <NA>
1422                                                tablet/pill/capsule
1434                                                               tube
1435                                                tablet/pill/capsule
1438                                                tablet/pill/capsule
1441                                                tablet/pill/capsule
1442                                                tablet/pill/capsule
1443                                                        bottle/vial
1450                                                               tube
1451                                                tablet/pill/capsule
1459                                                        application
1462                                                        bottle/vial
1464                                                    based on weight
1473                                                               <NA>
1475                                                               <NA>
1491                                                               <NA>
1499                                                               <NA>
1500                                                               <NA>
1501                                              1 tablet/pill/capsule
1502                                                               <NA>
1504                                                               <NA>
1511                                                    based on weight
1512                                                    based on weight
1514                                                    based on weight
1528                                                    based on weight
1529                                                    based on weight
1532                                                             1 tube
1534                                                               <NA>
1535                                                               <NA>
1536                                                        application
1537                                                tablet/pill/capsule
1538                                                               <NA>
1539                                                               tube
1541                                                               <NA>
1542                                                               <NA>
1556                                                           inhalant
1571                                        based on weight (44-88 lbs)
1572                                       based on weight (50-100 lbs)
1586                                                               <NA>
1587                                                        combination
1598                                                    based on weight
1599                                                               <NA>
1633                                       based on weight (50-100 lbs)
1634                                                               <NA>
1635                                           4 tablets/pills/capsules
1636                                                               <NA>
1650                                                               <NA>
1663                                       based on weight (60-120 lbs)
1668                                                    moderate amount
1683                                                             collar
1684                                                     shampoo/mousse
1685                                                              spray
1689                                                    moderate amount
1690                                                              spray
1692                                                    moderate amount
1695                                                               <NA>
1697                                                             collar
1708                                                               <NA>
1710                                                               <NA>
1712                                       based on weight (50-100 lbs)
1715                                       based on weight (50-100 lbs)
1718                                                               <NA>
1719                                                               <NA>
1720                                       based on weight (50-100 lbs)
1729                                                               <NA>
1730                                                               <NA>
1743                                                               <NA>
1747                                                        bottle/vial
1748                                                      1 bottle/vial
1749                                                    based on weight
1756                                                        unspecified
1757                                                        unspecified
1758                                                    based on weight
1759                                                    based on weight
1760                                                               <NA>
1761                                                              spray
1769                                                               <NA>
1773                                                tablet/pill/capsule
1774                                                               <NA>
1775                                                               <NA>
1789                                                               <NA>
1791                                                               <NA>
1794                                                               <NA>
1795                                                               <NA>
1796                                                tablet/pill/capsule
1798                                                               <NA>
1805                                                               <NA>
1809                                                               <NA>
1812                                                               <NA>
1813                                                               <NA>
1819                                                               <NA>
1820                                                        unspecified
1823                                                               <NA>
1845                                                               tube
1846                                                tablet/pill/capsule
1847                                                               tube
1848                                                tablet/pill/capsule
1849                                                    based on weight
1850                                                         inch strip
1851                                                    0.25 inch strip
1861                                                               <NA>
1867                                                    based on weight
1872                                                    based on weight
1877                                                        unspecified
1887                                                              spray
1888                                                             collar
1905                                                               <NA>
1906                                                               <NA>
1917                                                    based on weight
1922                                                              spray
1925                                                     shampoo/mousse
1926                                                       small amount
1928                                                    based on weight
1929                                                    based on weight
1931                                                       small amount
1939                                                        unspecified
1941                                                       small amount
1945                                                              daily
1948                                                tablet/pill/capsule
1962                                                    based on weight
1965                                                               <NA>
1980                                                               tube
1981                                                tablet/pill/capsule
1982                                              1 tablet/pill/capsule
1983                                                             1 tube
1984                                            0.5 tablet/pill/capsule
1985                                              1 tablet/pill/capsule
1994                                                               <NA>
1998                                                               puff
2006                                                               <NA>
2007                                                               <NA>
2012                                                               <NA>
2013                                                               <NA>
2016                                                    based on weight
2022                                                       small amount
2025                                                        bottle/vial
2026                                                tablet/pill/capsule
2029                                                               <NA>
2030                                                               <NA>
2032                                                        unspecified
2033                                                        unspecified
2034                                                        unspecified
2041                                                        as directed
2042                                                        as directed
2043                                                               <NA>
2044                                                              mg/kg
2050                                                    based on weight
2072                                                               <NA>
2075                                       based on weight (50-100 lbs)
2083                                        based on weight (40-88 lbs)
2084                                       based on weight (50-100 lbs)
2085                                                    based on weight
2087                                       based on weight (50-100 lbs)
2088                                        based on weight (44-88 lbs)
2089                                          based on weight (80+ lbs)
2091                                                    based on weight
2093                                                    based on weight
2107                                                tablet/pill/capsule
2108                                              1 tablet/pill/capsule
2109                                              1 tablet/pill/capsule
2110                                                    based on weight
2113                                                tablet/pill/capsule
2115                                                               <NA>
2116                                                       small amount
2123                                           2 tablets/pills/capsules
2126                                                tablet/pill/capsule
2127                                                tablet/pill/capsule
2149                                                    based on weight
2151                                                    based on weight
2161                                                    based on weight
2165                                                              drops
2166                                                               <NA>
2195                                                        unspecified
2199                                                    based on weight
2200                                                    based on weight
2201                                                tablet/pill/capsule
2202                                                tablet/pill/capsule
2203                                                tablet/pill/capsule
2204                                                tablet/pill/capsule
2205                                                tablet/pill/capsule
2206                                              1 tablet/pill/capsule
2207                                              1 tablet/pill/capsule
2211                                                               <NA>
2219                                              1 tablet/pill/capsule
2220                                              1 tablet/pill/capsule
2221                                                               <NA>
2224                                              1 tablet/pill/capsule
2225                                                               <NA>
2226                                              1 tablet/pill/capsule
2228                                                               <NA>
2229                                              1 tablet/pill/capsule
2230                                                               <NA>
2233                                                               <NA>
2241                                                        application
2243                                                    based on weight
2244                                                    based on weight
2245                                                               <NA>
2250                                                        unspecified
2251                                                               <NA>
2255                                                               tube
2258                                                               <NA>
2259                                                               <NA>
2260                                                               <NA>
2261                                                               <NA>
2262                                                               <NA>
2263                                                               <NA>
2264                                                               <NA>
2265                                                               <NA>
2266                                                               <NA>
2269                                                               <NA>
2270                                                               <NA>
2272                                                               <NA>
2278                                                               <NA>
2279                                                               <NA>
2280                                                    based on weight
2283                                                    based on weight
2301                                                             liquid
2302                                                               <NA>
2333                                                               <NA>
2339                                                               <NA>
2342                                                               <NA>
2345                                                               <NA>
2347                                                               <NA>
2352                                                               <NA>
2356                                                               <NA>
2390                                                              spray
2398                                                              spray
2404                                                tablet/pill/capsule
2405                                                        application
2406                                                               <NA>
2409                                                               <NA>
2411                                                               <NA>
2412                                                               <NA>
2418                                                               <NA>
2419                                                               <NA>
2424                                                               <NA>
2425                                                               <NA>
2426                                                               <NA>
2427                                                               <NA>
2428                                                               <NA>
2450                                                               <NA>
2453                                                               <NA>
2455                                                               <NA>
2456                                                               <NA>
2463                                                       pack/package
2464                                                               <NA>
2467                                                               <NA>
2473                                                               <NA>
2474                                                               <NA>
2477                                                               <NA>
2478                                                               <NA>
2479                                                tablet/pill/capsule
2481                                                              spray
2482                                       based on weight (50-100 lbs)
2486                                                          as needed
2487                                                           biweekly
2490                                                            5 drops
2491                                                       small amount
2492                                                         1 wipe/pad
2499                                                       pack/package
2500                                              1 tablet/pill/capsule
2501                                                               <NA>
2502                                                               <NA>
2503                                                               <NA>
2504                                              1 tablet/pill/capsule
2505                                       based on weight (50-100 lbs)
2506                                       based on weight (60-120 lbs)
2508                                                tablet/pill/capsule
2517                                                               <NA>
2518                                                tablet/pill/capsule
2534                                                               <NA>
2539                                                    based on weight
2540                                       based on weight (50-100 lbs)
2542                                       based on weight (50-100 lbs)
2543                                                             collar
2544                                                               <NA>
2545                                                tablet/pill/capsule
2546                                                             collar
2547                                              1 tablet/pill/capsule
2548                                          based on weight (18+ lbs)
2549                                                               <NA>
2550                                                               <NA>
2558                                                    based on weight
2559                                                    based on weight
2560                                                    based on weight
2562                                                               <NA>
2566                                                               <NA>
2575                                                               <NA>
2578                                                              spray
2580                                                           ointment
2583                                                               <NA>
2587                                                               <NA>
2588                                                               <NA>
2589                                                               <NA>
2599                                                               <NA>
2600                                                    based on weight
2627                                                               <NA>
2636                                                               <NA>
2642                                                              spray
2651                                                        unspecified
2652                                                               <NA>
2653                                                               <NA>
2655                                                               <NA>
2659                                                        unspecified
2660                                                        unspecified
2661                                                        unspecified
2699                                                              spray
2710                                                    based on weight
2721                                                               <NA>
2726                                                               dose
2731                                                               <NA>
2735                                                               <NA>
2737                                                               <NA>
2738                                                               <NA>
2739                                                               <NA>
2742                                                    based on weight
2743                                                    based on weight
2745                                                    based on weight
2746                                                    based on weight
2748                                                    based on weight
2749                                                    based on weight
2750                                                               <NA>
2753                                                    based on weight
2756                                                    based on weight
2805                                                               <NA>
2808                                                               <NA>
2815                                                               <NA>
2818                                                       pack/package
2825                                                    based on weight
2827                                                    based on weight
2828                                                tablet/pill/capsule
2833                                                               <NA>
2838                                              1 tablet/pill/capsule
2839                                                               <NA>
2842                                                               <NA>
2844                                                               <NA>
2846                                              1 tablet/pill/capsule
2855                                                tablet/pill/capsule
2869                                                               <NA>
2897                                                     shampoo/mousse
2900                                                       small amount
2903                                                     shampoo/mousse
2904                                                    moderate amount
2905                                                             weekly
2907                                                       pack/package
2911                                       based on weight (50-100 lbs)
2912                                        based on weight (24-60 lbs)
2913                                                               <NA>
2919                                              1 tablet/pill/capsule
2920                                              1 tablet/pill/capsule
2921                                                                 gm
2922                                                tablet/pill/capsule
2923                                                tablet/pill/capsule
2925                                                        unspecified
2941                                                               <NA>
2942                                                                  %
2943                                              1 tablet/pill/capsule
2944                                                               <NA>
2946                                                               <NA>
2951                                                               <NA>
2958                                                tablet/pill/capsule
2959                                                tablet/pill/capsule
2960                                                tablet/pill/capsule
2961                                                tablet/pill/capsule
2962                                                tablet/pill/capsule
2963                                                tablet/pill/capsule
2964                                                tablet/pill/capsule
2974                                                tablet/pill/capsule
2975                                                        application
2978                                                tablet/pill/capsule
2980                                                               <NA>
2981                                                               <NA>
2982                                                               <NA>
2988                                                               <NA>
2993                                                               <NA>
2997                                                               <NA>
3002                                                               <NA>
3003                                                       small amount
3007                                                               <NA>
3028                                                               <NA>
3031                                                               <NA>
3055                                                           ointment
3058                                                       small amount
3060                                        based on weight (26-50 lbs)
3092                                                               <NA>
3095                                                        unspecified
3096                                                               <NA>
3110                                                               <NA>
3119                                                               <NA>
3140                                                        unspecified
3146                                                               <NA>
3147                                                               <NA>
3179                                                               <NA>
3180                                                               <NA>
3208                                                               <NA>
3209                                                               <NA>
3212                                                               <NA>
3246                                                    based on weight
3247                                                tablet/pill/capsule
3250                                                    based on weight
3251                                                    based on weight
3253                                       based on weight (50-100 lbs)
3257                                                               <NA>
3261                                                               <NA>
3270                                                               <NA>
3271                                                tablet/pill/capsule
3278                                                         inch strip
3280                                              1 tablet/pill/capsule
3284                                                    based on weight
3287                                                       small amount
3291                                                       small amount
3293                                                       small amount
3294                                                tablet/pill/capsule
3300                                                tablet/pill/capsule
3305                                                       small amount
3312                                                    moderate amount
3313                                                       small amount
3339                                                tablet/pill/capsule
3342                                                        application
3345                                                               <NA>
3346                                                               <NA>
3350                                                               <NA>
3360                                                    based on weight
3366                                                               <NA>
3372                                                               <NA>
3375                                                               <NA>
3376                                                        application
3394                                                               <NA>
3399                                                               <NA>
3403                                                               <NA>
3404                                        based on weight (24-60 lbs)
3405                                        based on weight (26-50 lbs)
3406                                                               tube
3421                                                               <NA>
3422                                                               <NA>
3423                                                               <NA>
3425                                                    based on weight
3426                                                        as directed
3429                                                               <NA>
3437                                                               <NA>
3439                                                               <NA>
3444                                                               <NA>
3445                                                               <NA>
3446                                                               <NA>
3447                                                               <NA>
3448                                                               <NA>
3449                                                               <NA>
3451                                                               <NA>
3455                                                               <NA>
3456                                                             1 tube
3457                                                tablet/pill/capsule
3458                                                               tube
3459                                                               <NA>
3465                                                               <NA>
3488                                          based on weight (25+ lbs)
3490                                                    based on weight
3491                                                    based on weight
3492                                                    based on weight
3495                                                    based on weight
3496                                                    based on weight
3497                                                    based on weight
3498                                                    based on weight
3512                                              1 tablet/pill/capsule
3513                                                    based on weight
3514                                       based on weight (50-100 lbs)
3515                                                               <NA>
3516                                                tablet/pill/capsule
3517                                                               <NA>
3519                                                    based on weight
3520                                                               <NA>
3522                                                               <NA>
3525                                                               <NA>
3526                                                               <NA>
3530                                                               pump
3531                                                               <NA>
3535                                                               <NA>
3581                                                tablet/pill/capsule
3600                                                               <NA>
3601                                                               <NA>
3619                                                               <NA>
3622                                                       pack/package
3631                                              1 tablet/pill/capsule
3632                                              1 tablet/pill/capsule
3635                                                               <NA>
3636                                                               <NA>
3639                                                               <NA>
3640                                                               <NA>
3641                                                              spray
3649                                                               <NA>
3650                                                               <NA>
3651                                                               <NA>
3652                                                               <NA>
3666                                                              spray
3667                                                       small amount
3675                                                              spray
3684                                                tablet/pill/capsule
3685                                                               tube
3691                                                        bottle/vial
3692                                                tablet/pill/capsule
3693                                                              spray
3698                                                    based on weight
3699                                                    based on weight
3701                                                    based on weight
3704                                                    based on weight
3705                                                tablet/pill/capsule
3706                                                               <NA>
3710                                                               <NA>
3718                                                               <NA>
3719                                              1 tablet/pill/capsule
3725                                                               <NA>
3726                                                tablet/pill/capsule
3735                                                               <NA>
3738                                                               <NA>
3741                                                               <NA>
3742                                                               <NA>
3743                                                               <NA>
3744                                                               <NA>
3745                                                               <NA>
3750                                                               <NA>
3760                                                               <NA>
3773                                                               <NA>
3781                                                               <NA>
3782                                                               <NA>
3783                                                               <NA>
3784                                                               <NA>
3785                                                               <NA>
3786                                                               <NA>
3789                                                               <NA>
3797                                                              spray
3798                                                       small amount
3800                                                       small amount
3804                                                               <NA>
3815                                                               <NA>
3829                                                               <NA>
3830                                                               <NA>
3835                                                               <NA>
3836                                                               <NA>
3837                                                               <NA>
3838                                                               <NA>
3839                                                               <NA>
3840                                                        application
3848                                                         inch strip
3857                                              1 tablet/pill/capsule
3858                                                             1 tube
3859                                              1 tablet/pill/capsule
3860                                                tablet/pill/capsule
3861                                                               <NA>
3867                                                               <NA>
3870                                                               <NA>
3871                                                               <NA>
3872                                                               <NA>
3874                                                        application
3881                                                               <NA>
3886                                                    based on weight
3889                                                    based on weight
3897                                                    based on weight
3898                                                               <NA>
3900                                                               <NA>
3903                                                    based on weight
3906                                                    based on weight
3911                                                    based on weight
3938                                                    based on weight
3943                                                    based on weight
3944                                                       small amount
3945                                                               <NA>
3946                                                    based on weight
3952                                                    based on weight
3972                                                    based on weight
3980                                                    based on weight
3984                                                    based on weight
3989                                                tablet/pill/capsule
3990                                                tablet/pill/capsule
4000                                                               <NA>
4017                                              1 tablet/pill/capsule
4030                                                               <NA>
4031                                                tablet/pill/capsule
4042                                                               <NA>
4044                                                               <NA>
4045                                                tablet/pill/capsule
4047                                                               <NA>
4058                                                    based on weight
4059                                                               <NA>
4060                                                               <NA>
4063                                                               <NA>
4064                                                               <NA>
4066                                                    based on weight
4067                                                    based on weight
4068                                                               <NA>
4069                                                               <NA>
4070                                                               <NA>
4071                                                       small amount
4072                                                    based on weight
4073                                       based on weight (50-100 lbs)
4074                                                               <NA>
4075                                                               <NA>
4076                                                               <NA>
4077                                                               <NA>
4087                                                               <NA>
4088                                                           ointment
4089                                                               <NA>
4092                                                    syringe/pipette
4095                                                tablet/pill/capsule
4096                                                               <NA>
4097                                                               <NA>
4111                                                tablet/pill/capsule
4112                                                tablet/pill/capsule
4113                                                               <NA>
4114                                                               <NA>
4116                                                               <NA>
4117                                                        bottle/vial
4118                                                tablet/pill/capsule
4119                                                               <NA>
4120                                                tablet/pill/capsule
4125                                                               <NA>
4127                                                    based on weight
4128                                                    based on weight
4131                                                              spray
4132                                                               <NA>
4133                                                               <NA>
4134                                                               <NA>
4159                                                               <NA>
4160                                                               <NA>
4161                                                               <NA>
4162                                                               <NA>
4172                                        based on weight (44-88 lbs)
4183                                                        as directed
4184                                                               <NA>
4189                                                tablet/pill/capsule
4190                                                tablet/pill/capsule
4191                                                    based on weight
4193                                                               <NA>
4198                                                    based on weight
4199                                                    based on weight
4204                                                        unspecified
4209                                                tablet/pill/capsule
4210                                       based on weight (60-120 lbs)
4212                                                               <NA>
4213                                                               <NA>
4215                                                               <NA>
4216                                                               <NA>
4218                                                               <NA>
4229                                                          100 mg/ml
4234                                                               <NA>
4244                                                               <NA>
4245                                                               <NA>
4247                                                               <NA>
4265                                                               <NA>
4266                                                               <NA>
4274                                                               <NA>
4281                                                               <NA>
4282                                                               <NA>
4298                                        based on weight (44-88 lbs)
4299                                       based on weight (50-100 lbs)
4302                                       based on weight (50-100 lbs)
4304                                                        unspecified
4305                                                        unspecified
4306                                                        unspecified
4307                                                tablet/pill/capsule
4308                                                               <NA>
4309                                                               <NA>
4311                                                               <NA>
4313                                                    based on weight
4314                                                    based on weight
4323                                                    based on weight
4324                                                             powder
4325                                                    based on weight
4326                                                             powder
4334                                                               <NA>
4336                                                tablet/pill/capsule
4338                                                tablet/pill/capsule
4341                                                               <NA>
4348                                                         inch strip
4349                                                    based on weight
4350                                                    based on weight
4353                                                    based on weight
4354                                                tablet/pill/capsule
4360                                                            1 spray
4368                                                               <NA>
4371                                                               <NA>
4384                                                               <NA>
4389                                                tablet/pill/capsule
4390                                                tablet/pill/capsule
4395                                                               <NA>
4405                                                               <NA>
4409                                                       small amount
4426                                                tablet/pill/capsule
4427                                                               tube
4428                                              1 tablet/pill/capsule
4430                                                               pump
4431                                                               pump
4444                                                               tube
4445                           27 mg milbemycin oxime, 1620 mg spinosad
4446                                                        1 gm/sachet
4454                                                           inhalant
4469                                                       small amount
4470                                                       small amount
4471                                                           wipe/pad
4472                                                       small amount
4480                                                       small amount
4481                                                           wipe/pad
4483                                                tablet/pill/capsule
4486                                                tablet/pill/capsule
4488                                                               <NA>
4491                                                               <NA>
4497                                                    based on weight
4499                                                tablet/pill/capsule
4500                                                tablet/pill/capsule
4501                                                        as directed
4502                                                tablet/pill/capsule
4504                                                        unspecified
4505                                              1 tablet/pill/capsule
4509                                       based on weight (50-100 lbs)
4510                                       based on weight (60-120 lbs)
4511                                                tablet/pill/capsule
4515                                       based on weight (50-100 lbs)
4516                                       based on weight (60-120 lbs)
4517                                                               <NA>
4524                                                    based on weight
4532                                                    based on weight
4533                                                               <NA>
4534                                                                tbs
4535                                                               <NA>
4536                                                    based on weight
4544                                                               <NA>
4545                                                tablet/pill/capsule
4547                                                               <NA>
4558                                                    based on weight
4559                                                    based on weight
4560                                                tablet/pill/capsule
4561                                                              spray
4562                                                tablet/pill/capsule
4564                                                    based on weight
4565                                                    based on weight
4566                                                    based on weight
4567                                                    based on weight
4568                                                        unspecified
4569                                                    based on weight
4587                                                               <NA>
4597                                                        unspecified
4598                                                               <NA>
4599                                                               <NA>
4600                                                               <NA>
4611                                                               <NA>
4617                                                              spray
4627                                                               <NA>
4628                                                               <NA>
4629                                                               <NA>
4630                                                       small amount
4631                                                               <NA>
4634                                                       pack/package
4638                                                               <NA>
4640                                                               <NA>
4642                                                               <NA>
4643                                                              0.20%
4644                                                               <NA>
4645                                                               <NA>
4646                                                              0.03%
4647                                                               <NA>
4648                                                               <NA>
4649                                                               <NA>
4651                                                           ointment
4652                                                    moderate amount
4654                                                               <NA>
4655                                                               <NA>
4688                                                               <NA>
4695                                                tablet/pill/capsule
4696                                                               <NA>
4697                                                               <NA>
4700                                                               <NA>
4703                                                               <NA>
4705                                                               <NA>
4711                                                               <NA>
4716                                                               <NA>
4717                                                               <NA>
4719                                                               <NA>
4720                                                               <NA>
4726                                                    based on weight
4738                                       based on weight (60-120 lbs)
4739                                                    based on weight
4743                                                               <NA>
4744                                                               <NA>
4745                                                               <NA>
4748                                                               <NA>
4757                                                               <NA>
4760                                                tablet/pill/capsule
4761                                                               <NA>
4763                                          based on weight (55+ lbs)
4764                                                               <NA>
4766                                                    based on weight
4777                                                     shampoo/mousse
4780                                          based on weight (88+ lbs)
4782                                                tablet/pill/capsule
4798                                                               <NA>
4801                                                               <NA>
4802                                                tablet/pill/capsule
4803                                                               <NA>
4804                                                               <NA>
4805                                                               <NA>
4806                                       based on weight (60-120 lbs)
4807                                                               <NA>
4813                                                               <NA>
4824                                                               <NA>
4826                                                              units
4828                                                             powder
4832                                                                  %
4850                                                     shampoo/mousse
4853                                                       small amount
4855                                                               <NA>
4858                                                               <NA>
4859                                                               <NA>
4861                                                               <NA>
4862                                                               <NA>
4881                                                         inch strip
4902                                                                  %
4904                                                        combination
4905                                                               <NA>
4908                                                               <NA>
4910                                                             collar
4912                                                               <NA>
4913                                                             collar
4914                                                               <NA>
4917                                                               <NA>
4935                                                    based on weight
4956                                                       small amount
4960                                                       small amount
4968                                                               <NA>
4969                                                               <NA>
4980                                                       pack/package
4981                                                               <NA>
4989                                                               <NA>
4990                                                               <NA>
4996                                                        unspecified
4998                                                               <NA>
5040                                                               <NA>
5043                                                               <NA>
5046                                                               <NA>
5078                                                    based on weight
5122                                                               <NA>
5123                                                               <NA>
5125                                                               <NA>
5127                                                        unspecified
5134                                                               <NA>
5140                                                               <NA>
5159                                                               <NA>
5160                                                               <NA>
5161                                                               <NA>
5165                                                               <NA>
5173                                                tablet/pill/capsule
5174                                                tablet/pill/capsule
5175                                                               <NA>
5191                                                               <NA>
5192                                                               <NA>
5193                                                               <NA>
5195                                                    based on weight
5201                                                               <NA>
5203                                                tablet/pill/capsule
5210                                                    moderate amount
5211                                                    moderate amount
5212                                                              spray
5213                                                    moderate amount
5214                                                    based on weight
5220                                                              spray
5221                                                              spray
5222                                                    based on weight
5223                                                    based on weight
5225                                                tablet/pill/capsule
5234                                           2 tablets/pills/capsules
5235                                                    based on weight
5243                                                    based on weight
5244                                                    based on weight
5247                                                    based on weight
5248                                                    based on weight
5253                                                    based on weight
5255                                                    based on weight
5256                                                    based on weight
5257                                                    based on weight
5258                                                tablet/pill/capsule
5261                                                    based on weight
5262                                                tablet/pill/capsule
5264                                                    based on weight
5265                                                    based on weight
5270                                                    based on weight
5271                                                    based on weight
5289                                                               dose
5332                                                    based on weight
5333                                                        unspecified
5334                                                tablet/pill/capsule
5335                                                             collar
5336                                                tablet/pill/capsule
5337                                                               <NA>
5340                                                            monthly
5341                                                               pump
5354                                                             collar
5357                                                               <NA>
5359                                                               <NA>
5360                                                               <NA>
5361                                                               <NA>
5362                                                tablet/pill/capsule
5369                                                tablet/pill/capsule
5377                                                        combination
5378                                                                  %
5379                                                    based on weight
5384                                                               <NA>
5385                                                               <NA>
5386                                                               <NA>
5387                                                               <NA>
5388                                                               <NA>
5391                                              1 tablet/pill/capsule
5392                                              1 tablet/pill/capsule
5403                                                tablet/pill/capsule
5424                                                             3.5 gm
5428                                                        bottle/vial
5440                                                               <NA>
5460                                                               <NA>
5464                                                               <NA>
5469                                                               <NA>
5483                                                tablet/pill/capsule
5484                                                               <NA>
5485                                                               <NA>
5490                                                               <NA>
5491                                                               <NA>
5492                                                tablet/pill/capsule
5497                                                tablet/pill/capsule
5498                                                tablet/pill/capsule
5499                                                               dose
5500                                                tablet/pill/capsule
5501                                                       small amount
5502                                                        bottle/vial
5507                                                tablet/pill/capsule
5508                                                tablet/pill/capsule
5509                                                    based on weight
5511                                                    based on weight
5513                                                tablet/pill/capsule
5527                                                       small amount
5528                                                        application
5529                                                        application
5533                                                       small amount
5534                                       based on weight (50-100 lbs)
5535                                                               <NA>
5537                                                              spray
5541                                                tablet/pill/capsule
5542                                                    syringe/pipette
5545                                              1 tablet/pill/capsule
5546                                           2 tablets/pills/capsules
5552                                                               <NA>
5553                                                               <NA>
5557                                                tablet/pill/capsule
5568                                                    based on weight
5571                                                    based on weight
5576                                                tablet/pill/capsule
5577                                                             collar
5578                                                tablet/pill/capsule
5595                                       based on weight (50-100 lbs)
5600                                                    based on weight
5602                                                    based on weight
5607                                                               <NA>
5626                                                    based on weight
5627                                                               <NA>
5628                                                               <NA>
5629                                                               <NA>
5630                                                               <NA>
5631                                                    based on weight
5632                                                    based on weight
5641                                                               <NA>
5649                                                        billion cfu
5668                                                               <NA>
5681                                                tablet/pill/capsule
5682                                                tablet/pill/capsule
5695                                                               <NA>
5721                                                               <NA>
5722                                                               <NA>
5723                                                               <NA>
5724                                                               <NA>
5725                                                               <NA>
5728                                                               <NA>
5729                                                               <NA>
5731                                                               <NA>
5737                                                               <NA>
5747                                                tablet/pill/capsule
5760                                                    based on weight
5762                                                               <NA>
5768                                       based on weight (50-100 lbs)
5771                                                               <NA>
5774                                                               <NA>
5777                                                        unspecified
5804                                                               <NA>
5814                                                               <NA>
5834                                                               <NA>
5839                                                               <NA>
5840                                                               <NA>
5858                                                         inch strip
5869                                                               <NA>
5877                                                    based on weight
5884                                                        unspecified
5887                                                               <NA>
5913                                                tablet/pill/capsule
5917                                                               <NA>
5930                                                    based on weight
5932                                                               <NA>
5933                                                    based on weight
5934                                                    based on weight
5935                                                               <NA>
5936                                                    based on weight
5937                                                    based on weight
5941                                                    based on weight
5942                                                    based on weight
5945                                                           wipe/pad
5963                                                    based on weight
5964                                                    based on weight
5965                                                               <NA>
5966                                                               <NA>
5967                                                               <NA>
5968                                                               <NA>
5976                                                               <NA>
5977                                                               <NA>
5978                                                               <NA>
5979                                                               <NA>
5980                                                    based on weight
5981                                                tablet/pill/capsule
5988                                                               <NA>
5991                                                    syringe/pipette
5992                                                tablet/pill/capsule
5993                                                               <NA>
5994                                                               <NA>
6000                                                               <NA>
6002                                                                  %
6003                                                               <NA>
6004                                                               <NA>
6005                                                               <NA>
6014                                                               <NA>
6015                                                               <NA>
6016                                                               <NA>
6017                                                               <NA>
6021                                                               <NA>
6022                                                               <NA>
6036                                                               <NA>
6038                                                tablet/pill/capsule
6039                                       based on weight (50-100 lbs)
6059                                                    based on weight
6063                                                        as directed
6068                                                               <NA>
6069                                                        application
6070                                                               <NA>
6071                                       based on weight (50-100 lbs)
6072                                                        unspecified
6074                                                              spray
6076                                                             collar
6078                                                             collar
6088                                                    0.25 inch strip
6090                                                    0.25 inch strip
6092                                                               <NA>
6093                                       based on weight (50-100 lbs)
6094                                                               <NA>
6095                                                              spray
6096                                                               <NA>
6097                                                               <NA>
6098                                                               <NA>
6099                                                               <NA>
6101                                                               <NA>
6102                                                               <NA>
6104                                                               <NA>
6109                                                               <NA>
6129                                       based on weight (50-100 lbs)
6130                                       based on weight (60-120 lbs)
6132                                                tablet/pill/capsule
6133                                                tablet/pill/capsule
6134                                                               <NA>
6135                                                               <NA>
6136                                                tablet/pill/capsule
6137                                                tablet/pill/capsule
6139                                                tablet/pill/capsule
6140                                                tablet/pill/capsule
6148                                                               <NA>
6149                                                               <NA>
6150                                                               <NA>
6152                                                               <NA>
6161                                                               <NA>
6164                                                          as needed
6200                                                tablet/pill/capsule
6202                                                tablet/pill/capsule
6206                                                             1 tube
6208                                                               tube
6215                                                              spray
6217                                                               <NA>
6218                                                             joules
6221                                                               <NA>
6224                                                    based on weight
6225                                                    based on weight
6226                                                    based on weight
6231                                                    based on weight
6232                                                    based on weight
6244                                                               <NA>
6254                                                tablet/pill/capsule
6255                                                               <NA>
6257                                                        application
6258                                                tablet/pill/capsule
6262                                       based on weight (50-100 lbs)
6263                                        based on weight (24-60 lbs)
6266                                                               <NA>
6267                                                               <NA>
6275                                                        application
6282                                                               <NA>
6283                                                        application
6284                                                               <NA>
6293                                                tablet/pill/capsule
6296                                                               <NA>
6302                                                               <NA>
6307                                                               <NA>
6312                                                               <NA>
6319                                                               <NA>
6320                                                               <NA>
6325                                                               <NA>
6326                                                        application
6328                                                               <NA>
6329                                       based on weight (50-100 lbs)
6331                                                    based on weight
6341                                                tablet/pill/capsule
6342                                                               <NA>
6343                                                               <NA>
6358                                                     shampoo/mousse
6388                                                               <NA>
6390                                                               <NA>
6395                                                    based on weight
6399                                                               <NA>
6405                                                    based on weight
6406                                                             collar
6411                                                               <NA>
6437                                                               <NA>
6441                                                               <NA>
6443                                                               <NA>
6444                                              1 tablet/pill/capsule
6451                                                        unspecified
6459                                                               <NA>
6461                                                               <NA>
6474                                                tablet/pill/capsule
6475                                              1 tablet/pill/capsule
6486                                                               <NA>
6495                                                              drops
6497                                                              drops
6498                                                               <NA>
6499                                                tablet/pill/capsule
6500                                                    based on weight
6522                                                    based on weight
6523                                                    based on weight
6527                                                    based on weight
6528                                                    based on weight
6555                                                    based on weight
6562                                                       small amount
6565                                                tablet/pill/capsule
6569                                                tablet/pill/capsule
6570                                                               tube
6571                                                        unspecified
6573                                                        bottle/vial
6579                                                    based on weight
6581                                                        unspecified
6594                                       based on weight (50-100 lbs)
6602                                              1 tablet/pill/capsule
6606                                         1-2 tablets/pills/capsules
6612                                                tablet/pill/capsule
6625                                              1 tablet/pill/capsule
6636                                                tablet/pill/capsule
6644                                                    based on weight
6647                                              1 tablet/pill/capsule
6648                                              1 tablet/pill/capsule
6649                                                               <NA>
6650                                                               <NA>
6657                                              1 tablet/pill/capsule
6658                                                tablet/pill/capsule
6662                                       based on weight (50-100 lbs)
6663                                                tablet/pill/capsule
6680                                                    based on weight
6683                                                       small amount
6687                                                    based on weight
6688                                                    based on weight
6693                                              1 tablet/pill/capsule
6694                                                               <NA>
6696                                                    based on weight
6697                                                               <NA>
6698                                                tablet/pill/capsule
6702                                                tablet/pill/capsule
6703                                                               <NA>
6714                                                               <NA>
6715                                        based on weight (26-50 lbs)
6716                                                        unspecified
6717                                                        unspecified
6733                                                               <NA>
6739                                                               <NA>
6751                                                               <NA>
6759                                                               <NA>
6760                                          based on weight (51+ lbs)
6763                                                               <NA>
6764                                                    based on weight
6778                                                tablet/pill/capsule
6779                                                tablet/pill/capsule
6781                                                tablet/pill/capsule
6783                                                tablet/pill/capsule
6786                                                               <NA>
6789                                                               <NA>
6796                                                    based on weight
6797                                                               <NA>
6815                                                               <NA>
6816                                                         inch strip
6817                                                         inch strip
6818                                                               <NA>
6824                                                               <NA>
6826                                                               <NA>
6828                                                               dose
6839                                                               <NA>
6864                                                               <NA>
6868                                                           inhalant
6880                                                           inhalant
6886                                                    moderate amount
6891                                                        application
6892                                                       small amount
6906                                                tablet/pill/capsule
6908                                                               1 ml
6909                                                tablet/pill/capsule
6910                                                tablet/pill/capsule
6928                                                     shampoo/mousse
6934                                                               <NA>
6935                                                               <NA>
6936                                                               <NA>
6946                                                               <NA>
6956                                                               <NA>
6957                                                    based on weight
6981                                                tablet/pill/capsule
6982                                                tablet/pill/capsule
6983                                                tablet/pill/capsule
6984                                                tablet/pill/capsule
6986                                                               <NA>
6999                                                               tube
7002                                                               <NA>
7005                                                               <NA>
7006                                                               <NA>
7013                                                               <NA>
7017                                                tablet/pill/capsule
7018                                                               <NA>
7019                                                               <NA>
7021                                                tablet/pill/capsule
7023                                                               <NA>
7025                                                               <NA>
7027                                                               <NA>
7030                                                               <NA>
7042                                                               <NA>
7047                                                               <NA>
7053                                                               <NA>
7054                                                               <NA>
7067                                                    based on weight
7071                                                               <NA>
7092                                                              spray
7093                                                tablet/pill/capsule
7095                                                               <NA>
7096                                                               <NA>
7116                                                               <NA>
7127                                                               <NA>
7130                                                               <NA>
7131                                                               <NA>
7137                                                              scoop
7149                                              1 tablet/pill/capsule
7151                                                           ointment
7152                                                     1 pack/package
7153                                                       small amount
7154                                                             liquid
7155                                                             powder
7172                                                             powder
7173                                                           wipe/pad
7175                                                               <NA>
7177                                                               <NA>
7180                                                               pump
7189                                                              spray
7208                                                    0.25 inch strip
7218                                                               <NA>
7240                                                               <NA>
7243                                                               <NA>
7247                                                tablet/pill/capsule
7248                                                tablet/pill/capsule
7249                                                tablet/pill/capsule
7260                                                tablet/pill/capsule
7261                                                tablet/pill/capsule
7262                                                tablet/pill/capsule
7285                                                               <NA>
7286                                                               <NA>
7291                                                tablet/pill/capsule
7294                                                               <NA>
7295                                                tablet/pill/capsule
7297                                           2 tablets/pills/capsules
7320                                                    based on weight
7342                                                    syringe/pipette
7344                                                        unspecified
7345                                                        unspecified
7346                                                               <NA>
7371                                                       small amount
7413                                                    based on weight
7499                                                               <NA>
7503                                                tablet/pill/capsule
7510                                                tablet/pill/capsule
7511                                                tablet/pill/capsule
7512                                                tablet/pill/capsule
7513                                                tablet/pill/capsule
7519                                                               <NA>
7521                                                        combination
7522                                                               <NA>
7523                                                               <NA>
7524                                                        unspecified
7525                                                               <NA>
7526                                                               <NA>
7551                                              1 tablet/pill/capsule
7555                                                tablet/pill/capsule
7563                                                tablet/pill/capsule
7564                                                               <NA>
7565                                                               <NA>
7566                                       based on weight (50-100 lbs)
7576                                                               <NA>
7577                                                               <NA>
7578                                                               <NA>
7579                                                               <NA>
7580                                                               <NA>
7583                                       based on weight (50-100 lbs)
7584                                                               <NA>
7585                                                               <NA>
7586                                                               <NA>
7587                                                               <NA>
7588                                                               <NA>
7589                                                               <NA>
7590                                                               <NA>
7598                                                           wipe/pad
7635                                                               <NA>
7636                                                               <NA>
7637                                                               <NA>
7660                                       based on weight (50-100 lbs)
7671                                                               <NA>
7673                                                        unspecified
7674                                                        unspecified
7675                                                               <NA>
7678                                                    0.25 inch strip
7679                                                             1 pump
7681                                                               <NA>
7692                                                               <NA>
7696                                                               <NA>
7699                                                               <NA>
7701                                                               <NA>
7705                                                              daily
7732                                        based on weight (25-50 lbs)
7742                                                               <NA>
7743                                                               <NA>
7746                                                tablet/pill/capsule
7747                                                        application
7748                                                               <NA>
7749                                                               <NA>
7750                                                               <NA>
7751                                                               <NA>
7754                                                               <NA>
7759                                                             1 tube
7763                                              1 tablet/pill/capsule
7772                                                               <NA>
7776                                                               <NA>
7783                                                             1 tube
7784                                              1 tablet/pill/capsule
7787                                                               <NA>
7795                                                tablet/pill/capsule
7812                                                       small amount
7818                                                               <NA>
7820                                                               <NA>
7822                                                               <NA>
7832                                                               <NA>
7837                                                               <NA>
7839                                                             powder
7845                                                               <NA>
7846                                                               <NA>
7848                                                               <NA>
7852                                                               <NA>
7853                                                               pump
7854                                                               <NA>
7862                                                               <NA>
7883                                              1 tablet/pill/capsule
7884                                              1 tablet/pill/capsule
7885                                                               <NA>
7887                                                               <NA>
7889                                                               <NA>
7895                                                               <NA>
7926                                                             powder
7929                                                       small amount
7934                                                               <NA>
7935                                                               <NA>
7941                                                               <NA>
7944                                                               <NA>
7946                                                               <NA>
7961                                                           ointment
7966                                                tablet/pill/capsule
7967                                                tablet/pill/capsule
7968                                                tablet/pill/capsule
7969                                                tablet/pill/capsule
7970                                                               <NA>
7973                                                               <NA>
7987                                                               <NA>
7988                                                    based on weight
7993                                                    based on weight
7995                                                               <NA>
7998                                                       pack/package
8000                                                    based on weight
8009                                                        unspecified
8012                                                           ointment
8014                                                       small amount
8017                                                       small amount
8029                                                        combination
8030                                                    based on weight
8040                                                               <NA>
8042                                                               <NA>
8043                                                               <NA>
8044                                                               <NA>
8045                                                               <NA>
8075                                                               <NA>
8086                                                       small amount
8091                                                               <NA>
8098                                                               <NA>
8099                                                               <NA>
8100                                                               <NA>
8120                                                    based on weight
8121                                       based on weight (50-100 lbs)
8122                                                               <NA>
8123                                                tablet/pill/capsule
8125                                                               <NA>
8128                                                       small amount
8130                                                    based on weight
8131                                                    based on weight
8136                                                    based on weight
8137                                                    based on weight
8138                                                    based on weight
8139                                                    based on weight
8140                                                       small amount
8160                                                        unspecified
8182                                                       small amount
8184                                                             powder
8185                                       based on weight (50-100 lbs)
8186                                       based on weight (50-100 lbs)
8187                                       based on weight (50-100 lbs)
8188                                       based on weight (60-120 lbs)
8195                                                    based on weight
8196                                                    based on weight
8205                                                    based on weight
8206                                                    based on weight
8207                                                    based on weight
8208                                                    based on weight
8209                                                               <NA>
8210                                                               <NA>
8211                                                               <NA>
8212                                                    based on weight
8214                                                               <NA>
8215                                                    based on weight
8221                                              1 tablet/pill/capsule
8222                                              1 tablet/pill/capsule
8223                                                               <NA>
8224                                                               <NA>
8234                                                            8 drops
8235                                                       small amount
8236                                                              spray
8238                                                               <NA>
8241                                                               <NA>
8248                                                tablet/pill/capsule
8251                                                               <NA>
8252                                                              spray
8280                                                               <NA>
8284                                                       small amount
8293                                                       small amount
8296                                       based on weight (50-100 lbs)
8297                                        based on weight (44-88 lbs)
8298                                                               <NA>
8299                                                               1 ml
8300                                                               <NA>
8303                                                               <NA>
8304                                                               <NA>
8305                                                              spray
8311                                                               <NA>
8312                                                               <NA>
8313                                                               <NA>
8314                                                               <NA>
8315                                                               <NA>
8337                                                               <NA>
8338                                                               <NA>
8341                                                               <NA>
8349                                                    based on weight
8354                                                tablet/pill/capsule
8355                                                      1 application
8358                                                    based on weight
8359                                                    based on weight
8362                                                       small amount
8369                                                       small amount
8370                                                tablet/pill/capsule
8371                                                tablet/pill/capsule
8376                                                       small amount
8377                                                tablet/pill/capsule
8378                                                tablet/pill/capsule
8389                                                               <NA>
8405                                                               tube
8408                                                                  1
8410                                                    based on weight
8418                                                           inhalant
8420                                                    based on weight
8421                                                tablet/pill/capsule
8424                                                             1 tube
8425                                                tablet/pill/capsule
8427                                                tablet/pill/capsule
8435                                                     1 pack/package
8436                                                       small amount
8440                                                               <NA>
8441                                                               <NA>
8451                                                               <NA>
8452                                                               <NA>
8454                                                tablet/pill/capsule
8466                                              1 tablet/pill/capsule
8467                                                       small amount
8475                                                     shampoo/mousse
8478                                                     shampoo/mousse
8509                                                tablet/pill/capsule
8510                                                               <NA>
8514                                                tablet/pill/capsule
8515                                                tablet/pill/capsule
8528                                                tablet/pill/capsule
8531                                                tablet/pill/capsule
8532                                                tablet/pill/capsule
8533                                                tablet/pill/capsule
8534                                                tablet/pill/capsule
8541                                                               <NA>
8546                                                               <NA>
8547                                                               <NA>
8550                                                               <NA>
8554                                                    based on weight
8555                                                    based on weight
8578                                                       small amount
8581                                                       small amount
8582                                              1 tablet/pill/capsule
8583                                                               <NA>
8584                                                               <NA>
8585                                                             powder
8586                                                         1 wipe/pad
8588                                                               <NA>
8591                                                tablet/pill/capsule
8607                                                    based on weight
8609                                                    based on weight
8613                                                               <NA>
8673                                                               <NA>
8674                                                    based on weight
8675                                                tablet/pill/capsule
8676                                                tablet/pill/capsule
8677                                                tablet/pill/capsule
8694                                                      1 bottle/vial
8697                                                               <NA>
8702                                                        bottle/vial
8707                                                      1 bottle/vial
8721                                                               <NA>
8731                                                             collar
8735                                                       small amount
8736                                                           wipe/pad
8744                                                               <NA>
8745                                                               <NA>
8756                                              1 tablet/pill/capsule
8757                                                               <NA>
8759                                                    based on weight
8760                                                    based on weight
8768                                          based on weight (51+ lbs)
8769                                          based on weight (56+ lbs)
8770                                              1 tablet/pill/capsule
8771                                                             1 tube
8777                                                    based on weight
8778                                              1 tablet/pill/capsule
8779                                                      1 application
8780                                              1 tablet/pill/capsule
8781                                                      1 application
8786                                                    based on weight
8790                                                    based on weight
8791                                                    based on weight
8792                                                               <NA>
8793                                                tablet/pill/capsule
8794                                                tablet/pill/capsule
8795                                                    based on weight
8797                                                               <NA>
8805                                                tablet/pill/capsule
8815                                                         inch strip
8819                                                    based on weight
8820                                                    based on weight
8825                                                               <NA>
8826                                                               dose
8828                                                    based on weight
8831                                                               <NA>
8833                                                    based on weight
8834                                                               <NA>
8837                                                               <NA>
8843                                                               <NA>
8851                                                               <NA>
8852                                                               <NA>
8853                                                               <NA>
8855                                                               <NA>
8860                                                               <NA>
8875                                                               <NA>
8876                                                               <NA>
8877                                                               <NA>
8879                                                    based on weight
8885                                                               <NA>
8908                                                               <NA>
8911                                                    based on weight
8929                                                        as directed
8930                                                               <NA>
8961                                                        as directed
8962                                                               <NA>
8994                                                               <NA>
8995                                                               <NA>
8997                                                               <NA>
8998                                                               <NA>
9026                                       based on weight (50-100 lbs)
9046                                              1 tablet/pill/capsule
9047                                                               <NA>
9049                                                               <NA>
9050                                                tablet/pill/capsule
9052                                                               <NA>
9053                                                tablet/pill/capsule
9054                                                tablet/pill/capsule
9055                                                    based on weight
9056                                                               <NA>
9060                                              1 tablet/pill/capsule
9064                                                               <NA>
9065                                                               <NA>
9070                                                tablet/pill/capsule
9071                                                tablet/pill/capsule
9084                                                               <NA>
9094                                                    based on weight
9095                                                    based on weight
9098                                                    based on weight
9099                                                               <NA>
9100                                                        unspecified
9101                                                        unspecified
9109                                                    0.25 inch strip
9118                                                         inch strip
9132                                                tablet/pill/capsule
9135                                                               <NA>
9136                                                       small amount
9137                                                               <NA>
9156                                                               <NA>
9160                                                    based on weight
9161                                                    based on weight
9170                                                    based on weight
9187                                                               <NA>
9189                                                tablet/pill/capsule
9193                                                       pack/package
9202                                              1 tablet/pill/capsule
9229                                                               <NA>
9230                                                       small amount
9233                                                               <NA>
9236                                                    based on weight
9239                                                               <NA>
9240                                                        as directed
9241                                                        unspecified
9242                                                tablet/pill/capsule
9243                                                               <NA>
9244                                                               <NA>
9245                                                               <NA>
9252                                                       pack/package
9253                                                          as needed
9254                                                tablet/pill/capsule
9259                                                               <NA>
9267                                                    based on weight
9269                                              1 tablet/pill/capsule
9270                                              1 tablet/pill/capsule
9271                                                               <NA>
9292                                                               <NA>
9294                                                               <NA>
9295                                                               <NA>
9297                                                               <NA>
9312                                                               <NA>
9337                                                               <NA>
9338                                                               <NA>
9339                                                               <NA>
9348                                                               <NA>
9384                                                               <NA>
9385                                                               <NA>
9386                                                tablet/pill/capsule
9387                                                        bottle/vial
9390                                                               <NA>
9416                                                               <NA>
9418                                                               <NA>
9421                                                             collar
9422                                                tablet/pill/capsule
9426                                              1 tablet/pill/capsule
9429                                                        application
9432                                                             collar
9433                                                               <NA>
9434                                                    based on weight
9435                                                        unspecified
9436                                                tablet/pill/capsule
9438                                                       small amount
9447                                                               <NA>
9452                                                               <NA>
9453                                                                  %
9454                                                         inch strip
9485                                                               <NA>
9494                                                        unspecified
9495                                                        unspecified
9511                                                               <NA>
9516                                                   0.125 inch strip
9524                                                               <NA>
9544                                                    based on weight
9546                                                    based on weight
9548                                                    based on weight
9549                                                    based on weight
9584                                              1 tablet/pill/capsule
9588                                                               <NA>
9592                                                               <NA>
9596                                                               <NA>
9600                                                    based on weight
9601                                                    based on weight
9602                                                               <NA>
9603                                                               <NA>
9604                                                               <NA>
9609                                                tablet/pill/capsule
9610                                                tablet/pill/capsule
9612                                                              spray
9613                                                              spray
9614                                                           wipe/pad
9615                                                tablet/pill/capsule
9616                                                tablet/pill/capsule
9617                                                tablet/pill/capsule
9618                                                tablet/pill/capsule
9619                                                tablet/pill/capsule
9620                                                tablet/pill/capsule
9621                                       based on weight (50-100 lbs)
9635                                                               <NA>
9640                                                tablet/pill/capsule
9641                                                tablet/pill/capsule
9643                                                tablet/pill/capsule
9718                                                        unspecified
9723                                                               <NA>
9759                        272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                               <NA>
9761                                                    based on weight
9763                                                               <NA>
9764                                                               <NA>
9765                                                               <NA>
9766                                                    based on weight
9770                                                    based on weight
9785                                                               <NA>
9791                                                               <NA>
9800                                       based on weight (50-100 lbs)
9807                                                               <NA>
9808                                                               <NA>
9809                                                               <NA>
9815                                                               <NA>
9821                                                       pack/package
9823                                                               <NA>
9824                                                               <NA>
9825                                                               <NA>
9826                                                         inch strip
9827                                                               <NA>
9828                                                               <NA>
9829                                                               <NA>
9833                                                    0.25 inch strip
9837                                                               <NA>
9840                                                               <NA>
9843                                                               <NA>
9860                                                               <NA>
9862                                                               <NA>
9863                                                           wipe/pad
9865                                                               pump
9873                                                               <NA>
9877                                                               <NA>
9884                                                                 1%
9889                                                tablet/pill/capsule
9890                                                        bottle/vial
9891                                                         inch strip
9892                                                       small amount
9893                                       based on weight (60-120 lbs)
9894                                                               <NA>
9895                                                               <NA>
9896                                                               <NA>
9897                                       based on weight (50-100 lbs)
9898                                       based on weight (60-120 lbs)
9899                                                tablet/pill/capsule
9900                                              1 tablet/pill/capsule
9901                                              1 tablet/pill/capsule
9902                                              1 tablet/pill/capsule
9903                                                    0.25 inch strip
9907                                                               <NA>
9917                                                    based on weight
9919                                                               <NA>
9920                                                               <NA>
9923                                                               <NA>
9924                                                               <NA>
9928                                                               <NA>
9931                                              1 tablet/pill/capsule
9935                                                tablet/pill/capsule
9942                                                             cup(s)
9943                                                               <NA>
9944                                                        unspecified
9945                                                    based on weight
9960                                                               <NA>
9961                                                             1 tube
9962                                                               <NA>
9963                                                    based on weight
9966                                                    based on weight
9967                                                               <NA>
9968                                                    based on weight
9969                                                               <NA>
9970                                                       small amount
9971                                                               <NA>
9972                                                               <NA>
10017                                                   based on weight
10026                                                              <NA>
10027                                                       application
10037                                                              <NA>
10042                                                              <NA>
10053                                                   based on weight
10056                                                              <NA>
10057                                                              <NA>
10061                                                      small amount
10063                                                   based on weight
10066                                                   based on weight
10074                                                              <NA>
10075                                                              <NA>
10092                                                              <NA>
10093                                                              <NA>
10106                                                              <NA>
10107                                                              <NA>
10108                                                              <NA>
10109                                                              <NA>
10111                                                              <NA>
10112                                                              <NA>
10113                                                              <NA>
10115                                               tablet/pill/capsule
10116                                                              <NA>
10119                                                       combination
10120                                                              <NA>
10121                                               tablet/pill/capsule
10123                                                              <NA>
10130                                                              <NA>
10131                                                              <NA>
10132                                                              <NA>
10133                                                              <NA>
10134                                               tablet/pill/capsule
10149                                                              <NA>
10151                                                              <NA>
10152                                                              <NA>
10153                                                              <NA>
10154                                                              <NA>
10160                                                              <NA>
10167                                      based on weight (50-100 lbs)
10168                                                              <NA>
10169                                                              <NA>
10170                                      based on weight (50-100 lbs)
10176                                                      small amount
10187                                                      small amount
10188                                               tablet/pill/capsule
10195                                                              <NA>
10198                                                              <NA>
10200                                               tablet/pill/capsule
10209                                                   based on weight
10219                                                   based on weight
10230                                      based on weight (50-100 lbs)
10231                                      based on weight (60-120 lbs)
10232                                                              <NA>
10233                                                              <NA>
10234                                                              <NA>
10235                                                              <NA>
10245                                               tablet/pill/capsule
10249                                       based on weight (44-88 lbs)
10260                                                              <NA>
10264                                                   moderate amount
10271                                                              <NA>
10273                                                   based on weight
10274                                                   based on weight
10275                                                   based on weight
10276                                                   based on weight
10292                                                              <NA>
10301                                                              <NA>
10312                                                              <NA>
10313                                                              <NA>
10314                                                              <NA>
10316                                                              <NA>
10320                                                              <NA>
10324                                                              <NA>
10334                                               tablet/pill/capsule
10335                                               tablet/pill/capsule
10343                                                              <NA>
10345                                                      small amount
10347                                               tablet/pill/capsule
10348                                               tablet/pill/capsule
10349                                                      small amount
10356                                                      small amount
10365                                               tablet/pill/capsule
10366                                                              tube
10367                                                              <NA>
10370                                                              <NA>
10372                                                       combination
10374                                                       combination
10379                                                              <NA>
10400                                                              <NA>
10403                                                            1 tube
10404                                                              <NA>
10405                                                   based on weight
10408                                               tablet/pill/capsule
10409                                                              <NA>
10410                                                              <NA>
10412                                                              <NA>
10429                                                              <NA>
10432                                                              <NA>
10435                                                              <NA>
10436                                                          wipe/pad
10441                                                              <NA>
10445                                                             spray
10470                                                              <NA>
10477                                                       bottle/vial
10478                                      based on weight (50-100 lbs)
10483                                                              <NA>
10485                                                              <NA>
10487                                                              <NA>
10499                                                              <NA>
10502                                                              <NA>
10503                                             1 tablet/pill/capsule
10505                                             1 tablet/pill/capsule
10506                                                              <NA>
10510                                                              <NA>
10511                                                              <NA>
10523                                                              <NA>
10524                                                              <NA>
10525                                                              <NA>
10526                                                       unspecified
10529                                                      small amount
10555                                                       application
10557                                                              <NA>
10565                                                              <NA>
10573                                                              <NA>
10575                                                      small amount
10576                                                              <NA>
10577                                                              <NA>
10578                                                              <NA>
10579                                                              <NA>
10580                                                              <NA>
10583                                                   based on weight
10587                                                              <NA>
10588                                               tablet/pill/capsule
10589                                               tablet/pill/capsule
10590                                               tablet/pill/capsule
10591                                             1 tablet/pill/capsule
10610                                                              <NA>
10617                                                              <NA>
10618                                               tablet/pill/capsule
10619                                               tablet/pill/capsule
10624                                                   based on weight
10628                                                        inch strip
10642                                                              <NA>
10650                                                              <NA>
10652                                                              <NA>
10653                                               tablet/pill/capsule
10655                                      based on weight (50-100 lbs)
10656                                                              <NA>
10658                                                              <NA>
10667                                                              <NA>
10668                                                              <NA>
10669                                                              <NA>
10671                                                              <NA>
10678                                                              <NA>
10682                                                              <NA>
10683                                      based on weight (50-100 lbs)
10684                                      based on weight (50-100 lbs)
10685                                                   based on weight
10686                                                       unspecified
10687                                                        1-2 scoops
10688                                                              <NA>
10689                                      based on weight (50-100 lbs)
10693                                                              <NA>
10694                                      based on weight (50-100 lbs)
10696                                                              <NA>
10697                                                              <NA>
10701                                                              <NA>
10706                                                              <NA>
10707                                      based on weight (50-100 lbs)
10711                                      based on weight (50-100 lbs)
10712                                                   based on weight
10713                                                       unspecified
10714                                                        1-2 scoops
10715                                                              <NA>
10717                                      based on weight (50-100 lbs)
10718                                                              <NA>
10725                                      based on weight (50-100 lbs)
10726                                                            powder
10727                                                       unspecified
10740                                                              <NA>
10743                                                          wipe/pad
10751                                                              <NA>
10755                                                              <NA>
10756                                             1 tablet/pill/capsule
10766                                                              <NA>
10769                                                              <NA>
10780                                                   based on weight
10781                                                   based on weight
10782                                                              <NA>
10783                                                              <NA>
10792                                                              <NA>
10794                                                   based on weight
10796                                                       combination
10825                                                            collar
10827                                                            collar
10830                                               tablet/pill/capsule
10837                                                    125 mg, 500 mg
10841                       2 mg prednisone, 5 mg trimeprazine tartrate
10842                                      based on weight (50-100 lbs)
10843                                      based on weight (85-130 lbs)
10846                                               tablet/pill/capsule
10849                                                   based on weight
10853                                                      small amount
10863                                                              pump
10865                                                              <NA>
10866                                                              <NA>
10867                                                              <NA>
10870                                               tablet/pill/capsule
10871                                                       bottle/vial
10874                                               tablet/pill/capsule
10877                                               tablet/pill/capsule
10878                                               tablet/pill/capsule
10892                                                              <NA>
10893                                                              <NA>
10894                                                              <NA>
10896                                                              <NA>
10898                                                              <NA>
10899                                                              <NA>
10900                                                              <NA>
10901                                                              <NA>
10905                                                             spray
10925                                                              <NA>
10926                                                              <NA>
10928                                                              tube
10929                                                              tube
10930                                                              <NA>
10934                                                   based on weight
10938                                               tablet/pill/capsule
10953                                                              <NA>
10959                                                              <NA>
10970                                               tablet/pill/capsule
10971                                               tablet/pill/capsule
11003                                               tablet/pill/capsule
11008                                             1 tablet/pill/capsule
11009                                             1 tablet/pill/capsule
11010                                                   based on weight
11011                                                   based on weight
11016                                                      small amount
11021                                                              <NA>
11035                                               tablet/pill/capsule
11036                                               tablet/pill/capsule
11037                                               tablet/pill/capsule
11038                                               tablet/pill/capsule
11052                                                              tube
11065                                                              <NA>
11066                                                              <NA>
11067                                                              <NA>
11069                                               tablet/pill/capsule
11070                                      based on weight (50-100 lbs)
11071                                                              <NA>
11085                                                              <NA>
11088                                                              <NA>
11093                                                              <NA>
11112                                                              <NA>
11134                                                   based on weight
11142                                                              <NA>
11144                                                              <NA>
11145                                                              <NA>
11152                                                   based on weight
11153                                                   based on weight
11155                                                              <NA>
11156                                                              <NA>
11158                                                   based on weight
11159                                                              <NA>
11163                                                              <NA>
11165                                                   based on weight
11182                                                              <NA>
11186                                               tablet/pill/capsule
11189                                                              <NA>
11208                                                              <NA>
11210                                                       unspecified
11211                                                       unspecified
11212                                                   based on weight
11213                                                              <NA>
11214                                                              <NA>
11224                                               tablet/pill/capsule
11228                                               tablet/pill/capsule
11229                                                              <NA>
11233                                               tablet/pill/capsule
11241                                                              <NA>
11242                          460 mg lufenuron, 23 mg milbemycin oxime
11276                                                              <NA>
11291                                                   based on weight
11292                                                   based on weight
11293                                             1 tablet/pill/capsule
11294                                             1 tablet/pill/capsule
11295                                             1 tablet/pill/capsule
11296                                             1 tablet/pill/capsule
11301                                                              <NA>
11305                                                              <NA>
11307                                               tablet/pill/capsule
11311                                                              <NA>
11312                                                              <NA>
11315                                                              <NA>
11316                                                              <NA>
11317                                                              <NA>
11318                                                              <NA>
11326                                               tablet/pill/capsule
11327                                               tablet/pill/capsule
11338                                                      small amount
11340                                                              <NA>
11346                                                            liquid
11349                                                            liquid
11350                                                              <NA>
11351                                                              <NA>
11352                                                              <NA>
11353                                                              <NA>
11354                                                              <NA>
11356                                                      small amount
11360                                                              <NA>
11368                                               tablet/pill/capsule
11385                                               tablet/pill/capsule
11386                                               tablet/pill/capsule
11387                                                      pack/package
11388                                                      pack/package
11394                                                      small amount
11415                                                      small amount
11436                                                   based on weight
11437                                                   based on weight
11441                                                              <NA>
11464                                                      small amount
11470                                                              <NA>
11471                                                              <NA>
11473                                                   based on weight
11477                                               tablet/pill/capsule
11482                                                              <NA>
11493                                                              <NA>
11509                                      based on weight (50-100 lbs)
11511                                                              <NA>
11536                                                              <NA>
11537                                                              <NA>
11538                                                              <NA>
11545                                                              <NA>
11546                                                   based on weight
11547                                                              <NA>
11551                                                              <NA>
11560                                             1 tablet/pill/capsule
11561                                                   based on weight
11562                                                   based on weight
11563                                                              <NA>
11564                                                              <NA>
11565                                                              <NA>
11566                                                              <NA>
11567                                               tablet/pill/capsule
11568                                               tablet/pill/capsule
11570                                               tablet/pill/capsule
11575                                                              <NA>
11576                                                              <NA>
11577                                                              <NA>
11578                                                              <NA>
11589                                                   based on weight
11593                                               tablet/pill/capsule
11596                                                   based on weight
11599                                                              tube
11600                                               tablet/pill/capsule
11620                                                              <NA>
11621                                                              <NA>
11627                                                              <NA>
11628                                                              <NA>
11630                                                              <NA>
11633                                                              <NA>
11634                                                              <NA>
11636                                                              <NA>
11637                                       based on weight (25-60 lbs)
11641                                                              <NA>
11651                                               tablet/pill/capsule
11652                                                              tube
11653                                      based on weight (60-120 lbs)
11654                                             1 tablet/pill/capsule
11655                                               tablet/pill/capsule
11656                                                   based on weight
11659                                                              <NA>
11660                                                   based on weight
11661                                             1 tablet/pill/capsule
11662                                             1 tablet/pill/capsule
11664                                                   based on weight
11665                                                              <NA>
11666                                                              <NA>
11667                                                              <NA>
11669                                                              <NA>
11671                                                              <NA>
11673                                                              <NA>
11678                                                   based on weight
11680                                                   based on weight
11681                                                   based on weight
11683                                                   based on weight
11691                                         based on weight (51+ lbs)
11692                                                              <NA>
11693                                                              <NA>
11695                                                      small amount
11701                                               tablet/pill/capsule
11702                                                              <NA>
11709                                               tablet/pill/capsule
11710                                               tablet/pill/capsule
11719                                                              <NA>
11722                                                              <NA>
11723                                                              <NA>
11735                                                   based on weight
11741                                               tablet/pill/capsule
11742                                                              <NA>
11790                                                              <NA>
11802                                                              <NA>
11806                                                       unspecified
11812                                               tablet/pill/capsule
11813                                                              <NA>
11814                                                   based on weight
11817                                                              <NA>
11822                                               tablet/pill/capsule
11823                                               tablet/pill/capsule
11824                                                       application
11825                                               tablet/pill/capsule
11832                                                       combination
11833                                                       combination
11835                                               tablet/pill/capsule
11836                                               tablet/pill/capsule
11837                                               tablet/pill/capsule
11840                                                              <NA>
11844                                                              <NA>
11846                                                              <NA>
11847                                               tablet/pill/capsule
11848                                               tablet/pill/capsule
11850                                                              <NA>
11856                                                              <NA>
11861                                                       combination
11862                                                       combination
11873                                               tablet/pill/capsule
11874                                               tablet/pill/capsule
11875                                               tablet/pill/capsule
11876                                                              <NA>
11877                                                              <NA>
11878                                                              <NA>
11879                                                              <NA>
11880                                                              <NA>
11881                                                   based on weight
11882                                                   based on weight
11883                                                              <NA>
11889                                                   based on weight
11898                                                              <NA>
11911                                                              <NA>
11919                                               tablet/pill/capsule
11926                                                              <NA>
11930                                                       billion cfu
11959                                                              <NA>
11960                                                       as directed
11962                                                              <NA>
11964                                                   based on weight
11978                                                             spray
11979                                                              <NA>
11980                                                            1 tube
11983                                                              <NA>
11993                                                              <NA>
12009                                                              <NA>
12010                                                              <NA>
12014                                                   based on weight
12018                                                              tube
12019                                               tablet/pill/capsule
12020                                      based on weight (50-100 lbs)
12023                                                              <NA>
12043                                                              <NA>
12047                                                              <NA>
12048                                                              <NA>
12051                                                      pack/package
12054                                                       unspecified
12090                                                   based on weight
12108                                                              <NA>
12111                                                   moderate amount
12120                                                              <NA>
12128                                                   based on weight
12129                                                   based on weight
12130                                                              <NA>
12135                                               tablet/pill/capsule
12136                                               tablet/pill/capsule
12154                                             1 tablet/pill/capsule
12155                                             1 tablet/pill/capsule
12159                                                       unspecified
12160                                                       unspecified
12164                                                       unspecified
12173                                             1 tablet/pill/capsule
12190                                                             spray
12194                                                              <NA>
12213                                                              <NA>
12215                                                              <NA>
12221                                                              <NA>
12222                                                              <NA>
12223                                                         0.5 drops
12261                                               tablet/pill/capsule
12271                                                   based on weight
12273                                                          ointment
12279                                                              <NA>
12283                                                              <NA>
12299                                                              <NA>
12306                                                      small amount
12309                                                              pump
12313                                                              <NA>
12314                                                              <NA>
12322                                                              <NA>
12324                                               tablet/pill/capsule
12334                                                              <NA>
12336                                                              <NA>
12337                                                       unspecified
12342                                               tablet/pill/capsule
12343                                                       unspecified
12345                                                              <NA>
12346                                                              <NA>
12349                                                       bottle/vial
12351                                                              <NA>
12353                                                              <NA>
12364                                                              <NA>
12366                                               tablet/pill/capsule
12375                                                              <NA>
12376                                                              <NA>
12379                                                              <NA>
12386                                                              <NA>
12394                                                              <NA>
12397                                                              <NA>
12398                                                              <NA>
12402                                                   based on weight
12405                                                              <NA>
12406                                               tablet/pill/capsule
12409                                                    1 pack/package
12410                                             1 tablet/pill/capsule
12411                                                             drops
12412                                                              <NA>
12414                                                   based on weight
12415                                                   based on weight
12417                                               tablet/pill/capsule
12418                                               tablet/pill/capsule
12420                                                          ointment
12421                                                              <NA>
12422                                                              <NA>
12423                                                      small amount
12427                                                              <NA>
12429                                                              <NA>
12430                                               tablet/pill/capsule
12431                                               tablet/pill/capsule
12432                                               tablet/pill/capsule
12433                                                              <NA>
12434                                                              <NA>
12438                                                              <NA>
12439                                                              <NA>
12453                                                       combination
12454                                      based on weight (50-100 lbs)
12455                                                              <NA>
12456                                                   based on weight
12457                                                   based on weight
12461                                                          wipe/pad
12462                                               tablet/pill/capsule
12463                                                              <NA>
12466                                                              <NA>
12469                                                              <NA>
12470                                                              <NA>
12471                                                              <NA>
12472                                                              <NA>
12473                                                   based on weight
12474                                                   based on weight
12475                                                              <NA>
12476                                                              <NA>
12477                                                              <NA>
12481                                                   based on weight
12485                                                              <NA>
12487                                                              <NA>
12495                                                   based on weight
12497                                                       billion cfu
12498                                                   based on weight
12500                                               tablet/pill/capsule
12506                                                              <NA>
12511                                               tablet/pill/capsule
12512                                               tablet/pill/capsule
12513                                               tablet/pill/capsule
12514                                                              <NA>
12516                                                              <NA>
12517                                                              <NA>
12520                                                   based on weight
12521                                             1 tablet/pill/capsule
12523                                                   based on weight
12528                                                      small amount
12529                                                      small amount
12530                                                   based on weight
12535                                                      small amount
12536                                                              <NA>
12540                                                              dose
12541                                                              dose
12542                                               tablet/pill/capsule
12543                                                       bottle/vial
12546                                                             scoop
12547                                                              <NA>
12548                                                              <NA>
12549                                                              <NA>
12550                                               tablet/pill/capsule
12551                                                              tube
12552                                               tablet/pill/capsule
12553                                                      small amount
12554                                                      small amount
12567                                                              <NA>
12569                                                              <NA>
12571                                                                1%
12578                                                              <NA>
12580                                                              <NA>
12585                                                              <NA>
12588                                                              <NA>
12589                                                              <NA>
12595                                                              <NA>
12596                                                              <NA>
12605                                                              <NA>
12607                                                              <NA>
12608                                                              <NA>
12609                                                              <NA>
12612                                                              <NA>
12613                                                              <NA>
12615                                                              <NA>
12616                                      based on weight (50-100 lbs)
12620                                             1 tablet/pill/capsule
12623                                             1 tablet/pill/capsule
12630                                                              <NA>
12632                                                              <NA>
12636                                                              <NA>
12638                                                   based on weight
12639                                             1 tablet/pill/capsule
12642                                                              <NA>
12645                                                              <NA>
12686                                             1 tablet/pill/capsule
12692                                                              <NA>
12693                                               tablet/pill/capsule
12712                                                              <NA>
12713                                                              <NA>
12714                                                   based on weight
12730                                                              <NA>
12732                                                              <NA>
12735                                                      small amount
12738                                                              <NA>
12740                                                              <NA>
12744                                                              <NA>
12749                                                              <NA>
12754                                                              <NA>
12755                                                              <NA>
12756                                                              <NA>
12771                                                         injection
12774                                               tablet/pill/capsule
12780                                                      pack/package
12781                                                              <NA>
12784                                                      pack/package
12786                                                              tube
12787                                                            collar
12788                                                   0.25 inch strip
12795                                             1 tablet/pill/capsule
12796                                                            collar
12797                                                    1 pack/package
12801                                                            powder
12826                                                       application
12828                                                       application
12833                                                              <NA>
12836                                                              <NA>
12849                                                              <NA>
12850                                                              <NA>
12860                                                             mg/kg
12861                                                              <NA>
12865                                                              <NA>
12866                                                       unspecified
12870                                                            powder
12873                                                              <NA>
12874                                                              <NA>
12879                                      based on weight (50-100 lbs)
12880                                      based on weight (60-120 lbs)
12881                                                      small amount
12882                                                      small amount
12894                                                              <NA>
12895                                                       unspecified
12901                                                              <NA>
12902                                                              <NA>
12903                                                              <NA>
12904                                                              <NA>
12905                                                              <NA>
12906                                                                ml
12907                                                       unspecified
12908                                                       unspecified
12909                                                              <NA>
12910                                                              <NA>
12911                                                              <NA>
12916                                                   based on weight
12920                                                   based on weight
12929                                                   based on weight
12942                                               tablet/pill/capsule
12943                                                   based on weight
12945                                               tablet/pill/capsule
12947                                                              <NA>
12948                                               tablet/pill/capsule
12949                                                              <NA>
12952                                               tablet/pill/capsule
12953                                                              <NA>
12955                                               tablet/pill/capsule
12956                                                       as directed
12957                                      based on weight (50-100 lbs)
12959                                                             drops
12962                                                              <NA>
12963                                          2 tablets/pills/capsules
12966                                                   based on weight
12979                                                              <NA>
12987                                                              <NA>
12988                                                              <NA>
12989                                                              <NA>
12990                                                              <NA>
12993                                                              <NA>
12994                                                              tube
12996                                                              <NA>
13005                                      based on weight (50-100 lbs)
13006                                      based on weight (60-120 lbs)
13008                                             1 tablet/pill/capsule
13010                                                              <NA>
13013                                                              <NA>
13020                                                              <NA>
13041                                                              <NA>
13049                                                      small amount
13061                                               tablet/pill/capsule
13062                                                              <NA>
13063                                               tablet/pill/capsule
13074                                                              <NA>
13075                                                              <NA>
13076                                                              <NA>
13081                                                              <NA>
13084                                                              <NA>
13086                                                              <NA>
13096                                                      small amount
13104                                                              <NA>
13108                                                              <NA>
13109                                                              <NA>
13110                                                       combination
13111                                                       combination
13112                                                       combination
13113                                                              <NA>
13114                                                              <NA>
13115                                                              <NA>
13116                                                              <NA>
13124                                                      small amount
13126                                                              <NA>
13127                                                              <NA>
13129                                                      small amount
13130                                                      small amount
13133                                                              <NA>
13136                                                   based on weight
13137                                       based on weight (44-88 lbs)
13138                                                              <NA>
13139                                                              <NA>
13140                                                              <NA>
13142                                                   based on weight
13143                                                   based on weight
13148                                                              <NA>
13149                                             1 tablet/pill/capsule
13150                                             1 tablet/pill/capsule
13151                                             1 tablet/pill/capsule
13152                                             1 tablet/pill/capsule
13154                                                              <NA>
13157                                             1 tablet/pill/capsule
13159                                                              <NA>
13160                                                              <NA>
13168                                               tablet/pill/capsule
13169                                               tablet/pill/capsule
13170                                               tablet/pill/capsule
13171                                                              <NA>
13173                                                              <NA>
13183                                                              <NA>
13184                                                              <NA>
13187                                                             spray
13188                                                              <NA>
13189                                                              <NA>
13190                                                              <NA>
13195                                                             spray
13196                                                    shampoo/mousse
13198                                                      small amount
13199                                               tablet/pill/capsule
13208                                               tablet/pill/capsule
13209                                               tablet/pill/capsule
13233                                                       application
13238                                                              <NA>
13246                                                        inch strip
13248                                                              <NA>
13249                                                              <NA>
13262                                                              <NA>
13264                                                              <NA>
13270                                                              <NA>
13271                                               tablet/pill/capsule
13277                                                              <NA>
13278                                                          ointment
13279                                                          ointment
13286                                                              <NA>
13287                                                              <NA>
13288                                                              <NA>
13297                                               tablet/pill/capsule
13298                                               tablet/pill/capsule
13299                                                              <NA>
13307                                               tablet/pill/capsule
13308                                                   based on weight
13309                                                   based on weight
13313                                                   based on weight
13314                                                   based on weight
13315                                                              <NA>
13318                                                              <NA>
13321                                                   moderate amount
13331                                                   based on weight
13332                                                         2-3 drops
13334                                                              <NA>
13340                                                              <NA>
13341                                               tablet/pill/capsule
13343                                               tablet/pill/capsule
13344                                               tablet/pill/capsule
13345                                                              <NA>
13348                                                              <NA>
13349                                                              <NA>
13353                                                              <NA>
13354                                               tablet/pill/capsule
13355                                               tablet/pill/capsule
13356                                                              <NA>
13357                                                       unspecified
13376                                                              <NA>
13405                                                              <NA>
13411                                                              <NA>
13454                                                   based on weight
13455                                                   based on weight
13456                                                              <NA>
13459                                                   based on weight
13460                                                      small amount
13461                                               tablet/pill/capsule
13462                                               tablet/pill/capsule
13464                                                              <NA>
13468                                                       unspecified
13470                                               tablet/pill/capsule
13471                                                   based on weight
13475                                                   based on weight
13476                                               tablet/pill/capsule
13479                                                   based on weight
13483                                                   based on weight
13484                                                   based on weight
13485                                                              <NA>
13487                                                              <NA>
13496                                                              <NA>
13502                                                              <NA>
13503                                                              <NA>
13506                                               tablet/pill/capsule
13532                                                      pack/package
13537                                                              <NA>
13538                                               tablet/pill/capsule
13562                                                              <NA>
13563                                                    shampoo/mousse
13564                                                              <NA>
13575                                                          titrated
13576                                             1 tablet/pill/capsule
13579                                                              <NA>
13581                                                              <NA>
13585                                                              <NA>
13590                                                         as needed
13594                                                              <NA>
13595                                                              <NA>
13601                                                        inch strip
13603                                                              <NA>
13605                                                              <NA>
13609                                                   0.25 inch strip
13615                                                              <NA>
13619                                                              <NA>
13623                                                       bottle/vial
13624                                                   based on weight
13625                                                              tube
13628                                                   based on weight
13631                                                      small amount
13654                                                      small amount
13657                                                      small amount
13659                                                              <NA>
13660                                                            powder
13666                                                     1 bottle/vial
13687                                                              <NA>
13688                                                              <NA>
13693                                               tablet/pill/capsule
13715                                                              <NA>
13723                                       based on weight (44-88 lbs)
13724                                                   based on weight
13730                                               tablet/pill/capsule
13737                                               tablet/pill/capsule
13740                                                              <NA>
13741                                                              <NA>
13747                                                              <NA>
13756                                                              <NA>
13768                                                              <NA>
13769                                                             spray
13774                                                              <NA>
13775                                                              <NA>
13776                                                   based on weight
13782                                                   syringe/pipette
13783                                                   based on weight
13786                                                              tube
13796                                                          wipe/pad
13803                                                              <NA>
13881                                                              <NA>
13884                                                              <NA>
13893                                                              <NA>
13894                                                              <NA>
13896                                                   based on weight
13902                                                              <NA>
13903                                                              <NA>
13904                                                              <NA>
13905                                                              <NA>
13906                                                              <NA>
13908                                                              <NA>
13910                                                   based on weight
13912                                                              <NA>
13913                                                              <NA>
13925                                                              <NA>
13943                                                              <NA>
13946                                                             spray
13994                                                              <NA>
13995                                                              <NA>
13996                                                              <NA>
13998                                             1 tablet/pill/capsule
14006                                                             spray
14007                                               tablet/pill/capsule
14008                                                              <NA>
14050                                                   0.25 inch strip
14051                                               tablet/pill/capsule
14055                                                              <NA>
14059                                                              <NA>
14060                                               tablet/pill/capsule
14061                                                              <NA>
14062                                                              <NA>
14063                                                              <NA>
14064                                                   based on weight
14072                                                              <NA>
14106                                                   based on weight
14114                                               tablet/pill/capsule
14118                                                              <NA>
14120                                                              <NA>
14121                                                              <NA>
14122                                                              <NA>
14123                                                              <NA>
14124                                                              <NA>
14128                                                              <NA>
14129                                                   based on weight
14131                                                      small amount
14147                                               tablet/pill/capsule
14148                                                       bottle/vial
14151                                               tablet/pill/capsule
14154                                               tablet/pill/capsule
14162                                               tablet/pill/capsule
14163                                               tablet/pill/capsule
14164                                               tablet/pill/capsule
14165                                                              <NA>
14166                                                              <NA>
14169                                                              <NA>
14170                                                      small amount
14171                                                              tube
14172                                                   based on weight
14173                                                   based on weight
14174                                                              tube
14175                                                              <NA>
14177                                             1 tablet/pill/capsule
14178                                                              tube
14179                                                              tube
14180                                                              <NA>
14181                                               tablet/pill/capsule
14190                                                              <NA>
14219                                                   based on weight
14221                                                              <NA>
14228                                                              <NA>
14238                                                      small amount
14241                                                              <NA>
14242                                                              <NA>
14245                                                              <NA>
14282                                                              <NA>
14284                                                              <NA>
14291                                                              pump
14296                                                              <NA>
14297                                                              <NA>
14301                                      based on weight (50-100 lbs)
14302                                         based on weight (25+ lbs)
14319                                                              <NA>
14323                                                        inch strip
14324                                                              <NA>
14330                                                              <NA>
14334                                                              tube
14336                                                              <NA>
14365                                                       combination
14366                       272 mcg ivermectin, 227 mg pyrantel pamoate
14367   680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14373                                         based on weight (18+ lbs)
14376                                                            collar
14378                                               tablet/pill/capsule
14380                                                            collar
14385                                                              <NA>
14386                                                              <NA>
14387                                                              <NA>
14388                                                              <NA>
14404                                                              <NA>
14405                                                              <NA>
14406                                      based on weight (50-100 lbs)
14407                                                              <NA>
14408                                               tablet/pill/capsule
14412                                                              <NA>
14413                                                              <NA>
14414                                                       unspecified
14415                                                              <NA>
14419                                                              <NA>
14420                                                              <NA>
14421                                                              <NA>
14426                                                              <NA>
14428                                                              <NA>
14429                                      based on weight (50-100 lbs)
14431                                      based on weight (50-100 lbs)
14432                                                   based on weight
14433                                                       unspecified
14434                                                             scoop
14443                                      based on weight (50-100 lbs)
14444                                                       unspecified
14445                                                       unspecified
14446                                                       unspecified
14447                                                       unspecified
14448                                      based on weight (50-100 lbs)
14449                                      based on weight (50-100 lbs)
14451                                               tablet/pill/capsule
14455                                                   0.25 inch strip
14471                                                       unspecified
14473                                                       unspecified
14477                                                              <NA>
14479                                                   based on weight
14488                                             1 tablet/pill/capsule
14489                                               tablet/pill/capsule
14490                                      based on weight (50-100 lbs)
14492                                                              <NA>
14493                                                              <NA>
14495                                             1 tablet/pill/capsule
14498                                               tablet/pill/capsule
14499                                      based on weight (50-100 lbs)
14512                                                              <NA>
14513                                                              <NA>
14528                                       based on weight (44-88 lbs)
14529                                      based on weight (50-100 lbs)
14547                                      based on weight (50-100 lbs)
14563                                                              <NA>
14576                                                   based on weight
14578                                         based on weight (25+ lbs)
14582                                                   based on weight
14583                                                   based on weight
14584                                                   based on weight
14585                                                   based on weight
14586                                                   based on weight
14587                                                   based on weight
14588                                                   based on weight
14601                                                       unspecified
14605                                                              <NA>
14608                                                              <NA>
14637                                                              <NA>
14645                                                              <NA>
14649                                                              <NA>
14650                                                      small amount
14654                                                                 %
14656                                                              <NA>
14657                                                              <NA>
14658                       272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                              <NA>
14660                                                              <NA>
14664                                      based on weight (50-100 lbs)
14665                                      based on weight (60-120 lbs)
14697                                                          ointment
14699                                                       application
14700                                                   based on weight
14701                                                   based on weight
14702                                                              <NA>
14711                                      based on weight (50-100 lbs)
14712                                       based on weight (56-95 lbs)
14713                                          based on weight (85 lbs)
14720                                      based on weight (50-100 lbs)
14721                                       based on weight (56-95 lbs)
14722                                      based on weight (50-100 lbs)
14723                                      based on weight (50-100 lbs)
14726                                       based on weight (44-88 lbs)
14727                                                              <NA>
14728                                                              <NA>
14730                                                              <NA>
14731                                                              <NA>
14733                                                              <NA>
14734                                                              <NA>
14737                                      based on weight (50-100 lbs)
14738                                       based on weight (44-88 lbs)
14744                                                   based on weight
14748                                                             drops
14754                                         based on weight (22+ lbs)
14755                                      based on weight (50-100 lbs)
14756                                                              <NA>
14757                                                              <NA>
14758                                                              <NA>
14759                                                              <NA>
14760                                                   based on weight
14763                                      based on weight (50-100 lbs)
14764                                                              <NA>
14775                                                              <NA>
14777                                                              <NA>
14778                                                              <NA>
14833                                                              <NA>
14834                                                              <NA>
14838                                                              <NA>
14839                                                              <NA>
14857                                                              <NA>
14858                                                              <NA>
14862                                                              <NA>
14863                                                              <NA>
14864                                                              <NA>
14867                                                              <NA>
14870                                                              <NA>
14871                                                              <NA>
14878                                                              <NA>
14883                                                              <NA>
14884                                                              <NA>
14899                                                              <NA>
14907                                                              <NA>
14911                                                              <NA>
14913                                                              <NA>
14914                                                              <NA>
14934                                                              <NA>
14943                                                              <NA>
14944                                                              <NA>
14949                                                              <NA>
14969                                                              <NA>
14972                                               tablet/pill/capsule
14973                                                       unspecified
14974                                               tablet/pill/capsule
14975                                               tablet/pill/capsule
14976                                                              <NA>
14977                                                              <NA>
14978                                               tablet/pill/capsule
14979                                           0.5 tablet/pill/capsule
14981                                                   based on weight
14982                                               tablet/pill/capsule
14983                                                       as directed
14999                                                              <NA>
15001                                                              <NA>
15002                                                              <NA>
15004                                                              <NA>
15005                                                              <NA>
15006                                                              <NA>
15007                                                              <NA>
15008                                                              <NA>
15009                                                              <NA>
15010                                                              <NA>
15011                                                              <NA>
15017                                      based on weight (50-100 lbs)
15021                                                              <NA>
15022                                                              <NA>
15023                                                     1 bottle/vial
15025                                                              <NA>
15026                                                              <NA>
15027                                                              <NA>
15028                                                              <NA>
15029                                                              <NA>
15030                                                              <NA>
15035                                                              <NA>
15036                                                              <NA>
15045                                                              <NA>
15048                                                   based on weight
15055                                                              <NA>
15059                                             1 tablet/pill/capsule
15061                                               tablet/pill/capsule
15077                                                            collar
15092                                                              <NA>
15102                                                              <NA>
15129                                                             drops
15130                                                              <NA>
15131                                                              <NA>
15132                                                              <NA>
15137                                                             spray
15139                                                       combination
15140                                                       combination
15144                                                              <NA>
15145                                                              <NA>
15150                                                   based on weight
15151                                                              <NA>
15155                                                              <NA>
15170                                                              <NA>
15172                                                              <NA>
15173                                                              <NA>
15174                                                              <NA>
15179                                                              <NA>
15184                                                              <NA>
15196                                                       unspecified
15197                                                      small amount
15202                                                              <NA>
15203                                                              <NA>
15209                                                       bottle/vial
15213                                                              pump
15244                                                              <NA>
15250                                                              tube
15252                                                              <NA>
15253                                                              <NA>
15256                                                              <NA>
15259                                                              <NA>
15268                                      based on weight (50-100 lbs)
15269                                       based on weight (24-60 lbs)
15274                                                              <NA>
15308                                               tablet/pill/capsule
15309                                               tablet/pill/capsule
15310                                             1 tablet/pill/capsule
15311                                                            collar
15314                                                              <NA>
15315                                                            collar
15317                                               tablet/pill/capsule
15319                                                              <NA>
15321                                             1 tablet/pill/capsule
15322                                                            collar
15323                                                              <NA>
15332                                                       as directed
15333                                                              <NA>
15334                                                             spray
15339                                                              <NA>
15345                                                              <NA>
15348                                                              <NA>
15360                                                              <NA>
15361                                               tablet/pill/capsule
15362                                               tablet/pill/capsule
15363                                                              <NA>
15365                                               tablet/pill/capsule
15366                                               tablet/pill/capsule
15367                                             1 tablet/pill/capsule
15373                                                   based on weight
15374                                                   based on weight
15375                                             1 tablet/pill/capsule
15376                                                            1 tube
15377                                             1 tablet/pill/capsule
15378                                                       bottle/vial
15379                                                              <NA>
15383                                                              <NA>
15384                                                              <NA>
15402                                                              <NA>
15412                                                              <NA>
15441                                                              <NA>
15445                                                              <NA>
15448                                                              <NA>
15451                                               tablet/pill/capsule
15453                                                   moderate amount
15454                                                              <NA>
15512                                                              <NA>
15513                                                              <NA>
15515                                             1 tablet/pill/capsule
15524                                               tablet/pill/capsule
15528                                                              <NA>
15530                                                   based on weight
15531                                                              <NA>
15533                                               tablet/pill/capsule
15551                                                   based on weight
15552                                               tablet/pill/capsule
15554                                                   based on weight
15555                                                   based on weight
15556                                                   based on weight
15563                                                          ointment
15581                                                            liquid
15582                                                              <NA>
15583                                                              <NA>
15584                                                              <NA>
15585                                             1 tablet/pill/capsule
15586                                                       application
15587                                                              <NA>
15589                                                   based on weight
15590                                               tablet/pill/capsule
15591                                               tablet/pill/capsule
15592                                                              <NA>
15593                                               tablet/pill/capsule
15594                                               tablet/pill/capsule
15597                                               tablet/pill/capsule
15598                                               tablet/pill/capsule
15599                                                          ointment
15600                                             1 tablet/pill/capsule
15601                                             1 tablet/pill/capsule
15602                                                              <NA>
15603                                                              <NA>
15604                                                              <NA>
15613                                                              <NA>
15614                                                              <NA>
15616                                                              <NA>
15618                                                              <NA>
15633                                                              <NA>
15636                                                              <NA>
15649                                                   based on weight
15650                                                   based on weight
15661                                               tablet/pill/capsule
15662                                                              <NA>
15663                                                       bottle/vial
15667                                                              <NA>
15669                                                              <NA>
15670                                                              <NA>
15672                                                              <NA>
15673                                                              <NA>
15674                                                              <NA>
15675                                                            1 tube
15689                                               tablet/pill/capsule
15690                                                              <NA>
15691                                                              <NA>
15692                                                              <NA>
15693                                                              <NA>
15699                                                              <NA>
15701                                                   13.5 mg, 810 mg
15705                                                              <NA>
15706                                                      small amount
15707                                                              <NA>
15712                                               tablet/pill/capsule
15715                                                              <NA>
15733                                                              <NA>
15750                                                              <NA>
15757                                               tablet/pill/capsule
15758                                                       bottle/vial
15767                                                              <NA>
15768                                                              <NA>
15769                                                              <NA>
15770                                                              <NA>
15776                                                              <NA>
15778                                                             spray
15781                                                   0.25 inch strip
15782                                                             spray
15787                                                              <NA>
15788                                                         1.5 mg/ml
15790                                                       unspecified
15796                                                              <NA>
15799                                                              <NA>
15811                                                      pack/package
15815                                                   based on weight
15818                                                              <NA>
15829                                                              <NA>
15839                                                       unspecified
15840                                                       unspecified
15841                                      based on weight (50-100 lbs)
15842                                      based on weight (50-100 lbs)
15844                                      based on weight (50-100 lbs)
15848                                                   based on weight
15849                                      based on weight (50-100 lbs)
15850                                      based on weight (50-100 lbs)
15856                                                            1 tube
15857                                               tablet/pill/capsule
15858                                                              <NA>
15859                                             1 tablet/pill/capsule
15860                                                              <NA>
15861                                                             spray
15862                                                        inch strip
15863                                                        inch strip
15864                                                             drops
15867                                               tablet/pill/capsule
15868                                             1 tablet/pill/capsule
15869                                                   based on weight
15870                                                   based on weight
15871                                                              <NA>
15886                                               tablet/pill/capsule
15888                                                              <NA>
15889                                                              <NA>
15890                                                              <NA>
15891                                                   based on weight
15892                                                              <NA>
15907                                                              <NA>
15911                                                              <NA>
15912                                                              <NA>
15917                                               tablet/pill/capsule
15918                                                              <NA>
15919                                                              <NA>
15920                                                              <NA>
15921                                               tablet/pill/capsule
15922                                                   based on weight
15923                                                              <NA>
15924                                                              <NA>
15925                                                              <NA>
15926                                                              <NA>
15927                                                              <NA>
15928                                                      pack/package
15929                                               tablet/pill/capsule
15930                                                              <NA>
15931                                                              <NA>
15932                                                              <NA>
15933                                                              <NA>
15934                                                              <NA>
15935                                                              <NA>
15936                                                              <NA>
15937                                                   based on weight
15944                                                              <NA>
15945                                                              <NA>
15981                                      based on weight (50-100 lbs)
15983                                                      small amount
15986                                       based on weight (56-95 lbs)
15992                                      based on weight (50-100 lbs)
15993                                       based on weight (56-95 lbs)
15995                                      based on weight (50-100 lbs)
15996                                       based on weight (56-95 lbs)
15997                                       based on weight (44-88 lbs)
15998                                                     1 bottle/vial
15999                                      based on weight (50-100 lbs)
16000                                       based on weight (44-88 lbs)
16005                                                              <NA>
16007                                                              <NA>
16008                                                              <NA>
16009                                                              <NA>
16016                                                          ointment
16026                                                      small amount
16033                                                              <NA>
16036                                                   based on weight
16037                                                              <NA>
16038                                                   based on weight
16039                                                       application
16052                                               tablet/pill/capsule
16053                                                              tube
16094                       272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                               tablet/pill/capsule
16098                                               tablet/pill/capsule
16105                                                              <NA>
16106                                                              <NA>
16107                                                         6-8 drops
16108                                                              <NA>
16109                                                              <NA>
16110                                                              <NA>
16111                                                              <NA>
16112                                                              <NA>
16113                                                       unspecified
16114                                                              <NA>
16115                                                              <NA>
16116                                                              <NA>
16117                                                              <NA>
16118                                                              <NA>
16150                                                       bottle/vial
16152                                                              tube
16153                                               tablet/pill/capsule
16154                                                       bottle/vial
16155                                                       bottle/vial
16156                                                      pack/package
16157                                               tablet/pill/capsule
16158                                               tablet/pill/capsule
16159                                               tablet/pill/capsule
16160                                               tablet/pill/capsule
16161                                               tablet/pill/capsule
16162                                               tablet/pill/capsule
16163                                               tablet/pill/capsule
16164                                               tablet/pill/capsule
16165                                               tablet/pill/capsule
16177                                                      small amount
16179                                                          wipe/pad
16199                                                              <NA>
16229                                               tablet/pill/capsule
16230                                      based on weight (50-100 lbs)
16239                                                              <NA>
16240                                                              <NA>
16241                                                              <NA>
16242                                                              <NA>
16251                                                              <NA>
16253                                                              <NA>
16285                                                              <NA>
16286                                                              <NA>
16287                                       based on weight (26-50 lbs)
16288                                       based on weight (44-88 lbs)
16289                                               tablet/pill/capsule
16290                                                              <NA>
16292                                                              <NA>
16293                                                              <NA>
16294                                                              <NA>
16295                                                              <NA>
16296                                                              <NA>
16312                                               tablet/pill/capsule
16313                                               tablet/pill/capsule
16315                                               tablet/pill/capsule
16316                                               tablet/pill/capsule
16317                                                              <NA>
16318                                             1 tablet/pill/capsule
16319                                             1 tablet/pill/capsule
16321                                             1 tablet/pill/capsule
16322                                             1 tablet/pill/capsule
16324                                             1 tablet/pill/capsule
16325                                             1 tablet/pill/capsule
16326                                      based on weight (50-100 lbs)
16340                                                   based on weight
16347                                                                 %
16352                                                              <NA>
16355                                                      small amount
16356                                                       as directed
16367                                                              <NA>
16371                                                              <NA>
16374                                                              <NA>
16376                                                              <NA>
16378                                                              <NA>
16382                                                              <NA>
16386                                                              <NA>
16387                                                    shampoo/mousse
16388                                                             spray
16389                                                              <NA>
16400                                               tablet/pill/capsule
16401                                               tablet/pill/capsule
16403                                                   based on weight
16404                                                   based on weight
16408                                                              <NA>
16413                                               tablet/pill/capsule
16414                                               tablet/pill/capsule
16415                                                              <NA>
16416                                                              <NA>
16418                                                       unspecified
16419                                                       unspecified
16420                                                       unspecified
16425                                       based on weight (44-88 lbs)
16426                                       based on weight (44-88 lbs)
16434                                                              <NA>
16435                                                              <NA>
16436                                                              <NA>
16437                                                              <NA>
16440                                      based on weight (50-100 lbs)
16441                                      based on weight (50-100 lbs)
16442                                                       unspecified
16443                                                       unspecified
16447                                      based on weight (50-100 lbs)
16448                                                       unspecified
16450                                      based on weight (50-100 lbs)
16452                                                              <NA>
16453                                                              <NA>
16454                                                              <NA>
16462                                                              <NA>
16472                                                              <NA>
16474                                                   syringe/pipette
16477                                                              <NA>
16478                                                              <NA>
16479                                                   syringe/pipette
16497                                                              <NA>
16522                                               tablet/pill/capsule
16523                                               tablet/pill/capsule
16524                                                       bottle/vial
16525                                                              <NA>
16526                                                              <NA>
16544                                                       bottle/vial
16546                                                              <NA>
16553                                                   based on weight
16579                                                   based on weight
16580                                                      small amount
16595                                      based on weight (50-100 lbs)
16596                                                   based on weight
16597                                                   based on weight
16598                                                   based on weight
16599                                                   based on weight
16601                                                   based on weight
16602                                                              <NA>
16605                                                              <NA>
16606                                                   based on weight
16608                                                   based on weight
16616                                                              <NA>
16617                                                              <NA>
16624                                                              <NA>
16630                                      based on weight (50-100 lbs)
16631                                      based on weight (50-100 lbs)
16635                                                          ointment
16636                                               tablet/pill/capsule
16639                                               tablet/pill/capsule
16646                                                              <NA>
16657                                                              <NA>
16684                                                            powder
16685                                                          wipe/pad
16687                                                              dose
16689                                                   based on weight
16694                                               tablet/pill/capsule
16695                                               tablet/pill/capsule
16702                                                   0.25 inch strip
16703                                                            powder
16704                                               tablet/pill/capsule
16705                                               tablet/pill/capsule
16711                                                      small amount
16712                                                    shampoo/mousse
16714                                                      small amount
16717                                                      small amount
16718                                                      small amount
16721                                               tablet/pill/capsule
16722                                                   based on weight
16723                                                            powder
16724                                                              <NA>
16726                                                             spray
16745                                                              <NA>
16746                                                              <NA>
16749                                                              <NA>
16750                                                              <NA>
16751                                                              <NA>
16774                                               tablet/pill/capsule
16777                                               tablet/pill/capsule
16778                                                       bottle/vial
16779                                                             mg/kg
16783                                                              <NA>
16784                                                              <NA>
16785                                                              <NA>
16786                                                              <NA>
16787                                                              <NA>
16789                                                               10%
16791                                                              <NA>
16793                                                              <NA>
16798                                                              <NA>
16805                                                   based on weight
16807                                                       application
16809                                                              tube
16810                                                       combination
16811                                                   based on weight
16814                                                              <NA>
16815                                                       unspecified
16816                                                              <NA>
16821                                               tablet/pill/capsule
16823                                                              <NA>
16834                                                              <NA>
16838                                                              <NA>
16840                                                              <NA>
16841                                                              <NA>
16847                                                              <NA>
16849                                                              pump
16860                                                              <NA>
16869                                                   based on weight
16877                                                              <NA>
16882                                                            collar
16915                                                              <NA>
16916                                                              <NA>
16918                                                       unspecified
16929                                                       as directed
16930                                                              dose
16931                                                              <NA>
16933                                                              <NA>
16935                                                              <NA>
16936                                       based on weight (26-50 lbs)
16937                                       based on weight (44-88 lbs)
16939                                                              <NA>
16970                                                              <NA>
16983                                               tablet/pill/capsule
16993                                                      small amount
16994                                                      small amount
16998                                                             tubes
16999                                                              <NA>
17000                                                              <NA>
17010                                                       combination
17012                                                       bottle/vial
17013                                               tablet/pill/capsule
17014                                                   based on weight
17018                                                       unspecified
17019                                               tablet/pill/capsule
17020                                                              <NA>
17022                                                              <NA>
17033                                                              <NA>
17035                                                              <NA>
17036                                                              <NA>
17042                                                   based on weight
17049                                                              <NA>
17051                                                              <NA>
17053                                                              <NA>
17062                                                              <NA>
17088                                                       combination
17089                                                              <NA>
17090                                             1 tablet/pill/capsule
17091                                             1 tablet/pill/capsule
17094                                      based on weight (50-100 lbs)
17095                                      based on weight (60-120 lbs)
17098                                                              <NA>
17099                                                              <NA>
17120                                                      small amount
17121                                                      small amount
17126                                                         as needed
17127                                                         as needed
17138                                               tablet/pill/capsule
17143                                                   based on weight
17153                                                              <NA>
17156                                               tablet/pill/capsule
17157                                               tablet/pill/capsule
17173                                                              <NA>
17177                                               tablet/pill/capsule
17180                                               tablet/pill/capsule
17209                                               tablet/pill/capsule
17210                                                              <NA>
17211                                                              <NA>
17218                                                              <NA>
17220                                                              <NA>
17221                                                              <NA>
17225                                                              <NA>
17226                                                              <NA>
17227                                                              <NA>
17228                                                              <NA>
17229                                                              <NA>
17232                                               tablet/pill/capsule
17233                                                              tube
17234                                               tablet/pill/capsule
17236                                                            1 tube
17237                                               tablet/pill/capsule
17238                                                              tube
17239                                               tablet/pill/capsule
17240                                                              <NA>
17241                                                              <NA>
17248                                      based on weight (50-100 lbs)
17251                                      based on weight (50-100 lbs)
17252                                                   syringe/pipette
17253                                                              <NA>
17254                                                      small amount
17255                                             1 tablet/pill/capsule
17263                                                              <NA>
17264                                                              <NA>
17266                                                              <NA>
17268                                                   based on weight
17283                                                              <NA>
17285                                                              <NA>
17297                                                              <NA>
17298                                                   based on weight
17307                                                              <NA>
17308                                                              <NA>
17309                                                              <NA>
17310                                                              <NA>
17313                                                              <NA>
17314                                                              <NA>
17315                                                              <NA>
17327                                                       application
17329                                                       application
17330                                                       application
17335                                                       application
17352                                                             spray
17355                                                      small amount
17381                                                         2-3 drops
17386                                                              <NA>
17387                                                              <NA>
17389                                                              <NA>
17390                                               tablet/pill/capsule
17391                                                              <NA>
17393                                                          ointment
17399                                               tablet/pill/capsule
17406                                                   based on weight
17407                                                             spray
17412                                                              <NA>
17417                                                            collar
17418                                               tablet/pill/capsule
17419                                               tablet/pill/capsule
17420                                               tablet/pill/capsule
17426                                                              <NA>
17427                                                              <NA>
17440                                                              <NA>
17446                                                              <NA>
17461                                                              <NA>
17463                                                      pack/package
17468                                                              <NA>
17470                                                              <NA>
17482                                                              <NA>
17486                                                   based on weight
17487                                                   based on weight
17488                                                   based on weight
17489                                                   based on weight
17490                                                   based on weight
17491                                                   based on weight
17492                                                   based on weight
17493                                                   based on weight
17495                                                   based on weight
17496                                                   based on weight
17518                                                   based on weight
17519                                             1 tablet/pill/capsule
17576                                                   0.25 inch strip
17583                                                              <NA>
17588                                                             spray
17602                                                      small amount
17603                                                             23 mg
17605                                                              <NA>
17611                                                   based on weight
17615                                                   based on weight
17627                                                   based on weight
17633                                                              <NA>
17659                                               tablet/pill/capsule
17672                                                              <NA>
17673                                                              <NA>
17680                                                              <NA>
17697                                                              <NA>
17702                                                              <NA>
17703                                                              <NA>
17719                                                              <NA>
17720                                                      small amount
17722                                                   based on weight
17742                                                              <NA>
17743                                                              <NA>
17755                                                   syringe/pipette
17779                                                       application
17780                                                              <NA>
17781                                                              <NA>
17782                                                       application
17798                                                              <NA>
17802                                                             paste
17803                                                              <NA>
17804                                                              <NA>
17818                                                   based on weight
17832                                          based on weight (80 lbs)
17845                                                   based on weight
17853                                                              <NA>
17855                                                              <NA>
17856                                                              <NA>
17860                                                              <NA>
17863                                               tablet/pill/capsule
17865                                                              <NA>
17882                                                              <NA>
17955                                                              <NA>
17957                                                              <NA>
18023                                                   based on weight
18024                                                   based on weight
18055                                                              <NA>
18056                                                              <NA>
18057                                                   based on weight
18058                                                   based on weight
18072                                               tablet/pill/capsule
18074                                                              <NA>
18075                                                              dose
18094                                               tablet/pill/capsule
18095                                               tablet/pill/capsule
18096                                                              <NA>
18098                                                              <NA>
18114                                                              <NA>
18115                                                              <NA>
18116                                                              <NA>
18118                                         based on weight (55+ lbs)
18119                                      based on weight (50-100 lbs)
18124                                                   based on weight
18134                                                              <NA>
18141                                                              <NA>
18147                                                              hour
18159                                                              <NA>
18164                                                              <NA>
18165                                                      small amount
18188                                               tablet/pill/capsule
18192                                                              <NA>
18193                                                              <NA>
18195                                                              <NA>
18199                                                              <NA>
18202                                                   based on weight
18205                                                   based on weight
18213                                                              <NA>
18214                                                   based on weight
18215                                                              <NA>
18216                                                              <NA>
18217                                                              <NA>
18218                                                              <NA>
18220                                                              <NA>
18221                                                              <NA>
18222                                               tablet/pill/capsule
18238                                                       unspecified
18249                                                              <NA>
18251                                                            powder
18252                                                              <NA>
18258                                                                 %
18260                                                              <NA>
18262                                                                 %
18263                                                              <NA>
18264                                                              <NA>
18266                                                              <NA>
18271                                                              <NA>
18275                                                      small amount
18276                                                              <NA>
18277                                                              <NA>
18323                                                              <NA>
18325                                                              <NA>
18326                                                              <NA>
18329                                                              <NA>
18330                                                              <NA>
18337                                               tablet/pill/capsule
18338                                                              <NA>
18339                                               tablet/pill/capsule
18340                                               tablet/pill/capsule
18341                                                       unspecified
18342                                                              <NA>
18343                                                              <NA>
18344                                             1 tablet/pill/capsule
18345                                                              <NA>
18365                                               tablet/pill/capsule
18366                                               tablet/pill/capsule
18370                                               tablet/pill/capsule
18371                                               tablet/pill/capsule
18373                                             1 tablet/pill/capsule
18374                                             1 tablet/pill/capsule
18404                                                              <NA>
18415                                                   based on weight
18427                                                        inch strip
18441                                                              <NA>
18459                                                   based on weight
18460                                                              dose
18461                                                              dose
18464                                                              <NA>
18466                                                              <NA>
18467                                                              <NA>
18469                                                   0.25 inch strip
18470                                                              <NA>
18471                                                   0.25 inch strip
18472                                                              <NA>
18479                                                              <NA>
18480                                                              <NA>
18483                                                              <NA>
18489                                               tablet/pill/capsule
18490                                               tablet/pill/capsule
18494                                               tablet/pill/capsule
18495                                               tablet/pill/capsule
18500                                               tablet/pill/capsule
18502                                               tablet/pill/capsule
18512                                                              <NA>
18514                                       based on weight (21-55 lbs)
18520                                          based on weight (60 lbs)
18525                                                              <NA>
18534                                                             daily
18543                                                             drops
18562                                                            powder
18565                                                            1 tube
18571                                               tablet/pill/capsule
18572                                               tablet/pill/capsule
18576                                               tablet/pill/capsule
18577                                               tablet/pill/capsule
18580                                               tablet/pill/capsule
18588                                                              <NA>
18591                                                             spray
18595                                                   based on weight
18609                                                              <NA>
18612                                                       unspecified
18621                                                              <NA>
18649                                                   based on weight
18685                                                              <NA>
18686                                                              <NA>
18687                                                              <NA>
18688                                                              <NA>
18689                                                              <NA>
18690                                                              <NA>
18694                                                              <NA>
18696                                                       combination
18697                                                       combination
18703                       272 mcg ivermectin, 227 mg pyrantel pamoate
18707                                                              <NA>
18716                                                          ointment
18718                                                             spray
18729                                                          ointment
18734                                               tablet/pill/capsule
18735                                               tablet/pill/capsule
18736                                               tablet/pill/capsule
18743                                               tablet/pill/capsule
18750                                                              <NA>
18753                                                              <NA>
18774                                                              <NA>
18775                                                              <NA>
18795                                               tablet/pill/capsule
18796                                                       bottle/vial
18797                                               tablet/pill/capsule
18798                                                       bottle/vial
18799                                                              <NA>
18800                                                              <NA>
18820                                                              <NA>
18821                                                              <NA>
18829                                                              <NA>
18837                                               tablet/pill/capsule
18838                                          2 tablets/pills/capsules
18839                                             1 tablet/pill/capsule
18844                                                   syringe/pipette
18845                                               tablet/pill/capsule
18847                                          2 tablets/pills/capsules
18850                                             1 tablet/pill/capsule
18851                                                              <NA>
18852                                               tablet/pill/capsule
18853                                             1 tablet/pill/capsule
18854                                             1 tablet/pill/capsule
18882                                                              dose
18904                                                              <NA>
18905                                                              <NA>
18908                                                   based on weight
18909                                                   based on weight
18919                                                            collar
18921                                                            collar
18924                                                   based on weight
18933                                                              <NA>
18935                                      based on weight (50-100 lbs)
18936                                                            collar
18937                                               tablet/pill/capsule
18961                                          2 tablets/pills/capsules
18964                                               tablet/pill/capsule
18970                                               tablet/pill/capsule
18987                                                              <NA>
18988                                                       unspecified
18989                                                       unspecified
18991                                                      small amount
18993                                                              <NA>
18997                                                              <NA>
18998                                                              <NA>
19003                                                              <NA>
19004                                                              <NA>
19005                                                             spray
19006                                                             spray
19008                                        1-2 tablets/pills/capsules
19009                                        1-2 tablets/pills/capsules
19015                                                              <NA>
19019                                                              <NA>
19021                                                              <NA>
19022                                               tablet/pill/capsule
19023                                                      small amount
19025                                      based on weight (50-100 lbs)
19040                                                              <NA>
19041                                                              <NA>
19055                                                   based on weight
19056                                                       unspecified
19057                                                              <NA>
19061                                                   based on weight
19062                                                              <NA>
19068                                                              <NA>
19070                                               tablet/pill/capsule
19072                                                              tube
19073                                               tablet/pill/capsule
19078                                                   based on weight
19082                                                            1 tube
19122                                                   based on weight
19130                                               tablet/pill/capsule
19152                                                              <NA>
19153                                               tablet/pill/capsule
19154                                               tablet/pill/capsule
19159                                                              <NA>
19165                                               tablet/pill/capsule
19169                                             1 tablet/pill/capsule
19170                                                            1 tube
19183                                                                 1
19184                                                       unspecified
19213                                                       unspecified
19214                                                       unspecified
19215                                                       as directed
19216                                                       as directed
19217                                                              tube
19220                                                              <NA>
19221                                             1 tablet/pill/capsule
19222                                             1 tablet/pill/capsule
19223                                             1 tablet/pill/capsule
19224                                                            collar
19241                                                              <NA>
19242                                                              <NA>
19246                                                       as directed
19252                                                              <NA>
19253                                                              <NA>
19254                                                              <NA>
19255                                                              <NA>
19256                                                              <NA>
19257                                                              <NA>
19258                                                              <NA>
19259                                                              <NA>
19271                                                   based on weight
19272                                                   based on weight
19273                                                   based on weight
19276                                                              <NA>
19278                                                       combination
19281                                                   based on weight
19282                                                   based on weight
19288                                                              <NA>
19298                                                              <NA>
19299                                                              dose
19318                                                   based on weight
19325                                                              <NA>
19326                                                   based on weight
19327                                                   based on weight
19331                                                              <NA>
19335                                                              <NA>
19336                                                              <NA>
19338                                                   based on weight
19350                                                        inch strip
19353                                                              <NA>
19354                                                              <NA>
19356                                                              <NA>
19357                                         based on weight (55+ lbs)
19373                                               tablet/pill/capsule
19386                                                   based on weight
19387                                                   based on weight
19390                                                      small amount
19391                                                   based on weight
19423                                                   based on weight
19427                                               tablet/pill/capsule
19445                                               tablet/pill/capsule
19446                                                       application
19447                                                   based on weight
19448                                                   based on weight
19449                                                   based on weight
19450                                                   based on weight
19451                                                              <NA>
19452                                                              <NA>
19453                                                              <NA>
19454                                                              <NA>
19457                                                   based on weight
19462                                             1 tablet/pill/capsule
19463                                             1 tablet/pill/capsule
19464                                                              <NA>
19465                                                              <NA>
19476                                                   syringe/pipette
19482                       272 mcg ivermectin, 227 mg pyrantel pamoate
19486                                                              <NA>
19487                                               tablet/pill/capsule
19491                                                              <NA>
19492                                               tablet/pill/capsule
19493                                               tablet/pill/capsule
19495                                               tablet/pill/capsule
19500                                                              <NA>
19537                                               tablet/pill/capsule
19567                                                              <NA>
19568                                                            1 pump
19596                                                              <NA>
19603                                               tablet/pill/capsule
19617                                                              <NA>
19641                                                              <NA>
19651                                                              <NA>
19662                                                      pack/package
19663                                                              <NA>
19673                                                   based on weight
19674                                                   based on weight
19684                                                              <NA>
19685                                                   based on weight
19686                                                              <NA>
19688                                               tablet/pill/capsule
19689                                                              <NA>
19690                                                              <NA>
19708                                                              <NA>
19710                                                   based on weight
19711                                                   based on weight
19712                                                   based on weight
19713                                             1 tablet/pill/capsule
19714                                                            collar
19715                                               tablet/pill/capsule
19716                                                            collar
19717                                                   based on weight
19718                                                   based on weight
19722                                               tablet/pill/capsule
19735                                                      small amount
19737                                                              <NA>
19741                                                              <NA>
19754                                                              <NA>
19767                                                              <NA>
19768                                                              dose
19771                                                              <NA>
19776                                       based on weight (40-60 lbs)
19777                                             1 tablet/pill/capsule
19778                                                   based on weight
19788                                                          wipe/pad
19790                                                              <NA>
19792                                                              <NA>
19801                                                   based on weight
19803                                               tablet/pill/capsule
19823                                                          ointment
19828                                                   based on weight
19829                                                   based on weight
19838                                                              <NA>
19843                                                              <NA>
19844                                                              <NA>
19845                                                              <NA>
19851                                                              <NA>
19856                                                   based on weight
19860                                                              <NA>
19866                                                             spray
19876                                                              <NA>
19881                                                              <NA>
19888                                               tablet/pill/capsule
19907                                                              <NA>
19909                                                              <NA>
19911                                                   based on weight
19912                                                              <NA>
19914                                                       unspecified
19917                                                      small amount
19925                                                              <NA>
19926                                                              <NA>
19927                                                              <NA>
19928                                                              <NA>
19930                                                              <NA>
19932                                                              <NA>
19933                                                   based on weight
19944                                                              <NA>
19945                                                              <NA>
19946                                                   based on weight
19947                                                              <NA>
19948                                                              <NA>
19949                                                              <NA>
19950                                                              <NA>
19952                                                       unspecified
19958                                                            collar
19969                                                              <NA>
19975                                                       combination
19984                                                              <NA>
20001                                                              <NA>
20002                                                              <NA>
20003                                                              <NA>
20006                                                              <NA>
20007                                                             spray
20019                                             1 tablet/pill/capsule
20020                                             1 tablet/pill/capsule
20024                                               tablet/pill/capsule
20025                                               tablet/pill/capsule
20026                                               tablet/pill/capsule
20027                                               tablet/pill/capsule
20028                                               tablet/pill/capsule
20038                                               tablet/pill/capsule
20039                                               tablet/pill/capsule
20065                                                              <NA>
20068                                                              <NA>
20069                                                   moderate amount
20070                                                              <NA>
20072                                                              <NA>
20074                                                              <NA>
20096                                                            powder
20099                                                       combination
20105                                                              <NA>
20106                                                              <NA>
20125                                                              <NA>
20126                                             1 tablet/pill/capsule
20127                                             1 tablet/pill/capsule
20130                                                              <NA>
20131                                                              <NA>
20135                                                              <NA>
20144                                               tablet/pill/capsule
20145                                                         injection
20149                                                              <NA>
20150                                                      small amount
20164                                                              <NA>
20173                                                              tube
20174                                             1 tablet/pill/capsule
20175                                                              <NA>
20182                                                   moderate amount
20193                                               tablet/pill/capsule
20218                                                   based on weight
20219                                               tablet/pill/capsule
20220                                                              <NA>
20221                                               tablet/pill/capsule
20222                                                   based on weight
20224                                                       unspecified
20225                                                              <NA>
20231                                                              <NA>
20232                                                              <NA>
20233                                               tablet/pill/capsule
20234                                                          ointment
20240                                                     1 bottle/vial
20241                                         based on weight (55+ lbs)
20243                                                              <NA>
20244                                                   based on weight
20245                                                   based on weight
20251                                                      pack/package
20272                                                               tbs
20275                                                              <NA>
20282                                                              <NA>
20292                                                              <NA>
20293                                                                 %
20295                                                              tube
20297                                                              <NA>
20298                                                              <NA>
20299                                                              <NA>
20300                                                      pack/package
20301                                                            collar
20302                                                              <NA>
20303                                                                 %
20306                                                              <NA>
20307                                                              <NA>
20312                                         based on weight (51+ lbs)
20315                                                              <NA>
20337                                                         as needed
20339                                                          wipe/pad
20340                                                      small amount
20342                                                    shampoo/mousse
20343                                                     tapering dose
20344                                                              <NA>
20348                       272 mcg ivermectin, 227 mg pyrantel pamoate
20356                                                              <NA>
20374                                                   based on weight
20376                                                       as directed
20377                                                   based on weight
20380                                                       as directed
20382                                                              <NA>
20387                                      based on weight (50-100 lbs)
20388                                      based on weight (50-100 lbs)
20390                                      based on weight (50-100 lbs)
20392                                                              <NA>
20393                                                              <NA>
20402                                      based on weight (50-100 lbs)
20405                                      based on weight (50-100 lbs)
20406                                                              <NA>
20409                                                              <NA>
20411                                                              <NA>
20413                                                              <NA>
20425                                                   based on weight
20426                                                   based on weight
20441                                                      small amount
20442                                                              <NA>
20444                                          based on weight (90 lbs)
20446                                                              <NA>
20453                                                              <NA>
20460                                                              <NA>
20485                                                       application
20490                                             1 tablet/pill/capsule
20491                                             1 tablet/pill/capsule
20510                                               tablet/pill/capsule
20511                                             1 tablet/pill/capsule
20512                                             1 tablet/pill/capsule
20516                                             1 tablet/pill/capsule
20517                                             1 tablet/pill/capsule
20518                                                              pump
20554                                                   based on weight
20555                                                   based on weight
20561                                                   based on weight
20565                                      based on weight (60-120 lbs)
20568                                      based on weight (60-120 lbs)
20574                                                              <NA>
20577                                                              <NA>
20579                                             1 tablet/pill/capsule
20582                                      based on weight (60-120 lbs)
20585                                                      small amount
20615                                                              <NA>
20623                                                      pack/package
20636                                                              <NA>
20637                                                              <NA>
20638                                                              <NA>
20640                                                              <NA>
20641                                                            collar
20642                                                              <NA>
20645                                                       unspecified
20648                                                              <NA>
20651                                                              <NA>
20659                                                              <NA>
20666                                                              <NA>
20667                                                              <NA>
20678                                                              <NA>
20698                                                        inch strip
20701                                                   based on weight
20702                                      based on weight (50-100 lbs)
20704                                                      small amount
20705                                                       application
20707                                               tablet/pill/capsule
20708                                                          wipe/pad
20709                                                            powder
20712                                                          wipe/pad
20717                                                   based on weight
20718                                                              <NA>
20728                                                              <NA>
20738                                                              <NA>
20745                                                             spray
20748                                                              <NA>
20750                                                              <NA>
20761                                                              <NA>
20762                                                              <NA>
20763                                                              <NA>
20766                                                              <NA>
20767                                                              <NA>
20771                                                              <NA>
20783                                                              <NA>
20791                                                              <NA>
20796                                                              <NA>
20800                                               tablet/pill/capsule
20808                                               tablet/pill/capsule
20809                                               tablet/pill/capsule
20814                                                             spray
20817                                                              <NA>
20819                                                              <NA>
20820                                                              <NA>
20849                                                              <NA>
20852                                                              <NA>
20854                                                              <NA>
20855                                                              <NA>
20857                                                              <NA>
20858                                                              <NA>
20859                                                              <NA>
20860                                                              <NA>
20861                                                              <NA>
20862                                                                 l
20863                                                   based on weight
20872                                                   based on weight
20897                                                              <NA>
20918                                                              <NA>
20939                                                   based on weight
20940                                                   based on weight
20941                                               tablet/pill/capsule
20947                                                            collar
20949                                                   based on weight
20962                                                              <NA>
20963                                                              <NA>
20964                                               tablet/pill/capsule
20965                                                              <NA>
20966                                                              <NA>
20972                                                              <NA>
21003                                                          ointment
21013                                                        inch strip
21017                                                           1 spray
21022                                                              <NA>
21025                                                              <NA>
21029                                                              <NA>
21069                                                              <NA>
21070                                                              <NA>
21071                                                              <NA>
21074                                                   based on weight
21078                                               tablet/pill/capsule
21080                                                              <NA>
21088                                                       unspecified
21102                                                              <NA>
21109                                                       as directed
21110                                                   based on weight
21111                                                              <NA>
21112                                                              <NA>
21114                                               tablet/pill/capsule
21115                                                       application
21116                                                              <NA>
21117                                                              <NA>
21118                                                              <NA>
21119                                                              <NA>
21122                                               tablet/pill/capsule
21123                                                              tube
21124                                                              <NA>
21125                                                              <NA>
21126                                                              <NA>
21127                                               tablet/pill/capsule
21128                                                              <NA>
21129                                                              <NA>
21130                                                              <NA>
21131                                                    shampoo/mousse
21132                                                              <NA>
21133                                                   based on weight
21168                                                              <NA>
21169                                                              <NA>
21170                                                              <NA>
21172                                                              <NA>
21178                                                   0.25 inch strip
21179                                                              <NA>
21180                                                              <NA>
21181                                               tablet/pill/capsule
21182                                                              <NA>
21183                                                              <NA>
21189                                      based on weight (60-120 lbs)
21190                                               tablet/pill/capsule
21192                                                            1 pump
21201                                                              <NA>
21224                                                          ointment
21253                                                              <NA>
21254                                               tablet/pill/capsule
21256                                                              <NA>
21267                                                              <NA>
21268                                                              <NA>
21269                                             1 tablet/pill/capsule
21273                                                              <NA>
21278                                                              <NA>
21282                                                              <NA>
21287                                                              <NA>
21309                                                              <NA>
21326                                                              <NA>
21328                                                              <NA>
21331                                                              <NA>
21336                                                              <NA>
21337                                                              <NA>
21338                                                   based on weight
21348                                                              <NA>
21359                                                              <NA>
21361                                                              <NA>
21364                                                              <NA>
21367                                                              <NA>
21369                                                   based on weight
21374                                                              <NA>
21384                                                              <NA>
21385                                                              <NA>
21386                                                              <NA>
21387                                                              <NA>
21388                                                              <NA>
21389                                                              <NA>
21394                                                              <NA>
21403                                                              <NA>
21413                                                              <NA>
21416                                                              tube
21442                                                              <NA>
21445                                                   based on weight
21448                                                   based on weight
21449                                                   based on weight
21460                                                              <NA>
21465                                                              <NA>
21472                                                              <NA>
21481                                                              <NA>
21491                                                              <NA>
21492                                             1 tablet/pill/capsule
21493                                             1 tablet/pill/capsule
21495                                                              <NA>
21498                                                              <NA>
21504                                                      pack/package
21507                                                      pack/package
21508                                                              <NA>
21509                                                       unspecified
21522                                                              tube
21527                                                              <NA>
21528                                                   based on weight
21531                                                              <NA>
21532                                             1 tablet/pill/capsule
21533                                             1 tablet/pill/capsule
21534                                                            1.5 ml
21535                                                              <NA>
21545                                                           1000 mg
21546 16 mg florfenicol, 2.2 mg mometasone furoate, 14.8 mg terbinafine
21547                                                              <NA>
21548                                                              <NA>
21549                                                              <NA>
21552                                                              3 ml
21553                                                              <NA>
21554                                                              <NA>
21555                                                              <NA>
21558                                                              <NA>
21562                                                   based on weight
21563                                                   based on weight
21564                                                   based on weight
21585                                               tablet/pill/capsule
21586                                               tablet/pill/capsule
21587                                                              <NA>
21593                                                              <NA>
21600                                          based on weight (55 lbs)
21602                                                              <NA>
21603                                                              <NA>
21604                                                              <NA>
21605                                                              <NA>
21606                                                              <NA>
21607                                                              <NA>
21608                                                              <NA>
21609                                                              <NA>
21612                                                              <NA>
21614                                       based on weight (44-88 lbs)
21615                                      based on weight (50-100 lbs)
21616                                                        inch strip
21617                                                              <NA>
21618                                                              <NA>
21619                                      based on weight (50-100 lbs)
21620                                       based on weight (44-88 lbs)
21621                                      based on weight (50-100 lbs)
21622                                       based on weight (44-88 lbs)
21625                                                              <NA>
21632                                                              <NA>
21637                                                              <NA>
21642                                                   based on weight
21643                                                              <NA>
21644                                                   based on weight
21645                       272 mcg ivermectin, 227 mg pyrantel pamoate
21646                                               tablet/pill/capsule
21648                                                   based on weight
21649                                                   based on weight
21650                                                       as directed
21651                                                              <NA>
21652                                                   based on weight
21653                                                      small amount
21654                                                              <NA>
21655                                                   based on weight
21658                                                            collar
21659                                                      small amount
21660                                                   0.25 inch strip
21661                                                             spray
21666                                                            collar
21673                                                              <NA>
21677                                                              <NA>
21678                                                             spray
21680                                                              <NA>
21685                                                       application
21701                                                            collar
21705                                                            collar
21707                                                            collar
21708                                                       unspecified
21723                                                              <NA>
21725                                                   based on weight
21727                                               tablet/pill/capsule
21739                                                              <NA>
21748                                                             23 mg
21749                                                          0.135 ml
21753                                                              <NA>
21754                                                              <NA>
21755                                                              <NA>
21757                                                              <NA>
21767                                                              <NA>
21782                                                              <NA>
21783                                                                 %
21796                                                              <NA>
21809                                                              <NA>
21810                                                              <NA>
21814                                               tablet/pill/capsule
21815                                                              <NA>
21833                                                              <NA>
21844                                                              <NA>
21851                                                              <NA>
21865                                                       combination
21866             8.8% imidacloprid, 44% permethrin, 0.44% pyriproxyfen
21867                                                              <NA>
21869                                                              <NA>
21872                                                              <NA>
21873                                                              <NA>
21875                                                              <NA>
21876                                                              <NA>
21877                                                              <NA>
21878                                                              <NA>
21886                                                              <NA>
21894                                                              <NA>
21897                                               tablet/pill/capsule
21898                                               tablet/pill/capsule
21899                                                            powder
21911                                                              <NA>
21912                                                              <NA>
21914                                               tablet/pill/capsule
21915                                                              tube
21918                                                      pack/package
21921                                                              <NA>
21925                                                      pack/package
21927                                                              <NA>
21949                                                              <NA>
21955                                                              <NA>
21956                                                              <NA>
21957                                                              <NA>
21959                                                              <NA>
21982                                                      pack/package
21993                                               tablet/pill/capsule
22017                                                              <NA>
22020                                                      small amount
22022                                                              <NA>
22023                                               tablet/pill/capsule
22025                                      based on weight (50-100 lbs)
22026                                                   based on weight
22037                                                   based on weight
22038                                                   based on weight
22041                                               tablet/pill/capsule
22042                                               tablet/pill/capsule
22043                                                              <NA>
22045                                                   based on weight
22046                                                   based on weight
22048                                                             spray
22050                                                              <NA>
22051                                                              <NA>
22060                                                              <NA>
22062                                                   based on weight
22064                                               tablet/pill/capsule
22088                                               tablet/pill/capsule
22089                                             1 tablet/pill/capsule
22092                                             1 tablet/pill/capsule
22093                                             1 tablet/pill/capsule
22112                                                              <NA>
22118                                                   based on weight
22120                                                          ointment
22121                                                              <NA>
22125                                                              <NA>
22128                                                              <NA>
22136                                                   based on weight
22140                                                   based on weight
22141                                                   based on weight
22151                                                              <NA>
22160                                                              <NA>
22161                                                   based on weight
22162                                                              <NA>
22163                                                              <NA>
22173                                             1 tablet/pill/capsule
22175                                                       application
22176                                                              <NA>
22177                                                              <NA>
22179                                                          ointment
22189                                                      small amount
22190                                                            liquid
22191                                                            1 tube
22196                                                                ml
22197                                                              tube
22199                                               tablet/pill/capsule
22201                                                              <NA>
22216                                                   based on weight
22217                                                   based on weight
22218                                                              <NA>
22219                                                              <NA>
22222                                             1 tablet/pill/capsule
22223                                               tablet/pill/capsule
22224                                                              tube
22225                                                              <NA>
22226                                                              <NA>
22227                                                              <NA>
22228                                                              <NA>
22229                                      based on weight (50-100 lbs)
22230                                                              <NA>
22237                                                              <NA>
22238                                                              <NA>
22239                                                              <NA>
22240                                                              <NA>
22241                                                              <NA>
22243                                                              <NA>
22245                                                              <NA>
22253                                               tablet/pill/capsule
22261                                               tablet/pill/capsule
22262                                               tablet/pill/capsule
22265                                               tablet/pill/capsule
22267                                                   based on weight
22268                                                   based on weight
22269                                                              <NA>
22270                                                       unspecified
22272                                                      small amount
22289                                                              <NA>
22299                                                              <NA>
22306                          460 mg lufenuron, 23 mg milbemycin oxime
22308                                                              <NA>
22311                                                              <NA>
22313                                                      small amount
22314                                               tablet/pill/capsule
22315                                                    1 pack/package
22316                                                              <NA>
22319                                                              <NA>
22321                                                   based on weight
22323                                               tablet/pill/capsule
22341                                                              tube
22342                                                          wipe/pad
22343                                                              dose
22345                                                              <NA>
22346                                                              <NA>
22347                                                              <NA>
22349                                                              <NA>
22351                                                              <NA>
22352                                                              <NA>
22353                                                              <NA>
22367                                                              <NA>
22403                                                              <NA>
22404                                                      small amount
22407                                                              <NA>
22408                                                      small amount
22410                                                      small amount
22413                                                   based on weight
22417                                                   based on weight
22430                                                   based on weight
22439                                               tablet/pill/capsule
22440                                                              <NA>
22441                                                   based on weight
22459                                                              <NA>
22463                                                              <NA>
22482                                                              <NA>
22520                                                              <NA>
22530                                                              <NA>
22531                                               tablet/pill/capsule
22532                                               tablet/pill/capsule
22533                                                            collar
22534                                                              <NA>
22537                                                    shampoo/mousse
22540                                                              <NA>
22541                                               tablet/pill/capsule
22545                                               tablet/pill/capsule
22546                                               tablet/pill/capsule
22547                                                              <NA>
22548                                                              <NA>
22549                                               tablet/pill/capsule
22552                                                              <NA>
22556                                                              <NA>
22557                                                   based on weight
22558                                                   based on weight
22574                                                              <NA>
22575                                                   0.25 inch strip
22577                       272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                             1 tablet/pill/capsule
22579                                                              <NA>
22583                                          2 tablets/pills/capsules
22585                                                              <NA>
22598                                                            1 tube
22599                                                              <NA>
22600                                                              <NA>
22601                                                              <NA>
22606                                                       as directed
22607                                                       as directed
22610                                                              <NA>
22611                                                              <NA>
22625                                                   based on weight
22653                                                       unspecified
22655                                       based on weight (44-88 lbs)
22656                                                   based on weight
22662                                                      small amount
22667                                                      small amount
22669                                                              <NA>
22670                                                              tube
22672                                                              <NA>
22673                                                              <NA>
22681                                                      small amount
22682                                               tablet/pill/capsule
22683                                                              tube
22690                                                            collar
22691                                                              <NA>
22692                                                   based on weight
22693                                                   based on weight
22704                                             1 tablet/pill/capsule
22705                                                              tube
22707                                               tablet/pill/capsule
22708                                                              tube
22709                                                              <NA>
22710                                                              <NA>
22711                                               tablet/pill/capsule
22713                                               tablet/pill/capsule
22714                                               tablet/pill/capsule
22715                                                              <NA>
22716                                               tablet/pill/capsule
22717                                               tablet/pill/capsule
22718                                      based on weight (50-100 lbs)
22719                                               tablet/pill/capsule
22721                                                              <NA>
22733                                                            collar
22734                                                              <NA>
22748                                               tablet/pill/capsule
22749                                                              <NA>
22750                                                   based on weight
22751                                                              <NA>
22752                                                              <NA>
22754                                                   based on weight
22763                                                   based on weight
22764                                                              tube
22765                                                      small amount
22766                                                              <NA>
22770                                                              <NA>
22777                                                              <NA>
22778                                                              <NA>
22779                                                              <NA>
22780                                                              <NA>
22795                                               tablet/pill/capsule
22796                                                              <NA>
22797                                                           monthly
22798                                                           monthly
22799                                                   based on weight
22800                                                   based on weight
22801                                                   based on weight
22802                                                      small amount
22803                                                   based on weight
22804                                                   based on weight
22830                                                              <NA>
22840                                                              <NA>
22848                                                      small amount
22853                                                          ointment
22858                                                    shampoo/mousse
22875                                                                 %
22886                                                      small amount
22909                                                              <NA>
22910                                                              <NA>
22911                                                              <NA>
22912                                                              <NA>
22919                                      based on weight (60-120 lbs)
22920                                      based on weight (50-100 lbs)
22921                                                              <NA>
22922                                                              <NA>
22923                                               tablet/pill/capsule
22926                                                      small amount
22929                                                      small amount
22936                                                              pump
22938                                                              <NA>
22939                                                              <NA>
22954                                                              <NA>
22955                                                              <NA>
22963                                                              tube
22965                                      based on weight (50-100 lbs)
22966                                                   based on weight
22967                                               tablet/pill/capsule
22971                                                   based on weight
22990                                                          wipe/pad
22991                                                              <NA>
22992                                                              <NA>
22994                                               tablet/pill/capsule
23005                                                              <NA>
23006                                                              <NA>
23007                                                              <NA>
23008                                                              <NA>
23009                                                              <NA>
23018                                                              <NA>
23019                                                              <NA>
23024                                                      pack/package
23025                                               tablet/pill/capsule
23043                                               tablet/pill/capsule
23049                                                              <NA>
23051                                                              <NA>
23053                                               tablet/pill/capsule
23055                                                              <NA>
23059                                               tablet/pill/capsule
23060                                                   based on weight
23061                                                   based on weight
23064                                                              <NA>
23065                                                              <NA>
23066                                                   based on weight
23083                                                              <NA>
23095                                               tablet/pill/capsule
23096                                               tablet/pill/capsule
23100                                                              <NA>
23102                                                              <NA>
23103                                                              <NA>
23108                                                              <NA>
23122                                                   based on weight
23123                                                   based on weight
23124                                                   based on weight
23125                                                   based on weight
23134                                                              <NA>
23137                                                              <NA>
23138                                               tablet/pill/capsule
23143                                                              <NA>
23144                                                              <NA>
23145                                                              <NA>
23146                                                              <NA>
23153                                                              <NA>
23154                                                              <NA>
23163                                                              <NA>
23169                                                              <NA>
23173                                                   based on weight
23175                                                              <NA>
23184                                                              <NA>
23186                                                              <NA>
23187                                                              <NA>
23202                                               tablet/pill/capsule
23237                                                              <NA>
23248                                                              <NA>
23249                                                              <NA>
23250                                                   based on weight
23251                                                              <NA>
23257                                                              <NA>
23258                                             1 tablet/pill/capsule
23259                                                            1 tube
23266                                                          inhalant
23267                                                              <NA>
23268                                       based on weight (56-95 lbs)
23276                                                          inhalant
23278                                                      small amount
23279                                             1 tablet/pill/capsule
23280                                             1 tablet/pill/capsule
23281                                                              <NA>
23282                                                              <NA>
23283                                                              <NA>
23284                                                              <NA>
23285                                                              <NA>
23286                                                              <NA>
23288                                                      small amount
23294                                                              <NA>
23299                                                              <NA>
23304                                                              <NA>
23305                                                             spray
23306                                                             spray
23308                                                    shampoo/mousse
23321                                                              <NA>
23322                                                      small amount
23325                                          based on weight (80 lbs)
23333                                                              <NA>
23336                                                              dose
23337                                                     1 bottle/vial
23338                                                     1 bottle/vial
23340                                                      small amount
23341                                             1 tablet/pill/capsule
23342                                                            1 tube
23344                                                              <NA>
23345                                       based on weight (56-95 lbs)
23349                                                      small amount
23350                                                              <NA>
23351                                                              <NA>
23352                                                              <NA>
23353                                                              <NA>
23354                                                              <NA>
23355                                                              <NA>
23356                                                              <NA>
23357                                                              <NA>
23360                                                              <NA>
23361                                                              <NA>
23364                                                              <NA>
23366                                                              <NA>
23384                                                              <NA>
23385                                      based on weight (50-100 lbs)
23386                                                              <NA>
23388                                               tablet/pill/capsule
23403                                                   based on weight
23404                                                   based on weight
23413                                                   based on weight
23414                                                   based on weight
23419                                                       unspecified
23422                                                              tube
23423                                                              tube
23427                                                   based on weight
23428                                                              <NA>
23437                                                   based on weight
23450                                                              dose
23452                                                             spray
23455                                                              <NA>
23456                                                             spray
23457                                                              <NA>
23472                                                              dose
23482                                                              tube
23484                                                       as directed
23485                                                       as directed
23487                                                       0.159 fl oz
23491                                                              <NA>
23507                                                      pack/package
23520                                                       0.159 fl oz
23533                                                              <NA>
23534                                                             spray
23540                                                   based on weight
23541                                                   based on weight
23548                                                              <NA>
23552                                                              <NA>
23553                                                   based on weight
23555                                                              <NA>
23557                                                   based on weight
23558                                                              <NA>
23565                                                              <NA>
23566                                                              <NA>
23568                                                   based on weight
23571                       272 mcg ivermectin, 227 mg pyrantel pamoate
23572          9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen
23588                                               tablet/pill/capsule
23589                                                              tube
23590                                               tablet/pill/capsule
23593                                                              <NA>
23594                                                              <NA>
23610                                                              <NA>
23617                                                   based on weight
23618                                             1 tablet/pill/capsule
23619                                                              <NA>
23620                                                   based on weight
23622                                      based on weight (50-100 lbs)
23646                                                   based on weight
23647                                                   based on weight
23651                                                   based on weight
23657                                                   based on weight
23659                                                   based on weight
23685                                               tablet/pill/capsule
23686                                               tablet/pill/capsule
23688                                               tablet/pill/capsule
23707                                                             spray
23718                                                              <NA>
23721                                               tablet/pill/capsule
23722                                               tablet/pill/capsule
23724                                                                60
23730                                                   based on weight
23732                                             1 tablet/pill/capsule
23733                                                              <NA>
23740                                                   based on weight
23747                                                              <NA>
23749                                                              <NA>
23757                                                              <NA>
23792                                                              <NA>
23804                                                              <NA>
23805                                                   based on weight
23808                                               tablet/pill/capsule
23809                                                            collar
23819                                                   based on weight
23825                                                              <NA>
23861                                                   based on weight
23862                                                   based on weight
23865                                                              <NA>
23866                                                              tube
23868                                                              <NA>
23871                                                              <NA>
23872                                                    shampoo/mousse
23873                                                          wipe/pad
23898                                                            collar
23899                                                    shampoo/mousse
23900                                               tablet/pill/capsule
23901                                                           monthly
23902                                                   based on weight
23905                                             1 tablet/pill/capsule
23906                                                            collar
23909                                                         as needed
23910                                               tablet/pill/capsule
23914                                                       application
23917                                                          ointment
23924                                                              <NA>
23925                                                              <NA>
23933                                                              <NA>
23942                                                              <NA>
23955                                                   based on weight
23956                                                   based on weight
23957                                                              <NA>
23958                                                              <NA>
23959                                                              <NA>
23965                                                              <NA>
23969                                                              <NA>
23974                                         based on weight (55+ lbs)
23976                                                              <NA>
23980                                                              <NA>
23989                                                              <NA>
23990                                                              <NA>
24008                                                              <NA>
24010                                                              <NA>
24012                                                      small amount
24017                                                              <NA>
24018                                                              <NA>
24019                                                              <NA>
24020                                                              <NA>
24022                                                              <NA>
24029                                                              <NA>
24044                                                              <NA>
24045                                                              <NA>
24046                                                              <NA>
24062                                               tablet/pill/capsule
24068                                                       unspecified
24069                                                              <NA>
24072                                                              <NA>
24075                                                   based on weight
24076                                                   based on weight
24077                                               tablet/pill/capsule
24079                                                              dose
24104                                                              <NA>
24106                                                              <NA>
24113                                                              <NA>
24116                                               tablet/pill/capsule
24117                                               tablet/pill/capsule
24139                                                              <NA>
24142                                               tablet/pill/capsule
24144                                                              <NA>
24145                                                       unspecified
24146                                                              <NA>
24149                                                              <NA>
24154                                                              <NA>
24155                                                              <NA>
24157                                                   based on weight
24162                                                   based on weight
24165                                                   based on weight
24166                                                   based on weight
24172                                                   0.25 inch strip
24174                                               tablet/pill/capsule
24185                                                              <NA>
24189                                                              <NA>
24192                                                              <NA>
24193                                                              <NA>
24194                                                              <NA>
24195                                                              <NA>
24201                                                              <NA>
24202                                                              <NA>
24203                                                      small amount
24205                                                              <NA>
24206                                                              <NA>
24207                                                              <NA>
24208                                                              <NA>
24209                                                             spray
24215                                                      small amount
24217                                                         as needed
24218                                                              <NA>
24219                                                              <NA>
24221                                                   moderate amount
24222                                                      small amount
24246                                                              <NA>
24250                                             1 tablet/pill/capsule
24251                                                              <NA>
24253                                               tablet/pill/capsule
24257                                                   based on weight
24258                                               tablet/pill/capsule
24259                                               tablet/pill/capsule
24260                                                              <NA>
24261                                               tablet/pill/capsule
24262                                                              <NA>
24263                                                              <NA>
24264                                                              <NA>
24265                                               tablet/pill/capsule
24266                                                              <NA>
24267                                                              <NA>
24268                                                              <NA>
24269                                                              <NA>
24276                                                              <NA>
24282                                               tablet/pill/capsule
24312                                                             spray
24313                                                              <NA>
24314                                               tablet/pill/capsule
24319                                                              <NA>
24322                                                             spray
24325                                                              <NA>
24328                                                              <NA>
24343                                                              <NA>
24375                                                              <NA>
24379                                                              <NA>
24393                                               tablet/pill/capsule
24394                                               tablet/pill/capsule
24395                                               tablet/pill/capsule
24396                                                              <NA>
24397                                                              <NA>
24399                                                              <NA>
24400                                                              <NA>
24401                                                              <NA>
24402                                             1 tablet/pill/capsule
24403                                             1 tablet/pill/capsule
24404                                                              <NA>
24405                                                              <NA>
24406                                                              <NA>
24407                                                              <NA>
24408                                                              <NA>
24409                                                              <NA>
24410                                               tablet/pill/capsule
24413                                             1 tablet/pill/capsule
24416                                                             drops
24417                                                          0.25 tsp
24418                                                              <NA>
24419                                                              <NA>
24420                                                              <NA>
24421                                               tablet/pill/capsule
24422                                                              tube
24424                                                       unspecified
24425                                                   based on weight
24426                                                   based on weight
24427                                                              <NA>
24428                                                              <NA>
24429                                                              <NA>
24431                                                              <NA>
24432                                                              <NA>
24434                                                              <NA>
24435                                               tablet/pill/capsule
24436                                                             drops
24437                                               tablet/pill/capsule
24438                                                              <NA>
24451                                                      small amount
24452                                                            1 drop
24453                                                            1 drop
24455                                                    1 pack/package
24459                                                              <NA>
24460                                                              <NA>
24461                                                              <NA>
24462                                                              <NA>
24468                                                              <NA>
24473                                                              <NA>
24475                                                              <NA>
24476                                               tablet/pill/capsule
24477                                               tablet/pill/capsule
24478                                                      pack/package
24479                                                              <NA>
24480                                               tablet/pill/capsule
24481                                               tablet/pill/capsule
24482                                                              <NA>
24484                                      based on weight (50-100 lbs)
24486                                               tablet/pill/capsule
24499                                                              <NA>
24503                                                              <NA>
24514                                                      pack/package
24520                                                       bottle/vial
24521                                                   based on weight
24526                                                             spray
24534                                                              <NA>
24536                                                              <NA>
24593                                                              <NA>
24597                                                              <NA>
24598                                                              <NA>
24599                                                              <NA>
24601                                                              <NA>
24602                                                              <NA>
24605                                                   based on weight
24610                                                      small amount
24647                                                      small amount
24648                                                              <NA>
24651                                                              <NA>
24652                                                              <NA>
24653                                                              <NA>
24654                                                              dose
24660                                               tablet/pill/capsule
24666                                                              <NA>
24669                                                   based on weight
24688                                                        inch strip
24707                                                   0.25 inch strip
24733                                                              <NA>
24734                                                              <NA>
24758                                                   0.25 inch strip
24762                                                              <NA>
24768                                                   based on weight
24769                                                   based on weight
24776                                                              <NA>
24782                                                              <NA>
24802                                                              <NA>
24804                                                              <NA>
24805                                                              <NA>
24806                                                              <NA>
24814                                                              <NA>
24817                                                      small amount
24819                                                       application
24824                                               tablet/pill/capsule
24825                                               tablet/pill/capsule
24826                                                              <NA>
24827                                                              <NA>
24828                                           0.5 tablet/pill/capsule
24829                                                   based on weight
24830                                                          wipe/pad
24835                                                              <NA>
24839                                               tablet/pill/capsule
24840                                               tablet/pill/capsule
24850                                                              <NA>
24867                                                   based on weight
24878                                                   moderate amount
24880                                                              <NA>
24897                                                              <NA>
24898                                                              puff
24899                                                              <NA>
24902                                                              <NA>
24903                                                              <NA>
24904                                                              <NA>
24907                                                              <NA>
24917                                                             spray
24918                                                          wipe/pad
24919                                                              <NA>
24935                                                              <NA>
24937                                                              <NA>
24938                                                              <NA>
24940                                                              <NA>
24942                                                              <NA>
24948                                                      small amount
24949                                                              <NA>
24950                                       based on weight (44-88 lbs)
24963                                                              <NA>
24964                                                              <NA>
24967                                                              pump
24968                                                   based on weight
24969                                                   based on weight
24971                                                   based on weight
24973                                               tablet/pill/capsule
24974                                                            collar
24975                                                      small amount
24982                                       based on weight (44-88 lbs)
24984                                                              <NA>
24985                                       based on weight (44-88 lbs)
24987                                      based on weight (50-100 lbs)
24988                                                              <NA>
24989                                                      small amount
24993                                                              <NA>
25003                                                              <NA>
25004                                               tablet/pill/capsule
25020                                                              <NA>
25021                                                   based on weight
25022                                                              <NA>
25040                                                              <NA>
25041                                                              <NA>
25059                       272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                              <NA>
25079                                                   based on weight
25084                                                              <NA>
25087                                                            collar
25094                                                              <NA>
25099                                                              <NA>
25100                                                              <NA>
25101                                                              <NA>
25102                                                              <NA>
25118                                                   based on weight
25119                                                   based on weight
25120                                                   based on weight
25124                                                              <NA>
25129                                               tablet/pill/capsule
25191                                                   based on weight
25196                                                   based on weight
25198                                                              <NA>
25233                                                   based on weight
25234                                                   based on weight
25241                                                      small amount
25255                                                                ml
25258                                                      small amount
25262                                                              <NA>
25269                                                              <NA>
25270                                                              <NA>
25296                                                              <NA>
25299                                               tablet/pill/capsule
25300                                               tablet/pill/capsule
25309                                                              <NA>
25310                                                              <NA>
25311                                                              <NA>
25315                                                              <NA>
25316                                                              <NA>
25317                                                              <NA>
25331                                                              <NA>
25337                                      based on weight (60-120 lbs)
25342                                                   based on weight
25343                                                   based on weight
25345                                                                 2
25346                                                                 1
25347                                                              <NA>
25358                                                              <NA>
25359                                                              <NA>
25366                                                              <NA>
25367                                               tablet/pill/capsule
25369                                                              <NA>
25370                                                              <NA>
25372                                                              <NA>
25374                                                              <NA>
25377                                                              <NA>
25378                                                              <NA>
25390                                                              <NA>
25391                                                              <NA>
25405                                                   based on weight
25409                                                        inch strip
25410                                                        1 wipe/pad
25417                                                       bottle/vial
25421                                                   based on weight
25424                                                              <NA>
25425                                                              <NA>
25437                                                              <NA>
25444                                                              <NA>
25473                                                   based on weight
25482                                                              <NA>
25493                                                   based on weight
25494                                                   based on weight
25501                                                   based on weight
25514                                                              <NA>
25515                                                              <NA>
25516                                                              <NA>
25517                                                              <NA>
25520                                             1 tablet/pill/capsule
25521                                             1 tablet/pill/capsule
25523                                             1 tablet/pill/capsule
25547                                                              <NA>
25554                                                              <NA>
25555                                                              <NA>
25556                                                              <NA>
25557                                                              <NA>
25564                                                              <NA>
25575                                                              <NA>
25576                                               tablet/pill/capsule
25577                                                   based on weight
25579                                                              <NA>
25589                                                              <NA>
25590                                                              <NA>
25591                                                              <NA>
25612                                                              <NA>
25617                                                      small amount
25619                                                             drops
25622                                                              <NA>
25660                                                      small amount
25663                                                      small amount
25666                                          3 tablets/pills/capsules
25670                                                              tube
25671                                                            liquid
25672                                                              <NA>
25674                                                              <NA>
25683                                                              <NA>
25706                                                            1 tube
25707                                                       unspecified
25708                                             1 tablet/pill/capsule
25711                                                              <NA>
25725                                                       billion cfu
25726                                                              <NA>
25727                                               tablet/pill/capsule
25730                                                    shampoo/mousse
25737                                                              <NA>
25740                                               tablet/pill/capsule
25741                                               tablet/pill/capsule
25743                                                              tube
25744                                                         as needed
25748                                               tablet/pill/capsule
25749                                               tablet/pill/capsule
25750                                                            1 tube
25751                                                        inch strip
25753                                                              <NA>
25754                                             1 tablet/pill/capsule
25755                                             1 tablet/pill/capsule
25756                                                            1 tube
25757                                             1 tablet/pill/capsule
25765                                                              <NA>
25795                                          based on weight (60 lbs)
25804                                                              <NA>
25806                                               tablet/pill/capsule
25807                                             1 tablet/pill/capsule
25816                                                              <NA>
25817                                                              <NA>
25819                                                              <NA>
25820                                               tablet/pill/capsule
25825                                                              <NA>
25826                                                              <NA>
25827                                             1 tablet/pill/capsule
25828                                                              <NA>
25829                                                              <NA>
25830                                                              <NA>
25837                                                              puff
25846                                                              dose
25884                                               tablet/pill/capsule
25887                                               tablet/pill/capsule
25888                                               tablet/pill/capsule
25919                                                              <NA>
25936                                                              <NA>
25937                                                              <NA>
25939                                               tablet/pill/capsule
25940                                               tablet/pill/capsule
25941                                                              <NA>
25942                                                              <NA>
25943                                                              <NA>
25948                                                              <NA>
25949                                               tablet/pill/capsule
25950                                               tablet/pill/capsule
25951                                                              <NA>
25952                                                              <NA>
25953                                                              <NA>
25954                                                              <NA>
25964                                                              <NA>
25965                                                              <NA>
25966                                                              <NA>
25967                                                              <NA>
25981                                                              <NA>
25983                                                              <NA>
25985                                                   based on weight
25986                                                   based on weight
25998                                                              <NA>
26004                                                              <NA>
26022                                                              <NA>
26024                                               tablet/pill/capsule
26027                                                              <NA>
26031                                               tablet/pill/capsule
26033                                               tablet/pill/capsule
26037                                               tablet/pill/capsule
26039                                               tablet/pill/capsule
26047                                               tablet/pill/capsule
26048                                               tablet/pill/capsule
26050                                               tablet/pill/capsule
26054                                               tablet/pill/capsule
26056                                               tablet/pill/capsule
26064                                                    1 pack/package
26075                                                              <NA>
26078                                                              <NA>
26084                                                              <NA>
26085                                                              <NA>
26093                                                             spray
26094                                                             spray
26095                                                              <NA>
26110                                                              <NA>
26114                                                   based on weight
26115                                                           5 drops
26127                                                      small amount
26128                                                      small amount
26129                                                      small amount
26133                                                      small amount
26134                                                      small amount
26138                                                              <NA>
26139                                                    shampoo/mousse
26141                                                              dose
26148                                                   based on weight
26151                                                      small amount
26152                                                      small amount
26153                                                              <NA>
26154                                                              <NA>
26155                                                              <NA>
26156                                               tablet/pill/capsule
26157                                                       bottle/vial
26158                                                              <NA>
26159                                                              <NA>
26160                                                              <NA>
26161                                                              <NA>
26165                                                      small amount
26166                                                      small amount
26184                                                   0.25 inch strip
26187                                                    0.5 inch strip
26189                                                              <NA>
26190                                                    shampoo/mousse
26192                                                              dose
26197                                                              <NA>
26199                                                   based on weight
26203                                               tablet/pill/capsule
26204                                                      small amount
26205                                                              <NA>
26206                                                              <NA>
26207                                                      small amount
26208                                                       bottle/vial
26211                                                              <NA>
26212                                                              <NA>
26213                                                              <NA>
26214                                                      small amount
26215                                                       bottle/vial
26222                                                              <NA>
26227                                                              <NA>
26229                                                              <NA>
26237                                                              <NA>
26238                                          based on weight (60 lbs)
26239                                               tablet/pill/capsule
26258                                                              <NA>
26259                                                              <NA>
26264                                                              <NA>
26265                                                              <NA>
26278                                                              <NA>
26279                                               tablet/pill/capsule
26280                                                              <NA>
26281                                               tablet/pill/capsule
26282                                               tablet/pill/capsule
26287                                                              dose
26295                                               tablet/pill/capsule
26300                                                              <NA>
26307                                                             mg/kg
26315                                                   based on weight
26336                                                              <NA>
26337                                                              <NA>
26355                                                    shampoo/mousse
26373                                                              <NA>
26375                                                   based on weight
26380                                                            1 tube
26386                                                    114 mg, 136 mg
26387                                                              <NA>
26391                                                              <NA>
26393                                                             spray
26395                                                              <NA>
26399                                                              <NA>
26400                                                              <NA>
26401                                                              <NA>
26423                                                              <NA>
26433                                                              <NA>
26454                                                              <NA>
26464                                                              dose
26471                                                              <NA>
26473                                                              <NA>
26474                                                              <NA>
26475                                               tablet/pill/capsule
26476                                               tablet/pill/capsule
26477                                                              <NA>
26488                                               tablet/pill/capsule
26489                                               tablet/pill/capsule
26490                                               tablet/pill/capsule
26502                                                      small amount
26503                                                              <NA>
26505                                                         as needed
26508                                                              pump
26517                                                   based on weight
26518                                                   based on weight
26519                                                   based on weight
26520                                               tablet/pill/capsule
26521                                                              <NA>
26522                                               tablet/pill/capsule
26534                                                              <NA>
26540                                                              pump
26543                                                   based on weight
26544                                                   based on weight
26546                                                   based on weight
26551                                                              <NA>
26553                                                              <NA>
26568                                                   based on weight
26574                                                   based on weight
26576                                                              <NA>
26583                                                              <NA>
26590                                                       as directed
26591                                                              dose
26592                                                              dose
26594                                               tablet/pill/capsule
26610                                                              <NA>
26611                                               tablet/pill/capsule
26615                                               tablet/pill/capsule
26628                                                              <NA>
26629                                                   based on weight
26631                                                   based on weight
26637                                                       application
26638                                      based on weight (50-100 lbs)
26643                                                              <NA>
26644                                                                 %
26645                                                   based on weight
26647                                                              <NA>
26650                                                   based on weight
26651                                                   based on weight
26652                                             1 tablet/pill/capsule
26654                                                              <NA>
26655                                                              <NA>
26662                                               tablet/pill/capsule
26663                                               tablet/pill/capsule
26668                                                       bottle/vial
26669                                                   based on weight
26670                                                            collar
26673                                                              <NA>
26674                                                              <NA>
26675                                                              <NA>
26676                                                              dose
26677                                                              <NA>
26680                                                              <NA>
26681                                                              <NA>
26682                                               tablet/pill/capsule
26683                                               tablet/pill/capsule
26684                                             1 tablet/pill/capsule
26685                                             1 tablet/pill/capsule
26694                                                              <NA>
26720                                                              <NA>
26721                                                              <NA>
26722                                                   based on weight
26723                                                              <NA>
26724                                                              <NA>
26726                                               tablet/pill/capsule
26727                                                              <NA>
26734                                               tablet/pill/capsule
26735                                               tablet/pill/capsule
26736                                                              <NA>
26738                                                              <NA>
26740                                                              <NA>
26741                                                              <NA>
26742                                                              <NA>
26743                                                              <NA>
26744                                                              <NA>
26745                                                              <NA>
26747                                                              <NA>
26749                                                              <NA>
26750                                                       combination
26751                                                              <NA>
26760                                             1 tablet/pill/capsule
26764                                                      small amount
26765                                                      small amount
26766                                                      small amount
26769                                               tablet/pill/capsule
26772                                                      small amount
26773                                                      small amount
26774                                                      small amount
26780                                             1 tablet/pill/capsule
26803                                                              <NA>
26817                                                              <NA>
26818                                                              <NA>
26819                                                              <NA>
26821                                                              <NA>
26822                                                              <NA>
26823                                                              <NA>
26825                                                              <NA>
26826                                                              <NA>
26827                                                              <NA>
26828                                                              <NA>
26829                                                              <NA>
26830                                                              <NA>
26831                                                              <NA>
26832                                                              <NA>
26833                                                              <NA>
26836                                                              <NA>
26837                                                    1 pack/package
26838                                                              <NA>
26839                                                            powder
26840                                               tablet/pill/capsule
26841                                                              <NA>
26842                                               tablet/pill/capsule
26843                                                      pack/package
26844                                                              <NA>
26846                                               tablet/pill/capsule
26847                                                              <NA>
26848                                                            powder
26849                                               tablet/pill/capsule
26850                                                           monthly
26851                                                            powder
26852                                                              <NA>
26853                                                              <NA>
26857                                                              <NA>
26861                                                   based on weight
26862                                                              <NA>
26863                                                              <NA>
26864                                                              <NA>
26865                                                              <NA>
26867                                                       application
26868                                               tablet/pill/capsule
26869                                               tablet/pill/capsule
26870                                                              <NA>
26871                                                              <NA>
26872                                                              <NA>
26905                                                              <NA>
26926                                                   based on weight
26930                                                   based on weight
26931                                                   based on weight
26932                                                              <NA>
26944                                                              dose
26948                                                   based on weight
26966                                                              <NA>
26972                                                              <NA>
26974                                                       unspecified
26975                                                   based on weight
26976                                               tablet/pill/capsule
26977                                                   based on weight
26978                                                              <NA>
26979                                      based on weight (50-100 lbs)
26980                                      based on weight (50-100 lbs)
26981                                      based on weight (50-100 lbs)
26983                                                              <NA>
26984                                       based on weight (44-88 lbs)
26986                                                              <NA>
26987                                                              <NA>
26988                                                              <NA>
26990                                                              <NA>
26991                                                              <NA>
26992                                                              <NA>
26993                                                              <NA>
27012                                                      small amount
27020                                                       as directed
27021                                                              <NA>
27022                                                              <NA>
27030                                                              <NA>
27047                                                              <NA>
27058                                                              pump
27062                                                              <NA>
27063                                                              <NA>
27065                                               tablet/pill/capsule
27080                                                              <NA>
27081                                                              <NA>
27082                                                           monthly
27084                                                              <NA>
27085                                               tablet/pill/capsule
27092                                                      pack/package
27095                                                              <NA>
27096                                                              <NA>
27100                                               tablet/pill/capsule
27117                                                       application
27118                                                       application
27124                                                      pack/package
27128                                                              <NA>
27134                                                      small amount
27136                                                   based on weight
27137                                                              <NA>
27140                                                      small amount
27158                                                      small amount
27163                                               tablet/pill/capsule
27170                                               tablet/pill/capsule
27172                                               tablet/pill/capsule
27173                                                        1.5 scoops
27174                                               tablet/pill/capsule
27203                                                              <NA>
27212                                                              <NA>
27213                                                              <NA>
27214                                                            collar
27217                                                             spray
27219                                                      small amount
27220                                                            collar
27222                                                            powder
27223                                                             spray
27224                                                      small amount
27225                                                              <NA>
27226                                                            collar
27228                                                              <NA>
27229                                                   based on weight
27231                                               tablet/pill/capsule
27232                                                              <NA>
27247                                                              <NA>
27249                                                              <NA>
27251                                                              <NA>
27256                                                             spray
27257                                                   based on weight
27258                                                   based on weight
27262                                                              <NA>
27265                                                              <NA>
27268                                                              <NA>
27270                                                              <NA>
27273                                                   based on weight
27274                                                   based on weight
27275                                                   based on weight
27280                                               tablet/pill/capsule
27281                                                              <NA>
27282                                                              <NA>
27285                                                   based on weight
27306                                                   based on weight
27309                                                   based on weight
27311                                                   based on weight
27315                                                              <NA>
27322                                                              pump
27333                                                              <NA>
27345                                                              <NA>
27346                                                              <NA>
27347                                                              <NA>
27348                                                   based on weight
27349                                                   based on weight
27350                                                              <NA>
27353                                                              <NA>
27358                                               tablet/pill/capsule
27360                                               tablet/pill/capsule
27361                                                              <NA>
27362                                                              <NA>
27364                                                              <NA>
27368                                               tablet/pill/capsule
27370                                                              tube
27371                                                              <NA>
27384                                                              <NA>
27407                                                              <NA>
27413                                               tablet/pill/capsule
27414                                               tablet/pill/capsule
27421                                                              tube
27422                                               tablet/pill/capsule
27423                                                              <NA>
27425                                                      small amount
27427                                                              <NA>
27431                                                      small amount
27432                                          based on weight (50 lbs)
27434                                                              <NA>
27435                                                              <NA>
27445                                                              <NA>
27446                                                              <NA>
27447                                               tablet/pill/capsule
27459                                                              <NA>
27465                                                        inch strip
27474                                                              <NA>
27479                                                              <NA>
27481                                                              <NA>
27492                                               tablet/pill/capsule
27494                                                              <NA>
27500                                                              <NA>
27501                                                              <NA>
27502                                                   based on weight
27506                                             1 tablet/pill/capsule
27507                                                            1 tube
27511                                                   based on weight
27512                                                   based on weight
27523                                                   based on weight
27529                                                   based on weight
27589                                               tablet/pill/capsule
27594                                                              <NA>
27595                                                              <NA>
27596                                                              <NA>
27598                                                              <NA>
27620                                               tablet/pill/capsule
27640                                                           monthly
27646                                                          ointment
27654                                      based on weight (60-120 lbs)
27657                          27 mg milbemycin oxime, 1620 mg spinosad
27658                                                              <NA>
27659                                                              <NA>
27674                                                              <NA>
27697                                                      small amount
27699                                                              <NA>
27700                                                   based on weight
27701                                                   based on weight
27704                                                   based on weight
27710                                       based on weight (44-88 lbs)
27713                                                              <NA>
27714                                                              <NA>
27715                                                              <NA>
27722                                                              <NA>
27723                                                              <NA>
27724                                                              <NA>
27728                                                              <NA>
27736                                                                90
27745                                                       combination
27747                                                              puff
27748                                                       combination
27750                                                       combination
27769                                                       combination
27770                                                              <NA>
27772                                                              <NA>
27776                                                              <NA>
27791                                                       combination
27794                                                       combination
27802                                                              <NA>
27824                                                       combination
27826                                                       combination
27828                                                       combination
27833                                               tablet/pill/capsule
27834                                               tablet/pill/capsule
27836                                                              <NA>
27878                                                   based on weight
27880                                                       unspecified
27883                                                              <NA>
27884                                                              <NA>
27885                                                              <NA>
27886                                               tablet/pill/capsule
27891                                                              <NA>
27892                                                              <NA>
27895                                                   based on weight
27896                                                   based on weight
27897                                                              <NA>
27898                                                   based on weight
27899                                                              <NA>
27900                                                              <NA>
27901                                                              <NA>
27904                                                              <NA>
27910                                                              <NA>
27913                                                              <NA>
27917                                                              <NA>
27921                                                              <NA>
27922                                                              <NA>
27923                                                              <NA>
27927                                                              <NA>
27929                                                      small amount
27931                                                              <NA>
27934                                                              <NA>
27935                                                              <NA>
27936                                                              <NA>
27937                                                              <NA>
27938                                                              <NA>
27939                                                              <NA>
27940                                                              <NA>
27941                                                              <NA>
27942                                                              <NA>
27954                                                   based on weight
27957                                                              <NA>
27958                                                              <NA>
27959                                                              <NA>
27960                                                              <NA>
27961                                                   based on weight
27962                                                              tube
27973                                                              <NA>
27974                                                      small amount
27981                                                     1 bottle/vial
27982                                             1 tablet/pill/capsule
27992                                                              dose
27999                                                     1 bottle/vial
28000                                             1 tablet/pill/capsule
28004                                                              <NA>
28006                                                              pump
28008                                                    1 pack/package
28009                                                              pump
28010                                                      pack/package
28011                                                              <NA>
28014                                                              <NA>
28015                                                              <NA>
28016                                               tablet/pill/capsule
28018                                               tablet/pill/capsule
28020                                                              <NA>
28023                                               tablet/pill/capsule
28024                                               tablet/pill/capsule
28025                                                      pack/package
28026                                                              <NA>
28029                                                   based on weight
28040                                                   based on weight
28045                                                              <NA>
28046                                                       unspecified
28047                                                       unspecified
28048                                                   based on weight
28049                                                   based on weight
28071                                                              <NA>
28087                                                              dose
28088                                                              dose
28089                                                              <NA>
28090                                                              <NA>
28094                                                              <NA>
28096                                                              <NA>
28098                                                              <NA>
28100                                                   based on weight
28101                                                   based on weight
28102                                               tablet/pill/capsule
28103                                               tablet/pill/capsule
28104                                               tablet/pill/capsule
28105                                               tablet/pill/capsule
28106                                                              <NA>
28107                                                              <NA>
28108                                                   based on weight
28109                                                   based on weight
28116                                                    1 pack/package
28119                                                   based on weight
28120                                               tablet/pill/capsule
28128                                                              <NA>
28129                                                              <NA>
28130                                                       combination
28131                                                              <NA>
28134                                               tablet/pill/capsule
28135                                             1 tablet/pill/capsule
28137                                                   based on weight
28138                                                              <NA>
28141                                                              <NA>
28144                                                   based on weight
28150                                                              <NA>
28151                                                              <NA>
28152                                                              <NA>
28153                                                              <NA>
28154                                                              <NA>
28155                                                              <NA>
28156                                                              <NA>
28158                                                            collar
28162                                                   based on weight
28163                                                       as directed
28164                                          based on weight (60 lbs)
28165                                                              <NA>
28166                                             1 tablet/pill/capsule
28167                                                              <NA>
28168                                                              <NA>
28174                                                          ointment
28176                                                          ointment
28244                                                              <NA>
28245                                                              <NA>
28246                                               tablet/pill/capsule
28260                                                          ointment
28261                       272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                              <NA>
28263                                               tablet/pill/capsule
28264                                                       combination
28269                                               tablet/pill/capsule
28277                                               tablet/pill/capsule
28279                                                      small amount
28307                       2 mg prednisone, 5 mg trimeprazine tartrate
28309                          27 mg milbemycin oxime, 1620 mg spinosad
28311                          460 mg lufenuron, 23 mg milbemycin oxime
28316                                                            powder
28332                                                      small amount
28333                                                       unspecified
28371                                                      pack/package
28375                                               tablet/pill/capsule
28390                                                              <NA>
28392                                               tablet/pill/capsule
28393                                                              <NA>
28396                                                              <NA>
28397                                               tablet/pill/capsule
28398                                               tablet/pill/capsule
28399                                               tablet/pill/capsule
28400                                               tablet/pill/capsule
28401                                               tablet/pill/capsule
28404                                               tablet/pill/capsule
28407                                                              <NA>
28425                                                              <NA>
28427                                                              <NA>
28437                                                              <NA>
28448                                                              <NA>
28449                                                              <NA>
28453                                                              <NA>
28483                                             1 tablet/pill/capsule
28484                                                              <NA>
28486                                                             spray
28488                                               tablet/pill/capsule
28505                                                     5 billion cfu
28507                                                                1%
28508                                                      small amount
28516     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28517                                                       application
28518                                                              <NA>
28519                                                              <NA>
28520                                                              <NA>
28528                                                              <NA>
28529                                                              <NA>
28530                                                              <NA>
28531                                                       billion cfu
28533                                                                 %
28534                                                              <NA>
28535                                                              <NA>
28536                                                                 %
28538                                                       billion cfu
28545                                                              <NA>
28549                                             1 tablet/pill/capsule
28552                                                   based on weight
28553                                                   based on weight
28554                                                   based on weight
28556                                                   based on weight
28557                                         based on weight (50+ lbs)
28571                                                   based on weight
28572                                                              <NA>
28573                                               tablet/pill/capsule
28574                                                            collar
28576                                               tablet/pill/capsule
28577                                                              <NA>
28580                                                        inch strip
28582                                                   based on weight
28583                                                            collar
28590                                                              <NA>
28601                                                       unspecified
28602                                                   based on weight
28604                                                              <NA>
28605                                                            collar
28606                                                              <NA>
28610                                                              <NA>
28611                                                              <NA>
28612                                                              <NA>
28614                                                              <NA>
28616                                                              <NA>
28621                                                              <NA>
28624                                                   syringe/pipette
28626                                                              <NA>
28630                                      based on weight (50-100 lbs)
28631                                      based on weight (60-120 lbs)
28632                                                              <NA>
28639                                                              <NA>
28660                                                           2 pumps
28668                                                       combination
28673                                                              <NA>
28674                                               tablet/pill/capsule
28675                                                              tube
28681                                      based on weight (50-100 lbs)
28685                                                              <NA>
28686                                                              <NA>
28687                                                              <NA>
28690                                                              <NA>
28692                                                              <NA>
28693                                               tablet/pill/capsule
28694                                                     1 bottle/vial
28696                                               tablet/pill/capsule
28698                                                              <NA>
28699                                                              <NA>
28710                                                              <NA>
28714                                                              <NA>
28716                                                              <NA>
28717                                                              <NA>
28718                                                              <NA>
28719                                                              <NA>
28723                                                   based on weight
28726                                                   based on weight
28727                                                          ointment
28730                                                              <NA>
28731                                                              <NA>
28732                                                              <NA>
28735                                                              <NA>
28736                                                              <NA>
28750                                                       unspecified
28751                                                       unspecified
28762                                                              <NA>
28764                                                              <NA>
28765                                                              <NA>
28766                                                              <NA>
28772                                                              <NA>
28773                                                              <NA>
28780                                                       combination
28806                                                   based on weight
28809                                                   based on weight
28819                                                             drops
28826                                                             spray
28829                                                              <NA>
28831                                                              <NA>
28832                                                              <NA>
28833                                                              tube
28855                                                   based on weight
28873                                                              <NA>
28874                                                              <NA>
28882                                               tablet/pill/capsule
28883                                               tablet/pill/capsule
28884                                                              <NA>
28888                                                   based on weight
28897                                                   based on weight
28899                                                   based on weight
28904                                                   based on weight
28905                                                              <NA>
28906                                                              <NA>
28907                                                   based on weight
28934                                               tablet/pill/capsule
28939                                                              <NA>
28940                                                              <NA>
28941                                                          ointment
28946                                                              <NA>
28979                                                   based on weight
28980                                                   based on weight
28982                                                   based on weight
28983                                             1 tablet/pill/capsule
28986                                             1 tablet/pill/capsule
28987                                                     1 application
28988                                                              <NA>
28998                                                              <NA>
28999                                                              <NA>
29000                                                              tube
29007                                                              <NA>
29008                                                              <NA>
29015                                                          ointment
29022                                                              <NA>
29023                                                              <NA>
29036                                                       application
29037                                                              <NA>
29039                                               tablet/pill/capsule
29040                                                              <NA>
29043                                                              <NA>
29050                                                             spray
29053                                                       application
29056                                      based on weight (60-120 lbs)
29060                                                       unspecified
29064                                                   based on weight
29067                                                              <NA>
29069                                                              <NA>
29070                                                        inch strip
29071                                                      small amount
29072                                                        inch strip
29073                                                        inch strip
29075                                                        inch strip
29078                                                              <NA>
29079                                                   0.25 inch strip
29080                                               tablet/pill/capsule
29081                                                        inch strip
29082                                               tablet/pill/capsule
29083                                                      pack/package
29086                                                              <NA>
29087                                                              <NA>
29091                                                              <NA>
29092                                                              <NA>
29095                                                   based on weight
29096                                                   based on weight
29097                                                              <NA>
29098                                                              <NA>
29099                                                              <NA>
29100                                                              <NA>
29103                                                              <NA>
29104                                                              <NA>
29108                                                             spray
29135                                                              <NA>
29136                                                   based on weight
29139                                                      small amount
29143                                                              <NA>
29150                                                              <NA>
29151                                                       bottle/vial
29152                                                              <NA>
29153                                                              <NA>
29154                                                              tube
29161                                                      small amount
29166                                                       application
29184                                      based on weight (50-100 lbs)
29196                                                        inch strip
29197                                               tablet/pill/capsule
29220                                                      small amount
29232                                                              <NA>
29234                                                              <NA>
29235                                                              <NA>
29244                                                              <NA>
29245                                                              <NA>
29248                                                              <NA>
29283                                                              <NA>
29285                                                              <NA>
29291                                                             spray
29293                                               tablet/pill/capsule
29298                                                              <NA>
29313                                                              <NA>
29315                                               tablet/pill/capsule
29321                                                        inch strip
29324                                                       unspecified
29327                                                       unspecified
29328                                                   based on weight
29340                                                              <NA>
29342                                                              <NA>
29374                                                              <NA>
29375                                                              <NA>
29376                                                   based on weight
29377                                                              <NA>
29378                                                              <NA>
29379                                                              <NA>
29380                                                       unspecified
29381                                                   based on weight
29382                                                   based on weight
29383                                                   based on weight
29395                                                              <NA>
29404                                                              <NA>
29405                                                              <NA>
29406                                                              <NA>
29428                                                              pump
29438                                                      small amount
29446                                                      small amount
29447                                                      small amount
29453                                                      small amount
29469                                               tablet/pill/capsule
29470                                                            collar
29471                                                              <NA>
29479                                                   based on weight
29480                                                   based on weight
29481                                                   based on weight
29482                                                   based on weight
29483                                                   based on weight
29490                                                   based on weight
29499                                                              <NA>
29500                                                              <NA>
29501                                             1 tablet/pill/capsule
29502                                             1 tablet/pill/capsule
29504                                               tablet/pill/capsule
29505                                                              tube
29506                                                              <NA>
29509                                                              <NA>
29511                                             1 tablet/pill/capsule
29525                                                   based on weight
29526                                                   based on weight
29531                                               tablet/pill/capsule
29532                                                              <NA>
29533                                                              <NA>
29534                                                              <NA>
29535                                                              <NA>
29536                                               tablet/pill/capsule
29537                                                              <NA>
29538                                                              <NA>
29539                                                              <NA>
29540                                               tablet/pill/capsule
29567                                                   based on weight
29568                                                              <NA>
29572                                                              dose
29573                                               tablet/pill/capsule
29574                                                              <NA>
29575                                                              <NA>
29579                                                                gm
29580                                             1 tablet/pill/capsule
29588                                                   based on weight
29592                                                              <NA>
29601                                                              <NA>
29602                                                              <NA>
29604                                                              <NA>
29606                                                              <NA>
29608                                       based on weight (44-88 lbs)
29617                                             1 tablet/pill/capsule
29633                                                              <NA>
29662                                                              <NA>
29666                                                              <NA>
29669                                                              <NA>
29670                                                              <NA>
29678                                                              <NA>
29691                                                              <NA>
29692                                                              <NA>
29693                                                              <NA>
29694                                                              <NA>
29695                                                              <NA>
29696                                                              <NA>
29697                                                              <NA>
29698                                                              <NA>
29699                                                              <NA>
29700                                                              <NA>
29705                                                              <NA>
29707                                                              <NA>
29709                                                              tube
29715                                                            collar
29716                                                            collar
29719                                                            collar
29720                                                              <NA>
29722                                                            collar
29724                                                              <NA>
29726                                                            collar
29729                                                              <NA>
29730                                                              <NA>
29733                                                              <NA>
29734                                                              <NA>
29736                                                   based on weight
29744                                                   based on weight
29749                                                                mg
29753                                                              <NA>
29764                                                       unspecified
29765                                                       unspecified
29767                                                   based on weight
29770                                                   based on weight
29794                                                              <NA>
29797                                                              <NA>
29798                                                              <NA>
29799                                                              <NA>
29800                                                              <NA>
29801                                                          wipe/pad
29802                                                              <NA>
29803                                                              <NA>
29822                                               tablet/pill/capsule
29823                                               tablet/pill/capsule
29824                                                              <NA>
29825                                                              <NA>
29827                                                              <NA>
29829                                                              <NA>
29831                                                              <NA>
29832                                                              <NA>
29838                                                              <NA>
29839                                                              <NA>
29840                                                              <NA>
29847                                                              <NA>
29848                                                              <NA>
29851                                                              <NA>
29858                                                              <NA>
29859                                                              <NA>
29860                                                              <NA>
29861                                                              <NA>
29862                                                              <NA>
29865                                                              <NA>
29880                                                              <NA>
29882                                                   based on weight
29883                                                   based on weight
29906                                                              <NA>
29907                                                              <NA>
29933                                       based on weight (25-50 lbs)
29940                                      based on weight (50-100 lbs)
29941                                                   based on weight
29948                                                           2 tubes
29954                                             1 tablet/pill/capsule
29955                                                            1 tube
29956                                      based on weight (50-100 lbs)
29957                                                   based on weight
29963                                                   based on weight
29964                                                   based on weight
29966                                                              <NA>
29969                                                   based on weight
29970                                                   based on weight
29978                                                              <NA>
29990                                         based on weight (55+ lbs)
29991                                                              <NA>
29993                                                              <NA>
30001                                                              <NA>
30048                                                              <NA>
30070                                                        inch strip
30075                                                      pack/package
30076                                               tablet/pill/capsule
30081                                                   based on weight
30082                                                   based on weight
30083                                                   based on weight
30098                                                              <NA>
30099                                                   based on weight
30104                                                              <NA>
30105                                                              <NA>
30127                                                              <NA>
30131                                                              <NA>
30132                                                              <NA>
30138                                                              <NA>
30142                                                              <NA>
30143                                                      small amount
30162                                                              <NA>
30164                                                              <NA>
30165                                                              <NA>
30166                                                              <NA>
30169                                                      pack/package
30172                                                              <NA>
30174                                                              <NA>
30178                                                          ointment
30179                                                              <NA>
30185                       272 mcg ivermectin, 227 mg pyrantel pamoate
30186                                                              <NA>
30191                                                              <NA>
30192                                                              <NA>
30193                                                              <NA>
30198                                                              <NA>
30211                                               tablet/pill/capsule
30212                                               tablet/pill/capsule
30213                                                  2 packs/packages
30214                                                              tube
30218                                             1 tablet/pill/capsule
30221                                             1 tablet/pill/capsule
30239                                                              <NA>
30241                                                              <NA>
30242                                                              <NA>
30246                                                              <NA>
30263                                             1 tablet/pill/capsule
30264                                             1 tablet/pill/capsule
30268                                             1 tablet/pill/capsule
30269                                                            1 tube
30270                                                   based on weight
30274                                                   based on weight
30277                                                   based on weight
30286                                                   based on weight
30298                                                   based on weight
30299                                                              <NA>
30300                                                              <NA>
30306                                                              <NA>
30310                                                   based on weight
30311                                                        inch strip
30312                                                         1-2 pumps
30313                                                   based on weight
30317                                                      small amount
30319                                                      small amount
30327                                                   0.25 inch strip
30329                                                              <NA>
30337                                                             spray
30338                                                              <NA>
30344                                                   based on weight
30347                          27 mg milbemycin oxime, 1620 mg spinosad
30351                                                   based on weight
30352                                                   based on weight
30353                                                             drops
30354                                                             drops
30355                                                      small amount
30356                                                              <NA>
30357                                                             spray
30358                                                              <NA>
30359                                                              <NA>
30360                                                      pack/package
30361                                               tablet/pill/capsule
30366                                                              <NA>
30367                                                              <NA>
30368                                                              <NA>
30371                                                              <NA>
30372                                                   based on weight
30373                                                                 1
30374                                                                 1
30375                                                                 1
30376                                               tablet/pill/capsule
30377                                                              <NA>
30378                                                              <NA>
30385                                                   based on weight
30387                                                       unspecified
30388                                                              <NA>
30389                                                       unspecified
30395                                                   based on weight
30396                                                   based on weight
30404                                                   based on weight
30405                                                              <NA>
30406                                                              <NA>
30418                                                              <NA>
30450                                                              <NA>
30464                                                              <NA>
30471                                                              <NA>
30479                                         based on weight (55+ lbs)
30480                       272 mcg ivermectin, 227 mg pyrantel pamoate
30483                                         based on weight (55+ lbs)
30484                                                              <NA>
30485                                                              <NA>
30492                                                              <NA>
30494                                                              <NA>
30496                                                               50%
30515                                                              <NA>
30523                                                              <NA>
30528                                                              <NA>
30529                                                              <NA>
30534                                                              <NA>
30536                                                             drops
30541                                                              <NA>
30555                                      based on weight (50-100 lbs)
30556                                                              <NA>
30573                                                              <NA>
30574                                                              <NA>
30590                                                   based on weight
30604                                                   based on weight
30619                                                              <NA>
30620                                                              <NA>
30623                                                              <NA>
30644                                                              <NA>
30685                                               tablet/pill/capsule
30689                                               tablet/pill/capsule
30692                                                      small amount
30701                                               tablet/pill/capsule
30702                                                              <NA>
30707                                                   based on weight
30708                                                   based on weight
30709                                               tablet/pill/capsule
30710                                               tablet/pill/capsule
30713                                                              <NA>
30714                                                              <NA>
30717                                                              <NA>
30730                                                              <NA>
30753                                                   based on weight
30754                                                              <NA>
30756                                                              <NA>
30757                                                              <NA>
30764                                                              <NA>
30765                                                              <NA>
30766                                                              <NA>
30768                                                              <NA>
30769                                                              <NA>
30779                                                   based on weight
30784                                                             scoop
30792                                                              <NA>
30793                                               tablet/pill/capsule
30796                                               tablet/pill/capsule
30797                                               tablet/pill/capsule
30799                                                   based on weight
30803                                                             scoop
30811                                                              tube
30812                                                              <NA>
30813                                                              <NA>
30814                                                              <NA>
30815                                                              <NA>
30816                                                              <NA>
30817                                                              <NA>
30819                                                              tube
30820                                               tablet/pill/capsule
30821                                                            250 mg
30822                                               tablet/pill/capsule
30823                                                   syringe/pipette
30824                                                   syringe/pipette
30826                                               tablet/pill/capsule
30833                                               tablet/pill/capsule
30834                                                              tube
30840                                                              <NA>
30844                                                       combination
30876                                                              <NA>
30877                                                              <NA>
30893                                                              <NA>
30901                                                        inch strip
30909                                                              <NA>
30917                                                             spray
30920                                                              <NA>
30936                                                              <NA>
30943                                                              <NA>
30944                                                              <NA>
30945                                                              <NA>
30947                                               tablet/pill/capsule
30948                                               tablet/pill/capsule
30949                                                              <NA>
30953                                                              <NA>
30960                                                              <NA>
30961                                                              <NA>
30962                                               tablet/pill/capsule
30963                                                              <NA>
30998                                                   based on weight
31000                                                            1 tube
31001                                               tablet/pill/capsule
31003                                                            1 tube
31004                                                   based on weight
31010                                      based on weight (50-100 lbs)
31011                                         based on weight (55+ lbs)
31012                                                              <NA>
31016                                                              <NA>
31022                                                   based on weight
31023                                                   based on weight
31034                                                              <NA>
31043                                                   based on weight
31046                                             1 tablet/pill/capsule
31089                                                              <NA>
31094                                               tablet/pill/capsule
31095                                               tablet/pill/capsule
31096                                               tablet/pill/capsule
31097                                                              <NA>
31098                                                              <NA>
31105                                                   based on weight
31132                                                      small amount
31133                                               tablet/pill/capsule
31134                                               tablet/pill/capsule
31135                                               tablet/pill/capsule
31136                                                              <NA>
31137                                                              <NA>
31139                                                              <NA>
31148                                                              <NA>
31149                                                              <NA>
31152                                                              <NA>
31154                                                              <NA>
31183                                                              <NA>
31186                                                              <NA>
31195                                                              <NA>
31196                                                              <NA>
31197                                                      pack/package
31198                                                              <NA>
31199                                               tablet/pill/capsule
31200                                                              <NA>
31203                                                              <NA>
31209                                                              <NA>
31228                                                                 %
31232                                                                 %
31233                                                              <NA>
31234                                                                 %
31235                                                              <NA>
31243                                                              <NA>
31245                                                              <NA>
31247                                                              <NA>
31248                                                                 %
31249                                                              <NA>
31250                                                                 %
31260                                                   based on weight
31263                                                   based on weight
31265                                                              <NA>
31268                                                          inhalant
31297                                                              <NA>
31299                                                              <NA>
31300                                                              <NA>
31301                                                              <NA>
31303                                                              <NA>
31307                                                              tube
31308                                               tablet/pill/capsule
31309                                                         2.6 mg/lb
31317                                                            cup(s)
31322                                                              <NA>
31328                                                              <NA>
31330                                                              <NA>
31350                                                              <NA>
31353                                                              <NA>
31356                                                      small amount
31357                                             1 tablet/pill/capsule
31358                                             1 tablet/pill/capsule
31359                                             1 tablet/pill/capsule
31360                                             1 tablet/pill/capsule
31361                                                   based on weight
31365                                             1 tablet/pill/capsule
31366                                             1 tablet/pill/capsule
31367                                                              tube
31369                                                          wipe/pad
31370                                                       application
31371                                                              <NA>
31373                                                              <NA>
31374                                                              <NA>
31375                                                   based on weight
31380                                                              <NA>
31381                                                              <NA>
31383                                             1 tablet/pill/capsule
31384                                             1 tablet/pill/capsule
31385                                             1 tablet/pill/capsule
31386                                             1 tablet/pill/capsule
31389                                             1 tablet/pill/capsule
31408                       272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                              <NA>
31411                                                              <NA>
31412                                                              <NA>
31413                                                              <NA>
31414                                               tablet/pill/capsule
31415                                               tablet/pill/capsule
31416                                                              <NA>
31417                                                              <NA>
31418                                                              <NA>
31419                                                              <NA>
31420                                                              <NA>
31423                                                              <NA>
31434                                                              <NA>
31437                                          2 tablets/pills/capsules
31438                                                      small amount
31439                                                              <NA>
31440                                                              <NA>
31441                                                              dose
31446                                                      small amount
31447                                                      small amount
31449                                               tablet/pill/capsule
31450                                               tablet/pill/capsule
31452                                                              <NA>
31457                                                              <NA>
31463                                                              <NA>
31471                                               tablet/pill/capsule
31502                                                   based on weight
31503                                                   based on weight
31504                                                   based on weight
31506                                               tablet/pill/capsule
31507                                                              <NA>
31508                                                              dose
31528                                                   based on weight
31529                                                   based on weight
31531                                               tablet/pill/capsule
31539                                                                 %
31542                                                              <NA>
31548                                                              <NA>
31551                                                              <NA>
31552                                                              <NA>
31553                                                              <NA>
31599                                                              <NA>
31602                                      based on weight (50-100 lbs)
31611                                                      small amount
31612                                                      small amount
31616                                             1 tablet/pill/capsule
31617                                                              dose
31618                                                              dose
31619                                             1 tablet/pill/capsule
31637                                             1 tablet/pill/capsule
31638                                             1 tablet/pill/capsule
31640                                                      small amount
31641                                                              <NA>
31643                                               tablet/pill/capsule
31644                                                              <NA>
31645                                                              <NA>
31646                                             1 tablet/pill/capsule
31647                                             1 tablet/pill/capsule
31651                                                              <NA>
31652                                                      small amount
31653                                                              <NA>
31654                                                              <NA>
31655                                                              <NA>
31656                                                              <NA>
31657                                                              <NA>
31665                                               tablet/pill/capsule
31666                                               tablet/pill/capsule
31678                                                   based on weight
31680                                               tablet/pill/capsule
31688                                                   based on weight
31689                                                   based on weight
31696                                       based on weight (44-88 lbs)
31707                                               tablet/pill/capsule
31713                       272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                              <NA>
31725                                                              <NA>
31726                                                            1 tube
31730                                                              <NA>
31731                                                              <NA>
31734                                               tablet/pill/capsule
31735                                                              <NA>
31736                                                      pack/package
31737                                                            powder
31742                                                              <NA>
31747                                               tablet/pill/capsule
31748                                                              <NA>
31760                                               tablet/pill/capsule
31761                                                              <NA>
31762                                                   based on weight
31765                                      based on weight (50-100 lbs)
31766                                       based on weight (44-88 lbs)
31768                                                              <NA>
31769                                                              <NA>
31771                                                              <NA>
31773                                                              <NA>
31774                                                              <NA>
31777                                               tablet/pill/capsule
31780                                                              <NA>
31781                                                              <NA>
31798                                                   based on weight
31803                                                   based on weight
31804                                             1 tablet/pill/capsule
31807                                                            1 tube
31808                                             1 tablet/pill/capsule
31810                                      based on weight (50-100 lbs)
31811                                       based on weight (44-88 lbs)
31818                                       based on weight (44-88 lbs)
31819                                      based on weight (50-100 lbs)
31824                                      based on weight (50-100 lbs)
31825                                       based on weight (44-88 lbs)
31826                                                      small amount
31833                                                              <NA>
31834                                                             spray
31836                                                              <NA>
31837                                                   0.25 inch strip
31840                                                   based on weight
31841                                                              <NA>
31842                                                            1 pump
31843                                                              <NA>
31844                                                              <NA>
31845                                                              <NA>
31846                                                            collar
31847                          460 mg lufenuron, 23 mg milbemycin oxime
31848                                                              <NA>
31849                                                              1 ml
31850                                                              <NA>
31853                                                              <NA>
31861                                                              <NA>
31864                                                              <NA>
31866                                                              <NA>
31868                                                   based on weight
31869                                             1 tablet/pill/capsule
31874                                                   based on weight
31876                                                      small amount
31880                                                              <NA>
31888                                                       unspecified
31891                                                   based on weight
31892                                                   based on weight
31895                                                         per month
31896                                                         per month
31898                                             1 tablet/pill/capsule
31906                                                            powder
31907                                                              <NA>
31908                                                              <NA>
31909                                             1 tablet/pill/capsule
31911                                               tablet/pill/capsule
31916                                                   based on weight
31930                                                              <NA>
31937                                                              <NA>
31938                                                              <NA>
31939                                                              <NA>
31940                                                              <NA>
31941                                                              <NA>
31942                                             1 tablet/pill/capsule
31945                                                              <NA>
31946                                                              <NA>
31947                                                              <NA>
31948                                                              <NA>
31953                                                              <NA>
31954                                               tablet/pill/capsule
31955                                               tablet/pill/capsule
31967                                                              <NA>
31968                                                              <NA>
31985                                                              <NA>
31990                                                   based on weight
32002                                                              <NA>
32006                                                              <NA>
32015                                                              <NA>
32016                                               tablet/pill/capsule
32020                                                              <NA>
32025                                                       unspecified
32032                                                              <NA>
32035                                                              <NA>
32040                                               tablet/pill/capsule
32046                                                              <NA>
32053                                             1 tablet/pill/capsule
32054                                                     1 application
32055                                                              <NA>
32056                                             1 tablet/pill/capsule
32057                                             1 tablet/pill/capsule
32058                                             1 tablet/pill/capsule
32059                                               tablet/pill/capsule
32060                                               tablet/pill/capsule
32074                                                      small amount
32076                                                   based on weight
32079                                                   based on weight
32080                                                   based on weight
32084                                                        inch strip
32095                                               tablet/pill/capsule
32097                                               tablet/pill/capsule
32098                                               tablet/pill/capsule
32099                                               tablet/pill/capsule
32100                                                   based on weight
32101                                                   based on weight
32102                                               tablet/pill/capsule
32103                                               tablet/pill/capsule
32104                                               tablet/pill/capsule
32105                                                   based on weight
32106                                                   based on weight
32108                                                   based on weight
32114                                                                 %
32116                                                                 %
32119                                                              <NA>
32121                                                           monthly
32122                                                           monthly
32123                                                              <NA>
32128                                                              <NA>
32129                                                              <NA>
32131                                                              <NA>
32132                                                              <NA>
32133                                          based on weight (74 lbs)
32134                                          based on weight (74 lbs)
32168                                                            powder
32171                                                              <NA>
32175                                                              <NA>
32179                                             1 tablet/pill/capsule
32180                                             1 tablet/pill/capsule
32183                                                              <NA>
32184                                                              <NA>
32187                                                              <NA>
32196                                                            powder
32212                                                              <NA>
32221                                                              <NA>
32222                                                   based on weight
32231                                      based on weight (50-100 lbs)
32232                                       based on weight (44-88 lbs)
32233                                             1 tablet/pill/capsule
32234                                             1 tablet/pill/capsule
32236                                      based on weight (50-100 lbs)
32237                                       based on weight (24-60 lbs)
32266                                                              puff
32276                                                              <NA>
32290                                                          inhalant
32295                                               tablet/pill/capsule
32296                                               tablet/pill/capsule
32297                                                              <NA>
32310                                                             spray
32312                                               tablet/pill/capsule
32313                                               tablet/pill/capsule
32315                                                        inch strip
32320                                                              <NA>
32343                                                        inch strip
32354                                                              <NA>
32355                                                              <NA>
32356                                                              <NA>
32358                                                              <NA>
32359                                                              <NA>
32360                                                              <NA>
32362                                                              <NA>
32363                                                       unspecified
32364                                                              <NA>
32365                                                              <NA>
32366                                                              <NA>
32370                                                          ointment
32390                                                              <NA>
32393                                                   based on weight
32394                                                              <NA>
32397                                                              <NA>
32417                                      based on weight (50-100 lbs)
32425                                                              <NA>
32426                                                              <NA>
32427                                                              <NA>
32445                                                              <NA>
32447                                                              <NA>
32448                                                              <NA>
32449                                                              <NA>
32460                                                              <NA>
32463                                               tablet/pill/capsule
32464                                               tablet/pill/capsule
32466                                             1 tablet/pill/capsule
32467                                             1 tablet/pill/capsule
32475                                                              <NA>
32476                                                              <NA>
32477                                               tablet/pill/capsule
32478                                               tablet/pill/capsule
32504                                               tablet/pill/capsule
32505                                                       application
32507                                                              <NA>
32509                                               tablet/pill/capsule
32510                                                      small amount
32511                                      based on weight (50-100 lbs)
32512                                         based on weight (56+ lbs)
32513                                                      small amount
32520                                                              <NA>
32521                                                              <NA>
32529                                                              dose
32530                                      based on weight (50-100 lbs)
32535                                                   based on weight
32536                                                   based on weight
32538                                                   moderate amount
32542                                                              <NA>
32557                       272 mcg ivermectin, 227 mg pyrantel pamoate
32558                                                   based on weight
32561                                                       as directed
32562                                                       as directed
32575                                                              <NA>
32576                                                              <NA>
32629                                                       unspecified
32631                                                   based on weight
32633                                                       unspecified
32635                                                   based on weight
32637                                                             spray
32642                                      based on weight (50-100 lbs)
32643                                      based on weight (50-100 lbs)
32652                                                              <NA>
32654                                                       unspecified
32664                                                   based on weight
32670                                                              <NA>
32672                                                    shampoo/mousse
32673                                                       combination
32678                                                              <NA>
32680                                                              <NA>
32682                                                              <NA>
32685                                                              <NA>
32694                                                             spray
32698                                               tablet/pill/capsule
32703                                      based on weight (60-120 lbs)
32708                                                              <NA>
32726                                                              <NA>
32737                                                              <NA>
32739                                               tablet/pill/capsule
32742                                               tablet/pill/capsule
32743                                               tablet/pill/capsule
32750                                             1 tablet/pill/capsule
32751                                             1 tablet/pill/capsule
32767                                                       unspecified
32768                                               tablet/pill/capsule
32769                                                              <NA>
32770                                               tablet/pill/capsule
32777                                                              <NA>
32798                                                       bottle/vial
32815                                                            powder
32829                                                   syringe/pipette
32841                                                              <NA>
32844                                                              <NA>
32849                                               tablet/pill/capsule
32850                                               tablet/pill/capsule
32856                                       based on weight (44-88 lbs)
32857                                                              <NA>
32858                                                              <NA>
32859                                                              <NA>
32860                                                              <NA>
32862                                                              <NA>
32863                                                              <NA>
32869                                                       unspecified
32870                                                              <NA>
32871                                                              <NA>
32879                                               tablet/pill/capsule
32883                                               tablet/pill/capsule
32884                                                              <NA>
32887                                                   0.25 inch strip
32888                                                      small amount
32903                                                              <NA>
32912                                                              <NA>
32923                                                       unspecified
32930     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32937                                                              <NA>
32938                                               tablet/pill/capsule
32939                                                              <NA>
32940                                                       application
32942                                               tablet/pill/capsule
32943                                               tablet/pill/capsule
32944                                               tablet/pill/capsule
32949                                                       application
32950                                                              <NA>
32951                                             1 tablet/pill/capsule
32952                                             1 tablet/pill/capsule
32953                                                              <NA>
32954                                                              <NA>
32955                                                              <NA>
32956                                                              <NA>
32964                                                              <NA>
32965                                                              <NA>
32983                                                              <NA>
32999                                                   based on weight
33004                                                   based on weight
33008                                                       bottle/vial
33009                                               tablet/pill/capsule
33010                                                              <NA>
33011                                                              <NA>
33014                                                              <NA>
33015                                                   based on weight
33022                                                              <NA>
33023                                                      pack/package
33027                                                              <NA>
33043                                                              <NA>
33047                                                              <NA>
33066                                                       bottle/vial
33067                                                       bottle/vial
33068                                                              <NA>
33073                                                              <NA>
33078                                                   based on weight
33081                                               tablet/pill/capsule
33085                                                       bottle/vial
33086                                                              <NA>
33087                                                              <NA>
33088                                                              <NA>
33089                                                              <NA>
33090                                                              <NA>
33091                                                              <NA>
33092                                               tablet/pill/capsule
33096                                               tablet/pill/capsule
33107                                                              <NA>
33108                                                              <NA>
33110                                                   based on weight
33113                                                   based on weight
33123                                                              <NA>
33124                                                             spray
33125                                               tablet/pill/capsule
33126                                                             spray
33128                                                              dose
33132                                      based on weight (60-120 lbs)
33133                                      based on weight (50-100 lbs)
33138                                             1 tablet/pill/capsule
33157                                                              <NA>
33159                                                              <NA>
33166                                                   based on weight
33187                                                              <NA>
33188                                                              <NA>
33189                                                              <NA>
33190                                                              <NA>
33191                                                      small amount
33209                                                             spray
33211                                                   based on weight
33220                                               tablet/pill/capsule
33222                                                   based on weight
33226                                                              <NA>
33227                                                      pack/package
33229                                                            1 tube
33230                                               tablet/pill/capsule
33233                                                      pack/package
33235                                             1 tablet/pill/capsule
33236                                                              <NA>
33239                                                              <NA>
33242                                                   based on weight
33271                                                              <NA>
33286                                                              <NA>
33289                                               tablet/pill/capsule
33292                                               tablet/pill/capsule
33293                                                              <NA>
33317                                                              <NA>
33318                                                           2.68 ml
33333                                                              <NA>
33335                                                              <NA>
33336                                               tablet/pill/capsule
33338                                                              <NA>
33347                                       based on weight (70-80 lbs)
33354                                                              <NA>
33355                                                              <NA>
33358                                      based on weight (50-100 lbs)
33363                                               tablet/pill/capsule
33364                                               tablet/pill/capsule
33370                                                              <NA>
33374                                                              <NA>
33375                                                              <NA>
33376                                                              <NA>
33377                                                              <NA>
33385                                                              <NA>
33387                                                              <NA>
33389                                                              <NA>
33410                                               tablet/pill/capsule
33411                                                            collar
33412                                               tablet/pill/capsule
33414                                                            collar
33456                                                              <NA>
33468                                                       bottle/vial
33471                                                              <NA>
33479                                      based on weight (60-120 lbs)
33480                                                           monthly
33482                                                              <NA>
33489                                                       unspecified
33490                                                              <NA>
33491                                                              <NA>
33492                                                              <NA>
33493                                                              <NA>
33497                                             1 tablet/pill/capsule
33499                                                              <NA>
33500                                             1 tablet/pill/capsule
33504                                                              <NA>
33521                                                              <NA>
33539                                                            collar
33541                                                            collar
33542                                                              <NA>
33543                                                            collar
33544                                                            collar
33576                                                              <NA>
33580                                               tablet/pill/capsule
33581                                                       application
33582                                                              <NA>
33583                                                              <NA>
33590                                      based on weight (50-100 lbs)
33591                                               tablet/pill/capsule
33592                       23 mg milbemycin oxime, 228 mg praziquantel
33614                                                              <NA>
33641                                      based on weight (50-100 lbs)
33644                                                   based on weight
33645                                                   based on weight
33647                                                              <NA>
33649                                               tablet/pill/capsule
33651                                               tablet/pill/capsule
33655                                               tablet/pill/capsule
33683                                               tablet/pill/capsule
33684                                                       unspecified
33690                                                              <NA>
33691                                                              <NA>
33692                                                              <NA>
33693                                                              <NA>
33694                                                              <NA>
33695                                                              <NA>
33696                                                       combination
33697                                                              <NA>
33702                                                          3 scoops
33706                                                              <NA>
33714                                                              dose
33717                                               tablet/pill/capsule
33722                                                       application
33723                                                              dose
33724                                                   based on weight
33725                                                   based on weight
33737                                                       as directed
33739                                      based on weight (60-120 lbs)
33740                                      based on weight (60-120 lbs)
33756                                                              <NA>
33767                                                              <NA>
33797                                                   based on weight
33798                                                   based on weight
33804                                                              dose
33805                                                              dose
33815                                                              <NA>
33818                                                              <NA>
33822                                                              <NA>
33823                                                              <NA>
33824                                                              <NA>
33825                                                              <NA>
33828                                                              <NA>
33844                                                              <NA>
33850                                                              <NA>
33868                                                   based on weight
33869                                                              <NA>
33870                                                   based on weight
33890                                                              <NA>
33894                                                      small amount
33901                                                       unspecified
33905                                                             spray
33907                                                             spray
33909                                                      small amount
33911                                                       application
33913                                                             spray
33914                                                             spray
33916                                                              <NA>
33919                                                      small amount
33927                                                              tube
33929                                                              <NA>
33939                                                          ointment
33940                                                            powder
33987                                               tablet/pill/capsule
33991                                                      small amount
33992                                               tablet/pill/capsule
33993                                               tablet/pill/capsule
33994                                                              <NA>
33995                                               tablet/pill/capsule
33998                                                         as needed
34000                                               tablet/pill/capsule
34002                                               tablet/pill/capsule
34003                                                              <NA>
34005                                               tablet/pill/capsule
34011                                                              <NA>
34012                                                              <NA>
34014                                                       unspecified
34016                                                       unspecified
34022                                                       unspecified
34024                                                       unspecified
34029                                                       unspecified
34030                                                   based on weight
34043                                                   based on weight
34044                                      based on weight (50-100 lbs)
34046                                                              <NA>
34048                                               tablet/pill/capsule
34049                                                            collar
34051                                                              <NA>
34053                                               tablet/pill/capsule
34054                                                            collar
34069                                                              <NA>
34070                                                              <NA>
34071                                                              <NA>
34072                                                              <NA>
34073                                                              <NA>
34074                                                              <NA>
34075                                                              <NA>
34077                                                   based on weight
34087                                             1 tablet/pill/capsule
34090                                                      small amount
34091                                             1 tablet/pill/capsule
34092                                                              <NA>
34093                                                            collar
34094                                                              <NA>
34095                                                              <NA>
34096                                                   based on weight
34105                                                              pump
34107                                                              <NA>
34108                                                              <NA>
34109                                                      pack/package
34111                                                              <NA>
34112                                                              <NA>
34113                                                              <NA>
34125                                                            1 tube
34126                                             1 tablet/pill/capsule
34128                                                  1-2 applications
34132                                      based on weight (50-100 lbs)
34134                                               tablet/pill/capsule
34135                                                     1 application
34138                                                      pack/package
34140                                                              <NA>
34147                                               tablet/pill/capsule
34148                                               tablet/pill/capsule
34152                                                            powder
34155                                                       unspecified
34156                                                              <NA>
34157                                                              <NA>
34161                                                              <NA>
34162                                                              <NA>
34227                                                             scoop
34230                                                              <NA>
34231                                                              <NA>
34232                                                              <NA>
34233                                                              <NA>
34234                                                              <NA>
34235                                                              <NA>
34238                                               tablet/pill/capsule
34239                                                              <NA>
34240                                                              <NA>
34241                                                              <NA>
34242                                                              <NA>
34243                                                              <NA>
34246                                                              <NA>
34247                                                              <NA>
34249                                                   based on weight
34254                                             1 tablet/pill/capsule
34260                                                              <NA>
34262                                                              <NA>
34264                                                              <NA>
34267                                                              <NA>
34268                                                      small amount
34269                                                      small amount
34282                                                              pump
34287                                                              <NA>
34288                                                              <NA>
34289                                                              <NA>
34290                                                              <NA>
34293                                                              <NA>
34304                                                              <NA>
34327                                                              <NA>
34332                                                              <NA>
34333                                                      small amount
34334                                                            1 tube
34336                                                      small amount
34340                                                              dose
34341                                                              <NA>
34342                                                            collar
34343                                                             spray
34344                                                              <NA>
34345                                                   based on weight
34348                                                              <NA>
34356                                                              <NA>
34359                                                   based on weight
34360                                                   based on weight
34361                                                              <NA>
34362                                                              <NA>
34367                                                            powder
34369                                                              <NA>
34374                                               tablet/pill/capsule
34375                                               tablet/pill/capsule
34378                                                              <NA>
34379                                                              <NA>
34388                                                      small amount
34401                                                   based on weight
34403                                                   based on weight
34409                                                              <NA>
34410                                                              <NA>
34418                                                   based on weight
34419                                                   based on weight
34430                                                              <NA>
34433                                                                ml
34434                                                   based on weight
34435                                                              <NA>
34436                                                              <NA>
34456                                                             spray
34457                                                              <NA>
34458                                                              <NA>
34459                                                              <NA>
34460                                                              <NA>
34461                                                              <NA>
34462                                                              <NA>
34463                                                              <NA>
34464                                                              <NA>
34465                                                              <NA>
34466                                                              <NA>
34467                                                              <NA>
34468                                                              <NA>
34474                                                              <NA>
34493                                                              <NA>
34510                                                              <NA>
34513                                                   based on weight
34528                                                              <NA>
34536                                             1 tablet/pill/capsule
34545                                                              <NA>
34548                                                              <NA>
34579                                                              <NA>
34583                                             1 tablet/pill/capsule
34584                                                              <NA>
34587                                                         as needed
34588                                                              <NA>
34593                                                              <NA>
34606                                                              <NA>
34608                                               tablet/pill/capsule
34609                                                              1 ml
34612                                                              <NA>
34614                                                            1 pump
34617                                                       bottle/vial
34624                                                              <NA>
34629                                       based on weight (40-60 lbs)
34630                                                         as needed
34635                                                          wipe/pad
34636                                                   based on weight
34637                                                       unspecified
34638                                                          wipe/pad
34640                                                   based on weight
34642                                               tablet/pill/capsule
34648                                                              <NA>
34669                                               tablet/pill/capsule
34671                                             1 tablet/pill/capsule
34672                                                             spray
34673                                                          ointment
34674                                                          ointment
34675                                                              <NA>
34676                                                              <NA>
34677                                                              <NA>
34678                                                             spray
34680                                                              <NA>
34697                                                   based on weight
34704                                                       unspecified
34705                                                              <NA>
34706                                                              <NA>
34708                                                       unspecified
34709                                                       unspecified
34710                                                          biweekly
34727                                                              <NA>
34728                                                              <NA>
34729                                                              <NA>
34730                                                   based on weight
34733                                               tablet/pill/capsule
34734                                               tablet/pill/capsule
34741                                                              <NA>
34744                                                              <NA>
34747                                               tablet/pill/capsule
34750                                                              <NA>
34763                                                   based on weight
34764                                                   based on weight
34766                                                              <NA>
34767                                                              <NA>
34787                                               tablet/pill/capsule
34788                                                      small amount
34789                                                              <NA>
34791                                                   based on weight
34797                                                                mg
34798                                                                mg
34799                                                   based on weight
34811                                               tablet/pill/capsule
34813                                                       unspecified
34828                                                   based on weight
34832                                                              <NA>
34833                                               tablet/pill/capsule
34845                                               tablet/pill/capsule
34867                                                              <NA>
34874                                                              <NA>
34875                                                              <NA>
34881                                                              <NA>
34887                                               tablet/pill/capsule
34888                                                            1 tube
34889                                                   based on weight
34890                                                   based on weight
34891                                             1 tablet/pill/capsule
34892                                                 1 syringe/pipette
34900                                                              <NA>
34901                                                              <NA>
34902                                                              <NA>
34903                                                              <NA>
34904                                                              <NA>
34905                                                   based on weight
34906                                                   based on weight
34907                                                              <NA>
34908                                                              <NA>
34917                                                              <NA>
34918                                                              <NA>
34920                                                              <NA>
34922                                                              <NA>
34923                                                              <NA>
34924                                                              <NA>
34940                                                              <NA>
34953                                                              <NA>
34955                                                              <NA>
34956                                                              <NA>
34966                                                   based on weight
34973                                                              <NA>
34979                                                                 1
34981                                               tablet/pill/capsule
34982                                               tablet/pill/capsule
34983                                               tablet/pill/capsule
34991                                                              <NA>
34992                                                   based on weight
34996                                                   based on weight
35002                                                              <NA>
35004                                                              <NA>
35014                                               tablet/pill/capsule
35025                                                   based on weight
35026                                                              <NA>
35027                                                            cup(s)
35034                                                              <NA>
35049                                                      small amount
35069                                               tablet/pill/capsule
35070                                                              <NA>
35074                                                              <NA>
35094                                                   based on weight
35101                                                              <NA>
35102                                                              <NA>
35103                                                     1 application
35109                                                              <NA>
35110                                                   based on weight
35122                                                              <NA>
35124                                                              <NA>
35125                                               tablet/pill/capsule
35126                                                              <NA>
35132                                               tablet/pill/capsule
35134                                                          ointment
35143     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
35144                                                      small amount
35145                                                       unspecified
35146                                               tablet/pill/capsule
35147                                                   based on weight
35148                                                       unspecified
35149                                                              <NA>
35150                                                   based on weight
35152                                                   based on weight
35153                                                   based on weight
35154                                               tablet/pill/capsule
35155                                                              <NA>
35160                                                              <NA>
35170                                                              <NA>
35171                                                              <NA>
35176                                                              <NA>
35181                                               tablet/pill/capsule
35182                                                              <NA>
35183                                                              <NA>
35189                                                   based on weight
35190                                                              <NA>
35191                                                              <NA>
35203                                               tablet/pill/capsule
35204                                                       bottle/vial
35205                                                      small amount
35207                                                              <NA>
35212                                                   based on weight
35213                                                              <NA>
35214                                                   based on weight
35215                                                              <NA>
35216                                                              <NA>
35232                                                              <NA>
35245                                                             drops
35252                                                              <NA>
35258                                                              <NA>
35262                                                              <NA>
35263                                                              <NA>
35264                                                              <NA>
35278                                               tablet/pill/capsule
35279                                               tablet/pill/capsule
35282                                                              <NA>
35283                                               tablet/pill/capsule
35284                                               tablet/pill/capsule
35291                                             1 tablet/pill/capsule
35299                                                       bottle/vial
35300                                               tablet/pill/capsule
35314                                                   0.25 inch strip
35315                                                              <NA>
35316                                                              <NA>
35318                                                              <NA>
35354                                                              <NA>
35382                                               tablet/pill/capsule
35388                                                              <NA>
35393                                                       unspecified
35399                                               tablet/pill/capsule
35400                                                              <NA>
35401                                               tablet/pill/capsule
35404                                               tablet/pill/capsule
35405                                               tablet/pill/capsule
35406                                             1 tablet/pill/capsule
35414                                                              <NA>
35417                                                              <NA>
35420                                                              <NA>
35421                                                              <NA>
35422                          460 mg lufenuron, 23 mg milbemycin oxime
35423                                      based on weight (50-100 lbs)
35424                                      based on weight (88-123 lbs)
35425                                                              <NA>
35432                                                              <NA>
35434                                                              <NA>
35443                                                              <NA>
35450                                                              <NA>
35453                                               tablet/pill/capsule
35454                                               tablet/pill/capsule
35495                                      based on weight (55-100 lbs)
35496                                                272 mcg ivermectin
35497                                                              <NA>
35498                                                              <NA>
35499                                                              <NA>
35501                                                              <NA>
35503                                                              <NA>
35504                                                              <NA>
35506                                                              <NA>
35507                                                              <NA>
35509                                                   0.25 inch strip
35513                                                              <NA>
35525                                                   based on weight
35526                                                   based on weight
35528                                                              <NA>
35539                                                              <NA>
35560                                               tablet/pill/capsule
35561                                               tablet/pill/capsule
35562                                               tablet/pill/capsule
35563                                               tablet/pill/capsule
35565                                                              <NA>
35566                                                              <NA>
35569                                                              <NA>
35571                                                   based on weight
35572                                                   based on weight
35573                                                   based on weight
35574                                                              <NA>
35575                                                   based on weight
35576                                                              <NA>
35577                                                              <NA>
35578                                                   based on weight
35579                                                   based on weight
35580                                                              <NA>
35581                                                   based on weight
35582                                                   based on weight
35584                                                              <NA>
35592                                                              <NA>
35593                                                   based on weight
35598                                                   based on weight
35605                                                             spray
35616                                                              <NA>
35617                                                              <NA>
35618                                                              <NA>
35619                                                              <NA>
35620                                                              <NA>
35621                                                     1 bottle/vial
35622                                                              <NA>
35624                                                              <NA>
35626                                                            powder
35627                                                              <NA>
35628                                                              <NA>
35633                                               tablet/pill/capsule
35639                                               tablet/pill/capsule
35641                                               tablet/pill/capsule
35642                                                       application
35643                                                              <NA>
35644                                                              <NA>
35645                                                              <NA>
35656                                                       unspecified
35659                                                              <NA>
35662                                               tablet/pill/capsule
35664                                                   based on weight
35665                                                   based on weight
35668                                                              <NA>
35673                                                             spray
35674                                                              <NA>
35696                                                              <NA>
35697                                               tablet/pill/capsule
35699                                             1 tablet/pill/capsule
35700                                                             spray
35721                                                   based on weight
35722                                                       unspecified
35725                                                              <NA>
35727                                                              <NA>
35740                                                              <NA>
35743                                                              <NA>
35746                                                              <NA>
35747                                                              <NA>
35748                                                              <NA>
35749                                                              <NA>
35751                                                              <NA>
35756                                                              <NA>
35757                                                              <NA>
35758                                                              <NA>
35762                                                             daily
35768                                                              tube
35770                                                              tube
35771                                               tablet/pill/capsule
35772                                                       unspecified
35773                                                      pack/package
35774                                               tablet/pill/capsule
35775                                                   based on weight
35777                                                       unspecified
35778                                                       unspecified
35779                                                              <NA>
35782                                                              <NA>
35784                       272 mcg ivermectin, 227 mg pyrantel pamoate
35786                                                       application
35791                                                              <NA>
35792                                                              <NA>
35793                                                              <NA>
35808                                                              <NA>
35809                                                              <NA>
35810                                                              <NA>
35812                                      based on weight (60-120 lbs)
35820                                               tablet/pill/capsule
35821                                                       application
35831                                                              <NA>
35832                                                              <NA>
35835                                                              <NA>
35850                                             1 tablet/pill/capsule
35853                                                       unspecified
35855                                               tablet/pill/capsule
35858                                                              <NA>
35859                                                              <NA>
35903                                                              <NA>
35905                                                              <NA>
35907                                                              <NA>
35908                                                              <NA>
35931                                                              <NA>
35954                                                   based on weight
35955                                               tablet/pill/capsule
35963                                                      small amount
35965                                                              <NA>
35969                                                         as needed
35973                                                       combination
35980                                                              <NA>
35982                                                   based on weight
35983                                                   based on weight
36019                                                   based on weight
36021                                                   based on weight
36023                                                      small amount
36030                                                              <NA>
36042                                               tablet/pill/capsule
36043                                                              <NA>
36044                                               tablet/pill/capsule
36065                                             1 tablet/pill/capsule
36069                                                   based on weight
36078                                                              <NA>
36081                                                              <NA>
36082                                                              <NA>
36083                                                              <NA>
36084                                                       unspecified
36108                                                              <NA>
36110                                                              <NA>
36112                                                   based on weight
36113                                                              <NA>
36115                                                   based on weight
36134                                                              <NA>
36137                                                              pump
36144                                                     1 bottle/vial
36145                                             1 tablet/pill/capsule
36150                                                   based on weight
36153                                                              <NA>
36155                                                              tube
36156                                               tablet/pill/capsule
36159                                                   based on weight
36171                                                              <NA>
36191                                               tablet/pill/capsule
36192                                                              <NA>
36196                                                              <NA>
36198                                                       unspecified
36200                                                              <NA>
36201                                                                ml
36202                                                              <NA>
36203                                                              <NA>
36205                                                              <NA>
36218                                               tablet/pill/capsule
36220                                                   based on weight
36221                                               tablet/pill/capsule
36222                                                      small amount
36223                                                    1 pack/package
36225                                                   based on weight
36227                                               tablet/pill/capsule
36228                                               tablet/pill/capsule
36229                                               tablet/pill/capsule
36231                                                       bottle/vial
36232                                               tablet/pill/capsule
36233                                               tablet/pill/capsule
36235                                                          ointment
36237                                                        inch strip
36238                                                              <NA>
36240                                                              <NA>
36254                                                              <NA>
36256                                                              <NA>
36258                                                              <NA>
36264                                                              <NA>
36268                                                              <NA>
36271                                                              <NA>
36272                                                              <NA>
36273                                       based on weight (40-60 lbs)
36275                                                   based on weight
36276                                                       unspecified
36280                                      based on weight (85-130 lbs)
36283                                                              <NA>
36284                                                              <NA>
36288                                                              <NA>
36289                                                              <NA>
36292                                                              <NA>
36293                                                              <NA>
36294                                                              <NA>
36295                                                              <NA>
36296                                                              <NA>
36297                                                              <NA>
36298                                                              <NA>
36299                                                              <NA>
36300                                                              <NA>
36301                                                              <NA>
36302                                                              <NA>
36303                                                              <NA>
36304                                                              <NA>
36305                                                              <NA>
36306                                                   based on weight
36307                                                   based on weight
36308                                                              <NA>
36309                                                              <NA>
36310                                                              <NA>
36311                                                              <NA>
36322                                                              <NA>
36323                                                              <NA>
36324                                                              <NA>
36325                                                              <NA>
36326                                                              <NA>
36327                                                              <NA>
36328                                                              <NA>
36329                                                              <NA>
36330                                                              <NA>
36331                                                              <NA>
36332                                                              <NA>
36333                                                              <NA>
36334                                                              <NA>
36335                                                   based on weight
36336                                                   based on weight
36337                                                              <NA>
36338                                                              <NA>
36339                                                              <NA>
36340                                                              <NA>
36357                                                              <NA>
36358                                                              <NA>
36359                                                              <NA>
36360                                                              <NA>
36361                                                              <NA>
36362                                                              <NA>
36363                                                              <NA>
36364                                                              <NA>
36365                                                              <NA>
36366                                                              <NA>
36367                                                              <NA>
36368                                                              <NA>
36369                                                              <NA>
36370                                                              <NA>
36371                                                   based on weight
36372                                                   based on weight
36373                                                              <NA>
36374                                                              <NA>
36376                                                              <NA>
36377                                                              <NA>
36378                                                              <NA>
36379                                                              <NA>
36380                                                              <NA>
36381                                                              <NA>
36382                                                              <NA>
36383                                                              <NA>
36384                                                              <NA>
36385                                                              <NA>
36397                                                              <NA>
36398                                                              <NA>
36399                                                              <NA>
36400                                                              <NA>
36401                                                              <NA>
36402                                                              <NA>
36403                                                              <NA>
36404                                                              <NA>
36405                                                              <NA>
36406                                                              <NA>
36410                                                              <NA>
36427                                                   based on weight
36429                                                              <NA>
36430                                                                 %
36438                                                              <NA>
36439                                                   based on weight
36440                                                   based on weight
36443                                                              <NA>
36444                                                   based on weight
36448                                                   based on weight
36451                                                       unspecified
36460                                               tablet/pill/capsule
36461                                               tablet/pill/capsule
36464                                                              <NA>
36474                                                              <NA>
36491                                                       unspecified
36497                                                              <NA>
36513                                                              <NA>
36520                                                              <NA>
36533                                                      small amount
36535                                                          wipe/pad
36559                                                   based on weight
36560                                                   based on weight
36562                                                   based on weight
36568                                               tablet/pill/capsule
36571                                                        inch strip
36574                                                              <NA>
36579                                                            1 tube
36580                                                              <NA>
36595                                               tablet/pill/capsule
36597                                                              <NA>
36598                                                              <NA>
36599                                                              <NA>
36600                                                              pump
36601                                               tablet/pill/capsule
36602                                               tablet/pill/capsule
36605                                               tablet/pill/capsule
36606                                                              <NA>
36607                                               tablet/pill/capsule
36608                                               tablet/pill/capsule
36616                                               tablet/pill/capsule
36623                                                              <NA>
36624                                                                25
36626                                                              pump
36630                                               tablet/pill/capsule
36631                                                              <NA>
36632                                               tablet/pill/capsule
36633                                                              <NA>
36635                                               tablet/pill/capsule
36636                                               tablet/pill/capsule
36637                                                              <NA>
36657                                                              <NA>
36660                                                              <NA>
36661                                                              <NA>
36667                                                              <NA>
36670                                               tablet/pill/capsule
36698                                                   based on weight
36699                                                   based on weight
36705                                                              <NA>
36708                                                       unspecified
36709                                                          wipe/pad
36735                                                              <NA>
36751                                               tablet/pill/capsule
36752                                                       application
36753                                                            powder
36772                                                             spray
36776                                                              <NA>
36777                                                              <NA>
36778                                                              <NA>
36816                                                      pack/package
36817                                                   based on weight
36818                                                              <NA>
36819                                                              <NA>
36824                                               tablet/pill/capsule
36833                                                   based on weight
36834                                                   0.25 inch strip
36835                                                          wipe/pad
36840                                                              <NA>
36842                                                              <NA>
36846                                                              <NA>
36847                                                              <NA>
36848                                                              <NA>
36849                                                   based on weight
36850                                                   based on weight
36851                                                              <NA>
36853                                                              <NA>
36855                                                              <NA>
36859                                                              <NA>
36874                                                              <NA>
36875                                                              <NA>
36876                                                              <NA>
36877                                                              <NA>
36878                                                            1 tube
36879                                                              <NA>
36880                                                              <NA>
36881                                               tablet/pill/capsule
36882                                                              <NA>
36883                                               tablet/pill/capsule
36884                                                           1 spray
36892                                                              <NA>
36893                                             1 tablet/pill/capsule
36894                                             1 tablet/pill/capsule
36900                                               tablet/pill/capsule
36901                                               tablet/pill/capsule
36911                                                   based on weight
36916                                                              <NA>
36919                                                              <NA>
36920                                                   based on weight
36921                                                       unspecified
36925                                                              <NA>
36945                                                              <NA>
36946                                                              <NA>
36969                                                              <NA>
36970                                                              <NA>
36982                                                     1 bottle/vial
36983                                             1 tablet/pill/capsule
36984                                             1 tablet/pill/capsule
36985                                             1 tablet/pill/capsule
36994                                                             spray
37007                                                              <NA>
37015                                               tablet/pill/capsule
37017                                                          wipe/pad
37018                                                   based on weight
37019                                                   based on weight
37020                                                              <NA>
37021                                               tablet/pill/capsule
37036                                                              1 ml
37038                                                              <NA>
37046                                                              <NA>
37054                                               tablet/pill/capsule
37055                                             1 tablet/pill/capsule
37056                                                       unspecified
37057                                                              <NA>
37061                                                            collar
37063                                                                 %
37069                                                              <NA>
37070                                         based on weight (55+ lbs)
37071                                      based on weight (50-100 lbs)
37073                                                      small amount
37074                                                              <NA>
37075                                                      small amount
37076                                                            1 tube
37077                                                   based on weight
37078                                                   based on weight
37080                                                              tube
37087                                                   based on weight
37088                                                   based on weight
37091                                                              <NA>
37098                                                              tube
37099                                               tablet/pill/capsule
37103                                                              <NA>
37104                                                              <NA>
37115                                                           7 drops
37116                                                              <NA>
37117                                                   based on weight
37135                                                   moderate amount
37157                                                              <NA>
37164                                                              <NA>
37165                                               tablet/pill/capsule
37168                                                            powder
37169                                                      small amount
37179                                                              <NA>
37193                                                              <NA>
37194                                                            collar
37195                                                              <NA>
37197                                                              <NA>
37200                                                   based on weight
37201                                                   based on weight
37202                                                   based on weight
37219                                               tablet/pill/capsule
37221                                                              <NA>
37259                                                              <NA>
37260                                                              <NA>
37262                                                       application
37263                                                              <NA>
37266                                               tablet/pill/capsule
37267                                                              <NA>
37270                                                       application
37271                                                       application
37272                                                              <NA>
37273                                                              <NA>
37277                                                    shampoo/mousse
37278                                                              <NA>
37279                                                              <NA>
37302                                                              <NA>
37303                                                              <NA>
37304                                                              <NA>
37306                                                              <NA>
37307                                                              <NA>
37308                                                              <NA>
37309                                                      small amount
37316                                                   based on weight
37324                                                              <NA>
37325                                                              <NA>
37326                                                              <NA>
37332                                                      small amount
37337                                                   based on weight
37344                                               tablet/pill/capsule
37349                       272 mcg ivermectin, 227 mg pyrantel pamoate
37359                                                              <NA>
37373                                               tablet/pill/capsule
37374                                               tablet/pill/capsule
37375                                                              <NA>
37376                                                              <NA>
37377                                                              <NA>
37385                                               tablet/pill/capsule
37386                                               tablet/pill/capsule
37387                                               tablet/pill/capsule
37392                                                             spray
37396                                                   based on weight
37397                                       based on weight (44-88 lbs)
37434                                                              <NA>
37435                                                              <NA>
37439                                                   based on weight
37446                                                              dose
37448                                                              pump
37449                                                   moderate amount
37451                                                      small amount
37453                                                            1 pump
37454                                                   moderate amount
37457                                                       as directed
37463                                                       application
37464                                                             spray
37465                                                             spray
37467                                                   moderate amount
37468                                      based on weight (50-100 lbs)
37469                                       based on weight (44-88 lbs)
37477                                                              <NA>
37478                                                              <NA>
37485                                                   based on weight
37491                                                            1 pump
37493                                               tablet/pill/capsule
37495                                                             spray
37496                                                              <NA>
37510                                                              <NA>
37526                                                              <NA>
37527                                                        inch strip
37533                                                      small amount
37536                                             1:10 part water ratio
37540                                                   based on weight
37545                                               tablet/pill/capsule
37546                                               tablet/pill/capsule
37547                                               tablet/pill/capsule
37552                                               tablet/pill/capsule
37568                                                              <NA>
37569                                                           monthly
37571                                                              <NA>
37576                                                      small amount
37577                                                              <NA>
37578                                                              <NA>
37579                                                              <NA>
37580                                                              <NA>
37581                                                              <NA>
37582                                                              <NA>
37584                                                              <NA>
37585                                                              <NA>
37586                                                              <NA>
37597                                                              <NA>
37598                                                              <NA>
37601                                                   based on weight
37602                                                   based on weight
37603                                               tablet/pill/capsule
37608                                                       unspecified
37621                                               tablet/pill/capsule
37622                                               tablet/pill/capsule
37624                                                   based on weight
37627                                                   based on weight
37628                                                   based on weight
37629                                                       unspecified
37630                                               tablet/pill/capsule
37639                                                              <NA>
37648                                                   based on weight
37649                                                              <NA>
37651                                                            collar
37652                                          based on weight (64 lbs)
37655                                                            collar
37657                                                            collar
37662                                                            collar
37664                                                            collar
37669                                                          wipe/pad
37670                                                       application
37675                                                       application
37682                                                              <NA>
37686                                                              <NA>
37691                                                          ointment
37692                                                              <NA>
37695                                                              <NA>
37696                                                              <NA>
37697                                                              <NA>
37698                                                              <NA>
37699                                                              <NA>
37704                                             1 tablet/pill/capsule
37705                                                            1 tube
37708                                                              <NA>
37709                                                              <NA>
37710                                                              <NA>
37712                                                              <NA>
37713                                                              <NA>
37714                                                              <NA>
37717                                                              <NA>
37718                                                              <NA>
37731                                                   based on weight
37738                                                   based on weight
37739                                             1 tablet/pill/capsule
37740                                                            1 tube
37742                                             1 tablet/pill/capsule
37771                                                              <NA>
37785                                                   based on weight
37786                                                   based on weight
37797                                                   based on weight
37798                                                              <NA>
37805                                                              <NA>
37806                                                              <NA>
37807                                                              <NA>
37809                                                          inhalant
37816                                                              <NA>
37817                                                              <NA>
37820                                                              <NA>
37821                                                              <NA>
37822                                             1 tablet/pill/capsule
37834                                                   based on weight
37835                                                   based on weight
37836                                                              <NA>
37837                                                              <NA>
37838                                               tablet/pill/capsule
37839                                               tablet/pill/capsule
37845                                                   based on weight
37846                                                   based on weight
37847                                               tablet/pill/capsule
37848                                               tablet/pill/capsule
37849                                               tablet/pill/capsule
37850                                               tablet/pill/capsule
37851                                               tablet/pill/capsule
37852                                               tablet/pill/capsule
37855                                                   based on weight
37858                                                   based on weight
37865                                                   based on weight
37885                                               tablet/pill/capsule
37894                                               tablet/pill/capsule
37895                                               tablet/pill/capsule
37907                                                              <NA>
37916                                                   based on weight
37920                                                     1 bottle/vial
37929                                                              <NA>
37930                                                              <NA>
37933                                               tablet/pill/capsule
37934                                               tablet/pill/capsule
37935                                                              <NA>
37936                                               tablet/pill/capsule
37937                                                              <NA>
37940                                                              <NA>
37941                                                              <NA>
37942                                                              <NA>
37944                                                              <NA>
37956                                                              <NA>
37976                                               tablet/pill/capsule
37977                                                             drops
37978                                               tablet/pill/capsule
37979                                                             spray
37980                                                      small amount
37984                                               tablet/pill/capsule
37989                                             1 tablet/pill/capsule
37990                                                      small amount
37992                                               tablet/pill/capsule
37993                                               tablet/pill/capsule
38018                                                              <NA>
38036                                               tablet/pill/capsule
38041                                               tablet/pill/capsule
38046                                                   based on weight
38048                                                              <NA>
38050                                                   based on weight
38051                                                   based on weight
38052                                                              <NA>
38056                                                              <NA>
38070                                               tablet/pill/capsule
38071                                                              <NA>
38072                                                                 %
38073                                                              <NA>
38074                                                              <NA>
38075                                                              <NA>
38102                                                              <NA>
38123                                               tablet/pill/capsule
38126                                               tablet/pill/capsule
38129                                                              <NA>
38132                                                              <NA>
38134                                               tablet/pill/capsule
38135                                               tablet/pill/capsule
38136                                                       application
38141                                               tablet/pill/capsule
38142                                               tablet/pill/capsule
38151                                                              dose
38152                                                              <NA>
38156                                                              <NA>
38165                                                              <NA>
38166                                                              <NA>
38177                                                              pump
38179                                                              <NA>
38181                                                              <NA>
38182                                                              <NA>
38184                                                              <NA>
38185                                                              <NA>
38193                                                              tube
38204                                                              <NA>
38211                                                              <NA>
38216                                               tablet/pill/capsule
38217                                             1 tablet/pill/capsule
38219                                                              <NA>
38220                                                            1 pump
38240                                                              dose
38248                                                              <NA>
38256                                                              <NA>
38257                                                              <NA>
38259                                                              <NA>
38260                                                              <NA>
38262                                                   based on weight
38268                                                              <NA>
38273                                                              <NA>
38284                                                       combination
38287                                                              pump
38288                                               tablet/pill/capsule
38289                                               tablet/pill/capsule
38293                                                              <NA>
38294                                                             drops
38301                                                              tube
38305                                                              <NA>
38306                                               tablet/pill/capsule
38321                                                              <NA>
38324                                                              <NA>
38326                                                             spray
38330                                               tablet/pill/capsule
38339                                             1 tablet/pill/capsule
38341                                                      small amount
38342                                             1 tablet/pill/capsule
38350                                                              <NA>
38351                                               tablet/pill/capsule
38352                                               tablet/pill/capsule
38353                                               tablet/pill/capsule
38361                                                   0.25 inch strip
38362                                                              <NA>
38365                                                   based on weight
38366                                                   based on weight
38367                                                   based on weight
38369                                                              <NA>
38370                                                              <NA>
38371                                                              <NA>
38372                                                             drops
38373                                                   based on weight
38377                                                              <NA>
38378                                                              <NA>
38386                                                              <NA>
38387                                                              <NA>
38388                                                   based on weight
38396                                               tablet/pill/capsule
38397                                               tablet/pill/capsule
38398                                                              <NA>
38399                                               tablet/pill/capsule
38406                                                      pack/package
38420                                               tablet/pill/capsule
38422                                                   based on weight
38423                                                   based on weight
38427                                                              <NA>
38431                                                      small amount
38436                                                              pump
38438                                               tablet/pill/capsule
38439                                               tablet/pill/capsule
38442                                                              <NA>
38461                                                              <NA>
38462                                                              <NA>
38464                                                              <NA>
38465                                                              <NA>
38466                                                              <NA>
38470                                                              <NA>
38471                                                              <NA>
38472                                                              <NA>
38473                                                              <NA>
38496                                                              <NA>
38499                                                              <NA>
38504                                                              <NA>
38505                                                              <NA>
38507                                                              <NA>
38508                                                              <NA>
38509                                                              <NA>
38510                                                              <NA>
38511                                                              <NA>
38512                                                              <NA>
38522                                                              <NA>
38527                                                   based on weight
38528                                                   based on weight
38529                                                         as needed
38531                                                      small amount
38532                                             1 tablet/pill/capsule
38533                                                              <NA>
38534                                          2 tablets/pills/capsules
38535                                                              <NA>
38536                                             1 tablet/pill/capsule
38544                                                      small amount
38550                                                              <NA>
38551                                                              <NA>
38557                                                              <NA>
38567                                               tablet/pill/capsule
38568                                                   based on weight
38569                                                   based on weight
38570                                                              <NA>
38588                                                   moderate amount
38602                                               tablet/pill/capsule
38605                                                              <NA>
38606                                                              <NA>
38607                                                              <NA>
38610                                               tablet/pill/capsule
38611                                                              pump
38618                                                              <NA>
38626                                             1 tablet/pill/capsule
38630                                               tablet/pill/capsule
38636                                                   based on weight
38637                                                   based on weight
38638                                                              <NA>
38643                                                   based on weight
38647                                                              <NA>
38655                                                      pack/package
38656                                                     1 application
38665                                                              <NA>
38691                                                   based on weight
38716                                                              <NA>
38722                                                              <NA>
38723                                                          wipe/pad
38754                                                              <NA>
38764                                                              <NA>
38772                                                      small amount
38773                                                              <NA>
38775                                                              <NA>
38776                                                              <NA>
38779                                                              <NA>
38780                                                              <NA>
38787                                               tablet/pill/capsule
38789                                                              <NA>
38796                                               tablet/pill/capsule
38802                                                              <NA>
38808                                                              <NA>
38809                                                              <NA>
38810                                                              <NA>
38816                                                      pack/package
38818                                                              <NA>
38820                                                              <NA>
38821                                                              <NA>
38828                                                             spray
38839                                                              <NA>
38841                                                              <NA>
38843                                                              <NA>
38845                                                              <NA>
38847                                                       application
38850                                                          ointment
38851                                                              <NA>
38854                                                              <NA>
38855                                                       application
38861                                                              <NA>
38864                                                              <NA>
38865                                                              <NA>
38868                                                              <NA>
38871                                                              <NA>
38890                                               tablet/pill/capsule
38891                                               tablet/pill/capsule
38892                                                   based on weight
38896                                                   based on weight
38902                                                      small amount
38924                                                              <NA>
38925                                       based on weight (21-55 lbs)
38926                                      based on weight (50-100 lbs)
38930                                                   based on weight
38931                                                   based on weight
38940                                                   based on weight
38941                                                   based on weight
38945                                                   based on weight
38946                                                   based on weight
38950                                             1 tablet/pill/capsule
38951                                             1 tablet/pill/capsule
38952                                             1 tablet/pill/capsule
38956                                                              <NA>
38963                                                   based on weight
38964                                                   based on weight
38970                                                              <NA>
38971                                                              <NA>
38974                                                              <NA>
38976                                                              <NA>
38978                                                              <NA>
38997                                                              <NA>
39004                                               tablet/pill/capsule
39005                                               tablet/pill/capsule
39006                                                              <NA>
39035                                                              <NA>
39073                                               tablet/pill/capsule
39083                                                              <NA>
39099                                             1 tablet/pill/capsule
39113                                                              <NA>
39117                                                              <NA>
39120                                                       combination
39121                                                   based on weight
39122                                                     1 application
39123                                               tablet/pill/capsule
39125                                                              <NA>
39127                                                              <NA>
39128                                                              <NA>
39158                                                              <NA>
39165                                                              <NA>
39167                                               tablet/pill/capsule
39171                                                      small amount
39175                                                              <NA>
39176                                      based on weight (50-100 lbs)
39177                                                              <NA>
39181                                                    shampoo/mousse
39182                                                             spray
39188                                                              <NA>
39198                                                             spray
39201                                                              <NA>
39202                                                            liquid
39207                                                              <NA>
39209                                                              <NA>
39210                                                              <NA>
39211                                                      pack/package
39212                                                              <NA>
39218                                                              <NA>
39258                                               tablet/pill/capsule
39259                                               tablet/pill/capsule
39260                                               tablet/pill/capsule
39261                                                              <NA>
39262                                                              <NA>
39273                                                              <NA>
39316                                                       unspecified
39325                                                              <NA>
39326                                                              <NA>
39327                                                              <NA>
39328                                                              <NA>
39329                                                              <NA>
39330                                                              <NA>
39331                                                              <NA>
39332                                                              <NA>
39338                                                   based on weight
39339                                                            collar
39340                                                   based on weight
39385                                                              <NA>
39388                                                   based on weight
39390                                                              <NA>
39392                                                              <NA>
39415                                                             spray
39416                                                              <NA>
39423                                                              <NA>
39425                                                          ointment
39433                                                              <NA>
39434                                                              <NA>
39435                                                   syringe/pipette
39436                                                              <NA>
39438                                                   based on weight
39440                                                              <NA>
39443                                                              <NA>
39444                                                              <NA>
39445                                                              <NA>
39446                                                              <NA>
39447                                                              <NA>
39450                                                              <NA>
39451                                                              <NA>
39453                                                       application
39464                                                              <NA>
39478                                                              <NA>
39486                                                            1 tube
39495                                                              <NA>
39496                                                              <NA>
39511                                                              <NA>
39513                                                              <NA>
39516                                                       unspecified
39519                                                              <NA>
39525                                                       bottle/vial
39526                                                       unspecified
39528                                                              <NA>
39531                                                       combination
39532                                                              <NA>
39534                                                              <NA>
39536                                                      pack/package
39539                                                              <NA>
39541                                                             spray
39542                                                       application
39543                                                        inch strip
39546                                                       bottle/vial
39548                                                              <NA>
39566                                                              <NA>
39567                                                              <NA>
39573                                                              <NA>
39579                                                              <NA>
39581                                                   based on weight
39582                                                   based on weight
39586                                             1 tablet/pill/capsule
39591                                                              <NA>
39599                                                              <NA>
39605                                                              <NA>
39607                                                              <NA>
39609                                             1 tablet/pill/capsule
39617                                                              <NA>
39618                                                              <NA>
39635                                               tablet/pill/capsule
39637                                                              <NA>
39639                                                      small amount
39651                                                             spray
39705                                                              <NA>
39706                                                              <NA>
39707                                                              <NA>
39708                                                              <NA>
39714                                             1 tablet/pill/capsule
39715                                             1 tablet/pill/capsule
39737                                                              <NA>
39744                                                       unspecified
39745                                                       unspecified
39750                                                              <NA>
39754                                                   based on weight
39755                                                              tube
39756                                                              <NA>
39759                                                              <NA>
39760                                                              <NA>
39763                                                              <NA>
39764                                      based on weight (50-100 lbs)
39776                                                              <NA>
39777                                                              <NA>
39778                                                              <NA>
39785                                                              <NA>
39786                                               tablet/pill/capsule
39787                                                       application
39788                                                   based on weight
39795                                                              <NA>
39796                                                              <NA>
39809                                                              <NA>
39833                                                              <NA>
39849                                                              <NA>
39856                                                              <NA>
39860                                                              <NA>
39871                                                              <NA>
39875                                                              <NA>
39877                                                              <NA>
39881                                          based on weight (60 lbs)
39901                                                              <NA>
39909                                       based on weight (40-60 lbs)
39916                                                              <NA>
39917                                                              <NA>
39918                                                              <NA>
39919                                                        inch strip
39948                                      based on weight (50-100 lbs)
39949                                       based on weight (24-60 lbs)
39958                                                   based on weight
39973                                             1 tablet/pill/capsule
39974                                                      small amount
39975                                                      small amount
39980                                                            powder
39981                                                          wipe/pad
39982                                                   0.25 inch strip
39987                                                              <NA>
39988                                                              <NA>
40003                                                              <NA>
40013                                                   based on weight
40021                                                              <NA>
40023                                      based on weight (60-120 lbs)
40024                                                              <NA>
40038                                                              <NA>
40042                                                              <NA>
40043                                                              <NA>
40052                                                           monthly
40053                                                              <NA>
40054                                                              <NA>
40092                                       based on weight (44-88 lbs)
40093                                      based on weight (50-100 lbs)
40095                                                              <NA>
40102                                                              <NA>
40108                                                              <NA>
40109                                                              <NA>
40115                                                   based on weight
40117                                               tablet/pill/capsule
40121                                                              <NA>
40123                                                       unspecified
40124                                               tablet/pill/capsule
40125                                                       unspecified
40133                                                              <NA>
40134                                                              <NA>
40138                                               tablet/pill/capsule
40141                                                              <NA>
40142                                                              <NA>
40143                                                             spray
40144                                               tablet/pill/capsule
40149                                      based on weight (50-100 lbs)
40154                                                   based on weight
40164                                                      small amount
40165                                                   based on weight
40180                                                   based on weight
40186                                                   based on weight
40193                                                              <NA>
40194                                                       combination
40196                                                       as directed
40206                                                   based on weight
40209                                                      small amount
40214                                                       application
40216                                               tablet/pill/capsule
40217                                               tablet/pill/capsule
40218                                               tablet/pill/capsule
40221                                                   based on weight
40222                                                   based on weight
40223                                                   based on weight
40224                                                   based on weight
40244                                                       application
40290                                                              <NA>
40296                                                              <NA>
40297                                                              <NA>
40298                                                              <NA>
40299                                                      small amount
40302                                                              <NA>
40308                                                              <NA>
40309                                                              <NA>
40312                                          based on weight (70 lbs)
40313                                                              <NA>
40317                                                      small amount
40325                                                              <NA>
40331                                                              <NA>
40343                                                              <NA>
40346                                                              <NA>
40390                                               tablet/pill/capsule
40391                                                   based on weight
40392                                                              <NA>
40394                                                              <NA>
40403                                                      small amount
40405                                                              <NA>
40406                                                              <NA>
40407                                                              <NA>
40417                                               tablet/pill/capsule
40418                                               tablet/pill/capsule
40422                                                   based on weight
40425                                       based on weight (44-88 lbs)
40446                                                              <NA>
40447                                                              <NA>
40451                                                              <NA>
40454                                                              <NA>
40464                                                              <NA>
40468                                                              <NA>
40472                                               tablet/pill/capsule
40474                                                   based on weight
40483                                               tablet/pill/capsule
40484                                               tablet/pill/capsule
40486                                                              <NA>
40487                                                              <NA>
40488                                                            1 tube
40489                                                              <NA>
40490                                                              <NA>
40494                                                              <NA>
40503                                               tablet/pill/capsule
40504                                               tablet/pill/capsule
40505                                                              tube
40508                                                              <NA>
40511                                                              <NA>
40519                                               tablet/pill/capsule
40521                                                              <NA>
40535                                                              <NA>
40541                                                              <NA>
40542                                                              <NA>
40543                                                              <NA>
40547                                                              <NA>
40568                                                   based on weight
40571                                                              <NA>
40572                                                              <NA>
40573                                                   based on weight
40574                                                   based on weight
40579                                             1 tablet/pill/capsule
40580                                                              <NA>
40581                                                              <NA>
40582                                                        inch strip
40583                                                              <NA>
40595                                                          2 sprays
40600                                                   based on weight
40601                                                   based on weight
40603                                                       bottle/vial
40604                                                            powder
40606                                                      small amount
40607                                                   moderate amount
40611                                                   based on weight
40615                                                              <NA>
40616                                                   based on weight
40617                                                   based on weight
40618                                                              <NA>
40619                                                              <NA>
40620                                                              <NA>
40624                                                              <NA>
40625                                                              <NA>
40634                                                        inch strip
40635                                                              <NA>
40636                                                              <NA>
40637                                                              <NA>
40644                                                              <NA>
40653                                                       bottle/vial
40654                                               tablet/pill/capsule
40655                                               tablet/pill/capsule
40656                                                              <NA>
40657                                                              <NA>
40658                                                              <NA>
40684                                                   based on weight
40686                                                   based on weight
40687                                                   based on weight
40688                                                          wipe/pad
40689                                                          ointment
40690                                                   based on weight
40691                                                   based on weight
40693                                                     tapering dose
40695                                      based on weight (50-100 lbs)
40696                                      based on weight (60-100 lbs)
40699                                                              <NA>
40700                                               tablet/pill/capsule
40701                                               tablet/pill/capsule
40718                                                              <NA>
40719                                             1 tablet/pill/capsule
40721                                               tablet/pill/capsule
40722                                                          ointment
40723                                                              <NA>
40724                                                              <NA>
40725                                               tablet/pill/capsule
40726                                                              <NA>
40727                                                              <NA>
40744                                                   based on weight
40745                                                             spray
40747                                                              <NA>
40748                                                          wipe/pad
40749                                               tablet/pill/capsule
40750                                                              <NA>
40751                                                   based on weight
40754                                                   based on weight
40755                                                   based on weight
40756                                                        inch strip
40758                                                              <NA>
40760                                                   based on weight
40775                                               tablet/pill/capsule
40776                                               tablet/pill/capsule
40781                                               tablet/pill/capsule
40783                                                              <NA>
40794                                                              <NA>
40796                                               tablet/pill/capsule
40799                                               tablet/pill/capsule
40800                                               tablet/pill/capsule
40801                                               tablet/pill/capsule
40810                                                      small amount
40823                                                   based on weight
40824                                                             drops
40825                                                              dose
40826                                                              <NA>
40827                                                   based on weight
40828                                                   based on weight
40829                                                   based on weight
40833                       272 mcg ivermectin, 227 mg pyrantel pamoate
40834                                                    240 mg, 360 mg
40838                                                             spray
40839                                                       bottle/vial
40840                                                       bottle/vial
40843                                                             spray
40846                                                              <NA>
40848                                                   0.25 inch strip
40866                                                          wipe/pad
40868                                               tablet/pill/capsule
40869                                                              <NA>
40870                                                   based on weight
40873                                               tablet/pill/capsule
40875                                               tablet/pill/capsule
40876                                                              <NA>
40879                                               tablet/pill/capsule
40895                                                              <NA>
40897                                                              <NA>
40899                                                              <NA>
40900                                                              <NA>
40902                                                              <NA>
40905                                                              <NA>
40919                                                              <NA>
40943                                                              <NA>
40958                                                       unspecified
40959                                                       unspecified
40960                                                       unspecified
40961                                                       unspecified
40962                                                        inch strip
40965                                               tablet/pill/capsule
40966                                               tablet/pill/capsule
40967                                               tablet/pill/capsule
40968                                               tablet/pill/capsule
40969                                                    shampoo/mousse
40970                                                          ointment
40971                                               tablet/pill/capsule
40972                                               tablet/pill/capsule
40974                                                   based on weight
40984                                                              <NA>
40987                                                              <NA>
40990                                                              <NA>
40992                                                              <NA>
40993                                                              <NA>
40994                                                              <NA>
40997                                               tablet/pill/capsule
40998                                                              <NA>
41002                                                              <NA>
41003                                                              <NA>
41004                                                              <NA>
41005                                                              <NA>
41006                                                              <NA>
41007                                                              <NA>
41008                                                              <NA>
41009                                                              <NA>
41010                                                              <NA>
41011                                                              <NA>
41012                                                              <NA>
41013                                                              <NA>
41014                                                              <NA>
41015                                                              <NA>
41016                                                              <NA>
41017                                                              <NA>
41018                                               tablet/pill/capsule
41020                                                              <NA>
41021                                      based on weight (50-100 lbs)
41022                                                              <NA>
41023                                       based on weight (56-95 lbs)
41024                                               tablet/pill/capsule
41025                                                              <NA>
41055                                                              <NA>
41057                                                              <NA>
41068                                                       bottle/vial
41069                                               tablet/pill/capsule
41082                                                              <NA>
41083                                                              <NA>
41084                                                              <NA>
41085                                                              <NA>
41086                                                              <NA>
41087                                                              <NA>
41088                                                              <NA>
41089                                                              <NA>
41090                                                              <NA>
41091                                                              <NA>
41092                                                              <NA>
41094                                                              <NA>
41095                                                              <NA>
41096                                                              <NA>
41097                                                              <NA>
41098                                                              <NA>
41099                                                              <NA>
41100                                                              <NA>
41101                                                              <NA>
41102                                                              <NA>
41103                                                              <NA>
41104                                                              <NA>
41105                                                              <NA>
41121                          27 mg milbemycin oxime, 1620 mg spinosad
41125                                                   based on weight
41129                                                              <NA>
41130                                                              <NA>
41131                                                   based on weight
41132                                                   based on weight
41133                                      based on weight (50-100 lbs)
41134                                      based on weight (60-120 lbs)
41137                                                             spray
41139                                                              <NA>
41147                                                              <NA>
41151                                                              <NA>
41152                                                              <NA>
41170                                                        inch strip
41198                                                              <NA>
41199                                                              <NA>
41200                                                              <NA>
41201                                                              <NA>
41203                                               tablet/pill/capsule
41204                                                              tube
41206                                                              tube
41207                                               tablet/pill/capsule
41208                                               tablet/pill/capsule
41209                                               tablet/pill/capsule
41210                                               tablet/pill/capsule
41216                                                              <NA>
41217                                               tablet/pill/capsule
41219                                      based on weight (50-100 lbs)
41220                                                              <NA>
41221                                                   based on weight
41222                                                              <NA>
41223                                                              <NA>
41224                                                              <NA>
41225                                                              <NA>
41240                                                            1 tube
41241                                             1 tablet/pill/capsule
41242                                                   based on weight
41243                                                              <NA>
41246                                                          ointment
41250                                                            1 tube
41251                                                              <NA>
41252                                                              <NA>
41254                                                           monthly
41255                                                              <NA>
41256                                                              <NA>
41260                                                              <NA>
41267                                                   based on weight
41278                                                             spray
41279                                       based on weight (1-121 lbs)
41281                                       based on weight (44-88 lbs)
41283                                                              <NA>
41302                                                              <NA>
41313                                                              <NA>
41314                                                              <NA>
41315                                                              <NA>
41316                                                              <NA>
41318                                                              <NA>
41319                                                              <NA>
41320                                                   based on weight
41325                                                              <NA>
41332                                                              <NA>
41335                                                      small amount
41336                                                              pump
41340                                                      small amount
41343                                                              <NA>
41360                                                              <NA>
41370                                                              <NA>
41371                                                              <NA>
41372                                                              <NA>
41373                                               tablet/pill/capsule
41374                                               tablet/pill/capsule
41376                                                              <NA>
41377                                                   based on weight
41378                                                   based on weight
41381                                                              <NA>
41384                                               tablet/pill/capsule
41385                                               tablet/pill/capsule
41386                                               tablet/pill/capsule
41387                                               tablet/pill/capsule
41388                                                              <NA>
41396                                                              <NA>
41398                                                              <NA>
41399                                                              <NA>
41400                                                              <NA>
41407                                                              <NA>
41413                                                              <NA>
41417                                                              <NA>
41418                                                              <NA>
41420                                                              <NA>
41421                                                   based on weight
41422                                      based on weight (50-100 lbs)
41424                                                       unspecified
41425                                                      small amount
41430                                                              <NA>
41431                                                              <NA>
41432                                                   based on weight
41433                                                              <NA>
41435                                                              <NA>
41442                                                          wipe/pad
41443                                                              <NA>
41444                                                              <NA>
41446                                                            1 pump
41447                                                              <NA>
41451                                                              <NA>
41464                                                      small amount
41466                                                      small amount
41470                                                              <NA>
41497                                                       unspecified
41500                                                              <NA>
41502                                                              tube
41505                                                          inhalant
41525                                                      small amount
41531                                                      small amount
41533                                                              <NA>
41557                                                        inch strip
41572                                               tablet/pill/capsule
41573                                               tablet/pill/capsule
41581                                               tablet/pill/capsule
41612                                                              <NA>
41615                                             1 tablet/pill/capsule
41617                                                              <NA>
41621                                                              <NA>
41629                                                          per hour
41632                                                              <NA>
41633                                                              <NA>
41636                                      based on weight (50-100 lbs)
41637                                      based on weight (60-120 lbs)
41638                                               tablet/pill/capsule
41639                                               tablet/pill/capsule
41640                                             1 tablet/pill/capsule
41641                                                              <NA>
41653                                                              <NA>
41655                                                              <NA>
41661                                                              <NA>
41674                                                              <NA>
41724                                                              <NA>
41725                                                            1 tube
41726                                             1 tablet/pill/capsule
41727                                             1 tablet/pill/capsule
41728                                             1 tablet/pill/capsule
41729                                                                 1
41731                                                              <NA>
41737                                                            1 tube
41738                                             1 tablet/pill/capsule
41739                                             1 tablet/pill/capsule
41740                                             1 tablet/pill/capsule
41743                                                              <NA>
41746                                             1 tablet/pill/capsule
41747                                                       unspecified
41748                                                       unspecified
41749                                                       unspecified
41750                                                       unspecified
41751                                                       unspecified
41752                                                       unspecified
41753                                                       unspecified
41754                                                       unspecified
41756                                                              <NA>
41759                                               tablet/pill/capsule
41774                                                              <NA>
41775                                                              <NA>
41778                                       based on weight (44-88 lbs)
41779                                      based on weight (50-100 lbs)
41781                                                              <NA>
41803                                               tablet/pill/capsule
41811                                                              <NA>
41816                                                              <NA>
41819                                                              <NA>
41830                                                              <NA>
41835                                                   based on weight
41837                                      based on weight (50-100 lbs)
41838                                      based on weight (89-132 lbs)
41840                                      based on weight (50-100 lbs)
41842                                                              <NA>
41846                                                              <NA>
41849                                                   based on weight
41850                                                   based on weight
41851                                                              <NA>
41853                                                              <NA>
41854                                                   based on weight
41856                                                   based on weight
41862                                                              <NA>
41863                                                              <NA>
41866                                                              <NA>
41867                                                              <NA>
41870                                                              <NA>
41872                                                              <NA>
41888                                                        inch strip
41891                                                              <NA>
41892                                                              <NA>
41893                                                              <NA>
41894                                                              <NA>
41895                                                              <NA>
41896                                                              <NA>
41897                                                              <NA>
41898                                                              <NA>
41899                                                              <NA>
41900                                                              <NA>
41901                                                              <NA>
41902                                                              <NA>
41903                                                              <NA>
41904                                                              <NA>
41905                                                              <NA>
41906                                                              <NA>
41907                                                              <NA>
41921                                                              <NA>
41929                                               tablet/pill/capsule
41930                                               tablet/pill/capsule
41937                                               tablet/pill/capsule
41938                                                              tube
41939                                                             spray
41946                                                              <NA>
41947                                                              <NA>
41950                                                              <NA>
41973                                                      small amount
41975                                                              <NA>
41976                                                      small amount
41988                                                   based on weight
42004                                                              <NA>
42005                                                              <NA>
42011                                                   based on weight
42012                                                   based on weight
42030                                                             drops
42032                                                   based on weight
42033                                                              <NA>
42034                                                              <NA>
42035                                                              <NA>
42036                                                              <NA>
42037                                                   based on weight
42039                                             1 tablet/pill/capsule
42040                                                            1 tube
42041                                                              <NA>
42042                                                              <NA>
42043                                                   based on weight
42044                                                   based on weight
42053                                                   based on weight
42054                                                       unspecified
42055                                                              <NA>
42057                                                              <NA>
42061                                                                 %
42063                                                   based on weight
42066                                                   based on weight
42100                                                      small amount
42101                                                             spray
42112                                                       combination
42113                                                              <NA>
42114                                                              <NA>
42115                                                              <NA>
42116                                                              <NA>
42117                                                              <NA>
42119                                                              <NA>
42122                                                              <NA>
42147                                               tablet/pill/capsule
42148                                               tablet/pill/capsule
42149                                               tablet/pill/capsule
42150                                               tablet/pill/capsule
42151                                               tablet/pill/capsule
42152                                               tablet/pill/capsule
42154                                       based on weight (44-88 lbs)
42171                                                              <NA>
42174                                                   based on weight
42175                                                              <NA>
42176                                                              <NA>
42198                                                            collar
42201                                                            collar
42215                                                              <NA>
42218                                                              <NA>
42219                                                              <NA>
42221                                                       application
42227                                                       application
42229                                                       application
42240                                                              <NA>
42241                                                              <NA>
42242                                                              <NA>
42243                                                              <NA>
42256                                                      small amount
42257                                                      small amount
42259                                                      small amount
42267                                                              <NA>
42272                                                              <NA>
42273                                                              <NA>
42278                                               tablet/pill/capsule
42284                                                              <NA>
42286                                                                kg
42287                                                   based on weight
42289                                                   based on weight
42291                                                       unspecified
42313                                                       application
42314                                               tablet/pill/capsule
42345                                                   based on weight
42346                                                   based on weight
42348                                               tablet/pill/capsule
42349                                               tablet/pill/capsule
42353                                               tablet/pill/capsule
42354                                               tablet/pill/capsule
42355                                                              <NA>
42356                                               tablet/pill/capsule
42357                                      based on weight (50-100 lbs)
42358                                      based on weight (60-120 lbs)
42361                                                      pack/package
42365                                                            1 pump
42366                                               tablet/pill/capsule
42367                                                      small amount
42368                                                              <NA>
42378                                                   based on weight
42379                                                   based on weight
42384                                                   based on weight
42386                                                   based on weight
42387                                                   based on weight
42399                                                            collar
42402                                               tablet/pill/capsule
42403                                                              tube
42404                                               tablet/pill/capsule
42412                                               tablet/pill/capsule
42413                                               tablet/pill/capsule
42417                                                          ointment
42425                                                             spray
42426                                                             spray
42433                                               tablet/pill/capsule
42451                                                   based on weight
42455                                                              <NA>
42463                                                       as directed
42464                                                      small amount
42465                                               tablet/pill/capsule
42466                                                              <NA>
42468                                                              <NA>
42474                                                       unspecified
42475                                                              <NA>
42476                                                       unspecified
42477                                                       unspecified
42478                                                              <NA>
42479                                                              <NA>
42480                                                              <NA>
42481                                                              <NA>
42482                                                            1 tube
42483                                               tablet/pill/capsule
42486                                               tablet/pill/capsule
42488                                                       unspecified
42489                                                              <NA>
42502                                                              <NA>
42506                                                    1 pack/package
42512                                               tablet/pill/capsule
42513                                                              <NA>
42518                                                              <NA>
42519                                                              <NA>
42522                                               tablet/pill/capsule
42537                                                       application
42551                                               tablet/pill/capsule
42552                                               tablet/pill/capsule
42553                                                   based on weight
42566                                                   moderate amount
42570                                                   based on weight
42572                                                              <NA>
42573                                                   based on weight
42574                                                   based on weight
42578                                                              <NA>
42579                                                              <NA>
42593                                                              <NA>
42594                                                              <NA>
42624                                                   based on weight
42626                                                              <NA>
42627                                               tablet/pill/capsule
42628                                               tablet/pill/capsule
42632                                               tablet/pill/capsule
42633                                               tablet/pill/capsule
42634                                                            collar
42637                                                           monthly
42638                                                              <NA>
42640                                                               10%
42646                                                              <NA>
42647                                                              <NA>
42648                                                              <NA>
42651                                       based on weight (26-50 lbs)
42652                                       based on weight (22-44 lbs)
42655                                               tablet/pill/capsule
42656                                               tablet/pill/capsule
42666                                                   based on weight
42668                                                              <NA>
42675                                                              <NA>
42678                                                              <NA>
42679                                                              <NA>
42694                                                   based on weight
42695                                                   based on weight
42696                                                   based on weight
42697                                                   based on weight
42700                                                              <NA>
42704                                                   based on weight
42712                                               tablet/pill/capsule
42716                                                      small amount
42721                                                              <NA>
42725                                                       bottle/vial
42726                                                              dose
42727                                                              <NA>
42728                                               tablet/pill/capsule
42729                                               tablet/pill/capsule
42740                                                   based on weight
42752                                                              <NA>
42753                                                              <NA>
42758                                                              <NA>
42760                                               tablet/pill/capsule
42761                                                       application
42764                                                              <NA>
42766                                               tablet/pill/capsule
42767                                               tablet/pill/capsule
42768                                                              <NA>
42769                                                              <NA>
42785                                                              <NA>
42786                                                              <NA>
42787                                                              <NA>
42791                                                              <NA>
42792                                                              <NA>
42799                                                              <NA>
42821                                               tablet/pill/capsule
42829                                                              <NA>
42833                                                              <NA>
42860                                                            cup(s)
42876                                                              <NA>
42879                                                              <NA>
42887                                                              <NA>
42890                                               tablet/pill/capsule
42891                                               tablet/pill/capsule
42892                                                              <NA>
42893                                                              <NA>
42894                                                              <NA>
42909                                                              <NA>
42913                                         based on weight (60+ lbs)
42915                                                       application
42920                                                              <NA>
42923                                                   based on weight
42926                                                   based on weight
42930                                                   based on weight
42931                                                   based on weight
42932                                                   based on weight
42935                                                   based on weight
42936                                                   based on weight
42939                                                   based on weight
42940                                                   based on weight
42946                                                              <NA>
42952                                                              <NA>
42956                                                   based on weight
42959                                               tablet/pill/capsule
42960                                                              <NA>
42967                                                   based on weight
42994                                                   based on weight
43013                                                              <NA>
43045                                                   based on weight
43064                                             1 tablet/pill/capsule
43065                                                              dose
43069                                                       application
43072                                                       unspecified
43081                                                              tube
43086                                                              pump
43105                                                          wipe/pad
43116                                               tablet/pill/capsule
43119                                                   based on weight
43123                                                              <NA>
43134                                                              <NA>
43135                                                              <NA>
43136                                                              <NA>
43137                                                              <NA>
43138                                                              <NA>
43149                                                              <NA>
43151                                                              <NA>
43153                                                              <NA>
43169                                                      small amount
43173                                                      small amount
43183                                                              <NA>
43184                                                              <NA>
43187                                                              <NA>
43191                                                         as needed
43200                                                              <NA>
43202                                                              <NA>
43204                                                   based on weight
43224                                                              <NA>
43228                                                            collar
43236                                                              <NA>
43238                                      based on weight (50-100 lbs)
43239                                                            collar
43240                                                              <NA>
43241                                      based on weight (50-100 lbs)
43242                                         based on weight (18+ lbs)
43243                                               tablet/pill/capsule
43244                                                            collar
43246                                                   based on weight
43247                                                              <NA>
43251                                                              <NA>
43254                                                              <NA>
43258                                                              <NA>
43259                                                              <NA>
43265                                                              <NA>
43270                                                              <NA>
43286                                                              <NA>
43291                                                              <NA>
43292                                                              <NA>
43293                                       based on weight (55-88 lbs)
43310                                               tablet/pill/capsule
43329                                                              <NA>
43334                                                              <NA>
43366                                                              <NA>
43388                                                   based on weight
43396                                                              <NA>
43397                                                              <NA>
43398                                                              <NA>
43399                                                              <NA>
43400                                                              <NA>
43405                                                      small amount
43412                                                      small amount
43416                                                             spray
43423                                                              <NA>
43424                                                              <NA>
43430                                                            powder
43436                                                              <NA>
43443                                                              <NA>
43465                                               tablet/pill/capsule
43467                                                       unspecified
43469                                                       unspecified
43470                                                       unspecified
43471                                                       unspecified
43482                                               tablet/pill/capsule
43491                                                   based on weight
43493                                                              <NA>
43494                                                              <NA>
43496                                                              <NA>
43497                                                              <NA>
43498                                                              <NA>
43510                                                   based on weight
43511                                                   based on weight
43512                                                   based on weight
43522                                                   based on weight
43527                       272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                               tablet/pill/capsule
43532                                               tablet/pill/capsule
43535                                               tablet/pill/capsule
43538                                               tablet/pill/capsule
43539                                               tablet/pill/capsule
43540                                                              <NA>
43545                                                   based on weight
43546                                       based on weight (44-88 lbs)
43547                                                   based on weight
43548                                               tablet/pill/capsule
43549                                                       bottle/vial
43550                                                      small amount
43561                                                              <NA>
43563                                               tablet/pill/capsule
43570                                                              <NA>
43601                                                              <NA>
43610                                                  0.125 inch strip
43611                                                              <NA>
43620                                                              <NA>
43621                                                                 %
43622                                                              <NA>
43636                                       based on weight (40-85 lbs)
43637                                             1 tablet/pill/capsule
43639                                                              <NA>
43640                                                              <NA>
43641                                               tablet/pill/capsule
43642                                                              <NA>
43643                                                          wipe/pad
43644                                                              <NA>
43645                                                              <NA>
43646                                                              <NA>
43650                                                              <NA>
43652                                                              tube
43653                                               tablet/pill/capsule
43669                                                          wipe/pad
43678                                                       application
43683                                               tablet/pill/capsule
43684                                                   0.25 inch strip
43685                                                      small amount
43686                                                      small amount
43697                                      based on weight (50-100 lbs)
43698                                       based on weight (24-60 lbs)
43701                                      based on weight (50-100 lbs)
43702                                       based on weight (44-88 lbs)
43706                                             1 tablet/pill/capsule
43707                                             1 tablet/pill/capsule
43709                                                            1 tube
43712                                                      small amount
43714                                                   moderate amount
43715                                                      small amount
43738                                                              <NA>
43743                                               tablet/pill/capsule
43744                                                            liquid
43745                                                    1 pack/package
43746                                                   based on weight
43747                                                   based on weight
43751                                                      pack/package
43755                                                              <NA>
43756                                                              <NA>
43765                                                              pump
43766                                                              <NA>
43778                                                              <NA>
43783                                                   based on weight
43784                                                   based on weight
43785                                                   based on weight
43790                                                              <NA>
43806                                                             spray
43807                                                    shampoo/mousse
43829                                                              <NA>
43831                                                              <NA>
43838                                                              <NA>
43843                                                              <NA>
43844                                                              <NA>
43851                                                              <NA>
43853                                                              <NA>
43854                                                              <NA>
43878                                               tablet/pill/capsule
43884                                                              <NA>
43887                                                              <NA>
43893                                               tablet/pill/capsule
43894                                                            collar
43896                                               tablet/pill/capsule
43897                                                              <NA>
43898                                                              <NA>
43919                                               tablet/pill/capsule
43920                                                              tube
43938                                                   based on weight
43939                                                   based on weight
43949                                                   based on weight
43950                                                   based on weight
43958                                                   based on weight
43959                                                   based on weight
43960                                                   based on weight
43963                                                              <NA>
43965                                                              <NA>
43975                                                   1.5 billion cfu
43976                                                              <NA>
43977                                                              <NA>
43980                                                              <NA>
43997                                                        inch strip
44031                                                              <NA>
44037                                                              <NA>
44050                                                        1 wipe/pad
44051                                                              <NA>
44055                                                              <NA>
44084                                                        inch strip
44087                                                       unspecified
44090                                                       unspecified
44119                                                              <NA>
44123                                                             spray
44126                                               tablet/pill/capsule
44127                                               tablet/pill/capsule
44129                                             1 tablet/pill/capsule
44131                                                   based on weight
44154                                                       unspecified
44155                                                   based on weight
44157                                                   based on weight
44158                                                   based on weight
44207                                                      small amount
44209                                                              1 ml
44211                                      based on weight (60-120 lbs)
44212                                               tablet/pill/capsule
44214                                                              <NA>
44216                                      based on weight (60-120 lbs)
44218                                      based on weight (60-120 lbs)
44219                                                              <NA>
44220                                                              <NA>
44222                                                              <NA>
44223                                                              <NA>
44224                                                              <NA>
44225                                                              <NA>
44226                                                              <NA>
44227                                                              <NA>
44234                                                              <NA>
44235                                                              <NA>
44240                                                              <NA>
44241                                                              <NA>
44242                                                              <NA>
44243                                                              <NA>
44244                                                              <NA>
44245                                                              <NA>
44246                                                              <NA>
44247                                                              <NA>
44249                                             1 tablet/pill/capsule
44250                                             1 tablet/pill/capsule
44251                                             1 tablet/pill/capsule
44252                                             1 tablet/pill/capsule
44253                                                   based on weight
44268                                                   based on weight
44280                                                      small amount
44282                                                      small amount
44309                                                              <NA>
44330                                               tablet/pill/capsule
44334                                               tablet/pill/capsule
44335                                               tablet/pill/capsule
44336                                               tablet/pill/capsule
44337                                               tablet/pill/capsule
44347                                                              <NA>
44350                                                              <NA>
44363                                                              <NA>
44372                                                          ointment
44385                                                              <NA>
44386                                                              <NA>
44390                                               tablet/pill/capsule
44391                                                              <NA>
44392                                                              <NA>
44395                                               tablet/pill/capsule
44398                                                      pack/package
44421                                                   based on weight
44428                                               tablet/pill/capsule
44429                                                              <NA>
44431                                                   based on weight
44434                                                              <NA>
44452                                                   based on weight
44473                                                   based on weight
44501                                                              <NA>
44502                                                              <NA>
44503                                                              <NA>
44504                                                              <NA>
44505                                                              <NA>
44507                                                              <NA>
44508                                                              <NA>
44509                                                              <NA>
44518                                                              <NA>
44520                                                              <NA>
44524                                                              <NA>
44531                                                              <NA>
44532                                                              <NA>
44542                                                      pack/package
44543                                               tablet/pill/capsule
44544                                      based on weight (50-100 lbs)
44545                                                              <NA>
44546                                                   based on weight
44547                                                   based on weight
44552                                                              <NA>
44558                                               tablet/pill/capsule
44559                                                       bottle/vial
44570                                               tablet/pill/capsule
44571                                                       bottle/vial
44576                                               tablet/pill/capsule
44577                                                       bottle/vial
44595                                                   0.25 inch strip
44607                                                     1 application
44608                                               tablet/pill/capsule
44609                                                       unspecified
44614                                               tablet/pill/capsule
44616                                               tablet/pill/capsule
44618                                               tablet/pill/capsule
44646                                                              <NA>
44649                                      based on weight (85-130 lbs)
44652                                                              <NA>
44653                                                              <NA>
44654                                                              <NA>
44655                                                              <NA>
44658                                                              <NA>
44660                                                              <NA>
44663                                                              <NA>
44671                                                   based on weight
44672                                                              <NA>
44677                                                              <NA>
44679                                                              <NA>
44683                                                              <NA>
44684                                               tablet/pill/capsule
44706                                                          ointment
44732                                                              <NA>
44742                                                   based on weight
44743                                                   based on weight
44745                                                   based on weight
44746                                                              <NA>
44747                                                            collar
44755                                                              <NA>
44757                                                              <NA>
44769                                                              <NA>
44771                                                   based on weight
44782                                                              <NA>
44795                                                        inch strip
44796                                                              <NA>
44797                                                              <NA>
44798                                                              <NA>
44799                                                              <NA>
44800                                                              <NA>
44804                                                              <NA>
44805                                                              <NA>
44820                                               tablet/pill/capsule
44827                                               tablet/pill/capsule
44828                                               tablet/pill/capsule
44829                                               tablet/pill/capsule
44830                                                              <NA>
44831                                                              <NA>
44834                                                              tube
44843                                             1 tablet/pill/capsule
44844                                             1 tablet/pill/capsule
44857                                                              <NA>
44858                                                              <NA>
44862                                               tablet/pill/capsule
44863                                                              <NA>
44864                                                              <NA>
44866                                                              <NA>
44867                                                            1 tube
44868                                                            1 tube
44869                                             1 tablet/pill/capsule
44870                                                              <NA>
44875                                                              <NA>
44877                                                              <NA>
44878                                                              <NA>
44879                                               tablet/pill/capsule
44899                                                              <NA>
44905                                                              <NA>
44915                                                              <NA>
44916                                                              <NA>
44917                                                            1 tube
44918                                                       combination
44920                                                              <NA>
44922                                                              <NA>
44924                                               tablet/pill/capsule
44925                                                              <NA>
44933                                                              <NA>
44936                                                              <NA>
44937                                                              <NA>
44938                                                              <NA>
44939                                                              <NA>
44946                                               tablet/pill/capsule
44947                                               tablet/pill/capsule
44948                                               tablet/pill/capsule
44949                                               tablet/pill/capsule
44950                                               tablet/pill/capsule
44957                                             1 tablet/pill/capsule
44958                                             1 tablet/pill/capsule
44990                                                              <NA>
44997                                                      pack/package
45005                                                              <NA>
45007                                                   based on weight
45014                                                   based on weight
45015                                                              <NA>
45016                                             1 tablet/pill/capsule
45017                                                              <NA>
45023                                                              <NA>
45027                                                              <NA>
45034                                                   0.25 inch strip
45045                                                   based on weight
45047                                                              <NA>
45053                                          based on weight (25 lbs)
45054                                       based on weight (10-24 lbs)
45055                                       based on weight (25-60 lbs)
45059                                      based on weight (50-100 lbs)
45061                                                   based on weight
45062                                                   based on weight
45063                                                              <NA>
45064                                                   based on weight
45066                                                              <NA>
45072                                                              <NA>
45073                                                              <NA>
45076                                               tablet/pill/capsule
45109                                               tablet/pill/capsule
45110                                                              <NA>
45112                                                      small amount
45115                                                              <NA>
45116                                                              <NA>
45117                                                      pack/package
45123                                                              <NA>
45134                                                              <NA>
45139                                                              <NA>
45149                                               tablet/pill/capsule
45150                                               tablet/pill/capsule
45154                                                   based on weight
45172                                                              <NA>
45173                                                              <NA>
45174                                                              <NA>
45175                                                              <NA>
45178                                             1 tablet/pill/capsule
45179                                                     1 bottle/vial
45180                                                      small amount
45181                                                      small amount
45182                                                   based on weight
45184                                      based on weight (50-100 lbs)
45185                                       based on weight (44-88 lbs)
45186                                                   based on weight
45187                                                   based on weight
45188                                                   based on weight
45189                                                   based on weight
45195                                                              <NA>
45199                                                              <NA>
45203                                               tablet/pill/capsule
45204                                                              <NA>
45208                                                              pump
45209                                                              <NA>
45210                                                      small amount
45212                                                   based on weight
45216                                                   based on weight
45224                                                              <NA>
45225                                                   based on weight
45236                                                   based on weight
45255                                                              <NA>
45257                                                              <NA>
45263                                               tablet/pill/capsule
45268                                                       unspecified
45273                                                              <NA>
45274                                                              <NA>
45280                                                              <NA>
45283                                                   based on weight
45286                                                              <NA>
45294                                                              <NA>
45295                                                              <NA>
45297                                                              <NA>
45298                                                   based on weight
45299                                                   based on weight
45302                                                   based on weight
45305                                                              <NA>
45307                                                       unspecified
45309                                                              <NA>
45310                                                   based on weight
45311                                                   based on weight
45312                                                   based on weight
45313                                                   based on weight
45322                                                              <NA>
45327                                                              <NA>
45335                                                              <NA>
45344                                               tablet/pill/capsule
45345                                               tablet/pill/capsule
45358                                                              <NA>
45359                                                              <NA>
45372                                                      small amount
45383                                                              <NA>
45403                                                              <NA>
45406                                                   based on weight
45411                                                          ointment
45425                       272 mcg ivermectin, 227 mg pyrantel pamoate
45426                                                       unspecified
45434                                                              <NA>
45435                                                              <NA>
45443                                                       combination
45445                                               tablet/pill/capsule
45451                                                   based on weight
45452                                                   based on weight
45463                                                              <NA>
45468                                                              <NA>
45470                                                   based on weight
45471                                                             mg/ml
45476                                                              <NA>
45479                                                              <NA>
45480                                                              <NA>
45484                                                   based on weight
45498                                                              <NA>
45499                                               tablet/pill/capsule
45500                                               tablet/pill/capsule
45503                                                              <NA>
45504                                               tablet/pill/capsule
45508                                                            1 tube
45531                                                              <NA>
45534                                                              <NA>
45553                                                              <NA>
45555                                                       unspecified
45556                                                   based on weight
45572                                                              <NA>
45582                                                   based on weight
45585                                               tablet/pill/capsule
45586                                                              <NA>
45587                                                              <NA>
45591                                                              <NA>
45592                                                              <NA>
45626                                                              <NA>
45629                                                              <NA>
45642                                                              <NA>
45650                                                   based on weight
45651                                               tablet/pill/capsule
45655                                                   based on weight
45656                                                   based on weight
45663                                                              <NA>
45664                                                   based on weight
45665                                                   based on weight
45666                                                              <NA>
45667                                                                 %
45670                                                              <NA>
45671                                                              <NA>
45674                                                             drops
45675                                                             drops
45676                                                             drops
45683                                                   based on weight
45684                                                              <NA>
45699                                                              <NA>
45700                                                              <NA>
45703                                                              <NA>
45704                                                              <NA>
45724                                                              <NA>
45725                                                              <NA>
45726                                                              <NA>
45727                                                              <NA>
45728                                                              <NA>
45729                                                              <NA>
45735                                               tablet/pill/capsule
45736                                                              tube
45751                                                              <NA>
45764                                                              <NA>
45775                                                              <NA>
45776                                                              <NA>
45786                                                              <NA>
45787                                                   based on weight
45791                                                   based on weight
45794                                                              <NA>
45798                                                              <NA>
45799                                             1 tablet/pill/capsule
45800                                             1 tablet/pill/capsule
45816                                                            collar
45820                                                   based on weight
45843                                                         as needed
45853                                                          inhalant
45862                                               tablet/pill/capsule
45863                                               tablet/pill/capsule
45864                                               tablet/pill/capsule
45869                                                   based on weight
45870                                                            1 pump
45871                                                              <NA>
45872                                             1 tablet/pill/capsule
45876                                                              <NA>
45886                                                              <NA>
45898                                               tablet/pill/capsule
45899                                                              tube
45901                                      based on weight (50-100 lbs)
45908                                               tablet/pill/capsule
45909                                                              tube
45914                                      based on weight (50-100 lbs)
45924                                                              <NA>
45968                                                              <NA>
45969                                                   based on weight
45970                                                   based on weight
45971                                                              <NA>
45972                                                              <NA>
45974                                                              <NA>
45990                                                   based on weight
45994                                                              <NA>
45995                                                      pack/package
45996                                                              <NA>
45997                                                   based on weight
46014                                                        inch strip
46018                                                   based on weight
46019                                                   based on weight
46020                                                              <NA>
46021                                               tablet/pill/capsule
46022                                               tablet/pill/capsule
46025                                               tablet/pill/capsule
46043                                               tablet/pill/capsule
46044                                               tablet/pill/capsule
46071                                               tablet/pill/capsule
46075                                                              <NA>
46076                                               tablet/pill/capsule
46077                                               tablet/pill/capsule
46078                                      based on weight (50-100 lbs)
46079                                                         50-100 mg
46085                                                              <NA>
46091                                                   based on weight
46092                                                   based on weight
46094                                                              <NA>
46095                                                              <NA>
46100                                      based on weight (50-100 lbs)
46101                                                              <NA>
46102                                                              <NA>
46103                                                              <NA>
46107                                               tablet/pill/capsule
46108                                                         injection
46110                                                   based on weight
46116                                      based on weight (50-100 lbs)
46119                                                   based on weight
46122                                                   based on weight
46128                                                              <NA>
46131                                                              <NA>
46132                                                              <NA>
46134                                                      pack/package
46169                                                              <NA>
46170                                                      small amount
46171                                                      small amount
46173                                                   based on weight
46174                                                   based on weight
46177                                                              <NA>
46179                                                              <NA>
46186                                                              <NA>
46198                                                   based on weight
46200                                               tablet/pill/capsule
46201                                               tablet/pill/capsule
46202                                                              <NA>
46213                                                            1 tube
46218                                               tablet/pill/capsule
46219                                               tablet/pill/capsule
46226                                                              <NA>
46227                                                   based on weight
46255                                                      small amount
46265                                                              <NA>
46277                                             1 tablet/pill/capsule
46278                                             1 tablet/pill/capsule
46287                                             1 tablet/pill/capsule
46288                                             1 tablet/pill/capsule
46291                                             1 tablet/pill/capsule
46292                                             1 tablet/pill/capsule
46293                                             1 tablet/pill/capsule
46295                                             1 tablet/pill/capsule
46296                                             1 tablet/pill/capsule
46302                                               tablet/pill/capsule
46303                                                              <NA>
46305                                                              <NA>
46308                                                              <NA>
46311                                                              <NA>
46312                                               tablet/pill/capsule
46313                                                              <NA>
46314                                                              <NA>
46319                                                      small amount
46320                                                              <NA>
46324                                                              <NA>
46325                                                              <NA>
46328                                                              <NA>
46345                                                              <NA>
46350                                                              <NA>
46355                                                              <NA>
46358                                                              <NA>
46360                                                              pump
46377                                                              pump
46379                                                              <NA>
46399                                               tablet/pill/capsule
46406                                                              3 ml
46410                                                              <NA>
46411                                                              <NA>
46413                                                            collar
46418                                                            collar
46424                                                            collar
46431                                                            collar
46432                                                      small amount
46435                                                              <NA>
46436                                                       application
46474                                                   based on weight
46475                                                   based on weight
46476                                                   based on weight
46478                                                   based on weight
46479                                                   based on weight
46482                                      based on weight (50-100 lbs)
46483                                       based on weight (56-95 lbs)
46486                                                   based on weight
46487                                               tablet/pill/capsule
46488                                               tablet/pill/capsule
46489                                               tablet/pill/capsule
46490                                                              <NA>
46493                                                   based on weight
46494                                               tablet/pill/capsule
46499                                                              <NA>
46502                                                              <NA>
46504                                                              <NA>
46505                                                              <NA>
46506                                                              <NA>
46512                                                              <NA>
46517                                                              <NA>
46521                                                              <NA>
46524                                                              <NA>
46526                                                              <NA>
46527                                                              <NA>
46528                                                              <NA>
46529                                                              <NA>
46530                                                              <NA>
46532                                                              <NA>
46533                                                              <NA>
46534                                                              <NA>
46544                                                              <NA>
46547                                                              <NA>
46551                                                              <NA>
46553                                                              <NA>
46555                                                             spray
46568                                                              <NA>
46569                                                              <NA>
46570                                                              <NA>
46571                                                              <NA>
46572                                                       combination
46573                                                              <NA>
46574                                                              <NA>
46575                                                              <NA>
46579                                                              <NA>
46588                                                              <NA>
46590                                                              <NA>
46591                                                              <NA>
46593                                                              <NA>
46606                                                              <NA>
46607                                                              <NA>
46615                                                   based on weight
46616                                                   based on weight
46617                                               tablet/pill/capsule
46618                                                              <NA>
46664                                                            1 tube
46665                                                              <NA>
46676                                                      small amount
46680                                                              <NA>
46687                                                              <NA>
46690                                                             spray
46694                                                       application
46702                                                             spray
46703                                                          wipe/pad
46716                                                              <NA>
46717                                                              <NA>
46718                                                              <NA>
46729                                                       combination
46730                                                       combination
46732                                                              <NA>
46737                                                              <NA>
46747                                                              <NA>
46753                                                      small amount
46762                                                              <NA>
46763                                                              <NA>
46766                                                              <NA>
46767                                                   based on weight
46771                                                              <NA>
46775                                                   based on weight
46776                                                   based on weight
46777                                                   based on weight
46781                                      based on weight (50-100 lbs)
46782                                      based on weight (60-120 lbs)
46783                                                      small amount
46784                                      based on weight (50-100 lbs)
46785                                      based on weight (60-120 lbs)
46786                                                   based on weight
46788                                             1 tablet/pill/capsule
46789                                             1 tablet/pill/capsule
46804                                                              <NA>
46811                                             1 tablet/pill/capsule
46812                                             1 tablet/pill/capsule
46816                                                   based on weight
46818                                                              <NA>
46826                                                              <NA>
46827                                                              <NA>
46835                                                              <NA>
46836                                                              <NA>
46849                                                              <NA>
46853                                                              <NA>
46867                                                              <NA>
46874                                                        inch strip
46880                                                          ointment
46881                                                              <NA>
46883                                                              <NA>
46884                                             1 tablet/pill/capsule
46885                                             1 tablet/pill/capsule
46889                                                              <NA>
46891                                                    160 mg, 800 mg
46902                                                              <NA>
46903                                                       application
46904                                               tablet/pill/capsule
46905                                                              <NA>
46908                                                             spray
46915                                                          ointment
46931                                                      pack/package
46938                                                      pack/package
46944                                                      pack/package
46961                                                          ointment
46962                                                              <NA>
46972                                             1 tablet/pill/capsule
46973                                             1 tablet/pill/capsule
46976                                                              <NA>
46977                                                                 %
46978                                                              <NA>
46979                                                              <NA>
46980                                                              <NA>
46981                                                              <NA>
46982                                                      small amount
46983                                                              <NA>
46984                                                              dose
46985                                                              dose
46986                                                   based on weight
47000                                                              <NA>
47004                                      based on weight (50-100 lbs)
47010                                                   based on weight
47011                                                   based on weight
47018                                                   based on weight
47024                                                   based on weight
47025                                                   based on weight
47040                                                              <NA>
47041                                                              <NA>
47042                                                              <NA>
47043                                                   based on weight
47045                                                              <NA>
47049                                                              <NA>
47050                                                              <NA>
47055                                                              <NA>
47060                                                              <NA>
47065                                                              <NA>
47069                                                              <NA>
47076                                                              <NA>
47080                                                              <NA>
47081                                                              <NA>
47085                                                   based on weight
47086                                                   based on weight
47090                                                              <NA>
47095                                                   based on weight
47096                                                   based on weight
47097                                                   based on weight
47098                                                       unspecified
47104                                                      small amount
47105                                                      small amount
47106                                                              tube
47108                                                              <NA>
47123                                                              <NA>
47125                                                              <NA>
47126                                                              <NA>
47128                                                              <NA>
47137                                                              <NA>
47140                                                              <NA>
47143                                                   based on weight
47146                                                              <NA>
47152                                                              <NA>
47154                                                   based on weight
47155                                             1 tablet/pill/capsule
47156                                             1 tablet/pill/capsule
47162                                                       application
47164                                                             units
47178                                                   based on weight
47180                                                              <NA>
47181                                                              tube
47183                                               tablet/pill/capsule
47184                                               tablet/pill/capsule
47185                                                              <NA>
47186                                                              <NA>
47187                                               tablet/pill/capsule
47193                                                   based on weight
47194                                                   based on weight
47196                                                   based on weight
47197                                               tablet/pill/capsule
47204                                                              <NA>
47208                                               tablet/pill/capsule
47209                                             1 tablet/pill/capsule
47210                                             1 tablet/pill/capsule
47220                                                            collar
47221                                                              <NA>
47222                                                             spray
47240                                                              <NA>
47248                                                       unspecified
47251                                                       unspecified
47253                                                   based on weight
47260                                                   based on weight
47266                                                              <NA>
47302                                                              <NA>
47305                                             1 tablet/pill/capsule
47323                                                              <NA>
47325                                                              <NA>
47334                                                   based on weight
47343                                                              <NA>
47345                                                              <NA>
47350                                                              puff
47355                                                      small amount
47360                                                              <NA>
47390                                                       combination
47407                                                              <NA>
47409                                                              <NA>
47411                                                   based on weight
47412                                             1 tablet/pill/capsule
47415                                             1 tablet/pill/capsule
47416                                                   based on weight
47417                                                   based on weight
47420                                                   based on weight
47421                                                   based on weight
47433                                                              <NA>
47439                                                              <NA>
47451                                                              <NA>
47478                                                   based on weight
47479                                               tablet/pill/capsule
47481                                                        2.27 mg/lb
47483                                                      small amount
47484                                                            collar
47486                                                   based on weight
47490                                                              <NA>
47493                                                   based on weight
47496                                               tablet/pill/capsule
47497                                             1 tablet/pill/capsule
47498                                                            collar
47513                                                              <NA>
47515                                                               mcg
47517                                                              <NA>
47524                                                              <NA>
47539                                                              <NA>
47540                                                   moderate amount
47544                                                              <NA>
47547                                                              <NA>
47557                                                            collar
47559                                                              <NA>
47561                                                              <NA>
47562                                                   based on weight
47563                                                   based on weight
47576                                                       bottle/vial
47577                                               tablet/pill/capsule
47578                                               tablet/pill/capsule
47580                                                   syringe/pipette
47586                                               tablet/pill/capsule
47587                                                       bottle/vial
47588                                                       combination
47589                                                              <NA>
47590                                                              <NA>
47592                                                              <NA>
47593                                                              <NA>
47594                                                              <NA>
47595                                                              <NA>
47597                                                              <NA>
47600                                                              <NA>
47628                                                              tube
47629                                                              <NA>
47630                                                              <NA>
47635                                                              <NA>
47636                                                              <NA>
47658                                                              <NA>
47681                                               tablet/pill/capsule
47682                                               tablet/pill/capsule
47684                                                             spray
47693                                                          wipe/pad
47694                                                            powder
47696                                               tablet/pill/capsule
47698                                                          wipe/pad
47699                                                            powder
47702                                                              <NA>
47706                                                              <NA>
47715                                                              <NA>
47716                                                              <NA>
47720                                                      small amount
47721                                                              <NA>
47733                                                   based on weight
47734                                                              <NA>
47739                                                              <NA>
47743                                                              <NA>
47744                                               tablet/pill/capsule
47745                                                              <NA>
47746                                                              <NA>
47752                                                            1 tube
47755                                                            1 tube
47760                                             1 tablet/pill/capsule
47800                                               tablet/pill/capsule
47801                                                       application
47802                                               tablet/pill/capsule
47803                                                      small amount
47808                                                   based on weight
47810                                                   based on weight
47811                                                   based on weight
47812                                                   based on weight
47815                                                   based on weight
47816                                                   based on weight
47817                                                       unspecified
47825                                                              <NA>
47835                                             1 tablet/pill/capsule
47836                                                   based on weight
47840                                             23 mg, 228 mg, 460 mg
47847                                                       unspecified
47860                                                              <NA>
47861                                                              <NA>
47862                                                              <NA>
47863                                                              <NA>
47867                                                              <NA>
47877                                                              <NA>
47887                                                   based on weight
47888                                                   based on weight
47889                                                              <NA>
47890                                                              <NA>
47891                                                              <NA>
47892                                                              <NA>
47894                                                              <NA>
47900                                                      small amount
47909                                                              <NA>
47910                                                              <NA>
47917                                                              <NA>
47928                                                              <NA>
47949                                                              <NA>
47951                                                              <NA>
47952                                                              <NA>
47953                                                             spray
47969                                                   based on weight
47970                                                   based on weight
47971                                                   based on weight
47975                                               tablet/pill/capsule
47976                                             1 tablet/pill/capsule
47981                                                   based on weight
47983                                                              <NA>
47984                                                   based on weight
47985                                                   based on weight
47989                                                   based on weight
47990                                                   based on weight
47995                                                      small amount
47996                                      based on weight (50-100 lbs)
47997                                      based on weight (60-120 lbs)
47998                                                              <NA>
47999                                                              <NA>
48000                                                              <NA>
48001                                                              <NA>
48002                                                              <NA>
48003                                                              <NA>
48004                                                              <NA>
48005                                                              <NA>
48006                                                              <NA>
48007                                                              <NA>
48008                                                              <NA>
48013                                                   based on weight
48014                                                   based on weight
48016                                                              <NA>
48020                                             1 tablet/pill/capsule
48021                                             1 tablet/pill/capsule
48028                                             1 tablet/pill/capsule
48029                                             1 tablet/pill/capsule
48030                                             1 tablet/pill/capsule
48031                                          2 tablets/pills/capsules
48032                                             1 tablet/pill/capsule
48033                                             1 tablet/pill/capsule
48034                                                          0.25 tsp
48035                                                 0.25 pack/package
48040                                               tablet/pill/capsule
48041                                                              <NA>
48046                                             1 tablet/pill/capsule
48047                                             1 tablet/pill/capsule
48048                                             1 tablet/pill/capsule
48049                                               tablet/pill/capsule
48069                                                       unspecified
48072                                                      small amount
48087                                               tablet/pill/capsule
48088                                               tablet/pill/capsule
48089                                                              <NA>
48090                                                              <NA>
48094                                                              <NA>
48100                                                        inch strip
48101                                                              <NA>
48102                                               tablet/pill/capsule
48103                                                              <NA>
48105                                               tablet/pill/capsule
48106                                                      small amount
48107                                                      small amount
48108                                                      small amount
48109                                               tablet/pill/capsule
48110                                                            collar
48114                                                      small amount
48120                                               tablet/pill/capsule
48121                                                              <NA>
48127                                               tablet/pill/capsule
48128                                                              <NA>
48129                                                              <NA>
48131                                                              <NA>
48132                                               tablet/pill/capsule
48133                                               tablet/pill/capsule
48142                                               tablet/pill/capsule
48143                                                              <NA>
48147                                               tablet/pill/capsule
48148                                               tablet/pill/capsule
48151                                               tablet/pill/capsule
48152                                               tablet/pill/capsule
48154                                                              <NA>
48155                                                              <NA>
48157                                               tablet/pill/capsule
48158                                               tablet/pill/capsule
48159                                             1 tablet/pill/capsule
48160                                             1 tablet/pill/capsule
48161                                                              <NA>
48162                                                              <NA>
48163                                                              <NA>
48167                                               tablet/pill/capsule
48169                                                              <NA>
48170                                                              <NA>
48171                                                              <NA>
48178                                                              <NA>
48182                                                       combination
48185                                                              <NA>
48188                                                      small amount
48201                                                              <NA>
48213                                                            liquid
48214                                               tablet/pill/capsule
48215                                               tablet/pill/capsule
48217                                                              <NA>
48218                                                              <NA>
48220                                                       unspecified
48221                                                       unspecified
48222                                                       unspecified
48223                                                              <NA>
48231                                                              <NA>
48237                                                        inch strip
48238                                                              <NA>
48240                                                              <NA>
48248                                                              <NA>
48251                                                   based on weight
48252                                                   based on weight
48258                                             1 tablet/pill/capsule
48265                                                              <NA>
48266                                                              <NA>
48267                                                              <NA>
48271                                                              <NA>
48274                                                              <NA>
48277                                                              <NA>
48285                                                              <NA>
48287                                                              <NA>
48288                                                              <NA>
48289                                                              <NA>
48290                                                              <NA>
48291                                                              <NA>
48292                                                              <NA>
48294                                                          ointment
48297                                               tablet/pill/capsule
48298                                               tablet/pill/capsule
48299                                                          ointment
48300                                               tablet/pill/capsule
48306                                                   based on weight
48307                                                              <NA>
48310                                                   based on weight
48311                                                              <NA>
48312                                                              <NA>
48314                                                              <NA>
48322                                                     5 billion cfu
48327                                                              <NA>
48328                                                              <NA>
48334                                                              <NA>
48336                                                              <NA>
48337                                                              <NA>
48338                                                              <NA>
48339                                                              <NA>
48342                                                              <NA>
48343                                                             spray
48344                                                              <NA>
48345                                                       application
48350                                                              <NA>
48351                                                              <NA>
48352                                                              <NA>
48353                                                              <NA>
48354                                                              <NA>
48355                                                                 %
48374                                                              <NA>
48376                                                              <NA>
48377                                                              <NA>
48378                                                              <NA>
48380                                               tablet/pill/capsule
48381                                               tablet/pill/capsule
48383                                               tablet/pill/capsule
48384                                               tablet/pill/capsule
48394                                                              <NA>
48406                                               tablet/pill/capsule
48420                                                              <NA>
48438                                                              <NA>
48439                                               tablet/pill/capsule
48440                                               tablet/pill/capsule
48441                                               tablet/pill/capsule
48442                                               tablet/pill/capsule
48444                                             1 tablet/pill/capsule
48447                                                   based on weight
48448                                                   based on weight
48481                                                              <NA>
48483                                                              <NA>
48494                                               tablet/pill/capsule
48495                                                              <NA>
48496                                                              <NA>
48497                                                              <NA>
48498                                                              <NA>
48499                                                      small amount
48500                                                              <NA>
48502                                                              <NA>
48503                                                              tube
48504                                                              <NA>
48505                                                              <NA>
48508                                                              <NA>
48513                                               tablet/pill/capsule
48520                                                              <NA>
48521                                                              <NA>
48540                                                              <NA>
48541                                               tablet/pill/capsule
48542                                               tablet/pill/capsule
48560                                                              tube
48598                                               tablet/pill/capsule
48602                                                              <NA>
48609                                                              <NA>
48610                                                              <NA>
48611                                                              <NA>
48615                                                              <NA>
48621                                                      small amount
48624                                                             spray
48633                                                              <NA>
48636                                                                2%
48643                                               tablet/pill/capsule
48661                                               tablet/pill/capsule
48662                                                              <NA>
48664                                             1 tablet/pill/capsule
48667                                             1 tablet/pill/capsule
48668                                                     1 application
48673                                                              <NA>
48680                                               tablet/pill/capsule
48683                                                   based on weight
48684                                                   based on weight
48692                                                              <NA>
48693                                                              <NA>
48694                                                              <NA>
48696                                                   based on weight
48697                                                   based on weight
48698                                                   based on weight
48712                                             1 tablet/pill/capsule
48713                                             1 tablet/pill/capsule
48718                                                              <NA>
48719                                                              <NA>
48720                                      based on weight (50-100 lbs)
48721                                                   based on weight
48722                                                            collar
48724                                               tablet/pill/capsule
48725                                                            collar
48729                                               tablet/pill/capsule
48733                                               tablet/pill/capsule
48734                                             1 tablet/pill/capsule
48735                                             1 tablet/pill/capsule
48736                                                            collar
48770                                                              <NA>
48782                                                              <NA>
48802                                                              <NA>
48806                                                              <NA>
48808                                                              <NA>
48812                                                              <NA>
48819                                                              <NA>
48821                                                              <NA>
48835                                                             drops
48842                                                              <NA>
48845                                                   based on weight
48855                                                              <NA>
48859                                                              <NA>
48862                                                              <NA>
48869                                                              <NA>
48877                                                              <NA>
48889                                                      pack/package
48890                                               tablet/pill/capsule
48891                                               tablet/pill/capsule
48892                                                          ointment
48893                                                              <NA>
48894                                                              <NA>
48902                                                      small amount
48906                                                      small amount
48917                                      based on weight (50-100 lbs)
48918                                      based on weight (50-100 lbs)
48921                                                             spray
48935                                      based on weight (50-100 lbs)
48938                                                              <NA>
48946                                                              <NA>
48971                                                              <NA>
48994                                                              <NA>
48997                                                              <NA>
49002                                                              <NA>
49005                                                              <NA>
49012                                                       application
49015                                                              <NA>
49016                                                              <NA>
49017                                                              <NA>
49018                                                              <NA>
49019                                                              <NA>
49025                                                              <NA>
49026                                                              <NA>
49027                                                             spray
49028                                                              <NA>
49030                                                              <NA>
49033                                               tablet/pill/capsule
49034                                               tablet/pill/capsule
49035                                               tablet/pill/capsule
49036                                                       unspecified
49042                                                       unspecified
49044                                                       unspecified
49046                                                       unspecified
49051                                                              <NA>
49052                                                              <NA>
49082                                                   based on weight
49084                                                   based on weight
49096                                                   based on weight
49105                                                              <NA>
49113                                                      small amount
49114                                                              <NA>
49117                                                              <NA>
49120                                                              <NA>
49123                                               tablet/pill/capsule
49127                                                              <NA>
49128                                      based on weight (50-100 lbs)
49129                                      based on weight (60-120 lbs)
49130                                                      small amount
49163                                                              <NA>
49164                                                   based on weight
49167                                                              <NA>
49168                                                              <NA>
49169                                                              <NA>
49170                                                              <NA>
49184                                                       application
49185                                                              <NA>
49186                                                              <NA>
49193                                                              <NA>
49196                                                              <NA>
49208                                               tablet/pill/capsule
49209                                               tablet/pill/capsule
49216                                               tablet/pill/capsule
49217                                               tablet/pill/capsule
49218                          27 mg milbemycin oxime, 1620 mg spinosad
49219                                                              <NA>
49220                                                              <NA>
49227                                                      small amount
49229                                                      small amount
49231                                                      small amount
49232                                                    0.5 inch strip
49248                                                              <NA>
49252                                             1 tablet/pill/capsule
49253                                             1 tablet/pill/capsule
49304                                                      small amount
49314                                                   based on weight
49316                                               tablet/pill/capsule
49323                                                            1 tube
49324                                             1 tablet/pill/capsule
49343                                               tablet/pill/capsule
49345                                                             spray
49346                                                   based on weight
49348                                                   based on weight
49350                                               tablet/pill/capsule
49351                                               tablet/pill/capsule
49352                                                   based on weight
49371                                               tablet/pill/capsule
49372                                                              <NA>
49375                                                              <NA>
49376                                               tablet/pill/capsule
49377                                                              tube
49378                                               tablet/pill/capsule
49379                                                            1 tube
49388                          460 mg lufenuron, 23 mg milbemycin oxime
49393                                                              <NA>
49394                                                              <NA>
49395                                                              <NA>
49398                                                              <NA>
49401                                                              <NA>
49403                                                              <NA>
49404                                                              <NA>
49408                                               tablet/pill/capsule
49409                                               tablet/pill/capsule
49410                                                              <NA>
49437                                               tablet/pill/capsule
49438                                               tablet/pill/capsule
49442                                               tablet/pill/capsule
49460                                                   based on weight
49461                                                   based on weight
49462                                                              <NA>
49463                                                   based on weight
49473                                                   based on weight
49509                                                       bottle/vial
49510                                               tablet/pill/capsule
49518                                                              <NA>
49520                                                              <NA>
49523                                                              <NA>
49524                                                              <NA>
49525                                                              <NA>
49526                                                      small amount
49531                                                              <NA>
49549                                                   based on weight
49550                                                   based on weight
49553                                                              <NA>
49554                                                              <NA>
49567                                                   based on weight
49568                                                          inhalant
49569                                      based on weight (50-100 lbs)
49572                                                   based on weight
49588                                                              <NA>
49589                                                              <NA>
49590                                                   based on weight
49591                                                   based on weight
49592                                               tablet/pill/capsule
49593                                                   based on weight
49596                                                              tube
49601                                                              <NA>
49604                                                              <NA>
49605                                               tablet/pill/capsule
49606                                                              <NA>
49607                                                              <NA>
49608                                                              <NA>
49640                                                              <NA>
49645                                                   based on weight
49649                                                   0.25 inch strip
49654                                                   0.25 inch strip
49659                                                        inch strip
49680                                                              <NA>
49698                                                              <NA>
49699                                                            1 tube
49705                                                              <NA>
49714                                                              <NA>
49715                                                              tube
49731                                                       unspecified
49748                                       based on weight (21-55 lbs)
49753                                                              <NA>
49754                                                              <NA>
49755                                                              <NA>
49756                                                              <NA>
49757                                                              <NA>
49758                                                              <NA>
49764                                                              <NA>
49765                                                              <NA>
49766                                                              <NA>
49767                                                       application
49768                                               tablet/pill/capsule
49769                                                      small amount
49773                                                          ointment
49783                                                              <NA>
49792                                                   based on weight
49793                                                   based on weight
49799                                                              <NA>
49812                                                              <NA>
49820                                      based on weight (50-100 lbs)
49821                                       based on weight (24-60 lbs)
49845                                                              <NA>
49846                                                              <NA>
49848                                                              <NA>
49849                                                       application
49852                                                     5 billion cfu
49854                                                      pack/package
49855                                                   based on weight
49856                                                              <NA>
49857                                                              <NA>
49861                                                   based on weight
49862                                                   based on weight
49871                                                          222 mg/g
49878                                                   based on weight
49883                                                      pack/package
49886                                                   based on weight
49889                                               tablet/pill/capsule
49890                                                       application
49898                                                          222 mg/g
49905                                                   based on weight
49906                                                   based on weight
49907                                                   based on weight
49908                                                   based on weight
49911                                               tablet/pill/capsule
49912                                                       application
49923                                                              <NA>
49924                                                              <NA>
49925                                                              <NA>
49928                                                              <NA>
49929                                                              <NA>
49963                                                              <NA>
49966                                                              <NA>
49978                                                   based on weight
49980                                                              <NA>
49985                                             1 tablet/pill/capsule
49986                                                     1 bottle/vial
49987                                             1 tablet/pill/capsule
49990                                                    1 pack/package
49991                                                   based on weight
49992                                                             drops
49993                                             1 tablet/pill/capsule
49994                                                             mg/kg
49995                                                             mg/kg
49996                                                       unspecified
49997                                                              <NA>
49998                                                              <NA>
49999                                                              <NA>
50000                                               tablet/pill/capsule
50001                                      based on weight (50-100 lbs)
50002                                                              pump
50004                                                   based on weight
50006                                                   based on weight
50007                                                           2 pumps
50008                                                   based on weight
50009                                                   based on weight
50011                                                              <NA>
50012                                                              <NA>
50014                                                              <NA>
50022                                                              <NA>
50029                                                              <NA>
50030                                                              <NA>
50033                                                              <NA>
50034                                                              <NA>
50048                                                              <NA>
50050                                                              <NA>
50073                                                              tube
50076                                                          25 mg/kg
50077                                                              <NA>
50107                                                   based on weight
50108                                                   based on weight
50115                                               tablet/pill/capsule
50116                                               tablet/pill/capsule
50117                                                   based on weight
50118                                                              <NA>
50154                                                              <NA>
50159                                                              <NA>
50161                                                              <NA>
50187                                                   based on weight
50189                                                   based on weight
50190                                                   based on weight
50194                                                   based on weight
50195                                                   based on weight
50196                                                   based on weight
50198                                             1 tablet/pill/capsule
50199                                                              dose
                                                                                              dose_original
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
248                                                                                                  1 tube
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
287                                                                                                  272 mg
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
372                                                                                                  136 mg
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
480                                                                                                  1 tube
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
635                                                                                                    3 mg
637                                                                                         based on weight
642                                                                                            small amount
645                                                                                                    3 mg
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
750                                                                                                  136 mg
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
757                                                                            based on weight (51-100 lbs)
760                                                                                                  1 drop
771                                                                                                   50 mg
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
863                                                                                                  200 mg
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
917                                                                                                  227 mg
918                                                                                                  250 mg
921                                                                            based on weight (51-100 lbs)
929                                                                                                  1 drop
930                                                                                                  1 drop
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
970                                                                                                  1 pump
977                                                                                             application
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1037                                                                                                 1 pump
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1131                                                                                                5 drops
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1274                                                                                                  23 mg
1285                                                                                            unspecified
1307                                                                                                 600 mg
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1348                                                                                               2 sprays
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1504                                                                                               0.25 tsp
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1690                                                                                                1 spray
1692                                                                                        moderate amount
1695                                                                                                 1 drop
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1861                                                                                                  75 mg
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2050                                                                           based on weight (51-100 lbs)
2072                                                                                                 500 mg
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2333                                                                                                 272 mg
2339                                                                                                 1 drop
2342                                                                                                 1 drop
2345                                                                                                272 mcg
2347                                                                                                272 mcg
2352                                                                                                272 mcg
2356                                                                                                272 mcg
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2409                                                                           based on weight (51-100 lbs)
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2450                                                                                                 150 mg
2453                                                                                                  60 mg
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2486                                                                                            as directed
2487                                                                                            as directed
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2599                                                                                            unspecified
2600                                                                                            unspecified
2627                                                                                                0.57 mg
2636                                                                                                  16 mg
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2699                                                                                               2 sprays
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2808                                                                                                1400 mg
2815                                                                                               300, 600
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2951                                                                                                 1 tube
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3092                                                                                                 100 mg
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3110                                                                                           small amount
3119                                                                                            as directed
3140                                                                                                2 pumps
3146                                                                                                  10 mg
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3212                                                                                                 1 pump
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3257                                                                           based on weight (50-100 lbs)
3261                                                                                                 500 mg
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3439                                                                                                 1 tube
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3465                                                                                                  50 mg
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3738                                                                                                1 mg/kg
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3804                                                                                                 200 mg
3815                                                                                        based on weight
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3903                                                                           based on weight (51-100 lbs)
3906                                                                           based on weight (51-100 lbs)
3911                                                                           based on weight (51-100 lbs)
3938                                                                           based on weight (51-100 lbs)
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3984                                                                           based on weight (51-100 lbs)
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4047                                                                                                  80 mg
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4204                                                                                                   1 ml
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4229                                                                                                15.7 ml
4234                                                                                                 100 mg
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4265                                                                                                 1 drop
4266                                                                                            as directed
4274                                                                                            unspecified
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4334                                                                                                   1 ml
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4341                                                                                                 100 mg
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4360                                                                                                1 spray
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4488                                                                                                   1 ml
4491                                                                                                   1 ml
4497                                                                           based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4611                                                                                               27, 1620
4617                                                                                             0.57 mg/ml
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4688                                                                                                 125 mg
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4700                                                                                                   5 mg
4703                                                                                                  23 mg
4705                                                                                                  23 mg
4711                                                                                                 1 drop
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4798                                                                                                  20 mg
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4850                                                                                                 1 drop
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4908                                                                                                272 mcg
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4996                                                                                            unspecified
4998                                                                                            unspecified
5040                                                                                                 136 mg
5043                                                                                                  spray
5046                                                                                                  spray
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5125                                                                                                   1 ml
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5165                                                                                                 100 mg
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5201                                                                                                  75 mg
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5469                                                                                                   2 ml
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5641                                                                                                 1.7 ml
5649                                                                                          5 billion cfu
5668                                                                                                272 mcg
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5737                                                                                                 750 mg
5747                                                                                        based on weight
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5774                                                                                                 750 mg
5777                                                                                            unspecified
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5930                                                                           based on weight (51-100 lbs)
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6074                                                                                                1 spray
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6090                                                                                        0.25 inch strip
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6152                                                                                                  23 mg
6161                                                                                                23, 460
6164                                                                                           small amount
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6215                                                                                                 1 pump
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6296                                                                                              0.125 tsp
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6358                                                                                            unspecified
6388                                                                                                 1 drop
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6399                                                                                                8 drops
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6739                                                                                                 125 mg
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6789                                                                                                272 mcg
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6839                                                                                                  75 mg
6864                                                                                                   1 ml
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6906                                                                                                272 mcg
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
6999                                                                                                 1 tube
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7013                                                                                                  20 mg
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7021                                                                            based on weight (44-88 lbs)
7023                                                                                                 1.6 ml
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7047                                                                                                 272 ug
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7240                                                                                                2 drops
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7291                                                                            based on weight (44-88 lbs)
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7787                                                                                                 1 tube
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7837                                                                                                 100 mg
7839                                                                                            application
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7941                                                                                                   1 ml
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8238                                                                                           small amount
8241                                                                                                  23 mg
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8337                                                                                            unspecified
8338                                                                                            unspecified
8341                                                                                                 1 drop
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8405                                                                                                 1 tube
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8454                                                                           based on weight (50-100 lbs)
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8541                                                                                                  spray
8546                                                                                                8 drops
8547                                                                                                 500 mg
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8694                                                                            based on weight (45-88 lbs)
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8721                                                                                                 200 mg
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8855                                                                                                272 mcg
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9049                                                                                                2 drops
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                           based on weight (51-100 lbs)
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9229                                                                                                  75 mg
9230                                                                                           small amount
9233                                                                                                 250 mg
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9312                                                                                                272 mcg
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9348                                                                                                 136 mg
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9390                                                                                                272 mcg
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9485                                                                                                 500 mg
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9635                                                                                               27, 1620
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9815                                                                                                  28 mg
9821                                                                                         1 pack/package
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9860                                                                                                  75 mg
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10056                                                                                               272 mcg
10057                                                                                                227 mg
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10123                                                                                                500 mg
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10149                                                                                              10 drops
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10160                                                                                                1.5 ml
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10271                                                                                                 23 mg
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10292                                                                                                 23 mg
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10343                                                                                                480 mg
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10432                                                                                                1 tube
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10650                                                                                                100 mg
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10658                                                                                                 50 mg
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10766                                                                                               272 mcg
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10905                                                                                           application
10925                                                                                                400 mg
10926                                                                                                  5 mg
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11052                                                                                                1 tube
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11085                                                                                           unspecified
11088                                                                                           unspecified
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11112                                                                                                200 mg
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11224                                                                                           unspecified
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11356                                                                                           unspecified
11360                                                                                           unspecified
11368                                                                          based on weight (50-100 lbs)
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11477                                                                          based on weight (51-100 lbs)
11482                                                                                            1.14 mg/lb
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11511                                                                                                125 mg
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11636                                                                                                100 mg
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11669                                                                                                0.5 mg
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11790                                                                                                 15 gm
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11856                                                                                               8 drops
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11926                                                                                               272 mcg
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12023                                                                                               5 mg/kg
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12190                                                                                                1 pump
12194                                                                                                272 ug
12213                                                                                               272 mcg
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12271                                                                           based on weight (45-88 lbs)
12273                                                                                          small amount
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12386                                                                                                1.4 ml
12394                                                                                           unspecified
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12402                                                                          based on weight (51-100 lbs)
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12567                                                                                               8 drops
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12784                                                                                        1 pack/package
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12833                                                                                                 27 mg
12836                                                                          based on weight (60-120 lbs)
12849                                                                                                 drops
12850                                                                                                 drops
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12874                                                                                                500 mg
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12945                                                                          based on weight (51-100 lbs)
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12959                                                                                               8 drops
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12979                                                                                               1 spray
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12996                                                                                                 16 mg
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13173                                                                                                1 drop
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13238                                                                                                500 mg
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13262                                                                                               272 mcg
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13318                                                                                               8 drops
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13487                                                                                                 20 mg
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13619                                                                                                100 mg
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13666                                                                                           application
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13693                                                                          based on weight (60-120 lbs)
13715                                                                                                750 mg
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13768                                                                                           application
13769                                                                                                 spray
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13786                                                                                                1 tube
13796                                                                                            1 wipe/pad
13803                                                                                                375 mg
13881                                                                                                  7 ml
13884                                                                                              2 sprays
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13908                                                                                             100 mg/ml
13910                                                                        based on weight (50.1-100 lbs)
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14072                                                                                               1500 mg
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14245                                                                           based on weight (22-44 lbs)
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14291                                                                                           unspecified
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14373                                                                                       based on weight
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14907                                                                                                 30 mg
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14969                                                                                             50 mcg/kg
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14999                                                                                             50 mcg/kg
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15092                                                                                                300 mg
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15137                                                                                              2 sprays
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15179                                                                           based on weight (25-75 lbs)
15184                                                                                                750 mg
15196                                                                                           application
15197                                                                                          small amount
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15252                                                                                               4 drops
15253                                                                                                227 mg
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15616                                                                                               272 mcg
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15776                                                                                                500 mg
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16553                                                                        based on weight (50.1-100 lbs)
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16639                                                                          based on weight (51-100 lbs)
16646                                                                                              10 drops
16657                                                                                             6-8 drops
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16689                                                                                             1.5 mg/ml
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16789                                                                                                1.1 ml
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16849                                                                                                1 pump
16860                                                                                                 80 mg
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16915                                                                                                100 mg
16916                                                                                                500 mg
16918                                                                                           unspecified
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17033                                                                                               272 mcg
17035                                                                                               272 mcg
17036                                                                                                136 mg
17042                                                                        based on weight (50.1-100 lbs)
17049                                                                                               272 mcg
17051                                                                                               1000 mg
17053                                                                                 1 tablet/pill/capsule
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17381                                                                                                 30 ml
17386                                                                                               272 mcg
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17440                                                                                                500 mg
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17633                                                                                               1.71 ml
17659                                                                          based on weight (50-100 lbs)
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17742                                                                                           application
17743                                                                                                1 drop
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17955                                                                                                 23 mg
17957                                                                                               4 drops
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18159                                                                                               6 drops
18164                                                                                               6 drops
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18249                                                                                                150 mg
18251                                                                                                powder
18252                                                                                                150 mg
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18464                                                                                                500 mg
18466                                                                                                1 drop
18467                                                                                               272 mcg
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18512                                                                                               272 mcg
18514                                                                           based on weight (21-55 lbs)
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18543                                                                                               6 drops
18562                                                                                                  1 ml
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18753                                                                                                 75 mg
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18821                                                                                               5 drops
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18847                                                                                       based on weight
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18882                                                                                           application
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18933                                                                                           unspecified
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19241                                                                                                300 mg
19242                                                                                                 75 mg
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19276                                                                                                1 tube
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19331                                                                                                500 mg
19335                                                                                                200 mg
19336                                                                                                100 mg
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19500                                                                                               0.57 mg
19537                                                                                       based on weight
19567                                                                                                150 mg
19568                                                                                                1 pump
19596                                                                          based on weight (51-100 lbs)
19603                                                                           based on weight (40-60 lbs)
19617                                                                                       2.68 ml of 9.8%
19641                                                                                           unspecified
19651                                                                                                1 drop
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19708                                                                                               272 mcg
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19856                                                                        based on weight (50.1-100 lbs)
19860                                                                                               1 mg/lb
19866                                                                                              2 sprays
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19969                                                                                               2 drops
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20001                                                                                                200 mg
20002                                                                                                500 mg
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20182                                                                                          small amount
20193                                                                                                500 mg
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20225                                                                                                200 mg
20231                                                                                                1 drop
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20251                                                                                          pack/package
20272                                                                                                1 tbsp
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20299                                                                                                1 tube
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20307                                                                                                 10 mg
20312                                                                                                2.3 mg
20315                                                                                           unspecified
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20406                                                                                                  3 ml
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20441                                                                                           application
20442                                                                                                600 mg
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20637                                                                                               272 mcg
20638                                                                                       2.68 ml of 9.8%
20640                                                                                               272 mcg
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20728                                                                                           unspecified
20738                                                                                              tapering
20745                                                                                                1 pump
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20750                                                                                               6 drops
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20820                                                                                               1200 mg
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20857                                                                                                136 mg
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20859                                                                                                136 mg
20860                                                                                                100 mg
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
20972                                                                                                 15 ml
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21017                                                                                               1 spray
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21069                                                                                               1000 mg
21070                                                                                               1000 mg
21071                                                                                                 23 mg
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21088                                                                                           unspecified
21102                                                                           based on weight (40-80 lbs)
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21116                                                                                                250 mg
21117                                                                                                200 mg
21118                                                                                                100 mg
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21124                                                                                               3 drops
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21132                                                                                                  3 ml
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21170                                                                                               272 mcg
21172                                                                                                 23 mg
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21192                                                                                                1 pump
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21328                                                                                                 50 mg
21331                                                                                           unspecified
21336                                                                                                960 mg
21337                                                                                               272 mcg
21338                                                                             based on weight (55+ lbs)
21348                                                                                                0.5 mg
21359                                                                                               23, 460
21361                                                                                               23, 460
21364                                                                                                750 mg
21367                                                                                                  2 ml
21369                                                                          based on weight (51-100 lbs)
21374                                                                                                500 mg
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21394                                                                                                272 mg
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21460                                                                                                 23 mg
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21491                                                                                                1 drop
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21498                                                                                                 90 mg
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21522                                                                                                1 tube
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21534                                                                                                1.5 ml
21535                                                                                                 16 mg
21545                                                                                 1 tablet/pill/capsule
21546                                                                                                1 tube
21547                                                                                                600 mg
21548                                                                                                500 mg
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21554                                                                                               2 mg/ml
21555                                                                                           unspecified
21558                                                                                               23, 460
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21587                                                                                               8 drops
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21603                                                                                               1000 mg
21604                                                                                                375 mg
21605                                                                             based on weight (55+ lbs)
21606                                                                                                 50 mg
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21632                                                                                           unspecified
21637                                                                                                1 drop
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21727                                                                                           unspecified
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21767                                                                                           unspecified
21782                                                                                               272 mcg
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21844                                                                                                272 mg
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21866                                                                                                  4 ml
21867                                                                                                136 mg
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21899                                                                                              50 mg/kg
21911                                                                                                 50 mg
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21915                                                                                                1 tube
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21927                                                                                                 20 mg
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22017                                                                                               272 mcg
22020                                                                                           as directed
22022                                                                                                  1 gm
22023                                                                          based on weight (51-100 lbs)
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22112                                                                                                 68 mg
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22162                                                                                                 75 mg
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22191                                                                                                1 tube
22196                                                                                          small amount
22197                                                                                                1 tube
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22269                                                                                               2000 mg
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22403                                                                                                 50 mg
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22459                                                                                           unspecified
22463                                                                                           unspecified
22482                                                                                                110 mg
22520                                                                                                  1 gm
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22556                                                                                                1 pump
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22599                                                                                                 25 mg
22600                                                                                                200 mg
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22670                                                                                                1 tube
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22709                                                                                                 15 gm
22710                                                                                                 60 ml
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22715                                                                                                 15 gm
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22721                                                                                                0.2 ml
22733                                                                                                collar
22734                                                                                                 23 mg
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22910                                                                                                136 mg
22911                                                                                                 20 mg
22912                                                                                                 20 mg
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22921                                                                                                500 mg
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23005                                                                                                1 drop
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23008                                                                                                1 drop
23009                                                                                                 12 ml
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23065                                                                                                 23 mg
23066                                                                          based on weight (51-100 lbs)
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23145                                                                                                100 mg
23146                                                                                                 16 mg
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23184                                                                                                 10 mg
23186                                                                                                  8 mg
23187                                                                                                 60 mg
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23248                                                                                               1000 mg
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23257                                                                                               1000 ml
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23281                                                                                                500 mg
23282                                                                                                 16 mg
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23285                                                                                                100 mg
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23305                                                                                                1 pump
23306                                                                                                1 pump
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23351                                                                                                 68 mg
23352                                                                                                 25 mg
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23354                                                                                                 15 mg
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23357                                                                                                 68 mg
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23361                                                                                                136 mg
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23385                                                                                                 23 mg
23386                                                                                                500 mg
23388                                                                          based on weight (51-100 lbs)
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23422                                                                                                1 tube
23423                                                                                                1 tube
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23452                                                                                              2 sprays
23455                                                                                                 75 mg
23456                                                                                                 spray
23457                                                                                                750 mg
23472                                                                           based on weight (21-55 lbs)
23482                                                                           based on weight (55-90 lbs)
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23507                                                                          based on weight (51-100 lbs)
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23548                                                                                                 23 mg
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23555                                                                                                0.3 mg
23557                                                                          based on weight (51-100 lbs)
23558                                                                                                0.7 mg
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23589                                                                                                1 tube
23590                                                                                           unspecified
23593                                                                                             0.6 mg/ml
23594                                                                                                300 mg
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23733                                                                                               5 drops
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23792                                                                                               272 mcg
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23825                                                                                                 10 mg
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
23989                                                                                               272 mcg
23990                                                                                                136 mg
24008                                                                                               272 mcg
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24044                                                                                               272 mcg
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24068                                                                                           unspecified
24069                                                                                             50 mcg/kg
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24113                                                                                                150 mg
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24146                                                                                                4.7 ml
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24201                                                                                               8 drops
24202                                                                                               8 drops
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24218                                                                                               272 mcg
24219                                                                                                136 mg
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24251                                                                                                1 drop
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24260                                                                                                100 mg
24261                                                                                 1 tablet/pill/capsule
24262                                                                                                1.4 ml
24263                                                                                                4.8 ml
24264                                                                                                500 mg
24265                                                                                 1 tablet/pill/capsule
24266                                                                                                 60 mg
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24325                                                                                                100 mg
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24379                                                                                                68 mcg
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24396                                                                                                500 mg
24397                                                                                                  1 gm
24399                                                                                                136 mg
24400                                                                          based on weight (50-100 lbs)
24401                                                                                                100 mg
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24404                                                                                                 25 mg
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24408                                                                                                 15 ml
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24418                                                                                                 10 mg
24419                                                                                                0.5 mg
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24427                                                                                                0.6 mg
24428                                                                                                 10 mg
24429                                                                                             0.125 tsp
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24434                                                                                                1 drop
24435                                                                          based on weight (50-100 lbs)
24436                                                                                                1 drop
24437                                                                          based on weight (60-120 lbs)
24438                                                                                                0.6 mg
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24461                                                                                             0.5 mg/kg
24462                                                                                               2 mg/kg
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24479                                                                                               5 drops
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24482                                                                                                136 mg
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24499                                                                                                 75 mg
24503                                                                                               2 drops
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24647                                                                                           unspecified
24648                                                                                           application
24651                                                                                                 50 mg
24652                                                                                                1 tube
24653                                                                                       moderate amount
24654                                                                                                1 tube
24660                                                                                       based on weight
24666                                                                                                 50 mg
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24776                                                                                               4 drops
24782                                                                                               4 drops
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24814                                                                                               272 mcg
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24826                                                                                               1000 mg
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24835                                                                                               272 mcg
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24880                                                                                               6 drops
24897                                                                                                200 mg
24898                                                                                                powder
24899                                                                                                 60 mg
24902                                                                          based on weight (51-100 lbs)
24903                                                                                                 60 mg
24904                                                                                                 16 mg
24907                                                                                                 16 mg
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24967                                                                                              2 sprays
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25003                                                                                                1 drop
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25040                                                                                                 23 mg
25041                                                                                               2.68 ml
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25067                                                                                               272 mcg
25079                                                                          based on weight (51-100 lbs)
25084                                                                                                325 mg
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25358                                                                                               8 drops
25359                                                                                                375 mg
25366                                                                                               8 drops
25367                                                                                           unspecified
25369                                                                                                  1 ml
25370                                                                                               6 drops
25372                                                                                                500 mg
25374                                                                                                500 mg
25377                                                                                                100 mg
25378                                                                                             0.125 tsp
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25501                                                                          based on weight (51-100 lbs)
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25517                                                                                             2.5 mg/kg
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25564                                                                                               272 mcg
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25579                                                                                                272 gm
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25590                                                                                               1000 mg
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25672                                                                                                0.5 ml
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25711                                                                                                1 tube
25725                                                                                              5 x 10^7
25726                                                                                               8 drops
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25816                                                                                                 20 mg
25817                                                                                                  2 ml
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25825                                                                                                500 mg
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25829                                                                                               1400 mg
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25846                                                                          based on weight (88-123 lbs)
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25942                                                                                               272 mcg
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                               5 drops
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26094                                                                                               1 spray
26095                                                                                               1620 mg
26110                                                                                               227 mcg
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26153                                                                                                1 drop
26154                                                                                                 13 ml
26155                                                                                                625 mg
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26160                                                                                              20 mg/kg
26161                                                                                               1 mg/kg
26165                                                                                       based on weight
26166                                                                                       based on weight
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26189                                                                                                1 tube
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26205                                                                                                 13 ml
26206                                                                                                625 mg
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26213                                                                                             4.4 mg/kg
26214                                                                                       based on weight
26215                                                                                       based on weight
26222                                                                                                 50 mg
26227                                                                                           unspecified
26229                                                                                           unspecified
26237                                                                                                100 mg
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26259                                                                                               1000 mg
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26287                                                                          based on weight (50-100 lbs)
26295                                                                          based on weight (60-121 lbs)
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26373                                                                                               2 drops
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26423                                                                                                240 mg
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26474                                                                                                 30 gm
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26477                                                                                                0.3 mg
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26503                                                                                                500 mg
26505                                                                                           as directed
26508                                                                                                1 pump
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26540                                                                                                1 pump
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26576                                                                                                 50 mg
26583                                                                                           unspecified
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26628                                                                                               272 mcg
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26674                                                                                               8 drops
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26727                                                                                                136 mg
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26741                                                                                                136 mg
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26743                                                                                                 75 mg
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26751                                                                                                136 mg
26760                                                                          based on weight (51-100 lbs)
26764                                                                                                100 ml
26765                                                                                                100 ml
26766                                                                                                100 ml
26769                                                                          based on weight (50-100 lbs)
26772                                                                                                100 ml
26773                                                                                                100 ml
26774                                                                                                100 ml
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26817                                                                                                 15 mg
26818                                                                                                100 mg
26819                                                                                                 15 gm
26821                                                                                                 50 mg
26822                                                                                                150 mg
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26832                                                                                              20 mg/kg
26833                                                                                              17 ml/lb
26836                                                                                               5 drops
26837                                                                                          pack/package
26838                                                                                                200 mg
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26857                                                                                                200 mg
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26966                                                                                              10 mg/kg
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26987                                                                                                  3 ml
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26991                                                                                               1000 mg
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
26993                                                                                               1000 mg
27012                                                                                              0.25 tsp
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27080                                                                                                0.3 ml
27081                                                                                               8 drops
27082                                                                                           as directed
27084                                                                                                100 mg
27085                                                                                 1 tablet/pill/capsule
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27137                                                                                                1 tube
27140                                                                                          small amount
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27225                                                                                               1500 mg
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27249                                                                                               6 ug/kg
27251                                                                                              50 mg/kg
27256                                                                                               1 spray
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27345                                                                                               272 mcg
27346                                                                                                136 mg
27347                                                                                               1620 mg
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27353                                                                                                500 mg
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27362                                                                                                 16 mg
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27370                                                                                                1 tube
27371                                                                                                500 mg
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27435                                                                                                 50 mg
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27479                                                                                               272 mcg
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27529                                                                          based on weight (51-100 lbs)
27589                                                                                              27, 1620
27594                                                                          based on weight (60-120 lbs)
27595                                                                                                500 mg
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27658                                                                                                 20 mg
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27723                                                                                                240 mg
27724                                                                                                 20 mg
27728                                                                                                240 mg
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27878                                                                                           unspecified
27880                                                                                           unspecified
27883                                                                                                 50 mg
27884                                                                                               2.68 ml
27885                                                                                                 23 mg
27886                                                                          based on weight (51-100 lbs)
27891                                                                                            0.23 mg/lb
27892                                                                                                136 mg
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27900                                                                                                1.4 ml
27901                                                                                                1.5 ml
27904                                                                                               1.59 ml
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27931                                                                                                100 mg
27934                                                                                            0.02 mg/kg
27935                                                                                               4 mg/kg
27936                                                                                             0.5 mg/kg
27937                                                                                               3 mg/kg
27938                                                                                                 50 mg
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27960                                                                                                 75 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28004                                                                                                272 ug
28006                                                                                                1 pump
28008                                                                                        1 pack/package
28009                                                                                                1 pump
28010                                                                                        1 pack/package
28011                                                                                               8 drops
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28018                                                                                       based on weight
28020                                                                                               5 drops
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28026                                                                                                500 mg
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28071                                                                                                1 tube
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28089                                                                                                100 mg
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28107                                                                                               1000 mg
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28129                                                                                               1000 mg
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28131                                                                                               1000 mg
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28141                                                                                               4 drops
28144                                                                          based on weight (51-100 lbs)
28150                                                                                                 10 mg
28151                                                                                                 20 mg
28152                                                                                               1000 mg
28153                                                                                               1 mg/lb
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28156                                                                                               1000 mg
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28244                                                                                                  2 mg
28245                                                                                               11.5 mg
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28262                                                                                               1000 mg
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28393                                                                                                 50 mg
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28404                                                                           based on weight (40-60 lbs)
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28529                                                                                                136 mg
28530                                                                                               1000 mg
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28604                                                                                                1 tube
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28616                                                                                               1 spray
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28626                                                                                               0.35 ml
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28632                                                                                                 50 mg
28639                                                                                                 75 mg
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28690                                                                                                 23 mg
28692                                                                                                0.3 mg
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28698                                                                                                0.3 mg
28699                                                                                                 50 mg
28710                                                                                           unspecified
28714                                                                                          small amount
28716                                                                                                 15 gm
28717                                                                                                960 mg
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28732                                                                                                500 mg
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28762                                                                                                  1 ml
28764                                                                                                1 drop
28765                                                                                                 50 mg
28766                                                                                                 50 mg
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28831                                                                                                1 drop
28832                                                                                                500 mg
28833                                                                                                1 tube
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28897                                                                          based on weight (51-100 lbs)
28899                                                                          based on weight (50-100 lbs)
28904                                                                          based on weight (51-100 lbs)
28905                                                                                                 15 mg
28906                                                                                                  3 ml
28907                                                                         based on weight (24.1-60 lbs)
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28988                                                                                                375 mg
28998                                                                                                 25 mg
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29008                                                                                                 23 mg
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29092                                                                                                  1 ml
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29097                                                                                                  1 ml
29098                                                                                                    ml
29099                                                                                                    ml
29100                                                                                                 75 mg
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29135                                                                                                  8 mg
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29150                                                                                                240 mg
29151                                                                           based on weight (40-88 lbs)
29152                                                                                                0.6 mg
29153                                                                                           unspecified
29154                                                                                                240 mg
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29506                                                                                                 50 mg
29509                                                                                                0.6 mg
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29579                                                                                                 15 gm
29580                                                                          based on weight (51-100 lbs)
29588                                                                          based on weight (51-100 lbs)
29592                                                                                                375 mg
29601                                                                                                 16 mg
29602                                                                                                 16 mg
29604                                                                                                 16 mg
29606                                                                                               272 mcg
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29691                                                                                                200 mg
29692                                                                                                150 mg
29693                                                                                                  1 mg
29694                                                                                                100 mg
29695                                                                                                 50 mg
29696                                                                                                1.5 gm
29697                                                                                                250 mg
29698                                                                                                250 mg
29699                                                                                                200 mg
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29729                                                                                                  1 gm
29730                                                                                                1.5 gm
29733                                                                                                750 mg
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29764                                                                                           unspecified
29765                                                                                           unspecified
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29794                                                                                           unspecified
29797                                                                                                227 mg
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29832                                                                                                1.5 ml
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29848                                                                                                1.5 ml
29851                                                                                                500 mg
29858                                                                                           unspecified
29859                                                                                                7.4 ml
29860                                                                                                7.4 ml
29861                                                                                                7.4 ml
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29906                                                                                                 25 mg
29907                                                                                                 15 mg
29933                                                                                 1 tablet/pill/capsule
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30098                                                                                               1000 mg
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30127                                                                                                100 mg
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30164                                                                                                2.5 ml
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30186                                                                                                 16 mg
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30213                                                                                                  4 gm
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30274                                                                          based on weight (51-100 lbs)
30277                                                                          based on weight (51-100 lbs)
30286                                                                          based on weight (51-100 lbs)
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30306                                                                                                 16 mg
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30353                                                                                                1 drop
30354                                                                                              10 drops
30355                                                                                          small amount
30356                                                                                                200 mg
30357                                                                                                 spray
30358                                                                                                100 mg
30359                                                                                                 75 mg
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30368                                                                                               272 mcg
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30385                                                                          based on weight (51-100 lbs)
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30494                                                                                                 23 mg
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30523                                                                                                 75 mg
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30534                                                                                               272 mcg
30536                                                                                             4-5 drops
30541                                                                                                1 tube
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30573                                                                                                 34 mg
30574                                                                                                230 mg
30590                                                                           based on weight (40-60 lbs)
30604                                                                         based on weight (40-60.1 lbs)
30619                                                                                                500 mg
30620                                                                                                300 mg
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30730                                                                                               272 mcg
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30784                                                                                               1000 mg
30792                                                                                                1 tube
30793                                                                                 1 tablet/pill/capsule
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30803                                                                                           unspecified
30811                                                                                                1 tube
30812                                                                                                160 mg
30813                                                                          based on weight (51-100 lbs)
30814                                                                                                1 tube
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30893                                                                                                1.9 ml
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30944                                                                                               1000 mg
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30960                                                                                                 1 tsp
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31012                                                                                                0.5 mg
31016                                                                                              0.75 tsp
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31097                                                                                               1000 mg
31098                                                                                                 25 mg
31105                                                                          based on weight (51-100 lbs)
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31136                                                                                                 23 mg
31137                                                                                                136 mg
31139                                                                        based on weight (60.1-121 lbs)
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31200                                                                                                 30 mg
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31233                                                                                                 23 mg
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31235                                                                                                 23 mg
31243                                                                                                 23 mg
31245                                                                                               6 drops
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31265                                                                                       based on weight
31268                                                                                           as directed
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31330                                                                                                1 pump
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31380                                                                                                 16 mg
31381                                                                                                 15 gm
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31410                                                                                               5 mg/kg
31411                                                                                               1 mg/kg
31412                                                                                               6 mg/ml
31413                                                                                                 50 mg
31414                                                                                               1000 mg
31415                                                                                               272 mcg
31416                                                                                               1000 mg
31417                                                                                               272 mcg
31418                                                                                               272 mcg
31419                                                                                               1000 mg
31420                                                                                                500 mg
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31507                                                                                                0.4 mg
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31599                                                                                                100 mg
31602                                                                          based on weight (51-100 lbs)
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31638                                                                                                136 mg
31640                                                                                          small amount
31641                                                                                                300 mg
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31651                                                                                                200 mg
31652                                                                                                  5 ml
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31654                                                                                                136 mg
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31680                                                                          based on weight (51-100 lbs)
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31811                                                                                                1 tube
31818                                                                                                1 tube
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31825                                                                                                1 tube
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31842                                                                                                1 pump
31843                                                                                       based on weight
31844                                                                                       based on weight
31845                                                                                                  1 ml
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31848                                                                                                 23 mg
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31898                                                                          based on weight (60-121 lbs)
31906                                                                                                1 tbsp
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31930                                                                                                 50 mg
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31967                                                                                                500 mg
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
32002                                                                          based on weight (51-100 lbs)
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32131                                                                                                  1 mg
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32212                                                                                                345 mg
32221                                                                                                 23 mg
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32354                                                                                                 25 mg
32355                                                                                                  5 mg
32356                                                                                                 25 mg
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32364                                                                                               1.75 ml
32365                                                                                               1.75 ml
32366                                                                                                 16 mg
32370                                                                                           unspecified
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32397                                                                                                0.6 mg
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32475                                                                                                300 mg
32476                                                                                                 75 mg
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32521                                                                                                1 drop
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32633                                                                                           unspecified
32635                                                                                           application
32637                                                                                                1 pump
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32694                                                                                                 spray
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32708                                                                                                100 mg
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32860                                                                                                 16 mg
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32912                                                                                                1 drop
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32939                                                                                                 30 mg
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32953                                                                                                 16 mg
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32983                                                                                                500 mg
32999                                                                          based on weight (51-100 lbs)
33004                                                                          based on weight (51-100 lbs)
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33014                                                                                                1 tube
33015                                                                              based on weight (30 lbs)
33022                                                                                               272 mcg
33023                                                                                       based on weight
33027                                                                                                136 mg
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33067                                                                                               5 drops
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33078                                                                          based on weight (51-100 lbs)
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33108                                                                                               272 mcg
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33123                                                                                                200 mg
33124                                                                                          small amount
33125                                                                                                100 mg
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33188                                                                                               1000 mg
33189                                                                                                 50 mg
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33317                                                                                               272 mcg
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33338                                                                                                 90 mg
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33504                                                                                                272 ug
33521                                                                                                 23 mg
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33691                                                                                                136 mg
33692                                                                                                150 mg
33693                                                                                                150 mg
33694                                                                                                500 mg
33695                                                                                                500 mg
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33697                                                                                                136 mg
33702                                                                                           unspecified
33706                                                                                               23, 460
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33818                                                                                                 15 mg
33822                                                                                               272 mcg
33823                                                                                                136 mg
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33825                                                                                                136 mg
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33850                                                                                               272 mcg
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33905                                                                                               1 spray
33907                                                                                                 spray
33909                                                                                               1 spray
33911                                                                           based on weight (44-88 lbs)
33913                                                                                               1 spray
33914                                                                                               1 spray
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33929                                                                                                1 tube
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34016                                                                                           unspecified
34022                                                                                           unspecified
34024                                                                                           unspecified
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34043                                                                          based on weight (50-100 lbs)
34044                                                                                                0.5 mg
34046                                                                           based on weight (44-88 lbs)
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34070                                                                                                136 mg
34071                                                                                                 50 mg
34072                                                                                                500 mg
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34092                                                                                                1 tube
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34105                                                                                               1 spray
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34111                                                                          based on weight (51-100 lbs)
34112                                                                                                 68 mg
34113                                                                                                  tube
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34162                                                                                                136 mg
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34282                                                                                                1 pump
34287                                                                                                1 drop
34288                                                                                               272 mcg
34289                                                                                                1 tube
34290                                                                                                  1 ml
34293                                                                                                1 tube
34304                                                                                                1 tube
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34341                                                                                               272 mcg
34342                                                                                           unspecified
34343                                                                                           unspecified
34344                                                                                               272 mcg
34345                                                                           based on weight (45-88 lbs)
34348                                                                                               5 drops
34356                                                                                                810 mg
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34369                                                                                                200 mg
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34430                                                                                       based on weight
34433                                                                                            0.05 mg/kg
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34456                                                                                               2 pumps
34457                                                                                                  1 gm
34458                                                                                                 30 mg
34459                                                                                                650 mg
34460                                                                                                 60 mg
34461                                                                                               1 mg/kg
34462                                                                                               1 mg/kg
34463                                                                                                  1 gm
34464                                                                                                325 mg
34465                                                                                                 20 mg
34466                                                                                                500 mg
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34468                                                                                               1620 mg
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34510                                                                                                400 mg
34513                                                                           based on weight (45-88 lbs)
34528                                                                                                 60 mg
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34612                                                                                                 16 mg
34614                                                                                                  1 ml
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34767                                                                                             2.5 mg/kg
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34791                                                                          based on weight (50-100 lbs)
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34845                                                                                   tablet/pill/capsule
34867                                                                                                100 mg
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34881                                                                                                 23 mg
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34940                                                                                                 35 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34973                                                                                                375 mg
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35026                                                                                             0.125 tsp
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35070                                                                                                500 mg
35074                                                                                           unspecified
35094                                                                          based on weight (51-100 lbs)
35101                                                                                                100 mg
35102                                                                                                0.2 mg
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35122                                                                                               2.25 ml
35124                                                                                                2.2 ml
35125                                                                          based on weight (60-121 lbs)
35126                                                                                                7.5 gm
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35155                                                                                                 16 mg
35160                                                                                           unspecified
35170                                                                                               272 mcg
35171                                                                                               272 mcg
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35190                                                                                                 10 mg
35191                                                                                                0.6 mg
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35213                                                                                                0.6 mg
35214                                                                          based on weight (51-100 lbs)
35215                                                                                                0.5 mg
35216                                                                                                 10 mg
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35258                                                                                               4 drops
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35263                                                                                                136 mg
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35282                                                                                                 50 mg
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35316                                                                                                 68 mg
35318                                                                                                 60 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35498                                                                                                136 mg
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35503                                                                                                200 mg
35504                                                                                          pack/package
35506                                                                                          small amount
35507                                                                                                1 drop
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35584                                                                                                  2 mg
35592                                                                                               3 drops
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35616                                                                                                200 mg
35617                                                                                                 20 mg
35618                                                                                                300 mg
35619                                                                                                500 mg
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35622                                                                                                200 mg
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35627                                                                                                 10 mg
35628                                                                                       based on weight
35633                                                                                           unspecified
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35643                                                                                                7.5 ml
35644                                                                                                2.5 mg
35645                                                                                                    ml
35656                                                                                           application
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35700                                                                                               1 spray
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35746                                                                                                200 mg
35747                                                                                                 50 mg
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35749                                                                                                136 mg
35751                                                                                                 16 mg
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35768                                                                             based on weight (55+ lbs)
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35779                                                                                               1500 mg
35782                                                                                               272 mcg
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35832                                                                                                900 mg
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35853                                                                                                200 ml
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35980                                                                                               272 mcg
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36083                                                                                                0.8 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36153                                                                                          small amount
36155                                                                                                1 tube
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36196                                                                                                0.4 mg
36198                                                                                                1.5 ml
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36258                                                                                                 75 mg
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36284                                                                                                500 mg
36288                                                                                       based on weight
36289                                                                                                300 mg
36292                                                                                               2.68 ml
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36376                                                                                               0.25 ml
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36400                                                                                                500 mg
36401                                                                                                 20 mg
36402                                                                                                2.5 mg
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36520                                                                                                 2 tsp
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36579                                                                                                1 tube
36580                                                                                                 50 mg
36595                                                                          based on weight (50-100 lbs)
36597                                                                                                 15 gm
36598                                                                                                500 mg
36599                                                                                                200 mg
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36605                                                                          based on weight (50-100 lbs)
36606                                                                                                 15 gm
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36623                                                                                                 15 gm
36624                                                                                           application
36626                                                                                          small amount
36630                                                                          based on weight (50-100 lbs)
36631                                                                                                 15 gm
36632                                                                          based on weight (50-100 lbs)
36633                                                                                                 15 gm
36635                                                                          based on weight (50-100 lbs)
36636                                                                                                 16 mg
36637                                                                                                 15 gm
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36660                                                                                               272 mcg
36661                                                                                                227 mg
36667                                                                                               9 mg/lb
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36776                                                                                                 10 mg
36777                                                                                                 20 mg
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36874                                                                                             1.5 mg/ml
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36879                                                                                             1.5 mg/ml
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36884                                                                                                1 pump
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36916                                                                                                  3 mg
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36946                                                                                                136 mg
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37076                                                                                                1 tube
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37080                                                                                                1 tube
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37091                                                                                                200 mg
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37103                                                                                               1 mg/kg
37104                                                                                             1-2 drops
37115                                                                                               7 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37262                                                                             based on weight (55+ lbs)
37263                                                                                                 10 mg
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37273                                                                                               8 drops
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37304                                                                                                 75 mg
37306                                                                                               5 mg/kg
37307                                                                                               1 mg/kg
37308                                                                                             0.5 mg/kg
37309                                                                                          small amount
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37446                                                                          based on weight (51-100 lbs)
37448                                                                                                1 pump
37449                                                                                       moderate amount
37451                                                                                           application
37453                                                                                                1 pump
37454                                                                                       moderate amount
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37495                                                                                                 spray
37496                                                                                               5 drops
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37581                                                                                                500 mg
37582                                                                                                  5 mg
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37649                                                                                                1.8 ml
37651                                                                                                collar
37652                                                                                             1.5 mg/ml
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37682                                                                                                500 mg
37686                                                                                                500 mg
37691                                                                                           application
37692                                                                                               272 mcg
37695                                                                                                200 mg
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37699                                                                                                1 drop
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37708                                                                                               1000 mg
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37807                                                                                                325 mg
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37836                                                                                                  1 mg
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37940                                                                                                 20 mg
37941                                                                                               5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37956                                                                                                 16 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38073                                                                                               272 mcg
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38129                                                                                                  2 mg
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38220                                                                                                 15 gm
38240                                                                           based on weight (22-55 lbs)
38248                                                                                                 16 mg
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38260                                                                                                136 mg
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38321                                                                                                 23 mg
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38341                                                                                               1 spray
38342                                                                          based on weight (51-100 lbs)
38350                                                                                                1 tube
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38361                                                                                       0.25 inch strip
38362                                                                                                 10 mg
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38370                                                                                               0.65 ml
38371                                                                                                 13 ml
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38398                                                                                                  5 mg
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38496                                                                                               272 mcg
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38535                                                                                                1 tbsp
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38638                                                                                                 15 gm
38643                                                                          based on weight (51-100 lbs)
38647                                                                                                  2, 4
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38716                                                                                                 15 gm
38722                                                                                          small amount
38723                                                                                              wipe/pad
38754                                                                                           unspecified
38764                                                                                                400 mg
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38776                                                                                               8 drops
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38808                                                                                                375 mg
38809                                                                                           unspecified
38810                                                                                                  3 ml
38816                                                                                        1 pack/package
38818                                                                                                460 mg
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38896                                                                          based on weight (51-100 lbs)
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38978                                                                                                1 tube
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39113                                                                                                100 mg
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39175                                                                                              10 mg/ml
39176                                                                          based on weight (51-100 lbs)
39177                                                                                                102 mg
39181                                                                                                  bath
39182                                                                                                 spray
39188                                                                                                 15 gm
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39261                                                                                              0.25 tsp
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39327                                                                                                 23 mg
39328                                                                                                 80 mg
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39385                                                                                               272 mcg
39388                                                                          based on weight (51-100 lbs)
39390                                                                                               272 mcg
39392                                                                                           unspecified
39415                                                                                                1 pump
39416                                                                                                 23 mg
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39436                                                                                                500 mg
39438                                                                          based on weight (51-100 lbs)
39440                                                                          based on weight (51-100 lbs)
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39464                                                                                               272 mcg
39478                                                                                               272 mcg
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39532                                                                                                500 mg
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39579                                                                                                 15 gm
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39605                                                                                                 75 mg
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39651                                                                                           unspecified
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39708                                                                                               272 mcg
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39745                                                                                                1 tube
39750                                                                                               4 drops
39754                                                                          based on weight (51-100 lbs)
39755                                                                                                1 tube
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39785                                                                                                 25 mg
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39809                                                                                               272 mcg
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39901                                                                                                0.3 mg
39909                                                                           based on weight (41-60 lbs)
39916                                                                                               3 drops
39917                                                                                               3 drops
39918                                                                                               2 drops
39919                                                                                       0.25 inch strip
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40003                                                                                                227 mg
40013                                                                            based on weight (0-10 lbs)
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40024                                                                                              10 drops
40038                                                                                              250, 500
40042                                                                                               272 mcg
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40053                                                                                               272 mcg
40054                                                                                                227 mg
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40095                                                                                               272 mcg
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40180                                                                          based on weight (51-100 lbs)
40186                                                                          based on weight (51-100 lbs)
40193                                                                                                272 ug
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40308                                                                                                 68 mg
40309                                                                                              50 mg/ml
40312                                                                              based on weight (70 lbs)
40313                                                                                                375 mg
40317                                                                                          small amount
40325                                                                                                272 mg
40331                                                                                               23, 228
40343                                                                                       moderate amount
40346                                                                                                960 mg
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40405                                                                                                100 mg
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40447                                                                                               4 drops
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40490                                                                                                500 mg
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40505                                                                                                240 mg
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40542                                                                                                  8 ml
40543                                                                                                 23 mg
40547                                                                                                0.5 mg
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40624                                                                                                150 mg
40625                                                                                                 75 mg
40634                                                                                       0.25 inch strip
40635                                                                                                500 mg
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40657                                                                                               272 mcg
40658                                                                                                136 mg
40684                                                                          based on weight (51-100 lbs)
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40794                                                                                        0.5 inch strip
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40826                                                                                                250 mg
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40869                                                                                                 75 mg
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40876                                                                                               272 mcg
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41002                                                                                               1000 mg
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41008                                                                                                500 mg
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41012                                                                                               1000 mg
41013                                                                                               1000 mg
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41017                                                                                                500 mg
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41055                                                                                                 60 mg
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41082                                                                                                500 mg
41083                                                                                                6.3 mg
41084                                                                              based on weight (70 lbs)
41085                                                                                                 50 mg
41086                                                                                                300 mg
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41092                                                                                                500 mg
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41100                                                                                                500 mg
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41105                                                                                               1000 mg
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41225                                                                                                 20 mg
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41243                                                                                               272 mcg
41246                                                                                           application
41250                                                                                                1 tube
41251                                                                                             0.5 mg/kg
41252                                                                                             6.1 mg/kg
41254                                                                                 1 tablet/pill/capsule
41255                                                                                                 16 mg
41256                                                                                                200 mg
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41302                                                                                                 60 mg
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41336                                                                                                1 pump
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41370                                                                                               11.5 mg
41371                                                                                           application
41372                                                                                                500 mg
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41399                                                                                               8 drops
41400                                                                                               0.75 ml
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41418                                                                                               1.34 ml
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41502                                                                                                1 tube
41505                                                                                              inhalant
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41653                                                                                               23, 460
41655                                                                                           unspecified
41661                                                                                                 75 mg
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41775                                                                                                136 mg
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41842                                                                                                1 drop
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41856                                                                                                500 mg
41862                                                                                               2 drops
41863                                                                                       moderate amount
41866                                                                                               272 mcg
41867                                                                                                 68 mg
41870                                                                                               23, 228
41872                                                                                           unspecified
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41892                                                                                                200 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41895                                                                                              25 drops
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41907                                                                                                100 gm
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41976                                                                                                 15 ml
41988                                                                          based on weight (51-100 lbs)
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42030                                                                                               5 drops
42032                                                                          based on weight (51-100 lbs)
42033                                                                                                 50 mg
42034                                                                                                500 mg
42035                                                                                                150 mg
42036                                                                                               3 drops
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42040                                                                                                1 tube
42041                                                                                                500 mg
42042                                                                                                 20 mg
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42053                                                                          based on weight (60-121 lbs)
42054                                                                                                 20 mg
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42113                                                                                                136 mg
42114                                                                                                375 mg
42115                                                                                                 60 mg
42116                                                                      2 tablets/pills/capsules - 50 mg
42117                                                                                                300 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42171                                                                                               8 drops
42174                                                                          based on weight (51-100 lbs)
42175                                                                                                250 mg
42176                                                                                                125 mg
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42355                                                                                               1.5 tsp
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42365                                                                                                1 pump
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42384                                                                          based on weight (51-100 lbs)
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42402                                                                          based on weight (51-100 lbs)
42403                                                                                                1 tube
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42479                                                                                                1 tube
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42518                                                                                                160 mg
42519                                                                                                 20 mg
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42566                                                                                                5 tbsp
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42767                                                                                                 68 mg
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42769                                                                                                 80 mg
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42821                                                                          based on weight (50-100 lbs)
42829                                                                                               4 drops
42833                                                                                               23, 228
42860                                                                                           as directed
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42909                                                                                                 75 mg
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43149                                                                                                  5 mg
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43187                                                                                                 50 mg
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43240                                                                                                 30 mg
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43251                                                                                                 23 mg
43254                                                                                                 23 mg
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43265                                                                                                460 mg
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43329                                                                                                272 mg
43334                                                                                               23, 228
43366                                                                                          small amount
43388                                                                                           unspecified
43396                                                                                                 15 gm
43397                                                                                                3.5 gm
43398                                                                                                500 mg
43399                                                                                                 50 mg
43400                                                                                                500 mg
43405                                                                                          small amount
43412                                                                                          small amount
43416                                                                                                 15 gm
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43436                                                                                                 16 mg
43443                                                                                                 16 mg
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43498                                                                                                900 mg
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43561                                                                                                500 mg
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43601                                                                                                1 drop
43610                                                                                      0.125 inch strip
43611                                                                                               272 mcg
43620                                                                                           unspecified
43621                                                                                           unspecified
43622                                                                                               272 mcg
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43641                                                                                                250 mg
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43712                                                                                               1 spray
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43755                                                                                                227 mg
43756                                                                                                136 mg
43765                                                                                                1 pump
43766                                                                                                125 mg
43778                                                                                               272 mcg
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43829                                                                                                600 ml
43831                                                                                               272 mcg
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43884                                                                                                  tube
43887                                                                                                  tube
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43897                                                                                                 15 gm
43898                                                                                                 16 mg
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44051                                                                                               5 drops
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44220                                                                                                1 tube
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44242                                                                                                 3 tsp
44243                                                                                           unspecified
44244                                                                                           unspecified
44245                                                                                                250 mg
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44330                                                                          based on weight (51-100 lbs)
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44421                                                                        based on weight (50.1-100 lbs)
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44501                                                                                               8 drops
44502                                                                                                  4 mg
44503                                                                                                 50 mg
44504                                                                                                 50 mg
44505                                                                                                500 mg
44507                                                                                          small amount
44508                                                                                                  4 mg
44509                                                                                                 45 mg
44518                                                                                               272 mcg
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44531                                                                              based on weight (70 lbs)
44532                                                                                                500 mg
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44552                                                                                                  1 ml
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44796                                                                                                1 drop
44797                                                                                                1 drop
44798                                                                                                100 mg
44799                                                                                           unspecified
44800                                                                                                100 mg
44804                                                                                           unspecified
44805                                                                                               1000 mg
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44831                                                                                                1 drop
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44870                                                                                                  1 mg
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44878                                                                                                300 mg
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44990                                                                                                0.5 gm
44997                                                                                           as directed
45005                                                                                           unspecified
45007                                                                                           unspecified
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45047                                                                                                1 tube
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45110                                                                                                150 mg
45112                                                                                               6 drops
45115                                                                                                100 mg
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45203                                                                                                136 mg
45204                                                                                                  8 mg
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45216                                                                          based on weight (51-100 lbs)
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45236                                                                          based on weight (51-100 lbs)
45255                                                                                       based on weight
45257                                                                                                  1 ml
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45274                                                                                               5 drops
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45286                                                                          based on weight (51-100 lbs)
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45498                                                                                                 75 mg
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45553                                                                                                240 mg
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45586                                                                                                375 mg
45587                                                                                                500 mg
45591                                                                                               8 drops
45592                                                                                                 16 mg
45626                                                                        based on weight (50.1-100 lbs)
45629                                                                                                1 tube
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45666                                                                                                 23 mg
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45674                                                                                               2 drops
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45684                                                                                                 25 mg
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45703                                                                                                  3 ml
45704                                                                                          small amount
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45786                                                                                                 20 mg
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45794                                                                                                 23 mg
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45869                                                                        based on weight (50.1-100 lbs)
45870                                                                                                 60 ml
45871                                                                                                7.5 ml
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45886                                                                                               5 drops
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45972                                                                                               8 drops
45974                                                                                               1000 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46020                                                                                                  1 ml
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46077                                                                                                150 mg
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46079                                                                                                900 mg
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46101                                                                                               3 drops
46102                                                                                               3 drops
46103                                                                                                136 mg
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46128                                                                                               272 mcg
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46169                                                                                                 23 mg
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46179                                                                                                250 mg
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46226                                                                                                200 mg
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46328                                                                                               1400 mg
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46432                                                                                                1 pump
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46502                                                                                               3 pumps
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46524                                                                                               5 drops
46526                                                                                       0.25 inch strip
46527                                                                                               5 drops
46528                                                                           based on weight (45-88 lbs)
46529                                                                                                  1 gm
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46534                                                                                               5 drops
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46590                                                                                               8 drops
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46664                                                                                                1 tube
46665                                                                                 1 tablet/pill/capsule
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46718                                                                                                 16 mg
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46762                                                                                               4 mg/ml
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46771                                                                                                250 mg
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46818                                                                                                 10 mg
46826                                                                                             500 mg/ml
46827                                                                                             1-2 drops
46835                                                                                                0.5 mg
46836                                                                                               0.5 mcg
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46867                                                                                                250 mg
46874                                                                                          small amount
46880                                                                                          small amount
46881                                                                                                 23 mg
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46978                                                                                                1 drop
46979                                                                                               272 mcg
46980                                                                                                227 mg
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47040                                                                                                 23 mg
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47042                                                                                                500 mg
47043                                                                          based on weight (51-100 lbs)
47045                                                                                                 60 mg
47049                                                                           based on weight (40-85 lbs)
47050                                                                                                500 mg
47055                                                                                               272 mcg
47060                                                                                           unspecified
47065                                                                                                 60 mg
47069                                                                                                 15 gm
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47108                                                                                                1 tube
47123                                                                                               272 mcg
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47181                                                                                                1 tube
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47185                                                                                                 23 mg
47186                                                                                                 23 mg
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47260                                                                          based on weight (50-100 lbs)
47266                                                                                              12 mg/kg
47302                                                                                          small amount
47305                                                                                                500 mg
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47481                                                                                            2.27 mg/lb
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47490                                                                                               272 mcg
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47513                                                                                              10 drops
47515                                                                                                272 ug
47517                                                                                                272 ug
47524                                                                                                272 ug
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47559                                                                                                1 drop
47561                                                                                                  1 gm
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47580                                                                                             1.5 mg/ml
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47682                                                                                                136 mg
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47847                                                                                             0.125 tsp
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47862                                                                                                0.1 ml
47863                                                                                 1 tablet/pill/capsule
47867                                                                                                100 mg
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47892                                                                                                100 mg
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47917                                                                                                100 mg
47928                                                                                                125 mg
47949                                                                                               1000 mg
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
47999                                                                                                  4 ml
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48006                                                                                              28 mg/m2
48007                                                                              0.75 tablet/pill/capsule
48008                                                                                                 80 mg
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48032                                                                                               1000 mg
48033                                                                                                300 mg
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48128                                                                                                 25 mg
48129                                                                                                 16 mg
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48154                                                                                               1620 mg
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48161                                                                                                500 mg
48162                                                                                                100 mg
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48170                                                                                                100 mg
48171                                                                                                100 mg
48178                                                                                                 15 gm
48182                                                                                       136 mcg, 114 mg
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48218                                                                                                 80 mg
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48223                                                                                                0.5 ml
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48290                                                                                                136 mg
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48311                                                                                               5 drops
48312                                                                                                500 mg
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48374                                                                                                 10 ml
48376                                                                                                 drops
48377                                                                                                 10 mg
48378                                                                                                1 drop
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48440                                                                                               1000 mg
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48499                                                                                               5 drops
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48503                                                                                                1 tube
48504                                                                                       based on weight
48505                                                                                       based on weight
48508                                                                                                 57 mg
48513                                                                          based on weight (51-100 lbs)
48520                                                                                                 1 tsp
48521                                                                                                  2 ml
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48560                                                                                                1 tube
48598                                                                                           unspecified
48602                                                                                              tapering
48609                                                                                                 68 mg
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48662                                                                                               2.68 ml
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48835                                                                                               5 drops
48842                                                                                                500 mg
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48869                                                                                                 20 mg
48877                                                                                                 75 mg
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48893                                                                                                1 drop
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48917                                                                                               272 mcg
48918                                                                                           unspecified
48921                                                                                                 60 ml
48935                                                                                           unspecified
48938                                                                                               272 mcg
48946                                                                            1.5 tablets/pills/capsules
48971                                                                                                272 mg
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49015                                                                                               4.02 ml
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49019                                                                                                500 mg
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49027                                                                                                 60 ml
49028                                                                                                 20 mg
49030                                                                                                 30 gm
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                          based on weight (51-100 lbs)
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49114                                                                                               272 mcg
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49185                                                                                               272 mcg
49186                                                                                                227 mg
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49304                                                                                              10 drops
49314                                                                                                0.5 mg
49316                                                                                           unspecified
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49345                                                                                                1 pump
49346                                                                          based on weight (51-100 lbs)
49348                                                                          based on weight (51-100 lbs)
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49371                                                                                                 30 ml
49372                                                                                 1 tablet/pill/capsule
49375                                                                                               37.5 mg
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49401                                                                                                 23 mg
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49410                                                                                                250 mg
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49473                                                                          based on weight (51-100 lbs)
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49524                                                                                                136 mg
49525                                                                                               0.57 mg
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49589                                                                                               272 mcg
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49604                                                                                                500 mg
49605                                                                                 1 tablet/pill/capsule
49606                                                                                                500 mg
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49640                                                                                               272 mcg
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49680                                                                                               1000 mg
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49714                                                                                               272 mcg
49715                                                                                                1 tube
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49764                                                                                                 15 ml
49765                                                                                                 68 mg
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49783                                                                                              56.25 mg
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49848                                                                                                500 mg
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49856                                                                                                1.7 ml
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49886                                                                          based on weight (51-100 lbs)
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49923                                                                                               1000 mg
49924                                                                                               1000 mg
49925                                                                                                750 mg
49928                                                                                               1000 mg
49929                                                                                                750 mg
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49980                                                                                                 50 mg
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49994                                                                                             0.2 mg/kg
49995                                                                                             0.2 mg/kg
49996                                                                                           as directed
49997                                                                                                375 mg
49998                                                                                                 50 mg
49999                                                                                                100 mg
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50002                                                                                               3 pumps
50004                                                                          based on weight (51-100 lbs)
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50022                                                                                             0.2 mg/kg
50029                                                                                 1 tablet/pill/capsule
50030                                                                                                1 tube
50033                                                                                 1 tablet/pill/capsule
50034                                                                                                1 tube
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50073                                                                                                1 tube
50076                                                                                              25 mg/kg
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50187                                                                          based on weight (51-100 lbs)
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
print(nrow(non_numeric_dose2))
[1] 10925
#deal with oncology chemo doses of mg/m2 seperate to other patterns
  # Regular expression to find rows with 'mg/m2'
unit_pattern <- "mg/m2"

# Identify rows with 'mg/m2' in the dose column
rows_with_mg_m2 <- grepl(unit_pattern, dose$dose)

# Update dose_unit to 'mg/m2' for these rows
dose$dose_unit[rows_with_mg_m2] <- "mg/m2"

# Remove 'mg/m2' from the dose column for these rows
dose$dose[rows_with_mg_m2] <- gsub(unit_pattern, "", dose$dose[rows_with_mg_m2])


#2)
# Define the unit pattern
unit_pattern <- "\\b(mg|mcg)\\s*/\\s*(kg|ml|lb)\\b"
matches <- grepl(unit_pattern, dose$dose, ignore.case = TRUE) & dose$dose_unit == "other specify"

# Update the dose_unit column for matching rows
dose$dose_unit[matches] <- regmatches(dose$dose[matches], regexpr(unit_pattern, dose$dose[matches], ignore.case = TRUE))

# Remove the matched units from the dose column for the same rows
dose$dose[matches] <- gsub(unit_pattern, "", dose$dose[matches], ignore.case = TRUE)

# Trim any extra whitespace in both columns
dose$dose <- trimws(dose$dose)
dose$dose_unit <- trimws(dose$dose_unit)

# View the updated dataset
print(dose)
                                                                                                                            medication_ingredients
1                                                                                                                                      amoxicillin
2                                                                                                                                         tramadol
3                                                                                                                                         dextrose
4                                                                                                                                          calcium
5                                                                                                                                         oxytocin
6                                                                                                                                      doxycycline
7                                                                                                                                        carprofen
8                                                                                                                                        meloxicam
9                                                                                                                                       gabapentin
10                                                                                                                                atropine sulfate
11                                                                                                                                      tobramycin
12                                                                                                                                      tacrolimus
13                                                                                                                                        tramadol
14                                                                                                                                       meloxicam
15                                                                                                                                       cefazolin
16                                                                                                                              maropitant citrate
17                                                                                                                                       meloxicam
18                                                                                                                                       ofloxacin
19                                                                                                                                      tobramycin
20                                                                                                                                      tacrolimus
21                                                                                                                                        tramadol
22                                                                                                                                       meloxicam
23                                                                                                                                      gabapentin
24                                                                                                                                       meloxicam
25                                                                                                                                      gabapentin
26                                                                                                                                         aspirin
27                                                                                                              amoxicillin, clavulanate potassium
28                                                                                                               enrofloxacin, silver sulfadiazine
29                                                                                                                            cefpodoxime proxetil
30                                                                                                                              maropitant citrate
31                                                                                                                                      ampicillin
32                                                                                                                                       meloxicam
33                                                                                                                                      alfaxalone
34                                                                               neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35                                                                                                             ear cleaner (zymox), hydrocortisone
36                                                                                                              amoxicillin, clavulanate potassium
37                                                                                                                                       meloxicam
38                                                                                                                                milbemycin oxime
39                                                                                                                                      ivermectin
40                                                                                                                  polysulfated glycosaminoglycan
41                                                                                                          joint supplement (glucosamine hcl/msm)
42                                                                                                                                       meloxicam
43                                                                                                                                     hydroxyzine
44                                                                                                                                     amoxicillin
45                                                                                                                                       firocoxib
46                                                                                                                                        spinosad
47                                                                                                                    ivermectin, pyrantel pamoate
48                                                                                                                        imidacloprid, moxidectin
49                                                                                                                                    imidacloprid
50                                                                                                                                     minocycline
51                                                                                          joint supplement (chondroitin sulfate/glucosamine hcl)
52                                                                                                                                       vitamin c
53                                                                                                                    ivermectin, pyrantel pamoate
54                                                                                                                                     amoxicillin
55                                                                                                                                       firocoxib
56                                                                                                                   unspecified herbal supplement
57                                                                               neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
58                                                                                                  dexamethasone, neomycin sulfate, thiabendazole
59                                                                                                                                      ivermectin
60                                                                                                                      imidacloprid, pyriproxyfen
61                                                                                                                                       vitamin c
62                                                                                                                      imidacloprid, pyriproxyfen
63                                                                                                                                      ivermectin
64                                                                                                                                         taurine
65                                                                                                                                     l-carnitine
66                                                                                                                   unspecified herbal supplement
67                                                                                                                                       mupirocin
68                                                                                                                            prednisolone acetate
69                                                                                                                                     amoxicillin
70                                                                                                                                       mupirocin
71                                                                                                                                    ketoconazole
72                                                                                                  dexamethasone, neomycin sulfate, thiabendazole
73                                                                                                                                      fluralaner
74                                                                                                                      imidacloprid, pyriproxyfen
75                                                                                                                    ivermectin, pyrantel pamoate
76                                                                                                                                     amoxicillin
77                                                                                                                                       vitamin c
78                                                                                                 betamethasone, clotrimazole, gentamicin sulfate
79                                                                                                                                 diphenhydramine
80                                                                                                                                         taurine
81                                                                                                                                    coenzyme q10
82                                                                                                                                     l-carnitine
83                                                                                                                               vision supplement
84                                                                                                               betamethasone, gentamicin sulfate
85                                                                                                                            prednisolone acetate
86                                                                                                                                     doxycycline
87                                                                                                                                   dexamethasone
88                                                                                                                                        tramadol
89                                                                                                                            cefpodoxime proxetil
90                                                                                                                                       carprofen
91                                                                                                 betamethasone, clotrimazole, gentamicin sulfate
92                                                                                                                                         taurine
93                                                                                                                                     l-carnitine
94                                                                                                                                    coenzyme q10
95                                                                                                                                       vitamin e
96                                                                                                                                       vitamin c
97                                                                                                                                         omega 3
98                                                                                                          joint supplement (glucosamine hcl/msm)
99                                                                                                                                      gabapentin
100                                                                                                                                  acetaminophen
101                                                                                                                                      carprofen
102                                                                                                                           cefpodoxime proxetil
103                                                                                                                           cefpodoxime proxetil
104                                                                                                                                chloramphenicol
105                                                                                                                                       rifampin
106                                                                                                                                     gabapentin
107                                                                                                                                     gabapentin
108                                                                                                                                  buprenorphine
109                                                                                                                                       fentanyl
110                                                                                                                                   cyclosporine
111                                                                                                betamethasone, clotrimazole, gentamicin sulfate
112                                                                                                              enrofloxacin, silver sulfadiazine
113                                                                                                   florfenicol, mometasone furoate, terbinafine
114                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
115                                                                                                              dexamethasone, miconazole nitrate
116                                                                                                                amikacin sulfate, dexamethasone
117                                                                                                                 polysulfated glycosaminoglycan
118                                                                                                                                      probiotic
119                                                                                                                                   multivitamin
120                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
121                                                                                                                                        omega 3
122                                                                                                                                cbd or hemp oil
123                                                                                                                                        taurine
124                                                                                                                       urinary tract supplement
125                                                                                                                                   coenzyme q10
126                                                                                                                                      vitamin c
127                                                                                                                                      vitamin c
128                                                                                                                       joint supplement (other)
129                                                                                                                      immune support supplement
130                                                                                                                      immune support supplement
131                                                                                                                      immune support supplement
132                                                                                                                        nourish essence formula
133                                                                                                                                      firocoxib
134                                                                                                                                      carprofen
135                                                                                                                             methylprednisolone
136                                                                                                                             methylprednisolone
137                                                                                                                                   enrofloxacin
138                                                                                                                                    doxycycline
139                                                                                                                                     cephalexin
140                                                                                                                                   chlorambucil
141                                                                                                                                     gabapentin
142                                                                                                                             maropitant citrate
143                                                                                                                                     amantadine
144                                                                                                                                  acetaminophen
145                                                                                                                                       fentanyl
146                                                                                                                                diphenhydramine
147                                                                                                                                   cyclosporine
148                                                                                                                 polysulfated glycosaminoglycan
149                                                                                                    chlorhexidine gluconate, miconazole nitrate
150                                                                                                                                      tris-edta
151                                                                                                                        chlorhexidine gluconate
152                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                                                   multivitamin
154                                                                                                                      immune support supplement
155                                                                                                                      immune support supplement
156                                                                                                                                        omega 3
157                                                                                                                                      vitamin e
158                                                                                                                                        taurine
159                                                                                                                                    l-carnitine
160                                                                                                                                   coenzyme q10
161                                                                                                                              vision supplement
162                                                                                                                                cbd or hemp oil
163                                                                                                                       urinary tract supplement
164                                                                                                                                      probiotic
165                                                                                                                                     ca support
166                                                                                                                                      vitamin c
167                                                                                                                       joint supplement (other)
168                                                                                                                                      carprofen
169                                                                                                                                     prednisone
170                                                                                                                                  dexamethasone
171                                                                                                                                   enrofloxacin
172                                                                                                                                     gabapentin
173                                                                                                                 polysulfated glycosaminoglycan
174                                                                                                                                   chlorambucil
175                                                                                                    chlorhexidine gluconate, miconazole nitrate
176                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
177                                                                                                                                      carprofen
178                                                                                                                                     prednisone
179                                                                                                                                   fenbendazole
180                                                                                                                                     ivermectin
181                                                                                                                                     ivermectin
182                                                                                                                                     ivermectin
183                                                                                                                                     ivermectin
184                                                                                                                                     fluralaner
185                                                                                                                                     ivermectin
186                                                                                                                                     fluralaner
187                                                                                                                                     fluralaner
188                                                                                                                                     fluralaner
189                                                                                                                                     ivermectin
190                                                                                                                                   fenbendazole
191                                                                                                                                     ivermectin
192                                                                                                                                     fluralaner
193                                                                                                                                     ivermectin
194                                                                                                                                     ivermectin
195                                                                                                                       fipronil, (s)-methoprene
196                                                                                                                                     ivermectin
197                                                                                                                                     ivermectin
198                                                                                                                                     fluralaner
199                                                                                                                                       propofol
200                                                                                                                                       oxytocin
201                                                                                                                                   penicillin g
202                                                                                                                                      cefazolin
203                                                                                                                                      carprofen
204                                                                                                                                  buprenorphine
205                                                                                                                                      carprofen
206                                                                                                             amoxicillin, clavulanate potassium
207                                                                                                                                     fluralaner
208                                                                                                                                     ivermectin
209                                                                                                                                  levothyroxine
210                                                                                                                                     fluralaner
211                                                                                                                                       propofol
212                                                                                                                                      carprofen
213                                                                                                                                      cefazolin
214                                                                                                             amoxicillin, clavulanate potassium
215                                                                                                                                      carprofen
216                                                                                                                                     ivermectin
217                                                                                                                                     fluralaner
218                                                                                                                                   fenbendazole
219                                                                                                                                     ivermectin
220                                                                                                                                     fluralaner
221                                                                                                             amoxicillin, clavulanate potassium
222                                                                                                                                     gabapentin
223                                                                                                                                   capromorelin
224                                                                                                                                      carprofen
225                                                                                                                                     cephalexin
226                                                                                                                                     prednisone
227                                                                                                                   ivermectin, pyrantel pamoate
228                                                                                                                                     cephalexin
229                                                                                                            ear cleaner (zymox), hydrocortisone
230                                                                                                                   ivermectin, pyrantel pamoate
231                                                                                                                                    amoxicillin
232                                                                                                                                      meloxicam
233                                                                                                            ear cleaner (zymox), hydrocortisone
234                                                                                                                       fipronil, (s)-methoprene
235                                                                                                                   ivermectin, pyrantel pamoate
236                                                                                                        betamethasone, florfenicol, terbinafine
237                                                                                                        betamethasone, florfenicol, terbinafine
238                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
239                                                                                                                                     afoxolaner
240                                                                                                                       fipronil, (s)-methoprene
241                                                                                                                                     lokivetmab
242                                                                                                        betamethasone, florfenicol, terbinafine
243                                                                                                        betamethasone, florfenicol, terbinafine
244                                                                                                                       fipronil, (s)-methoprene
245                                                                                                                                     lokivetmab
246                                                                                                                                     lokivetmab
247                                                                                                                                     lokivetmab
248                                                                                                   florfenicol, mometasone furoate, terbinafine
249                                                                                                                                     lokivetmab
250                                                                                                   florfenicol, mometasone furoate, terbinafine
251                                                                                                                                       tramadol
252                                                                                                                                      carprofen
253                                                                                                             amoxicillin, clavulanate potassium
254                                                                                                                           cefpodoxime proxetil
255                                                                                                                 sulfamethoxazole, trimethoprim
256                                                                                                                     milbemycin oxime, spinosad
257                                                                                                                     milbemycin oxime, spinosad
258                                                                                                                 milbemycin oxime, praziquantel
259                                                                                                                                     fluralaner
260                                                                                                                                     ranitidine
261                                                                                                                               milbemycin oxime
262                                                                                                                                     famotidine
263                                                                                                                                        omega 3
264                                                                                                                                     fluoxetine
265                                                                                                                                     fluoxetine
266                                                                                                                                     alprazolam
267                                                                                                                                    amoxicillin
268                                                                                                                                  metronidazole
269                                                                                                                             maropitant citrate
270                                                                                                                               liver supplement
271                                                                                                                                     gabapentin
272                                                                                                                                    ondansetron
273                                                                                                                                     ivermectin
274                                                                                                                                       spinosad
275                                                                                                                   ivermectin, pyrantel pamoate
276                                                                                                                                     ivermectin
277                                                                                                                                     afoxolaner
278                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
279                                                                                        chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                                        triamcinolone acetonide
281                                                                                                                                     cephalexin
282                                                                                                              dexamethasone, methylprednisolone
283                                                                                                                               sulfamethoxazole
284                                                                                        chlorhexidine gluconate, ketoconazole, phytosphingosine
285                                                                                                betamethasone, clotrimazole, gentamicin sulfate
286                                                                                                                                     afoxolaner
287                                                                                                                                     ivermectin
288                                                                                                                                     ivermectin
289                                                                                                             amoxicillin, clavulanate potassium
290                                                                                                                               milbemycin oxime
291                                                                                                                                  metronidazole
292                                                                                                                                   fenbendazole
293                                                                                                                                    doxycycline
294                                                                                                                                       tramadol
295                                                                                                                                   penicillin g
296                                                                                                                                    amoxicillin
297                                                                                                             amoxicillin, clavulanate potassium
298                                                                                                                                  metronidazole
299                                                                                                             amoxicillin, clavulanate potassium
300                                                                                                                                   fenbendazole
301                                                                                                                                    doxycycline
302                                                                                                                                    doxycycline
303                                                                                                betamethasone, clotrimazole, gentamicin sulfate
304                                                                                                                                  metronidazole
305                                                                                                                                      deracoxib
306                                                                                                                                  metronidazole
307                                                                                                             amoxicillin, clavulanate potassium
308                                                                                                                             miconazole nitrate
309                                                                                                                     imidacloprid, pyriproxyfen
310                                                                                                                   ivermectin, pyrantel pamoate
311                                                                                                                                   ketoconazole
312                                                                                                                             miconazole nitrate
313                                                                                                                                  metronidazole
314                                                                                                                                   fenbendazole
315                                                                                                                                      vitamin b
316                                                                                                                               tylosin tartrate
317                                                                                                                     imidacloprid, pyriproxyfen
318                                                                                                                   ivermectin, pyrantel pamoate
319                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
320                                                                                                                                  metronidazole
321                                                                                                                                    doxycycline
322                                                                                                                                     cephalexin
323                                                                                                                   ivermectin, pyrantel pamoate
324                                                                                                                     imidacloprid, pyriproxyfen
325                                                                                                                                   enrofloxacin
326                                                                                                                                    doxycycline
327                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
328                                                                                                                       imidacloprid, permethrin
329                                                                                                                   ivermectin, pyrantel pamoate
330                                                                                                                                    fluconazole
331                                                                                                                                    doxycycline
332                                                                                                                     imidacloprid, pyriproxyfen
333                                                                                                                   ivermectin, pyrantel pamoate
334                                                                                                                             maropitant citrate
335                                                                                                                                     famotidine
336                                                                                                                                     famotidine
337                                                                                                                                      carprofen
338                                                                                                                                    doxycycline
339                                                                                                                                  metronidazole
340                                                                                                                                      carprofen
341                                                                                                                   ivermectin, pyrantel pamoate
342                                                                                                                    lufenuron, milbemycin oxime
343                                                                                                                                      cefazolin
344                                                                                                                                      carprofen
345                                                                                                             amoxicillin, clavulanate potassium
346                                                                                                                                   enrofloxacin
347                                                                                                                    lufenuron, milbemycin oxime
348                                                                                                                    lufenuron, milbemycin oxime
349                                                                                                                    lufenuron, milbemycin oxime
350                                                                                                                    lufenuron, milbemycin oxime
351                                                                                                                    lufenuron, milbemycin oxime
352                                                                                                                                      sarolaner
353                                                                                                                    lufenuron, milbemycin oxime
354                                                                                                                                      sarolaner
355                                                                                                                    lufenuron, milbemycin oxime
356                                                                                                                                    clindamycin
357                                                                                                                                    doxycycline
358                                                                                                                                  methocarbamol
359                                                                                                                                     gabapentin
360                                                                                                                                       tramadol
361                                                                                                                                     grapiprant
362                                                                                                                                      trazodone
363                                                                                                                                     grapiprant
364                                                                                                                                  metronidazole
365                                                                                                                                    l-carnitine
366                                                                                                                                   coenzyme q10
367                                                                                                 mometasone furoate, orbifloxacin, posaconazole
368                                                                                                                                     afoxolaner
369                                                                                                                                     afoxolaner
370                                                                                                                           prednisolone acetate
371                                                                                                                           prednisolone acetate
372                                                                                                                                     afoxolaner
373                                                                                                                           prednisolone acetate
374                                                                                                                                     fluralaner
375                                                                                                                   ivermectin, pyrantel pamoate
376                                                                                                                                     fluralaner
377                                                                                                                           prednisolone acetate
378                                                                                                                          ampicillin, sulbactam
379                                                                                                                                   enrofloxacin
380                                                                                                                                    ondansetron
381                                                                                                                                       fentanyl
382                                                                                                                           prednisolone acetate
383                                                                                                                    lufenuron, milbemycin oxime
384                                                                                                                    lufenuron, milbemycin oxime
385                                                                                                                    lufenuron, milbemycin oxime
386                                                                                                                    lufenuron, milbemycin oxime
387                                                                                                                                  metronidazole
388                                                                                                                                   fenbendazole
389                                                                                                                    lufenuron, milbemycin oxime
390                                                                                                                   ivermectin, pyrantel pamoate
391                                                                                                                     imidacloprid, pyriproxyfen
392                                                                                                                   ivermectin, pyrantel pamoate
393                                                                                                                     imidacloprid, pyriproxyfen
394                                                                                                             amoxicillin, clavulanate potassium
395                                                                                                                          amitraz, metaflurimon
396                                                                                                                                     benzocaine
397                                                                                                                                      probiotic
398                                                                                                                                     cephalexin
399                                                                                                                                   fenbendazole
400                                                                                                                                     alprazolam
401                                                                                                                                        omega 3
402                                                                                                                                     ivermectin
403                                                                                                                                     ivermectin
404                                                                                                                                     ivermectin
405                                                                                                                                    hydroxyzine
406                                                                                                                                     ivermectin
407                                                                                                                    lufenuron, milbemycin oxime
408                                                                                                                                       tramadol
409                                                                                                                           cefpodoxime proxetil
410                                                                                                                                  buprenorphine
411                                                                                                                                      deracoxib
412                                                                                                                                   ketoconazole
413                                                                                                                                diphenhydramine
414                                                                                                                    lufenuron, milbemycin oxime
415                                                                                                                                    oclacitinib
416                                                                                                            allergy immunotherapy - unspecified
417                                                                                                                    lufenuron, milbemycin oxime
418                                                                                                                   ivermectin, pyrantel pamoate
419                                                                                                                                    oclacitinib
420                                                                                                                                    hydroxyzine
421                                                                                                            allergy immunotherapy - unspecified
422                                                                                                                                  buprenorphine
423                                                                                                                                       propofol
424                                                                                                                                      carprofen
425                                                                                                                                       tramadol
426                                                                                                                           cefpodoxime proxetil
427                                                                                                                               ceftiofur sodium
428                                                                                                                                     lokivetmab
429                                                                                                                   ivermectin, pyrantel pamoate
430                                                                                                                                     afoxolaner
431                                                                                                                                    oclacitinib
432                                                                                                                                     lokivetmab
433                                                                                                                   ivermectin, pyrantel pamoate
434                                                                                                                   ivermectin, pyrantel pamoate
435                                                                                                                                    oclacitinib
436                                                                                                                                     fluralaner
437                                                                                                                       skin and coat supplement
438                                                                                                                                     lokivetmab
439                                                                                                                   ivermectin, pyrantel pamoate
440                                                                                                                                     afoxolaner
441                                                                                                                                    oclacitinib
442                                                                                                                                     lokivetmab
443                                                                                                                                    oclacitinib
444                                                                                                                                    oclacitinib
445                                                                                                                           cefpodoxime proxetil
446                                                                                                                                    oclacitinib
447                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
448                                                                                                                                   ketoconazole
449                                                                                      activated charcoal, bismuth subsalicylate, kaolin, pectin
450                                                                                                                                      carprofen
451                                                                                                                                     prednisone
452                                                                                                                                    oclacitinib
453                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
454                                                                                                                                      carprofen
455                                                                                                                           cefpodoxime proxetil
456                                                                                                                                    oclacitinib
457                                                                                                                                  yunnan baiyao
458                                                                                                                                    bedinvetmab
459                                                                                                                                      carprofen
460                                                                                                                                     prednisone
461                                                                                                                     milbemycin oxime, spinosad
462                                                                                            enrofloxacin, ketoconazole, triamcinolone acetonide
463                                                                                                                   ivermectin, pyrantel pamoate
464                                                                                                                   ivermectin, pyrantel pamoate
465                                                                                                                                     afoxolaner
466                                                                                                                   ivermectin, pyrantel pamoate
467                                                                                                                                     afoxolaner
468                                                                                                                                      sarolaner
469                                                                                                                           cefpodoxime proxetil
470                                                                                                                                      carprofen
471                                                                                                                                      cefovecin
472                                                                                                                                    oclacitinib
473                                                                                                        betamethasone, florfenicol, terbinafine
474                                                                                                                                     ivermectin
475                                                                                                                                apomorphine hcl
476                                                                                                                             maropitant citrate
477                                                                                                           activated charcoal, kaolin, sorbitol
478                                                                                                                   ivermectin, pyrantel pamoate
479                                                                                                                                     afoxolaner
480                                                                                                   florfenicol, mometasone furoate, terbinafine
481                                                                                                                           cefpodoxime proxetil
482                                                                                                                                     lokivetmab
483                                                                                                                                  metronidazole
484                                                                                                                                      cefovecin
485                                                                                                                                     lokivetmab
486                                                                                                                                      carprofen
487                                                                                                                   ivermectin, pyrantel pamoate
488                                                                                                                                     afoxolaner
489                                                                                                                                     lokivetmab
490                                                                                                                                  metronidazole
491                                                                                                   florfenicol, mometasone furoate, terbinafine
492                                                                                                                                     ivermectin
493                                                                                                             amoxicillin, clavulanate potassium
494                                                                                                                                     ivermectin
495                                                                                                                                     afoxolaner
496                                                                                                                                     ivermectin
497                                                                                                                                     afoxolaner
498                                                                                                                   ivermectin, pyrantel pamoate
499                                                                                                                                     fluralaner
500                                                                                                                                     fluralaner
501                                                                                                                                      trazodone
502                                                                                                                                 benazepril hcl
503                                                                                                                                      carprofen
504                                                                                                                   ivermectin, pyrantel pamoate
505                                                                                                                                      ophytrium
506                                                                                                                                    amoxicillin
507                                                                                                                                      carprofen
508                                                                                                                          tiletamine, zolazepam
509                                                                                                                                      cefazolin
510                                                                                                                                       morphine
511                                                                                                                                     cephalexin
512                                                                                                                                      carprofen
513                                                                                                                                     ivermectin
514                                                                                                                          tiletamine, zolazepam
515                                                                                                                                       morphine
516                                                                                                                                      cefazolin
517                                                                                                                                      carprofen
518                                                                                                                                     cephalexin
519                                                                                                                                     isoflurane
520                                                                                                                                    clindamycin
521                                                                                                                                apomorphine hcl
522                                                                                                                             maropitant citrate
523                                                                                                                   ivermectin, pyrantel pamoate
524                                                                                                                                     afoxolaner
525                                                                                                             amoxicillin, clavulanate potassium
526                                                                                                                   ivermectin, pyrantel pamoate
527                                                                                                                                     afoxolaner
528                                                                                                                                    oclacitinib
529                                                                                                                                    oclacitinib
530                                                                                                        betamethasone, florfenicol, terbinafine
531                                                                                                                                     cephalexin
532                                                                                                                   ivermectin, pyrantel pamoate
533                                                                                                                                     afoxolaner
534                                                                                                                   ivermectin, pyrantel pamoate
535                                                                                                                                     afoxolaner
536                                                                                                                                     cephalexin
537                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
538                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
539                                                                                                                                        omega 3
540                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
541                                                                                                                                        omega 3
542                                                                                                                                        omega 3
543                                                                                                                                      carprofen
544                                                                                                                                      carprofen
545                                                                                                                                      cefazolin
546                                                                                                                                   enrofloxacin
547                                                                                                                                    amoxicillin
548                                                                                                                               liver supplement
549                                                                                                                                       ursodiol
550                                                                                                                                       ursodiol
551                                                                                                                                  yunnan baiyao
552                                                                                                                                       tramadol
553                                                                                                                                     gabapentin
554                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
555                                                                                                                      immune support supplement
556                                                                                                                             maropitant citrate
557                                                                                                                                      probiotic
558                                                                                                                                  buprenorphine
559                                                                                                                           prebiotic, probiotic
560                                                                                                                                     prednisone
561                                                                                                                                     prednisone
562                                                                                                                                     prednisone
563                                                                                                                                   enrofloxacin
564                                                                                                                                    amoxicillin
565                                                                                                                                    amoxicillin
566                                                                                                                                    doxycycline
567                                                                                                                                       ursodiol
568                                                                                                                                  yunnan baiyao
569                                                                                                                                 metoclopramide
570                                                                                                                                 metoclopramide
571                                                                                                                                  levothyroxine
572                                                                                                                                  levothyroxine
573                                                                                                                                  levothyroxine
574                                                                                                                                      probiotic
575                                                                                                                 polysulfated glycosaminoglycan
576                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
577                                                                                                                             maropitant citrate
578                                                                                                                                     prednisone
579                                                                                                                                     prednisone
580                                                                                                                                     prednisone
581                                                                                                                                     prednisone
582                                                                                                                               pyrantel pamoate
583                                                                                                                                     cephalexin
584                                                                                                             amoxicillin, clavulanate potassium
585                                                                                                                           cefpodoxime proxetil
586                                                                                                                                    hydroxyzine
587                                                                                                                           cefpodoxime proxetil
588                                                                                                                                    hydroxyzine
589                                                                                                                                   enrofloxacin
590                                                                                                                                     cephalexin
591                                                                                                                                    hydroxyzine
592                                                                                                                                     prednisone
593                                                                                                                           cefpodoxime proxetil
594                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
595                                                                                                                           cefpodoxime proxetil
596                                                                                                                                    hydroxyzine
597                                                                                                                       fipronil, (s)-methoprene
598                                                                                                                                     afoxolaner
599                                                                                                                   ivermectin, pyrantel pamoate
600                                                                                                                                     afoxolaner
601                                                                                                                                    hydroxyzine
602                                                                                                                           cefpodoxime proxetil
603                                                                                                                   ivermectin, pyrantel pamoate
604                                                                                                                                     afoxolaner
605                                                                                                                   ivermectin, pyrantel pamoate
606                                                                                                                                     afoxolaner
607                                                                                                                                    hydroxyzine
608                                                                                                                   ivermectin, pyrantel pamoate
609                                                                                                                                     afoxolaner
610                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
611                                                                                                                                    hydroxyzine
612                                                                                                                           cefpodoxime proxetil
613                                                                                                                           cefpodoxime proxetil
614                                                                                                                                    oclacitinib
615                                                                                                                                       tramadol
616                                                                                                                                     gabapentin
617                                                                                                                                      carprofen
618                                                                                                                           cefpodoxime proxetil
619                                                                                                                           cognitive supplement
620                                                                                                                                      trazodone
621                                                                                                                                      melatonin
622                                                                                                                                      carprofen
623                                                                                                                                     prednisone
624                                                                                                                             maropitant citrate
625                                                                                                                                    mirtazapine
626                                                                                                                                      carprofen
627                                                                                                                                     prednisone
628                                                                                                                                     cephalexin
629                                                                                                                                       propofol
630                                                                                                                                      midazolam
631                                                                                                                                   acepromazine
632                                                                                                                               atropine sulfate
633                                                                                                                                  ciprofloxacin
634                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
635                                                                                                                                      melatonin
636                                                                                                                                     ivermectin
637                                                                                                                                      omega 3-6
638                                                                                                                                      melatonin
639                                                                                                                                        omega 3
640                                                                                                                                      vitamin c
641                                                                                                                                     ivermectin
642                                                                                  bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
643                                                                                                                                     prednisone
644                                                                                                                   ivermectin, pyrantel pamoate
645                                                                                                                                      melatonin
646                                                                                                                                     prednisone
647                                                                                                                                     prednisone
648                                                                                                                        triamcinolone acetonide
649                                                                                                                                diphenhydramine
650                                                                                                                       fipronil, (s)-methoprene
651                                                                                                                   ivermectin, pyrantel pamoate
652                                                                                                                                     prednisone
653                                                                                                                        triamcinolone acetonide
654                                                                                                                                diphenhydramine
655                                                                                                                                      firocoxib
656                                                                                                                                     prednisone
657                                                                                                                           cefpodoxime proxetil
658                                                                                            enrofloxacin, ketoconazole, triamcinolone acetonide
659                                                                                                                   ivermectin, pyrantel pamoate
660                                                                                                                                      firocoxib
661                                                                                                                          clorsulon, ivermectin
662                                                                                                             amoxicillin, clavulanate potassium
663                                                                                                                                     omeprazole
664                                                                                                                     lactated ringer's solution
665                                                                                                                             maropitant citrate
666                                                                                                                                     famotidine
667                                                                                                                                    pilocarpine
668                                                                                                                  sodium carboxymethylcellulose
669                                                                                                                                   azithromycin
670                                                                                                                                    doxycycline
671                                                                                                                   ivermectin, pyrantel pamoate
672                                                                                                                                    pilocarpine
673                                                                                                                                    doxycycline
674                                                                                                                   ivermectin, pyrantel pamoate
675                                                                                                                                     afoxolaner
676                                                                                                                                    pilocarpine
677                                                                                                                                cbd or hemp oil
678                                                                                                                                   tetracycline
679                                                                                                                                  metronidazole
680                                                                                                                                     lokivetmab
681                                                                                                                                    doxycycline
682                                                                                                                               liver supplement
683                                                                                                                                     grapiprant
684                                                                                                             amoxicillin, clavulanate potassium
685                                                                                                                                     famotidine
686                                                                                                                                     afoxolaner
687                                                                                                                                     grapiprant
688                                                                                                             amoxicillin, clavulanate potassium
689                                                                                                                                   enrofloxacin
690                                                                                                                                     grapiprant
691                                                                                                                               cyclophosphamide
692                                                                                                                                     grapiprant
693                                                                                                                                     prednisone
694                                                                                                              betamethasone, gentamicin sulfate
695                                                                                                                                      cefovecin
696                                                                                                                           prednisolone acetate
697                                                                                                                                       tramadol
698                                                                                                                                      carprofen
699                                                                                                              betamethasone, gentamicin sulfate
700                                                                                                                                     ivermectin
701                                                                                                                                      carprofen
702                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
703                                                                                                                   ivermectin, pyrantel pamoate
704                                                                                                                                      sarolaner
705                                                                                                                    lufenuron, milbemycin oxime
706                                                                                                                                      sarolaner
707                                                                                                                    lufenuron, milbemycin oxime
708                                                                                                                                      sarolaner
709                                                                                                                               liver supplement
710                                                                                                                                      lomustine
711                                                                                                                                   procarbazine
712                                                                                                                           prednisolone acetate
713                                                                                                                                      carprofen
714                                                                                                                                      carprofen
715                                                                                                                                  metronidazole
716                                                                                                                               liver supplement
717                                                                                                                                     sucralfate
718                                                                                                                                   procarbazine
719                                                                                                                                    vincristine
720                                                                                                                                      carprofen
721                                                                                                                                     prednisone
722                                                                                                                                    ondansetron
723                                                                                                                                     prednisone
724                                                                                                                       homatropine, hydrocodone
725                                                                                                                     milbemycin oxime, spinosad
726                                                                                                                       homatropine, hydrocodone
727                                                                                                                     milbemycin oxime, spinosad
728                                                                                                                   ivermectin, pyrantel pamoate
729                                                                                                                                     afoxolaner
730                                                                                                                   ivermectin, pyrantel pamoate
731                                                                                                                                      sarolaner
732                                                                                                                                    oclacitinib
733                                                                                                                                      ketorolac
734                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
735                                                                                                                                     prednisone
736                                                                                                                          mycophenolate mofetil
737                                                                                                                           dorzolamide, timolol
738                                                                                                                   ivermectin, pyrantel pamoate
739                                                                                                                                     afoxolaner
740                                                                                                                                     prednisone
741                                                                                                                                      ketorolac
742                                                                                                                          mycophenolate mofetil
743                                                                                                                                   enrofloxacin
744                                                                                                                                      ketorolac
745                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
746                                                                                                                          mycophenolate mofetil
747                                                                                                                           dorzolamide, timolol
748                                                                                                                                  levothyroxine
749                                                                                                                                     prednisone
750                                                                                                                                   enrofloxacin
751                                                                                                                                       tramadol
752                                                                                                                                  dexamethasone
753                                                                                                                                     cephalexin
754                                                                                                                   ivermectin, pyrantel pamoate
755                                                                                                                       fipronil, (s)-methoprene
756                                                                                                                       fipronil, (s)-methoprene
757                                                                                                      lufenuron, milbemycin oxime, praziquantel
758                                                                                                                                    doxycycline
759                                                                                                                                    tropicamide
760                                                                                                                                    tropicamide
761                                                                                                                                    tropicamide
762                                                                                                                                    doxycycline
763                                                                                                                                    tropicamide
764                                                                                                                   ivermectin, pyrantel pamoate
765                                                                                                                                     lokivetmab
766                                                                                                                                     lokivetmab
767                                                                                                                                    tropicamide
768                                                                                                                                cbd or hemp oil
769                                                                                                                                      meloxicam
770                                                                                                                               milbemycin oxime
771                                                                                                                                      carprofen
772                                                                                                                    lufenuron, milbemycin oxime
773                                                                                                                    lufenuron, milbemycin oxime
774                                                                                                                    lufenuron, milbemycin oxime
775                                                                                                                    lufenuron, milbemycin oxime
776                                                                                                                                     cephalexin
777                                                                                                                                       tramadol
778                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
779                                                                                                                 sulfamethoxazole, trimethoprim
780                                                                                                                                      carprofen
781                                                                                                                                     prednisone
782                                                                                                                 sulfamethoxazole, trimethoprim
783                                                                                                                                      carprofen
784                                                                                                                    lufenuron, milbemycin oxime
785                                                                                                                     milbemycin oxime, spinosad
786                                                                                                                               milbemycin oxime
787                                                                                                                                       spinosad
788                                                                                                                                       fipronil
789                                                                                                                            ear cleaner (zymox)
790                                                                                                                     milbemycin oxime, spinosad
791                                                                                                                                     cephalexin
792                                                                                                                    lufenuron, milbemycin oxime
793                                                                                                                   ormetoprim, sulfadimethoxine
794                                                                                                                   ormetoprim, sulfadimethoxine
795                                                                                                                           cefpodoxime proxetil
796                                                                                                                                      carprofen
797                                                                                                                               liver supplement
798                                                                                                                             maropitant citrate
799                                                                                                                                    bedinvetmab
800                                                                                                                                    mirtazapine
801                                                                                                                                     furosemide
802                                                                                                                                      carprofen
803                                                                                                                                     fluralaner
804                                                                                                                                     fluralaner
805                                                                                                                                      carprofen
806                                                                                                                   ivermectin, pyrantel pamoate
807                                                                                                                       fipronil, (s)-methoprene
808                                                                                                                   ivermectin, pyrantel pamoate
809                                                                                                                                     cephalexin
810                                                                                                                                     selamectin
811                                                                                                                               pyrantel pamoate
812                                                                                                                            phenylpropanolamine
813                                                                                                                            phenylpropanolamine
814                                                                                                                                  metronidazole
815                                                                                                                                    doxycycline
816                                                                                                                         rx diet - renal health
817                                                                                                                                     prednisone
818                                                                                                                   ivermectin, pyrantel pamoate
819                                                                                                                   ivermectin, pyrantel pamoate
820                                                                                                                   ivermectin, pyrantel pamoate
821                                                                                                                   ivermectin, pyrantel pamoate
822                                                                                                                       fipronil, (s)-methoprene
823                                                                                                                       fipronil, (s)-methoprene
824                                                                                                                   ivermectin, pyrantel pamoate
825                                                                                                                   ivermectin, pyrantel pamoate
826                                                                                                                                     afoxolaner
827                                                                                                                   ivermectin, pyrantel pamoate
828                                                                                                                                     afoxolaner
829                                                                                                                   ivermectin, pyrantel pamoate
830                                                                                                                                     afoxolaner
831                                                                                                                                     famotidine
832                                                                                                                                        omega 3
833                                                                                                                                      carprofen
834                                                                                                                                      carprofen
835                                                                                                                           cefpodoxime proxetil
836                                                                                                                                     gabapentin
837                                                                                                                           prebiotic, probiotic
838                                                                                                                             maropitant citrate
839                                                                                                                                    latanoprost
840                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
841                                                                                                                                      meclizine
842                                                                                                                             maropitant citrate
843                                                                                          miconazole nitrate, polymyxin b, prednisolone acetate
844                                                                                                                           prebiotic, probiotic
845                                                                                                                                  metronidazole
846                                                                                                                                      probiotic
847                                                                                                                           digestive supplement
848                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
849                                                                                                                   ivermectin, pyrantel pamoate
850                                                                                                         fipronil, pyriproxyfen, (s)-methoprene
851                                                                                                                   ivermectin, pyrantel pamoate
852                                                                                                                   ivermectin, pyrantel pamoate
853                                                                                                                                     afoxolaner
854                                                                                                                   ivermectin, pyrantel pamoate
855                                                                                                                                     afoxolaner
856                                                                                                                   ivermectin, pyrantel pamoate
857                                                                                                                                     afoxolaner
858                                                                                                                                       tramadol
859                                                                                                                                      carprofen
860                                                                                                                                     omeprazole
861                                                                                                                                 metoclopramide
862                                                                                                                                     ivermectin
863                                                                                                                                    doxycycline
864                                                                                                                                    ondansetron
865                                                                                                                                     ivermectin
866                                                                                                                           cefpodoxime proxetil
867                                                                                                                                      firocoxib
868                                                                                                                                      deracoxib
869                                                                                                                                     gabapentin
870                                                                                                                                     grapiprant
871                                                                                                                     milbemycin oxime, spinosad
872                                                                                                                                       spinosad
873                                                                                                                               milbemycin oxime
874                                                                                                                     milbemycin oxime, spinosad
875                                                                                                                     milbemycin oxime, spinosad
876                                                                                                                                     cephalexin
877                                                                                                                             miconazole nitrate
878                                                                                                                     milbemycin oxime, spinosad
879                                                                                                                     milbemycin oxime, spinosad
880                                                                                                                     milbemycin oxime, spinosad
881                                                                                                                     milbemycin oxime, spinosad
882                                                                                                                                      carprofen
883                                                                                                                                      trazodone
884                                                                                                                     milbemycin oxime, spinosad
885                                                                                                                                       spinosad
886                                                                                                                               milbemycin oxime
887                                                                                                                     milbemycin oxime, spinosad
888                                                                                                                                     cephalexin
889                                                                                                                     milbemycin oxime, spinosad
890                                                                                                                                      deracoxib
891                                                                                                                     milbemycin oxime, spinosad
892                                                                                                                                   enrofloxacin
893                                                                                                                     milbemycin oxime, spinosad
894                                                                                                                           butorphanol tartrate
895                                                                                                                                     prednisone
896                                                                                                                                     prednisone
897                                                                                                                                     prednisone
898                                                                                                                                      carprofen
899                                                                                                                     milbemycin oxime, spinosad
900                                                                                                                     milbemycin oxime, spinosad
901                                                                                                                        chlorhexidine gluconate
902                                                                                                                   ivermectin, pyrantel pamoate
903                                                                                                                            clemastine fumarate
904                                                                                                                                     ivermectin
905                                                                                                              allergy immunotherapy - injection
906                                                                                                                                    oclacitinib
907                                                                                                                                     ivermectin
908                                                                                                                                    oclacitinib
909                                                                                                                   ivermectin, pyrantel pamoate
910                                                                                                                   ivermectin, pyrantel pamoate
911                                                                                                                   ivermectin, pyrantel pamoate
912                                                                                                                   ivermectin, pyrantel pamoate
913                                                                                                                     imidacloprid, pyriproxyfen
914                                                                                                                   ivermectin, pyrantel pamoate
915                                                                                                                                       tramadol
916                                                                                                                           cefpodoxime proxetil
917                                                                                                                                      firocoxib
918                                                                                                                                  metronidazole
919                                                                                                                                      carprofen
920                                                                                                             amoxicillin, clavulanate potassium
921                                                                                                                   ivermectin, pyrantel pamoate
922                                                                                                                                     diclofenac
923                                                                                                                           butorphanol tartrate
924                                                                                                                               atropine sulfate
925                                                                                                                                      midazolam
926                                                                                                                                       propofol
927                                                                                                                                  hydromorphone
928                                                                                                                                       tramadol
929                                                                                                                                      ketorolac
930                                                                                                                                    dorzolamide
931                                                                                                                   ivermectin, pyrantel pamoate
932                                                                                                                                     afoxolaner
933                                                                                                                                     afoxolaner
934                                                                                                                   ivermectin, pyrantel pamoate
935                                                                                                                                      carprofen
936                                                                                                                           dorzolamide, timolol
937                                                                                                                           prednisolone acetate
938                                                                                                                                      carprofen
939                                                                                                                                     cephalexin
940                                                                                                                                   acepromazine
941                                                                                                                                     famotidine
942                                                                                                                                  metronidazole
943                                                                                                                                      carprofen
944                                                                                                                           cefpodoxime proxetil
945                                                                                                                                       tramadol
946                                                                                                                                      carprofen
947                                                                                                                           cefpodoxime proxetil
948                                                                                                                                     grapiprant
949                                                                                                                                        omega 3
950                                                                                                                                     ivermectin
951                                                                                                                       flumethrin, imidacloprid
952                                                                                                                   ivermectin, pyrantel pamoate
953                                                                                                                                        omega 3
954                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
955                                                                                                                       flumethrin, imidacloprid
956                                                                                                                   ivermectin, pyrantel pamoate
957                                                                                                                                        omega 3
958                                                                                                                   ivermectin, pyrantel pamoate
959                                                                                                     ivermectin, praziquantel, pyrantel pamoate
960                                                                                                                       flumethrin, imidacloprid
961                                                                                                     ivermectin, praziquantel, pyrantel pamoate
962                                                                                                                       flumethrin, imidacloprid
963                                                                                                betamethasone, clotrimazole, gentamicin sulfate
964                                                                                                                                      carprofen
965                                                                                                                                     cephalexin
966                                                                                                              trimeprazine tartrate, prednisone
967                                                                                                                   ivermectin, pyrantel pamoate
968                                                                                                betamethasone, clotrimazole, gentamicin sulfate
969                                                                                                                        acetic acid, boric acid
970                                                                                         hydrocortisone, gentamicin sulfate, miconazole nitrate
971                                                                                                                                    amoxicillin
972                                                                                                                                   enrofloxacin
973                                                                                                                                     sucralfate
974                                                                                                                                       tramadol
975                                                                                                                                    oclacitinib
976                                                                                                                                     cephalexin
977                                                                                                                                      ophytrium
978                                                                                                                                    oclacitinib
979                                                                                                                   ivermectin, pyrantel pamoate
980                                                                                                                                     afoxolaner
981                                                                                                                                    oclacitinib
982                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                                      probiotic
984                                                                                                                                  metronidazole
985                                                                                                                   ivermectin, pyrantel pamoate
986                                                                                                                                     afoxolaner
987                                                                                                                                      mupirocin
988                                                                                                                                    oclacitinib
989                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
990                                                                                                                               tylosin tartrate
991                                                                                                                   ivermectin, pyrantel pamoate
992                                                                                                                                     afoxolaner
993                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
994                                                                                                                                    oclacitinib
995                                                                                                                                     afoxolaner
996                                                                                                                   ivermectin, pyrantel pamoate
997                                                                                                                             maropitant citrate
998                                                                                                                                  metronidazole
999                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
1000                                                                                                                                   oclacitinib
1001                                                                                                                                 yunnan baiyao
1002                                                                                                                                   mirtazapine
1003                                                                                                                                   ondansetron
1004                                                                                                                                  chlorambucil
1005                                                                                                                                    prednisone
1006                                                                                                                                    cephalexin
1007                                                                                                                                 metronidazole
1008                                                                                                                                   amoxicillin
1009                                                                                                                                    cephalexin
1010                                                                                                                                     carprofen
1011                                                                                                                            maropitant citrate
1012                                                                                                                                  enrofloxacin
1013                                                                                                             trimeprazine tartrate, prednisone
1014                                                                                                                  ivermectin, pyrantel pamoate
1015                                                                                                                                    cephalexin
1016                                                                                                                                     carprofen
1017                                                                                                                                    ivermectin
1018                                                                                                                                    afoxolaner
1019                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
1020                                                                                                                              neomycin sulfate
1021                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1022                                                                                                                                 metronidazole
1023                                                                                                                                     probiotic
1024                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
1025                                                                                                            chlorhexidine gluconate, ophytrium
1026                                                                                                                                  ketoconazole
1027                                                                                                            chlorhexidine gluconate, ophytrium
1028                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1029                                                                                                            chlorhexidine gluconate, ophytrium
1030                                                                                                                    unspecified shampoo/mousse
1031                                                                                                                       enrofloxacin, tris-edta
1032                                                                                                                                    cephalexin
1033                                                                                                  florfenicol, mometasone furoate, terbinafine
1034                                                                                                                                    prednisone
1035                                                                                                                                    fluoxetine
1036                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1037                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1038                                                                                                                                   clindamycin
1039                                                                                                  florfenicol, mometasone furoate, terbinafine
1040                                                                                                                                   oclacitinib
1041                                                                                                                                   oclacitinib
1042                                                                                                                       chlorhexidine gluconate
1043                                                                                                                            miconazole nitrate
1044                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1045                                                                                                                                    grapiprant
1046                                                                                                                  ivermectin, pyrantel pamoate
1047                                                                                                                                    afoxolaner
1048                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1049                                                                                                                                   oclacitinib
1050                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1051                                                                                                                  ivermectin, pyrantel pamoate
1052                                                                                                                                    afoxolaner
1053                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1054                                                                                                              burow's solution, hydrocortisone
1055                                                                                                                                   clindamycin
1056                                                                                                                            maropitant citrate
1057                                                                                                                                   clindamycin
1058                                                                                                                                    gabapentin
1059                                                                                                                                   oclacitinib
1060                                                                                                                                    afoxolaner
1061                                                                                                                  ivermectin, pyrantel pamoate
1062                                                                                                                                 metronidazole
1063                                                                                                                                 metronidazole
1064                                                                                                  florfenicol, mometasone furoate, terbinafine
1065                                                                                                                          desmopressin acetate
1066                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1067                                                                                         acetic acid, boric acid, hydrocortisone, ketoconazole
1068                                                                                                                                    lokivetmab
1069                                                                                                                       chlorhexidine gluconate
1070                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1071                                                                                                                                     carprofen
1072                                                                                                              burow's solution, hydrocortisone
1073                                                                                                            chlorhexidine gluconate, tris-edta
1074                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1075                                                                                                                                     carprofen
1076                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1077                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1078                                                                                                                                     probiotic
1079                                                                                                                              liver supplement
1080                                                                                         acetic acid, boric acid, hydrocortisone, ketoconazole
1081                                                                                                                                     carprofen
1082                                                                                                                                    grapiprant
1083                                                                                                                                   mirtazapine
1084                                                                                                                                  capromorelin
1085                                                                                                                            maropitant citrate
1086                                                                                                                                 yunnan baiyao
1087                                                                                                                    milbemycin oxime, spinosad
1088                                                                                                                                  acepromazine
1089                                                                                                                                  clomipramine
1090                                                                                                                    milbemycin oxime, spinosad
1091                                                                                                               ear cleaner (epi-otic advanced)
1092                                                                                                                                    prednisone
1093                                                                                                                                    cephalexin
1094                                                                                                                                       omega 3
1095                                                                                                               ear cleaner (epi-otic advanced)
1096                                                                                                             betamethasone, gentamicin sulfate
1097                                                                                                                    milbemycin oxime, spinosad
1098                                                                                                                      imidacloprid, permethrin
1099                                                                                                                  ivermectin, pyrantel pamoate
1100                                                                                                                   lufenuron, milbemycin oxime
1101                                                                                                                                    fluralaner
1102                                                                                                                                    cephalexin
1103                                                                                                                                       omega 3
1104                                                                                                                                chlorphenamine
1105                                                                                                                                     carprofen
1106                                                                                                                                   amoxicillin
1107                                                                                                                                  enrofloxacin
1108                                                                                                            chlorhexidine gluconate, ophytrium
1109                                                                                                                                  enrofloxacin
1110                                                                                                                                    fluralaner
1111                                                                                                                   lufenuron, milbemycin oxime
1112                                                                                                            chlorhexidine gluconate, ophytrium
1113                                                                                                                                  enrofloxacin
1114                                                                                                                                    cephalexin
1115                                                                                                                                   oclacitinib
1116                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1117                                                                                                                                    fluralaner
1118                                                                                                                                    fluralaner
1119                                                                                                                                    fluralaner
1120                                                                                                                  ivermectin, pyrantel pamoate
1121                                                                                                                                    fluoxetine
1122                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1123                                                                                                                                    cephalexin
1124                                                                                                                                    gabapentin
1125                                                                                                                                    fluoxetine
1126                                                                                                                                    fluoxetine
1127                                                                                                                              liver supplement
1128                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                                                  imidacloprid
1130                                                                                                                                   amoxicillin
1131                                                                                                                           ear cleaner (zymox)
1132                                                                                                                                 metronidazole
1133                                                                                                                                    cephalexin
1134                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
1135                                                                                                                                    cephalexin
1136                                                                                                                                    cephalexin
1137                                                                                                                                      tramadol
1138                                                                                                                                     carprofen
1139                                                                                                                                    selamectin
1140                                                                                                                                    selamectin
1141                                                                                                                                 metronidazole
1142                                                                                                                                     firocoxib
1143                                                                                                                                    selamectin
1144                                                                                                                                    afoxolaner
1145                                                                                                                  ivermectin, pyrantel pamoate
1146                                                                                                                    imidacloprid, pyriproxyfen
1147                                                                                                                  ivermectin, pyrantel pamoate
1148                                                                                                                              pyrantel pamoate
1149                                                                                                                                   doxycycline
1150                                                                                                                       ketoconazole, tris-edta
1151                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1152                                                                                                                              milbemycin oxime
1153                                                                                                                                    ivermectin
1154                                                                                                                   lufenuron, milbemycin oxime
1155                                                                                                                   lufenuron, milbemycin oxime
1156                                                                                                                   lufenuron, milbemycin oxime
1157                                                                                                                   lufenuron, milbemycin oxime
1158                                                                                                            amoxicillin, clavulanate potassium
1159                                                                                                                   lufenuron, milbemycin oxime
1160                                                                                                                   lufenuron, milbemycin oxime
1161                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1162                                                                                                            amoxicillin, clavulanate potassium
1163                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1164                                                                                                                              milbemycin oxime
1165                                                                                                                                      fipronil
1166                                                                                                                                (s)-methoprene
1167                                                                                                                                       omega 3
1168                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                                                  ivermectin, pyrantel pamoate
1170                                                                                                                      fipronil, (s)-methoprene
1171                                                                                                                                    ivermectin
1172                                                                                                                              pyrantel pamoate
1173                                                                                                                      fipronil, (s)-methoprene
1174                                                                                                                  ivermectin, pyrantel pamoate
1175                                                                                                                      fipronil, (s)-methoprene
1176                                                                                                                  ivermectin, pyrantel pamoate
1177                                                                                                                      fipronil, (s)-methoprene
1178                                                                                                                  ivermectin, pyrantel pamoate
1179                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1180                                                                                                                                     carprofen
1181                                                                                                                                    gabapentin
1182                                                                                                                                     trazodone
1183                                                                                                                                   doxorubicin
1184                                                                                                                                     carprofen
1185                                                                                                                                    ivermectin
1186                                                                                                                  ivermectin, pyrantel pamoate
1187                                                                                                                             megestrol acetate
1188                                                                                                                                   doxycycline
1189                                                                                                                  ivermectin, pyrantel pamoate
1190                                                                                                                  ivermectin, pyrantel pamoate
1191                                                                                                                                 metronidazole
1192                                                                                                                                     firocoxib
1193                                                                                                                                    ivermectin
1194                                                                                                                  ivermectin, pyrantel pamoate
1195                                                                                                                              milbemycin oxime
1196                                                                                                                                 marbofloxacin
1197                                                                                                                              milbemycin oxime
1198                                                                                                                  ivermectin, pyrantel pamoate
1199                                                                                                                                     cefovecin
1200                                                                                                                                     carprofen
1201                                                                                                             dexamethasone, miconazole nitrate
1202                                                                                                                               diphenhydramine
1203                                                                                                                                      tramadol
1204                                                                                                                                     carprofen
1205                                                                                                                                    ivermectin
1206                                                                                                                                    ivermectin
1207                                                                                                                                   oclacitinib
1208                                                                                                                      imidacloprid, permethrin
1209                                                                                                                              milbemycin oxime
1210                                                                                                                          cefpodoxime proxetil
1211                                                                                                                                   oclacitinib
1212                                                                                                                                     carprofen
1213                                                                                                                  ivermectin, pyrantel pamoate
1214                                                                                                                  ivermectin, pyrantel pamoate
1215                                                                                                                  ivermectin, pyrantel pamoate
1216                                                                                                                  ivermectin, pyrantel pamoate
1217                                                                                                                  ivermectin, pyrantel pamoate
1218                                                                                                                                   clindamycin
1219                                                                                                                                      tramadol
1220                                                                                                                   chloroxylenol, ketoconazole
1221                                                                                                                  ivermectin, pyrantel pamoate
1222                                                                                                                    imidacloprid, pyriproxyfen
1223                                                                                                                                     carprofen
1224                                                                                                                                   clindamycin
1225                                                                                                                  ivermectin, pyrantel pamoate
1226                                                                                                                    imidacloprid, pyriproxyfen
1227                                                                                                                  ivermectin, pyrantel pamoate
1228                                                                                                                  ivermectin, pyrantel pamoate
1229                                                                                                                  ivermectin, pyrantel pamoate
1230                                                                                                                                    cephalexin
1231                                                                                                                               diphenhydramine
1232                                                                                                                                  enrofloxacin
1233                                                                                                                           silver sulfadiazine
1234                                                                                                                                     deracoxib
1235                                                                                                                                     deracoxib
1236                                                                                                                                    fluoxetine
1237                                                                                                                                   doxycycline
1238                                                                                                                                    alprazolam
1239                                                                                                                          cefpodoxime proxetil
1240                                                                                                             trimeprazine tartrate, prednisone
1241                                                                                                             trimeprazine tartrate, prednisone
1242                                                                                                             trimeprazine tartrate, prednisone
1243                                                                                                                                    fluoxetine
1244                                                                                                                   lufenuron, milbemycin oxime
1245                                                                                                             trimeprazine tartrate, prednisone
1246                                                                                                                                    fluoxetine
1247                                                                                                                   lufenuron, milbemycin oxime
1248                                                                                                                                    afoxolaner
1249                                                                                                                                   oclacitinib
1250                                                                                                                   lufenuron, milbemycin oxime
1251                                                                                                                                    afoxolaner
1252                                                                                                                                   oclacitinib
1253                                                                                                                                    prednisone
1254                                                                                                                   lufenuron, milbemycin oxime
1255                                                                                                                                    afoxolaner
1256                                                                                                                                   oclacitinib
1257                                                                                                                   lufenuron, milbemycin oxime
1258                                                                                                                                    afoxolaner
1259                                                                                                             betamethasone, gentamicin sulfate
1260                                                                                                            amoxicillin, clavulanate potassium
1261                                                                                                                                 marbofloxacin
1262                                                                                                                                    lokivetmab
1263                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1264                                                                                                                                    lokivetmab
1265                                                                                                                                   doxycycline
1266                                                                                                                                    prednisone
1267                                                                                                                                    cephalexin
1268                                                                                                                              milbemycin oxime
1269                                                                                                                                    afoxolaner
1270                                                                                                                                    afoxolaner
1271                                                                                                                                    ivermectin
1272                                                                                                                                    cephalexin
1273                                                                                                                                    prednisone
1274                                                                                                                              milbemycin oxime
1275                                                                                                                                    lokivetmab
1276                                                                                                                    imidacloprid, pyriproxyfen
1277                                                                                                                                    afoxolaner
1278                                                                                                                              milbemycin oxime
1279                                                                                                                                    lokivetmab
1280                                                                                                                          cefpodoxime proxetil
1281                                                                                                            amoxicillin, clavulanate potassium
1282                                                                                                                                 methocarbamol
1283                                                                                                                                     firocoxib
1284                                                                                                                                  enrofloxacin
1285                                                                                                                sulfamethoxazole, trimethoprim
1286                                                                                      dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
1287                                                                                                                                   doxycycline
1288                                                                                                                                    lokivetmab
1289                                                                                                                                    tobramycin
1290                                                                                                                              tylosin tartrate
1291                                                                                                                            maropitant citrate
1292                                                                                                                                   amoxicillin
1293                                                                                                                              milbemycin oxime
1294                                                                                                                              tylosin tartrate
1295                                                                                                                      fipronil, (s)-methoprene
1296                                                                                                                              milbemycin oxime
1297                                                                                                                                       estriol
1298                                                                                                                      fipronil, (s)-methoprene
1299                                                                                                                              milbemycin oxime
1300                                                                                                            amoxicillin, clavulanate potassium
1301                                                                                                                              milbemycin oxime
1302                                                                                                                      fipronil, (s)-methoprene
1303                                                                                                                                       estriol
1304                                                                                                                           phenylpropanolamine
1305                                                                                                                                     enalapril
1306                                                                                                                                    cephalexin
1307                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1308                                                                                                         dinotefuran, permethrin, pyriproxyfen
1309                                                                                                                      fipronil, (s)-methoprene
1310                                                                                                                              milbemycin oxime
1311                                                                                                                   lufenuron, milbemycin oxime
1312                                                                                                                                     sarolaner
1313                                                                                                                           phenylpropanolamine
1314                                                                                                                                     enalapril
1315                                                                                                                                       estriol
1316                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1317                                                                                                                                     carprofen
1318                                                                                                                                   telmisartan
1319                                                                                                                                 marbofloxacin
1320                                                                                                                            maropitant citrate
1321                                                                                                                                    omeprazole
1322                                                                                                                                     sevelamer
1323                                                                                                                                  capromorelin
1324                                                                                                                           phenylpropanolamine
1325                                                                                                                                     enalapril
1326                                                                                                                                       estriol
1327                                                                                                                                   telmisartan
1328                                                                                                                   lufenuron, milbemycin oxime
1329                                                                                                                                     sarolaner
1330                                                                                                                          cefpodoxime proxetil
1331                                                                                                                           phenylpropanolamine
1332                                                                                                                polysulfated glycosaminoglycan
1333                                                                                                                                    amantadine
1334                                                                                                                                       estriol
1335                                                                                                                                   telmisartan
1336                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1337                                                                                                        joint supplement (glucosamine hcl/msm)
1338                                                                                                                      joint supplement (other)
1339                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1340                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1341                                                                                                                              tylosin tartrate
1342                                                                                                                    unspecified shampoo/mousse
1343                                                                                                                                    grapiprant
1344                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1345                                                                                                dexamethasone, neomycin sulfate, thiabendazole
1346                                                                                                               ear cleaner (epi-otic advanced)
1347                                                                                                                                    cephalexin
1348                                                                                                                       triamcinolone acetonide
1349                                                                                                                                    cephalexin
1350                                                                                                                                    prednisone
1351                                                                                                                      fipronil, (s)-methoprene
1352                                                                                                               ear cleaner (epi-otic advanced)
1353                                                                                                                                chlorphenamine
1354                                                                                                                                    cephalexin
1355                                                                                                                      fipronil, (s)-methoprene
1356                                                                                                                                   oclacitinib
1357                                                                                                                      fipronil, (s)-methoprene
1358                                                                                                                                   oclacitinib
1359                                                                                                                      fipronil, (s)-methoprene
1360                                                                                                                              milbemycin oxime
1361                                                                                                                                   oclacitinib
1362                                                                                                                                    lokivetmab
1363                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1364                                                                                                         dinotefuran, permethrin, pyriproxyfen
1365                                                                                                                      fipronil, (s)-methoprene
1366                                                                                                                              milbemycin oxime
1367                                                                                                                   lufenuron, milbemycin oxime
1368                                                                                                                                     sarolaner
1369                                                                                                                                 metronidazole
1370                                                                                                                          cefpodoxime proxetil
1371                                                                                                                  ivermectin, pyrantel pamoate
1372                                                                                                                                 metronidazole
1373                                                                                                                  ivermectin, pyrantel pamoate
1374                                                                                                                                 metronidazole
1375                                                                                                                          cefpodoxime proxetil
1376                                                                                                                                 metronidazole
1377                                                                                                                                 levothyroxine
1378                                                                                                                          cefpodoxime proxetil
1379                                                                                                                                     carprofen
1380                                                                                                                                 metronidazole
1381                                                                                                                                 metronidazole
1382                                                                                                                                     carprofen
1383                                                                                                                                 metronidazole
1384                                                                                                                              tylosin tartrate
1385                                                                                                                                 levothyroxine
1386                                                                                                                                    gabapentin
1387                                                                                                                                     carprofen
1388                                                                                                                          cefpodoxime proxetil
1389                                                                                                                                    loratadine
1390                                                                                                                                   oclacitinib
1391                                                                                                             betamethasone, gentamicin sulfate
1392                                                                                                                                   oclacitinib
1393                                                                                                                  ivermectin, pyrantel pamoate
1394                                                                                                                                   oclacitinib
1395                                                                                                                          prednisolone acetate
1396                                                                                                                          cefpodoxime proxetil
1397                                                                                                                                 metronidazole
1398                                                                                                             dexamethasone, miconazole nitrate
1399                                                                                                                                   oclacitinib
1400                                                                                                                                    lokivetmab
1401                                                                                                                                    prednisone
1402                                                                                                                            methylprednisolone
1403                                                                                                                                    cephalexin
1404                                                                                                             betamethasone, gentamicin sulfate
1405                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1406                                                                                                                                 metronidazole
1407                                                                                                                                  cyclosporine
1408                                                                                                                                  ketoconazole
1409                                                                                                                          cefpodoxime proxetil
1410                                                                                                                                     carprofen
1411                                                                                                                                 metronidazole
1412                                                                                                                                    prednisone
1413                                                                                                                          cefpodoxime proxetil
1414                                                                                                                                   oclacitinib
1415                                                                                                             dexamethasone, miconazole nitrate
1416                                                                                                                                    lokivetmab
1417                                                                                                       betamethasone, florfenicol, terbinafine
1418                                                                                                                                 metronidazole
1419                                                                                                                   lufenuron, milbemycin oxime
1420                                                                                                                                       omega 3
1421                                                                                                                                   hydroxyzine
1422                                                                                                                   lufenuron, milbemycin oxime
1423                                                                                                                                    cephalexin
1424                                                                                                                                   hydroxyzine
1425                                                                                                                                    prednisone
1426                                                                                                                               diphenhydramine
1427                                                                                                                                   amoxicillin
1428                                                                                                                                 metronidazole
1429                                                                                                                                     carprofen
1430                                                                                                                                   hydroxyzine
1431                                                                                                                                       omega 3
1432                                                                                                                                   oclacitinib
1433                                                                                                                                   oclacitinib
1434                                                                                                                      fipronil, (s)-methoprene
1435                                                                                                                   lufenuron, milbemycin oxime
1436                                                                                                                                   oclacitinib
1437                                                                                                                                      tramadol
1438                                                                                                                   lufenuron, milbemycin oxime
1439                                                                                                                                   hydroxyzine
1440                                                                                                           allergy immunotherapy - unspecified
1441                                                                                                                   lufenuron, milbemycin oxime
1442                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                                      fipronil, (s)-methoprene
1444                                                                                                                                    lokivetmab
1445                                                                                                           allergy immunotherapy - unspecified
1446                                                                                                                              milbemycin oxime
1447                                                                                                                                     sarolaner
1448                                                                                                           allergy immunotherapy - unspecified
1449                                                                                                                                    lokivetmab
1450                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                                              milbemycin oxime
1452                                                                                                                                    lokivetmab
1453                                                                                                           allergy immunotherapy - unspecified
1454                                                                                                                                    lokivetmab
1455                                                                                                                                   clindamycin
1456                                                                                                                                     carprofen
1457                                                                                                                                   clindamycin
1458                                                                                                                                      tramadol
1459                                                                                                         dinotefuran, permethrin, pyriproxyfen
1460                                                                                                                                     trazodone
1461                                                                                                                                  acepromazine
1462                                                                                                         dinotefuran, permethrin, pyriproxyfen
1463                                                                                                            joint supplement (glucosamine hcl)
1464                                                                                                                   lufenuron, milbemycin oxime
1465                                                                                                                               dexmedetomidine
1466                                                                                                                                    alprazolam
1467                                                                                                                                    alprazolam
1468                                                                                                                                    alprazolam
1469                                                                                                                   lufenuron, milbemycin oxime
1470                                                                                                                                     trazodone
1471                                                                                                                                    gabapentin
1472                                                                                                                              ceftiofur sodium
1473                                                                                                                        unspecified medication
1474                                                                                                                                     carprofen
1475                                                                                                                      imidacloprid, permethrin
1476                                                                                                                                    cephalexin
1477                                                                                                                          digestive supplement
1478                                                                                                                              tylosin tartrate
1479                                                                                                                                    famotidine
1480                                                                                                                                     pramoxine
1481                                                                                                                                    prednisone
1482                                                                                                                                    cephalexin
1483                                                                                                                          digestive supplement
1484                                                                                                                                    famotidine
1485                                                                                                                              tylosin tartrate
1486                                                                                                                                    prednisone
1487                                                                                                                                 levothyroxine
1488                                                                                                                    imidacloprid, pyriproxyfen
1489                                                                                                                      fipronil, (s)-methoprene
1490                                                                                                                  ivermectin, pyrantel pamoate
1491                                                                                                                  ivermectin, pyrantel pamoate
1492                                                                                                                  ivermectin, pyrantel pamoate
1493                                                                                                                          cefpodoxime proxetil
1494                                                                                                                                     carprofen
1495                                                                                                                          cefpodoxime proxetil
1496                                                                                                                                     probiotic
1497                                                                                                                          cefpodoxime proxetil
1498                                                                                                                                 marbofloxacin
1499                                                                                                                    milbemycin oxime, spinosad
1500                                                                                                                    milbemycin oxime, spinosad
1501                                                                                                                  ivermectin, pyrantel pamoate
1502                                                                                                                  ivermectin, pyrantel pamoate
1503                                                                                                         dinotefuran, permethrin, pyriproxyfen
1504                                                                                                                                     vitamin c
1505                                                                                                                                     vitamin e
1506                                                                                                                                    bee pollen
1507                                                                                                                         brewers yeast, garlic
1508                                                                                                                                     vitamin a
1509                                                                                                                                     vitamin d
1510                                                                                                                  ivermectin, pyrantel pamoate
1511                                                                                                                                    afoxolaner
1512                                                                                                         dinotefuran, permethrin, pyriproxyfen
1513                                                                                                                  ivermectin, pyrantel pamoate
1514                                                                                                                                    afoxolaner
1515                                                                                                                  ivermectin, pyrantel pamoate
1516                                                                                                                                    afoxolaner
1517                                                                                                                                    ivermectin
1518                                                                                                                                    afoxolaner
1519                                                                                                                                    ivermectin
1520                                                                                                                                    afoxolaner
1521                                                                                                                                     meloxicam
1522                                                                                                            amoxicillin, clavulanate potassium
1523                                                                                                                xiao chai hu jia qin jiao tang
1524                                                                                                                                   unspecified
1525                                                                                                                               liu jun zi tang
1526                                                                                                                                     carprofen
1527                                                                                                                  ivermectin, pyrantel pamoate
1528                                                                                                                      imidacloprid, permethrin
1529                                                                                                                                    ivermectin
1530                                                                                                                  ivermectin, pyrantel pamoate
1531                                                                                                                                    ivermectin
1532                                                                                                                    imidacloprid, pyriproxyfen
1533                                                                                                                  ivermectin, pyrantel pamoate
1534                                                                                                                    imidacloprid, pyriproxyfen
1535                                                                                                                              milbemycin oxime
1536                                                                                                                    imidacloprid, pyriproxyfen
1537                                                                                                                              milbemycin oxime
1538                                                                                                                              milbemycin oxime
1539                                                                                                                    imidacloprid, pyriproxyfen
1540                                                                                                                                     ketorolac
1541                                                                                                                    imidacloprid, pyriproxyfen
1542                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1543                                                                                                                                     ketorolac
1544                                                                                                            amoxicillin, clavulanate potassium
1545                                                                                                            amoxicillin, clavulanate potassium
1546                                                                                                                          cefpodoxime proxetil
1547                                                                                                                                     carprofen
1548                                                                                                                                     carprofen
1549                                                                                                                                    yi zhi ren
1550                                                                                                                                    ivermectin
1551                                                                                                                                      spinosad
1552                                                                                                                                   doxycycline
1553                                                                                                                                   oclacitinib
1554                                                                                                                                      propofol
1555                                                                                                                                  enrofloxacin
1556                                                                                                                                   sevoflurane
1557                                                                                                                                   oclacitinib
1558                                                                                                                                   amoxicillin
1559                                                                                                            amoxicillin, clavulanate potassium
1560                                                                                                                                     carprofen
1561                                                                                                                                      tramadol
1562                                                                                                                                   amoxicillin
1563                                                                                                                                     carprofen
1564                                                                                                                                   amoxicillin
1565                                                                                                                                     carprofen
1566                                                                                                            amoxicillin, clavulanate potassium
1567                                                                                                                                 diphenoxylate
1568                                                                                                                                 metronidazole
1569                                                                                                                                     probiotic
1570                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1571                                                                                                                                     sarolaner
1572                                                                                                                milbemycin oxime, praziquantel
1573                                                                                                                                  enrofloxacin
1574                                                                                                                                     sarolaner
1575                                                                                                                                     carprofen
1576                                                                                                                                  ketoconazole
1577                                                                                                                                 levothyroxine
1578                                                                                                                                    gabapentin
1579                                                                                                                                     carprofen
1580                                                                                                                                 levothyroxine
1581                                                                                                                                    omeprazole
1582                                                                                                                                     carprofen
1583                                                                                                                                    ivermectin
1584                                                                                                                  ivermectin, pyrantel pamoate
1585                                                                                                                    imidacloprid, pyriproxyfen
1586                                                                                                                                  ketoconazole
1587                                                                                                                  ivermectin, pyrantel pamoate
1588                                                                                                                                    cephalexin
1589                                                                                                                                     carprofen
1590                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1591                                                                                                                                   epsiprantel
1592                                                                                                                               diphenhydramine
1593                                                                                                                                    famotidine
1594                                                                                                                                      tramadol
1595                                                                                                                                    cephalexin
1596                                                                                                                                     meloxicam
1597                                                                                                                                     meloxicam
1598                                                                                                                  ivermectin, pyrantel pamoate
1599                                                                                                                  ivermectin, pyrantel pamoate
1600                                                                                                                                    afoxolaner
1601                                                                                                  florfenicol, mometasone furoate, terbinafine
1602                                                                                                                       triamcinolone acetonide
1603                                                                                                                               diphenhydramine
1604                                                                                                                                     meloxicam
1605                                                                                                                          cefpodoxime proxetil
1606                                                                                                                               dexmedetomidine
1607                                                                                                                                 hydromorphone
1608                                                                                                                                      ketamine
1609                                                                                                                                      diazepam
1610                                                                                                                                  enrofloxacin
1611                                                                                                  florfenicol, mometasone furoate, terbinafine
1612                                                                                                                                    lokivetmab
1613                                                                                                                          cefpodoxime proxetil
1614                                                                                                                                    lokivetmab
1615                                                                                                                       triamcinolone acetonide
1616                                                                                                                          cefpodoxime proxetil
1617                                                                                                                                  enrofloxacin
1618                                                                                                                                    lokivetmab
1619                                                                                                                                     carprofen
1620                                                                                                                                 metronidazole
1621                                                                                                                       acetic acid, boric acid
1622                                                                                                                                   hydroxyzine
1623                                                                                                                               diphenhydramine
1624                                                                                                                                   hydroxyzine
1625                                                                                                                       triamcinolone acetonide
1626                                                                                                                                   hydroxyzine
1627                                                                                                                                    ivermectin
1628                                                                                                                      fipronil, (s)-methoprene
1629                                                                                                                                   hydroxyzine
1630                                                                                                                                    ivermectin
1631                                                                                                                      fipronil, (s)-methoprene
1632                                                                                                                                  fenbendazole
1633                                                                                                                              milbemycin oxime
1634                                                                                                                      fipronil, (s)-methoprene
1635                                                                                                        joint supplement (glucosamine hcl/msm)
1636                                                                                                                                       omega 3
1637                                                                                                                      fipronil, (s)-methoprene
1638                                                                                                                              milbemycin oxime
1639                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1640                                                                                                                            calming supplement
1641                                                                                                                                     carprofen
1642                                                                                                                                   amoxicillin
1643                                                                                                                                 metronidazole
1644                                                                                                                                    omeprazole
1645                                                                                                                         bismuth subsalicylate
1646                                                                                                                                     carprofen
1647                                                                                                                                 metronidazole
1648                                                                                                                                   amoxicillin
1649                                                                                                                          cefpodoxime proxetil
1650                                                                                                                      fipronil, (s)-methoprene
1651                                                                                                                                     trazodone
1652                                                                                                                                     carprofen
1653                                                                                                                                     carprofen
1654                                                                                                                  ivermectin, pyrantel pamoate
1655                                                                                                                  ivermectin, pyrantel pamoate
1656                                                                                                                      fipronil, (s)-methoprene
1657                                                                                                                  ivermectin, pyrantel pamoate
1658                                                                                                                      fipronil, (s)-methoprene
1659                                                                                                                  ivermectin, pyrantel pamoate
1660                                                                                                                                    afoxolaner
1661                                                                                                                                     carprofen
1662                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1663                                                                                                                    milbemycin oxime, spinosad
1664                                                                                                                                      tramadol
1665                                                                                                                                   amoxicillin
1666                                                                                                                                 metronidazole
1667                                                                                                                                 metronidazole
1668                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1669                                                                                                                                    ivermectin
1670                                                                                                                                    ivermectin
1671                                                                                                            fipronil, permethrin, pyriproxyfen
1672                                                                                                                      fipronil, (s)-methoprene
1673                                                                                                                                    prednisone
1674                                                                                                                                    cephalexin
1675                                                                                                                                       omega 3
1676                                                                                                                  ivermectin, pyrantel pamoate
1677                                                                                                                  ivermectin, pyrantel pamoate
1678                                                                                                                                 metronidazole
1679                                                                                                                                     probiotic
1680                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1681                                                                                                                      flumethrin, imidacloprid
1682                                                                                                                  ivermectin, pyrantel pamoate
1683                                                                                                                      flumethrin, imidacloprid
1684                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                                             betamethasone, gentamicin sulfate
1686                                                                                                                                 metronidazole
1687                                                                                                                            maropitant citrate
1688                                                                                                                  ivermectin, pyrantel pamoate
1689                                                                                                         chlorhexidine gluconate, ketoconazole
1690                                                                                                             betamethasone, gentamicin sulfate
1691                                                                                                                                 metronidazole
1692                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1693                                                                                                                                     carprofen
1694                                                                                                                                     carprofen
1695                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1696                                                                                                                                     carprofen
1697                                                                                                                      flumethrin, imidacloprid
1698                                                                                                                              milbemycin oxime
1699                                                                                                            fipronil, permethrin, pyriproxyfen
1700                                                                                                                        cyphenothrin, fipronil
1701                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1702                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1703                                                                                                                                 metronidazole
1704                                                                                                                                  fenbendazole
1705                                                                                                                                     carprofen
1706                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1707                                                                                                                        cyphenothrin, fipronil
1708                                                                                                                   lufenuron, milbemycin oxime
1709                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1710                                                                                                                   lufenuron, milbemycin oxime
1711                                                                                                                        cyphenothrin, fipronil
1712                                                                                                                   lufenuron, milbemycin oxime
1713                                                                                                                        cyphenothrin, fipronil
1714                                                                                                                                 metronidazole
1715                                                                                                                   lufenuron, milbemycin oxime
1716                                                                                                                        cyphenothrin, fipronil
1717                                                                                                                                    fluralaner
1718                                                                                                                   lufenuron, milbemycin oxime
1719                                                                                                                                     sarolaner
1720                                                                                                                   lufenuron, milbemycin oxime
1721                                                                                                                                     sarolaner
1722                                                                                                                                       taurine
1723                                                                                                                                   l-carnitine
1724                                                                                                                                    pimobendan
1725                                                                                                                                    ivermectin
1726                                                                                                                                  imidacloprid
1727                                                                                                                                    ivermectin
1728                                                                                                                                  imidacloprid
1729                                                                                                                                  imidacloprid
1730                                                                                                                                    ivermectin
1731                                                                                                                    imidacloprid, pyriproxyfen
1732                                                                                                                  ivermectin, pyrantel pamoate
1733                                                                                                                  ivermectin, pyrantel pamoate
1734                                                                                                                  ivermectin, pyrantel pamoate
1735                                                                                                                  ivermectin, pyrantel pamoate
1736                                                                                                                  ivermectin, pyrantel pamoate
1737                                                                                                                                     firocoxib
1738                                                                                                                          cefpodoxime proxetil
1739                                                                                                                                     firocoxib
1740                                                                                                                                    prednisone
1741                                                                                                                                     firocoxib
1742                                                                                                                                    ivermectin
1743                                                                                                                                  imidacloprid
1744                                                                                                                                    ivermectin
1745                                                                                                                    milbemycin oxime, spinosad
1746                                                                                                                                 dexamethasone
1747                                                                                             chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                                                hydrocortisone
1749                                                                                                                    milbemycin oxime, spinosad
1750                                                                                                                                 metronidazole
1751                                                                                                                            maropitant citrate
1752                                                                                                                                  ketoconazole
1753                                                                                                                       chlorhexidine gluconate
1754                                                                                                                                   oclacitinib
1755                                                                                                                                     cefovecin
1756                                                                                                                                     probiotic
1757                                                                                                                        coprophagia supplement
1758                                                                                                                  ivermectin, pyrantel pamoate
1759                                                                                                                                    afoxolaner
1760                                                                                                                                     cefovecin
1761                                                                                                             betamethasone, gentamicin sulfate
1762                                                                                                            amoxicillin, clavulanate potassium
1763                                                                                                                                     carprofen
1764                                                                                                                          cefpodoxime proxetil
1765                                                                                                                          cefpodoxime proxetil
1766                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1767                                                                                                                                 dexamethasone
1768                                                                                                                          cefpodoxime proxetil
1769                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1770                                                                                                                   lufenuron, milbemycin oxime
1771                                                                                                                                    fluralaner
1772                                                                                                                          cefpodoxime proxetil
1773                                                                                                             trimeprazine tartrate, prednisone
1774                                                                                                                   lufenuron, milbemycin oxime
1775                                                                                                                                    fluralaner
1776                                                                                                                                    fluralaner
1777                                                                                                                   lufenuron, milbemycin oxime
1778                                                                                                                  ivermectin, pyrantel pamoate
1779                                                                                                                                    fluralaner
1780                                                                                                                  ivermectin, pyrantel pamoate
1781                                                                                                                                    fluralaner
1782                                                                                                                      joint supplement (other)
1783                                                                                                                                       omega 3
1784                                                                                                                                     carprofen
1785                                                                                                                  ivermectin, pyrantel pamoate
1786                                                                                                                                    fluralaner
1787                                                                                                                      joint supplement (other)
1788                                                                                                                                       omega 3
1789                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1790                                                                                                            amoxicillin, clavulanate potassium
1791                                                                                                                                     mupirocin
1792                                                                                                                          cefpodoxime proxetil
1793                                                                                                                                    gabapentin
1794                                                                                                         chlorhexidine gluconate, ketoconazole
1795                                                                                                                    unspecified shampoo/mousse
1796                                                                                                            joint supplement (glucosamine hcl)
1797                                                                                                                                     carprofen
1798                                                                                                                                     meloxicam
1799                                                                                                                                     probiotic
1800                                                                                                                                 metronidazole
1801                                                                                                                                   clindamycin
1802                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1803                                                                                                             trimeprazine tartrate, prednisone
1804                                                                                                                                     mupirocin
1805                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1806                                                                                                                                  enrofloxacin
1807                                                                                                                                  enrofloxacin
1808                                                                                                                                     vitamin c
1809                                                                                                                      joint supplement (other)
1810                                                                                                                                       omega 3
1811                                                                                                            joint supplement (glucosamine hcl)
1812                                                                                                                                          kelp
1813                                                                                                                                       omega 3
1814                                                                                                                                   doxycycline
1815                                                                                                                                      tramadol
1816                                                                                                                polysulfated glycosaminoglycan
1817                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1818                                                                                                                                 levothyroxine
1819                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                                                 unspecified herbal thyroid support supplement
1821                                                                                                                                   doxycycline
1822                                                                                                                                   doxycycline
1823                                                                                                mometasone furoate, orbifloxacin, posaconazole
1824                                                                                                                                      tramadol
1825                                                                                                                                   oclacitinib
1826                                                                                                                polysulfated glycosaminoglycan
1827                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1828                                                                                                                  ivermectin, pyrantel pamoate
1829                                                                                                                                 metronidazole
1830                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1831                                                                                                                          digestive supplement
1832                                                                                                                polysulfated glycosaminoglycan
1833                                                                                                                                   oclacitinib
1834                                                                                                                                    ivermectin
1835                                                                                                                                    afoxolaner
1836                                                                                                                  ivermectin, pyrantel pamoate
1837                                                                                                                                    afoxolaner
1838                                                                                                                  ivermectin, pyrantel pamoate
1839                                                                                                                                    afoxolaner
1840                                                                                                                                     carprofen
1841                                                                                                                                    ivermectin
1842                                                                                                                      imidacloprid, permethrin
1843                                                                                                                  ivermectin, pyrantel pamoate
1844                                                                                                                  ivermectin, pyrantel pamoate
1845                                                                                                                      imidacloprid, permethrin
1846                                                                                                                  ivermectin, pyrantel pamoate
1847                                                                                                                    imidacloprid, pyriproxyfen
1848                                                                                                                  ivermectin, pyrantel pamoate
1849                                                                                                                  ivermectin, pyrantel pamoate
1850                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1851                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1852                                                                                                                                   minocycline
1853                                                                                                                                   hydrocodone
1854                                                                                                                                   amoxicillin
1855                                                                                                                                 metronidazole
1856                                                                                                                                    famotidine
1857                                                                                                                                 metronidazole
1858                                                                                                                                  enrofloxacin
1859                                                                                                                            miconazole nitrate
1860                                                                                                                                   hydroxyzine
1861                                                                                                                                     vitamin k
1862                                                                                                                                     deracoxib
1863                                                                                                                                    ivermectin
1864                                                                                                         dinotefuran, permethrin, pyriproxyfen
1865                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1866                                                                                                         dinotefuran, permethrin, pyriproxyfen
1867                                                                                                                  ivermectin, pyrantel pamoate
1868                                                                                                                                   amoxicillin
1869                                                                                                                                wei qi booster
1870                                                                                                                                   doxycycline
1871                                                                                                           ear cleaner (zymox), hydrocortisone
1872                                                                                                                  ivermectin, pyrantel pamoate
1873                                                                                                         dinotefuran, permethrin, pyriproxyfen
1874                                                                                                                               dexmedetomidine
1875                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1876                                                                                                                  ivermectin, pyrantel pamoate
1877                                                                                                     unspecified herbal flea/tick preventative
1878                                                                                                                                     carprofen
1879                                                                                                            amoxicillin, clavulanate potassium
1880                                                                                                                  ivermectin, pyrantel pamoate
1881                                                                                                            amoxicillin, clavulanate potassium
1882                                                                                                                                     tris-edta
1883                                                                                                                           ear cleaner (zymox)
1884                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1885                                                                                                                                        garlic
1886                                                                                                                            calming supplement
1887                                                                                                           cedarwood oil, rosemary oil, sesame
1888                                                                                                     unspecified herbal flea/tick preventative
1889                                                                                                                  ivermectin, pyrantel pamoate
1890                                                                                                         dinotefuran, permethrin, pyriproxyfen
1891                                                                                                                                  ba zheng wan
1892                                                                                                                                wei qi booster
1893                                                                                                                                     probiotic
1894                                                                                                                      urinary tract supplement
1895                                                                                                                                     carprofen
1896                                                                                                                            maropitant citrate
1897                                                                                                                           jin gui shen qi wan
1898                                                                                                            amoxicillin, clavulanate potassium
1899                                                                                                            amoxicillin, clavulanate potassium
1900                                                                                                                                     trazodone
1901                                                                                                                                    gabapentin
1902                                                                                                                          cefpodoxime proxetil
1903                                                                                                                                   hydroxyzine
1904                                                                                                                                    loratadine
1905                                                                                                                                     vitamin k
1906                                                                                                                                 metronidazole
1907                                                                                                                               diphenhydramine
1908                                                                                                                                    ivermectin
1909                                                                                                         dinotefuran, permethrin, pyriproxyfen
1910                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1911                                                                                                             trimeprazine tartrate, prednisone
1912                                                                                                             trimeprazine tartrate, prednisone
1913                                                                                                             trimeprazine tartrate, prednisone
1914                                                                                                                          cefpodoxime proxetil
1915                                                                                                                                 external wind
1916                                                                                                         dinotefuran, permethrin, pyriproxyfen
1917                                                                                                                  ivermectin, pyrantel pamoate
1918                                                                                                                          digestive supplement
1919                                                                                                                                 external wind
1920                                                                                                            chlorhexidine gluconate, ophytrium
1921                                                                                                                 allergy immunotherapy - drops
1922                                                                                                             betamethasone, gentamicin sulfate
1923                                                                                                                                  enrofloxacin
1924                                                                                                             enrofloxacin, silver sulfadiazine
1925                                                                                                                              benzoyl peroxide
1926                                                                                                         chlorhexidine gluconate, ketoconazole
1927                                                                                                                                   oclacitinib
1928                                                                                                                                    ivermectin
1929                                                                                                         dinotefuran, permethrin, pyriproxyfen
1930                                                                                                             betamethasone, gentamicin sulfate
1931                                                                                                                              benzoyl peroxide
1932                                                                                                                                   doxycycline
1933                                                                                                                                     carprofen
1934                                                                                                                 allergy immunotherapy - drops
1935                                                                                                                            maropitant citrate
1936                                                                                                                                    ivermectin
1937                                                                                                                                     carprofen
1938                                                                                                                 allergy immunotherapy - drops
1939                                                                                                     unspecified herbal flea/tick preventative
1940                                                                                                                                    gabapentin
1941                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1942                                                                                                                                    ivermectin
1943                                                                                                                                     carprofen
1944                                                                                                                 allergy immunotherapy - drops
1945                                                                                                           cedarwood oil, rosemary oil, sesame
1946                                                                                                                                    ivermectin
1947                                                                                                         dinotefuran, permethrin, pyriproxyfen
1948                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1949                                                                                                                 allergy immunotherapy - drops
1950                                                                                                                                     carprofen
1951                                                                                                                                    gabapentin
1952                                                                                                                                     body sore
1953                                                                                                                                     carprofen
1954                                                                                                            fipronil, permethrin, pyriproxyfen
1955                                                                                                            fipronil, permethrin, pyriproxyfen
1956                                                                                                                              milbemycin oxime
1957                                                                                                                                 metronidazole
1958                                                                                                                                     probiotic
1959                                                                                                                                  fenbendazole
1960                                                                                                            fipronil, permethrin, pyriproxyfen
1961                                                                                                                                     deracoxib
1962                                                                                                                                    ivermectin
1963                                                                                                                                    ivermectin
1964                                                                                                            fipronil, permethrin, pyriproxyfen
1965                                                                                                               ear cleaner (epi-otic advanced)
1966                                                                                                                                    selamectin
1967                                                                                                                                       omega 3
1968                                                                                                        joint supplement (glucosamine hcl/msm)
1969                                                                                                                             vision supplement
1970                                                                                                                  ivermectin, pyrantel pamoate
1971                                                                                                                      imidacloprid, permethrin
1972                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1973                                                                                                                             vision supplement
1974                                                                                                                                       omega 3
1975                                                                                                                    imidacloprid, pyriproxyfen
1976                                                                                                                                    ivermectin
1977                                                                                                                                       omega 3
1978                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1979                                                                                                                             vision supplement
1980                                                                                                                    imidacloprid, pyriproxyfen
1981                                                                                                                  ivermectin, pyrantel pamoate
1982                                                                                                                  ivermectin, pyrantel pamoate
1983                                                                                                                    imidacloprid, pyriproxyfen
1984                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                                       omega 3
1986                                                                                                                  ivermectin, pyrantel pamoate
1987                                                                                                                                    afoxolaner
1988                                                                                                                                     trazodone
1989                                                                                                                polysulfated glycosaminoglycan
1990                                                                                                                                    gabapentin
1991                                                                                                                                     carprofen
1992                                                                                                            amoxicillin, clavulanate potassium
1993                                                                                                                                  enrofloxacin
1994                                                                                                                                   doxorubicin
1995                                                                                                                                     toceranib
1996                                                                                                                                     carprofen
1997                                                                                                                                   amoxicillin
1998                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1999                                                                                                                  ivermectin, pyrantel pamoate
2000                                                                                                                                    fluralaner
2001                                                                                                                  ivermectin, pyrantel pamoate
2002                                                                                                                                    fluralaner
2003                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2004                                                                                                                                     carprofen
2005                                                                                                                                    fluralaner
2006                                                                                                                  ivermectin, pyrantel pamoate
2007                                                                                                                                 levetiracetam
2008                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2009                                                                                                            amoxicillin, clavulanate potassium
2010                                                                                                                      fipronil, (s)-methoprene
2011                                                                                                                                 levetiracetam
2012                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                                       omega 3
2014                                                                                                                          cefpodoxime proxetil
2015                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2016                                                                                                                   lufenuron, milbemycin oxime
2017                                                                                                                  ivermectin, pyrantel pamoate
2018                                                                                                                                    gabapentin
2019                                                                                                                                    amantadine
2020                                                                                                                                    gabapentin
2021                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2022                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2023                                                                                                                      imidacloprid, permethrin
2024                                                                                                                                    ivermectin
2025                                                                                                                    imidacloprid, pyriproxyfen
2026                                                                                                                  ivermectin, pyrantel pamoate
2027                                                                                                                      urinary tract supplement
2028                                                                                                                                   amoxicillin
2029                                                                                                                  ivermectin, pyrantel pamoate
2030                                                                                                                                     sarolaner
2031                                                                                                                                    ivermectin
2032                                                                                                                              pyrantel pamoate
2033                                                                                                                              milbemycin oxime
2034                                                                                                                                  fenbendazole
2035                                                                                                                                    ivermectin
2036                                                                                                                      fipronil, (s)-methoprene
2037                                                                                                                                 metronidazole
2038                                                                                                                        unspecified medication
2039                                                                                                                                    ivermectin
2040                                                                                                                                    ivermectin
2041                                                                                                                                    ivermectin
2042                                                                                                                                    ivermectin
2043                                                                                                                                  fenbendazole
2044                                                                                                                                     ponazuril
2045                                                                                                                                     carprofen
2046                                                                                                                                      propofol
2047                                                                                                                                 hydromorphone
2048                                                                                                                               dexmedetomidine
2049                                                                                                                                   atipamezole
2050                                                                                                                  ivermectin, pyrantel pamoate
2051                                                                                                                      fipronil, (s)-methoprene
2052                                                                                                                                     ponazuril
2053                                                                                                                                  fenbendazole
2054                                                                                                                              sulfadimethoxine
2055                                                                                                                                 metronidazole
2056                                                                                                                                     carprofen
2057                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2058                                                                                                                                   doxycycline
2059                                                                                                                  ivermectin, pyrantel pamoate
2060                                                                                                                  ivermectin, pyrantel pamoate
2061                                                                                                                                   doxycycline
2062                                                                                                                  ivermectin, pyrantel pamoate
2063                                                                                                                  ivermectin, pyrantel pamoate
2064                                                                                                                                    tobramycin
2065                                                                                                                  ivermectin, pyrantel pamoate
2066                                                                                                                      fipronil, (s)-methoprene
2067                                                                                                                                    cephalexin
2068                                                                                                                          cefpodoxime proxetil
2069                                                                                                                  ivermectin, pyrantel pamoate
2070                                                                                                                      fipronil, (s)-methoprene
2071                                                                                                                            maropitant citrate
2072                                                                                                                                 metronidazole
2073                                                                                                                  ivermectin, pyrantel pamoate
2074                                                                                                                                    ivermectin
2075                                                                                                                                    ivermectin
2076                                                                                                                  ivermectin, pyrantel pamoate
2077                                                                                                                                    fluralaner
2078                                                                                                                                     carprofen
2079                                                                                                                   lufenuron, milbemycin oxime
2080                                                                                                                polysulfated glycosaminoglycan
2081                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2082                                                                                                                                    fluralaner
2083                                                                                                                                    selamectin
2084                                                                                                                                    ivermectin
2085                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2086                                                                                                                                    fluralaner
2087                                                                                                                   lufenuron, milbemycin oxime
2088                                                                                                                                    fluralaner
2089                                                                                                                      joint supplement (other)
2090                                                                                                                polysulfated glycosaminoglycan
2091                                                                                                                                    ivermectin
2092                                                                                                                                    fluralaner
2093                                                                                                                      joint supplement (other)
2094                                                                                                                polysulfated glycosaminoglycan
2095                                                                                                                polysulfated glycosaminoglycan
2096                                                                                                                      joint supplement (other)
2097                                                                                                                                     meloxicam
2098                                                                                                                polysulfated glycosaminoglycan
2099                                                                                                                      joint supplement (other)
2100                                                                                                                                     meloxicam
2101                                                                                                                polysulfated glycosaminoglycan
2102                                                                                                                                     meloxicam
2103                                                                                                                                  enrofloxacin
2104                                                                                                                                   amoxicillin
2105                                                                                                                                     cisapride
2106                                                                                                                                     meloxicam
2107                                                                                                                  ivermectin, pyrantel pamoate
2108                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                                                  ivermectin, pyrantel pamoate
2110                                                                                                                  ivermectin, pyrantel pamoate
2111                                                                                                                          cefpodoxime proxetil
2112                                                                                                                          cefpodoxime proxetil
2113                                                                                                             trimeprazine tartrate, prednisone
2114                                                                                                                                   oclacitinib
2115                                                                                                                     unspecified otic ointment
2116                                                                                                                        unspecified otic flush
2117                                                                                                                                    omeprazole
2118                                                                                                                                     probiotic
2119                                                                                                                                      ursodiol
2120                                                                                                                                   bedinvetmab
2121                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2122                                                                                                                        unspecified medication
2123                                                                                                                                     probiotic
2124                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
2125                                                                                                                                    cephalexin
2126                                                                                                                   lufenuron, milbemycin oxime
2127                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2128                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2129                                                                                                                    lactated ringer's solution
2130                                                                                                                                      propofol
2131                                                                                                                                  penicillin g
2132                                                                                                                                     meloxicam
2133                                                                                                                                      oxytocin
2134                                                                                                                                     meloxicam
2135                                                                                                                                    cephalexin
2136                                                                                                                    lactated ringer's solution
2137                                                                                                                              tylosin tartrate
2138                                                                                                                          digestive supplement
2139                                                                                                                          prebiotic, probiotic
2140                                                                                                               atropine sulfate, diphenoxylate
2141                                                                                                                                     carvacrol
2142                                                                                                                              atropine sulfate
2143                                                                                                                              tylosin tartrate
2144                                                                                                           high calorie nutritional supplement
2145                                                                                                                                 metronidazole
2146                                                                                                                                  fenbendazole
2147                                                                                                     lufenuron, milbemycin oxime, praziquantel
2148                                                                                                                         bismuth subsalicylate
2149                                                                                                                   lufenuron, milbemycin oxime
2150                                                                                                                      joint supplement (other)
2151                                                                                                                   lufenuron, milbemycin oxime
2152                                                                                                                      joint supplement (other)
2153                                                                                                                                 hydromorphone
2154                                                                                                                                      propofol
2155                                                                                                                                     cefovecin
2156                                                                                                                                     meloxicam
2157                                                                                                                                      oxytocin
2158                                                                                                                    lactated ringer's solution
2159                                                                                                                                     meloxicam
2160                                                                                                                                      tramadol
2161                                                                                                                   lufenuron, milbemycin oxime
2162                                                                                                                                     sarolaner
2163                                                                                                                      joint supplement (other)
2164                                                                                                                            calming supplement
2165                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2166                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2167                                                                                                                                     probiotic
2168                                                                                                                                 metronidazole
2169                                                                                                                                     vitamin b
2170                                                                                                                                  fenbendazole
2171                                                                                                                            maropitant citrate
2172                                                                                                                                    selamectin
2173                                                                                                                                     vitamin b
2174                                                                                                                                 metronidazole
2175                                                                                                                                     probiotic
2176                                                                                                                                   hydroxyzine
2177                                                                                                                          cefpodoxime proxetil
2178                                                                                                                              milbemycin oxime
2179                                                                                                                    milbemycin oxime, spinosad
2180                                                                                                                                     carprofen
2181                                                                                                                                 metronidazole
2182                                                                                                                      urinary tract supplement
2183                                                                                                                  ormetoprim, sulfadimethoxine
2184                                                                                                                                   amoxicillin
2185                                                                                                                              sulfadimethoxine
2186                                                                                                                                  fenbendazole
2187                                                                                                        joint supplement (glucosamine hcl/msm)
2188                                                                                                                      urinary tract supplement
2189                                                                                                                                  enrofloxacin
2190                                                                                                                                  enrofloxacin
2191                                                                                                                          cefpodoxime proxetil
2192                                                                                                                                     carprofen
2193                                                                                                        joint supplement (glucosamine hcl/msm)
2194                                                                                                                      urinary tract supplement
2195                                                                                                    digestive supplement, prebiotic, probiotic
2196                                                                                                                  ivermectin, pyrantel pamoate
2197                                                                                                                                    afoxolaner
2198                                                                                                                  ivermectin, pyrantel pamoate
2199                                                                                                                  ivermectin, pyrantel pamoate
2200                                                                                                                                    afoxolaner
2201                                                                                                                  ivermectin, pyrantel pamoate
2202                                                                                                                                    afoxolaner
2203                                                                                                                      urinary tract supplement
2204                                                                                                                  ivermectin, pyrantel pamoate
2205                                                                                                                                    afoxolaner
2206                                                                                                                      urinary tract supplement
2207                                                                                                        joint supplement (glucosamine hcl/msm)
2208                                                                                                                                    tobramycin
2209                                                                                                                      urinary tract supplement
2210                                                                                                                                     carprofen
2211                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2212                                                                                                                                     carprofen
2213                                                                                                                                     carprofen
2214                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2215                                                                                                                                      tramadol
2216                                                                                                                                    afoxolaner
2217                                                                                                                      urinary tract supplement
2218                                                                                                                                     carprofen
2219                                                                                                                                        arnica
2220                                                                                                                                     hypericum
2221                                                                                                                                 metronidazole
2222                                                                                                         dinotefuran, permethrin, pyriproxyfen
2223                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2224                                                                                                                     spinal support supplement
2225                                                                                                                                       omega 3
2226                                                                                                                                     probiotic
2227                                                                                                                                    cephalexin
2228                                                                                                                            mangosteen extract
2229                                                                                                                                     shu jin i
2230                                                                                                                                 metronidazole
2231                                                                                                                                    famotidine
2232                                                                                                                                    sucralfate
2233                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2234                                                                                                                              milbemycin oxime
2235                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2236                                                                                                                                   doxycycline
2237                                                                                                                                wei qi booster
2238                                                                                                                                     juan bi 1
2239                                                                                                                milbemycin oxime, praziquantel
2240                                                                                                         dinotefuran, permethrin, pyriproxyfen
2241                                                                                                         dinotefuran, permethrin, pyriproxyfen
2242                                                                                                                                    ivermectin
2243                                                                                                                              milbemycin oxime
2244                                                                                                         dinotefuran, permethrin, pyriproxyfen
2245                                                                                                                                 levothyroxine
2246                                                                                                                                    grapiprant
2247                                                                                                                                    ivermectin
2248                                                                                                                                   minocycline
2249                                                                                                                                     carprofen
2250                                                                                                                                    ivermectin
2251                                                                                                                         clorsulon, ivermectin
2252                                                                                                         dinotefuran, permethrin, pyriproxyfen
2253                                                                                                                                    afoxolaner
2254                                                                                                                                    fluralaner
2255                                                                                                         dinotefuran, permethrin, pyriproxyfen
2256                                                                                                                         ampicillin, sulbactam
2257                                                                                                                      kidney health supplement
2258                                                                                                                                     probiotic
2259                                                                                                                                     vitamin d
2260                                                                                                                                     vitamin a
2261                                                                                                                                     vitamin c
2262                                                                                                                                  multivitamin
2263                                                                                                                      kidney health supplement
2264                                                                                                                 unspecified herbal supplement
2265                                                                                                                                      turmeric
2266                                                                                                    toothpaste/dental health solution or chews
2267                                                                                                            amoxicillin, clavulanate potassium
2268                                                                                                            amoxicillin, clavulanate potassium
2269                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                                      turmeric
2271                                                                                                                                    grapiprant
2272                                                                                                mometasone furoate, orbifloxacin, posaconazole
2273                                                                                                                          prednisolone acetate
2274                                                                                                            amoxicillin, clavulanate potassium
2275                                                                                                                            maropitant citrate
2276                                                                                                                                   mirtazapine
2277                                                                                                                                    ivermectin
2278                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2279                                                                                                                  ivermectin, pyrantel pamoate
2280                                                                                                                  ivermectin, pyrantel pamoate
2281                                                                                                                                 metronidazole
2282                                                                                                                  ivermectin, pyrantel pamoate
2283                                                                                                                  ivermectin, pyrantel pamoate
2284                                                                                                                  ivermectin, pyrantel pamoate
2285                                                                                                                                   doxycycline
2286                                                                                                                                   hydrocodone
2287                                                                                                                  ivermectin, pyrantel pamoate
2288                                                                                                                                 metronidazole
2289                                                                                                                              tylosin tartrate
2290                                                                                                                                    gabapentin
2291                                                                                                                                    prednisone
2292                                                                                                                                    gabapentin
2293                                                                                                                                     carprofen
2294                                                                                                            amoxicillin, clavulanate potassium
2295                                                                                                                                     carprofen
2296                                                                                                                                     carprofen
2297                                                                                                                  ivermectin, pyrantel pamoate
2298                                                                                                                                     carprofen
2299                                                                                                                   sulfadimidine, trimethoprim
2300                                                                                                                                   amoxicillin
2301                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                                         butorphanol tartrate, dexmedetomidine
2303                                                                                                                                    cephalexin
2304                                                                                                                                 dexamethasone
2305                                                                                                                                 dexamethasone
2306                                                                                                                                    cephalexin
2307                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
2308                                                                                                                  ivermectin, pyrantel pamoate
2309                                                                                                                                    afoxolaner
2310                                                                                                                                   doxycycline
2311                                                                                                                  ivermectin, pyrantel pamoate
2312                                                                                                                                    afoxolaner
2313                                                                                                                                 metronidazole
2314                                                                                                                                    cephalexin
2315                                                                                                                                   doxycycline
2316                                                                                                                                   hydrocodone
2317                                                                                                                                   amoxicillin
2318                                                                                                                                    cephalexin
2319                                                                                                                                 methocarbamol
2320                                                                                                                                     carprofen
2321                                                                                                                                    alprazolam
2322                                                                                                                                    gabapentin
2323                                                                                                                                     trazodone
2324                                                                                                                                 methocarbamol
2325                                                                                                                                   bedinvetmab
2326                                                                                                                                     carprofen
2327                                                                                                                                     cefazolin
2328                                                                                                                                    cephalexin
2329                                                                                                                                 yunnan baiyao
2330                                                                                                                                     carprofen
2331                                                                                                                                     carprofen
2332                                                                                                                                    cephalexin
2333                                                                                                                  ivermectin, pyrantel pamoate
2334                                                                                                                                    ivermectin
2335                                                                                                                                    ivermectin
2336                                                                                                                              pyrantel pamoate
2337                                                                                                                                  imidacloprid
2338                                                                                                                                    famotidine
2339                                                                                                                                 dexamethasone
2340                                                                                                                  ivermectin, pyrantel pamoate
2341                                                                                                                  ivermectin, pyrantel pamoate
2342                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2343                                                                                                                  ivermectin, pyrantel pamoate
2344                                                                                                                              pyrantel pamoate
2345                                                                                                                  ivermectin, pyrantel pamoate
2346                                                                                                                  ivermectin, pyrantel pamoate
2347                                                                                                                  ivermectin, pyrantel pamoate
2348                                                                                                                  ivermectin, pyrantel pamoate
2349                                                                                                                                    prednisone
2350                                                                                                                              tylosin tartrate
2351                                                                                                   rx diet - hypoallergenic hydrolyzed protein
2352                                                                                                                  ivermectin, pyrantel pamoate
2353                                                                                                                  ivermectin, pyrantel pamoate
2354                                                                                                                                    prednisone
2355                                                                                                                              tylosin tartrate
2356                                                                                                                  ivermectin, pyrantel pamoate
2357                                                                                                                                    prednisone
2358                                                                                                                                  enrofloxacin
2359                                                                                                                                 metronidazole
2360                                                                                                                            maropitant citrate
2361                                                                                                                                 dexamethasone
2362                                                                                                                                       omega 3
2363                                                                                                                                     vitamin c
2364                                                                                                                                    prednisone
2365                                                                                                                                   clindamycin
2366                                                                                                                                    omeprazole
2367                                                                                                                                    cephalexin
2368                                                                                                                                    prednisone
2369                                                                                                                                    ampicillin
2370                                                                                                                                  enrofloxacin
2371                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2372                                                                                                                                   doxycycline
2373                                                                                                                                 metronidazole
2374                                                                                                                                    diclofenac
2375                                                                                                                                 metronidazole
2376                                                                                                                                   doxycycline
2377                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2378                                                                                                                                   doxycycline
2379                                                                                                                                     carprofen
2380                                                                                                                                    benzocaine
2381                                                                                                                                 metronidazole
2382                                                                                                                                    cephalexin
2383                                                                                                                                   amoxicillin
2384                                                                                                                  ivermectin, pyrantel pamoate
2385                                                                                                                                    cephalexin
2386                                                                                                                  ivermectin, pyrantel pamoate
2387                                                                                                                                 levothyroxine
2388                                                                                                                            maropitant citrate
2389                                                                                                                            maropitant citrate
2390                                                                                                             betamethasone, gentamicin sulfate
2391                                                                                                                                 metronidazole
2392                                                                                                                                    ranitidine
2393                                                                                                                                    sucralfate
2394                                                                                                                                 dexamethasone
2395                                                                                                                                    ivermectin
2396                                                                                                                            maropitant citrate
2397                                                                                                                                    sucralfate
2398                                                                                                             betamethasone, gentamicin sulfate
2399                                                                                                                                    ivermectin
2400                                                                                                                            maropitant citrate
2401                                                                                                                  ivermectin, pyrantel pamoate
2402                                                                                                                      fipronil, (s)-methoprene
2403                                                                                                                  ivermectin, pyrantel pamoate
2404                                                                                                                  ivermectin, pyrantel pamoate
2405                                                                                                                      fipronil, (s)-methoprene
2406                                                                                                                                       omega 3
2407                                                                                                                  ivermectin, pyrantel pamoate
2408                                                                                                                      fipronil, (s)-methoprene
2409                                                                                                                  ivermectin, pyrantel pamoate
2410                                                                                                                                    cephalexin
2411                                                                                                                                    ivermectin
2412                                                                                                                                   clindamycin
2413                                                                                                                                    gabapentin
2414                                                                                                                                     carprofen
2415                                                                                                                                    gabapentin
2416                                                                                                                  ivermectin, pyrantel pamoate
2417                                                                                                                  ivermectin, pyrantel pamoate
2418                                                                                                                  ivermectin, pyrantel pamoate
2419                                                                                                                  ivermectin, pyrantel pamoate
2420                                                                                                                  ivermectin, pyrantel pamoate
2421                                                                                                                                   oclacitinib
2422                                                                                                                                   oclacitinib
2423                                                                                                            amoxicillin, clavulanate potassium
2424                                                                                                                            maropitant citrate
2425                                                                                                                                    omeprazole
2426                                                                                                                                   amoxicillin
2427                                                                                                                                 metronidazole
2428                                                                                                                                   oclacitinib
2429                                                                                                                                   oclacitinib
2430                                                                                                                                 metronidazole
2431                                                                                                                                     carprofen
2432                                                                                                                                   oclacitinib
2433                                                                                                                                     carprofen
2434                                                                                                            amoxicillin, clavulanate potassium
2435                                                                                                                                     carprofen
2436                                                                                                                                   doxycycline
2437                                                                                                                                    ivermectin
2438                                                                                                                                 metronidazole
2439                                                                                                                                 metronidazole
2440                                                                                                                                  azithromycin
2441                                                                                                                     amylase, lipase, protease
2442                                                                                                                                  fenbendazole
2443                                                                                                      febantel, praziquantel, pyrantel pamoate
2444                                                                                                                                     ponazuril
2445                                                                                                                              sulfadimethoxine
2446                                                                                                                   lufenuron, milbemycin oxime
2447                                                                                                                                      tramadol
2448                                                                                                            fipronil, permethrin, pyriproxyfen
2449                                                                                                                                    ivermectin
2450                                                                                                                                   clindamycin
2451                                                                                                                            maropitant citrate
2452                                                                                                                            maropitant citrate
2453                                                                                                                            maropitant citrate
2454                                                                                                                            maropitant citrate
2455                                                                                                                                    famotidine
2456                                                                                                                            maropitant citrate
2457                                                                                                                                 methocarbamol
2458                                                                                                                                      tramadol
2459                                                                                                                                      diazepam
2460                                                                                                                                      diazepam
2461                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2462                                                                                                                       ketoconazole, tris-edta
2463                                                                                                             rx diet - selected protein (duck)
2464                                                                                                                  ivermectin, pyrantel pamoate
2465                                                                                                                                    ivermectin
2466                                                                                                                                    cephalexin
2467                                                                                                             trimeprazine tartrate, prednisone
2468                                                                                                                                   clindamycin
2469                                                                                                                            maropitant citrate
2470                                                                                                                                 methocarbamol
2471                                                                                                                                      diazepam
2472                                                                                                                                      diazepam
2473                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                                       ketoconazole, tris-edta
2475                                                                                                                                   doxycycline
2476                                                                                                                                     probiotic
2477                                                                                                                                 buprenorphine
2478                                                                                                                                    ampicillin
2479                                                                                                                                     probiotic
2480                                                                                                                                     carprofen
2481                                                                                                                                      fipronil
2482                                                                                                                  ivermectin, pyrantel pamoate
2483                                                                                                                                    afoxolaner
2484                                                                                                                                  ketoconazole
2485                                                                                                                                   oclacitinib
2486                                                                                                                       acetic acid, boric acid
2487                                                                                                                       ketoconazole, tris-edta
2488                                                                                                            amoxicillin, clavulanate potassium
2489                                                                                                                                     carprofen
2490                                                                                                                               dexmedetomidine
2491                                                                                                                            miconazole nitrate
2492                                                                                                                       acetic acid, boric acid
2493                                                                                                                                   oclacitinib
2494                                                                                                                                  ketoconazole
2495                                                                                                                                    afoxolaner
2496                                                                                                                                    omeprazole
2497                                                                                                                                    sucralfate
2498                                                                                                                                   amoxicillin
2499                                                                                                             rx diet - selected protein (duck)
2500                                                                                                                  ivermectin, pyrantel pamoate
2501                                                                                                                                     carprofen
2502                                                                                                                                    alprazolam
2503                                                                                                                                   oclacitinib
2504                                                                                                                                    afoxolaner
2505                                                                                                                                    ivermectin
2506                                                                                                                                    afoxolaner
2507                                                                                                                                 metronidazole
2508                                                                                                                                     probiotic
2509                                                                                                                            maropitant citrate
2510                                                                                                                                    ivermectin
2511                                                                                                                                    ivermectin
2512                                                                                                                  ivermectin, pyrantel pamoate
2513                                                                                                                                    ivermectin
2514                                                                                                                  ivermectin, pyrantel pamoate
2515                                                                                                                                 metronidazole
2516                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2517                                                                                                                   lufenuron, milbemycin oxime
2518                                                                                                                      joint supplement (other)
2519                                                                                                                   lufenuron, milbemycin oxime
2520                                                                                                                                     carprofen
2521                                                                                                                   lufenuron, milbemycin oxime
2522                                                                                                                   lufenuron, milbemycin oxime
2523                                                                                                                    thyroid support supplement
2524                                                                                                                    thyroid support supplement
2525                                                                                                                                     carprofen
2526                                                                                                                polysulfated glycosaminoglycan
2527                                                                                                                                     carprofen
2528                                                                                                                                  enrofloxacin
2529                                                                                                                polysulfated glycosaminoglycan
2530                                                                                                                                     carprofen
2531                                                                                                                                  enrofloxacin
2532                                                                                                                                    prednisone
2533                                                                                                                                   doxycycline
2534                                                                                                                unspecified eye dilation drops
2535                                                                                                                                   doxycycline
2536                                                                                                    dextromethorphan hydrobromide, guaifenesin
2537                                                                                                                  ivermectin, pyrantel pamoate
2538                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2539                                                                                                     lufenuron, milbemycin oxime, praziquantel
2540                                                                                                                   lufenuron, milbemycin oxime
2541                                                                                                                              milbemycin oxime
2542                                                                                                                milbemycin oxime, praziquantel
2543                                                                                                                      flumethrin, imidacloprid
2544                                                                                                                                 metronidazole
2545                                                                                                                milbemycin oxime, praziquantel
2546                                                                                                                      flumethrin, imidacloprid
2547                                                                                                                              milbemycin oxime
2548                                                                                                                      flumethrin, imidacloprid
2549                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                                       omega 3
2551                                                                                                                                     carprofen
2552                                                                                                            amoxicillin, clavulanate potassium
2553                                                                                                                                     carprofen
2554                                                                                                            amoxicillin, clavulanate potassium
2555                                                                                                                                     carprofen
2556                                                                                                                                    cephalexin
2557                                                                                                                                    fluoxetine
2558                                                                                                                  ivermectin, pyrantel pamoate
2559                                                                                                                  ivermectin, pyrantel pamoate
2560                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2561                                                                                                                                    fluoxetine
2562                                                                                                                  ivermectin, pyrantel pamoate
2563                                                                                                                                   oclacitinib
2564                                                                                                                  ivermectin, pyrantel pamoate
2565                                                                                                                                    fluoxetine
2566                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2567                                                                                                                                    fluoxetine
2568                                                                                                                                   oclacitinib
2569                                                                                                                                   oclacitinib
2570                                                                                                                    thyroid support supplement
2571                                                                                                                                    ivermectin
2572                                                                                                                    imidacloprid, pyriproxyfen
2573                                                                                                                         clorsulon, ivermectin
2574                                                                                                            amoxicillin, clavulanate potassium
2575                                                                                                             betamethasone, gentamicin sulfate
2576                                                                                                                                    prednisone
2577                                                                                                                          cefpodoxime proxetil
2578                                                                                                             betamethasone, gentamicin sulfate
2579                                                                                                                                   oclacitinib
2580                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2581                                                                                                            amoxicillin, clavulanate potassium
2582                                                                                                mometasone furoate, orbifloxacin, posaconazole
2583                                                                                                                                    ivermectin
2584                                                                                                                      fipronil, (s)-methoprene
2585                                                                                                                                    ivermectin
2586                                                                                                                      imidacloprid, permethrin
2587                                                                                                                                   doxycycline
2588                                                                                                                                    fluralaner
2589                                                                                                                                    grapiprant
2590                                                                                                                                     probiotic
2591                                                                                                                                  multivitamin
2592                                                                                                                             vision supplement
2593                                                                                                                                  flurbiprofen
2594                                                                                                                                       omega 3
2595                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2596                                                                                                                      urinary tract supplement
2597                                                                                                                                      curcumin
2598                                                                                                                                     ketorolac
2599                                                                                                                           polyethylene glycol
2600                                                                                                                             vision supplement
2601                                                                                                                              sulfadimethoxine
2602                                                                                                                                  fenbendazole
2603                                                                                                                                   doxycycline
2604                                                                                                                                     ketorolac
2605                                                                                                                           polyethylene glycol
2606                                                                                                                             vision supplement
2607                                                                                                                                      tramadol
2608                                                                                                                                     carprofen
2609                                                                                                                                     piroxicam
2610                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2611                                                                                                                                  fenbendazole
2612                                                                                                                              sulfadimethoxine
2613                                                                                                                                  praziquantel
2614                                                                                                                                    ivermectin
2615                                                                                                                              pyrantel pamoate
2616                                                                                                                                   mebendazole
2617                                                                                                                                     lufenuron
2618                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2619                                                                                                                                  praziquantel
2620                                                                                                                                    ivermectin
2621                                                                                                                              pyrantel pamoate
2622                                                                                                                                   mebendazole
2623                                                                                                                                     lufenuron
2624                                                                                                                          prednisolone acetate
2625                                                                                                                                  enrofloxacin
2626                                                                                                                                    alprazolam
2627                                                                                                             betamethasone, gentamicin sulfate
2628                                                                                                                          prednisolone acetate
2629                                                                                                                          prednisolone acetate
2630                                                                                                                          prednisolone acetate
2631                                                                                                                                  praziquantel
2632                                                                                                                                    ivermectin
2633                                                                                                                              pyrantel pamoate
2634                                                                                                                                   mebendazole
2635                                                                                                                                     lufenuron
2636                                                                                                                                   oclacitinib
2637                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2638                                                                                                                                    cephalexin
2639                                                                                                                                   oclacitinib
2640                                                                                                                                   oclacitinib
2641                                                                                                                                      tramadol
2642                                                                                                             betamethasone, gentamicin sulfate
2643                                                                                                                                    lokivetmab
2644                                                                                                                                 metronidazole
2645                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2646                                                                                                                                  praziquantel
2647                                                                                                                                    ivermectin
2648                                                                                                                              pyrantel pamoate
2649                                                                                                                                   mebendazole
2650                                                                                                                                     lufenuron
2651                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                                           ear cleaner (zymox)
2654                                                                                                                                    cephalexin
2655                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2656                                                                                                                                     carprofen
2657                                                                                                                                    gabapentin
2658                                                                                                                                     trazodone
2659                                                                                                                      skin and coat supplement
2660                                                                                                                       unspecified ear cleaner
2661                                                                                                                              colloidal silver
2662                                                                                                                                    prednisone
2663                                                                                                                               diphenhydramine
2664                                                                                                             betamethasone, gentamicin sulfate
2665                                                                                                                          prednisolone acetate
2666                                                                                                                          prednisolone acetate
2667                                                                                                                          prednisolone acetate
2668                                                                                                                                    cephalexin
2669                                                                                                                                  praziquantel
2670                                                                                                                                    ivermectin
2671                                                                                                                              pyrantel pamoate
2672                                                                                                                                   mebendazole
2673                                                                                                                                     lufenuron
2674                                                                                                                                  praziquantel
2675                                                                                                                                    ivermectin
2676                                                                                                                              pyrantel pamoate
2677                                                                                                                                   mebendazole
2678                                                                                                                                     lufenuron
2679                                                                                                                                  praziquantel
2680                                                                                                                                    ivermectin
2681                                                                                                                              pyrantel pamoate
2682                                                                                                                                   mebendazole
2683                                                                                                                                     lufenuron
2684                                                                                                                                  praziquantel
2685                                                                                                                                    ivermectin
2686                                                                                                                              pyrantel pamoate
2687                                                                                                                                   mebendazole
2688                                                                                                                                     lufenuron
2689                                                                                                                                  praziquantel
2690                                                                                                                                    ivermectin
2691                                                                                                                              pyrantel pamoate
2692                                                                                                                                   mebendazole
2693                                                                                                                                     lufenuron
2694                                                                                                                                    lokivetmab
2695                                                                                                             betamethasone, gentamicin sulfate
2696                                                                                                                                 dexamethasone
2697                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2698                                                                                                                          prednisolone acetate
2699                                                                                                             betamethasone, gentamicin sulfate
2700                                                                                                                                    lokivetmab
2701                                                                                                                                  praziquantel
2702                                                                                                                                    ivermectin
2703                                                                                                                              pyrantel pamoate
2704                                                                                                                                   mebendazole
2705                                                                                                                                     lufenuron
2706                                                                                                                                 phenobarbital
2707                                                                                                                                 levetiracetam
2708                                                                                                                                     cefovecin
2709                                                                                                                      imidacloprid, moxidectin
2710                                                                                                                      imidacloprid, moxidectin
2711                                                                                                                                   amoxicillin
2712                                                                                                                                     cefovecin
2713                                                                                                  florfenicol, mometasone furoate, terbinafine
2714                                                                                                                                    lokivetmab
2715                                                                                                                                     meloxicam
2716                                                                                                                                     cefovecin
2717                                                                                                                               cbd or hemp oil
2718                                                                                                                                    lokivetmab
2719                                                                                                                  ivermectin, pyrantel pamoate
2720                                                                                                                                    afoxolaner
2721                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2722                                                                                                                                    prednisone
2723                                                                                                                                    prednisone
2724                                                                                                                                    afoxolaner
2725                                                                                                                  ivermectin, pyrantel pamoate
2726                                                                                                                  ivermectin, pyrantel pamoate
2727                                                                                                                                    prednisone
2728                                                                                                                                    prednisone
2729                                                                                                                                   ondansetron
2730                                                                                                                                    famotidine
2731                                                                                                                    milbemycin oxime, spinosad
2732                                                                                                                                 ciprofloxacin
2733                                                                                                                          cefpodoxime proxetil
2734                                                                                                                                 metronidazole
2735                                                                                                                    milbemycin oxime, spinosad
2736                                                                                                                                    afoxolaner
2737                                                                                                                   lufenuron, milbemycin oxime
2738                                                                                                                              milbemycin oxime
2739                                                                                                                                    afoxolaner
2740                                                                                                                                  enrofloxacin
2741                                                                                                                          cefpodoxime proxetil
2742                                                                                                                   lufenuron, milbemycin oxime
2743                                                                                                                                    fluralaner
2744                                                                                                                                   oclacitinib
2745                                                                                                                   lufenuron, milbemycin oxime
2746                                                                                                                                    fluralaner
2747                                                                                                                                    lokivetmab
2748                                                                                                                   lufenuron, milbemycin oxime
2749                                                                                                                                    fluralaner
2750                                                                                                                                   oclacitinib
2751                                                                                                                                    lokivetmab
2752                                                                                                                          cefpodoxime proxetil
2753                                                                                                     lufenuron, milbemycin oxime, praziquantel
2754                                                                                                                                    fluralaner
2755                                                                                                                                   oclacitinib
2756                                                                                                                                    lokivetmab
2757                                                                                                                          cefpodoxime proxetil
2758                                                                                                                                    lokivetmab
2759                                                                                                                                   oclacitinib
2760                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
2761                                                                                                                                 metronidazole
2762                                                                                                                          cefpodoxime proxetil
2763                                                                                                                                 metronidazole
2764                                                                                                                                   oclacitinib
2765                                                                                                                                    lokivetmab
2766                                                                                                                                    gabapentin
2767                                                                                                                                     carprofen
2768                                                                                                                                 metronidazole
2769                                                                                                                                    cephalexin
2770                                                                                                                                    cephalexin
2771                                                                                                                      fipronil, (s)-methoprene
2772                                                                                                                  ivermectin, pyrantel pamoate
2773                                                                                                                                    cephalexin
2774                                                                                                                  ivermectin, pyrantel pamoate
2775                                                                                                                                    afoxolaner
2776                                                                                                mometasone furoate, orbifloxacin, posaconazole
2777                                                                                                                  ivermectin, pyrantel pamoate
2778                                                                                                                                    afoxolaner
2779                                                                                                mometasone furoate, orbifloxacin, posaconazole
2780                                                                                                                                   doxycycline
2781                                                                                                                  ivermectin, pyrantel pamoate
2782                                                                                                                                     sarolaner
2783                                                                                                mometasone furoate, orbifloxacin, posaconazole
2784                                                                                                            amoxicillin, clavulanate potassium
2785                                                                                                                            maropitant citrate
2786                                                                                                                    lactated ringer's solution
2787                                                                                                                                  enrofloxacin
2788                                                                                                                                   amoxicillin
2789                                                                                                                          butorphanol tartrate
2790                                                                                                                                    gabapentin
2791                                                                                                                  ivermectin, pyrantel pamoate
2792                                                                                                                                    afoxolaner
2793                                                                                                                                    gabapentin
2794                                                                                                                                    cephalexin
2795                                                                                                                                    cetirizine
2796                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2797                                                                                                                                    ivermectin
2798                                                                                                                                    ivermectin
2799                                                                                                                      fipronil, (s)-methoprene
2800                                                                                                                                    ivermectin
2801                                                                                                                      fipronil, (s)-methoprene
2802                                                                                                                                    ivermectin
2803                                                                                                                      fipronil, (s)-methoprene
2804                                                                                                                                       omega 3
2805                                                                                                                      fipronil, (s)-methoprene
2806                                                                                                                                    ivermectin
2807                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2808                                                                                                                                       omega 3
2809                                                                                                                                    ivermectin
2810                                                                                                                                       omega 3
2811                                                                                                                                       taurine
2812                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2813                                                                                                                         clorsulon, ivermectin
2814                                                                                                                                       taurine
2815                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2816                                                                                                                                       omega 3
2817                                                                                                                  ivermectin, pyrantel pamoate
2818                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2819                                                                                                                              pyrantel pamoate
2820                                                                                                                              pyrantel pamoate
2821                                                                                                                                      tramadol
2822                                                                                                                                     meloxicam
2823                                                                                                                                    prednisone
2824                                                                                                                          cefpodoxime proxetil
2825                                                                                                                              milbemycin oxime
2826                                                                                                                  ivermectin, pyrantel pamoate
2827                                                                                                                  ivermectin, pyrantel pamoate
2828                                                                                                                  ivermectin, pyrantel pamoate
2829                                                                                                                                  azithromycin
2830                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2831                                                                                                                  ivermectin, pyrantel pamoate
2832                                                                                                                       acetic acid, boric acid
2833                                                                                                                   lufenuron, milbemycin oxime
2834                                                                                                                                 metronidazole
2835                                                                                                                                  ketoconazole
2836                                                                                                             dexamethasone, miconazole nitrate
2837                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2838                                                                                                                              milbemycin oxime
2839                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
2840                                                                                                                          cefpodoxime proxetil
2841                                                                                                                          cefpodoxime proxetil
2842                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
2843                                                                                                                                   oclacitinib
2844                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2845                                                                                                                                     carprofen
2846                                                                                                                              milbemycin oxime
2847                                                                                                                          cefpodoxime proxetil
2848                                                                                                                                    cephalexin
2849                                                                                                                                    prednisone
2850                                                                                                                                   doxycycline
2851                                                                                                                                    diclofenac
2852                                                                                                                                    prednisone
2853                                                                                                                                   fluticasone
2854                                                                                                                                      tramadol
2855                                                                                                                                 yunnan baiyao
2856                                                                                                                                 metronidazole
2857                                                                                                                                    ivermectin
2858                                                                                                                                chlorphenamine
2859                                                                                                                                    prednisone
2860                                                                                                                                    cephalexin
2861                                                                                                                                chlorphenamine
2862                                                                                                                                    prednisone
2863                                                                                                                                    ivermectin
2864                                                                                                                      fipronil, (s)-methoprene
2865                                                                                                                  ivermectin, pyrantel pamoate
2866                                                                                                                      fipronil, (s)-methoprene
2867                                                                                                                                    ranitidine
2868                                                                                                                                    ivermectin
2869                                                                                                            unspecified heartworm preventative
2870                                                                                                                  ivermectin, pyrantel pamoate
2871                                                                                                                                  praziquantel
2872                                                                                                                                     carprofen
2873                                                                                                                                     carprofen
2874                                                                                                                                     carprofen
2875                                                                                                                                     carprofen
2876                                                                                                                                    fluralaner
2877                                                                                                                    milbemycin oxime, spinosad
2878                                                                                                                              pyrantel pamoate
2879                                                                                                                       ketoconazole, tris-edta
2880                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2881                                                                                                                            miconazole nitrate
2882                                                                                                                          butorphanol tartrate
2883                                                                                                                               dexmedetomidine
2884                                                                                                                                   atipamezole
2885                                                                                                            amoxicillin, clavulanate potassium
2886                                                                                                                                    ampicillin
2887                                                                                                                   lufenuron, milbemycin oxime
2888                                                                                                                                     carprofen
2889                                                                                                                          cefpodoxime proxetil
2890                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2891                                                                                                                                 buprenorphine
2892                                                                                                                                     midazolam
2893                                                                                                                                      ketamine
2894                                                                                                            amoxicillin, clavulanate potassium
2895                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2896                                                                                                                                      ketamine
2897                                                                                                         chlorhexidine gluconate, ketoconazole
2898                                                                                                                          cefpodoxime proxetil
2899                                                                                                                                    prednisone
2900                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2901                                                                                                                          cefpodoxime proxetil
2902                                                                                                                                    prednisone
2903                                                                                                         chlorhexidine gluconate, ketoconazole
2904                                                                                                         chlorhexidine gluconate, ketoconazole
2905                                                                                                         chlorhexidine gluconate, ketoconazole
2906                                                                                                                                    prednisone
2907                                                                                                                                     probiotic
2908                                                                                                         chlorhexidine gluconate, ketoconazole
2909                                                                                                                   lufenuron, milbemycin oxime
2910                                                                                                                                    afoxolaner
2911                                                                                                                   lufenuron, milbemycin oxime
2912                                                                                                                                    afoxolaner
2913                                                                                                                                     probiotic
2914                                                                                                                                     carprofen
2915                                                                                                            amoxicillin, clavulanate potassium
2916                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2917                                                                                                                                      ketamine
2918                                                                                                                                     midazolam
2919                                                                                                                milbemycin oxime, praziquantel
2920                                                                                                                                    afoxolaner
2921                                                                                                                                     probiotic
2922                                                                                                                              milbemycin oxime
2923                                                                                                                                    afoxolaner
2924                                                                                                                                       omega 3
2925                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2926                                                                                                                              milbemycin oxime
2927                                                                                                                                    afoxolaner
2928                                                                                                                                    cephalexin
2929                                                                                                                                    cephalexin
2930                                                                                                                                    cephalexin
2931                                                                                                                                    lokivetmab
2932                                                                                                       betamethasone, florfenicol, terbinafine
2933                                                                                                                                    prednisone
2934                                                                                                                                    lokivetmab
2935                                                                                                                                    prednisone
2936                                                                                                                                    cephalexin
2937                                                                                                                                    prednisone
2938                                                                                                                                   oclacitinib
2939                                                                                                                                    prednisone
2940                                                                                                                                    cephalexin
2941                                                                                                                   lufenuron, milbemycin oxime
2942                                                                                                                      imidacloprid, permethrin
2943                                                                                                                   lufenuron, milbemycin oxime
2944                                                                                                                    imidacloprid, pyriproxyfen
2945                                                                                                                   lufenuron, milbemycin oxime
2946                                                                                                                    imidacloprid, pyriproxyfen
2947                                                                                                                    imidacloprid, pyriproxyfen
2948                                                                                                                milbemycin oxime, praziquantel
2949                                                                                                                    imidacloprid, pyriproxyfen
2950                                                                                                                milbemycin oxime, praziquantel
2951                                                                                                                    imidacloprid, pyriproxyfen
2952                                                                                                                                    prednisone
2953                                                                                                                            maropitant citrate
2954                                                                                                                                  procarbazine
2955                                                                                                                                    gabapentin
2956                                                                                                                                    amantadine
2957                                                                                                                                    ivermectin
2958                                                                                                                                    ivermectin
2959                                                                                                                                    ivermectin
2960                                                                                                                  ivermectin, pyrantel pamoate
2961                                                                                                                  ivermectin, pyrantel pamoate
2962                                                                                                                  ivermectin, pyrantel pamoate
2963                                                                                                                  ivermectin, pyrantel pamoate
2964                                                                                                                  ivermectin, pyrantel pamoate
2965                                                                                                                                    gabapentin
2966                                                                                                                          cefpodoxime proxetil
2967                                                                                                                   lufenuron, milbemycin oxime
2968                                                                                                                      fipronil, (s)-methoprene
2969                                                                                                                              pyrantel pamoate
2970                                                                                                                               apomorphine hcl
2971                                                                                                                                     carprofen
2972                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2973                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2974                                                                                                                   lufenuron, milbemycin oxime
2975                                                                                                                      fipronil, (s)-methoprene
2976                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
2977                                                                                                                   lufenuron, milbemycin oxime
2978                                                                                                     lufenuron, milbemycin oxime, praziquantel
2979                                                                                                                                    afoxolaner
2980                                                                                                                          prednisolone acetate
2981                                                                                                     lufenuron, milbemycin oxime, praziquantel
2982                                                                                                                                    afoxolaner
2983                                                                                                                          prednisolone acetate
2984                                                                                                     lufenuron, milbemycin oxime, praziquantel
2985                                                                                                                                    afoxolaner
2986                                                                                                                          prednisolone acetate
2987                                                                                                                                 metronidazole
2988                                                                                                                                  fenbendazole
2989                                                                                                                                   clindamycin
2990                                                                                                                                  enrofloxacin
2991                                                                                                                              tylosin tartrate
2992                                                                                                                                 metronidazole
2993                                                                                                                                  fenbendazole
2994                                                                                                                                     carprofen
2995                                                                                                                                     carprofen
2996                                                                                                                                    ivermectin
2997                                                                                                                                 metronidazole
2998                                                                                                                                     probiotic
2999                                                                                                                                 dexamethasone
3000                                                                                                                      homatropine, hydrocodone
3001                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3002                                                                                                                          prednisolone acetate
3003                                                                                                               ear cleaner (epi-otic advanced)
3004                                                                                                                  ivermectin, pyrantel pamoate
3005                                                                                                                      fipronil, (s)-methoprene
3006                                                                                                                  ivermectin, pyrantel pamoate
3007                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
3008                                                                                                                                 metronidazole
3009                                                                                                                                  azathioprine
3010                                                                                                                            maropitant citrate
3011                                                                                                                                  capromorelin
3012                                                                                                                                     vitamin b
3013                                                                                                                                     probiotic
3014                                                                                                                                  chlorambucil
3015                                                                                                                                   mirtazapine
3016                                                                                                                                    prednisone
3017                                                                                                                          cefpodoxime proxetil
3018                                                                                                                  ivermectin, pyrantel pamoate
3019                                                                                                                  ivermectin, pyrantel pamoate
3020                                                                                                                  ivermectin, pyrantel pamoate
3021                                                                                                                  ivermectin, pyrantel pamoate
3022                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3023                                                                                                                                   doxycycline
3024                                                                                                                                   doxycycline
3025                                                                                                                              liver supplement
3026                                                                                                                                      ursodiol
3027                                                                                                                                    ivermectin
3028                                                                                                                      fipronil, (s)-methoprene
3029                                                                                                                                   doxycycline
3030                                                                                                                                     thyroxine
3031                                                                                                                              liver supplement
3032                                                                                                                                      ursodiol
3033                                                                                                                              liver supplement
3034                                                                                                                                   doxycycline
3035                                                                                                                                   doxycycline
3036                                                                                                                                     thyroxine
3037                                                                                                                                  theophylline
3038                                                                                                                                    grapiprant
3039                                                                                                            fipronil, permethrin, pyriproxyfen
3040                                                                                                                                    ivermectin
3041                                                                                                                                    ivermectin
3042                                                                                                                      fipronil, (s)-methoprene
3043                                                                                                                      fipronil, (s)-methoprene
3044                                                                                                                  ivermectin, pyrantel pamoate
3045                                                                                                                                    cephalexin
3046                                                                                                                                    gabapentin
3047                                                                                                                                 metronidazole
3048                                                                                                                            maropitant citrate
3049                                                                                                                              sulfadimethoxine
3050                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3051                                                                                                                                    ivermectin
3052                                                                                                                  ivermectin, pyrantel pamoate
3053                                                                                                                  ivermectin, pyrantel pamoate
3054                                                                                                                                 metronidazole
3055                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
3056                                                                                                                                      tramadol
3057                                                                                                                                     carprofen
3058                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3059                                                                                                                                    cephalexin
3060                                                                                                                                    ivermectin
3061                                                                                                                  ivermectin, pyrantel pamoate
3062                                                                                                                  ivermectin, pyrantel pamoate
3063                                                                                                                  ivermectin, pyrantel pamoate
3064                                                                                                                  ivermectin, pyrantel pamoate
3065                                                                                                                                    cetirizine
3066                                                                                                                  ivermectin, pyrantel pamoate
3067                                                                                                                  ivermectin, pyrantel pamoate
3068                                                                                                                                    cetirizine
3069                                                                                                                  ivermectin, pyrantel pamoate
3070                                                                                                                                    cetirizine
3071                                                                                                                                   amoxicillin
3072                                                                                                                                  enrofloxacin
3073                                                                                                mometasone furoate, orbifloxacin, posaconazole
3074                                                                                                                                   oclacitinib
3075                                                                                                                  ivermectin, pyrantel pamoate
3076                                                                                                                                     carprofen
3077                                                                                                                                   clindamycin
3078                                                                                                                                   amoxicillin
3079                                                                                                                                  enrofloxacin
3080                                                                                                                                   clindamycin
3081                                                                                                                                     carprofen
3082                                                                                                                  ivermectin, pyrantel pamoate
3083                                                                                                                                    lokivetmab
3084                                                                                                                                     piroxicam
3085                                                                                                                              cyclophosphamide
3086                                                                                                                                    furosemide
3087                                                                                                                                      tramadol
3088                                                                                                                                    gabapentin
3089                                                                                                         dinotefuran, permethrin, pyriproxyfen
3090                                                                                                                              milbemycin oxime
3091                                                                                                                                    selamectin
3092                                                                                                                                   minocycline
3093                                                                                                                                    cephalexin
3094                                                                                                                                    prednisone
3095                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
3096                                                                                                                                 metronidazole
3097                                                                                                                  ivermectin, pyrantel pamoate
3098                                                                                                                                  acepromazine
3099                                                                                                                                     carprofen
3100                                                                                                                               diphenhydramine
3101                                                                                                                                    selamectin
3102                                                                                                                                    afoxolaner
3103                                                                                                                  ivermectin, pyrantel pamoate
3104                                                                                                                                    afoxolaner
3105                                                                                                                               diphenhydramine
3106                                                                                                                  ivermectin, pyrantel pamoate
3107                                                                                                                                    afoxolaner
3108                                                                                                                               diphenhydramine
3109                                                                                                                              tylosin tartrate
3110                                                                                                mometasone furoate, orbifloxacin, posaconazole
3111                                                                                                                                 metronidazole
3112                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3113                                                                                                                                   oclacitinib
3114                                                                                                                                    prednisone
3115                                                                                                                                    prednisone
3116                                                                                                                                 metronidazole
3117                                                                                                                          cefpodoxime proxetil
3118                                                                                                                                  acepromazine
3119                                                                                                    dimethyl sulfoxide, fluocinolone acetonide
3120                                                                                                                              tylosin tartrate
3121                                                                                                                  ivermectin, pyrantel pamoate
3122                                                                                                                                    afoxolaner
3123                                                                                                                                   oclacitinib
3124                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3125                                                                                                                                   oclacitinib
3126                                                                                                                                     carprofen
3127                                                                                                                            methylprednisolone
3128                                                                                                                                    cetirizine
3129                                                                                                                            methylprednisolone
3130                                                                                                                                    cetirizine
3131                                                                                                                unspecified allergy medication
3132                                                                                                                            methylprednisolone
3133                                                                                                           allergy immunotherapy - unspecified
3134                                                                                                                                    cetirizine
3135                                                                                                                            methylprednisolone
3136                                                                                                                                    selamectin
3137                                                                                                                      fipronil, (s)-methoprene
3138                                                                                                                                    cetirizine
3139                                                                                                                            methylprednisolone
3140                                                                                                                 allergy immunotherapy - drops
3141                                                                                                                                    selamectin
3142                                                                                                                                     sarolaner
3143                                                                                                                            methylprednisolone
3144                                                                                                                                    cetirizine
3145                                                                                                                 allergy immunotherapy - drops
3146                                                                                                                                    cetirizine
3147                                                                                                                 allergy immunotherapy - drops
3148                                                                                                                                  fexofenadine
3149                                                                                                                               dexmedetomidine
3150                                                                                                                          butorphanol tartrate
3151                                                                                                                                   atipamezole
3152                                                                                                                               diphenhydramine
3153                                                                                                                                    cephalexin
3154                                                                                                                                    grapiprant
3155                                                                                                                              tylosin tartrate
3156                                                                                                                                       omega 3
3157                                                                                                                                     probiotic
3158                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3159                                                                                                                 allergy immunotherapy - drops
3160                                                                                                                                     carprofen
3161                                                                                                                                    gabapentin
3162                                                                                                                 allergy immunotherapy - drops
3163                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3164                                                                                                                                       omega 3
3165                                                                                                                                     probiotic
3166                                                                                                                                    cetirizine
3167                                                                                                                              pyrantel pamoate
3168                                                                                                                                     carprofen
3169                                                                                                                                    budesonide
3170                                                                                                                                 metronidazole
3171                                                                                                                            maropitant citrate
3172                                                                                                                                     carvacrol
3173                                                                                                                                    ivermectin
3174                                                                                                                              pyrantel pamoate
3175                                                                                                                    milbemycin oxime, spinosad
3176                                                                                                                    milbemycin oxime, spinosad
3177                                                                                                                              tylosin tartrate
3178                                                                                                                          digestive supplement
3179                                                                                                                  ivermectin, pyrantel pamoate
3180                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3181                                                                                                                                    fluralaner
3182                                                                                                                  ivermectin, pyrantel pamoate
3183                                                                                                                      imidacloprid, permethrin
3184                                                                                                                                    cephalexin
3185                                                                                                                                    gabapentin
3186                                                                                                                  ivermectin, pyrantel pamoate
3187                                                                                                                                    cephalexin
3188                                                                                                                            maropitant citrate
3189                                                                                                                                     cefazolin
3190                                                                                                                                    gabapentin
3191                                                                                                                                 buprenorphine
3192                                                                                                                    lactated ringer's solution
3193                                                                                                                                      tramadol
3194                                                                                                                                    fluralaner
3195                                                                                                                  ivermectin, pyrantel pamoate
3196                                                                                                                                    fluralaner
3197                                                                                                                              tylosin tartrate
3198                                                                                                                          digestive supplement
3199                                                                                                                                    gabapentin
3200                                                                                                                                    omeprazole
3201                                                                                                                                    sucralfate
3202                                                                                                                                     methadone
3203                                                                                                                                     cefazolin
3204                                                                                                                                     midazolam
3205                                                                                                                                      ketamine
3206                                                                                                                                 hydromorphone
3207                                                                                                                                    isoflurane
3208                                                                                                                  ivermectin, pyrantel pamoate
3209                                                                                                                                    fluralaner
3210                                                                                                                  ivermectin, pyrantel pamoate
3211                                                                                                                                    fluralaner
3212                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3213                                                                                                                           silver sulfadiazine
3214                                                                                                                                 metronidazole
3215                                                                                                                                 metronidazole
3216                                                                                                                          digestive supplement
3217                                                                                                                                     trazodone
3218                                                                                                                                     carprofen
3219                                                                                                                          digestive supplement
3220                                                                                                                                     carprofen
3221                                                                                                                                 levothyroxine
3222                                                                                                                                 levothyroxine
3223                                                                                                                                 levothyroxine
3224                                                                                                                                 levothyroxine
3225                                                                                                                                 levothyroxine
3226                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3227                                                                                                                                    sucralfate
3228                                                                                                                                 levothyroxine
3229                                                                                                                                 levothyroxine
3230                                                                                                                                     vitamin b
3231                                                                                                                                 metronidazole
3232                                                                                                                                 levothyroxine
3233                                                                                                                                    diclofenac
3234                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3235                                                                                                                                     vitamin b
3236                                                                                                                                 levothyroxine
3237                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3238                                                                                                                                    diclofenac
3239                                                                                                                                     deracoxib
3240                                                                                                                                  enrofloxacin
3241                                                                                                                                     vitamin b
3242                                                                                                                                 levothyroxine
3243                                                                                                                                    diclofenac
3244                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3245                                                                                                      febantel, praziquantel, pyrantel pamoate
3246                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3247                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3248                                                                                                                                    cephalexin
3249                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3250                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3251                                                                                                                milbemycin oxime, praziquantel
3252                                                                                                                                  fenbendazole
3253                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3254                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3255                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3256                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3257                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3258                                                                                                                                    gabapentin
3259                                                                                                                                    amantadine
3260                                                                                                                                     carprofen
3261                                                                                                                                       omega 3
3262                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3263                                                                                                                      fipronil, (s)-methoprene
3264                                                                                                                                     probiotic
3265                                                                                                                              phytosphingosine
3266                                                                                                                          cefpodoxime proxetil
3267                                                                                                                              sulfadimethoxine
3268                                                                                                                                  fenbendazole
3269                                                                                                                              milbemycin oxime
3270                                                                                                                                 metronidazole
3271                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3272                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3273                                                                                                               ear cleaner (epi-otic advanced)
3274                                                                                                                                 metronidazole
3275                                                                                                                                 metronidazole
3276                                                                                                                                  fenbendazole
3277                                                                                                                              sulfadimethoxine
3278                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3279                                                                                                                                     carprofen
3280                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3281                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3282                                                                                                            amoxicillin, clavulanate potassium
3283                                                                                                                                     carprofen
3284                                                                                                                              milbemycin oxime
3285                                                                                                                                    cephalexin
3286                                                                                                                                     carprofen
3287                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3288                                                                                                                          cefpodoxime proxetil
3289                                                                                                                                    prednisone
3290                                                                                                                                  clomipramine
3291                                                                                                                                     mupirocin
3292                                                                                                                                 metronidazole
3293                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                                              milbemycin oxime
3295                                                                                                                                 metronidazole
3296                                                                                                    dextromethorphan hydrobromide, guaifenesin
3297                                                                                                                                   doxycycline
3298                                                                                                                                  clomipramine
3299                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3300                                                                                                                              milbemycin oxime
3301                                                                                                                                     carprofen
3302                                                                                                                                     carprofen
3303                                                                                                                                      tramadol
3304                                                                                                                                  fenbendazole
3305                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3306                                                                                                                                    ivermectin
3307                                                                                                                                    fluralaner
3308                                                                                                                  ivermectin, pyrantel pamoate
3309                                                                                                                                    fluralaner
3310                                                                                                                  ivermectin, pyrantel pamoate
3311                                                                                                                                    fluralaner
3312                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                                     mupirocin
3314                                                                                                                milbemycin oxime, praziquantel
3315                                                                                                                                     probiotic
3316                                                                                                                                     sarolaner
3317                                                                                                                          cefpodoxime proxetil
3318                                                                                                                                     carprofen
3319                                                                                                                          cefpodoxime proxetil
3320                                                                                                                                  enrofloxacin
3321                                                                                                                                    ampicillin
3322                                                                                                                                   vincristine
3323                                                                                                                                  capromorelin
3324                                                                                                                                   mirtazapine
3325                                                                                                                            maropitant citrate
3326                                                                                                                                    prednisone
3327                                                                                                                                    prednisone
3328                                                                                                                              milbemycin oxime
3329                                                                                                                                     deracoxib
3330                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
3331                                                                                                     lufenuron, milbemycin oxime, praziquantel
3332                                                                                                                                 metronidazole
3333                                                                                     activated charcoal, bismuth subsalicylate, kaolin, pectin
3334                                                                                                                            maropitant citrate
3335                                                                                                     lufenuron, milbemycin oxime, praziquantel
3336                                                                                     activated charcoal, bismuth subsalicylate, kaolin, pectin
3337                                                                                                                                 metronidazole
3338                                                                                                                              milbemycin oxime
3339                                                                                                                milbemycin oxime, praziquantel
3340                                                                                                                                     deracoxib
3341                                                                                                                                      tramadol
3342                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3343                                                                                                                                    cephalexin
3344                                                                                                                                    cephalexin
3345                                                                                                                   lufenuron, milbemycin oxime
3346                                                                                                                   lufenuron, milbemycin oxime
3347                                                                                                                                    cephalexin
3348                                                                                                            amoxicillin, clavulanate potassium
3349                                                                                                                    milbemycin oxime, spinosad
3350                                                                                                                                    ivermectin
3351                                                                                                                  ivermectin, pyrantel pamoate
3352                                                                                                                  ivermectin, pyrantel pamoate
3353                                                                                                                                     firocoxib
3354                                                                                                                praziquantel, pyrantel pamoate
3355                                                                                                                  ivermectin, pyrantel pamoate
3356                                                                                                                      fipronil, (s)-methoprene
3357                                                                                                                                     carprofen
3358                                                                                                                  ivermectin, pyrantel pamoate
3359                                                                                                                      fipronil, (s)-methoprene
3360                                                                                                                      joint supplement (other)
3361                                                                                                                                     carprofen
3362                                                                                                                  ivermectin, pyrantel pamoate
3363                                                                                                                      fipronil, (s)-methoprene
3364                                                                                                                                     carprofen
3365                                                                                                        joint supplement (glucosamine hcl/msm)
3366                                                                                                                                  enrofloxacin
3367                                                                                                                                   terbinafine
3368                                                                                                                                     carprofen
3369                                                                                                                    milbemycin oxime, spinosad
3370                                                                                                                              sulfadimethoxine
3371                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3372                                                                                                                                    ivermectin
3373                                                                                                                  ivermectin, pyrantel pamoate
3374                                                                                                                  ivermectin, pyrantel pamoate
3375                                                                                                      febantel, praziquantel, pyrantel pamoate
3376                                                                                                                                     mupirocin
3377                                                                                                      febantel, praziquantel, pyrantel pamoate
3378                                                                                                                  ivermectin, pyrantel pamoate
3379                                                                                                                      fipronil, (s)-methoprene
3380                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3381                                                                                                                                    cephalexin
3382                                                                                                                                    prednisone
3383                                                                                                                  ivermectin, pyrantel pamoate
3384                                                                                                                      fipronil, (s)-methoprene
3385                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3386                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3387                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
3388                                                                                                                  ivermectin, pyrantel pamoate
3389                                                                                                                      fipronil, (s)-methoprene
3390                                                                                                                                 levothyroxine
3391                                                                                                                                  enrofloxacin
3392                                                                                                                                    gabapentin
3393                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
3394                                                                                                                       triamcinolone acetonide
3395                                                                                                            amoxicillin, clavulanate potassium
3396                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3397                                                                                                                                       omega 3
3398                                                                                                                                     vitamin e
3399                                                                                                                    milbemycin oxime, spinosad
3400                                                                                                                              milbemycin oxime
3401                                                                                                                                    afoxolaner
3402                                                                                                                                    fluralaner
3403                                                                                                                    milbemycin oxime, spinosad
3404                                                                                                                                    afoxolaner
3405                                                                                                                  ivermectin, pyrantel pamoate
3406                                                                                                  florfenicol, mometasone furoate, terbinafine
3407                                                                                                                  ivermectin, pyrantel pamoate
3408                                                                                                                                    afoxolaner
3409                                                                                                                                 yunnan baiyao
3410                                                                                                                                     trazodone
3411                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
3412                                                                                                                                     firocoxib
3413                                                                                                                                    gabapentin
3414                                                                                                                                    grapiprant
3415                                                                                                                                     firocoxib
3416                                                                                                      febantel, praziquantel, pyrantel pamoate
3417                                                                                                                                    grapiprant
3418                                                                                                                                    pimobendan
3419                                                                                                                                    grapiprant
3420                                                                                                                                  acepromazine
3421                                                                                                                 allergy immunotherapy - drops
3422                                                                                                                 allergy immunotherapy - drops
3423                                                                                                                                    selamectin
3424                                                                                                                                    selamectin
3425                                                                                                                                    selamectin
3426                                                                                                                 allergy immunotherapy - drops
3427                                                                                                                                     meloxicam
3428                                                                                                                    milbemycin oxime, spinosad
3429                                                                                                                    milbemycin oxime, spinosad
3430                                                                                                                              milbemycin oxime
3431                                                                                                                                    fluralaner
3432                                                                                                                              milbemycin oxime
3433                                                                                                                                    fluralaner
3434                                                                                                                  ivermectin, pyrantel pamoate
3435                                                                                                                                    fluralaner
3436                                                                                                                                    lokivetmab
3437                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3438                                                                                                                                    lokivetmab
3439                                                                                                  florfenicol, mometasone furoate, terbinafine
3440                                                                                                                  ivermectin, pyrantel pamoate
3441                                                                                                                                    fluralaner
3442                                                                                                                  ivermectin, pyrantel pamoate
3443                                                                                                                                    afoxolaner
3444                                                                                                                                    lokivetmab
3445                                                                                                                                    cephalexin
3446                                                                                                                                    lokivetmab
3447                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3448                                                                                                  florfenicol, mometasone furoate, terbinafine
3449                                                                                                                                     carprofen
3450                                                                                                                   lufenuron, milbemycin oxime
3451                                                                                                                   lufenuron, milbemycin oxime
3452                                                                                                                   lufenuron, milbemycin oxime
3453                                                                                                                   lufenuron, milbemycin oxime
3454                                                                                                                      fipronil, (s)-methoprene
3455                                                                                                                   lufenuron, milbemycin oxime
3456                                                                                                                      fipronil, (s)-methoprene
3457                                                                                                                   lufenuron, milbemycin oxime
3458                                                                                                                    imidacloprid, pyriproxyfen
3459                                                                                                                   lufenuron, milbemycin oxime
3460                                                                                                                   lufenuron, milbemycin oxime
3461                                                                                                                      fipronil, (s)-methoprene
3462                                                                                                                                    ivermectin
3463                                                                                                                                    ivermectin
3464                                                                                                                                    ivermectin
3465                                                                                                                           phenylpropanolamine
3466                                                                                                                  ivermectin, pyrantel pamoate
3467                                                                                                                           phenylpropanolamine
3468                                                                                                                            maropitant citrate
3469                                                                                                                  ivermectin, pyrantel pamoate
3470                                                                                                                           phenylpropanolamine
3471                                                                                                                           phenylpropanolamine
3472                                                                                                                  ivermectin, pyrantel pamoate
3473                                                                                                                           phenylpropanolamine
3474                                                                                                                          cefpodoxime proxetil
3475                                                                                                                           phenylpropanolamine
3476                                                                                                                                   clindamycin
3477                                                                                                                                     carprofen
3478                                                                                                            joint supplement (glucosamine hcl)
3479                                                                                                                   lufenuron, milbemycin oxime
3480                                                                                                                       ketoconazole, tris-edta
3481                                                                                                                                 metronidazole
3482                                                                                                                                  fenbendazole
3483                                                                                                                   lufenuron, milbemycin oxime
3484                                                                                                                   lufenuron, milbemycin oxime
3485                                                                                                                   lufenuron, milbemycin oxime
3486                                                                                                                                   doxycycline
3487                                                                                                                      fipronil, (s)-methoprene
3488                                                                                                                                    nitenpyram
3489                                                                                                                                  praziquantel
3490                                                                                                                                     sarolaner
3491                                                                                                                   lufenuron, milbemycin oxime
3492                                                                                                                                     sarolaner
3493                                                                                                                            maropitant citrate
3494                                                                                                                                 metronidazole
3495                                                                                                     lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                                     sarolaner
3497                                                                                                     lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                                     sarolaner
3499                                                                                                            amoxicillin, clavulanate potassium
3500                                                                                                                                     carprofen
3501                                                                                                                          cefpodoxime proxetil
3502                                                                                                                                    cephalexin
3503                                                                                                                                      tramadol
3504                                                                                                                                     carprofen
3505                                                                                                                             aminocaproic acid
3506                                                                                                                                       sotalol
3507                                                                                                            amoxicillin, clavulanate potassium
3508                                                                                                                                       sotalol
3509                                                                                                                                 yunnan baiyao
3510                                                                                                                                   vinblastine
3511                                                                                                                                     carprofen
3512                                                                                                                  ivermectin, pyrantel pamoate
3513                                                                                                                  ivermectin, pyrantel pamoate
3514                                                                                                                  ivermectin, pyrantel pamoate
3515                                                                                                                  ivermectin, pyrantel pamoate
3516                                                                                                                  ivermectin, pyrantel pamoate
3517                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
3518                                                                                                                                     carprofen
3519                                                                                                                                    ivermectin
3520                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3521                                                                                                                                    cephalexin
3522                                                                                                                  ivermectin, pyrantel pamoate
3523                                                                                                                                    cephalexin
3524                                                                                                                              pyrantel pamoate
3525                                                                                                                  ivermectin, pyrantel pamoate
3526                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3527                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3528                                                                                                                          cefpodoxime proxetil
3529                                                                                                                                    lokivetmab
3530                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3532                                                                                                                                    lokivetmab
3533                                                                                                                                     carprofen
3534                                                                                                                                    lokivetmab
3535                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3536                                                                                                                                     carprofen
3537                                                                                                                                    amantadine
3538                                                                                                                                   doxycycline
3539                                                                                                                                    omeprazole
3540                                                                                                                                  azathioprine
3541                                                                                                                                    prednisone
3542                                                                                                                                    nitenpyram
3543                                                                                                                      fipronil, (s)-methoprene
3544                                                                                                                    milbemycin oxime, spinosad
3545                                                                                                                                      spinosad
3546                                                                                                                              milbemycin oxime
3547                                                                                                                  ivermectin, pyrantel pamoate
3548                                                                                                                   lufenuron, milbemycin oxime
3549                                                                                                                   lufenuron, milbemycin oxime
3550                                                                                                                   lufenuron, milbemycin oxime
3551                                                                                                                  ivermectin, pyrantel pamoate
3552                                                                                                                                    afoxolaner
3553                                                                                                                                    cephalexin
3554                                                                                                                                    prednisone
3555                                                                                                                  ivermectin, pyrantel pamoate
3556                                                                                                                                    afoxolaner
3557                                                                                                                  ivermectin, pyrantel pamoate
3558                                                                                                                                    alprazolam
3559                                                                                                                                 metronidazole
3560                                                                                                                                       timolol
3561                                                                                                                          prednisolone acetate
3562                                                                                                                                    alprazolam
3563                                                                                                                          prednisolone acetate
3564                                                                                                                                    alprazolam
3565                                                                                                                                     trazodone
3566                                                                                                                                       timolol
3567                                                                                                                                     carprofen
3568                                                                                                                                      spinosad
3569                                                                                                                              milbemycin oxime
3570                                                                                                                          cefpodoxime proxetil
3571                                                                                                                                     meloxicam
3572                                                                                                                                     carprofen
3573                                                                                                                                 metronidazole
3574                                                                                                                                  fenbendazole
3575                                                                                                      febantel, praziquantel, pyrantel pamoate
3576                                                                                                                                      spinosad
3577                                                                                                                              milbemycin oxime
3578                                                                                                                                 metronidazole
3579                                                                                                                                      spinosad
3580                                                                                                                              milbemycin oxime
3581                                                                                                                                  multivitamin
3582                                                                                                                                 hydromorphone
3583                                                                                                                                  acepromazine
3584                                                                                                                                      diazepam
3585                                                                                                                              atropine sulfate
3586                                                                                                                                      propofol
3587                                                                                                                                   doxycycline
3588                                                                                                                                   sevoflurane
3589                                                                                                                                      spinosad
3590                                                                                                                              milbemycin oxime
3591                                                                                                                                 hydromorphone
3592                                                                                                                                     midazolam
3593                                                                                                                               dexmedetomidine
3594                                                                                                                                   atipamezole
3595                                                                                                                                     carprofen
3596                                                                                                                                     carprofen
3597                                                                                                                          cefpodoxime proxetil
3598                                                                                                                                 marbofloxacin
3599                                                                                                                          cefpodoxime proxetil
3600                                                                                                                            gentamicin sulfate
3601                                                                                                                                     carprofen
3602                                                                                                                                     carprofen
3603                                                                                                                                 marbofloxacin
3604                                                                                                                            gentamicin sulfate
3605                                                                                                                                     sarolaner
3606                                                                                                                               chloramphenicol
3607                                                                                                                               chloramphenicol
3608                                                                                                                                   oclacitinib
3609                                                                                                                                     carprofen
3610                                                                                                                                     mupirocin
3611                                                                                                                                      spinosad
3612                                                                                                                              milbemycin oxime
3613                                                                                                                                   oclacitinib
3614                                                                                                                                      spinosad
3615                                                                                                                              milbemycin oxime
3616                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3617                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3618                                                                                                                                     sarolaner
3619                                                                                                                milbemycin oxime, praziquantel
3620                                                                                                                                 metronidazole
3621                                                                                                                                   oclacitinib
3622                                                                                                                                     probiotic
3623                                                                                                                                     sarolaner
3624                                                                                                                              milbemycin oxime
3625                                                                                                                            maropitant citrate
3626                                                                                                                                    prednisone
3627                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3628                                                                                                                                    prednisone
3629                                                                                                                                    cephalexin
3630                                                                                                                            methylprednisolone
3631                                                                                                                                    ivermectin
3632                                                                                                                                    ivermectin
3633                                                                                                                                     carprofen
3634                                                                                                                              milbemycin oxime
3635                                                                                                                                    fluralaner
3636                                                                                                                polysulfated glycosaminoglycan
3637                                                                                                                                       aspirin
3638                                                                                                                                    prednisone
3639                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                                       acetic acid, boric acid
3641                                                                                                             betamethasone, gentamicin sulfate
3642                                                                                                                                 metronidazole
3643                                                                                                                                    famotidine
3644                                                                                                                                  fenbendazole
3645                                                                                                dexamethasone, neomycin sulfate, thiabendazole
3646                                                                                                                      imidacloprid, moxidectin
3647                                                                                                                      imidacloprid, moxidectin
3648                                                                                                                    imidacloprid, pyriproxyfen
3649                                                                                                                      imidacloprid, moxidectin
3650                                                                                                                      imidacloprid, moxidectin
3651                                                                                                                                 metronidazole
3652                                                                                                                          prebiotic, probiotic
3653                                                                                                                                  fenbendazole
3654                                                                                                                                 metronidazole
3655                                                                                                      febantel, praziquantel, pyrantel pamoate
3656                                                                                                                                 metronidazole
3657                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3658                                                                                                      febantel, praziquantel, pyrantel pamoate
3659                                                                                                                                 metronidazole
3660                                                                                                                      fipronil, (s)-methoprene
3661                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3662                                                                                                                      fipronil, (s)-methoprene
3663                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3664                                                                                                                                    ivermectin
3665                                                                                                                                    afoxolaner
3666                                                                                                             betamethasone, gentamicin sulfate
3667                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
3668                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3669                                                                                                                              milbemycin oxime
3670                                                                                                                                    afoxolaner
3671                                                                                                                              milbemycin oxime
3672                                                                                                                                    afoxolaner
3673                                                                                                                                   oclacitinib
3674                                                                                                                                   oclacitinib
3675                                                                                                             betamethasone, gentamicin sulfate
3676                                                                                                                                    cephalexin
3677                                                                                                                              milbemycin oxime
3678                                                                                                    toothpaste/dental health solution or chews
3679                                                                                                                                     carprofen
3680                                                                                                                                    cephalexin
3681                                                                                                                            ketamine, xylazine
3682                                                                                                                                     carprofen
3683                                                                                                                                 buprenorphine
3684                                                                                                                              milbemycin oxime
3685                                                                                                                      fipronil, (s)-methoprene
3686                                                                                                                                    cephalexin
3687                                                                                                                                     carprofen
3688                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3689                                                                                                  florfenicol, mometasone furoate, terbinafine
3690                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
3691                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                                              milbemycin oxime
3693                                                                                                             betamethasone, gentamicin sulfate
3694                                                                                                                                   oclacitinib
3695                                                                                                                                   oclacitinib
3696                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3697                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3698                                                                                                                                    selamectin
3699                                                                                                                                    selamectin
3700                                                                                                                                 marbofloxacin
3701                                                                                                                              milbemycin oxime
3702                                                                                                                                    cephalexin
3703                                                                                                                                 metronidazole
3704                                                                                                                              milbemycin oxime
3705                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                                    lokivetmab
3707                                                                                                                          cefpodoxime proxetil
3708                                                                                                                                    gabapentin
3709                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3710                                                                                                                               cbd or hemp oil
3711                                                                                                                                     carprofen
3712                                                                                                            amoxicillin, clavulanate potassium
3713                                                                                                            amoxicillin, clavulanate potassium
3714                                                                                                            amoxicillin, clavulanate potassium
3715                                                                                                            amoxicillin, clavulanate potassium
3716                                                                                                                           phenylpropanolamine
3717                                                                                                                                  fenbendazole
3718                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                                                  ivermectin, pyrantel pamoate
3720                                                                                                                  ivermectin, pyrantel pamoate
3721                                                                                                                  ivermectin, pyrantel pamoate
3722                                                                                                                                    afoxolaner
3723                                                                                                                                     ponazuril
3724                                                                                                                                  fenbendazole
3725                                                                                                                  ivermectin, pyrantel pamoate
3726                                                                                                                  ivermectin, pyrantel pamoate
3727                                                                                                                  ivermectin, pyrantel pamoate
3728                                                                                                                      fipronil, (s)-methoprene
3729                                                                                                             trimeprazine tartrate, prednisone
3730                                                                                                                                    prednisone
3731                                                                                                                                  azathioprine
3732                                                                                                                  ivermectin, pyrantel pamoate
3733                                                                                                             betamethasone, gentamicin sulfate
3734                                                                                                                                    cetirizine
3735                                                                                                                                     ketotifen
3736                                                                                                                                   niacinamide
3737                                                                                                                                   doxycycline
3738                                                                                                                            maropitant citrate
3739                                                                                                                                   amoxicillin
3740                                                                                                                                     carprofen
3741                                                                                                                                   amoxicillin
3742                                                                                                                                  azathioprine
3743                                                                                                                                    cetirizine
3744                                                                                                                                     lactulose
3745                                                                                                                                     carprofen
3746                                                                                                                                  azithromycin
3747                                                                                                                 dextromethorphan hydrobromide
3748                                                                                                                                   guaifenesin
3749                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3750                                                                                                                              milbemycin oxime
3751                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3752                                                                                                                  ivermectin, pyrantel pamoate
3753                                                                                                                  ivermectin, pyrantel pamoate
3754                                                                                                                       chlorhexidine gluconate
3755                                                                                                                                    cephalexin
3756                                                                                                                             hypochlorous acid
3757                                                                                                                                  ketoconazole
3758                                                                                                            miconazole nitrate, salicylic acid
3759                                                                                                         chlorhexidine gluconate, ketoconazole
3760                                                                                                                    milbemycin oxime, spinosad
3761                                                                                                                          prednisolone acetate
3762                                                                                                                                   doxycycline
3763                                                                                                                                     nepafenac
3764                                                                                                                                    prednisone
3765                                                                                                                                    famotidine
3766                                                                                                                                   clindamycin
3767                                                                                                                                  azathioprine
3768                                                                                                                                  cyclosporine
3769                                                                                                                         mycophenolate mofetil
3770                                                                                                                    milbemycin oxime, spinosad
3771                                                                                                                                    prednisone
3772                                                                                                  florfenicol, mometasone furoate, terbinafine
3773                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3774                                                                                                                                     ofloxacin
3775                                                                                                                    milbemycin oxime, spinosad
3776                                                                                                            amoxicillin, clavulanate potassium
3777                                                                                                                                   oclacitinib
3778                                                                                                  florfenicol, mometasone furoate, terbinafine
3779                                                                                                                    milbemycin oxime, spinosad
3780                                                                                                                          pentosan polysulfate
3781                                                                                                                                     ketorolac
3782                                                                                                                                     ofloxacin
3783                                                                                                                                   tropicamide
3784                                                                                                                         mycophenolate mofetil
3785                                                                                                                                    prednisone
3786                                                                                                                                    famotidine
3787                                                                                                                    milbemycin oxime, spinosad
3788                                                                                                                                    lokivetmab
3789                                                                                                             betamethasone, gentamicin sulfate
3790                                                                                                                                   oclacitinib
3791                                                                                                                                   tropicamide
3792                                                                                                                         mycophenolate mofetil
3793                                                                                                                                     ketorolac
3794                                                                                                                                    prednisone
3795                                                                                                  florfenicol, mometasone furoate, terbinafine
3796                                                                                                mometasone furoate, orbifloxacin, posaconazole
3797                                                                                                                       triamcinolone acetonide
3798                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3799                                                                                                                                   oclacitinib
3800                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3801                                                                                                                                   oclacitinib
3802                                                                                                                                     carprofen
3803                                                                                                                  ormetoprim, sulfadimethoxine
3804                                                                                                                          cefpodoxime proxetil
3805                                                                                                                                   oclacitinib
3806                                                                                                            amoxicillin, clavulanate potassium
3807                                                                                                                      homatropine, hydrocodone
3808                                                                                                                                     carprofen
3809                                                                                                                  ivermectin, pyrantel pamoate
3810                                                                                                                                    ivermectin
3811                                                                                                                                     carprofen
3812                                                                                                                                      tramadol
3813                                                                                                                                    ivermectin
3814                                                                                                                  ivermectin, pyrantel pamoate
3815                                                                                                                  ivermectin, pyrantel pamoate
3816                                                                                                                                    sucralfate
3817                                                                                                                            maropitant citrate
3818                                                                                                                                    alfaxalone
3819                                                                                                                                 buprenorphine
3820                                                                                                                                    grapiprant
3821                                                                                                                                     firocoxib
3822                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3823                                                                                                                            maropitant citrate
3824                                                                                                                                    sucralfate
3825                                                                                                                                    famotidine
3826                                                                                                                                      tramadol
3827                                                                                                                                      spinosad
3828                                                                                                                                    cephalexin
3829                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3830                                                                                                                                     meloxicam
3831                                                                                                                                    afoxolaner
3832                                                                                                                                   hydroxyzine
3833                                                                                                                                     meloxicam
3834                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3835                                                                                                                  ivermectin, pyrantel pamoate
3836                                                                                                                                    afoxolaner
3837                                                                                                                                     thyroxine
3838                                                                                                                                    afoxolaner
3839                                                                                                                                     thyroxine
3840                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3841                                                                                                                  ivermectin, pyrantel pamoate
3842                                                                                                                                    afoxolaner
3843                                                                                                                                     thyroxine
3844                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3845                                                                                                                                     thyroxine
3846                                                                                                                                     carprofen
3847                                                                                                                                     carprofen
3848                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3849                                                                                                                  ivermectin, pyrantel pamoate
3850                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3851                                                                                                                                     carprofen
3852                                                                                                                                    cephalexin
3853                                                                                                                                     carprofen
3854                                                                                                                              sulfadimethoxine
3855                                                                                                                                  ketoconazole
3856                                                                                                                                     carprofen
3857                                                                                                                  ivermectin, pyrantel pamoate
3858                                                                                                                      fipronil, (s)-methoprene
3859                                                                                                                              milbemycin oxime
3860                                                                                                                                    afoxolaner
3861                                                                                                                            gentamicin sulfate
3862                                                                                                                                     carprofen
3863                                                                                                                                      spinosad
3864                                                                                                                                    cephalexin
3865                                                                                                                                 metronidazole
3866                                                                                                                                      tramadol
3867                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3868                                                                                                                                    ivermectin
3869                                                                                                                                    afoxolaner
3870                                                                                                                  ivermectin, pyrantel pamoate
3871                                                                                                                                    afoxolaner
3872                                                                                                                                    afoxolaner
3873                                                                                                                                     thyroxine
3874                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3875                                                                                                                  ivermectin, pyrantel pamoate
3876                                                                                                                                    afoxolaner
3877                                                                                                                                     thyroxine
3878                                                                                                                                     thyroxine
3879                                                                                                                                     thyroxine
3880                                                                                                                                     thyroxine
3881                                                                                                                                    ivermectin
3882                                                                                                                              sulfamethoxazole
3883                                                                                                                  ivermectin, pyrantel pamoate
3884                                                                                                                      fipronil, (s)-methoprene
3885                                                                                                                      fipronil, (s)-methoprene
3886                                                                                                                  ivermectin, pyrantel pamoate
3887                                                                                                                                     firocoxib
3888                                                                                                                            maropitant citrate
3889                                                                                                                  ivermectin, pyrantel pamoate
3890                                                                                                                      fipronil, (s)-methoprene
3891                                                                                                                  ivermectin, pyrantel pamoate
3892                                                                                                                      fipronil, (s)-methoprene
3893                                                                                                                          cefpodoxime proxetil
3894                                                                                                                                    prednisone
3895                                                                                                                                    cephalexin
3896                                                                                                                      fipronil, (s)-methoprene
3897                                                                                                                  ivermectin, pyrantel pamoate
3898                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
3899                                                                                                                                     carprofen
3900                                                                                                                                    ivermectin
3901                                                                                                                  ivermectin, pyrantel pamoate
3902                                                                                                                      fipronil, (s)-methoprene
3903                                                                                                                  ivermectin, pyrantel pamoate
3904                                                                                                                      fipronil, (s)-methoprene
3905                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3906                                                                                                                  ivermectin, pyrantel pamoate
3907                                                                                                                      fipronil, (s)-methoprene
3908                                                                                                                  ivermectin, pyrantel pamoate
3909                                                                                                                      fipronil, (s)-methoprene
3910                                                                                                                                    cephalexin
3911                                                                                                                  ivermectin, pyrantel pamoate
3912                                                                                                                      fipronil, (s)-methoprene
3913                                                                                                                                  enrofloxacin
3914                                                                                                                                    ivermectin
3915                                                                                                                              milbemycin oxime
3916                                                                                                                                     lufenuron
3917                                                                                                                                    ivermectin
3918                                                                                                                              pyrantel pamoate
3919                                                                                                                  ivermectin, pyrantel pamoate
3920                                                                                                                  ivermectin, pyrantel pamoate
3921                                                                                                                      fipronil, (s)-methoprene
3922                                                                                                                    imidacloprid, pyriproxyfen
3923                                                                                                                      fipronil, (s)-methoprene
3924                                                                                                                              milbemycin oxime
3925                                                                                                                   lufenuron, milbemycin oxime
3926                                                                                                                   lufenuron, milbemycin oxime
3927                                                                                                                                  ketoconazole
3928                                                                                                                                     deracoxib
3929                                                                                                                                      tramadol
3930                                                                                                                    milbemycin oxime, spinosad
3931                                                                                                                                 ciprofloxacin
3932                                                                                                                                 ciprofloxacin
3933                                                                                                                                     carprofen
3934                                                                                                         dinotefuran, permethrin, pyriproxyfen
3935                                                                                                                    milbemycin oxime, spinosad
3936                                                                                                                    milbemycin oxime, spinosad
3937                                                                                                                    milbemycin oxime, spinosad
3938                                                                                                                  ivermectin, pyrantel pamoate
3939                                                                                                                                     trazodone
3940                                                                                                                      homatropine, hydrocodone
3941                                                                                                                          cefpodoxime proxetil
3942                                                                                                                                    afoxolaner
3943                                                                                                                  ivermectin, pyrantel pamoate
3944                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3945                                                                                                              propylene glycol, salicylic acid
3946                                                                                                                                    afoxolaner
3947                                                                                                    toothpaste/dental health solution or chews
3948                                                                                                                                    prednisone
3949                                                                                                                                    isoflurane
3950                                                                                                            amoxicillin, clavulanate potassium
3951                                                                                                                                     carprofen
3952                                                                                                                  ivermectin, pyrantel pamoate
3953                                                                                                                                     carprofen
3954                                                                                                            amoxicillin, clavulanate potassium
3955                                                                                                                                    afoxolaner
3956                                                                                                                                  fenbendazole
3957                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3958                                                                                                                          cognitive supplement
3959                                                                                                                                    gabapentin
3960                                                                                                  florfenicol, mometasone furoate, terbinafine
3961                                                                                                                                    gabapentin
3962                                                                                                            amoxicillin, clavulanate potassium
3963                                                                                                                                     trazodone
3964                                                                                                                            maropitant citrate
3965                                                                                                                                     carprofen
3966                                                                                                                    milbemycin oxime, spinosad
3967                                                                                                                           phenylpropanolamine
3968                                                                                                                           phenylpropanolamine
3969                                                                                                                           phenylpropanolamine
3970                                                                                                                    milbemycin oxime, spinosad
3971                                                                                                         dinotefuran, permethrin, pyriproxyfen
3972                                                                                                                    milbemycin oxime, spinosad
3973                                                                                                                           phenylpropanolamine
3974                                                                                                                    milbemycin oxime, spinosad
3975                                                                                                                           phenylpropanolamine
3976                                                                                                                                     carprofen
3977                                                                                                                          cefpodoxime proxetil
3978                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
3979                                                                                                                            methylprednisolone
3980                                                                                                                  ivermectin, pyrantel pamoate
3981                                                                                                                                    afoxolaner
3982                                                                                                                           phenylpropanolamine
3983                                                                                                                           phenylpropanolamine
3984                                                                                                                  ivermectin, pyrantel pamoate
3985                                                                                                                                    afoxolaner
3986                                                                                                                                    gabapentin
3987                                                                                                                                      tramadol
3988                                                                                                                                   clindamycin
3989                                                                                                                  ivermectin, pyrantel pamoate
3990                                                                                                                                    afoxolaner
3991                                                                                                                           phenylpropanolamine
3992                                                                                                                                   clindamycin
3993                                                                                                            amoxicillin, clavulanate potassium
3994                                                                                                                                    gabapentin
3995                                                                                                                polysulfated glycosaminoglycan
3996                                                                                                                           phenylpropanolamine
3997                                                                                                                                  fenbendazole
3998                                                                                                                           phenylpropanolamine
3999                                                                                                                polysulfated glycosaminoglycan
4000                                                                                                                                     meloxicam
4001                                                                                                                        joint supplement (msm)
4002                                                                                                                polysulfated glycosaminoglycan
4003                                                                                                                           phenylpropanolamine
4004                                                                                                                           phenylpropanolamine
4005                                                                                                                polysulfated glycosaminoglycan
4006                                                                                                                        joint supplement (msm)
4007                                                                                                                                     carprofen
4008                                                                                                                            maropitant citrate
4009                                                                                                                                  capromorelin
4010                                                                                                                      fipronil, (s)-methoprene
4011                                                                                                                                    cephalexin
4012                                                                                                                                    ivermectin
4013                                                                                                                   lufenuron, milbemycin oxime
4014                                                                                                                              milbemycin oxime
4015                                                                                                                              milbemycin oxime
4016                                                                                                                  ivermectin, pyrantel pamoate
4017                                                                                                                  ivermectin, pyrantel pamoate
4018                                                                                                                          cefpodoxime proxetil
4019                                                                                                                                   oclacitinib
4020                                                                                                                                    gabapentin
4021                                                                                                                          cefpodoxime proxetil
4022                                                                                                                                 metronidazole
4023                                                                                                                                   doxycycline
4024                                                                                                                                      tramadol
4025                                                                                                                                     carprofen
4026                                                                                                                                 dexamethasone
4027                                                                                                                                    cetirizine
4028                                                                                                                                   doxycycline
4029                                                                                                                                    cephalexin
4030                                                                                                                    milbemycin oxime, spinosad
4031                                                                                                                    milbemycin oxime, spinosad
4032                                                                                                         dinotefuran, permethrin, pyriproxyfen
4033                                                                                                                praziquantel, pyrantel pamoate
4034                                                                                                                                     carprofen
4035                                                                                                                                      tramadol
4036                                                                                                                          cefpodoxime proxetil
4037                                                                                                                              milbemycin oxime
4038                                                                                                                                      spinosad
4039                                                                                                                              milbemycin oxime
4040                                                                                                                                      spinosad
4041                                                                                                            amoxicillin, clavulanate potassium
4042                                                                                                                        unspecified medication
4043                                                                                                                                     carprofen
4044                                                                                                                                    moxidectin
4045                                                                                                                                     sarolaner
4046                                                                                                                                    moxidectin
4047                                                                                                                                     sarolaner
4048                                                                                                                                    cephalexin
4049                                                                                                                              sulfamethoxazole
4050                                                                                                                                    cephalexin
4051                                                                                                                                    pimobendan
4052                                                                                                                                    furosemide
4053                                                                                                                       triamcinolone acetonide
4054                                                                                                                                 dexamethasone
4055                                                                                                                                    cephalexin
4056                                                                                                                                    pimobendan
4057                                                                                                                                    grapiprant
4058                                                                                                                                    ivermectin
4059                                                                                                             trimeprazine tartrate, prednisone
4060                                                                                                                  ivermectin, pyrantel pamoate
4061                                                                                                                  ivermectin, pyrantel pamoate
4062                                                                                                                                     firocoxib
4063                                                                                                                  ivermectin, pyrantel pamoate
4064                                                                                                                                    fluralaner
4065                                                                                                                                   oclacitinib
4066                                                                                                                                    ivermectin
4067                                                                                                                                    fluralaner
4068                                                                                                    toothpaste/dental health solution or chews
4069                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                                                   oclacitinib
4071                                                                                                    toothpaste/dental health solution or chews
4072                                                                                                                                    afoxolaner
4073                                                                                                                  ivermectin, pyrantel pamoate
4074                                                                                                                      fipronil, (s)-methoprene
4075                                                                                                                  ivermectin, pyrantel pamoate
4076                                                                                                                                   oclacitinib
4077                                                                                                                                    afoxolaner
4078                                                                                                                                 phenobarbital
4079                                                                                                                                   amoxicillin
4080                                                                                                                                    cephalexin
4081                                                                                                                                 phenobarbital
4082                                                                                                                                     firocoxib
4083                                                                                                                                    cephalexin
4084                                                                                                                                  enrofloxacin
4085                                                                                                                                 phenobarbital
4086                                                                                                                                    lokivetmab
4087                                                                                                                                     cefazolin
4088                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                                     ofloxacin
4090                                                                                                                                     firocoxib
4091                                                                                                                                    moxidectin
4092                                                                                                                                  imidacloprid
4093                                                                                                                                    moxidectin
4094                                                                                                                                  fenbendazole
4095                                                                                                                                     sarolaner
4096                                                                                                                                    moxidectin
4097                                                                                                                                     sarolaner
4098                                                                                                                                    cephalexin
4099                                                                                                                                     trazodone
4100                                                                                                                                  ketoconazole
4101                                                                                                                                 dexamethasone
4102                                                                                                                       triamcinolone acetonide
4103                                                                                                                                     trazodone
4104                                                                                                                                    cephalexin
4105                                                                                                                              sulfamethoxazole
4106                                                                                                                                     cefazolin
4107                                                                                                                                      ketamine
4108                                                                                                                                    grapiprant
4109                                                                                                                    milbemycin oxime, spinosad
4110                                                                                                      febantel, praziquantel, pyrantel pamoate
4111                                                                                                                    milbemycin oxime, spinosad
4112                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4113                                                                                                               ear cleaner (epi-otic advanced)
4114                                                                                                                       ketoconazole, tris-edta
4115                                                                                                                          cefpodoxime proxetil
4116                                                                                                             trimeprazine tartrate, prednisone
4117                                                                                                                      fipronil, (s)-methoprene
4118                                                                                                                    milbemycin oxime, spinosad
4119                                                                                                                       ketoconazole, tris-edta
4120                                                                                                                    milbemycin oxime, spinosad
4121                                                                                                                    milbemycin oxime, spinosad
4122                                                                                                                    milbemycin oxime, spinosad
4123                                                                                                                          cefpodoxime proxetil
4124                                                                                                                                   oclacitinib
4125                                                                                                                    milbemycin oxime, spinosad
4126                                                                                                                          cefpodoxime proxetil
4127                                                                                                                milbemycin oxime, praziquantel
4128                                                                                                                                    afoxolaner
4129                                                                                                                          cefpodoxime proxetil
4130                                                                                                                    milbemycin oxime, spinosad
4131                                                                                                             betamethasone, gentamicin sulfate
4132                                                                                                             betamethasone, gentamicin sulfate
4133                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4135                                                                                                                                   oclacitinib
4136                                                                                                                                     carprofen
4137                                                                                                                                    gabapentin
4138                                                                                                                                    gabapentin
4139                                                                                                                              neomycin sulfate
4140                                                                                                                      homatropine, hydrocodone
4141                                                                                                                  ormetoprim, sulfadimethoxine
4142                                                                                                                            maropitant citrate
4143                                                                                                                                    omeprazole
4144                                                                                                                                 metronidazole
4145                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4146                                                                                                                                  fenbendazole
4147                                                                                                                                     meloxicam
4148                                                                                                                                    cephalexin
4149                                                                                                                                    ivermectin
4150                                                                                                                                      tramadol
4151                                                                                                                                     meloxicam
4152                                                                                                                                 ciprofloxacin
4153                                                                                                                                 metronidazole
4154                                                                                                                      fipronil, (s)-methoprene
4155                                                                                                            fipronil, permethrin, pyriproxyfen
4156                                                                                                                                    ivermectin
4157                                                                                                                              pyrantel pamoate
4158                                                                                                                      fipronil, (s)-methoprene
4159                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4160                                                                                                     clotrimazole, dexamethasone, enrofloxacin
4161                                                                                                                                    ivermectin
4162                                                                                                            fipronil, permethrin, pyriproxyfen
4163                                                                                                                                    budesonide
4164                                                                                                                                  chlorambucil
4165                                                                                                                                    omeprazole
4166                                                                                                                                    prednisone
4167                                                                                                                                     vitamin b
4168                                                                                                                           polyethylene glycol
4169                                                                                                                                   cosyntropin
4170                                                                                                                                  fenbendazole
4171                                                                                                                                 metronidazole
4172                                                                                                                      fipronil, (s)-methoprene
4173                                                                                                                  ivermectin, pyrantel pamoate
4174                                                                                                                  ivermectin, pyrantel pamoate
4175                                                                                                                      fipronil, (s)-methoprene
4176                                                                                                                  ivermectin, pyrantel pamoate
4177                                                                                                                  ivermectin, pyrantel pamoate
4178                                                                                                                    milbemycin oxime, spinosad
4179                                                                                                                    milbemycin oxime, spinosad
4180                                                                                                                                    selamectin
4181                                                                                                                                    selamectin
4182                                                                                                                                    selamectin
4183                                                                                                                                    selamectin
4184                                                                                                                                    selamectin
4185                                                                                                                                      tramadol
4186                                                                                                                                     carprofen
4187                                                                                                                          cefpodoxime proxetil
4188                                                                                                                                    selamectin
4189                                                                                                                          cefpodoxime proxetil
4190                                                                                                                                     carprofen
4191                                                                                                                    milbemycin oxime, spinosad
4192                                                                                                                                     carprofen
4193                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4194                                                                                                                          cefpodoxime proxetil
4195                                                                                                                                  fenbendazole
4196                                                                                                                    milbemycin oxime, spinosad
4197                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
4198                                                                                                                                    afoxolaner
4199                                                                                                                              milbemycin oxime
4200                                                                                                                          cefpodoxime proxetil
4201                                                                                                                                   oclacitinib
4202                                                                                                                              milbemycin oxime
4203                                                                                                                                     sarolaner
4204                                                                                                                                    lokivetmab
4205                                                                                                                                      ursodiol
4206                                                                                                                                    lokivetmab
4207                                                                                                                                      spinosad
4208                                                                                                                  ivermectin, pyrantel pamoate
4209                                                                                                                    milbemycin oxime, spinosad
4210                                                                                                                    milbemycin oxime, spinosad
4211                                                                                                                    milbemycin oxime, spinosad
4212                                                                                                                    milbemycin oxime, spinosad
4213                                                                                                     lufenuron, milbemycin oxime, praziquantel
4214                                                                                                                   lufenuron, milbemycin oxime
4215                                                                                                                   lufenuron, milbemycin oxime
4216                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4217                                                                                                                                    prednisone
4218                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4219                                                                                                                                     carprofen
4220                                                                                                                                     carprofen
4221                                                                                                                                     carprofen
4222                                                                                                                                      tramadol
4223                                                                                                                            maropitant citrate
4224                                                                                                                            maropitant citrate
4225                                                                                                                                   amoxicillin
4226                                                                                                                                  enrofloxacin
4227                                                                                                                                 metronidazole
4228                                                                                                                                    cephalexin
4229                                                                                                                                  fenbendazole
4230                                                                                                                                   doxycycline
4231                                                                                                                                    prednisone
4232                                                                                                                            maropitant citrate
4233                                                                                                                                   doxycycline
4234                                                                                                                                   doxycycline
4235                                                                                                                                 levothyroxine
4236                                                                                                                              pyrantel pamoate
4237                                                                                                                                    ivermectin
4238                                                                                                                      fipronil, (s)-methoprene
4239                                                                                                                                   doxycycline
4240                                                                                                                                     carprofen
4241                                                                                                                                 metronidazole
4242                                                                                                                                   doxycycline
4243                                                                                                                                  fenbendazole
4244                                                                                                                              pyrantel pamoate
4245                                                                                               betamethasone, clotrimazole, gentamicin sulfate
4246                                                                                                                  ivermectin, pyrantel pamoate
4247                                                                                                                  ivermectin, pyrantel pamoate
4248                                                                                                                                 levothyroxine
4249                                                                                                                                  flurbiprofen
4250                                                                                                                              sulfadimethoxine
4251                                                                                                                  ivermectin, pyrantel pamoate
4252                                                                                                                                    afoxolaner
4253                                                                                                                                 levothyroxine
4254                                                                                                                  ivermectin, pyrantel pamoate
4255                                                                                                                                 levothyroxine
4256                                                                                                                                    afoxolaner
4257                                                                                                                  ivermectin, pyrantel pamoate
4258                                                                                                                                    afoxolaner
4259                                                                                                                                 levothyroxine
4260                                                                                                                            maropitant citrate
4261                                                                                                                  ivermectin, pyrantel pamoate
4262                                                                                                                                    afoxolaner
4263                                                                                                                                 levothyroxine
4264                                                                                                                              pyrantel pamoate
4265                                                                                                                                    tobramycin
4266                                                                                                                       ketoconazole, tris-edta
4267                                                                                                                                    lokivetmab
4268                                                                                                                               dexmedetomidine
4269                                                                                                                               dexmedetomidine
4270                                                                                                                                  acepromazine
4271                                                                                                                                 buprenorphine
4272                                                                                                                            maropitant citrate
4273                                                                                                                         tiletamine, zolazepam
4274                                                                                                                                    isoflurane
4275                                                                                                                                 metronidazole
4276                                                                                                                              tylosin tartrate
4277                                                                                                                               dexmedetomidine
4278                                                                                                                              sulfadimethoxine
4279                                                                                                            amoxicillin, clavulanate potassium
4280                                                                                                                                 metronidazole
4281                                                                                                                                     carprofen
4282                                                                                                                                    cephalexin
4283                                                                                                                  ivermectin, pyrantel pamoate
4284                                                                                                                  ivermectin, pyrantel pamoate
4285                                                                                                                                    ivermectin
4286                                                                                                                                    ivermectin
4287                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
4288                                                                                                                                   oclacitinib
4289                                                                                                                            maropitant citrate
4290                                                                                                                                    gabapentin
4291                                                                                                                                     lidocaine
4292                                                                                                                                     lidocaine
4293                                                                                                                          butorphanol tartrate
4294                                                                                                                                     trazodone
4295                                                                                                                                    mexiletine
4296                                                                                                                                     toceranib
4297                                                                                                                                     carprofen
4298                                                                                                            fipronil, permethrin, pyriproxyfen
4299                                                                                                                                    ivermectin
4300                                                                                                                                    cephalexin
4301                                                                                                                                      tramadol
4302                                                                                                                   lufenuron, milbemycin oxime
4303                                                                                                            fipronil, permethrin, pyriproxyfen
4304                                                                                                                   lufenuron, milbemycin oxime
4305                                                                                                                      fipronil, (s)-methoprene
4306                                                                                                                                       omega 3
4307                                                                                                                   lufenuron, milbemycin oxime
4308                                                                                                                   lufenuron, milbemycin oxime
4309                                                                                                                      fipronil, (s)-methoprene
4310                                                                                                                                       omega 3
4311                                                                                                            joint supplement (glucosamine hcl)
4312                                                                                                                                     carprofen
4313                                                                                                                   lufenuron, milbemycin oxime
4314                                                                                                                      fipronil, (s)-methoprene
4315                                                                                                                                    afoxolaner
4316                                                                                                                polysulfated glycosaminoglycan
4317                                                                                                                                     carprofen
4318                                                                                                                          cefpodoxime proxetil
4319                                                                                                                                    prednisone
4320                                                                                                                          cefpodoxime proxetil
4321                                                                                                                                    selamectin
4322                                                                                                                          cefpodoxime proxetil
4323                                                                                                                                    selamectin
4324                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                                              milbemycin oxime
4326                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4327                                                                                                                                   amoxicillin
4328                                                                                                                              milbemycin oxime
4329                                                                                                                                   doxycycline
4330                                                                                                                                     trazodone
4331                                                                                                                                     carprofen
4332                                                                                                                          prednisolone acetate
4333                                                                                                                                    gabapentin
4334                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4335                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4336                                                                                                                                    fluralaner
4337                                                                                                        joint supplement (glucosamine hcl/msm)
4338                                                                                                     lufenuron, milbemycin oxime, praziquantel
4339                                                                                                                      imidacloprid, permethrin
4340                                                                                                        joint supplement (glucosamine hcl/msm)
4341                                                                                                                                   doxycycline
4342                                                                                                                                     carprofen
4343                                                                                                                                    sucralfate
4344                                                                                                                                    famotidine
4345                                                                                                                                 metronidazole
4346                                                                                                                                   amoxicillin
4347                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4348                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                                    milbemycin oxime, spinosad
4350                                                                                                                    milbemycin oxime, spinosad
4351                                                                                                                    milbemycin oxime, spinosad
4352                                                                                                            chlorhexidine gluconate, ophytrium
4353                                                                                                                    milbemycin oxime, spinosad
4354                                                                                                                    milbemycin oxime, spinosad
4355                                                                                                                                    famotidine
4356                                                                                                                                      morphine
4357                                                                                                                               dexmedetomidine
4358                                                                                                                                     carprofen
4359                                                                                                                    milbemycin oxime, spinosad
4360                                                                                                             betamethasone, gentamicin sulfate
4361                                                                                                                                   oclacitinib
4362                                                                                                                    milbemycin oxime, spinosad
4363                                                                                                                                   doxycycline
4364                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4365                                                                                                            amoxicillin, clavulanate potassium
4366                                                                                                                                     carprofen
4367                                                                                                                                      tramadol
4368                                                                                                                            calming supplement
4369                                                                                                                      urinary tract supplement
4370                                                                                                                                   amoxicillin
4371                                                                                                                                       omega 3
4372                                                                                                                                    cephalexin
4373                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4374                                                                                                                                   amoxicillin
4375                                                                                                                          cefpodoxime proxetil
4376                                                                                                                                    cephalexin
4377                                                                                                                                  acepromazine
4378                                                                                                                                     carprofen
4379                                                                                                                              milbemycin oxime
4380                                                                                                                          cefpodoxime proxetil
4381                                                                                                                                    ivermectin
4382                                                                                                                              pyrantel pamoate
4383                                                                                                                               diphenhydramine
4384                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4385                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4386                                                                                                                      fipronil, (s)-methoprene
4387                                                                                                                  ivermectin, pyrantel pamoate
4388                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                                                   lufenuron, milbemycin oxime
4390                                                                                                                                    fluralaner
4391                                                                                                                   lufenuron, milbemycin oxime
4392                                                                                                                   lufenuron, milbemycin oxime
4393                                                                                                                   lufenuron, milbemycin oxime
4394                                                                                                                                     toceranib
4395                                                                                                                  ivermectin, pyrantel pamoate
4396                                                                                                                                   oclacitinib
4397                                                                                                                                   oclacitinib
4398                                                                                                                                   oclacitinib
4399                                                                                                                  ivermectin, pyrantel pamoate
4400                                                                                                                                   oclacitinib
4401                                                                                                                                   oclacitinib
4402                                                                                                                                   oclacitinib
4403                                                                                                                                   oclacitinib
4404                                                                                                                                     carprofen
4405                                                                                                                    milbemycin oxime, spinosad
4406                                                                                                                              sulfadimethoxine
4407                                                                                                                                    cephalexin
4408                                                                                                                                   amoxicillin
4409                                                                                                                      enrofloxacin, tobramycin
4410                                                                                                      febantel, praziquantel, pyrantel pamoate
4411                                                                                                                                    cephalexin
4412                                                                                                                                    cephalexin
4413                                                                                                                                    prednisone
4414                                                                                                                                      tramadol
4415                                                                                                                                     carprofen
4416                                                                                                                                     carprofen
4417                                                                                                                                     carprofen
4418                                                                                                                            maropitant citrate
4419                                                                                                                         ampicillin, sulbactam
4420                                                                                                                                     carprofen
4421                                                                                                            amoxicillin, clavulanate potassium
4422                                                                                                                              sulfadimethoxine
4423                                                                                                                              sulfadimethoxine
4424                                                                                                                                   amoxicillin
4425                                                                                                                                     deracoxib
4426                                                                                                                  ivermectin, pyrantel pamoate
4427                                                                                                                    imidacloprid, pyriproxyfen
4428                                                                                                                                      spinosad
4429                                                                                                                                    cephalexin
4430                                                                                                                             hypochlorous acid
4431                                                                                                       over-the-counter antipruritic/astrigent
4432                                                                                                                              pyrantel pamoate
4433                                                                                                                              pyrantel pamoate
4434                                                                                                                              sulfadimethoxine
4435                                                                                                                    milbemycin oxime, spinosad
4436                                                                                                                                       omega 3
4437                                                                                                                                     probiotic
4438                                                                                                                                  multivitamin
4439                                                                                                                              pyrantel pamoate
4440                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4441                                                                                                                       ketoconazole, tris-edta
4442                                                                                                    toothpaste/dental health solution or chews
4443                                                                                                                    milbemycin oxime, spinosad
4444                                                                                                                      fipronil, (s)-methoprene
4445                                                                                                                    milbemycin oxime, spinosad
4446                                                                                                                                     probiotic
4447                                                                                                                                       omega 3
4448                                                                                                                                  multivitamin
4449                                                                                                            amoxicillin, clavulanate potassium
4450                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
4451                                                                                                                                      ketamine
4452                                                                                                                                     midazolam
4453                                                                                                                                 buprenorphine
4454                                                                                                                                    isoflurane
4455                                                                                                                                     carprofen
4456                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
4457                                                                                                                                      ketamine
4458                                                                                                                                     midazolam
4459                                                                                                                                 buprenorphine
4460                                                                                                                                   bupivacaine
4461                                                                                                                                     carprofen
4462                                                                                                            amoxicillin, clavulanate potassium
4463                                                                                                                                 dexamethasone
4464                                                                                                                                dimenhydrinate
4465                                                                                                            amoxicillin, clavulanate potassium
4466                                                                                                            amoxicillin, clavulanate potassium
4467                                                                                                                            maropitant citrate
4468                                                                                                                                  enrofloxacin
4469                                                                                                                       ketoconazole, tris-edta
4470                                                                                                                       ketoconazole, tris-edta
4471                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4473                                                                                                                                  enrofloxacin
4474                                                                                                            amoxicillin, clavulanate potassium
4475                                                                                                            amoxicillin, clavulanate potassium
4476                                                                                                                                     carprofen
4477                                                                                                                            maropitant citrate
4478                                                                                                                                 dexamethasone
4479                                                                                                                                dimenhydrinate
4480                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4482                                                                                                                                  multivitamin
4483                                                                                                                   lufenuron, milbemycin oxime
4484                                                                                                                                    afoxolaner
4485                                                                                                                                     probiotic
4486                                                                                                                                       omega 3
4487                                                                                                                                     vitamin b
4488                                                                                                       betamethasone, florfenicol, terbinafine
4489                                                                                                                                   oclacitinib
4490                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4491                                                                                                       betamethasone, florfenicol, terbinafine
4492                                                                                                                                 metronidazole
4493                                                                                                                            maropitant citrate
4494                                                                                                                                 dexamethasone
4495                                                                                                                                   oclacitinib
4496                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4497                                                                                                                   lufenuron, milbemycin oxime
4498                                                                                                                                    afoxolaner
4499                                                                                                                milbemycin oxime, praziquantel
4500                                                                                                                                    afoxolaner
4501                                                                                                           rx diet - skin and food sensitivity
4502                                                                                                                                    afoxolaner
4503                                                                                                                                   oclacitinib
4504                                                                                                           rx diet - skin and food sensitivity
4505                                                                                                                              milbemycin oxime
4506                                                                                                                               apomorphine hcl
4507                                                                                                                            maropitant citrate
4508                                                                                                                                   oclacitinib
4509                                                                                                                              milbemycin oxime
4510                                                                                                                                    afoxolaner
4511                                                                                                                                       omega 3
4512                                                                                                        joint supplement (glucosamine hcl/msm)
4513                                                                                                                                   oclacitinib
4514                                                                                                                                  multivitamin
4515                                                                                                                              milbemycin oxime
4516                                                                                                                                    afoxolaner
4517                                                                                                                                     probiotic
4518                                                                                                                                  multivitamin
4519                                                                                                                                   oclacitinib
4520                                                                                                                                     carprofen
4521                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4522                                                                                                        joint supplement (glucosamine hcl/msm)
4523                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4524                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4525                                                                                                                                    ivermectin
4526                                                                                                                              pyrantel pamoate
4527                                                                                                                                  praziquantel
4528                                                                                                                                       omega 3
4529                                                                                                                                   coconut oil
4530                                                                                                                          prebiotic, probiotic
4531                                                                                                                     immune support supplement
4532                                                                                                                              milbemycin oxime
4533                                                                                                                          prebiotic, probiotic
4534                                                                                                                                   coconut oil
4535                                                                                                                                   oclacitinib
4536                                                                                                                              milbemycin oxime
4537                                                                                                                                    cephalexin
4538                                                                                                                      imidacloprid, permethrin
4539                                                                                                                  ivermectin, pyrantel pamoate
4540                                                                                                                  ivermectin, pyrantel pamoate
4541                                                                                                         dinotefuran, permethrin, pyriproxyfen
4542                                                                                                                          cefpodoxime proxetil
4543                                                                                                                                   hydroxyzine
4544                                                                                                                                       omega 3
4545                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4546                                                                                                                                     carprofen
4547                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4548                                                                                                                                   doxycycline
4549                                                                                                                          cefpodoxime proxetil
4550                                                                                                                                     carprofen
4551                                                                                                            amoxicillin, clavulanate potassium
4552                                                                                                        joint supplement (glucosamine hcl/msm)
4553                                                                                                                                     carprofen
4554                                                                                                                                     carprofen
4555                                                                                                                                     meclizine
4556                                                                                                                  ivermectin, pyrantel pamoate
4557                                                                                                                                 metronidazole
4558                                                                                                                  ivermectin, pyrantel pamoate
4559                                                                                                            fipronil, permethrin, pyriproxyfen
4560                                                                                                                  ivermectin, pyrantel pamoate
4561                                                                                                             betamethasone, gentamicin sulfate
4562                                                                                                                                    fluralaner
4563                                                                                                                                     carprofen
4564                                                                                                                  ivermectin, pyrantel pamoate
4565                                                                                                                                    fluralaner
4566                                                                                                                  ivermectin, pyrantel pamoate
4567                                                                                                                                    fluralaner
4568                                                                                                                                    fluralaner
4569                                                                                                                              milbemycin oxime
4570                                                                                                                                    gabapentin
4571                                                                                                                                     carprofen
4572                                                                                                                                    gabapentin
4573                                                                                                                                    grapiprant
4574                                                                                                                                 metronidazole
4575                                                                                                                                 metronidazole
4576                                                                                                                                   oclacitinib
4577                                                                                                                                   oclacitinib
4578                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4579                                                                                                                                    gabapentin
4580                                                                                                                                     carprofen
4581                                                                                                                                   oclacitinib
4582                                                                                                                                      spinosad
4583                                                                                                                  ivermectin, pyrantel pamoate
4584                                                                                                                  ivermectin, pyrantel pamoate
4585                                                                                                                                    afoxolaner
4586                                                                                                                  ivermectin, pyrantel pamoate
4587                                                                                                                  ivermectin, pyrantel pamoate
4588                                                                                                                                    afoxolaner
4589                                                                                                                                    cephalexin
4590                                                                                                                  ivermectin, pyrantel pamoate
4591                                                                                                                                    afoxolaner
4592                                                                                                                                    cephalexin
4593                                                                                                                  ivermectin, pyrantel pamoate
4594                                                                                                                                    afoxolaner
4595                                                                                                                                    lokivetmab
4596                                                                                                                                    cephalexin
4597                                                                                                    clinical trial - cancer prevention vaccine
4598                                                                                                                                     firocoxib
4599                                                                                                                                    ivermectin
4600                                                                                                                                    afoxolaner
4601                                                                                                                  ivermectin, pyrantel pamoate
4602                                                                                                                                    afoxolaner
4603                                                                                                                                   oclacitinib
4604                                                                                                                  ivermectin, pyrantel pamoate
4605                                                                                                                                     carprofen
4606                                                                                                                                  ketoconazole
4607                                                                                                                                   oclacitinib
4608                                                                                                                                     carprofen
4609                                                                                                                                   bedinvetmab
4610                                                                                                                                     firocoxib
4611                                                                                                                    milbemycin oxime, spinosad
4612                                                                                                                                   doxycycline
4613                                                                                                                                     carprofen
4614                                                                                                                                    selamectin
4615                                                                                                                                 metronidazole
4616                                                                                                                                  fenbendazole
4617                                                                                                             betamethasone, gentamicin sulfate
4618                                                                                                                              milbemycin oxime
4619                                                                                                                                      spinosad
4620                                                                                                                                     probiotic
4621                                                                                                                                 metronidazole
4622                                                                                                                          cefpodoxime proxetil
4623                                                                                                                                     carprofen
4624                                                                                                                                      spinosad
4625                                                                                                                              milbemycin oxime
4626                                                                                                                                     lufenuron
4627                                                                                                                                      fipronil
4628                                                                                                                                (s)-methoprene
4629                                                                                                                   lufenuron, milbemycin oxime
4630                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4631                                                                                                                      fipronil, (s)-methoprene
4632                                                                                                                                 metronidazole
4633                                                                                                                                  fenbendazole
4634                                                                                                                   rx diet - digestive support
4635                                                                                                                              milbemycin oxime
4636                                                                                                                                 metronidazole
4637                                                                                                                                  fenbendazole
4638                                                                                                                      fipronil, (s)-methoprene
4639                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4640                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4641                                                                                                                              milbemycin oxime
4642                                                                                                                milbemycin oxime, praziquantel
4643                                                                                                                                  cyclosporine
4644                                                                                                                                          edta
4645                                                                                                                                          edta
4646                                                                                                                                  flurbiprofen
4647                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4648                                                                                                                milbemycin oxime, praziquantel
4649                                                                                                                      fipronil, (s)-methoprene
4650                                                                                                                                          edta
4651                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4653                                                                                                                                     meloxicam
4654                                                                                                                      fipronil, (s)-methoprene
4655                                                                                                                milbemycin oxime, praziquantel
4656                                                                                                                                    diclofenac
4657                                                                                                                                          edta
4658                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4659                                                                                                                                       taurine
4660                                                                                                                                   l-carnitine
4661                                                                                                                                       taurine
4662                                                                                                                                   l-carnitine
4663                                                                                                                                    diclofenac
4664                                                                                                                                          edta
4665                                                                                                                                    cephalexin
4666                                                                                                                                    cephalexin
4667                                                                                                                                    gabapentin
4668                                                                                                                               diphenhydramine
4669                                                                                                                                     carprofen
4670                                                                                                                                          edta
4671                                                                                                                                    diclofenac
4672                                                                                                                          cefpodoxime proxetil
4673                                                                                                            amoxicillin, clavulanate potassium
4674                                                                                                                                   doxycycline
4675                                                                                                                                      ursodiol
4676                                                                                                                                      ursodiol
4677                                                                                                                                    diclofenac
4678                                                                                                                                          edta
4679                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4680                                                                                                mometasone furoate, orbifloxacin, posaconazole
4681                                                                                                                            maropitant citrate
4682                                                                                                                                    sucralfate
4683                                                                                                                                     ofloxacin
4684                                                                                                                                    tobramycin
4685                                                                                                                                    gabapentin
4686                                                                                                                                     trazodone
4687                                                                                                                                   oclacitinib
4688                                                                                                                              sulfadimethoxine
4689                                                                                                                  ivermectin, pyrantel pamoate
4690                                                                                                                  ivermectin, pyrantel pamoate
4691                                                                                                                                    ivermectin
4692                                                                                                                                    afoxolaner
4693                                                                                                                  ivermectin, pyrantel pamoate
4694                                                                                                                                    afoxolaner
4695                                                                                                                              milbemycin oxime
4696                                                                                                                                    afoxolaner
4697                                                                                                                milbemycin oxime, praziquantel
4698                                                                                                                                    afoxolaner
4699                                                                                                                                 marbofloxacin
4700                                                                                                                        dinoprost tromethamine
4701                                                                                                                                   clindamycin
4702                                                                                                                                   amoxicillin
4703                                                                                                                              milbemycin oxime
4704                                                                                                                                    afoxolaner
4705                                                                                                                              milbemycin oxime
4706                                                                                                                                   amoxicillin
4707                                                                                                                                     carprofen
4708                                                                                                                                    furosemide
4709                                                                                                                                    pimobendan
4710                                                                                                                                     carprofen
4711                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
4712                                                                                                                                 levothyroxine
4713                                                                                                                  ivermectin, pyrantel pamoate
4714                                                                                                                                 levothyroxine
4715                                                                                                                                 levothyroxine
4716                                                                                                                          cefpodoxime proxetil
4717                                                                                                                                      spinosad
4718                                                                                                                                 levothyroxine
4719                                                                                                mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                                       ketoconazole, tris-edta
4721                                                                                                                              milbemycin oxime
4722                                                                                                                                 levothyroxine
4723                                                                                                                                    cephalexin
4724                                                                                                                                     meloxicam
4725                                                                                                                  ivermectin, pyrantel pamoate
4726                                                                                                                              milbemycin oxime
4727                                                                                                                unspecified thyroid medication
4728                                                                                                                                 metronidazole
4729                                                                                                                polysulfated glycosaminoglycan
4730                                                                                                                                 levothyroxine
4731                                                                                                                                    grapiprant
4732                                                                                                                                  enrofloxacin
4733                                                                                                                            maropitant citrate
4734                                                                                                                                    grapiprant
4735                                                                                                                                 levothyroxine
4736                                                                                                                polysulfated glycosaminoglycan
4737                                                                                                                                    grapiprant
4738                                                                                                                    milbemycin oxime, spinosad
4739                                                                                                                    milbemycin oxime, spinosad
4740                                                                                                                                     meloxicam
4741                                                                                                                                   doxycycline
4742                                                                                                                      homatropine, hydrocodone
4743                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                                             betamethasone, gentamicin sulfate
4745                                                                                                                    milbemycin oxime, spinosad
4746                                                                                                                polysulfated glycosaminoglycan
4747                                                                                                            joint supplement (glucosamine hcl)
4748                                                                                                                    milbemycin oxime, spinosad
4749                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4750                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4751                                                                                                                                    ivermectin
4752                                                                                                             trimeprazine tartrate, prednisone
4753                                                                                                                                 metronidazole
4754                                                                                                                     immune support supplement
4755                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4756                                                                                                             trimeprazine tartrate, prednisone
4757                                                                                                                    imidacloprid, pyriproxyfen
4758                                                                                                                                    moxidectin
4759                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4760                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4761                                                                                                                     immune support supplement
4762                                                                                                                                    moxidectin
4763                                                                                                                    imidacloprid, pyriproxyfen
4764                                                                                                                    imidacloprid, pyriproxyfen
4765                                                                                                                                    lokivetmab
4766                                                                                                                    imidacloprid, pyriproxyfen
4767                                                                                                                                    moxidectin
4768                                                                                                                                    lokivetmab
4769                                                                                                                          cefpodoxime proxetil
4770                                                                                                                     immune support supplement
4771                                                                                                                      skin and coat supplement
4772                                                                                                                      joint supplement (other)
4773                                                                                                                                   oclacitinib
4774                                                                                                                                     carprofen
4775                                                                                                                                    prednisone
4776                                                                                                                                   hydroxyzine
4777                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4778                                                                                                                                    lokivetmab
4779                                                                                                                                   hydroxyzine
4780                                                                                                                      joint supplement (other)
4781                                                                                                                      skin and coat supplement
4782                                                                                                                                     probiotic
4783                                                                                                                                   oclacitinib
4784                                                                                                                      skin and coat supplement
4785                                                                                                                                    lokivetmab
4786                                                                                                                                     probiotic
4787                                                                                                                                   oclacitinib
4788                                                                                                                                   clindamycin
4789                                                                                                                          cefpodoxime proxetil
4790                                                                                                                                     toceranib
4791                                                                                                                      skin and coat supplement
4792                                                                                                                      joint supplement (other)
4793                                                                                                                                    lokivetmab
4794                                                                                                                                    gabapentin
4795                                                                                                                                     trazodone
4796                                                                                                                                     carprofen
4797                                                                                                                                    prednisone
4798                                                                                                                                    prednisone
4799                                                                                                                                   doxycycline
4800                                                                                                                                  ketoconazole
4801                                                                                                                                    prednisone
4802                                                                                                                  ivermectin, pyrantel pamoate
4803                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4804                                                                                                                                    prednisone
4805                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                                    afoxolaner
4807                                                                                                                                     carprofen
4808                                                                                                                              milbemycin oxime
4809                                                                                                                                    cephalexin
4810                                                                                                                                     carprofen
4811                                                                                                                                    loratadine
4812                                                                                                                polysulfated glycosaminoglycan
4813                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4814                                                                                                                                    grapiprant
4815                                                                                                                              pyrantel pamoate
4816                                                                                                                                 ciprofloxacin
4817                                                                                                             betamethasone, gentamicin sulfate
4818                                                                                                                                 metronidazole
4819                                                                                                                                 metronidazole
4820                                                                                                                            maropitant citrate
4821                                                                                                                               diphenhydramine
4822                                                                                                                                   oclacitinib
4823                                                                                                                                     deracoxib
4824                                                                                                                      imidacloprid, moxidectin
4825                                                                                                                                    afoxolaner
4826                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4827                                                                                                                                   oclacitinib
4828                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4829                                                                                                                                     deracoxib
4830                                                                                                                   lufenuron, milbemycin oxime
4831                                                                                                                                    fluralaner
4832                                                                                                         enrofloxacin, triamcinolone acetonide
4833                                                                                                                                    fluralaner
4834                                                                                                                   lufenuron, milbemycin oxime
4835                                                                                                                   lufenuron, milbemycin oxime
4836                                                                                                                                    fluralaner
4837                                                                                                                          cefpodoxime proxetil
4838                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4839                                                                                                                                   clindamycin
4840                                                                                                                              benzoyl peroxide
4841                                                                                                                                   oclacitinib
4842                                                                                                                      skin and coat supplement
4843                                                                                                         enrofloxacin, triamcinolone acetonide
4844                                                                                                                          cefpodoxime proxetil
4845                                                                                                                       ketoconazole, tris-edta
4846                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4847                                                                                                                                    lokivetmab
4848                                                                                                                                    fluralaner
4849                                                                                                                   lufenuron, milbemycin oxime
4850                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
4851                                                                                                                                     probiotic
4852                                                                                                                          cefpodoxime proxetil
4853                                                                                                                       ketoconazole, tris-edta
4854                                                                                                                                      tramadol
4855                                                                                                                    milbemycin oxime, spinosad
4856                                                                                                                    milbemycin oxime, spinosad
4857                                                                                                                                    prednisone
4858                                                                                                                    milbemycin oxime, spinosad
4859                                                                                                                  ivermectin, pyrantel pamoate
4860                                                                                                                                    afoxolaner
4861                                                                                                                  ivermectin, pyrantel pamoate
4862                                                                                                                  ivermectin, pyrantel pamoate
4863                                                                                                                                    afoxolaner
4864                                                                                                                                    prednisone
4865                                                                                                                                 levothyroxine
4866                                                                                                                                       omega 3
4867                                                                                                                                     vitamin e
4868                                                                                                                                       omega 3
4869                                                                                                                      skin and coat supplement
4870                                                                                                                  ivermectin, pyrantel pamoate
4871                                                                                                                                    lokivetmab
4872                                                                                                                                   hydroxyzine
4873                                                                                                                                    cephalexin
4874                                                                                                                  hydrocortisone, ketoconazole
4875                                                                                                                                    prednisone
4876                                                                                                                                    prednisone
4877                                                                                                                                    prednisone
4878                                                                                                                                     carprofen
4879                                                                                                                                     carprofen
4880                                                                                                                                    cephalexin
4881                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4882                                                                                                                  ivermectin, pyrantel pamoate
4883                                                                                                                                 levothyroxine
4884                                                                                                                                     vitamin e
4885                                                                                                                                       omega 3
4886                                                                                                                                     carprofen
4887                                                                                                                                      tramadol
4888                                                                                                                            maropitant citrate
4889                                                                                                            amoxicillin, clavulanate potassium
4890                                                                                                                                 methocarbamol
4891                                                                                                                                    gabapentin
4892                                                                                                                                 levothyroxine
4893                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4894                                                                                                dexamethasone, neomycin sulfate, thiabendazole
4895                                                                                                                                      tramadol
4896                                                                                                                                   propranolol
4897                                                                                                                                   doxorubicin
4898                                                                                                                                     carprofen
4899                                                                                                                                    prednisone
4900                                                                                                                            maropitant citrate
4901                                                                                                                  ivermectin, pyrantel pamoate
4902                                                                                                                      fipronil, (s)-methoprene
4903                                                                                                                  ivermectin, pyrantel pamoate
4904                                                                                                                    milbemycin oxime, spinosad
4905                                                                                                                    milbemycin oxime, spinosad
4906                                                                                                                  ivermectin, pyrantel pamoate
4907                                                                                                                      flumethrin, imidacloprid
4908                                                                                                                    milbemycin oxime, spinosad
4909                                                                                                                  ivermectin, pyrantel pamoate
4910                                                                                                                      flumethrin, imidacloprid
4911                                                                                                                  ivermectin, pyrantel pamoate
4912                                                                                                                milbemycin oxime, praziquantel
4913                                                                                                                      flumethrin, imidacloprid
4914                                                                                                                milbemycin oxime, praziquantel
4915                                                                                                                                    fluralaner
4916                                                                                                                                    fluralaner
4917                                                                                                                milbemycin oxime, praziquantel
4918                                                                                                                                    fluralaner
4919                                                                                                                  ivermectin, pyrantel pamoate
4920                                                                                                                milbemycin oxime, praziquantel
4921                                                                                                                                 metronidazole
4922                                                                                                                            maropitant citrate
4923                                                                                                                                    gabapentin
4924                                                                                                                                      ursodiol
4925                                                                                                                                     carprofen
4926                                                                                                                                    gabapentin
4927                                                                                                                polysulfated glycosaminoglycan
4928                                                                                                    toothpaste/dental health solution or chews
4929                                                                                                                                     carprofen
4930                                                                                                                                    gabapentin
4931                                                                                                                                      ursodiol
4932                                                                                                                polysulfated glycosaminoglycan
4933                                                                                                                                   bedinvetmab
4934                                                                                                                                     carprofen
4935                                                                                                                                    ivermectin
4936                                                                                                                  ivermectin, pyrantel pamoate
4937                                                                                                                  ivermectin, pyrantel pamoate
4938                                                                                                                                    ivermectin
4939                                                                                                                              milbemycin oxime
4940                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4941                                                                                                                                     carprofen
4942                                                                                                                                 marbofloxacin
4943                                                                                                                                 marbofloxacin
4944                                                                                                                                     carprofen
4945                                                                                                                          cefpodoxime proxetil
4946                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4947                                                                                                                          cefpodoxime proxetil
4948                                                                                                                                     carprofen
4949                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4950                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4951                                                                                                            amoxicillin, clavulanate potassium
4952                                                                                                                                    ivermectin
4953                                                                                                                                     vitamin c
4954                                                                                                                              milbemycin oxime
4955                                                                                                                                      spinosad
4956                                                                                                                       ketoconazole, tris-edta
4957                                                                                                                                  fenbendazole
4958                                                                                                                          prednisolone acetate
4959                                                                                                                         trimeprazine tartrate
4960                                                                                                                       ketoconazole, tris-edta
4961                                                                                                                                      spinosad
4962                                                                                                                              milbemycin oxime
4963                                                                                                                                 hydromorphone
4964                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
4965                                                                                                                                      spinosad
4966                                                                                                                              milbemycin oxime
4967                                                                                                                                       omega 3
4968                                                                                                                    milbemycin oxime, spinosad
4969                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
4970                                                                                                                                       omega 3
4971                                                                                                                                    fluoxetine
4972                                                                                                       betamethasone, florfenicol, terbinafine
4973                                                                                                                                    fluoxetine
4974                                                                                                                              milbemycin oxime
4975                                                                                                                                     sarolaner
4976                                                                                                                                    famotidine
4977                                                                                                                            maropitant citrate
4978                                                                                                                                    omeprazole
4979                                                                                                                                 metronidazole
4980                                                                                                                                     probiotic
4981                                                                                                                milbemycin oxime, praziquantel
4982                                                                                                                                     sarolaner
4983                                                                                                       betamethasone, florfenicol, terbinafine
4984                                                                                                                                   amoxicillin
4985                                                                                                                                  fenbendazole
4986                                                                                                                          digestive supplement
4987                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
4988                                                                                                                                     carprofen
4989                                                                                                                                     carprofen
4990                                                                                                                                      tramadol
4991                                                                                                                                    afoxolaner
4992                                                                                                                                      tramadol
4993                                                                                                                                     carprofen
4994                                                                                                                                    gabapentin
4995                                                                                                                                   doxycycline
4996                                                                                                             betamethasone, gentamicin sulfate
4997                                                                                                                          cefpodoxime proxetil
4998                                                                                                                                 oxymetazoline
4999                                                                                                                                    gabapentin
5000                                                                                                                                     firocoxib
5001                                                                                                                                    prednisone
5002                                                                                                                                  azithromycin
5003                                                                                                                                     ofloxacin
5004                                                                                                                                     firocoxib
5005                                                                                                                                   clindamycin
5006                                                                                                                              amikacin sulfate
5007                                                                                                                                     firocoxib
5008                                                                                                                                 levothyroxine
5009                                                                                                                                   clindamycin
5010                                                                                                                                     cefovecin
5011                                                                                                                                 levothyroxine
5012                                                                                                                                     firocoxib
5013                                                                                                                          cefpodoxime proxetil
5014                                                                                                                                 metronidazole
5015                                                                                                                                benazepril hcl
5016                                                                                                                                   telmisartan
5017                                                                                                                                    ampicillin
5018                                                                                                                                   amoxicillin
5019                                                                                                                                    famotidine
5020                                                                                                                                    sucralfate
5021                                                                                                                                     lidocaine
5022                                                                                                                                metoclopramide
5023                                                                                                                       whole blood transfusion
5024                                                                                                          hydroxyethyl starch, sodium chloride
5025                                                                                                                                      propofol
5026                                                                                                                                     meloxicam
5027                                                                                                                                      propofol
5028                                                                                                                        acepromazine, ketamine
5029                                                                                                                                      diazepam
5030                                                                                                                                    cephalexin
5031                                                                                                                                     carprofen
5032                                                                                                                              ceftiofur sodium
5033                                                                                                                                   amoxicillin
5034                                                                                                                               apomorphine hcl
5035                                                                                                                                     thyroxine
5036                                                                                                                                 levothyroxine
5037                                                                                                                                     thyroxine
5038                                                                                                                                 levothyroxine
5039                                                                                                                                     thyroxine
5040                                                                                                                                    afoxolaner
5041                                                                                                                                   oclacitinib
5042                                                                                                                                     thyroxine
5043                                                                                                                      fipronil, (s)-methoprene
5044                                                                                                                                   oclacitinib
5045                                                                                                                                    cephalexin
5046                                                                                                             betamethasone, gentamicin sulfate
5047                                                                                                                                     cefovecin
5048                                                                                                                                    lokivetmab
5049                                                                                                                                   oclacitinib
5050                                                                                                                                  enrofloxacin
5051                                                                                                            amoxicillin, clavulanate potassium
5052                                                                                                                                    gabapentin
5053                                                                                                                                    lokivetmab
5054                                                                                                                                     carprofen
5055                                                                                                                                    lokivetmab
5056                                                                                                                                 levothyroxine
5057                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5058                                                                                                                                    lokivetmab
5059                                                                                                                                   bedinvetmab
5060                                                                                                            amoxicillin, clavulanate potassium
5061                                                                                                                                 levothyroxine
5062                                                                                                                                     carprofen
5063                                                                                                                    milbemycin oxime, spinosad
5064                                                                                                                                  ketoconazole
5065                                                                                                                                 metronidazole
5066                                                                                                                    milbemycin oxime, spinosad
5067                                                                                                                                      spinosad
5068                                                                                                mometasone furoate, orbifloxacin, posaconazole
5069                                                                                                             trimeprazine tartrate, prednisone
5070                                                                                                                          cefpodoxime proxetil
5071                                                                                                                                     carprofen
5072                                                                                                                                   clindamycin
5073                                                                                                                                       codeine
5074                                                                                                                                     carprofen
5075                                                                                                                                    prednisone
5076                                                                                                                                     carprofen
5077                                                                                                                                    prednisone
5078                                                                                                                    milbemycin oxime, spinosad
5079                                                                                                                                   amoxicillin
5080                                                                                                                                 metronidazole
5081                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5082                                                                                                                                    ivermectin
5083                                                                                                                              benzoyl peroxide
5084                                                                                                         chlorhexidine gluconate, ketoconazole
5085                                                                                                                                 metronidazole
5086                                                                                                                    milbemycin oxime, spinosad
5087                                                                                                                                     probiotic
5088                                                                                                                                 metronidazole
5089                                                                                                                  ivermectin, pyrantel pamoate
5090                                                                                                                                     carprofen
5091                                                                                                                  ivermectin, pyrantel pamoate
5092                                                                                                                    milbemycin oxime, spinosad
5093                                                                                                                                    cephalexin
5094                                                                                                                  ivermectin, pyrantel pamoate
5095                                                                                                                  ivermectin, pyrantel pamoate
5096                                                                                                                                    afoxolaner
5097                                                                                                                  ivermectin, pyrantel pamoate
5098                                                                                                                                    afoxolaner
5099                                                                                                                  ivermectin, pyrantel pamoate
5100                                                                                                                                    afoxolaner
5101                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5102                                                                                                                                     carprofen
5103                                                                                                                                 metronidazole
5104                                                                                                                                    ivermectin
5105                                                                                                                  ivermectin, pyrantel pamoate
5106                                                                                                                                    cephalexin
5107                                                                                                                  ivermectin, pyrantel pamoate
5108                                                                                                                                    cephalexin
5109                                                                                                             betamethasone, gentamicin sulfate
5110                                                                                                                                   clindamycin
5111                                                                                                                  ivermectin, pyrantel pamoate
5112                                                                                                                                   clindamycin
5113                                                                                                                      fipronil, (s)-methoprene
5114                                                                                                                                    cephalexin
5115                                                                                                                  ivermectin, pyrantel pamoate
5116                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5117                                                                                                                                    afoxolaner
5118                                                                                                                  ivermectin, pyrantel pamoate
5119                                                                                                                                    afoxolaner
5120                                                                                                                                    afoxolaner
5121                                                                                                                                    ivermectin
5122                                                                                                                  ivermectin, pyrantel pamoate
5123                                                                                                                                    afoxolaner
5124                                                                                                                                     firocoxib
5125                                                                                                             allergy immunotherapy - injection
5126                                                                                                             allergy immunotherapy - injection
5127                                                                                                                polysulfated glycosaminoglycan
5128                                                                                                                                        elspar
5129                                                                                                                                 metronidazole
5130                                                                                                                                     probiotic
5131                                                                                                                                    cephalexin
5132                                                                                                                                     firocoxib
5133                                                                                                                                    gabapentin
5134                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5135                                                                                                                                    gabapentin
5136                                                                                                                                     trazodone
5137                                                                                                                                     carprofen
5138                                                                                                            amoxicillin, clavulanate potassium
5139                                                                                                                          cefpodoxime proxetil
5140                                                                                                            amoxicillin, clavulanate potassium
5141                                                                                                                                    fluralaner
5142                                                                                                                                     firocoxib
5143                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5144                                                                                                                                     meloxicam
5145                                                                                                                                    cephalexin
5146                                                                                                                                 metronidazole
5147                                                                                                                                     meloxicam
5148                                                                                                                              milbemycin oxime
5149                                                                                                                              milbemycin oxime
5150                                                                                                                    milbemycin oxime, spinosad
5151                                                                                                                                  praziquantel
5152                                                                                                                  ivermectin, pyrantel pamoate
5153                                                                                                                                      tramadol
5154                                                                                                                  ivermectin, pyrantel pamoate
5155                                                                                                                                    afoxolaner
5156                                                                                                                  ivermectin, pyrantel pamoate
5157                                                                                                                                    afoxolaner
5158                                                                                                                                   clindamycin
5159                                                                                                            joint supplement (glucosamine hcl)
5160                                                                                                                                       omega 3
5161                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5162                                                                                                                                     carprofen
5163                                                                                                                                 metronidazole
5164                                                                                                                          cefpodoxime proxetil
5165                                                                                                                                     deracoxib
5166                                                                                                                              sulfadimethoxine
5167                                                                                                                                  fenbendazole
5168                                                                                                                                     firocoxib
5169                                                                                                                  ivermectin, pyrantel pamoate
5170                                                                                                                                    afoxolaner
5171                                                                                                                                     cefovecin
5172                                                                                                                                 metronidazole
5173                                                                                                                  ivermectin, pyrantel pamoate
5174                                                                                                                                    afoxolaner
5175                                                                                                                                  enrofloxacin
5176                                                                                                                  ivermectin, pyrantel pamoate
5177                                                                                                                                    afoxolaner
5178                                                                                                                  ivermectin, pyrantel pamoate
5179                                                                                                                                    afoxolaner
5180                                                                                                                  ivermectin, pyrantel pamoate
5181                                                                                                                                    afoxolaner
5182                                                                                                                                    lokivetmab
5183                                                                                                                                     carprofen
5184                                                                                                                                     carprofen
5185                                                                                                            amoxicillin, clavulanate potassium
5186                                                                                                                            maropitant citrate
5187                                                                                                                                     carprofen
5188                                                                                                                    milbemycin oxime, spinosad
5189                                                                                                                    milbemycin oxime, spinosad
5190                                                                                                                    milbemycin oxime, spinosad
5191                                                                                                                    milbemycin oxime, spinosad
5192                                                                                                                                     carprofen
5193                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5194                                                                                                                milbemycin oxime, praziquantel
5195                                                                                                                      flumethrin, imidacloprid
5196                                                                                                            amoxicillin, clavulanate potassium
5197                                                                                                                                     carprofen
5198                                                                                                                                     trazodone
5199                                                                                                                                    grapiprant
5200                                                                                                                          digestive supplement
5201                                                                                                                                     carprofen
5202                                                                                                                                    ivermectin
5203                                                                                                                                    ivermectin
5204                                                                                                                  ivermectin, pyrantel pamoate
5205                                                                                                                                    ivermectin
5206                                                                                                                  ivermectin, pyrantel pamoate
5207                                                                                                                   lufenuron, milbemycin oxime
5208                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5209                                                                                                                                     carprofen
5210                                                                                                                                  ketoconazole
5211                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                                                   chlorhexidine gluconate, miconazole nitrate
5213                                                                                                                        ear cleaner (otirinse)
5214                                                                                                                   lufenuron, milbemycin oxime
5215                                                                                                                                 metronidazole
5216                                                                                                            amoxicillin, clavulanate potassium
5217                                                                                                                                 marbofloxacin
5218                                                                                                                                    cephalexin
5219                                                                                                             trimeprazine tartrate, prednisone
5220                                                                                                             betamethasone, gentamicin sulfate
5221                                                                                                   chlorhexidine gluconate, miconazole nitrate
5222                                                                                                                      imidacloprid, permethrin
5223                                                                                                                   lufenuron, milbemycin oxime
5224                                                                                                                                    cephalexin
5225                                                                                                                   lufenuron, milbemycin oxime
5226                                                                                                                                    cephalexin
5227                                                                                                             trimeprazine tartrate, prednisone
5228                                                                                                   chlorhexidine gluconate, miconazole nitrate
5229                                                                                                                                  ketoconazole
5230                                                                                                                praziquantel, pyrantel pamoate
5231                                                                                                             trimeprazine tartrate, prednisone
5232                                                                                                                                     carprofen
5233                                                                                                                                    cephalexin
5234                                                                                                      febantel, praziquantel, pyrantel pamoate
5235                                                                                                                   lufenuron, milbemycin oxime
5236                                                                                                                                     carprofen
5237                                                                                                                                     trazodone
5238                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5239                                                                                                             trimeprazine tartrate, prednisone
5240                                                                                                                                   oclacitinib
5241                                                                                                                                     cefovecin
5242                                                                                                             betamethasone, gentamicin sulfate
5243                                                                                                                   lufenuron, milbemycin oxime
5244                                                                                                                    imidacloprid, pyriproxyfen
5245                                                                                                            amoxicillin, clavulanate potassium
5246                                                                                                                            maropitant citrate
5247                                                                                                                milbemycin oxime, praziquantel
5248                                                                                                                      imidacloprid, permethrin
5249                                                                                                                                   oclacitinib
5250                                                                                                             betamethasone, gentamicin sulfate
5251                                                                                                                                  tetracycline
5252                                                                                                                                     carprofen
5253                                                                                                                  ivermectin, pyrantel pamoate
5254                                                                                                            amoxicillin, clavulanate potassium
5255                                                                                                                   lufenuron, milbemycin oxime
5256                                                                                                                   lufenuron, milbemycin oxime
5257                                                                                                                   lufenuron, milbemycin oxime
5258                                                                                                                   lufenuron, milbemycin oxime
5259                                                                                                                                       omega 3
5260                                                                                                                praziquantel, pyrantel pamoate
5261                                                                                                                   lufenuron, milbemycin oxime
5262                                                                                                      febantel, praziquantel, pyrantel pamoate
5263                                                                                                                                     carprofen
5264                                                                                                                    imidacloprid, pyriproxyfen
5265                                                                                                                              milbemycin oxime
5266                                                                                                            amoxicillin, clavulanate potassium
5267                                                                                                                                     carprofen
5268                                                                                                             betamethasone, gentamicin sulfate
5269                                                                                                                                     carprofen
5270                                                                                                                milbemycin oxime, praziquantel
5271                                                                                                                      imidacloprid, permethrin
5272                                                                                                                                    cephalexin
5273                                                                                                             trimeprazine tartrate, prednisone
5274                                                                                                                          cefpodoxime proxetil
5275                                                                                                            amoxicillin, clavulanate potassium
5276                                                                                                                polysulfated glycosaminoglycan
5277                                                                                                                                     carprofen
5278                                                                                                                                     carprofen
5279                                                                                                                polysulfated glycosaminoglycan
5280                                                                                                                                 marbofloxacin
5281                                                                                                                                    gabapentin
5282                                                                                                                polysulfated glycosaminoglycan
5283                                                                                                                                     carprofen
5284                                                                                                                                    prednisone
5285                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
5286                                                                                                                  ivermectin, pyrantel pamoate
5287                                                                                                                                    afoxolaner
5288                                                                                                                  ivermectin, pyrantel pamoate
5289                                                                                                                              milbemycin oxime
5290                                                                                                                                    prednisone
5291                                                                                                                                 levothyroxine
5292                                                                                                                                    prednisone
5293                                                                                                                                    cephalexin
5294                                                                                                                                    fluoxetine
5295                                                                                                                  ivermectin, pyrantel pamoate
5296                                                                                                                                    prednisone
5297                                                                                                                                    cephalexin
5298                                                                                                                                   oclacitinib
5299                                                                                                                  ivermectin, pyrantel pamoate
5300                                                                                                                                    cephalexin
5301                                                                                                                            calming supplement
5302                                                                                                                                     melatonin
5303                                                                                                                                     trazodone
5304                                                                                                                                    lokivetmab
5305                                                                                                                  ivermectin, pyrantel pamoate
5306                                                                                                                                  cyclosporine
5307                                                                                                                                  clomipramine
5308                                                                                                                                    lokivetmab
5309                                                                                                                  ivermectin, pyrantel pamoate
5310                                                                                                                                  cyclosporine
5311                                                                                                                                  clomipramine
5312                                                                                                                                  cyclosporine
5313                                                                                                                                  clomipramine
5314                                                                                                                  ivermectin, pyrantel pamoate
5315                                                                                                                                    lokivetmab
5316                                                                                                                                  clomipramine
5317                                                                                                                                  clomipramine
5318                                                                                                                                  cyclosporine
5319                                                                                                                                     carprofen
5320                                                                                                                                    gabapentin
5321                                                                                                                                     carprofen
5322                                                                                                            amoxicillin, clavulanate potassium
5323                                                                                                                      urinary tract supplement
5324                                                                                                                      urinary tract supplement
5325                                                                                                                                   doxycycline
5326                                                                                                                                    cephalexin
5327                                                                                                                                     deracoxib
5328                                                                                                                                      tramadol
5329                                                                                                            amoxicillin, clavulanate potassium
5330                                                                                                            amoxicillin, clavulanate potassium
5331                                                                                                                  ivermectin, pyrantel pamoate
5332                                                                                                                                       amitraz
5333                                                                                                                                       omega 3
5334                                                                                                                  ivermectin, pyrantel pamoate
5335                                                                                                                                       amitraz
5336                                                                                                                      urinary tract supplement
5337                                                                                                                  ivermectin, pyrantel pamoate
5338                                                                                                                                    gabapentin
5339                                                                                                                                     meloxicam
5340                                                                                                                  ivermectin, pyrantel pamoate
5341                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
5342                                                                                                            amoxicillin, clavulanate potassium
5343                                                                                                                                    gabapentin
5344                                                                                                                                     meloxicam
5345                                                                                                                                     carprofen
5346                                                                                                                                    ivermectin
5347                                                                                                                              pyrantel pamoate
5348                                                                                                                                    ivermectin
5349                                                                                                                  ivermectin, pyrantel pamoate
5350                                                                                                                                 metronidazole
5351                                                                                                                                    ivermectin
5352                                                                                                                  ivermectin, pyrantel pamoate
5353                                                                                                                                    afoxolaner
5354                                                                                                                      flumethrin, imidacloprid
5355                                                                                                                  ivermectin, pyrantel pamoate
5356                                                                                                                                 metronidazole
5357                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
5358                                                                                                                  ivermectin, pyrantel pamoate
5359                                                                                                                  ivermectin, pyrantel pamoate
5360                                                                                                                  ivermectin, pyrantel pamoate
5361                                                                                                                               diphenhydramine
5362                                                                                                attapulgite, bismuth subcarbonate, kanamycin a
5363                                                                                                                                 metronidazole
5364                                                                                                                    sulfadiazine, trimethoprim
5365                                                                                                                                    ivermectin
5366                                                                                                                              pyrantel pamoate
5367                                                                                                                                  praziquantel
5368                                                                                                                                     carprofen
5369                                                                                                                  ivermectin, pyrantel pamoate
5370                                                                                                         dinotefuran, permethrin, pyriproxyfen
5371                                                                                                                  ivermectin, pyrantel pamoate
5372                                                                                                                                    afoxolaner
5373                                                                                                                                    sucralfate
5374                                                                                                                              sulfadimethoxine
5375                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5376                                                                                                                                    ivermectin
5377                                                                                                                  ivermectin, pyrantel pamoate
5378                                                                                                                      fipronil, (s)-methoprene
5379                                                                                                                                    ivermectin
5380                                                                                                                      fipronil, (s)-methoprene
5381                                                                                                                              milbemycin oxime
5382                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5383                                                                                                                    imidacloprid, pyriproxyfen
5384                                                                                                                              milbemycin oxime
5385                                                                                                                      fipronil, (s)-methoprene
5386                                                                                                                  ivermectin, pyrantel pamoate
5387                                                                                                                              milbemycin oxime
5388                                                                                                         dinotefuran, permethrin, pyriproxyfen
5389                                                                                                                  ivermectin, pyrantel pamoate
5390                                                                                                                                    afoxolaner
5391                                                                                                                                    afoxolaner
5392                                                                                                                  ivermectin, pyrantel pamoate
5393                                                                                                                                     carprofen
5394                                                                                                                  ivermectin, pyrantel pamoate
5395                                                                                                                                    ivermectin
5396                                                                                                                              pyrantel pamoate
5397                                                                                                                                    ivermectin
5398                                                                                                                              pyrantel pamoate
5399                                                                                                                              milbemycin oxime
5400                                                                                                                              milbemycin oxime
5401                                                                                                                   lufenuron, milbemycin oxime
5402                                                                                                                                 levothyroxine
5403                                                                                                                              milbemycin oxime
5404                                                                                                                                     thyroxine
5405                                                                                                                                 metronidazole
5406                                                                                                                                 levothyroxine
5407                                                                                                                   lufenuron, milbemycin oxime
5408                                                                                                                                 levothyroxine
5409                                                                                                                                    cephalexin
5410                                                                                                                                    prednisone
5411                                                                                                                   lufenuron, milbemycin oxime
5412                                                                                                                                    cephalexin
5413                                                                                                                                     carprofen
5414                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5415                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5416                                                                                                                                 levothyroxine
5417                                                                                                                                 metronidazole
5418                                                                                                                                    cephalexin
5419                                                                                                                                    pimobendan
5420                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5421                                                                                                                                 levothyroxine
5422                                                                                                                                     carprofen
5423                                                                                                                          cefpodoxime proxetil
5424                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5425                                                                                                                                    sucralfate
5426                                                                                                                                    famotidine
5427                                                                                                                                    cephalexin
5428                                                                                                             betamethasone, gentamicin sulfate
5429                                                                                                                                   clindamycin
5430                                                                                                                                      tramadol
5431                                                                                                                                     carprofen
5432                                                                                                                          cefpodoxime proxetil
5433                                                                                                                                     carprofen
5434                                                                                                                                      tramadol
5435                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5436                                                                                                                              sulfadimethoxine
5437                                                                                                                                    cephalexin
5438                                                                                                                       ketoconazole, tris-edta
5439                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5440                                                                                                                                       omega 3
5441                                                                                                                                     carprofen
5442                                                                                                                                     carprofen
5443                                                                                                                                     carprofen
5444                                                                                                                                    cephalexin
5445                                                                                                                                     carprofen
5446                                                                                                                                     meloxicam
5447                                                                                                                polysulfated glycosaminoglycan
5448                                                                                                                                   bedinvetmab
5449                                                                                                                                   amoxicillin
5450                                                                                                                                      tramadol
5451                                                                                                                                     deracoxib
5452                                                                                                                                    cephalexin
5453                                                                                                                                   terbinafine
5454                                                                                                                   lufenuron, milbemycin oxime
5455                                                                                                                                     sarolaner
5456                                                                                                                unspecified thyroid medication
5457                                                                                                                                 levothyroxine
5458                                                                                                                              milbemycin oxime
5459                                                                                                                                     lufenuron
5460                                                            chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5461                                                                                                                   lufenuron, milbemycin oxime
5462                                                                                                         dinotefuran, permethrin, pyriproxyfen
5463                                                                                                                   lufenuron, milbemycin oxime
5464                                                                                                                    milbemycin oxime, spinosad
5465                                                                                                                                    fluralaner
5466                                                                                                         dinotefuran, permethrin, pyriproxyfen
5467                                                                                                                   lufenuron, milbemycin oxime
5468                                                                                                                                    moxidectin
5469                                                                                                                                    moxidectin
5470                                                                                                                                 ciprofloxacin
5471                                                                                                                                 methocarbamol
5472                                                                                                                                    prednisone
5473                                                                                                                                   amoxicillin
5474                                                                                                                                    prednisone
5475                                                                                                                                    famotidine
5476                                                                                                                                    sucralfate
5477                                                                                                                                    cephalexin
5478                                                                                                                                      tramadol
5479                                                                                                                                     carprofen
5480                                                                                                                                    loratadine
5481                                                                                                                                    prednisone
5482                                                                                                                                       omega 3
5483                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                                       omega 3
5485                                                                                                                                 metronidazole
5486                                                                                                                                       omega 3
5487                                                                                                                      joint supplement (other)
5488                                                                                                                                    prednisone
5489                                                                                                                                    loratadine
5490                                                                                                                                   oclacitinib
5491                                                                                                                      fipronil, (s)-methoprene
5492                                                                                                                                    ivermectin
5493                                                                                                                  ivermectin, pyrantel pamoate
5494                                                                                                                      fipronil, (s)-methoprene
5495                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5496                                                                                                                                     carprofen
5497                                                                                                                  ivermectin, pyrantel pamoate
5498                                                                                                                  ivermectin, pyrantel pamoate
5499                                                                                                                      fipronil, (s)-methoprene
5500                                                                                                                  ivermectin, pyrantel pamoate
5501                                                                                                                       chlorhexidine gluconate
5502                                                                                                                         rattlesnake antivenin
5503                                                                                                                               diphenhydramine
5504                                                                                                                                      fentanyl
5505                                                                                                                                      fentanyl
5506                                                                                                                                      tramadol
5507                                                                                                                  ivermectin, pyrantel pamoate
5508                                                                                                                  ivermectin, pyrantel pamoate
5509                                                                                                                  ivermectin, pyrantel pamoate
5510                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5511                                                                                                                  ivermectin, pyrantel pamoate
5512                                                                                                                                     carprofen
5513                                                                                                                  ivermectin, pyrantel pamoate
5514                                                                                                                                    cephalexin
5515                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5516                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5517                                                                                                                        acetaminophen, codeine
5518                                                                                                                                    amantadine
5519                                                                                                                                     carprofen
5520                                                                                                                                    cephalexin
5521                                                                                                                                    trilostane
5522                                                                                                                                     carprofen
5523                                                                                                                                    grapiprant
5524                                                                                                                                  multivitamin
5525                                                                                                                                       omega 3
5526                                                                                                                                dimenhydrinate
5527                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                                       triamcinolone acetonide
5530                                                                                                                                    prednisone
5531                                                                                                                               diphenhydramine
5532                                                                                                                                 dexamethasone
5533                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                                                  ivermectin, pyrantel pamoate
5535                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5536                                                                                                                                    prednisone
5537                                                                                                                       triamcinolone acetonide
5538                                                                                                            amoxicillin, clavulanate potassium
5539                                                                                                                            methylprednisolone
5540                                                                                                                                     carprofen
5541                                                                                                                  ivermectin, pyrantel pamoate
5542                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5543                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5544                                                                                                                            methylprednisolone
5545                                                                                                                  ivermectin, pyrantel pamoate
5546                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5547                                                                                                                                   oclacitinib
5548                                                                                                                                   oclacitinib
5549                                                                                                                                    fluoxetine
5550                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5551                                                                                                                  ivermectin, pyrantel pamoate
5552                                                                                                                  ivermectin, pyrantel pamoate
5553                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5554                                                                                                                                    cephalexin
5555                                                                                                                                   oclacitinib
5556                                                                                                                      fipronil, (s)-methoprene
5557                                                                                                                  ivermectin, pyrantel pamoate
5558                                                                                                                                     carprofen
5559                                                                                                                                   oclacitinib
5560                                                                                                                                       omega 3
5561                                                                                                                                   oclacitinib
5562                                                                                                            joint supplement (glucosamine hcl)
5563                                                                                                                                   oclacitinib
5564                                                                                                            joint supplement (glucosamine hcl)
5565                                                                                                                    milbemycin oxime, spinosad
5566                                                                                                                                  deltamethrin
5567                                                                                                                                  deltamethrin
5568                                                                                                                   lufenuron, milbemycin oxime
5569                                                                                                                                      tramadol
5570                                                                                                            amoxicillin, clavulanate potassium
5571                                                                                                                   lufenuron, milbemycin oxime
5572                                                                                                                                  deltamethrin
5573                                                                                                dexamethasone, neomycin sulfate, thiabendazole
5574                                                                                                                   lufenuron, milbemycin oxime
5575                                                                                                                                  deltamethrin
5576                                                                                                                   lufenuron, milbemycin oxime
5577                                                                                                                                  deltamethrin
5578                                                                                                                   lufenuron, milbemycin oxime
5579                                                                                                                          cefpodoxime proxetil
5580                                                                                                                          cefpodoxime proxetil
5581                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5582                                                                                                                                 metronidazole
5583                                                                                                                                  fenbendazole
5584                                                                                                                                     probiotic
5585                                                                                                                                 metronidazole
5586                                                                                                                                  fenbendazole
5587                                                                                                                                    cephalexin
5588                                                                                                                          prednisolone acetate
5589                                                                                                             betamethasone, gentamicin sulfate
5590                                                                                                                                  praziquantel
5591                                                                                                                                    ivermectin
5592                                                                                                                              pyrantel pamoate
5593                                                                                                                                   mebendazole
5594                                                                                                                                     lufenuron
5595                                                                                                                   lufenuron, milbemycin oxime
5596                                                                                                                              milbemycin oxime
5597                                                                                                                                     lufenuron
5598                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5599                                                                                                                            maropitant citrate
5600                                                                                                                   lufenuron, milbemycin oxime
5601                                                                                                                      fipronil, (s)-methoprene
5602                                                                                                                   lufenuron, milbemycin oxime
5603                                                                                                                      fipronil, (s)-methoprene
5604                                                                                                                   lufenuron, milbemycin oxime
5605                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5606                                                                                                                      fipronil, (s)-methoprene
5607                                                                                                                   lufenuron, milbemycin oxime
5608                                                                                                                      fipronil, (s)-methoprene
5609                                                                                                                   lufenuron, milbemycin oxime
5610                                                                                                                          cefpodoxime proxetil
5611                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5612                                                                                                                                 metronidazole
5613                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5614                                                                                                                            maropitant citrate
5615                                                                                                                                    sucralfate
5616                                                                                                                                    gabapentin
5617                                                                                                                                   mirtazapine
5618                                                                                                                                  capromorelin
5619                                                                                                                            maropitant citrate
5620                                                                                                                                     ofloxacin
5621                                                                                                                                    prednisone
5622                                                                                                                                   amoxicillin
5623                                                                                                                                 metronidazole
5624                                                                                                                                   simethicone
5625                                                                                                                                   simethicone
5626                                                                                                                  ivermectin, pyrantel pamoate
5627                                                                                                                  ivermectin, pyrantel pamoate
5628                                                                                                                                    afoxolaner
5629                                                                                                                  ivermectin, pyrantel pamoate
5630                                                                                                                                    afoxolaner
5631                                                                                                                                    ivermectin
5632                                                                                                                                    afoxolaner
5633                                                                                                                          cefpodoxime proxetil
5634                                                                                                                          cefpodoxime proxetil
5635                                                                                                                                     carprofen
5636                                                                                                                                    amlodipine
5637                                                                                                                              milbemycin oxime
5638                                                                                                                                      spinosad
5639                                                                                                                    milbemycin oxime, spinosad
5640                                                                                                                    milbemycin oxime, spinosad
5641                                                                                                                                    moxidectin
5642                                                                                                                                    moxidectin
5643                                                                                                                               dexmedetomidine
5644                                                                                                                                      propofol
5645                                                                                                                                      morphine
5646                                                                                                                                    moxidectin
5647                                                                                                                                    fluralaner
5648                                                                                                                              tylosin tartrate
5649                                                                                                                                     probiotic
5650                                                                                                                            maropitant citrate
5651                                                                                                                          digestive supplement
5652                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
5653                                                                                                                                    cephalexin
5654                                                                                                                                    cephalexin
5655                                                                                                                        dilute bleach solution
5656                                                                                                                                     mupirocin
5657                                                                                                                                 marbofloxacin
5658                                                                                                                                    famotidine
5659                                                                                                                         ampicillin, sulbactam
5660                                                                                                                                  enrofloxacin
5661                                                                                                                                   bethanechol
5662                                                                                                                         electrolyte injection
5663                                                                                                                                 marbofloxacin
5664                                                                                                                                    ampicillin
5665                                                                                                                          cefpodoxime proxetil
5666                                                                                                                                    cephalexin
5667                                                                                                                                   amoxicillin
5668                                                                                                                                    ivermectin
5669                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5670                                                                                                                                  multivitamin
5671                                                                                                                                   omega 3-6-9
5672                                                                                                                                  multivitamin
5673                                                                                                                               diphenhydramine
5674                                                                                                                                   hydroxyzine
5675                                                                                                                                    cetirizine
5676                                                                                                                                  multivitamin
5677                                                                                                                                  multivitamin
5678                                                                                                                      skin and coat supplement
5679                                                                                                                                   omega 3-6-9
5680                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5681                                                                                                                                    afoxolaner
5682                                                                                                                              milbemycin oxime
5683                                                                                                                                    pimobendan
5684                                                                                                                                    pimobendan
5685                                                                                                                                       taurine
5686                                                                                                                                    lokivetmab
5687                                                                                                                              pyrantel pamoate
5688                                                                                                                                    selamectin
5689                                                                                                                                    ivermectin
5690                                                                                                                                     carprofen
5691                                                                                                                                chlorphenamine
5692                                                                                                                  ivermectin, pyrantel pamoate
5693                                                                                                                                      propofol
5694                                                                                                                                    penicillin
5695                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5696                                                                                                                   lufenuron, milbemycin oxime
5697                                                                                                            fipronil, permethrin, pyriproxyfen
5698                                                                                                                   lufenuron, milbemycin oxime
5699                                                                                                                                    fluralaner
5700                                                                                                                   lufenuron, milbemycin oxime
5701                                                                                                                                    afoxolaner
5702                                                                                                                   lufenuron, milbemycin oxime
5703                                                                                                                  ivermectin, pyrantel pamoate
5704                                                                                                                                    afoxolaner
5705                                                                                                                   lufenuron, milbemycin oxime
5706                                                                                                                                    afoxolaner
5707                                                                                                                   lufenuron, milbemycin oxime
5708                                                                                                                                    afoxolaner
5709                                                                                                                   lufenuron, milbemycin oxime
5710                                                                                                                            maropitant citrate
5711                                                                                                                                  enrofloxacin
5712                                                                                                                                    lokivetmab
5713                                                                                                                                      spinosad
5714                                                                                                                              milbemycin oxime
5715                                                                                                                                  praziquantel
5716                                                                                                                              pyrantel pamoate
5717                                                                                                                                      febantel
5718                                                                                                                                 metronidazole
5719                                                                                                                                 metronidazole
5720                                                                                                                                  fenbendazole
5721                                                                                                                    milbemycin oxime, spinosad
5722                                                                                                                    milbemycin oxime, spinosad
5723                                                                                                                    milbemycin oxime, spinosad
5724                                                                                                                    milbemycin oxime, spinosad
5725                                                                                                                    milbemycin oxime, spinosad
5726                                                                                                                              milbemycin oxime
5727                                                                                                                                    fluralaner
5728                                                                                                                    milbemycin oxime, spinosad
5729                                                                                                mometasone furoate, orbifloxacin, posaconazole
5730                                                                                                                                    gabapentin
5731                                                                                                  florfenicol, mometasone furoate, terbinafine
5732                                                                                                                                     carprofen
5733                                                                                                                                    gabapentin
5734                                                                                                                                    gabapentin
5735                                                                                                                                       codeine
5736                                                                                                                                   bedinvetmab
5737                                                                                                                                 metronidazole
5738                                                                                                                                    sucralfate
5739                                                                                                                  ivermectin, pyrantel pamoate
5740                                                                                                                  ivermectin, pyrantel pamoate
5741                                                                                                                                    afoxolaner
5742                                                                                                                  ivermectin, pyrantel pamoate
5743                                                                                                                                    afoxolaner
5744                                                                                                                                    ivermectin
5745                                                                                                                  ivermectin, pyrantel pamoate
5746                                                                                                                      fipronil, (s)-methoprene
5747                                                                                                                  ivermectin, pyrantel pamoate
5748                                                                                                                                    afoxolaner
5749                                                                                                                                  enrofloxacin
5750                                                                                                                  ivermectin, pyrantel pamoate
5751                                                                                                                                    afoxolaner
5752                                                                                                                  ivermectin, pyrantel pamoate
5753                                                                                                                                    afoxolaner
5754                                                                                                                  ivermectin, pyrantel pamoate
5755                                                                                                                                    afoxolaner
5756                                                                                                                  ivermectin, pyrantel pamoate
5757                                                                                                                                    afoxolaner
5758                                                                                                                                  fenbendazole
5759                                                                                                                                    cephalexin
5760                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5761                                                                                                                   lufenuron, milbemycin oxime
5762                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5763                                                                                                                polysulfated glycosaminoglycan
5764                                                                                                                  ivermectin, pyrantel pamoate
5765                                                                                                                polysulfated glycosaminoglycan
5766                                                                                                                          cefpodoxime proxetil
5767                                                                                                                polysulfated glycosaminoglycan
5768                                                                                                                                    ivermectin
5769                                                                                                                  ivermectin, pyrantel pamoate
5770                                                                                                                polysulfated glycosaminoglycan
5771                                                                                                                              milbemycin oxime
5772                                                                                                                milbemycin oxime, praziquantel
5773                                                                                                                                  praziquantel
5774                                                                                                                                    cephalexin
5775                                                                                                                                     carprofen
5776                                                                                                            amoxicillin, clavulanate potassium
5777                                                                                                                              melanoma vaccine
5778                                                                                                                                    amantadine
5779                                                                                                                                     oxycodone
5780                                                                                                                                    gabapentin
5781                                                                                                                        acetaminophen, codeine
5782                                                                                                                                    amantadine
5783                                                                                                                        acetaminophen, codeine
5784                                                                                                                                     oxycodone
5785                                                                                                                                     carprofen
5786                                                                                                                                    ivermectin
5787                                                                                                            amoxicillin, clavulanate potassium
5788                                                                                                                                 metronidazole
5789                                                                                                                               diphenhydramine
5790                                                                                                                                   amoxicillin
5791                                                                                                               ear cleaner (epi-otic advanced)
5792                                                                                                                                      tramadol
5793                                                                                                                   lufenuron, milbemycin oxime
5794                                                                                                                    milbemycin oxime, spinosad
5795                                                                                                                                   doxycycline
5796                                                                                                                                   hydroxyzine
5797                                                                                                                                   amoxicillin
5798                                                                                                                          cefpodoxime proxetil
5799                                                                                                                                    sucralfate
5800                                                                                                                                   doxycycline
5801                                                                                                                                  cyclosporine
5802                                                                                                                                  ketoconazole
5803                                                                                                                                   oclacitinib
5804                                                                                                                              milbemycin oxime
5805                                                                                                                                   oclacitinib
5806                                                                                                                                   oclacitinib
5807                                                                                                                                     carprofen
5808                                                                                                                                    alprazolam
5809                                                                                                                              milbemycin oxime
5810                                                                                                                                      fipronil
5811                                                                                                                                   oclacitinib
5812                                                                                                                                    fluoxetine
5813                                                                                                                               dexmedetomidine
5814                                                                                                                              tylosin tartrate
5815                                                                                                                                   oclacitinib
5816                                                                                                                                    fluoxetine
5817                                                                                                                                   amoxicillin
5818                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5819                                                                                                                  ivermectin, pyrantel pamoate
5820                                                                                                                  ivermectin, pyrantel pamoate
5821                                                                                                                  ivermectin, pyrantel pamoate
5822                                                                                                                polysulfated glycosaminoglycan
5823                                                                                                                                     carprofen
5824                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5825                                                                                                                                     carprofen
5826                                                                                                                                      tramadol
5827                                                                                                                                      tramadol
5828                                                                                                                                     carprofen
5829                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5830                                                                                                                                    ivermectin
5831                                                                                                                                    ivermectin
5832                                                                                                                              pyrantel pamoate
5833                                                                                                                  ivermectin, pyrantel pamoate
5834                                                                                                                  ivermectin, pyrantel pamoate
5835                                                                                                                  ivermectin, pyrantel pamoate
5836                                                                                                                   lufenuron, milbemycin oxime
5837                                                                                                                                    cephalexin
5838                                                                                                                                    prednisone
5839                                                                                                                   lufenuron, milbemycin oxime
5840                                                                                                                   lufenuron, milbemycin oxime
5841                                                                                                                                     carprofen
5842                                                                                                                  ivermectin, pyrantel pamoate
5843                                                                                                                                   amoxicillin
5844                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5845                                                                                                                                  acepromazine
5846                                                                                                                          butorphanol tartrate
5847                                                                                                                                     carprofen
5848                                                                                                                                      ketamine
5849                                                                                                                                      diazepam
5850                                                                                                                                    isoflurane
5851                                                                                                                                    ivermectin
5852                                                                                                         dinotefuran, permethrin, pyriproxyfen
5853                                                                                                                                     carprofen
5854                                                                                                                                   doxycycline
5855                                                                                                                                     carprofen
5856                                                                                                                                   doxycycline
5857                                                                                            joint supplement (other), skin and coat supplement
5858                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5859                                                                                                            amoxicillin, clavulanate potassium
5860                                                                                                                      homatropine, hydrocodone
5861                                                                                                                  ivermectin, pyrantel pamoate
5862                                                                                                         dinotefuran, permethrin, pyriproxyfen
5863                                                                                                                                     carprofen
5864                                                                                                                                     carprofen
5865                                                                                                                                    ivermectin
5866                                                                                            joint supplement (other), skin and coat supplement
5867                                                                                                         dinotefuran, permethrin, pyriproxyfen
5868                                                                                                                                    ivermectin
5869                                                                                                                  ivermectin, pyrantel pamoate
5870                                                                                                                                   amoxicillin
5871                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5872                                                                                                                  ivermectin, pyrantel pamoate
5873                                                                                                                      fipronil, (s)-methoprene
5874                                                                                                                                  fenbendazole
5875                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5876                                                                                                                                  fenbendazole
5877                                                                                                      febantel, praziquantel, pyrantel pamoate
5878                                                                                                                                 metronidazole
5879                                                                                                                          cefpodoxime proxetil
5880                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5881                                                                                                                                     carprofen
5882                                                                                                                                    cephalexin
5883                                                                                                                                   hydroxyzine
5884                                                                                                         chlorhexidine gluconate, ketoconazole
5885                                                                                                                                   hydroxyzine
5886                                                                                                                                    prednisone
5887                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5888                                                                                                                                    cephalexin
5889                                                                                                                          cefpodoxime proxetil
5890                                                                                                                                    selamectin
5891                                                                                                                                     carprofen
5892                                                                                                                          cefpodoxime proxetil
5893                                                                                                                                   hydroxyzine
5894                                                                                                                               diphenhydramine
5895                                                                                                                                   oclacitinib
5896                                                                                                                                    fluralaner
5897                                                                                                                               diphenhydramine
5898                                                                                                           allergy immunotherapy - unspecified
5899                                                                                                                                   oclacitinib
5900                                                                                                             allergy immunotherapy - injection
5901                                                                                                                                    fluralaner
5902                                                                                                                                   oclacitinib
5903                                                                                                             allergy immunotherapy - injection
5904                                                                                                                                     deracoxib
5905                                                                                                                                    fluralaner
5906                                                                                                                                   oclacitinib
5907                                                                                                                                     deracoxib
5908                                                                                                                                    fluralaner
5909                                                                                                                                   oclacitinib
5910                                                                                                                                    prednisone
5911                                                                                                                                    gabapentin
5912                                                                                                                                     deracoxib
5913                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5914                                                                                                                                   oclacitinib
5915                                                                                                                                    prednisone
5916                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5917                                                                                                dexamethasone, neomycin sulfate, thiabendazole
5918                                                                                                                                     meloxicam
5919                                                                                                                                   fluconazole
5920                                                                                                                    milbemycin oxime, spinosad
5921                                                                                                                              sulfadimethoxine
5922                                                                                                                                    cephalexin
5923                                                                                                                                   amoxicillin
5924                                                                                                                                   hydroxyzine
5925                                                                                                                    milbemycin oxime, spinosad
5926                                                                                                                    milbemycin oxime, spinosad
5927                                                                                                                    milbemycin oxime, spinosad
5928                                                                                                                    milbemycin oxime, spinosad
5929                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
5930                                                                                                                  ivermectin, pyrantel pamoate
5931                                                                                                                                    fluralaner
5932                                                                                                                                  cyclosporine
5933                                                                                                                                    fluralaner
5934                                                                                                                  ivermectin, pyrantel pamoate
5935                                                                                                                          prednisolone acetate
5936                                                                                                                  ivermectin, pyrantel pamoate
5937                                                                                                                                    fluralaner
5938                                                                                                                          prednisolone acetate
5939                                                                                                                                  cyclosporine
5940                                                                                                                                   amoxicillin
5941                                                                                                                  ivermectin, pyrantel pamoate
5942                                                                                                                                    fluralaner
5943                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
5944                                                                                                                                   amoxicillin
5945                                                                                                   hydroquinone, mometasone furoate, tretinoin
5946                                                                                                                          cefpodoxime proxetil
5947                                                                                                                                   amoxicillin
5948                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
5949                                                                                                                                    gabapentin
5950                                                                                                                                     carprofen
5951                                                                                                                                 metronidazole
5952                                                                                                                                    furosemide
5953                                                                                                                            maropitant citrate
5954                                                                                                                          prednisolone acetate
5955                                                                                                            amoxicillin, clavulanate potassium
5956                                                                                                                                  cyclosporine
5957                                                                                                                                    gabapentin
5958                                                                                                                                     carprofen
5959                                                                                                                          prednisolone acetate
5960                                                                                                                                   bedinvetmab
5961                                                                                                                                       codeine
5962                                                                                                                                     carprofen
5963                                                                                                                   lufenuron, milbemycin oxime
5964                                                                                                                                    afoxolaner
5965                                                                                                                   lufenuron, milbemycin oxime
5966                                                                                                                   lufenuron, milbemycin oxime
5967                                                                                                                   lufenuron, milbemycin oxime
5968                                                                                                                   lufenuron, milbemycin oxime
5969                                                                                                                                     vitamin d
5970                                                                                                                          cefpodoxime proxetil
5971                                                                                                                                 metronidazole
5972                                                                                                                            maropitant citrate
5973                                                                                                                                    omeprazole
5974                                                                                                                                 metronidazole
5975                                                                                                                praziquantel, pyrantel pamoate
5976                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5977                                                                                                                                     carprofen
5978                                                                                                                                      tramadol
5979                                                                                                                                    cephalexin
5980                                                                                                                                      spinosad
5981                                                                                                        joint supplement (glucosamine hcl/msm)
5982                                                                                                                                      spinosad
5983                                                                                                                                     carprofen
5984                                                                                                                                   doxycycline
5985                                                                                                                                    fluralaner
5986                                                                                                                                     carprofen
5987                                                                                                                                     trazodone
5988                                                                                                                                      spinosad
5989                                                                                                                                     carprofen
5990                                                                                                                                    cephalexin
5991                                                                                                                      fipronil, (s)-methoprene
5992                                                                                                                  ivermectin, pyrantel pamoate
5993                                                                                                                  ivermectin, pyrantel pamoate
5994                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
5995                                                                                                                      fipronil, (s)-methoprene
5996                                                                                                                  ivermectin, pyrantel pamoate
5997                                                                                                                                    afoxolaner
5998                                                                                                                  ivermectin, pyrantel pamoate
5999                                                                                                                          cefpodoxime proxetil
6000                                                                                                                   lufenuron, milbemycin oxime
6001                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6002                                                                                                                    imidacloprid, pyriproxyfen
6003                                                                                                                   lufenuron, milbemycin oxime
6004                                                                                                                    imidacloprid, pyriproxyfen
6005                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6006                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
6007                                                                                                                                     firocoxib
6008                                                                                                             betamethasone, gentamicin sulfate
6009                                                                                                                                   oclacitinib
6010                                                                                                                                    cephalexin
6011  cassia bark, colloidal silicon dioxide, clove, eucalyptus, isopropyl myristrate, lanolin, mineral oil, origanum, vitamin e, white petrolatum
6012                                                                                                                                    afoxolaner
6013                                                                                                                                   clindamycin
6014                                                                                                                   lufenuron, milbemycin oxime
6015                                                                                                                                    afoxolaner
6016                                                                                                                                    afoxolaner
6017                                                                                                                   lufenuron, milbemycin oxime
6018                                                                                                                                    cephalexin
6019                                                                                                                                    cephalexin
6020                                                                                                                                     carprofen
6021                                                                                                                  ivermectin, pyrantel pamoate
6022                                                                                                                  ivermectin, pyrantel pamoate
6023                                                                                                                  ivermectin, pyrantel pamoate
6024                                                                                                                                    ivermectin
6025                                                                                                                  ivermectin, pyrantel pamoate
6026                                                                                                                  ivermectin, pyrantel pamoate
6027                                                                                                                  ivermectin, pyrantel pamoate
6028                                                                                                                                 metronidazole
6029                                                                                                                                  capromorelin
6030                                                                                                                                    gabapentin
6031                                                                                                                                     carprofen
6032                                                                                                                                    cephalexin
6033                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6034                                                                                                                                    ivermectin
6035                                                                                                                                    prednisone
6036                                                                                                                    milbemycin oxime, spinosad
6037                                                                                                                  ivermectin, pyrantel pamoate
6038                                                                                                                   lufenuron, milbemycin oxime
6039                                                                                                                  ivermectin, pyrantel pamoate
6040                                                                                                                  ivermectin, pyrantel pamoate
6041                                                                                                                      fipronil, (s)-methoprene
6042                                                                                                                      fipronil, (s)-methoprene
6043                                                                                                                  ivermectin, pyrantel pamoate
6044                                                                                                                                   oclacitinib
6045                                                                                                                          cefpodoxime proxetil
6046                                                                                                             betamethasone, gentamicin sulfate
6047                                                                                                                   lufenuron, milbemycin oxime
6048                                                                                                                      fipronil, (s)-methoprene
6049                                                                                                                      fipronil, (s)-methoprene
6050                                                                                                                      fipronil, (s)-methoprene
6051                                                                                                                                    cephalexin
6052                                                                                                                                  enrofloxacin
6053                                                                                                                                     meloxicam
6054                                                                                                                                      tramadol
6055                                                                                                                      fipronil, (s)-methoprene
6056                                                                                                                              milbemycin oxime
6057                                                                                                                              milbemycin oxime
6058                                                                                                                      fipronil, (s)-methoprene
6059                                                                                                                  ivermectin, pyrantel pamoate
6060                                                                                                                                    afoxolaner
6061                                                                                                                                    lokivetmab
6062                                                                                                                                    cephalexin
6063                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6064                                                                                                                                     deracoxib
6065                                                                                                                            maropitant citrate
6066                                                                                                                                    cephalexin
6067                                                                                                                                    prednisone
6068                                                                                                                  ivermectin, pyrantel pamoate
6069                                                                                                         dinotefuran, permethrin, pyriproxyfen
6070                                                                                                                               diphenhydramine
6071                                                                                                                                    ivermectin
6072                                                                                                                      flumethrin, imidacloprid
6073                                                                                                         dinotefuran, permethrin, pyriproxyfen
6074                                                                                                             betamethasone, gentamicin sulfate
6075                                                                                                                                   amoxicillin
6076                                                                                                                      flumethrin, imidacloprid
6077                                                                                                                                     firocoxib
6078                                                                                                                      flumethrin, imidacloprid
6079                                                                                                                                 metronidazole
6080                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6081                                                                                                                                    cephalexin
6082                                                                                                                                     carprofen
6083                                                                                                                                   amoxicillin
6084                                                                                                                                     carprofen
6085                                                                                                                                     carprofen
6086                                                                                                                    milbemycin oxime, spinosad
6087                                                                                                                    milbemycin oxime, spinosad
6088                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
6089                                                                                                                                  acepromazine
6090                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6091                                                                                                                                     carprofen
6092                                                                                                                               apomorphine hcl
6093                                                                                                     lufenuron, milbemycin oxime, praziquantel
6094                                                                                                                                        barium
6095                                                                                                             betamethasone, gentamicin sulfate
6096                                                                                                                                    prednisone
6097                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6098                                                                                                                               apomorphine hcl
6099                                                                                                                            maropitant citrate
6100                                                                                                                   lufenuron, milbemycin oxime
6101                                                                                                                   lufenuron, milbemycin oxime
6102                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6103                                                                                                                                    diclofenac
6104                                                                                                                   lufenuron, milbemycin oxime
6105                                                                                                                                     sarolaner
6106                                                                                                                                    diclofenac
6107                                                                                                                                     sarolaner
6108                                                                                                                                     carprofen
6109                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6110                                                                                                                          cefpodoxime proxetil
6111                                                                                                                                     cefazolin
6112                                                                                                                                       codeine
6113                                                                                                                                    gabapentin
6114                                                                                                                                    omeprazole
6115                                                                                                                            maropitant citrate
6116                                                                                                                                    sucralfate
6117                                                                                                                                metoclopramide
6118                                                                                                                            potassium chloride
6119                                                                                                                                 buprenorphine
6120                                                                                                                                  pantoprazole
6121                                                                                                                                      propofol
6122                                                                                                                                     midazolam
6123                                                                                                                          butorphanol tartrate
6124                                                                                                                                     carprofen
6125                                                                                                                                     carprofen
6126                                                                                                  florfenicol, mometasone furoate, terbinafine
6127                                                                                                                            maropitant citrate
6128                                                                                                                                     carprofen
6129                                                                                                                  ivermectin, pyrantel pamoate
6130                                                                                                                                    afoxolaner
6131                                                                                                                                   doxycycline
6132                                                                                                                  ivermectin, pyrantel pamoate
6133                                                                                                                                    afoxolaner
6134                                                                                                                              milbemycin oxime
6135                                                                                                                                     sarolaner
6136                                                                                                                              milbemycin oxime
6137                                                                                                                                     sarolaner
6138                                                                                                                                   oclacitinib
6139                                                                                                                              milbemycin oxime
6140                                                                                                                                     sarolaner
6141                                                                                                                                    lokivetmab
6142                                                                                                                          cefpodoxime proxetil
6143                                                                                                                                   clindamycin
6144                                                                                                                                    gabapentin
6145                                                                                                                                     carprofen
6146                                                                                                                                    prednisone
6147                                                                                                                    milbemycin oxime, spinosad
6148                                                                                                                    milbemycin oxime, spinosad
6149                                                                                                                    milbemycin oxime, spinosad
6150                                                                                                                    milbemycin oxime, spinosad
6151                                                                                                                           unspecified vaccine
6152                                                                                                                   lufenuron, milbemycin oxime
6153                                                                                                                                    cephalexin
6154                                                                                                                                    prednisone
6155                                                                                                                                    prednisone
6156                                                                                                                                    prednisone
6157                                                                                                                                    prednisone
6158                                                                                                            chlorhexidine gluconate, ophytrium
6159                                                                                                                                    nitenpyram
6160                                                                                                                      fipronil, (s)-methoprene
6161                                                                                                                   lufenuron, milbemycin oxime
6162                                                                                                                  ivermectin, pyrantel pamoate
6163                                                                                                                                    afoxolaner
6164                                                                                                                            miconazole nitrate
6165                                                                                                                            maropitant citrate
6166                                                                                                                                    prednisone
6167                                                                                                                          cefpodoxime proxetil
6168                                                                                                                                 metronidazole
6169                                                                                                                                    ivermectin
6170                                                                                                                              pyrantel pamoate
6171                                                                                                                              pyrantel pamoate
6172                                                                                                                                 metronidazole
6173                                                                                                                              pyrantel pamoate
6174                                                                                                                                  fenbendazole
6175                                                                                                                                 metronidazole
6176                                                                                                                              pyrantel pamoate
6177                                                                                                                                    selamectin
6178                                                                                                                                  fenbendazole
6179                                                                                                                              pyrantel pamoate
6180                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6181                                                                                                                                      tramadol
6182                                                                                                                              pyrantel pamoate
6183                                                                                                                                 metronidazole
6184                                                                                                                                    cephalexin
6185                                                                                                                                    ivermectin
6186                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
6187                                                                                                                                    afoxolaner
6188                                                                                                         chlorhexidine gluconate, ketoconazole
6189                                                                                                                               diphenhydramine
6190                                                                                                                  ivermectin, pyrantel pamoate
6191                                                                                                                            maropitant citrate
6192                                                                                                                                    famotidine
6193                                                                                                                                     cefazolin
6194                                                                                                                                    cephalexin
6195                                                                                                                                     carprofen
6196                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6197                                                                                                                  ivermectin, pyrantel pamoate
6198                                                                                                                                    afoxolaner
6199                                                                                                                               diphenhydramine
6200                                                                                                                                     sarolaner
6201                                                                                                                  ivermectin, pyrantel pamoate
6202                                                                                                                                    afoxolaner
6203                                                                                                                                   oclacitinib
6204                                                                                                         chlorhexidine gluconate, ketoconazole
6205                                                                                                                                  ketoconazole
6206                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6207                                                                                                         chlorhexidine gluconate, ketoconazole
6208                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6209                                                                                                                milbemycin oxime, praziquantel
6210                                                                                                                                     sarolaner
6211                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6212                                                                                                                            maropitant citrate
6213                                                                                                                                    famotidine
6214                                                                                                                                     cefovecin
6215                                                                                                                                     pramoxine
6216                                                                                                                                    lokivetmab
6217                                                                                                  florfenicol, mometasone furoate, terbinafine
6218                                                                                                                                 laser therapy
6219                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6220                                                                                                                               diphenhydramine
6221                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
6222                                                                                                                                     carprofen
6223                                                                                                                                      tramadol
6224                                                                                                                              milbemycin oxime
6225                                                                                                                                     sarolaner
6226                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6227                                                                                                                                    lokivetmab
6228                                                                                                                                    cephalexin
6229                                                                                                  florfenicol, mometasone furoate, terbinafine
6230                                                                                                                                     cefovecin
6231                                                                                                                milbemycin oxime, praziquantel
6232                                                                                                                                     sarolaner
6233                                                                                                                                    lokivetmab
6234                                                                                                         chlorhexidine gluconate, ketoconazole
6235                                                                                                         chlorhexidine gluconate, ketoconazole
6236                                                                                                  florfenicol, mometasone furoate, terbinafine
6237                                                                                                                                     carprofen
6238                                                                                                                                     cefovecin
6239                                                                                                                                     cefovecin
6240                                                                                                            amoxicillin, clavulanate potassium
6241                                                                                                                                  enrofloxacin
6242                                                                                                                polysulfated glycosaminoglycan
6243                                                                                                                                    gabapentin
6244                                                                                                  florfenicol, mometasone furoate, terbinafine
6245                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6246                                                                                                                                  fenbendazole
6247                                                                                                                                  capromorelin
6248                                                                                                                            maropitant citrate
6249                                                                                                                                   mirtazapine
6250                                                                                                                                     carprofen
6251                                                                                                                                    grapiprant
6252                                                                                                                                    ivermectin
6253                                                                                                                                 metronidazole
6254                                                                                                                                    ivermectin
6255                                                                                                                          cefpodoxime proxetil
6256                                                                                                             trimeprazine tartrate, prednisone
6257                                                                                                                                    selamectin
6258                                                                                                                  ivermectin, pyrantel pamoate
6259                                                                                                                                  cyclosporine
6260                                                                                                                                 dexamethasone
6261                                                                                                                                  cyclosporine
6262                                                                                                                                    ivermectin
6263                                                                                                                                    afoxolaner
6264                                                                                                                                  cyclosporine
6265                                                                                                                                   doxycycline
6266                                                                                                       betamethasone, florfenicol, terbinafine
6267                                                                                                                ketoconazole, phytosphingosine
6268                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6269                                                                                                                               dexmedetomidine
6270                                                                                                                          cefpodoxime proxetil
6271                                                                                                                                    gabapentin
6272                                                                                                                                     carprofen
6273                                                                                                                          cefpodoxime proxetil
6274                                                                                                                                    prednisone
6275                                                                                                                           silver sulfadiazine
6276                                                                                                                                     carprofen
6277                                                                                                            joint supplement (glucosamine hcl)
6278                                                                                                        joint supplement (chondroitin sulfate)
6279                                                                                                                        joint supplement (msm)
6280                                                                                                                                     manganese
6281                                                                                                                                       omega 3
6282                                                                                                                  ivermectin, pyrantel pamoate
6283                                                                                                                        indoxacarb, permethrin
6284                                                                                                                                       omega 3
6285                                                                                                                                       omega 3
6286                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6287                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6288                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6289                                                                                                                                       omega 3
6290                                                                                                                                       omega 3
6291                                                                                                            joint supplement (glucosamine hcl)
6292                                                                                                        joint supplement (chondroitin sulfate)
6293                                                                                                                                    afoxolaner
6294                                                                                                                                 metronidazole
6295                                                                                                                                   amoxicillin
6296                                                                                                                              tylosin tartrate
6297                                                                                                                                     vitamin b
6298                                                                                                                  ivermectin, pyrantel pamoate
6299                                                                                                                                     carprofen
6300                                                                                                                                      tramadol
6301                                                                                                                                    ivermectin
6302                                                                                                                                    ivermectin
6303                                                                                                                                   oclacitinib
6304                                                                                                                                     vitamin b
6305                                                                                                                                   oclacitinib
6306                                                                                                                                  enrofloxacin
6307                                                                                                            amoxicillin, clavulanate potassium
6308                                                                                                                                     vitamin b
6309                                                                                                                              tylosin tartrate
6310                                                                                                                                     vitamin b
6311                                                                                                                                    lokivetmab
6312                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
6313                                                                                                                                    cephalexin
6314                                                                                                                              tylosin tartrate
6315                                                                                                                                     vitamin b
6316                                                                                                                                    cephalexin
6317                                                                                                                              tylosin tartrate
6318                                                                                                                                 levetiracetam
6319                                                                                                         chlorhexidine gluconate, ketoconazole
6320                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6321                                                                                                                                     carprofen
6322                                                                                                                                    cephalexin
6323                                                                                                                                     vitamin b
6324                                                                                                                                 levetiracetam
6325                                                                                                                   lufenuron, milbemycin oxime
6326                                                                                                         dinotefuran, permethrin, pyriproxyfen
6327                                                                                                                                    ivermectin
6328                                                                                                        joint supplement (glucosamine hcl/msm)
6329                                                                                                                   lufenuron, milbemycin oxime
6330                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6331                                                                                                                   lufenuron, milbemycin oxime
6332                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6333                                                                                                                      fipronil, (s)-methoprene
6334                                                                                                                  ivermectin, pyrantel pamoate
6335                                                                                                                                   hydroxyzine
6336                                                                                                                                     cefovecin
6337                                                                                                    toothpaste/dental health solution or chews
6338                                                                                                                                     carprofen
6339                                                                                                                            maropitant citrate
6340                                                                                                                                    famotidine
6341                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6342                                                                                                                      fipronil, (s)-methoprene
6343                                                                                                                                    ivermectin
6344                                                                                                                                   hydroxyzine
6345                                                                                                                                     carprofen
6346                                                                                                                                     carprofen
6347                                                                                                                          cefpodoxime proxetil
6348                                                                                                            amoxicillin, clavulanate potassium
6349                                                                                                                                   hydroxyzine
6350                                                                                                             betamethasone, gentamicin sulfate
6351                                                                                                                                     carprofen
6352                                                                                                                                     carprofen
6353                                                                                                                                    ivermectin
6354                                                                                                        cyphenothrin, fipronil, (s)-methoprene
6355                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6356                                                                                                                                   hydroxyzine
6357                                                                                                                          cefpodoxime proxetil
6358                                                                                                                       chlorhexidine gluconate
6359                                                                                                                          cefpodoxime proxetil
6360                                                                                                                          cefpodoxime proxetil
6361                                                                                                                  ivermectin, pyrantel pamoate
6362                                                                                                                      fipronil, (s)-methoprene
6363                                                                                                                          cefpodoxime proxetil
6364                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6365                                                                                                                  ivermectin, pyrantel pamoate
6366                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
6367                                                                                                    toothpaste/dental health solution or chews
6368                                                                                                                                    fluralaner
6369                                                                                                                  ivermectin, pyrantel pamoate
6370                                                                                                                                   hydroxyzine
6371                                                                                                                                    fluralaner
6372                                                                                                                                     carprofen
6373                                                                                                                                    fluralaner
6374                                                                                                                                     carprofen
6375                                                                                                                          cefpodoxime proxetil
6376                                                                                                                                  enrofloxacin
6377                                                                                                                                    fluralaner
6378                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6379                                                                                                                  ivermectin, pyrantel pamoate
6380                                                                                                                                    fluralaner
6381                                                                                                                  ivermectin, pyrantel pamoate
6382                                                                                                                    milbemycin oxime, spinosad
6383                                                                                                                  ivermectin, pyrantel pamoate
6384                                                                                                                   lufenuron, milbemycin oxime
6385                                                                                                                                   clindamycin
6386                                                                                                                                     meloxicam
6387                                                                                                                                    diclofenac
6388                                                                                                                                    diclofenac
6389                                                                                                                       triamcinolone acetonide
6390                                                                                                                                   doxycycline
6391                                                                                                                  ivermectin, pyrantel pamoate
6392                                                                                                                  ivermectin, pyrantel pamoate
6393                                                                                                                                 metronidazole
6394                                                                                                                            miconazole nitrate
6395                                                                                                            fipronil, permethrin, pyriproxyfen
6396                                                                                                                                     carprofen
6397                                                                                                                                      tramadol
6398                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6399                                                                                                                            miconazole nitrate
6400                                                                                                                                    sucralfate
6401                                                                                                                  ivermectin, pyrantel pamoate
6402                                                                                                                                    famotidine
6403                                                                                                                                    sucralfate
6404                                                                                                                  ivermectin, pyrantel pamoate
6405                                                                                                                      fipronil, (s)-methoprene
6406                                                                                                                      flumethrin, imidacloprid
6407                                                                                                                  ivermectin, pyrantel pamoate
6408                                                                                                                                    afoxolaner
6409                                                                                                                                 dexamethasone
6410                                                                                                                                    cephalexin
6411                                                                                             chloroxylenol, salicylic acid, sodium thiosulfate
6412                                                                                                 dexamethasone, ketoconazole, phytosphingosine
6413                                                                                                                                    ivermectin
6414                                                                                                                                    afoxolaner
6415                                                                                                                  ivermectin, pyrantel pamoate
6416                                                                                                                                     sarolaner
6417                                                                                                              phytosphingosine, salicylic acid
6418                                                                                                                                     carprofen
6419                                                                                                                                     trazodone
6420                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6421                                                                                                                                    gabapentin
6422                                                                                                                          cefpodoxime proxetil
6423                                                                                                                                    gabapentin
6424                                                                                                                  ivermectin, pyrantel pamoate
6425                                                                                                                                     lotilaner
6426                                                                                                                                    cephalexin
6427                                                                                                                                   oclacitinib
6428                                                                                                  florfenicol, mometasone furoate, terbinafine
6429                                                                                                                                    gabapentin
6430                                                                                                                                     carprofen
6431                                                                                                                                   doxycycline
6432                                                                                                                                    gabapentin
6433                                                                                                                                     carprofen
6434                                                                                                                                     cefazolin
6435                                                                                                                                     carprofen
6436                                                                                                                                     carprofen
6437                                                                                                                  ivermectin, pyrantel pamoate
6438                                                                                                                                       omega 3
6439                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6440                                                                                                                  ivermectin, pyrantel pamoate
6441                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6442                                                                                                                                       omega 3
6443                                                                                                                    imidacloprid, pyriproxyfen
6444                                                                                                                  ivermectin, pyrantel pamoate
6445                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6446                                                                                                                                       omega 3
6447                                                                                                                    cardiac support supplement
6448                                                                                                                  ivermectin, pyrantel pamoate
6449                                                                                                                                    afoxolaner
6450                                                                                                                                   oclacitinib
6451                                                                                                mometasone furoate, orbifloxacin, posaconazole
6452                                                                                                                        unspecified supplement
6453                                                                                                                                     probiotic
6454                                                                                                                  ivermectin, pyrantel pamoate
6455                                                                                                                                    afoxolaner
6456                                                                                                                                   oclacitinib
6457                                                                                                                                     probiotic
6458                                                                                                                                      flaxseed
6459                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6460                                                                                                                                   oclacitinib
6461                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6462                                                                                                                                   oclacitinib
6463                                                                                                                                 metronidazole
6464                                                                                                                            maropitant citrate
6465                                                                                                                                    gabapentin
6466                                                                                                                                     meloxicam
6467                                                                                                                                      tramadol
6468                                                                                                                                    amantadine
6469                                                                                                                                   clindamycin
6470                                                                                                                                 metronidazole
6471                                                                                                                            maropitant citrate
6472                                                                                                                                 ku shen si wu
6473                                                                                                                  ivermectin, pyrantel pamoate
6474                                                                                                                  ivermectin, pyrantel pamoate
6475                                                                                                                                    fluralaner
6476                                                                                                                            maropitant citrate
6477                                                                                                                                    famotidine
6478                                                                                                                  ivermectin, pyrantel pamoate
6479                                                                                                                                    fluralaner
6480                                                                                                                                 ciprofloxacin
6481                                                                                                                            maropitant citrate
6482                                                                                                                  ivermectin, pyrantel pamoate
6483                                                                                                                                    fluralaner
6484                                                                                                                                    fluralaner
6485                                                                                                                                    fluralaner
6486                                                                                                                milbemycin oxime, praziquantel
6487                                                                                                                                     carprofen
6488                                                                                                                                     carprofen
6489                                                                                                                                    fluralaner
6490                                                                                                                                     carprofen
6491                                                                                                                                    afoxolaner
6492                                                                                                                  ivermectin, pyrantel pamoate
6493                                                                                                      febantel, praziquantel, pyrantel pamoate
6494                                                                                                                                   hydroxyzine
6495                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6496                                                                                                                                    ivermectin
6497                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6498                                                                                                                               apomorphine hcl
6499                                                                                                                  ivermectin, pyrantel pamoate
6500                                                                                                                                     sarolaner
6501                                                                                                                                    gabapentin
6502                                                                                                                                      tramadol
6503                                                                                                                                    grapiprant
6504                                                                                                                                    grapiprant
6505                                                                                                                                   amoxicillin
6506                                                                                                                                   amoxicillin
6507                                                                                                                                 ciprofloxacin
6508                                                                                                                                   amoxicillin
6509                                                                                                                                 levothyroxine
6510                                                                                                                   lufenuron, milbemycin oxime
6511                                                                                                                      fipronil, (s)-methoprene
6512                                                                                                                                 levothyroxine
6513                                                                                                                   lufenuron, milbemycin oxime
6514                                                                                                                      fipronil, (s)-methoprene
6515                                                                                                                                 levothyroxine
6516                                                                                                                   lufenuron, milbemycin oxime
6517                                                                                                                      fipronil, (s)-methoprene
6518                                                                                                                   lufenuron, milbemycin oxime
6519                                                                                                                                    prednisone
6520                                                                                                                                    cephalexin
6521                                                                                                           ear cleaner (zymox), hydrocortisone
6522                                                                                                                   lufenuron, milbemycin oxime
6523                                                                                                                                    afoxolaner
6524                                                                                                                                 levothyroxine
6525                                                                                                                                    prednisone
6526                                                                                                                                    cephalexin
6527                                                                                                                   lufenuron, milbemycin oxime
6528                                                                                                                                    afoxolaner
6529                                                                                                                                 levothyroxine
6530                                                                                                                                     enalapril
6531                                                                                                                          cefpodoxime proxetil
6532                                                                                                                                     enalapril
6533                                                                                                                                 levothyroxine
6534                                                                                                                                   oclacitinib
6535                                                                                                                                    prednisone
6536                                                                                                                                     enalapril
6537                                                                                                                                 levothyroxine
6538                                                                                                                                     enalapril
6539                                                                                                                                 levothyroxine
6540                                                                                                                            maropitant citrate
6541                                                                                                                                     thyroxine
6542                                                                                                                                     enalapril
6543                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6544                                                                                                                          cefpodoxime proxetil
6545                                                                                                                                     carprofen
6546                                                                                                                                metoclopramide
6547                                                                                                                                   doxycycline
6548                                                                                                                                    sucralfate
6549                                                                                                                                    prednisone
6550                                                                                                                            maropitant citrate
6551                                                                                                                            maropitant citrate
6552                                                                                                                                 metronidazole
6553                                                                                                                   lufenuron, milbemycin oxime
6554                                                                                                                                    afoxolaner
6555                                                                                                                   lufenuron, milbemycin oxime
6556                                                                                                                                 metronidazole
6557                                                                                                                                  fenbendazole
6558                                                                                                                   lufenuron, milbemycin oxime
6559                                                                                                                                 metronidazole
6560                                                                                                                          cefpodoxime proxetil
6561                                                                                                                                 metronidazole
6562                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6563                                                                                                                              milbemycin oxime
6564                                                                                                                                      spinosad
6565                                                                                                                  ivermectin, pyrantel pamoate
6566                                                                                                                  ivermectin, pyrantel pamoate
6567                                                                                                                                    ivermectin
6568                                                                                                                                    ivermectin
6569                                                                                                                                    ivermectin
6570                                                                                                                      fipronil, (s)-methoprene
6571                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6572                                                                                                                  ivermectin, pyrantel pamoate
6573                                                                                                                      fipronil, (s)-methoprene
6574                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6575                                                                                                                  ivermectin, pyrantel pamoate
6576                                                                                                                                    afoxolaner
6577                                                                                                                                    grapiprant
6578                                                                                                                          cefpodoxime proxetil
6579                                                                                                                                    fluralaner
6580                                                                                                                  ivermectin, pyrantel pamoate
6581                                                                                                                  ivermectin, pyrantel pamoate
6582                                                                                                                  ivermectin, pyrantel pamoate
6583                                                                                                                              pyrantel pamoate
6584                                                                                                                              milbemycin oxime
6585                                                                                                                                   fluconazole
6586                                                                                                                              milbemycin oxime
6587                                                                                                                                   fluconazole
6588                                                                                                                                   fluconazole
6589                                                                                                                              milbemycin oxime
6590                                                                                                                                   fluconazole
6591                                                                                                                                    omeprazole
6592                                                                                                                                   fluconazole
6593                                                                                                                                  acepromazine
6594                                                                                                                   lufenuron, milbemycin oxime
6595                                                                                                            amoxicillin, clavulanate potassium
6596                                                                                                                                      tramadol
6597                                                                                                                          cefpodoxime proxetil
6598                                                                                                                                     carprofen
6599                                                                                                                                     carprofen
6600                                                                                                                          cefpodoxime proxetil
6601                                                                                                                                      tramadol
6602                                                                                                                   lufenuron, milbemycin oxime
6603                                                                                                                                    cephalexin
6604                                                                                                                                    prednisone
6605                                                                                                                                 metronidazole
6606                                                                                                                  ivermectin, pyrantel pamoate
6607                                                                                                                                     carprofen
6608                                                                                                                  ivermectin, pyrantel pamoate
6609                                                                                                                                 metronidazole
6610                                                                                                                  ivermectin, pyrantel pamoate
6611                                                                                                                  ivermectin, pyrantel pamoate
6612                                                                                                                              milbemycin oxime
6613                                                                                                                                     carprofen
6614                                                                                                                          cefpodoxime proxetil
6615                                                                                                                                      tramadol
6616                                                                                                                                   amoxicillin
6617                                                                                                                                 metronidazole
6618                                                                                                                                     carprofen
6619                                                                                                                                   bedinvetmab
6620                                                                                                                                     carprofen
6621                                                                                                            joint supplement (glucosamine hcl)
6622                                                                                                            joint supplement (glucosamine hcl)
6623                                                                                                                                    famotidine
6624                                                                                                                                    famotidine
6625                                                                                                                              milbemycin oxime
6626                                                                                                                                    famotidine
6627                                                                                                                                    famotidine
6628                                                                                                                                    famotidine
6629                                                                                                                                    cephalexin
6630                                                                                                                                     carprofen
6631                                                                                                                                    lokivetmab
6632                                                                                                                                    lokivetmab
6633                                                                                                                  ivermectin, pyrantel pamoate
6634                                                                                                                                     vitamin c
6635                                                                                                                              puppy supplement
6636                                                                                                                   lufenuron, milbemycin oxime
6637                                                                                                                                     firocoxib
6638                                                                                                                                     vitamin c
6639                                                                                                                   lufenuron, milbemycin oxime
6640                                                                                                                                     probiotic
6641                                                                                                                                 metronidazole
6642                                                                                                                                 metronidazole
6643                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
6644                                                                                                                   lufenuron, milbemycin oxime
6645                                                                                                                   lufenuron, milbemycin oxime
6646                                                                                                                   lufenuron, milbemycin oxime
6647                                                                                                                   lufenuron, milbemycin oxime
6648                                                                                                                                     sarolaner
6649                                                                                                                                    ivermectin
6650                                                                                                             betamethasone, gentamicin sulfate
6651                                                                                                                                 metronidazole
6652                                                                                                                              milbemycin oxime
6653                                                                                                                                    cephalexin
6654                                                                                                                milbemycin oxime, praziquantel
6655                                                                                                                  ivermectin, pyrantel pamoate
6656                                                                                                            amoxicillin, clavulanate potassium
6657                                                                                                                  ivermectin, pyrantel pamoate
6658                                                                                                                  ivermectin, pyrantel pamoate
6659                                                                                                                                    cephalexin
6660                                                                                                                                  enrofloxacin
6661                                                                                                                                     carprofen
6662                                                                                                                  ivermectin, pyrantel pamoate
6663                                                                                                                  ivermectin, pyrantel pamoate
6664                                                                                                                  ivermectin, pyrantel pamoate
6665                                                                                                                      urinary tract supplement
6666                                                                                                                                     lomustine
6667                                                                                                                                    prednisone
6668                                                                                                                                    ivermectin
6669                                                                                                                              pyrantel pamoate
6670                                                                                                                   lufenuron, milbemycin oxime
6671                                                                                                                                 metronidazole
6672                                                                                                                                 metronidazole
6673                                                                                                                                     carprofen
6674                                                                                                                  ivermectin, pyrantel pamoate
6675                                                                                                                  ivermectin, pyrantel pamoate
6676                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6677                                                                                                                                 marbofloxacin
6678                                                                                                                            maropitant citrate
6679                                                                                                                                     carprofen
6680                                                                                                                      imidacloprid, moxidectin
6681                                                                                                            amoxicillin, clavulanate potassium
6682                                                                                                                                     carprofen
6683                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6684                                                                                                            amoxicillin, clavulanate potassium
6685                                                                                                                                       omega 3
6686                                                                                                                          digestive supplement
6687                                                                                                                                    ivermectin
6688                                                                                                                      fipronil, (s)-methoprene
6689                                                                                                                                  enrofloxacin
6690                                                                                                                                 dexamethasone
6691                                                                                                                               diphenhydramine
6692                                                                                                                                       omega 3
6693                                                                                                                                    ivermectin
6694                                                                                                             trimeprazine tartrate, prednisone
6695                                                                                                             trimeprazine tartrate, prednisone
6696                                                                                                                                    ivermectin
6697                                                                                                                      fipronil, (s)-methoprene
6698                                                                                                                  ivermectin, pyrantel pamoate
6699                                                                                                                                       omega 3
6700                                                                                                                            calming supplement
6701                                                                                                                          cefpodoxime proxetil
6702                                                                                                                                    ivermectin
6703                                                                                                                      fipronil, (s)-methoprene
6704                                                                                                                            calming supplement
6705                                                                                                                                    famotidine
6706                                                                                                                          digestive supplement
6707                                                                                                                          cefpodoxime proxetil
6708                                                                                                                                   doxycycline
6709                                                                                                                                   hydrocodone
6710                                                                                                                                     midazolam
6711                                                                                                                                      ketamine
6712                                                                                                                                 hydromorphone
6713                                                                                                            amoxicillin, clavulanate potassium
6714                                                                                                                                      diazepam
6715                                                                                                                   lufenuron, milbemycin oxime
6716                                                                                                                            calming supplement
6717                                                                                                                                   shen calmer
6718                                                                                                                                    ampicillin
6719                                                                                                                            maropitant citrate
6720                                                                                                                         tiletamine, zolazepam
6721                                                                                                                                    cephalexin
6722                                                                                                                                 metronidazole
6723                                                                                                                                     carprofen
6724                                                                                                                                    prednisone
6725                                                                                                                                     lomustine
6726                                                                                                                                     vitamin b
6727                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6728                                                                                                                  ivermectin, pyrantel pamoate
6729                                                                                                                                     carprofen
6730                                                                                                                                      tramadol
6731                                                                                                                  ivermectin, pyrantel pamoate
6732                                                                                                                                    fluoxetine
6733                                                                                                                  ivermectin, pyrantel pamoate
6734                                                                                                                  ivermectin, pyrantel pamoate
6735                                                                                                                  ivermectin, pyrantel pamoate
6736                                                                                                                                      tramadol
6737                                                                                                                                   oclacitinib
6738                                                                                                                                 levothyroxine
6739                                                                                                                                     carprofen
6740                                                                                                                                    gabapentin
6741                                                                                                                                 levothyroxine
6742                                                                                                                                   oclacitinib
6743                                                                                                                                    gabapentin
6744                                                                                                                                      tramadol
6745                                                                                                                                    grapiprant
6746                                                                                                            amoxicillin, clavulanate potassium
6747                                                                                                                                    gabapentin
6748                                                                                                                                 levothyroxine
6749                                                                                                                                   oclacitinib
6750                                                                                                                                      tramadol
6751                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6752                                                                                                                                    grapiprant
6753                                                                                                                                      tramadol
6754                                                                                                                                    gabapentin
6755                                                                                                                                 levothyroxine
6756                                                                                                                                    grapiprant
6757                                                                                                                                    ivermectin
6758                                                                                                                                    cephalexin
6759                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                                                  ivermectin, pyrantel pamoate
6761                                                                                                                                    ivermectin
6762                                                                                                                                   oclacitinib
6763                                                                                                                  ivermectin, pyrantel pamoate
6764                                                                                                                      fipronil, (s)-methoprene
6765                                                                                                                                   oclacitinib
6766                                                                                                                          prednisolone acetate
6767                                                                                                                                   oclacitinib
6768                                                                                                                                   amoxicillin
6769                                                                                                                              sulfamethoxazole
6770                                                                                                                      imidacloprid, moxidectin
6771                                                                                                                    milbemycin oxime, spinosad
6772                                                                                                                                 metronidazole
6773                                                                                                                                 metronidazole
6774                                                                                                                                     probiotic
6775                                                                                                                    milbemycin oxime, spinosad
6776                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6777                                                                                                                                     carprofen
6778                                                                                                                   lufenuron, milbemycin oxime
6779                                                                                                                   lufenuron, milbemycin oxime
6780                                                                                                                                     firocoxib
6781                                                                                                                   lufenuron, milbemycin oxime
6782                                                                                                                                     firocoxib
6783                                                                                                                milbemycin oxime, praziquantel
6784                                                                                                                                    ivermectin
6785                                                                                                                  ivermectin, pyrantel pamoate
6786                                                                                                                    imidacloprid, pyriproxyfen
6787                                                                                                                  ivermectin, pyrantel pamoate
6788                                                                                                                                    afoxolaner
6789                                                                                                                  ivermectin, pyrantel pamoate
6790                                                                                                                                    fluralaner
6791                                                                                                                                    fluralaner
6792                                                                                                                  ivermectin, pyrantel pamoate
6793                                                                                                                                    fluralaner
6794                                                                                                                                 amitriptyline
6795                                                                                                                                    ivermectin
6796                                                                                                                   lufenuron, milbemycin oxime
6797                                                                                                                              milbemycin oxime
6798                                                                                                                                   amoxicillin
6799                                                                                                                                     carprofen
6800                                                                                                                                 levothyroxine
6801                                                                                                                                     carprofen
6802                                                                                                                                 levothyroxine
6803                                                                                                                                     carprofen
6804                                                                                                                                     probiotic
6805                                                                                                                                   oclacitinib
6806                                                                                                                                 metronidazole
6807                                                                                                                  ivermectin, pyrantel pamoate
6808                                                                                                                                   oclacitinib
6809                                                                                                                                   oclacitinib
6810                                                                                                                                   hydroxyzine
6811                                                                                                                                  ketoconazole
6812                                                                                                                                    grapiprant
6813                                                                                                                                   oclacitinib
6814                                                                                                                                    grapiprant
6815                                                                                                                                    ivermectin
6816                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6819                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6820                                                                                                                                     ofloxacin
6821                                                                                                                                 metronidazole
6822                                                                                                                                    grapiprant
6823                                                                                                            amoxicillin, clavulanate potassium
6824                                                                                                                polysulfated glycosaminoglycan
6825                                                                                                                                    grapiprant
6826                                                                                                                                    grapiprant
6827                                                                                                                                    grapiprant
6828                                                                                                                   lufenuron, milbemycin oxime
6829                                                                                                                                    famotidine
6830                                                                                                                               diphenhydramine
6831                                                                                                                                 dexamethasone
6832                                                                                                                                    cephalexin
6833                                                                                                                                 dexamethasone
6834                                                                                                                                    prednisone
6835                                                                                                                                    prednisone
6836                                                                                                                                    prednisone
6837                                                                                                             betamethasone, gentamicin sulfate
6838                                                                                                                  ivermectin, pyrantel pamoate
6839                                                                                                                                     carprofen
6840                                                                                                                                   oclacitinib
6841                                                                                                                              milbemycin oxime
6842                                                                                                                              milbemycin oxime
6843                                                                                                                              milbemycin oxime
6844                                                                                                                          cefpodoxime proxetil
6845                                                                                                                                      tramadol
6846                                                                                                                              milbemycin oxime
6847                                                                                                                                 metronidazole
6848                                                                                                                            maropitant citrate
6849                                                                                                                                    ivermectin
6850                                                                                                                                      tramadol
6851                                                                                                                                     carprofen
6852                                                                                                                                    cephalexin
6853                                                                                                                                   hydrocodone
6854                                                                                                            fipronil, permethrin, pyriproxyfen
6855                                                                                                                                    ivermectin
6856                                                                                                                            maropitant citrate
6857                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6858                                                                                                                    activated charcoal, kaolin
6859                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6860                                                                                                                                  acepromazine
6861                                                                                                                              atropine sulfate
6862                                                                                                                                    isoflurane
6863                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6864                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6865                                                                                                                                  acepromazine
6866                                                                                                                              atropine sulfate
6867                                                                                                                                      propofol
6868                                                                                                                                    isoflurane
6869                                                                                                mometasone furoate, orbifloxacin, posaconazole
6870                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6871                                                                                                                          cefpodoxime proxetil
6872                                                                                                                          prednisolone acetate
6873                                                                                                                                     probiotic
6874                                                                                                                          cefpodoxime proxetil
6875                                                                                                                                    ivermectin
6876                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6877                                                                                                                                  acepromazine
6878                                                                                                                              atropine sulfate
6879                                                                                                                                      propofol
6880                                                                                                                                    isoflurane
6881                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6882                                                                                                                            maropitant citrate
6883                                                                                                                            maropitant citrate
6884                                                                                                                               apomorphine hcl
6885                                                                                                                            activated charcoal
6886                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6887                                                                                                                  ivermectin, pyrantel pamoate
6888                                                                                                                                     probiotic
6889                                                                                                                          cefpodoxime proxetil
6890                                                                                                                  ivermectin, pyrantel pamoate
6891                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6893                                                                                                                                      tramadol
6894                                                                                                                          prednisolone acetate
6895                                                                                                                                    cephalexin
6896                                                                                                                          prednisolone acetate
6897                                                                                                                  ivermectin, pyrantel pamoate
6898                                                                                                                      fipronil, (s)-methoprene
6899                                                                                                       betamethasone, florfenicol, terbinafine
6900                                                                                                                                    ampicillin
6901                                                                                                                            maropitant citrate
6902                                                                                                                                 metronidazole
6903                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6904                                                                                                            amoxicillin, clavulanate potassium
6905                                                                                                                                   bedinvetmab
6906                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6907                                                                                                                                    cephalexin
6908                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
6909                                                                                                                                    ivermectin
6910                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6911                                                                                                                            calming supplement
6912                                                                                                                                 metronidazole
6913                                                                                                                                 metronidazole
6914                                                                                                                                    cephalexin
6915                                                                                                                                 levothyroxine
6916                                                                                                                  ivermectin, pyrantel pamoate
6917                                                                                                                                     carprofen
6918                                                                                                                polysulfated glycosaminoglycan
6919                                                                                                                  ivermectin, pyrantel pamoate
6920                                                                                                                  ivermectin, pyrantel pamoate
6921                                                                                                                                 levothyroxine
6922                                                                                                                unspecified thyroid medication
6923                                                                                                                                 levothyroxine
6924                                                                                                                polysulfated glycosaminoglycan
6925                                                                                                                                   oclacitinib
6926                                                                                                                                   telmisartan
6927                                                                                                                                 levothyroxine
6928                                                                                                         chlorhexidine gluconate, ketoconazole
6929                                                                                                                              sulfadimethoxine
6930                                                                                                                                    selamectin
6931                                                                                                                                       amitraz
6932                                                                                                                                    cephalexin
6933                                                                                                                                  enrofloxacin
6934                                                                                              chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                                          burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                                               ear cleaner (epi-otic advanced)
6937                                                                                                                                    cephalexin
6938                                                                                                                    milbemycin oxime, spinosad
6939                                                                                                                                    cephalexin
6940                                                                                                                            maropitant citrate
6941                                                                                                                                      tramadol
6942                                                                                                                    milbemycin oxime, spinosad
6943                                                                                                                            maropitant citrate
6944                                                                                                                                    cephalexin
6945                                                                                                                                      tramadol
6946                                                                                                                    milbemycin oxime, spinosad
6947                                                                                                                                    cephalexin
6948                                                                                                                                      tramadol
6949                                                                                                                                     carprofen
6950                                                                                                                                      tramadol
6951                                                                                                                                    cephalexin
6952                                                                                                                                   oclacitinib
6953                                                                                                            amoxicillin, clavulanate potassium
6954                                                                                                                    milbemycin oxime, spinosad
6955                                                                                                                                    cephalexin
6956                                                                                                                                     mupirocin
6957                                                                                                                                    lokivetmab
6958                                                                                                                                    gabapentin
6959                                                                                                                                     trazodone
6960                                                                                                                                     carprofen
6961                                                                                                                                  enrofloxacin
6962                                                                                                            amoxicillin, clavulanate potassium
6963                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6964                                                                                                                                    lokivetmab
6965                                                                                                                                    gabapentin
6966                                                                                                                                    gabapentin
6967                                                                                                                            maropitant citrate
6968                                                                                                                          butorphanol tartrate
6969                                                                                                                                     carprofen
6970                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6971                                                                                                                                   bedinvetmab
6972                                                                                                                                    lokivetmab
6973                                                                                                                                    gabapentin
6974                                                                                                                                     methadone
6975                                                                                                                            methylprednisolone
6976                                                                                                                                     trazodone
6977                                                                                                                                     carprofen
6978                                                                                                                                    prednisone
6979                                                                                                                                   amoxicillin
6980                                                                                                                                     cefovecin
6981                                                                                                                                    fluralaner
6982                                                                                                                                    ivermectin
6983                                                                                                                                    ivermectin
6984                                                                                                                                     probiotic
6985                                                                                                                  ivermectin, pyrantel pamoate
6986                                                                                                                                   clindamycin
6987                                                                                                                                     carprofen
6988                                                                                                                                   clindamycin
6989                                                                                                                                     carprofen
6990                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6991                                                                                                             trimeprazine tartrate, prednisone
6992                                                                                                                                    selamectin
6993                                                                                                                          cefpodoxime proxetil
6994                                                                                                                                   oclacitinib
6995                                                                                                                                    selamectin
6996                                                                                                                                   oclacitinib
6997                                                                                                                                   oclacitinib
6998                                                                                                                                    selamectin
6999                                                                                                  florfenicol, mometasone furoate, terbinafine
7000                                                                                                                                    selamectin
7001                                                                                                                                   oclacitinib
7002                                                                                                                    milbemycin oxime, spinosad
7003                                                                                                                                   oclacitinib
7004                                                                                                                                   oclacitinib
7005                                                                                                                                  ketoconazole
7006                                                                                                                    unspecified shampoo/mousse
7007                                                                                                                                     carprofen
7008                                                                                                                                    moxidectin
7009                                                                                                                            maropitant citrate
7010                                                                                                                            maropitant citrate
7011                                                                                                                                    moxidectin
7012                                                                                                                                    moxidectin
7013                                                                                                                                    famotidine
7014                                                                                                                                    famotidine
7015                                                                                                                                    moxidectin
7016                                                                                                                                    thiamazole
7017                                                                                                                                     sarolaner
7018                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
7019                                                                                                                                 metronidazole
7020                                                                                                                                    thiamazole
7021                                                                                                                                     sarolaner
7022                                                                                                                          cefpodoxime proxetil
7023                                                                                                                                    moxidectin
7024                                                                                                                                    thiamazole
7025                                                                                                mometasone furoate, orbifloxacin, posaconazole
7026                                                                                                                                     carprofen
7027                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7028                                                                                                                                    alprazolam
7029                                                                                                                                    alprazolam
7030                                                                                                                              milbemycin oxime
7031                                                                                                                                    alprazolam
7032                                                                                                                                 ciprofloxacin
7033                                                                                                                                  enrofloxacin
7034                                                                                                                                     carprofen
7035                                                                                                                                 ciprofloxacin
7036                                                                                                                                    alprazolam
7037                                                                                                                                     trazodone
7038                                                                                                                                 metronidazole
7039                                                                                                                                 metronidazole
7040                                                                                                                                     trazodone
7041                                                                                                                                   amoxicillin
7042                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7043                                                                                                                                    ampicillin
7044                                                                                                                                 dexamethasone
7045                                                                                                                                   amoxicillin
7046                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7047                                                                                                                  ivermectin, pyrantel pamoate
7048                                                                                                                  ivermectin, pyrantel pamoate
7049                                                                                                                  ivermectin, pyrantel pamoate
7050                                                                                                                  ivermectin, pyrantel pamoate
7051                                                                                                                  ivermectin, pyrantel pamoate
7052                                                                                                                                    afoxolaner
7053                                                                                                                  ivermectin, pyrantel pamoate
7054                                                                                                                  ivermectin, pyrantel pamoate
7055                                                                                                                                    cephalexin
7056                                                                                                                                     carprofen
7057                                                                                                                                     carprofen
7058                                                                                                                                    moxidectin
7059                                                                                                                          cefpodoxime proxetil
7060                                                                                                                                   bedinvetmab
7061                                                                                                                                     carprofen
7062                                                                                                                                 metronidazole
7063                                                                                                                praziquantel, pyrantel pamoate
7064                                                                                                                                    ivermectin
7065                                                                                                                                    ivermectin
7066                                                                                                    ivermectin, praziquantel, pyrantel pamoate
7067                                                                                                                   lufenuron, milbemycin oxime
7068                                                                                                                              milbemycin oxime
7069                                                                                                                                    cephalexin
7070                                                                                                                                    gabapentin
7071                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7072                                                                                                                                     carprofen
7073                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7074                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
7075                                                                                                                                    prednisone
7076                                                                                                             betamethasone, gentamicin sulfate
7077                                                                                                                                    ivermectin
7078                                                                                                                                    ivermectin
7079                                                                                                                                    afoxolaner
7080                                                                                                                  ivermectin, pyrantel pamoate
7081                                                                                                                                    afoxolaner
7082                                                                                                                  ivermectin, pyrantel pamoate
7083                                                                                                                                    afoxolaner
7084                                                                                                                milbemycin oxime, praziquantel
7085                                                                                                                                     sarolaner
7086                                                                                                                milbemycin oxime, praziquantel
7087                                                                                                                                     sarolaner
7088                                                                                                                    milbemycin oxime, spinosad
7089                                                                                                                                   hydroxyzine
7090                                                                                                                          cefpodoxime proxetil
7091                                                                                                                                    cephalexin
7092                                                                                                             betamethasone, gentamicin sulfate
7093                                                                                                                    milbemycin oxime, spinosad
7094                                                                                                                            maropitant citrate
7095                                                                                                                    milbemycin oxime, spinosad
7096                                                                                                                    milbemycin oxime, spinosad
7097                                                                                                                    milbemycin oxime, spinosad
7098                                                                                                      febantel, praziquantel, pyrantel pamoate
7099                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7100                                                                                                                    milbemycin oxime, spinosad
7101                                                                                                                    milbemycin oxime, spinosad
7102                                                                                                                    milbemycin oxime, spinosad
7103                                                                                                                                    grapiprant
7104                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7105                                                                                                                                    afoxolaner
7106                                                                                                                  ivermectin, pyrantel pamoate
7107                                                                                                                  ivermectin, pyrantel pamoate
7108                                                                                                                  ivermectin, pyrantel pamoate
7109                                                                                                                  ivermectin, pyrantel pamoate
7110                                                                                                                  ivermectin, pyrantel pamoate
7111                                                                                                                  ivermectin, pyrantel pamoate
7112                                                                                                                                    afoxolaner
7113                                                                                                                                     thyroxine
7114                                                                                                                                    cephalexin
7115                                                                                                                                    gabapentin
7116                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
7117                                                                                                                                     carprofen
7118                                                                                                                          cefpodoxime proxetil
7119                                                                                                                                    gabapentin
7120                                                                                                                            maropitant citrate
7121                                                                                                                                     probiotic
7122                                                                                                            chlorhexidine gluconate, tris-edta
7123                                                                                                                                     carprofen
7124                                                                                                                                    prednisone
7125                                                                                                                                    prednisone
7126                                                                                                                                    prednisone
7127                                                                                                            chlorhexidine gluconate, tris-edta
7128                                                                                                                    milbemycin oxime, spinosad
7129                                                                                                                    milbemycin oxime, spinosad
7130                                                                                                                    milbemycin oxime, spinosad
7131                                                                                                                  ivermectin, pyrantel pamoate
7132                                                                                                                  ivermectin, pyrantel pamoate
7133                                                                                                                               diphenhydramine
7134                                                                                                                                   hydroxyzine
7135                                                                                                                  ivermectin, pyrantel pamoate
7136                                                                                                                  ivermectin, pyrantel pamoate
7137                                                                     digestive supplement, immune support supplement, skin and coat supplement
7138                                                                                                                  ivermectin, pyrantel pamoate
7139                                                                                                                  ivermectin, pyrantel pamoate
7140                                                                                                                  ivermectin, pyrantel pamoate
7141                                                                                                                                    tobramycin
7142                                                                                                                              atropine sulfate
7143                                                                                                                                    sucralfate
7144                                                                                                                                 marbofloxacin
7145                                                                                                                                   mirtazapine
7146                                                                                                                                      spinosad
7147                                                                                                                                    cephalexin
7148                                                                                                                               diphenhydramine
7149                                                                                                                    milbemycin oxime, spinosad
7150                                                                                                                                    cephalexin
7151                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                                     probiotic
7153                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                                           ear cleaner (zymox), hydrocortisone
7155                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7156                                                                                                                                    prednisone
7157                                                                                                                                     carprofen
7158                                                                                                                                  enrofloxacin
7159                                                                                                                               chloramphenicol
7160                                                                                                                    milbemycin oxime, spinosad
7161                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7162                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7163                                                                                                           ear cleaner (zymox), hydrocortisone
7164                                                                                                                                   oclacitinib
7165                                                                                                                                    cephalexin
7166                                                                                                                                    prednisone
7167                                                                                                                                 marbofloxacin
7168                                                                                                             betamethasone, gentamicin sulfate
7169                                                                                                                                     carprofen
7170                                                                                                                                   amoxicillin
7171                                                                                                                                    cephalexin
7172                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                                       acetic acid, boric acid
7174                                                                                                                                 marbofloxacin
7175                                                                                                                                     mupirocin
7176                                                                                                                                  ketoconazole
7177                                                                                                             betamethasone, gentamicin sulfate
7178                                                                                                                    milbemycin oxime, spinosad
7179                                                                                                                    milbemycin oxime, spinosad
7180                                                                                                             betamethasone, gentamicin sulfate
7181                                                                                                                                  enrofloxacin
7182                                                                                                                                 metronidazole
7183                                                                                                                                    prednisone
7184                                                                                                                                    prednisone
7185                                                                                                                                  enrofloxacin
7186                                                                                                                                 metronidazole
7187                                                                                                                                  fenbendazole
7188                                                                                                                                    prednisone
7189                                                                                                             betamethasone, gentamicin sulfate
7190                                                                                                            amoxicillin, clavulanate potassium
7191                                                                                                                            maropitant citrate
7192                                                                                                                                    gabapentin
7193                                                                                                                                     trazodone
7194                                                                                                                                     carprofen
7195                                                                                                                                   clindamycin
7196                                                                                                                                 metronidazole
7197                                                                                                                            gentamicin sulfate
7198                                                                                                                                  fenbendazole
7199                                                                                                                          prebiotic, probiotic
7200                                                                                                                                     carprofen
7201                                                                                                           ear cleaner (zymox), hydrocortisone
7202                                                                                                                                 betamethasone
7203                                                                                                                    milbemycin oxime, spinosad
7204                                                                                                                    milbemycin oxime, spinosad
7205                                                                                                                                 hydromorphone
7206                                                                                                                                 metronidazole
7207                                                                                                             betamethasone, gentamicin sulfate
7208                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
7209                                                                                                                            maropitant citrate
7210                                                                                                                                    famotidine
7211                                                                                                                               diphenhydramine
7212                                                                                                                       chlorhexidine gluconate
7213                                                                                                                                     carprofen
7214                                                                                                                                      ketamine
7215                                                                                                                                 buprenorphine
7216                                                                                                                          cefpodoxime proxetil
7217                                                                                                                    milbemycin oxime, spinosad
7218                                                                                                                    milbemycin oxime, spinosad
7219                                                                                                                    milbemycin oxime, spinosad
7220                                                                                                                    milbemycin oxime, spinosad
7221                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7222                                                                                                                                    prednisone
7223                                                                                                                                    cephalexin
7224                                                                                                                                    cephalexin
7225                                                                                                                                     carprofen
7226                                                                                                                          cefpodoxime proxetil
7227                                                                                                            joint supplement (glucosamine hcl)
7228                                                                                                                                     carprofen
7229                                                                                                                          cefpodoxime proxetil
7230                                                                                                                                     trazodone
7231                                                                                                                                    cephalexin
7232                                                                                                mometasone furoate, orbifloxacin, posaconazole
7233                                                                                                                                     carprofen
7234                                                                                                                                    prednisone
7235                                                                                                                                   bedinvetmab
7236                                                                                                            amoxicillin, clavulanate potassium
7237                                                                                                                          cefpodoxime proxetil
7238                                                                                                                                    cephalexin
7239                                                                                                                                     carprofen
7240                                                                                                                                    diclofenac
7241                                                                                                                  ivermectin, pyrantel pamoate
7242                                                                                                                                     carprofen
7243                                                                                                                  ivermectin, pyrantel pamoate
7244                                                                                                                                    afoxolaner
7245                                                                                                                  ivermectin, pyrantel pamoate
7246                                                                                                                                    afoxolaner
7247                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                                    afoxolaner
7249                                                                                                                  ivermectin, pyrantel pamoate
7250                                                                                                                                    diclofenac
7251                                                                                                                  ivermectin, pyrantel pamoate
7252                                                                                                                                    alprazolam
7253                                                                                                                  ivermectin, pyrantel pamoate
7254                                                                                                                                    ivermectin
7255                                                                                                                            maropitant citrate
7256                                                                                                                                 metronidazole
7257                                                                                                                  ivermectin, pyrantel pamoate
7258                                                                                                                  ivermectin, pyrantel pamoate
7259                                                                                                                  ivermectin, pyrantel pamoate
7260                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                                                  ivermectin, pyrantel pamoate
7262                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7263                                                                                                                                 levothyroxine
7264                                                                                                                  ivermectin, pyrantel pamoate
7265                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7266                                                                                                                                 levothyroxine
7267                                                                                                            amoxicillin, clavulanate potassium
7268                                                                                                                                    famotidine
7269                                                                                                                                metoclopramide
7270                                                                                                                                    amlodipine
7271                                                                                                                          digestive supplement
7272                                                                                                                                     enalapril
7273                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7274                                                                                                                                    gabapentin
7275                                                                                                  unspecified thyroid medication or supplement
7276                                                                                                                polysulfated glycosaminoglycan
7277                                                                                                                                    cephalexin
7278                                                                                                             trimeprazine tartrate, prednisone
7279                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
7280                                                                                                                  ivermectin, pyrantel pamoate
7281                                                                                                                                    moxidectin
7282                                                                                                                              pyrantel pamoate
7283                                                                                                                                     carprofen
7284                                                                                                                                    moxidectin
7285                                                                                                                                    gabapentin
7286                                                                                                                                     carprofen
7287                                                                                                                                     carprofen
7288                                                                                                                                    gabapentin
7289                                                                                                                                   oclacitinib
7290                                                                                                                                    moxidectin
7291                                                                                                                                     sarolaner
7292                                                                                                                                 metronidazole
7293                                                                                                                                     carvacrol
7294                                                                                                                                   oclacitinib
7295                                                                                                                                     sarolaner
7296                                                                                                                                 metronidazole
7297                                                                                                                      joint supplement (other)
7298                                                                                                                                     firocoxib
7299                                                                                                                                    prednisone
7300                                                                                                                  ivermectin, pyrantel pamoate
7301                                                                                                                                      ursodiol
7302                                                                                                                                   hydroxyzine
7303                                                                                                                  ivermectin, pyrantel pamoate
7304                                                                                                                                    fluralaner
7305                                                                                                                                   oclacitinib
7306                                                                                                                                   oclacitinib
7307                                                                                                                                    lokivetmab
7308                                                                                                                          cefpodoxime proxetil
7309                                                                                                                                   oclacitinib
7310                                                                                                                                   oclacitinib
7311                                                                                                                                  enrofloxacin
7312                                                                                                                                   oclacitinib
7313                                                                                                                                   amoxicillin
7314                                                                                                                          cefpodoxime proxetil
7315                                                                                                                                     carprofen
7316                                                                                                                                     carprofen
7317                                                                                                                  ivermectin, pyrantel pamoate
7318                                                                                                                                 methocarbamol
7319                                                                                                                                     carprofen
7320                                                                                                                  ivermectin, pyrantel pamoate
7321                                                                                                                              sulfadimethoxine
7322                                                                                                                                 methocarbamol
7323                                                                                                                                     carprofen
7324                                                                                                            amoxicillin, clavulanate potassium
7325                                                                                                                  silver sulfadiazine, insulin
7326                                                                                                                          cefpodoxime proxetil
7327                                                                                                                                   vincristine
7328                                                                                                                                  dactinomycin
7329                                                                                                                                   vincristine
7330                                                                                                                                   vincristine
7331                                                                                                                                    gabapentin
7332                                                                                                                                      tramadol
7333                                                                                                                                     melatonin
7334                                                                                                                          prednisolone acetate
7335                                                                                                                          prednisolone acetate
7336                                                                                                                                    amantadine
7337                                                                                                                  ivermectin, pyrantel pamoate
7338                                                                                                                      fipronil, (s)-methoprene
7339                                                                                                                      imidacloprid, permethrin
7340                                                                                                                  ivermectin, pyrantel pamoate
7341                                                                                                                                    ivermectin
7342                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7343                                                                                                                      fipronil, (s)-methoprene
7344                                                                                                                                    ivermectin
7345                                                                                                                                    ivermectin
7346                                                                                                                      fipronil, (s)-methoprene
7347                                                                                                                                   hydroxyzine
7348                                                                                                                                    lokivetmab
7349                                                                                                                                     trazodone
7350                                                                                                                                    cephalexin
7351                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7352                                                                                                                                    tobramycin
7353                                                                                                                                     deracoxib
7354                                                                                                                                     carprofen
7355                                                                                                                                    prednisone
7356                                                                                                                                    lokivetmab
7357                                                                                                                  ivermectin, pyrantel pamoate
7358                                                                                                                                   amoxicillin
7359                                                                                                                              sulfadimethoxine
7360                                                                                                                                  fenbendazole
7361                                                                                                                                 metronidazole
7362                                                                                                                                     carprofen
7363                                                                                                                                    cephalexin
7364                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7365                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7366                                                                                                                                    prednisone
7367                                                                                                                                  ketoconazole
7368                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7369                                                                                                                                     carprofen
7370                                                                                                                                      tramadol
7371                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7372                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7373                                                                                                                  ivermectin, pyrantel pamoate
7374                                                                                                                                 metronidazole
7375                                                                                                                                     carprofen
7376                                                                                                     lufenuron, milbemycin oxime, praziquantel
7377                                                                                                                                 hydromorphone
7378                                                                                                                                     midazolam
7379                                                                                                                                      propofol
7380                                                                                                                                    isoflurane
7381                                                                                                                                     carprofen
7382                                                                                                                  ivermectin, pyrantel pamoate
7383                                                                                                                          cefpodoxime proxetil
7384                                                                                                                                     carprofen
7385                                                                                                                                     carprofen
7386                                                                                                                                    sucralfate
7387                                                                                                                            maropitant citrate
7388                                                                                                                  ivermectin, pyrantel pamoate
7389                                                                                                                                 metronidazole
7390                                                                                                                          cefpodoxime proxetil
7391                                                                                                                                 hydromorphone
7392                                                                                                                               dexmedetomidine
7393                                                                                                                                     midazolam
7394                                                                                                                                      propofol
7395                                                                                                                                 metronidazole
7396                                                                                                                          digestive supplement
7397                                                                                                                  ivermectin, pyrantel pamoate
7398                                                                                                                          cefpodoxime proxetil
7399                                                                                                                                        elspar
7400                                                                                                                                    prednisone
7401                                                                                                                            maropitant citrate
7402                                                                                                                                 metronidazole
7403                                                                                                                                   vincristine
7404                                                                                                                                    prednisone
7405                                                                                                                                   vincristine
7406                                                                                                                                    prednisone
7407                                                                                                                                   doxorubicin
7408                                                                                                                                 dexamethasone
7409                                                                                                                               diphenhydramine
7410                                                                                                                            maropitant citrate
7411                                                                                                                                 metronidazole
7412                                                                                                                                   vincristine
7413                                                                                                                  ivermectin, pyrantel pamoate
7414                                                                                                                          cefpodoxime proxetil
7415                                                                                                                                 metronidazole
7416                                                                                                                                        elspar
7417                                                                                                                                    prednisone
7418                                                                                                                                   vincristine
7419                                                                                                                              cyclophosphamide
7420                                                                                                                                   doxorubicin
7421                                                                                                                                 dexamethasone
7422                                                                                                                               diphenhydramine
7423                                                                                                                            maropitant citrate
7424                                                                                                                                   doxycycline
7425                                                                                                                              neomycin sulfate
7426                                                                                                                                  cyclosporine
7427                                                                                                                            maropitant citrate
7428                                                                                                                            maropitant citrate
7429                                                                                                                                    amino acid
7430                                                                                                                                   ondansetron
7431                                                                                                                                   ondansetron
7432                                                                                                                                     trazodone
7433                                                                                                                                    omeprazole
7434                                                                                                                                    famotidine
7435                                                                                                                                    famotidine
7436                                                                                                                                  capromorelin
7437                                                                                                                                metoclopramide
7438                                                                                                                                  pantoprazole
7439                                                                                                                                     meropenem
7440                                                                                                                                     mupirocin
7441                                                                                                            amoxicillin, clavulanate potassium
7442                                                                                                                               diphenhydramine
7443                                                                                                                                     carprofen
7444                                                                                                                          platelet transfusion
7445                                                                                                                                  enrofloxacin
7446                                                                                                                         ampicillin, sulbactam
7447                                                                                                               donor lymphocyte infusion (dli)
7448                                                                                                                                      ursodiol
7449                                                                                                                              liver supplement
7450                                                                                                         platelet-rich plasma (prp) injections
7451                                                                                                                                   amoxicillin
7452                                                                                                                          cefpodoxime proxetil
7453                                                                                                                              milbemycin oxime
7454                                                                                                                                    fluralaner
7455                                                                                                                                     carprofen
7456                                                                                                                                    gabapentin
7457                                                                                                                          cefpodoxime proxetil
7458                                                                                                                          cefpodoxime proxetil
7459                                                                                                                          cefpodoxime proxetil
7460                                                                                                                                    gabapentin
7461                                                                                                                                     carprofen
7462                                                                                                                                     carprofen
7463                                                                                                                          cefpodoxime proxetil
7464                                                                                                                                    gabapentin
7465                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7466                                                                                                                                     carprofen
7467                                                                                                                                   hydrocodone
7468                                                                                                                            maropitant citrate
7469                                                                                                                                    prednisone
7470                                                                                                                                 metronidazole
7471                                                                                                                   lufenuron, milbemycin oxime
7472                                                                                                                                    cephalexin
7473                                                                                                                   lufenuron, milbemycin oxime
7474                                                                                                                   lufenuron, milbemycin oxime
7475                                                                                                       betamethasone, florfenicol, terbinafine
7476                                                                                                                   lufenuron, milbemycin oxime
7477                                                                                                                   lufenuron, milbemycin oxime
7478                                                                                                                   lufenuron, milbemycin oxime
7479                                                                                                             betamethasone, gentamicin sulfate
7480                                                                                                                                     carprofen
7481                                                                                                                                   clindamycin
7482                                                                                                                                    gabapentin
7483                                                                                                                                     carprofen
7484                                                                                                                              tylosin tartrate
7485                                                                                                                              tylosin tartrate
7486                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7487                                                                                                                            miconazole nitrate
7488                                                                                                            amoxicillin, clavulanate potassium
7489                                                                                                                          cefpodoxime proxetil
7490                                                                                                                                     carprofen
7491                                                                                                                                 ciprofloxacin
7492                                                                                                            amoxicillin, clavulanate potassium
7493                                                                                                                                      tramadol
7494                                                                                                                                    gabapentin
7495                                                                                                                  ivermectin, pyrantel pamoate
7496                                                                                                                  ivermectin, pyrantel pamoate
7497                                                                                                                          cefpodoxime proxetil
7498                                                                                                                                     carprofen
7499                                                                                                                  ivermectin, pyrantel pamoate
7500                                                                                                                                    afoxolaner
7501                                                                                                                  ivermectin, pyrantel pamoate
7502                                                                                                                                    afoxolaner
7503                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7504                                                                                                            amoxicillin, clavulanate potassium
7505                                                                                                                                     carprofen
7506                                                                                                                                   amoxicillin
7507                                                                                                                                    ivermectin
7508                                                                                                                              pyrantel pamoate
7509                                                                                                                                  praziquantel
7510                                                                                                                                    ivermectin
7511                                                                                                                                    afoxolaner
7512                                                                                                                                  multivitamin
7513                                                                                                                                   omega 3-6-9
7514                                                                                                                                     carprofen
7515                                                                                                                                    ivermectin
7516                                                                                                                                    afoxolaner
7517                                                                                                                                     vitamin b
7518                                                                                                                                     vitamin b
7519                                                                                                                  ivermectin, pyrantel pamoate
7520                                                                                                                                    afoxolaner
7521                                                                                                                  ivermectin, pyrantel pamoate
7522                                                                                                                                    afoxolaner
7523                                                                                                                                     vitamin b
7524                                                                                                                                   omega 3-6-9
7525                                                                                                                  ivermectin, pyrantel pamoate
7526                                                                                                                                    afoxolaner
7527                                                                                                                                     vitamin b
7528                                                                                                                                 metronidazole
7529                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7530                                                                                                                          digestive supplement
7531                                                                                                                                     vitamin b
7532                                                                                                                                     carprofen
7533                                                                                                                                     carprofen
7534                                                                                                                                    cephalexin
7535                                                                                                                                    cephalexin
7536                                                                                                                               dexmedetomidine
7537                                                                                                                                      propofol
7538                                                                                                                               diphenhydramine
7539                                                                                                                                    famotidine
7540                                                                                                                                     carprofen
7541                                                                                                                                   atipamezole
7542                                                                                                                                     carprofen
7543                                                                                                                                     carprofen
7544                                                                                                                                    cephalexin
7545                                                                                                                                    cephalexin
7546                                                                                                                                     carprofen
7547                                                                                                                                     carprofen
7548                                                                                                                               diphenhydramine
7549                                                                                                                               diphenhydramine
7550                                                                                                                                     vitamin b
7551                                                                                                                                    afoxolaner
7552                                                                                                                          cefpodoxime proxetil
7553                                                                                                                                     carprofen
7554                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7555                                                                                                                                    fluralaner
7556                                                                                                                                 levetiracetam
7557                                                                                                                                     firocoxib
7558                                                                                                                  ivermectin, pyrantel pamoate
7559                                                                                                                    imidacloprid, pyriproxyfen
7560                                                                                                                              pyrantel pamoate
7561                                                                                                                                   guaifenesin
7562                                                                                                                 dextromethorphan hydrobromide
7563                                                                                                                  ivermectin, pyrantel pamoate
7564                                                                                                                              phytosphingosine
7565                                                                                                                  ivermectin, pyrantel pamoate
7566                                                                                                                  ivermectin, pyrantel pamoate
7567                                                                                                                                     firocoxib
7568                                                                                                            amoxicillin, clavulanate potassium
7569                                                                                                                                    gabapentin
7570                                                                                                                                   ondansetron
7571                                                                                                                                    alprazolam
7572                                                                                                                                     firocoxib
7573                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7574                                                                                                                                     firocoxib
7575                                                                                                                                    ivermectin
7576                                                                                                                      fipronil, (s)-methoprene
7577                                                                                                                   lufenuron, milbemycin oxime
7578                                                                                                                   lufenuron, milbemycin oxime
7579                                                                                                                                    cephalexin
7580                                                                                                                                     carprofen
7581                                                                                                                   lufenuron, milbemycin oxime
7582                                                                                                                   lufenuron, milbemycin oxime
7583                                                                                                                   lufenuron, milbemycin oxime
7584                                                                                                                   lufenuron, milbemycin oxime
7585                                                                                                                                     probiotic
7586                                                                                                                               cbd or hemp oil
7587                                                                                                                     immune support supplement
7588                                                                                                                                       omega 3
7589                                                                                                    toothpaste/dental health solution or chews
7590                                                                                                                                         algae
7591                                                                                                                                benazepril hcl
7592                                                                                                                                       omega 3
7593                                                                                                                                     probiotic
7594                                                                                                                                     vitamin c
7595                                                                                                                                       omega 3
7596                                                                                                                     immune support supplement
7597                                                                                                                          cefpodoxime proxetil
7598                                                                                                            chlorhexidine gluconate, ophytrium
7599                                                                                                                     immune support supplement
7600                                                                                                                                     vitamin b
7601                                                                                                                                     probiotic
7602                                                                                                                          digestive supplement
7603                                                                                                                          digestive supplement
7604                                                                                                                                     vitamin c
7605                                                                                                                     immune support supplement
7606                                                                                                                  ivermectin, pyrantel pamoate
7607                                                                                                                      fipronil, (s)-methoprene
7608                                                                                                                                   coconut oil
7609                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7610                                                                                                                  ivermectin, pyrantel pamoate
7611                                                                                                                          digestive supplement
7612                                                                                                                     immune support supplement
7613                                                                                                                                       omega 3
7614                                                                                                              unspecified digestive medication
7615                                                                                                                                     probiotic
7616                                                                                                                                     vitamin b
7617                                                                                                                     immune support supplement
7618                                                                                                                                          kelp
7619                                                                                                                                   coconut oil
7620                                                                                                                                 metronidazole
7621                                                                                                            amoxicillin, clavulanate potassium
7622                                                                                                                               jade windscreen
7623                                                                                                                              strengthen metal
7624                                                                                                                    thyroid support supplement
7625                                                                                                              general female health supplement
7626                                                                                                                     immune support supplement
7627                                                                                                                                       taurine
7628                                                                                                                                     probiotic
7629                                                                                                                          digestive supplement
7630                                                                                                                                     vitamin b
7631                                                                                                                          digestive supplement
7632                                                                                                                                     probiotic
7633                                                                                                                    thyroid support supplement
7634                                                                                                                    thyroid support supplement
7635                                                                                                    dextromethorphan hydrobromide, guaifenesin
7636                                                                                                                                   doxycycline
7637                                                                                                                                   hydroxyzine
7638                                                                                                                          digestive supplement
7639                                                                                                                     immune support supplement
7640                                                                                                                                     probiotic
7641                                                                                                                                       taurine
7642                                                                                                                                 levothyroxine
7643                                                                                                              general female health supplement
7644                                                                                                                    cardiac support supplement
7645                                                                                                                          digestive supplement
7646                                                                                                                                 levothyroxine
7647                                                                                                                    cardiac support supplement
7648                                                                                                                     immune support supplement
7649                                                                                                                     immune support supplement
7650                                                                                                                                       taurine
7651                                                                                                              general female health supplement
7652                                                                                                                                     probiotic
7653                                                                                                                          digestive supplement
7654                                                                                                                                 levothyroxine
7655                                                                                                                               gather vitality
7656                                                                                                                          digestive supplement
7657                                                                                                                                 levothyroxine
7658                                                                                                                                     probiotic
7659                                                                                                                                  multivitamin
7660                                                                                                                   lufenuron, milbemycin oxime
7661                                                                                                                          cefpodoxime proxetil
7662                                                                                                                                    prednisone
7663                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7664                                                                                                                    milbemycin oxime, spinosad
7665                                                                                                                                 metronidazole
7666                                                                                                                          cefpodoxime proxetil
7667                                                                                                                                   amoxicillin
7668                                                                                                                                  fenbendazole
7669                                                                                                                                      tramadol
7670                                                                                                                                     carprofen
7671                                                                                                       transcranial magnetic stimulation (tms)
7672                                                                                                                               apomorphine hcl
7673                                                                                                                              pyrantel pamoate
7674                                                                                                                              sulfadimethoxine
7675                                                                                                                    milbemycin oxime, spinosad
7676                                                                                                                                 metronidazole
7677                                                                                                                                     probiotic
7678                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                                       ketoconazole, tris-edta
7680                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7681                                                                                                                    milbemycin oxime, spinosad
7682                                                                                                                    milbemycin oxime, spinosad
7683                                                                                                                milbemycin oxime, praziquantel
7684                                                                                                                                    fluralaner
7685                                                                                                                                 metronidazole
7686                                                                                                                                   hydroxyzine
7687                                                                                                                                   oclacitinib
7688                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7689                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7690                                                                                                                                     carprofen
7691                                                                                                                                      tramadol
7692                                                                                                                milbemycin oxime, praziquantel
7693                                                                                                                                    fluralaner
7694                                                                                                     chlorhexidine gluconate, phytosphingosine
7695                                                                                                                                    fluralaner
7696                                                                                                                milbemycin oxime, praziquantel
7697                                                                                                                                     carprofen
7698                                                                                                                                     sarolaner
7699                                                                                                                milbemycin oxime, praziquantel
7700                                                                                                                                     sarolaner
7701                                                                                                                milbemycin oxime, praziquantel
7702                                                                                                                                   oclacitinib
7703                                                                                                                                    gabapentin
7704                                                                                                                          cefpodoxime proxetil
7705                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7706                                                                                                                                     carprofen
7707                                                                                                                          cefpodoxime proxetil
7708                                                                                                                polysulfated glycosaminoglycan
7709                                                                                                                              sulfadimethoxine
7710                                                                                                                                     carprofen
7711                                                                                                                                 dexamethasone
7712                                                                                                                          cefpodoxime proxetil
7713                                                                                                                                   oclacitinib
7714                                                                                                                                     trazodone
7715                                                                                                                                    prednisone
7716                                                                                                                          cefpodoxime proxetil
7717                                                                                                                                   oclacitinib
7718                                                                                                                polysulfated glycosaminoglycan
7719                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7720                                                                                                                                    prednisone
7721                                                                                                                          cefpodoxime proxetil
7722                                                                                                                                   oclacitinib
7723                                                                                                                polysulfated glycosaminoglycan
7724                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7725                                                                                                                            miconazole nitrate
7726                                                                                                                                     carprofen
7727                                                                                                                          prednisolone acetate
7728                                                                                                                          cefpodoxime proxetil
7729                                                                                                                                    gabapentin
7730                                                                                                                                     carprofen
7731                                                                                                                                       omega 3
7732                                                                                                    ivermectin, praziquantel, pyrantel pamoate
7733                                                                                                                                   doxycycline
7734                                                                                                                  ivermectin, pyrantel pamoate
7735                                                                                                                      fipronil, (s)-methoprene
7736                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
7737                                                                                                                                   amoxicillin
7738                                                                                                                                 ciprofloxacin
7739                                                                                                                                    cephalexin
7740                                                                                                                            maropitant citrate
7741                                                                                                            amoxicillin, clavulanate potassium
7742                                                                                                                  ivermectin, pyrantel pamoate
7743                                                                                                                      fipronil, (s)-methoprene
7744                                                                                                                      fipronil, (s)-methoprene
7745                                                                                                                  ivermectin, pyrantel pamoate
7746                                                                                                                  ivermectin, pyrantel pamoate
7747                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                                       omega 3
7749                                                                                                                  ivermectin, pyrantel pamoate
7750                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                                           ear cleaner (zymox), hydrocortisone
7752                                                                                                                                  multivitamin
7753                                                                                                                    musculoskeletal supplement
7754                                                                                                                                     carvacrol
7755                                                                                                                  ivermectin, pyrantel pamoate
7756                                                                                                                      fipronil, (s)-methoprene
7757                                                                                                                                     carprofen
7758                                                                                                                                      tramadol
7759                                                                                                         dinotefuran, permethrin, pyriproxyfen
7760                                                                                                                                       omega 3
7761                                                                                                                     immune support supplement
7762                                                                                                                                     vitamin d
7763                                                                                                                  ivermectin, pyrantel pamoate
7764                                                                                                                     immune support supplement
7765                                                                                                         dinotefuran, permethrin, pyriproxyfen
7766                                                                                                                     immune support supplement
7767                                                                                                                            xue fu zhu yu tang
7768                                                                                                                                 yunnan baiyao
7769                                                                                                                                       omega 3
7770                                                                                                                                     vitamin d
7771                                                                                                                                      bilberry
7772                                                                                                                                     probiotic
7773                                                                                                                             gm np hsa formula
7774                                                                                                                               diphenhydramine
7775                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7776                                                                                                                                     vitamin d
7777                                                                                                                                       omega 3
7778                                                                                                        joint supplement (glucosamine hcl/msm)
7779                                                                                                                   lufenuron, milbemycin oxime
7780                                                                                                         dinotefuran, permethrin, pyriproxyfen
7781                                                                                                                                      fipronil
7782                                                                                                                   lufenuron, milbemycin oxime
7783                                                                                                                                      fipronil
7784                                                                                                                   lufenuron, milbemycin oxime
7785                                                                                                                             vision supplement
7786                                                                                                         dinotefuran, permethrin, pyriproxyfen
7787                                                                                                         dinotefuran, permethrin, pyriproxyfen
7788                                                                                                                   lufenuron, milbemycin oxime
7789                                                                                                                   lufenuron, milbemycin oxime
7790                                                                                                         dinotefuran, permethrin, pyriproxyfen
7791                                                                                                                  ivermectin, pyrantel pamoate
7792                                                                                                                                    selamectin
7793                                                                                                            amoxicillin, clavulanate potassium
7794                                                                                                           ear cleaner (zymox), hydrocortisone
7795                                                                                                                                       omega 3
7796                                                                                                                                   hydroxyzine
7797                                                                                                                                   oclacitinib
7798                                                                                                                  ivermectin, pyrantel pamoate
7799                                                                                                                                    afoxolaner
7800                                                                                                                                   oclacitinib
7801                                                                                                                          cefpodoxime proxetil
7802                                                                                                                          cefpodoxime proxetil
7803                                                                                                                                   oclacitinib
7804                                                                                                                  ivermectin, pyrantel pamoate
7805                                                                                                                                    afoxolaner
7806                                                                                                                                   oclacitinib
7807                                                                                                                                      tramadol
7808                                                                                                                  ivermectin, pyrantel pamoate
7809                                                                                                                                    afoxolaner
7810                                                                                                                                   oclacitinib
7811                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7812                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7813                                                                                                  enrofloxacin, ketoconazole, neomycin sulfate
7814                                                                                                                          cefpodoxime proxetil
7815                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7816                                                                                                                                     carprofen
7817                                                                                                                                    prednisone
7818                                                                                                             trimeprazine tartrate, prednisone
7819                                                                                                                          cefpodoxime proxetil
7820                                                                                                             betamethasone, gentamicin sulfate
7821                                                                                                                          cefpodoxime proxetil
7822                                                                                                             betamethasone, gentamicin sulfate
7823                                                                                                                                   oclacitinib
7824                                                                                                                                   minocycline
7825                                                                                                                      homatropine, hydrocodone
7826                                                                                                                            maropitant citrate
7827                                                                                                                            maropitant citrate
7828                                                                                                                            maropitant citrate
7829                                                                                                                      homatropine, hydrocodone
7830                                                                                                                                   minocycline
7831                                                                                                                  ivermectin, pyrantel pamoate
7832                                                                                                                      fipronil, (s)-methoprene
7833                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
7834                                                                                                                  ivermectin, pyrantel pamoate
7835                                                                                                                  ormetoprim, sulfadimethoxine
7836                                                                                                                                    tobramycin
7837                                                                                                                                     carprofen
7838                                                                                                                  ivermectin, pyrantel pamoate
7839                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7840                                                                                                                               diphenhydramine
7841                                                                                                                  ivermectin, pyrantel pamoate
7842                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7843                                                                                                                                    gabapentin
7844                                                                                                                               diphenhydramine
7845                                                                                                                           ear cleaner (zymox)
7846                                                                                                mometasone furoate, orbifloxacin, posaconazole
7847                                                                                                  florfenicol, mometasone furoate, terbinafine
7848                                                                                                                        unspecified medication
7849                                                                                                                                   doxycycline
7850                                                                                                            amoxicillin, clavulanate potassium
7851                                                                                                                                  enrofloxacin
7852                                                                                                                                   hydrocodone
7853                                                                                                                             albuterol sulfate
7854                                                                                                                            maropitant citrate
7855                                                                                                                                    famotidine
7856                                                                                                                                    cetirizine
7857                                                                                                                                 metronidazole
7858                                                                                                            amoxicillin, clavulanate potassium
7859                                                                                                                               diphenhydramine
7860                                                                                                            amoxicillin, clavulanate potassium
7861                                                                                                                                 metronidazole
7862                                                                                                                                        arnica
7863                                                                                                            amoxicillin, clavulanate potassium
7864                                                                                                                                      tramadol
7865                                                                                                                  ivermectin, pyrantel pamoate
7866                                                                                                            amoxicillin, clavulanate potassium
7867                                                                                                                  ivermectin, pyrantel pamoate
7868                                                                                                                  ivermectin, pyrantel pamoate
7869                                                                                                                  ivermectin, pyrantel pamoate
7870                                                                                                                                     carprofen
7871                                                                                                                                   amoxicillin
7872                                                                                                                                   doxycycline
7873                                                                                                                  ivermectin, pyrantel pamoate
7874                                                                                                                  ivermectin, pyrantel pamoate
7875                                                                                                                                    prednisone
7876                                                                                                                      fipronil, (s)-methoprene
7877                                                                                                                                    selamectin
7878                                                                                                                  ivermectin, pyrantel pamoate
7879                                                                                                                                    afoxolaner
7880                                                                                                                  ivermectin, pyrantel pamoate
7881                                                                                                                                    afoxolaner
7882                                                                                                            amoxicillin, clavulanate potassium
7883                                                                                                                              milbemycin oxime
7884                                                                                                                                    afoxolaner
7885                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7886                                                                                                                                    cephalexin
7887                                                                                                  florfenicol, mometasone furoate, terbinafine
7888                                                                                                                                    cephalexin
7889                                                                                                  florfenicol, mometasone furoate, terbinafine
7890                                                                                                                                    lokivetmab
7891                                                                                                                                    cephalexin
7892                                                                                                                                    lokivetmab
7893                                                                                                  florfenicol, mometasone furoate, terbinafine
7894                                                                                                                                  enrofloxacin
7895                                                                                                    dimethyl sulfoxide, fluocinolone acetonide
7896                                                                                                                                   amoxicillin
7897                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7898                                                                                                                          prednisolone acetate
7899                                                                                                                                   doxycycline
7900                                                                                                                                 metronidazole
7901                                                                                                                                    prednisone
7902                                                                                                                          prednisolone acetate
7903                                                                                                                                 dexamethasone
7904                                                                                                                                    cephalexin
7905                                                                                                                                    cephalexin
7906                                                                                                                                 dexamethasone
7907                                                                                                                                    cephalexin
7908                                                                                                                                     deracoxib
7909                                                                                                                                   doxycycline
7910                                                                                                                               diphenhydramine
7911                                                                                                                                 dexamethasone
7912                                                                                                                                    afoxolaner
7913                                                                                                                                    cephalexin
7914                                                                                                                                  fenbendazole
7915                                                                                                                                   doxycycline
7916                                                                                                                                 dexamethasone
7917                                                                                                                               diphenhydramine
7918                                                                                                                                     carprofen
7919                                                                                                                          cefpodoxime proxetil
7920                                                                                                                                    cephalexin
7921                                                                                                                                  fenbendazole
7922                                                                                                                                 metronidazole
7923                                                                                                           belladonna alkaloids, phenobarbital
7924                                                                                                                              pyrantel pamoate
7925                                                                                                                                 metronidazole
7926                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7927                                                                                                                                    prednisone
7928                                                                                                                                    cephalexin
7929                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7930                                                                                                                                     firocoxib
7931                                                                                                                                   clindamycin
7932                                                                                                                                     diltiazem
7933                                                                                                                                    trilostane
7934                                                                                                                                     carprofen
7935                                                                                                                                     carprofen
7936                                                                                                                                    ivermectin
7937                                                                                                                              pyrantel pamoate
7938                                                                                                                                 dexamethasone
7939                                                                                                                                    prednisone
7940                                                                                                                               diphenhydramine
7941                                                                                                                     bordetella bronchiseptica
7942                                                                                                                                  ketoconazole
7943                                                                                                                                    prednisone
7944                                                                                                                       acetic acid, boric acid
7945                                                                                                                          butorphanol tartrate
7946                                                                                                                              phytosphingosine
7947                                                                                                mometasone furoate, orbifloxacin, posaconazole
7948                                                                                                                                    ivermectin
7949                                                                                                                                    ivermectin
7950                                                                                                                                    ivermectin
7951                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7952                                                                                                                            methylprednisolone
7953                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7954                                                                                                                               diphenhydramine
7955                                                                                                                          butorphanol tartrate
7956                                                                                                                                    ivermectin
7957                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7958                                                                                                                               diphenhydramine
7959                                                                                                                                   amoxicillin
7960                                                                                                                                     carprofen
7961                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7962                                                                                                                                   amoxicillin
7963                                                                                                                          prednisolone acetate
7964                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7965                                                                                                                              phytosphingosine
7966                                                                                                                  ivermectin, pyrantel pamoate
7967                                                                                                                                    afoxolaner
7968                                                                                                                  ivermectin, pyrantel pamoate
7969                                                                                                                                    afoxolaner
7970                                                                                                            amoxicillin, clavulanate potassium
7971                                                                                                                                     meloxicam
7972                                                                                                            amoxicillin, clavulanate potassium
7973                                                                                                                  ofloxacin, unspecified nsaid
7974                                                                                                                                     meloxicam
7975                                                                                                                                    pregabalin
7976                                                                                                                                     meloxicam
7977                                                                                                                                 metronidazole
7978                                                                                                                  ivermectin, pyrantel pamoate
7979                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7980                                                                                                                                 metronidazole
7981                                                                                                                            maropitant citrate
7982                                                                                                                                     carprofen
7983                                                                                                                                     carprofen
7984                                                                                                                                   doxycycline
7985                                                                                                                                   doxycycline
7986                                                                                                                      fipronil, (s)-methoprene
7987                                                                                                                    milbemycin oxime, spinosad
7988                                                                                                                  ivermectin, pyrantel pamoate
7989                                                                                                                                  praziquantel
7990                                                                                                                                     firocoxib
7991                                                                                                                polysulfated glycosaminoglycan
7992                                                                                                                polysulfated glycosaminoglycan
7993                                                                                                                                    selamectin
7994                                                                                                                                     carprofen
7995                                                                                                                polysulfated glycosaminoglycan
7996                                                                                                                                    selamectin
7997                                                                                                                polysulfated glycosaminoglycan
7998                                                                                                                                    selamectin
7999                                                                                                                polysulfated glycosaminoglycan
8000                                                                                                                                    selamectin
8001                                                                                                                                    moxidectin
8002                                                                                                                polysulfated glycosaminoglycan
8003                                                                                                                                     carprofen
8004                                                                                                                                     carprofen
8005                                                                                                                                    sucralfate
8006                                                                                                                                    famotidine
8007                                                                                                                                 metronidazole
8008                                                                                                                                     carprofen
8009                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8010                                                                                                                                     carprofen
8011                                                                                                                          cefpodoxime proxetil
8012                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8013                                                                                                                                     carprofen
8014                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8015                                                                                                                              milbemycin oxime
8016                                                                                                                          cefpodoxime proxetil
8017                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8018                                                                                                                          cefpodoxime proxetil
8019                                                                                                                                     carprofen
8020                                                                                                                                     ketorolac
8021                                                                                                                                     carprofen
8022                                                                                                                                    gabapentin
8023                                                                                                                          cefpodoxime proxetil
8024                                                                                                                                 metronidazole
8025                                                                                                                                    gabapentin
8026                                                                                                                                     carprofen
8027                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8028                                                                                                                  ivermectin, pyrantel pamoate
8029                                                                                                                  ivermectin, pyrantel pamoate
8030                                                                                                                  ivermectin, pyrantel pamoate
8031                                                                                                                          prednisolone acetate
8032                                                                                                                                     carprofen
8033                                                                                                                          prednisolone acetate
8034                                                                                                                  ivermectin, pyrantel pamoate
8035                                                                                                                  ivermectin, pyrantel pamoate
8036                                                                                                                  ivermectin, pyrantel pamoate
8037                                                                                                                  ivermectin, pyrantel pamoate
8038                                                                                                                  ivermectin, pyrantel pamoate
8039                                                                                                                  ivermectin, pyrantel pamoate
8040                                                                                                                  ivermectin, pyrantel pamoate
8041                                                                                                                                 metronidazole
8042                                                                                                                   lufenuron, milbemycin oxime
8043                                                                                                                milbemycin oxime, praziquantel
8044                                                                                                                milbemycin oxime, praziquantel
8045                                                                                                                              milbemycin oxime
8046                                                                                                                                 metronidazole
8047                                                                                                                                    cephalexin
8048                                                                                                                                     cefazolin
8049                                                                                                                                  enrofloxacin
8050                                                                                                                                    ampicillin
8051                                                                                                            amoxicillin, clavulanate potassium
8052                                                                                                                                  enrofloxacin
8053                                                                                                                                  chlorambucil
8054                                                                                                                                    prednisone
8055                                                                                                            amoxicillin, clavulanate potassium
8056                                                                                                                                    ampicillin
8057                                                                                                                                  enrofloxacin
8058                                                                                                                    thyroid support supplement
8059                                                                                                                                 levothyroxine
8060                                                                                                                                  enrofloxacin
8061                                                                                                                          digestive supplement
8062                                                                                                                    thyroid support supplement
8063                                                                                                                   lufenuron, milbemycin oxime
8064                                                                                                         dinotefuran, permethrin, pyriproxyfen
8065                                                                                                                                     thyroxine
8066                                                                                                         dinotefuran, permethrin, pyriproxyfen
8067                                                                                                                   lufenuron, milbemycin oxime
8068                                                                                                                                 levothyroxine
8069                                                                                                                   lufenuron, milbemycin oxime
8070                                                                                                                   lufenuron, milbemycin oxime
8071                                                                                                         dinotefuran, permethrin, pyriproxyfen
8072                                                                                                                                     thyroxine
8073                                                                                                                                  acepromazine
8074                                                                                                                                     thyroxine
8075                                                                                                                            calming supplement
8076                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8077                                                                                                                                   hydroxyzine
8078                                                                                                             trimeprazine tartrate, prednisone
8079                                                                                                                                   amoxicillin
8080                                                                                                                                    cephalexin
8081                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8082                                                                                                            amoxicillin, clavulanate potassium
8083                                                                                                                                    ampicillin
8084                                                                                                                                      tramadol
8085                                                                                                                              sulfadimethoxine
8086                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8087                                                                                                             trimeprazine tartrate, prednisone
8088                                                                                                            amoxicillin, clavulanate potassium
8089                                                                                                            amoxicillin, clavulanate potassium
8090                                                                                                                                   hydroxyzine
8091                                                                                                            amoxicillin, clavulanate potassium
8092                                                                                                         chlorhexidine gluconate, ketoconazole
8093                                                                                                                            methylprednisolone
8094                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8095                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8096                                                                                                                                   oclacitinib
8097                                                                                                                                       omega 3
8098                                                                                                                      fipronil, (s)-methoprene
8099                                                                                                                milbemycin oxime, praziquantel
8100                                                                                                                                   oclacitinib
8101                                                                                                             dexamethasone, miconazole nitrate
8102                                                                                                                                   oclacitinib
8103                                                                                                                                   amoxicillin
8104                                                                                                                                      tramadol
8105                                                                                                                                    sucralfate
8106                                                                                                                                    famotidine
8107                                                                                                                                  capromorelin
8108                                                                                                                                    gabapentin
8109                                                                                                                            maropitant citrate
8110                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8111                                                                                                  florfenicol, mometasone furoate, terbinafine
8112                                                                                                                                    famotidine
8113                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8114                                                                                                                                     carprofen
8115                                                                                                                              liver supplement
8116                                                                                                                                     deracoxib
8117                                                                                                                                   doxycycline
8118                                                                                                    dextromethorphan hydrobromide, guaifenesin
8119                                                                                                                              liver supplement
8120                                                                                                                                    ivermectin
8121                                                                                                                                    ivermectin
8122                                                                                                        joint supplement (glucosamine hcl/msm)
8123                                                                                                                                    ivermectin
8124                                                                                                                  ivermectin, pyrantel pamoate
8125                                                                                                                joint supplement (unspecified)
8126                                                                                                                                    cephalexin
8127                                                                                                                                    prednisone
8128                                                                                                                       ketoconazole, tris-edta
8129                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8130                                                                                                                  ivermectin, pyrantel pamoate
8131                                                                                                                                    afoxolaner
8132                                                                                                                              milbemycin oxime
8133                                                                                                                                     lotilaner
8134                                                                                                                                     carprofen
8135                                                                                                                       ketoconazole, tris-edta
8136                                                                                                                milbemycin oxime, praziquantel
8137                                                                                                                                     lotilaner
8138                                                                                                                              milbemycin oxime
8139                                                                                                                                     lotilaner
8140                                                                                                                       ketoconazole, tris-edta
8141                                                                                                            amoxicillin, clavulanate potassium
8142                                                                                                                            maropitant citrate
8143                                                                                                                            maropitant citrate
8144                                                                                                                                    cephalexin
8145                                                                                                            amoxicillin, clavulanate potassium
8146                                                                                                                            maropitant citrate
8147                                                                                                                                 phenobarbital
8148                                                                                                                                  acepromazine
8149                                                                                                                          butorphanol tartrate
8150                                                                                                                                      propofol
8151                                                                                                                            maropitant citrate
8152                                                                                                                               diphenhydramine
8153                                                                                                                                     carprofen
8154                                                                                                                                    grapiprant
8155                                                                                                                                     probiotic
8156                                                                                                                                       omega 3
8157                                                                                                                                   amoxicillin
8158                                                                                                            fipronil, permethrin, pyriproxyfen
8159                                                                                                                  ivermectin, pyrantel pamoate
8160                                                                                                                                     probiotic
8161                                                                                                                                     carprofen
8162                                                                                                                                     carprofen
8163                                                                                                                                       omega 3
8164                                                                                                                                       omega 3
8165                                                                                                                        joint supplement (msm)
8166                                                                                                                                    ivermectin
8167                                                                                                                  ivermectin, pyrantel pamoate
8168                                                                                                                                    ivermectin
8169                                                                                                                      fipronil, (s)-methoprene
8170                                                                                                                  ivermectin, pyrantel pamoate
8171                                                                                                                      fipronil, (s)-methoprene
8172                                                                                                                  ivermectin, pyrantel pamoate
8173                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8174                                                                                                                       ketoconazole, tris-edta
8175                                                                                                                  ivermectin, pyrantel pamoate
8176                                                                                                                                    fluralaner
8177                                                                                                                                    fluralaner
8178                                                                                                                  ivermectin, pyrantel pamoate
8179                                                                                                                                    lokivetmab
8180                                                                                                                                    lokivetmab
8181                                                                                                                                     carprofen
8182                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8183                                                                                                                                     carprofen
8184                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                                                  ivermectin, pyrantel pamoate
8186                                                                                                                  ivermectin, pyrantel pamoate
8187                                                                                                                  ivermectin, pyrantel pamoate
8188                                                                                                                                    afoxolaner
8189                                                                                                                          cefpodoxime proxetil
8190                                                                                                                          cefpodoxime proxetil
8191                                                                                                                                    prednisone
8192                                                                                                                          cefpodoxime proxetil
8193                                                                                                                       triamcinolone acetonide
8194                                                                                                                                   oclacitinib
8195                                                                                                                  ivermectin, pyrantel pamoate
8196                                                                                                                                    afoxolaner
8197                                                                                                                                  enrofloxacin
8198                                                                                                            amoxicillin, clavulanate potassium
8199                                                                                                                                     carprofen
8200                                                                                                             betamethasone, gentamicin sulfate
8201                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8202                                                                                                                                    prednisone
8203                                                                                                                                      fipronil
8204                                                                                                                   lufenuron, milbemycin oxime
8205                                                                                                                                      fipronil
8206                                                                                                     lufenuron, milbemycin oxime, praziquantel
8207                                                                                                     lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                                      fipronil
8209                                                                                                                   lufenuron, milbemycin oxime
8210                                                                                                                   lufenuron, milbemycin oxime
8211                                                                                                                          fipronil, permethrin
8212                                                                                                                   lufenuron, milbemycin oxime
8213                                                                                                                          fipronil, permethrin
8214                                                                                                                   lufenuron, milbemycin oxime
8215                                                                                                                          fipronil, permethrin
8216                                                                                                                                     deracoxib
8217                                                                                                            joint supplement (glucosamine hcl)
8218                                                                                                                                 metronidazole
8219                                                                                                                                    ivermectin
8220                                                                                                                                    ivermectin
8221                                                                                                                                    ivermectin
8222                                                                                                                                    ivermectin
8223                                                                                                                                    ivermectin
8224                                                                                                                  ivermectin, pyrantel pamoate
8225                                                                                                                                    cephalexin
8226                                                                                                                                     carprofen
8227                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
8228                                                                                                                                      turmeric
8229                                                                                                                                     carprofen
8230                                                                                                                                     carprofen
8231                                                                                                                   lufenuron, milbemycin oxime
8232                                                                                                                   lufenuron, milbemycin oxime
8233                                                                                                                                    fluralaner
8234                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                                       chlorhexidine gluconate
8236                                                                                                             betamethasone, gentamicin sulfate
8237                                                                                                                                   hydroxyzine
8238                                                                                                                       chlorhexidine gluconate
8239                                                                                                                     immune support supplement
8240                                                                                                                       triamcinolone acetonide
8241                                                                                                                   lufenuron, milbemycin oxime
8242                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8243                                                                                                                   lufenuron, milbemycin oxime
8244                                                                                                                                    fluralaner
8245                                                                                                                                    cephalexin
8246                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8247                                                                                                                   lufenuron, milbemycin oxime
8248                                                                                                                                    fluralaner
8249                                                                                                                            maropitant citrate
8250                                                                                                                            maropitant citrate
8251                                                                                                                                 metronidazole
8252                                                                                                             betamethasone, gentamicin sulfate
8253                                                                                                                   lufenuron, milbemycin oxime
8254                                                                                                                                    lokivetmab
8255                                                                                                                                   hydroxyzine
8256                                                                                                                                    fluralaner
8257                                                                                                                                   oclacitinib
8258                                                                                                                   lufenuron, milbemycin oxime
8259                                                                                                                                   hydroxyzine
8260                                                                                                                                   oclacitinib
8261                                                                                                                                     deracoxib
8262                                                                                                                                     meloxicam
8263                                                                                                                                    ampicillin
8264                                                                                                                                  enrofloxacin
8265                                                                                                            amoxicillin, clavulanate potassium
8266                                                                                                                                 marbofloxacin
8267                                                                                                                                   oclacitinib
8268                                                                                                                                   hydroxyzine
8269                                                                                                      febantel, praziquantel, pyrantel pamoate
8270                                                                                                                   lufenuron, milbemycin oxime
8271                                                                                                            amoxicillin, clavulanate potassium
8272                                                                                                                                 marbofloxacin
8273                                                                                                                                   doxycycline
8274                                                                                                                                   oclacitinib
8275                                                                                                                                   hydroxyzine
8276                                                                                                                                 betamethasone
8277                                                                                                                                    ampicillin
8278                                                                                                                                      ketamine
8279                                                                                                                                      diazepam
8280                                                                                                                                    isoflurane
8281                                                                                                                                     meloxicam
8282                                                                                                                                    cephalexin
8283                                                                                                                                   hydrocodone
8284                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8285                                                                                                                                   hydroxyzine
8286                                                                                                                                   oclacitinib
8287                                                                                                                                     deracoxib
8288                                                                                                                                   hydroxyzine
8289                                                                                                                                   oclacitinib
8290                                                                                                                                   oclacitinib
8291                                                                                                                                   hydroxyzine
8292                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8293                                                                                                             betamethasone, gentamicin sulfate
8294                                                                                                                                    grapiprant
8295                                                                                                                                   oclacitinib
8296                                                                                                                  ivermectin, pyrantel pamoate
8297                                                                                                                      fipronil, (s)-methoprene
8298                                                                                                           ear cleaner (zymox), hydrocortisone
8299                                                                                                             allergy immunotherapy - injection
8300                                                                                                                                    diclofenac
8301                                                                                                                    imidacloprid, pyriproxyfen
8302                                                                                                                                    ivermectin
8303                                                                                                                                   oclacitinib
8304                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8305                                                                       acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
8306                                                                                                                                    ivermectin
8307                                                                                                                                    fluralaner
8308                                                                                                                                   oclacitinib
8309                                                                                                              burow's solution, hydrocortisone
8310                                                                                                                                  flurbiprofen
8311                                                                                                                                  flurbiprofen
8312                                                                                                              burow's solution, hydrocortisone
8313                                                                                                                                  flurbiprofen
8314                                                                                                                  ivermectin, pyrantel pamoate
8315                                                                                                                    imidacloprid, pyriproxyfen
8316                                                                                                            amoxicillin, clavulanate potassium
8317                                                                                                                                    cephalexin
8318                                                                                                                sulfamethoxazole, trimethoprim
8319                                                                                                                                 ciprofloxacin
8320                                                                                                                                  praziquantel
8321                                                                                                                                    ivermectin
8322                                                                                                                                 metronidazole
8323                                                                                                                                 ciprofloxacin
8324                                                                                                                                    prednisone
8325                                                                                                                  ivermectin, pyrantel pamoate
8326                                                                                                         dinotefuran, permethrin, pyriproxyfen
8327                                                                                                                                 metronidazole
8328                                                                                                                                 ciprofloxacin
8329                                                                                                                                    prednisone
8330                                                                                                                               diphenhydramine
8331                                                                                                                  ivermectin, pyrantel pamoate
8332                                                                                                         dinotefuran, permethrin, pyriproxyfen
8333                                                                                                                                     carprofen
8334                                                                                                                                    ivermectin
8335                                                                                                         dinotefuran, permethrin, pyriproxyfen
8336                                                                                                                                  flurbiprofen
8337                                                                                                                                 cephalosporin
8338                                                                                                                                    prednisone
8339                                                                                                                  ivermectin, pyrantel pamoate
8340                                                                                                         dinotefuran, permethrin, pyriproxyfen
8341                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8342                                                                                                                                 metronidazole
8343                                                                                                                                    cephalexin
8344                                                                                                                  ivermectin, pyrantel pamoate
8345                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8346                                                                                                                                     carprofen
8347                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8348                                                                                                                                    cephalexin
8349                                                                                                         dinotefuran, permethrin, pyriproxyfen
8350                                                                                                                                     carprofen
8351                                                                                                                                       omega 3
8352                                                                                                                    unspecified shampoo/mousse
8353                                                                                                                                    ivermectin
8354                                                                                                                   lufenuron, milbemycin oxime
8355                                                                                                            fipronil, permethrin, pyriproxyfen
8356                                                                                                                                    fluralaner
8357                                                                                                                                    moxidectin
8358                                                                                                                   lufenuron, milbemycin oxime
8359                                                                                                                                    fluralaner
8360                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8361                                                                                                             trimeprazine tartrate, prednisone
8362                                                                                                                   chloroxylenol, ketoconazole
8363                                                                                                                                 metronidazole
8364                                                                                                                   lufenuron, milbemycin oxime
8365                                                                                                                                     lufenuron
8366                                                                                                                                     sarolaner
8367                                                                                                                                    fluralaner
8368                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8369                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                                                   lufenuron, milbemycin oxime
8371                                                                                                                                     sarolaner
8372                                                                                                                            maropitant citrate
8373                                                                                                                                 metronidazole
8374                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
8375                                                                                                       betamethasone, florfenicol, terbinafine
8376                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                                                   lufenuron, milbemycin oxime
8378                                                                                                                                     sarolaner
8379                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8380                                                                                                                                 metronidazole
8381                                                                                                                                 metronidazole
8382                                                                                                                                     probiotic
8383                                                                                                                                 metronidazole
8384                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8385                                                                                                                                     probiotic
8386                                                                                                                                    ivermectin
8387                                                                                                                  ivermectin, pyrantel pamoate
8388                                                                                                                  ivermectin, pyrantel pamoate
8389                                                                                                                  ivermectin, pyrantel pamoate
8390                                                                                                                                   fluconazole
8391                                                                                                                                   fluconazole
8392                                                                                                                                 levothyroxine
8393                                                                                                                                   fluconazole
8394                                                                                                                                 levothyroxine
8395                                                                                                                                     carprofen
8396                                                                                                                                   clindamycin
8397                                                                                                                                  chlorambucil
8398                                                                                                                                   fluconazole
8399                                                                                                                                 levothyroxine
8400                                                                                                                                     carprofen
8401                                                                                                                                    prednisone
8402                                                                                                                              pyrantel pamoate
8403                                                                                                                              sulfamethoxazole
8404                                                                                                                                     carprofen
8405                                                                                                                     unspecified otic ear pack
8406                                                                                                                                    cephalexin
8407                                                                                                                                      tramadol
8408                                                                                                                  ivermectin, pyrantel pamoate
8409                                                                                                  florfenicol, mometasone furoate, terbinafine
8410                                                                                                                                    ivermectin
8411                                                                                                                              pyrantel pamoate
8412                                                                                                                              pyrantel pamoate
8413                                                                                                                                   clindamycin
8414                                                                                                                          butorphanol tartrate
8415                                                                                                                                  acepromazine
8416                                                                                                                                      ketamine
8417                                                                                                                                      diazepam
8418                                                                                                                                    isoflurane
8419                                                                                                                                   doxycycline
8420                                                                                                                                    ivermectin
8421                                                                                                                                    ivermectin
8422                                                                                                                  ivermectin, pyrantel pamoate
8423                                                                                                                                    ivermectin
8424                                                                                                                    imidacloprid, pyriproxyfen
8425                                                                                                                  ivermectin, pyrantel pamoate
8426                                                                                                      febantel, praziquantel, pyrantel pamoate
8427                                                                                                                  ivermectin, pyrantel pamoate
8428                                                                                                                                 ciprofloxacin
8429                                                                                                                                     firocoxib
8430                                                                                                                  ivermectin, pyrantel pamoate
8431                                                                                                                polysulfated glycosaminoglycan
8432                                                                                                                                   clindamycin
8433                                                                                                                polysulfated glycosaminoglycan
8434                                                                                                                  ivermectin, pyrantel pamoate
8435                                                                                                                                     probiotic
8436                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8437                                                                                                                  ivermectin, pyrantel pamoate
8438                                                                                                                  ivermectin, pyrantel pamoate
8439                                                                                                                  ivermectin, pyrantel pamoate
8440                                                                                                                      fipronil, (s)-methoprene
8441                                                                                                                  ivermectin, pyrantel pamoate
8442                                                                                                                  ivermectin, pyrantel pamoate
8443                                                                                                                      fipronil, (s)-methoprene
8444                                                                                                                                    fluoxetine
8445                                                                                                                                     carprofen
8446                                                                                                                                    ivermectin
8447                                                                                                                                   doxycycline
8448                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8449                                                                                                                hydrocortisone, troleandomycin
8450                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8451                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8452                                                                                                            amoxicillin, clavulanate potassium
8453                                                                                                                              milbemycin oxime
8454                                                                                                                              milbemycin oxime
8455                                                                                                                          cefpodoxime proxetil
8456                                                                                                                                   oclacitinib
8457                                                                                                                          cefpodoxime proxetil
8458                                                                                                                                   oclacitinib
8459                                                                                                                                 metronidazole
8460                                                                                                                                     probiotic
8461                                                                                                                              milbemycin oxime
8462                                                                                                                                 metronidazole
8463                                                                                                                  ivermectin, pyrantel pamoate
8464                                                                                                                                     carprofen
8465                                                                                                                   lufenuron, milbemycin oxime
8466                                                                                                                   lufenuron, milbemycin oxime
8467                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8468                                                                                                                          cefpodoxime proxetil
8469                                                                                                                                    prednisone
8470                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8471                                                                                                                          cefpodoxime proxetil
8472                                                                                                                                    prednisone
8473                                                                                                                       triamcinolone acetonide
8474                                                                                                                          cefpodoxime proxetil
8475                                                                                                                       chlorhexidine gluconate
8476                                                                                                                                    afoxolaner
8477                                                                                                                                    loratadine
8478                                                                                                                       chlorhexidine gluconate
8479                                                                                                                       triamcinolone acetonide
8480                                                                                                                                    ivermectin
8481                                                                                                                                    afoxolaner
8482                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8483                                                                                                                                    ivermectin
8484                                                                                                                                    afoxolaner
8485                                                                                                                  ivermectin, pyrantel pamoate
8486                                                                                                                                    afoxolaner
8487                                                                                                                  ivermectin, pyrantel pamoate
8488                                                                                                                                    afoxolaner
8489                                                                                                                                    fluralaner
8490                                                                                                                                     sarolaner
8491                                                                                                                                    moxidectin
8492                                                                                                                                   clindamycin
8493                                                                                                             betamethasone, gentamicin sulfate
8494                                                                                                                                 marbofloxacin
8495                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8496                                                                                                                                    omeprazole
8497                                                                                                                                    omeprazole
8498                                                                                                                                    famotidine
8499                                                                                                                                metoclopramide
8500                                                                                                                                  flurbiprofen
8501                                                                                                                            maropitant citrate
8502                                                                                                                                    sucralfate
8503                                                                                                                                  capromorelin
8504                                                                                                                                    budesonide
8505                                                                                                                                     probiotic
8506                                                                                                                                    prednisone
8507                                                                                                                                    prednisone
8508                                                                                                            amoxicillin, clavulanate potassium
8509                                                                                                                                     probiotic
8510                                                                                                                                 metronidazole
8511                                                                                                                                     meloxicam
8512                                                                                                                            diethylstilbestrol
8513                                                                                                                               pseudoephedrine
8514                                                                                                                   lufenuron, milbemycin oxime
8515                                                                                                                   lufenuron, milbemycin oxime
8516                                                                                                                   lufenuron, milbemycin oxime
8517                                                                                                                               pseudoephedrine
8518                                                                                                                                       estriol
8519                                                                                                                                  acepromazine
8520                                                                                                                                 hydromorphone
8521                                                                                                                                      propofol
8522                                                                                                                                     midazolam
8523                                                                                                                                     carprofen
8524                                                                                                                                   sevoflurane
8525                                                                                                                                   bupivacaine
8526                                                                                                                                 levothyroxine
8527                                                                                                                                 levothyroxine
8528                                                                                                                milbemycin oxime, praziquantel
8529                                                                                                                                 levothyroxine
8530                                                                                                                               pseudoephedrine
8531                                                                                                                milbemycin oxime, praziquantel
8532                                                                                                                           phenylpropanolamine
8533                                                                                                                                 levothyroxine
8534                                                                                                            amoxicillin, clavulanate potassium
8535                                                                                                                                     toceranib
8536                                                                                                                                     toceranib
8537                                                                                                                                   fluconazole
8538                                                                                                                          cefpodoxime proxetil
8539                                                                                                                                    prednisone
8540                                                                                                                          cefpodoxime proxetil
8541                                                                                                                            miconazole nitrate
8542                                                                                                                                 metronidazole
8543                                                                                                                    milbemycin oxime, spinosad
8544                                                                                                                                     carprofen
8545                                                                                                                                      tramadol
8546                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8547                                                                                                                                    cephalexin
8548                                                                                                                                     carprofen
8549                                                                                                                                   finasteride
8550                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8551                                                                                                                  ivermectin, pyrantel pamoate
8552                                                                                                                                    ivermectin
8553                                                                                                                              milbemycin oxime
8554                                                                                                                              milbemycin oxime
8555                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8556                                                                                                                                       omega 3
8557                                                                                                                                 metronidazole
8558                                                                                                            amoxicillin, clavulanate potassium
8559                                                                                                                                    tobramycin
8560                                                                                                                                    gabapentin
8561                                                                                                                                   telmisartan
8562                                                                                                                                      ursodiol
8563                                                                                                                                    tacrolimus
8564                                                                                                                               apomorphine hcl
8565                                                                                                                            maropitant citrate
8566                                                                                                                          prednisolone acetate
8567                                                                                                            amoxicillin, clavulanate potassium
8568                                                                                                                                    amlodipine
8569                                                                                                                                   clopidogrel
8570                                                                                                                                   ondansetron
8571                                                                                                                                  capromorelin
8572                                                                                                                                      spinosad
8573                                                                                                                              milbemycin oxime
8574                                                                                                                   lufenuron, milbemycin oxime
8575                                                                                                                                  acepromazine
8576                                                                                                                                    cephalexin
8577                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8578                                                                                                                       acetic acid, boric acid
8579                                                                                                                                    prednisone
8580                                                                                                                                  ketoconazole
8581                                                                                              chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                                                   lufenuron, milbemycin oxime
8583                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                                           ear cleaner (zymox), hydrocortisone
8585                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
8587                                                                                                                   lufenuron, milbemycin oxime
8588                                                                                              chlorhexidine gluconate, enrofloxacin, tris-edta
8589                                                                                                                                    cephalexin
8590                                                                                                                                    prednisone
8591                                                                                                                    milbemycin oxime, spinosad
8592                                                                                                                                       omega 3
8593                                                                                          dexamethasone, enrofloxacin, ketoconazole, tris-edta
8594                                                                                                                                     trazodone
8595                                                                                                                  ivermectin, pyrantel pamoate
8596                                                                                                                                    afoxolaner
8597                                                                                                                    unspecified ear medication
8598                                                                                                        joint supplement (glucosamine hcl/msm)
8599                                                                                                                                  multivitamin
8600                                                                                                                                     vitamin c
8601                                                                                                                                     carprofen
8602                                                                                                                                 metronidazole
8603                                                                                                                                 metronidazole
8604                                                                                                      febantel, praziquantel, pyrantel pamoate
8605                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8606                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8607                                                                                                                    imidacloprid, pyriproxyfen
8608                                                                                                                                   doxycycline
8609                                                                                                                   lufenuron, milbemycin oxime
8610                                                                                                                                     carprofen
8611                                                                                                                                     carprofen
8612                                                                                                                                   doxycycline
8613                                                                                                             betamethasone, gentamicin sulfate
8614                                                                                                                                   doxycycline
8615                                                                                                                              milbemycin oxime
8616                                                                                                                                   doxycycline
8617                                                                                                                                    prednisone
8618                                                                                                                                 metronidazole
8619                                                                                                                                    cephalexin
8620                                                                                                                            maropitant citrate
8621                                                                                                                                     carprofen
8622                                                                                                                                     cefazolin
8623                                                                                                                          cefpodoxime proxetil
8624                                                                                                                                    gabapentin
8625                                                                                                                            maropitant citrate
8626                                                                                                                                     midazolam
8627                                                                                                                          butorphanol tartrate
8628                                                                                                                                  acepromazine
8629                                                                                                                                    alfaxalone
8630                                                                                                                                 buprenorphine
8631                                                                                                                    lactated ringer's solution
8632                                                                                                                                   sevoflurane
8633                                                                                                                                        oxygen
8634                                                                                                                                     carprofen
8635                                                                                                                                     carprofen
8636                                                                                                                                  enrofloxacin
8637                                                                                                                                    gabapentin
8638                                                                                                                                     carprofen
8639                                                                                                                                   doxycycline
8640                                                                                                            joint supplement (glucosamine hcl)
8641                                                                                                                          prebiotic, probiotic
8642                                                                                                                                   terbutaline
8643                                                                                                                                    ivermectin
8644                                                                                                                                 metronidazole
8645                                                                                                                                     cefovecin
8646                                                                                                                                 dexamethasone
8647                                                                                                                          butorphanol tartrate
8648                                                                                                                                      ketamine
8649                                                                                                                                      diazepam
8650                                                                                                                                     carprofen
8651                                                                                                                                     carprofen
8652                                                                                                                                      tramadol
8653                                                                                                                          cefpodoxime proxetil
8654                                                                                                                                 metronidazole
8655                                                                                                                praziquantel, pyrantel pamoate
8656                                                                                                                            maropitant citrate
8657                                                                                                                            maropitant citrate
8658                                                                                                                                 metronidazole
8659                                                                                                                           ear cleaner (zymox)
8660                                                                                                                  ivermectin, pyrantel pamoate
8661                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8662                                                                                                                                    gabapentin
8663                                                                                                                                     carprofen
8664                                                                                                                                    gabapentin
8665                                                                                                                                    grapiprant
8666                                                                                                                                     carprofen
8667                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8668                                                                                                                                    grapiprant
8669                                                                                                                  ivermectin, pyrantel pamoate
8670                                                                                                                          cefpodoxime proxetil
8671                                                                                                                    milbemycin oxime, spinosad
8672                                                                                                                    milbemycin oxime, spinosad
8673                                                                                                                    milbemycin oxime, spinosad
8674                                                                                                                    milbemycin oxime, spinosad
8675                                                                                                                    milbemycin oxime, spinosad
8676                                                                                                                    milbemycin oxime, spinosad
8677                                                                                                                    milbemycin oxime, spinosad
8678                                                                                                                                 metronidazole
8679                                                                                                                                    ivermectin
8680                                                                                                                  ivermectin, pyrantel pamoate
8681                                                                                                                                    cephalexin
8682                                                                                                                                    prednisone
8683                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8684                                                                                                                                    ivermectin
8685                                                                                                                                  ketoconazole
8686                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8687                                                                                                                                    prednisone
8688                                                                                                                                    cephalexin
8689                                                                                                                                    cetirizine
8690                                                                                                                               diphenhydramine
8691                                                                                                                                    cephalexin
8692                                                                                                                          cefpodoxime proxetil
8693                                                                                                                  ivermectin, pyrantel pamoate
8694                                                                                                                      fipronil, (s)-methoprene
8695                                                                                                                               diphenhydramine
8696                                                                                                                                  ketoconazole
8697                                                                                                           allergy immunotherapy - unspecified
8698                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
8699                                                                                                                            calming supplement
8700                                                                                                                                    ivermectin
8701                                                                                                                  ivermectin, pyrantel pamoate
8702                                                                                                                      fipronil, (s)-methoprene
8703                                                                                                                                  ketoconazole
8704                                                                                                           allergy immunotherapy - unspecified
8705                                                                                                                                    nitenpyram
8706                                                                                                                  ivermectin, pyrantel pamoate
8707                                                                                                                      fipronil, (s)-methoprene
8708                                                                                                                                     meloxicam
8709                                                                                                                                  ketoconazole
8710                                                                                                           allergy immunotherapy - unspecified
8711                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8712                                                                                                                                       omega 3
8713                                                                                                                            calming supplement
8714                                                                                                                  ivermectin, pyrantel pamoate
8715                                                                                                                                     meloxicam
8716                                                                                                           allergy immunotherapy - unspecified
8717                                                                                                                               diphenhydramine
8718                                                                                                                                       omega 3
8719                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8720                                                                                                                                 marbofloxacin
8721                                                                                                                                     trazodone
8722                                                                                                                                    moxidectin
8723                                                                                                                                  ketoconazole
8724                                                                                                  florfenicol, mometasone furoate, terbinafine
8725                                                                                                                       triamcinolone acetonide
8726                                                                                                                  rx diet - food sensitivities
8727                                                                                                                                     trazodone
8728                                                                                                                                  ketoconazole
8729                                                                                                  florfenicol, mometasone furoate, terbinafine
8730                                                                                                                                    moxidectin
8731                                                                                                                      flumethrin, imidacloprid
8732                                                                                                                                    moxidectin
8733                                                                                                                                 marbofloxacin
8734                                                                                                  florfenicol, mometasone furoate, terbinafine
8735                                                                                                                                     mupirocin
8736                                                                                                         chlorhexidine gluconate, ketoconazole
8737                                                                                                                                 marbofloxacin
8738                                                                                                  florfenicol, mometasone furoate, terbinafine
8739                                                                                                                                     trazodone
8740                                                                                                                                     mupirocin
8741                                                                                                               atropine sulfate, diphenoxylate
8742                                                                                                                                 marbofloxacin
8743                                                                                                                                  ketoconazole
8744                                                                                                                                     mupirocin
8745                                                                                                         chlorhexidine gluconate, ketoconazole
8746                                                                                                                                 marbofloxacin
8747                                                                                                                                    gabapentin
8748                                                                                                                                    gabapentin
8749                                                                                                                                     trazodone
8750                                                                                                                                    gabapentin
8751                                                                                                                                    gabapentin
8752                                                                                                                                     trazodone
8753                                                                                                                                    gabapentin
8754                                                                                                                                    gabapentin
8755                                                                                                                                    gabapentin
8756                                                                                                                              milbemycin oxime
8757                                                                                                                              milbemycin oxime
8758                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8759                                                                                                                    imidacloprid, pyriproxyfen
8760                                                                                                                   lufenuron, milbemycin oxime
8761                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8762                                                                                                                                   clindamycin
8763                                                                                                                                   doxycycline
8764                                                                                                                                   clindamycin
8765                                                                                                                              milbemycin oxime
8766                                                                                                                  ivermectin, pyrantel pamoate
8767                                                                                                         dinotefuran, permethrin, pyriproxyfen
8768                                                                                                                  ivermectin, pyrantel pamoate
8769                                                                                                         dinotefuran, permethrin, pyriproxyfen
8770                                                                                                                  ivermectin, pyrantel pamoate
8771                                                                                                         dinotefuran, permethrin, pyriproxyfen
8772                                                                                                                                     deracoxib
8773                                                                                                                                   oclacitinib
8774                                                                                                                                   oclacitinib
8775                                                                                                                                     deracoxib
8776                                                                                                         dinotefuran, permethrin, pyriproxyfen
8777                                                                                                                  ivermectin, pyrantel pamoate
8778                                                                                                                  ivermectin, pyrantel pamoate
8779                                                                                                         dinotefuran, permethrin, pyriproxyfen
8780                                                                                                                  ivermectin, pyrantel pamoate
8781                                                                                                         dinotefuran, permethrin, pyriproxyfen
8782                                                                                                                                 metronidazole
8783                                                                                                                            maropitant citrate
8784                                                                                                                                   doxycycline
8785                                                                                                                               diphenhydramine
8786                                                                                                                  ivermectin, pyrantel pamoate
8787                                                                                                                        indoxacarb, permethrin
8788                                                                                                                                   minocycline
8789                                                                                                                                     carprofen
8790                                                                                                                  ivermectin, pyrantel pamoate
8791                                                                                                                                    fluralaner
8792                                                                                                                       ketoconazole, tris-edta
8793                                                                                                                                    fluralaner
8794                                                                                                                  ivermectin, pyrantel pamoate
8795                                                                                                                  ivermectin, pyrantel pamoate
8796                                                                                                                                    fluralaner
8797                                                                                                                                    gabapentin
8798                                                                                                                                    gabapentin
8799                                                                                                                                   bedinvetmab
8800                                                                                                                                     carprofen
8801                                                                                                                                   doxycycline
8802                                                                                                                                    gabapentin
8803                                                                                                                                   bedinvetmab
8804                                                                                                                                     carprofen
8805                                                                                                                                    ivermectin
8806                                                                                                                                  fenbendazole
8807                                                                                                                              sulfadimethoxine
8808                                                                                                            fipronil, permethrin, pyriproxyfen
8809                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8810                                                                                                                                    ivermectin
8811                                                                                                                                    cephalexin
8812                                                                                                                                  enrofloxacin
8813                                                                                                                                 metronidazole
8814                                                                                                                                 metronidazole
8815                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8816                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8817                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
8818                                                                                                                                    ivermectin
8819                                                                                                                  ivermectin, pyrantel pamoate
8820                                                                                                                                    afoxolaner
8821                                                                                                                            maropitant citrate
8822                                                                                                                                    famotidine
8823                                                                                                                                 metronidazole
8824                                                                                                                                    famotidine
8825                                                                                                            amoxicillin, clavulanate potassium
8826                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8827                                                                                                                                    afoxolaner
8828                                                                                                                  ivermectin, pyrantel pamoate
8829                                                                                                                  ivermectin, pyrantel pamoate
8830                                                                                                                                    afoxolaner
8831                                                                                                                  ivermectin, pyrantel pamoate
8832                                                                                                                  ivermectin, pyrantel pamoate
8833                                                                                                                  ivermectin, pyrantel pamoate
8834                                                                                                                                    cephalexin
8835                                                                                                                                     carprofen
8836                                                                                                                                    cephalexin
8837                                                                                                                                    afoxolaner
8838                                                                                                                                     carprofen
8839                                                                                                                  ivermectin, pyrantel pamoate
8840                                                                                                                  ivermectin, pyrantel pamoate
8841                                                                                                                      fipronil, (s)-methoprene
8842                                                                                                                  ivermectin, pyrantel pamoate
8843                                                                                                                      fipronil, (s)-methoprene
8844                                                                                                                                    ivermectin
8845                                                                                                                                    afoxolaner
8846                                                                                                                                    alprazolam
8847                                                                                                                          cefpodoxime proxetil
8848                                                                                                                                    gabapentin
8849                                                                                                                                     carprofen
8850                                                                                                                          cefpodoxime proxetil
8851                                                                                                                                     probiotic
8852                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
8854                                                                                                                                     carprofen
8855                                                                                                                                    ivermectin
8856                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8857                                                                                                                                   amoxicillin
8858                                                                                                                                    grapiprant
8859                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8860                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8861                                                                                                                                    cephalexin
8862                                                                                                            unspecified heartworm preventative
8863                                                                                                                                  imidacloprid
8864                                                                                                            unspecified heartworm preventative
8865                                                                                                                  ivermectin, pyrantel pamoate
8866                                                                                                                                    afoxolaner
8867                                                                                                                                    ivermectin
8868                                                                                                                                   oclacitinib
8869                                                                                                                                      spinosad
8870                                                                                                                                 ciprofloxacin
8871                                                                                                                                   clindamycin
8872                                                                                                                          cefpodoxime proxetil
8873                                                                                                                                   fluconazole
8874                                                                                                                                   fluconazole
8875                                                                                                                                    lokivetmab
8876                                                                                                             betamethasone, gentamicin sulfate
8877                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8878                                                                                                                                     meclizine
8879                                                                                                                  ivermectin, pyrantel pamoate
8880                                                                                                                                    ivermectin
8881                                                                                                                              pyrantel pamoate
8882                                                                                                                                    ivermectin
8883                                                                                                                              pyrantel pamoate
8884                                                                                                                          cefpodoxime proxetil
8885                                                                                                                  ivermectin, pyrantel pamoate
8886                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8887                                                                                                                          cefpodoxime proxetil
8888                                                                                                                                    ivermectin
8889                                                                                                                              pyrantel pamoate
8890                                                                                                                  ivermectin, pyrantel pamoate
8891                                                                                                                                 metronidazole
8892                                                                                                                  ivermectin, pyrantel pamoate
8893                                                                                                                                     carprofen
8894                                                                                                                                      tramadol
8895                                                                                                                          prednisolone acetate
8896                                                                                                                                    amantadine
8897                                                                                                                                 methocarbamol
8898                                                                                                                                     trazodone
8899                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8900                                                                                                                                     carprofen
8901                                                                                                                                     carprofen
8902                                                                                                                                 metronidazole
8903                                                                                                             betamethasone, gentamicin sulfate
8904                                                                                                                                 metronidazole
8905                                                                                                                                 levothyroxine
8906                                                                                                                                 metronidazole
8907                                                                                                                                 levothyroxine
8908                                                                                                                    milbemycin oxime, spinosad
8909                                                                                                                                   amoxicillin
8910                                                                                                                                 metronidazole
8911                                                                                                                   lufenuron, milbemycin oxime
8912                                                                                                                                 levothyroxine
8913                                                                                                                                 levothyroxine
8914                                                                                                                   lufenuron, milbemycin oxime
8915                                                                                                                                 levothyroxine
8916                                                                                                                   lufenuron, milbemycin oxime
8917                                                                                                                                 levothyroxine
8918                                                                                                                   lufenuron, milbemycin oxime
8919                                                                                                                                 levothyroxine
8920                                                                                                                                 levothyroxine
8921                                                                                                                                     carprofen
8922                                                                                                                                 levothyroxine
8923                                                                                                                                    lokivetmab
8924                                                                                                                                l-asparaginase
8925                                                                                                                                    prednisone
8926                                                                                                                                    ivermectin
8927                                                                                                                              pyrantel pamoate
8928                                                                                                                                  praziquantel
8929                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8930                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8931                                                                                                                               diphenhydramine
8932                                                                                                                              milbemycin oxime
8933                                                                                                                                 metronidazole
8934                                                                                                                                    loperamide
8935                                                                                                                              milbemycin oxime
8936                                                                                                                                    fluralaner
8937                                                                                                                              milbemycin oxime
8938                                                                                                                                    fluralaner
8939                                                                                                                                   oclacitinib
8940                                                                                                                              milbemycin oxime
8941                                                                                                                                    fluralaner
8942                                                                                                                                   oclacitinib
8943                                                                                                                              milbemycin oxime
8944                                                                                                                                    fluralaner
8945                                                                                                                                  praziquantel
8946                                                                                                                                   oclacitinib
8947                                                                                                                                 levothyroxine
8948                                                                                                                                 levothyroxine
8949                                                                                                                                   oclacitinib
8950                                                                                                                                   oclacitinib
8951                                                                                                                                 levothyroxine
8952                                                                                                                            maropitant citrate
8953                                                                                                                            maropitant citrate
8954                                                                                                                                    omeprazole
8955                                                                                                                                   oclacitinib
8956                                                                                                                                  capromorelin
8957                                                                                                                                    sucralfate
8958                                                                                                                                    ivermectin
8959                                                                                                                              pyrantel pamoate
8960                                                                                                                                  praziquantel
8961                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8962                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8963                                                                                                                               diphenhydramine
8964                                                                                                                              milbemycin oxime
8965                                                                                                                              milbemycin oxime
8966                                                                                                                                    fluralaner
8967                                                                                                                              milbemycin oxime
8968                                                                                                                                    fluralaner
8969                                                                                                                              milbemycin oxime
8970                                                                                                                                    fluralaner
8971                                                                                                                              milbemycin oxime
8972                                                                                                                                    fluralaner
8973                                                                                                                                  praziquantel
8974                                                                                                                            maropitant citrate
8975                                                                                                                            maropitant citrate
8976                                                                                                                   lufenuron, milbemycin oxime
8977                                                                                                                   lufenuron, milbemycin oxime
8978                                                                                                                   lufenuron, milbemycin oxime
8979                                                                                                                                 metronidazole
8980                                                                                                                            maropitant citrate
8981                                                                                                             trimeprazine tartrate, prednisone
8982                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8983                                                                                                                                    cephalexin
8984                                                                                                             trimeprazine tartrate, prednisone
8985                                                                                                             trimeprazine tartrate, prednisone
8986                                                                                                                                   oclacitinib
8987                                                                                                                                   oclacitinib
8988                                                                                                                  ivermectin, pyrantel pamoate
8989                                                                                                                                   oclacitinib
8990                                                                                                                                     carprofen
8991                                                                                                                                    gabapentin
8992                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8993                                                                                                                  ivermectin, pyrantel pamoate
8994                                                                                                                                   oclacitinib
8995                                                                                                                            miconazole nitrate
8996                                                                                                                                    lokivetmab
8997                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8998                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8999                                                                                                                                    lokivetmab
9000                                                                                                                                    lokivetmab
9001                                                                                                                                     carprofen
9002                                                                                                                                     carprofen
9003                                                                                                                                    gabapentin
9004                                                                                                                          cefpodoxime proxetil
9005                                                                                                                                    lokivetmab
9006                                                                                                                  ivermectin, pyrantel pamoate
9007                                                                                                                                    lokivetmab
9008                                                                                                                                    lokivetmab
9009                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9010                                                                                                                          cefpodoxime proxetil
9011                                                                                                                                    gabapentin
9012                                                                                                                                     carprofen
9013                                                                                                                          cefpodoxime proxetil
9014                                                                                                                                    lokivetmab
9015                                                                                                                                     carprofen
9016                                                                                                                          cefpodoxime proxetil
9017                                                                                                                                    lokivetmab
9018                                                                                                                                     carprofen
9019                                                                                                                              milbemycin oxime
9020                                                                                                                   lufenuron, milbemycin oxime
9021                                                                                                                                    cephalexin
9022                                                                                                                       triamcinolone acetonide
9023                                                                                                                   lufenuron, milbemycin oxime
9024                                                                                                                                  multivitamin
9025                                                                                                                              milbemycin oxime
9026                                                                                                                milbemycin oxime, praziquantel
9027                                                                                                                               diphenhydramine
9028                                                                                                                                 dexamethasone
9029                                                                                                                               diphenhydramine
9030                                                                                                                                    prednisone
9031                                                                                                                              milbemycin oxime
9032                                                                                                                                    prednisone
9033                                                                                                                                    fluralaner
9034                                                                                                                milbemycin oxime, praziquantel
9035                                                                                                                                  fenbendazole
9036                                                                                                                            methylprednisolone
9037                                                                                                                            maropitant citrate
9038                                                                                                                                    gabapentin
9039                                                                                                                                     meloxicam
9040                                                                                                                                    grapiprant
9041                                                                                                                   lufenuron, milbemycin oxime
9042                                                                                                                   lufenuron, milbemycin oxime
9043                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9044                                                                                                                                  fenbendazole
9045                                                                                                                   lufenuron, milbemycin oxime
9046                                                                                                                   lufenuron, milbemycin oxime
9047                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9048                                                                                                                   lufenuron, milbemycin oxime
9049                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9050                                                                                                                   lufenuron, milbemycin oxime
9051                                                                                                            amoxicillin, clavulanate potassium
9052                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                                     probiotic
9054                                                                                                                              milbemycin oxime
9055                                                                                                                  ivermectin, pyrantel pamoate
9056                                                                                                                milbemycin oxime, praziquantel
9057                                                                                                                                    cephalexin
9058                                                                                                                                     carprofen
9059                                                                                                                                 metronidazole
9060                                                                                                                  ivermectin, pyrantel pamoate
9061                                                                                                                                     carprofen
9062                                                                                                                          cefpodoxime proxetil
9063                                                                                                     neomycin sulfate, polymyxin b, gramicidin
9064                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                                    sucralfate
9066                                                                                                                                    famotidine
9067                                                                                                                                      tramadol
9068                                                                                                                                   amoxicillin
9069                                                                                                                                     carprofen
9070                                                                                                                  ivermectin, pyrantel pamoate
9071                                                                                                                                    fluralaner
9072                                                                                                                                   doxycycline
9073                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9074                                                                                                            amoxicillin, clavulanate potassium
9075                                                                                                                              milbemycin oxime
9076                                                                                                                                    fluralaner
9077                                                                                                                                  enrofloxacin
9078                                                                                                                              milbemycin oxime
9079                                                                                                                                    fluralaner
9080                                                                                                                                   doxycycline
9081                                                                                                                                    lokivetmab
9082                                                                                                                                   telmisartan
9083                                                                                                                                   telmisartan
9084                                                                                                                        unspecified medication
9085                                                                                                                                     cefazolin
9086                                                                                                                                    gabapentin
9087                                                                                                                            maropitant citrate
9088                                                                                                                                      fentanyl
9089                                                                                                                                  enrofloxacin
9090                                                                                                                                   telmisartan
9091                                                                                                                                     ofloxacin
9092                                                                                                                                   doxycycline
9093                                                                                                                                    prednisone
9094                                                                                                                    milbemycin oxime, spinosad
9095                                                                                                                  ivermectin, pyrantel pamoate
9096                                                                                                                                  cyclosporine
9097                                                                                                                                  cyclosporine
9098                                                                                                                  ivermectin, pyrantel pamoate
9099                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                                     probiotic
9101                                                                                                                                       omega 3
9102                                                                                                                                  cyclosporine
9103                                                                                                                                  fenbendazole
9104                                                                                                                                    budesonide
9105                                                                                                                                    ivermectin
9106                                                                                                            fipronil, permethrin, pyriproxyfen
9107                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9108                                                                                                                                   doxycycline
9109                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9110                                                                                                                                     firocoxib
9111                                                                                                                                   amoxicillin
9112                                                                                                                                 metronidazole
9113                                                                                                                                    cephalexin
9114                                                                                                                                    prednisone
9115                                                                                                                                    prednisone
9116                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9117                                                                                                                                   doxycycline
9118                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9119                                                                                                                                    prednisone
9120                                                                                                                                    ivermectin
9121                                                                                                                                    afoxolaner
9122                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9123                                                                                                                                       omega 3
9124                                                                                                                                     probiotic
9125                                                                                                                                    cephalexin
9126                                                                                                                                    prednisone
9127                                                                                                                  ivermectin, pyrantel pamoate
9128                                                                                                                                    afoxolaner
9129                                                                                                mometasone furoate, orbifloxacin, posaconazole
9130                                                                                                                  ivermectin, pyrantel pamoate
9131                                                                                                                                    afoxolaner
9132                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9133                                                                                                                                     probiotic
9134                                                                                                                                       omega 3
9135                                                                                                                                 metronidazole
9136                                                                                                              burow's solution, hydrocortisone
9137                                                                                                                          cefpodoxime proxetil
9138                                                                                                                  ivermectin, pyrantel pamoate
9139                                                                                                                                    afoxolaner
9140                                                                                                                  ivermectin, pyrantel pamoate
9141                                                                                                                                    afoxolaner
9142                                                                                                                                    ivermectin
9143                                                                                                                                    afoxolaner
9144                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9145                                                                                                                                     probiotic
9146                                                                                                                                  fenbendazole
9147                                                                                                                                 metronidazole
9148                                                                                                                                 levothyroxine
9149                                                                                                                          cefpodoxime proxetil
9150                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9151                                                                                                                                     firocoxib
9152                                                                                                                          cefpodoxime proxetil
9153                                                                                                                                 metronidazole
9154                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9155                                                                                                                                   hydroxyzine
9156                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9157                                                                                                                                     carprofen
9158                                                                                                                      fipronil, (s)-methoprene
9159                                                                                                                  ivermectin, pyrantel pamoate
9160                                                                                                                      fipronil, (s)-methoprene
9161                                                                                                                  ivermectin, pyrantel pamoate
9162                                                                                                                          cefpodoxime proxetil
9163                                                                                                                  ivermectin, pyrantel pamoate
9164                                                                                                            fipronil, permethrin, pyriproxyfen
9165                                                                                                                            calming supplement
9166                                                                                                                              milbemycin oxime
9167                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
9168                                                                                                                                     thyroxine
9169                                                                                                                                     trazodone
9170                                                                                                                              milbemycin oxime
9171                                                                                                                              milbemycin oxime
9172                                                                                                                                     sarolaner
9173                                                                                                                                 levothyroxine
9174                                                                                                                                     trazodone
9175                                                                                                                                     carprofen
9176                                                                                                                                     carprofen
9177                                                                                                                                 levothyroxine
9178                                                                                                                                     trazodone
9179                                                                                                                                     carprofen
9180                                                                                                                  ivermectin, pyrantel pamoate
9181                                                                                                                                     probiotic
9182                                                                                                                                      tramadol
9183                                                                                                                                     carprofen
9184                                                                                                                                 methocarbamol
9185                                                                                                                                     carprofen
9186                                                                                                                                      tramadol
9187                                                                                                             betamethasone, gentamicin sulfate
9188                                                                                                                                   oclacitinib
9189                                                                                                                  ivermectin, pyrantel pamoate
9190                                                                                                                            maropitant citrate
9191                                                                                                                          cefpodoxime proxetil
9192                                                                                                                                 methocarbamol
9193                                                                                                                                     probiotic
9194                                                                                                                            maropitant citrate
9195                                                                                                                              tylosin tartrate
9196                                                                                                                                    famotidine
9197                                                                                                                          digestive supplement
9198                                                                                                                  ivermectin, pyrantel pamoate
9199                                                                                                                      flumethrin, imidacloprid
9200                                                                                                                  ivermectin, pyrantel pamoate
9201                                                                                                             allergy immunotherapy - injection
9202                                                                                                                  ivermectin, pyrantel pamoate
9203                                                                                                             allergy immunotherapy - injection
9204                                                                                                                                   oclacitinib
9205                                                                                                                          cefpodoxime proxetil
9206                                                                                                                                     carprofen
9207                                                                                                                            maropitant citrate
9208                                                                                                                                       taurine
9209                                                                                                                  ivermectin, pyrantel pamoate
9210                                                                                                                                       taurine
9211                                                                                                                              tylosin tartrate
9212                                                                                                                                    gabapentin
9213                                                                                                                                     carprofen
9214                                                                                                                              tylosin tartrate
9215                                                                                                                                       taurine
9216                                                                                                                                    gabapentin
9217                                                                                                                                     carprofen
9218                                                                                                                                    amantadine
9219                                                                                                                polysulfated glycosaminoglycan
9220                                                                                                                                       taurine
9221                                                                                                                                     carprofen
9222                                                                                                                              tylosin tartrate
9223                                                                                                                                    gabapentin
9224                                                                                                                polysulfated glycosaminoglycan
9225                                                                                                                                     trazodone
9226                                                                                                                                     carprofen
9227                                                                                                                                    amantadine
9228                                                                                                                                    pregabalin
9229                                                                                                                               diphenhydramine
9230                                                                                                               ear cleaner (epi-otic advanced)
9231                                                                                                                                    cetirizine
9232                                                                                                                                       menthol
9233                                                                                                                                    cephalexin
9234                                                                                                                               diphenhydramine
9235                                                                                                                                    cephalexin
9236                                                                                                                  ivermectin, pyrantel pamoate
9237                                                                                                                               diphenhydramine
9238                                                                                                  florfenicol, mometasone furoate, terbinafine
9239                                                                                                           allergy immunotherapy - unspecified
9240                                                                                                                unspecified allergy medication
9241                                                                                                                 allergy immunotherapy - drops
9242                                                                                                                  ivermectin, pyrantel pamoate
9243                                                                                                                                 levothyroxine
9244                                                                                                           allergy immunotherapy - unspecified
9245                                                                                                                                 levothyroxine
9246                                                                                                                                    grapiprant
9247                                                                                                                polysulfated glycosaminoglycan
9248                                                                                                                                    grapiprant
9249                                                                                                                  ivermectin, pyrantel pamoate
9250                                                                                                                  ivermectin, pyrantel pamoate
9251                                                                                                                                 levothyroxine
9252                                                                                                                                    ivermectin
9253                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                                                  ivermectin, pyrantel pamoate
9255                                                                                                                                 levothyroxine
9256                                                                                                                                 metronidazole
9257                                                                                                                  ivermectin, pyrantel pamoate
9258                                                                                                                                 levothyroxine
9259                                                                                                                                    afoxolaner
9260                                                                                                                                 metronidazole
9261                                                                                                                                 levothyroxine
9262                                                                                                                                 metronidazole
9263                                                                                                                                 metronidazole
9264                                                                                                                                  fenbendazole
9265                                                                                                                  ivermectin, pyrantel pamoate
9266                                                                                                                  ivermectin, pyrantel pamoate
9267                                                                                                                              milbemycin oxime
9268                                                                                                                                    fluralaner
9269                                                                                                                  ivermectin, pyrantel pamoate
9270                                                                                                                                    fluralaner
9271                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9272                                                                                                                                     carprofen
9273                                                                                                                                   doxycycline
9274                                                                                                                                   guaifenesin
9275                                                                                                                                       omega 3
9276                                                                                                                                    famotidine
9277                                                                                                                                 metronidazole
9278                                                                                                                                 metronidazole
9279                                                                                                                                  acepromazine
9280                                                                                                                                      tramadol
9281                                                                                                                                     deracoxib
9282                                                                                                                                  fenbendazole
9283                                                                                                                          cefpodoxime proxetil
9284                                                                                                                                 metronidazole
9285                                                                                                                              sulfadimethoxine
9286                                                                                                                              sulfadimethoxine
9287                                                                                                                                    ivermectin
9288                                                                                                                              pyrantel pamoate
9289                                                                                                                                     probiotic
9290                                                                                                                    milbemycin oxime, spinosad
9291                                                                                                                                 metronidazole
9292                                                                                                                    milbemycin oxime, spinosad
9293                                                                                                                    milbemycin oxime, spinosad
9294                                                                                                                    milbemycin oxime, spinosad
9295                                                                                                                    milbemycin oxime, spinosad
9296                                                                                                                                   oclacitinib
9297                                                                                                                                       omega 3
9298                                                                                                                                   oclacitinib
9299                                                                                                                    milbemycin oxime, spinosad
9300                                                                                                                                   oclacitinib
9301                                                                                                                                 buprenorphine
9302                                                                                                                                 metronidazole
9303                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9304                                                                                                                                   doxycycline
9305                                                                                                                                    ivermectin
9306                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
9307                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
9308                                                                                                                  ivermectin, pyrantel pamoate
9309                                                                                                         dinotefuran, permethrin, pyriproxyfen
9310                                                                                                                  ivermectin, pyrantel pamoate
9311                                                                                                                                    afoxolaner
9312                                                                                                                                    ivermectin
9313                                                                                                                                    afoxolaner
9314                                                                                                                                     carprofen
9315                                                                                                                                     carprofen
9316                                                                                                                                     meloxicam
9317                                                                                                      febantel, praziquantel, pyrantel pamoate
9318                                                                                                                                      tramadol
9319                                                                                                                                     carprofen
9320                                                                                                                  ivermectin, pyrantel pamoate
9321                                                                                                                  ivermectin, pyrantel pamoate
9322                                                                                                                                 marbofloxacin
9323                                                                                                                                      tramadol
9324                                                                                                                                     carprofen
9325                                                                                                                           silver sulfadiazine
9326                                                                                                                  ivermectin, pyrantel pamoate
9327                                                                                                                                   clindamycin
9328                                                                                                                              pyrantel pamoate
9329                                                                                                                                    moxidectin
9330                                                                                                                              pyrantel pamoate
9331                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9332                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9333                                                                                                                                  clomipramine
9334                                                                                                                                      spinosad
9335                                                                                                                                    ivermectin
9336                                                                                                                                    ivermectin
9337                                                                                                                  ivermectin, pyrantel pamoate
9338                                                                                                                          cefpodoxime proxetil
9339                                                                                                                                    grapiprant
9340                                                                                                                                    gabapentin
9341                                                                                                                      homatropine, hydrocodone
9342                                                                                                                                    prednisone
9343                                                                                                                                  acepromazine
9344                                                                                                                              atropine sulfate
9345                                                                                                                         tiletamine, zolazepam
9346                                                                                                                                    cephalexin
9347                                                                                                                           ear cleaner (zymox)
9348                                                                                                                                  enrofloxacin
9349                                                                                                                          cefpodoxime proxetil
9350                                                                                                                                     carprofen
9351                                                                                                                                    moxidectin
9352                                                                                                                          cefpodoxime proxetil
9353                                                                                                                  ivermectin, pyrantel pamoate
9354                                                                                                                                   amoxicillin
9355                                                                                                                                    cephalexin
9356                                                                                                                                     carprofen
9357                                                                                                                                      tramadol
9358                                                                                                                                    prednisone
9359                                                                                                                                   vinblastine
9360                                                                                                                                    omeprazole
9361                                                                                                                  ivermectin, pyrantel pamoate
9362                                                                                                                  ivermectin, pyrantel pamoate
9363                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9364                                                                                                                                   amoxicillin
9365                                                                                                                                     carprofen
9366                                                                                                                  ivermectin, pyrantel pamoate
9367                                                                                                                                    fluralaner
9368                                                                                                                                   amoxicillin
9369                                                                                                                                     carprofen
9370                                                                                                                                    cephalexin
9371                                                                                                                                    gabapentin
9372                                                                                                                                     carprofen
9373                                                                                                                                    cephalexin
9374                                                                                                                                     carprofen
9375                                                                                                                                    cephalexin
9376                                                                                                                                     thyroxine
9377                                                                                                                                     carprofen
9378                                                                                                                                    trilostane
9379                                                                                                                                     thyroxine
9380                                                                                                                                    trilostane
9381                                                                                                                                     thyroxine
9382                                                                                                                  ivermectin, pyrantel pamoate
9383                                                                                                         dinotefuran, permethrin, pyriproxyfen
9384                                                                                                           ear cleaner (zymox), hydrocortisone
9385                                                                                                                           ear cleaner (zymox)
9386                                                                                                                  ivermectin, pyrantel pamoate
9387                                                                                                         dinotefuran, permethrin, pyriproxyfen
9388                                                                                                                               diphenhydramine
9389                                                                                                                                    afoxolaner
9390                                                                                                                  ivermectin, pyrantel pamoate
9391                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9392                                                                                                                  ivermectin, pyrantel pamoate
9393                                                                                                                                    afoxolaner
9394                                                                                                                  ivermectin, pyrantel pamoate
9395                                                                                                                                    afoxolaner
9396                                                                                                                  ivermectin, pyrantel pamoate
9397                                                                                                                                    afoxolaner
9398                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9399                                                                                                                  ivermectin, pyrantel pamoate
9400                                                                                                                                    afoxolaner
9401                                                                                                                                    cephalexin
9402                                                                                                                                     carprofen
9403                                                                                                                                      diazepam
9404                                                                                                                                      ketamine
9405                                                                                                                          butorphanol tartrate
9406                                                                                                                                    isoflurane
9407                                                                                                                                    prednisone
9408                                                                                                                                    cephalexin
9409                                                                                                                                    afoxolaner
9410                                                                                                                  ivermectin, pyrantel pamoate
9411                                                                                                                               diphenhydramine
9412                                                                                                                                     carprofen
9413                                                                                                                         tear stain supplement
9414                                                                                                                                    ivermectin
9415                                                                                                                  ivermectin, pyrantel pamoate
9416                                                                                                                       acetic acid, boric acid
9417                                                                                                                      fipronil, (s)-methoprene
9418                                                                                                                              phytosphingosine
9419                                                                                                                                 marbofloxacin
9420                                                                                                                          cefpodoxime proxetil
9421                                                                                                                      flumethrin, imidacloprid
9422                                                                                                                  ivermectin, pyrantel pamoate
9423                                                                                                                          cefpodoxime proxetil
9424                                                                                                                                   oclacitinib
9425                                                                                                           allergy immunotherapy - unspecified
9426                                                                                                                  ivermectin, pyrantel pamoate
9427                                                                                                                                 metronidazole
9428                                                                                                            amoxicillin, clavulanate potassium
9429                                                                           bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9430                                                                                                                                     carprofen
9431                                                                                                                          cefpodoxime proxetil
9432                                                                                                                      flumethrin, imidacloprid
9433                                                                                                                  ivermectin, pyrantel pamoate
9434                                                                                                                  ivermectin, pyrantel pamoate
9435                                                                                                             allergy immunotherapy - injection
9436                                                                                                                  ivermectin, pyrantel pamoate
9437                                                                                                                          cefpodoxime proxetil
9438                                                                                                             allergy immunotherapy - injection
9439                                                                                                                                       omega 3
9440                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9441                                                                                                                      urinary tract supplement
9442                                                                                                            amoxicillin, clavulanate potassium
9443                                                                                                                                   amoxicillin
9444                                                                                                                                     carprofen
9445                                                                                                                                   amoxicillin
9446                                                                                                                                    gabapentin
9447                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9448                                                                                                                          cefpodoxime proxetil
9449                                                                                                                                 metronidazole
9450                                                                                                                              sulfadimethoxine
9451                                                                                                                              sulfadimethoxine
9452                                                                                                                  ivermectin, pyrantel pamoate
9453                                                                                                                      fipronil, (s)-methoprene
9454                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9455                                                                                                                  ivermectin, pyrantel pamoate
9456                                                                                                                      fipronil, (s)-methoprene
9457                                                                                                                              pyrantel pamoate
9458                                                                                                                  ivermectin, pyrantel pamoate
9459                                                                                                                                    afoxolaner
9460                                                                                                                  ivermectin, pyrantel pamoate
9461                                                                                                                                    afoxolaner
9462                                                                                                                  ivermectin, pyrantel pamoate
9463                                                                                                                                    afoxolaner
9464                                                                                                                              milbemycin oxime
9465                                                                                                                                    afoxolaner
9466                                                                                                                                    ivermectin
9467                                                                                                                  ivermectin, pyrantel pamoate
9468                                                                                                                                    ivermectin
9469                                                                                                                           phenylpropanolamine
9470                                                                                                                           phenylpropanolamine
9471                                                                                                                  ivermectin, pyrantel pamoate
9472                                                                                                                  ivermectin, pyrantel pamoate
9473                                                                                                                                    cephalexin
9474                                                                                                                  ivermectin, pyrantel pamoate
9475                                                                                                                  ivermectin, pyrantel pamoate
9476                                                                                                                           phenylpropanolamine
9477                                                                                                                                 metronidazole
9478                                                                                                                                  fenbendazole
9479                                                                                                                           phenylpropanolamine
9480                                                                                                                                 levothyroxine
9481                                                                                                                                     carprofen
9482                                                                                                                              tylosin tartrate
9483                                                                                                                              sulfadimethoxine
9484                                                                                                                                 metronidazole
9485                                                                                                                                 metronidazole
9486                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9487                                                                                                                                     meclizine
9488                                                                                                                                 metronidazole
9489                                                                                                                                 metronidazole
9490                                                                                                                                   doxycycline
9491                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9492                                                                                                                 allergy immunotherapy - drops
9493                                                                                                                          cefpodoxime proxetil
9494                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9496                                                                                                                                    afoxolaner
9497                                                                                                                                    ivermectin
9498                                                                                                                                    afoxolaner
9499                                                                                                                                    fluralaner
9500                                                                                                                                    afoxolaner
9501                                                                                                                                   amoxicillin
9502                                                                                                                                    prednisone
9503                                                                                                                                   doxycycline
9504                                                                                                                                    afoxolaner
9505                                                                                                                  ivermectin, pyrantel pamoate
9506                                                                                                    toothpaste/dental health solution or chews
9507                                                                                                                                    gabapentin
9508                                                                                                                                   doxycycline
9509                                                                                                                                     firocoxib
9510                                                                                                                                   doxycycline
9511                                                                                                            amoxicillin, clavulanate potassium
9512                                                                                                                                   doxycycline
9513                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9514                                                                                                                                    grapiprant
9515                                                                                                             trimeprazine tartrate, prednisone
9516                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9517                                                                                                            amoxicillin, clavulanate potassium
9518                                                                                                                          cefpodoxime proxetil
9519                                                                                                                          prednisolone acetate
9520                                                                                                                                     firocoxib
9521                                                                                                                                    ivermectin
9522                                                                                                                              pyrantel pamoate
9523                                                                                                                                  praziquantel
9524                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9525                                                                                                                                  fenbendazole
9526                                                                                                                            maropitant citrate
9527                                                                                                                                 metronidazole
9528                                                                                                                                     carprofen
9529                                                                                                                                   hydrocodone
9530                                                                                                                                     carprofen
9531                                                                                                                                     carprofen
9532                                                                                                                                     carprofen
9533                                                                                                                                   hydrocodone
9534                                                                                                                                    ivermectin
9535                                                                                                                                    ivermectin
9536                                                                                                                            maropitant citrate
9537                                                                                                                            maropitant citrate
9538                                                                                                                                  acepromazine
9539                                                                                                                              atropine sulfate
9540                                                                                                                                      propofol
9541                                                                                                                                    isoflurane
9542                                                                                                                  ivermectin, pyrantel pamoate
9543                                                                                                                                    ivermectin
9544                                                                                                                                    afoxolaner
9545                                                                                                                  ivermectin, pyrantel pamoate
9546                                                                                                                                    afoxolaner
9547                                                                                                                  ivermectin, pyrantel pamoate
9548                                                                                                                                     sarolaner
9549                                                                                                                                    afoxolaner
9550                                                                                                                                  acepromazine
9551                                                                                                                              atropine sulfate
9552                                                                                                                                      propofol
9553                                                                                                                  ivermectin, pyrantel pamoate
9554                                                                                                                                     carprofen
9555                                                                                                                                    cephalexin
9556                                                                                                                                    isoflurane
9557                                                                                                                                  acepromazine
9558                                                                                                                              atropine sulfate
9559                                                                                                                                      morphine
9560                                                                                                                                      propofol
9561                                                                                                                                 buprenorphine
9562                                                                                                                  ivermectin, pyrantel pamoate
9563                                                                                                                                     carprofen
9564                                                                                                                                     trazodone
9565                                                                                                                            maropitant citrate
9566                                                                                                                                     carprofen
9567                                                                                                                                    grapiprant
9568                                                                                                                                    grapiprant
9569                                                                                                                                   bedinvetmab
9570                                                                                                                                 metronidazole
9571                                                                                                                                 metronidazole
9572                                                                                                                                    cephalexin
9573                                                                                                                                       omega 3
9574                                                                                                                                       omega 3
9575                                                                                                                    milbemycin oxime, spinosad
9576                                                                                                                            maropitant citrate
9577                                                                                                                                 metronidazole
9578                                                                                                                    milbemycin oxime, spinosad
9579                                                                                                                                       omega 3
9580                                                                                                                                 metronidazole
9581                                                                                                                                    prednisone
9582                                                                                                                                    sucralfate
9583                                                                                                                                    famotidine
9584                                                                                                                              milbemycin oxime
9585                                                                                                                          cefpodoxime proxetil
9586                                                                                                                          prednisolone acetate
9587                                                                                                                  ivermectin, pyrantel pamoate
9588                                                                                                                                     tris-edta
9589                                                                                                                                   amoxicillin
9590                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9591                                                                                                                                   amoxicillin
9592                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9593                                                                                                                                     carprofen
9594                                                                                                                                     carprofen
9595                                                                                                                                     carprofen
9596                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9597                                                                                                                                     carprofen
9598                                                                                                                          butorphanol tartrate
9599                                                                                                                               sodium chloride
9600                                                                                                                   lufenuron, milbemycin oxime
9601                                                                                                                                    ivermectin
9602                                                                                                                                     carprofen
9603                                                                                                                                      tramadol
9604                                                                                                                   acepromazine, hydromorphone
9605                                                                                                                            maropitant citrate
9606                                                                                                                                 metronidazole
9607                                                                                                      febantel, praziquantel, pyrantel pamoate
9608                                                                                                                   lufenuron, milbemycin oxime
9609                                                                                                                   lufenuron, milbemycin oxime
9610                                                                                                                                    fluralaner
9611                                                                                                                          cefpodoxime proxetil
9612                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                                             betamethasone, gentamicin sulfate
9614                                                                                                         chlorhexidine gluconate, ketoconazole
9615                                                                                                                   lufenuron, milbemycin oxime
9616                                                                                                                                    fluralaner
9617                                                                                                                   lufenuron, milbemycin oxime
9618                                                                                                                                    fluralaner
9619                                                                                                                   lufenuron, milbemycin oxime
9620                                                                                                                                    fluralaner
9621                                                                                                                   lufenuron, milbemycin oxime
9622                                                                                                                          cefpodoxime proxetil
9623                                                                                                                                     carprofen
9624                                                                                                                          cefpodoxime proxetil
9625                                                                                                                                     carprofen
9626                                                                                                                                 metronidazole
9627                                                                                                                                 metronidazole
9628                                                                                                            amoxicillin, clavulanate potassium
9629                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9630                                                                                                                    milbemycin oxime, spinosad
9631                                                                                                                          cefpodoxime proxetil
9632                                                                                                                    milbemycin oxime, spinosad
9633                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9634                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9635                                                                                                                    milbemycin oxime, spinosad
9636                                                                                                                                   oclacitinib
9637                                                                                                                   clotrimazole, dexamethasone
9638                                                                                                                    milbemycin oxime, spinosad
9639                                                                                                                                   oclacitinib
9640                                                                                                                    milbemycin oxime, spinosad
9641                                                                                                                    milbemycin oxime, spinosad
9642                                                                                                                                   oclacitinib
9643                                                                                                                    milbemycin oxime, spinosad
9644                                                                                                                                   oclacitinib
9645                                                                                                                                   oclacitinib
9646                                                                                                                          cefpodoxime proxetil
9647                                                                                                                                   oclacitinib
9648                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9649                                                                                                                                    lokivetmab
9650                                                                                                                                   oclacitinib
9651                                                                                                                                   doxycycline
9652                                                                                                                                    prednisone
9653                                                                                                            amoxicillin, clavulanate potassium
9654                                                                                                                                 metronidazole
9655                                                                                                                                  multivitamin
9656                                                                                                                                     ponazuril
9657                                                                                                         dinotefuran, permethrin, pyriproxyfen
9658                                                                                                                                    ivermectin
9659                                                                                                         dinotefuran, permethrin, pyriproxyfen
9660                                                                                                                  ivermectin, pyrantel pamoate
9661                                                                                                                                   doxycycline
9662                                                                                                         dinotefuran, permethrin, pyriproxyfen
9663                                                                                                                  ivermectin, pyrantel pamoate
9664                                                                                                                                   doxycycline
9665                                                                                                                                   doxycycline
9666                                                                                                                                   amoxicillin
9667                                                                                                                                 methocarbamol
9668                                                                                                                                     meloxicam
9669                                                                                                                            maropitant citrate
9670                                                                                                                                 metronidazole
9671                                                                                                                                  enrofloxacin
9672                                                                                                                                    sucralfate
9673                                                                                                                  ivermectin, pyrantel pamoate
9674                                                                                                                                    afoxolaner
9675                                                                                                                              liver supplement
9676                                                                                                                                   doxycycline
9677                                                                                                                          cefpodoxime proxetil
9678                                                                                                                                  enrofloxacin
9679                                                                                                                                 metronidazole
9680                                                                                                                                   amoxicillin
9681                                                                                                                                     meloxicam
9682                                                                                                                                 methocarbamol
9683                                                                                                                  ivermectin, pyrantel pamoate
9684                                                                                                         dinotefuran, permethrin, pyriproxyfen
9685                                                                                                                                 levothyroxine
9686                                                                                                                              liver supplement
9687                                                                                                                                 methocarbamol
9688                                                                                                                                     firocoxib
9689                                                                                                                                   doxycycline
9690                                                                                                         platelet-rich plasma (prp) injections
9691                                                                                                                  ivermectin, pyrantel pamoate
9692                                                                                                                                   doxycycline
9693                                                                                                                                   amoxicillin
9694                                                                                                                                 levothyroxine
9695                                                                                                                  ivermectin, pyrantel pamoate
9696                                                                                                                                 levothyroxine
9697                                                                                                                                 levothyroxine
9698                                                                                                                                    sucralfate
9699                                                                                                                                     carprofen
9700                                                                                                                                   doxycycline
9701                                                                                                                                   clindamycin
9702                                                                                                                                     carprofen
9703                                                                                                                          cefpodoxime proxetil
9704                                                                                                                                   amoxicillin
9705                                                                                                                          cefpodoxime proxetil
9706                                                                                                                                 levothyroxine
9707                                                                                                                                     carprofen
9708                                                                                                                                 levothyroxine
9709                                                                                                                                   doxycycline
9710                                                                                                                                     carprofen
9711                                                                                                            amoxicillin, clavulanate potassium
9712                                                                                                                                    ivermectin
9713                                                                                                                          cefpodoxime proxetil
9714                                                                                                                                    cephalexin
9715                                                                                                                          cefpodoxime proxetil
9716                                                                                                                                    cephalexin
9717                                                                                                                  ivermectin, pyrantel pamoate
9718                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9719                                                                                                                                    cephalexin
9720                                                                                                                                    prednisone
9721                                                                                                                                     carprofen
9722                                                                                                                           silver sulfadiazine
9723                                                                                                                  ivermectin, pyrantel pamoate
9724                                                                                                                                   clindamycin
9725                                                                                                            amoxicillin, clavulanate potassium
9726                                                                                                                                    cephalexin
9727                                                                                                                                   oclacitinib
9728                                                                                                                                    cephalexin
9729                                                                                                                  ivermectin, pyrantel pamoate
9730                                                                                                                              milbemycin oxime
9731                                                                                                                                    cephalexin
9732                                                                                                                                   oclacitinib
9733                                                                                                                                    cephalexin
9734                                                                                                                                   oclacitinib
9735                                                                                                                                   doxycycline
9736                                                                                                                                   oclacitinib
9737                                                                                                                                      tramadol
9738                                                                                                                                     carprofen
9739                                                                                                                                    cephalexin
9740                                                                                                                                   oclacitinib
9741                                                                                                                                    cephalexin
9742                                                                                                            amoxicillin, clavulanate potassium
9743                                                                                                                      urinary tract supplement
9744                                                                                                                                     probiotic
9745                                                                                                                                 diphenoxylate
9746                                                                                                            amoxicillin, clavulanate potassium
9747                                                                                                                                 metronidazole
9748                                                                                                                                nitrofurantoin
9749                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9750                                                                                                                                     meloxicam
9751                                                                                                                                    cephalexin
9752                                                                                                                                   clindamycin
9753                                                                                                                              benzoyl peroxide
9754                                                                                                              burow's solution, hydrocortisone
9755                                                                                                                    milbemycin oxime, spinosad
9756                                                                                                                                    ivermectin
9757                                                                                                                    imidacloprid, pyriproxyfen
9758                                                                                                                                    cetirizine
9759                                                                                                                  ivermectin, pyrantel pamoate
9760                                                                                                                    imidacloprid, pyriproxyfen
9761                                                                                                                  ivermectin, pyrantel pamoate
9762                                                                                                                                    alprazolam
9763                                                                                                                                    ivermectin
9764                                                                                                                                    cetirizine
9765                                                                                                                                    afoxolaner
9766                                                                                                                                    ivermectin
9767                                                                                                                                     sarolaner
9768                                                                                                                                 metronidazole
9769                                                                                                                                     carprofen
9770                                                                                                    ivermectin, praziquantel, pyrantel pamoate
9771                                                                                                                                      fipronil
9772                                                                                                                          cefpodoxime proxetil
9773                                                                                                                                     ponazuril
9774                                                                                                                                 metronidazole
9775                                                                                                                                     carprofen
9776                                                                                                                                      tramadol
9777                                                                                                            amoxicillin, clavulanate potassium
9778                                                                                                                                    ivermectin
9779                                                                                                                                  praziquantel
9780                                                                                                                              pyrantel pamoate
9781                                                                                                                                      fipronil
9782                                                                                                                                     carprofen
9783                                                                                                                                   minocycline
9784                                                                                                                                   fluconazole
9785                                                                                                                  ivermectin, pyrantel pamoate
9786                                                                                                                                    famotidine
9787                                                                                                                                 metronidazole
9788                                                                                                                                   amoxicillin
9789                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9790                                                                                                               ear cleaner (epi-otic advanced)
9791                                                                                                                              milbemycin oxime
9792                                                                                                                                      tramadol
9793                                                                                                                                     carprofen
9794                                                                                                                                 metronidazole
9795                                                                                                                                   amoxicillin
9796                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9797                                                                                                                       ketoconazole, tris-edta
9798                                                                                                                                   clindamycin
9799                                                                                                                                  enrofloxacin
9800                                                                                                                              milbemycin oxime
9801                                                                                                                                   doxycycline
9802                                                                                                                                     carprofen
9803                                                                                                                          cefpodoxime proxetil
9804                                                                                                                                  enrofloxacin
9805                                                                                                                                    prednisone
9806                                                                                                            amoxicillin, clavulanate potassium
9807                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                                                   latanoprost
9809                                                                                                                                   dorzolamide
9810                                                                                                                                     carprofen
9811                                                                                                                                    cephalexin
9812                                                                                                                                   amoxicillin
9813                                                                                                                                   amoxicillin
9814                                                                                                                                     probiotic
9815                                                                                                                            maropitant citrate
9816                                                                                                                            maropitant citrate
9817                                                                                                                                 metronidazole
9818                                                                                                                                    alprazolam
9819                                                                                                                                    ivermectin
9820                                                                                                                                   amoxicillin
9821                                                                                                                                     probiotic
9822                                                                                                                                       calcium
9823                                                                                                                                     tris-edta
9824                                                                                                                            miconazole nitrate
9825                                                                                                                                     tris-edta
9826                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9827                                                                                                                            miconazole nitrate
9828                                                                                                                                   hydrocodone
9829                                                                                                                                   amoxicillin
9830                                                                                                                                     carprofen
9831                                                                                                                                    cephalexin
9832                                                                                                                                 metronidazole
9833                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9834                                                                                                                                    cephalexin
9835                                                                                                        dexamethasone, ketoconazole, tris-edta
9836                                                                                                                          cefpodoxime proxetil
9837                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9838                                                                                                                                    gabapentin
9839                                                                                                                polysulfated glycosaminoglycan
9840                                                                                                        dexamethasone, ketoconazole, tris-edta
9841                                                                                                                                     meloxicam
9842                                                                                                                                    gabapentin
9843                                                                                                                                        arnica
9844                                                                                                                                     meloxicam
9845                                                                                                            amoxicillin, clavulanate potassium
9846                                                                                                                                    cephalexin
9847                                                                                                                          cefpodoxime proxetil
9848                                                                                                                                 metronidazole
9849                                                                                                                                    gabapentin
9850                                                                                                                                     meloxicam
9851                                                                                                            amoxicillin, clavulanate potassium
9852                                                                                                                          prednisolone acetate
9853                                                                                                                                    prednisone
9854                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9855                                                                                                                                      tramadol
9856                                                                                                                                    cephalexin
9857                                                                                                                                      tramadol
9858                                                                                                                                     carprofen
9859                                                                                                                                     carprofen
9860                                                                                                                                     carprofen
9861                                                                                                                                    cephalexin
9862                                                                                                                                     carprofen
9863                                                                                                                            miconazole nitrate
9864                                                                                                                                    cephalexin
9865                                                                                                             betamethasone, gentamicin sulfate
9866                                                                                                                                    prednisone
9867                                                                                                                                    gabapentin
9868                                                                                                                                     carprofen
9869                                                                                                                          cefpodoxime proxetil
9870                                                                                                                                   clindamycin
9871                                                                                                                                    gabapentin
9872                                                                                                                polysulfated glycosaminoglycan
9873                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9874                                                                                                                                     meloxicam
9875                                                                                                                                     carprofen
9876                                                                                                                                    gabapentin
9877                                                                                                                                     carprofen
9878                                                                                                                                 metronidazole
9879                                                                                                                                    gabapentin
9880                                                                                                                polysulfated glycosaminoglycan
9881                                                                                                                                     ponazuril
9882                                                                                                                                  praziquantel
9883                                                                                                                                     carprofen
9884                                                                                                                                  cyclosporine
9885                                                                                                            fipronil, permethrin, pyriproxyfen
9886                                                                                                                  ivermectin, pyrantel pamoate
9887                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9888                                                                                                                                  cyclosporine
9889                                                                                                                                    ivermectin
9890                                                                                                            fipronil, permethrin, pyriproxyfen
9891                                                                                                                                  cyclosporine
9892                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                                    afoxolaner
9894                                                                                                                              milbemycin oxime
9895                                                                                                                                    afoxolaner
9896                                                                                                                                  cyclosporine
9897                                                                                                                              milbemycin oxime
9898                                                                                                                                    afoxolaner
9899                                                                                                                milbemycin oxime, praziquantel
9900                                                                                                                                       omega 3
9901                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                                    afoxolaner
9903                                                                                                                                  cyclosporine
9904                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9905                                                                                                                                       omega 3
9906                                                                                                                                       omega 3
9907                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9908                                                                                                                          cefpodoxime proxetil
9909                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9910                                                                                                                                     carprofen
9911                                                                                                            amoxicillin, clavulanate potassium
9912                                                                                                                                 metronidazole
9913                                                                                                                            maropitant citrate
9914                                                                                                                                    famotidine
9915                                                                                                                    milbemycin oxime, spinosad
9916                                                                                                                    imidacloprid, pyriproxyfen
9917                                                                                                                                    ivermectin
9918                                                                                                                                    selamectin
9919                                                                                                                                    cephalexin
9920                                                                                                                                    cetirizine
9921                                                                                                                                    cephalexin
9922                                                                                                                                    cetirizine
9923                                                                                                                                    cephalexin
9924                                                                                                                                 ciprofloxacin
9925                                                                                                                                 ciprofloxacin
9926                                                                                                    dextromethorphan hydrobromide, guaifenesin
9927                                                                                                                                   clindamycin
9928                                                                                                                               dexmedetomidine
9929                                                                                                                                    famotidine
9930                                                                                                                                     carprofen
9931                                                                                                                                    ivermectin
9932                                                                                                                  ivermectin, pyrantel pamoate
9933                                                                                                                                  fenbendazole
9934                                                                                                                                     carprofen
9935                                                                                                                    milbemycin oxime, spinosad
9936                                                                                                      febantel, praziquantel, pyrantel pamoate
9937                                                                                                                                     probiotic
9938                                                                                                                                     probiotic
9939                                                                                                                                 metronidazole
9940                                                                                                                                  fenbendazole
9941                                                                                                                                 metronidazole
9942                                                                                                                          rx diet - gi low fat
9943                                                                                                                    milbemycin oxime, spinosad
9944                                                                                                                    milbemycin oxime, spinosad
9945                                                                                                                  ivermectin, pyrantel pamoate
9946                                                                                                                                    cetirizine
9947                                                                                                                  ivermectin, pyrantel pamoate
9948                                                                                                                                    afoxolaner
9949                                                                                                                  ivermectin, pyrantel pamoate
9950                                                                                                                                    afoxolaner
9951                                                                                                                          cefpodoxime proxetil
9952                                                                                                                                     carprofen
9953                                                                                                                                     carprofen
9954                                                                                                                            diethylstilbestrol
9955                                                                                                                polysulfated glycosaminoglycan
9956                                                                                                                            diethylstilbestrol
9957                                                                                                                                    grapiprant
9958                                                                                                                                   amoxicillin
9959                                                                                                                                    gabapentin
9960                                                                                                                                    ivermectin
9961                                                                                                            fipronil, permethrin, pyriproxyfen
9962                                                                                                                                    ivermectin
9963                                                                                                                      imidacloprid, permethrin
9964                                                                                                                    imidacloprid, pyriproxyfen
9965                                                                                                                  ivermectin, pyrantel pamoate
9966                                                                                                                    imidacloprid, pyriproxyfen
9967                                                                                                                  ivermectin, pyrantel pamoate
9968                                                                                                                    imidacloprid, pyriproxyfen
9969                                                                                                                  ivermectin, pyrantel pamoate
9970                                                                                                                       acetic acid, boric acid
9971                                                                                                                  ivermectin, pyrantel pamoate
9972                                                                                                                    imidacloprid, pyriproxyfen
9973                                                                                                                                     carprofen
9974                                                                                                                  ivermectin, pyrantel pamoate
9975                                                                                                                            maropitant citrate
9976                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9977                                                                                                                              sulfadimethoxine
9978                                                                                                                              pyrantel pamoate
9979                                                                                                                                    ivermectin
9980                                                                                                                          butorphanol tartrate
9981                                                                                                                               diphenhydramine
9982                                                                                                                                      propofol
9983                                                                                                                                    isoflurane
9984                                                                                                                                    famotidine
9985                                                                                                                                     firocoxib
9986                                                                                                                                     mupirocin
9987                                                                                                             betamethasone, gentamicin sulfate
9988                                                                                                                  ivermectin, pyrantel pamoate
9989                                                                                                                                    afoxolaner
9990                                                                                                                            calming supplement
9991                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9992                                                                                                                  ivermectin, pyrantel pamoate
9993                                                                                                                                    afoxolaner
9994                                                                                                                                    cephalexin
9995                                                                                                                                      tramadol
9996                                                                                                                                    alprazolam
9997                                                                                                                            calming supplement
9998                                                                                                                  ivermectin, pyrantel pamoate
9999                                                                                                                                    afoxolaner
10000                                                                                                                              diphenhydramine
10001                                                                                                                 ivermectin, pyrantel pamoate
10002                                                                                                                                   afoxolaner
10003                                                                                                                              diphenhydramine
10004                                                                                                                           maropitant citrate
10005                                                                                                                                   famotidine
10006                                                                                                                              dexmedetomidine
10007                                                                                                                             sulfadimethoxine
10008                                                                                                                             sulfadimethoxine
10009                                                                                                                              diphenhydramine
10010                                                                                                                 ivermectin, pyrantel pamoate
10011                                                                                                                                   afoxolaner
10012                                                                                                                                   cephalexin
10013                                                                                                                                    firocoxib
10014                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10015                                                                                                            betamethasone, gentamicin sulfate
10016                                                                                                                  lufenuron, milbemycin oxime
10017                                                                                                                  lufenuron, milbemycin oxime
10018                                                                                                                                   cephalexin
10019                                                                                                                                  hydroxyzine
10020                                                                                                                                   gabapentin
10021                                                                                                                                    deracoxib
10022                                                                                                           amoxicillin, clavulanate potassium
10023                                                                                                                     flumethrin, imidacloprid
10024                                                                                                                  lufenuron, milbemycin oxime
10025                                                                                                                                  hydroxyzine
10026                                                                                                                  lufenuron, milbemycin oxime
10027                                                                                                                     flumethrin, imidacloprid
10028                                                                                                                  lufenuron, milbemycin oxime
10029                                                                                                                                   cetirizine
10030                                                                                                                   imidacloprid, pyriproxyfen
10031                                                                                                                                   cephalexin
10032                                                                                                                                   cetirizine
10033                                                                                                                                    deracoxib
10034                                                                                                                                   cephalexin
10035                                                                                                                                   cetirizine
10036                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10037                                                                                                                  dexamethasone, ketoconazole
10038                                                                                                                                    deracoxib
10039                                                                                                                                   cephalexin
10040                                                                                                                                   cetirizine
10041                                                                                                                                    deracoxib
10042                                                                                                 florfenicol, mometasone furoate, terbinafine
10043                                                                                                                                   cetirizine
10044                                                                                                                                   gabapentin
10045                                                                                                                       unspecified medication
10046                                                                                                                                  doxycycline
10047                                                                                                                           maropitant citrate
10048                                                                                                                 ivermectin, pyrantel pamoate
10049                                                                                                                               metoclopramide
10050                                                                                                                                  amoxicillin
10051                                                                                                                                   fluoxetine
10052                                                                                                                 ivermectin, pyrantel pamoate
10053                                                                                                                  lufenuron, milbemycin oxime
10054                                                                                                                                    deracoxib
10055                                                                                                                 ivermectin, pyrantel pamoate
10056                                                                                                                 ivermectin, pyrantel pamoate
10057                                                                                                                 ivermectin, pyrantel pamoate
10058                                                                                                                                  amoxicillin
10059                                                                                                                           maropitant citrate
10060                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10061                                                                                                              ear cleaner (epi-otic advanced)
10062                                                                                                                 ivermectin, pyrantel pamoate
10063                                                                                                                     flumethrin, imidacloprid
10064                                                                                                                                  amoxicillin
10065                                                                                                                 ivermectin, pyrantel pamoate
10066                                                                                                                     flumethrin, imidacloprid
10067                                                                                                                                  clindamycin
10068                                                                                                           amoxicillin, clavulanate potassium
10069                                                                                                                                    deracoxib
10070                                                                                                                                marbofloxacin
10071                                                                                                                                    deracoxib
10072                                                                                                                 ivermectin, pyrantel pamoate
10073                                                                                                                                   cephalexin
10074                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10075                                                                                                                                   ivermectin
10076                                                                                                                                    carprofen
10077                                                                                                                 ivermectin, pyrantel pamoate
10078                                                                                                                                metronidazole
10079                                                                                                                                   loperamide
10080                                                                                                                              apomorphine hcl
10081                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10082                                                                                                                 ivermectin, pyrantel pamoate
10083                                                                                                                 ivermectin, pyrantel pamoate
10084                                                                                                                           maropitant citrate
10085                                                                                    activated charcoal, bismuth subsalicylate, kaolin, pectin
10086                                                                                                                 ivermectin, pyrantel pamoate
10087                                                                                                                                marbofloxacin
10088                                                                                                                                   prednisone
10089                                                                                                                                   cephalexin
10090                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10091                                                                                                           amoxicillin, clavulanate potassium
10092                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                                            betamethasone, gentamicin sulfate
10094                                                                                                                 ormetoprim, sulfadimethoxine
10095                                                                                                                                   prednisone
10096                                                                                                                                   ivermectin
10097                                                                                                                             pyrantel pamoate
10098                                                                                                                                     fipronil
10099                                                                                                              ear cleaner (epi-otic advanced)
10100                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10101                                                                                                                           maropitant citrate
10102                                                                                                                                 acepromazine
10103                                                                                                                                    carprofen
10104                                                                                                                                   ampicillin
10105                                                                                                                             milbemycin oxime
10106                                                                                                                 ivermectin, pyrantel pamoate
10107                                                                                                                     fipronil, (s)-methoprene
10108                                                                                                                 ivermectin, pyrantel pamoate
10109                                                                                                                     fipronil, (s)-methoprene
10110                                                                                                                     fipronil, (s)-methoprene
10111                                                                                                                 ivermectin, pyrantel pamoate
10112                                                                                                                 ivermectin, pyrantel pamoate
10113                                                                                                                     fipronil, (s)-methoprene
10114                                                                                                                                metronidazole
10115                                                                                                                 ivermectin, pyrantel pamoate
10116                                                                                                                     fipronil, (s)-methoprene
10117                                                                                                                         cefpodoxime proxetil
10118                                                                                                                     fipronil, (s)-methoprene
10119                                                                                                                 ivermectin, pyrantel pamoate
10120                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                                    probiotic
10122                                                                                                                                 enrofloxacin
10123                                                                                                                                metronidazole
10124                                                                                                                                metronidazole
10125                                                                                                                                 enrofloxacin
10126                                                                                                                                    probiotic
10127                                                                                                                                    carprofen
10128                                                                                                                         cefpodoxime proxetil
10129                                                                                                                                 enrofloxacin
10130                                                                                                                                     propofol
10131                                                                                                                                buprenorphine
10132                                                                                                                                 acepromazine
10133                                                                                                                             atropine sulfate
10134                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10135                                                                                                                                   gabapentin
10136                                                                                                                                    carprofen
10137                                                                                                                         cefpodoxime proxetil
10138                                                                                                                                   gabapentin
10139                                                                                                                                amitriptyline
10140                                                                                                                                   amantadine
10141                                                                                                               polysulfated glycosaminoglycan
10142                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10143                                                                                                                                      omega 3
10144                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10145                                                                                                                                    carprofen
10146                                                                                                                                   fluoxetine
10147                                                                                                                                methocarbamol
10148                                                                                                                                   gabapentin
10149                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10150                                                                                                                           maropitant citrate
10151                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10152                                                                                                                      triamcinolone acetonide
10153                                                                                                                         cefpodoxime proxetil
10154                                                                                                                                      taurine
10155                                                                                                                                  l-carnitine
10156                                                                                                           amoxicillin, clavulanate potassium
10157                                                                                                                                    carprofen
10158                                                                                                                                metronidazole
10159                                                                                                                                 fenbendazole
10160                                                                                                                                dexamethasone
10161                                                                                                                              diphenhydramine
10162                                                                                                                                dexamethasone
10163                                                                                                                                   prednisone
10164                                                                                                                 ivermectin, pyrantel pamoate
10165                                                                                                                                  amoxicillin
10166                                                                                                           amoxicillin, clavulanate potassium
10167                                                                                                                 ivermectin, pyrantel pamoate
10168                                                                                                                                   cephalexin
10169                                                                                                                                    carprofen
10170                                                                                                                 ivermectin, pyrantel pamoate
10171                                                                                                                                    sarolaner
10172                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10173                                                                                                                                    carprofen
10174                                                                                                                                    carprofen
10175                                                                                                                             milbemycin oxime
10176                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10177                                                                                                           amoxicillin, clavulanate potassium
10178                                                                                                                         cefpodoxime proxetil
10179                                                                                                                                phenobarbital
10180                                                                                                                            potassium bromide
10181                                                                                                                 ivermectin, pyrantel pamoate
10182                                                                                                                                phenobarbital
10183                                                                                                                            potassium bromide
10184                                                                                                                                levetiracetam
10185                                                                                                                                   zonisamide
10186                                                                                                                                metronidazole
10187                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                                            trimeprazine tartrate, prednisone
10189                                                                                                                                  doxycycline
10190                                                                                                                                   cephalexin
10191                                                                                                                                   cephalexin
10192                                                                                                                                     diazepam
10193                                                                                                                                    carprofen
10194                                                                                                                                metronidazole
10195                                                                                                                                metronidazole
10196                                                                                                                                    meloxicam
10197                                                                                                                                   ivermectin
10198                                                                                                                     imidacloprid, permethrin
10199                                                                                                                        clorsulon, ivermectin
10200                                                                                                                                   fluralaner
10201                                                                                                                                    vitamin c
10202                                                                                                       joint supplement (glucosamine hcl/msm)
10203                                                                                                                 ivermectin, pyrantel pamoate
10204                                                                                                                         cefpodoxime proxetil
10205                                                                                                                                    carprofen
10206                                                                                                                                    carprofen
10207                                                                                                                                   prednisone
10208                                                                                                                         cefpodoxime proxetil
10209                                                                                                                 ivermectin, pyrantel pamoate
10210                                                                                                                                   ivermectin
10211                                                                                                                                   ivermectin
10212                                                                                                                               pentoxifylline
10213                                                                                                                         cefpodoxime proxetil
10214                                                                                                                                   prednisone
10215                                                                                                                                    carprofen
10216                                                                                                                                   cetirizine
10217                                                                                                                                   ivermectin
10218                                                                                                                              diphenhydramine
10219                                                                                                                 ivermectin, pyrantel pamoate
10220                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10221                                                                                                                                   prednisone
10222                                                                                                                                    carprofen
10223                                                                                                                                     tramadol
10224                                                                                                                                   famotidine
10225                                                                                                                                   prednisone
10226                                                                                                                                  oclacitinib
10227                                                                                                                                   cetirizine
10228                                                                                                                              diphenhydramine
10229                                                                                                                allergy immunotherapy - drops
10230                                                                                                                 ivermectin, pyrantel pamoate
10231                                                                                                                                   afoxolaner
10232                                                                                                                                   prednisone
10233                                                                                                                              diphenhydramine
10234                                                                                                                                   cetirizine
10235                                                                                                                 ivermectin, pyrantel pamoate
10236                                                                                                                                   afoxolaner
10237                                                                                                                                   lokivetmab
10238                                                                                                                                    carprofen
10239                                                                                                                                   prednisone
10240                                                                                                                                  amoxicillin
10241                                                                                                                                     tramadol
10242                                                                                                                 ivermectin, pyrantel pamoate
10243                                                                                                               polysulfated glycosaminoglycan
10244                                                                                                                                    carprofen
10245                                                                                                                 ivermectin, pyrantel pamoate
10246                                                                                                                                   lokivetmab
10247                                                                                                                                   ivermectin
10248                                                                                                                           maropitant citrate
10249                                                                                                                     fipronil, (s)-methoprene
10250                                                                                                                                   grapiprant
10251                                                                                               dexamethasone, neomycin sulfate, thiabendazole
10252                                                                                                                                   selamectin
10253                                                                                                           amoxicillin, clavulanate potassium
10254                                                                                                                                   ivermectin
10255                                                                                                                             pyrantel pamoate
10256                                                                                                                                 acepromazine
10257                                                                                                                                    firocoxib
10258                                                                                                                                  hydroxyzine
10259                                                                                                                                  hydroxyzine
10260                                                                                                                     flumethrin, imidacloprid
10261                                                                                                                                   fluralaner
10262                                                                                                                                   lokivetmab
10263                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10264                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10265                                                                                                                   musculoskeletal supplement
10266                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10267                                                                                                                           maropitant citrate
10268                                                                                                                                    vitamin b
10269                                                                                                                                   ivermectin
10270                                                                                               mometasone furoate, orbifloxacin, posaconazole
10271                                                                                                                             milbemycin oxime
10272                                                                                                                                   afoxolaner
10273                                                                                                                 ivermectin, pyrantel pamoate
10274                                                                                                                                   afoxolaner
10275                                                                                                                 ivermectin, pyrantel pamoate
10276                                                                                                                                   afoxolaner
10277                                                                                                                             pyrantel pamoate
10278                                                                                                                  lufenuron, milbemycin oxime
10279                                                                                                                             milbemycin oxime
10280                                                                                                                             milbemycin oxime
10281                                                                                                                                    carprofen
10282                                                                                                                                metronidazole
10283                                                                                                                                    probiotic
10284                                                                                                                             pyrantel pamoate
10285                                                                                                                  lufenuron, milbemycin oxime
10286                                                                                                                  lufenuron, milbemycin oxime
10287                                                                                                                             milbemycin oxime
10288                                                                                                                                    carprofen
10289                                                                                               mometasone furoate, orbifloxacin, posaconazole
10290                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10291                                                                                                               polysulfated glycosaminoglycan
10292                                                                                                                             milbemycin oxime
10293                                                                                                       cyphenothrin, fipronil, (s)-methoprene
10294                                                                                                                             milbemycin oxime
10295                                                                                                                                    carprofen
10296                                                                                                                                   cephalexin
10297                                                                                                                         butorphanol tartrate
10298                                                                                                                              dexmedetomidine
10299                                                                                                                  lufenuron, milbemycin oxime
10300                                                                                                           fipronil, permethrin, pyriproxyfen
10301                                                                                                                  lufenuron, milbemycin oxime
10302                                                                                                                         cefpodoxime proxetil
10303                                                                                                                                    carprofen
10304                                                                                                                  lufenuron, milbemycin oxime
10305                                                                                                                                   fluralaner
10306                                                                                                                                metronidazole
10307                                                                                                           amoxicillin, clavulanate potassium
10308                                                                                                                                    carprofen
10309                                                                                                                         cefpodoxime proxetil
10310                                                                                                                                   selamectin
10311                                                                                                                                      omega 3
10312                                                                                                                                   selamectin
10313                                                                                                               praziquantel, pyrantel pamoate
10314                                                                                                           amoxicillin, clavulanate potassium
10315                                                                                                                                 ketoconazole
10316                                                                                                                                ciprofloxacin
10317                                                                                                                                 ketoconazole
10318                                                                                                         amikacin sulfate, miconazole nitrate
10319                                                                                                            dexamethasone, miconazole nitrate
10320                                                                                                           amoxicillin, clavulanate potassium
10321                                                                                                                         cefpodoxime proxetil
10322                                                                                                                                   selamectin
10323                                                                                                                                   selamectin
10324                                                                                                                                   selamectin
10325                                                                                                           amoxicillin, clavulanate potassium
10326                                                                                                           amoxicillin, clavulanate potassium
10327                                                                                                                                  oclacitinib
10328                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
10329                                                                                                                                metronidazole
10330                                                                                                                           maropitant citrate
10331                                                                                                                              diphenhydramine
10332                                                                                                                   milbemycin oxime, spinosad
10333                                                                                                                                   fluralaner
10334                                                                                                                   milbemycin oxime, spinosad
10335                                                                                                                                   fluralaner
10336                                                                                                                   milbemycin oxime, spinosad
10337                                                                                                                                   gabapentin
10338                                                                                                                                    carprofen
10339                                                                                                                                   gabapentin
10340                                                                                                                                    carprofen
10341                                                                                                                   milbemycin oxime, spinosad
10342                                                                                                                   milbemycin oxime, spinosad
10343                                                                                                               sulfamethoxazole, trimethoprim
10344                                                                                                                         cefpodoxime proxetil
10345                                                                                                                           calming supplement
10346                                                                                                                   milbemycin oxime, spinosad
10347                                                                                                                     urinary tract supplement
10348                                                                                                                                magnolia bark
10349                                                                                                            betamethasone, gentamicin sulfate
10350                                                                                                                         cefpodoxime proxetil
10351                                                                                                                   milbemycin oxime, spinosad
10352                                                                                                                     urinary tract supplement
10353                                                                                                                   milbemycin oxime, spinosad
10354                                                                                                                                    carprofen
10355                                                                                                                   milbemycin oxime, spinosad
10356                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10357                                                                                                                                   alprazolam
10358                                                                                                                                   alprazolam
10359                                                                                                                                   fluoxetine
10360                                                                                                                                    carprofen
10361                                                                                                                                  amoxicillin
10362                                                                                                                                   omeprazole
10363                                                                                                                                   grapiprant
10364                                                                                                                                    carprofen
10365                                                                                                                 ivermectin, pyrantel pamoate
10366                                                                                                           fipronil, permethrin, pyriproxyfen
10367                                                                                                                 ivermectin, pyrantel pamoate
10368                                                                                                                 ivermectin, pyrantel pamoate
10369                                                                                                                     fipronil, (s)-methoprene
10370                                                                                                                 ivermectin, pyrantel pamoate
10371                                                                                                                     fipronil, (s)-methoprene
10372                                                                                                                                   ivermectin
10373                                                                                                                     fipronil, (s)-methoprene
10374                                                                                                                 ivermectin, pyrantel pamoate
10375                                                                                                                     fipronil, (s)-methoprene
10376                                                                                                                                    carprofen
10377                                                                                                                                  doxycycline
10378                                                                                                                                    sarolaner
10379                                                                                                               milbemycin oxime, praziquantel
10380                                                                                                                                    carprofen
10381                                                                                                                         cefpodoxime proxetil
10382                                                                                                                                    carprofen
10383                                                                                                                           maropitant citrate
10384                                                                                                                                   cephalexin
10385                                                                                                                                   fluralaner
10386                                                                                                                                   fluralaner
10387                                                                                                                                   fluralaner
10388                                                                                                                                    carprofen
10389                                                                                                                                   fluralaner
10390                                                                                                                                  doxycycline
10391                                                                                                                                  amoxicillin
10392                                                                                                                                  hydroxyzine
10393                                                                                                                                   gabapentin
10394                                                                                                                                     tramadol
10395                                                                                                                                   grapiprant
10396                                                                                                                                  bedinvetmab
10397                                                                                                                                     tramadol
10398                                                                                                                                   grapiprant
10399                                                                                                                                  amoxicillin
10400                                                                                                                                   ivermectin
10401                                                                                                                     fipronil, (s)-methoprene
10402                                                                                                                 ivermectin, pyrantel pamoate
10403                                                                                                                     fipronil, (s)-methoprene
10404                                                                                                                 ivermectin, pyrantel pamoate
10405                                                                                                                     fipronil, (s)-methoprene
10406                                                                                                                 ivermectin, pyrantel pamoate
10407                                                                                                                                   afoxolaner
10408                                                                                                                             milbemycin oxime
10409                                                                                                                             milbemycin oxime
10410                                                                                                               milbemycin oxime, praziquantel
10411                                                                                                                                   afoxolaner
10412                                                                                                                             milbemycin oxime
10413                                                                                                                                   afoxolaner
10414                                                                                                                                    ketorolac
10415                                                                                                                                  doxycycline
10416                                                                                                                         cefpodoxime proxetil
10417                                                                                                                                 chlorambucil
10418                                                                                                                           maropitant citrate
10419                                                                                                                                   prednisone
10420                                                                                                           amoxicillin, clavulanate potassium
10421                                                                                                                                 enrofloxacin
10422                                                                                                                                   ampicillin
10423                                                                                                                           maropitant citrate
10424                                                                                                                                 chlorambucil
10425                                                                                                                                   ivermectin
10426                                                                                                                                     fipronil
10427                                                                                                                   milbemycin oxime, spinosad
10428                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10429                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10430                                                                                                                                   ivermectin
10431                                                                                                                                   afoxolaner
10432                                                                                                                                   selamectin
10433                                                                                                                 ivermectin, pyrantel pamoate
10434                                                                                                                 ivermectin, pyrantel pamoate
10435                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
10437                                                                                                                                      aspirin
10438                                                                                                                                    carprofen
10439                                                                                                                                 ketoconazole
10440                                                                                                        ketoconazole, triamcinolone acetonide
10441                                                                                                           chlorhexidine gluconate, ophytrium
10442                                                                                                                                    carprofen
10443                                                                                                                                   cephalexin
10444                                                                                                                                metronidazole
10445                                                                                                            betamethasone, gentamicin sulfate
10446                                                                                                                                    carprofen
10447                                                                                                                                   prednisone
10448                                                                                                                                   cephalexin
10449                                                                                                                                    carprofen
10450                                                                                                                                   prednisone
10451                                                                                                                                  ondansetron
10452                                                                                                                                hydromorphone
10453                                                                                                                                     propofol
10454                                                                                                                                    midazolam
10455                                                                                                                                    carprofen
10456                                                                                                                                metronidazole
10457                                                                                                                                metronidazole
10458                                                                                                                                metronidazole
10459                                                                                                                                metronidazole
10460                                                                                                     febantel, praziquantel, pyrantel pamoate
10461                                                                                                                                  doxycycline
10462                                                                                                                                  doxycycline
10463                                                                                                                                   ampicillin
10464                                                                                                                                 acepromazine
10465                                                                                                            betamethasone, gentamicin sulfate
10466                                                                                                                                    carprofen
10467                                                                                                                           maropitant citrate
10468                                                                                                                                 fenbendazole
10469                                                                                                           chlorhexidine gluconate, tris-edta
10470                                                                                                                                    mupirocin
10471                                                                                                                            hypochlorous acid
10472                                                                                                                                   cephalexin
10473                                                                                                                                    carprofen
10474                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10475                                                                                                                                     spinosad
10476                                                                                                                           miconazole nitrate
10477                                                                                                                   imidacloprid, pyriproxyfen
10478                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10479                                                                                                                                   afoxolaner
10480                                                                                                                 ivermectin, pyrantel pamoate
10481                                                                                                                 ivermectin, pyrantel pamoate
10482                                                                                                                                   afoxolaner
10483                                                                                                                 ivermectin, pyrantel pamoate
10484                                                                                                                                   afoxolaner
10485                                                                                                                                   ivermectin
10486                                                                                                                                   afoxolaner
10487                                                                                                                                   ivermectin
10488                                                                                                           amoxicillin, clavulanate potassium
10489                                                                                                                                    carprofen
10490                                                                                                                                    firocoxib
10491                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10492                                                                                                                                metronidazole
10493                                                                                                                                 fenbendazole
10494                                                                                                                                   sucralfate
10495                                                                                                                                  doxycycline
10496                                                                                                   dextromethorphan hydrobromide, guaifenesin
10497                                                                                                                                    firocoxib
10498                                                                                                                                    firocoxib
10499                                                                                                                             milbemycin oxime
10500                                                                                                                                    firocoxib
10501                                                                                                                 ivermectin, pyrantel pamoate
10502                                                                                                                                  doxycycline
10503                                                                                                                             milbemycin oxime
10504                                                                                                     febantel, praziquantel, pyrantel pamoate
10505                                                                                                                 ivermectin, pyrantel pamoate
10506                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10507                                                                                                                 ivermectin, pyrantel pamoate
10508                                                                                                                 ivermectin, pyrantel pamoate
10509                                                                                                                 ivermectin, pyrantel pamoate
10510                                                                                                                 ivermectin, pyrantel pamoate
10511                                                                                                                 ivermectin, pyrantel pamoate
10512                                                                                                                 ivermectin, pyrantel pamoate
10513                                                                                                                                metronidazole
10514                                                                                                                                   ivermectin
10515                                                                                                                 ivermectin, pyrantel pamoate
10516                                                                                                                 ivermectin, pyrantel pamoate
10517                                                                                                                     fipronil, (s)-methoprene
10518                                                                                                                                amitriptyline
10519                                                                                                                allergy immunotherapy - drops
10520                                                                                                                                  oclacitinib
10521                                                                                                           staphylococcus aureus phage lysate
10522                                                                                                          allergy immunotherapy - unspecified
10523                                                                                                                                  oclacitinib
10524                                                                                                                         cefpodoxime proxetil
10525                                                                                                           staphylococcus aureus phage lysate
10526                                                                                                          allergy immunotherapy - unspecified
10527                                                                                                                                  oclacitinib
10528                                                                                                                         cefpodoxime proxetil
10529                                                                                                                                    mupirocin
10530                                                                                                                     imidacloprid, permethrin
10531                                                                                                                   milbemycin oxime, spinosad
10532                                                                                                                                  oclacitinib
10533                                                                                                                                   lokivetmab
10534                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10535                                                                                                                         cefpodoxime proxetil
10536                                                                                                                                    mupirocin
10537                                                                                                                                  clindamycin
10538                                                                                                                   imidacloprid, pyriproxyfen
10539                                                                                                                             milbemycin oxime
10540                                                                                                                   milbemycin oxime, spinosad
10541                                                                                                                                  oclacitinib
10542                                                                                                                         cefpodoxime proxetil
10543                                                                                                                                   lokivetmab
10544                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10545                                                                                                                             milbemycin oxime
10546                                                                                                                                   cephalexin
10547                                                                                                                                  clindamycin
10548                                                                                                                                   gabapentin
10549                                                                                                                           maropitant citrate
10550                                                                                                                                   lokivetmab
10551                                                                                                                                  oclacitinib
10552                                                                                                                                    carprofen
10553                                                                                                                      triamcinolone acetonide
10554                                                                                                                                   lokivetmab
10555                                                                                                                                    mupirocin
10556                                                                                                                                  oclacitinib
10557                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10558                                                                                                                                   gabapentin
10559                                                                                                                                amitriptyline
10560                                                                                                                                 ketoconazole
10561                                                                                                                                 cyclosporine
10562                                                                                                                                   lokivetmab
10563                                                                                                                         cefpodoxime proxetil
10564                                                                                                                                   cephalexin
10565                                                                                                            betamethasone, gentamicin sulfate
10566                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10567                                                                                                                                 ketoconazole
10568                                                                                                                                amitriptyline
10569                                                                                                                                 cyclosporine
10570                                                                                                                                   gabapentin
10571                                                                                                                                    carprofen
10572                                                                                                                                    carprofen
10573                                                                          betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10574                                                                                                                                    carprofen
10575                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                                              diphenhydramine
10577                                                                                                                                   famotidine
10578                                                                                                                           maropitant citrate
10579                                                                                                                                metronidazole
10580                                                                                                                                  vinblastine
10581                                                                                                                                   fluralaner
10582                                                                                                                                  oclacitinib
10583                                                                                                                   milbemycin oxime, spinosad
10584                                                                                                                 ivermectin, pyrantel pamoate
10585                                                                                                                                   ivermectin
10586                                                                                                                                   afoxolaner
10587                                                                                                                                    carprofen
10588                                                                                                                                   ivermectin
10589                                                                                                                 ivermectin, pyrantel pamoate
10590                                                                                                                 ivermectin, pyrantel pamoate
10591                                                                                                                 ivermectin, pyrantel pamoate
10592                                                                                                                                    carprofen
10593                                                                                                                                   gabapentin
10594                                                                                                        dinotefuran, permethrin, pyriproxyfen
10595                                                                                                                                    carprofen
10596                                                                                                                                   cephalexin
10597                                                                                                               polysulfated glycosaminoglycan
10598                                                                                                                                    meloxicam
10599                                                                                                                                metronidazole
10600                                                                                                                                    meloxicam
10601                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10602                                                                                                           fipronil, permethrin, pyriproxyfen
10603                                                                                                                         cefpodoxime proxetil
10604                                                                                                                         cefpodoxime proxetil
10605                                                                                                                         cefpodoxime proxetil
10606                                                                                                                         cefpodoxime proxetil
10607                                                                                                                                   cephalexin
10608                                                                                                                                     fentanyl
10609                                                                                                                                    meloxicam
10610                                                                                                                 ivermectin, pyrantel pamoate
10611                                                                                                                                  doxycycline
10612                                                                                                                                    carprofen
10613                                                                                                                         cefpodoxime proxetil
10614                                                                                                                         prednisolone acetate
10615                                                                                                           amoxicillin, clavulanate potassium
10616                                                                                                                      menthol, hydrocortisone
10617                                                                                                           fipronil, permethrin, pyriproxyfen
10618                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                                         cefpodoxime proxetil
10620                                                                                                           amoxicillin, clavulanate potassium
10621                                                                                                                                   prednisone
10622                                                                                                                                  minocycline
10623                                                                                                                                    carprofen
10624                                                                                                                   imidacloprid, pyriproxyfen
10625                                                                                                                 ivermectin, pyrantel pamoate
10626                                                                                                                                   cephalexin
10627                                                                                                                                   cephalexin
10628                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10629                                                                                                                 ivermectin, pyrantel pamoate
10630                                                                                                                                   afoxolaner
10631                                                                                                                 ivermectin, pyrantel pamoate
10632                                                                                                                                    sarolaner
10633                                                                                                                 ivermectin, pyrantel pamoate
10634                                                                                                                                    sarolaner
10635                                                                                                                                    carprofen
10636                                                                                                                                   cephalexin
10637                                                                                                                                    carprofen
10638                                                                                                                 ivermectin, pyrantel pamoate
10639                                                                                                                  lufenuron, milbemycin oxime
10640                                                                                                                                    carprofen
10641                                                                                                                                   cephalexin
10642                                                                                                                      chlorhexidine gluconate
10643                                                                                                                                   gabapentin
10644                                                                                                                                    carprofen
10645                                                                                                                                   cephalexin
10646                                                                                                                                   gabapentin
10647                                                                                                                                    carprofen
10648                                                                                                                                    carprofen
10649                                                                                                                                    carprofen
10650                                                                                                                                  doxycycline
10651                                                                                                                                    deracoxib
10652                                                                                                                                    deracoxib
10653                                                                                                                   milbemycin oxime, spinosad
10654                                                                                                                                   cephalexin
10655                                                                                                                 ivermectin, pyrantel pamoate
10656                                                                                                                                    trazodone
10657                                                                                                                                    trazodone
10658                                                                                                                                    carprofen
10659                                                                                                                                    carprofen
10660                                                                                                                                  clindamycin
10661                                                                                                                  lufenuron, milbemycin oxime
10662                                                                                                                                  amoxicillin
10663                                                                                                                                  amoxicillin
10664                                                                                                                  lufenuron, milbemycin oxime
10665                                                                                                                                   fluralaner
10666                                                                                                                                  amoxicillin
10667                                                                                                                  lufenuron, milbemycin oxime
10668                                                                                                           amoxicillin, clavulanate potassium
10669                                                                                                                  lufenuron, milbemycin oxime
10670                                                                                                                                  amoxicillin
10671                                                                                                                   imidacloprid, pyriproxyfen
10672                                                                                                                                  amoxicillin
10673                                                                                                                                   cephalexin
10674                                                                                                                                yunnan baiyao
10675                                                                                                                                    carprofen
10676                                                                                                                                   gabapentin
10677                                                                                                                 ivermectin, pyrantel pamoate
10678                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10679                                                                                                                                      omega 3
10680                                                                                                                                    carprofen
10681                                                                                                                                     tramadol
10682                                                                                                                             pyrantel pamoate
10683                                                                                                                  lufenuron, milbemycin oxime
10684                                                                                                                  lufenuron, milbemycin oxime
10685                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                                      omega 3
10687                                                                                                                                 multivitamin
10688                                                                                                                                  coconut oil
10689                                                                                                                  lufenuron, milbemycin oxime
10690                                                                                                                                   cephalexin
10691                                                                                                                                ciprofloxacin
10692                                                                                                                          ear cleaner (zymox)
10693                                                                                                                                   cetirizine
10694                                                                                                                  lufenuron, milbemycin oxime
10695                                                                                                                                   cetirizine
10696                                                                                                                          ear cleaner (zymox)
10697                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10698                                                                                                           amoxicillin, clavulanate potassium
10699                                                                                                                                   famotidine
10700                                                                                                                 ivermectin, pyrantel pamoate
10701                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10702                                                                                                                                      omega 3
10703                                                                                                                                    carprofen
10704                                                                                                                                     tramadol
10705                                                                                                           amoxicillin, clavulanate potassium
10706                                                                                                                             pyrantel pamoate
10707                                                                                                                  lufenuron, milbemycin oxime
10708                                                                                                                                     tramadol
10709                                                                                                                         cefpodoxime proxetil
10710                                                                                                                                    carprofen
10711                                                                                                                  lufenuron, milbemycin oxime
10712                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                                      omega 3
10714                                                                                                                                 multivitamin
10715                                                                                                                                  coconut oil
10716                                                                                                                                    carprofen
10717                                                                                                                  lufenuron, milbemycin oxime
10718                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10719                                                                                                                                    carprofen
10720                                                                                                                                      calcium
10721                                                                                                                                     oxytocin
10722                                                                                                                                    carprofen
10723                                                                                                                                hydromorphone
10724                                                                                                                                     propofol
10725                                                                                                                  lufenuron, milbemycin oxime
10726                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                                       unspecified medication
10728                                                                                                                              dexmedetomidine
10729                                                                                                                         butorphanol tartrate
10730                                                                                                                                 acepromazine
10731                                                                                                                                  atipamezole
10732                                                                                                           amoxicillin, clavulanate potassium
10733                                                                                                                                   gabapentin
10734                                                                                                                                    carprofen
10735                                                                                                                           maropitant citrate
10736                                                                                                                                metronidazole
10737                                                                                                                                    carprofen
10738                                                                                                                                    carprofen
10739                                                                                                                                levothyroxine
10740                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
10741                                                                                                                                   cephalexin
10742                                                                                                                                levothyroxine
10743                                                                                                                      chlorhexidine gluconate
10744                                                                                                                 ivermectin, pyrantel pamoate
10745                                                                                                                 ivermectin, pyrantel pamoate
10746                                                                                                                 ivermectin, pyrantel pamoate
10747                                                                                                                           maropitant citrate
10748                                                                                                                 ivermectin, pyrantel pamoate
10749                                                                                                           amoxicillin, clavulanate potassium
10750                                                                                                            enrofloxacin, silver sulfadiazine
10751                                                                                                               ketoconazole, phytosphingosine
10752                                                                                                               ketoconazole, phytosphingosine
10753                                                                                                            betamethasone, gentamicin sulfate
10754                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10755                                                                                                                 ivermectin, pyrantel pamoate
10756                                                                                                                                   ivermectin
10757                                                                                                                 ivermectin, pyrantel pamoate
10758                                                                                                                     fipronil, (s)-methoprene
10759                                                                                                                     fipronil, (s)-methoprene
10760                                                                                                                 ivermectin, pyrantel pamoate
10761                                                                                                                     fipronil, (s)-methoprene
10762                                                                                                                 ivermectin, pyrantel pamoate
10763                                                                                                           amoxicillin, clavulanate potassium
10764                                                                                                                                    carprofen
10765                                                                                                                                   ivermectin
10766                                                                                                                                   ivermectin
10767                                                                                                                                metronidazole
10768                                                                                                                               chlorphenamine
10769                                                                                                                 ivermectin, pyrantel pamoate
10770                                                                                                                 ivermectin, pyrantel pamoate
10771                                                                                                                                   afoxolaner
10772                                                                                                                                    sarolaner
10773                                                                                                                 ivermectin, pyrantel pamoate
10774                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10775                                                                                                                                   grapiprant
10776                                                                                                                                    oxycodone
10777                                                                                                                                  clindamycin
10778                                                                                                            betamethasone, gentamicin sulfate
10779                                                                                                           amoxicillin, clavulanate potassium
10780                                                                                                                 ivermectin, pyrantel pamoate
10781                                                                                                                                   afoxolaner
10782                                                                                                                                  clindamycin
10783                                                                                                                                    oxycodone
10784                                                                                                                                metronidazole
10785                                                                                                           amoxicillin, clavulanate potassium
10786                                                                                                                                    cefazolin
10787                                                                                                                                   lokivetmab
10788                                                                                                                                hydromorphone
10789                                                                                                                         butorphanol tartrate
10790                                                                                                                                 acepromazine
10791                                                                                                                                     propofol
10792                                                                                                                 ivermectin, pyrantel pamoate
10793                                                                                                                             pyrantel pamoate
10794                                                                                                                 ivermectin, pyrantel pamoate
10795                                                                                                                 ivermectin, pyrantel pamoate
10796                                                                                                                 ivermectin, pyrantel pamoate
10797                                                                                                                             pyrantel pamoate
10798                                                                                                                         cefpodoxime proxetil
10799                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10800                                                                                                                                   lokivetmab
10801                                                                                                                             pyrantel pamoate
10802                                                                                                                                    carprofen
10803                                                                                                                         cefpodoxime proxetil
10804                                                                                                                                   lokivetmab
10805                                                                                                                                    carprofen
10806                                                                                                                         cefpodoxime proxetil
10807                                                                                                                                   lokivetmab
10808                                                                                                                           maropitant citrate
10809                                                                                                                                    carprofen
10810                                                                                                                         cefpodoxime proxetil
10811                                                                                                                                   gabapentin
10812                                                                                                                                   lokivetmab
10813                                                                                                                                buprenorphine
10814                                                                                                                                    carprofen
10815                                                                                                                                   cephalexin
10816                                                                                                                         cefpodoxime proxetil
10817                                                                                                                                   trilostane
10818                                                                                                                                    carprofen
10819                                                                                                                  lufenuron, milbemycin oxime
10820                                                                                                                 ivermectin, pyrantel pamoate
10821                                                                                                                                    carprofen
10822                                                                                                                                   cephalexin
10823                                                                                                                                ciprofloxacin
10824                                                                                                                                   moxidectin
10825                                                                                                                     flumethrin, imidacloprid
10826                                                                                                                 ivermectin, pyrantel pamoate
10827                                                                                                                     flumethrin, imidacloprid
10828                                                                                                                                  oclacitinib
10829                                                                                                                                   cephalexin
10830                                                                                                                 ivermectin, pyrantel pamoate
10831                                                                                                                                    carprofen
10832                                                                                                                                  oclacitinib
10833                                                                                                                                   cephalexin
10834                                                                                                                                   cephalexin
10835                                                                                                                                  oclacitinib
10836                                                                                                                                    carprofen
10837                                                                                                           amoxicillin, clavulanate potassium
10838                                                                                                                                  oclacitinib
10839                                                                                                                                    carprofen
10840                                                                                                                 ivermectin, pyrantel pamoate
10841                                                                                                            trimeprazine tartrate, prednisone
10842                                                                                                                 ivermectin, pyrantel pamoate
10843                                                                                                                                   selamectin
10844                                                                                                            trimeprazine tartrate, prednisone
10845                                                                                                                                 ketoconazole
10846                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10847                                                                                                                                 fenbendazole
10848                                                                                                                                  oclacitinib
10849                                                                                                                 ivermectin, pyrantel pamoate
10850                                                                                                                                   fluralaner
10851                                                                                                        dinotefuran, permethrin, pyriproxyfen
10852                                                                                                                              diphenhydramine
10853                                                                                                                                      amitraz
10854                                                                                                                 ivermectin, pyrantel pamoate
10855                                                                                                                                   moxidectin
10856                                                                                                                                levetiracetam
10857                                                                                                                 ivermectin, pyrantel pamoate
10858                                                                                                                     fipronil, (s)-methoprene
10859                                                                                                                          phenylpropanolamine
10860                                                                                                                 ivermectin, pyrantel pamoate
10861                                                                                                           fipronil, permethrin, pyriproxyfen
10862                                                                                                                          phenylpropanolamine
10863                                                                                                            betamethasone, gentamicin sulfate
10864                                                                                                                                   cephalexin
10865                                                                                                                 ivermectin, pyrantel pamoate
10866                                                                                                           fipronil, permethrin, pyriproxyfen
10867                                                                                                                          phenylpropanolamine
10868                                                                                                                  lufenuron, milbemycin oxime
10869                                                                                                                     fipronil, (s)-methoprene
10870                                                                                                                  lufenuron, milbemycin oxime
10871                                                                                                                     fipronil, (s)-methoprene
10872                                                                                                                          phenylpropanolamine
10873                                                                                                                                    carprofen
10874                                                                                                                  lufenuron, milbemycin oxime
10875                                                                                                                     fipronil, (s)-methoprene
10876                                                                                                                          phenylpropanolamine
10877                                                                                                                 ivermectin, pyrantel pamoate
10878                                                                                                                                   afoxolaner
10879                                                                                                                                      taurine
10880                                                                                                                                      omega 3
10881                                                                                                                                metronidazole
10882                                                                                                                           maropitant citrate
10883                                                                                                                                    carprofen
10884                                                                                                                                      taurine
10885                                                                                                                                      omega 3
10886                                                                                                                 ivermectin, pyrantel pamoate
10887                                                                                                                              diphenhydramine
10888                                                                                                                 ivermectin, pyrantel pamoate
10889                                                                                                                     fipronil, (s)-methoprene
10890                                                                                                                 ivermectin, pyrantel pamoate
10891                                                                                                                 ivermectin, pyrantel pamoate
10892                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10893                                                                                                                 ivermectin, pyrantel pamoate
10894                                                                                                                                     tramadol
10895                                                                                                                                    carprofen
10896                                                                                               mometasone furoate, orbifloxacin, posaconazole
10897                                                                                                                 ivermectin, pyrantel pamoate
10898                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10899                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10900                                                                                                                 ivermectin, pyrantel pamoate
10901                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10902                                                                                                                                    carprofen
10903                                                                                                                                ciprofloxacin
10904                                                                                                                               chlorphenamine
10905                                                                                                            betamethasone, gentamicin sulfate
10906                                                                                                                                metronidazole
10907                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10908                                                                                                                                    firocoxib
10909                                                                                                                                   cephalexin
10910                                                                                                               polysulfated glycosaminoglycan
10911                                                                                                                                  bedinvetmab
10912                                                                                                                                    firocoxib
10913                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10914                                                                                                                                    carprofen
10915                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10916                                                                                                              ear cleaner (epi-otic advanced)
10917                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10918                                                                                                                                   cephalexin
10919                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10920                                                                                                                                    carprofen
10921                                                                                                                                 fenbendazole
10922                                                                                                                                 azathioprine
10923                                                                                                                                  doxycycline
10924                                                                                                                                   prednisone
10925                                                                                                                                  clindamycin
10926                                                                                                                                dexamethasone
10927                                                                                                                   milbemycin oxime, spinosad
10928                                                                                                                                   afoxolaner
10929                                                                                                                 ivermectin, pyrantel pamoate
10930                                                                                                                                   afoxolaner
10931                                                                                                                 ivermectin, pyrantel pamoate
10932                                                                                                                                   afoxolaner
10933                                                                                                                                   ivermectin
10934                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10935                                                                                                               sulfamethoxazole, trimethoprim
10936                                                                                                                  lufenuron, milbemycin oxime
10937                                                                                                                     urinary tract supplement
10938                                                                                                                             milbemycin oxime
10939                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10940                                                                                                                                    carprofen
10941                                                                                                                 ivermectin, pyrantel pamoate
10942                                                                                                                                  amoxicillin
10943                                                                                                                                    carprofen
10944                                                                                                                                   cephalexin
10945                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10946                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
10947                                                                                                                 ivermectin, pyrantel pamoate
10948                                                                                                                     fipronil, (s)-methoprene
10949                                                                                                                 ivermectin, pyrantel pamoate
10950                                                                                                                     fipronil, (s)-methoprene
10951                                                                                                                              diphenhydramine
10952                                                                                                                 ivermectin, pyrantel pamoate
10953                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10954                                                                                                                 ivermectin, pyrantel pamoate
10955                                                                                                                                   afoxolaner
10956                                                                                                                 ivermectin, pyrantel pamoate
10957                                                                                                                                   afoxolaner
10958                                                                                                                 ivermectin, pyrantel pamoate
10959                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10960                                                                                                                                metronidazole
10961                                                                                                                                   pimobendan
10962                                                                                                                               benazepril hcl
10963                                                                                                                                   furosemide
10964                                                                                                                               spironolactone
10965                                                                                                                                   mexiletine
10966                                                                                                                             milbemycin oxime
10967                                                                                                                                   fluralaner
10968                                                                                                                             milbemycin oxime
10969                                                                                                                                   fluralaner
10970                                                                                                                             milbemycin oxime
10971                                                                                                                                   fluralaner
10972                                                                                                                                   cephalexin
10973                                                                                                                                 fenbendazole
10974                                                                                                                                    probiotic
10975                                                                                                                                    carprofen
10976                                                                                                                              dexmedetomidine
10977                                                                                                                                hydromorphone
10978                                                                                                                                     propofol
10979                                                                                                                                  bupivacaine
10980                                                                                                                                   isoflurane
10981                                                                                                                                    carprofen
10982                                                                                                                                    carprofen
10983                                                                                                                                   cephalexin
10984                                                                                                                                  pilocarpine
10985                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10986                                                                                                                                    carprofen
10987                                                                                                                                  clindamycin
10988                                                                                                                                metronidazole
10989                                                                                                                                    probiotic
10990                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10991                                                                                                                                    carprofen
10992                                                                                                                                    carprofen
10993                                                                                                           amoxicillin, clavulanate potassium
10994                                                                                                                     imidacloprid, moxidectin
10995                                                                                                                                     oxytocin
10996                                                                                                                                  amoxicillin
10997                                                                                                                 ivermectin, pyrantel pamoate
10998                                                                                                                     fipronil, (s)-methoprene
10999                                                                                                                                ciprofloxacin
11000                                                                                                                 ivermectin, pyrantel pamoate
11001                                                                                                                                  amoxicillin
11002                                                                                                                 afoxolaner, milbemycin oxime
11003                                                                                                                 afoxolaner, milbemycin oxime
11004                                                                                                                                metronidazole
11005                                                                                                                             tylosin tartrate
11006                                                                                                                                   ivermectin
11007                                                                                                                                   ivermectin
11008                                                                                                                 ivermectin, pyrantel pamoate
11009                                                                                                                 ivermectin, pyrantel pamoate
11010                                                                                                                                   ivermectin
11011                                                                                                                 ivermectin, pyrantel pamoate
11012                                                                                                                         cefpodoxime proxetil
11013                                                                                                                         prednisolone acetate
11014                                                                                                                         prednisolone acetate
11015                                                                                                                         cefpodoxime proxetil
11016                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11017                                                                                                                         prednisolone acetate
11018                                                                                                                         cefpodoxime proxetil
11019                                                                                                                         cefpodoxime proxetil
11020                                                                                                                                  hydroxyzine
11021                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
11022                                                                                                                                   selamectin
11023                                                                                                                      acetic acid, boric acid
11024                                                                                                                         butorphanol tartrate
11025                                                                                                                              dexmedetomidine
11026                                                                                                                                    carprofen
11027                                                                                                                                buprenorphine
11028                                                                                                                                    lidocaine
11029                                                                                                                                  bupivacaine
11030                                                                                                                                   ivermectin
11031                                                                                                                             pyrantel pamoate
11032                                                                                                                     fipronil, (s)-methoprene
11033                                                                                                                 ivermectin, pyrantel pamoate
11034                                                                                                                     fipronil, (s)-methoprene
11035                                                                                                                 ivermectin, pyrantel pamoate
11036                                                                                                                                   afoxolaner
11037                                                                                                                 ivermectin, pyrantel pamoate
11038                                                                                                                                   afoxolaner
11039                                                                                                                 ivermectin, pyrantel pamoate
11040                                                                                                                                   afoxolaner
11041                                                                                                                 ivermectin, pyrantel pamoate
11042                                                                                                                                   afoxolaner
11043                                                                                                                                metronidazole
11044                                                                                                                                   lokivetmab
11045                                                                                                                                 chlorambucil
11046                                                                                                                                   prednisone
11047                                                                                                                                   cephalexin
11048                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11049                                                                                                                                   cephalexin
11050                                                                                                                 ivermectin, pyrantel pamoate
11051                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11052                                                                                                 florfenicol, mometasone furoate, terbinafine
11053                                                                                                     febantel, praziquantel, pyrantel pamoate
11054                                                                                                                                  telmisartan
11055                                                                                                                                   prednisone
11056                                                                                                                  lufenuron, milbemycin oxime
11057                                                                                                                                     spinosad
11058                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11059                                                                                                                                    carprofen
11060                                                                                                       joint supplement (glucosamine hcl/msm)
11061                                                                                                                                dexamethasone
11062                                                                                                            trimeprazine tartrate, prednisone
11063                                                                                                                                  minocycline
11064                                                                                                                  lufenuron, milbemycin oxime
11065                                                                                                                  lufenuron, milbemycin oxime
11066                                                                                                                                   fluralaner
11067                                                                                                                                     tramadol
11068                                                                                                                                dexamethasone
11069                                                                                                       joint supplement (glucosamine hcl/msm)
11070                                                                                                                  lufenuron, milbemycin oxime
11071                                                                                                                                     tramadol
11072                                                                                                                  lufenuron, milbemycin oxime
11073                                                                                                                                   fluralaner
11074                                                                                                                                     tramadol
11075                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11076                                                                                                                         cefpodoxime proxetil
11077                                                                                                                              diphenhydramine
11078                                                                                                                                  hydroxyzine
11079                                                                                                                                     tramadol
11080                                                                                                                                    carprofen
11081                                                                                                                                  oclacitinib
11082                                                                                                                                     tramadol
11083                                                                                                                                  hydroxyzine
11084                                                                                                                                   gabapentin
11085                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11086                                                                                                                                    carprofen
11087                                                                                                                                  hydroxyzine
11088                                                                                                                              cbd or hemp oil
11089                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11090                                                                                                                 ivermectin, pyrantel pamoate
11091                                                                                                                     imidacloprid, permethrin
11092                                                                                                                   milbemycin oxime, spinosad
11093                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
11094                                                                                                                                metronidazole
11095                                                                                                                 ivermectin, pyrantel pamoate
11096                                                                                                                 ivermectin, pyrantel pamoate
11097                                                                                                                                  oclacitinib
11098                                                                                                                                  doxycycline
11099                                                                                                                 ivermectin, pyrantel pamoate
11100                                                                                                                                metronidazole
11101                                                                                                                 ivermectin, pyrantel pamoate
11102                                                                                                                                  doxycycline
11103                                                                                                                                   sucralfate
11104                                                                                                                                metronidazole
11105                                                                                                                                    probiotic
11106                                                                                                                                    meloxicam
11107                                                                                                                                  oclacitinib
11108                                                                                                                                 cyclosporine
11109                                                                                                                allergy immunotherapy - drops
11110                                                                                                                                   lokivetmab
11111                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11112                                                                                                                                 ketoconazole
11113                                                                                                                           miconazole nitrate
11114                                                                                                                                   lokivetmab
11115                                                                                                                                  fluconazole
11116                                                                                                                                  clindamycin
11117                                                                                                                                   prednisone
11118                                                                                                                                  clindamycin
11119                                                                                                           chlorhexidine gluconate, ophytrium
11120                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11121                                                                                                                      ketoconazole, tris-edta
11122                                                                                                           chlorhexidine gluconate, ophytrium
11123                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
11124                                                                                                                                   fluralaner
11125                                                                                                                 ivermectin, pyrantel pamoate
11126                                                                                                                                   lokivetmab
11127                                                                                                                                  fluconazole
11128                                                                                                                                  clindamycin
11129                                                                                                                                   prednisone
11130                                                                                                                           miconazole nitrate
11131                                                                                                                                  hydroxyzine
11132                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11133                                                                                                                                   ivermectin
11134                                                                                                                     fipronil, (s)-methoprene
11135                                                                                                                                   lokivetmab
11136                                                                                                           chlorhexidine gluconate, ophytrium
11137                                                                                                                      ketoconazole, tris-edta
11138                                                                                               mometasone furoate, orbifloxacin, posaconazole
11139                                                                                                                                   cephalexin
11140                                                                                                                                   cephalexin
11141                                                                                               mometasone furoate, orbifloxacin, posaconazole
11142                                                                                                 florfenicol, mometasone furoate, terbinafine
11143                                                                                                                                   lokivetmab
11144                                                                                                                      chlorhexidine gluconate
11145                                                                                                                      ketoconazole, tris-edta
11146                                                                                                                                   cephalexin
11147                                                                                                                                   lokivetmab
11148                                                                                                                                   lokivetmab
11149                                                                                                                                    carprofen
11150                                                                                                                                    carprofen
11151                                                                                                                 ormetoprim, sulfadimethoxine
11152                                                                                                                  lufenuron, milbemycin oxime
11153                                                                                                                     imidacloprid, permethrin
11154                                                                                                                                    carprofen
11155                                                                                                                  lufenuron, milbemycin oxime
11156                                                                                                                     imidacloprid, permethrin
11157                                                                                                                                   afoxolaner
11158                                                                                                    lufenuron, milbemycin oxime, praziquantel
11159                                                                                                                 ivermectin, pyrantel pamoate
11160                                                                                                                                   afoxolaner
11161                                                                                                                                   fluoxetine
11162                                                                                                                                   fluoxetine
11163                                                                                                                 ivermectin, pyrantel pamoate
11164                                                                                                                                   afoxolaner
11165                                                                                                                 ivermectin, pyrantel pamoate
11166                                                                                                                                   afoxolaner
11167                                                                                                                                   fluoxetine
11168                                                                                                                 ivermectin, pyrantel pamoate
11169                                                                                                                                   afoxolaner
11170                                                                                                                                   sertraline
11171                                                                                                                                   famotidine
11172                                                                                                                                   sertraline
11173                                                                                                                                   famotidine
11174                                                                                                           amoxicillin, clavulanate potassium
11175                                                                                                                              diphenhydramine
11176                                                                                                                                    carprofen
11177                                                                                                                                   lokivetmab
11178                                                                                                                                   sertraline
11179                                                                                                                                   sertraline
11180                                                                                                               polysulfated glycosaminoglycan
11181                                                                                                                                    carprofen
11182                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11183                                                                                                            trimeprazine tartrate, prednisone
11184                                                                                                                                   ivermectin
11185                                                                                                                 ivermectin, pyrantel pamoate
11186                                                                                                                 ivermectin, pyrantel pamoate
11187                                                                                                                                  oclacitinib
11188                                                                                                                                 acepromazine
11189                                                                                                                 ivermectin, pyrantel pamoate
11190                                                                                                                                  oclacitinib
11191                                                                                                                 ivermectin, pyrantel pamoate
11192                                                                                                                                  clindamycin
11193                                                                                                                                   gabapentin
11194                                                                                                                                  oclacitinib
11195                                                                                                                                    carprofen
11196                                                                                                                                     spinosad
11197                                                                                                                                     spinosad
11198                                                                                                                                     spinosad
11199                                                                                                           amoxicillin, clavulanate potassium
11200                                                                                                                                yunnan baiyao
11201                                                                                                                                   gabapentin
11202                                                                                                                                     tramadol
11203                                                                                                                                    meloxicam
11204                                                                                                           amoxicillin, clavulanate potassium
11205                                                                                                                                    carprofen
11206                                                                                                                                   ivermectin
11207                                                                                                                 ivermectin, pyrantel pamoate
11208                                                                                                                  lufenuron, milbemycin oxime
11209                                                                                                                                 coenzyme q10
11210                                                                                                                                    probiotic
11211                                                                                                                       unspecified medication
11212                                                                                                                  lufenuron, milbemycin oxime
11213                                                                                                                    immune support supplement
11214                                                                                                           amoxicillin, clavulanate potassium
11215                                                                                                                                   gabapentin
11216                                                                                                                                    carprofen
11217                                                                                                                                metronidazole
11218                                                                                                                                  amoxicillin
11219                                                                                                                                 fenbendazole
11220                                                                                                                                metronidazole
11221                                                                                                                                   cephalexin
11222                                                                                                                           maropitant citrate
11223                                                                                                                                 praziquantel
11224                                                                                                                                   ivermectin
11225                                                                                                                                   cephalexin
11226                                                                                                                              diphenhydramine
11227                                                                                                                                   selamectin
11228                                                                                                                 ivermectin, pyrantel pamoate
11229                                                                                                                 ivermectin, pyrantel pamoate
11230                                                                                                                     fipronil, (s)-methoprene
11231                                                                                                                             milbemycin oxime
11232                                                                                                                                   fluralaner
11233                                                                                                                                    probiotic
11234                                                                                                                                  oclacitinib
11235                                                                                                                                    vitamin k
11236                                                                                                                                  oclacitinib
11237                                                                                                                                    vitamin k
11238                                                                                                                                    carprofen
11239                                                                                                                                    deracoxib
11240                                                                                                                                   gabapentin
11241                                                                                                                   milbemycin oxime, spinosad
11242                                                                                                                  lufenuron, milbemycin oxime
11243                                                                                                    lufenuron, milbemycin oxime, praziquantel
11244                                                                                                                                     spinosad
11245                                                                                                                  lufenuron, milbemycin oxime
11246                                                                                                                                     spinosad
11247                                                                                                                                metronidazole
11248                                                                                                                                metronidazole
11249                                                                                                                                  doxycycline
11250                                                                                                                                     tramadol
11251                                                                                                                                levothyroxine
11252                                                                                                                                   fluoxetine
11253                                                                                                                         prednisolone acetate
11254                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11255                                                                                                                  lufenuron, milbemycin oxime
11256                                                                                                                                levothyroxine
11257                                                                                                                                   fluoxetine
11258                                                                                                            betamethasone, gentamicin sulfate
11259                                                                                                                         cefpodoxime proxetil
11260                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11261                                                                                                                                dexamethasone
11262                                                                                                                         prednisolone acetate
11263                                                                                                                                dexamethasone
11264                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11265                                                                                                                         cefpodoxime proxetil
11266                                                                                           chlorhexidine gluconate, hydrocortisone, tris-edta
11267                                                                                                                     imidacloprid, permethrin
11268                                                                                                                  lufenuron, milbemycin oxime
11269                                                                                                                                levothyroxine
11270                                                                                                                                   fluoxetine
11271                                                                                                                                      omega 3
11272                                                                                               dexamethasone, neomycin sulfate, thiabendazole
11273                                                                                                                  lufenuron, milbemycin oxime
11274                                                                                                                                levothyroxine
11275                                                                                                                                   fluoxetine
11276                                                                                                                  lufenuron, milbemycin oxime
11277                                                                                                                                levothyroxine
11278                                                                                                                                   fluoxetine
11279                                                                                                                                levothyroxine
11280                                                                                                                                   fluoxetine
11281                                                                                                                                   fluoxetine
11282                                                                                                                                   gabapentin
11283                                                                                                                                levothyroxine
11284                                                                                                                                  clindamycin
11285                                                                                                                                   fluoxetine
11286                                                                                                                                levothyroxine
11287                                                                                                                                   gabapentin
11288                                                                                                                                   gabapentin
11289                                                                                                                                  doxycycline
11290                                                                                                                                   gabapentin
11291                                                                                                                 ivermectin, pyrantel pamoate
11292                                                                                                                                     spinosad
11293                                                                                                                 ivermectin, pyrantel pamoate
11294                                                                                                                                   afoxolaner
11295                                                                                                                 ivermectin, pyrantel pamoate
11296                                                                                                                                   afoxolaner
11297                                                                                                                                    firocoxib
11298                                                                                                                     skin and coat supplement
11299                                                                                                                                dexamethasone
11300                                                                                                                              diphenhydramine
11301                                                                                                                 ivermectin, pyrantel pamoate
11302                                                                                                                 ivermectin, pyrantel pamoate
11303                                                                                                                                   afoxolaner
11304                                                                                                                                    firocoxib
11305                                                                                                                     skin and coat supplement
11306                                                                                                                         cefpodoxime proxetil
11307                                                                                                                 ivermectin, pyrantel pamoate
11308                                                                                                                                 enrofloxacin
11309                                                                                                                 ivermectin, pyrantel pamoate
11310                                                                                                                                    sarolaner
11311                                                                                                                 ivermectin, pyrantel pamoate
11312                                                                                                                                    sarolaner
11313                                                                                                                                  clindamycin
11314                                                                                                                                    firocoxib
11315                                                                                                                 ivermectin, pyrantel pamoate
11316                                                                                                                                    sarolaner
11317                                                                                                                                  clindamycin
11318                                                                                                                                    firocoxib
11319                                                                                                                         cefpodoxime proxetil
11320                                                                                                                         cefpodoxime proxetil
11321                                                                                                                     skin and coat supplement
11322                                                                                                                                    firocoxib
11323                                                                                                                                 enrofloxacin
11324                                                                                                                                    meloxicam
11325                                                                                                                   milbemycin oxime, spinosad
11326                                                                                                                  lufenuron, milbemycin oxime
11327                                                                                                                   milbemycin oxime, spinosad
11328                                                                                                                   milbemycin oxime, spinosad
11329                                                                                                                   milbemycin oxime, spinosad
11330                                                                                                                   milbemycin oxime, spinosad
11331                                                                                                                   milbemycin oxime, spinosad
11332                                                                                                                                  doxycycline
11333                                                                                                                                dexamethasone
11334                                                                                                                                yunnan baiyao
11335                                                                                                                                metronidazole
11336                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11337                                                                                                                              diphenhydramine
11338                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11339                                                                                                                                  minocycline
11340                                                                                                   dextromethorphan hydrobromide, guaifenesin
11341                                                                                                                 ivermectin, pyrantel pamoate
11342                                                                                                        dinotefuran, permethrin, pyriproxyfen
11343                                                                                                                              diphenhydramine
11344                                                                                                                 ivermectin, pyrantel pamoate
11345                                                                                                                                   afoxolaner
11346                                                                                                                          ear cleaner (zymox)
11347                                                                                                                 ivermectin, pyrantel pamoate
11348                                                                                                                                   afoxolaner
11349                                                                                                                          ear cleaner (zymox)
11350                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                                                 ivermectin, pyrantel pamoate
11352                                                                                                                                   afoxolaner
11353                                                                                                     febantel, praziquantel, pyrantel pamoate
11354                                                                                                            betamethasone, gentamicin sulfate
11355                                                                                                                         cefpodoxime proxetil
11356                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11357                                                                                                           amoxicillin, clavulanate potassium
11358                                                                                                                                   gabapentin
11359                                                                                                                                 capromorelin
11360                                                                                                                                    carprofen
11361                                                                                                                                levothyroxine
11362                                                                                                                  lufenuron, milbemycin oxime
11363                                                                                                                                     tramadol
11364                                                                                                                                levothyroxine
11365                                                                                                                                methocarbamol
11366                                                                                                                             milbemycin oxime
11367                                                                                                                                levothyroxine
11368                                                                                                                             milbemycin oxime
11369                                                                                                                                levothyroxine
11370                                                                                                                                levothyroxine
11371                                                                                                                                  amoxicillin
11372                                                                                                                                   gabapentin
11373                                                                                                                 ivermectin, pyrantel pamoate
11374                                                                                                                                    thyroxine
11375                                                                                                                                    thyroxine
11376                                                                                                                                    thyroxine
11377                                                                                                                                   selamectin
11378                                                                                                                 ivermectin, pyrantel pamoate
11379                                                                                                                                  amoxicillin
11380                                                                                                                                    thyroxine
11381                                                                                                                                   ivermectin
11382                                                                                                                                metronidazole
11383                                                                                                                                     tramadol
11384                                                                                                                                    meloxicam
11385                                                                                                                                   ivermectin
11386                                                                                                                                   ivermectin
11387                                                                                                                                 fenbendazole
11388                                                                                                                                 fenbendazole
11389                                                           dimethyl sulfoxide, fluocinolone acetonide, gentamicin sulfate, miconazole nitrate
11390                                                                                                                     fipronil, (s)-methoprene
11391                                                                                                           amoxicillin, clavulanate potassium
11392                                                                                                           amoxicillin, clavulanate potassium
11393                                                                                                                                 fenbendazole
11394                                                                                                                                   benzocaine
11395                                                                                                                                 ketoconazole
11396                                                                                                                                     tramadol
11397                                                                                                                                   sucralfate
11398                                                                                                                               metoclopramide
11399                                                                                                                               hydrocortisone
11400                                                                                                                              diphenhydramine
11401                                                                                                                                metronidazole
11402                                                                                                                                     tramadol
11403                                                                                                                           maropitant citrate
11404                                                                                                                                   famotidine
11405                                                                                                                                   omeprazole
11406                                                                                                                                    carprofen
11407                                                                                                                                  amoxicillin
11408                                                                                                                           maropitant citrate
11409                                                                                                                                 praziquantel
11410                                                                                                                                   loperamide
11411                                                                                                                                metronidazole
11412                                                                                                                                    carprofen
11413                                                                                                                                   grapiprant
11414                                                                                                                                    carprofen
11415                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11416                                                                                                                                   cephalexin
11417                                                                                                                                    carprofen
11418                                                                                                                                metronidazole
11419                                                                                                                             tylosin tartrate
11420                                                                                                                                   gabapentin
11421                                                                                                                                buprenorphine
11422                                                                                                                                   sucralfate
11423                                                                                                                           maropitant citrate
11424                                                                                                                                 pantoprazole
11425                                                                                                                                   ivermectin
11426                                                                                                                             milbemycin oxime
11427                                                                                                                                    lufenuron
11428                                                                                                                                hydromorphone
11429                                                                                                                                 acepromazine
11430                                                                                                                                     ketamine
11431                                                                                                                                    midazolam
11432                                                                                                                                  clindamycin
11433                                                                                                                                    carprofen
11434                                                                                                                                  clindamycin
11435                                                                                                                                    carprofen
11436                                                                                                    lufenuron, milbemycin oxime, praziquantel
11437                                                                                                                  lufenuron, milbemycin oxime
11438                                                                                                                                   cephalexin
11439                                                                                                                             pyrantel pamoate
11440                                                                                                                  lufenuron, milbemycin oxime
11441                                                                                                                  lufenuron, milbemycin oxime
11442                                                                                                          ear cleaner (zymox), hydrocortisone
11443                                                                                                                  lufenuron, milbemycin oxime
11444                                                                                                                                   tobramycin
11445                                                                                                                  lufenuron, milbemycin oxime
11446                                                                                                        dinotefuran, permethrin, pyriproxyfen
11447                                                                                                                         cefpodoxime proxetil
11448                                                                                                                         cefpodoxime proxetil
11449                                                                                                                      triamcinolone acetonide
11450                                                                                                                                    carprofen
11451                                                                                                          ear cleaner (zymox), hydrocortisone
11452                                                                                                                  lufenuron, milbemycin oxime
11453                                                                                                        dinotefuran, permethrin, pyriproxyfen
11454                                                                                                           amoxicillin, clavulanate potassium
11455                                                                                                           amoxicillin, clavulanate potassium
11456                                                                                                                         cefpodoxime proxetil
11457                                                                                                                                    meloxicam
11458                                                                                                                  lufenuron, milbemycin oxime
11459                                                                                                        dinotefuran, permethrin, pyriproxyfen
11460                                                                                                                  lufenuron, milbemycin oxime
11461                                                                                                        dinotefuran, permethrin, pyriproxyfen
11462                                                                                                        dinotefuran, permethrin, pyriproxyfen
11463                                                                                                                  lufenuron, milbemycin oxime
11464                                                                                                          ear cleaner (zymox), hydrocortisone
11465                                                                                                                                  oclacitinib
11466                                                                                                                                  oclacitinib
11467                                                                                                                                   sucralfate
11468                                                                                                                                hydromorphone
11469                                                                                                                                     propofol
11470                                                                                                                                   isoflurane
11471                                                                                                                               dental sealant
11472                                                                                                                                   selamectin
11473                                                                                                                                   ivermectin
11474                                                                                                                                   afoxolaner
11475                                                                                                                 ivermectin, pyrantel pamoate
11476                                                                                                                                   afoxolaner
11477                                                                                                                 ivermectin, pyrantel pamoate
11478                                                                                                                                   ivermectin
11479                                                                                                                                   afoxolaner
11480                                                                                                                                    meloxicam
11481                                                                                                                 ivermectin, pyrantel pamoate
11482                                                                                                                                   afoxolaner
11483                                                                                                                                    meloxicam
11484                                                                                                                                     tramadol
11485                                                                                                                                    carprofen
11486                                                                                                                                metronidazole
11487                                                                                                                                  mirtazapine
11488                                                                                                                           maropitant citrate
11489                                                                                                                                 capromorelin
11490                                                                                                                                     tramadol
11491                                                                                                                                   gabapentin
11492                                                                                                                                    probiotic
11493                                                                                                           joint supplement (glucosamine hcl)
11494                                                                                                                                    carprofen
11495                                                                                                                                   prednisone
11496                                                                                                                                dexamethasone
11497                                                                                                                                metronidazole
11498                                                                                                                                    carprofen
11499                                                                                                                         prednisolone acetate
11500                                                                                                                                dexamethasone
11501                                                                                                                                   prednisone
11502                                                                                                                                metronidazole
11503                                                                                                               sulfamethoxazole, trimethoprim
11504                                                                                                                                 fenbendazole
11505                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
11506                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
11507                                                                                                            betamethasone, gentamicin sulfate
11508                                                                                                                                  amoxicillin
11509                                                                                                   ivermectin, praziquantel, pyrantel pamoate
11510                                                                                                                                   ivermectin
11511                                                                                                                                  doxycycline
11512                                                                                               dexamethasone, neomycin sulfate, thiabendazole
11513                                                                                                                      ketoconazole, tris-edta
11514                                                                                                                 ivermectin, pyrantel pamoate
11515                                                                                                                                levothyroxine
11516                                                                                                                         prednisolone acetate
11517                                                                                                                 ivermectin, pyrantel pamoate
11518                                                                                                                                levothyroxine
11519                                                                                                                     joint supplement (other)
11520                                                                                                                                   ivermectin
11521                                                                                                                                levothyroxine
11522                                                                                                                 ivermectin, pyrantel pamoate
11523                                                                                                                                levothyroxine
11524                                                                                                                                levothyroxine
11525                                                                                                                                    enalapril
11526                                                                                                                                  telmisartan
11527                                                                                                                                levothyroxine
11528                                                                                                                                  telmisartan
11529                                                                                                                                levothyroxine
11530                                                                                                                                  telmisartan
11531                                                                                                                             pyrantel pamoate
11532                                                                                                                                 praziquantel
11533                                                                                                                                    lufenuron
11534                                                                                                                             milbemycin oxime
11535                                                                                                                                    carprofen
11536                                                                                                                  lufenuron, milbemycin oxime
11537                                                                                                                  lufenuron, milbemycin oxime
11538                                                                                                                  lufenuron, milbemycin oxime
11539                                                                                                                                 ketoconazole
11540                                                                                                                                  doxycycline
11541                                                                                                                         prednisolone acetate
11542                                                                                                       cognitive supplement, liver supplement
11543                                                                                                                                metronidazole
11544                                                                                                                                  amoxicillin
11545                                                                                                                  lufenuron, milbemycin oxime
11546                                                                                                                  lufenuron, milbemycin oxime
11547                                                                                                                  lufenuron, milbemycin oxime
11548                                                                                                                                  bedinvetmab
11549                                                                                                                         cefpodoxime proxetil
11550                                                                                                           amoxicillin, clavulanate potassium
11551                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11552                                                                                                                                   gabapentin
11553                                                                                                                                  bedinvetmab
11554                                                                                                                                    carprofen
11555                                                                                                                                   prednisone
11556                                                                                                                                   prednisone
11557                                                                                                                                   prednisone
11558                                                                                                                                   sucralfate
11559                                                                                                                 ivermectin, pyrantel pamoate
11560                                                                                                                 ivermectin, pyrantel pamoate
11561                                                                                                                 ivermectin, pyrantel pamoate
11562                                                                                                                                   afoxolaner
11563                                                                                                                                      omega 3
11564                                                                                                   toothpaste/dental health solution or chews
11565                                                                                                                                  clindamycin
11566                                                                                                                                    carprofen
11567                                                                                                                 ivermectin, pyrantel pamoate
11568                                                                                                                                   afoxolaner
11569                                                                                                                                 enrofloxacin
11570                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11571                                                                                                                                    meloxicam
11572                                                                                                                                   cephalexin
11573                                                                                                                                   gabapentin
11574                                                                                                                                   grapiprant
11575                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                                      omega 3
11577                                                                                                                                    probiotic
11578                                                                                                                unspecified vision supplement
11579                                                                                                                                ciprofloxacin
11580                                                                                                                                  amoxicillin
11581                                                                                                                                ciprofloxacin
11582                                                                                                                                   grapiprant
11583                                                                                                                 ivermectin, pyrantel pamoate
11584                                                                                                                                   sucralfate
11585                                                                                                                  hairball control supplement
11586                                                                                                                                   selamectin
11587                                                                                                                                   selamectin
11588                                                                                               mometasone furoate, orbifloxacin, posaconazole
11589                                                                                                                                   ivermectin
11590                                                                                                                                   afoxolaner
11591                                                                                                                 ivermectin, pyrantel pamoate
11592                                                                                                                                   afoxolaner
11593                                                                                                                 ivermectin, pyrantel pamoate
11594                                                                                                                 ivermectin, pyrantel pamoate
11595                                                                                                                                   afoxolaner
11596                                                                                                                 ivermectin, pyrantel pamoate
11597                                                                                                                 ivermectin, pyrantel pamoate
11598                                                                                                                     fipronil, (s)-methoprene
11599                                                                                                                     fipronil, (s)-methoprene
11600                                                                                                                 ivermectin, pyrantel pamoate
11601                                                                                                                 ivermectin, pyrantel pamoate
11602                                                                                                                 ivermectin, pyrantel pamoate
11603                                                                                                                              diphenhydramine
11604                                                                                                                 ivermectin, pyrantel pamoate
11605                                                                                                                                  oclacitinib
11606                                                                                                                                  oclacitinib
11607                                                                                                                                   gabapentin
11608                                                                                                 florfenicol, mometasone furoate, terbinafine
11609                                                                                                                                    probiotic
11610                                                                                                                                    carprofen
11611                                                                                                                                    carprofen
11612                                                                                                                                    carprofen
11613                                                                                                                                   prednisone
11614                                                                                                                         cefpodoxime proxetil
11615                                                                                                                                 ketoconazole
11616                                                                                                                                  oclacitinib
11617                                                                                                                                    carprofen
11618                                                                                                                                   gabapentin
11619                                                                                                                                    carprofen
11620                                                                                               mometasone furoate, orbifloxacin, posaconazole
11621                                                                                                 florfenicol, mometasone furoate, terbinafine
11622                                                                                                                                   gabapentin
11623                                                                                                                                  oclacitinib
11624                                                                                                                                    carprofen
11625                                                                                                                                   gabapentin
11626                                                                                                                                   prednisone
11627                                                                                                                                   ivermectin
11628                                                                                                                     fipronil, (s)-methoprene
11629                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11630                                                                                                                                   ivermectin
11631                                                                                                                                   ivermectin
11632                                                                                                        dinotefuran, permethrin, pyriproxyfen
11633                                                                                                                 ivermectin, pyrantel pamoate
11634                                                                                                               praziquantel, pyrantel pamoate
11635                                                                                                                 ivermectin, pyrantel pamoate
11636                                                                                                                                  doxycycline
11637                                                                                                                                   afoxolaner
11638                                                                                                                                    sarolaner
11639                                                                                                                 ivermectin, pyrantel pamoate
11640                                                                                                               praziquantel, pyrantel pamoate
11641                                                                                                                             milbemycin oxime
11642                                                                                                                              diphenhydramine
11643                                                                                                                                    vitamin d
11644                                                                                                                                   cephalexin
11645                                                                                                                                   cephalexin
11646                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
11647                                                                                                                              diphenhydramine
11648                                                                                                                                    trazodone
11649                                                                                                                     imidacloprid, permethrin
11650                                                                                                                                   ivermectin
11651                                                                                                                                   ivermectin
11652                                                                                                                     imidacloprid, permethrin
11653                                                                                                                   milbemycin oxime, spinosad
11654                                                                                                                  lufenuron, milbemycin oxime
11655                                                                                                                   milbemycin oxime, spinosad
11656                                                                                                                  lufenuron, milbemycin oxime
11657                                                                                                                                 acepromazine
11658                                                                                                                                   alprazolam
11659                                                                                                                                    meloxicam
11660                                                                                                    lufenuron, milbemycin oxime, praziquantel
11661                                                                                                    lufenuron, milbemycin oxime, praziquantel
11662                                                                                                                                   fluralaner
11663                                                                                                                  lufenuron, milbemycin oxime
11664                                                                                                                                   fluralaner
11665                                                                                                                                  oclacitinib
11666                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                                            dexamethasone, miconazole nitrate
11668                                                                                                                                 acepromazine
11669                                                                                                                                   alprazolam
11670                                                                                                                                  terbinafine
11671                                                                                                      betamethasone, florfenicol, terbinafine
11672                                                                                                                         cefpodoxime proxetil
11673                                                                                                                             phytosphingosine
11674                                                                                                                                metronidazole
11675                                                                                                                                   cephalexin
11676                                                                                                               polysulfated glycosaminoglycan
11677                                                                                                                                levothyroxine
11678                                                                                                                 ivermectin, pyrantel pamoate
11679                                                                                                                                levothyroxine
11680                                                                                                                     fipronil, (s)-methoprene
11681                                                                                                                 ivermectin, pyrantel pamoate
11682                                                                                                               polysulfated glycosaminoglycan
11683                                                                                                                 ivermectin, pyrantel pamoate
11684                                                                                                                                    sarolaner
11685                                                                                                               polysulfated glycosaminoglycan
11686                                                                                                                                levothyroxine
11687                                                                                                                                   lokivetmab
11688                                                                                                                                levothyroxine
11689                                                                                                               polysulfated glycosaminoglycan
11690                                                                                                                                metronidazole
11691                                                                                                                  lufenuron, milbemycin oxime
11692                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                                              ear cleaner (epi-otic advanced)
11694                                                                                                                   milbemycin oxime, spinosad
11695                                                                                                                      acetic acid, boric acid
11696                                                                                                                  lufenuron, milbemycin oxime
11697                                                                                                                  lufenuron, milbemycin oxime
11698                                                                                                       cyphenothrin, fipronil, (s)-methoprene
11699                                                                                                                  lufenuron, milbemycin oxime
11700                                                                                                                  lufenuron, milbemycin oxime
11701                                                                                                                                   ivermectin
11702                                                                                                                 ivermectin, pyrantel pamoate
11703                                                                                                                 ivermectin, pyrantel pamoate
11704                                                                                                                                   cephalexin
11705                                                                                                                                  oclacitinib
11706                                                                                                                                   prednisone
11707                                                                                                                                    carprofen
11708                                                                                                                 ivermectin, pyrantel pamoate
11709                                                                                                           joint supplement (glucosamine hcl)
11710                                                                                                                                       garlic
11711                                                                                                                     fipronil, (s)-methoprene
11712                                                                                                                                   cephalexin
11713                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11714                                                                                                                  lufenuron, milbemycin oxime
11715                                                                                                                     fipronil, (s)-methoprene
11716                                                                                                                                    carprofen
11717                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11718                                                                                                                  lufenuron, milbemycin oxime
11719                                                                                                                  lufenuron, milbemycin oxime
11720                                                                                                                                    carprofen
11721                                                                                                                                   gabapentin
11722                                                                                                                              cbd or hemp oil
11723                                                                                                                                       garlic
11724                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
11725                                                                                                                                    trazodone
11726                                                                                                                                    carprofen
11727                                                                                                                                 fenbendazole
11728                                                                                                                    immune support supplement
11729                                                                                                                                   wheat germ
11730                                                                                                                                 milk thistle
11731                                                                                                                             cyclophosphamide
11732                                                                                                                                    carprofen
11733                                                                                                                                    piroxicam
11734                                                                                                                             sulfadimethoxine
11735                                                                                                                             milbemycin oxime
11736                                                                                                                          ear cleaner (zymox)
11737                                                                                                                                metronidazole
11738                                                                                                                                   loperamide
11739                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11740                                                                                                                                    trazodone
11741                                                                                                                                      omega 3
11742                                                                                                                                   selamectin
11743                                                                                                                                   cephalexin
11744                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11745                                                                                                                                  bedinvetmab
11746                                                                                                                             liver supplement
11747                                                                                                                                    carprofen
11748                                                                                                           amoxicillin, clavulanate potassium
11749                                                                                                                                   afoxolaner
11750                                                                                                                                      taurine
11751                                                                                                                             ceftiofur sodium
11752                                                                                                                                   cephalexin
11753                                                                                                                           maropitant citrate
11754                                                                                                                                    midazolam
11755                                                                                                                                   alfaxalone
11756                                                                                                                                buprenorphine
11757                                                                                                                                    carprofen
11758                                                                                                                                    carprofen
11759                                                                                                                                   cephalexin
11760                                                                                                                             ceftiofur sodium
11761                                                                                                                                metronidazole
11762                                                                                                           amoxicillin, clavulanate potassium
11763                                                                                                                           maropitant citrate
11764                                                                                                                            aminocaproic acid
11765                                                                                                                                  carboplatin
11766                                                                                                                           maropitant citrate
11767                                                                                                                                metronidazole
11768                                                                                                                                yunnan baiyao
11769                                                                                                                                    sirolimus
11770                                                                                                                                   vorinostat
11771                                                                                                                                    egft/her2
11772                                                                                                                                    carprofen
11773                                                                                                                                    carprofen
11774                                                                                                                                metronidazole
11775                                                                                                                              diphenhydramine
11776                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
11777                                                                                                                                metronidazole
11778                                                                                                                                   cephalexin
11779                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11780                                                                                                                         cefpodoxime proxetil
11781                                                                                                                                    firocoxib
11782                                                                                                                         cefpodoxime proxetil
11783                                                                                                                                   prednisone
11784                                                                                                                         cefpodoxime proxetil
11785                                                                                                                                  hydroxyzine
11786                                                                                               mometasone furoate, orbifloxacin, posaconazole
11787                                                                                                                                ciprofloxacin
11788                                                                                                                                    carprofen
11789                                                                                                                                  hydroxyzine
11790                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11791                                                                                                                                    carprofen
11792                                                                                                                                   ivermectin
11793                                                                                                                                   afoxolaner
11794                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11795                                                                                                                 ivermectin, pyrantel pamoate
11796                                                                                                                                   afoxolaner
11797                                                                                                                 ivermectin, pyrantel pamoate
11798                                                                                                                                   afoxolaner
11799                                                                                                                         cefpodoxime proxetil
11800                                                                                                                 ivermectin, pyrantel pamoate
11801                                                                                                                                   afoxolaner
11802                                                                                                    lufenuron, milbemycin oxime, praziquantel
11803                                                                                                                                 praziquantel
11804                                                                                               mometasone furoate, orbifloxacin, posaconazole
11805                                                                                                                                    carprofen
11806                                                             diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11807                                                                                                                                    carprofen
11808                                                                                                            betamethasone, gentamicin sulfate
11809                                                                                                                                   cephalexin
11810                                                                                                                              diphenhydramine
11811                                                                                                                                         kelp
11812                                                                                                                  lufenuron, milbemycin oxime
11813                                                                                                                  lufenuron, milbemycin oxime
11814                                                                                                                   imidacloprid, pyriproxyfen
11815                                                                                                                  lufenuron, milbemycin oxime
11816                                                                                                                  lufenuron, milbemycin oxime
11817                                                                                                                  lufenuron, milbemycin oxime
11818                                                                                                                                metronidazole
11819                                                                                                                             pyrantel pamoate
11820                                                                                                                           maropitant citrate
11821                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
11822                                                                                                                                   ivermectin
11823                                                                                                                                   ivermectin
11824                                                                                                                     fipronil, (s)-methoprene
11825                                                                                                                                   afoxolaner
11826                                                                                                                                     tramadol
11827                                                                                                                                    meloxicam
11828                                                                                                                                metronidazole
11829                                                                                                                           maropitant citrate
11830                                                                                                           joint supplement (glucosamine hcl)
11831                                                                                                                                   afoxolaner
11832                                                                                                                 ivermectin, pyrantel pamoate
11833                                                                                                                 ivermectin, pyrantel pamoate
11834                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11835                                                                                                                 ivermectin, pyrantel pamoate
11836                                                                                                                 ivermectin, pyrantel pamoate
11837                                                                                                                                   afoxolaner
11838                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11839                                                                                                                                 azithromycin
11840                                                                                                   dextromethorphan hydrobromide, guaifenesin
11841                                                                                                                           maropitant citrate
11842                                                                                                                   acetaminophen, hydrocodone
11843                                                                                                                                 azithromycin
11844                                                                                                   dextromethorphan hydrobromide, guaifenesin
11845                                                                                                                           maropitant citrate
11846                                                                                                                   acetaminophen, hydrocodone
11847                                                                                                                 ivermectin, pyrantel pamoate
11848                                                                                                                 ivermectin, pyrantel pamoate
11849                                                                                                                                   afoxolaner
11850                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11851                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11852                                                                                                                         cefpodoxime proxetil
11853                                                                                                                                  oclacitinib
11854                                                                                                                                  oclacitinib
11855                                                                                                                         cefpodoxime proxetil
11856                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11857                                                                                                                                  oclacitinib
11858                                                                                                                                  oclacitinib
11859                                                                                                                         cefpodoxime proxetil
11860                                                                                                                         cefpodoxime proxetil
11861                                                                                                                 ivermectin, pyrantel pamoate
11862                                                                                                                 ivermectin, pyrantel pamoate
11863                                                                                                                                   afoxolaner
11864                                                                                                           joint supplement (glucosamine hcl)
11865                                                                                                       joint supplement (chondroitin sulfate)
11866                                                                                                                                    carprofen
11867                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11868                                                                                                                                  oclacitinib
11869                                                                                                                                   cephalexin
11870                                                                                                                                  oclacitinib
11871                                                                                                                                    carprofen
11872                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11873                                                                                                                 ivermectin, pyrantel pamoate
11874                                                                                                                 ivermectin, pyrantel pamoate
11875                                                                                                                                   afoxolaner
11876                                                                                                                                    carprofen
11877                                                                                                                                   gabapentin
11878                                                                                                                                  oclacitinib
11879                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11880                                                                                                                                    carprofen
11881                                                                                                                 ivermectin, pyrantel pamoate
11882                                                                                                                                   afoxolaner
11883                                                                                                                                    carprofen
11884                                                                                                                                    carprofen
11885                                                                                                                 oxytetracycline, polymyxin b
11886                                                                                                                                  latanoprost
11887                                                                                                                                  dorzolamide
11888                                                                                                                                    carprofen
11889                                                                                                                             milbemycin oxime
11890                                                                                                                                dl-methionine
11891                                                                                                     febantel, praziquantel, pyrantel pamoate
11892                                                                                                                             milbemycin oxime
11893                                                                                                                                   afoxolaner
11894                                                                                                                            hypochlorous acid
11895                                                                                                                                 enrofloxacin
11896                                                                                                                                   cetirizine
11897                                                                                                                                    thyroxine
11898                                                                                                                 ivermectin, pyrantel pamoate
11899                                                                                                                                  amoxicillin
11900                                                                                                                           maropitant citrate
11901                                                                                                                 ivermectin, pyrantel pamoate
11902                                                                                                                                  amoxicillin
11903                                                                                                                           maropitant citrate
11904                                                                                                                 ivermectin, pyrantel pamoate
11905                                                                                                            trimeprazine tartrate, prednisone
11906                                                                                                                                  doxycycline
11907                                                                                                                         prednisolone acetate
11908                                                                                                                                    carprofen
11909                                                                                                                                    oxycodone
11910                                                                                                           amoxicillin, clavulanate potassium
11911                                                                                                                                  oclacitinib
11912                                                                                                                 ivermectin, pyrantel pamoate
11913                                                                                                                                    vitamin d
11914                                                                                                                                  oclacitinib
11915                                                                                                                                metronidazole
11916                                                                                                                                    carprofen
11917                                                                                                                                  amoxicillin
11918                                                                                                                                metronidazole
11919                                                                                                                                    probiotic
11920                                                                                                                                    carprofen
11921                                                                                                                         cefpodoxime proxetil
11922                                                                                                                                    carprofen
11923                                                                                                                                  clindamycin
11924                                                                                                                                metronidazole
11925                                                                                                                                    carprofen
11926                                                                                                                                   ivermectin
11927                                                                                                                 ivermectin, pyrantel pamoate
11928                                                                                                   ivermectin, praziquantel, pyrantel pamoate
11929                                                                                                                                   sucralfate
11930                                                                                                                                    probiotic
11931                                                                                                                                ciprofloxacin
11932                                                                                                                                  amoxicillin
11933                                                                                                                         prebiotic, probiotic
11934                                                                                                               praziquantel, pyrantel pamoate
11935                                                                                                                                   selamectin
11936                                                                                                                                      omega 3
11937                                                                                                                                   selamectin
11938                                                                                                                                      omega 3
11939                                                                                                                                ciprofloxacin
11940                                                                                                                                ciprofloxacin
11941                                                                                                                                    trazodone
11942                                                                                                                                   cephalexin
11943                                                                                                                                    carprofen
11944                                                                                                                                   cephalexin
11945                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11946                                                                                                                                    carprofen
11947                                                                                                                 ivermectin, pyrantel pamoate
11948                                                                                                                   milbemycin oxime, spinosad
11949                                                                                                                   milbemycin oxime, spinosad
11950                                                                                                                                    meloxicam
11951                                                                                                                         cefpodoxime proxetil
11952                                                                                                                                  clindamycin
11953                                                                                                                                    meloxicam
11954                                                                                                           amoxicillin, clavulanate potassium
11955                                                                                                                                 enrofloxacin
11956                                                                                                                                    carprofen
11957                                                                                                                                metronidazole
11958                                                                                                                   milbemycin oxime, spinosad
11959                                                                                                                  lufenuron, milbemycin oxime
11960                                                                                                   toothpaste/dental health solution or chews
11961                                                                                                                  lufenuron, milbemycin oxime
11962                                                                                                                  lufenuron, milbemycin oxime
11963                                                                                                                                  hydroxyzine
11964                                                                                                                  lufenuron, milbemycin oxime
11965                                                                                                                                    carprofen
11966                                                                                                                                  latanoprost
11967                                                                                                                         dorzolamide, timolol
11968                                                                                                                         prednisolone acetate
11969                                                                                                                                  dorzolamide
11970                                                                                                                                  latanoprost
11971                                                                                                                          clemastine fumarate
11972                                                                                                                                   prednisone
11973                                                                                                                                   cephalexin
11974                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11975                                                                                                     febantel, praziquantel, pyrantel pamoate
11976                                                                                                                      triamcinolone acetonide
11977                                                                                                                                   prednisone
11978                                                                                                                      triamcinolone acetonide
11979                                                                                                                     fipronil, (s)-methoprene
11980                                                                                                                     fipronil, (s)-methoprene
11981                                                                                                                                   cephalexin
11982                                                                                                                                    carprofen
11983                                                                                                                     fipronil, (s)-methoprene
11984                                                                                                                         cefpodoxime proxetil
11985                                                                                                                                  oclacitinib
11986                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11987                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11988                                                                                                                     imidacloprid, permethrin
11989                                                                                                                                  oclacitinib
11990                                                                                                 florfenicol, mometasone furoate, terbinafine
11991                                                                                                                                   diclofenac
11992                                                                                                 florfenicol, mometasone furoate, terbinafine
11993                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11994                                                                                                                     fipronil, (s)-methoprene
11995                                                                                                                         dorzolamide, timolol
11996                                                                                                                                  oclacitinib
11997                                                                                                                                   diclofenac
11998                                                                                                                                levothyroxine
11999                                                                                                                                levothyroxine
12000                                                                                                                                  oclacitinib
12001                                                                                                                                    carprofen
12002                                                                                                                                metronidazole
12003                                                                                                                             sulfadimethoxine
12004                                                                                                                                     tramadol
12005                                                                                                    neomycin sulfate, polymyxin b, gramicidin
12006                                                                                                                                   ivermectin
12007                                                                                                                     imidacloprid, permethrin
12008                                                                                                                 ivermectin, pyrantel pamoate
12009                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                                      ketoconazole, tris-edta
12011                                                                                                                   imidacloprid, pyriproxyfen
12012                                                                                                                                    carprofen
12013                                                                                                                                   cephalexin
12014                                                                                                                                   ivermectin
12015                                                                                                                     imidacloprid, permethrin
12016                                                                                                                                   cephalexin
12017                                                                                                                                   prednisone
12018                                                                                                        dinotefuran, permethrin, pyriproxyfen
12019                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12020                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12021                                                                                                                 ivermectin, pyrantel pamoate
12022                                                                                                                                   fluralaner
12023                                                                                                                                metronidazole
12024                                                                                                                 ivermectin, pyrantel pamoate
12025                                                                                                                                   fluralaner
12026                                                                                                                                  bedinvetmab
12027                                                                                                                                   ivermectin
12028                                                                                                                 ivermectin, pyrantel pamoate
12029                                                                                                                                  amoxicillin
12030                                                                                                                                    firocoxib
12031                                                                                                                 ivermectin, pyrantel pamoate
12032                                                                                                                 ivermectin, pyrantel pamoate
12033                                                                                                                                   fluralaner
12034                                                                                                                                   cephalexin
12035                                                                                                                                    carprofen
12036                                                                                                                 ivermectin, pyrantel pamoate
12037                                                                                                                                   fluralaner
12038                                                                                                                 ivermectin, pyrantel pamoate
12039                                                                                                                                  oclacitinib
12040                                                                                                                                  oclacitinib
12041                                                                                                                                   lokivetmab
12042                                                                                                                                  clopidogrel
12043                                                                                                                                   gabapentin
12044                                                                                                                                   prednisone
12045                                                                                                                                   cephalexin
12046                                                                                                                              diphenhydramine
12047                                                                                                       joint supplement (glucosamine hcl/msm)
12048                                                                                                           fipronil, permethrin, pyriproxyfen
12049                                                                                                                 ivermectin, pyrantel pamoate
12050                                                                                                                                metronidazole
12051                                                                                                                                    probiotic
12052                                                                                                                                 enrofloxacin
12053                                                                                                                                  amoxicillin
12054                                                                                                       joint supplement (glucosamine hcl/msm)
12055                                                                                                                                levothyroxine
12056                                                                                                                                   cephalexin
12057                                                                                                                                 fenbendazole
12058                                                                                                                                   ivermectin
12059                                                                                                                                   afoxolaner
12060                                                                                                                                levothyroxine
12061                                                                                                                                   ivermectin
12062                                                                                                                                   afoxolaner
12063                                                                                                                                levothyroxine
12064                                                                                                                                   afoxolaner
12065                                                                                                                 ivermectin, pyrantel pamoate
12066                                                                                                                                levothyroxine
12067                                                                                                                                    carprofen
12068                                                                                                                          ear cleaner (zymox)
12069                                                                                                                                   afoxolaner
12070                                                                                                                                   ivermectin
12071                                                                                                                                levothyroxine
12072                                                                                                                                    carprofen
12073                                                                                                               polysulfated glycosaminoglycan
12074                                                                                                                                levothyroxine
12075                                                                                                                                    carprofen
12076                                                                                                                                levothyroxine
12077                                                                                                       joint supplement (glucosamine hcl/msm)
12078                                                                                                               polysulfated glycosaminoglycan
12079                                                                                                                                    carprofen
12080                                                                                                                         cefpodoxime proxetil
12081                                                                                                                                levothyroxine
12082                                                                                                               polysulfated glycosaminoglycan
12083                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12084                                                                                                                                    carprofen
12085                                                                                                                                metronidazole
12086                                                                                                                                levothyroxine
12087                                                                                                               polysulfated glycosaminoglycan
12088                                                                                                                                    carprofen
12089                                                                                                                                ciprofloxacin
12090                                                                                                                             milbemycin oxime
12091                                                                                                                                dl-methionine
12092                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12093                                                                                                                             milbemycin oxime
12094                                                                                                                                   afoxolaner
12095                                                                                                                                    carprofen
12096                                                                                                                                   cephalexin
12097                                                                                                                                    carprofen
12098                                                                                                                   milbemycin oxime, spinosad
12099                                                                                                                 ivermectin, pyrantel pamoate
12100                                                                                                                                     spinosad
12101                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
12102                                                                                                     febantel, praziquantel, pyrantel pamoate
12103                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
12104                                                                                                                                     fipronil
12105                                                                                                                 ivermectin, pyrantel pamoate
12106                                                                                                                                metronidazole
12107                                                                                                                                   ivermectin
12108                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12109                                                                                                                             milbemycin oxime
12110                                                                                                                                   afoxolaner
12111                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12112                                                                                                                             milbemycin oxime
12113                                                                                                                                   afoxolaner
12114                                                                                                                                    carprofen
12115                                                                                                                                   gabapentin
12116                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12117                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12118                                                                                                                                    carprofen
12119                                                                                                                         cefpodoxime proxetil
12120                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12121                                                                                                                                  clindamycin
12122                                                                                                                                  doxycycline
12123                                                                                                                                   gabapentin
12124                                                                                                                                  ondansetron
12125                                                                                                                              cbd or hemp oil
12126                                                                                                                                    carprofen
12127                                                                                                                 ivermectin, pyrantel pamoate
12128                                                                                                                                   fluralaner
12129                                                                                                                 ivermectin, pyrantel pamoate
12130                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12131                                                                                                                             milbemycin oxime
12132                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12133                                                                                                                                  minocycline
12134                                                                                                                                   fluralaner
12135                                                                                                                                   fluralaner
12136                                                                                                               milbemycin oxime, praziquantel
12137                                                                                                                 ivermectin, pyrantel pamoate
12138                                                                                                                                    firocoxib
12139                                                                                                                                   ivermectin
12140                                                                                                                                   afoxolaner
12141                                                                                                                                    firocoxib
12142                                                                                                       joint supplement (glucosamine hcl/msm)
12143                                                                                                                                   ivermectin
12144                                                                                                                                   afoxolaner
12145                                                                                                                                   afoxolaner
12146                                                                                                                 ivermectin, pyrantel pamoate
12147                                                                                                                                    firocoxib
12148                                                                                                                 ivermectin, pyrantel pamoate
12149                                                                                                                                   afoxolaner
12150                                                                                                                                    firocoxib
12151                                                                                                                 ivermectin, pyrantel pamoate
12152                                                                                                                                   afoxolaner
12153                                                                                                                                    firocoxib
12154                                                                                                       joint supplement (glucosamine hcl/msm)
12155                                                                                                                            vision supplement
12156                                                                                                                 ivermectin, pyrantel pamoate
12157                                                                                                                                   afoxolaner
12158                                                                                                                                    firocoxib
12159                                                                                                       joint supplement (glucosamine hcl/msm)
12160                                                                                                                            vision supplement
12161                                                                                                                 ivermectin, pyrantel pamoate
12162                                                                                                                                   afoxolaner
12163                                                                                                                                    firocoxib
12164                                                                                                       joint supplement (glucosamine hcl/msm)
12165                                                                                                                                  amoxicillin
12166                                                                                                                                 enrofloxacin
12167                                                                                                       joint supplement (glucosamine hcl/msm)
12168                                                                                                               polysulfated glycosaminoglycan
12169                                                                                                                                    firocoxib
12170                                                                                                                                   cephalexin
12171                                                                                                           amoxicillin, clavulanate potassium
12172                                                                                                                                   gabapentin
12173                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12174                                                                                                               polysulfated glycosaminoglycan
12175                                                                                                                                    firocoxib
12176                                                                                                                                   grapiprant
12177                                                                                                                                metronidazole
12178                                                                                                                           maropitant citrate
12179                                                                                                                                   gabapentin
12180                                                                                                        dinotefuran, permethrin, pyriproxyfen
12181                                                                                                                                 ketoconazole
12182                                                                                               mometasone furoate, orbifloxacin, posaconazole
12183                                                                                                                                 ketoconazole
12184                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12185                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12186                                                                                                                 ivermectin, pyrantel pamoate
12187                                                                                                                 ivermectin, pyrantel pamoate
12188                                                                                                                 ivermectin, pyrantel pamoate
12189                                                                                                                         cefpodoxime proxetil
12190                                                                                                            betamethasone, gentamicin sulfate
12191                                                                                                                                   prednisone
12192                                                                                                                 ivermectin, pyrantel pamoate
12193                                                                                                                     fipronil, (s)-methoprene
12194                                                                                                                 ivermectin, pyrantel pamoate
12195                                                                                                                     fipronil, (s)-methoprene
12196                                                                                                                 ivermectin, pyrantel pamoate
12197                                                                                                                                  bedinvetmab
12198                                                                                                                                   amlodipine
12199                                                                                                                              cbd or hemp oil
12200                                                                                                                                      omega 3
12201                                                                                                                             tylosin tartrate
12202                                                                                                                                metronidazole
12203                                                                                                                                metronidazole
12204                                                                                                                                metronidazole
12205                                                                                                                         cefpodoxime proxetil
12206                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12207                                                                                                                                   prednisone
12208                                                                                                                                metronidazole
12209                                                                                                                                 fenbendazole
12210                                                                                                                                dexamethasone
12211                                                                                                                 ivermectin, pyrantel pamoate
12212                                                                                                                         cefpodoxime proxetil
12213                                                                                                                 ivermectin, pyrantel pamoate
12214                                                                                                                 ivermectin, pyrantel pamoate
12215                                                                                                                 ivermectin, pyrantel pamoate
12216                                                                                                                         cefpodoxime proxetil
12217                                                                                                                                  oclacitinib
12218                                                                                                                           maropitant citrate
12219                                                                                                                                   famotidine
12220                                                                                                                 ivermectin, pyrantel pamoate
12221                                                                                                                                  liver happy
12222                                                                                                                                  shen calmer
12223                                                                                                                    homeopathic vaccine spray
12224                                                                                                                             milbemycin oxime
12225                                                                                                                             milbemycin oxime
12226                                                                                                       joint supplement (glucosamine hcl/msm)
12227                                                                                                                    immune support supplement
12228                                                                                                                    immune support supplement
12229                                                                                                                                  liver happy
12230                                                                                                                             milbemycin oxime
12231                                                                                                                                 praziquantel
12232                                                                                                                                   alprazolam
12233                                                                                                                                metronidazole
12234                                                                                                                           maropitant citrate
12235                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12236                                                                                                                                   fluoxetine
12237                                                                                                                         cefpodoxime proxetil
12238                                                                                                                                marbofloxacin
12239                                                                                                                         cefpodoxime proxetil
12240                                                                                                                                marbofloxacin
12241                                                                                                                           maropitant citrate
12242                                                                                                                                   lokivetmab
12243                                                                                                                                metronidazole
12244                                                                                                                                     spinosad
12245                                                                                                                                   sucralfate
12246                                                                                                                                   diclofenac
12247                                                                                                                                   diclofenac
12248                                                                                                             gentamicin sulfate, ketoconazole
12249                                                                                                                 ivermectin, pyrantel pamoate
12250                                                                                                                                   fluralaner
12251                                                                                                                 ivermectin, pyrantel pamoate
12252                                                                                                                                   fluralaner
12253                                                                                                                 ivermectin, pyrantel pamoate
12254                                                                                                                                   fluralaner
12255                                                                                                                     imidacloprid, moxidectin
12256                                                                                                                                 azithromycin
12257                                                                                                                                  unspecified
12258                                                                                                                                metronidazole
12259                                                                                                                                    cefovecin
12260                                                                                                                                dexamethasone
12261                                                                                                                   milbemycin oxime, spinosad
12262                                                                                                                                    carprofen
12263                                                                                                                         cefpodoxime proxetil
12264                                                                                                                                metronidazole
12265                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12266                                                                                                           fipronil, permethrin, pyriproxyfen
12267                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12268                                                                                                                     fipronil, (s)-methoprene
12269                                                                                                                                   fluoxetine
12270                                                                                                                                    trazodone
12271                                                                                                                     fipronil, (s)-methoprene
12272                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12273                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12274                                                                                                                         cefpodoxime proxetil
12275                                                                                                                     fipronil, (s)-methoprene
12276                                                                                                                             milbemycin oxime
12277                                                                                                                                   fluoxetine
12278                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
12279                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12280                                                                                                                         cefpodoxime proxetil
12281                                                                                                                                   prednisone
12282                                                                                                                           calming supplement
12283                                                                                                               milbemycin oxime, praziquantel
12284                                                                                                                                   fluralaner
12285                                                                                                                             milbemycin oxime
12286                                                                                                                                   fluralaner
12287                                                                                                                                  amoxicillin
12288                                                                                                                                 enrofloxacin
12289                                                                                                 florfenicol, mometasone furoate, terbinafine
12290                                                                                                                                     tramadol
12291                                                                                                                                   gabapentin
12292                                                                                                                                   cephalexin
12293                                                                                                                                    trazodone
12294                                                                                                               milbemycin oxime, praziquantel
12295                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12296                                                                                                                                      omega 3
12297                                                                                                                              cbd or hemp oil
12298                                                                                                                                    carprofen
12299                                                                                                           amoxicillin, clavulanate potassium
12300                                                                                                                                  oclacitinib
12301                                                                                                                                   gabapentin
12302                                                                                                                                    carprofen
12303                                                                                                                                   grapiprant
12304                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12305                                                                                                                                   cephalexin
12306                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12307                                                                                                                                   gabapentin
12308                                                                                                                                  bedinvetmab
12309                                                                                                           chlorhexidine gluconate, ophytrium
12310                                                                                                                                    carprofen
12311                                                                                               mometasone furoate, orbifloxacin, posaconazole
12312                                                                                                                   milbemycin oxime, spinosad
12313                                                                                                                  lufenuron, milbemycin oxime
12314                                                                                                                   milbemycin oxime, spinosad
12315                                                                                                                                      omega 3
12316                                                                                                           joint supplement (glucosamine hcl)
12317                                                                                                                       cyphenothrin, fipronil
12318                                                                                                                         cefpodoxime proxetil
12319                                                                                                                             milbemycin oxime
12320                                                                                                                                metronidazole
12321                                                                                                                             pyrantel pamoate
12322                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12323                                                                                                                                      omega 3
12324                                                                                                                   milbemycin oxime, spinosad
12325                                                                                                                                metronidazole
12326                                                                                                                                   loperamide
12327                                                                                                                         digestive supplement
12328                                                                                                                           maropitant citrate
12329                                                                                                                                dexamethasone
12330                                                                                                                              diphenhydramine
12331                                                                                                                   milbemycin oxime, spinosad
12332                                                                                                               sulfamethoxazole, trimethoprim
12333                                                                                                                                   prednisone
12334                                                                                                                                  vincristine
12335                                                                                                                             cyclophosphamide
12336                                                                                                                                  doxorubicin
12337                                                                                                              anti-cd52 monoclonal antibodies
12338                                                                                                                               l-asparaginase
12339                                                                                                                                   furosemide
12340                                                                                                                                ciprofloxacin
12341                                                                                                           amoxicillin, clavulanate potassium
12342                                                                                                                   milbemycin oxime, spinosad
12343                                                                                                              anti-cd52 monoclonal antibodies
12344                                                                                                                   milbemycin oxime, spinosad
12345                                                                                                                                      omega 3
12346                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12347                                                                                                              anti-cd52 monoclonal antibodies
12348                                                                                                                   milbemycin oxime, spinosad
12349                                                                                                              anti-cd52 monoclonal antibodies
12350                                                                                                                                      omega 3
12351                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12352                                                                                                           amoxicillin, clavulanate potassium
12353                                                                                                                        ampicillin, sulbactam
12354                                                                                                                         prednisolone acetate
12355                                                                                                                                dexamethasone
12356                                                                                                                                   cetirizine
12357                                                                                                                                     fipronil
12358                                                                                                                  lufenuron, milbemycin oxime
12359                                                                                                                                      omega 3
12360                                                                                                           joint supplement (glucosamine hcl)
12361                                                                                                                             milbemycin oxime
12362                                                                                                                             pyrantel pamoate
12363                                                                                                               dexamethasone, diphenhydramine
12364                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12365                                                                                                                                      omega 3
12366                                                                                                                   milbemycin oxime, spinosad
12367                                                                                                                                    deracoxib
12368                                                                                                               sulfamethoxazole, trimethoprim
12369                                                                                                                   milbemycin oxime, spinosad
12370                                                                                                                                   cephalexin
12371                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12372                                                                                                                                 multivitamin
12373                                                                                                                   milbemycin oxime, spinosad
12374                                                                                                                   milbemycin oxime, spinosad
12375                                                                                                                                      omega 3
12376                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12377                                                                                                                   milbemycin oxime, spinosad
12378                                                                                                                                      omega 3
12379                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12380                                                                                                                                   gabapentin
12381                                                                                                                                   grapiprant
12382                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
12383                                                                                                                                   grapiprant
12384                                                                                                           unspecified heartworm preventative
12385                                                                                                                 ivermectin, pyrantel pamoate
12386                                                                                                               polysulfated glycosaminoglycan
12387                                                                                                                 ivermectin, pyrantel pamoate
12388                                                                                                                 ivermectin, pyrantel pamoate
12389                                                                                                                                metronidazole
12390                                                                                                                                    deracoxib
12391                                                                                                           amoxicillin, clavulanate potassium
12392                                                                                                                                   gabapentin
12393                                                                                                                                    deracoxib
12394                                                                                                       joint supplement (glucosamine hcl/msm)
12395                                                                                                                 ivermectin, pyrantel pamoate
12396                                                                                                                 ivermectin, pyrantel pamoate
12397                                                                                                                             pyrantel pamoate
12398                                                                                                                                   ivermectin
12399                                                                                                           fipronil, permethrin, pyriproxyfen
12400                                                                                                                                 fenbendazole
12401                                                                                                                     fipronil, (s)-methoprene
12402                                                                                                                 ivermectin, pyrantel pamoate
12403                                                                                                                                 fenbendazole
12404                                                                                                                                metronidazole
12405                                                                                                                             tylosin tartrate
12406                                                                                                                                    probiotic
12407                                                                                                                                    probiotic
12408                                                                                                                                 fenbendazole
12409                                                                                                                                    probiotic
12410                                                                                                                 ivermectin, pyrantel pamoate
12411                                                                                                           fipronil, permethrin, pyriproxyfen
12412                                                                                                                                metronidazole
12413                                                                                                                                 fenbendazole
12414                                                                                                                 ivermectin, pyrantel pamoate
12415                                                                                                                                   afoxolaner
12416                                                                                                                                    probiotic
12417                                                                                                                 ivermectin, pyrantel pamoate
12418                                                                                                                                   afoxolaner
12419                                                                                                                                    carprofen
12420                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                                                 ivermectin, pyrantel pamoate
12422                                                                                                                                    sarolaner
12423                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12424                                                                                                           amoxicillin, clavulanate potassium
12425                                                                                                                                 fenbendazole
12426                                                                                                                                    carprofen
12427                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12428                                                                                                                                ciprofloxacin
12429                                                                                                                       indoxacarb, permethrin
12430                                                                                                                 ivermectin, pyrantel pamoate
12431                                                                                                                                   afoxolaner
12432                                                                                                                                   fluralaner
12433                                                                                                                 ivermectin, pyrantel pamoate
12434                                                                                                                                    sarolaner
12435                                                                                                                 ivermectin, pyrantel pamoate
12436                                                                                                                                    sarolaner
12437                                                                                                                                  doxycycline
12438                                                                                                                 ivermectin, pyrantel pamoate
12439                                                                                                                                    sarolaner
12440                                                                                                                                   grapiprant
12441                                                                                                               polysulfated glycosaminoglycan
12442                                                                                                                                  bedinvetmab
12443                                                                                                                                metronidazole
12444                                                                                                                                   gabapentin
12445                                                                                                                                    carprofen
12446                                                                                                                                dexamethasone
12447                                                                                                                                   ivermectin
12448                                                                                                               polysulfated glycosaminoglycan
12449                                                                                                                 ivermectin, pyrantel pamoate
12450                                                                                                                           maropitant citrate
12451                                                                                                                                   sucralfate
12452                                                                                                                                    carprofen
12453                                                                                                                                   ivermectin
12454                                                                                                                 ivermectin, pyrantel pamoate
12455                                                                                                                 ivermectin, pyrantel pamoate
12456                                                                                                                 ivermectin, pyrantel pamoate
12457                                                                                                                                   afoxolaner
12458                                                                                                                                      omega 3
12459                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12460                                                                                                                                    carprofen
12461                                                                                                           chlorhexidine gluconate, ophytrium
12462                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                                      omega 3
12464                                                                                                                                    carprofen
12465                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12466                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12467                                                                                                                                metronidazole
12468                                                                                                                                   selamectin
12469                                                                                                                                   selamectin
12470                                                                                                                                  hydroxyzine
12471                                                                                                                                  oclacitinib
12472                                                                                                                                  oclacitinib
12473                                                                                                                                   selamectin
12474                                                                                                                                   selamectin
12475                                                                                                                                  oclacitinib
12476                                                                                                                         cefpodoxime proxetil
12477                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12478                                                                                                                                  oclacitinib
12479                                                                                                                                   prednisone
12480                                                                                                                      triamcinolone acetonide
12481                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12482                                                                                                                                  oclacitinib
12483                                                                                                                                  oclacitinib
12484                                                                                                                                   prednisone
12485                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12486                                                                                                                                  oclacitinib
12487                                                                                                                             sulfadimethoxine
12488                                                                                                                                  oclacitinib
12489                                                                                                                             sulfadimethoxine
12490                                                                                                                                   ivermectin
12491                                                                                                                                ciprofloxacin
12492                                                                                                                                ciprofloxacin
12493                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12494                                                                                                                                   afoxolaner
12495                                                                                                                 ivermectin, pyrantel pamoate
12496                                                                                                                                   afoxolaner
12497                                                                                                                                    probiotic
12498                                                                                                                 ivermectin, pyrantel pamoate
12499                                                                                                                 ivermectin, pyrantel pamoate
12500                                                                                                                                   ivermectin
12501                                                                                                                         cefpodoxime proxetil
12502                                                                                                                                  oclacitinib
12503                                                                                                                             tylosin tartrate
12504                                                                                                                                    carprofen
12505                                                                                                                         cefpodoxime proxetil
12506                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12507                                                                                                                                   grapiprant
12508                                                                                                                         prednisolone acetate
12509                                                                                                                                  clindamycin
12510                                                                                                                                    carprofen
12511                                                                                                                 ivermectin, pyrantel pamoate
12512                                                                                                                                   afoxolaner
12513                                                                                                                                   cephalexin
12514                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12515                                                                                               etofenprox, (s)-methoprene, piperonyl butoxide
12516                                                                                                                 ivermectin, pyrantel pamoate
12517                                                                                                                                    carprofen
12518                                                                                                                                  epsiprantel
12519                                                                                                                                  epsiprantel
12520                                                                                                    lufenuron, milbemycin oxime, praziquantel
12521                                                                                                                   milbemycin oxime, spinosad
12522                                                                                                                 ormetoprim, sulfadimethoxine
12523                                                                                                                             milbemycin oxime
12524                                                                                                                  lufenuron, milbemycin oxime
12525                                                                                                                                   fluralaner
12526                                                                                                                                   cetirizine
12527                                                                                                                                  oclacitinib
12528                                                                                                                 ivermectin, pyrantel pamoate
12529                                                                                                        dinotefuran, permethrin, pyriproxyfen
12530                                                                                                                 ivermectin, pyrantel pamoate
12531                                                                                                                                    carprofen
12532                                                                                                                                     tramadol
12533                                                                                                                                    carprofen
12534                                                                                                                         cefpodoxime proxetil
12535                                                                                                                          silver sulfadiazine
12536                                                                                                                                    mupirocin
12537                                                                                                                         cefpodoxime proxetil
12538                                                                                                                                    carprofen
12539                                                                                                                                 acepromazine
12540                                                                                                                 ivermectin, pyrantel pamoate
12541                                                                                                        dinotefuran, permethrin, pyriproxyfen
12542                                                                                                                 ivermectin, pyrantel pamoate
12543                                                                                                        dinotefuran, permethrin, pyriproxyfen
12544                                                                                                                 ivermectin, pyrantel pamoate
12545                                                                                                        dinotefuran, permethrin, pyriproxyfen
12546                                                                                                   toothpaste/dental health solution or chews
12547                                                                                                       joint supplement (glucosamine hcl/msm)
12548                                                                                                                 ivermectin, pyrantel pamoate
12549                                                                                                        dinotefuran, permethrin, pyriproxyfen
12550                                                                                                                 ivermectin, pyrantel pamoate
12551                                                                                                        dinotefuran, permethrin, pyriproxyfen
12552                                                                                                       joint supplement (glucosamine hcl/msm)
12553                                                                                                                 ivermectin, pyrantel pamoate
12554                                                                                                        dinotefuran, permethrin, pyriproxyfen
12555                                                                                                                 ivermectin, pyrantel pamoate
12556                                                                                                                   imidacloprid, pyriproxyfen
12557                                                                                                                                   prednisone
12558                                                                                                                         cefpodoxime proxetil
12559                                                                                                                                levothyroxine
12560                                                                                                                         cefpodoxime proxetil
12561                                                                                                                                   omeprazole
12562                                                                                                                                   sucralfate
12563                                                                                                                                    carprofen
12564                                                                                                                                metronidazole
12565                                                                                                                                levothyroxine
12566                                                                                                                                    carprofen
12567                                                                                                            dexamethasone, miconazole nitrate
12568                                                                                                                                   prednisone
12569                                                                                                                   milbemycin oxime, spinosad
12570                                                                                                        dinotefuran, permethrin, pyriproxyfen
12571                                                                                                                           miconazole nitrate
12572                                                                                                                                   prednisone
12573                                                                                                                                     spinosad
12574                                                                                                                             milbemycin oxime
12575                                                                                                                 ivermectin, pyrantel pamoate
12576                                                                                                                                   afoxolaner
12577                                                                                                      betamethasone, florfenicol, terbinafine
12578                                                                                                                 ivermectin, pyrantel pamoate
12579                                                                                                                                   afoxolaner
12580                                                                                                                 ivermectin, pyrantel pamoate
12581                                                                                                                         cefpodoxime proxetil
12582                                                                                                                                  oclacitinib
12583                                                                                                                                    carprofen
12584                                                                                                                                   afoxolaner
12585                                                                                                                 ivermectin, pyrantel pamoate
12586                                                                                                                                   afoxolaner
12587                                                                                                                                metronidazole
12588                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                                                 ivermectin, pyrantel pamoate
12590                                                                                                                                   afoxolaner
12591                                                                                                                         cefpodoxime proxetil
12592                                                                                                                                    deracoxib
12593                                                                                                                                metronidazole
12594                                                                                                                           maropitant citrate
12595                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                                      omega 3
12597                                                                                                                                   prednisone
12598                                                                                                                                  doxycycline
12599                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12600                                                                                                                                  hydrocodone
12601                                                                                                                                    carprofen
12602                                                                                                                                   ivermectin
12603                                                                                                                             pyrantel pamoate
12604                                                                                                                                 praziquantel
12605                                                                                                                             milbemycin oxime
12606                                                                                                                   milbemycin oxime, spinosad
12607                                                                                                                                metronidazole
12608                                                                                                               milbemycin oxime, praziquantel
12609                                                                                                                                   afoxolaner
12610                                                                                                                                   gabapentin
12611                                                                                                                                   grapiprant
12612                                                                                                                 ivermectin, pyrantel pamoate
12613                                                                                                                 ivermectin, pyrantel pamoate
12614                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12615                                                                                                                                   moxidectin
12616                                                                                                                                   ivermectin
12617                                                                                                                 ivermectin, pyrantel pamoate
12618                                                                                                                 ivermectin, pyrantel pamoate
12619                                                                                                                                    thyroxine
12620                                                                                                                 ivermectin, pyrantel pamoate
12621                                                                                                                              diphenhydramine
12622                                                                                                                                dexamethasone
12623                                                                                                                 ivermectin, pyrantel pamoate
12624                                                                                                                                    thyroxine
12625                                                                                                                 ivermectin, pyrantel pamoate
12626                                                                                                                                    thyroxine
12627                                                                                                                                    thyroxine
12628                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12629                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12630                                                                                                                 ivermectin, pyrantel pamoate
12631                                                                                                                                    thyroxine
12632                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12633                                                                                                                                    thyroxine
12634                                                                                                                                    thyroxine
12635                                                                                                                                levothyroxine
12636                                                                                                                 ivermectin, pyrantel pamoate
12637                                                                                                                                  doxycycline
12638                                                                                                                                   ivermectin
12639                                                                                                                 ivermectin, pyrantel pamoate
12640                                                                                                                                  doxycycline
12641                                                                                                                 ivermectin, pyrantel pamoate
12642                                                                                                                 ivermectin, pyrantel pamoate
12643                                                                                                           amoxicillin, clavulanate potassium
12644                                                                                                                      triamcinolone acetonide
12645                                                                                                                                  amoxicillin
12646                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12647                                                                                                                                   afoxolaner
12648                                                                                                           amoxicillin, clavulanate potassium
12649                                                                                                                      triamcinolone acetonide
12650                                                                                                           amoxicillin, clavulanate potassium
12651                                                                                                                                   afoxolaner
12652                                                                                                           amoxicillin, clavulanate potassium
12653                                                                                                                             sulfadimethoxine
12654                                                                                                                      triamcinolone acetonide
12655                                                                                                                                dexamethasone
12656                                                                                                                 ivermectin, pyrantel pamoate
12657                                                                                                                                   ivermectin
12658                                                                                                                                   ivermectin
12659                                                                                                                 ivermectin, pyrantel pamoate
12660                                                                                                                 ivermectin, pyrantel pamoate
12661                                                                                                                                    deracoxib
12662                                                                                                                           maropitant citrate
12663                                                                                                                                metronidazole
12664                                                                                                                                   famotidine
12665                                                                                                                                    meloxicam
12666                                                                                                                      triamcinolone acetonide
12667                                                                                                                         cefpodoxime proxetil
12668                                                                                                            betamethasone, gentamicin sulfate
12669                                                                                                                             milbemycin oxime
12670                                                                                                                         cefpodoxime proxetil
12671                                                                                                            betamethasone, gentamicin sulfate
12672                                                                                                                                methocarbamol
12673                                                                                                                             sulfadimethoxine
12674                                                                                                                                  oclacitinib
12675                                                                                                                         digestive supplement
12676                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12677                                                                                                                                 fenbendazole
12678                                                                                                                                metronidazole
12679                                                                                                                                metronidazole
12680                                                                                                                                    carprofen
12681                                                                                                                                 azithromycin
12682                                                                                                                                metronidazole
12683                                                                                                                  lufenuron, milbemycin oxime
12684                                                                                                                                    carprofen
12685                                                                                                                                 fenbendazole
12686                                                                                                                 ivermectin, pyrantel pamoate
12687                                                                                                                                metronidazole
12688                                                                                                                                   prednisone
12689                                                                                                                                   cephalexin
12690                                                                                                                                   fluralaner
12691                                                                                                                                  doxycycline
12692                                                                                                               milbemycin oxime, praziquantel
12693                                                                                                                             milbemycin oxime
12694                                                                                                                                    lotilaner
12695                                                                                                                                    carprofen
12696                                                                                                                                  clindamycin
12697                                                                                                                                    carprofen
12698                                                                                                           amoxicillin, clavulanate potassium
12699                                                                                                                                 enrofloxacin
12700                                                                                                                                   gabapentin
12701                                                                                                                             liver supplement
12702                                                                                                                                    methadone
12703                                                                                                                                   trilostane
12704                                                                                                                                   grapiprant
12705                                                                                                                                    deracoxib
12706                                                                                                                                   trilostane
12707                                                                                                                                   trilostane
12708                                                                                                                                   ketoprofen
12709                                                                                                                                    carprofen
12710                                                                                                                 ivermectin, pyrantel pamoate
12711                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12712                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12713                                                                                                                                   prednisone
12714                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12715                                                                                                                 ivermectin, pyrantel pamoate
12716                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12717                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12718                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12719                                                                                                                         prednisolone acetate
12720                                                                                                                         prednisolone acetate
12721                                                                                                                         prednisolone acetate
12722                                                                                                                         prednisolone acetate
12723                                                                                                                         prednisolone acetate
12724                                                                                                                 ivermectin, pyrantel pamoate
12725                                                                                                                 ivermectin, pyrantel pamoate
12726                                                                                                               milbemycin oxime, praziquantel
12727                                                                                                               milbemycin oxime, praziquantel
12728                                                                                                                               (s)-methoprene
12729                                                                                                           amoxicillin, clavulanate potassium
12730                                                                                               mometasone furoate, orbifloxacin, posaconazole
12731                                                                                                                                metronidazole
12732                                                                                               mometasone furoate, orbifloxacin, posaconazole
12733                                                                                                                                    carprofen
12734                                                                                                                                   cephalexin
12735                                                                                                                  chloroxylenol, ketoconazole
12736                                                                                                                      triamcinolone acetonide
12737                                                                                                                                    cefovecin
12738                                                                                                                                   fluralaner
12739                                                                                                                             milbemycin oxime
12740                                                                                                                   milbemycin oxime, spinosad
12741                                                                                                                                   cephalexin
12742                                                                                                                                    carprofen
12743                                                                                                                   milbemycin oxime, spinosad
12744                                                                                                                   milbemycin oxime, spinosad
12745                                                                                                                           maropitant citrate
12746                                                                                                                                metronidazole
12747                                                                                                                                    probiotic
12748                                                                                                                   lactated ringer's solution
12749                                                                                                                   milbemycin oxime, spinosad
12750                                                                                                                                metronidazole
12751                                                                                                                                    probiotic
12752                                                                                                                           maropitant citrate
12753                                                                                                                                    carprofen
12754                                                                                                                   milbemycin oxime, spinosad
12755                                                                                                                   milbemycin oxime, spinosad
12756                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12757                                                                                                                                  doxycycline
12758                                                                                                                                 enrofloxacin
12759                                                                                                                                    carprofen
12760                                                                                                                                   prednisone
12761                                                                                                                                   ivermectin
12762                                                                                                                                  doxycycline
12763                                                                                                                  lufenuron, milbemycin oxime
12764                                                                                                                  lufenuron, milbemycin oxime
12765                                                                                                                             milbemycin oxime
12766                                                                                                                             milbemycin oxime
12767                                                                                                                             milbemycin oxime
12768                                                                                                                                   ivermectin
12769                                                                                                                 ivermectin, pyrantel pamoate
12770                                                                                                           amoxicillin, clavulanate potassium
12771                                                                                                                                   moxidectin
12772                                                                                                                                  amoxicillin
12773                                                                                                                                  doxycycline
12774                                                                                                                                   ivermectin
12775                                                                                                                                 enrofloxacin
12776                                                                                                            trimeprazine tartrate, prednisone
12777                                                                                                                                  amoxicillin
12778                                                                                                                                ciprofloxacin
12779                                                                                                                                  amoxicillin
12780                                                                                                                                   ivermectin
12781                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12782                                                                                                                                  doxycycline
12783                                                                                                                                marbofloxacin
12784                                                                                                                         digestive supplement
12785                                                                                                                                marbofloxacin
12786                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12787                                                                                                                     flumethrin, imidacloprid
12788                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12789                                                                                                                 ivermectin, pyrantel pamoate
12790                                                                                                                                   afoxolaner
12791                                                                                                            trimeprazine tartrate, prednisone
12792                                                                                                                                    firocoxib
12793                                                                                                                                   cephalexin
12794                                                                                                                                ciprofloxacin
12795                                                                                                                 ivermectin, pyrantel pamoate
12796                                                                                                                     flumethrin, imidacloprid
12797                                                                                                                         digestive supplement
12798                                                                                                                                  amoxicillin
12799                                                                                                                                  amoxicillin
12800                                                                                                                         digestive supplement
12801                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12802                                                                                                                                   prednisone
12803                                                                                                                                   cephalexin
12804                                                                                                                     flumethrin, imidacloprid
12805                                                                                                                      chlorhexidine gluconate
12806                                                                                                           amoxicillin, clavulanate potassium
12807                                                                                                                                   afoxolaner
12808                                                                                                                 ivermectin, pyrantel pamoate
12809                                                                                                                                   lokivetmab
12810                                                                                                           amoxicillin, clavulanate potassium
12811                                                                                                                                   gabapentin
12812                                                                                                                         digestive supplement
12813                                                                                                                 ivermectin, pyrantel pamoate
12814                                                                                                                                   afoxolaner
12815                                                                                                                                      estriol
12816                                                                                                                                    meloxicam
12817                                                                                                                                   amantadine
12818                                                                                                           amoxicillin, clavulanate potassium
12819                                                                                                           amoxicillin, clavulanate potassium
12820                                                                                                                                   gabapentin
12821                                                                                                                                    meloxicam
12822                                                                                                                                   cephalexin
12823                                                                                                           amoxicillin, clavulanate potassium
12824                                                                                                                                   amantadine
12825                                                                                                                                   gabapentin
12826                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12827                                                                                                                                  oclacitinib
12828                                                                                                                      chlorhexidine gluconate
12829                                                                                                                                metronidazole
12830                                                                                                                                 fenbendazole
12831                                                                                                                                   lokivetmab
12832                                                                                                                                    meloxicam
12833                                                                                                                             milbemycin oxime
12834                                                                                                                                     spinosad
12835                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12836                                                                                                                   milbemycin oxime, spinosad
12837                                                                                                                   milbemycin oxime, spinosad
12838                                                                                                                 ivermectin, pyrantel pamoate
12839                                                                                                                                   afoxolaner
12840                                                                                                                 ivermectin, pyrantel pamoate
12841                                                                                                                                   afoxolaner
12842                                                                                                                 ivermectin, pyrantel pamoate
12843                                                                                                                                   afoxolaner
12844                                                                                                                                   cetirizine
12845                                                                                                                         cefpodoxime proxetil
12846                                                                                                                         prednisolone acetate
12847                                                                                                                 ivermectin, pyrantel pamoate
12848                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12849                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                                                  chloroxylenol, ketoconazole
12851                                                                                                            trimeprazine tartrate, prednisone
12852                                                                                                                                  clindamycin
12853                                                                                                                                  hydroxyzine
12854                                                                                                            trimeprazine tartrate, prednisone
12855                                                                                                            trimeprazine tartrate, prednisone
12856                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12857                                                                                                                 ivermectin, pyrantel pamoate
12858                                                                                                            betamethasone, gentamicin sulfate
12859                                                                                                                                  clindamycin
12860                                                                                                                              apomorphine hcl
12861                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12862                                                                                                                 ivermectin, pyrantel pamoate
12863                                                                                                                                   afoxolaner
12864                                                                                                                                      omega 3
12865                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12867                                                                                                                                  clindamycin
12868                                                                                                                 ivermectin, pyrantel pamoate
12869                                                                                                                                   afoxolaner
12870                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12871                                                                                                                                  clindamycin
12872                                                                                                                                   cetirizine
12873                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12874                                                                                                                                metronidazole
12875                                                                                                                                  clindamycin
12876                                                                                                                                  oclacitinib
12877                                                                                                                                  clindamycin
12878                                                                                                                                     tramadol
12879                                                                                                                 ivermectin, pyrantel pamoate
12880                                                                                                                                   afoxolaner
12881                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12882                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12883                                                                                                                                  oclacitinib
12884                                                                                                                                    trazodone
12885                                                                                                                                  clindamycin
12886                                                                                                                                metronidazole
12887                                                                                                                                     tramadol
12888                                                                                                                                  clindamycin
12889                                                                                                                 ivermectin, pyrantel pamoate
12890                                                                                                                                   afoxolaner
12891                                                                                                                                  oclacitinib
12892                                                                                                                                      omega 3
12893                                                                                                                                    trazodone
12894                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                                        chlorhexidine gluconate, ketoconazole
12896                                                                                                                   milbemycin oxime, spinosad
12897                                                                                                                         cefpodoxime proxetil
12898                                                                                                                                phenobarbital
12899                                                                                                                                   afoxolaner
12900                                                                                                                                   ivermectin
12901                                                                                                                                   ivermectin
12902                                                                                                                                   afoxolaner
12903                                                                                                   toothpaste/dental health solution or chews
12904                                                                                                                            potassium bromide
12905                                                                                                                                    midazolam
12906                                                                                                                            potassium bromide
12907                                                                                                                            potassium bromide
12908                                                                                                                                  terbinafine
12909                                                                                                                                levetiracetam
12910                                                                                                                                    thyroxine
12911                                                                                                                       unspecified medication
12912                                                                                                                       unspecified medication
12913                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12914                                                                                                                           methylprednisolone
12915                                                                                                                                  clindamycin
12916                                                                                                                 ivermectin, pyrantel pamoate
12917                                                                                                                           maropitant citrate
12918                                                                                                                                metronidazole
12919                                                                                                                 ivermectin, pyrantel pamoate
12920                                                                                                                 ivermectin, pyrantel pamoate
12921                                                                                                                 ivermectin, pyrantel pamoate
12922                                                                                                                     fipronil, (s)-methoprene
12923                                                                                                                                    carprofen
12924                                                                                                                         cefpodoxime proxetil
12925                                                                                                                              diphenhydramine
12926                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12927                                                                                                                 ivermectin, pyrantel pamoate
12928                                                                                                                 ivermectin, pyrantel pamoate
12929                                                                                                                 ivermectin, pyrantel pamoate
12930                                                                                                                                   afoxolaner
12931                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12932                                                                                                                           gentamicin sulfate
12933                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
12934                                                                                                                             atropine sulfate
12935                                                                                                                         butorphanol tartrate
12936                                                                                                                                 acepromazine
12937                                                                                                                                     propofol
12938                                                                                                                                    carprofen
12939                                                                                                                                    carprofen
12940                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12941                                                                                                                                    carprofen
12942                                                                                                                 ivermectin, pyrantel pamoate
12943                                                                                                                 ivermectin, pyrantel pamoate
12944                                                                                                                     fipronil, (s)-methoprene
12945                                                                                                                 ivermectin, pyrantel pamoate
12946                                                                                                                                metronidazole
12947                                                                                                                                metronidazole
12948                                                                                                                 ivermectin, pyrantel pamoate
12949                                                                                                                 ivermectin, pyrantel pamoate
12950                                                                                                                     fipronil, (s)-methoprene
12951                                                                                                     febantel, praziquantel, pyrantel pamoate
12952                                                                                                                 ivermectin, pyrantel pamoate
12953                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12954                                                                                                                                  doxycycline
12955                                                                                                                                 multivitamin
12956                                                                                                                     fipronil, (s)-methoprene
12957                                                                                                                  lufenuron, milbemycin oxime
12958                                                                                                                                 multivitamin
12959                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12960                                                                                                                 ivermectin, pyrantel pamoate
12961                                                                                                                 ivermectin, pyrantel pamoate
12962                                                                                                                     fipronil, (s)-methoprene
12963                                                                                                                                 multivitamin
12964                                                                                                                 ivermectin, pyrantel pamoate
12965                                                                                                                 ivermectin, pyrantel pamoate
12966                                                                                                                     fipronil, (s)-methoprene
12967                                                                                                                                  doxycycline
12968                                                                                                                                  doxycycline
12969                                                                                                                                   grapiprant
12970                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12971                                                                                                                      triamcinolone acetonide
12972                                                                                                                                dexamethasone
12973                                                                                                                                  clindamycin
12974                                                                                                                                  clindamycin
12975                                                                                                                                dexamethasone
12976                                                                                                                                  doxycycline
12977                                                                                                                                  clindamycin
12978                                                                                                                                    carprofen
12979                                                                                                            betamethasone, gentamicin sulfate
12980                                                                                                                                levothyroxine
12981                                                                                                                 ivermectin, pyrantel pamoate
12982                                                                                                                                  amoxicillin
12983                                                                                                                                metronidazole
12984                                                                                                            betamethasone, gentamicin sulfate
12985                                                                                                                                    carprofen
12986                                                                                                                                levothyroxine
12987                                                                                                                                  doxycycline
12988                                                                                                                                   ivermectin
12989                                                                                                                 ivermectin, pyrantel pamoate
12990                                                                                                                                    carprofen
12991                                                                                                                 ivermectin, pyrantel pamoate
12992                                                                                                                   imidacloprid, pyriproxyfen
12993                                                                                                                 ivermectin, pyrantel pamoate
12994                                                                                                                   imidacloprid, pyriproxyfen
12995                                                                                                                                    sarolaner
12996                                                                                                                                  oclacitinib
12997                                                                                                                         cefpodoxime proxetil
12998                                                                                                                                    carprofen
12999                                                                                                                 ivermectin, pyrantel pamoate
13000                                                                                                                                metronidazole
13001                                                                                                                                     tramadol
13002                                                                                                                                    carprofen
13003                                                                                                                         cefpodoxime proxetil
13004                                                                                                                                 enrofloxacin
13005                                                                                                                                   ivermectin
13006                                                                                                                                   afoxolaner
13007                                                                                                       joint supplement (glucosamine hcl/msm)
13008                                                                                                                                   ivermectin
13009                                                                                                                                  oclacitinib
13010                                                                                                                             neomycin sulfate
13011                                                                                                                                  oclacitinib
13012                                                                                                                                    carprofen
13013                                                                                                                      triamcinolone acetonide
13014                                                                                                           amoxicillin, clavulanate potassium
13015                                                                                                                                metronidazole
13016                                                                                                                                 enrofloxacin
13017                                                                                                                                metronidazole
13018                                                                                                                                  oclacitinib
13019                                                                                                                                   omeprazole
13020                                                                                                                                 fenbendazole
13021                                                                                                                                    probiotic
13022                                                                                                                                    probiotic
13023                                                                                                                           maropitant citrate
13024                                                                                                                                    carprofen
13025                                                                                                                                metronidazole
13026                                                                                                                                 enrofloxacin
13027                                                                                                                         cefpodoxime proxetil
13028                                                                                                                                  oclacitinib
13029                                                                                                               polysulfated glycosaminoglycan
13030                                                                                                                             liver supplement
13031                                                                                                                              cbd or hemp oil
13032                                                                                                                                    carprofen
13033                                                                                                                                  amoxicillin
13034                                                                                                                   milbemycin oxime, spinosad
13035                                                                                                                 ivermectin, pyrantel pamoate
13036                                           etofenprox, n-octyl bicycloheptene dicarboximide, piperonyl butoxide, pyriproxyfen, (s)-methoprene
13037                                                                                                                 ivermectin, pyrantel pamoate
13038                                                                                                                 ivermectin, pyrantel pamoate
13039                                                                                                                                   ivermectin
13040                                                                                                                                   ivermectin
13041                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13042                                                                                                                 ivermectin, pyrantel pamoate
13043                                                                                                                 ivermectin, pyrantel pamoate
13044                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13045                                                                                                                 ivermectin, pyrantel pamoate
13046                                                                                                                                  amoxicillin
13047                                                                                                                                   prednisone
13048                                                                                                                                metronidazole
13049                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13050                                                                                                           amoxicillin, clavulanate potassium
13051                                                                                                                                    carprofen
13052                                                                                                                                     tramadol
13053                                                                                                                     homatropine, hydrocodone
13054                                                                                                                                  doxycycline
13055                                                                                                                                    carprofen
13056                                                                                                                                     tramadol
13057                                                                                                                     fipronil, (s)-methoprene
13058                                                                                                                 ivermectin, pyrantel pamoate
13059                                                                                                                         cefpodoxime proxetil
13060                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                                                   fluralaner
13062                                                                                                               polysulfated glycosaminoglycan
13063                                                                                                                                    carprofen
13064                                                                                                                                   fluralaner
13065                                                                                                                 ivermectin, pyrantel pamoate
13066                                                                                                                                      taurine
13067                                                                                                                 ivermectin, pyrantel pamoate
13068                                                                                                                                   fluralaner
13069                                                                                                               polysulfated glycosaminoglycan
13070                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13071                                                                                                               polysulfated glycosaminoglycan
13072                                                                                                               polysulfated glycosaminoglycan
13073                                                                                                               polysulfated glycosaminoglycan
13074                                                                                                               polysulfated glycosaminoglycan
13075                                                                                                    lufenuron, milbemycin oxime, praziquantel
13076                                                                                                                     flumethrin, imidacloprid
13077                                                                                                                  lufenuron, milbemycin oxime
13078                                                                                                                  lufenuron, milbemycin oxime
13079                                                                                                                                   cephalexin
13080                                                                                                                                  oclacitinib
13081                                                                                                                                   lokivetmab
13082                                                                                                                         cefpodoxime proxetil
13083                                                                                                                         cefpodoxime proxetil
13084                                                                                                                  lufenuron, milbemycin oxime
13085                                                                                                                                     fipronil
13086                                                                                                                  lufenuron, milbemycin oxime
13087                                                                                                                                   fluralaner
13088                                                                                                                  lufenuron, milbemycin oxime
13089                                                                                                                             milbemycin oxime
13090                                                                                                                                   fluralaner
13091                                                                                                                             milbemycin oxime
13092                                                                                                                                   fluralaner
13093                                                                                                                      ketoconazole, tris-edta
13094                                                                                                                 ivermectin, pyrantel pamoate
13095                                                                                                                                   fluralaner
13096                                                                                                          ear cleaner (zymox), hydrocortisone
13097                                                                                                                         digestive supplement
13098                                                                                                                                     tramadol
13099                                                                                                                                    firocoxib
13100                                                                                                                   imidacloprid, pyriproxyfen
13101                                                                                                                        clorsulon, ivermectin
13102                                                                                                                   imidacloprid, pyriproxyfen
13103                                                                                                                             milbemycin oxime
13104                                                                                                                                  vincristine
13105                                                                                                                              diphenhydramine
13106                                                                                                                       acetaminophen, codeine
13107                                                                                                                                   cephalexin
13108                                                                                                                   milbemycin oxime, spinosad
13109                                                                                                                   milbemycin oxime, spinosad
13110                                                                                                                                  doxorubicin
13111                                                                                                                                  vincristine
13112                                                                                                                             cyclophosphamide
13113                                                                                                              anti-cd52 monoclonal antibodies
13114                                                                                                                   milbemycin oxime, spinosad
13115                                                                                                                   milbemycin oxime, spinosad
13116                                                                                                                   milbemycin oxime, spinosad
13117                                                                                                                   milbemycin oxime, spinosad
13118                                                                                                           amoxicillin, clavulanate potassium
13119                                                                                                                                   gabapentin
13120                                                                                                                                  telmisartan
13121                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13122                                                                                                                                   omeprazole
13123                                                                                                              ear cleaner (epi-otic advanced)
13124                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13125                                                                                                                                   ivermectin
13126                                                                                                              ear cleaner (epi-otic advanced)
13127                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13128                                                                                                                              diphenhydramine
13129                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                                              ear cleaner (epi-otic advanced)
13131                                                                                                                                   prednisone
13132                                                                                                                              diphenhydramine
13133                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13134                                                                                                                                   ivermectin
13135                                                                                                                             pyrantel pamoate
13136                                                                                                                 ivermectin, pyrantel pamoate
13137                                                                                                                                   fluralaner
13138                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13139                                                                                                                 ivermectin, pyrantel pamoate
13140                                                                                                                                   fluralaner
13141                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13142                                                                                                                 ivermectin, pyrantel pamoate
13143                                                                                                                                   fluralaner
13144                                                                                                                                 ketoconazole
13145                                                                                                                                     tramadol
13146                                                                                                                                   gabapentin
13147                                                                                                                                    carprofen
13148                                                                                                           amoxicillin, clavulanate potassium
13149                                                                                                                 ivermectin, pyrantel pamoate
13150                                                                                                                                   fluralaner
13151                                                                                                                             milbemycin oxime
13152                                                                                                                                   fluralaner
13153                                                                                                           joint supplement (glucosamine hcl)
13154                                                                                                           amoxicillin, clavulanate potassium
13155                                                                                                                                   gabapentin
13156                                                                                                                                   gabapentin
13157                                                                                                                 ivermectin, pyrantel pamoate
13158                                                                                                               polysulfated glycosaminoglycan
13159                                                                                                           joint supplement (glucosamine hcl)
13160                                                                                                                                     turmeric
13161                                                                                                                                    carprofen
13162                                                                                                                                    firocoxib
13163                                                                                                                                metronidazole
13164                                                                                                                                   cephalexin
13165                                                                                                                                   cephalexin
13166                                                                                                                                  doxycycline
13167                                                                                                                                   afoxolaner
13168                                                                                                                 ivermectin, pyrantel pamoate
13169                                                                                                                 ivermectin, pyrantel pamoate
13170                                                                                                                                   afoxolaner
13171                                                                                                                                  oclacitinib
13172                                                                                                                                marbofloxacin
13173                                                                                                                                   tobramycin
13174                                                                                                            trimeprazine tartrate, prednisone
13175                                                                                                                                metronidazole
13176                                                                                                                                   prednisone
13177                                                                                                                                metronidazole
13178                                                                                                                         prednisolone acetate
13179                                                                                                                                    carprofen
13180                                                                                                                                metronidazole
13181                                                                                                                           maropitant citrate
13182                                                                                                                                 fenbendazole
13183                                                                                                                                   cephalexin
13184                                                                                                                           methylprednisolone
13185                                                                                                                           methylprednisolone
13186                                                                                                                                   cephalexin
13187                                                                                                            betamethasone, gentamicin sulfate
13188                                                                                                                     fipronil, (s)-methoprene
13189                                                                                                                 ivermectin, pyrantel pamoate
13190                                                                                                                                  clindamycin
13191                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13192                                                                                                                              diphenhydramine
13193                                                                                                                                    probiotic
13194                                                                                                                           maropitant citrate
13195                                                                                                            betamethasone, gentamicin sulfate
13196                                                                                                                      chlorhexidine gluconate
13197                                                                                                                                  clindamycin
13198                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                                            trimeprazine tartrate, prednisone
13200                                                                                                                         cefpodoxime proxetil
13201                                                                                                                 ivermectin, pyrantel pamoate
13202                                                                                                                                   afoxolaner
13203                                                                                                                           maropitant citrate
13204                                                                                                                                metronidazole
13205                                                                                                                           maropitant citrate
13206                                                                                                               sulfamethoxazole, trimethoprim
13207                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13208                                                                                                               milbemycin oxime, praziquantel
13209                                                                                                                                   afoxolaner
13210                                                                                                                             atropine sulfate
13211                                                                                                                                 acepromazine
13212                                                                                                                           maropitant citrate
13213                                                                                                                                    carprofen
13214                                                                                                                                     morphine
13215                                                                                                                                    midazolam
13216                                                                                                                                     ketamine
13217                                                                                                                                  clindamycin
13218                                                                                                                                    carprofen
13219                                                                                                                                   afoxolaner
13220                                                                                                               milbemycin oxime, praziquantel
13221                                                                                                                                  clindamycin
13222                                                                                                                                    carprofen
13223                                                                                                                           maropitant citrate
13224                                                                                                                             atropine sulfate
13225                                                                                                                                 acepromazine
13226                                                                                                                                    midazolam
13227                                                                                                                                     ketamine
13228                                                                                                                                     morphine
13229                                                                                                                                    carprofen
13230                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13231                                                                                                                                    carprofen
13232                                                                                                                                  clindamycin
13233                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13234                                                                                                                                    carprofen
13235                                                                                                                                   alprazolam
13236                                                                                                                                   prednisone
13237                                                                                               beclomethasone, clotrimazole, neomycin sulfate
13238                                                                                                                                   cephalexin
13239                                                                                                                                metronidazole
13240                                                                                                                         cefpodoxime proxetil
13241                                                                                                                                   cephalexin
13242                                                                                                                                   penicillin
13243                                                                                                                                   cephalexin
13244                                                                                                                                   cetirizine
13245                                                                                                 florfenicol, mometasone furoate, terbinafine
13246                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13247                                                                                                                                    firocoxib
13248                                                                                                                 ivermectin, pyrantel pamoate
13249                                                                                                                     fipronil, (s)-methoprene
13250                                                                                                                                  oclacitinib
13251                                                                                                                         cefpodoxime proxetil
13252                                                   ketoconazole, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide, tris-edta
13253                                                                                                                 ivermectin, pyrantel pamoate
13254                                                                                                                                    trazodone
13255                                                                                                                                    firocoxib
13256                                                                                                                                 imidacloprid
13257                                                                                                                                   moxidectin
13258                                                                                                                                   cephalexin
13259                                                                                                                                   prednisone
13260                                                                                                                                   ivermectin
13261                                                                                                                                    firocoxib
13262                                                                                                                 ivermectin, pyrantel pamoate
13263                                                                                                                 ivermectin, pyrantel pamoate
13264                                                                                                                 ivermectin, pyrantel pamoate
13265                                                                                                                                   afoxolaner
13266                                                                                                                                   prednisone
13267                                                                                                                                   ivermectin
13268                                                                                                                                   afoxolaner
13269                                                                                                                                   prednisone
13270                                                                                                                 ivermectin, pyrantel pamoate
13271                                                                                                                 ivermectin, pyrantel pamoate
13272                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13273                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13274                                                                                                                                   ivermectin
13275                                                                                                                     fipronil, (s)-methoprene
13276                                                                                                                             sulfadimethoxine
13277                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13278                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13280                                                                                                                                   cephalexin
13281                                                                                                                                    deracoxib
13282                                                                                                           amoxicillin, clavulanate potassium
13283                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13284                                                                                                                 ivermectin, pyrantel pamoate
13285                                                                                                                     fipronil, (s)-methoprene
13286                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                                     fipronil, (s)-methoprene
13288                                                                                                                 ivermectin, pyrantel pamoate
13289                                                                                                                                  minocycline
13290                                                                                                               praziquantel, pyrantel pamoate
13291                                                                                                                                    carprofen
13292                                                                                                                                     spinosad
13293                                                                                                                                    ponazuril
13294                                                                                                                             milbemycin oxime
13295                                                                                                                                       garlic
13296                                                                                                                                 fenbendazole
13297                                                                                                                                   ivermectin
13298                                                                                                                                   afoxolaner
13299                                                                                                                                   ivermectin
13300                                                                                                                                   afoxolaner
13301                                                                                                                                 acepromazine
13302                                                                                                                                buprenorphine
13303                                                                                                                                     propofol
13304                                                                                                                                 acepromazine
13305                                                                                                                                hydromorphone
13306                                                                                                              ear cleaner (epi-otic advanced)
13307                                                                                                                                   afoxolaner
13308                                                                                                                 ivermectin, pyrantel pamoate
13309                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13310                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13311                                                                                                                                    carprofen
13312                                                                                                                                     tramadol
13313                                                                                                                 ivermectin, pyrantel pamoate
13314                                                                                                                                   afoxolaner
13315                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13316                                                                                                                                   afoxolaner
13317                                                                                                                                   cephalexin
13318                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13319                                                                                                                                metronidazole
13320                                                                                                                                   afoxolaner
13321                                                                                           ceramide iii, chlorhexidine gluconate, microsilver
13322                                                                                                                                    carprofen
13323                                                                                                                                   lokivetmab
13324                                                                                                                 ivermectin, pyrantel pamoate
13325                                                                                                                                   afoxolaner
13326                                                                                                                                ciprofloxacin
13327                                                                                                                                   cephalexin
13328                                                                                                                         cefpodoxime proxetil
13329                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13330                                                                                                                                    carprofen
13331                                                                                                                   milbemycin oxime, spinosad
13332                                                                                         dimethyl sulfoxide, flunixin, fluocinolone acetonide
13333                                                                                                                   milbemycin oxime, spinosad
13334                                                                                                                   milbemycin oxime, spinosad
13335                                                                                                                                   loratadine
13336                                                                                                                   milbemycin oxime, spinosad
13337                                                                                                                                   gabapentin
13338                                                                                                                                  bedinvetmab
13339                                                                                                                                    firocoxib
13340                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                                                 ivermectin, pyrantel pamoate
13342                                                                                                                                metronidazole
13343                                                                                                                 ivermectin, pyrantel pamoate
13344                                                                                                                                   afoxolaner
13345                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13346                                                                                                                 ivermectin, pyrantel pamoate
13347                                                                                                                                   afoxolaner
13348                                                                                                                                 fenbendazole
13349                                                                                                                 ivermectin, pyrantel pamoate
13350                                                                                                                                metronidazole
13351                                                                                                                                   famotidine
13352                                                                                                           joint supplement (glucosamine hcl)
13353                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                                                   milbemycin oxime, spinosad
13356                                                                                                                   milbemycin oxime, spinosad
13357                                                                                                                     flumethrin, imidacloprid
13358                                                                                                                                    carprofen
13359                                                                                                                                  bedinvetmab
13360                                                                                                                                    carprofen
13361                                                                                                                                   cephalexin
13362                                                                                                                                    carprofen
13363                                                                                                                     urinary tract supplement
13364                                                                                                                                   cephalexin
13365                                                                                                               praziquantel, pyrantel pamoate
13366                                                                                                          ear cleaner (zymox), hydrocortisone
13367                                                                                                                                metronidazole
13368                                                                                                                                    probiotic
13369                                                                                                           amoxicillin, clavulanate potassium
13370                                                                                                          ear cleaner (zymox), hydrocortisone
13371                                                                                                                                    probiotic
13372                                                                                                                                    probiotic
13373                                                                                                                        bismuth subsalicylate
13374                                                                                                                         cefpodoxime proxetil
13375                                                                                                            betamethasone, gentamicin sulfate
13376                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13377                                                                                                                                    probiotic
13378                                                                                                                                    probiotic
13379                                                                                                                        bismuth subsalicylate
13380                                                                                                                           maropitant citrate
13381                                                                                                                                metronidazole
13382                                                                                                                                    probiotic
13383                                                                                                                                    probiotic
13384                                                                                                                                buprenorphine
13385                                                                                                                                    carvacrol
13386                                                                                                                           maropitant citrate
13387                                                                                                                                    carprofen
13388                                                                                                                         cefpodoxime proxetil
13389                                                                                                                                    carvacrol
13390                                                                                                                                    probiotic
13391                                                                                                                         digestive supplement
13392                                                                                                                                    cefazolin
13393                                                                                                                                     oxytocin
13394                                                                                                                                buprenorphine
13395                                                                                                                                  allopurinol
13396                                                                                                                         cefpodoxime proxetil
13397                                                                                                                                levetiracetam
13398                                                                                                                                   prednisone
13399                                                                                                                         cefpodoxime proxetil
13400                                                                                                                                  amoxicillin
13401                                                                                                                                metronidazole
13402                                                                                                                         cefpodoxime proxetil
13403                                                                                                                                   prednisone
13404                                                                                                                                   prednisone
13405                                                                                                           amoxicillin, clavulanate potassium
13406                                                                                                                        ampicillin, sulbactam
13407                                                                                                                                 enrofloxacin
13408                                                                                                                             amikacin sulfate
13409                                                                                                                                    vitamin b
13410                                                                                                                                 iron dextran
13411                                                                                                                                  doxorubicin
13412                                                                                                                                 temozolomide
13413                                                                                                                                    sirolimus
13414                                                                                                                                  ondansetron
13415                                                                                                                                   omeprazole
13416                                                                                                                           maropitant citrate
13417                                                                                                                                    carprofen
13418                                                                                                                         cefpodoxime proxetil
13419                                                                                                           amoxicillin, clavulanate potassium
13420                                                                                                                        ampicillin, sulbactam
13421                                                                                                                                levetiracetam
13422                                                                                                                           maropitant citrate
13423                                                                                                                         digestive supplement
13424                                                                                                                                    vitamin b
13425                                                                                                                               stasis breaker
13426                                                                                                                                yunnan baiyao
13427                                                                                                                                    carvacrol
13428                                                                                                                                 iron dextran
13429                                                                                                                                    sirolimus
13430                                                                                                                                 temozolomide
13431                                                                                                                                    probiotic
13432                                                                                                            sulforaphane producing supplement
13433                                                                                                                                    carprofen
13434                                                                                                                                   prednisone
13435                                                                                                                        ampicillin, sulbactam
13436                                                                                                                                metronidazole
13437                                                                                                                                 enrofloxacin
13438                                                                                                                                   famotidine
13439                                                                                                                                  ondansetron
13440                                                                                                                           maropitant citrate
13441                                                                                                                                 capromorelin
13442                                                                                                                               metoclopramide
13443                                                                                                                                levetiracetam
13444                                                                                                                                    sirolimus
13445                                                                                                                                    probiotic
13446                                                                                                                                    vitamin b
13447                                                                                                                                yunnan baiyao
13448                                                                                                                         liu wei di huang wan
13449                                                                                                                               stasis breaker
13450                                                                                                                               wei qi booster
13451                                                                                                                 ivermectin, pyrantel pamoate
13452                                                                                                                     fipronil, (s)-methoprene
13453                                                                                                                                   cephalexin
13454                                                                                                                 ivermectin, pyrantel pamoate
13455                                                                                                                                   afoxolaner
13456                                                                                                                              diphenhydramine
13457                                                                                                                 ivermectin, pyrantel pamoate
13458                                                                                                                     fipronil, (s)-methoprene
13459                                                                                                          ear cleaner (zymox), hydrocortisone
13460                                                                                                               lotion or leave in conditioner
13461                                                                                                                 ivermectin, pyrantel pamoate
13462                                                                                                                                   afoxolaner
13463                                                                                                                         cefpodoxime proxetil
13464                                                                                                                 ivermectin, pyrantel pamoate
13465                                                                                                                                  amoxicillin
13466                                                                                                                                 enrofloxacin
13467                                                                                                                         cefpodoxime proxetil
13468                                                                                                                 ivermectin, pyrantel pamoate
13469                                                                                                                                metronidazole
13470                                                                                                     febantel, praziquantel, pyrantel pamoate
13471                                                                                                                 ivermectin, pyrantel pamoate
13472                                                                                                                                diphenoxylate
13473                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13474                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13475                                                                                                                  lufenuron, milbemycin oxime
13476                                                                                                                         prebiotic, probiotic
13477                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13478                                                                                                                                  amoxicillin
13479                                                                                                                                    meloxicam
13480                                                                                                                                metronidazole
13481                                                                                                                                    probiotic
13482                                                                                                                                   prednisone
13483                                                                                                                  lufenuron, milbemycin oxime
13484                                                                                                                       cyphenothrin, fipronil
13485                                                                                                                                   omeprazole
13486                                                                                                                                metronidazole
13487                                                                                                                                   omeprazole
13488                                                                                                                                metronidazole
13489                                                                                                                                   cephalexin
13490                                                                                                                                   cephalexin
13491                                                                                                           amoxicillin, clavulanate potassium
13492                                                                                                                                   prednisone
13493                                                                                                           amoxicillin, clavulanate potassium
13494                                                                                                                                   gabapentin
13495                                                                                                                                   prednisone
13496                                                                                                                   imidacloprid, pyriproxyfen
13497                                                                                                                              dexmedetomidine
13498                                                                                                                                     ketamine
13499                                                                                                                         butorphanol tartrate
13500                                                                                                                                  atipamezole
13501                                                                                                                                   diclofenac
13502                                                                                                                                   ivermectin
13503                                                                                                                     imidacloprid, permethrin
13504                                                                                                                                   diclofenac
13505                                                                                                           unspecified heartworm preventative
13506                                                                                                                 ivermectin, pyrantel pamoate
13507                                                                                                                                   ivermectin
13508                                                                                                                               chlorphenamine
13509                                                                                                                                   cetirizine
13510                                                                                                                                    midazolam
13511                                                                                                                                     propofol
13512                                                                                                                             atropine sulfate
13513                                                                                                                                   ampicillin
13514                                                                                                                 ivermectin, pyrantel pamoate
13515                                                                                                                                   fluralaner
13516                                                                                                                                   ivermectin
13517                                                                                                                                 penicillin g
13518                                                                                                                                   ivermectin
13519                                                                                                                                   fluralaner
13520                                                                                                                                   cephalexin
13521                                                                                                                           methylprednisolone
13522                                                                                                                                   cephalexin
13523                                                                                                                                   lokivetmab
13524                                                                                                                                metronidazole
13525                                                                                                                                metronidazole
13526                                                                                                                                    carprofen
13527                                                                                                                                metronidazole
13528                                                                                                                                metronidazole
13529                                                                                                                                  amoxicillin
13530                                                                                                                                  ondansetron
13531                                                                                                                                metronidazole
13532                                                                                                                                    probiotic
13533                                                                                                                                    vitamin c
13534                                                                                                                 ivermectin, pyrantel pamoate
13535                                                                                                                     fipronil, (s)-methoprene
13536                                                                                                                   milbemycin oxime, spinosad
13537                                                                                                                  lufenuron, milbemycin oxime
13538                                                                                                    lufenuron, milbemycin oxime, praziquantel
13539                                                                                                                   milbemycin oxime, spinosad
13540                                                                                                                                  doxycycline
13541                                                                                                                   milbemycin oxime, spinosad
13542                                                                                                                   milbemycin oxime, spinosad
13543                                                                                                                                    carprofen
13544                                                                                                                   milbemycin oxime, spinosad
13545                                                                                                                                metronidazole
13546                                                                                                                                    deracoxib
13547                                                                                                                                    deracoxib
13548                                                                                                                   milbemycin oxime, spinosad
13549                                                                                                                                   famotidine
13550                                                                                                                                metronidazole
13551                                                                                                                                dexamethasone
13552                                                                                                                                   cephalexin
13553                                                                                                                                   prednisone
13554                                                                                                                   milbemycin oxime, spinosad
13555                                                                                                                         cefpodoxime proxetil
13556                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13557                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13558                                                                                                                   milbemycin oxime, spinosad
13559                                                                                                                   milbemycin oxime, spinosad
13560                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13561                                                                                                                                   alprazolam
13562                                                                                                                   milbemycin oxime, spinosad
13563                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                                                   milbemycin oxime, spinosad
13565                                                                                                                                metronidazole
13566                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13567                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13568                                                                                                                                   alprazolam
13569                                                                                                                                  clindamycin
13570                                                                                                                                    carprofen
13571                                                                                                                                    carprofen
13572                                                                                                                                 acepromazine
13573                                                                                                                         butorphanol tartrate
13574                                                                                                                        tiletamine, zolazepam
13575                                                                                                                                   isoflurane
13576                                                                                                                   milbemycin oxime, spinosad
13577                                                                                                                      ketoconazole, tris-edta
13578                                                                                                            betamethasone, gentamicin sulfate
13579                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13580                                                                                                                                   alprazolam
13581                                                                                                                   milbemycin oxime, spinosad
13582                                                                                                                                   alprazolam
13583                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13584                                                                                                                      ketoconazole, tris-edta
13585                                                                                                                   milbemycin oxime, spinosad
13586                                                                                                            betamethasone, gentamicin sulfate
13587                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
13588                                                                                                                                    mupirocin
13589                                                                                                                                   alprazolam
13590                                                                                                                      chlorhexidine gluconate
13591                                                                                                                         cefpodoxime proxetil
13592                                                                                                                                   alprazolam
13593                                                                                                                                    carprofen
13594                                                                                                            betamethasone, gentamicin sulfate
13595                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13596                                                                                                                                    carprofen
13597                                                                                                                         cefpodoxime proxetil
13598                                                                                                                                  oclacitinib
13599                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13600                                                                                                            betamethasone, gentamicin sulfate
13601                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13602                                                                                                                                  clindamycin
13603                                                                                                                                 enrofloxacin
13604                                                                                                                                   alprazolam
13605                                                                                                                                    carprofen
13606                                                                                                            betamethasone, gentamicin sulfate
13607                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13608                                                                                                                             milbemycin oxime
13609                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13610                                                                                                                                    carprofen
13611                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13612                                                                                                                                 fenbendazole
13613                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13614                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13615                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13616                                                                                                                                 fenbendazole
13617                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13618                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13619                                                                                                                                  doxycycline
13620                                                                                                                                 fenbendazole
13621                                                                                                           amoxicillin, clavulanate potassium
13622                                                                                                                                    carprofen
13623                                                                                                                   imidacloprid, pyriproxyfen
13624                                                                                                                   imidacloprid, pyriproxyfen
13625                                                                                                                   imidacloprid, pyriproxyfen
13626                                                                                                                                    carprofen
13627                                                                                                                                  clindamycin
13628                                                                                                                   imidacloprid, pyriproxyfen
13629                                                                                                                                  clindamycin
13630                                                                                                                                    carprofen
13631                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13632                                                                                                                                   afoxolaner
13633                                                                                                                 ivermectin, pyrantel pamoate
13634                                                                                                                 ivermectin, pyrantel pamoate
13635                                                                                                                     fipronil, (s)-methoprene
13636                                                                                                                 ivermectin, pyrantel pamoate
13637                                                                                                                     fipronil, (s)-methoprene
13638                                                                                                                 ivermectin, pyrantel pamoate
13639                                                                                                                                   afoxolaner
13640                                                                                                                 ivermectin, pyrantel pamoate
13641                                                                                                                 ivermectin, pyrantel pamoate
13642                                                                                                                                   afoxolaner
13643                                                                                                                 ivermectin, pyrantel pamoate
13644                                                                                                                                   afoxolaner
13645                                                                                                                 ivermectin, pyrantel pamoate
13646                                                                                                                                   afoxolaner
13647                                                                                                                         cefpodoxime proxetil
13648                                                                                                                                    deracoxib
13649                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13650                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13651                                                                                                                                   ivermectin
13652                                                                                                                                   ivermectin
13653                                                                                                                                   cephalexin
13654                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13655                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13656                                                                                                                                   cephalexin
13657                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13658                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13659                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13660                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13661                                                                                                      betamethasone, florfenicol, terbinafine
13662                                                                                                                                   cephalexin
13663                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13664                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13665                                                                                                                                   cephalexin
13666                                                                                                 florfenicol, mometasone furoate, terbinafine
13667                                                                                                                                    carprofen
13668                                                                                                                                buprenorphine
13669                                                                                                                                 acepromazine
13670                                                                                                                             atropine sulfate
13671                                                                                                                                     morphine
13672                                                                                                                                     propofol
13673                                                                                                                                   isoflurane
13674                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13675                                                                                                                 ivermectin, pyrantel pamoate
13676                                                                                                                                   cephalexin
13677                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13678                                                                                                 florfenicol, mometasone furoate, terbinafine
13679                                                                                                                                    carprofen
13680                                                                                                                                   isoflurane
13681                                                                                                                                 acepromazine
13682                                                                                                                             atropine sulfate
13683                                                                                                                                     morphine
13684                                                                                                                                     propofol
13685                                                                                                                                    carprofen
13686                                                                                                                                   ivermectin
13687                                                                                                                                   fluralaner
13688                                                                                                                        clorsulon, ivermectin
13689                                                                                                                   milbemycin oxime, spinosad
13690                                                                                                                      triamcinolone acetonide
13691                                                                                                                                 enrofloxacin
13692                                                                                                                                 ketoconazole
13693                                                                                                                   milbemycin oxime, spinosad
13694                                                                                                                 ivermectin, pyrantel pamoate
13695                                                                                                                             milbemycin oxime
13696                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13697                                                                                                                           gentamicin sulfate
13698                                                                                                                                    carprofen
13699                                                                                                                                   gabapentin
13700                                                                                                                                methocarbamol
13701                                                                                                                                    carprofen
13702                                                                                                                                   prednisone
13703                                                                                                                                dexamethasone
13704                                                                                                                                    carprofen
13705                                                                                                                                  oclacitinib
13706                                                                                                                   milbemycin oxime, spinosad
13707                                                                                                                   milbemycin oxime, spinosad
13708                                                                                                                                  amoxicillin
13709                                                                                                                 ivermectin, pyrantel pamoate
13710                                                                                                                                   ivermectin
13711                                                                                                           fipronil, permethrin, pyriproxyfen
13712                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13713                                                                                                                      ketoconazole, tris-edta
13714                                                                                                                                levothyroxine
13715                                                                                                                                methocarbamol
13716                                                                                                                                  doxycycline
13717                                                                                                                                levothyroxine
13718                                                                                                                                   ivermectin
13719                                                                                                                                     spinosad
13720                                                                                                                                 fenbendazole
13721                                                                                                                                metronidazole
13722                                                                                                                                    probiotic
13723                                                                                                                     fipronil, (s)-methoprene
13724                                                                                                                     flumethrin, imidacloprid
13725                                                                                                                                levothyroxine
13726                                                                                                                                  doxycycline
13727                                                                                                                                methocarbamol
13728                                                                                                                                 fenbendazole
13729                                                                                                                                metronidazole
13730                                                                                                                                    probiotic
13731                                                                                               mometasone furoate, orbifloxacin, posaconazole
13732                                                                                                                                  doxycycline
13733                                                                                                                                methocarbamol
13734                                                                                                                     flumethrin, imidacloprid
13735                                                                                                                                levothyroxine
13736                                                                                                                         cefpodoxime proxetil
13737                                                                                                                 ivermectin, pyrantel pamoate
13738                                                                                                                                levothyroxine
13739                                                                                                                                  doxycycline
13740                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                                            trimeprazine tartrate, prednisone
13742                                                                                                                                levothyroxine
13743                                                                                                                                   lokivetmab
13744                                                                                                                                  clindamycin
13745                                                                                                                  lufenuron, milbemycin oxime
13746                                                                                                                  lufenuron, milbemycin oxime
13747                                                                                                                  lufenuron, milbemycin oxime
13748                                                                                                                             milbemycin oxime
13749                                                                                                                                   fluralaner
13750                                                                                                                                   fluralaner
13751                                                                                                                             milbemycin oxime
13752                                                                                                                                    trazodone
13753                                                                                                                             milbemycin oxime
13754                                                                                                                                   fluralaner
13755                                                                                                                         cefpodoxime proxetil
13756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13757                                                                                                                                    carprofen
13758                                                                                                                                    carprofen
13759                                                                                                                                   gabapentin
13760                                                                                                                                    carprofen
13761                                                                                                                         cefpodoxime proxetil
13762                                                                                                                                   gabapentin
13763                                                                                                                                     ursodiol
13764                                                                                                                                  bedinvetmab
13765                                                                                                                                    carprofen
13766                                                                                                                   milbemycin oxime, spinosad
13767                                                                                                                  lufenuron, milbemycin oxime
13768                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                                            betamethasone, gentamicin sulfate
13770                                                                                                                                 ketoconazole
13771                                                                                                                                    carprofen
13772                                                                                                   ivermectin, praziquantel, pyrantel pamoate
13773                                                                                                                                metronidazole
13774                                                                                                                                  doxycycline
13775                                                                                                   ivermectin, praziquantel, pyrantel pamoate
13776                                                                                                                             milbemycin oxime
13777                                                                                                                                 enrofloxacin
13778                                                                                                                                    carprofen
13779                                                                                                           amoxicillin, clavulanate potassium
13780                                                                                                               polysulfated glycosaminoglycan
13781                                                                                                                             milbemycin oxime
13782                                                                                                                                    meloxicam
13783                                                                                                                             milbemycin oxime
13784                                                                                                                                    carprofen
13785                                                                                                                         cefpodoxime proxetil
13786                                                                                                      betamethasone, florfenicol, terbinafine
13787                                                                                                                                   gabapentin
13788                                                                                                                                    carprofen
13789                                                                                                                                   gabapentin
13790                                                                                                                                    carprofen
13791                                                                                                                                   gabapentin
13792                                                                                                                                   amantadine
13793                                                                                                                                    carprofen
13794                                                                                                                                    cefovecin
13795                                                                                                                                   prednisone
13796                                                                                                           chlorhexidine gluconate, ophytrium
13797                                                                                                                                dexamethasone
13798                                                                                                                                  epinephrine
13799                                                                                                                                  epinephrine
13800                                                                                                            trimeprazine tartrate, prednisone
13801                                                                                                                 ivermectin, pyrantel pamoate
13802                                                                                                            trimeprazine tartrate, prednisone
13803                                                                                                           amoxicillin, clavulanate potassium
13804                                                                                                               polysulfated glycosaminoglycan
13805                                                                                                                                    probiotic
13806                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13807                                                                                                                     urinary tract supplement
13808                                                                                                                                    carprofen
13809                                                                                                                                metronidazole
13810                                                                                                                                  amoxicillin
13811                                                                                                                                     tramadol
13812                                                                                                           amoxicillin, clavulanate potassium
13813                                                                                                                         cefpodoxime proxetil
13814                                                                                                                                 acepromazine
13815                                                                                                                                   famotidine
13816                                                                                                                 ivermectin, pyrantel pamoate
13817                                                                                                                                metronidazole
13818                                                                                                               polysulfated glycosaminoglycan
13819                                                                                                                                   famotidine
13820                                                                                                                 ivermectin, pyrantel pamoate
13821                                                                                                                           maropitant citrate
13822                                                                                                                           maropitant citrate
13823                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13824                                                                                                                                   ivermectin
13825                                                                                                                     fipronil, (s)-methoprene
13826                                                                                                                                   famotidine
13827                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13828                                                                                                                                    probiotic
13829                                                                                                                                  hydroxyzine
13830                                                                                                                                    carprofen
13831                                                                                                                                  doxycycline
13832                                                                                                                                metronidazole
13833                                                                                                                                   sucralfate
13834                                                                                                                          phenylpropanolamine
13835                                                                                                                               metoclopramide
13836                                                                                                                                   omeprazole
13837                                                                                                                                    vitamin b
13838                                                                                                               polysulfated glycosaminoglycan
13839                                                                                                                                   alprazolam
13840                                                                                                                                   ivermectin
13841                                                                                                                     fipronil, (s)-methoprene
13842                                                                                                                                   cetirizine
13843                                                                                                                                   ranitidine
13844                                                                                                                               metoclopramide
13845                                                                                                                                    probiotic
13846                                                                                                                                    vitamin b
13847                                                                                                               polysulfated glycosaminoglycan
13848                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13849                                                                                                  chlorhexidine gluconate, miconazole nitrate
13850                                                                                                                                   prednisone
13851                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13852                                                                                                            dexamethasone, miconazole nitrate
13853                                                                                                                                metronidazole
13854                                                                                                                               metoclopramide
13855                                                                                                                                   cetirizine
13856                                                                                                                                   ranitidine
13857                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13858                                                                                                                                    probiotic
13859                                                                                                               polysulfated glycosaminoglycan
13860                                                                                                                                    vitamin b
13861                                                                                                                                hydromorphone
13862                                                                                                                             atropine sulfate
13863                                                                                                                                     propofol
13864                                                                                                                                buprenorphine
13865                                                                                                                                dexamethasone
13866                                                                                                                                 enrofloxacin
13867                                                                                                                                     tramadol
13868                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13869                                                                                                                                   cetirizine
13870                                                                                                                               metoclopramide
13871                                                                                                                                metronidazole
13872                                                                                                                                     ursodiol
13873                                                                                                                                   ranitidine
13874                                                                                                                                    probiotic
13875                                                                                                                                   ivermectin
13876                                                                                                               polysulfated glycosaminoglycan
13877                                                                                                                                    vitamin b
13878                                                                                                                           maropitant citrate
13879                                                                                                                           maropitant citrate
13880                                                                                                                                   sucralfate
13881                                                                                                                             sulfadimethoxine
13882                                                                                                                                   ivermectin
13883                                                                                                                                    carprofen
13884                                                                                                            betamethasone, gentamicin sulfate
13885                                                                                                                                   ivermectin
13886                                                                                                                       unspecified medication
13887                                                                                                                      triamcinolone acetonide
13888                                                                                                                         cefpodoxime proxetil
13889                                                                                                                         cefpodoxime proxetil
13890                                                                                                                      triamcinolone acetonide
13891                                                                                                           amoxicillin, clavulanate potassium
13892                                                                                                                                  doxycycline
13893                                                                                                                             milbemycin oxime
13894                                                                                                        dinotefuran, permethrin, pyriproxyfen
13895                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13896                                                                                                                             milbemycin oxime
13897                                                                                                        dinotefuran, permethrin, pyriproxyfen
13898                                                                                                                                    carprofen
13899                                                                                                                                     tramadol
13900                                                                                                                                   gabapentin
13901                                                                                                                                    carprofen
13902                                                                                                                             pyrantel pamoate
13903                                                                                                                                marbofloxacin
13904                                                                                                           amoxicillin, clavulanate potassium
13905                                                                                                                             milbemycin oxime
13906                                                                                                        dinotefuran, permethrin, pyriproxyfen
13907                                                                                                                                   prednisone
13908                                                                                                                                 fenbendazole
13909                                                                                                                                   prednisone
13910                                                                                                                             milbemycin oxime
13911                                                                                                        dinotefuran, permethrin, pyriproxyfen
13912                                                                                                                                   lokivetmab
13913                                                                                                                                  bedinvetmab
13914                                                                                                                                    carprofen
13915                                                                                                                                   tacrolimus
13916                                                                                                                         prednisolone acetate
13917                                                                                                                                   tacrolimus
13918                                                                                                           amoxicillin, clavulanate potassium
13919                                                                                                                                    deracoxib
13920                                                                                                                                 acepromazine
13921                                                                                                                                   selamectin
13922                                                                                                                             milbemycin oxime
13923                                                                                                                                     spinosad
13924                                                                                                           amoxicillin, clavulanate potassium
13925                                                                                                                   milbemycin oxime, spinosad
13926                                                                                                                                  doxycycline
13927                                                                                                                                  hydrocodone
13928                                                                                                                                  doxycycline
13929                                                                                                                                  hydrocodone
13930                                                                                                                                   selamectin
13931                                                                                                                                    deracoxib
13932                                                                                                                                   alprazolam
13933                                                                                                                                   alprazolam
13934                                                                                                                                   alprazolam
13935                                                                                                                                    carprofen
13936                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13937                                                                                                                                levothyroxine
13938                                                                                                                                  fluconazole
13939                                                                                                                                levothyroxine
13940                                                                                                                                  fluconazole
13941                                                                                                                                levothyroxine
13942                                                                                                                                levothyroxine
13943                                                                                                                 ivermectin, pyrantel pamoate
13944                                                                                                                                levothyroxine
13945                                                                                                                                 enrofloxacin
13946                                                                                                            betamethasone, gentamicin sulfate
13947                                                                                                                 ivermectin, pyrantel pamoate
13948                                                                                                                                   afoxolaner
13949                                                                                                                         cefpodoxime proxetil
13950                                                                                                                                  terbinafine
13951                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13952                                                                                                                         cefpodoxime proxetil
13953                                                                                                                                   alprazolam
13954                                                                                                                                    trazodone
13955                                                                                                                                    carprofen
13956                                                                                                                                ciprofloxacin
13957                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
13958                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13959                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13960                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
13961                                                                                                                                    trazodone
13962                                                                                                                                   gabapentin
13963                                                                                                                              cbd or hemp oil
13964                                                                                                                                    carprofen
13965                                                                                                                           calming supplement
13966                                                                                                                                metronidazole
13967                                                                                                                             tylosin tartrate
13968                                                                                                                                   ivermectin
13969                                                                                                                                   alprazolam
13970                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13971                                                                                                                                   alprazolam
13972                                                                                                   toothpaste/dental health solution or chews
13973                                                                                                                                   ivermectin
13974                                                                                                                                   cephalexin
13975                                                                                                                                    carprofen
13976                                                                                                                                   famotidine
13977                                                                                                                           maropitant citrate
13978                                                                                                                                  clindamycin
13979                                                                                                                     fipronil, (s)-methoprene
13980                                                                                                                 ivermectin, pyrantel pamoate
13981                                                                                                                                   ampicillin
13982                                                                                                                                  clindamycin
13983                                                                                                                                   famotidine
13984                                                                                                                           maropitant citrate
13985                                                                                                                                   cephalexin
13986                                                                                                                                    carprofen
13987                                                                                                                                 acepromazine
13988                                                                                                                                metronidazole
13989                                                                                                                                   alprazolam
13990                                                                                                                                  clindamycin
13991                                                                                                                                    carprofen
13992                                                                                                                 ivermectin, pyrantel pamoate
13993                                                                                                                                   afoxolaner
13994                                                                                                                 ivermectin, pyrantel pamoate
13995                                                                                                                                    sarolaner
13996                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13997                                                                                                                                    sarolaner
13998                                                                                                                 ivermectin, pyrantel pamoate
13999                                                                                                                 ivermectin, pyrantel pamoate
14000                                                                                                                                    sarolaner
14001                                                                                                                                  clindamycin
14002                                                                                                                                dexamethasone
14003                                                                                                           amoxicillin, clavulanate potassium
14004                                                                                                                                   prednisone
14005                                                                                                                                    carprofen
14006                                                                                                            betamethasone, gentamicin sulfate
14007                                                                                                                             milbemycin oxime
14008                                                                                                            enrofloxacin, silver sulfadiazine
14009                                                                                                                             milbemycin oxime
14010                                                                                                                                   gabapentin
14011                                                                                                                                    carprofen
14012                                                                                                                                   cephalexin
14013                                                                                                                                   gabapentin
14014                                                                                                               polysulfated glycosaminoglycan
14015                                                                                                                                   ivermectin
14016                                                                                                                                 azithromycin
14017                                                                                                                                    carprofen
14018                                                                                                                                  clindamycin
14019                                                                                                                 ivermectin, pyrantel pamoate
14020                                                                                                                                    carprofen
14021                                                                                                                                   gabapentin
14022                                                                                                                 ivermectin, pyrantel pamoate
14023                                                                                                                                    sarolaner
14024                                                                                                                                    carprofen
14025                                                                                                                                   ivermectin
14026                                                                                                                                    sarolaner
14027                                                                                                                 ivermectin, pyrantel pamoate
14028                                                                                                                                    sarolaner
14029                                                                                                                                    carprofen
14030                                                                                                                                    carprofen
14031                                                                                                                                metronidazole
14032                                                                                                                                 itraconazole
14033                                                                                                                                  doxycycline
14034                                                                                                                   milbemycin oxime, spinosad
14035                                                                                                                                   selamectin
14036                                                                                                                                   selamectin
14037                                                                                                                             milbemycin oxime
14038                                                                                                           amoxicillin, clavulanate potassium
14039                                                                                                                                    carprofen
14040                                                                                                                                  amoxicillin
14041                                                                                                                                    carprofen
14042                                                                                                           amoxicillin, clavulanate potassium
14043                                                                                                                                   prednisone
14044                                                                                                                                   famotidine
14045                                                                                                                              diphenhydramine
14046                                                                                                                                     tramadol
14047                                                                                                                                   gabapentin
14048                                                                                                                                    carprofen
14049                                                                                                           amoxicillin, clavulanate potassium
14050                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                                             milbemycin oxime
14052                                                                                                           amoxicillin, clavulanate potassium
14053                                                                                                                                 fenbendazole
14054                                                                                                                               metoclopramide
14055                                                                                                                             milbemycin oxime
14056                                                                                                                              diphenhydramine
14057                                                                                                                                   famotidine
14058                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14059                                                                                                                                   selamectin
14060                                                                                                                                   ivermectin
14061                                                                                                                 ivermectin, pyrantel pamoate
14062                                                                                                                 ivermectin, pyrantel pamoate
14063                                                                                                                     fipronil, (s)-methoprene
14064                                                                                                                 ivermectin, pyrantel pamoate
14065                                                                                                       joint supplement (glucosamine hcl/msm)
14066                                                                                                                                   pimobendan
14067                                                                                                                               benazepril hcl
14068                                                                                                                               spironolactone
14069                                                                                                                                      taurine
14070                                                                                                                                      omega 3
14071                                                                                                                     fipronil, (s)-methoprene
14072                                                                                                                                      taurine
14073                                                                                                                                   pimobendan
14074                                                                                                                               spironolactone
14075                                                                                                                               benazepril hcl
14076                                                                                                                               benazepril hcl
14077                                                                                                                                   pimobendan
14078                                                                                                                               spironolactone
14079                                                                                                                                      taurine
14080                                                                                                                 ivermectin, pyrantel pamoate
14081                                                                                                                     fipronil, (s)-methoprene
14082                                                                                                                                metronidazole
14083                                                                                                                                      taurine
14084                                                                                                                               benazepril hcl
14085                                                                                                                               spironolactone
14086                                                                                                                                   pimobendan
14087                                                                                                                                   cephalexin
14088                                                                                                                                   pimobendan
14089                                                                                                                               spironolactone
14090                                                                                                                               benazepril hcl
14091                                                                                                                                      taurine
14092                                                                                                                                   pimobendan
14093                                                                                                                               spironolactone
14094                                                                                                                               benazepril hcl
14095                                                                                                                                      taurine
14096                                                                                                                               spironolactone
14097                                                                                                                               benazepril hcl
14098                                                                                                                                   pimobendan
14099                                                                                                                                      taurine
14100                                                                                                                                  bedinvetmab
14101                                                                                                                               spironolactone
14102                                                                                                                               benazepril hcl
14103                                                                                                                                   pimobendan
14104                                                                                                                                      taurine
14105                                                                                                                                   furosemide
14106                                                                                                                  lufenuron, milbemycin oxime
14107                                                                                                                                metronidazole
14108                                                                                                                                  amoxicillin
14109                                                                                                                                     tramadol
14110                                                                                                                                 fenbendazole
14111                                                                                                                               metoclopramide
14112                                                                                                                                   cephalexin
14113                                                                                                                dextromethorphan hydrobromide
14114                                                                                                                   milbemycin oxime, spinosad
14115                                                                                                                                   cephalexin
14116                                                                                                                dextromethorphan hydrobromide
14117                                                                                                                                metronidazole
14118                                                                                                                   milbemycin oxime, spinosad
14119                                                                                                                   milbemycin oxime, spinosad
14120                                                                                                                         butorphanol tartrate
14121                                                                                                                              dexmedetomidine
14122                                                                                                                                  atipamezole
14123                                                                                                                   lactated ringer's solution
14124                                                                                                                           maropitant citrate
14125                                                                                                                                   famotidine
14126                                                                                                                                metronidazole
14127                                                                                                                                    probiotic
14128                                                                                                                   milbemycin oxime, spinosad
14129                                                                                                                   milbemycin oxime, spinosad
14130                                                                                               dexamethasone, neomycin sulfate, thiabendazole
14131                                                                                                                      ketoconazole, tris-edta
14132                                                                                                                                     spinosad
14133                                                                                                                                   gabapentin
14134                                                                                                                             milbemycin oxime
14135                                                                                                                                  oclacitinib
14136                                                                                               mometasone furoate, orbifloxacin, posaconazole
14137                                                                                                                                    meloxicam
14138                                                                                                                                   prednisone
14139                                                                                                          ear cleaner (zymox), hydrocortisone
14140                                                                                                               milbemycin oxime, praziquantel
14141                                                                                                                                phenobarbital
14142                                                                                                                                levetiracetam
14143                                                                                                                                levetiracetam
14144                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
14145                                                                                                                                    probiotic
14146                                                                                                                                   cephalexin
14147                                                                                                                                   ivermectin
14148                                                                                                                     fipronil, (s)-methoprene
14149                                                                                                                                   ivermectin
14150                                                                                                                                   afoxolaner
14151                                                                                                                 ivermectin, pyrantel pamoate
14152                                                                                                                                   famotidine
14153                                                                                                                                   afoxolaner
14154                                                                                                                 ivermectin, pyrantel pamoate
14155                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14156                                                                                                                                   lokivetmab
14157                                                                                                                                    carprofen
14158                                                                                                                                   cephalexin
14159                                                                                                                                   famotidine
14160                                                                                                                             tylosin tartrate
14161                                                                                                                                    carprofen
14162                                                                                                                  lufenuron, milbemycin oxime
14163                                                                                                                  lufenuron, milbemycin oxime
14164                                                                                                                 ivermectin, pyrantel pamoate
14165                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                                           miconazole nitrate
14167                                                                                                       dexamethasone, ketoconazole, tris-edta
14168                                                                                                                                    cefovecin
14169                                                                                                                                   prednisone
14170                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14171                                                                                                 florfenicol, mometasone furoate, terbinafine
14172                                                                                                                 ivermectin, pyrantel pamoate
14173                                                                                                                 ivermectin, pyrantel pamoate
14174                                                                                                                     fipronil, (s)-methoprene
14175                                                                                                 florfenicol, mometasone furoate, terbinafine
14176                                                                                                                                    meloxicam
14177                                                                                                                             milbemycin oxime
14178                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14179                                                                                                 florfenicol, mometasone furoate, terbinafine
14180                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                                             milbemycin oxime
14182                                                                                                                 ivermectin, pyrantel pamoate
14183                                                                                                                                metronidazole
14184                                                                                                                                   ivermectin
14185                                                                                                           fipronil, permethrin, pyriproxyfen
14186                                                                                                                              diphenhydramine
14187                                                                                                                                   cephalexin
14188                                                                                                                 ormetoprim, sulfadimethoxine
14189                                                                                                                     fipronil, (s)-methoprene
14190                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14191                                                                                                                 ivermectin, pyrantel pamoate
14192                                                                                                                                   afoxolaner
14193                                                                                                                              diphenhydramine
14194                                                                                                                                  oclacitinib
14195                                                                                                                              diphenhydramine
14196                                                                                                                 ivermectin, pyrantel pamoate
14197                                                                                                                                    sarolaner
14198                                                                                                                                    carprofen
14199                                                                                                                                   gabapentin
14200                                                                                                                              diphenhydramine
14201                                                                                                       joint supplement (glucosamine hcl/msm)
14202                                                                                                                              diphenhydramine
14203                                                                                                                                  pamidronate
14204                                                                                                                                    meloxicam
14205                                                                                                                                   ivermectin
14206                                                                                                                                metronidazole
14207                                                                                                        dinotefuran, permethrin, pyriproxyfen
14208                                                                                                                                   fluralaner
14209                                                                                                                     imidacloprid, permethrin
14210                                                                                                                                     spinosad
14211                                                                                                                                     spinosad
14212                                                                                                                                dexamethasone
14213                                                                                                                                   prednisone
14214                                                                                                                   milbemycin oxime, spinosad
14215                                                                                                                                   afoxolaner
14216                                                                                                                                  doxycycline
14217                                                                                                                                levothyroxine
14218                                                                                                    clotrimazole, dexamethasone, enrofloxacin
14219                                                                                                                             milbemycin oxime
14220                                                                                                                              diphenhydramine
14221                                                                                                                       unspecified astringent
14222                                                                                                                                    carprofen
14223                                                                                                                                   gabapentin
14224                                                                                                                                   cephalexin
14225                                                                                                           amoxicillin, clavulanate potassium
14226                                                                                                                                   cephalexin
14227                                                                                                                                    carprofen
14228                                                                                                                       unspecified medication
14229                                                                                                                         cefpodoxime proxetil
14230                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14231                                                                                                                                   lokivetmab
14232                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
14233                                                                                                                                   loratadine
14234                                                                                                                                  oclacitinib
14235                                                                                                           amoxicillin, clavulanate potassium
14236                                                                                                                                 enrofloxacin
14237                                                                                                                         cefpodoxime proxetil
14238                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14239                                                                                                                                    carprofen
14240                                                                                                                 ivermectin, pyrantel pamoate
14241                                                                                                                     fipronil, (s)-methoprene
14242                                                                                                                 ivermectin, pyrantel pamoate
14243                                                                                                                     fipronil, (s)-methoprene
14244                                                                                                                 ivermectin, pyrantel pamoate
14245                                                                                                                     fipronil, (s)-methoprene
14246                                                                                                                 ivermectin, pyrantel pamoate
14247                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14248                                                                                                                 ivermectin, pyrantel pamoate
14249                                                                                                                     fipronil, (s)-methoprene
14250                                                                                                                 ivermectin, pyrantel pamoate
14251                                                                                                           fipronil, permethrin, pyriproxyfen
14252                                                                                                                 ivermectin, pyrantel pamoate
14253                                                                                                                     fipronil, (s)-methoprene
14254                                                                                                                                   cephalexin
14255                                                                                                           amoxicillin, clavulanate potassium
14256                                                                                                                                   cephalexin
14257                                                                                                           amoxicillin, clavulanate potassium
14258                                                                                                                                   gabapentin
14259                                                                                                                         butorphanol tartrate
14260                                                                                                                                    midazolam
14261                                                                                                                                    carprofen
14262                                                                                                                                     spinosad
14263                                                                                                                             milbemycin oxime
14264                                                                                                                             milbemycin oxime
14265                                                                                                                                     spinosad
14266                                                                                                                                   ivermectin
14267                                                                                                                             pyrantel pamoate
14268                                                                                                                 ivermectin, pyrantel pamoate
14269                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14270                                                                                                                           calming supplement
14271                                                                                                                                metronidazole
14272                                                                                                                 ivermectin, pyrantel pamoate
14273                                                                                                                                   afoxolaner
14274                                                                                                                                metronidazole
14275                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14276                                                                                                                 ivermectin, pyrantel pamoate
14277                                                                                                                                   afoxolaner
14278                                                                                                                                  minocycline
14279                                                                                                                                    meloxicam
14280                                                                                                                                  minocycline
14281                                                                                                                                   ivermectin
14282                                                                                                                                   ivermectin
14283                                                                                                                                levothyroxine
14284                                                                                                                                   ivermectin
14285                                                                                                                                levothyroxine
14286                                                                                                                                   ivermectin
14287                                                                                                                                levothyroxine
14288                                                                                                                                levothyroxine
14289                                                                                                                                levothyroxine
14290                                                                                                                                   cephalexin
14291                                                                                                  chlorhexidine gluconate, miconazole nitrate
14292                                                                                                                                levothyroxine
14293                                                                                                                                    carprofen
14294                                                                                                                                metronidazole
14295                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14296                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14297                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14298                                                                                                                             milbemycin oxime
14299                                                                                                                             milbemycin oxime
14300                                                                                                                                    carprofen
14301                                                                                                                                   ivermectin
14302                                                                                                                                   nitenpyram
14303                                                                                                                                metronidazole
14304                                                                                                                           maropitant citrate
14305                                                                                                                                   sucralfate
14306                                                                                                                                    meloxicam
14307                                                                                                                   thyroid support supplement
14308                                                                                                                                levothyroxine
14309                                                                                                                                levothyroxine
14310                                                                                                           amoxicillin, clavulanate potassium
14311                                                                                                                                levothyroxine
14312                                                                                                                                metronidazole
14313                                                                                                                             tylosin tartrate
14314                                                                                                                                    thyroxine
14315                                                                                                                                   alprazolam
14316                                                                                                                               dimenhydrinate
14317                                                                                                                           calming supplement
14318                                                                                                                 ivermectin, pyrantel pamoate
14319                                                                                                                 ivermectin, pyrantel pamoate
14320                                                                                                                                   cephalexin
14321                                                                                                                      triamcinolone acetonide
14322                                                                                                                    unspecified otic ear pack
14323                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14324                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14325                                                                                                                                   lokivetmab
14326                                                                                                                                    buspirone
14327                                                                                                                                   lokivetmab
14328                                                                                                                                   grapiprant
14329                                                                                                                                   lokivetmab
14330                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14331                                                                                                                                    buspirone
14332                                                                                                                                   grapiprant
14333                                                                                                                                   famotidine
14334                                                                                                                     imidacloprid, moxidectin
14335                                                                                                                     imidacloprid, moxidectin
14336                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14337                                                                                                                                   cephalexin
14338                                                                                                                                  amoxicillin
14339                                                                                                                     imidacloprid, moxidectin
14340                                                                                                                     imidacloprid, moxidectin
14341                                                                                                                     imidacloprid, moxidectin
14342                                                                                                                                  amoxicillin
14343                                                                                                                     imidacloprid, moxidectin
14344                                                                                                                                metronidazole
14345                                                                                                                           maropitant citrate
14346                                                                                                 florfenicol, mometasone furoate, terbinafine
14347                                                                                                                                metronidazole
14348                                                                                                                           maropitant citrate
14349                                                                                                                    unspecified otic ear pack
14350                                                                                                                     imidacloprid, permethrin
14351                                                                                                    lufenuron, milbemycin oxime, praziquantel
14352                                                                                                                     imidacloprid, permethrin
14353                                                                                                                                   omeprazole
14354                                                                                                                                    probiotic
14355                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14356                                                                                                                                 chlorambucil
14357                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14358                                                                                                                         cefpodoxime proxetil
14359                                                                                                                                dexamethasone
14360                                                                                                                 ivermectin, pyrantel pamoate
14361                                                                                                                                  doxycycline
14362                                                                                                                                   cephalexin
14363                                                                                                                                   prednisone
14364                                                                                                                 ivermectin, pyrantel pamoate
14365                                                                                                                 ivermectin, pyrantel pamoate
14366                                                                                                                 ivermectin, pyrantel pamoate
14367                                                                                                     febantel, praziquantel, pyrantel pamoate
14368                                                                                                                                   cephalexin
14369                                                                                                                                   prednisone
14370                                                                                                                                sulfasalazine
14371                                                                                                                                    probiotic
14372                                                                                                                  lufenuron, milbemycin oxime
14373                                                                                                                     flumethrin, imidacloprid
14374                                                                                                                                metronidazole
14375                                                                                                    lufenuron, milbemycin oxime, praziquantel
14376                                                                                                                     flumethrin, imidacloprid
14377                                                                                                                                metronidazole
14378                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14379                                                                                                    lufenuron, milbemycin oxime, praziquantel
14380                                                                                                                     flumethrin, imidacloprid
14381                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14382                                                                                                                             sulfadimethoxine
14383                                                                                                                  lufenuron, milbemycin oxime
14384                                                                                                                                   afoxolaner
14385                                                                                                                  lufenuron, milbemycin oxime
14386                                                                                                                                   afoxolaner
14387                                                                                                                  lufenuron, milbemycin oxime
14388                                                                                                                                   afoxolaner
14389                                                                                                                  lufenuron, milbemycin oxime
14390                                                                                                                                   afoxolaner
14391                                                                                                                                    carprofen
14392                                                                                                                                   ivermectin
14393                                                                                                                                    carprofen
14394                                                                                                   chloroxylenol, lactic acid, salicylic acid
14395                                                                                                                                   cephalexin
14396                                                                                                  over-the-counter unmedicated shampoo/mousse
14397                                                                                                           chlorhexidine gluconate, ophytrium
14398                                                                                                                                     spinosad
14399                                                                                               mometasone furoate, orbifloxacin, posaconazole
14400                                                                                                            trimeprazine tartrate, prednisone
14401                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14402                                                                                                                 ivermectin, pyrantel pamoate
14403                                                                                                                                   fluralaner
14404                                                                                                                  lufenuron, milbemycin oxime
14405                                                                                                                                    firocoxib
14406                                                                                                                 ivermectin, pyrantel pamoate
14407                                                                                                                     fipronil, (s)-methoprene
14408                                                                                                                 ivermectin, pyrantel pamoate
14409                                                                                                                     fipronil, (s)-methoprene
14410                                                                                                                                    thyroxine
14411                                                                                                           amoxicillin, clavulanate potassium
14412                                                                                                                   milbemycin oxime, spinosad
14413                                                                                                                     fipronil, (s)-methoprene
14414                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14415                                                                                                                 ivermectin, pyrantel pamoate
14416                                                                                                                                   fluralaner
14417                                                                                                                         cefpodoxime proxetil
14418                                                                                                                                    carprofen
14419                                                                                                                                    thyroxine
14420                                                                                                                 ivermectin, pyrantel pamoate
14421                                                                                                                                    thyroxine
14422                                                                                                           amoxicillin, clavulanate potassium
14423                                                                                                                                levothyroxine
14424                                                                                                                                    carprofen
14425                                                                                                                 ivermectin, pyrantel pamoate
14426                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14427                                                                                                                                      omega 3
14428                                                                                                                             pyrantel pamoate
14429                                                                                                                  lufenuron, milbemycin oxime
14430                                                                                                                                  amoxicillin
14431                                                                                                                  lufenuron, milbemycin oxime
14432                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                                      omega 3
14434                                                                                                                                 multivitamin
14435                                                                                                                                     tramadol
14436                                                                                                                                    carprofen
14437                                                                                                                                   isoflurane
14438                                                                                                                        tiletamine, zolazepam
14439                                                                                                                         butorphanol tartrate
14440                                                                                                                                 acepromazine
14441                                                                                                                               glycopyrrolate
14442                                                                                                                                    carprofen
14443                                                                                                                  lufenuron, milbemycin oxime
14444                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                                                   toothpaste/dental health solution or chews
14446                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                                     urinary tract supplement
14448                                                                                                                  lufenuron, milbemycin oxime
14449                                                                                                                  lufenuron, milbemycin oxime
14450                                                                                                                                   cephalexin
14451                                                                                                                  lufenuron, milbemycin oxime
14452                                                                                                                                   cephalexin
14453                                                                                                                                  oclacitinib
14454                                                                                                                 ivermectin, pyrantel pamoate
14455                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14456                                                                                                                           maropitant citrate
14457                                                                                                                 ivermectin, pyrantel pamoate
14458                                                                                                                 ivermectin, pyrantel pamoate
14459                                                                                                                                   afoxolaner
14460                                                                                                                 ivermectin, pyrantel pamoate
14461                                                                                                                                   afoxolaner
14462                                                                                               dexamethasone, neomycin sulfate, thiabendazole
14463                                                                                                                 ivermectin, pyrantel pamoate
14464                                                                                                                                   afoxolaner
14465                                                                                                                 ivermectin, pyrantel pamoate
14466                                                                                                                                   afoxolaner
14467                                                                                                                              diphenhydramine
14468                                                                                                                         cefpodoxime proxetil
14469                                                                                                                                levetiracetam
14470                                                                                                                                   prednisone
14471                                                                                                                  lufenuron, milbemycin oxime
14472                                                                                                                                levothyroxine
14473                                                                                                                  lufenuron, milbemycin oxime
14474                                                                                                                                levothyroxine
14475                                                                                                                                  doxycycline
14476                                                                                                                                levothyroxine
14477                                                                                                                  lufenuron, milbemycin oxime
14478                                                                                                                                levothyroxine
14479                                                                                                                     flumethrin, imidacloprid
14480                                                                                                                                levothyroxine
14481                                                                                                                                   lokivetmab
14482                                                                                                                                  clindamycin
14483                                                                                                                                levothyroxine
14484                                                                                                                                  hydroxyzine
14485                                                                                                                                   cephalexin
14486                                                                                                                                    carprofen
14487                                                                                                                                levothyroxine
14488                                                                                                                 ivermectin, pyrantel pamoate
14489                                                                                                                 ivermectin, pyrantel pamoate
14490                                                                                                                 ivermectin, pyrantel pamoate
14491                                                                                                                                    vitamin b
14492                                                                                                                               metoclopramide
14493                                                                                                                                   famotidine
14494                                                                                                                               metoclopramide
14495                                                                                                                 ivermectin, pyrantel pamoate
14496                                                                                                                                   cephalexin
14497                                                                                                                                   prednisone
14498                                                                                                                 ivermectin, pyrantel pamoate
14499                                                                                                                 ivermectin, pyrantel pamoate
14500                                                                                                           amoxicillin, clavulanate potassium
14501                                                                                                                                   cephalexin
14502                                                                                                                                   cephalexin
14503                                                                                                                                   cephalexin
14504                                                                                                                                    cefovecin
14505                                                                                                                 ivermectin, pyrantel pamoate
14506                                                                                                                             milbemycin oxime
14507                                                                                                        dinotefuran, permethrin, pyriproxyfen
14508                                                                                                                             milbemycin oxime
14509                                                                                                        dinotefuran, permethrin, pyriproxyfen
14510                                                                                                                                   lokivetmab
14511                                                                                                                                  oclacitinib
14512                                                                                                                             milbemycin oxime
14513                                                                                                                                   lokivetmab
14514                                                                                                               polysulfated glycosaminoglycan
14515                                                                                                                                   lokivetmab
14516                                                                                                                                    cefovecin
14517                                                                                                                                    trazodone
14518                                                                                                                                   lokivetmab
14519                                                                                                                                  oclacitinib
14520                                                                                                                                    firocoxib
14521                                                                                                                                    firocoxib
14522                                                                                                                                    firocoxib
14523                                                                                                                                  bedinvetmab
14524                                                                                                                                   lokivetmab
14525                                                                                                                                    firocoxib
14526                                                                                                                                   ivermectin
14527                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14528                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14529                                                                                                                 ivermectin, pyrantel pamoate
14530                                                                                                                                levothyroxine
14531                                                                                                                                levothyroxine
14532                                                                                                                 ivermectin, pyrantel pamoate
14533                                                                                                                                   afoxolaner
14534                                                                                                                 ivermectin, pyrantel pamoate
14535                                                                                                                                levothyroxine
14536                                                                                                                                   afoxolaner
14537                                                                                                                 ivermectin, pyrantel pamoate
14538                                                                                                                                levothyroxine
14539                                                                                                                                   afoxolaner
14540                                                                                                                                levothyroxine
14541                                                                                                                                levothyroxine
14542                                                                                                                                    enalapril
14543                                                                                                                                levothyroxine
14544                                                                                                                         cefpodoxime proxetil
14545                                                                                                                                    enalapril
14546                                                                                                                                levothyroxine
14547                                                                                                                                   ivermectin
14548                                                                                                                                  doxycycline
14549                                                                                                                                 cyclosporine
14550                                                                                                                                   gabapentin
14551                                                                                                                                  niacinamide
14552                                                                                                                                    firocoxib
14553                                                                                                                                   ivermectin
14554                                                                                                           fipronil, permethrin, pyriproxyfen
14555                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14556                                                                                                                                   ivermectin
14557                                                                                                                 ivermectin, pyrantel pamoate
14558                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14559                                                                                                                 ivermectin, pyrantel pamoate
14560                                                                                                                   milbemycin oxime, spinosad
14561                                                                                                                                  oclacitinib
14562                                                                                                                                   selamectin
14563                                                                                                                                   ivermectin
14564                                                                                                                 ivermectin, pyrantel pamoate
14565                                                                                                                 ivermectin, pyrantel pamoate
14566                                                                                                                                 fenbendazole
14567                                                                                                                  lufenuron, milbemycin oxime
14568                                                                                                                                   ivermectin
14569                                                                                                           fipronil, permethrin, pyriproxyfen
14570                                                                                                                                    carprofen
14571                                                                                                                                  clindamycin
14572                                                                                                                                     tramadol
14573                                                                                                                             milbemycin oxime
14574                                                                                                                                    lufenuron
14575                                                                                                                                metronidazole
14576                                                                                                                  lufenuron, milbemycin oxime
14577                                                                                                                     fipronil, (s)-methoprene
14578                                                                                                                                   nitenpyram
14579                                                                                                                                 praziquantel
14580                                                                                                                                  doxycycline
14581                                                                                                                                   sucralfate
14582                                                                                                                                    sarolaner
14583                                                                                                                  lufenuron, milbemycin oxime
14584                                                                                                                                    sarolaner
14585                                                                                                    lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                                    sarolaner
14587                                                                                                    lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                                    sarolaner
14589                                                                                                                                   lokivetmab
14590                                                                                                                                   cephalexin
14591                                                                                                                                   cephalexin
14592                                                                                                                                    carprofen
14593                                                                                                                           maropitant citrate
14594                                                                                                                                   ivermectin
14595                                                                                                                                    carprofen
14596                                                                                                                                   afoxolaner
14597                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14598                                                                                                                                   cetirizine
14599                                                                                                                 ivermectin, pyrantel pamoate
14600                                                                                                                                   cetirizine
14601                                                                                                           unspecified flea/tick preventative
14602                                                                                                                             milbemycin oxime
14603                                                                                                                                    sarolaner
14604                                                                                                                                   cetirizine
14605                                                                                                               milbemycin oxime, praziquantel
14606                                                                                                                                    sarolaner
14607                                                                                                                                   cetirizine
14608                                                                                                                             milbemycin oxime
14609                                                                                                                                   cetirizine
14610                                                                                                                                   cephalexin
14611                                                                                                            betamethasone, gentamicin sulfate
14612                                                                                                                                   cetirizine
14613                                                                                                                                   cephalexin
14614                                                                                                                                    carprofen
14615                                                                                                                                    firocoxib
14616                                                                                                               praziquantel, pyrantel pamoate
14617                                                                                                                                metronidazole
14618                                                                                                                                   cephalexin
14619                                                                                                                 ivermectin, pyrantel pamoate
14620                                                                                                                                ciprofloxacin
14621                                                                                                                      triamcinolone acetonide
14622                                                                                                                 ivermectin, pyrantel pamoate
14623                                                                                                                     fipronil, (s)-methoprene
14624                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14625                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14626                                                                                                                                   famotidine
14627                                                                                                                 ivermectin, pyrantel pamoate
14628                                                                                                                 ivermectin, pyrantel pamoate
14629                                                                                                                                  doxycycline
14630                                                                                                                 ivermectin, pyrantel pamoate
14631                                                                                                                     fipronil, (s)-methoprene
14632                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14633                                                                                                                                   famotidine
14634                                                                                                                              diphenhydramine
14635                                                                                                                                dexamethasone
14636                                                                                                                 ivermectin, pyrantel pamoate
14637                                                                                                           fipronil, permethrin, pyriproxyfen
14638                                                                                                           amoxicillin, clavulanate potassium
14639                                                                                                                                    trazodone
14640                                                                                                                                    carprofen
14641                                                                                                                                 enrofloxacin
14642                                                                                                                                metronidazole
14643                                                                                                                         digestive supplement
14644                                                                                                                                yunnan baiyao
14645                                                                                                                   milbemycin oxime, spinosad
14646                                                                                                                 ivermectin, pyrantel pamoate
14647                                                                                                                                   afoxolaner
14648                                                                                                     febantel, praziquantel, pyrantel pamoate
14649                                                                                                                                   cephalexin
14650                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
14651                                                                                                                 ivermectin, pyrantel pamoate
14652                                                                                                                                   afoxolaner
14653                                                                                                                                   cephalexin
14654                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
14655                                                                                                                                metronidazole
14656                                                                                                               milbemycin oxime, praziquantel
14657                                                                                                                                   afoxolaner
14658                                                                                                                 ivermectin, pyrantel pamoate
14659                                                                                                                                metronidazole
14660                                                                                                                                metronidazole
14661                                                                                                                                   cephalexin
14662                                                                                                                                   prednisone
14663                                                                                                                                    meloxicam
14664                                                                                                               milbemycin oxime, praziquantel
14665                                                                                                                                   afoxolaner
14666                                                                                                                                   cephalexin
14667                                                                                                                                   prednisone
14668                                                                                                                                   cephalexin
14669                                                                                                                                   prednisone
14670                                                                                                                                   cephalexin
14671                                                                                                                                    meloxicam
14672                                                                                                                                  oclacitinib
14673                                                                                                                         cefpodoxime proxetil
14674                                                                                                                             milbemycin oxime
14675                                                                                                                                   afoxolaner
14676                                                                                                                                    meloxicam
14677                                                                                                                                metronidazole
14678                                                                                                                                  amoxicillin
14679                                                                                                                                  oclacitinib
14680                                                                                                                                    probiotic
14681                                                                                                     febantel, praziquantel, pyrantel pamoate
14682                                                                                                                                    meloxicam
14683                                                                                                                                   gabapentin
14684                                                                                                                                    meloxicam
14685                                                                                                                                levothyroxine
14686                                                                                                                     joint supplement (other)
14687                                                                                                                                  oclacitinib
14688                                                                                                                                    meloxicam
14689                                                                                                                           methylprednisolone
14690                                                                                                                                   gabapentin
14691                                                                                                                                    meloxicam
14692                                                                                                                                   gabapentin
14693                                                                                                                                    meloxicam
14694                                                                                                                                metronidazole
14695                                                                                                                                  doxycycline
14696                                                                                                                                  doxycycline
14697                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14698                                                                                                                                    deracoxib
14699                                                                                                                     fipronil, (s)-methoprene
14700                                                                                                                 ivermectin, pyrantel pamoate
14701                                                                                                                   imidacloprid, pyriproxyfen
14702                                                                                                                 ivermectin, pyrantel pamoate
14703                                                                                                                                  doxycycline
14704                                                                                                                                   grapiprant
14705                                                                                                                 ivermectin, pyrantel pamoate
14706                                                                                                                           maropitant citrate
14707                                                                                                                                   cephalexin
14708                                                                                                                             milbemycin oxime
14709                                                                                                                              diphenhydramine
14710                                                                                                        dinotefuran, permethrin, pyriproxyfen
14711                                                                                                                  lufenuron, milbemycin oxime
14712                                                                                                        dinotefuran, permethrin, pyriproxyfen
14713                                                                                                                                 fenbendazole
14714                                                                                                                                metronidazole
14715                                                                                                                                metronidazole
14716                                                                                                                           maropitant citrate
14717                                                                                                                                   cephalexin
14718                                                                                                            trimeprazine tartrate, prednisone
14719                                                                                                                                    probiotic
14720                                                                                                                  lufenuron, milbemycin oxime
14721                                                                                                        dinotefuran, permethrin, pyriproxyfen
14722                                                                                                                             milbemycin oxime
14723                                                                                                               milbemycin oxime, praziquantel
14724                                                                                                                                   alprazolam
14725                                                                                                                                    carprofen
14726                                                                                                                                   fluralaner
14727                                                                                                               milbemycin oxime, praziquantel
14728                                                                                                      milbemycin oxime, oxantel, praziquantel
14729                                                                                                                                   fluralaner
14730                                                                                                               milbemycin oxime, praziquantel
14731                                                                                                                                   fluralaner
14732                                                                                                                                levothyroxine
14733                                                                                                                             milbemycin oxime
14734                                                                                                                                   fluralaner
14735                                                                                                                                    thyroxine
14736                                                                                                                                levothyroxine
14737                                                                                                                  lufenuron, milbemycin oxime
14738                                                                                                                                     fipronil
14739                                                                                                                                hydromorphone
14740                                                                                                                              dexmedetomidine
14741                                                                                                                                     propofol
14742                                                                                                                                   cephalexin
14743                                                                                                                                metronidazole
14744                                                                                                                     flumethrin, imidacloprid
14745                                                                                                                  lufenuron, milbemycin oxime
14746                                                                                                                                     fipronil
14747                                                                                                               milbemycin oxime, praziquantel
14748                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14749                                                                                                                                   cephalexin
14750                                                                                                                                   gabapentin
14751                                                                                                                                   cephalexin
14752                                                                                                                                    carprofen
14753                                                                                                                                   gabapentin
14754                                                                                                                     flumethrin, imidacloprid
14755                                                                                                               milbemycin oxime, praziquantel
14756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                                             burow's solution, hydrocortisone
14758                                                                                                                                metronidazole
14759                                                                                                                                    carprofen
14760                                                                                                               milbemycin oxime, praziquantel
14761                                                                                                                           maropitant citrate
14762                                                                                                 florfenicol, mometasone furoate, terbinafine
14763                                                                                                               milbemycin oxime, praziquantel
14764                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14765                                                                                                                                   prednisone
14766                                                                                                                                  hydroxyzine
14767                                                                                                                              diphenhydramine
14768                                                                                                          allergy immunotherapy - unspecified
14769                                                                                                                         cefpodoxime proxetil
14770                                                                                                                  lufenuron, milbemycin oxime
14771                                                                                                                                   afoxolaner
14772                                                                                                                 ivermectin, pyrantel pamoate
14773                                                                                                                                   afoxolaner
14774                                                                                                                              diphenhydramine
14775                                                                                                          allergy immunotherapy - unspecified
14776                                                                                                                                 ketoconazole
14777                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                                      betamethasone, florfenicol, terbinafine
14779                                                                                                                           maropitant citrate
14780                                                                                                                              diphenhydramine
14781                                                                                                 florfenicol, mometasone furoate, terbinafine
14782                                                                                                                 ivermectin, pyrantel pamoate
14783                                                                                                                                   afoxolaner
14784                                                                                                                 ivermectin, pyrantel pamoate
14785                                                                                                                                   lokivetmab
14786                                                                                                                                  oclacitinib
14787                                                                                                                                    trazodone
14788                                                                                                                         cefpodoxime proxetil
14789                                                                                                                                   afoxolaner
14790                                                                                                                 ivermectin, pyrantel pamoate
14791                                                                                                                                   afoxolaner
14792                                                                                                                                  oclacitinib
14793                                                                                                                                    trazodone
14794                                                                                                                                     tramadol
14795                                                                                                                                    carprofen
14796                                                                                                                             tylosin tartrate
14797                                                                                                          allergy immunotherapy - unspecified
14798                                                                                                                                   lokivetmab
14799                                                                                                                         cefpodoxime proxetil
14800                                                                                                                             tylosin tartrate
14801                                                                                                                                  oclacitinib
14802                                                                                                                                   lokivetmab
14803                                                                                                                                    trazodone
14804                                                                                                          allergy immunotherapy - unspecified
14805                                                                                                                             tylosin tartrate
14806                                                                                                 florfenicol, mometasone furoate, terbinafine
14807                                                                                                                                  oclacitinib
14808                                                                                                                                    trazodone
14809                                                                                                                                    carprofen
14810                                                                                                                                  clindamycin
14811                                                                                                           amoxicillin, clavulanate potassium
14812                                                                                                                                  oclacitinib
14813                                                                                                                                    trazodone
14814                                                                                                          allergy immunotherapy - unspecified
14815                                                                                                                                    carprofen
14816                                                                                                                         cefpodoxime proxetil
14817                                                                                                                                  amoxicillin
14818                                                                                                                                metronidazole
14819                                                                                                                             tylosin tartrate
14820                                                                                                                           maropitant citrate
14821                                                                                                                                 capromorelin
14822                                                                                                                                  mirtazapine
14823                                                                                                                              diphenhydramine
14824                                                                                                                                   furosemide
14825                                                                                                                               l-asparaginase
14826                                                                                                                                  vincristine
14827                                                                                                                             cyclophosphamide
14828                                                                                                                                  doxorubicin
14829                                                                                                                                   prednisone
14830                                                                                                                           maropitant citrate
14831                                                                                                                                   famotidine
14832                                                                                                                                   prednisone
14833                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                                                   milbemycin oxime, spinosad
14835                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14836                                                                                                                              dexmedetomidine
14837                                                                                                                                  atipamezole
14838                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                                                  lufenuron, milbemycin oxime
14840                                                                                                                     imidacloprid, permethrin
14841                                                                                                                                   ivermectin
14842                                                                                                                  lufenuron, milbemycin oxime
14843                                                                                                                   milbemycin oxime, spinosad
14844                                                                                                                                   ivermectin
14845                                                                                                                                   afoxolaner
14846                                                                                                              ear cleaner (epi-otic advanced)
14847                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14848                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14849                                                                                                                                    carprofen
14850                                                                                                                                yunnan baiyao
14851                                                                                                                                yunnan baiyao
14852                                                                                                                           maropitant citrate
14853                                                                                                                                 capromorelin
14854                                                                                                                                metronidazole
14855                                                                                                                                metronidazole
14856                                                                                                                                   prednisone
14857                                                                                                                                 multivitamin
14858                                                                                                                  lufenuron, milbemycin oxime
14859                                                                                                                                   famotidine
14860                                                                                                                                 praziquantel
14861                                                                                                                  lufenuron, milbemycin oxime
14862                                                                                                                                 multivitamin
14863                                                                                                                                 multivitamin
14864                                                                                                                  lufenuron, milbemycin oxime
14865                                                                                                                  lufenuron, milbemycin oxime
14866                                                                                                        dinotefuran, permethrin, pyriproxyfen
14867                                                                                                               milbemycin oxime, praziquantel
14868                                                                                                                                    lotilaner
14869                                                                                                      betamethasone, florfenicol, terbinafine
14870                                                                                                                             milbemycin oxime
14871                                                                                                                                    lotilaner
14872                                                                                                                                  amoxicillin
14873                                                                                                                                    deracoxib
14874                                                                                                                             milbemycin oxime
14875                                                                                                                                    lotilaner
14876                                                                                                                           maropitant citrate
14877                                                                                                                                metronidazole
14878                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14879                                                                                                                         cefpodoxime proxetil
14880                                                                                                                                    deracoxib
14881                                                                                                                 ivermectin, pyrantel pamoate
14882                                                                                                               praziquantel, pyrantel pamoate
14883                                                                                                      milbemycin oxime, oxantel, praziquantel
14884                                                                                                                                   fluralaner
14885                                                                                                                             milbemycin oxime
14886                                                                                                                                      oxantel
14887                                                                                                                                 praziquantel
14888                                                                                                                                    lufenuron
14889                                                                                                                                   fluralaner
14890                                                                                                                             milbemycin oxime
14891                                                                                                                                 praziquantel
14892                                                                                                                                      oxantel
14893                                                                                                                                    lufenuron
14894                                                                                                                 ivermectin, pyrantel pamoate
14895                                                                                                                                   afoxolaner
14896                                                                                                                                metronidazole
14897                                                                                                                 ivermectin, pyrantel pamoate
14898                                                                                                                                   afoxolaner
14899                                                                                                                                  bedinvetmab
14900                                                                                                                                   gabapentin
14901                                                                                                                                    carprofen
14902                                                                                                                                   alprazolam
14903                                                                                                                         cefpodoxime proxetil
14904                                                                                                                                metronidazole
14905                                                                                                                           maropitant citrate
14906                                                                                                                                 fenbendazole
14907                                                                                                                                    methadone
14908                                                                                                           amoxicillin, clavulanate potassium
14909                                                                                                                                metronidazole
14910                                                                                                                                    meloxicam
14911                                                                                                                   milbemycin oxime, spinosad
14912                                                                                                           amoxicillin, clavulanate potassium
14913                                                                                                                   milbemycin oxime, spinosad
14914                                                                                                                 ivermectin, pyrantel pamoate
14915                                                                                                                                   afoxolaner
14916                                                                                                                                   fluralaner
14917                                                                                                                 ivermectin, pyrantel pamoate
14918                                                                                                                                   ivermectin
14919                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14920                                                                                                               polysulfated glycosaminoglycan
14921                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14922                                                                                                                                      omega 3
14923                                                                                                                                    carprofen
14924                                                                                                                             milbemycin oxime
14925                                                                                                                                    sarolaner
14926                                                                                                                                metronidazole
14927                                                                                                                                   prednisone
14928                                                                                                                   milbemycin oxime, spinosad
14929                                                                                                                                     tramadol
14930                                                                                                                                  clindamycin
14931                                                                                                                                   prednisone
14932                                                                                                                                   loratadine
14933                                                                                                                                   prednisone
14934                                                                                                                                   afoxolaner
14935                                                                                                                                  oclacitinib
14936                                                                                                                                   loratadine
14937                                                                                                          allergy immunotherapy - unspecified
14938                                                                                                                                 four marvels
14939                                                                                                                                 ketoconazole
14940                                                                                                                                   cephalexin
14941                                                                                                                                metronidazole
14942                                                                                                    dexamethasone, enrofloxacin, ketoconazole
14943                                                                                                                                   fluralaner
14944                                                                                                          allergy immunotherapy - unspecified
14945                                                                                                                                   loratadine
14946                                                                                                                                   isoflurane
14947                                                                                                   toothpaste/dental health solution or chews
14948                                                                                                                                   fluralaner
14949                                                                                                                                   lokivetmab
14950                                                                                                                              cbd or hemp oil
14951                                                                                                          allergy immunotherapy - unspecified
14952                                                                                                                                   lokivetmab
14953                                                                                                          allergy immunotherapy - unspecified
14954                                                                                                                                   lokivetmab
14955                                                                                                          allergy immunotherapy - unspecified
14956                                                                                                          allergy immunotherapy - unspecified
14957                                                                                                                                   grapiprant
14958                                                                                                                                   lokivetmab
14959                                                                                                           amoxicillin, clavulanate potassium
14960                                                                                                                                   lokivetmab
14961                                                                                                                                  hydrocodone
14962                                                                                                                           maropitant citrate
14963                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
14964                                                                                                                                   lokivetmab
14965                                                                                                                                   grapiprant
14966                                                                                                                                   ivermectin
14967                                                                                                                                   ivermectin
14968                                                                                                                                   ivermectin
14969                                                                                                                                   ivermectin
14970                                                                                                                                   ivermectin
14971                                                                                                                   milbemycin oxime, spinosad
14972                                                                                                                   milbemycin oxime, spinosad
14973                                                                                                                                 multivitamin
14974                                                                                                                   milbemycin oxime, spinosad
14975                                                                                                                   milbemycin oxime, spinosad
14976                                                                                                                         cefpodoxime proxetil
14977                                                                                                               polysulfated glycosaminoglycan
14978                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14979                                                                                                                                    deracoxib
14980                                                                                                               polysulfated glycosaminoglycan
14981                                                                                                                   milbemycin oxime, spinosad
14982                                                                                                                                      omega 3
14983                                                                                                                                    probiotic
14984                                                                                                                                    deracoxib
14985                                                                                                                                metronidazole
14986                                                                                                                                   gabapentin
14987                                                                                                                                methocarbamol
14988                                                                                               mometasone furoate, orbifloxacin, posaconazole
14989                                                                                                                                    carprofen
14990                                                                                                                                   prednisone
14991                                                                                                                                   ivermectin
14992                                                                                                                                   ivermectin
14993                                                                                                                           maropitant citrate
14994                                                                                                                               metoclopramide
14995                                                                                                                                    cefazolin
14996                                                                                                                                   famotidine
14997                                                                                                                                     tramadol
14998                                                                                                                                   ivermectin
14999                                                                                                                                   ivermectin
15000                                                                                                                                   ivermectin
15001                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                                     fipronil, (s)-methoprene
15003                                                                                                                     fipronil, (s)-methoprene
15004                                                                                                                   imidacloprid, pyriproxyfen
15005                                                                                                                     fipronil, (s)-methoprene
15006                                                                                                                             milbemycin oxime
15007                                                                                                                             milbemycin oxime
15008                                                                                                                   imidacloprid, pyriproxyfen
15009                                                                                                                     fipronil, (s)-methoprene
15010                                                                                                                     fipronil, (s)-methoprene
15011                                                                                                               milbemycin oxime, praziquantel
15012                                                                                                                                    thyroxine
15013                                                                                                                                   prednisone
15014                                                                                                                                    thyroxine
15015                                                                                                               polysulfated glycosaminoglycan
15016                                                                                                               polysulfated glycosaminoglycan
15017                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15018                                                                                                                                    carprofen
15019                                                                                                                                     tramadol
15020                                                                                                           amoxicillin, clavulanate potassium
15021                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                                     fipronil, (s)-methoprene
15023                                                                                                                     fipronil, (s)-methoprene
15024                                                                                                                             milbemycin oxime
15025                                                                                                                   imidacloprid, pyriproxyfen
15026                                                                                                                     fipronil, (s)-methoprene
15027                                                                                                                     fipronil, (s)-methoprene
15028                                                                                                                             milbemycin oxime
15029                                                                                                               milbemycin oxime, praziquantel
15030                                                                                                                     fipronil, (s)-methoprene
15031                                                                                                                                  amoxicillin
15032                                                                                                                                 enrofloxacin
15033                                                                                                                                    thyroxine
15034                                                                                                                                    thyroxine
15035                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                                               milbemycin oxime, praziquantel
15037                                                                                                                                levothyroxine
15038                                                                                                                                   grapiprant
15039                                                                                                           amoxicillin, clavulanate potassium
15040                                                                                                                                    carprofen
15041                                                                                                               polysulfated glycosaminoglycan
15042                                                                                                                                   grapiprant
15043                                                                                                                                levothyroxine
15044                                                                                                                                   grapiprant
15045                                                                                                                 ivermectin, pyrantel pamoate
15046                                                                                                                   milbemycin oxime, spinosad
15047                                                                                                                                    carprofen
15048                                                                                                                  lufenuron, milbemycin oxime
15049                                                                                                                         cefpodoxime proxetil
15050                                                                                                 florfenicol, mometasone furoate, terbinafine
15051                                                                                                           amoxicillin, clavulanate potassium
15052                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15053                                                                                                                                metronidazole
15054                                                                                                                                  ondansetron
15055                                                                                                                       acetaminophen, codeine
15056                                                                                                                                   prednisone
15057                                                                                                                                   cephalexin
15058                                                                                                                 ivermectin, pyrantel pamoate
15059                                                                                                                 ivermectin, pyrantel pamoate
15060                                                                                                                 ivermectin, pyrantel pamoate
15061                                                                                                                 ivermectin, pyrantel pamoate
15062                                                                                                                 ivermectin, pyrantel pamoate
15063                                                                                                           fipronil, permethrin, pyriproxyfen
15064                                                                                                                                   ivermectin
15065                                                                                                                                   famotidine
15066                                                                                                                           maropitant citrate
15067                                                                                                                 ivermectin, pyrantel pamoate
15068                                                                                                                                    vitamin b
15069                                                                                                                                metronidazole
15070                                                                                                                           maropitant citrate
15071                                                                                                     febantel, praziquantel, pyrantel pamoate
15072                                                                                                                 ivermectin, pyrantel pamoate
15073                                                                                                                         cefpodoxime proxetil
15074                                                                                                                                    carprofen
15075                                                                                                                 ivermectin, pyrantel pamoate
15076                                                                                                                 ivermectin, pyrantel pamoate
15077                                                                                                                     flumethrin, imidacloprid
15078                                                                                                                                    carprofen
15079                                                                                                                                dexamethasone
15080                                                                                                            trimeprazine tartrate, prednisone
15081                                                                                               mometasone furoate, orbifloxacin, posaconazole
15082                                                                                                                 ivermectin, pyrantel pamoate
15083                                                                                                                   imidacloprid, pyriproxyfen
15084                                                                                                                                 acepromazine
15085                                                                                                                         butorphanol tartrate
15086                                                                                                                                   moxidectin
15087                                                                                                                                   moxidectin
15088                                                                                                                             pyrantel pamoate
15089                                                                                                        dinotefuran, permethrin, pyriproxyfen
15090                                                                                                                                   moxidectin
15091                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15092                                                                                                                                   zonisamide
15093                                                                                                                             pyrantel pamoate
15094                                                                                                                                  amoxicillin
15095                                                                                                                                    carprofen
15096                                                                                                                           maropitant citrate
15097                                                                                                                             pyrantel pamoate
15098                                                                                                                                    midazolam
15099                                                                                                                         butorphanol tartrate
15100                                                                                                                                     propofol
15101                                                                                                                                   moxidectin
15102                                                                                                                      acetic acid, boric acid
15103                                                                                                                                   zonisamide
15104                                                                                                        dinotefuran, permethrin, pyriproxyfen
15105                                                                                                                             pyrantel pamoate
15106                                                                                                                                   moxidectin
15107                                                                                                                                   moxidectin
15108                                                                                                                                    sarolaner
15109                                                                                                                             pyrantel pamoate
15110                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15111                                                                                                                                    carprofen
15112                                                                                                                                  doxycycline
15113                                                                                                                                   zonisamide
15114                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15115                                                                                                                                  doxycycline
15116                                                                                                                                   zonisamide
15117                                                                                                                                    carprofen
15118                                                                                                                                marbofloxacin
15119                                                                                                           amoxicillin, clavulanate potassium
15120                                                                                                                                     tramadol
15121                                                                                                               sulfamethoxazole, trimethoprim
15122                                                                                                                                metronidazole
15123                                                                                                                  sulfadimidine, trimethoprim
15124                                                                                                                                   tobramycin
15125                                                                                                                             atropine sulfate
15126                                                                                                                  sulfadimidine, trimethoprim
15127                                                                                                                                metronidazole
15128                                                                                                                                   ivermectin
15129                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                                                 ivermectin, pyrantel pamoate
15131                                                                                                                  sulfadimidine, trimethoprim
15132                                                                                                                                   afoxolaner
15133                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15134                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15135                                                                                                                                    carprofen
15136                                                                                                                                     tramadol
15137                                                                                                            betamethasone, gentamicin sulfate
15138                                                                                                                         cefpodoxime proxetil
15139                                                                                                                 ivermectin, pyrantel pamoate
15140                                                                                                                     fipronil, (s)-methoprene
15141                                                                                                                                levothyroxine
15142                                                                                                                                  amoxicillin
15143                                                                                                                                metronidazole
15144                                                                                                                 ivermectin, pyrantel pamoate
15145                                                                                                                     fipronil, (s)-methoprene
15146                                                                                                                                  oclacitinib
15147                                                                                                                         cefpodoxime proxetil
15148                                                                                                                                  oclacitinib
15149                                                                                                                                    carprofen
15150                                                                                                                             milbemycin oxime
15151                                                                                                                                   fluralaner
15152                                                                                                                                  oclacitinib
15153                                                                                                                                   cephalexin
15154                                                                                                           amoxicillin, clavulanate potassium
15155                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15156                                                                                                           amoxicillin, clavulanate potassium
15157                                                                                                                                    mupirocin
15158                                                                                                                         cefpodoxime proxetil
15159                                                                                                                                   gabapentin
15160                                                                                                                                    carprofen
15161                                                                                                           joint supplement (glucosamine hcl)
15162                                                                                                                                   gabapentin
15163                                                                                                                                    carprofen
15164                                                                                                                         cefpodoxime proxetil
15165                                                                                                                                   gabapentin
15166                                                                                                                                    carprofen
15167                                                                                                                                   ivermectin
15168                                                                                                                             pyrantel pamoate
15169                                                                                                           amoxicillin, clavulanate potassium
15170                                                                                                                  lufenuron, milbemycin oxime
15171                                                                                                           amoxicillin, clavulanate potassium
15172                                                                                                                                   gabapentin
15173                                                                                                                                  amoxicillin
15174                                                                                                                                    carprofen
15175                                                                                                                                metronidazole
15176                                                                                                                         cefpodoxime proxetil
15177                                                                                                                         cefpodoxime proxetil
15178                                                                                                                                    meloxicam
15179                                                                                                                                     tramadol
15180                                                                                                                        tiletamine, zolazepam
15181                                                                                                                                buprenorphine
15182                                                                                                                                    meloxicam
15183                                                                                                                        penicillin g procaine
15184                                                                                                                                metronidazole
15185                                                                                                                                metronidazole
15186                                                                                                                               metoclopramide
15187                                                                                                           amoxicillin, clavulanate potassium
15188                                                                                                                         cefpodoxime proxetil
15189                                                                                                                     flumethrin, imidacloprid
15190                                                                                                                                  doxycycline
15191                                                                                                                         cefpodoxime proxetil
15192                                                                                                                                   gabapentin
15193                                                                                                                                   ivermectin
15194                                                                                                                                      omega 3
15195                                                                                                                                   cephalexin
15196                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                                                 clomipramine
15198                                                                                                                                   ivermectin
15199                                                                                                                 ivermectin, pyrantel pamoate
15200                                                                                                                     fipronil, (s)-methoprene
15201                                                                                                                                    mupirocin
15202                                                                                                                 ivermectin, pyrantel pamoate
15203                                                                                                                 ivermectin, pyrantel pamoate
15204                                                                                                                                    carprofen
15205                                                                                                                 ivermectin, pyrantel pamoate
15206                                                                                                                                    carprofen
15207                                                                                                                 ivermectin, pyrantel pamoate
15208                                                                                                                 ivermectin, pyrantel pamoate
15209                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15210                                                                                                                                    carprofen
15211                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15212                                                                                                                                    carprofen
15213                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
15214                                                                                                                                    enalapril
15215                                                                                                                                   gabapentin
15216                                                                                                                                    carprofen
15217                                                                                                                                    enalapril
15218                                                                                                                                   gabapentin
15219                                                                                                                                    carprofen
15220                                                                                                                   milbemycin oxime, spinosad
15221                                                                                                                                     tramadol
15222                                                                                                                                   prednisone
15223                                                                                                                                ciprofloxacin
15224                                                                                                                  lufenuron, milbemycin oxime
15225                                                                                                                                   afoxolaner
15226                                                                                                                                    firocoxib
15227                                                                                                                  lufenuron, milbemycin oxime
15228                                                                                                                                   afoxolaner
15229                                                                                                                                   prednisone
15230                                                                                                                                   cephalexin
15231                                                                                                                                  hydroxyzine
15232                                                                                                                  lufenuron, milbemycin oxime
15233                                                                                                                                   afoxolaner
15234                                                                                                                  lufenuron, milbemycin oxime
15235                                                                                                                                   afoxolaner
15236                                                                                                                                metronidazole
15237                                                                                                           amoxicillin, clavulanate potassium
15238                                                                                                                                 fenbendazole
15239                                                                                                                  lufenuron, milbemycin oxime
15240                                                                                                                                   afoxolaner
15241                                                                                                                                metronidazole
15242                                                                                                                                 enrofloxacin
15243                                                                                                                                 fenbendazole
15244                                                                                                                     homatropine, hydrocodone
15245                                                                                                                                  clindamycin
15246                                                                                                                                   gabapentin
15247                                                                                                                                yunnan baiyao
15248                                                                                                                 ivermectin, pyrantel pamoate
15249                                                                                                                 ivermectin, pyrantel pamoate
15250                                                                                                                     imidacloprid, permethrin
15251                                                                                                                                 multivitamin
15252                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15253                                                                                                                 ivermectin, pyrantel pamoate
15254                                                                                                                                levothyroxine
15255                                                                                                                                    body sore
15256                                                                                                                                    meloxicam
15257                                                                                                                                levothyroxine
15258                                                                                                                                levothyroxine
15259                                                                                                                                  shen calmer
15260                                                                                                                                    meloxicam
15261                                                                                                                                    body sore
15262                                                                                                                                  doxycycline
15263                                                                                                                                   afoxolaner
15264                                                                                                                                levothyroxine
15265                                                                                                                 ivermectin, pyrantel pamoate
15266                                                                                                                                   afoxolaner
15267                                                                                                                                levothyroxine
15268                                                                                                                 ivermectin, pyrantel pamoate
15269                                                                                                                                   afoxolaner
15270                                                                                                                                levothyroxine
15271                                                                                                                                  clindamycin
15272                                                                                                                                   prednisone
15273                                                                                                                                  clindamycin
15274                                                                                                                unspecified herbal supplement
15275                                                                                                                         prednisolone acetate
15276                                                                                                                                   cephalexin
15277                                                                                                                                   cephalexin
15278                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15279                                                                                                                                    probiotic
15280                                                                                                                         cefpodoxime proxetil
15281                                                                                                               sulfamethoxazole, trimethoprim
15282                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15283                                                                                                               sulfamethoxazole, trimethoprim
15284                                                                                                                                  amoxicillin
15285                                                                                                                                    carprofen
15286                                                                                                                                    carprofen
15287                                                                                                                                   cephalexin
15288                                                                                                                         prebiotic, probiotic
15289                                                                                                                                metronidazole
15290                                                                                                                                   cephalexin
15291                                                                                                                                 fenbendazole
15292                                                                                                                                metronidazole
15293                                                                                                                                  amoxicillin
15294                                                                                                                             sulfadimethoxine
15295                                                                                                                   milbemycin oxime, spinosad
15296                                                                                                                                  hydroxyzine
15297                                                                                                                   milbemycin oxime, spinosad
15298                                                                                                                         cefpodoxime proxetil
15299                                                                                                                                   prednisone
15300                                                                                                                                    probiotic
15301                                                                                                                                methocarbamol
15302                                                                                                                                 enrofloxacin
15303                                                                                                                                hydromorphone
15304                                                                                                                                    midazolam
15305                                                                                                                                     propofol
15306                                                                                                                                levothyroxine
15307                                                                                                                                  hydroxyzine
15308                                                                                                                                   ivermectin
15309                                                                                                                                   afoxolaner
15310                                                                                                                 ivermectin, pyrantel pamoate
15311                                                                                                                     flumethrin, imidacloprid
15312                                                                                                                                levothyroxine
15313                                                                                                                                  hydroxyzine
15314                                                                                                                 ivermectin, pyrantel pamoate
15315                                                                                                                     flumethrin, imidacloprid
15316                                                                                                                                levothyroxine
15317                                                                                                                 ivermectin, pyrantel pamoate
15318                                                                                                                                levothyroxine
15319                                                                                                               milbemycin oxime, praziquantel
15320                                                                                                                                levothyroxine
15321                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                                     flumethrin, imidacloprid
15323                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15324                                                                                                                                levothyroxine
15325                                                                                                                                levothyroxine
15326                                                                                                           amoxicillin, clavulanate potassium
15327                                                                                                                                levothyroxine
15328                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15329                                                                                                                         prednisolone acetate
15330                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15331                                                                                                                                levothyroxine
15332                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                                    probiotic
15334                                                                                                            betamethasone, gentamicin sulfate
15335                                                                                                                                   loratadine
15336                                                                                                                                   loratadine
15337                                                                                                                   milbemycin oxime, spinosad
15338                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15339                                                                                                                   milbemycin oxime, spinosad
15340                                                                                                                   milbemycin oxime, spinosad
15341                                                                                                                                    carprofen
15342                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15343                                                                                                                   milbemycin oxime, spinosad
15344                                                                                                                                   loratadine
15345                                                                                                                   milbemycin oxime, spinosad
15346                                                                                                                                   loratadine
15347                                                                                                                                      codeine
15348                                                                                                                   milbemycin oxime, spinosad
15349                                                                                                                                   loratadine
15350                                                                                                                                    probiotic
15351                                                                                                                                      omega 3
15352                                                                                                                             cyclophosphamide
15353                                                                                                                                    piroxicam
15354                                                                                                                     urinary tract supplement
15355                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15356                                                                                                                                   loratadine
15357                                                                                                                             cyclophosphamide
15358                                                                                                                                      omega 3
15359                                                                                                                                    piroxicam
15360                                                                                                                                metronidazole
15361                                                                                                                                   ivermectin
15362                                                                                                                                   ivermectin
15363                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15364                                                                                                                                metronidazole
15365                                                                                                                                   ivermectin
15366                                                                                                                 ivermectin, pyrantel pamoate
15367                                                                                                                  lufenuron, milbemycin oxime
15368                                                                                                                  lufenuron, milbemycin oxime
15369                                                                                                    lufenuron, milbemycin oxime, praziquantel
15370                                                                                                                                   afoxolaner
15371                                                                                                                  lufenuron, milbemycin oxime
15372                                                                                                       cyphenothrin, fipronil, (s)-methoprene
15373                                                                                                    lufenuron, milbemycin oxime, praziquantel
15374                                                                                                                     fipronil, (s)-methoprene
15375                                                                                                    lufenuron, milbemycin oxime, praziquantel
15376                                                                                                                     fipronil, (s)-methoprene
15377                                                                                                    lufenuron, milbemycin oxime, praziquantel
15378                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15379                                                                                                                                    carprofen
15380                                                                                                                                   famotidine
15381                                                                                                                                   sucralfate
15382                                                                                                                           maropitant citrate
15383                                                                                                                                  doxycycline
15384                                                                                                                                    carprofen
15385                                                                                                                                metronidazole
15386                                                                                                                                   gabapentin
15387                                                                                                                                    carprofen
15388                                                                                                                                    carprofen
15389                                                                                                                                metronidazole
15390                                                                                                                           maropitant citrate
15391                                                                                                                                  doxorubicin
15392                                                                                                                                    lomustine
15393                                                                                                                                   prednisone
15394                                                                                                                 ivermectin, pyrantel pamoate
15395                                                                                                           fipronil, permethrin, pyriproxyfen
15396                                                                                                                                    carprofen
15397                                                                                                                 ivermectin, pyrantel pamoate
15398                                                                                                                           maropitant citrate
15399                                                                                                                 ivermectin, pyrantel pamoate
15400                                                                                                                      triamcinolone acetonide
15401                                                                                                                              diphenhydramine
15402                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15403                                                                                                                           maropitant citrate
15404                                                                                                                   lactated ringer's solution
15405                                                                                                                                   famotidine
15406                                                                                                                                  amoxicillin
15407                                                                                                                 ivermectin, pyrantel pamoate
15408                                                                                                                                metronidazole
15409                                                                                                                                metronidazole
15410                                                                                                                                   cephalexin
15411                                                                                                            trimeprazine tartrate, prednisone
15412                                                                                                                 ivermectin, pyrantel pamoate
15413                                                                                                                                metronidazole
15414                                                                                                                           maropitant citrate
15415                                                                                                                                   cephalexin
15416                                                                                                            trimeprazine tartrate, prednisone
15417                                                                                                                 ivermectin, pyrantel pamoate
15418                                                                                                                 ivermectin, pyrantel pamoate
15419                                                                                                                                   omeprazole
15420                                                                                                                 ivermectin, pyrantel pamoate
15421                                                                                                                                metronidazole
15422                                                                                                                                   omeprazole
15423                                                                                                                               metoclopramide
15424                                                                                                                 ivermectin, pyrantel pamoate
15425                                                                                                                                metronidazole
15426                                                                                                                           maropitant citrate
15427                                                                                                                                   lokivetmab
15428                                                                                                                                 azithromycin
15429                                                                                                                                   lokivetmab
15430                                                                                                                                   omeprazole
15431                                                                                                                                   cetirizine
15432                                                                                                                           maropitant citrate
15433                                                                                                                 ivermectin, pyrantel pamoate
15434                                                                                                                     fipronil, (s)-methoprene
15435                                                                                                                                    piroxicam
15436                                                                                                                                   prednisone
15437                                                                                                                                 azithromycin
15438                                                                                                                                   omeprazole
15439                                                                                                                                    piroxicam
15440                                                                                                       joint supplement (glucosamine hcl/msm)
15441                                                                                                                                  guaifenesin
15442                                                                                                                                    magnesium
15443                                                                                                                                     ursodiol
15444                                                                                                                                    vitamin d
15445                                                                                                                            hypochlorous acid
15446                                                                                                                                   prednisone
15447                                                                                                                 ivermectin, pyrantel pamoate
15448                                                                                                                 ivermectin, pyrantel pamoate
15449                                                                                                                 ivermectin, pyrantel pamoate
15450                                                                                                                 ivermectin, pyrantel pamoate
15451                                                                                                                 ivermectin, pyrantel pamoate
15452                                                                                                                                   cephalexin
15453                                                                                                          ear cleaner (zymox), hydrocortisone
15454                                                                                                                               (s)-methoprene
15455                                                                                                                                   ivermectin
15456                                                                                                                                   afoxolaner
15457                                                                                                                                    carprofen
15458                                                                                                                                    carprofen
15459                                                                                                                         cefpodoxime proxetil
15460                                                                                                                                    carprofen
15461                                                                                                                                    carprofen
15462                                                                                                           amoxicillin, clavulanate potassium
15463                                                                                                                                   prednisone
15464                                                                                                                                   ivermectin
15465                                                                                                                                 ketoconazole
15466                                                                                                                      ketoconazole, tris-edta
15467                                                                                                                                   cephalexin
15468                                                                                                                 ivermectin, pyrantel pamoate
15469                                                                                                                                   afoxolaner
15470                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
15471                                                                                                                                   cephalexin
15472                                                                                                                                   cephalexin
15473                                                                                                                                  oclacitinib
15474                                                                                                                                   ivermectin
15475                                                                                                                                   afoxolaner
15476                                                                                                                                  oclacitinib
15477                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
15478                                                                                                                                   cephalexin
15479                                                                                                                                   cephalexin
15480                                                                                                                                 ketoconazole
15481                                                                                                                 ivermectin, pyrantel pamoate
15482                                                                                                                                   afoxolaner
15483                                                                                                                                  oclacitinib
15484                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
15485                                                                                                                 ivermectin, pyrantel pamoate
15486                                                                                                                                   afoxolaner
15487                                                                                                                 ivermectin, pyrantel pamoate
15488                                                                                                                                   afoxolaner
15489                                                                                                            betamethasone, gentamicin sulfate
15490                                                                                                                                  oclacitinib
15491                                                                                                                                    carprofen
15492                                                                                                                                   cephalexin
15493                                                                                                                                 ketoconazole
15494                                                                                                                 ivermectin, pyrantel pamoate
15495                                                                                                                                   afoxolaner
15496                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15497                                                                                                                                    trazodone
15498                                                                                                                           calming supplement
15499                                                                                                                 ivermectin, pyrantel pamoate
15500                                                                                                                                   afoxolaner
15501                                                                                                                               benazepril hcl
15502                                                                                                                                   gabapentin
15503                                                                                                                                    carprofen
15504                                                                                                                                metronidazole
15505                                                                                                 florfenicol, mometasone furoate, terbinafine
15506                                                                                                                                   gabapentin
15507                                                                                                                                    vitamin b
15508                                                                                                                                    carprofen
15509                                                                                                                                   ivermectin
15510                                                                                                                                   ivermectin
15511                                                                                                                                   ivermectin
15512                                                                                                                                   fluralaner
15513                                                                                                                                      omega 3
15514                                                                                                                 ivermectin, pyrantel pamoate
15515                                                                                                                                   fluralaner
15516                                                                                                                                metronidazole
15517                                                                                                                 ivermectin, pyrantel pamoate
15518                                                                                                                                   fluralaner
15519                                                                                                                 ivermectin, pyrantel pamoate
15520                                                                                                                                   fluralaner
15521                                                                                                                                   ivermectin
15522                                                                                                                                     tramadol
15523                                                                                                                                    carprofen
15524                                                                                                                 ivermectin, pyrantel pamoate
15525                                                                                                                 ivermectin, pyrantel pamoate
15526                                                                                                                                   fluralaner
15527                                                                                                                 ivermectin, pyrantel pamoate
15528                                                                                                               milbemycin oxime, praziquantel
15529                                                                                                                                   fluralaner
15530                                                                                                        dinotefuran, permethrin, pyriproxyfen
15531                                                                                                               milbemycin oxime, praziquantel
15532                                                                                                                                   fluralaner
15533                                                                                                                     urinary tract supplement
15534                                                                                                                                    carprofen
15535                                                                                                                                    carprofen
15536                                                                                                                                   gabapentin
15537                                                                                                                                    carprofen
15538                                                                                                                                  bedinvetmab
15539                                                                                                                                    carprofen
15540                                                                                                                                   cephalexin
15541                                                                                                                                ciprofloxacin
15542                                                                                                                           maropitant citrate
15543                                                                                                                                    carvacrol
15544                                                                                                                                     tramadol
15545                                                                                                        dinotefuran, permethrin, pyriproxyfen
15546                                                                                                                                   ivermectin
15547                                                                                                                                   ivermectin
15548                                                                                                                 ivermectin, pyrantel pamoate
15549                                                                                                                                    firocoxib
15550                                                                                                                                    meloxicam
15551                                                                                                                                    meloxicam
15552                                                                                                                                   fluralaner
15553                                                                                                                 ivermectin, pyrantel pamoate
15554                                                                                                                                   fluralaner
15555                                                                                                                             milbemycin oxime
15556                                                                                                                 ivermectin, pyrantel pamoate
15557                                                                                                                                  clindamycin
15558                                                                                                                                    carprofen
15559                                                                                                                        ampicillin, sulbactam
15560                                                                                                                                     fentanyl
15561                                                                                                                                dexamethasone
15562                                                                                                                                    methadone
15563                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
15564                                                                                                           amoxicillin, clavulanate potassium
15565                                                                                                                                 enrofloxacin
15566                                                                                                                                   prednisone
15567                                                                                                                                   prednisone
15568                                                                                                                                     tramadol
15569                                                                                                                                    carprofen
15570                                                                                                                                ciprofloxacin
15571                                                                                                                                  amoxicillin
15572                                                                                                                             milbemycin oxime
15573                                                                                                                                   fluralaner
15574                                                                                                                                   ivermectin
15575                                                                                                           amoxicillin, clavulanate potassium
15576                                                                                                                                    probiotic
15577                                                                                                                                 fenbendazole
15578                                                                                                                                metronidazole
15579                                                                                                                                metronidazole
15580                                                                                                                                    carprofen
15581                                                                                                                             pyrantel pamoate
15582                                                                                                                                    carprofen
15583                                                                                                                                   cephalexin
15584                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                                                 ivermectin, pyrantel pamoate
15586                                                                                                           fipronil, permethrin, pyriproxyfen
15587                                                                                                                                    carprofen
15588                                                                                                                     fipronil, (s)-methoprene
15589                                                                                                                 ivermectin, pyrantel pamoate
15590                                                                                                                 ivermectin, pyrantel pamoate
15591                                                                                                                                   afoxolaner
15592                                                                                                                     fipronil, (s)-methoprene
15593                                                                                                                 ivermectin, pyrantel pamoate
15594                                                                                                                                   afoxolaner
15595                                                                                                                                 fenbendazole
15596                                                                                                                                    carprofen
15597                                                                                                                 ivermectin, pyrantel pamoate
15598                                                                                                                                   afoxolaner
15599                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                                                 ivermectin, pyrantel pamoate
15601                                                                                                                                    sarolaner
15602                                                                                                                                  doxycycline
15603                                                                                                                                    mupirocin
15604                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15605                                                                                                                                  doxycycline
15606                                                                                                                                   cephalexin
15607                                                                                                                                   gabapentin
15608                                                                                                                                    carprofen
15609                                                                                                                                   gabapentin
15610                                                                                                                                   gabapentin
15611                                                                                                                          ear cleaner (zymox)
15612                                                                                                                 ivermectin, pyrantel pamoate
15613                                                                                                                 ivermectin, pyrantel pamoate
15614                                                                                                          ear cleaner (zymox), hydrocortisone
15615                                                                                                                          ear cleaner (zymox)
15616                                                                                                                 ivermectin, pyrantel pamoate
15617                                                                                                                 ivermectin, pyrantel pamoate
15618                                                                                                                 ivermectin, pyrantel pamoate
15619                                                                                                           fipronil, permethrin, pyriproxyfen
15620                                                                                                                  lufenuron, milbemycin oxime
15621                                                                                                                                metronidazole
15622                                                                                                                                   cephalexin
15623                                                                                                                                    carprofen
15624                                                                                                                                     tramadol
15625                                                                                                                                 fenbendazole
15626                                                                                                                                  amoxicillin
15627                                                                                                                             milbemycin oxime
15628                                                                                                                                metronidazole
15629                                                                                                                                    carprofen
15630                                                                                                                                   cephalexin
15631                                                                                                                         cefpodoxime proxetil
15632                                                                                                                                   fluralaner
15633                                                                                                                                   prednisone
15634                                                                                                                  lufenuron, milbemycin oxime
15635                                                                                                                  lufenuron, milbemycin oxime
15636                                                                                                                  lufenuron, milbemycin oxime
15637                                                                                                                                 enrofloxacin
15638                                                                                                                                   gabapentin
15639                                                                                                                                    carprofen
15640                                                                                                                         cefpodoxime proxetil
15641                                                                                                                                   gabapentin
15642                                                                                                                                    carprofen
15643                                                                                                                                   cephalexin
15644                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15645                                                                                                                                 fenbendazole
15646                                                                                                                                metronidazole
15647                                                                                                                                  amoxicillin
15648                                                                                                                                  amoxicillin
15649                                                                                                                 ivermectin, pyrantel pamoate
15650                                                                                                                     fipronil, (s)-methoprene
15651                                                                                                                                  doxycycline
15652                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15653                                                                                                                                    carprofen
15654                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15655                                                                                                                      ketoconazole, tris-edta
15656                                                                                                     febantel, praziquantel, pyrantel pamoate
15657                                                                                                     febantel, praziquantel, pyrantel pamoate
15658                                                                                                     febantel, praziquantel, pyrantel pamoate
15659                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15660                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15661                                                                                                                                   ivermectin
15662                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15663                                                                                                                     fipronil, (s)-methoprene
15664                                                                                                                                    carprofen
15665                                                                                                           chlorhexidine gluconate, tris-edta
15666                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15667                                                                                                                      ketoconazole, tris-edta
15668                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15669                                                                                                                 ivermectin, pyrantel pamoate
15670                                                                                                                                    sarolaner
15671                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15672                                                                                                                 ivermectin, pyrantel pamoate
15673                                                                                                                 ivermectin, pyrantel pamoate
15674                                                                                                                                    sarolaner
15675                                                                                                 florfenicol, mometasone furoate, terbinafine
15676                                                                                                                                    sarolaner
15677                                                                                                 florfenicol, mometasone furoate, terbinafine
15678                                                                                                                                   cephalexin
15679                                                                                                 florfenicol, mometasone furoate, terbinafine
15680                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15681                                                                                                                                   cephalexin
15682                                                                                                                                  clindamycin
15683                                                                                                                                    ofloxacin
15684                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15685                                                                                                                                    carprofen
15686                                                                                                                                    carprofen
15687                                                                                                                                   grapiprant
15688                                                                                                                   milbemycin oxime, spinosad
15689                                                                                                                   milbemycin oxime, spinosad
15690                                                                                                                   milbemycin oxime, spinosad
15691                                                                                                                   milbemycin oxime, spinosad
15692                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                                                   milbemycin oxime, spinosad
15694                                                                                                                   milbemycin oxime, spinosad
15695                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15696                                                                                                                                     ursodiol
15697                                                                                                                                   ivermectin
15698                                                                                                                 ivermectin, pyrantel pamoate
15699                                                                                                                 ivermectin, pyrantel pamoate
15700                                                                                                                                    firocoxib
15701                                                                                                                   milbemycin oxime, spinosad
15702                                                                                                                                      omega 3
15703                                                                                                                           maropitant citrate
15704                                                                                                          ear cleaner (zymox), hydrocortisone
15705                                                                                                          ear cleaner (zymox), hydrocortisone
15706                                                                                                                          ear cleaner (zymox)
15707                                                                                                                   milbemycin oxime, spinosad
15708                                                                                                                             sulfadimethoxine
15709                                                                                                                                   cephalexin
15710                                                                                                                              diphenhydramine
15711                                                                                                              over-the-counter wound dressing
15712                                                                                                                   milbemycin oxime, spinosad
15713                                                                                                                                      omega 3
15714                                                                                                                        anal gland supplement
15715                                                                                                                   milbemycin oxime, spinosad
15716                                                                                                                        anal gland supplement
15717                                                                                                                     joint supplement (other)
15718                                                                                                                                    pramoxine
15719                                                                                                                 ivermectin, pyrantel pamoate
15720                                                                                                                                   afoxolaner
15721                                                                                                                        anal gland supplement
15722                                                                                                                                      omega 3
15723                                                                                                                                    meloxicam
15724                                                                                                                                    meloxicam
15725                                                                                                                 ivermectin, pyrantel pamoate
15726                                                                                                                                   afoxolaner
15727                                                                                                                                      omega 3
15728                                                                                                                 ivermectin, pyrantel pamoate
15729                                                                                                                                   afoxolaner
15730                                                                                                                        anal gland supplement
15731                                                                                                                                      omega 3
15732                                                                                                                     joint supplement (other)
15733                                                                                                                 ivermectin, pyrantel pamoate
15734                                                                                                                                   gabapentin
15735                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15736                                                                                                                                      omega 3
15737                                                                                               mometasone furoate, orbifloxacin, posaconazole
15738                                                                                                                                   gabapentin
15739                                                                                                                                yunnan baiyao
15740                                                                                                                                  gui pi tang
15741                                                                                                                                    methadone
15742                                                                                                                                   gabapentin
15743                                                                                                                                    carprofen
15744                                                                                                                           xue fu zhu yu tang
15745                                                                                                                             gexia-zhuyu tang
15746                                                                                                                    immune support supplement
15747                                                                                                                    immune support supplement
15748                                                                                                                             fu zheng support
15749                                                                                                                                yunnan baiyao
15750                                                                                 butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15751                                                                                                                                   fatal plus
15752                                                                                                                             sulfadimethoxine
15753                                                                                                                             pyrantel pamoate
15754                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15755                                                                                                                 ivermectin, pyrantel pamoate
15756                                                                                                                     fipronil, (s)-methoprene
15757                                                                                                                 ivermectin, pyrantel pamoate
15758                                                                                                                     fipronil, (s)-methoprene
15759                                                                                                                 ivermectin, pyrantel pamoate
15760                                                                                                                                   afoxolaner
15761                                                                                                                                   afoxolaner
15762                                                                                                                                   afoxolaner
15763                                                                                                                                   afoxolaner
15764                                                                                                                                  clindamycin
15765                                                                                                                                ciprofloxacin
15766                                                                                                               sulfamethoxazole, trimethoprim
15767                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                                           gentamicin sulfate
15769                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                                         dorzolamide, timolol
15771                                                                                                                                  oclacitinib
15772                                                                                                                                    carprofen
15773                                                                                                                                   ivermectin
15774                                                                                                                             pyrantel pamoate
15775                                                                                                                                 praziquantel
15776                                                                                                                                   cephalexin
15777                                                                                                                                    meloxicam
15778                                                                                                                      triamcinolone acetonide
15779                                                                                                                                   cephalexin
15780                                                                                                                                    meloxicam
15781                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                                      triamcinolone acetonide
15783                                                                                                                     joint supplement (other)
15784                                                                                                                             milbemycin oxime
15785                                                                                                                                      calcium
15786                                                                                                                     joint supplement (other)
15787                                                                                                                                   grapiprant
15788                                                                                                                                    meloxicam
15789                                                                                                           amoxicillin, clavulanate potassium
15790                                                                                                                     kidney health supplement
15791                                                                                                                                    meloxicam
15792                                                                                                                                  doxycycline
15793                                                                                                                                  hydrocodone
15794                                                                                                                                    meloxicam
15795                                                                                                                                  amoxicillin
15796                                                                                                           amoxicillin, clavulanate potassium
15797                                                                                                                                 enrofloxacin
15798                                                                                                                                   cephalexin
15799                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15800                                                                                                                                    meloxicam
15801                                                                                                           amoxicillin, clavulanate potassium
15802                                                                                                                                  bedinvetmab
15803                                                                                                                 ivermectin, pyrantel pamoate
15804                                                                                                                       cyphenothrin, fipronil
15805                                                                                                                               metoclopramide
15806                                                                                                                                   famotidine
15807                                                                                                                       cyphenothrin, fipronil
15808                                                                                                    lufenuron, milbemycin oxime, praziquantel
15809                                                                                                                                   cephalexin
15810                                                                                                                                dexamethasone
15811                                                                                                                       cyphenothrin, fipronil
15812                                                                                                                                   cephalexin
15813                                                                                                                                  oclacitinib
15814                                                                                    activated charcoal, bismuth subsalicylate, kaolin, pectin
15815                                                                                                                             milbemycin oxime
15816                                                                                                                                   fluralaner
15817                                                                                                                              diphenhydramine
15818                                                                                                                             milbemycin oxime
15819                                                                                                                 ivermectin, pyrantel pamoate
15820                                                                                                                       cyphenothrin, fipronil
15821                                                                                                                 ivermectin, pyrantel pamoate
15822                                                                                                                       cyphenothrin, fipronil
15823                                                                                                                                   cephalexin
15824                                                                                                                                    carprofen
15825                                                                                                                         cefpodoxime proxetil
15826                                                                                                                                   prednisone
15827                                                                                                            trimeprazine tartrate, prednisone
15828                                                                                                                                    meloxicam
15829                                                                                                                 ivermectin, pyrantel pamoate
15830                                                                                                            trimeprazine tartrate, prednisone
15831                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15832                                                                                                                           activated charcoal
15833                                                                                                                   lactated ringer's solution
15834                                                                                                                 ivermectin, pyrantel pamoate
15835                                                                                                                 ivermectin, pyrantel pamoate
15836                                                                                                                 ivermectin, pyrantel pamoate
15837                                                                                                                 ivermectin, pyrantel pamoate
15838                                                                                                                 ivermectin, pyrantel pamoate
15839                                                                                                                             pyrantel pamoate
15840                                                                                                           joint supplement (glucosamine hcl)
15841                                                                                                                 ivermectin, pyrantel pamoate
15842                                                                                                                  lufenuron, milbemycin oxime
15843                                                                                                                              diphenhydramine
15844                                                                                                                  lufenuron, milbemycin oxime
15845                                                                                                                                   cephalexin
15846                                                                                                                                  hydroxyzine
15847                                                                                                                                metronidazole
15848                                                                                                                                    probiotic
15849                                                                                                                  lufenuron, milbemycin oxime
15850                                                                                                               milbemycin oxime, praziquantel
15851                                                                                                                                   fluralaner
15852                                                                                                                                    carprofen
15853                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15854                                                                                                               polysulfated glycosaminoglycan
15855                                                                                                               polysulfated glycosaminoglycan
15856                                                                                                                     imidacloprid, permethrin
15857                                                                                                                                   fluralaner
15858                                                                                                                                    deracoxib
15859                                                                                                                  lufenuron, milbemycin oxime
15860                                                                                                                         cefpodoxime proxetil
15861                                                                                                            betamethasone, gentamicin sulfate
15862                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                                             atropine sulfate
15864                                                                                                                                 flurbiprofen
15865                                                                                                                                   fluralaner
15866                                                                                                                             milbemycin oxime
15867                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                                            vision supplement
15869                                                                                                                  lufenuron, milbemycin oxime
15870                                                                                                                                   fluralaner
15871                                                                                                 florfenicol, mometasone furoate, terbinafine
15872                                                                                                                                   fluralaner
15873                                                                                                                         cefpodoxime proxetil
15874                                                                                                                              chloramphenicol
15875                                                                                                                                    mupirocin
15876                                                                                                                              chloramphenicol
15877                                                                                                               milbemycin oxime, praziquantel
15878                                                                                                                                marbofloxacin
15879                                                                                                                              chloramphenicol
15880                                                                                                                                    mupirocin
15881                                                                                                                                   fluralaner
15882                                                                                                               milbemycin oxime, praziquantel
15883                                                                                                            betamethasone, gentamicin sulfate
15884                                                                                                                                    deracoxib
15885                                                                                                                                      taurine
15886                                                                                                                            vision supplement
15887                                                                                                                                   alprazolam
15888                                                                                                                                   fluralaner
15889                                                                                                            enrofloxacin, silver sulfadiazine
15890                                                                                                                dextromethorphan, guaifenesin
15891                                                                                                                  lufenuron, milbemycin oxime
15892                                                                                                                  lufenuron, milbemycin oxime
15893                                                                                                                                    carprofen
15894                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15895                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15896                                                                                                          ear cleaner (zymox), hydrocortisone
15897                                                                                                                                   selamectin
15898                                                                                                                                metronidazole
15899                                                                                                                                    probiotic
15900                                                                                                                         digestive supplement
15901                                                                                                           amoxicillin, clavulanate potassium
15902                                                                                                           amoxicillin, clavulanate potassium
15903                                                                                                                                 multivitamin
15904                                                                                                                                 fenbendazole
15905                                                                                                                                    probiotic
15906                                                                                                                                    carprofen
15907                                                                                                                             phytosphingosine
15908                                                                                                                                      omega 3
15909                                                                                                                                 fenbendazole
15910                                                                                                                             pyrantel pamoate
15911                                                                                                                                 fenbendazole
15912                                                                                                                                   budesonide
15913                                                                                                                                   famotidine
15914                                                                                                                                  simethicone
15915                                                                                                                                    vitamin b
15916                                                                                                                         digestive supplement
15917                                                                                                                                   ivermectin
15918                                                                                                                         digestive supplement
15919                                                                                                                                   famotidine
15920                                                                                                                             tylosin tartrate
15921                                                                                                                                    probiotic
15922                                                                                                                                   ivermectin
15923                                                                                                                             tylosin tartrate
15924                                                                                                                                    vitamin b
15925                                                                                                                                   budesonide
15926                                                                                                                                 cyclosporine
15927                                                                                                                                    vitamin a
15928                                                                                                                                    probiotic
15929                                                                                                                                 multivitamin
15930                                                                                                                 ivermectin, pyrantel pamoate
15931                                                                                                                             tylosin tartrate
15932                                                                                                                                    vitamin b
15933                                                                                                                                    vitamin a
15934                                                                                                                                   budesonide
15935                                                                                                                                    probiotic
15936                                                                                                                                 cyclosporine
15937                                                                                                                                   ivermectin
15938                                                                                                                                   famotidine
15939                                                                                                                                   budesonide
15940                                                                                                                                    vitamin b
15941                                                                                                                                   omeprazole
15942                                                                                                                                  simethicone
15943                                                                                                                                   budesonide
15944                                                                                                                                   ivermectin
15945                                                                                                                                    probiotic
15946                                                                                                                         digestive supplement
15947                                                                                                                                    vitamin a
15948                                                                                                                                    probiotic
15949                                                                                                                                 multivitamin
15950                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15951                                                                                                                                   lokivetmab
15952                                                                                                                                   lokivetmab
15953                                                                                                                                   gabapentin
15954                                                                                                                                  oclacitinib
15955                                                                                                                             tylosin tartrate
15956                                                                                                                                   budesonide
15957                                                                                                                                  oclacitinib
15958                                                                                                                                   gabapentin
15959                                                                                                                             tylosin tartrate
15960                                                                                                                                    vitamin b
15961                                                                                                                                   budesonide
15962                                                                                                                             tylosin tartrate
15963                                                                                                                                   gabapentin
15964                                                                                                                           maropitant citrate
15965                                                                                                               polysulfated glycosaminoglycan
15966                                                                                                                                   budesonide
15967                                                                                                                 ivermectin, pyrantel pamoate
15968                                                                                                                                  minocycline
15969                                                                                                                             sulfadimethoxine
15970                                                                                                                                 fenbendazole
15971                                                                                                                                metronidazole
15972                                                                                                            betamethasone, gentamicin sulfate
15973                                                                                                                   milbemycin oxime, spinosad
15974                                                                                                                                    carprofen
15975                                                                                                                         cefpodoxime proxetil
15976                                                                                                                 ivermectin, pyrantel pamoate
15977                                                                                                                           maropitant citrate
15978                                                                                                                                    carprofen
15979                                                                                                                                     tramadol
15980                                                                                                                                   cephalexin
15981                                                                                                                  lufenuron, milbemycin oxime
15982                                                                                                                                  hydroxyzine
15983                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15984                                                                                                                                  oclacitinib
15985                                                                                                                                  oclacitinib
15986                                                                                                        dinotefuran, permethrin, pyriproxyfen
15987                                                                                                                                   prednisone
15988                                                                                                                                   prednisone
15989                                                                                                                                   prednisone
15990                                                                                                                                   prednisone
15991                                                                                                                                     tramadol
15992                                                                                                                  lufenuron, milbemycin oxime
15993                                                                                                        dinotefuran, permethrin, pyriproxyfen
15994                                                                                                                                    carprofen
15995                                                                                                                  lufenuron, milbemycin oxime
15996                                                                                                        dinotefuran, permethrin, pyriproxyfen
15997                                                                                                                                   fluralaner
15998                                                                                                                 hydrocortisone, ketoconazole
15999                                                                                                               milbemycin oxime, praziquantel
16000                                                                                                                                   fluralaner
16001                                                                                                                             milbemycin oxime
16002                                                                                                                                   fluralaner
16003                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16004                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16005                                                                                                                             milbemycin oxime
16006                                                                                                                                   fluralaner
16007                                                                                                                             milbemycin oxime
16008                                                                                                                                   fluralaner
16009                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16010                                                                                                                                   fluoxetine
16011                                                                                                                                   diclofenac
16012                                                                                                                                   diclofenac
16013                                                                                                                                 cyclosporine
16014                                                                                                                                  amoxicillin
16015                                                                                                           amoxicillin, clavulanate potassium
16016                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
16017                                                                                                                                   cephalexin
16018                                                                                                                                   cephalexin
16019                                                                                                                 ivermectin, pyrantel pamoate
16020                                                                                                                     fipronil, (s)-methoprene
16021                                                                                                                 ivermectin, pyrantel pamoate
16022                                                                                                                                   cephalexin
16023                                                                                                                 ivermectin, pyrantel pamoate
16024                                                                                                                 ivermectin, pyrantel pamoate
16025                                                                                                                         cefpodoxime proxetil
16026                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16027                                                                                                                                   lokivetmab
16028                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16029                                                                                                                         cefpodoxime proxetil
16030                                                                                                                                   lokivetmab
16031                                                                                                                                   lokivetmab
16032                                                                                                                                  doxycycline
16033                                                                                                                     fipronil, (s)-methoprene
16034                                                                                                                                   cephalexin
16035                                                                                                                     fipronil, (s)-methoprene
16036                                                                                                    lufenuron, milbemycin oxime, praziquantel
16037                                                                                                                                  amoxicillin
16038                                                                                                                 ivermectin, pyrantel pamoate
16039                                                                                                                     fipronil, (s)-methoprene
16040                                                                                                                                   cephalexin
16041                                                                                                                                   prednisone
16042                                                                                                                                  amoxicillin
16043                                                                                                                                   tobramycin
16044                                                                                                           amoxicillin, clavulanate potassium
16045                                                                                                                                metronidazole
16046                                                                                                           amoxicillin, clavulanate potassium
16047                                                                                                           amoxicillin, clavulanate potassium
16048                                                                                                                                     ursodiol
16049                                                                                                                 ivermectin, pyrantel pamoate
16050                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16051                                                                                                           amoxicillin, clavulanate potassium
16052                                                                                                    lufenuron, milbemycin oxime, praziquantel
16053                                                                                                                   imidacloprid, pyriproxyfen
16054                                                                                                                                   prednisone
16055                                                                                                                                   cephalexin
16056                                                                                                                                metronidazole
16057                                                                                                                     fipronil, (s)-methoprene
16058                                                                                                           amoxicillin, clavulanate potassium
16059                                                                                                                                   gabapentin
16060                                                                                                                 ivermectin, pyrantel pamoate
16061                                                                                                                                   afoxolaner
16062                                                                                                                 ivermectin, pyrantel pamoate
16063                                                                                                                                   afoxolaner
16064                                                                                                                                metronidazole
16065                                                                                                                                dexamethasone
16066                                                                                                                         cefpodoxime proxetil
16067                                                                                                                 ivermectin, pyrantel pamoate
16068                                                                                                                                   afoxolaner
16069                                                                                                                                   prednisone
16070                                                                                                                                   gabapentin
16071                                                                                                                                   gabapentin
16072                                                                                                                                    carprofen
16073                                                                                                                                   gabapentin
16074                                                                                                                                    trazodone
16075                                                                                                                         cefpodoxime proxetil
16076                                                                                                                                   gabapentin
16077                                                                                                                                   prednisone
16078                                                                                                                                   gabapentin
16079                                                                                                                           maropitant citrate
16080                                                                                                                                    meclizine
16081                                                                                                                                   prednisone
16082                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16083                                                                                                                                metronidazole
16084                                                                                                           amoxicillin, clavulanate potassium
16085                                                                                                            betamethasone, gentamicin sulfate
16086                                                                                                                           gentamicin sulfate
16087                                                                                                                             sulfadimethoxine
16088                                                                                                                                 fenbendazole
16089                                                                                                                                     tramadol
16090                                                                                                                                    carprofen
16091                                                                                                                                    carprofen
16092                                                                                                                             pyrantel pamoate
16093                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16094                                                                                                                 ivermectin, pyrantel pamoate
16095                                                                                                                                   afoxolaner
16096                                                                                                                                   fluralaner
16097                                                                                                                 ivermectin, pyrantel pamoate
16098                                                                                                                                   afoxolaner
16099                                                                                                                             liver supplement
16100                                                                                                                         cefpodoxime proxetil
16101                                                                                                                                     tramadol
16102                                                                                                                      chlorhexidine gluconate
16103                                                                                                                      ketoconazole, tris-edta
16104                                                                                                          ear cleaner (zymox), hydrocortisone
16105                                                                                                                  lufenuron, milbemycin oxime
16106                                                                                                                                 ketoconazole
16107                                                                                                       gentamicin sulfate, miconazole nitrate
16108                                                                                                                  lufenuron, milbemycin oxime
16109                                                                                                                  lufenuron, milbemycin oxime
16110                                                                                                 florfenicol, mometasone furoate, terbinafine
16111                                                                                                                                dexamethasone
16112                                                                                                                                  terbinafine
16113                                                                                                                      chlorhexidine gluconate
16114                                                                                                                  chloroxylenol, ketoconazole
16115                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16116                                                                                                                                  terbinafine
16117                                                                                                                                  clindamycin
16118                                                                                                                                   prednisone
16119                                                                                                                                   gabapentin
16120                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16121                                                                                                          ear cleaner (zymox), hydrocortisone
16122                                                                                                                                    carprofen
16123                                                                                                                                   ivermectin
16124                                                                                                                                      omega 3
16125                                                                                                                                   ivermectin
16126                                                                                                           fipronil, permethrin, pyriproxyfen
16127                                                                                                                                   ivermectin
16128                                                                                                       joint supplement (glucosamine hcl/msm)
16129                                                                                                                 ivermectin, pyrantel pamoate
16130                                                                                                        dinotefuran, permethrin, pyriproxyfen
16131                                                                                                                 ivermectin, pyrantel pamoate
16132                                                                                                                 ivermectin, pyrantel pamoate
16133                                                                                                                 ivermectin, pyrantel pamoate
16134                                                                                                                                    carprofen
16135                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16136                                                                                                                 ivermectin, pyrantel pamoate
16137                                                                                                                                metronidazole
16138                                                                                                                                    carprofen
16139                                                                                                                                  oclacitinib
16140                                                                                                                                   gabapentin
16141                                                                                                                           calming supplement
16142                                                                                                                                metronidazole
16143                                                                                                                                    carprofen
16144                                                                                                 florfenicol, mometasone furoate, terbinafine
16145                                                                                                                                  oclacitinib
16146                                                                                                                                   lokivetmab
16147                                                                                                                                  oclacitinib
16148                                                                                                                                   tobramycin
16149                                                                                                                         cefpodoxime proxetil
16150                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16151                                                                                                                           miconazole nitrate
16152                                                                                                                   imidacloprid, pyriproxyfen
16153                                                                                                                 ivermectin, pyrantel pamoate
16154                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16155                                                                                                              ear cleaner (epi-otic advanced)
16156                                                                                                                                    probiotic
16157                                                                                                                 ivermectin, pyrantel pamoate
16158                                                                                                                                   fluralaner
16159                                                                                                                             milbemycin oxime
16160                                                                                                                                   fluralaner
16161                                                                                                                 ivermectin, pyrantel pamoate
16162                                                                                                                                   fluralaner
16163                                                                                                                 ivermectin, pyrantel pamoate
16164                                                                                                                                   fluralaner
16165                                                                                                               milbemycin oxime, praziquantel
16166                                                                                                                                  clindamycin
16167                                                                                                                                  amoxicillin
16168                                                                                                                                   cephalexin
16169                                                                                                                         cefpodoxime proxetil
16170                                                                                                                                    carprofen
16171                                                                                                           amoxicillin, clavulanate potassium
16172                                                                                                           amoxicillin, clavulanate potassium
16173                                                                                                                                   lokivetmab
16174                                                                                                                                   lokivetmab
16175                                                                                                                                levothyroxine
16176                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16177                                                                                                  chlorhexidine gluconate, miconazole nitrate
16178                                                                                                                                 ketoconazole
16179                                                                                                        chlorhexidine gluconate, ketoconazole
16180                                                                                                           amoxicillin, clavulanate potassium
16181                                                                                                                                 enrofloxacin
16182                                                                                                                                 enrofloxacin
16183                                                                                                                             sulfadimethoxine
16184                                                                                                                                 ketoconazole
16185                                                                                                                                   lokivetmab
16186                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16187                                                                                                                                levothyroxine
16188                                                                                                                           maropitant citrate
16189                                                                                                                                   ampicillin
16190                                                                                                                                   famotidine
16191                                                                                                                                   sucralfate
16192                                                                                                                                    trazodone
16193                                                                                                                                   gabapentin
16194                                                                                                                                    carprofen
16195                                                                                                                                   grapiprant
16196                                                                                                                                   prednisone
16197                                                                                                                         cefpodoxime proxetil
16198                                                                                                                                metronidazole
16199                                                                                                               sulfamethoxazole, trimethoprim
16200                                                                                                                                    trazodone
16201                                                                                                                                levothyroxine
16202                                                                                                                                    carprofen
16203                                                                                                                                   grapiprant
16204                                                                                                                         cefpodoxime proxetil
16205                                                                                                                                levothyroxine
16206                                                                                                                                   lokivetmab
16207                                                                                                                                  bedinvetmab
16208                                                                                                                         cefpodoxime proxetil
16209                                                                                                                                   gabapentin
16210                                                                                                                                   grapiprant
16211                                                                                                                                   ivermectin
16212                                                                                                                             pyrantel pamoate
16213                                                                                                                                 imidacloprid
16214                                                                                                                                   permethrin
16215                                                                                                                                 pyriproxyfen
16216                                                                                                                                   sucralfate
16217                                                                                                                         cefpodoxime proxetil
16218                                                                                                                                    carprofen
16219                                                                                                                                  amoxicillin
16220                                                                                                                                   prednisone
16221                                                                                                           amoxicillin, clavulanate potassium
16222                                                                                                                                metronidazole
16223                                                                                                                         cefpodoxime proxetil
16224                                                                                                                                metronidazole
16225                                                                                                                                   famotidine
16226                                                                                                                               metoclopramide
16227                                                                                                                             sulfadimethoxine
16228                                                                                                                              apomorphine hcl
16229                                                                                                                 ivermectin, pyrantel pamoate
16230                                                                                                                 ivermectin, pyrantel pamoate
16231                                                                                                                                   ivermectin
16232                                                                                                                         cefpodoxime proxetil
16233                                                                                                                                    carprofen
16234                                                                                                                 ivermectin, pyrantel pamoate
16235                                                                                                                     flumethrin, imidacloprid
16236                                                                                                                         cefpodoxime proxetil
16237                                                                                                                     flumethrin, imidacloprid
16238                                                                                                                                  oclacitinib
16239                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                                      omega 3
16241                                                                                                   toothpaste/dental health solution or chews
16242                                                                                                   toothpaste/dental health solution or chews
16243                                                                                                                                    cefazolin
16244                                                                                                                           maropitant citrate
16245                                                                                                                                    meloxicam
16246                                                                                                                         cefpodoxime proxetil
16247                                                                                                                                   gabapentin
16248                                                                                                                                    meloxicam
16249                                                                                                           amoxicillin, clavulanate potassium
16250                                                                                                           amoxicillin, clavulanate potassium
16251                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16252                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
16253                                                                                               mometasone furoate, orbifloxacin, posaconazole
16254                                                                                                                   milbemycin oxime, spinosad
16255                                                                                                                             milbemycin oxime
16256                                                                                                                                    sarolaner
16257                                                                                                                                  doxycycline
16258                                                                                                                                 itraconazole
16259                                                                                                                                methazolamide
16260                                                                                                                                     tramadol
16261                                                                                                                                  fluconazole
16262                                                                                                                                    deracoxib
16263                                                                                                                                   prednisone
16264                                                                                                                                   ivermectin
16265                                                                                                                                     spinosad
16266                                                                                                                                   ivermectin
16267                                                                                                                                   fluralaner
16268                                                                                                                                  amoxicillin
16269                                                                                                           amoxicillin, clavulanate potassium
16270                                                                                                                                     spinosad
16271                                                                                                                        clorsulon, ivermectin
16272                                                                                                                                   fluralaner
16273                                                                                                                             milbemycin oxime
16274                                                                                                                                   fluralaner
16275                                                                                                           amoxicillin, clavulanate potassium
16276                                                                                                                                  amoxicillin
16277                                                                                                                                     tramadol
16278                                                                                                                                    carprofen
16279                                                                                                                                 enrofloxacin
16280                                                                                                                        clorsulon, ivermectin
16281                                                                                                                                   fluralaner
16282                                                                                                                                   ivermectin
16283                                                                                                                                   fluralaner
16284                                                                                                                        clorsulon, ivermectin
16285                                                                                                                                   fluralaner
16286                                                                                                                   unspecified eye medication
16287                                                                                                                 ivermectin, pyrantel pamoate
16288                                                                                                                     fipronil, (s)-methoprene
16289                                                                                                                 ivermectin, pyrantel pamoate
16290                                                                                                                     fipronil, (s)-methoprene
16291                                                                                                                             milbemycin oxime
16292                                                                                                                             milbemycin oxime
16293                                                                                                                     fipronil, (s)-methoprene
16294                                                                                                                 ivermectin, pyrantel pamoate
16295                                                                                                                     fipronil, (s)-methoprene
16296                                                                                                                                   ivermectin
16297                                                                                                               milbemycin oxime, praziquantel
16298                                                                                                                                   afoxolaner
16299                                                                                                               milbemycin oxime, praziquantel
16300                                                                                                                           maropitant citrate
16301                                                                                                                                metronidazole
16302                                                                                                                                  doxorubicin
16303                                                                                                                                 chlorambucil
16304                                                                                                                                    probiotic
16305                                                                                                                                yunnan baiyao
16306                                                                                                                                yunnan baiyao
16307                                                                                                                              diphenhydramine
16308                                                                                                                                    carprofen
16309                                                                                                                                dexamethasone
16310                                                                                                                                   ivermectin
16311                                                                                                                                   afoxolaner
16312                                                                                                                 ivermectin, pyrantel pamoate
16313                                                                                                                                   afoxolaner
16314                                                                                                                                      omega 3
16315                                                                                                                 ivermectin, pyrantel pamoate
16316                                                                                                                                   afoxolaner
16317                                                                                                            dexamethasone, miconazole nitrate
16318                                                                                                                 ivermectin, pyrantel pamoate
16319                                                                                                                                   afoxolaner
16320                                                                                                                                      omega 3
16321                                                                                                                 ivermectin, pyrantel pamoate
16322                                                                                                                                   afoxolaner
16323                                                                                                                                      omega 3
16324                                                                                                                 ivermectin, pyrantel pamoate
16325                                                                                                                                   afoxolaner
16326                                                                                                                             milbemycin oxime
16327                                                                                                                                   alprazolam
16328                                                                                                           amoxicillin, clavulanate potassium
16329                                                                                                                                    carprofen
16330                                                                                                                                   cephalexin
16331                                                                                                                                 enrofloxacin
16332                                                                                                                              povidone-iodine
16333                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16334                                                                                                                                   cephalexin
16335                                                                                                                                   prednisone
16336                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16337                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16338                                                                                               beclomethasone, clotrimazole, neomycin sulfate
16339                                                                                                        dinotefuran, permethrin, pyriproxyfen
16340                                                                                                                 ivermectin, pyrantel pamoate
16341                                                                                                                                   famotidine
16342                                                                                                                     homatropine, hydrocodone
16343                                                                                                           amoxicillin, clavulanate potassium
16344                                                                                                                                   ivermectin
16345                                                                                                                                   fluralaner
16346                                                                                                                 ivermectin, pyrantel pamoate
16347                                                                                                        dinotefuran, permethrin, pyriproxyfen
16348                                                                                                                                    trazodone
16349                                                                                                                              dexmedetomidine
16350                                                                                                                                 clomipramine
16351                                                                                                                                   alprazolam
16352                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16353                                                                                                                                   cephalexin
16354                                                                                                                         cefpodoxime proxetil
16355                                                                                                                                    mupirocin
16356                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16357                                                                                                                      chlorhexidine gluconate
16358                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16359                                                                                                                                    cefazolin
16360                                                                                                                                   alprazolam
16361                                                                                                                                      omega 3
16362                                                                                                                                 multivitamin
16363                                                                                                                                   gabapentin
16364                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16365                                                                                                                                   lokivetmab
16366                                                                                                                                   lokivetmab
16367                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16368                                                                                                                                buprenorphine
16369                                                                                                                                     propofol
16370                                                                                                                                    carprofen
16371                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16372                                                                                                                                 multivitamin
16373                                                                                                                                   alprazolam
16374                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16375                                                                                                                                   gabapentin
16376                                                                                                                                      omega 3
16377                                                                                                                                   alprazolam
16378                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16379                                                                                                                                 multivitamin
16380                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
16381                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16382                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16383                                                                                                                                   ivermectin
16384                                                                                                                                   prednisone
16385                                                                                                                                  doxycycline
16386                                                                                                                                  oclacitinib
16387                                                                                                                                    ophytrium
16388                                                                                                                             phytosphingosine
16389                                                                                                                 ivermectin, pyrantel pamoate
16390                                                                                                                                     spinosad
16391                                                                                                                               chlorphenamine
16392                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16393                                                                                                                               chlorphenamine
16394                                                                                                            allergy immunotherapy - injection
16395                                                                                                                                  oclacitinib
16396                                                                                                                                      omega 3
16397                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16398                                                                                                                                    vitamin c
16399                                                                                                                                 multivitamin
16400                                                                                                                 ivermectin, pyrantel pamoate
16401                                                                                                                                     spinosad
16402                                                                                                           amoxicillin, clavulanate potassium
16403                                                                                                                 ivermectin, pyrantel pamoate
16404                                                                                                                                     spinosad
16405                                                                                                                                  oclacitinib
16406                                                                                                                               chlorphenamine
16407                                                                                                                allergy immunotherapy - drops
16408                                                                                                                 ivermectin, pyrantel pamoate
16409                                                                                                                                   fluralaner
16410                                                                                                                                  oclacitinib
16411                                                                                                                allergy immunotherapy - drops
16412                                                                                                                         cefpodoxime proxetil
16413                                                                                                                             milbemycin oxime
16414                                                                                                                                   fluralaner
16415                                                                                                                               chlorphenamine
16416                                                                                                                                  oclacitinib
16417                                                                                                                                    vitamin b
16418                                                                                                                     fipronil, (s)-methoprene
16419                                                                                                                       unspecified antibiotic
16420                                                                                                                        unspecified analgesic
16421                                                                                        cedarwood oil, eucalyptus, geranium oil, rosemary oil
16422                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16423                                                                                                                                    carprofen
16424                                                                                                                         cefpodoxime proxetil
16425                                                                                                                     fipronil, (s)-methoprene
16426                                                                                                                     fipronil, (s)-methoprene
16427                                                                                                                     fipronil, (s)-methoprene
16428                                                                                                                                    carprofen
16429                                                                                                                                    carprofen
16430                                                                                                                                   cephalexin
16431                                                                                                                                    carprofen
16432                                                                                                                  lufenuron, milbemycin oxime
16433                                                                                                                                   cephalexin
16434                                                                                                                                 multivitamin
16435                                                                                                                                      omega 3
16436                                                                                                                                     spinosad
16437                                                                                                                             sulfadimethoxine
16438                                                                                                                                metronidazole
16439                                                                                                                                  amoxicillin
16440                                                                                                                  lufenuron, milbemycin oxime
16441                                                                                                                  lufenuron, milbemycin oxime
16442                                                                                                                                 multivitamin
16443                                                                                                                                      omega 3
16444                                                                                                                                metronidazole
16445                                                                                                                                 enrofloxacin
16446                                                                                                                                  amoxicillin
16447                                                                                                                  lufenuron, milbemycin oxime
16448                                                                                                                                 multivitamin
16449                                                                                                                           maropitant citrate
16450                                                                                                               milbemycin oxime, praziquantel
16451                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16452                                                                                                                           maropitant citrate
16453                                                                                                                                   famotidine
16454                                                                                                                                   famotidine
16455                                                                                                                                   sucralfate
16456                                                                                                                                   sucralfate
16457                                                                                                                                   famotidine
16458                                                                                                                           maropitant citrate
16459                                                                                                                                   famotidine
16460                                                                                                                       cyphenothrin, fipronil
16461                                                                                                                                   fluralaner
16462                                                                                                                                    lactulose
16463                                                                                                                                levetiracetam
16464                                                                                                                                levetiracetam
16465                                                                                                                                levetiracetam
16466                                                                                                                                   cephalexin
16467                                                                                                                                   gabapentin
16468                                                                                                                                    carprofen
16469                                                                                                                                   cephalexin
16470                                                                                                                 ivermectin, pyrantel pamoate
16471                                                                                                                     fipronil, (s)-methoprene
16472                                                                                                                  lufenuron, milbemycin oxime
16473                                                                                                        dinotefuran, permethrin, pyriproxyfen
16474                                                                                                                     fipronil, (s)-methoprene
16475                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16476                                                                                                                                dexamethasone
16477                                                                                                                  lufenuron, milbemycin oxime
16478                                                                                                                     fipronil, (s)-methoprene
16479                                                                                                                     fipronil, (s)-methoprene
16480                                                                                                                 ivermectin, pyrantel pamoate
16481                                                                                                               milbemycin oxime, praziquantel
16482                                                                                                                   milbemycin oxime, spinosad
16483                                                                                                                                   fluralaner
16484                                                                                                                             milbemycin oxime
16485                                                                                                                     fipronil, (s)-methoprene
16486                                                                                                                                    carprofen
16487                                                                                                                                   afoxolaner
16488                                                                                                                                    carprofen
16489                                                                                                                                    mupirocin
16490                                                                                                                                  fluconazole
16491                                                                                                                                  fluconazole
16492                                                                                                           amoxicillin, clavulanate potassium
16493                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16494                                                                                                                                     tramadol
16495                                                                                                                                    trazodone
16496                                                                                                               milbemycin oxime, praziquantel
16497                                                                                                                     fipronil, (s)-methoprene
16498                                                                                                                             milbemycin oxime
16499                                                                                                                     fipronil, (s)-methoprene
16500                                                                                                                                    carprofen
16501                                                                                                                                   gabapentin
16502                                                                                                                                   ivermectin
16503                                                                                                                  lufenuron, milbemycin oxime
16504                                                                                                                                   fluralaner
16505                                                                                                                                metronidazole
16506                                                                                                                             sulfadimethoxine
16507                                                                                                                             sulfadimethoxine
16508                                                                                                                                     tramadol
16509                                                                                                           amoxicillin, clavulanate potassium
16510                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16511                                                                                                                  sulfadimidine, trimethoprim
16512                                                                                                                                     morphine
16513                                                                                                                                    cefazolin
16514                                                                                                                                    cefazolin
16515                                                                                                                                 enrofloxacin
16516                                                                                                                                 enrofloxacin
16517                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16518                                                                                                                                 enrofloxacin
16519                                                                                                                                 enrofloxacin
16520                                                                                                           amoxicillin, clavulanate potassium
16521                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16522                                                                                                                 ivermectin, pyrantel pamoate
16523                                                                                                                                   ivermectin
16524                                                                                                                       cyphenothrin, fipronil
16525                                                                                                                             milbemycin oxime
16526                                                                                                        dinotefuran, permethrin, pyriproxyfen
16527                                                                                                           amoxicillin, clavulanate potassium
16528                                                                                                                                metronidazole
16529                                                                                                                                metronidazole
16530                                                                                                                                   cephalexin
16531                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
16532                                                                                                                             tylosin tartrate
16533                                                                                                                                    firocoxib
16534                                                                                                                                 enrofloxacin
16535                                                                                                                                    cefazolin
16536                                                                                                                                     morphine
16537                                                                                                                                    probiotic
16538                                                                                                                             milbemycin oxime
16539                                                                                                                                 enrofloxacin
16540                                                                                                                     urinary tract supplement
16541                                                                                                           amoxicillin, clavulanate potassium
16542                                                                                                           amoxicillin, clavulanate potassium
16543                                                                                                                       cyphenothrin, fipronil
16544                                                                                                                       cyphenothrin, fipronil
16545                                                                                                           amoxicillin, clavulanate potassium
16546                                                                                                               milbemycin oxime, praziquantel
16547                                                                                                                                metronidazole
16548                                                                                                                     urinary tract supplement
16549                                                                                                                                 enrofloxacin
16550                                                                                                           amoxicillin, clavulanate potassium
16551                                                                                                                       cyphenothrin, fipronil
16552                                                                                                           amoxicillin, clavulanate potassium
16553                                                                                                               milbemycin oxime, praziquantel
16554                                                                                                                       cyphenothrin, fipronil
16555                                                                                                           amoxicillin, clavulanate potassium
16556                                                                                                                                 enrofloxacin
16557                                                                                                                                metronidazole
16558                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16559                                                                                                                     urinary tract supplement
16560                                                                                                                     urinary tract supplement
16561                                                                                                                                    firocoxib
16562                                                                                                                                 enrofloxacin
16563                                                                                                                                metronidazole
16564                                                                                                                     urinary tract supplement
16565                                                                                                                                     tramadol
16566                                                                                                                           maropitant citrate
16567                                                                                                                                    carprofen
16568                                                                                                           amoxicillin, clavulanate potassium
16569                                                                                                                     urinary tract supplement
16570                                                                                                                                     tramadol
16571                                                                                                                                    cefazolin
16572                                                                                                                                     morphine
16573                                                                                                         hydroxyethyl starch, sodium chloride
16574                                                                                                                           maropitant citrate
16575                                                                                                                                    meloxicam
16576                                                                                                                                     tramadol
16577                                                                                                                                    meloxicam
16578                                                                                                     febantel, praziquantel, pyrantel pamoate
16579                                                                                                                 ivermectin, pyrantel pamoate
16580                                                                                                                      ketoconazole, tris-edta
16581                                                                                                                           maropitant citrate
16582                                                                                                                                   famotidine
16583                                                                                                                                 acepromazine
16584                                                                                                                                hydromorphone
16585                                                                                                                                     ketamine
16586                                                                                                                                    midazolam
16587                                                                                                                                 penicillin g
16588                                                                                                                                     morphine
16589                                                                                                                                    carprofen
16590                                                                                                                                     tramadol
16591                                                                                                                               metoclopramide
16592                                                                                                                                metronidazole
16593                                                                                                                                   gabapentin
16594                                                                                                                                   famotidine
16595                                                                                                                                   ivermectin
16596                                                                                                                 ivermectin, pyrantel pamoate
16597                                                                                                                                   ivermectin
16598                                                                                                           fipronil, permethrin, pyriproxyfen
16599                                                                                                                                   ivermectin
16600                                                                                                               praziquantel, pyrantel pamoate
16601                                                                                                                     fipronil, (s)-methoprene
16602                                                                                                                                levothyroxine
16603                                                                                                                         cefpodoxime proxetil
16604                                                                                                                                levothyroxine
16605                                                                                                     febantel, praziquantel, pyrantel pamoate
16606                                                                                                                             milbemycin oxime
16607                                                                                                                                levothyroxine
16608                                                                                                                             milbemycin oxime
16609                                                                                                                                levothyroxine
16610                                                                                                                                levothyroxine
16611                                                                                                                                metronidazole
16612                                                                                                                             liver supplement
16613                                                                                                                 ivermectin, pyrantel pamoate
16614                                                                                                                       cyphenothrin, fipronil
16615                                                                                                                 ivermectin, pyrantel pamoate
16616                                                                                                                                   omeprazole
16617                                                                                                                                   sucralfate
16618                                                                                                                           maropitant citrate
16619                                                                                                                                 enrofloxacin
16620                                                                                                                                metronidazole
16621                                                                                                                                   sucralfate
16622                                                                                                                                    probiotic
16623                                                                                                                   milbemycin oxime, spinosad
16624                                                                                                                   milbemycin oxime, spinosad
16625                                                                                                                                    probiotic
16626                                                                                                                                metronidazole
16627                                                                                                                   milbemycin oxime, spinosad
16628                                                                                                                                    sarolaner
16629                                                                                                                                    carprofen
16630                                                                                                                             milbemycin oxime
16631                                                                                                                                    lotilaner
16632                                                                                                                                  clindamycin
16633                                                                                                                                    meloxicam
16634                                                                                                                                metronidazole
16635                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                                                 ivermectin, pyrantel pamoate
16637                                                                                                                     fipronil, (s)-methoprene
16638                                                                                                                 ivermectin, pyrantel pamoate
16639                                                                                                               milbemycin oxime, praziquantel
16640                                                                                                                                   afoxolaner
16641                                                                                                                             milbemycin oxime
16642                                                                                                                                   afoxolaner
16643                                                                                                                                   cephalexin
16644                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16645                                                                                                                      triamcinolone acetonide
16646                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16647                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16648                                                                                                                 ivermectin, pyrantel pamoate
16649                                                                                                                 ivermectin, pyrantel pamoate
16650                                                                                                                                   afoxolaner
16651                                                                                                                                  oclacitinib
16652                                                                                                                         cefpodoxime proxetil
16653                                                                                               mometasone furoate, orbifloxacin, posaconazole
16654                                                                                                                                  oclacitinib
16655                                                                                                                         cefpodoxime proxetil
16656                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16657                                                                                               mometasone furoate, orbifloxacin, posaconazole
16658                                                                                                                                    meloxicam
16659                                                                                                                                     tramadol
16660                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16661                                                                                                                   milbemycin oxime, spinosad
16662                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16663                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16664                                                                                                                                  hydroxyzine
16665                                                                                                                                metronidazole
16666                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16667                                                                                                                                 acepromazine
16668                                                                                                                                     spinosad
16669                                                                                                                                   ivermectin
16670                                                                                                                             milbemycin oxime
16671                                                                                                                                    probiotic
16672                                                                                                                                 imidacloprid
16673                                                                                                     febantel, praziquantel, pyrantel pamoate
16674                                                                                                                                  hydroxyzine
16675                                                                                                                                   famotidine
16676                                                                                                                           maropitant citrate
16677                                                                                                                                  hydroxyzine
16678                                                                                                                   milbemycin oxime, spinosad
16679                                                                                                                                    meloxicam
16680                                                                                                                                  hydroxyzine
16681                                                                                                                                 acepromazine
16682                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
16683                                                                                                                                metronidazole
16684                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16686                                                                                                                                  hydroxyzine
16687                                                                                                                 ivermectin, pyrantel pamoate
16688                                                                                                                                   afoxolaner
16689                                                                                                                                    meloxicam
16690                                                                                                                                     tramadol
16691                                                                                                                         cefpodoxime proxetil
16692                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
16693                                                                                                                                metronidazole
16694                                                                                                                 ivermectin, pyrantel pamoate
16695                                                                                                                                   afoxolaner
16696                                                                                                     febantel, praziquantel, pyrantel pamoate
16697                                                                                                                             sulfadimethoxine
16698                                                                                                                                    meloxicam
16699                                                                                         dimethyl sulfoxide, flunixin, fluocinolone acetonide
16700                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16701                                                                                                              ear cleaner (epi-otic advanced)
16702                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16703                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                                                 ivermectin, pyrantel pamoate
16705                                                                                                                                   afoxolaner
16706                                                                                                                                   omeprazole
16707                                                                                                                                   sucralfate
16708                                                                                                                                metronidazole
16709                                                                                                                           maropitant citrate
16710                                                                                                                           maropitant citrate
16711                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16713                                                                                                                                  oclacitinib
16714                                                                                                                                    mupirocin
16715                                                                                                                                    meloxicam
16716                                                                                                                                    cefovecin
16717                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16719                                                                                                                                   stem cells
16720                                                                                                                                   afoxolaner
16721                                                                                                                 ivermectin, pyrantel pamoate
16722                                                                                                                                    meloxicam
16723                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16725                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16726                                                                                                            betamethasone, gentamicin sulfate
16727                                                                                                                                metronidazole
16728                                                                                                                           maropitant citrate
16729                                                                                                                                   lokivetmab
16730                                                                                                                                    meloxicam
16731                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16732                                                                                                          ear cleaner (zymox), hydrocortisone
16733                                                                                                                 ivermectin, pyrantel pamoate
16734                                                                                                                 ivermectin, pyrantel pamoate
16735                                                                                                                 ivermectin, pyrantel pamoate
16736                                                                                                                                metronidazole
16737                                                                                                                                   lokivetmab
16738                                                                                                                                   lokivetmab
16739                                                                                                                                    carprofen
16740                                                                                                                                 enrofloxacin
16741                                                                                                                                  bedinvetmab
16742                                                                                                                 ivermectin, pyrantel pamoate
16743                                                                                                                     imidacloprid, permethrin
16744                                                                                                                  lufenuron, milbemycin oxime
16745                                                                                                                  lufenuron, milbemycin oxime
16746                                                                                                                                   fluralaner
16747                                                                                                                  lufenuron, milbemycin oxime
16748                                                                                                                                   fluralaner
16749                                                                                                                  lufenuron, milbemycin oxime
16750                                                                                                                                   fluralaner
16751                                                                                                                  lufenuron, milbemycin oxime
16752                                                                                                                                   fluralaner
16753                                                                                                                  lufenuron, milbemycin oxime
16754                                                                                                                                   fluralaner
16755                                                                                                                                    ponazuril
16756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16757                                                                                                                                   alprazolam
16758                                                                                        acetic acid, boric acid, hydrocortisone, ketoconazole
16759                                                                                                                                    trazodone
16760                                                                                                                                  doxycycline
16761                                                                                                                                  amoxicillin
16762                                                                                                                                 capromorelin
16763                                                                                                                                    vitamin b
16764                                                                                                                                    vitamin b
16765                                                                                                                                   gabapentin
16766                                                                                                                                    enalapril
16767                                                                                                                                  telmisartan
16768                                                                                                                                  doxycycline
16769                                                                                                                                    enalapril
16770                                                                                                                                  telmisartan
16771                                                                                                                                 capromorelin
16772                                                                                                                                   gabapentin
16773                                                                                                                                    vitamin b
16774                                                                                                                                    vitamin b
16775                                                                                                                 ivermectin, pyrantel pamoate
16776                                                                                                                     fipronil, (s)-methoprene
16777                                                                                                                 ivermectin, pyrantel pamoate
16778                                                                                                                       cyphenothrin, fipronil
16779                                                                                                                                   cetirizine
16780                                                                                                                 ivermectin, pyrantel pamoate
16781                                                                                                                                     fipronil
16782                                                                                                                      ketoconazole, tris-edta
16783                                                                                                                                   cetirizine
16784                                                                                                                         digestive supplement
16785                                                                                                                      ketoconazole, tris-edta
16786                                                                                                                                   moxidectin
16787                                                                                                                                   moxidectin
16788                                                                                                                                   selamectin
16789                                                                                                                                   moxidectin
16790                                                                                                                                   moxidectin
16791                                                                                                        dinotefuran, permethrin, pyriproxyfen
16792                                                                                                                                   moxidectin
16793                                                                                                                                   afoxolaner
16794                                                                                                                         cefpodoxime proxetil
16795                                                                                                                                  doxycycline
16796                                                                                                                                 enrofloxacin
16797                                                                                                                                    carprofen
16798                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16799                                                                                                                                    carprofen
16800                                                                                                                                    carprofen
16801                                                                                                                                   cephalexin
16802                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16803                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16804                                                                                                                                    carprofen
16805                                                                                                                 ivermectin, pyrantel pamoate
16806                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16807                                                                                                                     imidacloprid, permethrin
16808                                                                                                                 ivermectin, pyrantel pamoate
16809                                                                                                                   imidacloprid, pyriproxyfen
16810                                                                                                                 ivermectin, pyrantel pamoate
16811                                                                                                                     flumethrin, imidacloprid
16812                                                                                                                             milbemycin oxime
16813                                                                                                                                levothyroxine
16814                                                                                                                            vision supplement
16815                                                                                                                                  ashwagandha
16816                                                                                                                     betamethasone, ofloxacin
16817                                                                                                                                metronidazole
16818                                                                                                                  lufenuron, milbemycin oxime
16819                                                                                                                                 imidacloprid
16820                                                                                                                                levothyroxine
16821                                                                                                                            vision supplement
16822                                                                                                                                    carprofen
16823                                                                                                                     betamethasone, ofloxacin
16824                                                                                                                         cefpodoxime proxetil
16825                                                                                                                             milbemycin oxime
16826                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16827                                                                                                                                levothyroxine
16828                                                                                                                                    carprofen
16829                                                                                                                                    enalapril
16830                                                                                                                                levothyroxine
16831                                                                                                                                    carprofen
16832                                                                                                                                    enalapril
16833                                                                                                                                levothyroxine
16834                                                                                                                     fipronil, (s)-methoprene
16835                                                                                                                                    enalapril
16836                                                                                                                                levothyroxine
16837                                                                                                               polysulfated glycosaminoglycan
16838                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16839                                                                                                                                    carprofen
16840                                                                                                                     fipronil, (s)-methoprene
16841                                                                                                                                  bedinvetmab
16842                                                                                                               polysulfated glycosaminoglycan
16843                                                                                                                                    enalapril
16844                                                                                                                                levothyroxine
16845                                                                                                                                      omega 3
16846                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16847                                                                                                                     urinary tract supplement
16848                                                                                                                                    carprofen
16849                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16850                                                                                               mometasone furoate, orbifloxacin, posaconazole
16851                                                                                                                 ivermectin, pyrantel pamoate
16852                                                                                                                                   afoxolaner
16853                                                                                                                                metronidazole
16854                                                                                                                 ivermectin, pyrantel pamoate
16855                                                                                                                                   afoxolaner
16856                                                                                                                 ivermectin, pyrantel pamoate
16857                                                                                                           amoxicillin, clavulanate potassium
16858                                                                                                                                      sotalol
16859                                                                                                                 ivermectin, pyrantel pamoate
16860                                                                                                                                      sotalol
16861                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16862                                                                                                                       unspecified medication
16863                                                                                                                             milbemycin oxime
16864                                                                                                                             milbemycin oxime
16865                                                                                                           amoxicillin, clavulanate potassium
16866                                                                                                                             milbemycin oxime
16867                                                                                                                                metronidazole
16868                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16869                                                                                                                             milbemycin oxime
16870                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16871                                                                                                                     fipronil, (s)-methoprene
16872                                                                                                                     flumethrin, imidacloprid
16873                                                                                                                                metronidazole
16874                                                                                                                                   famotidine
16875                                                                                                 florfenicol, mometasone furoate, terbinafine
16876                                                                                                                             milbemycin oxime
16877                                                                                                                   milbemycin oxime, spinosad
16878                                                                                                                  lufenuron, milbemycin oxime
16879                                                                                                                     flumethrin, imidacloprid
16880                                                                                                                  lufenuron, milbemycin oxime
16881                                                                                                                  lufenuron, milbemycin oxime
16882                                                                                                                     flumethrin, imidacloprid
16883                                                                                                                         prebiotic, probiotic
16884                                                                                                                                  coconut oil
16885                                                                                                       joint supplement (glucosamine hcl/msm)
16886                                                                                                                   milbemycin oxime, spinosad
16887                                                                                                                                     spinosad
16888                                                                                                                                   moxidectin
16889                                                                                                                                   moxidectin
16890                                                                                                                                   moxidectin
16891                                                                                                                                    sarolaner
16892                                                                                                                                   moxidectin
16893                                                                                                                                   cephalexin
16894                                                                                                            betamethasone, gentamicin sulfate
16895                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16896                                                                                                                                dexamethasone
16897                                                                                                                      triamcinolone acetonide
16898                                                                                                                                   cephalexin
16899                                                                                                                                   gabapentin
16900                                                                                                                                    meloxicam
16901                                                                                                                                   grapiprant
16902                                                                                                                 ivermectin, pyrantel pamoate
16903                                                                                                                 ivermectin, pyrantel pamoate
16904                                                                                                                                   afoxolaner
16905                                                                                                                 ivermectin, pyrantel pamoate
16906                                                                                                                 ivermectin, pyrantel pamoate
16907                                                                                                                 ivermectin, pyrantel pamoate
16908                                                                                                                                   afoxolaner
16909                                                                                                                 ivermectin, pyrantel pamoate
16910                                                                                                                                   afoxolaner
16911                                                                                                                                   cephalexin
16912                                                                                                                                    carprofen
16913                                                                                                                                    meloxicam
16914                                                                                                                                   ivermectin
16915                                                                                                                                  doxycycline
16916                                                                                                                             sulfadimethoxine
16917                                                                                                                                metronidazole
16918                                                                                                                                      omega 3
16919                                                                                                                             milbemycin oxime
16920                                                                                                                                    sarolaner
16921                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16922                                                                                                                                   cephalexin
16923                                                                                                                                  oclacitinib
16924                                                                                                                                  amoxicillin
16925                                                                                                                             milbemycin oxime
16926                                                                                                                                metronidazole
16927                                                                                                                   milbemycin oxime, spinosad
16928                                                                                                                             tylosin tartrate
16929                                                                                                                   milbemycin oxime, spinosad
16930                                                                                                                                   cephalexin
16931                                                                                                                   milbemycin oxime, spinosad
16932                                                                                                                           miconazole nitrate
16933                                                                                                                   milbemycin oxime, spinosad
16934                                                                                                                   milbemycin oxime, spinosad
16935                                                                                                                   milbemycin oxime, spinosad
16936                                                                                                                 ivermectin, pyrantel pamoate
16937                                                                                                                     fipronil, (s)-methoprene
16938                                                                                                                  lufenuron, milbemycin oxime
16939                                                                                                                          ear cleaner (zymox)
16940                                                                                                                                ciprofloxacin
16941                                                                                                                                    deracoxib
16942                                                                                                                                   cephalexin
16943                                                                                                           amoxicillin, clavulanate potassium
16944                                                                                                                                metronidazole
16945                                                                                                                  lufenuron, milbemycin oxime
16946                                                                                                                                   afoxolaner
16947                                                                                                                  lufenuron, milbemycin oxime
16948                                                                                                                                   afoxolaner
16949                                                                                                                                metronidazole
16950                                                                                                                                   cephalexin
16951                                                                                                                                   clonazepam
16952                                                                                                                  lufenuron, milbemycin oxime
16953                                                                                                                                   afoxolaner
16954                                                                                                                                   afoxolaner
16955                                                                                                                  lufenuron, milbemycin oxime
16956                                                                                                                                    firocoxib
16957                                                                                                                                    firocoxib
16958                                                                                                                  lufenuron, milbemycin oxime
16959                                                                                                                                   fluralaner
16960                                                                                                                  lufenuron, milbemycin oxime
16961                                                                                                                                   tobramycin
16962                                                                                                                                    meloxicam
16963                                                                                                                                metronidazole
16964                                                                                                           amoxicillin, clavulanate potassium
16965                                                                                                                                    trazodone
16966                                                                                                                                   gabapentin
16967                                                                                                                                    firocoxib
16968                                                                                                                                   grapiprant
16969                                                                                                                                   prednisone
16970                                                                                                                                   ivermectin
16971                                                                                               mometasone furoate, orbifloxacin, posaconazole
16972                                                                                                                 ivermectin, pyrantel pamoate
16973                                                                                                                                   afoxolaner
16974                                                                                                                                    carprofen
16975                                                                                                                                ciprofloxacin
16976                                                                                                                                     tramadol
16977                                                                                                                                    carprofen
16978                                                                                                                                 enrofloxacin
16979                                                                                                                                   cephalexin
16980                                                                                                                                   afoxolaner
16981                                                                                                                 ivermectin, pyrantel pamoate
16982                                                                                                                 ivermectin, pyrantel pamoate
16983                                                                                                                 ivermectin, pyrantel pamoate
16984                                                                                                                                   ivermectin
16985                                                                                                                             pyrantel pamoate
16986                                                                                                                 ivermectin, pyrantel pamoate
16987                                                                                                                                   ivermectin
16988                                                                                                                             milbemycin oxime
16989                                                                                                                                   moxidectin
16990                                                                                                                 ivermectin, pyrantel pamoate
16991                                                                                                                                metronidazole
16992                                                                                                                                metronidazole
16993                                                                                                                      ketoconazole, tris-edta
16994                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16995                                                                                                                                    carprofen
16996                                                                                                                                    carprofen
16997                                                                                                                                   ivermectin
16998                                                                                                        dinotefuran, permethrin, pyriproxyfen
16999                                                                                                                 ivermectin, pyrantel pamoate
17000                                                                                                        dinotefuran, permethrin, pyriproxyfen
17001                                                                                                                                   cephalexin
17002                                                                                                                        anal gland supplement
17003                                                                                                                                    meloxicam
17004                                                                                                                                    carprofen
17005                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17006                                                                                                                         prednisolone acetate
17007                                                                                                                                    carprofen
17008                                                                                                                                ciprofloxacin
17009                                                                                                                                   cephalexin
17010                                                                                                                 ivermectin, pyrantel pamoate
17011                                                                                                                         cefpodoxime proxetil
17012                                                                                                                               (s)-methoprene
17013                                                                                                                 ivermectin, pyrantel pamoate
17014                                                                                                                 ivermectin, pyrantel pamoate
17015                                                                                                           amoxicillin, clavulanate potassium
17016                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17017                                                                                                                                metronidazole
17018                                                                          chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                                                 ivermectin, pyrantel pamoate
17020                                                                                                                                   fluralaner
17021                                                                                                                                   cephalexin
17022                                                                                               dexamethasone, neomycin sulfate, thiabendazole
17023                                                                                                                                     prazosin
17024                                                                                                                                     prazosin
17025                                                                                                                                ciprofloxacin
17026                                                                                                                                      sotalol
17027                                                                                                                           maropitant citrate
17028                                                                                                                                    piroxicam
17029                                                                                                                                yunnan baiyao
17030                                                                                                                                   furosemide
17031                                                                                                                                   pimobendan
17032                                                                                                                                   ivermectin
17033                                                                                                                                   ivermectin
17034                                                                                                                 ivermectin, pyrantel pamoate
17035                                                                                                                 ivermectin, pyrantel pamoate
17036                                                                                                                                   afoxolaner
17037                                                                                                                 ivermectin, pyrantel pamoate
17038                                                                                                                                   ivermectin
17039                                                                                                                                   afoxolaner
17040                                                                                                                                  oclacitinib
17041                                                                                                                             milbemycin oxime
17042                                                                                                                                    lotilaner
17043                                                                                                                                  oclacitinib
17044                                                                                                                                   zonisamide
17045                                                                                                                                levetiracetam
17046                                                                                                                                     imatinib
17047                                                                                                                                  hydroxyzine
17048                                                                                                                                   prednisone
17049                                                                                                                 ivermectin, pyrantel pamoate
17050                                                                                                                                   cephalexin
17051                                                                                                                                   cephalexin
17052                                                                                                                 ivermectin, pyrantel pamoate
17053                                                                                                                 ivermectin, pyrantel pamoate
17054                                                                                                           amoxicillin, clavulanate potassium
17055                                                                                                                                   moxidectin
17056                                                                                                                                levothyroxine
17057                                                                                                                                   afoxolaner
17058                                                                                               mometasone furoate, orbifloxacin, posaconazole
17059                                                                                                                 ivermectin, pyrantel pamoate
17060                                                                                                                 ivermectin, pyrantel pamoate
17061                                                                                                                                   alprazolam
17062                                                                                               dexamethasone, neomycin sulfate, thiabendazole
17063                                                                                                                         dorzolamide, timolol
17064                                                                                                                                   alprazolam
17065                                                                                                                         prednisolone acetate
17066                                                                                                           amoxicillin, clavulanate potassium
17067                                                                                                                                 enrofloxacin
17068                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
17069                                                                                                                           maropitant citrate
17070                                                                                                                         dorzolamide, timolol
17071                                                                                                                                    carprofen
17072                                                                                                                         prednisolone acetate
17073                                                                                                                         prednisolone acetate
17074                                                                                                                 ivermectin, pyrantel pamoate
17075                                                                                                                                   afoxolaner
17076                                                                                                                           maropitant citrate
17077                                                                                                                                   ivermectin
17078                                                                                                                             pyrantel pamoate
17079                                                                                                           amoxicillin, clavulanate potassium
17080                                                                                                                 ivermectin, pyrantel pamoate
17081                                                                                                                                     spinosad
17082                                                                                                                     skin and coat supplement
17083                                                                                                                                 fenbendazole
17084                                                                                                                                metronidazole
17085                                                                                                                             sulfadimethoxine
17086                                                                                                                 ivermectin, pyrantel pamoate
17087                                                                                                                                   afoxolaner
17088                                                                                                                 ivermectin, pyrantel pamoate
17089                                                                                                                                   afoxolaner
17090                                                                                                                 ivermectin, pyrantel pamoate
17091                                                                                                                                   afoxolaner
17092                                                                                                                                 cyclosporine
17093                                                                                                                                   diclofenac
17094                                                                                                                 ivermectin, pyrantel pamoate
17095                                                                                                                                   afoxolaner
17096                                                                                                                 ivermectin, pyrantel pamoate
17097                                                                                                                                   afoxolaner
17098                                                                                                                 ivermectin, pyrantel pamoate
17099                                                                                                                                   afoxolaner
17100                                                                                                           amoxicillin, clavulanate potassium
17101                                                                                                                                   cephalexin
17102                                                                                                                                   prednisone
17103                                                                                                           amoxicillin, clavulanate potassium
17104                                                                                                                                    carprofen
17105                                                                                                                                metronidazole
17106                                                                                                                                 fenbendazole
17107                                                                                                                             pyrantel pamoate
17108                                                                                                                             pyrantel pamoate
17109                                                                                                                             pyrantel pamoate
17110                                                                                                                             pyrantel pamoate
17111                                                                                                           amoxicillin, clavulanate potassium
17112                                                                                                                                    carprofen
17113                                                                                                           amoxicillin, clavulanate potassium
17114                                                                                                              ear cleaner (epi-otic advanced)
17115                                                                                               mometasone furoate, orbifloxacin, posaconazole
17116                                                                                                                 ivermectin, pyrantel pamoate
17117                                                                                                                     fipronil, (s)-methoprene
17118                                                                                                                 ivermectin, pyrantel pamoate
17119                                                                                                                     fipronil, (s)-methoprene
17120                                                                                                                                     squalane
17121                                                                                                              ear cleaner (epi-otic advanced)
17122                                                                                                                                   cephalexin
17123                                                                                                                                   selamectin
17124                                                                                                                                   selamectin
17125                                                                                               mometasone furoate, orbifloxacin, posaconazole
17126                                                                                                        chlorhexidine gluconate, ketoconazole
17127                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17128                                                                                               mometasone furoate, orbifloxacin, posaconazole
17129                                                                                        acetic acid, boric acid, hydrocortisone, ketoconazole
17130                                                                                                                                   selamectin
17131                                                                                               mometasone furoate, orbifloxacin, posaconazole
17132                                                                                                                             pyrantel pamoate
17133                                                                                                                                    carprofen
17134                                                                                                                                    carprofen
17135                                                                                                                           miconazole nitrate
17136                                                                                                                                      omega 3
17137                                                                                                                                   ivermectin
17138                                                                                                                 ivermectin, pyrantel pamoate
17139                                                                                                                                    lactulose
17140                                                                                                                                   sucralfate
17141                                                                                                                                   famotidine
17142                                                                                                                              dexmedetomidine
17143                                                                                                                 ivermectin, pyrantel pamoate
17144                                                                                                                                   cephalexin
17145                                                                                                                                  oclacitinib
17146                                                                                                                                 enrofloxacin
17147                                                                                                                                  doxycycline
17148                                                                                                                                  oclacitinib
17149                                                                                                            trimeprazine tartrate, prednisone
17150                                                                                                                              diphenhydramine
17151                                                                                                                   milbemycin oxime, spinosad
17152                                                                                                                                   afoxolaner
17153                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17154                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17155                                                                                                                                     spinosad
17156                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                                                   afoxolaner
17158                                                                                                                                   selamectin
17159                                                                                                                                   selamectin
17160                                                                                                                             milbemycin oxime
17161                                                                                                                                    sarolaner
17162                                                                                                                                    probiotic
17163                                                                                                                                 fenbendazole
17164                                                                                                                                metronidazole
17165                                                                                                                                    carprofen
17166                                                                                                                           maropitant citrate
17167                                                                                                                                    vitamin b
17168                                                                                                                                   selamectin
17169                                                                                                                             milbemycin oxime
17170                                                                                                                                    trazodone
17171                                                                                                                                    carprofen
17172                                                                                                                                    trazodone
17173                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
17174                                                                                                                                metronidazole
17175                                                                                                                           maropitant citrate
17176                                                                                                                                    trazodone
17177                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17178                                                                                                                           maropitant citrate
17179                                                                                                                                   famotidine
17180                                                                                                                                    probiotic
17181                                                                                                                                    carprofen
17182                                                                                                               polysulfated glycosaminoglycan
17183                                                                                                                                   gabapentin
17184                                                                                                                                    trazodone
17185                                                                                                                                    carprofen
17186                                                                                                                                   grapiprant
17187                                                                                                                                  clindamycin
17188                                                                                                                                    trazodone
17189                                                                                                                                   gabapentin
17190                                                                                                               polysulfated glycosaminoglycan
17191                                                                                                                                   grapiprant
17192                                                                                                                                   prednisone
17193                                                                                                                           maropitant citrate
17194                                                                                                                                    deracoxib
17195                                                                                                                 ivermectin, pyrantel pamoate
17196                                                                                                                             milbemycin oxime
17197                                                                                                                  lufenuron, milbemycin oxime
17198                                                                                                                             sulfadimethoxine
17199                                                                                                                                 fenbendazole
17200                                                                                                                                   nitenpyram
17201                                                                                                                      triamcinolone acetonide
17202                                                                                                           fipronil, permethrin, pyriproxyfen
17203                                                                                                                         cefpodoxime proxetil
17204                                                                                                                   milbemycin oxime, spinosad
17205                                                                                                           fipronil, permethrin, pyriproxyfen
17206                                                                                                                         prednisolone acetate
17207                                                                                                                     fipronil, (s)-methoprene
17208                                                                                                                 ivermectin, pyrantel pamoate
17209                                                                                                                 ivermectin, pyrantel pamoate
17210                                                                                                                 ivermectin, pyrantel pamoate
17211                                                                                                                                    carprofen
17212                                                                                                                 ivermectin, pyrantel pamoate
17213                                                                                                                                   afoxolaner
17214                                                                                                                                   gabapentin
17215                                                                                                                                    carprofen
17216                                                                                                                                   gabapentin
17217                                                                                                                                dexamethasone
17218                                                                                                        dinotefuran, permethrin, pyriproxyfen
17219                                                                                                                                   ivermectin
17220                                                                                                                                   ivermectin
17221                                                                                                                                   afoxolaner
17222                                                                                                                 ivermectin, pyrantel pamoate
17223                                                                                                                                   afoxolaner
17224                                                                                                                 ivermectin, pyrantel pamoate
17225                                                                                                                 ivermectin, pyrantel pamoate
17226                                                                                                                                   afoxolaner
17227                                                                                                                 ivermectin, pyrantel pamoate
17228                                                                                                                                   afoxolaner
17229                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17230                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17231                                                                                                                                 imidacloprid
17232                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17233                                                                                                                   imidacloprid, pyriproxyfen
17234                                                                                                                             milbemycin oxime
17235                                                                                                                                   cephalexin
17236                                                                                                                   imidacloprid, pyriproxyfen
17237                                                                                                                             milbemycin oxime
17238                                                                                                                   imidacloprid, pyriproxyfen
17239                                                                                                                             milbemycin oxime
17240                                                                                                                 ivermectin, pyrantel pamoate
17241                                                                                                                                   afoxolaner
17242                                                                                                                                   lokivetmab
17243                                                                                                                                   lokivetmab
17244                                                                                                                                ciprofloxacin
17245                                                                                                                                   ivermectin
17246                                                                                                                             pyrantel pamoate
17247                                                                                                                 ivermectin, pyrantel pamoate
17248                                                                                                                 ivermectin, pyrantel pamoate
17249                                                                                                                                    carprofen
17250                                                                                                                                   cephalexin
17251                                                                                                                 ivermectin, pyrantel pamoate
17252                                                                                                                     fipronil, (s)-methoprene
17253                                                                                                                                   grapiprant
17254                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17256                                                                                                                                 cyclosporine
17257                                                                                                                                   diclofenac
17258                                                                                                                             liver supplement
17259                                                                                                                                 cyclosporine
17260                                                                                                                                   diclofenac
17261                                                                                                                              diphenhydramine
17262                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                                                   milbemycin oxime, spinosad
17264                                                                                                                   milbemycin oxime, spinosad
17265                                                                                                                   milbemycin oxime, spinosad
17266                                                                                                                   milbemycin oxime, spinosad
17267                                                                                                                                metronidazole
17268                                                                                                                                   ivermectin
17269                                                                                                                                     tramadol
17270                                                                                                                                metronidazole
17271                                                                                                                 ivermectin, pyrantel pamoate
17272                                                                                                                                   afoxolaner
17273                                                                                                                                    deracoxib
17274                                                                                                                                   afoxolaner
17275                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17276                                                                                                                                    carprofen
17277                                                                                                                                   gabapentin
17278                                                                                                                             milbemycin oxime
17279                                                                                                                                   afoxolaner
17280                                                                                                                                levothyroxine
17281                                                                                                                                levothyroxine
17282                                                                                                                                   afoxolaner
17283                                                                                                                 ivermectin, pyrantel pamoate
17284                                                                                                                                metronidazole
17285                                                                                                                 ivermectin, pyrantel pamoate
17286                                                                                                                                   afoxolaner
17287                                                                                                                                levothyroxine
17288                                                                                                                                   diclofenac
17289                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17290                                                                                                                                levothyroxine
17291                                                                                                                                levothyroxine
17292                                                                                                                                    carprofen
17293                                                                                                                                levothyroxine
17294                                                                                                                                   ivermectin
17295                                                                                                           fipronil, permethrin, pyriproxyfen
17296                                                                                                                                   omeprazole
17297                                                                                                               sulfamethoxazole, trimethoprim
17298                                                                                                                 ivermectin, pyrantel pamoate
17299                                                                                                                                   famotidine
17300                                                                                                                                   ivermectin
17301                                                                                                                                    cefovecin
17302                                                                                                                                dexamethasone
17303                                                                                                                                   prednisone
17304                                                                                                                                   prednisone
17305                                                                                                                                methocarbamol
17306                                                                                                                                    cefovecin
17307                                                                                                            trimeprazine tartrate, prednisone
17308                                                                                                            trimeprazine tartrate, prednisone
17309                                                                                                            trimeprazine tartrate, prednisone
17310                                                                                                            trimeprazine tartrate, prednisone
17311                                                                                                                                   ivermectin
17312                                                                                                        dinotefuran, permethrin, pyriproxyfen
17313                                                                                                                 ivermectin, pyrantel pamoate
17314                                                                                                        dinotefuran, permethrin, pyriproxyfen
17315                                                                                                                                metronidazole
17316                                                                                                                                   ivermectin
17317                                                                                                        dinotefuran, permethrin, pyriproxyfen
17318                                                                                                                                  doxycycline
17319                                                                                                                 ivermectin, pyrantel pamoate
17320                                                                                                                                    cefovecin
17321                                                                                                                                    carprofen
17322                                                                                                                                   gabapentin
17323                                                                                                                                    trazodone
17324                                                                                                                           maropitant citrate
17325                                                                                                                                buprenorphine
17326                                                                                                                                   alfaxalone
17327                                                                                                                 oxytetracycline, polymyxin b
17328                                                                                                                              sodium chloride
17329                                                                                                                               corneal repair
17330                                                                                                                                    ofloxacin
17331                                                                                                                                   gabapentin
17332                                                                                                                              dexmedetomidine
17333                                                                                                                         butorphanol tartrate
17334                                                                                                                              sodium chloride
17335                                                                                                                               corneal repair
17336                                                                                                                 oxytetracycline, polymyxin b
17337                                                                                                                              sodium chloride
17338                                                                                                                               corneal repair
17339                                                                                                                                  doxycycline
17340                                                                                                                                oxymetazoline
17341                                                                                                                                    ofloxacin
17342                                                                                                                                  amoxicillin
17343                                                                                                                              sodium chloride
17344                                                                                                                            ocular repair gel
17345                                                                                                                                    carprofen
17346                                                                                                                                  amoxicillin
17347                                                                                                                                   alprazolam
17348                                                                                                                                   selamectin
17349                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17350                                                                                                                                    sarolaner
17351                                                                                                                         cefpodoxime proxetil
17352                                                                                                            betamethasone, gentamicin sulfate
17353                                                                                                                                   lokivetmab
17354                                                                                                                                    carprofen
17355                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17356                                                                                                                                  amoxicillin
17357                                                                                                                                 capromorelin
17358                                                                                                                           maropitant citrate
17359                                                                                                                                 enrofloxacin
17360                                                                                                                                metronidazole
17361                                                                                                                                   prednisone
17362                                                                                                                                   prednisone
17363                                                                                                                 ivermectin, pyrantel pamoate
17364                                                                                                                     fipronil, (s)-methoprene
17365                                                                                                                                   prednisone
17366                                                                                                                                   cephalexin
17367                                                                                                                  lufenuron, milbemycin oxime
17368                                                                                                                                  hydroxyzine
17369                                                                                                                                   cephalexin
17370                                                                                                                                   afoxolaner
17371                                                                                                                  lufenuron, milbemycin oxime
17372                                                                                                                                   afoxolaner
17373                                                                                                                  lufenuron, milbemycin oxime
17374                                                                                                                                    ponazuril
17375                                                                                                                                  amoxicillin
17376                                                                                                                                metronidazole
17377                                                                                                                                    carprofen
17378                                                                                                                                   famotidine
17379                                                                                                                                   sucralfate
17380                                                                                                                                   cephalexin
17381                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17382                                                                                                                                   ivermectin
17383                                                                                                                             pyrantel pamoate
17384                                                                                                                                   ivermectin
17385                                                                                                                             pyrantel pamoate
17386                                                                                                                 ivermectin, pyrantel pamoate
17387                                                                                                                 ivermectin, pyrantel pamoate
17388                                                                                                                                 fenbendazole
17389                                                                                                                 ivermectin, pyrantel pamoate
17390                                                                                                                 ivermectin, pyrantel pamoate
17391                                                                                                                 ivermectin, pyrantel pamoate
17392                                                                                                                                    carprofen
17393                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17394                                                                                                                                   cephalexin
17395                                                                                                                                     tramadol
17396                                                                                                                                    carprofen
17397                                                                                                                                buprenorphine
17398                                                                                                                  lufenuron, milbemycin oxime
17399                                                                                                                  lufenuron, milbemycin oxime
17400                                                                                                                  lufenuron, milbemycin oxime
17401                                                                                                                  lufenuron, milbemycin oxime
17402                                                                                                                  lufenuron, milbemycin oxime
17403                                                                                                    lufenuron, milbemycin oxime, praziquantel
17404                                                                                                                                   afoxolaner
17405                                                                                                                                  hydroxyzine
17406                                                                                                                  lufenuron, milbemycin oxime
17407                                                                                                            betamethasone, gentamicin sulfate
17408                                                                                                                         cefpodoxime proxetil
17409                                                                                                                                  hydroxyzine
17410                                                                                                                                   lokivetmab
17411                                                                                                                                   lokivetmab
17412                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17413                                                                                                                                   lokivetmab
17414                                                                                                                                   lokivetmab
17415                                                                                                                 ivermectin, pyrantel pamoate
17416                                                                                                                 ivermectin, pyrantel pamoate
17417                                                                                                                     flumethrin, imidacloprid
17418                                                                                                                                      omega 3
17419                                                                                                                                    sarolaner
17420                                                                                                                 ivermectin, pyrantel pamoate
17421                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17422                                                                                                                                    carprofen
17423                                                                                                                         cefpodoxime proxetil
17424                                                                                                                                    mupirocin
17425                                                                                                                                metronidazole
17426                                                                                                                                   gabapentin
17427                                                                                                                       unspecified medication
17428                                                                                                                                metronidazole
17429                                                                                                                              dexmedetomidine
17430                                                                                                                         butorphanol tartrate
17431                                                                                                                                    carprofen
17432                                                                                                                                metronidazole
17433                                                                                                                                   gabapentin
17434                                                                                                                                    carprofen
17435                                                                                                                                metronidazole
17436                                                                                                                                    carprofen
17437                                                                                                                  lufenuron, milbemycin oxime
17438                                                                                                                                   ivermectin
17439                                                                                                                 ivermectin, pyrantel pamoate
17440                                                                                                                                metronidazole
17441                                                                                                                                    probiotic
17442                                                                                                                                sulfasalazine
17443                                                                                                                                metronidazole
17444                                                                                                                 ivermectin, pyrantel pamoate
17445                                                                                                                 ivermectin, pyrantel pamoate
17446                                                                                                      betamethasone, florfenicol, terbinafine
17447                                                                                                                                   fluralaner
17448                                                                                                                 ivermectin, pyrantel pamoate
17449                                                                                                                                   fluralaner
17450                                                                                amikacin sulfate, gentamicin sulfate, triamcinolone acetonide
17451                                                                                                                 ivermectin, pyrantel pamoate
17452                                                                                                                                   fluralaner
17453                                                                                                                                  amoxicillin
17454                                                                                                                                metronidazole
17455                                                                                                                                  mirtazapine
17456                                                                                                                      vitamin-iron supplement
17457                                                                                                                  lufenuron, milbemycin oxime
17458                                                                                                                     urinary tract supplement
17459                                                                                                                       cyphenothrin, fipronil
17460                                                                                                                      ketoconazole, tris-edta
17461                                                                                                                  lufenuron, milbemycin oxime
17462                                                                                                                                   fluralaner
17463                                                                                                                                    probiotic
17464                                                                                                                     urinary tract supplement
17465                                                                                                                                diphenoxylate
17466                                                                                                                                 fenbendazole
17467                                                                                                                           maropitant citrate
17468                                                                                                                  lufenuron, milbemycin oxime
17469                                                                                                                                   fluralaner
17470                                                                                                                                    probiotic
17471                                                                                                                     urinary tract supplement
17472                                                                                                                  lufenuron, milbemycin oxime
17473                                                                                                                                    sarolaner
17474                                                                                                                                    probiotic
17475                                                                                                                     urinary tract supplement
17476                                                                                                                                diphenoxylate
17477                                                                                                                           maropitant citrate
17478                                                                                                                                 fenbendazole
17479                                                                                                                                metronidazole
17480                                                                                                                                 fenbendazole
17481                                                                                                                                metronidazole
17482                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17483                                                                                                                                    carprofen
17484                                                                                                                  lufenuron, milbemycin oxime
17485                                                                                                                                    sarolaner
17486                                                                                                                 ivermectin, pyrantel pamoate
17487                                                                                                                     fipronil, (s)-methoprene
17488                                                                                                    lufenuron, milbemycin oxime, praziquantel
17489                                                                                                                     fipronil, (s)-methoprene
17490                                                                                                                     fipronil, (s)-methoprene
17491                                                                                                               milbemycin oxime, praziquantel
17492                                                                                                    lufenuron, milbemycin oxime, praziquantel
17493                                                                                                               milbemycin oxime, praziquantel
17494                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17495                                                                                                               milbemycin oxime, praziquantel
17496                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17497                                                                                                               milbemycin oxime, praziquantel
17498                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17499                                                                                                                                metronidazole
17500                                                                                                                           maropitant citrate
17501                                                                                                                                  oclacitinib
17502                                                                                                                                   lokivetmab
17503                                                                                                                                    deracoxib
17504                                                                                                                                metronidazole
17505                                                                                                           amoxicillin, clavulanate potassium
17506                                                                                                                                   lokivetmab
17507                                                                                                                                    deracoxib
17508                                                                                                           amoxicillin, clavulanate potassium
17509                                                                                                           amoxicillin, clavulanate potassium
17510                                                                                                                                    carprofen
17511                                                                                                                                     tramadol
17512                                                                                                                                   tobramycin
17513                                                                                                                  lufenuron, milbemycin oxime
17514                                                                                                                                metronidazole
17515                                                                                                                                  amoxicillin
17516                                                                                                                                    carprofen
17517                                                                                                                                     tramadol
17518                                                                                                                  lufenuron, milbemycin oxime
17519                                                                                                                  lufenuron, milbemycin oxime
17520                                                                                                                                    carprofen
17521                                                                                                                                   gabapentin
17522                                                                                                                                   gabapentin
17523                                                                                                                         cefpodoxime proxetil
17524                                                                                                           amoxicillin, clavulanate potassium
17525                                                                                                                                metronidazole
17526                                                                                                                                   gabapentin
17527                                                                                                                                    carprofen
17528                                                                                                                                   grapiprant
17529                                                                                                                                   prednisone
17530                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17531                                                                                                                                   cephalexin
17532                                                                                                                                      codeine
17533                                                                                                                                   gabapentin
17534                                                                                                               polysulfated glycosaminoglycan
17535                                                                                                                                   grapiprant
17536                                                                                                           amoxicillin, clavulanate potassium
17537                                                                                                                         cefpodoxime proxetil
17538                                                                                                                                metronidazole
17539                                                                                                                           maropitant citrate
17540                                                                                                                                     tramadol
17541                                                                                                               polysulfated glycosaminoglycan
17542                                                                                                                                    carprofen
17543                                                                                                                                  doxycycline
17544                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17545                                                                                                               polysulfated glycosaminoglycan
17546                                                                                                                         cefpodoxime proxetil
17547                                                                                                                         digestive supplement
17548                                                                                                               polysulfated glycosaminoglycan
17549                                                                                                                            hypochlorous acid
17550                                                                                                                                    carprofen
17551                                                                                                                         cefpodoxime proxetil
17552                                                                                                            trimeprazine tartrate, prednisone
17553                                                                                                                                   cephalexin
17554                                                                                                                                 fenbendazole
17555                                                                                                                                   fluralaner
17556                                                                                                                                   fluralaner
17557                                                                                                                                   fluralaner
17558                                                                                                                             pyrantel pamoate
17559                                                                                                                                metronidazole
17560                                                                                                                                yunnan baiyao
17561                                                                                                                                    carprofen
17562                                                                                                                                    meloxicam
17563                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17564                                                                                                                                  doxycycline
17565                                                                                                                                metronidazole
17566                                                                                                                         cefpodoxime proxetil
17567                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17568                                                                                                 florfenicol, mometasone furoate, terbinafine
17569                                                                                               mometasone furoate, orbifloxacin, posaconazole
17570                                                                                                                                metronidazole
17571                                                                                                                                    probiotic
17572                                                                                                                                metronidazole
17573                                                                                                                                    carprofen
17574                                                                                                                   milbemycin oxime, spinosad
17575                                                                                                                   milbemycin oxime, spinosad
17576                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17577                                                                                                                           maropitant citrate
17578                                                                                                                                metronidazole
17579                                                                                                                           maropitant citrate
17580                                                                                                                           maropitant citrate
17581                                                                                                                                metronidazole
17582                                                                                                            betamethasone, gentamicin sulfate
17583                                                                                                            betamethasone, gentamicin sulfate
17584                                                                                                                                metronidazole
17585                                                                                                                                   alprazolam
17586                                                                                                                                    carprofen
17587                                                                                                                                    carprofen
17588                                                                                                            betamethasone, gentamicin sulfate
17589                                                                                                               polysulfated glycosaminoglycan
17590                                                                                                               polysulfated glycosaminoglycan
17591                                                                                                                                 imidacloprid
17592                                                                                                               polysulfated glycosaminoglycan
17593                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17594                                                                                                                                    carprofen
17595                                                                                                                                    carprofen
17596                                                                                                               polysulfated glycosaminoglycan
17597                                                                                                                                    carprofen
17598                                                                                                                         cefpodoxime proxetil
17599                                                                                                               polysulfated glycosaminoglycan
17600                                                                                                                                    carprofen
17601                                                                                                                                    ketorolac
17602                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                                                  lufenuron, milbemycin oxime
17604                                                                                                                                 deltamethrin
17605                                                                                                    lufenuron, milbemycin oxime, praziquantel
17606                                                                                                                                 deltamethrin
17607                                                                                                                                   moxidectin
17608                                                                                                                         cefpodoxime proxetil
17609                                                                                                                                   prednisone
17610                                                                                                                             pyrantel pamoate
17611                                                                                                                                   fluralaner
17612                                                                                                                                   moxidectin
17613                                                                                                                                  oclacitinib
17614                                                                                                                         cefpodoxime proxetil
17615                                                                                                                                     fipronil
17616                                                                                                                                   fluralaner
17617                                                                                                                                   moxidectin
17618                                                                                                                                   grapiprant
17619                                                                                                                                  oclacitinib
17620                                                                                                                                metronidazole
17621                                                                                                                                    probiotic
17622                                                                                                                                    mupirocin
17623                                                                                                     febantel, praziquantel, pyrantel pamoate
17624                                                                                                                                   gabapentin
17625                                                                                                                                    probiotic
17626                                                                                                                                   moxidectin
17627                                                                                                                                   fluralaner
17628                                                                                                                                   fluralaner
17629                                                                                                                                   moxidectin
17630                                                                                                                                   loratadine
17631                                                                                                                                    probiotic
17632                                                                                                                                   gabapentin
17633                                                                                                                                   moxidectin
17634                                                                                                                                   fluralaner
17635                                                                                                                                   moxidectin
17636                                                                                                                         cefpodoxime proxetil
17637                                                                                                                                   gabapentin
17638                                                                                                                                    cefazolin
17639                                                                                                                         cefpodoxime proxetil
17640                                                                                                                                metronidazole
17641                                                                                                    neomycin sulfate, polymyxin b, gramicidin
17642                                                                                                                           gentamicin sulfate
17643                                                                                                                                 chlorambucil
17644                                                                                                                                 chlorambucil
17645                                                                                                                                   gabapentin
17646                                                                                                                                 cyclosporine
17647                                                                                                                                    carprofen
17648                                                                                                                                   prednisone
17649                                                                                                                                betamethasone
17650                                                                                                                                  doxycycline
17651                                                                                                                                 chlorambucil
17652                                                                                                                                  telmisartan
17653                                                                                                                                      codeine
17654                                                                                                                                   prednisone
17655                                                                                                                         digestive supplement
17656                                                                                                                         digestive supplement
17657                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17658                                                                                                                                 multivitamin
17659                                                                                                                             milbemycin oxime
17660                                                                                                                                   cephalexin
17661                                                                                                                                    carprofen
17662                                                                                                                                    cefovecin
17663                                                                                                                                metronidazole
17664                                                                                                                                   gabapentin
17665                                                                                                                                    carprofen
17666                                                                                                                                   gabapentin
17667                                                                                                                                    carprofen
17668                                                                                                                                     spinosad
17669                                                                                                                             milbemycin oxime
17670                                                                                                                   milbemycin oxime, spinosad
17671                                                                                                                   milbemycin oxime, spinosad
17672                                                                                                                   milbemycin oxime, spinosad
17673                                                                                                                   milbemycin oxime, spinosad
17674                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17675                                                                                                                                      omega 3
17676                                                                                                   toothpaste/dental health solution or chews
17677                                                                                                                           maropitant citrate
17678                                                                                                                                   gabapentin
17679                                                                                                                                   sucralfate
17680                                                                                                                                   prednisone
17681                                                                                                                             pyrantel pamoate
17682                                                                                                                                    carprofen
17683                                                                                                                                  amoxicillin
17684                                                                                                                             pyrantel pamoate
17685                                                                                                                                 fenbendazole
17686                                                                                                                                  doxycycline
17687                                                                                                                                metronidazole
17688                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17689                                                                                                                                    probiotic
17690                                                                                                                                 fenbendazole
17691                                                                                                                                  doxycycline
17692                                                                                                           amoxicillin, clavulanate potassium
17693                                                                                                            trimeprazine tartrate, prednisone
17694                                                                                                                         cefpodoxime proxetil
17695                                                                                                                                  clindamycin
17696                                                                                                                         cefpodoxime proxetil
17697                                                                                                                   milbemycin oxime, spinosad
17698                                                                                                                                  amoxicillin
17699                                                                                                                         cefpodoxime proxetil
17700                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17701                                                                                                                                  doxycycline
17702                                                                                                   dextromethorphan hydrobromide, guaifenesin
17703                                                                                                                  lufenuron, milbemycin oxime
17704                                                                                                                                    cefovecin
17705                                                                                                                                     tramadol
17706                                                                                                                                  doxycycline
17707                                                                                                                                  hydroxyzine
17708                                                                                                                                metronidazole
17709                                                                                                                                    carprofen
17710                                                                                                                     fipronil, (s)-methoprene
17711                                                                                                           amoxicillin, clavulanate potassium
17712                                                                                                                                  doxycycline
17713                                                                                                                                    cefovecin
17714                                                                                                                  lufenuron, milbemycin oxime
17715                                                                                                                                  clindamycin
17716                                                                                                                   milbemycin oxime, spinosad
17717                                                                                                                                 fenbendazole
17718                                                                                                                                    carprofen
17719                                                                                                                  lufenuron, milbemycin oxime
17720                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
17721                                                                                                                                metronidazole
17722                                                                                                                  lufenuron, milbemycin oxime
17723                                                                                                                                   afoxolaner
17724                                                                                                                                    carprofen
17725                                                                                                                  lufenuron, milbemycin oxime
17726                                                                                                                                   afoxolaner
17727                                                                                                                                    carprofen
17728                                                                                                                         cefpodoxime proxetil
17729                                                                                                                                    carprofen
17730                                                                                                               polysulfated glycosaminoglycan
17731                                                                                                                                   grapiprant
17732                                                                                                               polysulfated glycosaminoglycan
17733                                                                                                                                   grapiprant
17734                                                                                                                                    vitamin c
17735                                                                                                                                  coconut oil
17736                                                                                                                             sulfadimethoxine
17737                                                                                                           amoxicillin, clavulanate potassium
17738                                                                                                                                  doxycycline
17739                                                                                                                                    vitamin c
17740                                                                                                                                  coconut oil
17741                                                                                                           fipronil, permethrin, pyriproxyfen
17742                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17743                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17744                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17745                                                                                                                                    deracoxib
17746                                                                                                           joint supplement (glucosamine hcl)
17747                                                                                                                                   cephalexin
17748                                                                                                                                   cephalexin
17749                                                                                                                                    deracoxib
17750                                                                                                                   imidacloprid, pyriproxyfen
17751                                                                                                                 ivermectin, pyrantel pamoate
17752                                                                                                                               metoclopramide
17753                                                                                                                               metoclopramide
17754                                                                                                                 ivermectin, pyrantel pamoate
17755                                                                                                                     fipronil, (s)-methoprene
17756                                                                                                                                   afoxolaner
17757                                                                                                                                   ivermectin
17758                                                                                                                 ivermectin, pyrantel pamoate
17759                                                                                                                                   afoxolaner
17760                                                                                                                 ivermectin, pyrantel pamoate
17761                                                                                                                                   afoxolaner
17762                                                                                                                         cefpodoxime proxetil
17763                                                                                                                 ivermectin, pyrantel pamoate
17764                                                                                                                                   afoxolaner
17765                                                                                                                         cefpodoxime proxetil
17766                                                                                                                                    thyroxine
17767                                                                                                                                  amoxicillin
17768                                                                                                                                 enrofloxacin
17769                                                                                                                               benazepril hcl
17770                                                                                                                                   amlodipine
17771                                                                                                                                    thyroxine
17772                                                                                                                                   famotidine
17773                                                                                                                                 enrofloxacin
17774                                                                                                                           maropitant citrate
17775                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17776                                                                                                                                diphenoxylate
17777                                                                                                                                metronidazole
17778                                                                                                                                    carprofen
17779                                                                                                       cyphenothrin, fipronil, (s)-methoprene
17780                                                                                                            trimeprazine tartrate, prednisone
17781                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                                       cyphenothrin, fipronil, (s)-methoprene
17783                                                                                                                                  doxycycline
17784                                                                                                                                  hydrocodone
17785                                                                                                                                  oclacitinib
17786                                                                                                                                   cephalexin
17787                                                                                                                                  oclacitinib
17788                                                                                                                                   fluralaner
17789                                                                                                                                  oclacitinib
17790                                                                                                                                  oclacitinib
17791                                                                                                                                   fluralaner
17792                                                                                                                         cefpodoxime proxetil
17793                                                                                                                                  oclacitinib
17794                                                                                               mometasone furoate, orbifloxacin, posaconazole
17795                                                                                                                                   fluralaner
17796                                                                                                                         cefpodoxime proxetil
17797                                                                                                                                  oclacitinib
17798                                                                                               mometasone furoate, orbifloxacin, posaconazole
17799                                                                                                                         cefpodoxime proxetil
17800                                                                                                                         cefpodoxime proxetil
17801                                                                                                                                   cephalexin
17802                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                                            betamethasone, gentamicin sulfate
17804                                                                                                            trimeprazine tartrate, prednisone
17805                                                                                                            betamethasone, gentamicin sulfate
17806                                                                                                                                   lokivetmab
17807                                                                                                                                  clindamycin
17808                                                                                                            betamethasone, gentamicin sulfate
17809                                                                                                                                  oclacitinib
17810                                                                                                                                    carprofen
17811                                                                                                            betamethasone, gentamicin sulfate
17812                                                                                                                                  clindamycin
17813                                                                                                                                   prednisone
17814                                                                                                                 ivermectin, pyrantel pamoate
17815                                                                                                                     fipronil, (s)-methoprene
17816                                                                                                                                  doxycycline
17817                                                                                                                 ivermectin, pyrantel pamoate
17818                                                                                                                                   afoxolaner
17819                                                                                                         activated charcoal, kaolin, sorbitol
17820                                                                                                                                       barium
17821                                                                                                                           maropitant citrate
17822                                                                                                                                   sucralfate
17823                                                                                                                                    probiotic
17824                                                                                                                                metronidazole
17825                                                                                                                 ivermectin, pyrantel pamoate
17826                                                                                                                                   afoxolaner
17827                                                                                                                 ivermectin, pyrantel pamoate
17828                                                                                                                                   afoxolaner
17829                                                                                                                                   lokivetmab
17830                                                                                                                                   cephalexin
17831                                                                                                                                   gabapentin
17832                                                                                                                                    meloxicam
17833                                                                                                                                   diclofenac
17834                                                                                                                         prednisolone acetate
17835                                                                                                                                    carprofen
17836                                                                                                                                 fenbendazole
17837                                                                                                                                   gabapentin
17838                                                                                                                                      omega 3
17839                                                                                                                     urinary tract supplement
17840                                                                                                                                   diclofenac
17841                                                                                                                         prednisolone acetate
17842                                                                                                                                    carprofen
17843                                                                                                                                  doxycycline
17844                                                                                                           amoxicillin, clavulanate potassium
17845                                                                                                                                   afoxolaner
17846                                                                                                                                      omega 3
17847                                                                                                                                 fenbendazole
17848                                                                                                                     urinary tract supplement
17849                                                                                                                             liver supplement
17850                                                                                                                                   gabapentin
17851                                                                                                                                   gabapentin
17852                                                                                                                                  telmisartan
17853                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17854                                                                                                                                     chitosan
17855                                                                                                                                   diclofenac
17856                                                                                                                         prednisolone acetate
17857                                                                                                                                    carprofen
17858                                                                                                                                   amantadine
17859                                                                                                                                   gabapentin
17860                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17861                                                                                                                                  fenofibrate
17862                                                                                                                                  telmisartan
17863                                                                                                                                      omega 3
17864                                                                                                                                     chitosan
17865                                                                                                                     urinary tract supplement
17866                                                                                                                                   diclofenac
17867                                                                                                                         prednisolone acetate
17868                                                                                                                                    carprofen
17869                                                                                                                 ivermectin, pyrantel pamoate
17870                                                                                                                 ivermectin, pyrantel pamoate
17871                                                                                                                     fipronil, (s)-methoprene
17872                                                                                                                     fipronil, (s)-methoprene
17873                                                                                                                     fipronil, (s)-methoprene
17874                                                                                                                             sulfadimethoxine
17875                                                                                                                                metronidazole
17876                                                                                                                                   cephalexin
17877                                                                                                                                   cephalexin
17878                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17879                                                                                                                                metronidazole
17880                                                                                                                         cefpodoxime proxetil
17881                                                                                                                                   famotidine
17882                                                                                                            betamethasone, gentamicin sulfate
17883                                                                                                                          clemastine fumarate
17884                                                                                                                         cefpodoxime proxetil
17885                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17886                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17887                                                                                                                 ivermectin, pyrantel pamoate
17888                                                                                                                     fipronil, (s)-methoprene
17889                                                                                                                         cefpodoxime proxetil
17890                                                                                                                                   prednisone
17891                                                                                                                              diphenhydramine
17892                                                                                                                                    carprofen
17893                                                                                                                                   cephalexin
17894                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17895                                                                                                                                  doxycycline
17896                                                                                                                     fipronil, (s)-methoprene
17897                                                                                                                 ivermectin, pyrantel pamoate
17898                                                                                                                         cefpodoxime proxetil
17899                                                                                                                 ivermectin, pyrantel pamoate
17900                                                                                                                     fipronil, (s)-methoprene
17901                                                                                                                         cefpodoxime proxetil
17902                                                                                                                                metronidazole
17903                                                                                                                                 enrofloxacin
17904                                                                                                                 ivermectin, pyrantel pamoate
17905                                                                                                                     fipronil, (s)-methoprene
17906                                                                                                                                  doxycycline
17907                                                                                                           amoxicillin, clavulanate potassium
17908                                                                                                                                   sucralfate
17909                                                                                                                                 enrofloxacin
17910                                                                                                                                levothyroxine
17911                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17912                                                                                                                      triamcinolone acetonide
17913                                                                                                                         cefpodoxime proxetil
17914                                                                                                                                  oclacitinib
17915                                                                                                                                    carprofen
17916                                                                                                                                  doxycycline
17917                                                                                                                           maropitant citrate
17918                                                                                                                 ivermectin, pyrantel pamoate
17919                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17920                                                                                                                                  doxycycline
17921                                                                                                                           maropitant citrate
17922                                                                                                                           maropitant citrate
17923                                                                                                                                   lokivetmab
17924                                                                                                           amoxicillin, clavulanate potassium
17925                                                                                                                                  clindamycin
17926                                                                                                                                     tramadol
17927                                                                                                                                metronidazole
17928                                                                                                                                    trazodone
17929                                                                                                                                 enrofloxacin
17930                                                                                                                                  oclacitinib
17931                                                                                                                                metronidazole
17932                                                                                                                           maropitant citrate
17933                                                                                                                              diphenhydramine
17934                                                                                                                                levothyroxine
17935                                                                                                                                   omeprazole
17936                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17937                                                                                                                             liver supplement
17938                                                                                                                                   prednisone
17939                                                                                                                                   sucralfate
17940                                                                                                                                    probiotic
17941                                                                                                                                     tramadol
17942                                                                                                                   milbemycin oxime, spinosad
17943                                                                                                                                dexamethasone
17944                                                                                                                         cefpodoxime proxetil
17945                                                                                                                                  hydroxyzine
17946                                                                                                                                metronidazole
17947                                                                                                                                    probiotic
17948                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17949                                                                                                                           maropitant citrate
17950                                                                                                                             milbemycin oxime
17951                                                                                                                                   afoxolaner
17952                                                                                                                                   afoxolaner
17953                                                                                                                                   afoxolaner
17954                                                                                                                             milbemycin oxime
17955                                                                                                                             milbemycin oxime
17956                                                                                                                                   afoxolaner
17957                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17958                                                                                                                                   afoxolaner
17959                                                                                                                             milbemycin oxime
17960                                                                                                                                   gabapentin
17961                                                                                                                                    carprofen
17962                                                                                                                         cefpodoxime proxetil
17963                                                                                                                                    carprofen
17964                                                                                                                                   cephalexin
17965                                                                                                                                   afoxolaner
17966                                                                                                                                   prednisone
17967                                                                                                                                  minocycline
17968                                                                                                                         cefpodoxime proxetil
17969                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
17970                                                                                                                                   afoxolaner
17971                                                                                                                                   afoxolaner
17972                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17973                                                                                                                                  hydroxyzine
17974                                                                                                            betamethasone, gentamicin sulfate
17975                                                                                                                         cefpodoxime proxetil
17976                                                                                                            trimeprazine tartrate, prednisone
17977                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17978                                                                                                                                   afoxolaner
17979                                                                                                                                 enrofloxacin
17980                                                                                                                                  hydroxyzine
17981                                                                                                                                dexamethasone
17982                                                                                                                                   ivermectin
17983                                                                                                                             pyrantel pamoate
17984                                                                                                                                   cephalexin
17985                                                                                                                                   cephalexin
17986                                                                                                                                    carprofen
17987                                                                                                                 ivermectin, pyrantel pamoate
17988                                                                                                                                metronidazole
17989                                                                                                           amoxicillin, clavulanate potassium
17990                                                                                                                                metronidazole
17991                                                                                                                                    probiotic
17992                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17993                                                                                                                                   cephalexin
17994                                                                                                            betamethasone, gentamicin sulfate
17995                                                                                                                                   prednisone
17996                                                                                                           amoxicillin, clavulanate potassium
17997                                                                                                                  chloroxylenol, ketoconazole
17998                                                                                                                  lufenuron, milbemycin oxime
17999                                                                                                                                metronidazole
18000                                                                                                               sulfamethoxazole, trimethoprim
18001                                                                                                                 ivermectin, pyrantel pamoate
18002                                                                                                                                    carprofen
18003                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18004                                                                                                                                dexamethasone
18005                                                                                                                              diphenhydramine
18006                                                                                                                         prednisolone acetate
18007                                                                                                                              diphenhydramine
18008                                                                                                                      triamcinolone acetonide
18009                                                                                                                     fipronil, (s)-methoprene
18010                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18011                                                                                                                     fipronil, (s)-methoprene
18012                                                                                                                      triamcinolone acetonide
18013                                                                                                                                  oclacitinib
18014                                                                                                           fipronil, permethrin, pyriproxyfen
18015                                                                                                                                   ivermectin
18016                                                                                                                      triamcinolone acetonide
18017                                                                                                                         cefpodoxime proxetil
18018                                                                                                                                  oclacitinib
18019                                                                                                                                  oclacitinib
18020                                                                                                                         cefpodoxime proxetil
18021                                                                                                                  lufenuron, milbemycin oxime
18022                                                                                                                                  oclacitinib
18023                                                                                                                             milbemycin oxime
18024                                                                                                                                   afoxolaner
18025                                                                                                                             milbemycin oxime
18026                                                                                                                                    sarolaner
18027                                                                                                                                  oclacitinib
18028                                                                                                                                  oclacitinib
18029                                                                                                                           maropitant citrate
18030                                                                                                                             milbemycin oxime
18031                                                                                                                                  oclacitinib
18032                                                                                                                                metronidazole
18033                                                                                                                                  oclacitinib
18034                                                                                                                                metronidazole
18035                                                                                                                                    carprofen
18036                                                                                                                         cefpodoxime proxetil
18037                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18038                                                                                                                                   cetirizine
18039                                                                                                                                metronidazole
18040                                                                                                                                metronidazole
18041                                                                                                            betamethasone, gentamicin sulfate
18042                                                                                                                                 fenbendazole
18043                                                                                                              atropine sulfate, diphenoxylate
18044                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18045                                                                                                                                metronidazole
18046                                                                                                                 ivermectin, pyrantel pamoate
18047                                                                                                                                   afoxolaner
18048                                                                                                                                metronidazole
18049                                                                                                                 ivermectin, pyrantel pamoate
18050                                                                                                                                   afoxolaner
18051                                                                                                                         cefpodoxime proxetil
18052                                                                                                                                   prednisone
18053                                                                                                              atropine sulfate, diphenoxylate
18054                                                                                                                                metronidazole
18055                                                                                               dexamethasone, neomycin sulfate, thiabendazole
18056                                                                                                              atropine sulfate, diphenoxylate
18057                                                                                                                                   afoxolaner
18058                                                                                                                 ivermectin, pyrantel pamoate
18059                                                                                                                                  hydroxyzine
18060                                                                                                                                    carprofen
18061                                                                                                                                 enrofloxacin
18062                                                                                                                                metronidazole
18063                                                                                                                         cefpodoxime proxetil
18064                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18065                                                                                                                                 ketoconazole
18066                                                                                                                                   gabapentin
18067                                                                                                                                   prednisone
18068                                                                                                                                dexamethasone
18069                                                                                                                   milbemycin oxime, spinosad
18070                                                                                                                                    carprofen
18071                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18072                                                                                                                   milbemycin oxime, spinosad
18073                                                                                                                                   fluralaner
18074                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                                    lufenuron, milbemycin oxime, praziquantel
18076                                                                                                                                   fluralaner
18077                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18078                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18079                                                                                                                                   fluralaner
18080                                                                                                    lufenuron, milbemycin oxime, praziquantel
18081                                                                                                        dinotefuran, permethrin, pyriproxyfen
18082                                                                                                                 ivermectin, pyrantel pamoate
18083                                                                                                        dinotefuran, permethrin, pyriproxyfen
18084                                                                                                                                    carprofen
18085                                                                                                                                   gabapentin
18086                                                                                                                                  amoxicillin
18087                                                                                                                         cefpodoxime proxetil
18088                                                                                                                                 azithromycin
18089                                                                                                                                  amoxicillin
18090                                                                                                                                   grapiprant
18091                                                                                                                               metoclopramide
18092                                                                                                                                   famotidine
18093                                                                                                           amoxicillin, clavulanate potassium
18094                                                                                                                 ivermectin, pyrantel pamoate
18095                                                                                                                                   afoxolaner
18096                                                                                               mometasone furoate, orbifloxacin, posaconazole
18097                                                                                                                                   cephalexin
18098                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18099                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18100                                                                                                                                   grapiprant
18101                                                                                                                                    carprofen
18102                                                                                                                                metronidazole
18103                                                                                                                                   cephalexin
18104                                                                                                                         cefpodoxime proxetil
18105                                                                                                           amoxicillin, clavulanate potassium
18106                                                                                                                                  doxycycline
18107                                                                                                                              chloramphenicol
18108                                                                                                                                   gabapentin
18109                                                                                                                                   grapiprant
18110                                                                                                                                    carprofen
18111                                                                                                           amoxicillin, clavulanate potassium
18112                                                                                                                                levothyroxine
18113                                                                                                                                   amantadine
18114                                                                                                                                    vitamin e
18115                                                                                                                  lufenuron, milbemycin oxime
18116                                                                                                                     imidacloprid, permethrin
18117                                                                                                                  lufenuron, milbemycin oxime
18118                                                                                                                   imidacloprid, pyriproxyfen
18119                                                                                                                  lufenuron, milbemycin oxime
18120                                                                                                                   imidacloprid, pyriproxyfen
18121                                                                                                                  lufenuron, milbemycin oxime
18122                                                                                                                                   mibolerone
18123                                                                                                                   imidacloprid, pyriproxyfen
18124                                                                                                                  lufenuron, milbemycin oxime
18125                                                                                                                   imidacloprid, pyriproxyfen
18126                                                                                                    lufenuron, milbemycin oxime, praziquantel
18127                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
18128                                                                                                                         cefpodoxime proxetil
18129                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18130                                                                                                                                 ketoconazole
18131                                                                                                                                  oclacitinib
18132                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
18133                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18134                                                                                                            betamethasone, gentamicin sulfate
18135                                                                                                                           maropitant citrate
18136                                                                                                                                hydromorphone
18137                                                                                                                                    midazolam
18138                                                                                                                                     propofol
18139                                                                                                                                  doxycycline
18140                                                                                                                                  doxycycline
18141                                                                                                               polysulfated glycosaminoglycan
18142                                                                                                                                buprenorphine
18143                                                                                                                              dexmedetomidine
18144                                                                                                                                     propofol
18145                                                                                                                                    carprofen
18146                                                                                                                                  atipamezole
18147                                                                                                                                   isoflurane
18148                                                                                                                  lufenuron, milbemycin oxime
18149                                                                                                                     fipronil, (s)-methoprene
18150                                                                                                                                      amitraz
18151                                                                                               mometasone furoate, orbifloxacin, posaconazole
18152                                                                                                                                  clindamycin
18153                                                                                                                                  amoxicillin
18154                                                                                                              aminopentamide hydrogen sulfate
18155                                                                                                                           maropitant citrate
18156                                                                                                                         cefpodoxime proxetil
18157                                                                                                     febantel, praziquantel, pyrantel pamoate
18158                                                                                                     febantel, praziquantel, pyrantel pamoate
18159                                                                                               mometasone furoate, orbifloxacin, posaconazole
18160                                                                                                    lufenuron, milbemycin oxime, praziquantel
18161                                                                                                                                   afoxolaner
18162                                                                                                                                    deracoxib
18163                                                                                                                                   cephalexin
18164                                                                                               mometasone furoate, orbifloxacin, posaconazole
18165                                                                                                                     ear cleaner (oti-soothe)
18166                                                                                                                  lufenuron, milbemycin oxime
18167                                                                                                                                   afoxolaner
18168                                                                                                                                   fluralaner
18169                                                                                                      betamethasone, florfenicol, terbinafine
18170                                                                                                                         cefpodoxime proxetil
18171                                                                                                                                    deracoxib
18172                                                                                                                                   prednisone
18173                                                                                                                                  amoxicillin
18174                                                                                                                           maropitant citrate
18175                                                                                                                         cefpodoxime proxetil
18176                                                                                                                                   prednisone
18177                                                                                                                           maropitant citrate
18178                                                                                                                           maropitant citrate
18179                                                                                                                               metoclopramide
18180                                                                                                                               metoclopramide
18181                                                                                                                                  ondansetron
18182                                                                                                                                   ivermectin
18183                                                                                                        dinotefuran, permethrin, pyriproxyfen
18184                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18185                                                                                                                                    cefovecin
18186                                                                                                                                   prednisone
18187                                                                                                                         cefpodoxime proxetil
18188                                                                                                   dextromethorphan hydrobromide, guaifenesin
18189                                                                                                                                  doxycycline
18190                                                                                                                                 enrofloxacin
18191                                                                                                                     fipronil, (s)-methoprene
18192                                                                                                                 ivermectin, pyrantel pamoate
18193                                                                                                                                   ivermectin
18194                                                                                                                               metoclopramide
18195                                                                                                                                   grapiprant
18196                                                                                                           amoxicillin, clavulanate potassium
18197                                                                                                                                  hydroxyzine
18198                                                                                                                                metronidazole
18199                                                                                                            trimeprazine tartrate, prednisone
18200                                                                                                                                   cephalexin
18201                                                                                                                                  oclacitinib
18202                                                                                                                                   ivermectin
18203                                                                                                                                  oclacitinib
18204                                                                                                                                  oclacitinib
18205                                                                                                                                   ivermectin
18206                                                                                                                                  oclacitinib
18207                                                                                                                                  oclacitinib
18208                                                                                                                                    carprofen
18209                                                                                                                                  oclacitinib
18210                                                                                                           amoxicillin, clavulanate potassium
18211                                                                                                                                marbofloxacin
18212                                                                                                                                    carprofen
18213                                                                                                                     imidacloprid, permethrin
18214                                                                                                                 ivermectin, pyrantel pamoate
18215                                                                                                                                    carprofen
18216                                                                                                                                   loratadine
18217                                                                                                                                   fluralaner
18218                                                                                                                             milbemycin oxime
18219                                                                                                                                   loratadine
18220                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
18221                                                                                                                                   lokivetmab
18222                                                                                                                             milbemycin oxime
18223                                                                                                                                   lokivetmab
18224                                                                                                                                    carprofen
18225                                                                                                                                   gabapentin
18226                                                                                                                                    carprofen
18227                                                                                                                                   lokivetmab
18228                                                                                                               polysulfated glycosaminoglycan
18229                                                                                                                                     spinosad
18230                                                                                                                             milbemycin oxime
18231                                                                                                                                     fipronil
18232                                                                                                                               (s)-methoprene
18233                                                                                                                                      amitraz
18234                                                                                                                                hydromorphone
18235                                                                                                                                     diazepam
18236                                                                                                                                     propofol
18237                                                                                                                                  sevoflurane
18238                                                                                                                               dental sealant
18239                                                                                                                                     spinosad
18240                                                                                                                             milbemycin oxime
18241                                                                                                                                  dinotefuran
18242                                                                                                                                 pyriproxyfen
18243                                                                                                                                   permethrin
18244                                                                                                                                dexamethasone
18245                                                                                                                                 acepromazine
18246                                                                                                                                hydromorphone
18247                                                                                                                                     diazepam
18248                                                                                                                                     propofol
18249                                                                                                                                 ketoconazole
18250                                                                                                                         cefpodoxime proxetil
18251                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18252                                                                                                                                 ketoconazole
18253                                                                                                                                    carprofen
18254                                                                                                        dinotefuran, permethrin, pyriproxyfen
18255                                                                                                                                     spinosad
18256                                                                                                                             milbemycin oxime
18257                                                                                                            allergy immunotherapy - injection
18258                                                                                                        dinotefuran, permethrin, pyriproxyfen
18259                                                                                                                                   cetirizine
18260                                                                                                                   milbemycin oxime, spinosad
18261                                                                                                                                    sarolaner
18262                                                                                                        dinotefuran, permethrin, pyriproxyfen
18263                                                                                                          allergy immunotherapy - unspecified
18264                                                                                                                   milbemycin oxime, spinosad
18265                                                                                                                                    sarolaner
18266                                                                                                                   milbemycin oxime, spinosad
18267                                                                                                                                    sarolaner
18268                                                                                                                                  oclacitinib
18269                                                                                                                                    carprofen
18270                                                                                                                                    trazodone
18271                                                                                                          allergy immunotherapy - unspecified
18272                                                                                                                                    sarolaner
18273                                                                                                                   milbemycin oxime, spinosad
18274                                                                                                      betamethasone, florfenicol, terbinafine
18275                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                                             phytosphingosine
18277                                                                                                                                 fenbendazole
18278                                                                                                                                   fluralaner
18279                                                                                                                                 praziquantel
18280                                                                                                                                    vitamin c
18281                                                                                                                                      omega 3
18282                                                                                                                                   fluralaner
18283                                                                                                                                 fenbendazole
18284                                                                                                                                   ivermectin
18285                                                                                                                                   fluralaner
18286                                                                                                                                    lotilaner
18287                                                                                                                         cefpodoxime proxetil
18288                                                                                                                                   gabapentin
18289                                                                                                                                    trazodone
18290                                                                                                                                      aspirin
18291                                                                                                                                    carprofen
18292                                                                                                                                  amoxicillin
18293                                                                                                                               metoclopramide
18294                                                                                                                                   gabapentin
18295                                                                                                                           maropitant citrate
18296                                                                                                                         digestive supplement
18297                                                                                                                                metronidazole
18298                                                                                                                                    carprofen
18299                                                                                                               praziquantel, pyrantel pamoate
18300                                                                                                                                   selamectin
18301                                                                                                                                      amitraz
18302                                                                                                                                  hydroxyzine
18303                                                                                                                                    carprofen
18304                                                                                                                                     fentanyl
18305                                                                                                                                   cephalexin
18306                                                                                                                                     tramadol
18307                                                                                                                                 acepromazine
18308                                                                                                                                   famotidine
18309                                                                                                              ear cleaner (epi-otic advanced)
18310                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18311                                                                                                                                metronidazole
18312                                                                                                                                   cephalexin
18313                                                                                                                         butorphanol tartrate
18314                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18315                                                                                                                     homatropine, hydrocodone
18316                                                                                                                      unspecified ear cleaner
18317                                                                                                                         cefpodoxime proxetil
18318                                                                                                            trimeprazine tartrate, prednisone
18319                                                                                                                                   afoxolaner
18320                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18321                                                                                                                 ivermectin, pyrantel pamoate
18322                                                                                                                                   fluralaner
18323                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18324                                                                                                                                   prednisone
18325                                                                                                             burow's solution, hydrocortisone
18326                                                                                                                      ketoconazole, tris-edta
18327                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18328                                                                                                                              diphenhydramine
18329                                                                                                                             pyrantel pamoate
18330                                                                                                                                    ponazuril
18331                                                                                                                                 fenbendazole
18332                                                                                                           amoxicillin, clavulanate potassium
18333                                                                                                               sulfamethoxazole, trimethoprim
18334                                                                                                                                metronidazole
18335                                                                                                                 ivermectin, pyrantel pamoate
18336                                                                                                                                 fenbendazole
18337                                                                                                                 ivermectin, pyrantel pamoate
18338                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                                                 ivermectin, pyrantel pamoate
18340                                                                                                                                   afoxolaner
18341                                                                                                                                      omega 3
18342                                                                                                                 ivermectin, pyrantel pamoate
18343                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18344                                                                                                                 ivermectin, pyrantel pamoate
18345                                                                                                                       acetaminophen, codeine
18346                                                                                                                                    trazodone
18347                                                                                                                                    meloxicam
18348                                                                                                                                   gabapentin
18349                                                                                                                 ivermectin, pyrantel pamoate
18350                                                                                                                                  amoxicillin
18351                                                                                                                                levetiracetam
18352                                                                                                                                phenobarbital
18353                                                                                                                                    carprofen
18354                                                                                                                                    meloxicam
18355                                                                                                                                levetiracetam
18356                                                                                                                                  amoxicillin
18357                                                                                                                                  doxycycline
18358                                                                                                                                    carprofen
18359                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18360                                                                                                                                levetiracetam
18361                                                                                                                                phenobarbital
18362                                                                                                                                  clorazepate
18363                                                                                                                                    trazodone
18364                                                                                                                                   gabapentin
18365                                                                                                                 ivermectin, pyrantel pamoate
18366                                                                                                                                   afoxolaner
18367                                                                                                                                   afoxolaner
18368                                                                                                                         cefpodoxime proxetil
18369                                                                                                                                metronidazole
18370                                                                                                                 ivermectin, pyrantel pamoate
18371                                                                                                                                   afoxolaner
18372                                                                                                                         cefpodoxime proxetil
18373                                                                                                                 ivermectin, pyrantel pamoate
18374                                                                                                                                   afoxolaner
18375                                                                                                                 ivermectin, pyrantel pamoate
18376                                                                                                                                   pimobendan
18377                                                                                                                                    enalapril
18378                                                                                                                                      taurine
18379                                                                                                                                  l-carnitine
18380                                                                                                                                   pimobendan
18381                                                                                                                                    enalapril
18382                                                                                                                                      sotalol
18383                                                                                                                                   pimobendan
18384                                                                                                                                    carprofen
18385                                                                                                                                levetiracetam
18386                                                                                                                                      sotalol
18387                                                                                                                                   pimobendan
18388                                                                                                                                    enalapril
18389                                                                                                                                    carprofen
18390                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18391                                                                                                                                   ivermectin
18392                                                                                                                                   cephalexin
18393                                                                                                                                  oclacitinib
18394                                                                                                                                   cephalexin
18395                                                                                                                                  oclacitinib
18396                                                                                                                 ivermectin, pyrantel pamoate
18397                                                                                                                                   prednisone
18398                                                                                                                 ivermectin, pyrantel pamoate
18399                                                                                                                                   afoxolaner
18400                                                                                                                                  oclacitinib
18401                                                                                                                 ivermectin, pyrantel pamoate
18402                                                                                                                                   afoxolaner
18403                                                                                                                                  oclacitinib
18404                                                                                                                      ketoconazole, tris-edta
18405                                                                                                                                   lokivetmab
18406                                                                                                                 ivermectin, pyrantel pamoate
18407                                                                                                                                   afoxolaner
18408                                                                                                                                   lokivetmab
18409                                                                                                                                  oclacitinib
18410                                                                                                                         cefpodoxime proxetil
18411                                                                                                           amoxicillin, clavulanate potassium
18412                                                                                                                                    deracoxib
18413                                                                                                                                   cephalexin
18414                                                                                                                 ivermectin, pyrantel pamoate
18415                                                                                                                 ivermectin, pyrantel pamoate
18416                                                                                                                                   afoxolaner
18417                                                                                                                                   lokivetmab
18418                                                                                                                 ivermectin, pyrantel pamoate
18419                                                                                                                                    lotilaner
18420                                                                                                                                  oclacitinib
18421                                                                                                                                   cephalexin
18422                                                                                                                                    deracoxib
18423                                                                                                                                  clindamycin
18424                                                                                                                                 acepromazine
18425                                                                                                                         butorphanol tartrate
18426                                                                                                                                     propofol
18427                                                                                                                                         edta
18428                                                                                                                                   cephalexin
18429                                                                                                                                  oclacitinib
18430                                                                                                                                   lokivetmab
18431                                                                                                                         cefpodoxime proxetil
18432                                                                                                                                   cephalexin
18433                                                                                                                                   lokivetmab
18434                                                                                                                                  oclacitinib
18435                                                                                                                                  amoxicillin
18436                                                                                                                                    probiotic
18437                                                                                                                                    probiotic
18438                                                                                                                                   lokivetmab
18439                                                                                                                                  oclacitinib
18440                                                                                                            trimeprazine tartrate, prednisone
18441                                                                                                            trimeprazine tartrate, prednisone
18442                                                                                                            trimeprazine tartrate, prednisone
18443                                                                                                                                metronidazole
18444                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
18445                                                                                                                   imidacloprid, pyriproxyfen
18446                                                                                                                 ivermectin, pyrantel pamoate
18447                                                                                                                                     tramadol
18448                                                                                                                                    carprofen
18449                                                                                                                                 acepromazine
18450                                                                                                                                  hydroxyzine
18451                                                                                                                         cefpodoxime proxetil
18452                                                                                                                                   prednisone
18453                                                                                                                  lufenuron, milbemycin oxime
18454                                                                                                                                   afoxolaner
18455                                                                                                                         cefpodoxime proxetil
18456                                                                                                                                     tramadol
18457                                                                                                                  lufenuron, milbemycin oxime
18458                                                                                                                                   fluralaner
18459                                                                                                                  lufenuron, milbemycin oxime
18460                                                                                                                  lufenuron, milbemycin oxime
18461                                                                                                                                   fluralaner
18462                                                                                                                    immune support supplement
18463                                                                                                                                  amoxicillin
18464                                                                                                                                   cephalexin
18465                                                                                                                                    carprofen
18466                                                                                                    neomycin sulfate, polymyxin b, gramicidin
18467                                                                                                                 ivermectin, pyrantel pamoate
18468                                                                                                                           maropitant citrate
18469                                                                                                                                 cyclosporine
18470                                                                                                                 ivermectin, pyrantel pamoate
18471                                                                                                                                 cyclosporine
18472                                                                                                                 ivermectin, pyrantel pamoate
18473                                                                                                                                   afoxolaner
18474                                                                                                                           calming supplement
18475                                                                                                                         cefpodoxime proxetil
18476                                                                                                                                    carprofen
18477                                                                                                                                dexamethasone
18478                                                                                                                                   cephalexin
18479                                                                                                                   milbemycin oxime, spinosad
18480                                                                                                                   milbemycin oxime, spinosad
18481                                                                                                                                   cephalexin
18482                                                                                                                   milbemycin oxime, spinosad
18483                                                                                                                   milbemycin oxime, spinosad
18484                                                                                                                           maropitant citrate
18485                                                                                                                                  clindamycin
18486                                                                                                                              diphenhydramine
18487                                                                                                                                   cephalexin
18488                                                                                                                                   prednisone
18489                                                                                                                 ivermectin, pyrantel pamoate
18490                                                                                                                  lufenuron, milbemycin oxime
18491                                                                                                                                  hydroxyzine
18492                                                                                                                              diphenhydramine
18493                                                                                                                                   prednisone
18494                                                                                                                  lufenuron, milbemycin oxime
18495                                                                                                                 ivermectin, pyrantel pamoate
18496                                                                                                                                  hydroxyzine
18497                                                                                                                 ivermectin, pyrantel pamoate
18498                                                                                                        dinotefuran, permethrin, pyriproxyfen
18499                                                                                                                                  hydroxyzine
18500                                                                                                                 ivermectin, pyrantel pamoate
18501                                                                                                                                  hydroxyzine
18502                                                                                                               milbemycin oxime, praziquantel
18503                                                                                                                                  hydroxyzine
18504                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18505                                                                                                               polysulfated glycosaminoglycan
18506                                                                                                                                    carprofen
18507                                                                                                                                    carprofen
18508                                                                                                                                   gabapentin
18509                                                                                                                                    carprofen
18510                                                                                                                                   gabapentin
18511                                                                                                                                    carprofen
18512                                                                                                                                   ivermectin
18513                                                                                                                 ivermectin, pyrantel pamoate
18514                                                                                                                   imidacloprid, pyriproxyfen
18515                                                                                                                                  doxycycline
18516                                                                                                                                metronidazole
18517                                                                                                                                   ivermectin
18518                                                                                                                                  doxycycline
18519                                                                                                                                   afoxolaner
18520                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18521                                                                                                                                    firocoxib
18522                                                                                                                                  amoxicillin
18523                                                                                                                                  oclacitinib
18524                                                                                                                 ivermectin, pyrantel pamoate
18525                                                                                                                                   afoxolaner
18526                                                                                                                                      taurine
18527                                                                                                                                  l-carnitine
18528                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18529                                                                                                                            vision supplement
18530                                                                                                                                   afoxolaner
18531                                                                                                                 ivermectin, pyrantel pamoate
18532                                                                                                                                      taurine
18533                                                                                                                                  l-carnitine
18534                                                                                                                                    probiotic
18535                                                                                                                            vision supplement
18536                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18537                                                                                                                                    firocoxib
18538                                                                                                                 ivermectin, pyrantel pamoate
18539                                                                                                                     fipronil, (s)-methoprene
18540                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18541                                                                                                                 ivermectin, pyrantel pamoate
18542                                                                                                                     fipronil, (s)-methoprene
18543                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18544                                                                                                                           maropitant citrate
18545                                                                                                                           maropitant citrate
18546                                                                                                                                    firocoxib
18547                                                                                                                                dexamethasone
18548                                                                                                                         cefpodoxime proxetil
18549                                                                                                                               hydrocortisone
18550                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18551                                                                                                                                   penicillin
18552                                                                                                                             atropine sulfate
18553                                                                                                                                  amoxicillin
18554                                                                                                                                   loperamide
18555                                                                                                                                 fenbendazole
18556                                                                                                                           maropitant citrate
18557                                                                                                                                    cefovecin
18558                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18559                                                                                                                           maropitant citrate
18560                                                                                                                                  amoxicillin
18561                                                                                                                 ivermectin, pyrantel pamoate
18562                                                                                                                            ferrum metallicum
18563                                                                                                                         cefpodoxime proxetil
18564                                                                                                                 ivermectin, pyrantel pamoate
18565                                                                                                                   imidacloprid, pyriproxyfen
18566                                                                                                                                    carprofen
18567                                                                                                           amoxicillin, clavulanate potassium
18568                                                                                                                                  clindamycin
18569                                                                                                                                 enrofloxacin
18570                                                                                                                                   diclofenac
18571                                                                                                                 ivermectin, pyrantel pamoate
18572                                                                                                                                   afoxolaner
18573                                                                                                                                   afoxolaner
18574                                                                                                                     fipronil, (s)-methoprene
18575                                                                                                                 ivermectin, pyrantel pamoate
18576                                                                                                                 ivermectin, pyrantel pamoate
18577                                                                                                                                   afoxolaner
18578                                                                                                                                metronidazole
18579                                                                                                                                   grapiprant
18580                                                                                                                 ivermectin, pyrantel pamoate
18581                                                                                                                                   afoxolaner
18582                                                                                                               sulfamethoxazole, trimethoprim
18583                                                                                                                                 enrofloxacin
18584                                                                                                                                metronidazole
18585                                                                                                                                metronidazole
18586                                                                                                                           maropitant citrate
18587                                                                                                                                   loperamide
18588                                                                                                                                   prednisone
18589                                                                                                                                   ivermectin
18590                                                                                                                                   ivermectin
18591                                                                                                            betamethasone, gentamicin sulfate
18592                                                                                                                  lufenuron, milbemycin oxime
18593                                                                                                                  lufenuron, milbemycin oxime
18594                                                                                                                  lufenuron, milbemycin oxime
18595                                                                                                                   imidacloprid, pyriproxyfen
18596                                                                                                                             milbemycin oxime
18597                                                                                                                                   afoxolaner
18598                                                                                                               milbemycin oxime, praziquantel
18599                                                                                                                                   afoxolaner
18600                                                                                                               milbemycin oxime, praziquantel
18601                                                                                                                                   afoxolaner
18602                                                                                                                                metronidazole
18603                                                                                                                                    trazodone
18604                                                                                                                                    deracoxib
18605                                                                                                                                metronidazole
18606                                                                                                                                    trazodone
18607                                                                                                                                    probiotic
18608                                                                                                                                metronidazole
18609                                                                                                                                    trazodone
18610                                                                                                                                    probiotic
18611                                                                                                                                    deracoxib
18612                                                                                                                                levetiracetam
18613                                                                                                                                 fenbendazole
18614                                                                                                                   milbemycin oxime, spinosad
18615                                                                                                                             milbemycin oxime
18616                                                                                                                                   afoxolaner
18617                                                                                                                             milbemycin oxime
18618                                                                                                                                   afoxolaner
18619                                                                                                                                   gabapentin
18620                                                                                                                                    carprofen
18621                                                                                                 florfenicol, mometasone furoate, terbinafine
18622                                                                                                                                   prednisone
18623                                                                                                                         cefpodoxime proxetil
18624                                                                                                                         cefpodoxime proxetil
18625                                                                                                                                   lokivetmab
18626                                                                                               mometasone furoate, orbifloxacin, posaconazole
18627                                                                                                                                    carprofen
18628                                                                                                                         cefpodoxime proxetil
18629                                                                                                                                 chlorambucil
18630                                                                                                                                 cyclosporine
18631                                                                                                                                  bedinvetmab
18632                                                                                                                                   prednisone
18633                                                                                                                                  bedinvetmab
18634                                                                                                                                metronidazole
18635                                                                                                                         prebiotic, probiotic
18636                                                                                                                                    carprofen
18637                                                                                                                                   cephalexin
18638                                                                                                                                   cephalexin
18639                                                                                                            betamethasone, gentamicin sulfate
18640                                                                                                                                    carprofen
18641                                                                                                                                   cephalexin
18642                                                                                                                                   cephalexin
18643                                                                                                                              diphenhydramine
18644                                                                                                                                   cephalexin
18645                                                                                                                                  oclacitinib
18646                                                                                                                                  oclacitinib
18647                                                                                                                 ivermectin, pyrantel pamoate
18648                                                                                                            allergy immunotherapy - injection
18649                                                                                                                                   nitenpyram
18650                                                                                                                                    carprofen
18651                                                                                                                                     tramadol
18652                                                                                                                                  oclacitinib
18653                                                                                                                                   cephalexin
18654                                                                                                                                   lokivetmab
18655                                                                                                                                   cephalexin
18656                                                                                               mometasone furoate, orbifloxacin, posaconazole
18657                                                                                                                                   lokivetmab
18658                                                                                                                                  oclacitinib
18659                                                                                                                                   cephalexin
18660                                                                                                                                  oclacitinib
18661                                                                                                                                   afoxolaner
18662                                                                                                                 ivermectin, pyrantel pamoate
18663                                                                                                                                  oclacitinib
18664                                                                                                                                   cephalexin
18665                                                                                                                                    trazodone
18666                                                                                                                         prebiotic, probiotic
18667                                                                                                                                  oclacitinib
18668                                                                                                                                  oclacitinib
18669                                                                                                  chlorhexidine gluconate, miconazole nitrate
18670                                                                                                                                   cephalexin
18671                                                                                                                                  oclacitinib
18672                                                                                                                                    trazodone
18673                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18674                                                                                                                                    probiotic
18675                                                                                                                                    carprofen
18676                                                                                                                                   prednisone
18677                                                                                                                                  clindamycin
18678                                                                                                                                   cephalexin
18679                                                                                                                                metronidazole
18680                                                                                                                                  oclacitinib
18681                                                                                                                                    carprofen
18682                                                                                                                                   prednisone
18683                                                                                                                   milbemycin oxime, spinosad
18684                                                                                                                             milbemycin oxime
18685                                                                                                           amoxicillin, clavulanate potassium
18686                                                                                                                 ivermectin, pyrantel pamoate
18687                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18688                                                                                                                                levothyroxine
18689                                                                                                                               chlorphenamine
18690                                                                                                                                   ivermectin
18691                                                                                                                         cefpodoxime proxetil
18692                                                                                                                                   lokivetmab
18693                                                                                                                                   lokivetmab
18694                                                                                                                  lufenuron, milbemycin oxime
18695                                                                                                                       cyphenothrin, fipronil
18696                                                                                                                       cyphenothrin, fipronil
18697                                                                                                                  lufenuron, milbemycin oxime
18698                                                                                                          ear cleaner (zymox), hydrocortisone
18699                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18700                                                                                                                             tylosin tartrate
18701                                                                                                                                sulfasalazine
18702                                                                                                                                metronidazole
18703                                                                                                                 ivermectin, pyrantel pamoate
18704                                                                                                                                   afoxolaner
18705                                                                                                                 ivermectin, pyrantel pamoate
18706                                                                                                                 ivermectin, pyrantel pamoate
18707                                                                                                                 ivermectin, pyrantel pamoate
18708                                                                                                                                   afoxolaner
18709                                                                                                                           maropitant citrate
18710                                                                                                                                metronidazole
18711                                                                                                           amoxicillin, clavulanate potassium
18712                                                                                                                                 enrofloxacin
18713                                                                                                                                    trazodone
18714                                                                                                                                metronidazole
18715                                                                                                           amoxicillin, clavulanate potassium
18716                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18717                                                                                                                                metronidazole
18718                                                                                                            betamethasone, gentamicin sulfate
18719                                                                                                                           maropitant citrate
18720                                                                                                                                   famotidine
18721                                                                                                                                    trazodone
18722                                                                                                                                    trazodone
18723                                                                                                                           maropitant citrate
18724                                                                                                                                metronidazole
18725                                                                                                                           maropitant citrate
18726                                                                                                                                    trazodone
18727                                                                                                                         cefpodoxime proxetil
18728                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18729                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18730                                                                                                                           maropitant citrate
18731                                                                                                                                    trazodone
18732                                                                                                           fipronil, permethrin, pyriproxyfen
18733                                                                                                           unspecified heartworm preventative
18734                                                                                                                   milbemycin oxime, spinosad
18735                                                                                                                                   nitenpyram
18736                                                                                                                   milbemycin oxime, spinosad
18737                                                                                                                         prebiotic, probiotic
18738                                                                                                                         cefpodoxime proxetil
18739                                                                                                                                metronidazole
18740                                                                                                            trimeprazine tartrate, prednisone
18741                                                                                                   dextromethorphan hydrobromide, guaifenesin
18742                                                                                                                                  minocycline
18743                                                                                                                                   ivermectin
18744                                                                                                                     flumethrin, imidacloprid
18745                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18746                                                                                                                                   ivermectin
18747                                                                                                                                   afoxolaner
18748                                                                                                                                    probiotic
18749                                                                                                                 ivermectin, pyrantel pamoate
18750                                                                                                                 ivermectin, pyrantel pamoate
18751                                                                                                                                   afoxolaner
18752                                                                                                                                    trazodone
18753                                                                                                                                    carprofen
18754                                                                                                                                metronidazole
18755                                                                                                                                  fluconazole
18756                                                                                                                                    carprofen
18757                                                                                                                                metronidazole
18758                                                                                                                                   fluoxetine
18759                                                                                                                                    carprofen
18760                                                                                                                                  oclacitinib
18761                                                                                                                                    trazodone
18762                                                                                                                                   gabapentin
18763                                                                                                                                    carprofen
18764                                                                                                                                  oclacitinib
18765                                                                                                                                 ketoconazole
18766                                                                                                                                   gabapentin
18767                                                                                                                                    meloxicam
18768                                                                                                                                     spinosad
18769                                                                                                                             milbemycin oxime
18770                                                                                                           amoxicillin, clavulanate potassium
18771                                                                                                                                      omega 3
18772                                                                                                           amoxicillin, clavulanate potassium
18773                                                                                                                                    probiotic
18774                                                                                                                   milbemycin oxime, spinosad
18775                                                                                                                   milbemycin oxime, spinosad
18776                                                                                                                         cefpodoxime proxetil
18777                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18778                                                                                                               praziquantel, pyrantel pamoate
18779                                                                                                                                   fluoxetine
18780                                                                                                                                    trazodone
18781                                                                                                                                   fluoxetine
18782                                                                                                                                   fluoxetine
18783                                                                                                                                   fluoxetine
18784                                                                                                                                    carprofen
18785                                                                                                                                   famotidine
18786                                                                                                                                  hydroxyzine
18787                                                                                                                                   prednisone
18788                                                                                                                 hydrocortisone, ketoconazole
18789                                                                                                                                  hydroxyzine
18790                                                                                                                                   famotidine
18791                                                                                                                                   fluoxetine
18792                                                                                                                                    trazodone
18793                                                                                                                                    carprofen
18794                                                                                                                                   prednisone
18795                                                                                                                 ivermectin, pyrantel pamoate
18796                                                                                                                       cyphenothrin, fipronil
18797                                                                                                                 ivermectin, pyrantel pamoate
18798                                                                                                                       cyphenothrin, fipronil
18799                                                                                                                 ivermectin, pyrantel pamoate
18800                                                                                                                 ivermectin, pyrantel pamoate
18801                                                                                                                 ivermectin, pyrantel pamoate
18802                                                                                                                               chlorphenamine
18803                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18804                                                                                                                 ivermectin, pyrantel pamoate
18805                                                                                                                 ivermectin, pyrantel pamoate
18806                                                                                                                             milbemycin oxime
18807                                                                                                                 ivermectin, pyrantel pamoate
18808                                                                                                                                  clindamycin
18809                                                                                                                                metronidazole
18810                                                                                                                           maropitant citrate
18811                                                                                                                                   sucralfate
18812                                                                                                                           maropitant citrate
18813                                                                                                                                    carprofen
18814                                                                                                                                    firocoxib
18815                                                                                                                                    firocoxib
18816                                                                                                                                    carprofen
18817                                                                                                                                    carprofen
18818                                                                                                                                  amoxicillin
18819                                                                                                                                   cephalexin
18820                                                                                                                          ear cleaner (zymox)
18821                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18822                                                                                                                                    carprofen
18823                                                                                                                                    carprofen
18824                                                                                                           amoxicillin, clavulanate potassium
18825                                                                                                                                ciprofloxacin
18826                                                                                                                 ivermectin, pyrantel pamoate
18827                                                                                                                                  oclacitinib
18828                                                                                                                                    meloxicam
18829                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
18830                                                                                                                                levothyroxine
18831                                                                                                                                    trazodone
18832                                                                                                                                levothyroxine
18833                                                                                                                         cefpodoxime proxetil
18834                                                                                                                                  oclacitinib
18835                                                                                                                                    carprofen
18836                                                                                                                   milbemycin oxime, spinosad
18837                                                                                                                   milbemycin oxime, spinosad
18838                                                                                                                                      omega 3
18839                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18840                                                                                                                           maropitant citrate
18841                                                                                                                                metronidazole
18842                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
18843                                                                                                                         cefpodoxime proxetil
18844                                                                                                                     skin and coat supplement
18845                                                                                                                             milbemycin oxime
18846                                                                                                                                   fluralaner
18847                                                                                                                                      omega 3
18848                                                                                                                                  oclacitinib
18849                                                                                                                                   cetirizine
18850                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18851                                                                                                                                  oclacitinib
18852                                                                                                                                   fluralaner
18853                                                                                                                             milbemycin oxime
18854                                                                                                                                      omega 3
18855                                                                                                                             milbemycin oxime
18856                                                                                                                                   fluralaner
18857                                                                                                                                  oclacitinib
18858                                                                                                                                    carprofen
18859                                                                                                                                   cephalexin
18860                                                                                                                                  amoxicillin
18861                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18862                                                                                                                                  oclacitinib
18863                                                                                                                                    carprofen
18864                                                                                                                             milbemycin oxime
18865                                                                                                                                   fluralaner
18866                                                                                                                                  amoxicillin
18867                                                                                                                                  oclacitinib
18868                                                                                                                                   lokivetmab
18869                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18870                                                                                                                                      omega 3
18871                                                                                                                                 enrofloxacin
18872                                                                                                                                  clindamycin
18873                                                                                                                                    carprofen
18874                                                                                                                   milbemycin oxime, spinosad
18875                                                                                                                   milbemycin oxime, spinosad
18876                                                                                                                                   afoxolaner
18877                                                                                                   dextromethorphan hydrobromide, guaifenesin
18878                                                                                                                                   ivermectin
18879                                                                                                                   milbemycin oxime, spinosad
18880                                                                                                                                   afoxolaner
18881                                                                                                                                   ivermectin
18882                                                                                   dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18883                                                                                                                                   cephalexin
18884                                                                                                                           methylprednisolone
18885                                                                                                                                   gabapentin
18886                                                                                                                 ivermectin, pyrantel pamoate
18887                                                                                                                                   afoxolaner
18888                                                                                                                         butorphanol tartrate
18889                                                                                                                                    midazolam
18890                                                                                                                        tiletamine, zolazepam
18891                                                                                                                                    meloxicam
18892                                                                                                                         cefpodoxime proxetil
18893                                                                                                                                    probiotic
18894                                                                                                                 ivermectin, pyrantel pamoate
18895                                                                                                                                   afoxolaner
18896                                                                                                          ear cleaner (zymox), hydrocortisone
18897                                                                                                                    immune support supplement
18898                                                                                                                                   sucralfate
18899                                                                                                                                yunnan baiyao
18900                                                                                                                                   gabapentin
18901                                                                                                                                methocarbamol
18902                                                                                                                 ivermectin, pyrantel pamoate
18903                                                                                                                                   afoxolaner
18904                                                                                                                                methocarbamol
18905                                                                                                                                buprenorphine
18906                                                                                                                                methocarbamol
18907                                                                                                                                   gabapentin
18908                                                                                                                                   ivermectin
18909                                                                                                                     imidacloprid, permethrin
18910                                                                                                                 ivermectin, pyrantel pamoate
18911                                                                                                                                   gabapentin
18912                                                                                                                                    carprofen
18913                                                                                                                   imidacloprid, pyriproxyfen
18914                                                                                                                 ivermectin, pyrantel pamoate
18915                                                                                                                 ivermectin, pyrantel pamoate
18916                                                                                                                                   afoxolaner
18917                                                                                                                 ivermectin, pyrantel pamoate
18918                                                                                                                                   afoxolaner
18919                                                                                                                     flumethrin, imidacloprid
18920                                                                                                                 ivermectin, pyrantel pamoate
18921                                                                                                                     flumethrin, imidacloprid
18922                                                                                                                                yunnan baiyao
18923                                                                                                                              chloramphenicol
18924                                                                                                                  lufenuron, milbemycin oxime
18925                                                                                                                                    carprofen
18926                                                                                                                                metronidazole
18927                                                                                                                                  amoxicillin
18928                                                                                                                                metronidazole
18929                                                                                                                                 fenbendazole
18930                                                                                                                                   ivermectin
18931                                                                                                                     fipronil, (s)-methoprene
18932                                                                                                                 ivermectin, pyrantel pamoate
18933                                                                                                                                   fluralaner
18934                                                                                                                 ivermectin, pyrantel pamoate
18935                                                                                                                 ivermectin, pyrantel pamoate
18936                                                                                                                     flumethrin, imidacloprid
18937                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18938                                                                                                                                   cephalexin
18939                                                                                                                                   ivermectin
18940                                                                                                                 ivermectin, pyrantel pamoate
18941                                                                                                                         cefpodoxime proxetil
18942                                                                                                                                   grapiprant
18943                                                                                                                                   gabapentin
18944                                                                                                                                   grapiprant
18945                                                                                                                                 enrofloxacin
18946                                                                                                                                  bedinvetmab
18947                                                                                                                                   grapiprant
18948                                                                                                                         prednisolone acetate
18949                                                                                                                                   cephalexin
18950                                                                                                                                   selamectin
18951                                                                                                                                   ivermectin
18952                                                                                                                             pyrantel pamoate
18953                                                                                                                                 imidacloprid
18954                                                                                                                                   permethrin
18955                                                                                                                                    probiotic
18956                                                                                                                                  oclacitinib
18957                                                                                                                         cefpodoxime proxetil
18958                                                                                                                                  oclacitinib
18959                                                                                                                                   afoxolaner
18960                                                                                                                 ivermectin, pyrantel pamoate
18961                                                                                                                                    probiotic
18962                                                                                                                 ivermectin, pyrantel pamoate
18963                                                                                                                                   afoxolaner
18964                                                                                                                                    probiotic
18965                                                                                                                                  oclacitinib
18966                                                                                                                                   pimobendan
18967                                                                                                                 ivermectin, pyrantel pamoate
18968                                                                                                                                   afoxolaner
18969                                                                                                                                   pimobendan
18970                                                                                                                                    probiotic
18971                                                                                                                         digestive supplement
18972                                                                                                                 ivermectin, pyrantel pamoate
18973                                                                                                                                   afoxolaner
18974                                                                                                                                   pimobendan
18975                                                                                                                 ivermectin, pyrantel pamoate
18976                                                                                                                                   afoxolaner
18977                                                                                                                                   pimobendan
18978                                                                                                                         cefpodoxime proxetil
18979                                                                                                                                   pimobendan
18980                                                                                                                 ivermectin, pyrantel pamoate
18981                                                                                                                                  doxycycline
18982                                                                                                                 ivermectin, pyrantel pamoate
18983                                                                                                                                metronidazole
18984                                                                                                                                  doxycycline
18985                                                                                                                                 enrofloxacin
18986                                                                                                                                  amoxicillin
18987                                                                                                                 ivermectin, pyrantel pamoate
18988                                                                                                                                    probiotic
18989                                                                                                                     joint supplement (other)
18990                                                                                                                 ivermectin, pyrantel pamoate
18991                                                                                                                 ivermectin, pyrantel pamoate
18992                                                                                                                             tylosin tartrate
18993                                                                                                                                    probiotic
18994                                                                                                                               xiang lian san
18995                                                                                                                    immune support supplement
18996                                                                                                                         cefpodoxime proxetil
18997                                                                                                                       acetaminophen, codeine
18998                                                                                                                           maropitant citrate
18999                                                                                                                 ivermectin, pyrantel pamoate
19000                                                                                                                                  oclacitinib
19001                                                                                                                                    carprofen
19002                                                                                                                         cefpodoxime proxetil
19003                                                                                                                     fipronil, (s)-methoprene
19004                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                                            betamethasone, gentamicin sulfate
19006                                                                                                                            hypochlorous acid
19007                                                                                                                                    vitamin d
19008                                                                                                                                   wind toxin
19009                                                                                                                                stomach happy
19010                                                                                                                               wei qi booster
19011                                                                                                       joint supplement (glucosamine hcl/msm)
19012                                                                                                                                 multivitamin
19013                                                                                                                                    probiotic
19014                                                                                                                                    vitamin c
19015                                                                                                                                   cetirizine
19016                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19017                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19018                                                                                                                         cefpodoxime proxetil
19019                                                                                                                       acetaminophen, codeine
19020                                                                                                                                   cetirizine
19021                                                                                                               polysulfated glycosaminoglycan
19022                                                                                                                   milbemycin oxime, spinosad
19023                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19024                                                                                                                  lufenuron, milbemycin oxime
19025                                                                                                                  lufenuron, milbemycin oxime
19026                                                                                                                                    deracoxib
19027                                                                                                                                   gabapentin
19028                                                                                                                                   prednisone
19029                                                                                                                                   gabapentin
19030                                                                                                                                   prednisone
19031                                                                                                           amoxicillin, clavulanate potassium
19032                                                                                                                   milbemycin oxime, spinosad
19033                                                                                                                             milbemycin oxime
19034                                                                                                                                    lufenuron
19035                                                                                                                                 praziquantel
19036                                                                                                                 ivermectin, pyrantel pamoate
19037                                                                                                                                   afoxolaner
19038                                                                                                                 ivermectin, pyrantel pamoate
19039                                                                                                                                   afoxolaner
19040                                                                                                                   milbemycin oxime, spinosad
19041                                                                                                                             milbemycin oxime
19042                                                                                                                 ivermectin, pyrantel pamoate
19043                                                                                                                     fipronil, (s)-methoprene
19044                                                                                                                             sulfadimethoxine
19045                                                                                                                         digestive supplement
19046                                                                                                                   sulfadiazine, trimethoprim
19047                                                                                                                                   sucralfate
19048                                                                                                                                metronidazole
19049                                                                                                                          ear cleaner (zymox)
19050                                                                                                                 ivermectin, pyrantel pamoate
19051                                                                                                                     fipronil, (s)-methoprene
19052                                                                                                                         cefpodoxime proxetil
19053                                                                                                                                   prednisone
19054                                                                                                                 ivermectin, pyrantel pamoate
19055                                                                                                                     fipronil, (s)-methoprene
19056                                                                                                                                 multivitamin
19057                                                                                              dexamethasone, enrofloxacin, miconazole nitrate
19058                                                                                              dexamethasone, enrofloxacin, miconazole nitrate
19059                                                                                                                                levothyroxine
19060                                                                                                                                levothyroxine
19061                                                                                                                     fipronil, (s)-methoprene
19062                                                                                                                 ivermectin, pyrantel pamoate
19063                                                                                                           amoxicillin, clavulanate potassium
19064                                                                                                                                   gabapentin
19065                                                                                                                                     tramadol
19066                                                                                                                                    carprofen
19067                                                                                                                 ivermectin, pyrantel pamoate
19068                                                                                                                 ivermectin, pyrantel pamoate
19069                                                                                                               unspecified thyroid medication
19070                                                                                                                  lufenuron, milbemycin oxime
19071                                                                                                                                    firocoxib
19072                                                                                                                     fipronil, (s)-methoprene
19073                                                                                                                  lufenuron, milbemycin oxime
19074                                                                                                                                metronidazole
19075                                                                                                     febantel, praziquantel, pyrantel pamoate
19076                                                                                                                                    carprofen
19077                                                                                                                     fipronil, (s)-methoprene
19078                                                                                                                  lufenuron, milbemycin oxime
19079                                                                                                                                   penicillin
19080                                                                                                                                dexamethasone
19081                                                                                                                             atropine sulfate
19082                                                                                                                     fipronil, (s)-methoprene
19083                                                                                                                 ivermectin, pyrantel pamoate
19084                                                                                                                                    carprofen
19085                                                                                                                 ivermectin, pyrantel pamoate
19086                                                                                                                             pyrantel pamoate
19087                                                                                                                     fipronil, (s)-methoprene
19088                                                                                                                 ivermectin, pyrantel pamoate
19089                                                                                                                     fipronil, (s)-methoprene
19090                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19091                                                                                                                         butorphanol tartrate
19092                                                                                                                                    carprofen
19093                                                                                                                             sulfadimethoxine
19094                                                                                                                             atropine sulfate
19095                                                                                                                         butorphanol tartrate
19096                                                                                                                                     ketamine
19097                                                                                                                                     xylazine
19098                                                                                                                                  atipamezole
19099                                                                                                                                    carprofen
19100                                                                                                                                    carprofen
19101                                                                                               mometasone furoate, orbifloxacin, posaconazole
19102                                                                                                                     imidacloprid, moxidectin
19103                                                                                                                                   ivermectin
19104                                                                                                       joint supplement (glucosamine hcl/msm)
19105                                                                                                                     imidacloprid, permethrin
19106                                                                                                                                metronidazole
19107                                                                                                                           maropitant citrate
19108                                                                                                                                   famotidine
19109                                                                                                                   imidacloprid, pyriproxyfen
19110                                                                                                                        clorsulon, ivermectin
19111                                                                                                       joint supplement (glucosamine hcl/msm)
19112                                                                                                           amoxicillin, clavulanate potassium
19113                                                                                                                                   afoxolaner
19114                                                                                                                        clorsulon, ivermectin
19115                                                                                                                                    cisapride
19116                                                                                                                                   sucralfate
19117                                                                                                                                   omeprazole
19118                                                                                                                                   famotidine
19119                                                                                                                                    cisapride
19120                                                                                                                                    cisapride
19121                                                                                                       joint supplement (glucosamine hcl/msm)
19122                                                                                                                     imidacloprid, permethrin
19123                                                                                                                                   ivermectin
19124                                                                                                                                   penicillin
19125                                                                                                                                    carprofen
19126                                                                                                                                    midazolam
19127                                                                                                                                     ketamine
19128                                                                                                                         butorphanol tartrate
19129                                                                                                                                 acepromazine
19130                                                                                                                                   fluralaner
19131                                                                                                                                    cisapride
19132                                                                                                                                   famotidine
19133                                                                                                       joint supplement (glucosamine hcl/msm)
19134                                                                                                                                   ivermectin
19135                                                                                                                                    cisapride
19136                                                                                                                                   famotidine
19137                                                                                                       joint supplement (glucosamine hcl/msm)
19138                                                                                                                                    cisapride
19139                                                                                                                                   famotidine
19140                                                                                                       joint supplement (glucosamine hcl/msm)
19141                                                                                                                                      omega 3
19142                                                                                                                                    probiotic
19143                                                                                                                                    cisapride
19144                                                                                                                                   famotidine
19145                                                                                                                                      omega 3
19146                                                                                                                                    probiotic
19147                                                                                                                                   prednisone
19148                                                                                                                                   prednisone
19149                                                                                                                                    cisapride
19150                                                                                                                                   omeprazole
19151                                                                                                                                    probiotic
19152                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                                                   afoxolaner
19154                                                                                                                             milbemycin oxime
19155                                                                                                                           miconazole nitrate
19156                                                                                                                           miconazole nitrate
19157                                                                                                               milbemycin oxime, praziquantel
19158                                                                                                                                   afoxolaner
19159                                                                                                                                    lomustine
19160                                                                                                                                   prednisone
19161                                                                                                                                    firocoxib
19162                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
19163                                                                                                                                   cetirizine
19164                                                                                                                     skin and coat supplement
19165                                                                                                                 ivermectin, pyrantel pamoate
19166                                                                                                                 ivermectin, pyrantel pamoate
19167                                                                                                                     fipronil, (s)-methoprene
19168                                                                                                                         prednisolone acetate
19169                                                                                                                                   ivermectin
19170                                                                                                                     fipronil, (s)-methoprene
19171                                                                                                                                  oclacitinib
19172                                                                                                                                  oclacitinib
19173                                                                                                                                  doxycycline
19174                                                                                                                                  doxycycline
19175                                                                                                                                  doxycycline
19176                                                                                                                                 praziquantel
19177                                                                                                                                   ivermectin
19178                                                                                                                     flumethrin, imidacloprid
19179                                                                                                                                   ivermectin
19180                                                                                                                                  doxycycline
19181                                                                                                            trimeprazine tartrate, prednisone
19182                                                                                                                                   ivermectin
19183                                                                                                                     flumethrin, imidacloprid
19184                                                                                                                                   ivermectin
19185                                                                                                                                 enrofloxacin
19186                                                                                                                                   cephalexin
19187                                                                                                                  dexamethasone, enrofloxacin
19188                                                                                                            betamethasone, gentamicin sulfate
19189                                                                                                                                    carprofen
19190                                                                                                                                    carprofen
19191                                                                                                                                   cephalexin
19192                                                                                                                                   gabapentin
19193                                                                                                 florfenicol, mometasone furoate, terbinafine
19194                                                                                                                                    carprofen
19195                                                                                                                                   cetirizine
19196                                                                                                                         cefpodoxime proxetil
19197                                                                                                                           maropitant citrate
19198                                                                                                                                   cetirizine
19199                                                                                                                              diphenhydramine
19200                                                                                                                           maropitant citrate
19201                                                                                                                                   omeprazole
19202                                                                                                                                   prednisone
19203                                                                                                                                 praziquantel
19204                                                                                                                                   ivermectin
19205                                                                                                           amoxicillin, clavulanate potassium
19206                                                                                                                                   ivermectin
19207                                                                                                                                   ivermectin
19208                                                                                                                                 praziquantel
19209                                                                                                                         cefpodoxime proxetil
19210                                                                                                                                     tramadol
19211                                                                                                                                    carprofen
19212                                                                                                           amoxicillin, clavulanate potassium
19213                                                                                                                             pyrantel pamoate
19214                                                                                                                                  toltrazuril
19215                                                                                                                  lufenuron, milbemycin oxime
19216                                                                                                        dinotefuran, permethrin, pyriproxyfen
19217                                                                                                        dinotefuran, permethrin, pyriproxyfen
19218                                                                                                                            hydrogen peroxide
19219                                                                                                                                    carprofen
19220                                                                                                                 ivermectin, pyrantel pamoate
19221                                                                                                                 ivermectin, pyrantel pamoate
19222                                                                                                                                   fluralaner
19223                                                                                                                 ivermectin, pyrantel pamoate
19224                                                                                                                     flumethrin, imidacloprid
19225                                                                                                                                metronidazole
19226                                                                                                                                    probiotic
19227                                                                                                                                metronidazole
19228                                                                                                                                   sucralfate
19229                                                                                                                                metronidazole
19230                                                                                                                         cefpodoxime proxetil
19231                                                                                                                                    probiotic
19232                                                                                                                           maropitant citrate
19233                                                                                                                                   omeprazole
19234                                                                                                                                   sucralfate
19235                                                                                                                                metronidazole
19236                                                                                                                                   sucralfate
19237                                                                                                                                   famotidine
19238                                                                                                                                    carprofen
19239                                                                                                                                   cephalexin
19240                                                                                                                                    carprofen
19241                                                                                                                         cefpodoxime proxetil
19242                                                                                                                                    carprofen
19243                                                                                                                                   ivermectin
19244                                                                                                                             pyrantel pamoate
19245                                                                                                                     joint supplement (other)
19246                                                                                                                     joint supplement (other)
19247                                                                                                                                metronidazole
19248                                                                                                              aminopentamide hydrogen sulfate
19249                                                                                                                                   sucralfate
19250                                                                                                           amoxicillin, clavulanate potassium
19251                                                                                                           amoxicillin, clavulanate potassium
19252                                                                                                                                ciprofloxacin
19253                                                                                                                         cefpodoxime proxetil
19254                                                                                                                                   prednisone
19255                                                                                                                 ivermectin, pyrantel pamoate
19256                                                                                                                 ivermectin, pyrantel pamoate
19257                                                                                                                             milbemycin oxime
19258                                                                                                                             milbemycin oxime
19259                                                                                                                             milbemycin oxime
19260                                                                                                                                    meloxicam
19261                                                                                                                   sulfadiazine, trimethoprim
19262                                                                                                                                metronidazole
19263                                                                                                                           maropitant citrate
19264                                                                                                                                   sucralfate
19265                                                                                                                                    meloxicam
19266                                                                                                                             tylosin tartrate
19267                                                                                                                         cefpodoxime proxetil
19268                                                                                                                                    meloxicam
19269                                                                                                           amoxicillin, clavulanate potassium
19270                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19271                                                                                                                  lufenuron, milbemycin oxime
19272                                                                                                                                   fluralaner
19273                                                                                                                  lufenuron, milbemycin oxime
19274                                                                                                                                   fluralaner
19275                                                                                                                         cefpodoxime proxetil
19276                                                                                                 florfenicol, mometasone furoate, terbinafine
19277                                                                                                                         cefpodoxime proxetil
19278                                                                                                                  lufenuron, milbemycin oxime
19279                                                                                                                                   fluralaner
19280                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19281                                                                                                                  lufenuron, milbemycin oxime
19282                                                                                                                                   fluralaner
19283                                                                                                                                   cephalexin
19284                                                                                                                                   cephalexin
19285                                                                                                                                  oclacitinib
19286                                                                                                                                  oclacitinib
19287                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19288                                                                                                 florfenicol, mometasone furoate, terbinafine
19289                                                                                                                                    carprofen
19290                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
19291                                                                                                                                   cephalexin
19292                                                                                                           amoxicillin, clavulanate potassium
19293                                                                                                                                 enrofloxacin
19294                                                                                                                                    carprofen
19295                                                                                                                                 enrofloxacin
19296                                                                                                                                  oclacitinib
19297                                                                                                                                    carprofen
19298                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                                                 florfenicol, mometasone furoate, terbinafine
19300                                                                                                                                  oclacitinib
19301                                                                                                                                    carprofen
19302                                                                                                                 ivermectin, pyrantel pamoate
19303                                                                                                                     fipronil, (s)-methoprene
19304                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19305                                                                                                                 ivermectin, pyrantel pamoate
19306                                                                                                                     fipronil, (s)-methoprene
19307                                                                                                                                   cephalexin
19308                                                                                                                         butorphanol tartrate
19309                                                                                                                                marbofloxacin
19310                                                                                                                                    carprofen
19311                                                                                                                                    carprofen
19312                                                                                                    lufenuron, milbemycin oxime, praziquantel
19313                                                                                                                     fipronil, (s)-methoprene
19314                                                                                                                  lufenuron, milbemycin oxime
19315                                                                                                                     fipronil, (s)-methoprene
19316                                                                                                                     homatropine, hydrocodone
19317                                                                                                                  lufenuron, milbemycin oxime
19318                                                                                                                     fipronil, (s)-methoprene
19319                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19320                                                                                                                                  oclacitinib
19321                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19322                                                                                                                                    carprofen
19323                                                                                                                         prednisolone acetate
19324                                                                                                                                    trazodone
19325                                                                                                                         prednisolone acetate
19326                                                                                                                  lufenuron, milbemycin oxime
19327                                                                                                                     imidacloprid, permethrin
19328                                                                                                           amoxicillin, clavulanate potassium
19329                                                                                                                   sulfadiazine, trimethoprim
19330                                                                                                                                metronidazole
19331                                                                                                                                metronidazole
19332                                                                                                                                metronidazole
19333                                                                                                                             milbemycin oxime
19334                                                                                                                         cefpodoxime proxetil
19335                                                                                                                         cefpodoxime proxetil
19336                                                                                                                                    carprofen
19337                                                                                                           amoxicillin, clavulanate potassium
19338                                                                                                                             liver supplement
19339                                                                                                                                     ursodiol
19340                                                                                                                                metronidazole
19341                                                                                                                                 fenbendazole
19342                                                                                                     febantel, praziquantel, pyrantel pamoate
19343                                                                                                                                   cephalexin
19344                                                                                                                 ivermectin, pyrantel pamoate
19345                                                                                                                                   fluralaner
19346                                                                                                            betamethasone, gentamicin sulfate
19347                                                                                                      betamethasone, florfenicol, terbinafine
19348                                                                                                                                    carprofen
19349                                                                                                                                   cephalexin
19350                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19351                                                                                                                                    carprofen
19352                                                                                                                                    carprofen
19353                                                                                                               polysulfated glycosaminoglycan
19354                                                                                                                                 chlorambucil
19355                                                                                                                                    carprofen
19356                                                                                                                                   ivermectin
19357                                                                                                                             milbemycin oxime
19358                                                                                                                                  oclacitinib
19359                                                                                                                 ivermectin, pyrantel pamoate
19360                                                                                                                                  oclacitinib
19361                                                                                                                   imidacloprid, pyriproxyfen
19362                                                                                                                                  oclacitinib
19363                                                                                                                                sulfasalazine
19364                                                                                                                                  oclacitinib
19365                                                                                                                                   ivermectin
19366                                                                                                                                   ivermectin
19367                                                                                                                 ivermectin, pyrantel pamoate
19368                                                                                                                 ivermectin, pyrantel pamoate
19369                                                                                                                                   afoxolaner
19370                                                                                                               polysulfated glycosaminoglycan
19371                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19372                                                                                                                                    carprofen
19373                                                                                                                 ivermectin, pyrantel pamoate
19374                                                                                                                                    sarolaner
19375                                                                                                               polysulfated glycosaminoglycan
19376                                                                                                                 ivermectin, pyrantel pamoate
19377                                                                                                                                    sarolaner
19378                                                                                                               polysulfated glycosaminoglycan
19379                                                                                                                                      omega 3
19380                                                                                                                 ivermectin, pyrantel pamoate
19381                                                                                                                                    sarolaner
19382                                                                                                               polysulfated glycosaminoglycan
19383                                                                                                           amoxicillin, clavulanate potassium
19384                                                                                                               polysulfated glycosaminoglycan
19385                                                                                                               polysulfated glycosaminoglycan
19386                                                                                                                  lufenuron, milbemycin oxime
19387                                                                                                                  lufenuron, milbemycin oxime
19388                                                                                                           amoxicillin, clavulanate potassium
19389                                                                                                                                    carprofen
19390                                                                                                            betamethasone, gentamicin sulfate
19391                                                                                                                  lufenuron, milbemycin oxime
19392                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19393                                                                                                           amoxicillin, clavulanate potassium
19394                                                                                                                                    carprofen
19395                                                                                                            betamethasone, gentamicin sulfate
19396                                                                                                                             sulfadimethoxine
19397                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19398                                                                                                                                   prednisone
19399                                                                                                                  lufenuron, milbemycin oxime
19400                                                                                                                                    deracoxib
19401                                                                                                                 ivermectin, pyrantel pamoate
19402                                                                                                                 ivermectin, pyrantel pamoate
19403                                                                                                     febantel, praziquantel, pyrantel pamoate
19404                                                                                                                             sulfadimethoxine
19405                                                                                                    lufenuron, milbemycin oxime, praziquantel
19406                                                                                                                                metronidazole
19407                                                                                                    lufenuron, milbemycin oxime, praziquantel
19408                                                                                                                             milbemycin oxime
19409                                                                                                               milbemycin oxime, praziquantel
19410                                                                                                               sulfamethoxazole, trimethoprim
19411                                                                                                                         cefpodoxime proxetil
19412                                                                                                                                   grapiprant
19413                                                                                                                                  doxycycline
19414                                                                                                                                   grapiprant
19415                                                                                                                 ivermectin, pyrantel pamoate
19416                                                                                                                 ivermectin, pyrantel pamoate
19417                                                                                                                                levothyroxine
19418                                                                                                                                levothyroxine
19419                                                                                                                                    piroxicam
19420                                                                                                                                 chlorambucil
19421                                                                                                                         cefpodoxime proxetil
19422                                                                                                                          clemastine fumarate
19423                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19424                                                                                                                                     fipronil
19425                                                                                                                     fipronil, (s)-methoprene
19426                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19427                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19428                                                                                                                                  clindamycin
19429                                                                                                                                     diazepam
19430                                                                                                                                  doxycycline
19431                                                                                                                 ivermectin, pyrantel pamoate
19432                                                                                                                 ivermectin, pyrantel pamoate
19433                                                                                                                 ivermectin, pyrantel pamoate
19434                                                                                                                                      taurine
19435                                                                                                                                  l-carnitine
19436                                                                                                                                  hydroxyzine
19437                                                                                                              ear cleaner (epi-otic advanced)
19438                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19439                                                                                                                         prednisolone acetate
19440                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19441                                                                                                           amoxicillin, clavulanate potassium
19442                                                                                                            betamethasone, gentamicin sulfate
19443                                                                                                                                    deracoxib
19444                                                                                                                                     tramadol
19445                                                                                                                  lufenuron, milbemycin oxime
19446                                                                                                                       cyphenothrin, fipronil
19447                                                                                                                  lufenuron, milbemycin oxime
19448                                                                                                                                   fluralaner
19449                                                                                                   joint supplement (chondroitin sulfate/msm)
19450                                                                                                                                      omega 3
19451                                                                                                                                metronidazole
19452                                                                                                        chlorhexidine gluconate, ketoconazole
19453                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                                      ketoconazole, tris-edta
19455                                                                                                                                   omeprazole
19456                                                                                                                              diphenhydramine
19457                                                                                                                  lufenuron, milbemycin oxime
19458                                                                                                                                   prednisone
19459                                                                                                                                  amoxicillin
19460                                                                                                                         cefpodoxime proxetil
19461                                                                                                                                   fluralaner
19462                                                                                                                  lufenuron, milbemycin oxime
19463                                                                                                                                   fluralaner
19464                                                                                                                                 enrofloxacin
19465                                                                                                               ketoconazole, phytosphingosine
19466                                                                                                                                   lokivetmab
19467                                                                                                                                   gabapentin
19468                                                                                                                                    deracoxib
19469                                                                                                                                 enrofloxacin
19470                                                                                                                                  ondansetron
19471                                                                                                                                  amoxicillin
19472                                                                                                                                   lokivetmab
19473                                                                                                                                    carprofen
19474                                                                                                                                   amantadine
19475                                                                                                                                    carprofen
19476                                                                                                                                    meloxicam
19477                                                                                                                                     tramadol
19478                                                                                                                         cefpodoxime proxetil
19479                                                                                                                                   cephalexin
19480                                                                                                                                   cephalexin
19481                                                                                                                                metronidazole
19482                                                                                                                 ivermectin, pyrantel pamoate
19483                                                                                                                      acetic acid, boric acid
19484                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19485                                                                                                                                  clindamycin
19486                                                                                                                 ivermectin, pyrantel pamoate
19487                                                                                                                                   afoxolaner
19488                                                                                                                           maropitant citrate
19489                                                                                                                                   famotidine
19490                                                                                                            trimeprazine tartrate, prednisone
19491                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19492                                                                                                                 ivermectin, pyrantel pamoate
19493                                                                                                                                   afoxolaner
19494                                                                                                  chlorhexidine gluconate, miconazole nitrate
19495                                                                                                   toothpaste/dental health solution or chews
19496                                                                                                                                   lokivetmab
19497                                                                                                                 ivermectin, pyrantel pamoate
19498                                                                                                                                   afoxolaner
19499                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19500                                                                                                            betamethasone, gentamicin sulfate
19501                                                                                                  chlorhexidine gluconate, miconazole nitrate
19502                                                                                                                                   lokivetmab
19503                                                                                                                 ivermectin, pyrantel pamoate
19504                                                                                                                                   afoxolaner
19505                                                                                         burow's solution, hydrocortisone, miconazole nitrate
19506                                                                                                                                  oclacitinib
19507                                                                                                              ear cleaner (epi-otic advanced)
19508                                                                                                                 ivermectin, pyrantel pamoate
19509                                                                                                                                   afoxolaner
19510                                                                                                                                    enalapril
19511                                                                                                                                   pimobendan
19512                                                                                                                                  oclacitinib
19513                                                                                                                                   lokivetmab
19514                                                                                                 florfenicol, mometasone furoate, terbinafine
19515                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19516                                                                                                                                      taurine
19517                                                                                                                                  l-carnitine
19518                                                                                                                                   lokivetmab
19519                                                                                                                                   lokivetmab
19520                                                                                                                                    enalapril
19521                                                                                                                                   pimobendan
19522                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19523                                                                                                                      ketoconazole, tris-edta
19524                                                                                                  chlorhexidine gluconate, miconazole nitrate
19525                                                                                                                                    lomustine
19526                                                                                                                                   prednisone
19527                                                                                                                                 enrofloxacin
19528                                                                                                                                   cephalexin
19529                                                                                                                                    enalapril
19530                                                                                                                                   pimobendan
19531                                                                                                                                   verdinexor
19532                                                                                                                             liver supplement
19533                                                                                                                                   famotidine
19534                                                                                                                                    melatonin
19535                                                                                                                                    carprofen
19536                                                                                                                                   prednisone
19537                                                                                                                                   ivermectin
19538                                                                                                            enrofloxacin, silver sulfadiazine
19539                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
19540                                                                                                                                ciprofloxacin
19541                                                                                                                                   ivermectin
19542                                                                                                                                   ivermectin
19543                                                                                                                 ivermectin, pyrantel pamoate
19544                                                                                                                     fipronil, (s)-methoprene
19545                                                                                                                                  oclacitinib
19546                                                                                                                                   cephalexin
19547                                                                                                                      triamcinolone acetonide
19548                                                                                                                                    omega 3-6
19549                                                                                                                                   loratadine
19550                                                                                                                     fipronil, (s)-methoprene
19551                                                                                                                                   ivermectin
19552                                                                                                                                   loratadine
19553                                                                                                                         cefpodoxime proxetil
19554                                                                                                                                    tris-edta
19555                                                                                                                                   cephalexin
19556                                                                                                                                 azithromycin
19557                                                                                                                               benazepril hcl
19558                                                                                                                             sulfadimethoxine
19559                                                                                                                                   cephalexin
19560                                                                                                                                   prednisone
19561                                                                                                                                   cephalexin
19562                                                                                                                      chlorhexidine gluconate
19563                                                                                                                                  terbinafine
19564                                                                                                                                   prednisone
19565                                                                                                                                      omega 3
19566                                                                                                                                  terbinafine
19567                                                                                                                                 ketoconazole
19568                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
19569                                                                                                                           maropitant citrate
19570                                                                                                                           maropitant citrate
19571                                                                                                                                metronidazole
19572                                                                                                                                metronidazole
19573                                                                                                                                  plasma-lyte
19574                                                                                                                                   cephalexin
19575                                                                                                                                  terbinafine
19576                                                                                                                                   cephalexin
19577                                                                                                                                   prednisone
19578                                                                                                                                 ketoconazole
19579                                                                                                                           maropitant citrate
19580                                                                                                                                metronidazole
19581                                                                                                                                  plasma-lyte
19582                                                                                                      betamethasone, florfenicol, terbinafine
19583                                                                                                                                   cephalexin
19584                                                                                                                                   prednisone
19585                                                                                                                                 ketoconazole
19586                                                                                                                                   prednisone
19587                                                                                                                                 ketoconazole
19588                                                                                                                      chlorhexidine gluconate
19589                                                                                                                                 acepromazine
19590                                                                                                                  lufenuron, milbemycin oxime
19591                                                                                                        dinotefuran, permethrin, pyriproxyfen
19592                                                                                                      betamethasone, florfenicol, terbinafine
19593                                                                                                                                 ketoconazole
19594                                                                                                                         cefpodoxime proxetil
19595                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19596                                                                                                    lufenuron, milbemycin oxime, praziquantel
19597                                                                                                        dinotefuran, permethrin, pyriproxyfen
19598                                                                                                                         cefpodoxime proxetil
19599                                                                                                                                 ketoconazole
19600                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19601                                                                                                      betamethasone, florfenicol, terbinafine
19602                                                                                                                              dexmedetomidine
19603                                                                                                                   milbemycin oxime, spinosad
19604                                                                                                        dinotefuran, permethrin, pyriproxyfen
19605                                                                                                                                    carprofen
19606                                                                                                                                   prednisone
19607                                                                                                                                   prednisone
19608                                                                                                                                    carprofen
19609                                                                                                                                   prednisone
19610                                                                                                                 ivermectin, pyrantel pamoate
19611                                                                                                                 ivermectin, pyrantel pamoate
19612                                                                                                                     fipronil, (s)-methoprene
19613                                                                                                                 ivermectin, pyrantel pamoate
19614                                                                                                                              diphenhydramine
19615                                                                                               mometasone furoate, orbifloxacin, posaconazole
19616                                                                                                                 ivermectin, pyrantel pamoate
19617                                                                                                                     fipronil, (s)-methoprene
19618                                                                                                                              diphenhydramine
19619                                                                                                                         cefpodoxime proxetil
19620                                                                                                                                  oclacitinib
19621                                                                                                                 ivermectin, pyrantel pamoate
19622                                                                                                                     fipronil, (s)-methoprene
19623                                                                                                                                  oclacitinib
19624                                                                                                                 ivermectin, pyrantel pamoate
19625                                                                                                                                  oclacitinib
19626                                                                                                                 ivermectin, pyrantel pamoate
19627                                                                                                                     fipronil, (s)-methoprene
19628                                                                                                                                  oclacitinib
19629                                                                                                                         cefpodoxime proxetil
19630                                                                                                                                  oclacitinib
19631                                                                                                                         cefpodoxime proxetil
19632                                                                                                                                  oclacitinib
19633                                                                                                                                  oclacitinib
19634                                                                                                                                    carprofen
19635                                                                                                            betamethasone, gentamicin sulfate
19636                                                                                                                                  oclacitinib
19637                                                                                                                                   prednisone
19638                                                                                                                         cefpodoxime proxetil
19639                                                                                                                                   lokivetmab
19640                                                                                                                                    carprofen
19641                                                                                                                                yunnan baiyao
19642                                                                                                                             tylosin tartrate
19643                                                                                                                             pyrantel pamoate
19644                                                                                                                                  amoxicillin
19645                                                                                                                                metronidazole
19646                                                                                                                         digestive supplement
19647                                                                                                                             milbemycin oxime
19648                                                                                                                                    lufenuron
19649                                                                                                                                   afoxolaner
19650                                                                                                                             tylosin tartrate
19651                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
19652                                                                                                                             milbemycin oxime
19653                                                                                                                                   afoxolaner
19654                                                                                                                                   prednisone
19655                                                                                                                                   prednisone
19656                                                                                                                                   prednisone
19657                                                                                                                                  amoxicillin
19658                                                                                                                                metronidazole
19659                                                                                                                                    probiotic
19660                                                                                                                             milbemycin oxime
19661                                                                                                                                   afoxolaner
19662                                                                                                                                    probiotic
19663                                                                                                           amoxicillin, clavulanate potassium
19664                                                                                                           amoxicillin, clavulanate potassium
19665                                                                                                                                   prednisone
19666                                                                                                                             tylosin tartrate
19667                                                                                                                             milbemycin oxime
19668                                                                                                                                    sarolaner
19669                                                                                                                             milbemycin oxime
19670                                                                                                                                    sarolaner
19671                                                                                                                                  oclacitinib
19672                                                                                                                         cefpodoxime proxetil
19673                                                                                                                 ivermectin, pyrantel pamoate
19674                                                                                                                                    sarolaner
19675                                                                                                                             tylosin tartrate
19676                                                                                                                         cefpodoxime proxetil
19677                                                                                                                           maropitant citrate
19678                                                                                                                                    deracoxib
19679                                                                                                                             tylosin tartrate
19680                                                                                                                                   gabapentin
19681                                                                                                                                    carprofen
19682                                                                                                                                   prednisone
19683                                                                                                                  lufenuron, milbemycin oxime
19684                                                                                                                  lufenuron, milbemycin oxime
19685                                                                                                                  lufenuron, milbemycin oxime
19686                                                                                                                  lufenuron, milbemycin oxime
19687                                                                                                                                    deracoxib
19688                                                                                                                  lufenuron, milbemycin oxime
19689                                                                                                                  lufenuron, milbemycin oxime
19690                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19691                                                                                                                  lufenuron, milbemycin oxime
19692                                                                                                                                    deracoxib
19693                                                                                                                             milbemycin oxime
19694                                                                                                                                    lufenuron
19695                                                                                                                  lufenuron, milbemycin oxime
19696                                                                                                                  lufenuron, milbemycin oxime
19697                                                                                                                  lufenuron, milbemycin oxime
19698                                                                                                                  lufenuron, milbemycin oxime
19699                                                                                                                                  oclacitinib
19700                                                                                                                  lufenuron, milbemycin oxime
19701                                                                                                                                  oclacitinib
19702                                                                                                                  lufenuron, milbemycin oxime
19703                                                                                                                                  oclacitinib
19704                                                                                                                 ivermectin, pyrantel pamoate
19705                                                                                                                 ivermectin, pyrantel pamoate
19706                                                                                                                   imidacloprid, pyriproxyfen
19707                                                                                                                                   afoxolaner
19708                                                                                                                 ivermectin, pyrantel pamoate
19709                                                                                                                 ivermectin, pyrantel pamoate
19710                                                                                                                 ivermectin, pyrantel pamoate
19711                                                                                                    lufenuron, milbemycin oxime, praziquantel
19712                                                                                                                     flumethrin, imidacloprid
19713                                                                                                    lufenuron, milbemycin oxime, praziquantel
19714                                                                                                                     flumethrin, imidacloprid
19715                                                                                                                  lufenuron, milbemycin oxime
19716                                                                                                                     flumethrin, imidacloprid
19717                                                                                                                  lufenuron, milbemycin oxime
19718                                                                                                                     flumethrin, imidacloprid
19719                                                                                                   toothpaste/dental health solution or chews
19720                                                                                                                                  clindamycin
19721                                                                                                                                    carprofen
19722                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19723                                                                                                                                   ivermectin
19724                                                                                                           fipronil, permethrin, pyriproxyfen
19725                                                                                                                                metronidazole
19726                                                                                                                                  amoxicillin
19727                                                                                                                                     tramadol
19728                                                                                                                           menthol, lidocaine
19729                                                                                                            trimeprazine tartrate, prednisone
19730                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19731                                                                                                                                 enrofloxacin
19732                                                                                                                                    carprofen
19733                                                                                                                                     tramadol
19734                                                                                                                                   cephalexin
19735                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19736                                                                                                                                  oclacitinib
19737                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19738                                                                                                                                  oclacitinib
19739                                                                                                                                  oclacitinib
19740                                                                                                                  lufenuron, milbemycin oxime
19741                                                                                                                  lufenuron, milbemycin oxime
19742                                                                                                                                     tramadol
19743                                                                                                                                    carprofen
19744                                                                                                                         cefpodoxime proxetil
19745                                                                                                                  lufenuron, milbemycin oxime
19746                                                                                                                       cyphenothrin, fipronil
19747                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19748                                                                                                                                  hydroxyzine
19749                                                                                                                                   fluralaner
19750                                                                                                                             milbemycin oxime
19751                                                                                                                         cefpodoxime proxetil
19752                                                                                                                                  oclacitinib
19753                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19754                                                                                                                             milbemycin oxime
19755                                                                                                                                   fluralaner
19756                                                                                                                                   famotidine
19757                                                                                                                                    carprofen
19758                                                                                                                         cefpodoxime proxetil
19759                                                                                                                                   omeprazole
19760                                                                                                                           maropitant citrate
19761                                                                                                                                   omeprazole
19762                                                                                                                                  telmisartan
19763                                                                                                                                   prednisone
19764                                                                                                                                 ketoconazole
19765                                                                                                                                 ketoconazole
19766                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
19767                                                                                                             naphazoline, pheniramine maleate
19768                                                                                                                                   selamectin
19769                                                                                                                   milbemycin oxime, spinosad
19770                                                                                                                                 ketoconazole
19771                                                                                                                   milbemycin oxime, spinosad
19772                                                                                                                                    carprofen
19773                                                                                                                                 ketoconazole
19774                                                                                                                   milbemycin oxime, spinosad
19775                                                                                                                                 ketoconazole
19776                                                                                                                   milbemycin oxime, spinosad
19777                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                                              dexmedetomidine
19779                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19780                                                                                                                                    carprofen
19781                                                                                                                                   gabapentin
19782                                                                                                                                     tramadol
19783                                                                                                                   milbemycin oxime, spinosad
19784                                                                                                                                  oclacitinib
19785                                                                                                                         cefpodoxime proxetil
19786                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
19787                                                                                                                         cefpodoxime proxetil
19788                                                                                                  chlorhexidine gluconate, miconazole nitrate
19789                                                                                                                                    cefovecin
19790                                                                                                                                    mupirocin
19791                                                                                                                                    cefovecin
19792                                                                                                           chlorhexidine gluconate, ophytrium
19793                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19794                                                                                                                  lufenuron, milbemycin oxime
19795                                                                                                                                   fluralaner
19796                                                                                                                                marbofloxacin
19797                                                                                                                               pentoxifylline
19798                                                                                                                                marbofloxacin
19799                                                                                                                               pentoxifylline
19800                                                                                                                  lufenuron, milbemycin oxime
19801                                                                                                                                   fluralaner
19802                                                                                                                  lufenuron, milbemycin oxime
19803                                                                                                                  lufenuron, milbemycin oxime
19804                                                                                                                  lufenuron, milbemycin oxime
19805                                                                                                                                   fluralaner
19806                                                                                                                                  shen calmer
19807                                                                                                                         cefpodoxime proxetil
19808                                                                                                                                   lokivetmab
19809                                                                                                                                metronidazole
19810                                                                                                                         prebiotic, probiotic
19811                                                                                                                         cefpodoxime proxetil
19812                                                                                                                 ivermectin, pyrantel pamoate
19813                                                                                                                                 multivitamin
19814                                                                                                                         cefpodoxime proxetil
19815                                                                                                                                   loratadine
19816                                                                                                        dinotefuran, permethrin, pyriproxyfen
19817                                                                                                                                 multivitamin
19818                                                                                                                                   ivermectin
19819                                                                                                                                  oclacitinib
19820                                                                                                                             milbemycin oxime
19821                                                                                                        dinotefuran, permethrin, pyriproxyfen
19822                                                                                                                                     tramadol
19823                                                                                                                           gentamicin sulfate
19824                                                                                                                         cefpodoxime proxetil
19825                                                                                                        dinotefuran, permethrin, pyriproxyfen
19826                                                                                                                             milbemycin oxime
19827                                                                                                                                   lokivetmab
19828                                                                                                               milbemycin oxime, praziquantel
19829                                                                                                        dinotefuran, permethrin, pyriproxyfen
19830                                                                                                                                   lokivetmab
19831                                                                                                                         cefpodoxime proxetil
19832                                                                                                                             milbemycin oxime
19833                                                                                                        dinotefuran, permethrin, pyriproxyfen
19834                                                                                                       joint supplement (glucosamine hcl/msm)
19835                                                                                                                         cefpodoxime proxetil
19836                                                                                                            betamethasone, gentamicin sulfate
19837                                                                                               mometasone furoate, orbifloxacin, posaconazole
19838                                                                                                                                  omega 3-6-9
19839                                                                                                                           maropitant citrate
19840                                                                                                                            piroctone olamine
19841                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19842                                                                                                                                   grapiprant
19843                                                                                               mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                                                   lokivetmab
19845                                                                                               mometasone furoate, orbifloxacin, posaconazole
19846                                                                                                 florfenicol, mometasone furoate, terbinafine
19847                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19848                                                                                                                                   gabapentin
19849                                                                                                                                   trilostane
19850                                                                                                                                   grapiprant
19851                                                                                                                                   ivermectin
19852                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19853                                                                                                                             milbemycin oxime
19854                                                                                                                                     fipronil
19855                                                                                                                                metronidazole
19856                                                                                                                             milbemycin oxime
19857                                                                                                                                     fipronil
19858                                                                                                                                  oclacitinib
19859                                                                                                                                  oclacitinib
19860                                                                                                                                    carprofen
19861                                                                                                                                  oclacitinib
19862                                                                                                                     fipronil, (s)-methoprene
19863                                                                                                                             milbemycin oxime
19864                                                                                                               sulfamethoxazole, trimethoprim
19865                                                                                                                                     tramadol
19866                                                                                                            betamethasone, gentamicin sulfate
19867                                                                                                               milbemycin oxime, praziquantel
19868                                                                                                                                  oclacitinib
19869                                                                                                                                   afoxolaner
19870                                                                                                                             milbemycin oxime
19871                                                                                                                                 praziquantel
19872                                                                                                                                  oclacitinib
19873                                                                                                               milbemycin oxime, praziquantel
19874                                                                                                                                   afoxolaner
19875                                                                                                                                  oclacitinib
19876                                                                                                                                marbofloxacin
19877                                                                                                                                   cephalexin
19878                                                                                                               sulfamethoxazole, trimethoprim
19879                                                                                                                                  oclacitinib
19880                                                                                                     febantel, praziquantel, pyrantel pamoate
19881                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19882                                                                                                                                    carprofen
19883                                                                                                                         cefpodoxime proxetil
19884                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19885                                                                                                                                  oclacitinib
19886                                                                                                                                  oclacitinib
19887                                                                                                                     imidacloprid, moxidectin
19888                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19889                                                                                                                                   cephalexin
19890                                                                                                                                   gabapentin
19891                                                                                                                   milbemycin oxime, spinosad
19892                                                                                                                                metronidazole
19893                                                                                                                   milbemycin oxime, spinosad
19894                                                                                                                             milbemycin oxime
19895                                                                                                                                    lufenuron
19896                                                                                                                                 praziquantel
19897                                                                                                                         cefpodoxime proxetil
19898                                                                                                                         cefpodoxime proxetil
19899                                                                                                                        trimeprazine tartrate
19900                                                                                                                         prednisolone acetate
19901                                                                                                                                   afoxolaner
19902                                                                                                                 ivermectin, pyrantel pamoate
19903                                                                                                                                   afoxolaner
19904                                                                                                                 ivermectin, pyrantel pamoate
19905                                                                                                                                   afoxolaner
19906                                                                                                                                  oclacitinib
19907                                                                                                                   milbemycin oxime, spinosad
19908                                                                                                                         cefpodoxime proxetil
19909                                                                                                                             milbemycin oxime
19910                                                                                                                         cefpodoxime proxetil
19911                                                                                                   toothpaste/dental health solution or chews
19912                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19913                                                                                                                               chlorphenamine
19914                                                                                                                         prebiotic, probiotic
19915                                                                                                                                levothyroxine
19916                                                                                                                                levothyroxine
19917                                                                                                         diatomaceous earth, neem oil, yarrow
19918                                                                                                                                levothyroxine
19919                                                                                                                                levothyroxine
19920                                                                                                                                    thyroxine
19921                                                                                                                                    thyroxine
19922                                                                                                                                    thyroxine
19923                                                                                                                                    mupirocin
19924                                                                                                                                  clindamycin
19925                                                                                                                                 enrofloxacin
19926                                                                                                                                  florfenicol
19927                                                                                                                           gentamicin sulfate
19928                                                                                                                                  polymyxin b
19929                                                                                                                                    thyroxine
19930                                                                                                                   milbemycin oxime, spinosad
19931                                                                                                                                  amoxicillin
19932                                                                                                                   milbemycin oxime, spinosad
19933                                                                                                                   milbemycin oxime, spinosad
19934                                                                                                                                 enrofloxacin
19935                                                                                                                                  amoxicillin
19936                                                                                                                   milbemycin oxime, spinosad
19937                                                                                                                      ketoconazole, tris-edta
19938                                                                                                            trimeprazine tartrate, prednisone
19939                                                                                                                         cefpodoxime proxetil
19940                                                                                                            trimeprazine tartrate, prednisone
19941                                                                                                                                  amoxicillin
19942                                                                                                                                     tramadol
19943                                                                                                                   milbemycin oxime, spinosad
19944                                                                                                           joint supplement (glucosamine hcl)
19945                                                                                                                                      omega 3
19946                                                                                                                   milbemycin oxime, spinosad
19947                                                                                                           joint supplement (glucosamine hcl)
19948                                                                                                                                      omega 3
19949                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                                      omega 3
19951                                                                                                                         cefpodoxime proxetil
19952                                                                                                                             pyrantel pamoate
19953                                                                                                                             pyrantel pamoate
19954                                                                                                                 ivermectin, pyrantel pamoate
19955                                                                                                                 ivermectin, pyrantel pamoate
19956                                                                                                                 ivermectin, pyrantel pamoate
19957                                                                                                                 ivermectin, pyrantel pamoate
19958                                                                                                                     flumethrin, imidacloprid
19959                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19960                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19961                                                                                                                                    carprofen
19962                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19963                                                                                                                                    carprofen
19964                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19965                                                                                                                                    carprofen
19966                                                                                                                                    carprofen
19967                                                                                                                                     tramadol
19968                                                                                                                                    carprofen
19969                                                                                                            betamethasone, gentamicin sulfate
19970                                                                                                                                       plasma
19971                                                                                                                  lufenuron, milbemycin oxime
19972                                                                                                                 ivermectin, pyrantel pamoate
19973                                                                                                                         cefpodoxime proxetil
19974                                                                                                                                    firocoxib
19975                                                                                                                 ivermectin, pyrantel pamoate
19976                                                                                                                                    carprofen
19977                                                                                                                                levothyroxine
19978                                                                                                                 ivermectin, pyrantel pamoate
19979                                                                                                                 ivermectin, pyrantel pamoate
19980                                                                                                                                levothyroxine
19981                                                                                                                                    carprofen
19982                                                                                                                                   lokivetmab
19983                                                                                                                                levothyroxine
19984                                                                                                                                   fluralaner
19985                                                                                                                                levothyroxine
19986                                                                                                                                levothyroxine
19987                                                                                                                                levothyroxine
19988                                                                                                                                    carprofen
19989                                                                                                                                  amoxicillin
19990                                                                                                                                    probiotic
19991                                                                                                                 ivermectin, pyrantel pamoate
19992                                                                                                       cyphenothrin, fipronil, (s)-methoprene
19993                                                                                                                                    carprofen
19994                                                                                                                         cefpodoxime proxetil
19995                                                                                                                                   ivermectin
19996                                                                                                                                   ivermectin
19997                                                                                                                                   afoxolaner
19998                                                                                                                 ivermectin, pyrantel pamoate
19999                                                                                                           amoxicillin, clavulanate potassium
                                                                                                       dose
1                                                                                                    500.00
2                                                                                                      87.5
3                                                                                                     12.00
4                                                                                                    460.00
5                                                                                                      1.00
6                                                                                                    300.00
7                                                                                                     50.00
8                                                                                                      2.50
9                                                                                                    300.00
10                                                                                                     1.00
11                                                                                                     1.00
12                                                                                                     0.30
13                                                                                                    50.00
14                                                                                                    60.00
15                                                                                                   680.00
16                                                                                                     3.00
17                                                                                                     3.00
18                                                                                                     1.00
19                                                                                                     1.00
20                                                                                                     1.00
21                                                                                                    50.00
22                                                                                              unspecified
23                                                                                                   300.00
24                                                                                                     2.27
25                                                                                                   200.00
26                                                                                                   325.00
27                                                                                                   375.00
28                                                                                                     6.00
29                                                                                                   150.00
30                                                                                                    30.00
31                                                                                                   640.00
32                                                                                                     5.50
33                                                                                                    40.00
34                                                                                                     6.00
35                                                                                                     6.00
36                                                                                                   375.00
37                                                                                                     2.72
38                                                                                                    23.00
39                                                                                                     0.56
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
43                                                                                                    25.00
44                                                                                                   500.00
45                                                                                                   227.00
46                                                                              based on weight (40-60 lbs)
47                                                                                                   272.00
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
50                                                                                                   100.00
51                                                                              based on weight (21-40 lbs)
52                                                                                                   500.00
53                                                                                                   272.00
54                                                                                                   500.00
55                                                                                                   227.00
56                                                                                                     1.00
57                                                                                                100000.00
58                                                                                                    40.00
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
61                                                                                                   500.00
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
64                                                                                                   750.00
65                                                                                                  1000.00
66                                                                                                     1.00
67                                                                                              application
68                                                                                                    20.00
69                                                                                                   500.00
70                                                                                              application
71                                                                                                   200.00
72                                                                                                     3.00
73                                                                                                     1.00
74                                                                                              bottle/vial
75                                                                                                     1.00
76                                                                                                   500.00
77                                                                                                     1.00
78                                                                                                     4.00
79                                                                                                    50.00
80                                                                                                   750.00
81                                                                                                    60.00
82                                                                                                  1000.00
83                                                                                                     1.00
84                                                                                              application
85                                                                                                    20.00
86                                                                                                   100.00
87                                                                                              application
88                                                                                                    50.00
89                                                                                                   100.00
90                                                                                                   100.00
91                                                                                              application
92                                                                                                  1000.00
93                                                                                                  1000.00
94                                                                                                    60.00
95                                                                                                   400.00
96                                                                                                  1500.00
97                                                                                                  1105.00
98                                                                                                     1.00
99                                                                                                   300.00
100                                                                                                  500.00
101                                                                                                  100.00
102                                                                                                  200.00
103                                                                                                  200.00
104                                                                                                 1000.00
105                                                                                                  150.00
106                                                                                                  300.00
107                                                                                                  200.00
108                                                                                                    0.75
109                                                                                                   25.00
110                                                                                                  100.00
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
115                                                                                                    1.00
116                                                                                                    1.00
117                                                                                                  100.00
118                                                                                                    1.00
119                                                                                                    1.00
120                                                                                                    1.00
121                                                                                                    3.00
122                                                                                                    1.50
123                                                                                                 1000.00
124                                                                                                    0.90
125                                                                                                   60.00
126                                                                                                 1000.00
127                                                                                                  400.00
128                                                                                                    2.00
129                                                                                                    1.00
130                                                                                                    1.00
131                                                                                                    1.00
132                                                                                                    1.00
133                                                                                                  113.50
134                                                                                                  100.00
135                                                                                                    8.00
136                                                                                                    8.00
137                                                                                                  272.00
138                                                                                                  200.00
139                                                                                                  750.00
140                                                                                                    3.50
141                                                                                                  600.00
142                                                                                                   60.00
143                                                                                                  100.00
144                                                                                                  500.00
145                                                                                                   75.00
146                                                                                                   50.00
147                                                                                                  150.00
148                                                                                                  100.00
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
154                                                                                                  500.00
155                                                                                             unspecified
156                                                                                                    3.00
157                                                                                                  400.00
158                                                                                                 1000.00
159                                                                                                  500.00
160                                                                                                   60.00
161                                                                                                    1.00
162                                                                                                    1.00
163                                                                                                    0.90
164                                                                                                    1.00
165                                                                                                    3.00
166                                                                                                 1500.00
167                                                                                             unspecified
168                                                                                                  100.00
169                                                                                                   30.00
170                                                                                                    1.00
171                                                                                                  272.00
172                                                                                                  300.00
173                                                                                                    1.00
174                                                                                                    3.50
175                                                                                                    1.00
176                                                                                                    1.00
177                                                                                                   25.00
178                                                                                                   20.00
179                                                                                                    6.00
180                                                                                                    0.70
181                                                                                                    0.80
182                                                                                                    0.76
183                                                                                                    0.70
184                                                                                                 1000.00
185                                                                                                    0.70
186                                                                                                 1000.00
187                                                                                                  112.50
188                                                                             based on weight (44-88 lbs)
189                                                                                                    0.86
190                                                                                                   16.00
191                                                                                                    0.80
192                                                                             based on weight (44-88 lbs)
193                                                                                                    0.60
194                                                                                                    0.60
195                                                                                                    66.5
196                                                                                                    0.59
197                                                                                                    0.60
198                                                                                                 1000.00
199                                                                                                  150.00
200                                                                                                   30.00
201                                                                                               300000.00
202                                                                                                  720.00
203                                                                                                  145.00
204                                                                                                    0.30
205                                                                                                   75.00
206                                                                                                  437.50
207                                                                                                 1000.00
208                                                                                                    0.17
209                                                                                                    0.60
210                                                                                                  112.50
211                                                                                                   26.80
212                                                                                                  130.00
213                                                                                                  640.00
214                                                                                                  375.00
215                                                                                                  100.00
216                                                                                                    0.60
217                                                                                                    1.00
218                                                                                                   13.00
219                                                                                                    0.60
220                                                                             based on weight (44-88 lbs)
221                                                                                                  375.00
222                                                                                                  300.00
223                                                                                                    3.20
224                                                                                                  100.00
225                                                                                                  500.00
226                                                                                                   20.00
227                                                                                                  272.00
228                                                                                                  500.00
229                                                                                                    1.00
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
231                                                                                                  500.00
232                                                                                                    2.27
233                                                                                               4-6 drops
234                                                                                                    0.09
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
240                                                                                                    2.68
241                                                                                                   60.00
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
244                                                                                                    66.5
245                                                                                                   60.00
246                                                                                                   70.00
247                                                                                                   60.00
248                                                                                                  1 tube
249                                                                                                   60.00
250                                                                                                    1.00
251                                                                                                   75.00
252                                                                                                   50.00
253                                                                                                  125.00
254                                                                                                   50.00
255                                                                                                  480.00
256                                                                                                   13.50
257                                                                             based on weight (40-60 lbs)
258                                                                                                    1.00
259                                                                                                    1.00
260                                                                                                   37.50
261                                                                                                   23.00
262                                                                                                   20.00
263                                                                                                  540.00
264                                                                                                   20.00
265                                                                                                   20.00
266                                                                                                    1.00
267                                                                                                  500.00
268                                                                                                  500.00
269                                                                                                   60.00
270                                                                                                  425.00
271                                                                                                  100.00
272                                                                                                   16.00
273                                                                                                    1.00
274                                                                                                    1.00
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
278                                                                                                    8.00
279                                                                                            small amount
280                                                                                                   spray
281                                                                                                    2.00
282                                                                                                    1.00
283                                                                                                    1.00
284                                                                                                    1.00
285                                                                                                    8.00
286                                                                                                    1.00
287                                                                                                  272 mg
288                                                                                                  272.00
289                                                                                                  500.00
290                                                                                                   23.00
291                                                                                                  375.00
292                                                                                                    7.00
293                                                                                                  150.00
294                                                                                                   50.00
295                                                                                               810000.00
296                                                                                                  150.00
297                                                                                                  125.00
298                                                                                                  500.00
299                                                                                                  375.00
300                                                                                                    7.00
301                                                                                                  100.00
302                                                                                                  300.00
303                                                                                                    7.00
304                                                                                                  500.00
305                                                                                                   37.50
306                                                                                                  500.00
307                                                                                                  375.00
308                                                                                                    0.80
309                                                                                                    8.80
310                                                                                             unspecified
311                                                                                                  200.00
312                                                                                                    1.00
313                                                                                                  500.00
314                                                                                                 1800.00
315                                                                                                  750.00
316                                                                                                  870.00
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
319                                                                                                    7.50
320                                                                                                  500.00
321                                                                                                  300.00
322                                                                                                  500.00
323                                                                                                  272.00
324                                                                                             as directed
325                                                                                                  136.00
326                                                                                                  150.00
327                                                                                                    7.00
328                                                                                         based on weight
329                                                                                         based on weight
330                                                                                                  200.00
331                                                                                                  200.00
332                                                                                         based on weight
333                                                                                         based on weight
334                                                                                                   40.00
335                                                                                                   20.00
336                                                                                                   20.00
337                                                                                                   75.00
338                                                                                                  200.00
339                                                                                                  500.00
340                                                                                                   75.00
341                                                                                                  272.00
342                                                                                                    1.00
343                                                                                                    7.20
344                                                                                                    2.90
345                                                                                                  375.00
346                                                                                                  136.00
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
349                                                                                                    1.00
350                                                                                                 23, 460
351                                                                                                 23, 460
352                                                                                                   80.00
353                                                                                                 23, 460
354                                                                                                   80.00
355                                                                                                 23, 460
356                                                                                                  300.00
357                                                                                                  200.00
358                                                                                                  500.00
359                                                                                                  300.00
360                                                                                                  150.00
361                                                                                                   60.00
362                                                                                                  100.00
363                                                                                                  100.00
364                                                                                                  500.00
365                                                                                                 1000.00
366                                                                                             unspecified
367                                                                                                    1.00
368                                                                            based on weight (60-121 lbs)
369                                                                                                  136.00
370                                                                                                    1.00
371                                                                                                    0.01
372                                                                                                  136 mg
373                                                                                                    1.00
374                                                                                                    1.00
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
377                                                                                                    0.01
378                                                                                                   30.00
379                                                                                                   10.00
380                                                                                                    0.50
381                                                                                                    3.00
382                                                                                                    1.00
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
387                                                                                                  500.00
388                                                                                                   14.00
389                                                                                                  483.00
390                                                                                                  136.00
391                                                                                                    8.80
392                                                                                                  136.00
393                                                                                                    8.80
394                                                                                                  125.00
395                                                                                                   14.34
396                                                                                                    2.05
397                                                                                                    1.00
398                                                                                                  500.00
399                                                                                                    4.00
400                                                                                                    2.00
401                                                                                                    1.00
402                                                                                                      75
403                                                                                             unspecified
404                                                                                             unspecified
405                                                                                                  100.00
406                                                                                                  272.00
407                                                                                                   23.00
408                                                                                                   50.00
409                                                                                                  250.00
410                                                                                                    0.30
411                                                                                                   75.00
412                                                                                                   10.00
413                                                                                                  100.00
414                                                                                           23 mg, 460 mg
415                                                                                                   24.00
416                                                                                                    1.00
417                                                                                                   23.00
418                                                                                                  272.00
419                                                                                                   16.00
420                                                                                                  100.00
421                                                                                                    1.00
422                                                                                                    3.00
423                                                                                                   30.00
424                                                                                                  100.00
425                                                                                                  100.00
426                                                                                                  200.00
427                                                                                                    2.00
428                                                                                                  100.00
429                                                                                                  272.00
430                                                                                                  136.00
431                                                                                                   16.00
432                                                                                                  100.00
433                                                                                                  272.00
434                                                                                                   68.00
435                                                                                                   16.00
436                                                                                                 1400.00
437                                                                                                  400.00
438                                                                                                  110.00
439                                                                                                  272.00
440                                                                                                  136.00
441                                                                                                   16.00
442                                                                                                  110.00
443                                                                                                   16.00
444                                                                                                   16.00
445                                                                                                  300.00
446                                                                                                   16.00
447                                                                                             unspecified
448                                                                                                  300.00
449                                                                                             unspecified
450                                                                                                  100.00
451                                                                                                   20.00
452                                                                                                   16.00
453                                                                                             unspecified
454                                                                                                  100.00
455                                                                                                  300.00
456                                                                                                   24.00
457                                                                                                    4.00
458                                                                                                   30.00
459                                                                                                   50.00
460                                                                                                   20.00
461                                                                                                    1.00
462                                                                                                    1.00
463                                                                                                  272.00
464                                                                                                  272.00
465                                                                                                   68.00
466                                                                                                  272.00
467                                                                                                   68.00
468                                                                                                   80.00
469                                                                                                  150.00
470                                                                                                   50.00
471                                                                                                    2.50
472                                                                                                   10.70
473                                                                                                    1.00
474                                                                                                  272.00
475                                                                                                    0.70
476                                                                                                   30.00
477                                                                                                  120.00
478                                                                                                  272.00
479                                                                                                   68.00
480                                                                                                  1 tube
481                                                                                                  150.00
482                                                                                                   60.00
483                                                                                                  375.00
484                                                                                                    2.50
485                                                                                                   60.00
486                                                                                                   50.00
487                                                                                                  272.00
488                                                                                                   68.00
489                                                                                                   60.00
490                                                                                                  375.00
491                                                                                                    1.00
492                                                                                                  272.00
493                                                                                                  375.00
494                                                                                                  227.00
495                                                                                                  136.00
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
499                                                                                                 1000.00
500                                                                                                 1000.00
501                                                                                                  100.00
502                                                                                                   10.00
503                                                                                                   37.50
504                                                                                                    1.00
505                                                                                                    1.00
506                                                                                                  500.00
507                                                                                                   50.00
508                                                                                                   75.00
509                                                                                                    1.00
510                                                                                                   15.00
511                                                                                                  500.00
512                                                                                                   50.00
513                                                                                                  272.00
514                                                                                                   68.00
515                                                                                                   15.00
516                                                                                                    1.00
517                                                                                                   50.00
518                                                                                                  500.00
519                                                                                                inhalant
520                                                                                                  300.00
521                                                                                                   12.00
522                                                                                                   40.00
523                                                                                                  272.00
524                                                                                                  136.00
525                                                                                                  375.00
526                                                                                                  272.00
527                                                                                                  136.00
528                                                                                                   16.00
529                                                                                                   16.00
530                                                                                                    1.00
531                                                                                                  500.00
532                                                                                                  272.00
533                                                                                                  136.00
534                                                                                                  272.00
535                                                                                                  136.00
536                                                                                                  500.00
537                                                                                                   drops
538                                                                                                    1.00
539                                                                                                    1.00
540                                                                                                    1.00
541                                                                                                    1.00
542                                                                                                    2.00
543                                                                                                   75.00
544                                                                                                   75.00
545                                                                                                    1.00
546                                                                                                  272.00
547                                                                                                  500.00
548                                                                                                    2.00
549                                                                                                  125.00
550                                                                                                  125.00
551                                                                                                    1.00
552                                                                                                   50.00
553                                                                                                  200.00
554                                                                                                    1.00
555                                                                                                    1.00
556                                                                                                  160.00
557                                                                                                    1.00
558                                                                                                    1.20
559                                                                                                    3.50
560                                                                                                   20.00
561                                                                                                   20.00
562                                                                                                   10.00
563                                                                                                  272.00
564                                                                                                  500.00
565                                                                                                  500.00
566                                                                                                  100.00
567                                                                                                  500.00
568                                                                                                    1.00
569                                                                                                    5.00
570                                                                                                    5.00
571                                                                                                    0.20
572                                                                                                    0.30
573                                                                                                    0.40
574                                                                                                    1.00
575                                                                                                    1.40
576                                                                                                    2.00
577                                                                                                  160.00
578                                                                                                   20.00
579                                                                                                   20.00
580                                                                                                   15.00
581                                                                                                   10.00
582                                                                                                    6.00
583                                                                                                  500.00
584                                                                                                  250.00
585                                                                                                  200.00
586                                                                                                   50.00
587                                                                                                  200.00
588                                                                                                   50.00
589                                                                                                   68.00
590                                                                                                  500.00
591                                                                                                   50.00
592                                                                                                   20.00
593                                                                                                  200.00
594                                                                                                    5.00
595                                                                                                  200.00
596                                                                                                   50.00
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
599                                                                                                    1.00
600                                                                                                    1.00
601                                                                                                   50.00
602                                                                                                  200.00
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
605                                                                                                    1.00
606                                                                                                    1.00
607                                                                                                   50.00
608                                                                                                    1.00
609                                                                                                    1.00
610                                                                                            small amount
611                                                                                                   50.00
612                                                                                                  200.00
613                                                                                                  200.00
614                                                                                                   16.00
615                                                                                                   50.00
616                                                                                                  300.00
617                                                                                                   75.00
618                                                                                                  200.00
619                                                                                             unspecified
620                                                                                                  100.00
621                                                                                                    3.00
622                                                                                                   75.00
623                                                                                                   60.00
624                                                                                                   60.00
625                                                                                                   15.00
626                                                                                                  150.00
627                                                                                                   60.00
628                                                                                                  500.00
629                                                                                                   80.00
630                                                                                                    6.00
631                                                                                                    4.00
632                                                                                                    3.00
633                                                                                                  500.00
634                                                                                                    1.00
635                                                                                                    3 mg
636                                                                                                  272.00
637                                                                                         based on weight
638                                                                                                    3.00
639                                                                                                  600.00
640                                                                                                  500.00
641                                                                                                  272.00
642                                                                                            small amount
643                                                                                                    5.00
644                                                                                                  272.00
645                                                                                                    3 mg
646                                                                                                    5.00
647                                                                                                   10.00
648                                                                                                    6.00
649                                                                                                   16.00
650                                                                                                    1.00
651                                                                                                  272.00
652                                                                                                   10.00
653                                                                                                    6.00
654                                                                                                   16.00
655                                                                                                  227.00
656                                                                                                   10.00
657                                                                                                  200.00
658                                                                                                    3.00
659                                                                                                  272.00
660                                                                                                  227.00
661                                                                                                    1.10
662                                                                                                  500.00
663                                                                                                   20.00
664                                                                                                    2.00
665                                                                                                   34.00
666                                                                                                   30.00
667                                                                                                    2.00
668                                                                                                    1.00
669                                                                                                  250.00
670                                                                                                  300.00
671                                                                                                  272.00
672                                                                                                    2.00
673                                                                                                  300.00
674                                                                                                  272.00
675                                                                                                  136.00
676                                                                                                    2.00
677                                                                                                    5.00
678                                                                                                  500.00
679                                                                                                  500.00
680                                                                                                   90.00
681                                                                                                  300.00
682                                                                                                  850.00
683                                                                                                  100.00
684                                                                                                  500.00
685                                                                                                   30.00
686                                                                                             unspecified
687                                                                                                  100.00
688                                                                                             unspecified
689                                                                                                  340.00
690                                                                                                  100.00
691                                                                                                   10.00
692                                                                                                  100.00
693                                                                                                   30.00
694                                                                                                    2.00
695                                                                                                    0.70
696                                                                                                   10.00
697                                                                                                   25.00
698                                                                                                   50.00
699                                                                                                    2.00
700                                                                                                  272.00
701                                                                                                   75.00
702                                                                                                   15.00
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
705                                                                                                   23.00
706                                                                                                   80.00
707                                                                                                    1.00
708                                                                                                    1.00
709                                                                                             unspecified
710                                                                                             unspecified
711                                                                                                   55.00
712                                                                                             unspecified
713                                                                                                  150.00
714                                                                                                    1.50
715                                                                                                  500.00
716                                                                                                  425.00
717                                                                                                 1000.00
718                                                                                                   55.00
719                                                                                                    0.60
720                                                                                                  150.00
721                                                                                                   30.00
722                                                                                                    8.00
723                                                                                                   20.00
724                                                                                                    8.00
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
726                                                                                                    8.00
727                                                                                                    1.00
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
732                                                                                                   16.00
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
740                                                                                                    5.00
741                                                                                                    1.00
742                                                                                                  250.00
743                                                                                                  204.00
744                                                                                                    1.00
745                                                                                                    1.00
746                                                                                                  250.00
747                                                                                                    1.00
748                                                                                                    0.80
749                                                                                                    5.00
750                                                                                                  136 mg
751                                                                                                   50.00
752                                                                                                    8.00
753                                                                                                  500.00
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
756                                                                                                      66
757                                                                            based on weight (51-100 lbs)
758                                                                                                  300.00
759                                                                                                    1.00
760                                                                                                  1 drop
761                                                                                                    1.00
762                                                                                                  400.00
763                                                                                                    1.00
764                                                                                                  272.00
765                                                                                                  100.00
766                                                                                                  110.00
767                                                                                                    2.00
768                                                                                                    8.00
769                                                                                                   90.00
770                                                                                                   23.00
771                                                                                                   50 mg
772                                                                                                   23.00
773                                                                                                   23.00
774                                                                                                   23.00
775                                                                                                   23.00
776                                                                                                  500.00
777                                                                                                   50.00
778                                                                                             unspecified
779                                                                                                  360.00
780                                                                                                   50.00
781                                                                                                   10.00
782                                                                                                  360.00
783                                                                                                   50.00
784                                                                                                  460.00
785                                                                            based on weight (60-120 lbs)
786                                                                                                   27.00
787                                                                                                 1620.00
788                                                                                                    2.68
789                                                                                                45387.00
790                                                                            based on weight (60-120 lbs)
791                                                                                                 1000.00
792                                                                            based on weight (51-100 lbs)
793                                                                                                  900.00
794                                                                                                  900.00
795                                                                                                  200.00
796                                                                                                   75.00
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
805                                                                                                   75.00
806                                                                                                  227.00
807                                                                                                    2.68
808                                                                                                  272.00
809                                                                                                 1000.00
810                                                                             based on weight (40-85 lbs)
811                                                                                                    7.00
812                                                                                                   50.00
813                                                                                                   50.00
814                                                                                                 1000.00
815                                                                                                  200.00
816                                                                                             unspecified
817                                                                                                   40.00
818                                                                                                  136.00
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
821                                                                                                  136.00
822                                                                                                    9.80
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
825                                                                                                  136.00
826                                                                                                   64.00
827                                                                                                    1.00
828                                                                                                    1.00
829                                                                                                    1.00
830                                                                                                    1.00
831                                                                                                   10.00
832                                                                                             unspecified
833                                                                                                   50.00
834                                                                                                  100.00
835                                                                                                  200.00
836                                                                                                  300.00
837                                                                                                   30.00
838                                                                                                   24.00
839                                                                                                    2.50
840                                                                                                   15.00
841                                                                                                   25.00
842                                                                                                   60.00
843                                                                                                    5.00
844                                                                                                    3.00
845                                                                                                  250.00
846                                                                                                    1.00
847                                                                                                    3.00
848                                                                                                    1.00
849                                                                                                    1.00
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
852                                                                                                  272.00
853                                                                                                  136.00
854                                                                                                  272.00
855                                                                                                  136.00
856                                                                                                  272.00
857                                                                                                  136.00
858                                                                                                  100.00
859                                                                                                   75.00
860                                                                                                   30.00
861                                                                                                   10.00
862                                                                                         based on weight
863                                                                                                  200 mg
864                                                                                                    4.00
865                                                                                                  227.00
866                                                                                                  200.00
867                                                                                                  113.50
868                                                                                                   37.50
869                                                                                                  300.00
870                                                                                                   30.00
871                                                                                               13.5, 810
872                                                                                                  810.00
873                                                                                                   13.50
874                                                                                                27, 1620
875                                                                                                   27.00
876                                                                                                  750.00
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
881                                                                                                    90.5
882                                                                                                   50.00
883                                                                                                  100.00
884                                                                                               13.5, 810
885                                                                                                  810.00
886                                                                                                   13.50
887                                                                                                27, 1620
888                                                                                                  500.00
889                                                                                                   27.00
890                                                                                                   37.50
891                                                                                                27, 1620
892                                                                                                  136.00
893                                                                                                27, 1620
894                                                                                                    5.50
895                                                                                                   20.00
896                                                                                                   10.00
897                                                                                                   10.00
898                                                                                                   50.00
899                                                                                                27, 1620
900                                                                                                    90.5
901                                                                                             unspecified
902                                                                                                  272.00
903                                                                                                    4.02
904                                                                                                    3.00
905                                                                                             unspecified
906                                                                                                   16.00
907                                                                                                  272.00
908                                                                                                   16.00
909                                                                                                  272.00
910                                                                                                  272.00
911                                                                                                  227.00
912                                                                                                  272.00
913                                                                               based on weight (55+ lbs)
914                                                                                                  272.00
915                                                                                                   50.00
916                                                                                                  200.00
917                                                                                                  227 mg
918                                                                                                  250 mg
919                                                                                                   75.00
920                                                                                                  437.50
921                                                                            based on weight (51-100 lbs)
922                                                                                                    1.00
923                                                                                                    1.00
924                                                                                                    1.90
925                                                                                                    1.30
926                                                                                                   13.00
927                                                                                                    0.34
928                                                                                                  100.00
929                                                                                                  1 drop
930                                                                                                  1 drop
931                                                                                                    1.00
932                                                                                                    1.00
933                                                                                                  136.00
934                                                                                                  272.00
935                                                                                                   50.00
936                                                                                                    1.00
937                                                                                                    1.00
938                                                                                                   50.00
939                                                                                                 1000.00
940                                                                                                   25.00
941                                                                                                   20.00
942                                                                                                  375.00
943                                                                                                  150.00
944                                                                                                  200.00
945                                                                                                  100.00
946                                                                                                  150.00
947                                                                                                  200.00
948                                                                                                  100.00
949                                                                                                    1.00
950                                                                                   1 tablet/pill/capsule
951                                                                                                    1.00
952                                                                                                    1.00
953                                                                                                    1.00
954                                                                                                    1.00
955                                                                                                  collar
956                                                                                                    1.00
957                                                                                                    1.00
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
959                                                                                                    1.00
960                                                                                                    1.00
961                                                                                                    1.00
962                                                                                                    1.00
963                                                                                                    0.70
964                                                                                                  100.00
965                                                                                                  500.00
966                                                                                                    5.00
967                                                                                                   50.00
968                                                                                                    1.00
969                                                                                             unspecified
970                                                                                                  1 pump
971                                                                                                  500.00
972                                                                                                  136.00
973                                                                                                    1.00
974                                                                                                  100.00
975                                                                                                   16.00
976                                                                                                  750.00
977                                                                                             application
978                                                                                                   16.00
979                                                                                                      75
980                                                                                                    90.5
981                                                                                                   16.00
982                                                                                             unspecified
983                                                                                             unspecified
984                                                                                                  250.00
985                                                                                                  272.00
986                                                                                                  136.00
987                                                                                                   15.00
988                                                                                                   16.00
989                                                                                         based on weight
990                                                                                                  300.00
991                                                                                                      75
992                                                                                                    90.5
993                                                                                                45293.00
994                                                                                                   16.00
995                                                                                                    90.5
996                                                                                                      75
997                                                                                                   60.00
998                                                                                                  250.00
999                                                                                                    1.00
1000                                                                                                  16.00
1001                                                                                            unspecified
1002                                                                                                  15.00
1003                                                                                                  16.00
1004                                                                                                   3.00
1005                                                                                                  20.00
1006                                                                                                 150.00
1007                                                                                                 125.00
1008                                                                                                 150.00
1009                                                                                                 250.00
1010                                                                                                 100.00
1011                                                                                                 150.00
1012                                                                                                 476.00
1013                                                                                                  15.00
1014                                                                                                  50.00
1015                                                                                                 750.00
1016                                                                                                 100.00
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1022                                                                                                 250.00
1023                                                                                                   1.00
1024                                                                                                   1.00
1025                                                                                                   1.00
1026                                                                                                 225.00
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1032                                                                                                 500.00
1033                                                                                        syringe/pipette
1034                                                                                                  20.00
1035                                                                                                  20.00
1036                                                                                           small amount
1037                                                                                                 1 pump
1038                                                                                                 300.00
1039                                                                                          1 bottle/vial
1040                                                                                                  16.00
1041                                                                                                  16.00
1042                                                                                            unspecified
1043                                                                                                   1.00
1044                                                                                                   3.00
1045                                                                                                  60.00
1046                                                                                                 272.00
1047                                                                                                 136.00
1048                                                                                                   7.50
1049                                                                                                  16.00
1050                                                                                        based on weight
1051                                                                                                     75
1052                                                                                                   90.5
1053                                                                                                   6.80
1054                                                                                                   1.00
1055                                                                                                 300.00
1056                                                                                                  60.00
1057                                                                                                 300.00
1058                                                                                                 300.00
1059                                                                                                  16.00
1060                                                                                                   90.5
1061                                                                                                     75
1062                                                                                                 250.00
1063                                                                                                 250.00
1064                                                                                                   1.00
1065                                                                                                   0.10
1066                                                                                                   1.00
1067                                                                                                  10.00
1068                                                                                                  70.00
1069                                                                                                   1.00
1070                                                                                                   1.00
1071                                                                                                 150.00
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1075                                                                                                 150.00
1076                                                                                                   1.00
1077                                                                                                   1.00
1078                                                                                                   1.00
1079                                                                                                   1.00
1080                                                                                                   3.00
1081                                                                                                 150.00
1082                                                                                                  60.00
1083                                                                                                  30.00
1084                                                                                                  10.00
1085                                                                                                  60.00
1086                                                                                                   3.00
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1089                                                                                                  75.00
1090                                                                                                1620.00
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1094                                                                                                4000.00
1095                                                                                                  16.00
1096                                                                                                  15.00
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1102                                                                                                1000.00
1103                                                                                                8000.00
1104                                                                                                  16.00
1105                                                                                                  75.00
1106                                                                                                1000.00
1107                                                                                                 136.00
1108                                                                                             1 wipe/pad
1109                                                                                                 136.00
1110                                                                                                1000.00
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1113                                                                                                 136.00
1114                                                                                                1000.00
1115                                                                                                  16.00
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1117                                                                                                1000.00
1118                                                                                                1000.00
1119                                                                                                1000.00
1120                                                                                                 272.00
1121                                                                                                  20.00
1122                                                                                                 600.00
1123                                                                                                1000.00
1124                                                                                                 300.00
1125                                                                                                  20.00
1126                                                                                                  20.00
1127                                                                                                 425.00
1128                                                                                                 272.00
1129                                                                           based on weight (21-100 lbs)
1130                                                                                                 200.00
1131                                                                                                5 drops
1132                                                                                                 375.00
1133                                                                                                 500.00
1134                                                                                                  15.00
1135                                                                                                   1.00
1136                                                                                                 500.00
1137                                                                                                  50.00
1138                                                                                                  50.00
1139                                                                                                   1.00
1140                                                                                                   3.00
1141                                                                                                 500.00
1142                                                                                                 227.00
1143                                                                                                   2.00
1144                                                                                                 136.00
1145                                                                                                 272.00
1146                                                                                                   0.14
1147                                                                                                 227.00
1148                                                                                                   2.00
1149                                                                                                 300.00
1150                                                                                           small amount
1151                                                                                                   8.00
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1156                                                                                                  23.00
1157                                                                                                  23.00
1158                                                                                                 375.00
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1162                                                                                                 375.00
1163                                                                                                 150.00
1164                                                                                                  23.00
1165                                                                                                   9.70
1166                                                                                                   8.80
1167                                                                                                1000.00
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1171                                                                                                 272.00
1172                                                                                                 227.00
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1178                                                                                                 272.00
1179                                                                                            unspecified
1180                                                                                                  50.00
1181                                                                                                 200.00
1182                                                                                                  50.00
1183                                                                                                  23.80
1184                                                                                                  50.00
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1188                                                                                                 300.00
1189                                                                                            unspecified
1190                                                                                            unspecified
1191                                                                                                 250.00
1192                                                                                                 227.00
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1196                                                                                                 100.00
1197                                                                                                  23.00
1198                                                                                                 272.00
1199                                                                                                   2.80
1200                                                                                                   2.30
1201                                                                                                   0.50
1202                                                                                                  75.00
1203                                                                                                  75.00
1204                                                                                                 125.00
1205                                                                                                 272.00
1206                                                                                                 272.00
1207                                                                                                  16.00
1208                                                                              based on weight (55+ lbs)
1209                                                                                                     75
1210                                                                                                 200.00
1211                                                                                                  16.00
1212                                                                                                 100.00
1213                                                                                                 272.00
1214                                                                                                 136.00
1215                                                                                                 272.00
1216                                                                                                 272.00
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1218                                                                                                 300.00
1219                                                                                                  75.00
1220                                                                                                   1.00
1221                                                                                                 272.00
1222                                                                                                   2.50
1223                                                                                                  75.00
1224                                                                                                 150.00
1225                                                                                                 272.00
1226                                                                              based on weight (55+ lbs)
1227                                                                                                 272.00
1228                                                                                                 272.00
1229                                                                                                 272.00
1230                                                                                                 600.00
1231                                                                                                  75.00
1232                                                                                                 136.00
1233                                                                                            unspecified
1234                                                                                                  75.00
1235                                                                                                  37.50
1236                                                                                                  20.00
1237                                                                                                 150.00
1238                                                                                                   2.00
1239                                                                                                 300.00
1240                                                                                                   2.00
1241                                                                                                   1.00
1242                                                                                                   1.00
1243                                                                                                  20.00
1244                                                                                                  23.00
1245                                                                                                   5.00
1246                                                                                                  20.00
1247                                                                           based on weight (51-100 lbs)
1248                                                                                                     90
1249                                                                                                  16.00
1250                                                                                                 460.00
1251                                                                                                 136.00
1252                                                                                                  16.00
1253                                                                                                  10.00
1254                                                                                                 460.00
1255                                                                                                 136.00
1256                                                                                                  16.00
1257                                                                                                  23.00
1258                                                                                                 136.00
1259                                                                                                   0.57
1260                                                                                                 375.00
1261                                                                                                 100.00
1262                                                                                                  70.00
1263                                                                                                   1.00
1264                                                                                                  30.00
1265                                                                                                 300.00
1266                                                                                                  10.00
1267                                                                                                 500.00
1268                                                                                                  23.00
1269                                                                                                  68.00
1270                                                                                                  68.00
1271                                                                                                 272.00
1272                                                                                                 500.00
1273                                                                                                   5.00
1274                                                                                                  23 mg
1275                                                                                                  60.00
1276                                                                                                   2.50
1277                                                                                                  68.00
1278                                                                                                  23.00
1279                                                                                                  60.00
1280                                                                                                 200.00
1281                                                                                                 375.00
1282                                                                                                 500.00
1283                                                                                                 227.00
1284                                                                                                  68.00
1285                                                                                            unspecified
1286                                                                                                   8.00
1287                                                                                                 200.00
1288                                                                                                  60.00
1289                                                                                                   1.00
1290                                                                                                 125.00
1291                                                                                                  60.00
1292                                                                                                 500.00
1293                                                                                                  23.00
1294                                                                                                 125.00
1295                                                                                                   2.68
1296                                                                                                  23.00
1297                                                                                                   1.00
1298                                                                                                   2.68
1299                                                                                                  23.00
1300                                                                                                 375.00
1301                                                                                                  23.00
1302                                                                                                   9.80
1303                                                                                                   1.00
1304                                                                                                  50.00
1305                                                                                                  15.00
1306                                                                                                 500.00
1307                                                                                                 600 mg
1308                                                                                                   4.70
1309                                                                                                   2.68
1310                                                                                                  23.00
1311                                                                                                  23.00
1312                                                                                                  80.00
1313                                                                                                  50.00
1314                                                                                                  20.00
1315                                                                                                   1.00
1316                                                                                                 600.00
1317                                                                                                  50.00
1318                                                                                                  20.00
1319                                                                                                 100.00
1320                                                                                                  60.00
1321                                                                                                  20.00
1322                                                                                                 800.00
1323                                                                                                   3.00
1324                                                                                                  50.00
1325                                                                                                  20.00
1326                                                                                                   1.00
1327                                                                                                  20.00
1328                                                                                                     75
1329                                                                                                     66
1330                                                                                                 200.00
1331                                                                                                  50.00
1332                                                                                                 130.00
1333                                                                                                 100.00
1334                                                                                                   0.50
1335                                                                                                  20.00
1336                                                                                            unspecified
1337                                                                                                  20.00
1338                                                                                                   1.00
1339                                                                                                   2.00
1340                                                                                                   1.00
1341                                                                                                 325.00
1342                                                                                                   1.00
1343                                                                                                  60.00
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1347                                                                                                1000.00
1348                                                                                               2 sprays
1349                                                                                                1000.00
1350                                                                                                  20.00
1351                                                                                                   0.14
1352                                                                                                   2.00
1353                                                                                                   8.00
1354                                                                                                1000.00
1355                                                                           based on weight (89-132 lbs)
1356                                                                                                  24.00
1357                                                                                                   4.02
1358                                                                                                  16.00
1359                                                                                                   9.80
1360                                                                                                  23.00
1361                                                                                                  24.00
1362                                                                                                  90.00
1363                                                                                                 600.00
1364                                                                                                   4.70
1365                                                                                                   4.02
1366                                                                                                  23.00
1367                                                                                                  23.00
1368                                                                                                 120.00
1369                                                                                                 500.00
1370                                                                                                 200.00
1371                                                                           based on weight (51-100 lbs)
1372                                                                                                 500.00
1373                                                                                                   1.00
1374                                                                                                 500.00
1375                                                                                                 200.00
1376                                                                                                 500.00
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1381                                                                                                 500.00
1382                                                                                                  75.00
1383                                                                                                 500.00
1384                                                                                                   0.25
1385                                                                                                   0.50
1386                                                                                                 300.00
1387                                                                                                  75.00
1388                                                                                                 200.00
1389                                                                                                  10.00
1390                                                                                                  16.00
1391                                                                                                  60.00
1392                                                                                                  16.00
1393                                                                                                   1.00
1394                                                                                                  16.00
1395                                                                                                  10.00
1396                                                                                                 200.00
1397                                                                                                 500.00
1398                                                                                              1-2 drops
1399                                                                                                  16.00
1400                                                                                                  90.00
1401                                                                                                  20.00
1402                                                                                                   1.00
1403                                                                                                 500.00
1404                                                                                            unspecified
1405                                                                                            unspecified
1406                                                                                                 500.00
1407                                                                                                 100.00
1408                                                                                                 200.00
1409                                                                                                 200.00
1410                                                                                                 200.00
1411                                                                                                1000.00
1412                                                                                                  10.00
1413                                                                                                 200.00
1414                                                                                                  24.00
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1421                                                                                                  60.00
1422                                                                           based on weight (51-100 lbs)
1423                                                                                                 750.00
1424                                                                                                  50.00
1425                                                                                                  15.00
1426                                                                                                  50.00
1427                                                                                                 500.00
1428                                                                                                 500.00
1429                                                                                                  50.00
1430                                                                                                  60.00
1431                                                                                                   2.00
1432                                                                                                  16.00
1433                                                                                                  16.00
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1436                                                                                                  16.00
1437                                                                                                  50.00
1438                                                                           based on weight (51-100 lbs)
1439                                                                                                  60.00
1440                                                                                                   1.00
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1444                                                                                                  70.00
1445                                                                                                   1.00
1446                                                                                                   1.00
1447                                                                                                   1.00
1448                                                                                                   1.00
1449                                                                                                  60.00
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1452                                                                                                  70.00
1453                                                                                                   1.00
1454                                                                                                  70.00
1455                                                                                                 300.00
1456                                                                                                  50.00
1457                                                                                                 150.00
1458                                                                                                 100.00
1459                                                                             based on weight (2-55 lbs)
1460                                                                                                  50.00
1461                                                                                                  10.00
1462                                                                            based on weight (56-95 lbs)
1463                                                                                                 900.00
1464                                                                           based on weight (51-100 lbs)
1465                                                                                                   0.09
1466                                                                                                   1.25
1467                                                                                                   2.00
1468                                                                                                   2.00
1469                                                                                                  23.00
1470                                                                                                 100.00
1471                                                                                                 100.00
1472                                                                                                   1.00
1473                                                                                            unspecified
1474                                                                                                   1.90
1475                                                                                            unspecified
1476                                                                                                 500.00
1477                                                                                                   1.00
1478                                                                                                 500.00
1479                                                                                                  10.00
1480                                                                                                   5.00
1481                                                                                                   5.00
1482                                                                                                 500.00
1483                                                                                                   1.50
1484                                                                                                  10.00
1485                                                                                                 500.00
1486                                                                                                   5.00
1487                                                                                                   0.40
1488                                                                                                   1.00
1489                                                                                                   1.00
1490                                                                                                   1.00
1491                                                                                  1 tablet/pill/capsule
1492                                                                                                 272.00
1493                                                                                                 200.00
1494                                                                                                  25.00
1495                                                                                                 200.00
1496                                                                                                   1.00
1497                                                                                                 200.00
1498                                                                                                  50.00
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1503                                                                                                   72.5
1504                                                                                               0.25 tsp
1505                                                                                                 400.00
1506                                                                                                   7.00
1507                                                                                                   3.00
1508                                                                                               10000.00
1509                                                                                                 400.00
1510                                                                                                 272.00
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1513                                                                                                 272.00
1514                                                                          based on weight (24.1-60 lbs)
1515                                                                                                 272.00
1516                                                                                                 136.00
1517                                                                                                 227.00
1518                                                                                                 136.00
1519                                                                                                 272.00
1520                                                                                                  68.00
1521                                                                                                  60.00
1522                                                                                                 375.00
1523                                                                                                1000.00
1524                                                                                                 600.00
1525                                                                                                   0.50
1526                                                                                                  50.00
1527                                                                                                 272.00
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1530                                                                                                 272.00
1531                                                                                                 272.00
1532                                                                              based on weight (55+ lbs)
1533                                                                                                 272.00
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1540                                                                                                   1.00
1541                                                                                            unspecified
1542                                                                                            unspecified
1543                                                                                                   1.00
1544                                                                                                 500.00
1545                                                                                                 500.00
1546                                                                                                 200.00
1547                                                                                                 100.00
1548                                                                                                  75.00
1549                                                                                                   3.00
1550                                                                                                   6.00
1551                                                                                                   1.00
1552                                                                                                 100.00
1553                                                                                                   8.00
1554                                                                                                  12.00
1555                                                                                                   7.00
1556                                                                                               inhalant
1557                                                                                                  16.00
1558                                                                                                 200.00
1559                                                                                                 375.00
1560                                                                                                 100.00
1561                                                                                                  50.00
1562                                                                                                 400.00
1563                                                                                                  75.00
1564                                                                                                 400.00
1565                                                                                                  50.00
1566                                                                                                 375.00
1567                                                                                                   2.50
1568                                                                                                 500.00
1569                                                                                                   1.00
1570                                                                                                   1.00
1571                                                                                                      2
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1573                                                                                                 136.00
1574                                                                                                  80.00
1575                                                                                                 100.00
1576                                                                                                   1.00
1577                                                                                                   0.40
1578                                                                                                 100.00
1579                                                                                                 100.00
1580                                                                                                   0.40
1581                                                                                                  20.00
1582                                                                                                  50.00
1583                                                                                                 272.00
1584                                                                                                 227.00
1585                                                                                                   4.00
1586                                                                                           small amount
1587                                                                                            unspecified
1588                                                                                                1000.00
1589                                                                                                  75.00
1590                                                                                                   7.50
1591                                                                                                 225.00
1592                                                                                                 100.00
1593                                                                                                  20.00
1594                                                                                                  50.00
1595                                                                                                 250.00
1596                                                                                                  60.00
1597                                                                                                  60.00
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1600                                                                                                 136.00
1601                                                                                                   1.00
1602                                                                                                   7.50
1603                                                                                                  70.00
1604                                                                                                   3.75
1605                                                                                                 200.00
1606                                                                                                   0.13
1607                                                                                                   6.30
1608                                                                                                 180.00
1609                                                                                                   2.50
1610                                                                                                 204.00
1611                                                                                                   1.00
1612                                                                                                  80.00
1613                                                                                                 200.00
1614                                                                                                  80.00
1615                                                                                                   7.00
1616                                                                                                 200.00
1617                                                                                                 204.00
1618                                                                                                  80.00
1619                                                                                                  50.00
1620                                                                                                 500.00
1621                                                                                                  10.00
1622                                                                                                  50.00
1623                                                                                                  75.00
1624                                                                                                  50.00
1625                                                                                                   1.50
1626                                                                                                  50.00
1627                                                                                                 272.00
1628                                                                                                   2.68
1629                                                                                                  50.00
1630                                                                                                 272.00
1631                                                                                                   2.68
1632                                                                                                   0.10
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1637                                                                                                   1.00
1638                                                                                                   1.00
1639                                                                                                   1.00
1640                                                                                                   1.00
1641                                                                                                  75.00
1642                                                                                                 500.00
1643                                                                                                 500.00
1644                                                                                                  20.00
1645                                                                                                   0.25
1646                                                                                                  75.00
1647                                                                                                 500.00
1648                                                                                                 500.00
1649                                                                                                 200.00
1650                                                                                            unspecified
1651                                                                                                 100.00
1652                                                                                                  75.00
1653                                                                                                   1.00
1654                                                                                                 272.00
1655                                                                                                 272.00
1656                                                                                                   2.68
1657                                                                                                 272.00
1658                                                                                                   0.09
1659                                                                                                 272.00
1660                                                                                                  68.00
1661                                                                                                  50.00
1662                                                                                                  15.00
1663                                                                           based on weight (60-120 lbs)
1664                                                                                                  25.00
1665                                                                                                 250.00
1666                                                                                                 250.00
1667                                                                                                 750.00
1668                                                                                            unspecified
1669                                                                                                 272.00
1670                                                                                                 272.00
1671                                                                                                     66
1672                                                                                                   2.68
1673                                                                                                  29.00
1674                                                                                                   1.00
1675                                                                                                   2.00
1676                                                                                                 272.00
1677                                                                                                 272.00
1678                                                                                                 500.00
1679                                                                                                   1.00
1680                                                                                                   1.00
1681                                                                                                   1.00
1682                                                                                                 272.00
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1686                                                                                                 500.00
1687                                                                                                 120.00
1688                                                                                                 272.00
1689                                                                                        moderate amount
1690                                                                                                1 spray
1691                                                                                                 500.00
1692                                                                                        moderate amount
1693                                                                                                 100.00
1694                                                                                                 100.00
1695                                                                                                 1 drop
1696                                                                                                  75.00
1697                                                                                        based on weight
1698                                                                                                  23.00
1699                                                                                                   2.68
1700                                                                                                   2.68
1701                                                                                                   8.00
1702                                                                                                   1.00
1703                                                                                                 375.00
1704                                                                                                   2.50
1705                                                                                                  50.00
1706                                                                                                   8.00
1707                                                                                                   2.68
1708                                                                                                23, 460
1709                                                                                                   8.00
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1711                                                                                                   2.68
1712                                                                           based on weight (50-100 lbs)
1713                                                                                                   2.68
1714                                                                                                1000.00
1715                                                                           based on weight (51-100 lbs)
1716                                                                                                   2.68
1717                                                                                                1000.00
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1721                                                                                                 120.00
1722                                                                                                1000.00
1723                                                                                                2000.00
1724                                                                                                  10.00
1725                                                                                                 272.00
1726                                                                                                   4.00
1727                                                                                                   1.00
1728                                                                                                   1.00
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1731                                                                                                   1.00
1732                                                                                                   1.00
1733                                                                                                 272.00
1734                                                                                                 272.00
1735                                                                                                 272.00
1736                                                                                                 272.00
1737                                                                                                 227.00
1738                                                                                                 200.00
1739                                                                                                 227.00
1740                                                                                                  20.00
1741                                                                                                 227.00
1742                                                                                                 272.00
1743                                                                                        based on weight
1744                                                                                                 272.00
1745                                                                                                1647.00
1746                                                                                                   1.50
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1750                                                                                                 750.00
1751                                                                                                 120.00
1752                                                                                                 400.00
1753                                                                                                   0.04
1754                                                                                                  20.00
1755                                                                                                   3.70
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1762                                                                                                 375.00
1763                                                                                                  75.00
1764                                                                                                 100.00
1765                                                                                                 200.00
1766                                                                                                  15.00
1767                                                                                                   2.00
1768                                                                                                 200.00
1769                                                                                            application
1770                                                                                                  23.00
1771                                                                                                1000.00
1772                                                                                                 200.00
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1776                                                                                                1000.00
1777                                                                                                  23.00
1778                                                                                                 272.00
1779                                                                                                1000.00
1780                                                                                                 272.00
1781                                                                                                1000.00
1782                                                                                                 132.00
1783                                                                                                   3.20
1784                                                                                                  50.00
1785                                                                                                 272.00
1786                                                                                                1000.00
1787                                                                                                 240.00
1788                                                                                                1090.00
1789                                                                                            unspecified
1790                                                                                                 375.00
1791                                                                                            unspecified
1792                                                                                                 150.00
1793                                                                                                 200.00
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1797                                                                                                  50.00
1798                                                                               based on weight (75 lbs)
1799                                                                                                   1.00
1800                                                                                                 250.00
1801                                                                                                 300.00
1802                                                                                                  15.00
1803                                                                                                   3.00
1804                                                                                                  22.00
1805                                                                                           small amount
1806                                                                                                  95.00
1807                                                                                                  95.00
1808                                                                                                 500.00
1809                                                                                            unspecified
1810                                                                                                1000.00
1811                                                                                                 500.00
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1814                                                                                                 100.00
1815                                                                                                  50.00
1816                                                                                                 170.00
1817                                                                                                   1.00
1818                                                                                                   0.50
1819                                                                                            unspecified
1820                                                                                            unspecified
1821                                                                                                 150.00
1822                                                                                                 100.00
1823                                                                                            unspecified
1824                                                                                                  50.00
1825                                                                                                  16.00
1826                                                                                                   1.20
1827                                                                                                  10.00
1828                                                                                                 272.00
1829                                                                                                 500.00
1830                                                                                                   1.00
1831                                                                                                   1.00
1832                                                                                                   1.40
1833                                                                                                  16.00
1834                                                                                                 272.00
1835                                                                                                 136.00
1836                                                                                                 272.00
1837                                                                                                 136.00
1838                                                                                                 272.00
1839                                                                                                 136.00
1840                                                                                                 100.00
1841                                                                                                   1.00
1842                                                                                                   1.00
1843                                                                                                 272.00
1844                                                                                                 272.00
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1852                                                                                                 100.00
1853                                                                                                   5.00
1854                                                                                                 500.00
1855                                                                                                 500.00
1856                                                                                                  20.00
1857                                                                                                 500.00
1858                                                                                                  68.00
1859                                                                                                   4.00
1860                                                                                                  50.00
1861                                                                                                  75 mg
1862                                                                                                  75.00
1863                                                                                                 272.00
1864                                                                                                   75.5
1865                                                                                                 900.00
1866                                                                                                   75.5
1867                                                                           based on weight (51-100 lbs)
1868                                                                                                 500.00
1869                                                                                                   1.00
1870                                                                                                 150.00
1871                                                                                                   5.00
1872                                                                           based on weight (51-100 lbs)
1873                                                                                                   75.5
1874                                                                                                  66.00
1875                                                                                                   8.00
1876                                                                                                 190.00
1877                                                                                            unspecified
1878                                                                                                  50.00
1879                                                                                                 375.00
1880                                                                                                 227.00
1881                                                                                                 375.00
1882                                                                                                  10.00
1883                                                                                                   8.00
1884                                                                                                   8.00
1885                                                                                                   1.00
1886                                                                                                   1.00
1887                                                                                                  spray
1888                                                                                             continuous
1889                                                                                                 272.00
1890                                                                                                  60.00
1891                                                                                                   1.00
1892                                                                                                   1.00
1893                                                                                                   1.00
1894                                                                                                   1.00
1895                                                                                                  50.00
1896                                                                                                  60.00
1897                                                                                                   1.00
1898                                                                                                 375.00
1899                                                                                                 375.00
1900                                                                                                 100.00
1901                                                                                                 300.00
1902                                                                                                 150.00
1903                                                                                                  50.00
1904                                                                                                  10.00
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1907                                                                                                  50.00
1908                                                                                                 190.00
1909                                                                                                   75.5
1910                                                                                                 900.00
1911                                                                                                  14.00
1912                                                                                                   7.00
1913                                                                                                   7.00
1914                                                                                                 200.00
1915                                                                                                   0.50
1916                                                                                                   75.5
1917                                                                           based on weight (51-100 lbs)
1918                                                                                                   1.50
1919                                                                                                 750.00
1920                                                                                                   1.00
1921                                                                                                   2.00
1922                                                                                                  spray
1923                                                                                                  68.00
1924                                                                                                   8.00
1925                                                                                            unspecified
1926                                                                                           small amount
1927                                                                                                  16.00
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1930                                                                                                   2.00
1931                                                                                           small amount
1932                                                                                                 150.00
1933                                                                                                  50.00
1934                                                                                                   2.00
1935                                                                                                  60.00
1936                                                                                                 190.00
1937                                                                                                  50.00
1938                                                                                                   2.00
1939                                                                                            unspecified
1940                                                                                                 200.00
1941                                                                                            application
1942                                                                                                 190.00
1943                                                                                                  50.00
1944                                                                                                   2.00
1945                                                                                                  spray
1946                                                                                                 190.00
1947                                                                                                  70.00
1948                                                                                        based on weight
1949                                                                                                   1.00
1950                                                                                                  50.00
1951                                                                                                 200.00
1952                                                                                                   2.00
1953                                                                                                  50.00
1954                                                                                                     11
1955                                                                                                   33.5
1956                                                                                                     38
1957                                                                                                 250.00
1958                                                                                                   1.00
1959                                                                                                  10.50
1960                                                                                                   66.5
1961                                                                                                 100.00
1962                                                                           based on weight (51-100 lbs)
1963                                                                                                   1.00
1964                                                                                                   1.00
1965                                                                                           small amount
1966                                                                                                 240.00
1967                                                                                                1200.00
1968                                                                                                 450.00
1969                                                                                                   2.00
1970                                                                                                 136.00
1971                                                                                                   2.50
1972                                                                                                   1.00
1973                                                                                                   1.00
1974                                                                                                   1.00
1975                                                                                                   4.00
1976                                                                                                 272.00
1977                                                                                                1200.00
1978                                                                                                 900.00
1979                                                                                                   2.00
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1986                                                                                                   1.00
1987                                                                                                   1.00
1988                                                                                                 100.00
1989                                                                                                   1.00
1990                                                                                                 300.00
1991                                                                                                  50.00
1992                                                                                                 500.00
1993                                                                                                 136.00
1994                                                                                            unspecified
1995                                                                                                  70.00
1996                                                                                                  50.00
1997                                                                                                 400.00
1998                                                                                           small amount
1999                                                                                                 272.00
2000                                                                                                1000.00
2001                                                                                                 272.00
2002                                                                                                1000.00
2003                                                                                                1000.00
2004                                                                                                  75.00
2005                                                                                                1000.00
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2008                                                                                                 900.00
2009                                                                                                 937.50
2010                                                                                                   9.80
2011                                                                                                 500.00
2012                                                                                            unspecified
2013                                                                                            unspecified
2014                                                                                                 200.00
2015                                                                                                   5.00
2016                                                                           based on weight (51-100 lbs)
2017                                                                                                 272.00
2018                                                                                                 100.00
2019                                                                                                 300.00
2020                                                                                                 100.00
2021                                                                                                   5.00
2022                                                                                            application
2023                                                                                                   1.00
2024                                                                                                   1.00
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2027                                                                                                   1.00
2028                                                                                                 500.00
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2031                                                                                                 136.00
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2035                                                                                                     38
2036                                                                                                   66.5
2037                                                                                                 250.00
2038                                                                                                   1.00
2039                                                                                                 272.00
2040                                                                                                 227.00
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                                     50
2045                                                                                                  50.00
2046                                                                                                  13.00
2047                                                                                                   2.20
2048                                                                                                   0.22
2049                                                                                                   0.11
2050                                                                           based on weight (51-100 lbs)
2051                                                                                                   66.5
2052                                                                                                   7.60
2053                                                                                                  11.00
2054                                                                                                 125.00
2055                                                                                                 375.00
2056                                                                                                  50.00
2057                                                                                                   4.00
2058                                                                                                 150.00
2059                                                                                                 272.00
2060                                                                                                 272.00
2061                                                                                                 200.00
2062                                                                                                 272.00
2063                                                                                                 220.00
2064                                                                                                   1.00
2065                                                                                                 220.00
2066                                                                                                   2.68
2067                                                                                                1000.00
2068                                                                                                 150.00
2069                                                                                                 272.00
2070                                                                                                   2.68
2071                                                                                                  80.00
2072                                                                                                 500 mg
2073                                                                                                 272.00
2074                                                                                                 272.00
2075                                                                           based on weight (51-100 lbs)
2076                                                                                                 272.00
2077                                                                                                1000.00
2078                                                                                                  75.00
2079                                                                                                  23.00
2080                                                                                                 160.00
2081                                                                                                 900.00
2082                                                                                                1000.00
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2086                                                                                                     75
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2090                                                                                                   1.60
2091                                                                           based on weight (51-100 lbs)
2092                                                                                                1000.00
2093                                                                              based on weight (80+ lbs)
2094                                                                                                   1.60
2095                                                                                                   1.60
2096                                                                                                   1.00
2097                                                                                                   3.75
2098                                                                                                 160.00
2099                                                                                                   6.00
2100                                                                                                   3.75
2101                                                                                                   2.00
2102                                                                                                   3.75
2103                                                                                                 136.00
2104                                                                                                 500.00
2105                                                                                                  20.00
2106                                                                                                   7.50
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2111                                                                                                 150.00
2112                                                                                                 200.00
2113                                                                                               tapering
2114                                                                                                  16.00
2115                                                                                            unspecified
2116                                                                                            unspecified
2117                                                                                                  20.00
2118                                                                                                   1.00
2119                                                                                                 300.00
2120                                                                                                   1.00
2121                                                                                                 272.00
2122                                                                                                  50.00
2123                                                                                  1 tablet/pill/capsule
2124                                                                                                   1.00
2125                                                                                                 750.00
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2128                                                                                                   9.00
2129                                                                                                1000.00
2130                                                                                                  13.30
2131                                                                                                   3.25
2132                                                                                                   1.26
2133                                                                                                   0.90
2134                                                                                                   7.50
2135                                                                                                 750.00
2136                                                                                                1000.00
2137                                                                                                   1.00
2138                                                                                                   3.00
2139                                                                                                   8.00
2140                                                                                                   2.50
2141                                                                                                   1.00
2142                                                                                                   1.00
2143                                                                                                   1.00
2144                                                                                                   2.00
2145                                                                                                 500.00
2146                                                                                                   1.00
2147                                                                                                   1.00
2148                                                                                                  15.00
2149                                                                           based on weight (51-100 lbs)
2150                                                                                                   1.00
2151                                                                           based on weight (51-100 lbs)
2152                                                                                                   1.00
2153                                                                                                   1.50
2154                                                                                                  16.00
2155                                                                                                   4.50
2156                                                                                                   1.80
2157                                                                                                   0.60
2158                                                                                                1000.00
2159                                                                                                   3.75
2160                                                                                                 100.00
2161                                                                           based on weight (51-100 lbs)
2162                                                                                                     66
2163                                                                                                   1.00
2164                                                                                               45294.00
2165                                                                                           small amount
2166                                                                                            as directed
2167                                                                                                   1.00
2168                                                                                                 500.00
2169                                                                                                1000.00
2170                                                                                                 700.00
2171                                                                                                  60.00
2172                                                                                                 240.00
2173                                                                                                1000.00
2174                                                                                                 500.00
2175                                                                                                   1.00
2176                                                                                                  50.00
2177                                                                                                 200.00
2178                                                                                                  23.00
2179                                                                                                 810.00
2180                                                                                                  50.00
2181                                                                                                 250.00
2182                                                                                                  93.00
2183                                                                                                 120.00
2184                                                                                                  50.00
2185                                                                                                  40.00
2186                                                                                                  50.00
2187                                                                                                1000.00
2188                                                                                                 800.00
2189                                                                                                  68.00
2190                                                                                                  68.00
2191                                                                                                 200.00
2192                                                                                                  50.00
2193                                                                                                1000.00
2194                                                                                                 800.00
2195                                                                                            unspecified
2196                                                                                                 272.00
2197                                                                                                  68.00
2198                                                                                                 272.00
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2208                                                                                                   0.30
2209                                                                                                   1.00
2210                                                                                                 100.00
2211                                                                                            unspecified
2212                                                                                                  50.00
2213                                                                                                  50.00
2214                                                                                                   1.00
2215                                                                                                  50.00
2216                                                                                                   1.00
2217                                                                                                   2.00
2218                                                                                                  50.00
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2222                                                                                                   1.00
2223                                                                                                   1.00
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2227                                                                                                 750.00
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2231                                                                                                  20.00
2232                                                                                                   1.00
2233                                                                           based on weight (50-100 lbs)
2234                                                                                                   1.00
2235                                                                                                   1.00
2236                                                                                                 200.00
2237                                                                                                   1.50
2238                                                                                                   1.00
2239                                                                                                   1.00
2240                                                                                                   1.00
2241                                                                                            application
2242                                                                                                   0.30
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2246                                                                                                  60.00
2247                                                                                                  10.00
2248                                                                                                 100.00
2249                                                                                                  50.00
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2252                                                                                                   1.00
2253                                                                                                  68.00
2254                                                                                                1000.00
2255                                                                            based on weight (21-55 lbs)
2256                                                                                                 450.00
2257                                                                                                   4.00
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2267                                                                                                 375.00
2268                                                                                                 375.00
2269                                                                                            unspecified
2270                                                                                            unspecified
2271                                                                                                  60.00
2272                                                                                            unspecified
2273                                                                                                  20.00
2274                                                                                                 375.00
2275                                                                                                  25.00
2276                                                                                                  15.00
2277                                                                                                 272.00
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2281                                                                                                 250.00
2282                                                                                                   1.00
2283                                                                           based on weight (51-100 lbs)
2284                                                                                                 272.00
2285                                                                                                 200.00
2286                                                                                                   2.50
2287                                                                                                 272.00
2288                                                                                                 500.00
2289                                                                                                   0.25
2290                                                                                                 300.00
2291                                                                                                  10.00
2292                                                                                                 300.00
2293                                                                                                  75.00
2294                                                                                                 500.00
2295                                                                                                  75.00
2296                                                                                                  12.50
2297                                                                                                   1.00
2298                                                                                                  50.00
2299                                                                                                 480.00
2300                                                                                                1000.00
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2303                                                                                                1000.00
2304                                                                                                   4.00
2305                                                                                                  12.00
2306                                                                                                 500.00
2307                                                                                                   1.00
2308                                                                                                 272.00
2309                                                                                                 136.00
2310                                                                                                 200.00
2311                                                                                                 272.00
2312                                                                                                 136.00
2313                                                                                                 500.00
2314                                                                                                 500.00
2315                                                                                                 200.00
2316                                                                                                  10.00
2317                                                                                                 500.00
2318                                                                                                 500.00
2319                                                                                                 500.00
2320                                                                                                  75.00
2321                                                                                                   2.00
2322                                                                                                 300.00
2323                                                                                                 100.00
2324                                                                                                 500.00
2325                                                                                                  20.00
2326                                                                                                  75.00
2327                                                                                                   1.00
2328                                                                                                 500.00
2329                                                                                                   1.00
2330                                                                                                  50.00
2331                                                                                                  70.00
2332                                                                                                 500.00
2333                                                                                                 272 mg
2334                                                                                                 272.00
2335                                                                                                 272.00
2336                                                                                                 227.00
2337                                                                                                   9.10
2338                                                                                                  20.00
2339                                                                                                 1 drop
2340                                                                                                 272.00
2341                                                                                                 227.00
2342                                                                                                 1 drop
2343                                                                                                 272.00
2344                                                                                                 227.00
2345                                                                                                272 mcg
2346                                                                                                 227.00
2347                                                                                                272 mcg
2348                                                                                                 227.00
2349                                                                                                  20.00
2350                                                                                                 300.00
2351                                                                                                   1.50
2352                                                                                                272 mcg
2353                                                                                                 227.00
2354                                                                                                  20.00
2355                                                                                                 350.00
2356                                                                                                272 mcg
2357                                                                                                  20.00
2358                                                                                                 229.00
2359                                                                                                 429.00
2360                                                                                                  60.00
2361                                                                                                   6.00
2362                                                                                                 500.00
2363                                                                                                 500.00
2364                                                                                                  30.00
2365                                                                                                 300.00
2366                                                                                                  20.00
2367                                                                                                 500.00
2368                                                                                                  20.00
2369                                                                                                 500.00
2370                                                                                                  68.00
2371                                                                                                   1.00
2372                                                                                                 350.00
2373                                                                                                 500.00
2374                                                                                                   1.00
2375                                                                                                 250.00
2376                                                                                                 300.00
2377                                                                                                   8.00
2378                                                                                                 100.00
2379                                                                                                  75.00
2380                                                                                                   1.00
2381                                                                                                 250.00
2382                                                                                                 500.00
2383                                                                                                 400.00
2384                                                                                                     75
2385                                                                                                 500.00
2386                                                                                                     75
2387                                                                                                   0.15
2388                                                                                                  30.00
2389                                                                                                  48.00
2390                                                                                                  spray
2391                                                                                                 250.00
2392                                                                                                  37.50
2393                                                                                                   1.00
2394                                                                                                   4.00
2395                                                                                                 252.00
2396                                                                                                  80.00
2397                                                                                                   1.00
2398                                                                                                  spray
2399                                                                                                 272.00
2400                                                                                                  30.00
2401                                                                                                   1.00
2402                                                                                                   1.00
2403                                                                                                   1.00
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2407                                                                                                 272.00
2408                                                                                                     66
2409                                                                           based on weight (51-100 lbs)
2410                                                                                                 500.00
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2413                                                                                                 100.00
2414                                                                                                  75.00
2415                                                                                                 200.00
2416                                                                                                 272.00
2417                                                                                                 227.00
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2420                                                                                                 272.00
2421                                                                                                  16.00
2422                                                                                                  16.00
2423                                                                                                1000.00
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2429                                                                                                  16.00
2430                                                                                                 500.00
2431                                                                                                  75.00
2432                                                                                                  16.00
2433                                                                                                  75.00
2434                                                                                                 500.00
2435                                                                                                  75.00
2436                                                                                                 300.00
2437                                                                                                   1.00
2438                                                                                                 500.00
2439                                                                                                 500.00
2440                                                                                                 250.00
2441                                                                                                   3.00
2442                                                                                                   1.00
2443                                                                                                   2.00
2444                                                                                                 227.00
2445                                                                                                 250.00
2446                                                                                                   1.00
2447                                                                                                 100.00
2448                                                                                                   1.00
2449                                                                                                   1.00
2450                                                                                                 150 mg
2451                                                                                                   3.50
2452                                                                                                   3.20
2453                                                                                                  60 mg
2454                                                                                                   3.60
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2457                                                                                                 500.00
2458                                                                                                  50.00
2459                                                                                                   5.00
2460                                                                                                   5.00
2461                                                                                                  15.00
2462                                                                                                  12.00
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2465                                                                                                   1.00
2466                                                                                                 500.00
2467                                                                                    tablet/pill/capsule
2468                                                                                                 300.00
2469                                                                                                  60.00
2470                                                                                                 500.00
2471                                                                                                  20.00
2472                                                                                                   5.00
2473                                                                                           small amount
2474                                                                                           small amount
2475                                                                                                 200.00
2476                                                                                                  30.00
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2480                                                                                                 100.00
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2483                                                                                                     90
2484                                                                                                 200.00
2485                                                                                                  16.00
2486                                                                                            as directed
2487                                                                                            as directed
2488                                                                                                 375.00
2489                                                                                                  75.00
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2493                                                                                                  16.00
2494                                                                                                 200.00
2495                                                                                                   1.00
2496                                                                                                  20.00
2497                                                                                                   1.00
2498                                                                                                 250.00
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2507                                                                                                 250.00
2508                                                                                    tablet/pill/capsule
2509                                                                                                  60.00
2510                                                                                                 272.00
2511                                                                                                 272.00
2512                                                                                                 227.00
2513                                                                                                 228.00
2514                                                                                                 272.00
2515                                                                                                 500.00
2516                                                                                                 272.00
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2519                                                                                                 460.00
2520                                                                                                 150.00
2521                                                                                                  23.00
2522                                                                                                  23.00
2523                                                                                                   0.75
2524                                                                                                   0.75
2525                                                                                                 125.00
2526                                                                                                   1.40
2527                                                                                                 125.00
2528                                                                                                 170.00
2529                                                                                                   1.40
2530                                                                                                 125.00
2531                                                                                                 136.00
2532                                                                                                  20.00
2533                                                                                                 150.00
2534                                                                                            unspecified
2535                                                                                                 100.00
2536                                                                                                   1.00
2537                                                                                                 272.00
2538                                                                                                 272.00
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2541                                                                                                 136.00
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2551                                                                                                  75.00
2552                                                                                                 500.00
2553                                                                                                  75.00
2554                                                                                                 500.00
2555                                                                                                  75.00
2556                                                                                                 500.00
2557                                                                                                  20.00
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2561                                                                                                  20.00
2562                                                                           based on weight (50-100 lbs)
2563                                                                                                   8.00
2564                                                                                                 227.00
2565                                                                                                  20.00
2566                                                                                    tablet/pill/capsule
2567                                                                                                  20.00
2568                                                                                                  16.00
2569                                                                                                   8.00
2570                                                                                                   0.40
2571                                                                                                   0.30
2572                                                                                                     38
2573                                                                                                   0.35
2574                                                                                                 375.00
2575                                                                                            unspecified
2576                                                                                                  10.00
2577                                                                                                 200.00
2578                                                                                                  spray
2579                                                                                                  10.80
2580                                                                                            application
2581                                                                                                 375.00
2582                                                                                                   8.00
2583                                                                                            unspecified
2584                                                                                                   2.68
2585                                                                                                 136.00
2586                                                                                                   1.00
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2590                                                                                                   1.00
2591                                                                                                   1.00
2592                                                                                                   2.00
2593                                                                                                   1.00
2594                                                                                                   2.00
2595                                                                                                   1.00
2596                                                                                                   2.00
2597                                                                                                1950.00
2598                                                                                                   1.00
2599                                                                                            unspecified
2600                                                                                            unspecified
2601                                                                                                   2.50
2602                                                                                                  11.00
2603                                                                                                   1.00
2604                                                                                                   1.00
2605                                                                                                   1.00
2606                                                                                                   1.00
2607                                                                                                  50.00
2608                                                                                                  50.00
2609                                                                                                   6.50
2610                                                                                                   1.00
2611                                                                                                   1.00
2612                                                                                                   1.00
2613                                                                                                  68.00
2614                                                                                                  81.50
2615                                                                                                  73.00
2616                                                                                                 100.00
2617                                                                                                 136.50
2618                                                                                                   3.00
2619                                                                                                  68.00
2620                                                                                                  81.50
2621                                                                                                  73.00
2622                                                                                                 100.00
2623                                                                                                 136.50
2624                                                                                                   5.00
2625                                                                                                 204.00
2626                                                                                                   1.00
2627                                                                                                0.57 mg
2628                                                                                                   5.00
2629                                                                                                   5.00
2630                                                                                                   5.00
2631                                                                                                  68.00
2632                                                                                                  81.50
2633                                                                                                  73.00
2634                                                                                                 100.00
2635                                                                                                 136.50
2636                                                                                                  16 mg
2637                                                                                                   1.00
2638                                                                                                 500.00
2639                                                                                                   8.00
2640                                                                                                   8.00
2641                                                                                                  50.00
2642                                                                                            unspecified
2643                                                                                                  70.00
2644                                                                                                1000.00
2645                                                                                                   1.00
2646                                                                                                  68.00
2647                                                                                                  81.50
2648                                                                                                  73.00
2649                                                                                                 100.00
2650                                                                                                 136.50
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2654                                                                                                 500.00
2655                                                                                            unspecified
2656                                                                                                  75.00
2657                                                                                                 200.00
2658                                                                                                 100.00
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2662                                                                                                   5.00
2663                                                                                                  25.00
2664                                                                                                   2.00
2665                                                                                                   5.00
2666                                                                                                   5.00
2667                                                                                                   5.00
2668                                                                                                 500.00
2669                                                                                                  68.00
2670                                                                                                  81.50
2671                                                                                                  73.00
2672                                                                                                 100.00
2673                                                                                                 136.50
2674                                                                                                  68.00
2675                                                                                                  81.50
2676                                                                                                  73.00
2677                                                                                                 100.00
2678                                                                                                 136.50
2679                                                                                                  68.00
2680                                                                                                  81.50
2681                                                                                                  73.00
2682                                                                                                 100.00
2683                                                                                                 136.50
2684                                                                                                  68.00
2685                                                                                                  81.50
2686                                                                                                  73.00
2687                                                                                                 100.00
2688                                                                                                 136.50
2689                                                                                                  68.00
2690                                                                                                  81.50
2691                                                                                                  73.00
2692                                                                                                 100.00
2693                                                                                                 136.50
2694                                                                                                  60.00
2695                                                                                                   0.57
2696                                                                                                   1.00
2697                                                                                                   3.00
2698                                                                                                   5.00
2699                                                                                               2 sprays
2700                                                                                                  60.00
2701                                                                                                  68.00
2702                                                                                                  81.50
2703                                                                                                  73.00
2704                                                                                                 100.00
2705                                                                                                 136.50
2706                                                                                                   1.00
2707                                                                                                 500.00
2708                                                                                                   2.70
2709                                                                                                 400.00
2710                                                                           based on weight (51-100 lbs)
2711                                                                                                 500.00
2712                                                                                                   2.50
2713                                                                                                   1.00
2714                                                                                                  60.00
2715                                                                                                  60.00
2716                                                                                                   2.70
2717                                                                                                   1.00
2718                                                                                                  70.00
2719                                                                                                 272.00
2720                                                                                                 136.00
2721                                                                                            application
2722                                                                                                  20.00
2723                                                                                                  20.00
2724                                                                                                 136.00
2725                                                                                                 272.00
2726                                                                           based on weight (50-100 lbs)
2727                                                                                                  40.00
2728                                                                                                  20.00
2729                                                                                                   4.00
2730                                                                                                  20.00
2731                                                                                              13.5, 810
2732                                                                                                 250.00
2733                                                                                                 200.00
2734                                                                                                 250.00
2735                                                                                              13.5, 810
2736                                                                                                  68.00
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2740                                                                                                 134.00
2741                                                                                                 200.00
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2744                                                                                                  16.00
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2747                                                                                                  70.00
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2751                                                                                                  80.00
2752                                                                                                 200.00
2753                                                                           based on weight (50-100 lbs)
2754                                                                                                1000.00
2755                                                                                                  16.00
2756                                                                               based on weight (80 lbs)
2757                                                                                                 200.00
2758                                                                                                  80.00
2759                                                                                                  16.00
2760                                                                                                   5.00
2761                                                                                                 500.00
2762                                                                                                 200.00
2763                                                                                                 500.00
2764                                                                                                  16.00
2765                                                                                                  70.00
2766                                                                                                 300.00
2767                                                                                                  50.00
2768                                                                                                 500.00
2769                                                                                                 500.00
2770                                                                                                 250.00
2771                                                                                                   2.68
2772                                                                                                 272.00
2773                                                                                                 750.00
2774                                                                                                 272.00
2775                                                                                                  68.00
2776                                                                                                   8.00
2777                                                                                                 272.00
2778                                                                                                  68.00
2779                                                                                                  10.00
2780                                                                                                 300.00
2781                                                                                                 272.00
2782                                                                                                  80.00
2783                                                                                                   8.00
2784                                                                                                 500.00
2785                                                                                                  30.00
2786                                                                                                 400.00
2787                                                                                                 136.00
2788                                                                                                 750.00
2789                                                                                                   2.00
2790                                                                                                 300.00
2791                                                                                                 272.00
2792                                                                                                 136.00
2793                                                                                                 300.00
2794                                                                                                 750.00
2795                                                                                                  10.00
2796                                                                                                   8.00
2797                                                                                                   1.00
2798                                                                                                   5.00
2799                                                                                                   0.09
2800                                                                                                   5.00
2801                                                                                                   1.00
2802                                                                                                   0.60
2803                                                                                                   0.55
2804                                                                                                1400.00
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2806                                                                                                   0.60
2807                                                                                                   1.00
2808                                                                                                1400 mg
2809                                                                                                   0.60
2810                                                                                                1400.00
2811                                                                                                 500.00
2812                                                                                                   1.00
2813                                                                                                   6.00
2814                                                                                                1000.00
2815                                                                                               300, 600
2816                                                                                                1400.00
2817                                                                                                   12.5
2818                                                                                        0.25 inch strip
2819                                                                                                   2.13
2820                                                                                                   2.33
2821                                                                                                  50.00
2822                                                                                                  40.00
2823                                                                                                  10.00
2824                                                                                                 200.00
2825                                                                           based on weight (51-100 lbs)
2826                                                                                                   37.5
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2829                                                                                                 375.00
2830                                                                                                   1.00
2831                                                                                                   1.00
2832                                                                                                   5.00
2833                                                                           based on weight (51-100 lbs)
2834                                                                                                 375.00
2835                                                                                                  12.00
2836                                                                                                   1.00
2837                                                                                                  30.00
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2840                                                                                                 100.00
2841                                                                                                 200.00
2842                                                                                           small amount
2843                                                                                                  16.00
2844                                                                                        0.25 inch strip
2845                                                                                                  75.00
2846                                                                           based on weight (50-100 lbs)
2847                                                                                                 200.00
2848                                                                                                 500.00
2849                                                                                                  10.00
2850                                                                                                 300.00
2851                                                                                                   0.10
2852                                                                                                  10.00
2853                                                                                                 110.00
2854                                                                                                 100.00
2855                                                                                            unspecified
2856                                                                                                 500.00
2857                                                                                                 272.00
2858                                                                                                   8.00
2859                                                                                                  10.00
2860                                                                                                1000.00
2861                                                                                                   8.00
2862                                                                                                  20.00
2863                                                                                                 227.00
2864                                                                                                   9.80
2865                                                                                                 272.00
2866                                                                                                   9.20
2867                                                                                                  75.00
2868                                                                                                 272.00
2869                                                                                  1 tablet/pill/capsule
2870                                                                                                 272.00
2871                                                                                                  10.00
2872                                                                                                  59.20
2873                                                                                                  50.00
2874                                                                                                  50.00
2875                                                                                                  50.00
2876                                                                                                   1.00
2877                                                                                                 810.00
2878                                                                                                   3.00
2879                                                                                                  20.00
2880                                                                                                  10.00
2881                                                                                                  10.00
2882                                                                                                   1.17
2883                                                                                                   0.15
2884                                                                                                   1.45
2885                                                                                                 375.00
2886                                                                                                 300.00
2887                                                                                                   1.00
2888                                                                                                  50.00
2889                                                                                                 200.00
2890                                                                                                   2.00
2891                                                                                                   3.10
2892                                                                                                   8.00
2893                                                                                                 150.00
2894                                                                                                 375.00
2895                                                                                                   2.20
2896                                                                                                 160.00
2897                                                                                  lather and then rinse
2898                                                                                                 200.00
2899                                                                                                  20.00
2900                                                                                            application
2901                                                                                                 200.00
2902                                                                                                  20.00
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2906                                                                                                  20.00
2907                                                                                         1 pack/package
2908                                                                                                   8.00
2909                                                                                                   1.00
2910                                                                                                     42
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2914                                                                                                  50.00
2915                                                                                                 375.00
2916                                                                                                   3.00
2917                                                                                                   1.50
2918                                                                                                   1.50
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2924                                                                                                1000.00
2925                                                                                            unspecified
2926                                                                                                     75
2927                                                                                                   90.5
2928                                                                                                1000.00
2929                                                                                                1000.00
2930                                                                                                1000.00
2931                                                                                                  80.00
2932                                                                                                   2.00
2933                                                                                                  20.00
2934                                                                                                  80.00
2935                                                                                                  20.00
2936                                                                                                 500.00
2937                                                                                                  10.00
2938                                                                                                  16.00
2939                                                                                                   5.00
2940                                                                                                 500.00
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2945                                                                                                  23.00
2946                                                                                          1 bottle/vial
2947                                                                                                   4.00
2948                                                                                                   1.00
2949                                                                                                   1.00
2950                                                                                                   1.00
2951                                                                                                 1 tube
2952                                                                                                  40.00
2953                                                                                                  60.00
2954                                                                                                  49.00
2955                                                                                                 400.00
2956                                                                                                 100.00
2957                                                                                                   1.00
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2965                                                                                                 300.00
2966                                                                                                 200.00
2967                                                                                                  23.00
2968                                                                                                   66.5
2969                                                                                                   1.00
2970                                                                                                   3.00
2971                                                                                                  32.50
2972                                                                                                   1.00
2973                                                                                                   1.00
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2976                                                                                                   1.00
2977                                                                                                  23.00
2978                                                                         based on weight (50.1-100 lbs)
2979                                                                                                 136.00
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2983                                                                                                   1.00
2984                                                                                                  23.00
2985                                                                                                 136.00
2986                                                                                                   1.00
2987                                                                                                 750.00
2988                                                                                        based on weight
2989                                                                                                 150.00
2990                                                                                                 272.00
2991                                                                                                   0.13
2992                                                                                                 500.00
2993                                                                                            unspecified
2994                                                                                                 100.00
2995                                                                                                  50.00
2996                                                                                                 272.00
2997                                                                             1.5 tablets/pills/capsules
2998                                                                                                   1.00
2999                                                                                                   8.00
3000                                                                                                   5.00
3001                                                                                               45451.00
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3004                                                                                                 272.00
3005                                                                                                   0.09
3006                                                                                                 272.00
3007                                                                            based on weight (45-88 lbs)
3008                                                                                                 375.00
3009                                                                                                  50.00
3010                                                                                                  60.00
3011                                                                                                 105.00
3012                                                                                                1000.00
3013                                                                                                   1.00
3014                                                                                                   4.00
3015                                                                                                  30.00
3016                                                                                                  20.00
3017                                                                                                 150.00
3018                                                                                                 227.00
3019                                                                                                 272.00
3020                                                                                                 272.00
3021                                                                                                 272.00
3022                                                                                                   1.00
3023                                                                                                 150.00
3024                                                                                                 300.00
3025                                                                                                 425.00
3026                                                                                                 300.00
3027                                                                                                 272.00
3028                                                                            based on weight (45-88 lbs)
3029                                                                                                 150.00
3030                                                                                                   0.50
3031                                                                                            unspecified
3032                                                                                                 300.00
3033                                                                                                 850.00
3034                                                                                                 150.00
3035                                                                                                 150.00
3036                                                                                                   0.40
3037                                                                                                 100.00
3038                                                                                                  60.00
3039                                                                                                   0.09
3040                                                                                                 272.00
3041                                                                                                   1.00
3042                                                                                                   1.00
3043                                                                                                   66.5
3044                                                                                                 272.00
3045                                                                                                 500.00
3046                                                                                                 400.00
3047                                                                                                  62.50
3048                                                                                                   5.00
3049                                                                                                   2.50
3050                                                                                                   7.50
3051                                                                                                    102
3052                                                                                                 272.00
3053                                                                                                 227.00
3054                                                                                                 500.00
3055                                                                                            application
3056                                                                                                 100.00
3057                                                                                                  75.00
3058                                                                                            application
3059                                                                                                 500.00
3060                                                                                            unspecified
3061                                                                                                 272.00
3062                                                                                                 227.00
3063                                                                                                 272.00
3064                                                                                                 227.00
3065                                                                                                  10.00
3066                                                                                                 272.00
3067                                                                                                 227.00
3068                                                                                                  10.00
3069                                                                                                 272.00
3070                                                                                                  10.00
3071                                                                                                 400.00
3072                                                                                                 136.00
3073                                                                                                   8.00
3074                                                                                                  16.00
3075                                                                                                 272.00
3076                                                                                                  50.00
3077                                                                                                 150.00
3078                                                                                                 400.00
3079                                                                                                 136.00
3080                                                                                                 150.00
3081                                                                                                  50.00
3082                                                                                                 272.00
3083                                                                                                  50.00
3084                                                                                                   7.00
3085                                                                                                  10.00
3086                                                                                                  18.50
3087                                                                                                  50.00
3088                                                                                                 100.00
3089                                                                                                   4.70
3090                                                                                                  23.00
3091                                                                                                 240.00
3092                                                                                                 100 mg
3093                                                                                                 500.00
3094                                                                                                  20.00
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3097                                                                                                 272.00
3098                                                                                                  12.50
3099                                                                                                  75.00
3100                                                                                                  50.00
3101                                                                                                 240.00
3102                                                                                                 136.00
3103                                                                                                 272.00
3104                                                                                                 136.00
3105                                                                                                  25.00
3106                                                                                                 272.00
3107                                                                                                 136.00
3108                                                                                                   37.5
3109                                                                                                   0.25
3110                                                                                           small amount
3111                                                                                                 500.00
3112                                                                                                   6.00
3113                                                                                                  16.00
3114                                                                                                  20.00
3115                                                                                                  20.00
3116                                                                                                 500.00
3117                                                                                                 200.00
3118                                                                                                  12.50
3119                                                                                            as directed
3120                                                                                                   0.25
3121                                                                                                 272.00
3122                                                                                                 136.00
3123                                                                                                  16.00
3124                                                                                                   1.00
3125                                                                                                  16.00
3126                                                                                                  75.00
3127                                                                                                   4.00
3128                                                                                                  30.00
3129                                                                                                   4.00
3130                                                                                                  30.00
3131                                                                                                   2.00
3132                                                                                                   4.00
3133                                                                                                   2.00
3134                                                                                                   3.00
3135                                                                                                   1.00
3136                                                                                                 240.00
3137                                                                                                   0.09
3138                                                                                                  30.00
3139                                                                                                   4.00
3140                                                                                                2 pumps
3141                                                                                                 240.00
3142                                                                                                  80.00
3143                                                                                                   4.00
3144                                                                                                  30.00
3145                                                                                                   2.00
3146                                                                                                  10 mg
3147                                                                                            unspecified
3148                                                                                                  30.00
3149                                                                                                   0.30
3150                                                                                                   0.30
3151                                                                                                   0.30
3152                                                                                                  75.00
3153                                                                                                 500.00
3154                                                                                                  60.00
3155                                                                                                  18.00
3156                                                                                                   4.00
3157                                                                                                   1.00
3158                                                                                                   1.00
3159                                                                                                   2.00
3160                                                                                                  50.00
3161                                                                                                 300.00
3162                                                                                                   2.00
3163                                                                                                   1.00
3164                                                                                                   4.00
3165                                                                                                   1.00
3166                                                                                                   2.00
3167                                                                                                  12.00
3168                                                                                                  50.00
3169                                                                                                   3.00
3170                                                                                                 500.00
3171                                                                                                   3.20
3172                                                                                                   5.00
3173                                                                                                 272.00
3174                                                                                                 227.00
3175                                                                                                 810.00
3176                                                                                                  13.50
3177                                                                                                 180.00
3178                                                                                                   1.50
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3181                                                                                                1000.00
3182                                                                                                 272.00
3183                                                                                                  10.00
3184                                                                                                 500.00
3185                                                                                                 300.00
3186                                                                                                 272.00
3187                                                                                                1000.00
3188                                                                                                 320.00
3189                                                                                                 310.00
3190                                                                                                 300.00
3191                                                                                                   0.30
3192                                                                                                   1.00
3193                                                                                                 100.00
3194                                                                                                1000.00
3195                                                                                                 272.00
3196                                                                                                1000.00
3197                                                                                                 450.00
3198                                                                                                   1.50
3199                                                                                                 600.00
3200                                                                                                  20.00
3201                                                                                                   1.00
3202                                                                                                  15.00
3203                                                                                                   1.00
3204                                                                                                   8.00
3205                                                                                                 120.00
3206                                                                                                   8.20
3207                                                                                               45293.00
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3210                                                                                                 272.00
3211                                                                                                1000.00
3212                                                                                                 1 pump
3213                                                                                                   0.01
3214                                                                                                 500.00
3215                                                                                                 500.00
3216                                                                                                   1.50
3217                                                                                                 100.00
3218                                                                                                   1.00
3219                                                                                                   2.00
3220                                                                                                  75.00
3221                                                                                                   0.70
3222                                                                                                   0.35
3223                                                                                                   0.35
3224                                                                                                   0.30
3225                                                                                                   0.30
3226                                                                                                   1.00
3227                                                                                                1000.00
3228                                                                                                   0.30
3229                                                                                                   0.60
3230                                                                                                1000.00
3231                                                                                                 500.00
3232                                                                                                   0.30
3233                                                                                                   1.00
3234                                                                                                   1.00
3235                                                                                                1000.00
3236                                                                                                   0.30
3237                                                                                                   1.00
3238                                                                                                   1.00
3239                                                                                                  34.50
3240                                                                                                 272.00
3241                                                                                                1000.00
3242                                                                                                   0.30
3243                                                                                                   1.00
3244                                                                                                   1.00
3245                                                                                                  68.00
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3248                                                                                                 500.00
3249                                                                                                  10.00
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3252                                                                                                1900.00
3253                                                                           based on weight (50-100 lbs)
3254                                                                                                     75
3255                                                                                                     75
3256                                                                                                  10.00
3257                                                                           based on weight (50-100 lbs)
3258                                                                                                 300.00
3259                                                                                                 100.00
3260                                                                                                  56.00
3261                                                                                                 500 mg
3262                                                                                                 136.00
3263                                                                                                   1.00
3264                                                                                                   1.00
3265                                                                                                   1.00
3266                                                                                                 100.00
3267                                                                                                 250.00
3268                                                                                                   1.00
3269                                                                                                   1.00
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3272                                                                                                   1.00
3273                                                                                                   1.00
3274                                                                                                 500.00
3275                                                                                                 625.00
3276                                                                                                  14.00
3277                                                                                                 750.00
3278                                                                                        0.25 inch strip
3279                                                                                                  50.00
3280                                                                           based on weight (50-100 lbs)
3281                                                                                                   1.00
3282                                                                                                 375.00
3283                                                                                                  50.00
3284                                                                           based on weight (51-100 lbs)
3285                                                                                                 500.00
3286                                                                                                 100.00
3287                                                                                            application
3288                                                                                                 200.00
3289                                                                                                  10.00
3290                                                                                                  40.00
3291                                                                                            application
3292                                                                                                 500.00
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3295                                                                                                 500.00
3296                                                                                                   1.00
3297                                                                                                 150.00
3298                                                                                                  40.00
3299                                                                                                  15.00
3300                                                                           based on weight (51-100 lbs)
3301                                                                                                  50.00
3302                                                                                                  50.00
3303                                                                                                     75
3304                                                                                                   1.00
3305                                                                                           small amount
3306                                                                                                 272.00
3307                                                                                                1400.00
3308                                                                                                 272.00
3309                                                                                                1000.00
3310                                                                                                 272.00
3311                                                                                                1400.00
3312                                                                                           small amount
3313                                                                                           small amount
3314                                                                                                  23.00
3315                                                                                                   1.00
3316                                                                                                  80.00
3317                                                                                                 300.00
3318                                                                                                 150.00
3319                                                                                                 300.00
3320                                                                                                   6.00
3321                                                                                                1000.00
3322                                                                                                   0.60
3323                                                                                                   3.60
3324                                                                                                  15.00
3325                                                                                                  90.00
3326                                                                                                  60.00
3327                                                                                                  45.00
3328                                                                                                  23.00
3329                                                                                                  37.50
3330                                                                                                   1.00
3331                                                                                                   1.00
3332                                                                                                 500.00
3333                                                                                                   2.00
3334                                                                                                   4.00
3335                                                                                                   1.00
3336                                                                                                   1.00
3337                                                                                                 500.00
3338                                                                                                   1.00
3339                                                                           based on weight (51-100 lbs)
3340                                                                                                  75.00
3341                                                                                                  50.00
3342                                                                                            unspecified
3343                                                                                                 500.00
3344                                                                                                 500.00
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3347                                                                                                 500.00
3348                                                                                                 125.00
3349                                                                                                  13.50
3350                                                                                            unspecified
3351                                                                                                 227.00
3352                                                                                                 136.00
3353                                                                                                 114.00
3354                                                                                                 204.00
3355                                                                                                 136.00
3356                                                                                                   1.00
3357                                                                                                 150.00
3358                                                                                                 136.00
3359                                                                                                     66
3360                                                                                        based on weight
3361                                                                                                 150.00
3362                                                                                                 272.00
3363                                                                                                   4.00
3364                                                                                                  50.00
3365                                                                                                   1.00
3366                                                                                            unspecified
3367                                                                                                1250.00
3368                                                                                                 100.00
3369                                                                                                  27.00
3370                                                                                                   6.00
3371                                                                                                   6.00
3372                                                                                            unspecified
3373                                                                                                 227.00
3374                                                                                                 136.00
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3377                                                                                                 272.00
3378                                                                                                 136.00
3379                                                                                                   1.00
3380                                                                                                   5.00
3381                                                                                                1000.00
3382                                                                                                  10.00
3383                                                                                                 136.00
3384                                                                                                     66
3385                                                                                                   2.00
3386                                                                                                   2.00
3387                                                                                                   1.00
3388                                                                                                 272.00
3389                                                                                                   4.00
3390                                                                                                   0.80
3391                                                                                                 204.00
3392                                                                                                 600.00
3393                                                                                                   1.00
3394                                                                                            unspecified
3395                                                                                                 250.00
3396                                                                                                  68.00
3397                                                                                                1200.00
3398                                                                                                 500.00
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3400                                                                                                  11.50
3401                                                                                                  68.00
3402                                                                                                1000.00
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3407                                                                                                     75
3408                                                                                                     42
3409                                                                                                   1.00
3410                                                                                                 100.00
3411                                                                                                   1.00
3412                                                                                                 113.50
3413                                                                                                 200.00
3414                                                                                                  60.00
3415                                                                                                 113.50
3416                                                                                                   1.00
3417                                                                                                  60.00
3418                                                                                                   5.00
3419                                                                                                  60.00
3420                                                                                                  25.00
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3424                                                                                                   2.70
3425                                                                                            unspecified
3426                                                                                            unspecified
3427                                                                                                   3.75
3428                                                                                                1620.00
3429                                                                             based on weight (4-60 lbs)
3430                                                                                                  23.00
3431                                                                                                1000.00
3432                                                                                                  23.00
3433                                                                                                1000.00
3434                                                                                                 227.00
3435                                                                                                1000.00
3436                                                                                                  60.00
3437                                                                                           small amount
3438                                                                                                  60.00
3439                                                                                                 1 tube
3440                                                                                                 272.00
3441                                                                                                1000.00
3442                                                                                                 272.00
3443                                                                                                 136.00
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3450                                                                                                  11.50
3451                                                                                                23, 460
3452                                                                                                  23.00
3453                                                                                                  23.00
3454                                                                                                   9.80
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3460                                                                                                  23.00
3461                                                                                                   2.68
3462                                                                                                   0.70
3463                                                                                                   0.60
3464                                                                                                   0.80
3465                                                                                                  50 mg
3466                                                                                                 272.00
3467                                                                                                  50.00
3468                                                                                                   2.80
3469                                                                                                 272.00
3470                                                                                                  50.00
3471                                                                                                  50.00
3472                                                                                                 272.00
3473                                                                                                  50.00
3474                                                                                                 200.00
3475                                                                                                  50.00
3476                                                                                                 150.00
3477                                                                                                  50.00
3478                                                                                                   1.00
3479                                                                                                  23.00
3480                                                                                                   1.00
3481                                                                                                 750.00
3482                                                                                                   7.50
3483                                                                                                  23.00
3484                                                                                                 460.00
3485                                                                                                  23.00
3486                                                                                                 200.00
3487                                                                                                   66.5
3488                                                                              based on weight (25+ lbs)
3489                                                                                                 170.00
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3493                                                                                                  60.00
3494                                                                                                 750.00
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3499                                                                                                 500.00
3500                                                                                                  75.00
3501                                                                                                 200.00
3502                                                                                                1000.00
3503                                                                                                  50.00
3504                                                                                                  75.00
3505                                                                                                 250.00
3506                                                                                                  60.00
3507                                                                                                 500.00
3508                                                                                                  60.00
3509                                                                                                   3.00
3510                                                                                                   2.50
3511                                                                                                  75.00
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3518                                                                                                 100.00
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3521                                                                                                1000.00
3522                                                                           based on weight (51-100 lbs)
3523                                                                                                1000.00
3524                                                                                                 800.00
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3527                                                                                                 272.00
3528                                                                                                 200.00
3529                                                                                                  90.00
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3532                                                                                                  90.00
3533                                                                                                  75.00
3534                                                                                                  90.00
3535                                                                                            unspecified
3536                                                                                                  75.00
3537                                                                                                 100.00
3538                                                                                                 200.00
3539                                                                                                  20.00
3540                                                                                                  25.00
3541                                                                                                  30.00
3542                                                                                                  57.00
3543                                                                                                   0.05
3544                                                                                                   9.30
3545                                                                                                 810.00
3546                                                                                                  13.50
3547                                                                                                 272.00
3548                                                                                                  23.00
3549                                                                                                  23.00
3550                                                                                                  23.00
3551                                                                                                 272.00
3552                                                                                                  68.00
3553                                                                                                 500.00
3554                                                                                                  10.00
3555                                                                                                 272.00
3556                                                                                                  68.00
3557                                                                                                 272.00
3558                                                                                                   1.00
3559                                                                                                 500.00
3560                                                                                                   1.00
3561                                                                                                   1.00
3562                                                                                                   1.00
3563                                                                                                   1.00
3564                                                                                                   1.00
3565                                                                                                 100.00
3566                                                                                                   1.00
3567                                                                                                 100.00
3568                                                                                                1620.00
3569                                                                                                  27.00
3570                                                                                                 200.00
3571                                                                                                   1.50
3572                                                                                                  32.50
3573                                                                                                 375.00
3574                                                                                                   4.00
3575                                                                                                  55.00
3576                                                                                                1620.00
3577                                                                                                  27.00
3578                                                                                                 375.00
3579                                                                                                1620.00
3580                                                                                                  27.00
3581                                                                                    tablet/pill/capsule
3582                                                                                                   1.70
3583                                                                                                   0.09
3584                                                                                                   1.30
3585                                                                                                   3.40
3586                                                                                                   2.00
3587                                                                                                   8.50
3588                                                                                                      2
3589                                                                                                1620.00
3590                                                                                                  27.00
3591                                                                                                   0.20
3592                                                                                                   0.30
3593                                                                                                   3.00
3594                                                                                                   0.03
3595                                                                                                   1.40
3596                                                                                                  75.00
3597                                                                                                 200.00
3598                                                                                                 100.00
3599                                                                                                 200.00
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3602                                                                                                  75.00
3603                                                                                                 100.00
3604                                                                                                 190.00
3605                                                                                                  80.00
3606                                                                                                   1.00
3607                                                                                                   1.00
3608                                                                                                  16.00
3609                                                                                                  75.00
3610                                                                                                   2.00
3611                                                                                                1620.00
3612                                                                                                  27.00
3613                                                                                                  16.00
3614                                                                                                1620.00
3615                                                                                                  27.00
3616                                                                                                   1.00
3617                                                                                                   3.00
3618                                                                                                  80.00
3619                                                                                                23, 228
3620                                                                                                 375.00
3621                                                                                                  16.00
3622                                                                                           pack/package
3623                                                                                                  80.00
3624                                                                                                  11.50
3625                                                                                                  60.00
3626                                                                                                  20.00
3627                                                                                                 272.00
3628                                                                                                  40.00
3629                                                                                                 500.00
3630                                                                                                  10.00
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3633                                                                                                 100.00
3634                                                                                                 230.00
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3637                                                                                                 325.00
3638                                                                                                  50.00
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3642                                                                                                 250.00
3643                                                                                                  20.00
3644                                                                                                1300.00
3645                                                                                                   5.00
3646                                                                                                   4.00
3647                                                                                                   4.00
3648                                                                                                   4.00
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3653                                                                                                   7.00
3654                                                                                                 500.00
3655                                                                                                  68.00
3656                                                                                                 250.00
3657                                                                                                   6.00
3658                                                                                                 102.00
3659                                                                                                 375.00
3660                                                                                                   1.34
3661                                                                                                 136.00
3662                                                                                                   2.68
3663                                                                                                   1.00
3664                                                                                                 272.00
3665                                                                                                 136.00
3666                                                                                                  spray
3667                                                                                           small amount
3668                                                                                                   1.00
3669                                                                                                   1.00
3670                                                                                                   1.00
3671                                                                                                  23.00
3672                                                                                                 136.00
3673                                                                                                  16.00
3674                                                                                                  16.00
3675                                                                                           small amount
3676                                                                                                1000.00
3677                                                                                                  23.00
3678                                                                                                   1.00
3679                                                                                                  75.00
3680                                                                                                1000.00
3681                                                                                                   2.70
3682                                                                                                   3.70
3683                                                                                                   0.52
3684                                                                                            unspecified
3685                                                                                            unspecified
3686                                                                                                1000.00
3687                                                                                                  75.00
3688                                                                                                   6.00
3689                                                                                                   1.00
3690                                                                                                   1.00
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3694                                                                                                  16.00
3695                                                                                                  16.00
3696                                                                                                 272.00
3697                                                                                                 500.00
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3700                                                                                                  50.00
3701                                                                           based on weight (51-100 lbs)
3702                                                                                                 750.00
3703                                                                                                 500.00
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3707                                                                                                 200.00
3708                                                                                                 300.00
3709                                                                                                  74.00
3710                                                                                            unspecified
3711                                                                                                  75.00
3712                                                                                                 250.00
3713                                                                                                 187.50
3714                                                                                                 125.00
3715                                                                                                  62.50
3716                                                                                                  12.50
3717                                                                                                  10.00
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3720                                                                                                   1.00
3721                                                                                                 272.00
3722                                                                                                  68.00
3723                                                                                                   2.50
3724                                                                                                  60.00
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3727                                                                                                 272.00
3728                                                                                                  16.08
3729                                                                                                   3.00
3730                                                                                                   5.00
3731                                                                                                  50.00
3732                                                                                                 272.00
3733                                                                                                   1.00
3734                                                                                                  10.00
3735                                                                                                   gtts
3736                                                                                                 500.00
3737                                                                                                 100.00
3738                                                                                                1 mg/kg
3739                                                                                                 800.00
3740                                                                                                  75.00
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3746                                                                                                  90.00
3747                                                                                                  10.00
3748                                                                                                 100.00
3749                                                                                                   1.00
3750                                                                                          23 mg, 460 mg
3751                                                                                                   1.00
3752                                                                                                 272.00
3753                                                                                                 227.00
3754                                                                                                   0.02
3755                                                                                                 500.00
3756                                                                                                   0.01
3757                                                                                                 200.00
3758                                                                                                   0.01
3759                                                                                                   0.02
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3761                                                                                                   1.00
3762                                                                                                 150.00
3763                                                                                                   1.00
3764                                                                                                  10.00
3765                                                                                                  10.00
3766                                                                                                 300.00
3767                                                                                                  50.00
3768                                                                                                 100.00
3769                                                                                                 250.00
3770                                                                                                1620.00
3771                                                                                                   5.00
3772                                                                                                   1.00
3773                                                                                            application
3774                                                                                                   0.03
3775                                                                                                1692.00
3776                                                                                                 375.00
3777                                                                                                  16.00
3778                                                                                                   1.00
3779                                                                                                1620.00
3780                                                                                                 100.00
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3787                                                                                                1620.00
3788                                                                                                  70.00
3789                                                                                            unspecified
3790                                                                                                  16.00
3791                                                                                                   1.00
3792                                                                                                 250.00
3793                                                                                                   1.00
3794                                                                                                   5.00
3795                                                                                                   1.00
3796                                                                                                  10.00
3797                                                                                                  spray
3798                                                                                            as directed
3799                                                                                                  16.00
3800                                                                                            application
3801                                                                                                  16.00
3802                                                                                                  75.00
3803                                                                                                   1800
3804                                                                                                 200 mg
3805                                                                                                  16.00
3806                                                                                                 250.00
3807                                                                                                   5.00
3808                                                                                                  75.00
3809                                                                                                 120.00
3810                                                                                                 272.00
3811                                                                                                  75.00
3812                                                                                                  75.00
3813                                                                                                 272.00
3814                                                                                                 272.00
3815                                                                                        based on weight
3816                                                                                                   1.00
3817                                                                                                   2.90
3818                                                                                                   5.80
3819                                                                                                   1.00
3820                                                                                                  60.00
3821                                                                                                 170.00
3822                                                                                                   2.00
3823                                                                                                  60.00
3824                                                                                                   1.00
3825                                                                                                  20.00
3826                                                                                                  75.00
3827                                                                                                 560.00
3828                                                                                                 500.00
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3831                                                                                                1620.00
3832                                                                                                  50.00
3833                                                                                                   2.50
3834                                                                                                   3.00
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3841                                                                                                 272.00
3842                                                                                                 136.00
3843                                                                                                   0.40
3844                                                                                                   3.00
3845                                                                                                   0.40
3846                                                                                                  32.50
3847                                                                                                  50.00
3848                                                                                        0.25 inch strip
3849                                                                                                 136.00
3850                                                                                                   1.00
3851                                                                                                  32.50
3852                                                                                                 500.00
3853                                                                                                  50.00
3854                                                                                                 500.00
3855                                                                                                 200.00
3856                                                                                                  50.00
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3862                                                                                                  37.50
3863                                                                                                 560.00
3864                                                                                                 500.00
3865                                                                                                 250.00
3866                                                                                                  50.00
3867                                                                                           small amount
3868                                                                                                 272.00
3869                                                                                                 136.00
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3873                                                                                                   0.40
3874                                                                                           small amount
3875                                                                                                 272.00
3876                                                                                                 136.00
3877                                                                                                   0.40
3878                                                                                                   0.30
3879                                                                                                   0.30
3880                                                                                                   0.80
3881                                                                           based on weight (51-100 lbs)
3882                                                                                                 960.00
3883                                                                                                 272.00
3884                                                                                                   66.5
3885                                                                                                   66.5
3886                                                                           based on weight (51-100 lbs)
3887                                                                                                 113.50
3888                                                                                                   3.00
3889                                                                           based on weight (51-100 lbs)
3890                                                                                                   66.5
3891                                                                                                 272.00
3892                                                                                                   2.68
3893                                                                                                 200.00
3894                                                                                                  10.00
3895                                                                                                1000.00
3896                                                                                                     66
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3899                                                                                                 100.00
3900                                                                           based on weight (51-100 lbs)
3901                                                                                                 272.00
3902                                                                                                     66
3903                                                                           based on weight (51-100 lbs)
3904                                                                                                   66.5
3905                                                                                                  10.00
3906                                                                           based on weight (51-100 lbs)
3907                                                                                                   66.5
3908                                                                                                 272.00
3909                                                                                                   2.68
3910                                                                                                1000.00
3911                                                                           based on weight (51-100 lbs)
3912                                                                                                   66.5
3913                                                                                                 272.00
3914                                                                                                 272.00
3915                                                                                                  23.00
3916                                                                                                 460.00
3917                                                                                                 272.00
3918                                                                                                 227.00
3919                                                                                                 272.00
3920                                                                                                 227.00
3921                                                                                                   2.68
3922                                                                                                   4.00
3923                                                                                                   2.68
3924                                                                                                  23.00
3925                                                                                                  23.00
3926                                                                                                  23.00
3927                                                                                                 100.00
3928                                                                                                  75.00
3929                                                                                                  50.00
3930                                                                                                1647.00
3931                                                                                                 500.00
3932                                                                                                 250.00
3933                                                                                                  50.00
3934                                                                                                   3.60
3935                                                                                                 843.50
3936                                                                                                   50.5
3937                                                                                                   1.00
3938                                                                           based on weight (51-100 lbs)
3939                                                                                                 100.00
3940                                                                                                   5.00
3941                                                                                                 200.00
3942                                                                                                   42.5
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3947                                                                                                  16.00
3948                                                                                                  20.00
3949                                                                                                   1.00
3950                                                                                                 375.00
3951                                                                                                 100.00
3952                                                                           based on weight (51-100 lbs)
3953                                                                                                  50.00
3954                                                                                                 375.00
3955                                                                                                     37
3956                                                                                                  60.00
3957                                                                                                   2.00
3958                                                                                                   1.00
3959                                                                                                 100.00
3960                                                                                                   1.00
3961                                                                                                 100.00
3962                                                                                                 375.00
3963                                                                                                 100.00
3964                                                                                                  60.00
3965                                                                                                  75.00
3966                                                                                                1647.00
3967                                                                                                  25.00
3968                                                                                                  25.00
3969                                                                                                  12.50
3970                                                                                                 826.50
3971                                                                                                   3.60
3972                                                                          based on weight (40.1-60 lbs)
3973                                                                                                  12.50
3974                                                                                                  50.00
3975                                                                                                  12.50
3976                                                                                                  35.00
3977                                                                                                 200.00
3978                                                                                                   2.00
3979                                                                                                   2.00
3980                                                                           based on weight (51-100 lbs)
3981                                                                                                     42
3982                                                                                                  12.50
3983                                                                                                  12.50
3984                                                                           based on weight (51-100 lbs)
3985                                                                                                     42
3986                                                                                                 300.00
3987                                                                                                 150.00
3988                                                                                                 150.00
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
3991                                                                                                  12.50
3992                                                                                                 150.00
3993                                                                                                 375.00
3994                                                                                                 100.00
3995                                                                                                   1.10
3996                                                                                                  12.50
3997                                                                                                  60.00
3998                                                                                                  12.50
3999                                                                                                 110.00
4000                                                                                            unspecified
4001                                                                                                   1.00
4002                                                                                                   1.20
4003                                                                                                  12.50
4004                                                                                                  12.50
4005                                                                                                   1.10
4006                                                                                                   1.00
4007                                                                                                 100.00
4008                                                                                                  60.00
4009                                                                                                   2.00
4010                                                                                                   1.00
4011                                                                                                 500.00
4012                                                                                                 136.00
4013                                                                                                  23.00
4014                                                                                                  23.00
4015                                                                                                  23.00
4016                                                                                                   1.00
4017                                                                           based on weight (51-100 lbs)
4018                                                                                                 200.00
4019                                                                                                  16.00
4020                                                                                                 300.00
4021                                                                                                 200.00
4022                                                                                                 500.00
4023                                                                                                 150.00
4024                                                                                                 100.00
4025                                                                                                  50.00
4026                                                                                                   6.00
4027                                                                                                  10.00
4028                                                                                                 111.00
4029                                                                                                1000.00
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4032                                                                                                   4.70
4033                                                                                                 136.00
4034                                                                                                  75.00
4035                                                                                                 100.00
4036                                                                                                 200.00
4037                                                                                                  23.00
4038                                                                                                1620.00
4039                                                                                                  23.00
4040                                                                                                1620.00
4041                                                                                                 500.00
4042                                                                                            unspecified
4043                                                                                                  75.00
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4046                                                                                                   1.40
4047                                                                                                  80 mg
4048                                                                                                 500.00
4049                                                                                                 720.00
4050                                                                                                 500.00
4051                                                                                                  10.00
4052                                                                                                  25.00
4053                                                                                                   3.00
4054                                                                                                   9.00
4055                                                                                                 500.00
4056                                                                                                  10.00
4057                                                                                                  60.00
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4061                                                                                                 272.00
4062                                                                                                 227.00
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4065                                                                                                  16.00
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4078                                                                                                 100.00
4079                                                                                                 500.00
4080                                                                                                 750.00
4081                                                                                                 100.00
4082                                                                                                 113.50
4083                                                                                                 750.00
4084                                                                                                 170.00
4085                                                                                                 100.00
4086                                                                                                  70.00
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4090                                                                                                 113.50
4091                                                                                                   1.20
4092                                                                                      1 syringe/pipette
4093                                                                                                   1.50
4094                                                                                                   3.00
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4098                                                                                                 500.00
4099                                                                                                 150.00
4100                                                                                                 100.00
4101                                                                                                   8.00
4102                                                                                                   3.00
4103                                                                                                 150.00
4104                                                                                                 500.00
4105                                                                                                 720.00
4106                                                                                                 650.00
4107                                                                                                 150.00
4108                                                                                                  60.00
4109                                                                                                   1.00
4110                                                                                                  45.00
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4115                                                                                                 200.00
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4121                                                                                                1620.00
4122                                                                                                     90
4123                                                                                                 200.00
4124                                                                                                  16.00
4125                                                                                               27, 1620
4126                                                                                                 200.00
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4129                                                                                                 200.00
4130                                                                                                     90
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4135                                                                                                  16.00
4136                                                                                                  50.00
4137                                                                                                 100.00
4138                                                                                                 100.00
4139                                                                                                   3.00
4140                                                                                                   7.50
4141                                                                                                  20.00
4142                                                                                                 160.00
4143                                                                                                  10.00
4144                                                                                                 500.00
4145                                                                                                   3.00
4146                                                                                                   6.00
4147                                                                                                   1.50
4148                                                                                                 500.00
4149                                                                                                 227.00
4150                                                                                                 100.00
4151                                                                                                  73.00
4152                                                                                                 500.00
4153                                                                                                 500.00
4154                                                                                                   1.00
4155                                                                                                   1.34
4156                                                                                                 272.00
4157                                                                                                 227.00
4158                                                                                                   2.68
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4163                                                                                                   2.00
4164                                                                                                   4.40
4165                                                                                                  20.00
4166                                                                                                  37.50
4167                                                                                                1000.00
4168                                                                                                   1.00
4169                                                                                                  80.00
4170                                                                                                   4.00
4171                                                                                                 500.00
4172                                                                            based on weight (45-88 lbs)
4173                                                                                                 272.00
4174                                                                                                 272.00
4175                                                                                                   1.00
4176                                                                                                   1.00
4177                                                                                                 272.00
4178                                                                                                1620.00
4179                                                                                                1620.00
4180                                                                                                 360.00
4181                                                                                                 360.00
4182                                                                                                 240.00
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4185                                                                                                 100.00
4186                                                                                                  75.00
4187                                                                                                 200.00
4188                                                                                                 240.00
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4192                                                                                                  75.00
4193                                                                                            application
4194                                                                                                 200.00
4195                                                                                                   6.00
4196                                                                                                1620.00
4197                                                                                                   1.00
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4200                                                                                                 200.00
4201                                                                                                  16.00
4202                                                                                                  23.00
4203                                                                                                  80.00
4204                                                                                                   1 ml
4205                                                                                                 375.00
4206                                                                                                  80.00
4207                                                                                                 810.00
4208                                                                                                 272.00
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4211                                                                                                 810.00
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4214                                                                                                  23.00
4215                                                                                                23, 460
4216                                                                                            unspecified
4217                                                                                                  20.00
4218                                                                                            unspecified
4219                                                                                                 100.00
4220                                                                                                 120.00
4221                                                                                                 100.00
4222                                                                                                 100.00
4223                                                                                                  60.00
4224                                                                                                  28.00
4225                                                                                                1000.00
4226                                                                                                 136.00
4227                                                                                                 500.00
4228                                                                                                 500.00
4229                                                                                                15.7 ml
4230                                                                                                 150.00
4231                                                                                                  20.00
4232                                                                                                 120.00
4233                                                                                                 150.00
4234                                                                                                 100 mg
4235                                                                                                   0.60
4236                                                                                                   2.00
4237                                                                                                   1.00
4238                                                                                                   1.00
4239                                                                                                 300.00
4240                                                                                                 125.00
4241                                                                                                 375.00
4242                                                                                                 150.00
4243                                                                                                  70.00
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4246                                                                                                 272.00
4247                                                                                            unspecified
4248                                                                                                   0.50
4249                                                                                                   1.00
4250                                                                                                 875.00
4251                                                                                                 272.00
4252                                                                                                 136.00
4253                                                                                                   0.50
4254                                                                                                 272.00
4255                                                                                                   0.50
4256                                                                                                 136.00
4257                                                                                                 272.00
4258                                                                                                 136.00
4259                                                                                                   0.50
4260                                                                                                  60.00
4261                                                                                                 272.00
4262                                                                                                 136.00
4263                                                                                                   0.50
4264                                                                                                 310.00
4265                                                                                                 1 drop
4266                                                                                            as directed
4267                                                                                                  70.00
4268                                                                                                   0.13
4269                                                                                                   0.11
4270                                                                                                   0.20
4271                                                                                                   6.00
4272                                                                                                  30.00
4273                                                                                                  60.00
4274                                                                                            unspecified
4275                                                                                                 500.00
4276                                                                                                   0.25
4277                                                                                                  12.50
4278                                                                                                 250.00
4279                                                                                                 125.00
4280                                                                                                 250.00
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4283                                                                                                 227.00
4284                                                                                                 272.00
4285                                                                                                 272.00
4286                                                                                                 272.00
4287                                                                                                   1.00
4288                                                                                                   2.00
4289                                                                                                  25.00
4290                                                                                                 300.00
4291                                                                                                 100.00
4292                                                                                                  50.00
4293                                                                                                   7.20
4294                                                                                                 150.00
4295                                                                                                 125.00
4296                                                                                                  65.00
4297                                                                                                  50.00
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4300                                                                                                 750.00
4301                                                                                                 100.00
4302                                                                           based on weight (51-100 lbs)
4303                                                                                                   66.5
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4310                                                                                                1200.00
4311                                                                                            unspecified
4312                                                                                                  75.00
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4315                                                                                                  60.00
4316                                                                                                   1.60
4317                                                                                                  75.00
4318                                                                                                 300.00
4319                                                                                                   5.00
4320                                                                                                 200.00
4321                                                                                                 120.00
4322                                                                                                 200.00
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4327                                                                                                 500.00
4328                                                                                                   1.00
4329                                                                                                 100.00
4330                                                                                                  50.00
4331                                                                                                  75.00
4332                                                                                                   5.00
4333                                                                                                 300.00
4334                                                                                                   1 ml
4335                                                                                                   2.00
4336                                                                                            unspecified
4337                                                                                                   1.00
4338                                                                         based on weight (50.1-100 lbs)
4339                                                                                                   1.00
4340                                                                                                   1.00
4341                                                                                                 100 mg
4342                                                                                                  50.00
4343                                                                                                   1.00
4344                                                                                                  10.00
4345                                                                                                 250.00
4346                                                                                                 500.00
4347                                                                                                   1.00
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4351                                                                                                   50.5
4352                                                                                                   1.00
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4355                                                                                                  15.00
4356                                                                                                  17.00
4357                                                                                                   0.40
4358                                                                                                  75.00
4359                                                                                                     90
4360                                                                                                1 spray
4361                                                                                                  16.00
4362                                                                                                 810.00
4363                                                                                                 100.00
4364                                                                                                 900.00
4365                                                                                                 375.00
4366                                                                                                  75.00
4367                                                                                                  50.00
4368                                                                                        based on weight
4369                                                                                                   1.00
4370                                                                                                 500.00
4371                                                                                        based on weight
4372                                                                                                 250.00
4373                                                                                                   1.00
4374                                                                                                 500.00
4375                                                                                                 200.00
4376                                                                                                 500.00
4377                                                                                                  25.00
4378                                                                                                 100.00
4379                                                                                                   1.00
4380                                                                                                 200.00
4381                                                                                                 272.00
4382                                                                                                 227.00
4383                                                                                                  50.00
4384                                                                                               350, 900
4385                                                                                                   1.00
4386                                                                                                 150.00
4387                                                                                                 272.00
4388                                                                                                 900.00
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4391                                                                                                  23.00
4392                                                                                                  23.00
4393                                                                                                  23.00
4394                                                                                                 130.00
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4396                                                                                                  16.00
4397                                                                                                  60.00
4398                                                                                                  60.00
4399                                                                                                 272.00
4400                                                                                                  16.00
4401                                                                                                  16.00
4402                                                                                                  16.00
4403                                                                                                  16.00
4404                                                                                                  75.00
4405                                                                                              13.5, 810
4406                                                                                                 250.00
4407                                                                                                 250.00
4408                                                                                                 150.00
4409                                                                                         1 pack/package
4410                                                                                                   1.50
4411                                                                                                 500.00
4412                                                                                                 500.00
4413                                                                                                  10.00
4414                                                                                                  50.00
4415                                                                                                  75.00
4416                                                                                                   2.50
4417                                                                                                   2.60
4418                                                                                                   3.00
4419                                                                                                   4.50
4420                                                                                                  75.00
4421                                                                                                 375.00
4422                                                                                                1500.00
4423                                                                                                 750.00
4424                                                                                                 500.00
4425                                                                                                  30.00
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4429                                                                                                 500.00
4430                                                                                                  spray
4431                                                                                                  spray
4432                                                                                                 100.00
4433                                                                                                 175.00
4434                                                                                                 150.00
4435                                                                                                 270.00
4436                                                                                                1000.00
4437                                                                                                   1.00
4438                                                                                                   1.00
4439                                                                                                 150.00
4440                                                                                                   1.00
4441                                                                                                   1.00
4442                                                                                                   1.00
4443                                                                                                 560.00
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4447                                                                                                   1.00
4448                                                                                                   2.00
4449                                                                                                 375.00
4450                                                                                                   2.00
4451                                                                                                 150.00
4452                                                                                                   7.50
4453                                                                                                   3.00
4454                                                                                               inhalant
4455                                                                                                  50.00
4456                                                                                                   2.60
4457                                                                                                 190.00
4458                                                                                                   9.50
4459                                                                                                   0.36
4460                                                                                                  15.00
4461                                                                                                  75.00
4462                                                                                                 375.00
4463                                                                                                   6.00
4464                                                                                                 100.00
4465                                                                                                 375.00
4466                                                                                                 125.00
4467                                                                                                  40.00
4468                                                                                                 170.00
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4473                                                                                                 170.00
4474                                                                                                 500.00
4475                                                                                                 375.00
4476                                                                                                  75.00
4477                                                                                                  40.00
4478                                                                                                  12.00
4479                                                                                                 100.00
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4482                                                                                                   2.00
4483                                                                                        based on weight
4484                                                                                                 136.00
4485                                                                                                   1.00
4486                                                                               3 tablets/pills/capsules
4487                                                                                                   2.00
4488                                                                                                   1 ml
4489                                                                                                  16.00
4490                                                                                                   8.00
4491                                                                                                   1 ml
4492                                                                                                 500.00
4493                                                                                                  60.00
4494                                                                                                   8.00
4495                                                                                                  16.00
4496                                                                                                   8.00
4497                                                                           based on weight (51-100 lbs)
4498                                                                                                   90.5
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4503                                                                                                  16.00
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4506                                                                                                   0.96
4507                                                                                                  40.00
4508                                                                                                  16.00
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4512                                                                                                   1.00
4513                                                                                                  16.00
4514                                                                                                   1.00
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4518                                                                                                   1.00
4519                                                                                                  16.00
4520                                                                                                  75.00
4521                                                                                                   1.00
4522                                                                                                   1.00
4523                                                                                                   8.00
4524                                                                           based on weight (50-100 lbs)
4525                                                                                                 272.00
4526                                                                                                 228.00
4527                                                                                                 228.00
4528                                                                                                1000.00
4529                                                                                                   1.00
4530                                                                                                   1.00
4531                                                                                                   1.00
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4537                                                                                                1000.00
4538                                                                                                   1.00
4539                                                                                                 272.00
4540                                                                                                 272.00
4541                                                                                                   4.70
4542                                                                                                 200.00
4543                                                                                                  50.00
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4546                                                                                                  75.00
4547                                                                                           small amount
4548                                                                                                 200.00
4549                                                                                                 200.00
4550                                                                                                  75.00
4551                                                                                                 375.00
4552                                                                                                   1.00
4553                                                                                                  75.00
4554                                                                                                  75.00
4555                                                                                                  25.00
4556                                                                                                 272.00
4557                                                                                                 250.00
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4563                                                                                                 100.00
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4570                                                                                                 300.00
4571                                                                                                  50.00
4572                                                                                                 300.00
4573                                                                                                  60.00
4574                                                                                                 500.00
4575                                                                                                 500.00
4576                                                                                                   8.00
4577                                                                                                   8.00
4578                                                                                                   1.00
4579                                                                                                 300.00
4580                                                                                                  50.00
4581                                                                                                   8.00
4582                                                                                                 810.00
4583                                                                                                 272.00
4584                                                                                                 227.00
4585                                                                                                 136.00
4586                                                                                                 272.00
4587                                                                           based on weight (51-100 lbs)
4588                                                                                                 136.00
4589                                                                                                 750.00
4590                                                                                                 272.00
4591                                                                                                 136.00
4592                                                                                                 750.00
4593                                                                                                 227.00
4594                                                                                                 136.00
4595                                                                                                  80.00
4596                                                                                                 750.00
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4601                                                                                                 272.00
4602                                                                                                 130.00
4603                                                                                                  16.00
4604                                                                                                 272.00
4605                                                                                                 100.00
4606                                                                                                  50.00
4607                                                                                                  16.00
4608                                                                                                   1.50
4609                                                                                                  30.00
4610                                                                                                 227.00
4611                                                                                               27, 1620
4612                                                                                                 300.00
4613                                                                                                  75.00
4614                                                                                                 240.00
4615                                                                                                 250.00
4616                                                                                                   4.00
4617                                                                                                   0.57
4618                                                                                                  27.00
4619                                                                                                1620.00
4620                                                                                                   1.00
4621                                                                                                 750.00
4622                                                                                                 200.00
4623                                                                                                  75.00
4624                                                                                                1620.00
4625                                                                                                  23.00
4626                                                                                                 460.00
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4632                                                                                                 750.00
4633                                                                                                1600.00
4634                                                                                            unspecified
4635                                                                                                  23.00
4636                                                                                                 750.00
4637                                                                                                1600.00
4638                                                                                        2.68 ml of 9.8%
4639                                                                                                   1.00
4640                                                                                                  15 au
4641                                                                                                  23.00
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4650                                                                                                   0.01
4651                                                                                           small amount
4652                                                                                        moderate amount
4653                                                                                                   3.18
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4656                                                                                                   1.00
4657                                                                                                   1.00
4658                                                                                                   1.00
4659                                                                                                1000.00
4660                                                                                                1000.00
4661                                                                                                1000.00
4662                                                                                                1000.00
4663                                                                                                   1.00
4664                                                                                                   1.00
4665                                                                                                 250.00
4666                                                                                                 500.00
4667                                                                                                 300.00
4668                                                                                                  50.00
4669                                                                                                  50.00
4670                                                                                                   1.00
4671                                                                                                   1.00
4672                                                                                                 200.00
4673                                                                                                 625.00
4674                                                                                                 225.00
4675                                                                                                 500.00
4676                                                                                                 500.00
4677                                                                                                   1.00
4678                                                                                                   1.00
4679                                                                                                   3.00
4680                                                                                                   3.00
4681                                                                                                  50.00
4682                                                                                                   1.00
4683                                                                                                   1.00
4684                                                                                                   1.00
4685                                                                                                 300.00
4686                                                                                                 200.00
4687                                                                                                  16.00
4688                                                                                                 125 mg
4689                                                                                                 272.00
4690                                                                                                 272.00
4691                                                                                                 273.00
4692                                                                                                  68.00
4693                                                                                                     75
4694                                                                                                     42
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4698                                                                                                 136.00
4699                                                                                                 100.00
4700                                                                                                   5 mg
4701                                                                                                 150.00
4702                                                                                                 250.00
4703                                                                                                  23 mg
4704                                                                                                 136.00
4705                                                                                                  23 mg
4706                                                                                                 500.00
4707                                                                                                 100.00
4708                                                                                                  12.50
4709                                                                                                   7.50
4710                                                                                                 100.00
4711                                                                                                 1 drop
4712                                                                                                   0.40
4713                                                                                                 272.00
4714                                                                                                   0.40
4715                                                                                                   0.20
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4718                                                                                                   0.40
4719                                                                                                  drops
4720                                                                                                  drops
4721                                                                                                  23.00
4722                                                                                                   0.40
4723                                                                                                1000.00
4724                                                                                                   3.60
4725                                                                                                 272.00
4726                                                                           based on weight (51-100 lbs)
4727                                                                                                   0.40
4728                                                                                                 500.00
4729                                                                                                   1.70
4730                                                                                                   0.60
4731                                                                                                  60.00
4732                                                                                                 272.00
4733                                                                                                  80.00
4734                                                                                                  60.00
4735                                                                                                   0.60
4736                                                                                                   1.50
4737                                                                                                  60.00
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4740                                                                                                   3.00
4741                                                                                                 200.00
4742                                                                                                   5.00
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4746                                                                                                 136.00
4747                                                                                                 900.00
4748                                                                                                 1 unit
4749                                                                                                   1.00
4750                                                                                                 900.00
4751                                                                                                 272.00
4752                                                                                                   5.00
4753                                                                                                 500.00
4754                                                                                                   0.50
4755                                                                                                 900.00
4756                                                                                                   0.50
4757                                                                                        based on weight
4758                                                                                                   1.50
4759                                                                                                   1.00
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4762                                                                                                   5.10
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4765                                                                                                  80.00
4766                                                                              based on weight (55+ lbs)
4767                                                                                                   5.50
4768                                                                                                  80.00
4769                                                                                                 200.00
4770                                                                                                 110.00
4771                                                                                                 200.00
4772                                                                                                   6.00
4773                                                                                                  16.00
4774                                                                                                 100.00
4775                                                                                                   2.50
4776                                                                                                  50.00
4777                                                                                            unspecified
4778                                                                                                  80.00
4779                                                                                                  50.00
4780                                                                                            unspecified
4781                                                                                                 200.00
4782                                                                                            unspecified
4783                                                                                                  16.00
4784                                                                                                   1.50
4785                                                                                                  80.00
4786                                                                                                   1.00
4787                                                                                                  16.00
4788                                                                                                 300.00
4789                                                                                                 200.00
4790                                                                                                  80.00
4791                                                                                                 200.00
4792                                                                                                 360.00
4793                                                                                                  80.00
4794                                                                                                 200.00
4795                                                                                                 100.00
4796                                                                                                 150.00
4797                                                                                                   5.00
4798                                                                                                  20 mg
4799                                                                                                 200.00
4800                                                                                                 200.00
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4808                                                                                                  23.00
4809                                                                                                 750.00
4810                                                                                                  75.00
4811                                                                                                  10.00
4812                                                                                                   1.40
4813                                                                                            unspecified
4814                                                                                                  60.00
4815                                                                                                   2.00
4816                                                                                                 250.00
4817                                                                                                   1.00
4818                                                                                                 500.00
4819                                                                                                 500.00
4820                                                                                                  60.00
4821                                                                                                   1.00
4822                                                                                                  10.80
4823                                                                                                  75.00
4824                                                                            based on weight (20-55 lbs)
4825                                                                                                  68.00
4826                                                                                            unspecified
4827                                                                                                  10.80
4828                                                                                            unspecified
4829                                                                                                  37.50
4830                                                                                                  23.00
4831                                                                                                1000.00
4832                                                                                                 0.1, 1
4833                                                                                                1000.00
4834                                                                                                  23.00
4835                                                                                                  23.00
4836                                                                                                1000.00
4837                                                                                                 100.00
4838                                                                                                   1.00
4839                                                                                                 150.00
4840                                                                                                   1.00
4841                                                                                                  16.00
4842                                                                                                   3.00
4843                                                                                                   2.00
4844                                                                                                 150.00
4845                                                                                                   2.00
4846                                                                                                   1.00
4847                                                                                                  60.00
4848                                                                                                1000.00
4849                                                                                                 100.00
4850                                                                                                 1 drop
4851                                                                                                   5.00
4852                                                                                                 150.00
4853                                                                                           small amount
4854                                                                                                  50.00
4855                                                                                               27, 1620
4856                                                                                                 810.00
4857                                                                                                  15.00
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4860                                                                                                 136.00
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4863                                                                                                 336.00
4864                                                                                                  10.00
4865                                                                                                   0.80
4866                                                                                                 180.00
4867                                                                                                1400.00
4868                                                                                                1000.00
4869                                                                                                   1.50
4870                                                                                                   1.00
4871                                                                                                  90.00
4872                                                                                                  50.00
4873                                                                                                1000.00
4874                                                                                                   5.00
4875                                                                                                  20.00
4876                                                                                                  20.00
4877                                                                                                  20.00
4878                                                                                                  70.00
4879                                                                                                  75.00
4880                                                                                                 750.00
4881                                                                                           small amount
4882                                                                                                   1.00
4883                                                                                                   1.00
4884                                                                                                 180.00
4885                                                                                                1200.00
4886                                                                                                  75.00
4887                                                                                                 100.00
4888                                                                                                   3.80
4889                                                                                                 500.00
4890                                                                                                 500.00
4891                                                                                                 300.00
4892                                                                                                   0.80
4893                                                                                                   5.00
4894                                                                                                   5.00
4895                                                                                                  50.00
4896                                                                                                  40.00
4897                                                                                                  33.20
4898                                                                                                  75.00
4899                                                                                                  20.00
4900                                                                                                  90.00
4901                                                                                                 272.00
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4903                                                                                                 272.00
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4906                                                                                                 272.00
4907                                                                                                   7.25
4908                                                                                                272 mcg
4909                                                                                                 272.00
4910                                                                                                 collar
4911                                                                                                 272.00
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4915                                                                                                1000.00
4916                                                                                                1000.00
4917                                                                                        23 mcg, 228 mcg
4918                                                                                                1000.00
4919                                                                                                 272.00
4920                                                                                                 228.00
4921                                                                                                 250.00
4922                                                                                                 180.00
4923                                                                                                 300.00
4924                                                                                                 300.00
4925                                                                                                  75.00
4926                                                                                                 300.00
4927                                                                                                 150.00
4928                                                                                                   1.00
4929                                                                                                  75.00
4930                                                                                                 300.00
4931                                                                                                 300.00
4932                                                                                                 150.00
4933                                                                                                  20.00
4934                                                                                                  75.00
4935                                                                           based on weight (51-100 lbs)
4936                                                                                                 136.00
4937                                                                                                 136.00
4938                                                                                                 136.00
4939                                                                                                  11.50
4940                                                                                                   1.00
4941                                                                                                  50.00
4942                                                                                                 125.00
4943                                                                                                 125.00
4944                                                                                                  50.00
4945                                                                                                 150.00
4946                                                                                                   1.00
4947                                                                                                 150.00
4948                                                                                                 125.00
4949                                                                                                   1.00
4950                                                                                                   1.00
4951                                                                                                 562.50
4952                                                                                                   0.40
4953                                                                                                1000.00
4954                                                                                                  27.00
4955                                                                                                1620.00
4956                                                                                            unspecified
4957                                                                                                   5.00
4958                                                                                                   6.00
4959                                                                                                  15.00
4960                                                                                           small amount
4961                                                                                                1620.00
4962                                                                                                  27.00
4963                                                                                                   2.00
4964                                                                                                1000.00
4965                                                                                                1620.00
4966                                                                                                  27.00
4967                                                                                                 180.00
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4970                                                                                                 360.00
4971                                                                                                  40.00
4972                                                                                                   1.00
4973                                                                                                  20.00
4974                                                                                                  23.00
4975                                                                                                  80.00
4976                                                                                                  80.00
4977                                                                                                 160.00
4978                                                                                                  40.00
4979                                                                                                 400.00
4980                                                                                           pack/package
4981                                                                                                23, 228
4982                                                                                                  80.00
4983                                                                                                   1.00
4984                                                                                                 200.00
4985                                                                                                 100.00
4986                                                                                                   1.00
4987                                                                                                   1.00
4988                                                                                                  25.00
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4991                                                                                                 136.00
4992                                                                                                  50.00
4993                                                                                                  50.00
4994                                                                                                 100.00
4995                                                                                                 200.00
4996                                                                                            unspecified
4997                                                                                                 200.00
4998                                                                                            unspecified
4999                                                                                                 200.00
5000                                                                                                 113.50
5001                                                                                                  20.00
5002                                                                                                 250.00
5003                                                                                                   1.00
5004                                                                                                 113.50
5005                                                                                                 300.00
5006                                                                                                 500.00
5007                                                                                                 227.00
5008                                                                                                   0.60
5009                                                                                                 300.00
5010                                                                                                   2.80
5011                                                                                                   0.60
5012                                                                                                 227.00
5013                                                                                                 200.00
5014                                                                                                 500.00
5015                                                                                                  10.00
5016                                                                                                  20.00
5017                                                                                                  40.00
5018                                                                                                  50.00
5019                                                                                                   1.00
5020                                                                                                 100.00
5021                                                                                                   2.00
5022                                                                                                   1.50
5023                                                                                                  50.00
5024                                                                                                  60.00
5025                                                                                                   1.00
5026                                                                                                   5.00
5027                                                                                                  12.00
5028                                                                                                   2.25
5029                                                                                                   1.20
5030                                                                                                 500.00
5031                                                                                                  75.00
5032                                                                                                   1.50
5033                                                                                                 500.00
5034                                                                                                   6.00
5035                                                                                                   0.40
5036                                                                                                   0.40
5037                                                                                                   0.40
5038                                                                                                   0.50
5039                                                                                                   0.30
5040                                                                                                 136 mg
5041                                                                                                  16.00
5042                                                                                                   0.50
5043                                                                                                  spray
5044                                                                                                  16.00
5045                                                                                                 500.00
5046                                                                                                  spray
5047                                                                                                  24.00
5048                                                                                                  70.00
5049                                                                                                  16.00
5050                                                                                                 136.00
5051                                                                                                 437.50
5052                                                                                                 300.00
5053                                                                                                  70.00
5054                                                                                                 100.00
5055                                                                                                  60.00
5056                                                                                                   0.40
5057                                                                                                   4.00
5058                                                                                                  60.00
5059                                                                                                  15.00
5060                                                                                                 375.00
5061                                                                                                   0.30
5062                                                                                                 100.00
5063                                                                                                   1.00
5064                                                                                                   1.00
5065                                                                                                 250.00
5066                                                                                                     90
5067                                                                                                     90
5068                                                                                                  15.00
5069                                                                                                   2.00
5070                                                                                                 200.00
5071                                                                                                  75.00
5072                                                                                                 350.00
5073                                                                                                  45.00
5074                                                                                                  75.00
5075                                                                                                  30.00
5076                                                                                                  75.00
5077                                                                                                   5.00
5078                                                                            based on weight (40-60 lbs)
5079                                                                                                 200.00
5080                                                                                                 500.00
5081                                                                                                   0.50
5082                                                                                                 272.00
5083                                                                                                   2.00
5084                                                                                                   1.00
5085                                                                                                 500.00
5086                                                                                                1620.00
5087                                                                                                   1.00
5088                                                                                                 500.00
5089                                                                                                 272.00
5090                                                                                                  50.00
5091                                                                                                 272.00
5092                                                                                                  27.00
5093                                                                                                 750.00
5094                                                                                                 272.00
5095                                                                                                 227.00
5096                                                                                                 136.00
5097                                                                                                 227.00
5098                                                                                                 136.00
5099                                                                                                 272.00
5100                                                                                                 136.00
5101                                                                                                  15.00
5102                                                                                                  75.00
5103                                                                                                 250.00
5104                                                                                                 272.00
5105                                                                                                 272.00
5106                                                                                                 500.00
5107                                                                                                 272.00
5108                                                                                                 500.00
5109                                                                                                   2.00
5110                                                                                                 150.00
5111                                                                                                 272.00
5112                                                                                                 150.00
5113                                                                                                   0.55
5114                                                                                                 600.00
5115                                                                                                 272.00
5116                                                                                                  15.00
5117                                                                                                  68.00
5118                                                                                                   1.00
5119                                                                                                   1.00
5120                                                                                                  68.00
5121                                                                                                 272.00
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5124                                                                                                 113.50
5125                                                                                                   1 ml
5126                                                                                                   1.00
5127                                                                                              injection
5128                                                                                               10000.00
5129                                                                                                 500.00
5130                                                                                                   1.00
5131                                                                                                1000.00
5132                                                                                                 227.00
5133                                                                                                 300.00
5134                                                                                        based on weight
5135                                                                                                 600.00
5136                                                                                                 100.00
5137                                                                                                  75.00
5138                                                                                                 875.00
5139                                                                                                 200.00
5140                                                                                            750, 187, 5
5141                                                                                                   1.00
5142                                                                                                 227.00
5143                                                                                                   1.00
5144                                                                                                   2.40
5145                                                                                                 250.00
5146                                                                                                 250.00
5147                                                                                                   2.00
5148                                                                                                  11.50
5149                                                                                                  23.00
5150                                                                                                     50
5151                                                                                                 136.00
5152                                                                                                 272.00
5153                                                                                                  75.00
5154                                                                                                 272.00
5155                                                                                                 136.00
5156                                                                                                 272.00
5157                                                                                                  68.00
5158                                                                                                 150.00
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5162                                                                                                  50.00
5163                                                                                                 250.00
5164                                                                                                 100.00
5165                                                                                                 100 mg
5166                                                                                                 250.00
5167                                                                                                 222.00
5168                                                                                                   1.00
5169                                                                                                 272.00
5170                                                                                                 136.00
5171                                                                                                   3.20
5172                                                                                                 500.00
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5176                                                                                                 272.00
5177                                                                                                 136.00
5178                                                                                                 272.00
5179                                                                                                 136.00
5180                                                                                                 272.00
5181                                                                                                 136.00
5182                                                                                                  80.00
5183                                                                                                  75.00
5184                                                                                                  75.00
5185                                                                                                 375.00
5186                                                                                                  60.00
5187                                                                                                  75.00
5188                                                                                                   1.00
5189                                                                                                     90
5190                                                                                                   1.00
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5194                                                                                                  23.00
5195                                                                              based on weight (18+ lbs)
5196                                                                                                 500.00
5197                                                                                                  75.00
5198                                                                                                 150.00
5199                                                                                                 100.00
5200                                                                                                   1.00
5201                                                                                                  75 mg
5202                                                                                                   1.00
5203                                                                           based on weight (50-100 lbs)
5204                                                                                                   1.00
5205                                                                                                   0.75
5206                                                                                                   1.00
5207                                                                                                   1.00
5208                                                                                                   1.00
5209                                                                                                 150.00
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5215                                                                                                 500.00
5216                                                                                                 500.00
5217                                                                                                 200.00
5218                                                                                                   1.00
5219                                                                                                  21.00
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5224                                                                                                 750.00
5225                                                                           based on weight (51-100 lbs)
5226                                                                                                 750.00
5227                                                                                                   7.00
5228                                                                                                   1.00
5229                                                                                                   1.00
5230                                                                                                1224.60
5231                                                                                                   3.00
5232                                                                                                 150.00
5233                                                                                                1000.00
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5236                                                                                                 150.00
5237                                                                                                 200.00
5238                                                                                                  15.00
5239                                                                                                  21.00
5240                                                                                                  16.00
5241                                                                                                 280.00
5242                                                                                                 164.00
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5245                                                                                                 500.00
5246                                                                                                  60.00
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5249                                                                                                  16.00
5250                                                                                                   1.00
5251                                                                                                 550.00
5252                                                                                                 150.00
5253                                                                           based on weight (51-100 lbs)
5254                                                                                                 125.00
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5259                                                                                                   2.00
5260                                                                                                1088.20
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5263                                                                                                 150.00
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5266                                                                                                 625.00
5267                                                                                                 150.00
5268                                                                                                   1.00
5269                                                                                                 150.00
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5272                                                                                                 750.00
5273                                                                                                   3.00
5274                                                                                                 200.00
5275                                                                                                 500.00
5276                                                                                                   1.50
5277                                                                                                 150.00
5278                                                                                                 150.00
5279                                                                                                   1.50
5280                                                                                                 100.00
5281                                                                                                 400.00
5282                                                                                                   1.50
5283                                                                                                 150.00
5284                                                                                                  20.00
5285                                                                                                   1.00
5286                                                                                                 272.00
5287                                                                                                 136.00
5288                                                                                                 236.00
5289                                                                           based on weight (50-100 lbs)
5290                                                                                                  40.00
5291                                                                                                   0.80
5292                                                                                                  40.00
5293                                                                                                 500.00
5294                                                                                                  30.00
5295                                                                                                 272.00
5296                                                                                                   5.00
5297                                                                                                 500.00
5298                                                                                                  16.00
5299                                                                                                 272.00
5300                                                                                                1000.00
5301                                                                                                 450.00
5302                                                                                                   6.00
5303                                                                                                 100.00
5304                                                                                                  60.00
5305                                                                                                 272.00
5306                                                                                                 100.00
5307                                                                                                  40.00
5308                                                                                                  70.00
5309                                                                                                 272.00
5310                                                                                                 100.00
5311                                                                                                  80.00
5312                                                                                                 100.00
5313                                                                                                  80.00
5314                                                                                                 272.00
5315                                                                                                  70.00
5316                                                                                                  80.00
5317                                                                                                  81.00
5318                                                                                                 100.00
5319                                                                                                 100.00
5320                                                                                                 300.00
5321                                                                                                  75.00
5322                                                                                                 250.00
5323                                                                                                 200.00
5324                                                                                                 300.00
5325                                                                                                 250.00
5326                                                                                                 500.00
5327                                                                                                  50.00
5328                                                                                                  50.00
5329                                                                                                 437.50
5330                                                                                                 437.50
5331                                                                                                 272.00
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5338                                                                                                 300.00
5339                                                                                                  70.00
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5342                                                                                                 500.00
5343                                                                                                 300.00
5344                                                                                                  70.00
5345                                                                                                  75.00
5346                                                                                                 272.00
5347                                                                                                   7.00
5348                                                                                                 272.00
5349                                                                                                 227.00
5350                                                                                                 500.00
5351                                                                                                 272.00
5352                                                                                                 227.00
5353                                                                                                 136.00
5354                                                                                                 collar
5355                                                                                                 272.00
5356                                                                                                 500.00
5357                                                                                                  drops
5358                                                                                                 272.00
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5363                                                                                                 500.00
5364                                                                                                 480.00
5365                                                                                                 272.00
5366                                                                                                 228.00
5367                                                                                                 228.00
5368                                                                                                  75.00
5369                                                                           based on weight (50-100 lbs)
5370                                                                                                   4.70
5371                                                                                                 272.00
5372                                                                                                 136.00
5373                                                                                                   1.00
5374                                                                                                1000.00
5375                                                                                                  25.00
5376                                                                                                 272.00
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5380                                                                                                   66.5
5381                                                                                                  23.00
5382                                                                                                   66.5
5383                                                                                                   0.14
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5389                                                                                                 272.00
5390                                                                                                 136.00
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5393                                                                                                  50.00
5394                                                                                                 272.00
5395                                                                                                 272.00
5396                                                                                                 227.00
5397                                                                                                 272.00
5398                                                                                                 227.00
5399                                                                                                  23.00
5400                                                                                                  23.00
5401                                                                                                   1.00
5402                                                                                                   0.60
5403                                                                              based on weight (100 lbs)
5404                                                                                                   0.80
5405                                                                                                 375.00
5406                                                                                                   1.00
5407                                                                                                  23.00
5408                                                                                                   0.70
5409                                                                                                1000.00
5410                                                                                                  12.50
5411                                                                                                  23.00
5412                                                                                                1000.00
5413                                                                                                 150.00
5414                                                                                                   8.00
5415                                                                                                   2.00
5416                                                                                                   0.70
5417                                                                                                1000.00
5418                                                                                                1000.00
5419                                                                                                  10.00
5420                                                                                                   8.00
5421                                                                                                   0.70
5422                                                                                                 100.00
5423                                                                                                 200.00
5424                                                                                           small amount
5425                                                                                                   1.00
5426                                                                                                  20.00
5427                                                                                                 500.00
5428                                                                                                  spray
5429                                                                                                 300.00
5430                                                                                                  50.00
5431                                                                                                  75.00
5432                                                                                                 200.00
5433                                                                                                  75.00
5434                                                                                                  50.00
5435                                                                                                   0.50
5436                                                                                                  20.00
5437                                                                                                 500.00
5438                                                                                                  15.00
5439                                                                                                  10.00
5440                                                                                            unspecified
5441                                                                                                  75.00
5442                                                                                                  75.00
5443                                                                                                  75.00
5444                                                                                                1000.00
5445                                                                                                  75.00
5446                                                                                                   3.75
5447                                                                                                   1.40
5448                                                                                                   1.00
5449                                                                                                 500.00
5450                                                                                                 100.00
5451                                                                                                  37.50
5452                                                                                                 500.00
5453                                                                                                 250.00
5454                                                                                                  23.00
5455                                                                                                  80.00
5456                                                                                                   0.60
5457                                                                                                   0.60
5458                                                                                                  23.00
5459                                                                                                 460.00
5460                                                                                           small amount
5461                                                                                                  23.00
5462                                                                                                   6.00
5463                                                                                                  23.00
5464                                                                                               27, 1620
5465                                                                                                1000.00
5466                                                                                                   6.00
5467                                                                                                  23.00
5468                                                                                                   1.80
5469                                                                                                   2 ml
5470                                                                                                 250.00
5471                                                                                                 500.00
5472                                                                                                  30.00
5473                                                                                                 500.00
5474                                                                                                   5.00
5475                                                                                                  20.00
5476                                                                                                   1.00
5477                                                                                                 500.00
5478                                                                                                  50.00
5479                                                                                                  50.00
5480                                                                                                  10.00
5481                                                                                                   2.50
5482                                                                                                1700.00
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5486                                                                                                3000.00
5487                                                                                                   1.00
5488                                                                                                   5.00
5489                                                                                                  10.00
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5493                                                                                                   1.00
5494                                                                                                   1.00
5495                                                                                                   1.00
5496                                                                                                  75.00
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5503                                                                                                  75.00
5504                                                                                                 102.00
5505                                                                                                   2.00
5506                                                                                                 100.00
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5510                                                                                                   2.00
5511                                                                           based on weight (51-100 lbs)
5512                                                                                                  75.00
5513                                                                           based on weight (51-100 lbs)
5514                                                                                                1000.00
5515                                                                                                   1.00
5516                                                                                                   1.00
5517                                                                                                 300.00
5518                                                                                                 100.00
5519                                                                                                  75.00
5520                                                                                                1000.00
5521                                                                                                  30.00
5522                                                                                                  75.00
5523                                                                                                 100.00
5524                                                                                                   2.00
5525                                                                                                 300.00
5526                                                                                                  25.00
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5530                                                                                                   5.00
5531                                                                                                  60.00
5532                                                                                                  14.00
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5536                                                                                                   5.00
5537                                                                                           small amount
5538                                                                                                 375.00
5539                                                                                                  70.00
5540                                                                                                  50.00
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5543                                                                                                   7.50
5544                                                                                                  80.00
5545                                                                                        based on weight
5546                                                                                        based on weight
5547                                                                                                  16.00
5548                                                                                                  16.00
5549                                                                                                  40.00
5550                                                                                                   7.50
5551                                                                                                 272.00
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5554                                                                                                1000.00
5555                                                                                                  16.00
5556                                                                                                     66
5557                                                                           based on weight (51-100 lbs)
5558                                                                                                 100.00
5559                                                                                                  16.00
5560                                                                                                1000.00
5561                                                                                                  16.00
5562                                                                                                   1.00
5563                                                                                                  16.00
5564                                                                                                   1.00
5565                                                                                                 810.00
5566                                                                                                   1.00
5567                                                                                                   1.00
5568                                                                           based on weight (51-100 lbs)
5569                                                                                                  50.00
5570                                                                                                 375.00
5571                                                                           based on weight (51-100 lbs)
5572                                                                                                   1.00
5573                                                                                                   8.00
5574                                                                                                     75
5575                                                                                                   1.00
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5579                                                                                                 200.00
5580                                                                                                 200.00
5581                                                                                                   1.00
5582                                                                                                 125.00
5583                                                                                                   8.00
5584                                                                                                   1.00
5585                                                                                                1000.00
5586                                                                                                  11.00
5587                                                                                                 500.00
5588                                                                                                   5.00
5589                                                                                                  57.00
5590                                                                                                  68.00
5591                                                                                                  81.50
5592                                                                                                  73.00
5593                                                                                                 100.00
5594                                                                                                 136.50
5595                                                                           based on weight (51-100 lbs)
5596                                                                                                  23.00
5597                                                                                                 460.00
5598                                                                                                  10.00
5599                                                                                                  60.00
5600                                                                           based on weight (51-100 lbs)
5601                                                                                                   66.5
5602                                                                           based on weight (51-100 lbs)
5603                                                                                                   2.68
5604                                                                                                  23.00
5605                                                                                                 500.00
5606                                                                                                   1.36
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5608                                                                                                   2.68
5609                                                                                                  23.00
5610                                                                                                 200.00
5611                                                                                                   1.00
5612                                                                                                 500.00
5613                                                                                                   1.00
5614                                                                                                  60.00
5615                                                                                                   1.00
5616                                                                                                 200.00
5617                                                                                                  15.00
5618                                                                                                   3.00
5619                                                                                                  80.00
5620                                                                                                   1.00
5621                                                                                                  30.00
5622                                                                                                 400.00
5623                                                                                                 500.00
5624                                                                                                   1.20
5625                                                                                                   1.20
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5633                                                                                                 200.00
5634                                                                                                 200.00
5635                                                                                                 100.00
5636                                                                                                   5.00
5637                                                                                                  13.50
5638                                                                                                 810.00
5639                                                                                                 810.00
5640                                                                                                  13.50
5641                                                                                                 1.7 ml
5642                                                                                                   1.70
5643                                                                                                   0.18
5644                                                                                                  60.00
5645                                                                                                  17.70
5646                                                                                                   1.84
5647                                                                                                1000.00
5648                                                                                                 180.00
5649                                                                                          5 billion cfu
5650                                                                                                  60.00
5651                                                                                                1500.00
5652                                                                                                   1.00
5653                                                                                                 300.00
5654                                                                                                 600.00
5655                                                                                                   6.00
5656                                                                                                   2.00
5657                                                                                                 200.00
5658                                                                                                  40.00
5659                                                                                                   7.00
5660                                                                                                 400.00
5661                                                                                                  10.00
5662                                                                                                 175.00
5663                                                                                                 200.00
5664                                                                                                1000.00
5665                                                                                                 200.00
5666                                                                                                 500.00
5667                                                                                                 400.00
5668                                                                                                272 mcg
5669                                                                                                   1.00
5670                                                                                                   2.00
5671                                                                                                   2.00
5672                                                                                                   1.00
5673                                                                                                  25.00
5674                                                                                                  50.00
5675                                                                                                  10.00
5676                                                                                                   2.00
5677                                                                                                   1.00
5678                                                                                                   1.00
5679                                                                                                   2.00
5680                                                                                                   1.00
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5683                                                                                                  10.00
5684                                                                                                   7.50
5685                                                                                                2000.00
5686                                                                                                  70.00
5687                                                                                                   1.00
5688                                                                                                   1.00
5689                                                                                                   1.00
5690                                                                                                  50.00
5691                                                                                                   8.00
5692                                                                                                 272.00
5693                                                                                                   6.00
5694                                                                                                   6.00
5695                                                                                            unspecified
5696                                                                                                  23.00
5697                                                                                                   2.68
5698                                                                                                  23.00
5699                                                                                                1000.00
5700                                                                                                  23.00
5701                                                                                                  68.00
5702                                                                                                  23.00
5703                                                                                                 272.00
5704                                                                                                 136.00
5705                                                                                                 460.00
5706                                                                                                 136.00
5707                                                                                                  23.00
5708                                                                                                  68.00
5709                                                                                                  23.00
5710                                                                                                   2.30
5711                                                                                                 136.00
5712                                                                                                  60.00
5713                                                                                                1620.00
5714                                                                                                  27.00
5715                                                                                                  45.40
5716                                                                                                  45.40
5717                                                                                                 226.80
5718                                                                                                 250.00
5719                                                                                                 500.00
5720                                                                                                1454.00
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5726                                                                                                  23.00
5727                                                                                                1000.00
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5730                                                                                                 200.00
5731                                                                                            unspecified
5732                                                                                                 150.00
5733                                                                                                 300.00
5734                                                                                                 300.00
5735                                                                                                  30.00
5736                                                                                                  20.00
5737                                                                                                 750 mg
5738                                                                                                   1.00
5739                                                                                                 272.00
5740                                                                                                 272.00
5741                                                                                                 136.00
5742                                                                                                 272.00
5743                                                                                                 136.00
5744                                                                                                 227.00
5745                                                                                                 272.00
5746                                                                                                   4.28
5747                                                                                        based on weight
5748                                                                                                     35
5749                                                                                                 136.00
5750                                                                                                 272.00
5751                                                                                                 136.00
5752                                                                                                 227.00
5753                                                                                                 136.00
5754                                                                                                 272.00
5755                                                                                                 136.00
5756                                                                                                 272.00
5757                                                                                                 136.00
5758                                                                                                1500.00
5759                                                                                                 500.00
5760                                                                                            unspecified
5761                                                                                                 483.00
5762                                                                                        based on weight
5763                                                                                                   1.30
5764                                                                                                 272.00
5765                                                                                                   1.60
5766                                                                                                 200.00
5767                                                                                                   1.40
5768                                                                           based on weight (51-100 lbs)
5769                                                                                                 272.00
5770                                                                                                 120.00
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5772                                                                                                  23.00
5773                                                                                                 228.00
5774                                                                                                 750 mg
5775                                                                                                  75.00
5776                                                                                                 375.00
5777                                                                                            unspecified
5778                                                                                                 100.00
5779                                                                                                   1.00
5780                                                                                                 300.00
5781                                                                                                 300.00
5782                                                                                                 100.00
5783                                                                                                 300.00
5784                                                                                                  10.00
5785                                                                                                  75.00
5786                                                                                                 136.00
5787                                                                                                 125.00
5788                                                                                                 125.00
5789                                                                                                  25.00
5790                                                                                                 200.00
5791                                                                                                   8.00
5792                                                                                                  50.00
5793                                                                                                     38
5794                                                                                                   50.5
5795                                                                                                 200.00
5796                                                                                                  50.00
5797                                                                                                 250.00
5798                                                                                                 100.00
5799                                                                                                   1.00
5800                                                                                                 100.00
5801                                                                                                  50.00
5802                                                                                                 200.00
5803                                                                                                   8.00
5804                                                                                                13, 228
5805                                                                                                   8.00
5806                                                                                                   8.00
5807                                                                                                  75.00
5808                                                                                                   1.00
5809                                                                                                   1.00
5810                                                                                                   1.00
5811                                                                                                   8.00
5812                                                                                                  40.00
5813                                                                                                   4.00
5814                                                                                            unspecified
5815                                                                                                   8.00
5816                                                                                                  40.00
5817                                                                                                 250.00
5818                                                                                                   5.00
5819                                                                                                 272.00
5820                                                                                                 272.00
5821                                                                                                 272.00
5822                                                                                                   1.00
5823                                                                                                  37.50
5824                                                                                                  10.00
5825                                                                                                  50.00
5826                                                                                                  50.00
5827                                                                                                  75.00
5828                                                                                                  50.00
5829                                                                                                   1.00
5830                                                                                                   1.00
5831                                                                                                 272.00
5832                                                                                                 227.00
5833                                                                                                 272.00
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5835                                                                                                 272.00
5836                                                                                                 460.00
5837                                                                                                 500.00
5838                                                                                                  10.00
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5841                                                                                                  50.00
5842                                                                                                 272.00
5843                                                                                                 250.00
5844                                                                                                   1.00
5845                                                                                                   1.00
5846                                                                                                   5.00
5847                                                                                                  95.00
5848                                                                                                 125.00
5849                                                                                                   6.25
5850                                                                                                   1.00
5851                                                                                                 136.00
5852                                                                                                  41.00
5853                                                                                                 100.00
5854                                                                                                 275.00
5855                                                                                                 100.00
5856                                                                                                 275.00
5857                                                                                                 420.00
5858                                                                                        0.25 inch strip
5859                                                                                                 375.00
5860                                                                                                   5.00
5861                                                                                                 272.00
5862                                                                                                  41.47
5863                                                                                                 130.00
5864                                                                                                  50.00
5865                                                                                                 272.00
5866                                                                                                 840.00
5867                                                                                                  41.47
5868                                                                                                 272.00
5869                                                                           based on weight (51-100 lbs)
5870                                                                                                 500.00
5871                                                                                                   0.25
5872                                                                                                   62.5
5873                                                                                                     44
5874                                                                                                   2.00
5875                                                                                                  15.00
5876                                                                                                   4.00
5877                                                                                        based on weight
5878                                                                                                 500.00
5879                                                                                                 200.00
5880                                                                                                  15.00
5881                                                                                                  75.00
5882                                                                                                1000.00
5883                                                                                                  50.00
5884                                                                                            unspecified
5885                                                                                                 100.00
5886                                                                                                  10.00
5887                                                                                           small amount
5888                                                                                                1000.00
5889                                                                                                 200.00
5890                                                                                                    108
5891                                                                                                 100.00
5892                                                                                                 200.00
5893                                                                                                 100.00
5894                                                                                                  50.00
5895                                                                                                  16.00
5896                                                                                                  105.5
5897                                                                                                 100.00
5898                                                                                                   1.00
5899                                                                                                  16.00
5900                                                                                                   1.00
5901                                                                                                1400.00
5902                                                                                                  16.00
5903                                                                                                   0.50
5904                                                                                                  75.00
5905                                                                                                1400.00
5906                                                                                                  16.00
5907                                                                                                  75.00
5908                                                                                                1400.00
5909                                                                                                  16.00
5910                                                                                                  20.00
5911                                                                                                 300.00
5912                                                                                                  75.00
5913                                                                                        based on weight
5914                                                                                                  16.00
5915                                                                                                  20.00
5916                                                                                                   8.00
5917                                                                                              6-8 drops
5918                                                                                                   5.63
5919                                                                                                 500.00
5920                                                                                                   1.00
5921                                                                                                 250.00
5922                                                                                                 500.00
5923                                                                                                 350.00
5924                                                                                                  50.00
5925                                                                                                     90
5926                                                                                                1620.00
5927                                                                                                  27.00
5928                                                                                                     90
5929                                                                                                  15.00
5930                                                                           based on weight (51-100 lbs)
5931                                                                                                     66
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5938                                                                                                   0.01
5939                                                                                                   0.01
5940                                                                                                 500.00
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5943                                                                                                   1.00
5944                                                                                                 500.00
5945                                                                                             1 wipe/pad
5946                                                                                                 200.00
5947                                                                                                 500.00
5948                                                                                                   1.50
5949                                                                                                 300.00
5950                                                                                                  75.00
5951                                                                                                 500.00
5952                                                                                                  12.50
5953                                                                                                  30.00
5954                                                                                                   1.00
5955                                                                                                 375.00
5956                                                                                                   1.00
5957                                                                                                 300.00
5958                                                                                                  75.00
5959                                                                                                   1.00
5960                                                                                                  15.00
5961                                                                                                  30.00
5962                                                                                                  75.00
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5969                                                                                                1000.00
5970                                                                                                 400.00
5971                                                                                                 500.00
5972                                                                                                  80.00
5973                                                                                                  20.00
5974                                                                                                 125.00
5975                                                                                                 136.00
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5982                                                                                                1620.00
5983                                                                                                  37.50
5984                                                                                                 200.00
5985                                                                                                  105.5
5986                                                                                                  37.50
5987                                                                                                    125
5988                                                                                        based on weight
5989                                                                                                  75.00
5990                                                                                                 500.00
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
5995                                                                                                   1.00
5996                                                                                                   1.00
5997                                                                                                   1.00
5998                                                                                                   1.00
5999                                                                                                 100.00
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6001                                                                                                  15.00
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6006                                                                                                   1.00
6007                                                                                                 227.00
6008                                                                                                  60.00
6009                                                                                                  16.00
6010                                                                                                 500.00
6011                                                                                                   1.00
6012                                                                                                   85.5
6013                                                                                                 150.00
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6018                                                                                                 500.00
6019                                                                                                 750.00
6020                                                                                                 100.00
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6023                                                                                                 272.00
6024                                                                                                 272.00
6025                                                                                                 272.00
6026                                                                                                 272.00
6027                                                                                                 227.00
6028                                                                                                 500.00
6029                                                                                                 108.00
6030                                                                                                 300.00
6031                                                                                                  75.00
6032                                                                                                 500.00
6033                                                                                                  15.00
6034                                                                                                   7.00
6035                                                                                                   5.00
6036                                                                                               27, 1620
6037                                                                                                 272.00
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6040                                                                                                 272.00
6041                                                                                                   4.02
6042                                                                                                   2.68
6043                                                                                                 272.00
6044                                                                                                  16.00
6045                                                                                                 200.00
6046                                                                                                   4.00
6047                                                                                                  23.00
6048                                                                                                   2.68
6049                                                                                                   0.09
6050                                                                                                   2.68
6051                                                                                                 500.00
6052                                                                                                 136.00
6053                                                                                                  10.00
6054                                                                                                 100.00
6055                                                                                                   2.60
6056                                                                                                  23.00
6057                                                                                                  23.00
6058                                                                                                   2.68
6059                                                                           based on weight (51-100 lbs)
6060                                                                                                   90.5
6061                                                                                                  70.00
6062                                                                                                 750.00
6063                                                                                           small amount
6064                                                                                                  37.50
6065                                                                                                  60.00
6066                                                                                                 500.00
6067                                                                                                  10.00
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6073                                                                                                     75
6074                                                                                                1 spray
6075                                                                                                 500.00
6076                                                                                                 collar
6077                                                                                                 227.00
6078                                                                                                 collar
6079                                                                                                 500.00
6080                                                                                                   1.00
6081                                                                                                 750.00
6082                                                                                                  50.00
6083                                                                                                 500.00
6084                                                                                                  50.00
6085                                                                                                   2.50
6086                                                                                                1620.00
6087                                                                                                 160.00
6088                                                                                        0.25 inch strip
6089                                                                                                   37.5
6090                                                                                        0.25 inch strip
6091                                                                                                  75.00
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6100                                                                                                  23.00
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6103                                                                                                   0.10
6104                                                                                           23, 228, 460
6105                                                                                                  80.00
6106                                                                                                   1.00
6107                                                                                                  80.00
6108                                                                                                 100.00
6109                                                                                      90, 350, 800, 900
6110                                                                                                 200.00
6111                                                                                                 900.00
6112                                                                                                  60.00
6113                                                                                                 300.00
6114                                                                                                  20.00
6115                                                                                                  60.00
6116                                                                                                   1.00
6117                                                                                                  17.00
6118                                                                                                  20.00
6119                                                                                                   0.90
6120                                                                                                  24.00
6121                                                                                                  80.00
6122                                                                                                   7.20
6123                                                                                                   7.20
6124                                                                                                  75.00
6125                                                                                                  75.00
6126                                                                                                   1.00
6127                                                                                                   3.60
6128                                                                                                  75.00
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6131                                                                                                 100.00
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6138                                                                                                  16.00
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6141                                                                                                   1.00
6142                                                                                                 200.00
6143                                                                                                 300.00
6144                                                                                                 600.00
6145                                                                                                  75.00
6146                                                                                                  20.00
6147                                                                                                1647.00
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6151                                                                                                 136.00
6152                                                                                                  23 mg
6153                                                                                                1000.00
6154                                                                                                  20.00
6155                                                                                                  10.00
6156                                                                                                   5.00
6157                                                                                                   5.00
6158                                                                                                   1.00
6159                                                                                                  57.00
6160                                                                                                   66.5
6161                                                                                                23, 460
6162                                                                                                 272.00
6163                                                                                                 136.00
6164                                                                                           small amount
6165                                                                                                  90.00
6166                                                                                                  50.00
6167                                                                                                 200.00
6168                                                                                                 250.00
6169                                                                                                 227.00
6170                                                                                                  22.70
6171                                                                                                   0.40
6172                                                                                                  50.00
6173                                                                                                  10.00
6174                                                                                                  18.00
6175                                                                                                 250.00
6176                                                                                                   1.20
6177                                                                                                 240.00
6178                                                                                                  12.00
6179                                                                                                   1.50
6180                                                                                                   8.00
6181                                                                                                  50.00
6182                                                                                                 113.50
6183                                                                                                 500.00
6184                                                                                                 500.00
6185                                                                                                 272.00
6186                                                                                                  25.00
6187                                                                                                 136.00
6188                                                                                                   1.00
6189                                                                                                   37.5
6190                                                                                                 272.00
6191                                                                                                   3.00
6192                                                                                                  20.00
6193                                                                                                 850.00
6194                                                                                                 750.00
6195                                                                                                  75.00
6196                                                                                                   6.00
6197                                                                                                 272.00
6198                                                                                                   1.40
6199                                                                                                  50.00
6200                                                                           based on weight (88-132 lbs)
6201                                                                                                 272.00
6202                                                                           based on weight (60-120 lbs)
6203                                                                                                  16.00
6204                                                                                                  60.00
6205                                                                                                 200.00
6206                                                                                            application
6207                                                                                                  60.00
6208                                                                                            application
6209                                                                                                  23.00
6210                                                                                                 120.00
6211                                                                                                 900.00
6212                                                                                                   4.20
6213                                                                                                   2.00
6214                                                                                                   3.80
6215                                                                                                 1 pump
6216                                                                                                  90.00
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6219                                                                                                   2.50
6220                                                                                                  75.00
6221                                                                                                5-10 ml
6222                                                                                                  75.00
6223                                                                                                  50.00
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6227                                                                                                  90.00
6228                                                                                                1000.00
6229                                                                                                   1.00
6230                                                                                                   4.30
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6233                                                                                                 100.00
6234                                                                                                   1.00
6235                                                                                                   1.00
6236                                                                                                   1.00
6237                                                                                                 100.00
6238                                                                                                   4.10
6239                                                                                                   4.10
6240                                                                                                 500.00
6241                                                                                                 204.00
6242                                                                                                   1.80
6243                                                                                                 100.00
6244                                                                                            unspecified
6245                                                                                                   8.00
6246                                                                                                  20.00
6247                                                                                                   4.00
6248                                                                                                  60.00
6249                                                                                                  15.00
6250                                                                                                 100.00
6251                                                                                                  90.00
6252                                                                                                  50.00
6253                                                                                                 500.00
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6256                                                                                                   3.00
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6259                                                                                                 150.00
6260                                                                                                   3.00
6261                                                                                                 175.00
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6264                                                                                                 175.00
6265                                                                                                 150.00
6266                                                                                            application
6267                                                                                           small amount
6268                                                                                                   5.00
6269                                                                                                   0.09
6270                                                                                                 300.00
6271                                                                                                 200.00
6272                                                                                                  50.00
6273                                                                                                 200.00
6274                                                                                                   7.50
6275                                                                                            unspecified
6276                                                                                                  50.00
6277                                                                                                 600.00
6278                                                                                                 300.00
6279                                                                                                 250.00
6280                                                                                                   5.00
6281                                                                                                1100.00
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6285                                                                                                 274.00
6286                                                                                                 600.00
6287                                                                                                 300.00
6288                                                                                                 250.00
6289                                                                                                 820.00
6290                                                                                                 548.00
6291                                                                                                1000.00
6292                                                                                                 800.00
6293                                                                            based on weight (24-60 lbs)
6294                                                                                                 500.00
6295                                                                                                 500.00
6296                                                                                              0.125 tsp
6297                                                                                                   1.00
6298                                                                                                 272.00
6299                                                                                                  75.00
6300                                                                                                 100.00
6301                                                                                                 272.00
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6303                                                                                                  16.00
6304                                                                                                1000.00
6305                                                                                                  16.00
6306                                                                                                 170.00
6307                                                                                              62.5, 437
6308                                                                                                1000.00
6309                                                                                                   0.13
6310                                                                                                 500.00
6311                                                                                                  80.00
6312                                                                                            unspecified
6313                                                                                                 750.00
6314                                                                                                   0.12
6315                                                                                                   1.00
6316                                                                                                 750.00
6317                                                                                                   0.13
6318                                                                                                1000.00
6319                                                                                            unspecified
6320                                                                                            unspecified
6321                                                                                                  75.00
6322                                                                                                 750.00
6323                                                                                                1000.00
6324                                                                                                2000.00
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6327                                                                                                 272.00
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6330                                                                                                   8.00
6331                                                                           based on weight (51-100 lbs)
6332                                                                                                   1.50
6333                                                                                                   1.00
6334                                                                                                   1.00
6335                                                                                                  50.00
6336                                                                                                   2.40
6337                                                                                                   1.00
6338                                                                                                  75.00
6339                                                                                                  20.00
6340                                                                                                  20.00
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6344                                                                                                  50.00
6345                                                                                                   2.60
6346                                                                                                 100.00
6347                                                                                                 200.00
6348                                                                                                 375.00
6349                                                                                                  50.00
6350                                                                                                   0.57
6351                                                                                                   2.60
6352                                                                                                 100.00
6353                                                                                                 272.00
6354                                                                                                   66.5
6355                                                                                                 500.00
6356                                                                                                  50.00
6357                                                                                                 150.00
6358                                                                                            unspecified
6359                                                                                                 100.00
6360                                                                                                 100.00
6361                                                                                                 272.00
6362                                                                                                   66.5
6363                                                                                                 200.00
6364                                                                                                 500.00
6365                                                                                                 272.00
6366                                                                                                   1.00
6367                                                                                                   1.00
6368                                                                                                1000.00
6369                                                                                                 272.00
6370                                                                                                  75.00
6371                                                                                                1000.00
6372                                                                                                  75.00
6373                                                                                                1000.00
6374                                                                                                  75.00
6375                                                                                                 200.00
6376                                                                                                 170.00
6377                                                                                                1000.00
6378                                                                                                 600.00
6379                                                                                                 272.00
6380                                                                                                1000.00
6381                                                                                                 272.00
6382                                                                                                     90
6383                                                                                                 272.00
6384                                                                                                  23.00
6385                                                                                                 150.00
6386                                                                                                  60.00
6387                                                                                                   1.00
6388                                                                                                 1 drop
6389                                                                                                   7.00
6390                                                                                            unspecified
6391                                                                                                 272.00
6392                                                                                                 272.00
6393                                                                                                 250.00
6394                                                                                                  10.00
6395                                                                            based on weight (45-88 lbs)
6396                                                                                                  50.00
6397                                                                                                  50.00
6398                                                                                                   3.00
6399                                                                                                8 drops
6400                                                                                                   1.00
6401                                                                                                 272.00
6402                                                                                                  15.00
6403                                                                                                   1.00
6404                                                                                                 272.00
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6407                                                                                                 272.00
6408                                                                                                  68.00
6409                                                                                                  12.00
6410                                                                                                1000.00
6411                                                                                           small amount
6412                                                                                               45577.00
6413                                                                                                 272.00
6414                                                                                                 136.00
6415                                                                                                 272.00
6416                                                                                                  80.00
6417                                                                                                  12.00
6418                                                                                                  50.00
6419                                                                                                  50.00
6420                                                                                                   6.00
6421                                                                                                 300.00
6422                                                                                                 200.00
6423                                                                                                 600.00
6424                                                                                                 272.00
6425                                                                                                 900.00
6426                                                                                                 750.00
6427                                                                                                  16.00
6428                                                                                                   1.00
6429                                                                                                 600.00
6430                                                                                                  50.00
6431                                                                                                 250.00
6432                                                                                                 600.00
6433                                                                                                  50.00
6434                                                                                                 600.00
6435                                                                                                  50.00
6436                                                                                                  75.00
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6438                                                                                                1000.00
6439                                                                                                1200.00
6440                                                                                                   1.00
6441                                                                                             1200, 1500
6442                                                                                                1000.00
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6445                                                                                                1500.00
6446                                                                                                   1.00
6447                                                                                                 250.00
6448                                                                                                 272.00
6449                                                                                                 136.00
6450                                                                                                  16.00
6451                                                                                            unspecified
6452                                                                                                 250.00
6453                                                                                                   3.00
6454                                                                                                 272.00
6455                                                                                                 136.00
6456                                                                                                  16.00
6457                                                                                                   3.00
6458                                                                                                1000.00
6459                                                                                             1200, 1500
6460                                                                                                  16.00
6461                                                                                            unspecified
6462                                                                                                  16.00
6463                                                                                                 750.00
6464                                                                                                  60.00
6465                                                                                                 400.00
6466                                                                                                   3.75
6467                                                                                                  50.00
6468                                                                                                 100.00
6469                                                                                                 300.00
6470                                                                                                 750.00
6471                                                                                                  60.00
6472                                                                                                   0.50
6473                                                                                                 272.00
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6476                                                                                                  60.00
6477                                                                                                  20.00
6478                                                                                                 272.00
6479                                                                                                1400.00
6480                                                                                                   0.50
6481                                                                                                 160.00
6482                                                                                                 272.00
6483                                                                                                1000.00
6484                                                                                                1400.00
6485                                                                                                1400.00
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6487                                                                                                 100.00
6488                                                                                                 100.00
6489                                                                                                1400.00
6490                                                                                                 100.00
6491                                                                                                 136.00
6492                                                                                                 272.00
6493                                                                                                 136.00
6494                                                                                                  50.00
6495                                                                                                  drops
6496                                                                                                 272.00
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6501                                                                                                 300.00
6502                                                                                                  50.00
6503                                                                                                  90.00
6504                                                                                                  90.00
6505                                                                                                 250.00
6506                                                                                                 250.00
6507                                                                                                 250.00
6508                                                                                                 500.00
6509                                                                                                   0.40
6510                                                                                                 409.80
6511                                                                                                   9.80
6512                                                                                                   0.40
6513                                                                                                 409.80
6514                                                                                                   9.80
6515                                                                                                   0.40
6516                                                                                                 409.80
6517                                                                                                   9.80
6518                                                                                                  23.00
6519                                                                                                   5.00
6520                                                                                                 500.00
6521                                                                                                  20.00
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6524                                                                                                   0.40
6525                                                                                                  10.00
6526                                                                                                 750.00
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6529                                                                                                   0.50
6530                                                                                                  10.00
6531                                                                                                 150.00
6532                                                                                                  10.00
6533                                                                                                   0.50
6534                                                                                                  10.70
6535                                                                                                  10.00
6536                                                                                                  10.00
6537                                                                                                   0.50
6538                                                                                                  10.00
6539                                                                                                   0.50
6540                                                                                                   2.40
6541                                                                                                   0.50
6542                                                                                                  10.00
6543                                                                                                   1.00
6544                                                                                                 200.00
6545                                                                                                  50.00
6546                                                                                                   5.00
6547                                                                                                 200.00
6548                                                                                                1000.00
6549                                                                                                  30.00
6550                                                                                                   3.00
6551                                                                                                  24.00
6552                                                                                                 500.00
6553                                                                                                 460.00
6554                                                                                                  68.00
6555                                                                           based on weight (51-100 lbs)
6556                                                                                                 250.00
6557                                                                                                   6.00
6558                                                                                                  23.00
6559                                                                                                 250.00
6560                                                                                                 150.00
6561                                                                                                 250.00
6562                                                                                        moderate amount
6563                                                                                                  13.50
6564                                                                                                 810.00
6565                                                                                  1 tablet/pill/capsule
6566                                                                                                 272.00
6567                                                                                                 272.00
6568                                                                                                 272.00
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6572                                                                                                 272.00
6573                                                                            based on weight (45-88 lbs)
6574                                                                                                 600.00
6575                                                                                                 227.00
6576                                                                                                  68.00
6577                                                                                                  60.00
6578                                                                                                 200.00
6579                                                                                        based on weight
6580                                                                                                 136.00
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6582                                                                                                 272.00
6583                                                                                                 227.00
6584                                                                                                  23.00
6585                                                                                                 200.00
6586                                                                                                  23.00
6587                                                                                                 200.00
6588                                                                                                 200.00
6589                                                                                                  23.00
6590                                                                                                 200.00
6591                                                                                                  20.00
6592                                                                                                 200.00
6593                                                                                                  20.00
6594                                                                           based on weight (51-100 lbs)
6595                                                                                                 375.00
6596                                                                                                 100.00
6597                                                                                                 200.00
6598                                                                                                  75.00
6599                                                                                                  75.00
6600                                                                                                 200.00
6601                                                                                                  50.00
6602                                                                           based on weight (51-100 lbs)
6603                                                                                                1000.00
6604                                                                                                  15.00
6605                                                                                                 750.00
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6607                                                                                                 100.00
6608                                                                                                 499.00
6609                                                                                                 500.00
6610                                                                                                 227.00
6611                                                                                                 272.00
6612                                                                         based on weight (50.1-100 lbs)
6613                                                                                                  75.00
6614                                                                                                 300.00
6615                                                                                                 100.00
6616                                                                                                1000.00
6617                                                                                                 375.00
6618                                                                                                  75.00
6619                                                                                                  20.00
6620                                                                                                  75.00
6621                                                                                                1000.00
6622                                                                                                1000.00
6623                                                                                                  20.00
6624                                                                                                  20.00
6625                                                                           based on weight (51-100 lbs)
6626                                                                                                  20.00
6627                                                                                                  10.00
6628                                                                                                  20.00
6629                                                                                                 500.00
6630                                                                                                  75.00
6631                                                                                                  70.00
6632                                                                                                  70.00
6633                                                                                                   1.00
6634                                                                                                 500.00
6635                                                                                                   1.00
6636                                                                           based on weight (50-100 lbs)
6637                                                                                                 113.50
6638                                                                                                 500.00
6639                                                                                                   75.5
6640                                                                                                 100.00
6641                                                                                                 500.00
6642                                                                                                 500.00
6643                                                                                                   3.00
6644                                                                           based on weight (51-100 lbs)
6645                                                                                                   1.00
6646                                                                                                   1.00
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6651                                                                                                 500.00
6652                                                                                                  23.00
6653                                                                                                 600.00
6654                                                                                                 228.00
6655                                                                                                 272.00
6656                                                                                                 375.00
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6659                                                                                                 750.00
6660                                                                                                  68.00
6661                                                                                                  50.00
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6664                                                                                                 272.00
6665                                                                                                   1.00
6666                                                                                                  45.00
6667                                                                                                  10.00
6668                                                                                                 272.00
6669                                                                                                 227.00
6670                                                                                                   1.00
6671                                                                                                 125.00
6672                                                                                                 500.00
6673                                                                                                  50.00
6674                                                                                                   12.5
6675                                                                                                     38
6676                                                                                                     75
6677                                                                                                  75.00
6678                                                                                                  60.00
6679                                                                                                  50.00
6680                                                                                            unspecified
6681                                                                                                 125.00
6682                                                                                                  37.50
6683                                                                                           small amount
6684                                                                                                 250.00
6685                                                                                                1200.00
6686                                                                                                   1.00
6687                                                                                            unspecified
6688                                                                                            unspecified
6689                                                                                                 136.00
6690                                                                                                  12.00
6691                                                                                                  50.00
6692                                                                                                 500.00
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6695                                                                                                  32.00
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6699                                                                                                1200.00
6700                                                                                                 450.00
6701                                                                                                 150.00
6702                                                                                            unspecified
6703                                                                                        based on weight
6704                                                                                                 450.00
6705                                                                                                  10.00
6706                                                                                                   1.00
6707                                                                                                 100.00
6708                                                                                                 100.00
6709                                                                                                   5.00
6710                                                                                                   1.70
6711                                                                                                   1.70
6712                                                                                                   1.10
6713                                                                                                 375.00
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6718                                                                                                   3.80
6719                                                                                                   2.50
6720                                                                                                   0.55
6721                                                                                                 500.00
6722                                                                                                 500.00
6723                                                                                                 100.00
6724                                                                                                  40.00
6725                                                                                                  50.00
6726                                                                                                   1.00
6727                                                                                                   1.00
6728                                                                                                 272.00
6729                                                                                                 100.00
6730                                                                                                 150.00
6731                                                                                                 272.00
6732                                                                                                  40.00
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6734                                                                                                 227.00
6735                                                                                                 340.00
6736                                                                                                 200.00
6737                                                                                                  32.00
6738                                                                                                   0.40
6739                                                                                                 125 mg
6740                                                                                                 300.00
6741                                                                                                   0.40
6742                                                                                                  16.00
6743                                                                                                 600.00
6744                                                                                                 200.00
6745                                                                                                 100.00
6746                                                                                                 750.00
6747                                                                                                 600.00
6748                                                                                                   0.40
6749                                                                                                  16.00
6750                                                                                                 200.00
6751                                                                                            unspecified
6752                                                                                                 100.00
6753                                                                                                 200.00
6754                                                                                                 600.00
6755                                                                                                   0.40
6756                                                                                                 100.00
6757                                                                                                 272.00
6758                                                                                                 500.00
6759                                                                                            application
6760                                                                                            unspecified
6761                                                                                                 272.00
6762                                                                                                  10.20
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6765                                                                                                  16.00
6766                                                                                                  20.00
6767                                                                                                   8.00
6768                                                                                                 500.00
6769                                                                                                 600.00
6770                                                                                                   1.00
6771                                                                                                   3.00
6772                                                                                                 250.00
6773                                                                                                 125.00
6774                                                                                                   1.00
6775                                                                                                   1.00
6776                                                                                                   1.00
6777                                                                                                  50.00
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6780                                                                                                 116.00
6781                                                                           based on weight (51-100 lbs)
6782                                                                                                 227.00
6783                                                                         based on weight (50.1-100 lbs)
6784                                                                                                 136.00
6785                                                                                                 272.00
6786                                                                              based on weight (55+ lbs)
6787                                                                                                 272.00
6788                                                                                                  68.00
6789                                                                                                272 mcg
6790                                                                                                1000.00
6791                                                                                                1000.00
6792                                                                                                 272.00
6793                                                                                                1000.00
6794                                                                                                  50.00
6795                                                                                                  50.00
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6798                                                                                                 500.00
6799                                                                                                 100.00
6800                                                                                                   0.70
6801                                                                                                  75.00
6802                                                                                                   0.30
6803                                                                                                  75.00
6804                                                                                                   1.00
6805                                                                                                  16.00
6806                                                                                                 500.00
6807                                                                                                 272.00
6808                                                                                                  16.00
6809                                                                                                  16.00
6810                                                                                                  75.00
6811                                                                                                 200.00
6812                                                                                                  60.00
6813                                                                                                  16.00
6814                                                                                                 100.00
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6819                                                                                                   8.00
6820                                                                                                   2.00
6821                                                                                                 500.00
6822                                                                                                 100.00
6823                                                                                                 625.00
6824                                                                                            unspecified
6825                                                                                                 100.00
6826                                                                                            unspecified
6827                                                                                                 100.00
6828                                                                           based on weight (51-100 lbs)
6829                                                                                                  20.00
6830                                                                                                  25.00
6831                                                                                                   8.00
6832                                                                                                1000.00
6833                                                                                                   8.00
6834                                                                                                  10.00
6835                                                                                                  10.00
6836                                                                                                  10.00
6837                                                                                                   1.00
6838                                                                                                 272.00
6839                                                                                                  75 mg
6840                                                                                                  16.00
6841                                                                                                  23.00
6842                                                                                                  23.00
6843                                                                                                  23.00
6844                                                                                                 200.00
6845                                                                                                 100.00
6846                                                                                                  23.00
6847                                                                                                 125.00
6848                                                                                                  24.00
6849                                                                                                 136.00
6850                                                                                                  50.00
6851                                                                                                  75.00
6852                                                                                                 250.00
6853                                                                                                   5.00
6854                                                                                                   66.5
6855                                                                                                 272.00
6856                                                                                                  60.00
6857                                                                                                   1.00
6858                                                                                                  50.00
6859                                                                                                   1.00
6860                                                                                                   0.07
6861                                                                                                   1.22
6862                                                                                                   1.00
6863                                                                                                   1.00
6864                                                                                                   1 ml
6865                                                                                                   0.66
6866                                                                                                   0.66
6867                                                                                                  88.00
6868                                                                                            as directed
6869                                                                                                   1.00
6870                                                                                                   1.00
6871                                                                                                 200.00
6872                                                                                                  10.00
6873                                                                                                   1.00
6874                                                                                                 200.00
6875                                                                                                 272.00
6876                                                                                                   1.00
6877                                                                                                   0.66
6878                                                                                                   0.66
6879                                                                                                  88.00
6880                                                                                            as directed
6881                                                                                                   1.00
6882                                                                                                  60.00
6883                                                                                                   2.00
6884                                                                                                   0.97
6885                                                                                                  50.00
6886                                                                                            application
6887                                                                                                 272.00
6888                                                                                                   1.00
6889                                                                                                 200.00
6890                                                                                                 272.00
6891                                                                                            application
6892                                                                                           small amount
6893                                                                                                  50.00
6894                                                                                                  20.00
6895                                                                                                 500.00
6896                                                                                                  20.00
6897                                                                                                 272.00
6898                                                                                                   66.5
6899                                                                                                   2.00
6900                                                                                                 500.00
6901                                                                                                  24.00
6902                                                                                                 250.00
6903                                                                                                   1.00
6904                                                                                                 375.00
6905                                                                                                  15.00
6906                                                                                                272 mcg
6907                                                                                                1000.00
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6911                                                                                                 100.00
6912                                                                                                 750.00
6913                                                                                                 500.00
6914                                                                                                1000.00
6915                                                                                                   0.80
6916                                                                                                 340.00
6917                                                                                                 100.00
6918                                                                                                 260.00
6919                                                                                                 272.00
6920                                                                                                  68.00
6921                                                                                                   0.80
6922                                                                                                   0.80
6923                                                                                                   0.80
6924                                                                                                 260.00
6925                                                                                                  24.00
6926                                                                                                  40.00
6927                                                                                                   0.80
6928                                                                                            application
6929                                                                                                 500.00
6930                                                                                                 360.00
6931                                                                                                   9.00
6932                                                                                                1000.00
6933                                                                                                 408.00
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6937                                                                                                 500.00
6938                                                                                                     90
6939                                                                                                1000.00
6940                                                                                                  19.80
6941                                                                                                 100.00
6942                                                                                                1620.00
6943                                                                                                  38.70
6944                                                                                                1000.00
6945                                                                                                 100.00
6946                                                                                               27, 1620
6947                                                                                                1000.00
6948                                                                                                 100.00
6949                                                                                                  75.00
6950                                                                                                 100.00
6951                                                                                                1000.00
6952                                                                                                  16.00
6953                                                                                                 500.00
6954                                                                                                1620.00
6955                                                                                                1000.00
6956                                                                                            unspecified
6957                                                                                            unspecified
6958                                                                                                 300.00
6959                                                                                                 200.00
6960                                                                                                  75.00
6961                                                                                                 272.00
6962                                                                                                 562.50
6963                                                                                                   1.00
6964                                                                                                  80.00
6965                                                                                                 200.00
6966                                                                                                 200.00
6967                                                                                                   4.30
6968                                                                                                   1.30
6969                                                                                                 100.00
6970                                                                                                   1.00
6971                                                                                                   1.00
6972                                                                                                   1.00
6973                                                                                                 200.00
6974                                                                                                   1.30
6975                                                                                                   1.00
6976                                                                                                 100.00
6977                                                                                                 100.00
6978                                                                                                  20.00
6979                                                                                                 500.00
6980                                                                                                 240.00
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6985                                                                                                 272.00
6986                                                                                            unspecified
6987                                                                                                  50.00
6988                                                                                                 300.00
6989                                                                                                  50.00
6990                                                                                                   2.00
6991                                                                                                   2.00
6992                                                                                                   62.5
6993                                                                                                 200.00
6994                                                                                                  16.00
6995                                                                                                   62.5
6996                                                                                                  16.00
6997                                                                                                  16.00
6998                                                                                                   62.5
6999                                                                                                 1 tube
7000                                                                                                 240.00
7001                                                                                                  16.00
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7003                                                                                                  16.00
7004                                                                                                  16.00
7005                                                                                            unspecified
7006                                                                                            unspecified
7007                                                                                                  50.00
7008                                                                                                   1.70
7009                                                                                                  40.00
7010                                                                                                 120.00
7011                                                                                                   1.70
7012                                                                                                   1.70
7013                                                                                                  20 mg
7014                                                                                                  20.00
7015                                                                                                   1.60
7016                                                                                                   5.00
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7020                                                                                                  20.00
7021                                                                            based on weight (44-88 lbs)
7022                                                                                                 150.00
7023                                                                                                 1.6 ml
7024                                                                                                  20.00
7025                                                                                            unspecified
7026                                                                                                  50.00
7027                                                                                        0.25 inch strip
7028                                                                                                   0.50
7029                                                                                                   0.50
7030                                                                                  1 tablet/pill/capsule
7031                                                                                                   0.50
7032                                                                                                 500.00
7033                                                                                                  22.70
7034                                                                                                 100.00
7035                                                                                                 500.00
7036                                                                                                   0.50
7037                                                                                                 100.00
7038                                                                                                 500.00
7039                                                                                                 500.00
7040                                                                                                 100.00
7041                                                                                                 500.00
7042                                                                                           small amount
7043                                                                                                   2.00
7044                                                                                                   1.00
7045                                                                                                 500.00
7046                                                                                                   5.00
7047                                                                                                 272 ug
7048                                                                                                 272.00
7049                                                                                                 272.00
7050                                                                                                 272.00
7051                                                                                                 272.00
7052                                                                                                 136.00
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7055                                                                                                 500.00
7056                                                                                                  75.00
7057                                                                                                  75.00
7058                                                                                                   1.75
7059                                                                                                 200.00
7060                                                                                                  30.00
7061                                                                                                 100.00
7062                                                                                                 500.00
7063                                                                                                 114.00
7064                                                                                                     38
7065                                                                                                     75
7066                                                                                                   1.00
7067                                                                                  1 tablet/pill/capsule
7068                                                                                                   1.00
7069                                                                                                 500.00
7070                                                                                                 100.00
7071                                                                                            unspecified
7072                                                                                                  75.00
7073                                                                                                   8.00
7074                                                                                                   1.00
7075                                                                                                  20.00
7076                                                                                                   2.00
7077                                                                                                 272.00
7078                                                                                                 272.00
7079                                                                                                 136.00
7080                                                                                                 272.00
7081                                                                                                 136.00
7082                                                                                                 272.00
7083                                                                                                 136.00
7084                                                                                                  23.00
7085                                                                                                 120.00
7086                                                                                                  25.00
7087                                                                                                 120.00
7088                                                                                                   1.00
7089                                                                                                  50.00
7090                                                                                                 200.00
7091                                                                                                 500.00
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7094                                                                                                  60.00
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7097                                                                                                1620.00
7098                                                                                                 136.00
7099                                                                                                  15.00
7100                                                                                                1620.00
7101                                                                                                1620.00
7102                                                                                                1620.00
7103                                                                                                  60.00
7104                                                                                                   3.00
7105                                                                                                 136.00
7106                                                                                                 272.00
7107                                                                                                 272.00
7108                                                                                                 272.00
7109                                                                                                 272.00
7110                                                                                                 272.00
7111                                                                                                 272.00
7112                                                                                                 136.00
7113                                                                                                   0.70
7114                                                                                                 500.00
7115                                                                                                 300.00
7116                                                                                            unspecified
7117                                                                                                  50.00
7118                                                                                                 200.00
7119                                                                                                 300.00
7120                                                                                                  80.00
7121                                                                                                  60.00
7122                                                                                                   3.00
7123                                                                                                  75.00
7124                                                                                                  10.00
7125                                                                                                  10.00
7126                                                                                                  10.00
7127                                                                                            unspecified
7128                                                                                                 810.00
7129                                                                                                  13.50
7130                                                                                               27, 1620
7131                                                                                               272, 228
7132                                                                                                 272.00
7133                                                                                                  25.00
7134                                                                                                  50.00
7135                                                                                                 272.00
7136                                                                                                 272.00
7137                                                                                        based on weight
7138                                                                                                 272.00
7139                                                                                                 272.00
7140                                                                                                 272.00
7141                                                                                                   1.00
7142                                                                                                   1.00
7143                                                                                                   2.00
7144                                                                                                 200.00
7145                                                                                                  30.00
7146                                                                                                   1.00
7147                                                                                                 750.00
7148                                                                                                  75.00
7149                                                                           based on weight (60-120 lbs)
7150                                                                                                1000.00
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7156                                                                                                   5.00
7157                                                                                                  75.00
7158                                                                                                 204.00
7159                                                                                                1000.00
7160                                                                                                   1.00
7161                                                                                                   1.00
7162                                                                                                   1.00
7163                                                                                                   1.00
7164                                                                                                   1.00
7165                                                                                                   1.00
7166                                                                                                   1.00
7167                                                                                                   1.00
7168                                                                                                   1.00
7169                                                                                                  75.00
7170                                                                                                 500.00
7171                                                                                                 500.00
7172                                                                                                 powder
7173                                                                                               wipe/pad
7174                                                                                                 100.00
7175                                                                                            application
7176                                                                                                 300.00
7177                                                                                                  spray
7178                                                                                                1620.00
7179                                                                                                   1.00
7180                                                                                                  spray
7181                                                                                                 204.00
7182                                                                                                 500.00
7183                                                                                                   5.00
7184                                                                                                   5.00
7185                                                                                                 204.00
7186                                                                                                 500.00
7187                                                                                                2000.00
7188                                                                                                  10.00
7189                                                                                            unspecified
7190                                                                                                 375.00
7191                                                                                                  60.00
7192                                                                                                 300.00
7193                                                                                                 100.00
7194                                                                                                  75.00
7195                                                                                                 300.00
7196                                                                                                 500.00
7197                                                                                                   1.00
7198                                                                                                   8.00
7199                                                                                                   4.00
7200                                                                                                  75.00
7201                                                                                                  10.00
7202                                                                                                   1.00
7203                                                                                                   1.00
7204                                                                                                   1.00
7205                                                                                                   3.40
7206                                                                                                 500.00
7207                                                                                                  60.00
7208                                                                                        0.25 inch strip
7209                                                                                                  60.00
7210                                                                                                  20.00
7211                                                                                                  50.00
7212                                                                                                   1.00
7213                                                                                                   3.37
7214                                                                                                   2.50
7215                                                                                                   1.92
7216                                                                                                 200.00
7217                                                                                                1620.00
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7219                                                                                                     90
7220                                                                                                1620.00
7221                                                                                                   1.00
7222                                                                                                  10.00
7223                                                                                                 500.00
7224                                                                                                   1.00
7225                                                                                                  50.00
7226                                                                                                 200.00
7227                                                                                                   1.00
7228                                                                                                  50.00
7229                                                                                                 200.00
7230                                                                                                 300.00
7231                                                                                                1000.00
7232                                                                                                   8.00
7233                                                                                                  75.00
7234                                                                                                  20.00
7235                                                                                                  20.00
7236                                                                                                 125.00
7237                                                                                                  50.00
7238                                                                                                 500.00
7239                                                                                                  50.00
7240                                                                                                2 drops
7241                                                                                                 227.00
7242                                                                                                  50.00
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7244                                                                                                  68.00
7245                                                                                                 272.00
7246                                                                                                  68.00
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7250                                                                                                   2.00
7251                                                                                                 272.00
7252                                                                                                   1.00
7253                                                                                                 272.00
7254                                                                                                 272.00
7255                                                                                                  40.00
7256                                                                                                 500.00
7257                                                                                                 272.00
7258                                                                                                 272.00
7259                                                                                                 272.00
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7263                                                                                                   0.80
7264                                                                                                   1.00
7265                                                                                                   4.00
7266                                                                                                   0.70
7267                                                                                                   2.00
7268                                                                                                   1.00
7269                                                                                                   1.00
7270                                                                                                   1.00
7271                                                                                                   1.00
7272                                                                                                   1.00
7273                                                                                                   4.00
7274                                                                                                   1.00
7275                                                                                                   1.00
7276                                                                                                   2.50
7277                                                                                                 500.00
7278                                                                                                   5.00
7279                                                                                                  10.00
7280                                                                                                 272.00
7281                                                                                                   1.70
7282                                                                                                 340.50
7283                                                                                                  75.00
7284                                                                                                   1.90
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7287                                                                                                  75.00
7288                                                                                                 300.00
7289                                                                                                  16.00
7290                                                                                                   1.90
7291                                                                            based on weight (44-88 lbs)
7292                                                                                                 500.00
7293                                                                                                   1.00
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7296                                                                                                 500.00
7297                                                                                            unspecified
7298                                                                                                 227.00
7299                                                                                                  20.00
7300                                                                                                 272.00
7301                                                                                                 250.00
7302                                                                                                  50.00
7303                                                                                                 227.00
7304                                                                                                1000.00
7305                                                                                                  12.00
7306                                                                                                   8.00
7307                                                                                                  40.00
7308                                                                                                 200.00
7309                                                                                                  16.00
7310                                                                                                  16.00
7311                                                                                                 476.00
7312                                                                                                  16.00
7313                                                                                                 250.00
7314                                                                                                  50.00
7315                                                                                                  50.00
7316                                                                                                  50.00
7317                                                                                                 272.00
7318                                                                                                 500.00
7319                                                                                                 100.00
7320                                                                           based on weight (51-100 lbs)
7321                                                                                                1125.00
7322                                                                                                 500.00
7323                                                                                                  50.00
7324                                                                                                 375.00
7325                                                                                                   1.00
7326                                                                                                 200.00
7327                                                                                                   0.61
7328                                                                                                   0.50
7329                                                                                                   0.63
7330                                                                                                   0.64
7331                                                                                                 300.00
7332                                                                                                 150.00
7333                                                                                                  10.00
7334                                                                                                  10.00
7335                                                                                                   5.00
7336                                                                                                  50.00
7337                                                                                                   1.00
7338                                                                                                   1.00
7339                                                                                                   1.00
7340                                                                                                   1.00
7341                                                                                                   1.00
7342                                                                            based on weight (45-88 lbs)
7343                                                                                                   66.5
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7347                                                                                                  50.00
7348                                                                                                  60.00
7349                                                                                                 100.00
7350                                                                                                 500.00
7351                                                                                                   7.00
7352                                                                                                   1.00
7353                                                                                                  75.00
7354                                                                                                 100.00
7355                                                                                                   7.50
7356                                                                                                  70.00
7357                                                                                                 272.00
7358                                                                                                 250.00
7359                                                                                                 500.00
7360                                                                                                 725.00
7361                                                                                                 500.00
7362                                                                                                  50.00
7363                                                                                                 500.00
7364                                                                                                   6.00
7365                                                                                                   6.00
7366                                                                                                  20.00
7367                                                                                                 200.00
7368                                                                                                   6.00
7369                                                                                                  75.00
7370                                                                                                  75.00
7371                                                                                           small amount
7372                                                                                                   1.00
7373                                                                                                 252.00
7374                                                                                                 500.00
7375                                                                                                  75.00
7376                                                                                                  23.00
7377                                                                                                   1.60
7378                                                                                                   9.60
7379                                                                                                  70.35
7380                                                                                                   1.00
7381                                                                                                  75.00
7382                                                                                                 272.00
7383                                                                                                 200.00
7384                                                                                                  75.00
7385                                                                                                  72.90
7386                                                                                                   1.00
7387                                                                                                  60.00
7388                                                                                                 272.00
7389                                                                                                 500.00
7390                                                                                                 200.00
7391                                                                                                   1.58
7392                                                                                                  15.00
7393                                                                                                   9.45
7394                                                                                                 107.50
7395                                                                                                 750.00
7396                                                                                                   2.00
7397                                                                                                 272.00
7398                                                                                                 200.00
7399                                                                                               10000.00
7400                                                                                                  40.00
7401                                                                                                  60.00
7402                                                                                                 750.00
7403                                                                                                   0.71
7404                                                                                                  30.00
7405                                                                                                   0.70
7406                                                                                                  20.00
7407                                                                                                  30.20
7408                                                                                                   3.20
7409                                                                                                  64.00
7410                                                                                                  60.00
7411                                                                                                 750.00
7412                                                                                                   1.00
7413                                                                           based on weight (51-100 lbs)
7414                                                                                                 200.00
7415                                                                                                 750.00
7416                                                                                               10000.00
7417                                                                                                  40.00
7418                                                                                                   0.71
7419                                                                                                 250.00
7420                                                                                                  30.20
7421                                                                                                   3.20
7422                                                                                                  64.00
7423                                                                                                  60.00
7424                                                                                                 200.00
7425                                                                                                 180.00
7426                                                                                                    315
7427                                                                                                  60.00
7428                                                                                                  30.00
7429                                                                                                1000.00
7430                                                                                                  15.00
7431                                                                                                  15.00
7432                                                                                                     75
7433                                                                                                  15.00
7434                                                                                                  15.00
7435                                                                                                  15.00
7436                                                                                                  90.00
7437                                                                                                  60.00
7438                                                                                                  30.00
7439                                                                                                  30.00
7440                                                                                                   2.00
7441                                                                                                 450.00
7442                                                                                                  50.00
7443                                                                                                  50.00
7444                                                                                                   2.00
7445                                                                                                 300.00
7446                                                                                                 660.00
7447                                                                                                 120.00
7448                                                                                                 150.00
7449                                                                                                 850.00
7450                                                                                                   1.00
7451                                                                                                 500.00
7452                                                                                                 200.00
7453                                                                                                  23.00
7454                                                                                                1000.00
7455                                                                                                  75.00
7456                                                                                                 200.00
7457                                                                                                 200.00
7458                                                                                                 200.00
7459                                                                                                 200.00
7460                                                                                                 200.00
7461                                                                                                  75.00
7462                                                                                                  75.00
7463                                                                                                 200.00
7464                                                                                                 200.00
7465                                                                                                   6.00
7466                                                                                                  75.00
7467                                                                                                  10.00
7468                                                                                                  80.00
7469                                                                                                  20.00
7470                                                                                                 250.00
7471                                                                                                  23.00
7472                                                                                                 500.00
7473                                                                                                  23.00
7474                                                                                                  23.00
7475                                                                                                   1.00
7476                                                                                                  23.00
7477                                                                                                  23.00
7478                                                                                                  23.00
7479                                                                                               45293.00
7480                                                                                                  75.00
7481                                                                                                 150.00
7482                                                                                                 300.00
7483                                                                                                  75.00
7484                                                                                                 325.00
7485                                                                                                 325.00
7486                                                                                                  10.00
7487                                                                                                  10.00
7488                                                                                                 125.00
7489                                                                                                  50.00
7490                                                                                                  50.00
7491                                                                                                 500.00
7492                                                                                                 375.00
7493                                                                                                 100.00
7494                                                                                                 300.00
7495                                                                                                 272.00
7496                                                                                                 227.00
7497                                                                                                 200.00
7498                                                                                                  50.00
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7500                                                                                                  68.00
7501                                                                                                 272.00
7502                                                                                                  68.00
7503                                                                                        based on weight
7504                                                                                                 250.00
7505                                                                                                  75.00
7506                                                                                                 500.00
7507                                                                                                 272.00
7508                                                                                                 228.00
7509                                                                                                 228.00
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7514                                                                                                  50.00
7515                                                                                                   1.00
7516                                                                                                   1.00
7517                                                                                                1000.00
7518                                                                                                1000.00
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7520                                                                                                 136.00
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7527                                                                                                1000.00
7528                                                                                                 500.00
7529                                                                                                   8.00
7530                                                                                                   1.50
7531                                                                                                   1.00
7532                                                                                                  12.50
7533                                                                                                  50.00
7534                                                                                                 500.00
7535                                                                                                 250.00
7536                                                                                                   0.25
7537                                                                                                   3.00
7538                                                                                                   1.20
7539                                                                                                   1.50
7540                                                                                                   1.30
7541                                                                                                   0.20
7542                                                                                                  50.00
7543                                                                                                  12.50
7544                                                                                                 250.00
7545                                                                                                 500.00
7546                                                                                                  50.00
7547                                                                                                  12.50
7548                                                                                                  60.00
7549                                                                                                  50.00
7550                                                                                                1000.00
7551                                                                                  1 tablet/pill/capsule
7552                                                                                                 200.00
7553                                                                                                  75.00
7554                                                                                                   3.50
7555                                                                           based on weight (88-123 lbs)
7556                                                                                                1000.00
7557                                                                                                 170.00
7558                                                                                                  51.00
7559                                                                                                  55.00
7560                                                                                                   2.00
7561                                                                                                 100.00
7562                                                                                                  10.00
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7567                                                                                                 170.00
7568                                                                                                  312.5
7569                                                                                                 300.00
7570                                                                                                  32.00
7571                                                                                                   1.00
7572                                                                                                 227.00
7573                                                                                                  10.00
7574                                                                                                 170.00
7575                                                                                                 272.00
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7581                                                                                                 460.00
7582                                                                                                 460.00
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7591                                                                                                  15.00
7592                                                                                                1200.00
7593                                                                                                   1.00
7594                                                                                                 750.00
7595                                                                                                 350.00
7596                                                                                                   2.00
7597                                                                                                 200.00
7598                                                                                             1 wipe/pad
7599                                                                                                   2.00
7600                                                                                                   1.00
7601                                                                                                   1.00
7602                                                                                                   1.00
7603                                                                                                   1.00
7604                                                                                                 750.00
7605                                                                                                   1.00
7606                                                                                                   1.00
7607                                                                                                   1.00
7608                                                                                                   2.00
7609                                                                                                   8.00
7610                                                                                                   1.00
7611                                                                                                   1.00
7612                                                                                                   1.00
7613                                                                                                   1.00
7614                                                                                                   1.00
7615                                                                                                   1.00
7616                                                                                                   1.00
7617                                                                                                   1.00
7618                                                                                                   1.00
7619                                                                                                   2.00
7620                                                                                                 225.00
7621                                                                                                 375.00
7622                                                                                                   2.00
7623                                                                                                   2.00
7624                                                                                                   2.00
7625                                                                                                   0.50
7626                                                                                                   2.00
7627                                                                                                   1.00
7628                                                                                                   1.00
7629                                                                                                   1.00
7630                                                                                                   1.00
7631                                                                                                   1.00
7632                                                                                                   2.00
7633                                                                                                   1.00
7634                                                                                                   2.00
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7638                                                                                                   2.00
7639                                                                                                   1.00
7640                                                                                                   1.00
7641                                                                                                 500.00
7642                                                                                                   1.00
7643                                                                                                   0.50
7644                                                                                                   1.00
7645                                                                                                   1.00
7646                                                                                                   0.25
7647                                                                                                   1.00
7648                                                                                                 550.00
7649                                                                                                2600.00
7650                                                                                                 500.00
7651                                                                                                   1.00
7652                                                                                                   1.00
7653                                                                                                   1.00
7654                                                                                                   1.00
7655                                                                                                   2.00
7656                                                                                                   2.00
7657                                                                                                   0.25
7658                                                                                                   0.25
7659                                                                                                   0.50
7660                                                                           based on weight (51-100 lbs)
7661                                                                                                 200.00
7662                                                                                                  20.00
7663                                                                                                   3.00
7664                                                                                                 810.00
7665                                                                                                 375.00
7666                                                                                                 100.00
7667                                                                                                  75.00
7668                                                                                                 250.00
7669                                                                                                 100.00
7670                                                                                                  50.00
7671                                                                                                40, 200
7672                                                                                                   0.45
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7676                                                                                                 375.00
7677                                                                                                   1.00
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7680                                                                                                   1.00
7681                                                                            based on weight (40-60 lbs)
7682                                                                                                     90
7683                                                                                                     75
7684                                                                                                     66
7685                                                                                                 375.00
7686                                                                                                  50.00
7687                                                                                                  16.00
7688                                                                                                   1.00
7689                                                                                                   1.00
7690                                                                                                  50.00
7691                                                                                                 100.00
7692                                                                                          23 mg, 228 mg
7693                                                                                                1000.00
7694                                                                                                   3.00
7695                                                                                                1000.00
7696                                                                                                23, 228
7697                                                                                                  50.00
7698                                                                                                  40.00
7699                                                                                                23, 228
7700                                                                                                  40.00
7701                                                                                                23, 228
7702                                                                                                  16.00
7703                                                                                                 100.00
7704                                                                                                 150.00
7705                                                                                           small amount
7706                                                                                                  50.00
7707                                                                                                 200.00
7708                                                                                                 130.00
7709                                                                                                 750.00
7710                                                                                                  50.00
7711                                                                                                   6.00
7712                                                                                                 200.00
7713                                                                                                  16.00
7714                                                                                                 200.00
7715                                                                                                  15.00
7716                                                                                                 200.00
7717                                                                                                  16.00
7718                                                                                                 130.00
7719                                                                                                   1.00
7720                                                                                                  15.00
7721                                                                                                 200.00
7722                                                                                                  10.40
7723                                                                                                  65.00
7724                                                                                                   5.00
7725                                                                                                   8.00
7726                                                                                                  50.00
7727                                                                                                   1.00
7728                                                                                                 200.00
7729                                                                                                 300.00
7730                                                                                                  75.00
7731                                                                                                 200.00
7732                                                                                        based on weight
7733                                                                                                 200.00
7734                                                                                                   1.00
7735                                                                                                   1.00
7736                                                                                                   2.00
7737                                                                                                 500.00
7738                                                                                                 500.00
7739                                                                                                 500.00
7740                                                                                                 160.00
7741                                                                                                 437.50
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7744                                                                                                   66.5
7745                                                                                                     75
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7752                                                                                                   1.00
7753                                                                                                   1.00
7754                                                                       based on weight (61+ lbs) - 5 ml
7755                                                                                                 272.00
7756                                                                                                   2.68
7757                                                                                                  75.00
7758                                                                                                  50.00
7759                                                                            based on weight (56-95 lbs)
7760                                                                                                4600.00
7761                                                                                                  15.00
7762                                                                                                1500.00
7763                                                                           based on weight (51-100 lbs)
7764                                                                                                   1.00
7765                                                                                                   1.00
7766                                                                                                   2.00
7767                                                                                                   0.50
7768                                                                                                   2.00
7769                                                                                                   1.00
7770                                                                                                   3.00
7771                                                                                                9000.00
7772                                                                                            unspecified
7773                                                                                                   1.00
7774                                                                                                  50.00
7775                                                                                                   0.50
7776                                                                                            unspecified
7777                                                                                                 720.00
7778                                                                                                 100.00
7779                                                                                                  23.00
7780                                                                                                   1.00
7781                                                                                                   1.00
7782                                                                                                   1.00
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7785                                                                                                   1.00
7786                                                                                                   1.00
7787                                                                                                 1 tube
7788                                                                                                  23.00
7789                                                                                                   1.00
7790                                                                                                   1.00
7791                                                                                                 272.00
7792                                                                                                 240.00
7793                                                                                                 187.50
7794                                                                                                   1.25
7795                                                                            based on weight (60-90 lbs)
7796                                                                                                  50.00
7797                                                                                                  16.00
7798                                                                                                 272.00
7799                                                                                                 136.00
7800                                                                                                  16.00
7801                                                                                                 200.00
7802                                                                                                 100.00
7803                                                                                                  16.00
7804                                                                                                 272.00
7805                                                                                                 136.00
7806                                                                                                  16.00
7807                                                                                                 100.00
7808                                                                                                 272.00
7809                                                                                                 136.00
7810                                                                                                  16.00
7811                                                                                                   2.00
7812                                                                                            unspecified
7813                                                                                                   1.00
7814                                                                                                 200.00
7815                                                                                                   1.00
7816                                                                                                  75.00
7817                                                                                                  20.00
7818                                                                                            unspecified
7819                                                                                                 200.00
7820                                                                                            unspecified
7821                                                                                                 200.00
7822                                                                                            unspecified
7823                                                                                                  16.00
7824                                                                                                 300.00
7825                                                                                                   5.00
7826                                                                                                   3.00
7827                                                                                                  60.00
7828                                                                                                  60.00
7829                                                                                                   5.00
7830                                                                                                 300.00
7831                                                                                                 272.00
7832                                                                                        2.68 ml of 9.7%
7833                                                                                               45451.00
7834                                                                                                 272.00
7835                                                                                                 600.00
7836                                                                                                   1.00
7837                                                                                                 100 mg
7838                                                                                                   1.00
7839                                                                                            application
7840                                                                                                   37.5
7841                                                                                                   1.00
7842                                                                                                   1.00
7843                                                                                                 300.00
7844                                                                                                  75.00
7845                                                                                            unspecified
7846                                                                                            unspecified
7847                                                                                                   1.00
7848                                                                                            unspecified
7849                                                                                                 200.00
7850                                                                                                 250.00
7851                                                                                                 136.00
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7855                                                                                                  20.00
7856                                                                                                  10.00
7857                                                                                                 500.00
7858                                                                                                 375.00
7859                                                                                                  75.00
7860                                                                                                 375.00
7861                                                                                                 500.00
7862                                                                             2-3 tablets/pills/capsules
7863                                                                                                 468.75
7864                                                                                                     75
7865                                                                                                 272.00
7866                                                                                                 500.00
7867                                                                                                 272.00
7868                                                                                                 272.00
7869                                                                                                 272.00
7870                                                                                                  75.00
7871                                                                                                 500.00
7872                                                                                                 200.00
7873                                                                                                 272.00
7874                                                                                                 272.00
7875                                                                                                  20.00
7876                                                                                                   2.65
7877                                                                                                 240.00
7878                                                                                                 272.00
7879                                                                                                 126.00
7880                                                                                                 272.00
7881                                                                                                 136.00
7882                                                                                                 375.00
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7886                                                                                                1000.00
7887                                                                                            unspecified
7888                                                                                                1000.00
7889                                                                                            unspecified
7890                                                                                                  90.00
7891                                                                                                1000.00
7892                                                                                                  90.00
7893                                                                                                   2.00
7894                                                                                                 204.00
7895                                                                                            unspecified
7896                                                                                                 500.00
7897                                                                                                   8.00
7898                                                                                                  20.00
7899                                                                                                 200.00
7900                                                                                                 500.00
7901                                                                                                  20.00
7902                                                                                                  10.00
7903                                                                                                   1.00
7904                                                                                                 750.00
7905                                                                                                 750.00
7906                                                                                                   4.00
7907                                                                                                 750.00
7908                                                                                                  50.00
7909                                                                                                 200.00
7910                                                                                                  50.00
7911                                                                                                   8.00
7912                                                                                                 136.00
7913                                                                                                 750.00
7914                                                                                                  12.00
7915                                                                                                 300.00
7916                                                                                                   8.00
7917                                                                                                  50.00
7918                                                                                                 100.00
7919                                                                                                 200.00
7920                                                                                                 500.00
7921                                                                                                   8.00
7922                                                                                                 500.00
7923                                                                                                   5.00
7924                                                                                                 175.00
7925                                                                                                1000.00
7926                                                                                           small amount
7927                                                                                                  20.00
7928                                                                                                1250.00
7929                                                                                           small amount
7930                                                                                                 227.00
7931                                                                                                 450.00
7932                                                                                                 120.00
7933                                                                                                  25.00
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7936                                                                                                 272.00
7937                                                                                                 200.00
7938                                                                                                   6.00
7939                                                                                                   5.00
7940                                                                                                  25.00
7941                                                                                                   1 ml
7942                                                                                                 200.00
7943                                                                                                   5.00
7944                                                                                           small amount
7945                                                                                                   0.70
7946                                                                                           small amount
7947                                                                                                   4.00
7948                                                                                                 272.00
7949                                                                                                 272.00
7950                                                                                                 272.00
7951                                                                                                   2.00
7952                                                                                                   1.50
7953                                                                                                   4.00
7954                                                                                                  25.00
7955                                                                                                   0.75
7956                                                                                                 272.00
7957                                                                                                   4.00
7958                                                                                                  25.00
7959                                                                                                 400.00
7960                                                                                                 100.00
7961                                                                                        0.25 inch strip
7962                                                                                                 100.00
7963                                                                                                   5.00
7964                                                                                                   5.00
7965                                                                                                   1.00
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7971                                                                                                  63.00
7972                                                                                                 500.00
7973                                                                                            unspecified
7974                                                                                                  60.00
7975                                                                                                  75.00
7976                                                                                                  60.00
7977                                                                                                 250.00
7978                                                                                                 272.00
7979                                                                                                   6.00
7980                                                                                                 500.00
7981                                                                                                  25.00
7982                                                                                                 120.00
7983                                                                                                  50.00
7984                                                                                                 250.00
7985                                                                                                 250.00
7986                                                                                                   0.14
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7989                                                                                                   1.50
7990                                                                                                   0.50
7991                                                                                                   1.00
7992                                                                                                   1.00
7993                                                                            based on weight (40-85 lbs)
7994                                                                                                 100.00
7995                                                                                           500 mg, 5 ml
7996                                                                                                   3.00
7997                                                                                                   1.00
7998                                                                           based on weight (85-130 lbs)
7999                                                                                                   1.00
8000                                                                           based on weight (85-130 lbs)
8001                                                                                                   1.80
8002                                                                                                   1.00
8003                                                                                                 100.00
8004                                                                                                 100.00
8005                                                                                                   1.00
8006                                                                                                  10.00
8007                                                                                                 250.00
8008                                                                                                 100.00
8009                                                                                           small amount
8010                                                                                                  50.00
8011                                                                                                 200.00
8012                                                                                           small amount
8013                                                                                                  50.00
8014                                                                                           small amount
8015                                                                                                  23.00
8016                                                                                                 200.00
8017                                                                                           small amount
8018                                                                                                 200.00
8019                                                                                                  75.00
8020                                                                                                   1.00
8021                                                                                                  75.00
8022                                                                                                 200.00
8023                                                                                                 200.00
8024                                                                                                 500.00
8025                                                                                                 300.00
8026                                                                                                  75.00
8027                                                                                                   0.50
8028                                                                                                 272.00
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8031                                                                                                   1.00
8032                                                                                                 100.00
8033                                                                                                   1.00
8034                                                                                                 272.00
8035                                                                                                 272.00
8036                                                                                                 272.00
8037                                                                                                 272.00
8038                                                                                                 272.00
8039                                                                                                 272.00
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8041                                                                                                 500.00
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8046                                                                                                 500.00
8047                                                                                                1000.00
8048                                                                                                 680.00
8049                                                                                                 310.00
8050                                                                                                 950.00
8051                                                                                                 500.00
8052                                                                                                 272.00
8053                                                                                                   4.00
8054                                                                                                   5.00
8055                                                                                                 375.00
8056                                                                                                 500.00
8057                                                                                                 136.00
8058                                                                                                   1.00
8059                                                                                                   0.20
8060                                                                                                 136.00
8061                                                                                                   1.00
8062                                                                                                   1.00
8063                                                                                                     43
8064                                                                                                   3.60
8065                                                                                                   0.20
8066                                                                                                     38
8067                                                                                                     38
8068                                                                                                   0.20
8069                                                                                                     38
8070                                                                                                     38
8071                                                                                                     38
8072                                                                                                   0.40
8073                                                                                                  25.00
8074                                                                                                   0.20
8075                                                                                            unspecified
8076                                                                                                   7.50
8077                                                                                                  50.00
8078                                                                                                   5.00
8079                                                                                                 400.00
8080                                                                                                 500.00
8081                                                                                                   3.50
8082                                                                                                 250.00
8083                                                                                                 250.00
8084                                                                                                  75.00
8085                                                                                                 125.00
8086                                                                                           small amount
8087                                                                                                   1.00
8088                                                                                                 375.00
8089                                                                                                 125.00
8090                                                                                                  50.00
8091                                                                                               125, 375
8092                                                                                                  60.00
8093                                                                                                  26.00
8094                                                                                                   3.50
8095                                                                                                  36.00
8096                                                                                                  16.00
8097                                                                                                   8.00
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8101                                                                                                  24.00
8102                                                                                                  16.00
8103                                                                                                 500.00
8104                                                                                                  50.00
8105                                                                                                   1.00
8106                                                                                                  20.00
8107                                                                                                  30.00
8108                                                                                                 100.00
8109                                                                                                   3.20
8110                                                                                                   1.00
8111                                                                                                   1.00
8112                                                                                                   3.20
8113                                                                                                   1.00
8114                                                                                                  75.00
8115                                                                                                 425.00
8116                                                                                                 100.00
8117                                                                                                 425.00
8118                                                                                                 100.00
8119                                                                                                 215.00
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8124                                                                                                 272.00
8125                                                                                            unspecified
8126                                                                                                 500.00
8127                                                                                                  15.00
8128                                                                                           small amount
8129                                                                                                   8.00
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8132                                                                                                  23.00
8133                                                                                                 900.00
8134                                                                                                  75.00
8135                                                                                                   17.5
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8141                                                                                                 500.00
8142                                                                                                  32.00
8143                                                                                                  60.00
8144                                                                                                1000.00
8145                                                                                                 500.00
8146                                                                                                  60.00
8147                                                                                                  60.00
8148                                                                                                   1.60
8149                                                                                                  13.00
8150                                                                                                 130.00
8151                                                                                                  32.00
8152                                                                                                 100.00
8153                                                                                                  75.00
8154                                                                                                 100.00
8155                                                                                                   1.00
8156                                                                                                   2.00
8157                                                                                                 500.00
8158                                                                                                   2.68
8159                                                                                                 272.00
8160                                                                               2 tablets/pills/capsules
8161                                                                                                 150.00
8162                                                                                                 150.00
8163                                                                                                 700.00
8164                                                                                                 500.00
8165                                                                                                    875
8166                                                                                                 272.00
8167                                                                                                 227.00
8168                                                                                                 272.00
8169                                                                                                   2.68
8170                                                                                                 227.00
8171                                                                                                   0.55
8172                                                                                                 272.00
8173                                                                                                   8.00
8174                                                                                                   1.00
8175                                                                                                 272.00
8176                                                                                                1000.00
8177                                                                                                1000.00
8178                                                                                                 272.00
8179                                                                                                  80.00
8180                                                                                                  80.00
8181                                                                                                  75.00
8182                                                                                           small amount
8183                                                                                                  75.00
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8189                                                                                                 200.00
8190                                                                                                 200.00
8191                                                                                                  10.00
8192                                                                                                 200.00
8193                                                                                                   7.00
8194                                                                                                  16.00
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8197                                                                                                 272.00
8198                                                                                                 375.00
8199                                                                                                  50.00
8200                                                                                                   1.00
8201                                                                                                   1.00
8202                                                                                                  10.00
8203                                                                                                   1.00
8204                                                                                                   1.00
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8213                                                                                                   6.00
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8216                                                                                                  75.00
8217                                                                                                 900.00
8218                                                                                                 500.00
8219                                                                                                 136.00
8220                                                                                                     38
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8225                                                                                                 750.00
8226                                                                                                  50.00
8227                                                                                                   2.00
8228                                                                                                   1.00
8229                                                                                                 100.00
8230                                                                                                 100.00
8231                                                                                                  23.00
8232                                                                                                  23.00
8233                                                                                                1000.00
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8237                                                                                                  50.00
8238                                                                                           small amount
8239                                                                                                   4.00
8240                                                                                                   6.00
8241                                                                                                  23 mg
8242                                                                                                   8.00
8243                                                                                                  23.00
8244                                                                                                     66
8245                                                                                                 750.00
8246                                                                                                   8.00
8247                                                                                                  23.00
8248                                                                            based on weight (44-88 lbs)
8249                                                                                                  32.00
8250                                                                                                 120.00
8251                                                                                               500, 750
8252                                                                                                  spray
8253                                                                                                  23.00
8254                                                                                                  80.00
8255                                                                                                  50.00
8256                                                                                                1000.00
8257                                                                                                  16.00
8258                                                                                                  23.00
8259                                                                                                  50.00
8260                                                                                                  16.00
8261                                                                                                  62.50
8262                                                                                                   6.00
8263                                                                                                 800.00
8264                                                                                                  88.00
8265                                                                                                 500.00
8266                                                                                                 100.00
8267                                                                                                  16.00
8268                                                                                                  50.00
8269                                                                                                 136.20
8270                                                                                                  23.00
8271                                                                                                 500.00
8272                                                                                                 200.00
8273                                                                                                 200.00
8274                                                                                                  16.00
8275                                                                                                  50.00
8276                                                                                                   0.28
8277                                                                                                 740.00
8278                                                                                                 170.00
8279                                                                                                   8.50
8280                                                                                            unspecified
8281                                                                                                   6.00
8282                                                                                                 750.00
8283                                                                                                   5.00
8284                                                                                            unspecified
8285                                                                                                  50.00
8286                                                                                                  16.00
8287                                                                                                  75.00
8288                                                                                                  50.00
8289                                                                                                  16.00
8290                                                                                                  16.00
8291                                                                                                  50.00
8292                                                                                                   8.00
8293                                                                                            unspecified
8294                                                                                                  60.00
8295                                                                                                  16.00
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8301                                                                                                     75
8302                                                                                                     75
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8306                                                                                                     75
8307                                                                                                     66
8308                                                                                                  16.00
8309                                                                                                   3.00
8310                                                                                                   1.00
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8316                                                                                                 125.00
8317                                                                                                 125.00
8318                                                                                                 120.00
8319                                                                                                 125.00
8320                                                                                                 136.00
8321                                                                                                 272.00
8322                                                                                                 375.00
8323                                                                                                 500.00
8324                                                                                                  20.00
8325                                                                                                 272.00
8326                                                                                                   75.5
8327                                                                                                 375.00
8328                                                                                                 500.00
8329                                                                                                  20.00
8330                                                                                                  50.00
8331                                                                                                 272.00
8332                                                                                                   75.5
8333                                                                                                  50.00
8334                                                                                                 272.00
8335                                                                                                   75.5
8336                                                                                                   1.00
8337                                                                                            unspecified
8338                                                                                            unspecified
8339                                                                                                 272.00
8340                                                                                                   75.5
8341                                                                                                 1 drop
8342                                                                                                 325.00
8343                                                                                                 750.00
8344                                                                                                 272.00
8345                                                                                                   1.00
8346                                                                                                  50.00
8347                                                                                                   1.00
8348                                                                                                 750.00
8349                                                                                            unspecified
8350                                                                                                  50.00
8351                                                                                                 500.00
8352                                                                                                   1.00
8353                                                                                                 272.00
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8356                                                                                                1000.00
8357                                                                                                   4.76
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8360                                                                                                   7.00
8361                                                                                                   3.00
8362                                                                                           small amount
8363                                                                                                 500.00
8364                                                                                                  23.00
8365                                                                                                 460.00
8366                                                                                                  80.00
8367                                                                                                1000.00
8368                                                                                                   6.00
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8372                                                                                                  60.00
8373                                                                                                 375.00
8374                                                                                                   1.00
8375                                                                                                   1.00
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8379                                                                                                   1.00
8380                                                                                                 375.00
8381                                                                                                 375.00
8382                                                                                                   1.00
8383                                                                                                 375.00
8384                                                                                                   8.00
8385                                                                                                   1.00
8386                                                                                                 272.00
8387                                                                                                 272.00
8388                                                                                                 272.00
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8390                                                                                                 450.00
8391                                                                                                 275.00
8392                                                                                                   0.60
8393                                                                                                 450.00
8394                                                                                                   1.00
8395                                                                                                  75.00
8396                                                                                                 300.00
8397                                                                                                   5.00
8398                                                                                                 300.00
8399                                                                                                   1.00
8400                                                                                                  75.00
8401                                                                                                  20.00
8402                                                                                                   1.00
8403                                                                                                 960.00
8404                                                                                                  75.00
8405                                                                                                 1 tube
8406                                                                                                 500.00
8407                                                                                                  50.00
8408                                                                           based on weight (50-100 lbs)
8409                                                                                                   1.00
8410                                                                           based on weight (51-100 lbs)
8411                                                                                                   0.50
8412                                                                                                   0.90
8413                                                                                                 150.00
8414                                                                                                   1.70
8415                                                                                                   0.43
8416                                                                                                  80.00
8417                                                                                                   4.00
8418                                                                                            unspecified
8419                                                                                                 200.00
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8422                                                                                                 272.00
8423                                                                                                 272.00
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8426                                                                                                 136.00
8427                                                                           based on weight (51-100 lbs)
8428                                                                                                 750.00
8429                                                                                                 227.00
8430                                                                                                   1.00
8431                                                                                                   1.20
8432                                                                                                 150.00
8433                                                                                                   1.50
8434                                                                                                 136.00
8435                                                                                         1 pack/package
8436                                                                                           small amount
8437                                                                                                 272.00
8438                                                                                                 272.00
8439                                                                                                 272.00
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8442                                                                                                 272.00
8443                                                                                                 136.00
8444                                                                                                  20.00
8445                                                                                                  50.00
8446                                                                                                 272.00
8447                                                                                                 100.00
8448                                                                                                   1.00
8449                                                                                                   1.00
8450                                                                                                 272.00
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8453                                                                                                  23.00
8454                                                                           based on weight (50-100 lbs)
8455                                                                                                 200.00
8456                                                                                                  16.00
8457                                                                                                 200.00
8458                                                                                                  16.00
8459                                                                                                 500.00
8460                                                                                                   1.00
8461                                                                                                     75
8462                                                                                                 500.00
8463                                                                                                 272.00
8464                                                                                                 100.00
8465                                                                                                     38
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8468                                                                                                 150.00
8469                                                                                                  10.00
8470                                                                                                   5.00
8471                                                                                                 150.00
8472                                                                                                  10.00
8473                                                                                                   4.00
8474                                                                                                 200.00
8475                                                                                                   bath
8476                                                                                                 136.00
8477                                                                                                  10.00
8478                                                                                                   bath
8479                                                                                                   4.00
8480                                                                                                 272.00
8481                                                                                                 136.00
8482                                                                                                   5.00
8483                                                                                                 272.00
8484                                                                                                 136.00
8485                                                                                                 272.00
8486                                                                                                 136.00
8487                                                                                                 272.00
8488                                                                                                 136.00
8489                                                                                                     66
8490                                                                                                  80.00
8491                                                                                                   1.50
8492                                                                                                 300.00
8493                                                                                                   1.00
8494                                                                                                 100.00
8495                                                                                                   1.00
8496                                                                                                  20.00
8497                                                                                                  20.00
8498                                                                                                  10.00
8499                                                                                                  10.00
8500                                                                                                   1.00
8501                                                                                                 160.00
8502                                                                                                   1.00
8503                                                                                                   2.50
8504                                                                                                   3.00
8505                                                                                                   4.00
8506                                                                                                  30.00
8507                                                                                                  30.00
8508                                                                                                 250.00
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8511                                                                                                   1.40
8512                                                                                                   1.00
8513                                                                                                  30.00
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8516                                                                                                  23.00
8517                                                                                                  30.00
8518                                                                                                   1.00
8519                                                                                                   0.48
8520                                                                                                   1.20
8521                                                                                                  72.00
8522                                                                                                   6.00
8523                                                                                                 105.00
8524                                                                                                   1.00
8525                                                                                                  10.00
8526                                                                                                   0.40
8527                                                                                                   0.20
8528                                                                         based on weight (50.1-100 lbs)
8529                                                                                                   0.20
8530                                                                                                  30.00
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8535                                                                                                  50.00
8536                                                                                                  15.00
8537                                                                                                 300.00
8538                                                                                                 300.00
8539                                                                                                  20.00
8540                                                                                                 200.00
8541                                                                                                  spray
8542                                                                                                 500.00
8543                                                                                                 810.00
8544                                                                                                  37.50
8545                                                                                                  25.00
8546                                                                                                8 drops
8547                                                                                                 500 mg
8548                                                                                                 100.00
8549                                                                                                   5.00
8550                                                                           based on weight (50-100 lbs)
8551                                                                                                 272.00
8552                                                                                                 272.00
8553                                                                                                  23.00
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8556                                                                                                2000.00
8557                                                                                                 500.00
8558                                                                                                 375.00
8559                                                                                                   1.00
8560                                                                                                 200.00
8561                                                                                                  20.00
8562                                                                                                 375.00
8563                                                                                                   1.00
8564                                                                                                   0.69
8565                                                                                                   2.20
8566                                                                                                   1.00
8567                                                                                                 468.75
8568                                                                                                   3.13
8569                                                                                                  37.50
8570                                                                                                  12.00
8571                                                                                                  72.00
8572                                                                                                1620.00
8573                                                                                                  27.00
8574                                                                                                   1.00
8575                                                                                                   37.5
8576                                                                                                1000.00
8577                                                                                                   1.00
8578                                                                                           small amount
8579                                                                                                  20.00
8580                                                                                                 400.00
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8587                                                                                                   1.00
8588                                                                                           small amount
8589                                                                                                 500.00
8590                                                                                                  10.00
8591                                                                           based on weight (60-120 lbs)
8592                                                                                                   1.00
8593                                                                                                   1.50
8594                                                                                                 100.00
8595                                                                                                   1.00
8596                                                                                                   1.00
8597                                                                                                   3.00
8598                                                                                                   1.00
8599                                                                                                   1.00
8600                                                                                                   1.00
8601                                                                                                 100.00
8602                                                                                                 125.00
8603                                                                                                 500.00
8604                                                                                                   1.00
8605                                                                                                   1.00
8606                                                                                                   1.00
8607                                                                              based on weight (55+ lbs)
8608                                                                                                 325.00
8609                                                                           based on weight (51-100 lbs)
8610                                                                                                  75.00
8611                                                                                                  75.00
8612                                                                                                 350.00
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8614                                                                                                 350.00
8615                                                                                                   1.00
8616                                                                                                 400.00
8617                                                                                                  20.00
8618                                                                                                 625.00
8619                                                                                                1000.00
8620                                                                                                  60.00
8621                                                                                                 137.00
8622                                                                                                   6.80
8623                                                                                                 200.00
8624                                                                                                 300.00
8625                                                                                                   3.20
8626                                                                                                   1.30
8627                                                                                                   0.65
8628                                                                                                   0.05
8629                                                                                                   4.20
8630                                                                                                   2.20
8631                                                                                                 161.80
8632                                                                                                   2.00
8633                                                                                                   1.50
8634                                                                                                   1.40
8635                                                                                                  75.00
8636                                                                                                 136.00
8637                                                                                                 300.00
8638                                                                                                  75.00
8639                                                                                                 200.00
8640                                                                                                   1.00
8641                                                                                                  20.00
8642                                                                                                   5.00
8643                                                                                                 227.00
8644                                                                                                 750.00
8645                                                                                                   3.30
8646                                                                                                   2.00
8647                                                                                                  12.70
8648                                                                                                   2.00
8649                                                                                                   2.00
8650                                                                                                   2.50
8651                                                                                                  75.00
8652                                                                                                  50.00
8653                                                                                                 200.00
8654                                                                                                 750.00
8655                                                                                                   1.50
8656                                                                                                   4.00
8657                                                                                                  60.00
8658                                                                                                 750.00
8659                                                                                                  12.00
8660                                                                                                 272.00
8661                                                                                                   8.00
8662                                                                                                 300.00
8663                                                                                                  75.00
8664                                                                                                 300.00
8665                                                                                                  60.00
8666                                                                                                  75.00
8667                                                                                                   0.50
8668                                                                                                  60.00
8669                                                                                                   1.00
8670                                                                                                 200.00
8671                                                                                                1647.00
8672                                                                                                1647.00
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8678                                                                                                 500.00
8679                                                                                                 272.00
8680                                                                                                 272.00
8681                                                                                                 500.00
8682                                                                                                  10.00
8683                                                                                                  15.00
8684                                                                                                 272.00
8685                                                                                                    125
8686                                                                                                   4.00
8687                                                                                                  10.00
8688                                                                                                 500.00
8689                                                                                                  10.00
8690                                                                                                  50.00
8691                                                                                                 500.00
8692                                                                                                 200.00
8693                                                                                                 272.00
8694                                                                            based on weight (45-88 lbs)
8695                                                                                                  31.25
8696                                                                                                 200.00
8697                                                                                                 varies
8698                                                                                                   1.00
8699                                                                                                   1.00
8700                                                                                                 272.00
8701                                                                                                 272.00
8702                                                                            based on weight (45-88 lbs)
8703                                                                                                 200.00
8704                                                                                                   1.00
8705                                                                                                  57.00
8706                                                                                                 272.00
8707                                                                            based on weight (45-88 lbs)
8708                                                                                                   3.75
8709                                                                                                 200.00
8710                                                                                                   1.00
8711                                                                                                   1.00
8712                                                                                                1000.00
8713                                                                                                   1.00
8714                                                                                                 272.00
8715                                                                                                   1.88
8716                                                                                                   1.00
8717                                                                                                  12.50
8718                                                                                                   3.00
8719                                                                                                  14.00
8720                                                                                                 150.00
8721                                                                                                 200 mg
8722                                                                                                   2.20
8723                                                                                                 300.00
8724                                                                                                   1.00
8725                                                                                                   4.80
8726                                                                                                   4.50
8727                                                                                                 200.00
8728                                                                                                 300.00
8729                                                                                                   1.00
8730                                                                                                   2.40
8731                                                                                        based on weight
8732                                                                                                   2.60
8733                                                                                                 200.00
8734                                                                                                   1.00
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8737                                                                                                   6.00
8738                                                                                                   1.00
8739                                                                                                  21.00
8740                                                                                                   1.00
8741                                                                                                   5.00
8742                                                                                                 200.00
8743                                                                                                 200.00
8744                                                                                            unspecified
8745                                                                                            unspecified
8746                                                                                                 200.00
8747                                                                                                 400.00
8748                                                                                                 600.00
8749                                                                                                 500.00
8750                                                                                                 600.00
8751                                                                                                 400.00
8752                                                                                                 500.00
8753                                                                                                 600.00
8754                                                                                                 400.00
8755                                                                                                 100.00
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8758                                                                                                   1.00
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8761                                                                                                   7.50
8762                                                                                                 150.00
8763                                                                                                 300.00
8764                                                                                                 150.00
8765                                                                                                   1.00
8766                                                                                                 227.00
8767                                                                                                   1.00
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8772                                                                                                  37.50
8773                                                                                                  16.00
8774                                                                                                  16.00
8775                                                                                                  37.50
8776                                                                                                   75.5
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8782                                                                                                 750.00
8783                                                                                                  30.00
8784                                                                                                 150.00
8785                                                                                                  60.00
8786                                                                           based on weight (51-100 lbs)
8787                                                                                                     66
8788                                                                                                 200.00
8789                                                                                                  75.00
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8796                                                                                                     66
8797                                                                                            unspecified
8798                                                                                                 200.00
8799                                                                                                  20.00
8800                                                                                                  75.00
8801                                                                                                 100.00
8802                                                                                                 300.00
8803                                                                                                  20.00
8804                                                                                                  75.00
8805                                                                           based on weight (51-100 lbs)
8806                                                                                                   7.00
8807                                                                                                 500.00
8808                                                                                                     66
8809                                                                                                   5.00
8810                                                                                                   1.00
8811                                                                                                 750.00
8812                                                                                                 204.00
8813                                                                                                 500.00
8814                                                                                                 500.00
8815                                                                                        0.25 inch strip
8816                                                                                                   8.00
8817                                                                                                   6.00
8818                                                                                                 272.00
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8821                                                                                                   3.40
8822                                                                                                   3.40
8823                                                                                                 500.00
8824                                                                                                  20.00
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8827                                                                                                     90
8828                                                                           based on weight (51-100 lbs)
8829                                                                                                 272.00
8830                                                                                                 136.00
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8832                                                                                                 227.00
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8835                                                                                                  75.00
8836                                                                                                 500.00
8837                                                                                            unspecified
8838                                                                                                  75.00
8839                                                                                                 272.00
8840                                                                                                 272.00
8841                                                                                                   2.68
8842                                                                                                 272.00
8843                                                                            based on weight (45-88 lbs)
8844                                                                                                 227.00
8845                                                                                                   1.14
8846                                                                                                   1.00
8847                                                                                                 200.00
8848                                                                                                 300.00
8849                                                                                                  75.00
8850                                                                                                 300.00
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8854                                                                                                 150.00
8855                                                                                                272 mcg
8856                                                                                                   8.00
8857                                                                                                 500.00
8858                                                                                                  60.00
8859                                                                                                   1.00
8860                                                                                           small amount
8861                                                                                                 500.00
8862                                                                                                 272.00
8863                                                                                                   4.00
8864                                                                                                   1.00
8865                                                                                                 272.00
8866                                                                                                 136.00
8867                                                                                                 227.00
8868                                                                                                  16.00
8869                                                                                                1620.00
8870                                                                                                 750.00
8871                                                                                                 300.00
8872                                                                                                 300.00
8873                                                                                                 200.00
8874                                                                                                 200.00
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8878                                                                                                  25.00
8879                                                                           based on weight (51-100 lbs)
8880                                                                                                 272.00
8881                                                                                                 227.00
8882                                                                                                 272.00
8883                                                                                                 227.00
8884                                                                                                 200.00
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8886                                                                                                   1.00
8887                                                                                                 200.00
8888                                                                                                 272.00
8889                                                                                                 227.00
8890                                                                                                 272.00
8891                                                                                                 500.00
8892                                                                                                 272.00
8893                                                                                                  75.00
8894                                                                                                  50.00
8895                                                                                                   1.00
8896                                                                                                 100.00
8897                                                                                                 500.00
8898                                                                                                 200.00
8899                                                                                                   8.00
8900                                                                                                  75.00
8901                                                                                                  75.00
8902                                                                                                 500.00
8903                                                                                                   1.00
8904                                                                                                 250.00
8905                                                                                                   0.30
8906                                                                                                 250.00
8907                                                                                                   0.30
8908                                                                                              13.5, 810
8909                                                                                                 500.00
8910                                                                                                 500.00
8911                                                                           based on weight (51-100 lbs)
8912                                                                                                   0.40
8913                                                                                                   0.40
8914                                                                                                  23.00
8915                                                                                                   0.40
8916                                                                                                  23.00
8917                                                                                                   0.40
8918                                                                                                  23.00
8919                                                                                                   0.40
8920                                                                                                   0.40
8921                                                                                                 100.00
8922                                                                                                   0.40
8923                                                                                                  70.00
8924                                                                                                9200.00
8925                                                                                                  30.00
8926                                                                                                 272.00
8927                                                                                                 228.00
8928                                                                                                 228.00
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8931                                                                                                  50.00
8932                                                                                                  23.00
8933                                                                                                 500.00
8934                                                                                                   2.00
8935                                                                                                  23.00
8936                                                                                                1000.00
8937                                                                                                  23.00
8938                                                                                                1000.00
8939                                                                                                  16.00
8940                                                                                                  23.00
8941                                                                                                1000.00
8942                                                                                                  16.00
8943                                                                                                  23.00
8944                                                                                                1000.00
8945                                                                                                 228.00
8946                                                                                                  16.00
8947                                                                                                   0.70
8948                                                                                                   0.70
8949                                                                                                  16.00
8950                                                                                                  16.00
8951                                                                                                   0.70
8952                                                                                                   3.00
8953                                                                                                  60.00
8954                                                                                                  40.00
8955                                                                                                  16.00
8956                                                                                                   2.00
8957                                                                                                   1.00
8958                                                                                                 272.00
8959                                                                                                 228.00
8960                                                                                                 228.00
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8963                                                                                                  25.00
8964                                                                                                  23.00
8965                                                                                                  23.00
8966                                                                                                1000.00
8967                                                                                                  23.00
8968                                                                                                1000.00
8969                                                                                                  23.00
8970                                                                                                1000.00
8971                                                                                                  23.00
8972                                                                                                1000.00
8973                                                                                                 228.00
8974                                                                                                  30.00
8975                                                                                                  60.00
8976                                                                                                   1.00
8977                                                                                                   1.00
8978                                                                                                   1.00
8979                                                                                                 500.00
8980                                                                                                  60.00
8981                                                                                                   3.00
8982                                                                                                   0.50
8983                                                                                                1000.00
8984                                                                                                   3.00
8985                                                                                                   2.00
8986                                                                                                  16.00
8987                                                                                                  16.00
8988                                                                                                 272.00
8989                                                                                                  24.00
8990                                                                                                  75.00
8991                                                                                                 200.00
8992                                                                                                   6.00
8993                                                                                                 272.00
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8996                                                                                                  80.00
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
8999                                                                                                  70.00
9000                                                                                                  80.00
9001                                                                                                  75.00
9002                                                                                                  75.00
9003                                                                                                 300.00
9004                                                                                                 200.00
9005                                                                                                  80.00
9006                                                                                                 272.00
9007                                                                                                  70.00
9008                                                                                                  70.00
9009                                                                                                   6.00
9010                                                                                                 200.00
9011                                                                                                 200.00
9012                                                                                                  50.00
9013                                                                                                 200.00
9014                                                                                                  70.00
9015                                                                                                  50.00
9016                                                                                                 200.00
9017                                                                                                  70.00
9018                                                                                                  50.00
9019                                                                                                  23.00
9020                                                                                                  23.00
9021                                                                                                1000.00
9022                                                                                                   5.00
9023                                                                                                  23.00
9024                                                                                                   1.00
9025                                                                                                  23.00
9026                                                                           based on weight (50-100 lbs)
9027                                                                                                  75.00
9028                                                                                                  17.60
9029                                                                                                  75.00
9030                                                                                                  20.00
9031                                                                                                  23.00
9032                                                                                                  20.00
9033                                                                                                1000.00
9034                                                                                                  23.00
9035                                                                                                1776.00
9036                                                                                                   4.00
9037                                                                                                  60.00
9038                                                                                                 300.00
9039                                                                                                   3.75
9040                                                                                                 100.00
9041                                                                                                  23.00
9042                                                                                                 460.00
9043                                                                                                   1.00
9044                                                                                                   1.00
9045                                                                                                  23.00
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9048                                                                                                 460.00
9049                                                                                                2 drops
9050                                                                                            as directed
9051                                                                                                 187.50
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9057                                                                                                 500.00
9058                                                                                                  75.00
9059                                                                                                 250.00
9060                                                                                            unspecified
9061                                                                                                 100.00
9062                                                                                                 100.00
9063                                                                                                   1.00
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9066                                                                                                  10.00
9067                                                                                                  50.00
9068                                                                                                 400.00
9069                                                                                                 100.00
9070                                                                                            unspecified
9071                                                                                            unspecified
9072                                                                                                 100.00
9073                                                                                                   2.00
9074                                                                                                 375.00
9075                                                                                                  11.50
9076                                                                                                1000.00
9077                                                                                                  68.00
9078                                                                                                  11.50
9079                                                                                                1000.00
9080                                                                                                 100.00
9081                                                                                                  60.00
9082                                                                                                  20.00
9083                                                                                                  10.00
9084                                                                                            unspecified
9085                                                                                                 500.00
9086                                                                                                 600.00
9087                                                                                                  53.00
9088                                                                                                  91.00
9089                                                                                                 136.00
9090                                                                                                  20.00
9091                                                                                                   1.00
9092                                                                                                 100.00
9093                                                                                                  20.00
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9096                                                                                                 100.00
9097                                                                                                  50.00
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9102                                                                                                 100.00
9103                                                                                                3000.00
9104                                                                                                   1.00
9105                                                                                                 272.00
9106                                                                                                   9.80
9107                                                                                                   1.00
9108                                                                                                 150.00
9109                                                                                        0.25 inch strip
9110                                                                                                 227.00
9111                                                                                                 500.00
9112                                                                                                 500.00
9113                                                                                                 500.00
9114                                                                                                  20.00
9115                                                                                                  10.00
9116                                                                                                   6.00
9117                                                                                                 150.00
9118                                                                                        0.25 inch strip
9119                                                                                                  20.00
9120                                                                                                   1.00
9121                                                                                                   1.00
9122                                                                                                   1.00
9123                                                                                                   1.00
9124                                                                                                   1.00
9125                                                                                                 500.00
9126                                                                                               45585.00
9127                                                                                                 272.00
9128                                                                                                 136.00
9129                                                                                                   8.00
9130                                                                                                 272.00
9131                                                                                                 136.00
9132                                                                              based on weight (60+ lbs)
9133                                                                                                   1.00
9134                                                                                                   1.00
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9138                                                                                                 227.00
9139                                                                                                 136.00
9140                                                                                                 227.00
9141                                                                                                 136.00
9142                                                                                                 227.00
9143                                                                                                 136.00
9144                                                                                                   1.00
9145                                                                                                   1.00
9146                                                                                                   1.00
9147                                                                                                 500.00
9148                                                                                                   0.60
9149                                                                                                 200.00
9150                                                                                                  15.00
9151                                                                                                 227.00
9152                                                                                                 200.00
9153                                                                                                 500.00
9154                                                                                                   8.00
9155                                                                                                  50.00
9156                                                                                            unspecified
9157                                                                                                  50.00
9158                                                                                                   4.00
9159                                                                                                 340.00
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9162                                                                                                 300.00
9163                                                                                                 340.00
9164                                                                                                    110
9165                                                                                                   2.00
9166                                                                                                  28.75
9167                                                                                                   4.00
9168                                                                                                   0.90
9169                                                                                                 100.00
9170                                                                           based on weight (51-100 lbs)
9171                                                                                                   12.5
9172                                                                                                    110
9173                                                                                                   0.60
9174                                                                                                  50.00
9175                                                                                                  50.00
9176                                                                                                  50.00
9177                                                                                                   0.30
9178                                                                                                  50.00
9179                                                                                                  50.00
9180                                                                                                 272.00
9181                                                                                                   1.00
9182                                                                                                  75.00
9183                                                                                                  50.00
9184                                                                                                 500.00
9185                                                                                                 100.00
9186                                                                                                  50.00
9187                                                                                            application
9188                                                                                                  16.00
9189                                                                                  1 tablet/pill/capsule
9190                                                                                                  80.00
9191                                                                                                 200.00
9192                                                                                                 500.00
9193                                                                                         1 pack/package
9194                                                                                                  80.00
9195                                                                                                  12.00
9196                                                                                                  15.00
9197                                                                                                   2.00
9198                                                                                                   1.00
9199                                                                                                   1.00
9200                                                                                                   1.00
9201                                                                                                   1.00
9202                                                                           based on weight (51-100 lbs)
9203                                                                                                   1.00
9204                                                                                                  16.00
9205                                                                                                 200.00
9206                                                                                                  50.00
9207                                                                                                  60.00
9208                                                                                                1750.00
9209                                                                                                   1.00
9210                                                                                                1750.00
9211                                                                                                   0.25
9212                                                                                                 100.00
9213                                                                                                  50.00
9214                                                                                                  12.50
9215                                                                                                1750.00
9216                                                                                                 200.00
9217                                                                                                  50.00
9218                                                                                                 100.00
9219                                                                                                 100.00
9220                                                                                                1750.00
9221                                                                                                  50.00
9222                                                                                                   0.25
9223                                                                                                 100.00
9224                                                                                                   1.30
9225                                                                                                 100.00
9226                                                                                                  50.00
9227                                                                                                 100.00
9228                                                                                                  75.00
9229                                                                                                  75 mg
9230                                                                                           small amount
9231                                                                                                  10.00
9232                                                                                                   1.00
9233                                                                                                 250 mg
9234                                                                                                  75.00
9235                                                                                                 750.00
9236                                                                           based on weight (51-100 lbs)
9237                                                                                                   3.25
9238                                                                                                   1.00
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9246                                                                                                  60.00
9247                                                                                                   1.50
9248                                                                                                   1.00
9249                                                                                                 272.00
9250                                                                                                 227.00
9251                                                                                                   0.75
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9255                                                                                                   0.50
9256                                                                                                 500.00
9257                                                                                                 500.00
9258                                                                                                   0.50
9259                                                                           based on weight (60-120 lbs)
9260                                                                                                 500.00
9261                                                                                                   0.50
9262                                                                                                 250.00
9263                                                                                                1000.00
9264                                                                                                  10.00
9265                                                                                                 272.00
9266                                                                                                 272.00
9267                                                                           based on weight (51-100 lbs)
9268                                                                                                     66
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9272                                                                                                  50.00
9273                                                                                                 100.00
9274                                                                                                 100.00
9275                                                                                                 600.00
9276                                                                                                  20.00
9277                                                                                                 625.00
9278                                                                                                 500.00
9279                                                                                                  10.00
9280                                                                                                  50.00
9281                                                                                                  25.00
9282                                                                                                   5.00
9283                                                                                                  50.00
9284                                                                                                 125.00
9285                                                                                                   4.00
9286                                                                                                   2.00
9287                                                                                                 272.00
9288                                                                                                 227.00
9289                                                                                                   1.00
9290                                                                                                     90
9291                                                                                                 750.00
9292                                                                                               27, 1620
9293                                                                                                1620.00
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9296                                                                                                  16.00
9297                                                                                            unspecified
9298                                                                                                  16.00
9299                                                                                                     90
9300                                                                                                  16.00
9301                                                                                                   1.20
9302                                                                                                 500.00
9303                                                                                                   3.00
9304                                                                                                 200.00
9305                                                                                                 272.00
9306                                                                                                   2.00
9307                                                                                                   3.00
9308                                                                                                 272.00
9309                                                                                                   4.70
9310                                                                                                 272.00
9311                                                                                                 136.00
9312                                                                                                272 mcg
9313                                                                                                 136.00
9314                                                                                                  75.00
9315                                                                                                  75.00
9316                                                                                                   1.88
9317                                                                                                   1.00
9318                                                                                                  25.00
9319                                                                                                  50.00
9320                                                                                                   1.00
9321                                                                                                   1.00
9322                                                                                                  50.00
9323                                                                                                  75.00
9324                                                                                                  50.00
9325                                                                                                   3.00
9326                                                                                                   1.00
9327                                                                                                 150.00
9328                                                                                                   5.20
9329                                                                                                   1.10
9330                                                                                                   4.70
9331                                                                                                   5.00
9332                                                                                                1340.00
9333                                                                                                  75.00
9334                                                                                                1620.00
9335                                                                                                 272.00
9336                                                                                                 272.00
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9340                                                                                                 100.00
9341                                                                                                   5.00
9342                                                                                                  20.00
9343                                                                                                   0.01
9344                                                                                                   0.50
9345                                                                                                   0.60
9346                                                                                                 500.00
9347                                                                                                   4.00
9348                                                                                                 136 mg
9349                                                                                                 150.00
9350                                                                                                  50.00
9351                                                                                                   1.90
9352                                                                                                 200.00
9353                                                                                                 200.00
9354                                                                                                 500.00
9355                                                                                                 500.00
9356                                                                                                 100.00
9357                                                                                                 100.00
9358                                                                                                  30.00
9359                                                                                                   2.50
9360                                                                                                  20.00
9361                                                                                                 272.00
9362                                                                                                 272.00
9363                                                                                                   6.00
9364                                                                                                 500.00
9365                                                                                                  75.00
9366                                                                                                 272.00
9367                                                                                                1000.00
9368                                                                                                 500.00
9369                                                                                                  75.00
9370                                                                                                 750.00
9371                                                                                                 300.00
9372                                                                                                  75.00
9373                                                                                                 750.00
9374                                                                                                  75.00
9375                                                                                                 750.00
9376                                                                                                   0.70
9377                                                                                                  75.00
9378                                                                                                  30.00
9379                                                                                                   0.70
9380                                                                                                  30.00
9381                                                                                                   0.70
9382                                                                                                   1.00
9383                                                                                                   1.00
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9388                                                                                                  50.00
9389                                                                                                 136.00
9390                                                                                                272 mcg
9391                                                                                                   7.00
9392                                                                                                 272.00
9393                                                                                                 136.00
9394                                                                                                 272.00
9395                                                                                                 136.00
9396                                                                                                 272.00
9397                                                                                                 136.00
9398                                                                                                 600.00
9399                                                                                                 272.00
9400                                                                                                 136.00
9401                                                                                                1000.00
9402                                                                                                  50.00
9403                                                                                                   2.00
9404                                                                                                   2.00
9405                                                                                                   0.20
9406                                                                                                  45.00
9407                                                                                                  10.00
9408                                                                                                 500.00
9409                                                                                                 136.00
9410                                                                                                 272.00
9411                                                                                                  50.00
9412                                                                                                  75.00
9413                                                                                                   1.00
9414                                                                                                   1.00
9415                                                                                                   1.00
9416                                                                                           small amount
9417                                                                                                   1.00
9418                                                                                           small amount
9419                                                                                                 100.00
9420                                                                                                 200.00
9421                                                                                                 collar
9422                                                                                        based on weight
9423                                                                                                 200.00
9424                                                                                                  16.00
9425                                                                                                   1.00
9426                                                                           based on weight (50-100 lbs)
9427                                                                                                 500.00
9428                                                                                                 500.00
9429                                                                                            application
9430                                                                                                  50.00
9431                                                                                                 200.00
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9437                                                                                                 200.00
9438                                                                                              injection
9439                                                                                                6000.00
9440                                                                                                   1.00
9441                                                                                                   1.00
9442                                                                                                 375.00
9443                                                                                                 500.00
9444                                                                                                  50.00
9445                                                                                                 500.00
9446                                                                                                 100.00
9447                                                                                            unspecified
9448                                                                                                 150.00
9449                                                                                                 125.00
9450                                                                                                 250.00
9451                                                                                                 625.00
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9455                                                                                                 272.00
9456                                                                                                   9.80
9457                                                                                                 250.00
9458                                                                                                 272.00
9459                                                                                                  68.00
9460                                                                                                 272.00
9461                                                                                                  68.00
9462                                                                                                 227.00
9463                                                                                                 136.00
9464                                                                                                  23.00
9465                                                                                                  68.00
9466                                                                                                 272.00
9467                                                                                                 272.00
9468                                                                                                 272.00
9469                                                                                                  12.50
9470                                                                                                  12.50
9471                                                                                                 272.00
9472                                                                                                 272.00
9473                                                                                                1000.00
9474                                                                                                 272.00
9475                                                                                                 272.00
9476                                                                                                  12.50
9477                                                                                                 500.00
9478                                                                                                   7.00
9479                                                                                                  74.00
9480                                                                                                   0.50
9481                                                                                                  37.50
9482                                                                                                 350.00
9483                                                                                                  62.50
9484                                                                                                 250.00
9485                                                                                                 500 mg
9486                                                                                                   3.00
9487                                                                                                  25.00
9488                                                                                                 500.00
9489                                                                                                 500.00
9490                                                                                                 100.00
9491                                                                                                   1.00
9492                                                                                                   1.00
9493                                                                                                 200.00
9494                                                                                           small amount
9495                                                                                           small amount
9496                                                                                                 136.00
9497                                                                                                 272.00
9498                                                                                                 136.00
9499                                                                                                1000.00
9500                                                                                                 136.00
9501                                                                                                 400.00
9502                                                                                                   5.00
9503                                                                                                 200.00
9504                                                                                                 136.00
9505                                                                                                 272.00
9506                                                                                                   1.00
9507                                                                                                 400.00
9508                                                                                                 200.00
9509                                                                                                 227.00
9510                                                                                                 200.00
9511                                                                                            unspecified
9512                                                                                                 300.00
9513                                                                                                   5.00
9514                                                                                                 100.00
9515                                                                                                   1.50
9516                                                                                       0.125 inch strip
9517                                                                                                 250.00
9518                                                                                                 100.00
9519                                                                                                   1.00
9520                                                                                                 113.50
9521                                                                                                 272.00
9522                                                                                                 228.00
9523                                                                                                 228.00
9524                                                                                           small amount
9525                                                                                                   1.00
9526                                                                                                 160.00
9527                                                                                                  62.50
9528                                                                                                  32.50
9529                                                                                                   5.00
9530                                                                                                  75.00
9531                                                                                                  34.50
9532                                                                                                  75.00
9533                                                                                                   5.00
9534                                                                                                 272.00
9535                                                                                                 272.00
9536                                                                                                 160.00
9537                                                                                                 160.00
9538                                                                                                   1.63
9539                                                                                                   1.09
9540                                                                                                 108.73
9541                                                                                                   2.50
9542                                                                                                 272.00
9543                                                                                                 272.00
9544                                                                          based on weight (24.1-60 lbs)
9545                                                                                                 272.00
9546                                                                         based on weight (60.1-121 lbs)
9547                                                                                                 272.00
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9550                                                                                                   1.00
9551                                                                                                   1.12
9552                                                                                                 112.00
9553                                                                                                 272.00
9554                                                                                                  75.00
9555                                                                                                 500.00
9556                                                                                                   2.00
9557                                                                                                   1.00
9558                                                                                                   1.17
9559                                                                                                  11.71
9560                                                                                                 117.09
9561                                                                                                 180.00
9562                                                                                                 272.00
9563                                                                                                  75.00
9564                                                                                                 100.00
9565                                                                                                  60.00
9566                                                                                                  75.00
9567                                                                                                  60.00
9568                                                                                                  60.00
9569                                                                                                  15.00
9570                                                                                                 125.00
9571                                                                                                 500.00
9572                                                                                                 900.00
9573                                                                                                   2.00
9574                                                                                                   2.00
9575                                                                                                     90
9576                                                                                                  60.00
9577                                                                                                 500.00
9578                                                                                                     90
9579                                                                                                2000.00
9580                                                                                                 500.00
9581                                                                                                  15.00
9582                                                                                                1000.00
9583                                                                                                  20.00
9584                                                                           based on weight (51-100 lbs)
9585                                                                                                 200.00
9586                                                                                                  10.00
9587                                                                                                   1.00
9588                                                                                           small amount
9589                                                                                                 500.00
9590                                                                                                   5.00
9591                                                                                                 500.00
9592                                                                                            unspecified
9593                                                                                                  75.00
9594                                                                                                  75.00
9595                                                                                                  75.00
9596                                                                                            unspecified
9597                                                                                                  75.00
9598                                                                                                   0.60
9599                                                                                                 150.00
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9605                                                                                                  17.00
9606                                                                                                 250.00
9607                                                                                                  68.00
9608                                                                                                   1.00
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9611                                                                                                 150.00
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9622                                                                                                 200.00
9623                                                                                                  75.00
9624                                                                                                 200.00
9625                                                                                                  75.00
9626                                                                                                 125.00
9627                                                                                                 375.00
9628                                                                                                 375.00
9629                                                                                                   8.00
9630                                                                                                   1.00
9631                                                                                                 150.00
9632                                                                                                     90
9633                                                                                                   8.00
9634                                                                                                   1.00
9635                                                                                               27, 1620
9636                                                                                                  16.00
9637                                                                                                   0.50
9638                                                                                                     90
9639                                                                                                  16.00
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9642                                                                                                  16.00
9643                                                                           based on weight (60-120 lbs)
9644                                                                                                  16.00
9645                                                                                                  16.00
9646                                                                                                 200.00
9647                                                                                                  16.00
9648                                                                                                   8.00
9649                                                                                                  70.00
9650                                                                                                  16.00
9651                                                                                                 200.00
9652                                                                                                  20.00
9653                                                                                                 250.00
9654                                                                                                 250.00
9655                                                                                                   1.00
9656                                                                                                  83.00
9657                                                                                                     38
9658                                                                                                 136.00
9659                                                                                                   0.12
9660                                                                                                 136.00
9661                                                                                                 100.00
9662                                                                                                   0.12
9663                                                                                                 272.00
9664                                                                                                 100.00
9665                                                                                                 200.00
9666                                                                                                 500.00
9667                                                                                                 250.00
9668                                                                                                   2.50
9669                                                                                                  25.00
9670                                                                                                 375.00
9671                                                                                                 102.00
9672                                                                                                   1.00
9673                                                                                                 272.00
9674                                                                                                  68.00
9675                                                                                                 425.00
9676                                                                                                 200.00
9677                                                                                                 200.00
9678                                                                                                 102.00
9679                                                                                                 375.00
9680                                                                                                 500.00
9681                                                                                                   2.30
9682                                                                                                 500.00
9683                                                                                                 272.00
9684                                                                                                   3.60
9685                                                                                                   0.40
9686                                                                                                 425.00
9687                                                                                                 250.00
9688                                                                                                 113.00
9689                                                                                                 200.00
9690                                                                                                   1.50
9691                                                                                                 272.00
9692                                                                                                 200.00
9693                                                                                                 500.00
9694                                                                                                   0.45
9695                                                                                                 272.00
9696                                                                                                   0.45
9697                                                                                                   0.40
9698                                                                                                   1.00
9699                                                                                                 100.00
9700                                                                                                 200.00
9701                                                                                                 300.00
9702                                                                                                  50.00
9703                                                                                                 150.00
9704                                                                                                 250.00
9705                                                                                                 150.00
9706                                                                                                   0.45
9707                                                                                                  50.00
9708                                                                                                   0.45
9709                                                                                                 200.00
9710                                                                                                  50.00
9711                                                                                                 375.00
9712                                                                                                   75.5
9713                                                                                                 300.00
9714                                                                                                 750.00
9715                                                                                                 300.00
9716                                                                                                 750.00
9717                                                                                                   75.5
9718                                                                                            unspecified
9719                                                                                                 750.00
9720                                                                                                  10.00
9721                                                                                                 100.00
9722                                                                                                   1.00
9723                                                                           based on weight (51-100 lbs)
9724                                                                                                 450.00
9725                                                                                                 750.00
9726                                                                                                1000.00
9727                                                                                                  16.00
9728                                                                                                1000.00
9729                                                                                                   75.5
9730                                                                                                   75.5
9731                                                                                                1000.00
9732                                                                                                   8.00
9733                                                                                                 500.00
9734                                                                                                   8.00
9735                                                                                                 400.00
9736                                                                                                  16.00
9737                                                                                                 100.00
9738                                                                                                 100.00
9739                                                                                                 500.00
9740                                                                                                  16.00
9741                                                                                                 500.00
9742                                                                                                 125.00
9743                                                                                                 100.00
9744                                                                                                   1.00
9745                                                                                                   2.50
9746                                                                                                 250.00
9747                                                                                                 250.00
9748                                                                                                  50.00
9749                                                                                                   1.00
9750                                                                                                   2.25
9751                                                                                                 500.00
9752                                                                                                 300.00
9753                                                                                                   4.00
9754                                                                                                   4.00
9755                                                                                                 823.50
9756                                                                                                 499.00
9757                                                                                                   4.00
9758                                                                                                  10.00
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9762                                                                                                   2.00
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9767                                                                                                  80.00
9768                                                                                                   1.00
9769                                                                                                   0.50
9770                                                                         based on weight (50.1-100 lbs)
9771                                                                                                   66.5
9772                                                                                                 100.00
9773                                                                                                 300.00
9774                                                                                                 250.00
9775                                                                                                  50.00
9776                                                                                                  50.00
9777                                                                                                 250.00
9778                                                                                                 272.00
9779                                                                                                 228.00
9780                                                                                                 228.00
9781                                                                                                   9.70
9782                                                                                                  75.00
9783                                                                                                 100.00
9784                                                                                                 150.00
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9786                                                                                                  20.00
9787                                                                                                 250.00
9788                                                                                                 500.00
9789                                                                                                   1.00
9790                                                                                                   4.00
9791                                                                           based on weight (50-100 lbs)
9792                                                                                                  50.00
9793                                                                                                  75.00
9794                                                                                                 750.00
9795                                                                                                 500.00
9796                                                                                                   8.00
9797                                                                                                   0.00
9798                                                                                                 315.00
9799                                                                                                 136.00
9800                                                                                  1 tablet/pill/capsule
9801                                                                                                 200.00
9802                                                                                                  75.00
9803                                                                                                 200.00
9804                                                                                                 136.00
9805                                                                                                  20.00
9806                                                                                                 500.00
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9810                                                                                                  75.00
9811                                                                                                 750.00
9812                                                                                                 500.00
9813                                                                                                 500.00
9814                                                                                                   1.00
9815                                                                                                  28 mg
9816                                                                                                  60.00
9817                                                                                                 500.00
9818                                                                                                   1.00
9819                                                                                                 272.00
9820                                                                                                 500.00
9821                                                                                         1 pack/package
9822                                                                                                 750.00
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9830                                                                                                  50.00
9831                                                                                                1000.00
9832                                                                                                  50.00
9833                                                                                            application
9834                                                                                                1000.00
9835                                                                                                   4.00
9836                                                                                                 200.00
9837                                                                                            unspecified
9838                                                                                                 200.00
9839                                                                                                   1.40
9840                                                                                            unspecified
9841                                                                                                   3.25
9842                                                                                                 300.00
9843                                                                                            unspecified
9844                                                                                                   3.25
9845                                                                                                 468.00
9846                                                                                                1000.00
9847                                                                                                 200.00
9848                                                                                                 500.00
9849                                                                                                 100.00
9850                                                                                                   3.25
9851                                                                                                 468.00
9852                                                                                                   1.00
9853                                                                                                  20.00
9854                                                                                                   1.00
9855                                                                                                  25.00
9856                                                                                                 250.00
9857                                                                                                  75.00
9858                                                                                                  75.00
9859                                                                                                  75.00
9860                                                                                                  75 mg
9861                                                                                                 750.00
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9864                                                                                                1000.00
9865                                                                                                  spray
9866                                                                                                  20.00
9867                                                                                                 300.00
9868                                                                                                  75.00
9869                                                                                                 200.00
9870                                                                                                 300.00
9871                                                                                                 300.00
9872                                                                                                   1.56
9873                                                                                            unspecified
9874                                                                                                   3.25
9875                                                                                                  75.00
9876                                                                                                 300.00
9877                                                                                            unspecified
9878                                                                                                 500.00
9879                                                                                                 300.00
9880                                                                                                   1.56
9881                                                                                                 300.00
9882                                                                                                 170.00
9883                                                                                                  50.00
9884                                                                                        0.25 inch strip
9885                                                                                                   1.00
9886                                                                                                   1.00
9887                                                                                                   2.00
9888                                                                                                   0.25
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9904                                                                                                   1.00
9905                                                                                                   9.00
9906                                                                                                   2.00
9907                                                                                            unspecified
9908                                                                                                 200.00
9909                                                                                                   1.00
9910                                                                                                 100.00
9911                                                                                                 500.00
9912                                                                                                 500.00
9913                                                                                                  60.00
9914                                                                                                  20.00
9915                                                                                                   1.00
9916                                                                                                   1.00
9917                                                                           based on weight (51-100 lbs)
9918                                                                                                     63
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9921                                                                                                 500.00
9922                                                                                                  10.00
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9925                                                                                                 250.00
9926                                                                                                   1.00
9927                                                                                                 150.00
9928                                                                                            unspecified
9929                                                                                                  20.00
9930                                                                                                  75.00
9931                                                                           based on weight (50-100 lbs)
9932                                                                                                 227.00
9933                                                                                                1400.00
9934                                                                                                  75.00
9935                                                                            based on weight (40-60 lbs)
9936                                                                                                  68.00
9937                                                                                                 500.00
9938                                                                                                 500.00
9939                                                                                                 500.00
9940                                                                                                  12.00
9941                                                                                                 500.00
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9946                                                                                                  10.00
9947                                                                                                 272.00
9948                                                                                                 136.00
9949                                                                                                 272.00
9950                                                                                                 136.00
9951                                                                                                 200.00
9952                                                                                                 100.00
9953                                                                                                  50.00
9954                                                                                                   1.00
9955                                                                                                 120.00
9956                                                                                                   1.00
9957                                                                                                  60.00
9958                                                                                                 500.00
9959                                                                                                 100.00
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9964                                                                                                   1.00
9965                                                                                                 272.00
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
9973                                                                                                  75.00
9974                                                                                                 272.00
9975                                                                                                  60.00
9976                                                                                                   1.00
9977                                                                                                 187.50
9978                                                                                                  32.50
9979                                                                                                 272.00
9980                                                                                                   6.40
9981                                                                                                  65.00
9982                                                                                                  16.00
9983                                                                                                   2.00
9984                                                                                                  30.00
9985                                                                                                 113.50
9986                                                                                                   1.00
9987                                                                                                   2.00
9988                                                                                                 272.00
9989                                                                                                 136.00
9990                                                                                                 450.00
9991                                                                                                   5.00
9992                                                                                                 272.00
9993                                                                                                 136.00
9994                                                                                                 500.00
9995                                                                                                  75.00
9996                                                                                                   1.00
9997                                                                                                 900.00
9998                                                                                                 272.00
9999                                                                                                 136.00
10000                                                                                                 50.00
10001                                                                                                272.00
10002                                                                                                136.00
10003                                                                                                 50.00
10004                                                                                                 60.00
10005                                                                                                 30.00
10006                                                                                                  3.00
10007                                                                                               1500.00
10008                                                                                                750.00
10009                                                                                                 50.00
10010                                                                                                272.00
10011                                                                                                136.00
10012                                                                                                750.00
10013                                                                                                170.25
10014                                                                                                  5.00
10015                                                                                                  1.00
10016                                                                                                 23.00
10017                                                                          based on weight (51-100 lbs)
10018                                                                                                500.00
10019                                                                                                 50.00
10020                                                                                                300.00
10021                                                                                                 37.50
10022                                                                                                375.00
10023                                                                                                  0.99
10024                                                                                                 23.00
10025                                                                                                 50.00
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10028                                                                                                 23.00
10029                                                                                                 20.00
10030                                                                                                  5.00
10031                                                                                                500.00
10032                                                                                                 20.00
10033                                                                                                 37.50
10034                                                                                                500.00
10035                                                                                                 20.00
10036                                                                                                  7.00
10037                                                                                           unspecified
10038                                                                                                 37.50
10039                                                                                                500.00
10040                                                                                                 20.00
10041                                                                                                 37.50
10042                                                                                           unspecified
10043                                                                                                 20.00
10044                                                                                                300.00
10045                                                                                                 37.50
10046                                                                                                150.00
10047                                                                                                 60.00
10048                                                                                                272.00
10049                                                                                                 10.00
10050                                                                                                400.00
10051                                                                                                 40.00
10052                                                                                                272.00
10053                                                                          based on weight (50-100 lbs)
10054                                                                                                 75.00
10055                                                                                                272.00
10056                                                                                               272 mcg
10057                                                                                                227 mg
10058                                                                                               1000.00
10059                                                                                                  2.80
10060                                                                                                  8.00
10061                                                                                           application
10062                                                                                                272.00
10063                                                                             based on weight (18+ lbs)
10064                                                                                                500.00
10065                                                                                                272.00
10066                                                                             based on weight (18+ lbs)
10067                                                                                                300.00
10068                                                                                                375.00
10069                                                                                                 50.00
10070                                                                                                100.00
10071                                                                                                 50.00
10072                                                                                                272.00
10073                                                                                                600.00
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10076                                                                                                 75.00
10077                                                                                                272.00
10078                                                                                                500.00
10079                                                                                                  4.00
10080                                                                                                  1.80
10081                                                                                                  6.00
10082                                                                                                272.00
10083                                                                                                272.00
10084                                                                                                 60.00
10085                                                                                                390.00
10086                                                                                                272.00
10087                                                                                                100.00
10088                                                                                                 10.00
10089                                                                                                600.00
10090                                                                                                  7.50
10091                                                                                                375.00
10092                                                                                           unspecified
10093                                                                                           unspecified
10094                                                                                                900.00
10095                                                                                                 10.00
10096                                                                                                272.00
10097                                                                                                227.00
10098                                                                                                  2.68
10099                                                                                                  8.00
10100                                                                                                  3.00
10101                                                                                                  3.00
10102                                                                                                 25.00
10103                                                                                                100.00
10104                                                                                                460.00
10105                                                                                                 11.50
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10110                                                                                                  2.68
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10114                                                                                                500.00
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10117                                                                                                200.00
10118                                                                                                  2.68
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10122                                                                                                170.00
10123                                                                                                500 mg
10124                                                                                                500.00
10125                                                                                                136.00
10126                                                                                                  1.00
10127                                                                                                100.00
10128                                                                                                200.00
10129                                                                                                136.00
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10135                                                                                                300.00
10136                                                                                                 75.00
10137                                                                                                200.00
10138                                                                                                100.00
10139                                                                                                 50.00
10140                                                                                                100.00
10141                                                                                                  1.25
10142                                                                                                  1.00
10143                                                                                                  2.00
10144                                                                                                  2.00
10145                                                                                                 75.00
10146                                                                                                 40.00
10147                                                                                                250.00
10148                                                                                                200.00
10149                                                                                              10 drops
10150                                                                                                  2.90
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10155                                                                                               2000.00
10156                                                                                                250.00
10157                                                                                                 37.50
10158                                                                                                500.00
10159                                                                                               1500.00
10160                                                                                                1.5 ml
10161                                                                                                 70.00
10162                                                                                                 30.00
10163                                                                                                  5.00
10164                                                                                                    75
10165                                                                                                750.00
10166                                                                                                375.00
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10171                                                                                                 80.00
10172                                                                                                  1.00
10173                                                                                                 75.00
10174                                                                                                 75.00
10175                                                                                                  1.00
10176                                                                                          small amount
10177                                                                                                375.00
10178                                                                                                100.00
10179                                                                                                 32.40
10180                                                                                                  1.50
10181                                                                                                  1.00
10182                                                                                                 81.00
10183                                                                                                  1.50
10184                                                                                                750.00
10185                                                                                                200.00
10186                                                                                                750.00
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10189                                                                                                200.00
10190                                                                                                500.00
10191                                                                                                500.00
10192                                                                                                  5.00
10193                                                                                                 50.00
10194                                                                                                500.00
10195                                                                                           unspecified
10196                                                                                                  5.00
10197                                                                                                  4.00
10198                                                                             based on weight (55+ lbs)
10199                                                                                                  0.50
10200                                                                              based on weight (60 lbs)
10201                                                                                               1000.00
10202                                                                                               1000.00
10203                                                                                                272.00
10204                                                                                                200.00
10205                                                                                                100.00
10206                                                                                                 50.00
10207                                                                                                 10.00
10208                                                                                                200.00
10209                                                                          based on weight (51-100 lbs)
10210                                                                                                 24.00
10211                                                                                                  1.50
10212                                                                                                400.00
10213                                                                                                200.00
10214                                                                                                 10.00
10215                                                                                                 50.00
10216                                                                                                 10.00
10217                                                                                                100.00
10218                                                                                                 25.00
10219                                                                          based on weight (51-100 lbs)
10220                                                                                                  3.50
10221                                                                                                 10.00
10222                                                                                                100.00
10223                                                                                                150.00
10224                                                                                                 40.00
10225                                                                                                 10.00
10226                                                                                                 16.00
10227                                                                                                  2.00
10228                                                                                                 75.00
10229                                                                                                  2.00
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10236                                                                                                  90.5
10237                                                                                                 40.00
10238                                                                                                100.00
10239                                                                                                 10.00
10240                                                                                                500.00
10241                                                                                                 50.00
10242                                                                                                272.00
10243                                                                                                  1.50
10244                                                                                                 50.00
10245                                                                          based on weight (50-100 lbs)
10246                                                                                                 80.00
10247                                                                                                  1.00
10248                                                                                                  3.00
10249                                                                                           unspecified
10250                                                                                                 50.00
10251                                                                                                 10.00
10252                                                                                                240.00
10253                                                                                                250.00
10254                                                                                                272.00
10255                                                                                                227.00
10256                                                                                                 12.50
10257                                                                                                113.50
10258                                                                                                 50.00
10259                                                                                                 75.00
10260                                                                                                collar
10261                                                                                                  1.00
10262                                                                                                 70.00
10263                                                                                                 10.00
10264                                                                                          small amount
10265                                                                                                  1.00
10266                                                                                                  3.00
10267                                                                                                 60.00
10268                                                                                                  1.00
10269                                                                                                272.00
10270                                                                                                  8.00
10271                                                                                                 23 mg
10272                                                                                                 68.00
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10277                                                                                                 10.00
10278                                                                                                  1.00
10279                                                                                                 23.00
10280                                                                                                 23.00
10281                                                                                                150.00
10282                                                                                                500.00
10283                                                                                                  1.00
10284                                                                                                 10.00
10285                                                                                                  1.00
10286                                                                                                  1.00
10287                                                                                                 23.00
10288                                                                                                 75.00
10289                                                                                                 15.00
10290                                                                                                900.00
10291                                                                                                100.00
10292                                                                                                 23 mg
10293                                                                                                  9.80
10294                                                                                                 23.00
10295                                                                                                 75.00
10296                                                                                               1000.00
10297                                                                                                  0.60
10298                                                                                                  0.70
10299                                                                                                 23.00
10300                                                                                                  1.00
10301                                                                                               23, 460
10302                                                                                                200.00
10303                                                                                                112.50
10304                                                                                                 23.00
10305                                                                                               1000.00
10306                                                                                                250.00
10307                                                                                                250.00
10308                                                                                                 75.00
10309                                                                                                100.00
10310                                                                                                240.00
10311                                                                                               1000.00
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10315                                                                                                200.00
10316                                                                                 1 tablet/pill/capsule
10317                                                                                                200.00
10318                                                                                                  2.00
10319                                                                                                  2.00
10320                                                                           1 tablet/pill/capsule - 375
10321                                                                                                200.00
10322                                                                                                240.00
10323                                                                                                240.00
10324                                                                          based on weight (85-130 lbs)
10325                                                                                                375.00
10326                                                                                                125.00
10327                                                                                                 16.00
10328                                                                                                 15.00
10329                                                                                                500.00
10330                                                                                                 60.00
10331                                                                                                 75.00
10332                                                                                                    90
10333                                                                                                 105.5
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10336                                                                                               1627.00
10337                                                                                                300.00
10338                                                                                                100.00
10339                                                                                                300.00
10340                                                                                                100.00
10341                                                                                                  1.00
10342                                                                                                  1.00
10343                                                                                                480 mg
10344                                                                                                300.00
10345                                                                                   tablet/pill/capsule
10346                                                                                               1620.00
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10350                                                                                                300.00
10351                                                                                               1620.00
10352                                                                                                  1.00
10353                                                                                               1620.00
10354                                                                                                 75.00
10355                                                                                               1620.00
10356                                                                                       based on weight
10357                                                                                                  1.00
10358                                                                                                  1.00
10359                                                                                                 40.00
10360                                                                                                 75.00
10361                                                                                                  1.00
10362                                                                                                 20.00
10363                                                                                                  1.00
10364                                                                                                 50.00
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10368                                                                                                227.00
10369                                                                                                 16.08
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10371                                                                                                 16.08
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10373                                                                                                  2.68
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10375                                                                                                  2.68
10376                                                                                                 75.00
10377                                                                                                300.00
10378                                                                                                 80.00
10379                                                                                               23, 228
10380                                                                                                 75.00
10381                                                                                                200.00
10382                                                                                                 75.00
10383                                                                                                 80.00
10384                                                                                               1000.00
10385                                                                                               1000.00
10386                                                                                               1000.00
10387                                                                                               1000.00
10388                                                                                                150.00
10389                                                                                               1000.00
10390                                                                                                150.00
10391                                                                                                500.00
10392                                                                                                 75.00
10393                                                                                                300.00
10394                                                                                                100.00
10395                                                                                                 60.00
10396                                                                                                 20.00
10397                                                                                                 50.00
10398                                                                                                 60.00
10399                                                                                                500.00
10400                                                                                           unspecified
10401                                                                                                  2.68
10402                                                                                                272.00
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10406                                                                                                272.00
10407                                                                                                136.00
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10411                                                                                                136.00
10412                                                                                               23, 228
10413                                                                                                136.00
10414                                                                                                  1.00
10415                                                                                                200.00
10416                                                                                                200.00
10417                                                                                                  1.75
10418                                                                                                 60.00
10419                                                                                                 20.00
10420                                                                                                500.00
10421                                                                                                310.00
10422                                                                                                682.00
10423                                                                                                 32.00
10424                                                                                                  1.75
10425                                                                                                272.00
10426                                                                                                  9.70
10427                                                                                               1620.00
10428                                                                                                 15.00
10429                                                                                                 drops
10430                                                                                                272.00
10431                                                                                                136.00
10432                                                                                                1 tube
10433                                                                                                272.00
10434                                                                                                272.00
10435                                                                                           unspecified
10436                                                                                           unspecified
10437                                                                                                325.00
10438                                                                                                100.00
10439                                                                                                200.00
10440                                                                                                  3.00
10441                                                                                           unspecified
10442                                                                                                100.00
10443                                                                                               1000.00
10444                                                                                                500.00
10445                                                                                           unspecified
10446                                                                                                100.00
10447                                                                                                 20.00
10448                                                                                               1000.00
10449                                                                                                100.00
10450                                                                                                 20.00
10451                                                                                                 19.60
10452                                                                                                  4.00
10453                                                                                                156.00
10454                                                                                                  4.00
10455                                                                                                170.00
10456                                                                                                500.00
10457                                                                                                500.00
10458                                                                                                500.00
10459                                                                                                500.00
10460                                                                                                136.00
10461                                                                                                100.00
10462                                                                                                100.00
10463                                                                                                  1.00
10464                                                                                                 25.00
10465                                                                                                 60.00
10466                                                                                                100.00
10467                                                                                                 10.00
10468                                                                                                 25.00
10469                                                                                                  8.00
10470                                                                                          small amount
10471                                                                                                  8.00
10472                                                                                                500.00
10473                                                                                                100.00
10474                                                                                                272.00
10475                                                                                               1620.00
10476                                                                                                  5.00
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10479                                                                                                136.00
10480                                                                                                272.00
10481                                                                                                272.00
10482                                                                                                136.00
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10484                                                                                                136.00
10485                                                                          based on weight (51-100 lbs)
10486                                                                                                136.00
10487                                                                          based on weight (51-100 lbs)
10488                                                                                                625.00
10489                                                                                                 75.00
10490                                                                                                113.50
10491                                                                                                  4.00
10492                                                                                                250.00
10493                                                                                                682.00
10494                                                                                                  1.00
10495                                                                                                100.00
10496                                                                                                100.00
10497                                                                                                227.00
10498                                                                                                227.00
10499                                                                                               23, 228
10500                                                                                                170.25
10501                                                                                                272.00
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10504                                                                                                136.00
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10507                                                                                                272.00
10508                                                                                                227.00
10509                                                                                                272.00
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10512                                                                                                272.00
10513                                                                                                500.00
10514                                                                                                272.00
10515                                                                                                272.00
10516                                                                                                272.00
10517                                                                                                  2.68
10518                                                                                                 50.00
10519                                                                                                  1.00
10520                                                                                                 16.00
10521                                                                                                  1.00
10522                                                                                                  1.00
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10527                                                                                                 16.00
10528                                                                                                200.00
10529                                                                                           unspecified
10530                                                                                                  8.80
10531                                                                                                810.00
10532                                                                                                  8.00
10533                                                                                                 70.00
10534                                                                                                 15.00
10535                                                                                                200.00
10536                                                                                                 15.00
10537                                                                                                300.00
10538                                                                                                  4.00
10539                                                                                                 23.00
10540                                                                                               1620.00
10541                                                                                                  8.00
10542                                                                                                200.00
10543                                                                                                 80.00
10544                                                                                                  3.00
10545                                                                                                 23.00
10546                                                                                               1000.00
10547                                                                                                300.00
10548                                                                                                300.00
10549                                                                                                  3.15
10550                                                                                                 70.00
10551                                                                                                 16.00
10552                                                                                                 75.00
10553                                                                                                  7.50
10554                                                                                                 80.00
10555                                                                                           unspecified
10556                                                                                                 16.00
10557                                                                                           unspecified
10558                                                                                                300.00
10559                                                                                                100.00
10560                                                                                                200.00
10561                                                                                                100.00
10562                                                                                                 80.00
10563                                                                                                200.00
10564                                                                                                750.00
10565                                                                                           unspecified
10566                                                                                                 15.00
10567                                                                                                200.00
10568                                                                                                100.00
10569                                                                                                100.00
10570                                                                                                300.00
10571                                                                                                150.00
10572                                                                                                150.00
10573                                                                                           unspecified
10574                                                                                                100.00
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10581                                                                                               1000.00
10582                                                                                                 16.00
10583                                                                          based on weight (60-120 lbs)
10584                                                                                                272.00
10585                                                                                                272.00
10586                                                                                                136.00
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10592                                                                                                 50.00
10593                                                                                                100.00
10594                                                                                                    38
10595                                                                                                 50.00
10596                                                                                                500.00
10597                                                                                                  1.00
10598                                                                                                  3.75
10599                                                                                                500.00
10600                                                                                                  3.75
10601                                                                                                136.00
10602                                                                                                  2.68
10603                                                                                                100.00
10604                                                                                                100.00
10605                                                                                                100.00
10606                                                                                                200.00
10607                                                                                                500.00
10608                                                                                                 12.00
10609                                                                                                  2.75
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10611                                                                                                100.00
10612                                                                                                100.00
10613                                                                                                150.00
10614                                                                                                 20.00
10615                                                                                                375.00
10616                                                                                                  1.00
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10620                                                                                                375.00
10621                                                                                                 20.00
10622                                                                                                200.00
10623                                                                                                100.00
10624                                                                                       based on weight
10625                                                                                                272.00
10626                                                                                                500.00
10627                                                                                                500.00
10628                                                                                       0.25 inch strip
10629                                                                                                272.00
10630                                                                                                136.00
10631                                                                                                272.00
10632                                                                                                 80.00
10633                                                                                                272.00
10634                                                                                                 80.00
10635                                                                                                 50.00
10636                                                                                                500.00
10637                                                                                                100.00
10638                                                                                                272.00
10639                                                                                                 80.00
10640                                                                                                100.00
10641                                                                                               1000.00
10642                                                                                           unspecified
10643                                                                                                100.00
10644                                                                                                100.00
10645                                                                                               1000.00
10646                                                                                                100.00
10647                                                                                                100.00
10648                                                                                                100.00
10649                                                                                                100.00
10650                                                                                                100 mg
10651                                                                                                 37.50
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10654                                                                                                  1.00
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10657                                                                                                100.00
10658                                                                                                 50 mg
10659                                                                                                 50.00
10660                                                                                                300.00
10661                                                                                                 23.00
10662                                                                                                500.00
10663                                                                                                500.00
10664                                                                                                 23.00
10665                                                                                               1000.00
10666                                                                                                500.00
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10670                                                                                                500.00
10671                                                                             based on weight (55+ lbs)
10672                                                                                                500.00
10673                                                                                                500.00
10674                                                                                                  1.00
10675                                                                                                100.00
10676                                                                                                100.00
10677                                                                                                272.00
10678                                                                                           unspecified
10679                                                                                                550.00
10680                                                                                                 50.00
10681                                                                                                 50.00
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10690                                                                                                750.00
10691                                                                                                500.00
10692                                                                                                  6.00
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10695                                                                                                 10.00
10696                                                                                           unspecified
10697                                                                                           unspecified
10698                                                                                                468.75
10699                                                                                                 20.00
10700                                                                                                272.00
10701                                                                                           unspecified
10702                                                                                                550.00
10703                                                                                                 50.00
10704                                                                                                 50.00
10705                                                                                                500.00
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10708                                                                                                100.00
10709                                                                                                200.00
10710                                                                                                 50.00
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10716                                                                                                 50.00
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10719                                                                                                 75.00
10720                                                                                               1000.00
10721                                                                                                  0.30
10722                                                                                                  1.00
10723                                                                                                  1.30
10724                                                                                                 14.00
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10728                                                                                                  0.90
10729                                                                                                  0.50
10730                                                                                                  0.02
10731                                                                                                  0.90
10732                                                                                                375.00
10733                                                                                                300.00
10734                                                                                                 50.00
10735                                                                                                  3.00
10736                                                                                                375.00
10737                                                                                                 50.00
10738                                                                                                 50.00
10739                                                                                                  0.50
10740                                                                                           unspecified
10741                                                                                                500.00
10742                                                                                                  0.50
10743                                                                                           unspecified
10744                                                                                                272.00
10745                                                                                                272.00
10746                                                                                                272.00
10747                                                                                                 37.00
10748                                                                                                272.00
10749                                                                                                375.00
10750                                                                                                  3.00
10751                                                                                           unspecified
10752                                                                                                  2.00
10753                                                                                                  1.00
10754                                                                                                  4.00
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10757                                                                                                272.00
10758                                                                                                  2.68
10759                                                                                                  8.04
10760                                                                                                272.00
10761                                                                                                  8.04
10762                                                                                                272.00
10763                                                                                                250.00
10764                                                                                                100.00
10765                                                                                                272.00
10766                                                                                               272 mcg
10767                                                                                                500.00
10768                                                                                                 12.00
10769                                                                                       based on weight
10770                                                                                                272.00
10771                                                                                                136.00
10772                                                                                                 80.00
10773                                                                                                272.00
10774                                                                                                 30.00
10775                                                                                                 60.00
10776                                                                                                 10.00
10777                                                                                                300.00
10778                                                                                                 60.00
10779                                                                                                500.00
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10784                                                                                                500.00
10785                                                                                                500.00
10786                                                                                                600.00
10787                                                                                                 50.00
10788                                                                                                  3.00
10789                                                                                                  8.00
10790                                                                                                  0.80
10791                                                                                                 60.00
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10793                                                                                                  8.10
10794                                                                          based on weight (51-100 lbs)
10795                                                                                                272.00
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10797                                                                                                400.00
10798                                                                                                400.00
10799                                                                                                  0.50
10800                                                                                                100.00
10801                                                                                                  9.10
10802                                                                                                100.00
10803                                                                                                  1.50
10804                                                                                                 80.00
10805                                                                                                  1.00
10806                                                                                                300.00
10807                                                                                                 80.00
10808                                                                                                 60.00
10809                                                                                                 75.00
10810                                                                                                200.00
10811                                                                                                300.00
10812                                                                                                 80.00
10813                                                                                                  2.50
10814                                                                                                 75.00
10815                                                                                                500.00
10816                                                                                                200.00
10817                                                                                                 60.00
10818                                                                                                 75.00
10819                                                                                                  1.00
10820                                                                                                  1.00
10821                                                                                                 75.00
10822                                                                                                500.00
10823                                                                                                500.00
10824                                                                                                  0.17
10825                                                                                           unspecified
10826                                                                                                499.00
10827                                                                                                collar
10828                                                                                                 16.00
10829                                                                                                500.00
10830                                                                          based on weight (51-100 lbs)
10831                                                                                                 75.00
10832                                                                                                 16.00
10833                                                                                                500.00
10834                                                                                                500.00
10835                                                                                                 16.00
10836                                                                                                 75.00
10837                                                                                           unspecified
10838                                                                                                 16.00
10839                                                                                                 75.00
10840                                                                                                272.00
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10844                                                                                                  2.00
10845                                                                                                200.00
10846                                                                             based on weight (60+ lbs)
10847                                                                                                  6.00
10848                                                                                                 16.00
10849                                                                          based on weight (51-100 lbs)
10850                                                                                                 105.5
10851                                                                                                  75.5
10852                                                                                                 50.00
10853                                                                                          small amount
10854                                                                                                272.00
10855                                                                                                  2.15
10856                                                                                               1250.00
10857                                                                                                272.00
10858                                                                                                  2.68
10859                                                                                                 25.00
10860                                                                                                  1.00
10861                                                                                                  1.00
10862                                                                                                 25.00
10863                                                                                            1-2 sprays
10864                                                                                                500.00
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10868                                                                                                 23.00
10869                                                                                                  2.68
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10872                                                                                                 25.00
10873                                                                                                 50.00
10874                                                                          based on weight (51-100 lbs)
10875                                                                                                  2.68
10876                                                                                                 25.00
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10879                                                                                               1000.00
10880                                                                                                950.00
10881                                                                                                250.00
10882                                                                                                 60.00
10883                                                                                                 55.00
10884                                                                                               1000.00
10885                                                                                                950.00
10886                                                                                                272.00
10887                                                                                                 50.00
10888                                                                                                272.00
10889                                                                                                  2.68
10890                                                                                                272.00
10891                                                                                                272.00
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10895                                                                                                100.00
10896                                                                                             6-8 drops
10897                                                                                                272.00
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10902                                                                                                 75.00
10903                                                                                                500.00
10904                                                                                                  8.00
10905                                                                                           application
10906                                                                                                500.00
10907                                                                                                 55.00
10908                                                                                                227.00
10909                                                                                               1000.00
10910                                                                                                  1.60
10911                                                                                                 20.00
10912                                                                                                227.00
10913                                                                                                272.00
10914                                                                                                 50.00
10915                                                                                                  0.20
10916                                                                                                  3.00
10917                                                                                                  1.00
10918                                                                                                250.00
10919                                                                                                  1.00
10920                                                                                                 25.00
10921                                                                                                  1.00
10922                                                                                                 62.50
10923                                                                                                175.00
10924                                                                                                 10.00
10925                                                                                                400 mg
10926                                                                                                  5 mg
10927                                                                                                  1.00
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10931                                                                                                272.00
10932                                                                                                    90
10933                                                                                                    75
10934                                                                                       based on weight
10935                                                                                                 96.00
10936                                                                                                  1.00
10937                                                                                                300.00
10938                                                                          based on weight (50-100 lbs)
10939                                                                                                  0.25
10940                                                                                                 50.00
10941                                                                                                272.00
10942                                                                                               1000.00
10943                                                                                                100.00
10944                                                                                               1000.00
10945                                                                                                  5.00
10946                                                                                                  1.00
10947                                                                                                272.00
10948                                                                                                  4.00
10949                                                                                                272.00
10950                                                                                                 110.5
10951                                                                                                 50.00
10952                                                                                                272.00
10953                                                                          based on weight (89-132 lbs)
10954                                                                                                272.00
10955                                                                                                136.00
10956                                                                                                272.00
10957                                                                                                136.00
10958                                                                                                272.00
10959                                                                          based on weight (89-132 lbs)
10960                                                                                                500.00
10961                                                                                                 15.00
10962                                                                                                 20.00
10963                                                                                                 60.00
10964                                                                                                100.00
10965                                                                                                200.00
10966                                                                                                    75
10967                                                                                                    66
10968                                                                                                  1.00
10969                                                                                                  1.00
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
10972                                                                                                500.00
10973                                                                                                  6.00
10974                                                                                                  1.00
10975                                                                                                 50.00
10976                                                                                                  0.13
10977                                                                                                  2.60
10978                                                                                                110.00
10979                                                                                                 35.00
10980                                                                                                  1.00
10981                                                                                                105.00
10982                                                                                                 50.00
10983                                                                                                600.00
10984                                                                                                  2.00
10985                                                                                                  1.00
10986                                                                                                 50.00
10987                                                                                                150.00
10988                                                                                                250.00
10989                                                                                                  1.00
10990                                                                                                  1.00
10991                                                                                                 50.00
10992                                                                                                 50.00
10993                                                                                                375.00
10994                                                                                                  1.00
10995                                                                                                  2.00
10996                                                                                                500.00
10997                                                                                                272.00
10998                                                                                                  1.00
10999                                                                                                375.00
11000                                                                                                 68.00
11001                                                                                                500.00
11002                                                                                                  1.00
11003                                                                          based on weight (60-121 lbs)
11004                                                                                                500.00
11005                                                                                                325.00
11006                                                                                                    75
11007                                                                                                    75
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11012                                                                                                200.00
11013                                                                                                 20.00
11014                                                                                                 10.00
11015                                                                                                200.00
11016                                                                                           unspecified
11017                                                                                                 20.00
11018                                                                                                300.00
11019                                                                                                100.00
11020                                                                                                 50.00
11021                                                                                           unspecified
11022                                                                                                240.00
11023                                                                                                 20.00
11024                                                                                                  5.90
11025                                                                                                205.00
11026                                                                                                 65.00
11027                                                                                                  0.18
11028                                                                                                 28.00
11029                                                                                                 29.50
11030                                                                                                272.00
11031                                                                                                228.00
11032                                                                                                  2.68
11033                                                                                                272.00
11034                                                                                                263.00
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11039                                                                                                  1.00
11040                                                                                                  1.00
11041                                                                                                  1.00
11042                                                                                                  1.00
11043                                                                                                375.00
11044                                                                                                 80.00
11045                                                                                                  4.00
11046                                                                                                 10.00
11047                                                                                                750.00
11048                                                                                                  4.00
11049                                                                                                750.00
11050                                                                                                272.00
11051                                                                                                  8.00
11052                                                                                                1 tube
11053                                                                                                204.00
11054                                                                                                 40.00
11055                                                                                                 10.00
11056                                                                                                 23.00
11057                                                                                                810.00
11058                                                                                                  7.00
11059                                                                                                 37.50
11060                                                                                                  1.00
11061                                                                                                  5.00
11062                                                                                                  1.00
11063                                                                                                100.00
11064                                                                                                  1.00
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11068                                                                                                  2.50
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11072                                                                                                 11.50
11073                                                                                               1000.00
11074                                                                                                 50.00
11075                                                                                                  5.00
11076                                                                                                200.00
11077                                                                                                 50.00
11078                                                                                                 50.00
11079                                                                                                 50.00
11080                                                                                                100.00
11081                                                                                                  8.00
11082                                                                                                 50.00
11083                                                                                                 50.00
11084                                                                                                300.00
11085                                                                                           unspecified
11086                                                                                                 35.00
11087                                                                                                 50.00
11088                                                                                           unspecified
11089                                                                                                  5.00
11090                                                                                                136.00
11091                                                                                                    38
11092                                                                                               1620.00
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11094                                                                                                500.00
11095                                                                                                272.00
11096                                                                                                272.00
11097                                                                                                 16.00
11098                                                                                                200.00
11099                                                                                                272.00
11100                                                                                                250.00
11101                                                                                                272.00
11102                                                                                                200.00
11103                                                                                                500.00
11104                                                                                                250.00
11105                                                                                                  5.00
11106                                                                                                 55.00
11107                                                                                                 16.00
11108                                                                                                100.00
11109                                                                                                  1.00
11110                                                                                                 50.00
11111                                                                                                 15.00
11112                                                                                                200 mg
11113                                                                                                 60.00
11114                                                                                                 60.00
11115                                                                                                200.00
11116                                                                                                300.00
11117                                                                                                 20.00
11118                                                                                                300.00
11119                                                                                                500.00
11120                                                                                                 30.00
11121                                                                                                 12.00
11122                                                                                                 16.90
11123                                                                                                  6.80
11124                                                                                               1000.00
11125                                                                                                272.00
11126                                                                                                 60.00
11127                                                                                                200.00
11128                                                                                                300.00
11129                                                                                                 20.00
11130                                                                                                  0.01
11131                                                                                                 50.00
11132                                                                                                 30.00
11133                                                                                                272.00
11134                                                                           based on weight (45-88 lbs)
11135                                                                                                 60.00
11136                                                                                                 16.90
11137                                                                                                 12.00
11138                                                                                                 30.00
11139                                                                                                500.00
11140                                                                                                250.00
11141                                                                                                 30.00
11142                                                                                           unspecified
11143                                                                                                 60.00
11144                                                                                           unspecified
11145                                                                                           unspecified
11146                                                                                                500.00
11147                                                                                                 50.00
11148                                                                                                 60.00
11149                                                                                                 50.00
11150                                                                                                100.00
11151                                                                                                600.00
11152                                                                                           unspecified
11153                                                                                           unspecified
11154                                                                                                 50.00
11155                                                                                           unspecified
11156                                                                                           unspecified
11157                                                                                                 68.00
11158                                                                                           unspecified
11159                                                                                           unspecified
11160                                                                                                 68.00
11161                                                                                                 20.00
11162                                                                                                 34.00
11163                                                                                           unspecified
11164                                                                                                 68.00
11165                                                                                           unspecified
11166                                                                                                    42
11167                                                                                                 34.00
11168                                                                                                272.00
11169                                                                                                 68.00
11170                                                                                                 50.00
11171                                                                                                 20.00
11172                                                                                                100.00
11173                                                                                                 10.00
11174                                                                                                375.00
11175                                                                                                 75.00
11176                                                                                                 50.00
11177                                                                                                 60.00
11178                                                                                                100.00
11179                                                                                                100.00
11180                                                                                                  1.20
11181                                                                                                 50.00
11182                                                                                           unspecified
11183                                                                                                  7.00
11184                                                                                                272.00
11185                                                                                                272.00
11186                                                                          based on weight (50-100 lbs)
11187                                                                                                 16.00
11188                                                                                                 25.00
11189                                                                                           unspecified
11190                                                                                                 16.00
11191                                                                                                 12.00
11192                                                                                                150.00
11193                                                                                                300.00
11194                                                                                                 16.00
11195                                                                                                100.00
11196                                                                                               1620.00
11197                                                                                               1620.00
11198                                                                                               1620.00
11199                                                                                                500.00
11200                                                                                                  0.25
11201                                                                                                300.00
11202                                                                                                 50.00
11203                                                                                                 70.00
11204                                                                                                125.00
11205                                                                                                 50.00
11206                                                                                                272.00
11207                                                                                                272.00
11208                                                                        based on weight (50.1-100 lbs)
11209                                                                                                250.00
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11215                                                                                                100.00
11216                                                                                                 75.00
11217                                                                                                250.00
11218                                                                                                200.00
11219                                                                                                  4.00
11220                                                                                                500.00
11221                                                                                                500.00
11222                                                                                                 60.00
11223                                                                                              12510.00
11224                                                                                           unspecified
11225                                                                                                500.00
11226                                                                                                 50.00
11227                                                                                                    64
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11230                                                                                                    66
11231                                                                                                 23.00
11232                                                                                               1000.00
11233                                                                                 1 tablet/pill/capsule
11234                                                                                                 16.00
11235                                                                                                 50.00
11236                                                                                                  8.00
11237                                                                                                 50.00
11238                                                                                                 50.00
11239                                                                                                 50.00
11240                                                                                                100.00
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11243                                                                                                 23.00
11244                                                                                               1620.00
11245                                                                                                 23.00
11246                                                                                                620.00
11247                                                                                                250.00
11248                                                                                                500.00
11249                                                                                                150.00
11250                                                                                                 50.00
11251                                                                                                  0.60
11252                                                                                                 10.00
11253                                                                                                  7.50
11254                                                                                                  1.00
11255                                                                                                483.00
11256                                                                                                  0.60
11257                                                                                                 15.00
11258                                                                                                  2.00
11259                                                                                                200.00
11260                                                                                                  1.00
11261                                                                                                  2.00
11262                                                                                                  7.50
11263                                                                                                  2.00
11264                                                                                                  1.00
11265                                                                                                200.00
11266                                                                                                  1.00
11267                                                                                                  1.00
11268                                                                                                  1.00
11269                                                                                                  0.60
11270                                                                                                 15.00
11271                                                                                                  1.00
11272                                                                                                  8.00
11273                                                                                                483.00
11274                                                                                                  0.35
11275                                                                                                 15.00
11276                                                                                         23 mg, 460 mg
11277                                                                                                  0.30
11278                                                                                                 10.00
11279                                                                                                  0.30
11280                                                                                                 10.00
11281                                                                                                 10.00
11282                                                                                                600.00
11283                                                                                                  0.30
11284                                                                                                300.00
11285                                                                                                 10.00
11286                                                                                                  0.20
11287                                                                                                600.00
11288                                                                                                300.00
11289                                                                                                300.00
11290                                                                                                300.00
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11297                                                                                                227.00
11298                                                                                                  1.00
11299                                                                                                  2.50
11300                                                                                                 50.00
11301                                                                                 1 tablet/pill/capsule
11302                                                                                                  1.00
11303                                                                                                  1.00
11304                                                                                                227.00
11305                                                                                 1 tablet/pill/capsule
11306                                                                                                200.00
11307                                                                          based on weight (50-100 lbs)
11308                                                                                                136.00
11309                                                                                                  1.00
11310                                                                                                  1.00
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11313                                                                                                150.00
11314                                                                                                227.00
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11319                                                                                                200.00
11320                                                                                                200.00
11321                                                                                                  1.00
11322                                                                                                227.00
11323                                                                                                  3.25
11324                                                                                                  1.10
11325                                                                                                  1.00
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11328                                                                                                  1.00
11329                                                                                                  1.00
11330                                                                                                  1.00
11331                                                                                               1620.00
11332                                                                                                150.00
11333                                                                                                 16.00
11334                                                                                                  2.00
11335                                                                                                250.00
11336                                                                                                  3.00
11337                                                                                                 25.00
11338                                                                                          small amount
11339                                                                                                200.00
11340                                                                                               10, 100
11341                                                                                                    75
11342                                                                                                  75.5
11343                                                                                                 25.00
11344                                                                                                  1.00
11345                                                                                                  1.00
11346                                                                                       moderate amount
11347                                                                                                272.00
11348                                                                                                136.00
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11355                                                                                                150.00
11356                                                                                           unspecified
11357                                                                                                375.00
11358                                                                                                300.00
11359                                                                                                 78.00
11360                                                                                           unspecified
11361                                                                                                  0.60
11362                                                                                                  1.00
11363                                                                                                    75
11364                                                                                                  0.60
11365                                                                                                500.00
11366                                                                                                    75
11367                                                                                                  0.60
11368                                                                          based on weight (50-100 lbs)
11369                                                                                                  0.30
11370                                                                                                  0.30
11371                                                                                                500.00
11372                                                                                                300.00
11373                                                                                                272.00
11374                                                                                                  0.30
11375                                                                                                  0.30
11376                                                                                                  0.15
11377                                                                                                  62.5
11378                                                                                                272.00
11379                                                                                                500.00
11380                                                                                                  0.15
11381                                                                                                  1.00
11382                                                                                                250.00
11383                                                                                                 50.00
11384                                                                                                 10.00
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11389                                                                                                  3.00
11390                                                                                                  1.00
11391                                                                                                250.00
11392                                                                                                125.00
11393                                                                                                350.00
11394                                                                                          small amount
11395                                                                                                100.00
11396                                                                                                 50.00
11397                                                                                                  1.00
11398                                                                                                 10.00
11399                                                                                                  0.01
11400                                                                                                 75.00
11401                                                                                                375.00
11402                                                                                                 75.00
11403                                                                                                 28.00
11404                                                                                                 10.00
11405                                                                                                 30.00
11406                                                                                                100.00
11407                                                                                                500.00
11408                                                                                                 60.00
11409                                                                                                  4.00
11410                                                                                                  2.00
11411                                                                                                500.00
11412                                                                                                 75.00
11413                                                                                                 60.00
11414                                                                                                 50.00
11415                                                                                           unspecified
11416                                                                                                500.00
11417                                                                                                 50.00
11418                                                                                                500.00
11419                                                                                                  1.00
11420                                                                                                200.00
11421                                                                                                  0.88
11422                                                                                                  1.00
11423                                                                                                  3.03
11424                                                                                                  7.58
11425                                                                                                    38
11426                                                                                                 23.00
11427                                                                                                460.00
11428                                                                                                  2.40
11429                                                                                                  0.50
11430                                                                                                 50.00
11431                                                                                                  2.50
11432                                                                                                120.00
11433                                                                                                100.00
11434                                                                                                150.00
11435                                                                                                100.00
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11438                                                                                               1000.00
11439                                                                                                  2.50
11440                                                                                                 23.00
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11442                                                                                                  8.00
11443                                                                                                 23.00
11444                                                                                                  1.00
11445                                                                                                 23.00
11446                                                                                                  4.70
11447                                                                                                150.00
11448                                                                                                150.00
11449                                                                                                  5.00
11450                                                                                                 50.00
11451                                                                                                  1.00
11452                                                                                                 23.00
11453                                                                                                  4.70
11454                                                                                                375.00
11455                                                                                                375.00
11456                                                                                                200.00
11457                                                                                                  3.75
11458                                                                                                323.00
11459                                                                                                  4.70
11460                                                                                                 23.00
11461                                                                                                    75
11462                                                                                                  4.70
11463                                                                                                 23.00
11464                                                                                           unspecified
11465                                                                                                 10.70
11466                                                                                                 10.70
11467                                                                                                  1.00
11468                                                                                                  2.80
11469                                                                                                  7.10
11470                                                                                           unspecified
11471                                                                                           unspecified
11472                                                                                                240.00
11473                                                                             based on weight (50+ lbs)
11474                                                                                                    42
11475                                                                                                272.00
11476                                                                                                 68.00
11477                                                                          based on weight (51-100 lbs)
11478                                                                                                  1.00
11479                                                                                                  1.00
11480                                                                                                  3.75
11481                                                                                                227.00
11482                                                                                            1.14 mg/lb
11483                                                                                                  3.75
11484                                                                                                 75.00
11485                                                                                                 75.00
11486                                                                                                500.00
11487                                                                                                 15.00
11488                                                                                                120.00
11489                                                                                                  3.00
11490                                                                                                100.00
11491                                                                                                300.00
11492                                                                                                  5.00
11493                                                                                           unspecified
11494                                                                                                 75.00
11495                                                                                                 20.00
11496                                                                                                  2.00
11497                                                                                                500.00
11498                                                                                                 75.00
11499                                                                                                 20.00
11500                                                                                                  4.00
11501                                                                                                 10.00
11502                                                                                                  1.00
11503                                                                                                120.00
11504                                                                                                  1.00
11505                                                                                                  1.00
11506                                                                                                  1.00
11507                                                                                                  1.00
11508                                                                                                 75.00
11509                                                                          based on weight (50-100 lbs)
11510                                                                                                272.00
11511                                                                                                125 mg
11512                                                                                                  8.00
11513                                                                                                  8.00
11514                                                                                                272.00
11515                                                                                                  0.50
11516                                                                                                 10.00
11517                                                                                                227.00
11518                                                                                                  0.50
11519                                                                                                  1.00
11520                                                                                                262.00
11521                                                                                                  0.50
11522                                                                                                262.00
11523                                                                                                  0.50
11524                                                                                                  0.50
11525                                                                                                  7.50
11526                                                                                                 20.00
11527                                                                                                  0.50
11528                                                                                                 20.00
11529                                                                                                  0.50
11530                                                                                                 25.00
11531                                                                                                 60.00
11532                                                                                                 60.00
11533                                                                                                460.00
11534                                                                                                 23.00
11535                                                                                                 37.50
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11539                                                                                                100.00
11540                                                                                                300.00
11541                                                                                                 30.00
11542                                                                                                425.00
11543                                                                                                250.00
11544                                                                                                250.00
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11548                                                                                                 20.00
11549                                                                                                  2.00
11550                                                                                                500.00
11551                                                                                           unspecified
11552                                                                                                300.00
11553                                                                                                 20.00
11554                                                                                                150.00
11555                                                                                                 10.00
11556                                                                                                 10.00
11557                                                                                                  5.00
11558                                                                                                  1.00
11559                                                                                                272.00
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11569                                                                                                170.00
11570                                                                                           unspecified
11571                                                                                                  1.90
11572                                                                                                500.00
11573                                                                                                300.00
11574                                                                                                 60.00
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11579                                                                                                750.00
11580                                                                                                500.00
11581                                                                                                750.00
11582                                                                                                 60.00
11583                                                                                                  1.00
11584                                                                                                  1.00
11585                                                                                                  5.00
11586                                                                                                  1.00
11587                                                                                                240.00
11588                                                                                                  8.00
11589                                                                             based on weight (50+ lbs)
11590                                                                                                    42
11591                                                                                                272.00
11592                                                                                                136.00
11593                                                                          based on weight (51-100 lbs)
11594                                                                                                  1.00
11595                                                                                                  1.00
11596                                                                          based on weight (51-100 lbs)
11597                                                                                                272.00
11598                                                                                                  9.80
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11601                                                                                                136.00
11602                                                                                                272.00
11603                                                                                                 50.00
11604                                                                                                272.00
11605                                                                                                 16.00
11606                                                                                                 16.00
11607                                                                                                300.00
11608                                                                                                  2.00
11609                                                                                                  1.00
11610                                                                                                  2.90
11611                                                                                                 75.00
11612                                                                                                  2.80
11613                                                                                                 30.00
11614                                                                                                200.00
11615                                                                                                200.00
11616                                                                                                 16.00
11617                                                                                                 75.00
11618                                                                                                300.00
11619                                                                                                 75.00
11620                                                                                           unspecified
11621                                                                                           unspecified
11622                                                                                                300.00
11623                                                                                                 16.00
11624                                                                                                 75.00
11625                                                                                                300.00
11626                                                                                                 40.00
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11629                                                                                                  4.00
11630                                                                                 1 tablet/pill/capsule
11631                                                                                                  1.00
11632                                                                                                  1.00
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11635                                                                                                  52.5
11636                                                                                                100 mg
11637                                                                                           unspecified
11638                                                                                                 80.00
11639                                                                                                272.00
11640                                                                                                204.00
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11642                                                                                                 50.00
11643                                                                                               3000.00
11644                                                                                                500.00
11645                                                                                                250.00
11646                                                                                                  1.00
11647                                                                                                 50.00
11648                                                                                                100.00
11649                                                                                                  1.00
11650                                                                                                  1.00
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11657                                                                                                 25.00
11658                                                                                                  0.50
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11663                                                                                                    75
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11668                                                                                                  6.25
11669                                                                                                0.5 mg
11670                                                                                               1125.00
11671                                                                                           application
11672                                                                                                200.00
11673                                                                                                 spray
11674                                                                                                500.00
11675                                                                                                500.00
11676                                                                                                  1.80
11677                                                                                                  0.80
11678                                                                          based on weight (51-100 lbs)
11679                                                                                                  0.80
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11682                                                                                                  1.80
11683                                                                          based on weight (51-100 lbs)
11684                                                                                                    66
11685                                                                                                170.00
11686                                                                                                  0.80
11687                                                                                                 80.00
11688                                                                                                  0.60
11689                                                                                                  1.80
11690                                                                                                500.00
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11694                                                                                                810.00
11695                                                                                          small amount
11696                                                                                                 23.00
11697                                                                                                 23.00
11698                                                                                                  66.5
11699                                                                                                  1.00
11700                                                                                                  1.00
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11703                                                                                                272.00
11704                                                                                               1000.00
11705                                                                                                 16.00
11706                                                                                                 20.00
11707                                                                                                 75.00
11708                                                                                                272.00
11709                                                                                           unspecified
11710                                                                                           unspecified
11711                                                                                                  2.68
11712                                                                                                500.00
11713                                                                                                  1.00
11714                                                                                                  1.00
11715                                                                                                  1.00
11716                                                                                                150.00
11717                                                                                                  5.00
11718                                                                                                 23.00
11719                                                                                           as directed
11720                                                                                                 75.00
11721                                                                                                400.00
11722                                                                                           unspecified
11723                                                                                           unspecified
11724                                                                                                  3.00
11725                                                                                                   125
11726                                                                                                150.00
11727                                                                                                  1.00
11728                                                                                                  1.00
11729                                                                                                  1.00
11730                                                                                                300.00
11731                                                                                                 16.00
11732                                                                                                150.00
11733                                                                                                 10.00
11734                                                                                               1000.00
11735                                                                          based on weight (51-100 lbs)
11736                                                                                                  1.00
11737                                                                                                500.00
11738                                                                                                  2.00
11739                                                                                                600.00
11740                                                                                                100.00
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11743                                                                                                500.00
11744                                                                                                  1.00
11745                                                                                                 20.00
11746                                                                                                425.00
11747                                                                                                125.00
11748                                                                                                375.00
11749                                                                                                 68.00
11750                                                                                               1000.00
11751                                                                                                115.00
11752                                                                                                500.00
11753                                                                                                 25.00
11754                                                                                                  5.00
11755                                                                                                 50.00
11756                                                                                                  0.54
11757                                                                                                115.00
11758                                                                                                 50.00
11759                                                                                                500.00
11760                                                                                                  2.30
11761                                                                                                250.00
11762                                                                                                375.00
11763                                                                                                 25.00
11764                                                                                                500.00
11765                                                                                                240.00
11766                                                                                                 60.00
11767                                                                                                250.00
11768                                                                                                  2.00
11769                                                                                                  2.60
11770                                                                                                540.00
11771                                                                                                  1.00
11772                                                                                                115.00
11773                                                                                                 50.00
11774                                                                                                500.00
11775                                                                                                 25.00
11776                                                                                                  1.00
11777                                                                                                500.00
11778                                                                                                500.00
11779                                                                                                  7.50
11780                                                                                                300.00
11781                                                                                                227.00
11782                                                                                                200.00
11783                                                                                                 10.00
11784                                                                                                300.00
11785                                                                                                 50.00
11786                                                                                                  8.00
11787                                                                                                250.00
11788                                                                                                100.00
11789                                                                                                 50.00
11790                                                                                                 15 gm
11791                                                                                                100.00
11792                                                                                                227.00
11793                                                                                                 68.00
11794                                                                                                  5.00
11795                                                                                                272.00
11796                                                                                                136.00
11797                                                                                                272.00
11798                                                                                                136.00
11799                                                                                                200.00
11800                                                                                                227.00
11801                                                                                                136.00
11802                                                                                               23, 460
11803                                                                                                 34.00
11804                                                                                                  5.00
11805                                                                                                 50.00
11806                                                                                           unspecified
11807                                                                                                 50.00
11808                                                                                                  1.00
11809                                                                                                500.00
11810                                                                                                 75.00
11811                                                                                                  0.25
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11815                                                                                                    75
11816                                                                                                    75
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11818                                                                                                500.00
11819                                                                                                 12.00
11820                                                                                                120.00
11821                                                                                                  3.00
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11826                                                                                                   125
11827                                                                                                  3.75
11828                                                                                                500.00
11829                                                                                                120.00
11830                                                                                                900.00
11831                                                                                                136.00
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11834                                                                                                 30.00
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11838                                                                                                 30.00
11839                                                                                                250.00
11840                                                                                               20, 200
11841                                                                                                120.00
11842                                                                                              10325.00
11843                                                                                                250.00
11844                                                                                               20, 200
11845                                                                                                120.00
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11849                                                                                                136.00
11850                                                                                            1200, 1500
11851                                                                                                  8.00
11852                                                                                                250.00
11853                                                                                                 32.00
11854                                                                                                 32.00
11855                                                                                                300.00
11856                                                                                               8 drops
11857                                                                                                 32.00
11858                                                                                                 32.00
11859                                                                                                300.00
11860                                                                                                250.00
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11863                                                                                                136.00
11864                                                                                               1500.00
11865                                                                                               1200.00
11866                                                                                                100.00
11867                                                                                                 10.00
11868                                                                                                 24.00
11869                                                                                               1500.00
11870                                                                                                 24.00
11871                                                                                                100.00
11872                                                                                                 10.00
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11884                                                                                                100.00
11885                                                                                                  1.00
11886                                                                                                  1.00
11887                                                                                                  1.00
11888                                                                                                100.00
11889                                                                          based on weight (51-100 lbs)
11890                                                                                                500.00
11891                                                                                                272.00
11892                                                                                                  1.00
11893                                                                                                  1.00
11894                                                                                                  1.00
11895                                                                                                272.00
11896                                                                                                 10.00
11897                                                                                                  0.80
11898                                                                          based on weight (51-100 lbs)
11899                                                                                                750.00
11900                                                                                                 60.00
11901                                                                                                272.00
11902                                                                                                750.00
11903                                                                                                 60.00
11904                                                                                                272.00
11905                                                                                                  4.00
11906                                                                                                150.00
11907                                                                                                  5.00
11908                                                                                                 75.00
11909                                                                                                 10.00
11910                                                                                                450.00
11911                                                                                          small amount
11912                                                                                                272.00
11913                                                                                               1000.00
11914                                                                                                 16.00
11915                                                                                                500.00
11916                                                                                                 75.00
11917                                                                                                500.00
11918                                                                                                250.00
11919                                                                                           unspecified
11920                                                                                                 75.00
11921                                                                                                200.00
11922                                                                                                 75.00
11923                                                                                                300.00
11924                                                                                                500.00
11925                                                                                                 75.00
11926                                                                                               272 mcg
11927                                                                                                272.00
11928                                                                                                272.00
11929                                                                                                  1.00
11930                                                                                         5 billion cfu
11931                                                                                                250.00
11932                                                                                                500.00
11933                                                                                                  3.00
11934                                                                                                204.00
11935                                                                                                240.00
11936                                                                                               1000.00
11937                                                                                                120.00
11938                                                                                               1000.00
11939                                                                                                250.00
11940                                                                                                500.00
11941                                                                                                100.00
11942                                                                                               1000.00
11943                                                                                                 75.00
11944                                                                                               1000.00
11945                                                                                               1800.00
11946                                                                                                 75.00
11947                                                                                                252.00
11948                                                                                                560.00
11949                                                                                                270.00
11950                                                                                                  2.50
11951                                                                                                250.00
11952                                                                                                300.00
11953                                                                                                  2.60
11954                                                                                                562.50
11955                                                                                                204.00
11956                                                                                                 75.00
11957                                                                                                250.00
11958                                                                                                 13.50
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11961                                                                                                 23.00
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11963                                                                                                 50.00
11964                                                                          based on weight (51-100 lbs)
11965                                                                                                100.00
11966                                                                                                  1.00
11967                                                                                                  1.00
11968                                                                                                  1.00
11969                                                                                                  1.00
11970                                                                                                  1.00
11971                                                                                                  2.68
11972                                                                                                 20.00
11973                                                                                                750.00
11974                                                                                                 15.00
11975                                                                                                204.00
11976                                                                                                  7.50
11977                                                                                                 20.00
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11981                                                                                                750.00
11982                                                                                                 75.00
11983                                                                          based on weight (89-132 lbs)
11984                                                                                                300.00
11985                                                                                                 24.00
11986                                                                                                  8.00
11987                                                                                                  5.00
11988                                                                                                  1.00
11989                                                                                                 16.00
11990                                                                                                  1.00
11991                                                                                                  1.00
11992                                                                                                  2.00
11993                                                                                           unspecified
11994                                                                                                  1.00
11995                                                                                                  1.00
11996                                                                                                 24.00
11997                                                                                                  1.00
11998                                                                                                  0.50
11999                                                                                                  0.30
12000                                                                                                 24.00
12001                                                                                                 50.00
12002                                                                                                500.00
12003                                                                                                 30.00
12004                                                                                                 25.00
12005                                                                                                  1.00
12006                                                                                                 50.00
12007                                                                                                 50.00
12008                                                                                                  1.00
12009                                                                                           unspecified
12010                                                                                           unspecified
12011                                                                                                  1.00
12012                                                                                                 75.00
12013                                                                                                500.00
12014                                                                          based on weight (51-100 lbs)
12015                                                                                                 55.00
12016                                                                                               1000.00
12017                                                                                                 20.00
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12021                                                                                                272.00
12022                                                                                               1000.00
12023                                                                                               5 mg/kg
12024                                                                                                272.00
12025                                                                                                    66
12026                                                                                                 15.00
12027                                                                                                272.00
12028                                                                                                227.00
12029                                                                                                500.00
12030                                                                                                113.50
12031                                                                                                272.00
12032                                                                                                272.00
12033                                                                                               1000.00
12034                                                                                                500.00
12035                                                                                                 75.00
12036                                                                                                272.00
12037                                                                                               1400.00
12038                                                                                                272.00
12039                                                                                                 16.00
12040                                                                                                 16.00
12041                                                                                                 80.00
12042                                                                                                 37.50
12043                                                                                           unspecified
12044                                                                                                 20.00
12045                                                                                                500.00
12046                                                                                                 25.00
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12049                                                                                                272.00
12050                                                                                                500.00
12051                                                                                        1 pack/package
12052                                                                                                 68.00
12053                                                                                                500.00
12054                                                                                           unspecified
12055                                                                                                  0.60
12056                                                                                                600.00
12057                                                                                                  6.00
12058                                                                                                272.00
12059                                                                                                136.00
12060                                                                                                  0.60
12061                                                                                                272.00
12062                                                                                                 68.00
12063                                                                                                  0.60
12064                                                                                                 68.00
12065                                                                                                272.00
12066                                                                                                  0.60
12067                                                                                                100.00
12068                                                                                                  6.00
12069                                                                                                 68.00
12070                                                                                                272.00
12071                                                                                                  0.60
12072                                                                                                100.00
12073                                                                                                120.00
12074                                                                                                  0.60
12075                                                                                                100.00
12076                                                                                                  0.60
12077                                                                                                500.00
12078                                                                                                  1.20
12079                                                                                                100.00
12080                                                                                                200.00
12081                                                                                                  0.50
12082                                                                                                  1.20
12083                                                                                                  1.00
12084                                                                                                 59.00
12085                                                                                                250.00
12086                                                                                                  0.38
12087                                                                                                  1.20
12088                                                                                                 50.00
12089                                                                                                500.00
12090                                                                          based on weight (51-100 lbs)
12091                                                                                                500.00
12092                                                                                                  5.00
12093                                                                                                  1.00
12094                                                                                                  1.00
12095                                                                                                100.00
12096                                                                                               1000.00
12097                                                                                                100.00
12098                                                                                                  1.00
12099                                                                                                  1.00
12100                                                                                                  1.00
12101                                                                                                  1.00
12102                                                                                                  1.50
12103                                                                                                  1.00
12104                                                                                                  1.00
12105                                                                                                  1.00
12106                                                                                                250.00
12107                                                                                                 51.00
12108                                                                                       moderate amount
12109                                                                                                 23.00
12110                                                                                                136.00
12111                                                                                           unspecified
12112                                                                                                  1.00
12113                                                                                                  1.00
12114                                                                                                100.00
12115                                                                                                300.00
12116                                                                                                  1.00
12117                                                                                                  8.00
12118                                                                                                 50.00
12119                                                                                                150.00
12120                                                                                           unspecified
12121                                                                                                150.00
12122                                                                                                150.00
12123                                                                                                150.00
12124                                                                                                  4.00
12125                                                                                                  1.60
12126                                                                                                 50.00
12127                                                                                                272.00
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12131                                                                                                 23.00
12132                                                                                                  1.00
12133                                                                                                200.00
12134                                                                                               1000.00
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12137                                                                                                272.00
12138                                                                                                227.00
12139                                                                                                272.00
12140                                                                                                136.00
12141                                                                                                227.00
12142                                                                                                  2.00
12143                                                                                                  1.00
12144                                                                                                  1.00
12145                                                                                                136.00
12146                                                                                                272.00
12147                                                                                                227.00
12148                                                                                                272.00
12149                                                                                                136.00
12150                                                                                                227.00
12151                                                                                                272.00
12152                                                                                                136.00
12153                                                                                                227.00
12154                                                                                           unspecified
12155                                                                                           unspecified
12156                                                                                                272.00
12157                                                                                                136.00
12158                                                                                                272.00
12159                                                                                           unspecified
12160                                                                                           unspecified
12161                                                                                                272.00
12162                                                                                                136.00
12163                                                                                                227.00
12164                                                                                           unspecified
12165                                                                                                500.00
12166                                                                                                136.00
12167                                                                                                  1.00
12168                                                                                                  1.50
12169                                                                                                227.00
12170                                                                                               1000.00
12171                                                                                                469.00
12172                                                                                                300.00
12173                                                                                           unspecified
12174                                                                                                  1.50
12175                                                                                                227.00
12176                                                                                                 60.00
12177                                                                                                500.00
12178                                                                                                 60.00
12179                                                                                                600.00
12180                                                                                                  2.00
12181                                                                                                200.00
12182                                                                                                  8.00
12183                                                                                                200.00
12184                                                                                                  0.25
12185                                                                                                  8.00
12186                                                                                                272.00
12187                                                                                                272.00
12188                                                                                                272.00
12189                                                                                                200.00
12190                                                                                                1 pump
12191                                                                                                 15.00
12192                                                                                                272.00
12193                                                                                                  2.68
12194                                                                                                272 ug
12195                                                                                                  2.68
12196                                                                                                272.00
12197                                                                                                 20.00
12198                                                                                                  2.50
12199                                                                                                  1.00
12200                                                                                                  3.00
12201                                                                                                 25.00
12202                                                                                                750.00
12203                                                                                                500.00
12204                                                                                                500.00
12205                                                                                                200.00
12206                                                                                                  5.00
12207                                                                                                 20.00
12208                                                                                                500.00
12209                                                                                                  7.00
12210                                                                                                  6.00
12211                                                                                                272.00
12212                                                                                                200.00
12213                                                                                               272 mcg
12214                                                                                                272.00
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12216                                                                                                200.00
12217                                                                                                 16.00
12218                                                                                                 60.00
12219                                                                                                 20.00
12220                                                                                                272.00
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12224                                                                                                 23.00
12225                                                                                                 23.00
12226                                                                                                  1.00
12227                                                                                                  1.00
12228                                                                                                500.00
12229                                                                                                  1.00
12230                                                                                                 23.00
12231                                                                                                228.00
12232                                                                                                  2.00
12233                                                                                                500.00
12234                                                                                                 60.00
12235                                                                                                 15.00
12236                                                                                                 30.00
12237                                                                                                150.00
12238                                                                                                 75.00
12239                                                                                                150.00
12240                                                                                                 75.00
12241                                                                                                 60.00
12242                                                                                                 60.00
12243                                                                                                500.00
12244                                                                                                560.00
12245                                                                                                  1.00
12246                                                                                                  1.00
12247                                                                                                  1.00
12248                                                                                                  1.00
12249                                                                                                227.00
12250                                                                                               1400.00
12251                                                                                                272.00
12252                                                                                               1400.00
12253                                                                                                272.00
12254                                                                                               1400.00
12255                                                                                                  1.00
12256                                                                                                250.00
12257                                                                                                  3.00
12258                                                                                                500.00
12259                                                                                                 80.00
12260                                                                                                  4.00
12261                                                                        based on weight (60.1-120 lbs)
12262                                                                                                 25.00
12263                                                                                                200.00
12264                                                                                               1000.00
12265                                                                                                    75
12266                                                                                                  66.5
12267                                                                                                    75
12268                                                                                                  66.5
12269                                                                                                 40.00
12270                                                                                                100.00
12271                                                                           based on weight (45-88 lbs)
12272                                                                                                    75
12273                                                                                          small amount
12274                                                                                                200.00
12275                                                                                                    66
12276                                                                                                    75
12277                                                                                                 20.00
12278                                                                                                  1.00
12279                                                                                          small amount
12280                                                                                                200.00
12281                                                                                                  5.00
12282                                                                                                  1.00
12283                                                                                               23, 228
12284                                                                                               1000.00
12285                                                                                                 23.00
12286                                                                                               1000.00
12287                                                                                                750.00
12288                                                                                                170.00
12289                                                                                                  1.00
12290                                                                                                100.00
12291                                                                                                300.00
12292                                                                                               1000.00
12293                                                                                                150.00
12294                                                                                                 23.00
12295                                                                                                900.00
12296                                                                                                900.00
12297                                                                                                  3.00
12298                                                                                                 37.50
12299                                                                                           unspecified
12300                                                                                                 16.00
12301                                                                                                300.00
12302                                                                                                 75.00
12303                                                                                                 60.00
12304                                                                                                 15.00
12305                                                                                               1000.00
12306                                                                                           unspecified
12307                                                                                                300.00
12308                                                                                                 20.00
12309                                                                                           unspecified
12310                                                                                                 75.00
12311                                                                                                  8.00
12312                                                                                                 27.00
12313                                                                                               23, 460
12314                                                                                              27, 1620
12315                                                                                               1200.00
12316                                                                                               1500.00
12317                                                                                                  1.00
12318                                                                                                200.00
12319                                                                                                  1.00
12320                                                                                                250.00
12321                                                                                                  3.00
12322                                                                                            1200, 1500
12323                                                                                               1200.00
12324                                                                          based on weight (60-120 lbs)
12325                                                                                                500.00
12326                                                                                                  2.00
12327                                                                                                  1.50
12328                                                                                                  3.80
12329                                                                                                  2.00
12330                                                                                                  2.00
12331                                                                                               1600.00
12332                                                                                                480.00
12333                                                                                                 40.00
12334                                                                                             injection
12335                                                                                                225.00
12336                                                                                             injection
12337                                                                                           unspecified
12338                                                                                              10000.00
12339                                                                                                 50.00
12340                                                                                                500.00
12341                                                                                                500.00
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12344                                                                                               1620.00
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12347                                                                                                 52.00
12348                                                                                               1620.00
12349                                                                                       2 bottles/vials
12350                                                                                               1200.00
12351                                                                                             150, 1200
12352                                                                                                500.00
12353                                                                                           unspecified
12354                                                                                                 20.00
12355                                                                                                  2.00
12356                                                                                                 10.00
12357                                                                                                  1.00
12358                                                                                                  1.00
12359                                                                                               1200.00
12360                                                                                               1500.00
12361                                                                                                  1.00
12362                                                                                                  3.00
12363                                                                                                  2.00
12364                                                                                            1200, 1500
12365                                                                                               1200.00
12366                                                                          based on weight (60-120 lbs)
12367                                                                                                 75.00
12368                                                                                                720.00
12369                                                                                               1600.00
12370                                                                                                500.00
12371                                                                                               1500.00
12372                                                                                               1000.00
12373                                                                                                    90
12374                                                                                               1620.00
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12377                                                                                               1620.00
12378                                                                                               1200.00
12379                                                                                             200, 1500
12380                                                                                                300.00
12381                                                                                                100.00
12382                                                                                                 16.00
12383                                                                                                100.00
12384                                                                                                272.00
12385                                                                                                272.00
12386                                                                                                1.4 ml
12387                                                                                                272.00
12388                                                                                                272.00
12389                                                                                                500.00
12390                                                                                                 37.50
12391                                                                                                625.00
12392                                                                                                100.00
12393                                                                                                 75.00
12394                                                                                           unspecified
12395                                                                                                272.00
12396                                                                                                227.00
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12399                                                                                                  0.10
12400                                                                                                 14.00
12401                                                                                                  66.5
12402                                                                          based on weight (51-100 lbs)
12403                                                                                                 14.00
12404                                                                                                500.00
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12407                                                                                                  1.00
12408                                                                                                 16.00
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12413                                                                                                 16.00
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12416                                                                                                  1.00
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12419                                                                                                 50.00
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12424                                                                                                875.00
12425                                                                                                 16.00
12426                                                                                                 50.00
12427                                                                                           unspecified
12428                                                                                                250.00
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12435                                                                                                272.00
12436                                                                                                 80.00
12437                                                                                                200.00
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12440                                                                                                 60.00
12441                                                                                                  1.60
12442                                                                                                  1.00
12443                                                                                                500.00
12444                                                                                                300.00
12445                                                                                                100.00
12446                                                                                                  8.00
12447                                                                                                272.00
12448                                                                                                  1.40
12449                                                                                                114.00
12450                                                                                                 60.00
12451                                                                                                  1.00
12452                                                                                                 50.00
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12458                                                                                               3000.00
12459                                                                                                  1.00
12460                                                                                                150.00
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12464                                                                                                 75.00
12465                                                                                                  1.00
12466                                                                                 1 tablet/pill/capsule
12467                                                                                                500.00
12468                                                                                                240.00
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12478                                                                                                 16.00
12479                                                                                                 10.00
12480                                                                                                  3.00
12481                                                                                           unspecified
12482                                                                                                 16.00
12483                                                                                                 16.00
12484                                                                                                 10.00
12485                                                                                           unspecified
12486                                                                                                 16.00
12487                                                                                           unspecified
12488                                                                                                 16.00
12489                                                                                                500.00
12490                                                                                                272.00
12491                                                                                                250.00
12492                                                                                                250.00
12493                                                                                                  5.00
12494                                                                                                 68.00
12495                                                                          based on weight (51-100 lbs)
12496                                                                                                    42
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12499                                                                                                272.00
12500                                                                          based on weight (50-100 lbs)
12501                                                                                                200.00
12502                                                                                                 16.00
12503                                                                                                100.00
12504                                                                                                 75.00
12505                                                                                                200.00
12506                                                                                           unspecified
12507                                                                                                 60.00
12508                                                                                                  5.00
12509                                                                                                 75.00
12510                                                                                                 25.00
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12515                                                                                                    65
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12518                                                                                                100.00
12519                                                                                                 25.00
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12522                                                                                                900.00
12523                                                                          based on weight (51-100 lbs)
12524                                                                                                  1.00
12525                                                                                                  1.00
12526                                                                                                 10.00
12527                                                                                                  1.00
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12531                                                                                                100.00
12532                                                                                                 50.00
12533                                                                                                100.00
12534                                                                                                400.00
12535                                                                                           unspecified
12536                                                                                          small amount
12537                                                                                                200.00
12538                                                                                                100.00
12539                                                                                                 25.00
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12544                                                                                                  1.00
12545                                                                                                  1.00
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12555                                                                                                272.00
12556                                                                                                  8.80
12557                                                                                                 10.00
12558                                                                                                200.00
12559                                                                                                  0.40
12560                                                                                                200.00
12561                                                                                                 20.00
12562                                                                                                  1.00
12563                                                                                                 50.00
12564                                                                                                250.00
12565                                                                                                  0.40
12566                                                                                                100.00
12567                                                                                               8 drops
12568                                                                                                 25.00
12569                                                                                              27, 1610
12570                                                                                                  0.16
12571                                                                                            7-10 drops
12572                                                                                                 20.00
12573                                                                                               1620.00
12574                                                                                                 27.00
12575                                                                                                272.00
12576                                                                                                136.00
12577                                                                                                  2.00
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12579                                                                                                136.00
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12581                                                                                                200.00
12582                                                                                                 16.00
12583                                                                                                150.00
12584                                                                                                136.00
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12586                                                                                                136.00
12587                                                                                                500.00
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12590                                                                                                136.00
12591                                                                                                200.00
12592                                                                                                100.00
12593                                                                                                750.00
12594                                                                                                 90.00
12595                                                                                           unspecified
12596                                                                                           unspecified
12597                                                                                                 20.00
12598                                                                                                150.00
12599                                                                                                  8.00
12600                                                                                                  5.00
12601                                                                                                 75.00
12602                                                                                                136.00
12603                                                                                                114.00
12604                                                                                                114.00
12605                                                                                             11.5, 114
12606                                                                                                  1.00
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12610                                                                                                200.00
12611                                                                                                 60.00
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12614                                                                                                  1.00
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12617                                                                                                227.00
12618                                                                                                272.00
12619                                                                                                  0.70
12620                                                                                           unspecified
12621                                                                                                 70.00
12622                                                                                                  6.00
12623                                                                          based on weight (51-100 lbs)
12624                                                                                                  0.70
12625                                                                                                  1.00
12626                                                                                                  0.70
12627                                                                                                  0.70
12628                                                                                                 15.00
12629                                                                                                 15.00
12630                                                                                           unspecified
12631                                                                                                  0.70
12632                                                                                           unspecified
12633                                                                                                  0.70
12634                                                                                                  0.70
12635                                                                                                  0.35
12636                                                                          based on weight (50-100 lbs)
12637                                                                                                100.00
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12640                                                                                                200.00
12641                                                                                                272.00
12642                                                                          based on weight (50-100 lbs)
12643                                                                                                625.00
12644                                                                                                  7.80
12645                                                                                              125, 500
12646                                                                                                  6.00
12647                                                                                                136.00
12648                                                                                                625.00
12649                                                                                                  9.00
12650                                                                                                625.00
12651                                                                                                136.00
12652                                                                                                625.00
12653                                                                                                175.00
12654                                                                                                  2.00
12655                                                                                                  6.00
12656                                                                                                222.00
12657                                                                                                272.00
12658                                                                                                272.00
12659                                                                                                272.00
12660                                                                                                272.00
12661                                                                                                 50.00
12662                                                                                                 33.00
12663                                                                                                375.00
12664                                                                                                 20.00
12665                                                                                                  7.50
12666                                                                                                  2.00
12667                                                                                                200.00
12668                                                                                                  2.00
12669                                                                                                 23.00
12670                                                                                                200.00
12671                                                                                                  2.00
12672                                                                                                500.00
12673                                                                                                500.00
12674                                                                                                 16.00
12675                                                                                                  1.50
12676                                                                                                  0.50
12677                                                                                                 20.00
12678                                                                                                125.00
12679                                                                                               1000.00
12680                                                                                                150.00
12681                                                                                                375.00
12682                                                                                                625.00
12683                                                                                                  1.00
12684                                                                                                150.00
12685                                                                                                 20.00
12686                                                                          based on weight (51-100 lbs)
12687                                                                                                500.00
12688                                                                                                 20.00
12689                                                                                               1000.00
12690                                                                                               1400.00
12691                                                                                                280.00
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12694                                                                                                    75
12695                                                                                                 75.00
12696                                                                                                300.00
12697                                                                                                 75.00
12698                                                                                                625.00
12699                                                                                                272.00
12700                                                                                                200.00
12701                                                                                                850.00
12702                                                                                                 10.00
12703                                                                                                 50.00
12704                                                                                                100.00
12705                                                                                                 50.00
12706                                                                                                 10.00
12707                                                                                                  5.00
12708                                                                                                  0.43
12709                                                                                                100.00
12710                                                                                                272.00
12711                                                                                                  1.00
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12715                                                                                                272.00
12716                                                                                                272.00
12717                                                                                                272.00
12718                                                                                                  8.00
12719                                                                                                 60.00
12720                                                                                                 30.00
12721                                                                                                 10.00
12722                                                                                                 10.00
12723                                                                                                 10.00
12724                                                                                                272.00
12725                                                                                                272.00
12726                                                                                                 23.00
12727                                                                                                 23.00
12728                                                                                                  9.70
12729                                                                                                500.00
12730                                                                                           unspecified
12731                                                                                                500.00
12732                                                                                           application
12733                                                                                                 75.00
12734                                                                                                750.00
12735                                                                                           as directed
12736                                                                                                  4.00
12737                                                                                                264.00
12738                                                                          1 tablet/pill/capsule - 1000
12739                                                                                                 13.50
12740                                                                                             13.5, 810
12741                                                                                                500.00
12742                                                                                                 50.00
12743                                                                                                 13.50
12744                                                                                       13.5 mg, 810 mg
12745                                                                                                  2.30
12746                                                                                                250.00
12747                                                                                                  1.00
12748                                                                                                600.00
12749                                                                                             13.5, 810
12750                                                                                                250.00
12751                                                                                                  1.00
12752                                                                                                  2.30
12753                                                                                                 50.00
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12757                                                                                                200.00
12758                                                                                                136.00
12759                                                                                                100.00
12760                                                                                                 40.00
12761                                                                                                272.00
12762                                                                                                100.00
12763                                                                                                272.00
12764                                                                                                272.00
12765                                                                                                 23.00
12766                                                                                                 23.00
12767                                                                                                272.00
12768                                                                                                272.00
12769                                                                                                227.00
12770                                                                                                250.00
12771                                                                                       based on weight
12772                                                                                                500.00
12773                                                                                                200.00
12774                                                                                       based on weight
12775                                                                                                136.00
12776                                                                                                  5.00
12777                                                                                               1000.00
12778                                                                                                250.00
12779                                                                                                500.00
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12782                                                                                                200.00
12783                                                                                                100.00
12784                                                                                        1 pack/package
12785                                                                                                100.00
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12789                                                                                                272.00
12790                                                                                                136.00
12791                                                                                                  2.00
12792                                                                                                113.50
12793                                                                                               1000.00
12794                                                                                                375.00
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12798                                                                                               1000.00
12799                                                                                                500.00
12800                                                                                                  1.00
12801                                                                                           application
12802                                                                                                 20.00
12803                                                                                                500.00
12804                                                                                                  1.00
12805                                                                                                  0.02
12806                                                                                                500.00
12807                                                                                                  1.00
12808                                                                                                  1.00
12809                                                                                                 70.00
12810                                                                                                500.00
12811                                                                                                300.00
12812                                                                                                  1.00
12813                                                                                                  1.00
12814                                                                                                  1.00
12815                                                                                                  1.00
12816                                                                                                  1.80
12817                                                                                                500.00
12818                                                                                                500.00
12819                                                                                               1000.00
12820                                                                                                300.00
12821                                                                                                  1.90
12822                                                                                               1000.00
12823                                                                                                500.00
12824                                                                                                100.00
12825                                                                                                300.00
12826                                                                                           unspecified
12827                                                                                                 16.00
12828                                                                                           unspecified
12829                                                                                                500.00
12830                                                                                               1700.00
12831                                                                                                 80.00
12832                                                                                                  1.80
12833                                                                                                 27 mg
12834                                                                                               1620.00
12835                                                                                                 15.00
12836                                                                          based on weight (60-120 lbs)
12837                                                                                                    90
12838                                                                                                272.00
12839                                                                                                136.00
12840                                                                                                272.00
12841                                                                                                    90
12842                                                                                                272.00
12843                                                                                                 68.00
12844                                                                                                 10.00
12845                                                                                                200.00
12846                                                                                                 20.00
12847                                                                                                272.00
12848                                                                                                  2.68
12849                                                                                                 drops
12850                                                                                                 drops
12851                                                                                                  3.00
12852                                                                                                300.00
12853                                                                                                 50.00
12854                                                                                                  3.00
12855                                                                                                  3.00
12856                                                                                                  1.00
12857                                                                                                  1.00
12858                                                                                                  1.00
12859                                                                                                300.00
12860                                                                                                  0.03
12861                                                                                          small amount
12862                                                                                                  1.00
12863                                                                                                  1.00
12864                                                                                                  2.00
12865                                                                                          small amount
12866                                                                                          small amount
12867                                                                                                300.00
12868                                                                                                  1.00
12869                                                                                                  1.00
12870                                                                                           application
12871                                                                                                300.00
12872                                                                                                 10.00
12873                                                                                       moderate amount
12874                                                                                                500 mg
12875                                                                                                300.00
12876                                                                                                 16.00
12877                                                                                                300.00
12878                                                                                                100.00
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12883                                                                                                 16.00
12884                                                                                                100.00
12885                                                                                                300.00
12886                                                                                                500.00
12887                                                                                                100.00
12888                                                                                                300.00
12889                                                                                                  1.00
12890                                                                                                  1.00
12891                                                                                                 16.00
12892                                                                                                  1.00
12893                                                                                                   150
12894                                                                                          small amount
12895                                                                                                  bath
12896                                                                                               1647.00
12897                                                                                                200.00
12898                                                                                                  1.00
12899                                                                                                136.00
12900                                                                                                227.00
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12912                                                                                                100.00
12913                                                                                                  4.00
12914                                                                                                 80.00
12915                                                                                                300.00
12916                                                                          based on weight (51-100 lbs)
12917                                                                                                 43.00
12918                                                                                                500.00
12919                                                                                                272.00
12920                                                                          based on weight (51-100 lbs)
12921                                                                                                272.00
12922                                                                                                  4.02
12923                                                                                                100.00
12924                                                                                                300.00
12925                                                                                                100.00
12926                                                                                                  8.00
12927                                                                                                275.00
12928                                                                                                272.00
12929                                                                          based on weight (51-100 lbs)
12930                                                                                                136.00
12931                                                                                                  1.00
12932                                                                                                  1.00
12933                                                                                                  1.00
12934                                                                                                  1.00
12935                                                                                                 18.00
12936                                                                                                  0.50
12937                                                                                                 12.00
12938                                                                                                100.00
12939                                                                                                100.00
12940                                                                                                  1.00
12941                                                                                                100.00
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12944                                                                                                    66
12945                                                                          based on weight (51-100 lbs)
12946                                                                                                750.00
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12950                                                                                                    66
12951                                                                                                204.00
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12954                                                                                                200.00
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12958                                                                                                  1.00
12959                                                                                               8 drops
12960                                                                                                272.00
12961                                                                                                272.00
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12964                                                                                                272.00
12965                                                                                                272.00
12966                                                                           based on weight (45-88 lbs)
12967                                                                                                200.00
12968                                                                                                200.00
12969                                                                                                 60.00
12970                                                                                                  1.00
12971                                                                                                  1.50
12972                                                                                                  8.00
12973                                                                                                300.00
12974                                                                                                150.00
12975                                                                                                  0.75
12976                                                                                                100.00
12977                                                                                                300.00
12978                                                                                                 75.00
12979                                                                                               1 spray
12980                                                                                                  0.80
12981                                                                                                272.00
12982                                                                                                500.00
12983                                                                                                250.00
12984                                                                                                 15.00
12985                                                                                                 75.00
12986                                                                                                  0.80
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12991                                                                                                272.00
12992                                                                                                  37.5
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12995                                                                                                    66
12996                                                                                                 16 mg
12997                                                                                                200.00
12998                                                                                                 75.00
12999                                                                                                272.00
13000                                                                                                250.00
13001                                                                                                 50.00
13002                                                                                                 37.50
13003                                                                                                200.00
13004                                                                                                 68.00
13005                                                                                           unspecified
13006                                                                                           unspecified
13007                                                                                                600.00
13008                                                                                           unspecified
13009                                                                                                 16.00
13010                                                                                           unspecified
13011                                                                                                 16.00
13012                                                                                                 50.00
13013                                                                                           unspecified
13014                                                                                                250.00
13015                                                                                                500.00
13016                                                                                                170.00
13017                                                                                                375.00
13018                                                                                                 16.00
13019                                                                                                 20.00
13020                                                                                           unspecified
13021                                                                                                  1.00
13022                                                                                                  1.00
13023                                                                                                 60.00
13024                                                                                                 50.00
13025                                                                                                500.00
13026                                                                                                136.00
13027                                                                                                300.00
13028                                                                                                 16.00
13029                                                                                                  1.40
13030                                                                                                215.00
13031                                                                                                 60.00
13032                                                                                                 50.00
13033                                                                                                100.00
13034                                                                                                    30
13035                                                                                                272.00
13036                                                                                                  0.20
13037                                                                                                272.00
13038                                                                                                272.00
13039                                                                                                272.00
13040                                                                                                272.00
13041                                                                                          small amount
13042                                                                                                272.00
13043                                                                                                272.00
13044                                                                                                  6.00
13045                                                                                                272.00
13046                                                                                                400.00
13047                                                                                                 10.00
13048                                                                                                250.00
13049                                                                                           application
13050                                                                                                375.00
13051                                                                                                 50.00
13052                                                                                                 50.00
13053                                                                                                  5.00
13054                                                                                                200.00
13055                                                                                                 50.00
13056                                                                                                 50.00
13057                                                                                                  2.68
13058                                                                                                272.00
13059                                                                                                200.00
13060                                                                                                 15.00
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13064                                                                                               1000.00
13065                                                                                                 22.70
13066                                                                                               1000.00
13067                                                                                                272.00
13068                                                                                               1000.00
13069                                                                                                100.00
13070                                                                                                600.00
13071                                                                                                  1.00
13072                                                                                                  1.00
13073                                                                                                500.00
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13077                                                                                                 23.00
13078                                                                                                 23.00
13079                                                                                               1000.00
13080                                                                                                 16.00
13081                                                                                           unspecified
13082                                                                                                200.00
13083                                                                                                200.00
13084                                                                                               23, 460
13085                                                                                                  2.68
13086                                                                          based on weight (51-100 lbs)
13087                                                                                               1000.00
13088                                                                                                 23.00
13089                                                                                                 23.00
13090                                                                                               1000.00
13091                                                                                                 23.00
13092                                                                                               1000.00
13093                                                                                                  2.00
13094                                                                                                272.00
13095                                                                                               1000.00
13096                                                                                          small amount
13097                                                                                                  1.00
13098                                                                                                    75
13099                                                                                                113.50
13100                                                                                                  1.00
13101                                                                                                  0.50
13102                                                                                                  1.00
13103                                                                                                  1.00
13104                                                                                           unspecified
13105                                                                                                 50.00
13106                                                                                                  1.00
13107                                                                                                500.00
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                                    30
13111                                                                                                   0.7
13112                                                                                                   250
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13117                                                                                               1620.00
13118                                                                                                250.00
13119                                                                                                300.00
13120                                                                                                 20.00
13121                                                                                               1000.00
13122                                                                                                 20.00
13123                                                                                                  1.00
13124                                                                                          small amount
13125                                                                                                272.00
13126                                                                                          small amount
13127                                                                                          small amount
13128                                                                                                 25.00
13129                                                                                          small amount
13130                                                                                          small amount
13131                                                                                                 20.00
13132                                                                                                 50.00
13133                                                                                          small amount
13134                                                                                                272.00
13135                                                                                                227.00
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13141                                                                                                  6.00
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13144                                                                                                200.00
13145                                                                                                 50.00
13146                                                                                                400.00
13147                                                                                                 75.00
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13153                                                                                               1500.00
13154                                                                                              125, 875
13155                                                                                                400.00
13156                                                                                                300.00
13157                                                                          based on weight (50-100 lbs)
13158                                                                                                170.00
13159                                                                                           unspecified
13160                                                                                           unspecified
13161                                                                                                150.00
13162                                                                                                227.00
13163                                                                                                500.00
13164                                                                                                500.00
13165                                                                                                500.00
13166                                                                                                300.00
13167                                                                                                  90.5
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13172                                                                                                150.00
13173                                                                                                1 drop
13174                                                                                                  3.00
13175                                                                                                500.00
13176                                                                                                 20.00
13177                                                                                                500.00
13178                                                                                                 30.00
13179                                                                                                 75.00
13180                                                                                                250.00
13181                                                                                                  3.00
13182                                                                                                  3.45
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13185                                                                                                  1.50
13186                                                                                               1000.00
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13191                                                                                              45451.00
13192                                                                                                 50.00
13193                                                                                                  1.00
13194                                                                                                  3.40
13195                                                                                                 spray
13196                                                                                                  bath
13197                                                                                                150.00
13198                                                                                       moderate amount
13199                                                                                              tapering
13200                                                                                                200.00
13201                                                                                                272.00
13202                                                                                                 68.00
13203                                                                                                  3.80
13204                                                                                                500.00
13205                                                                                                160.00
13206                                                                                                960.00
13207                                                                                                  8.00
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13210                                                                                                  3.00
13211                                                                                                  2.00
13212                                                                                                 76.00
13213                                                                                                150.00
13214                                                                                                 17.50
13215                                                                                                  2.00
13216                                                                                                  2.00
13217                                                                                                300.00
13218                                                                                                 75.00
13219                                                                                                  1.00
13220                                                                                                  1.00
13221                                                                                                300.00
13222                                                                                                 75.00
13223                                                                                                 76.00
13224                                                                                                  3.00
13225                                                                                                  2.00
13226                                                                                                  2.00
13227                                                                                                  2.00
13228                                                                                                 17.50
13229                                                                                                150.00
13230                                                                                                  8.00
13231                                                                                                 75.00
13232                                                                                                300.00
13233                                                                                           unspecified
13234                                                                                                 75.00
13235                                                                                                  2.00
13236                                                                                                 10.00
13237                                                                                                  2.00
13238                                                                                                500 mg
13239                                                                                                250.00
13240                                                                                                200.00
13241                                                                                                500.00
13242                                                                                                  2.00
13243                                                                                                500.00
13244                                                                                                 10.00
13245                                                                                                  2.00
13246                                                                                       0.25 inch strip
13247                                                                                                113.50
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13250                                                                                                 16.00
13251                                                                                                200.00
13252                                                                                                  1.00
13253                                                                                                  1.00
13254                                                                                                200.00
13255                                                                                                170.25
13256                                                                                                250.00
13257                                                                                                 62.50
13258                                                                                                500.00
13259                                                                                                 20.00
13260                                                                                                272.00
13261                                                                                                227.00
13262                                                                                               272 mcg
13263                                                                                                272.00
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13265                                                                                                136.00
13266                                                                                                 20.00
13267                                                                                                272.00
13268                                                                                                136.00
13269                                                                                                 20.00
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13272                                                                                                  1.00
13273                                                                                                  1.00
13274                                                                                                136.00
13275                                                                                                  2.68
13276                                                                                                500.00
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13280                                                                                                500.00
13281                                                                                                 37.50
13282                                                                                                375.00
13283                                                                                                 15.00
13284                                                                                                272.00
13285                                                                                                  9.80
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13289                                                                                                600.00
13290                                                                                                136.00
13291                                                                                                100.00
13292                                                                                               1620.00
13293                                                                                                  3.60
13294                                                                                                 27.00
13295                                                                                                500.00
13296                                                                                                 22.00
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13300                                                                                                136.00
13301                                                                                                100.00
13302                                                                                                  0.45
13303                                                                                                 11.00
13304                                                                                                  0.20
13305                                                                                                  2.20
13306                                                                                                 10.00
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13310                                                                                                  8.00
13311                                                                                                100.00
13312                                                                                                 50.00
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13316                                                                                                136.00
13317                                                                                                500.00
13318                                                                                               8 drops
13319                                                                                                500.00
13320                                                                                                  1.00
13321                                                                                                  bath
13322                                                                                                100.00
13323                                                                                                100.00
13324                                                                                                272.00
13325                                                                                                136.00
13326                                                                                                500.00
13327                                                                                                500.00
13328                                                                                                250.00
13329                                                                                                  1.00
13330                                                                                                 50.00
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13333                                                                                                    90
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13335                                                                                                 11.00
13336                                                                                                    90
13337                                                                                                300.00
13338                                                                                                 20.00
13339                                                                                                227.00
13340                                                                                          small amount
13341                                                                                           unspecified
13342                                                                                                500.00
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13346                                                                                                227.00
13347                                                                                                136.00
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13350                                                                                                500.00
13351                                                                                                 20.00
13352                                                                                                900.00
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13358                                                                                                 37.50
13359                                                                                                 20.00
13360                                                                                                 75.00
13361                                                                                                250.00
13362                                                                                                 37.50
13363                                                                                                  1.00
13364                                                                                                500.00
13365                                                                                                136.00
13366                                                                                                  2.00
13367                                                                                                500.00
13368                                                                                                  5.00
13369                                                                                                375.00
13370                                                                                                  5.00
13371                                                                                                  5.00
13372                                                                                                  1.00
13373                                                                                                 15.00
13374                                                                                                200.00
13375                                                                                                  1.00
13376                                                                                           unspecified
13377                                                                                                  5.00
13378                                                                                                  1.00
13379                                                                                                 15.00
13380                                                                                                  3.00
13381                                                                                                500.00
13382                                                                                                  5.00
13383                                                                                                  1.00
13384                                                                                                  0.50
13385                                                                                                  3.00
13386                                                                                                  3.00
13387                                                                                                100.00
13388                                                                                                150.00
13389                                                                                                  5.00
13390                                                                                                  5.00
13391                                                                                                  2.00
13392                                                                                                  6.80
13393                                                                                                  0.13
13394                                                                                                  1.70
13395                                                                                                450.00
13396                                                                                                200.00
13397                                                                                                750.00
13398                                                                                                 30.00
13399                                                                                                200.00
13400                                                                                                500.00
13401                                                                                                500.00
13402                                                                                                200.00
13403                                                                                                 30.00
13404                                                                                                 20.00
13405                                                                                           unspecified
13406                                                                                                 24.00
13407                                                                                                  3.20
13408                                                                                                  2.00
13409                                                                                                  1.00
13410                                                                                                  4.90
13411                                                                                           unspecified
13412                                                                                                 60.00
13413                                                                                                  3.00
13414                                                                                                  6.50
13415                                                                                                 40.00
13416                                                                                                 80.00
13417                                                                                                150.00
13418                                                                                                200.00
13419                                                                                                250.00
13420                                                                                                 24.00
13421                                                                                                750.00
13422                                                                                                 80.00
13423                                                                                                  3.00
13424                                                                                                  1.00
13425                                                                                                  1.00
13426                                                                                                  2.00
13427                                                                                                  5.00
13428                                                                                                  4.90
13429                                                                                                  3.00
13430                                                                                                 60.00
13431                                                                                                  2.00
13432                                                                                                  1.00
13433                                                                                                100.00
13434                                                                                                 10.00
13435                                                                                                 20.00
13436                                                                                                 82.00
13437                                                                                                  3.00
13438                                                                                                  1.40
13439                                                                                                  7.00
13440                                                                                                  2.70
13441                                                                                                  2.70
13442                                                                                                  4.00
13443                                                                                                750.00
13444                                                                                                  3.00
13445                                                                                                  4.00
13446                                                                                                  1.00
13447                                                                                                  2.00
13448                                                                                                  2.00
13449                                                                                                  2.00
13450                                                                                                  2.00
13451                                                                                                  1.00
13452                                                                                                  1.00
13453                                                                                               1000.00
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13457                                                                                                272.00
13458                                                                                                 16.08
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13463                                                                                                300.00
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13465                                                                                               1000.00
13466                                                                                                272.00
13467                                                                                                300.00
13468                                                                                           unspecified
13469                                                                                                500.00
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13472                                                                                                  2.50
13473                                                                                                  0.25
13474                                                                                                  8.00
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13477                                                                                                 15.00
13478                                                                                                500.00
13479                                                                              based on weight (70 lbs)
13480                                                                                                500.00
13481                                                                                                  1.00
13482                                                                                                  5.00
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13486                                                                                                625.00
13487                                                                                                 20 mg
13488                                                                                                625.00
13489                                                                                                500.00
13490                                                                                               1000.00
13491                                                                                                500.00
13492                                                                                                 20.00
13493                                                                                                625.00
13494                                                                                                300.00
13495                                                                                                 20.00
13496                                                                                       based on weight
13497                                                                                                  0.13
13498                                                                                                 25.00
13499                                                                                                  2.50
13500                                                                                                  1.25
13501                                                                                                  0.00
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13504                                                                                                  1.00
13505                                                                                                272.00
13506                                                                          based on weight (50-100 lbs)
13507                                                                                                272.00
13508                                                                                                  4.00
13509                                                                                                 10.00
13510                                                                                                 30.00
13511                                                                                                130.00
13512                                                                                                  0.81
13513                                                                                                500.00
13514                                                                                                272.00
13515                                                                                               1000.00
13516                                                                                                272.00
13517                                                                                                  3.00
13518                                                                                                272.00
13519                                                                                               1000.00
13520                                                                                                500.00
13521                                                                                                 40.00
13522                                                                                                500.00
13523                                                                                                 80.00
13524                                                                                                250.00
13525                                                                                                500.00
13526                                                                                                 50.00
13527                                                                                                500.00
13528                                                                                                500.00
13529                                                                                                500.00
13530                                                                                                  4.00
13531                                                                                                750.00
13532                                                                                        1 pack/package
13533                                                                                                500.00
13534                                                                                                272.00
13535                                                                                                  2.68
13536                                                                                                 27.00
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13539                                                                                               1620.00
13540                                                                                                100.00
13541                                                                                               1620.00
13542                                                                                               1620.00
13543                                                                                                 75.00
13544                                                                                               1620.00
13545                                                                                                500.00
13546                                                                                                 37.50
13547                                                                                                 75.00
13548                                                                                               1647.00
13549                                                                                                 20.00
13550                                                                                                250.00
13551                                                                                                 12.00
13552                                                                                                900.00
13553                                                                                                 20.00
13554                                                                                               1620.00
13555                                                                                                200.00
13556                                                                                                  5.00
13557                                                                                                  7.00
13558                                                                                               1647.00
13559                                                                                               1647.00
13560                                                                                                  7.00
13561                                                                                                  2.00
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13565                                                                                                375.00
13566                                                                                                  1.00
13567                                                                                                  1.00
13568                                                                                                  2.00
13569                                                                                                150.00
13570                                                                                                150.00
13571                                                                                                150.00
13572                                                                                                  3.00
13573                                                                                                  3.00
13574                                                                                                 60.00
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13577                                                                                                  5.00
13578                                                                                                  1.00
13579                                                                                          small amount
13580                                                                                                  2.00
13581                                                                                        27 mg, 1620 mg
13582                                                                                                  2.00
13583                                                                                                  1.00
13584                                                                                                  5.00
13585                                                                                              27, 1620
13586                                                                                                  1.00
13587                                                                                                  1.00
13588                                                                                                  1.00
13589                                                                                                  2.00
13590                                                                                                  bath
13591                                                                                                200.00
13592                                                                                                  2.00
13593                                                                                                100.00
13594                                                                                           unspecified
13595                                                                                           unspecified
13596                                                                                                100.00
13597                                                                                                200.00
13598                                                                                                 16.00
13599                                                                                                  1.00
13600                                                                                                  1.00
13601                                                                                           unspecified
13602                                                                                                150.00
13603                                                                                           unspecified
13604                                                                                                  2.00
13605                                                                                           unspecified
13606                                                                                                  1.00
13607                                                                                                  1.00
13608                                                                                                230.00
13609                                                                                       0.25 inch strip
13610                                                                                                 25.00
13611                                                                                                 10.00
13612                                                                                                  1.00
13613                                                                                                 10.00
13614                                                                                                 10.00
13615                                                                                          small amount
13616                                                                                               1100.00
13617                                                                                                  0.25
13618                                                                                                  0.25
13619                                                                                                100 mg
13620                                                                                               1136.00
13621                                                                                                250.00
13622                                                                                                 50.00
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13626                                                                                                100.00
13627                                                                                                300.00
13628                                                                           based on weight (21-55 lbs)
13629                                                                                                300.00
13630                                                                                                 50.00
13631                                                                                          small amount
13632                                                                                                 68.00
13633                                                                                                272.00
13634                                                                                                272.00
13635                                                                                                  2.68
13636                                                                                                272.00
13637                                                                                                  2.68
13638                                                                                                272.00
13639                                                                                                136.00
13640                                                                                                272.00
13641                                                                                                272.00
13642                                                                                                136.00
13643                                                                                                272.00
13644                                                                                                136.00
13645                                                                                                272.00
13646                                                                                                136.00
13647                                                                                                200.00
13648                                                                                                 50.00
13649                                                                                                  1.00
13650                                                                                                  1.00
13651                                                                                                272.00
13652                                                                                                272.00
13653                                                                                                500.00
13654                                                                                          small amount
13655                                                                                                  1.00
13656                                                                                               1000.00
13657                                                                                          small amount
13658                                                                                                  1.00
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13661                                                                                                  4.00
13662                                                                                               1000.00
13663                                                                                                 15.00
13664                                                                                                 15.00
13665                                                                                                500.00
13666                                                                                           application
13667                                                                                                 75.00
13668                                                                                                210.00
13669                                                                                                  1.00
13670                                                                                                  1.27
13671                                                                                                 12.65
13672                                                                                                126.55
13673                                                                                                  2.00
13674                                                                                                 15.00
13675                                                                                                272.00
13676                                                                                               1000.00
13677                                                                                                 15.00
13678                                                                                                  1.00
13679                                                                                                 75.00
13680                                                                                                  0.02
13681                                                                                                  1.00
13682                                                                                                  1.27
13683                                                                                                 12.60
13684                                                                                                126.55
13685                                                                                                139.20
13686                                                                                                  0.20
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13689                                                                                               1620.00
13690                                                                                                  1.00
13691                                                                                                  2.30
13692                                                                                                 10.00
13693                                                                          based on weight (60-120 lbs)
13694                                                                                                272.00
13695                                                                                                 23.00
13696                                                                                                  1.00
13697                                                                                                  1.00
13698                                                                                                 75.00
13699                                                                                                300.00
13700                                                                                                500.00
13701                                                                                                 75.00
13702                                                                                                 10.00
13703                                                                                                  6.00
13704                                                                                                 50.00
13705                                                                                                 16.00
13706                                                                                               1620.00
13707                                                                                               1620.00
13708                                                                                                500.00
13709                                                                                                272.00
13710                                                                                                  0.60
13711                                                                                                  2.68
13712                                                                                                  8.00
13713                                                                                                 10.00
13714                                                                                                  0.60
13715                                                                                                750 mg
13716                                                                                                175.00
13717                                                                                                  0.60
13718                                                                                                  0.60
13719                                                                                                  1.00
13720                                                                                                150.00
13721                                                                                                500.00
13722                                                                                                  1.00
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13725                                                                                                  0.70
13726                                                                                                250.00
13727                                                                                               1000.00
13728                                                                                                150.00
13729                                                                                                500.00
13730                                                                                   tablet/pill/capsule
13731                                                                                                  8.00
13732                                                                                                250.00
13733                                                                                               1000.00
13734                                                                                                  1.00
13735                                                                                                  0.60
13736                                                                                                200.00
13737                                                                          based on weight (50-100 lbs)
13738                                                                                                  0.70
13739                                                                                                150.00
13740                                                                                           unspecified
13741                                                                                           unspecified
13742                                                                                                  1.05
13743                                                                                                 60.00
13744                                                                                                300.00
13745                                                                                                 23.00
13746                                                                                                 23.00
13747                                                                                               23, 460
13748                                                                                                 23.00
13749                                                                                               1000.00
13750                                                                                               1400.00
13751                                                                                                 23.00
13752                                                                                                200.00
13753                                                                                                 23.00
13754                                                                                               1000.00
13755                                                                                                200.00
13756                                                                                           unspecified
13757                                                                                                150.00
13758                                                                                                150.00
13759                                                                                                300.00
13760                                                                                                150.00
13761                                                                                                200.00
13762                                                                                                300.00
13763                                                                                                500.00
13764                                                                                                 20.00
13765                                                                                                150.00
13766                                                                                                    50
13767                                                                                                 11.50
13768                                                                                           application
13769                                                                                                 spray
13770                                                                                                200.00
13771                                                                                                 50.00
13772                                                                                                136.00
13773                                                                                                125.00
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13777                                                                                                136.00
13778                                                                                                100.00
13779                                                                                                500.00
13780                                                                                                  1.00
13781                                                                                                  37.5
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13784                                                                                                100.00
13785                                                                                                200.00
13786                                                                                                1 tube
13787                                                                                                100.00
13788                                                                                                 50.00
13789                                                                                                100.00
13790                                                                                                 50.00
13791                                                                                                100.00
13792                                                                                                100.00
13793                                                                                                100.00
13794                                                                                                184.00
13795                                                                                                 10.00
13796                                                                                            1 wipe/pad
13797                                                                                                 36.00
13798                                                                                                  0.30
13799                                                                                                  0.30
13800                                                                                                  1.00
13801                                                                                                    75
13802                                                                                                  1.00
13803                                                                                                375 mg
13804                                                                                                  1.20
13805                                                                                                  1.00
13806                                                                                                  1.00
13807                                                                                               4200.00
13808                                                                                                 50.00
13809                                                                                                500.00
13810                                                                                                500.00
13811                                                                                                 50.00
13812                                                                                                125.00
13813                                                                                                 50.00
13814                                                                                                 10.00
13815                                                                                                 20.00
13816                                                                                                272.00
13817                                                                                                375.00
13818                                                                                                  1.20
13819                                                                                                 20.00
13820                                                                                                272.00
13821                                                                                                  2.90
13822                                                                                                 60.00
13823                                                                                                  4.00
13824                                                                                                272.00
13825                                                                                                  9.80
13826                                                                                                 20.00
13827                                                                                                  1.00
13828                                                                                                  1.00
13829                                                                                                 50.00
13830                                                                                                 50.00
13831                                                                                                100.00
13832                                                                                                500.00
13833                                                                                                  1.00
13834                                                                                                 25.00
13835                                                                                                 10.00
13836                                                                                                 20.00
13837                                                                                               1000.00
13838                                                                                                130.00
13839                                                                                                  1.00
13840                                                                                                272.00
13841                                                                                                    66
13842                                                                                                 20.00
13843                                                                                                 37.50
13844                                                                                                 10.00
13845                                                                                                  1.00
13846                                                                                                  1.00
13847                                                                                                  1.20
13848                                                                                                  4.00
13849                                                                                                  1.00
13850                                                                                                 10.00
13851                                                                                                  1.00
13852                                                                                                  4.00
13853                                                                                                500.00
13854                                                                                                 10.00
13855                                                                                                 20.00
13856                                                                                                 37.50
13857                                                                                                  1.00
13858                                                                                                  1.00
13859                                                                                                  1.20
13860                                                                                                  1.00
13861                                                                                                  1.60
13862                                                                                                  1.60
13863                                                                                                 13.00
13864                                                                                                  2.00
13865                                                                                                 16.00
13866                                                                                                136.00
13867                                                                                                100.00
13868                                                                                                500.00
13869                                                                                                 20.00
13870                                                                                                 10.00
13871                                                                                                500.00
13872                                                                                                300.00
13873                                                                                                 37.50
13874                                                                                                  1.00
13875                                                                                                  0.02
13876                                                                                                  1.20
13877                                                                                                  1.00
13878                                                                                                  3.30
13879                                                                                                 30.00
13880                                                                                                  1.00
13881                                                                                                  7 ml
13882                                                                                                272.00
13883                                                                                                 50.00
13884                                                                                              2 sprays
13885                                                                                                272.00
13886                                                                                                456.00
13887                                                                                                  3.00
13888                                                                                                200.00
13889                                                                                                200.00
13890                                                                                                  0.70
13891                                                                                                375.00
13892                                                                                                150.00
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13895                                                                                                 30.00
13896                                                                        based on weight (50.1-100 lbs)
13897                                                                                                  75.5
13898                                                                                                100.00
13899                                                                                                100.00
13900                                                                                                300.00
13901                                                                                                150.00
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13907                                                                                                 20.00
13908                                                                                             100 mg/ml
13909                                                                                                 10.00
13910                                                                        based on weight (50.1-100 lbs)
13911                                                                                                  75.5
13912                                                                                           unspecified
13913                                                                                           unspecified
13914                                                                                                100.00
13915                                                                                                  1.00
13916                                                                                                  1.00
13917                                                                                                  1.00
13918                                                                                                250.00
13919                                                                                                 50.00
13920                                                                                                 25.00
13921                                                                                                120.00
13922                                                                                                 27.00
13923                                                                                               1620.00
13924                                                                                                 62.50
13925                                                                                              27, 1620
13926                                                                                                200.00
13927                                                                                                 15.00
13928                                                                                                200.00
13929                                                                                                 15.00
13930                                                                                                240.00
13931                                                                                                100.00
13932                                                                                                  2.00
13933                                                                                                  3.00
13934                                                                                                  3.00
13935                                                                                                 75.00
13936                                                                                                500.00
13937                                                                                                  1.00
13938                                                                                                300.00
13939                                                                                                  0.60
13940                                                                                                300.00
13941                                                                                                  0.60
13942                                                                                                  0.60
13943                                                                          based on weight (51-100 lbs)
13944                                                                                                  0.60
13945                                                                                                136.00
13946                                                                                                 spray
13947                                                                                                272.00
13948                                                                                                136.00
13949                                                                                                200.00
13950                                                                                               1000.00
13951                                                                                                  8.00
13952                                                                                                200.00
13953                                                                                                  1.00
13954                                                                                                200.00
13955                                                                                                 75.00
13956                                                                                               1000.00
13957                                                                                                  1.00
13958                                                                                                  8.00
13959                                                                                                  8.00
13960                                                                                                  1.00
13961                                                                                                300.00
13962                                                                                                300.00
13963                                                                                                 25.00
13964                                                                                                 75.00
13965                                                                                                  2.00
13966                                                                                                500.00
13967                                                                                                200.00
13968                                                                                                136.00
13969                                                                                                  2.00
13970                                                                                                  8.00
13971                                                                                                  2.00
13972                                                                                                  2.50
13973                                                                                                  1.00
13974                                                                                                500.00
13975                                                                                                100.00
13976                                                                                                 20.00
13977                                                                                                 24.00
13978                                                                                                150.00
13979                                                                                                  2.68
13980                                                                                                272.00
13981                                                                                                500.00
13982                                                                                                150.00
13983                                                                                                 20.00
13984                                                                                                 48.00
13985                                                                                                500.00
13986                                                                                                 50.00
13987                                                                                                 25.00
13988                                                                                                750.00
13989                                                                                                  4.00
13990                                                                                                150.00
13991                                                                                                100.00
13992                                                                                                272.00
13993                                                                                                 68.00
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13997                                                                                                 80.00
13998                                                                                           unspecified
13999                                                                                                  1.00
14000                                                                                                 80.00
14001                                                                                                150.00
14002                                                                                                  1.00
14003                                                                                                375.00
14004                                                                                                 20.00
14005                                                                                                 75.00
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14009                                                                                                223.00
14010                                                                                                300.00
14011                                                                                                 50.00
14012                                                                                                600.00
14013                                                                                                300.00
14014                                                                                                  2.00
14015                                                                                                136.00
14016                                                                                                125.00
14017                                                                                                 25.00
14018                                                                                                150.00
14019                                                                                                272.00
14020                                                                                                 50.00
14021                                                                                                100.00
14022                                                                                                272.00
14023                                                                                                 80.00
14024                                                                                                 50.00
14025                                                                                                272.00
14026                                                                                                 80.00
14027                                                                                                272.00
14028                                                                                                 80.00
14029                                                                                                 50.00
14030                                                                                                 50.00
14031                                                                                                250.00
14032                                                                                                200.00
14033                                                                                                225.00
14034                                                                                               1620.00
14035                                                                                                240.00
14036                                                                                                240.00
14037                                                                                                 23.00
14038                                                                                                468.00
14039                                                                                                 75.00
14040                                                                                                400.00
14041                                                                                                 75.00
14042                                                                                                468.00
14043                                                                                                 20.00
14044                                                                                                 20.00
14045                                                                                                 50.00
14046                                                                                                 50.00
14047                                                                                                300.00
14048                                                                                                 75.00
14049                                                                                                375.00
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14052                                                                                                375.00
14053                                                                                                  6.50
14054                                                                                                 10.00
14055                                                                          based on weight (50-100 lbs)
14056                                                                                                 50.00
14057                                                                                                 20.00
14058                                                                                                  1.00
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14065                                                                                                  1.00
14066                                                                                                  7.50
14067                                                                                                  7.50
14068                                                                                                 37.50
14069                                                                                               1000.00
14070                                                                                               1400.00
14071                                                                                                    66
14072                                                                                               1500 mg
14073                                                                                                  7.50
14074                                                                                                 25.00
14075                                                                                                  5.00
14076                                                                                                  7.50
14077                                                                                                  7.50
14078                                                                                                 37.50
14079                                                                                               1500.00
14080                                                                                                    75
14081                                                                                                    66
14082                                                                                                375.00
14083                                                                                               1000.00
14084                                                                                                  5.00
14085                                                                                                 37.50
14086                                                                                                  7.50
14087                                                                                                500.00
14088                                                                                                  7.50
14089                                                                                                 37.50
14090                                                                                                  5.00
14091                                                                                               1000.00
14092                                                                                                  7.50
14093                                                                                                 37.50
14094                                                                                                  5.00
14095                                                                                               1000.00
14096                                                                                                 37.50
14097                                                                                                  5.00
14098                                                                                                  7.50
14099                                                                                               1000.00
14100                                                                                                 20.00
14101                                                                                                 37.50
14102                                                                                                  5.00
14103                                                                                                  7.50
14104                                                                                               1000.00
14105                                                                                                 60.00
14106                                                                          based on weight (51-100 lbs)
14107                                                                                                375.00
14108                                                                                                500.00
14109                                                                                                 50.00
14110                                                                                                 50.00
14111                                                                                                 10.00
14112                                                                                                750.00
14113                                                                                                  1.00
14114                                                                          based on weight (60-120 lbs)
14115                                                                                                750.00
14116                                                                                                  1.00
14117                                                                                                500.00
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14119                                                                                               1620.00
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14125                                                                                                  1.00
14126                                                                                                  1.00
14127                                                                                                  1.00
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14130                                                                                                  8.00
14131                                                                                          small amount
14132                                                                                               1620.00
14133                                                                                                200.00
14134                                                                                                 27.00
14135                                                                                                 16.00
14136                                                                                                  8.00
14137                                                                                                 70.00
14138                                                                                                 15.00
14139                                                                                                  8.00
14140                                                                                                 23.00
14141                                                                                                 64.80
14142                                                                                                500.00
14143                                                                                               1000.00
14144                                                                                                  1.00
14145                                                                                                  1.00
14146                                                                                                500.00
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14149                                                                                                  1.00
14150                                                                                                  1.00
14151                                                                          based on weight (50-100 lbs)
14152                                                                                                 20.00
14153                                                                                                    90
14154                                                                          based on weight (50-100 lbs)
14155                                                                                                  5.00
14156                                                                                                 80.00
14157                                                                                                 75.00
14158                                                                                                750.00
14159                                                                                                 40.00
14160                                                                                                375.00
14161                                                                                                 75.00
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14167                                                                                                  1.00
14168                                                                                                  4.50
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14176                                                                                                  3.75
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14182                                                                                                272.00
14183                                                                                                750.00
14184                                                                                                272.00
14185                                                                                                260.00
14186                                                                                                 50.00
14187                                                                                                500.00
14188                                                                                                900.00
14189                                                                                                  9.80
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14191                                                                                                272.00
14192                                                                                                136.00
14193                                                                                                 50.00
14194                                                                                                 16.00
14195                                                                                                 25.00
14196                                                                                                272.00
14197                                                                                                 80.00
14198                                                                                                100.00
14199                                                                                                300.00
14200                                                                                                 25.00
14201                                                                                                  2.00
14202                                                                                                 25.00
14203                                                                                                 60.00
14204                                                                                                  2.00
14205                                                                                                272.00
14206                                                                                                500.00
14207                                                                                                  1.00
14208                                                                                               1000.00
14209                                                                                                  0.14
14210                                                                                               1620.00
14211                                                                                               1620.00
14212                                                                                                  6.00
14213                                                                                                 20.00
14214                                                                                               1620.00
14215                                                                                                136.00
14216                                                                                                150.00
14217                                                                                                  0.20
14218                                                                                                  3.00
14219                                                                          based on weight (51-100 lbs)
14220                                                                                                 25.00
14221                                                                                           unspecified
14222                                                                                                100.00
14223                                                                                                300.00
14224                                                                                                600.00
14225                                                                                                375.00
14226                                                                                                600.00
14227                                                                                                 50.00
14228                                                                                           unspecified
14229                                                                                                200.00
14230                                                                                                  1.00
14231                                                                                                 60.00
14232                                                                                                  1.00
14233                                                                                                 10.00
14234                                                                                                  5.40
14235                                                                                                  1.50
14236                                                                                                  1.00
14237                                                                                                  1.00
14238                                                                                           unspecified
14239                                                                                                  0.50
14240                                                                                                136.00
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14243                                                                                                  66.5
14244                                                                                                136.00
14245                                                                           based on weight (22-44 lbs)
14246                                                                                                136.00
14247                                                                                                  0.09
14248                                                                                                136.00
14249                                                                                                  66.5
14250                                                                                                136.00
14251                                                                                                  66.5
14252                                                                                                136.00
14253                                                                                                 16.00
14254                                                                                                500.00
14255                                                                                                250.00
14256                                                                                                500.00
14257                                                                                                250.00
14258                                                                                                200.00
14259                                                                                                  0.45
14260                                                                                                  0.90
14261                                                                                                  1.90
14262                                                                                               1620.00
14263                                                                                                 27.00
14264                                                                                                 27.00
14265                                                                                               1620.00
14266                                                                                                272.00
14267                                                                                                227.00
14268                                                                                                272.00
14269                                                                                                  2.68
14270                                                                                                900.00
14271                                                                                                500.00
14272                                                                                                272.00
14273                                                                                                136.00
14274                                                                                                750.00
14275                                                                                                  0.20
14276                                                                                                272.00
14277                                                                                                136.00
14278                                                                                                300.00
14279                                                                                                  7.50
14280                                                                                                300.00
14281                                                                                                272.00
14282                                                                          based on weight (50-100 lbs)
14283                                                                                                  0.40
14284                                                                          based on weight (50-100 lbs)
14285                                                                                                  0.40
14286                                                                                                    75
14287                                                                                                  0.40
14288                                                                                                  0.40
14289                                                                                                  0.40
14290                                                                                                500.00
14291                                                                                           unspecified
14292                                                                                                  0.40
14293                                                                                                100.00
14294                                                                                                500.00
14295                                                                                                272.00
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14298                                                                                                    75
14299                                                                                                 23.00
14300                                                                                                 75.00
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14303                                                                                                250.00
14304                                                                                                 60.00
14305                                                                                                  1.50
14306                                                                                                  3.00
14307                                                                                                  0.70
14308                                                                                                  0.35
14309                                                                                                  0.35
14310                                                                                                500.00
14311                                                                                                  0.35
14312                                                                                                125.00
14313                                                                                                  0.25
14314                                                                                                  0.35
14315                                                                                                  0.50
14316                                                                                                  1.00
14317                                                                                                  2.00
14318                                                                                                  1.00
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14320                                                                                                500.00
14321                                                                                                  1.50
14322                                                                                                  3.00
14323                                                                                           application
14324                                                                                             3-4 drops
14325                                                                                                 60.00
14326                                                                                                 10.00
14327                                                                                                 60.00
14328                                                                                                 60.00
14329                                                                                                 60.00
14330                                                                                           unspecified
14331                                                                                                 10.00
14332                                                                                                 60.00
14333                                                                                                 10.00
14334                                                                         based on weight (20.1-55 lbs)
14335                                                                                                  2.50
14336                                                                                             2-3 drops
14337                                                                                                500.00
14338                                                                                                500.00
14339                                                                                                  1.00
14340                                                                                                  1.00
14341                                                                                                  1.00
14342                                                                                                    26
14343                                                                                                  1.00
14344                                                                                                500.00
14345                                                                                                 26.00
14346                                                                                                  1.00
14347                                                                                                250.00
14348                                                                                                 30.00
14349                                                                                                  3.00
14350                                                                                                  1.00
14351                                                                                                  1.00
14352                                                                                                  1.00
14353                                                                                                 20.00
14354                                                                                                  1.00
14355                                                                                                  1.00
14356                                                                                                  3.50
14357                                                                                                  8.00
14358                                                                                                  1.00
14359                                                                                                  0.90
14360                                                                                                272.00
14361                                                                                                300.00
14362                                                                                               1000.00
14363                                                                                                 20.00
14364                                                                                                272.00
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14368                                                                                                  1.00
14369                                                                                                  5.00
14370                                                                                                500.00
14371                                                                                                  2.00
14372                                                                                                    75
14373                                                                                       based on weight
14374                                                                                                500.00
14375                                                                                                    75
14376                                                                                       based on weight
14377                                                                                                500.00
14378                                                                             based on weight (60+ lbs)
14379                                                                                                    75
14380                                                                                       based on weight
14381                                                                                                500.00
14382                                                                                               1500.00
14383                                                                                                 23.00
14384                                                                                                 68.00
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14389                                                                                                 23.00
14390                                                                                                 68.00
14391                                                                                                100.00
14392                                                                                                  1.00
14393                                                                                                 25.00
14394                                                                                                  1.00
14395                                                                                                250.00
14396                                                                                                  1.00
14397                                                                                                  1.00
14398                                                                                                  1.00
14399                                                                                                  4.00
14400                                                                                                  1.00
14401                                                                                                  1.00
14402                                                                                                227.00
14403                                                                                               1000.00
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14409                                                                                                    66
14410                                                                                                  0.10
14411                                                                                                375.00
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14416                                                                                               1000.00
14417                                                                                                200.00
14418                                                                                                 50.00
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14422                                                                                                375.00
14423                                                                                                  0.80
14424                                                                                                 37.50
14425                                                                                                272.00
14426                                                                                           unspecified
14427                                                                                                550.00
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14430                                                                                                500.00
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14435                                                                                                100.00
14436                                                                                                 50.00
14437                                                                                                  3.00
14438                                                                                                  0.55
14439                                                                                                 10.00
14440                                                                                                  2.50
14441                                                                                                  0.25
14442                                                                                                  2.20
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14450                                                                                                500.00
14451                                                                          based on weight (51-100 lbs)
14452                                                                                                500.00
14453                                                                                                 16.00
14454                                                                                                272.00
14455                                                                                       0.25 inch strip
14456                                                                                                  2.90
14457                                                                                                272.00
14458                                                                                                272.00
14459                                                                                                136.00
14460                                                                                                272.00
14461                                                                                                136.00
14462                                                                                                  5.00
14463                                                                                                272.00
14464                                                                                                136.00
14465                                                                                                272.00
14466                                                                                                272.00
14467                                                                                                 75.00
14468                                                                                                200.00
14469                                                                                               1000.00
14470                                                                                                 20.00
14471                                                                                           unspecified
14472                                                                                                  0.40
14473                                                                                           unspecified
14474                                                                                                  0.60
14475                                                                                                400.00
14476                                                                                                  0.60
14477                                                                                           unspecified
14478                                                                                                  0.80
14479                                                                                       based on weight
14480                                                                                                  0.40
14481                                                                                                 90.00
14482                                                                                                150.00
14483                                                                                                  0.80
14484                                                                                                 10.00
14485                                                                                                500.00
14486                                                                                                 75.00
14487                                                                                                  0.80
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14491                                                                                                  1.00
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14494                                                                                                  5.00
14495                                                                          based on weight (51-100 lbs)
14496                                                                                                500.00
14497                                                                                                  5.00
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14500                                                                                                500.00
14501                                                                                                750.00
14502                                                                                               1000.00
14503                                                                                               1000.00
14504                                                                                                  3.20
14505                                                                                                272.00
14506                                                                                                  1.00
14507                                                                                                  1.00
14508                                                                                                  1.00
14509                                                                                                  1.00
14510                                                                                                 80.00
14511                                                                                                 16.00
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14514                                                                                                  1.20
14515                                                                                                 70.00
14516                                                                                                255.00
14517                                                                                                150.00
14518                                                                                                 80.00
14519                                                                                                 16.00
14520                                                                                                113.50
14521                                                                                                113.50
14522                                                                                                113.50
14523                                                                                                 70.00
14524                                                                                                 70.00
14525                                                                                                113.50
14526                                                                                                136.00
14527                                                                                                  66.5
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14530                                                                                                  0.30
14531                                                                                                  0.30
14532                                                                                                272.00
14533                                                                                                136.00
14534                                                                                                272.00
14535                                                                                                  0.30
14536                                                                                                136.00
14537                                                                                                272.00
14538                                                                                                  0.30
14539                                                                                                136.00
14540                                                                                                  0.20
14541                                                                                                  0.20
14542                                                                                                 20.00
14543                                                                                                  0.20
14544                                                                                                200.00
14545                                                                                                 20.00
14546                                                                                                  0.30
14547                                                                                 1 tablet/pill/capsule
14548                                                                                                120.00
14549                                                                                                120.00
14550                                                                                                200.00
14551                                                                                                500.00
14552                                                                                                113.50
14553                                                                                                  1.00
14554                                                                                                  1.00
14555                                                                                                  1.00
14556                                                                                                  1.00
14557                                                                                                  1.00
14558                                                                                                 15.00
14559                                                                                                  1.00
14560                                                                                               1620.00
14561                                                                                                 16.00
14562                                                                                                 108.5
14563                                                                                           unspecified
14564                                                                                                272.00
14565                                                                                                272.00
14566                                                                                               1600.00
14567                                                                                                460.00
14568                                                                                                272.00
14569                                                                                                  9.70
14570                                                                                                 75.00
14571                                                                                                300.00
14572                                                                                                 75.00
14573                                                                                                 23.00
14574                                                                                                460.00
14575                                                                                                375.00
14576                                                                          based on weight (51-100 lbs)
14577                                                                                                  66.5
14578                                                                             based on weight (25+ lbs)
14579                                                                                                170.00
14580                                                                                                200.00
14581                                                                                                  1.00
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14589                                                                                                 80.00
14590                                                                                               1000.00
14591                                                                                                750.00
14592                                                                                                 75.00
14593                                                                                                120.00
14594                                                                                                  1.00
14595                                                                                                100.00
14596                                                                                                  1.00
14597                                                                                                136.00
14598                                                                                                 10.00
14599                                                                                                272.00
14600                                                                                                 10.00
14601                                                                                           unspecified
14602                                                                                                 23.00
14603                                                                                                 80.00
14604                                                                                                 10.00
14605                                                                 25 milbemycin oxime, 228 praziquantel
14606                                                                                                 80.00
14607                                                                                                 10.00
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14609                                                                                                 10.00
14610                                                                                                500.00
14611                                                                                                  1.00
14612                                                                                                 10.00
14613                                                                                                500.00
14614                                                                                                 75.00
14615                                                                                                113.50
14616                                                                                                  2.00
14617                                                                                                250.00
14618                                                                                                500.00
14619                                                                                                227.00
14620                                                                                                500.00
14621                                                                                                  2.25
14622                                                                                                272.00
14623                                                                                                  66.5
14624                                                                                                  2.00
14625                                                                                                  8.00
14626                                                                                                 20.00
14627                                                                                                272.00
14628                                                                                                272.00
14629                                                                                                200.00
14630                                                                                                272.00
14631                                                                                                    66
14632                                                                                                 15.00
14633                                                                                                 20.00
14634                                                                                                 75.00
14635                                                                                                  4.00
14636                                                                                                272.00
14637                                                                           based on weight (44-88 lbs)
14638                                                                                                500.00
14639                                                                                                150.00
14640                                                                                                150.00
14641                                                                                                204.00
14642                                                                                                500.00
14643                                                                                                  3.00
14644                                                                                                  2.00
14645                                                                                              27, 1620
14646                                                                                                262.00
14647                                                                                                136.00
14648                                                                                                204.00
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14651                                                                                                272.00
14652                                                                                                136.00
14653                                                                                               1000.00
14654                                                                                          0.1%, 1%, 2%
14655                                                                                                750.00
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14661                                                                                               1000.00
14662                                                                                                 10.00
14663                                                                                                  3.75
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14666                                                                                               1000.00
14667                                                                                                 10.00
14668                                                                                               1000.00
14669                                                                                                 10.00
14670                                                                                               1000.00
14671                                                                                                  7.50
14672                                                                                                 16.00
14673                                                                                                200.00
14674                                                                                                 23.00
14675                                                                                                136.00
14676                                                                                                  3.75
14677                                                                                                750.00
14678                                                                                                500.00
14679                                                                                                 16.00
14680                                                                                                  1.00
14681                                                                                                  1.50
14682                                                                                                  3.75
14683                                                                                                300.00
14684                                                                                                  3.75
14685                                                                                                  0.60
14686                                                                                                  1.00
14687                                                                                                 16.00
14688                                                                                                  3.75
14689                                                                                                  4.00
14690                                                                                                300.00
14691                                                                                                  3.75
14692                                                                                                300.00
14693                                                                                                  3.25
14694                                                                                                500.00
14695                                                                                                200.00
14696                                                                                                200.00
14697                                                                                          small amount
14698                                                                                                 37.50
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14703                                                                                                400.00
14704                                                                                                 60.00
14705                                                                                                272.00
14706                                                                                                320.00
14707                                                                                                750.00
14708                                                                                                 23.00
14709                                                                                                 50.00
14710                                                                                                  1.00
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14714                                                                                                750.00
14715                                                                                               1000.00
14716                                                                                                320.00
14717                                                                                                500.00
14718                                                                                                  3.00
14719                                                                                                  1.00
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14724                                                                                                  2.00
14725                                                                                                 75.00
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14729                                                                                               1000.00
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14732                                                                                                  0.40
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14735                                                                                                  0.40
14736                                                                                                  0.40
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14739                                                                                                  2.40
14740                                                                                                  0.10
14741                                                                                                 20.00
14742                                                                                                750.00
14743                                                                                                250.00
14744                                                                                       based on weight
14745                                                                                                 23.00
14746                                                                                                    66
14747                                                                                                 23.00
14748                                                                                            5-10 drops
14749                                                                                                500.00
14750                                                                                                300.00
14751                                                                                                500.00
14752                                                                                                 50.00
14753                                                                                                150.00
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14761                                                                                                 60.00
14762                                                                                                  1.00
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14765                                                                                                 30.00
14766                                                                                                 75.00
14767                                                                                                 75.00
14768                                                                                                  1.00
14769                                                                                                200.00
14770                                                                                                  1.00
14771                                                                                                  1.00
14772                                                                                                272.00
14773                                                                                                136.00
14774                                                                                                 75.00
14775                                                                                           unspecified
14776                                                                                                200.00
14777                                                                                           unspecified
14778                                                                                           unspecified
14779                                                                                                 31.00
14780                                                                                                 75.00
14781                                                                                                  1.00
14782                                                                                                272.00
14783                                                                                                136.00
14784                                                                                                272.00
14785                                                                                                 80.00
14786                                                                                                 16.00
14787                                                                                                200.00
14788                                                                                                200.00
14789                                                                                                136.00
14790                                                                                                272.00
14791                                                                                                136.00
14792                                                                                                 16.00
14793                                                                                                100.00
14794                                                                                                100.00
14795                                                                                                 75.00
14796                                                                                                  0.50
14797                                                                                                  1.00
14798                                                                                                  1.00
14799                                                                                                200.00
14800                                                                                                  1.00
14801                                                                                                 16.00
14802                                                                                                 80.00
14803                                                                                                100.00
14804                                                                                                  1.00
14805                                                                                                  1.00
14806                                                                                                  1.00
14807                                                                                                 16.00
14808                                                                                                100.00
14809                                                                                                 75.00
14810                                                                                                300.00
14811                                                                                                500.00
14812                                                                                                 16.00
14813                                                                                                100.00
14814                                                                                                  1.00
14815                                                                                                 75.00
14816                                                                                                200.00
14817                                                                                                800.00
14818                                                                                                500.00
14819                                                                                                  1.00
14820                                                                                                 80.00
14821                                                                                                  3.40
14822                                                                                                 15.00
14823                                                                                                  1.40
14824                                                                                                 75.00
14825                                                                                              10000.00
14826                                                                                                  0.63
14827                                                                                                250.00
14828                                                                                                 32.10
14829                                                                                                 20.00
14830                                                                                                 80.00
14831                                                                                                 30.00
14832                                                                                                 20.00
14833                                                                                              350, 900
14834                                                                                              27, 1620
14835                                                                                                  9.80
14836                                                                                                250.00
14837                                                                                                250.00
14838                                                                                              350, 900
14839                                                                                               23, 228
14840                                                                                                  2.50
14841                                                                                                272.00
14842                                                                                                 23.00
14843                                                                                               1620.00
14844                                                                                                  1.00
14845                                                                                                  1.00
14846                                                                                                  5.00
14847                                                                                                  1.00
14848                                                                                                  1.00
14849                                                                                                100.00
14850                                                                                                  4.00
14851                                                                                                  2.00
14852                                                                                                 60.00
14853                                                                                                  3.00
14854                                                                                                500.00
14855                                                                                                500.00
14856                                                                                                 20.00
14857                                                                                           unspecified
14858                                                                                               23, 460
14859                                                                                                 20.00
14860                                                                                                170.00
14861                                                                                                    75
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14865                                                                                                 23.00
14866                                                                                                  0.48
14867                                                                                         23 mg, 228 mg
14868                                                                                                900.00
14869                                                                                                  1.00
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14872                                                                                                875.00
14873                                                                                                 50.00
14874                                                                                                    75
14875                                                                                                    75
14876                                                                                                 60.00
14877                                                                                                500.00
14878                                                                                           unspecified
14879                                                                                                200.00
14880                                                                                                 37.50
14881                                                                                                136.00
14882                                                                                                136.00
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14885                                                                                                 22.70
14886                                                                                                250.00
14887                                                                                                170.00
14888                                                                                                454.00
14889                                                                                               1000.00
14890                                                                                                 11.35
14891                                                                                                 85.00
14892                                                                                                125.00
14893                                                                                                227.00
14894                                                                                                272.00
14895                                                                                                136.00
14896                                                                                                500.00
14897                                                                                                272.00
14898                                                                                                136.00
14899                                                                                           unspecified
14900                                                                                                300.00
14901                                                                                                 75.00
14902                                                                                                  0.50
14903                                                                                                100.00
14904                                                                                                500.00
14905                                                                                                120.00
14906                                                                                               1700.00
14907                                                                                                 30 mg
14908                                                                                                500.00
14909                                                                                                500.00
14910                                                                                                  7.50
14911                                                                                              27, 1620
14912                                                                                                500.00
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14915                                                                                                136.00
14916                                                                                                112.50
14917                                                                                                272.00
14918                                                                                                272.00
14919                                                                                                  9.80
14920                                                                                                 90.00
14921                                                                                                900.00
14922                                                                                               3540.00
14923                                                                                                 75.00
14924                                                                                                 23.00
14925                                                                                                 80.00
14926                                                                                                500.00
14927                                                                                                 10.00
14928                                                                                                    90
14929                                                                                                 50.00
14930                                                                                                150.00
14931                                                                                                 10.00
14932                                                                                                 10.00
14933                                                                                                 10.00
14934                                                                          based on weight (60-120 lbs)
14935                                                                                                 16.00
14936                                                                                                 10.00
14937                                                                                              12000.00
14938                                                                                                  3.00
14939                                                                                                200.00
14940                                                                                               1000.00
14941                                                                                                500.00
14942                                                                                                  0.50
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14945                                                                                                 10.00
14946                                                                                                  1.00
14947                                                                                                  1.00
14948                                                                                               1000.00
14949                                                                                           unspecified
14950                                                                                                 17.00
14951                                                                                              20000.00
14952                                                                                                 90.00
14953                                                                                                  1.00
14954                                                                                                 80.00
14955                                                                                                  1.00
14956                                                                                                  1.00
14957                                                                                                100.00
14958                                                                                                 90.00
14959                                                                                                562.50
14960                                                                                                 90.00
14961                                                                                                  5.00
14962                                                                                                 60.00
14963                                                                                                  1.00
14964                                                                                                 80.00
14965                                                                                                 60.00
14966                                                                                                272.00
14967                                                                                                 50.00
14968                                                                                                 50.00
14969                                                                                             50 mcg/kg
14970                                                                                                 50.00
14971                                                                                                  1.00
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14980                                                                                                  1.00
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14984                                                                                                 37.50
14985                                                                                                500.00
14986                                                                                                300.00
14987                                                                                                250.00
14988                                                                                                 15.00
14989                                                                                                 50.00
14990                                                                                                 20.00
14991                                                                                                272.00
14992                                                                                                 50.00
14993                                                                                                 25.00
14994                                                                                                 10.00
14995                                                                                                600.00
14996                                                                                                 13.00
14997                                                                                                 50.00
14998                                                                                                 50.00
14999                                                                                             50 mcg/kg
15000                                                                                                 50.00
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15003                                                                                                  2.68
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15012                                                                                                  0.60
15013                                                                                                 20.00
15014                                                                                                  0.60
15015                                                                                                  1.40
15016                                                                                                  1.30
15017                                                                          based on weight (50-100 lbs)
15018                                                                                                 50.00
15019                                                                                                 75.00
15020                                                                                                375.00
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15024                                                                                                 23.00
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15031                                                                                                250.00
15032                                                                                                136.00
15033                                                                                                  0.60
15034                                                                                                  0.70
15035                                                                                           unspecified
15036                                                                                           unspecified
15037                                                                                                  0.45
15038                                                                                                 60.00
15039                                                                                                500.00
15040                                                                                                 75.00
15041                                                                                                  1.30
15042                                                                                                 60.00
15043                                                                                                  0.65
15044                                                                                                 60.00
15045                                                                                       based on weight
15046                                                                                                810.00
15047                                                                                                 50.00
15048                                                                          based on weight (50-100 lbs)
15049                                                                                                200.00
15050                                                                                                  1.00
15051                                                                                                250.00
15052                                                                                                  8.00
15053                                                                                                500.00
15054                                                                                                  8.00
15055                                                                                           unspecified
15056                                                                                                 20.00
15057                                                                                               1000.00
15058                                                                                                272.00
15059                                                                          based on weight (51-100 lbs)
15060                                                                                                272.00
15061                                                                          based on weight (51-100 lbs)
15062                                                                                                272.00
15063                                                                                                  2.68
15064                                                                                                272.00
15065                                                                                                 20.00
15066                                                                                                 16.00
15067                                                                                                272.00
15068                                                                                               1000.00
15069                                                                                                500.00
15070                                                                                                 60.00
15071                                                                                                204.00
15072                                                                                                272.00
15073                                                                                                200.00
15074                                                                                                100.00
15075                                                                                                272.00
15076                                                                                                272.00
15077                                                                                           unspecified
15078                                                                                                100.00
15079                                                                                                  2.00
15080                                                                                                  2.00
15081                                                                                                  0.50
15082                                                                                                272.00
15083                                                                                                  1.00
15084                                                                                                  1.30
15085                                                                                                 13.00
15086                                                                                                  1.60
15087                                                                                                  1.61
15088                                                                                                  7.10
15089                                                                                                  1.00
15090                                                                                                  1.80
15091                                                                                                  1.00
15092                                                                                                300 mg
15093                                                                                                360.00
15094                                                                                                500.00
15095                                                                                                 75.00
15096                                                                                                320.00
15097                                                                                                385.00
15098                                                                                                  4.00
15099                                                                                                  8.00
15100                                                                                                130.00
15101                                                                                                  1.80
15102                                                                                          small amount
15103                                                                                                300.00
15104                                                                                                  1.00
15105                                                                                                  7.00
15106                                                                                                  1.60
15107                                                                                                  1.70
15108                                                                                                  1.00
15109                                                                                                  7.00
15110                                                                                                  8.00
15111                                                                                                150.00
15112                                                                                                150.00
15113                                                                                                300.00
15114                                                                                                  8.00
15115                                                                                                150.00
15116                                                                                                300.00
15117                                                                                                 75.00
15118                                                                                                100.00
15119                                                                                                500.00
15120                                                                                                 25.00
15121                                                                                                480.00
15122                                                                                               1500.00
15123                                                                                                960.00
15124                                                                                                  1.00
15125                                                                                                  1.00
15126                                                                                                960.00
15127                                                                                               1500.00
15128                                                                                                  1.00
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15133                                                                                                  8.00
15134                                                                                                 15.00
15135                                                                                                 50.00
15136                                                                                                 50.00
15137                                                                                              2 sprays
15138                                                                                                200.00
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15141                                                                                                  0.70
15142                                                                                                400.00
15143                                                                                                250.00
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15146                                                                                                 16.00
15147                                                                                                200.00
15148                                                                                                 16.00
15149                                                                                                 50.00
15150                                                                                       based on weight
15151                                                                                       based on weight
15152                                                                                                 16.00
15153                                                                                                500.00
15154                                                                                                500.00
15155                                                                                           unspecified
15156                                                                                                437.00
15157                                                                                                  2.00
15158                                                                                                200.00
15159                                                                                                300.00
15160                                                                                                 75.00
15161                                                                                               1000.00
15162                                                                                                600.00
15163                                                                                                 75.00
15164                                                                                                200.00
15165                                                                                                600.00
15166                                                                                                 75.00
15167                                                                                                272.00
15168                                                                                                227.00
15169                                                                                                125.00
15170                                                                                 1 tablet/pill/capsule
15171                                                                                                375.00
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15175                                                                                                  1.50
15176                                                                                                200.00
15177                                                                                                200.00
15178                                                                                                 66.00
15179                                                                           based on weight (25-75 lbs)
15180                                                                                                  0.67
15181                                                                                                  2.40
15182                                                                                                  1.20
15183                                                                                                  2.00
15184                                                                                                750 mg
15185                                                                                                500.00
15186                                                                                                 10.00
15187                                                                                                375.00
15188                                                                                                200.00
15189                                                                                                  1.00
15190                                                                                                200.00
15191                                                                                                300.00
15192                                                                                                600.00
15193                                                                                                272.00
15194                                                                                               1000.00
15195                                                                                               1000.00
15196                                                                                           application
15197                                                                                          small amount
15198                                                                                                272.00
15199                                                                                                272.00
15200                                                                                                  2.68
15201                                                                                                  0.02
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15204                                                                                                 75.00
15205                                                                                                272.00
15206                                                                                                 50.00
15207                                                                                                272.00
15208                                                                                                272.00
15209                                                                           based on weight (44-88 lbs)
15210                                                                                                 50.00
15211                                                                                                  6.00
15212                                                                                                 50.00
15213                                                                                           unspecified
15214                                                                                                 20.00
15215                                                                                                300.00
15216                                                                                                 50.00
15217                                                                                                 20.00
15218                                                                                                300.00
15219                                                                                                 50.00
15220                                                                                                  1.00
15221                                                                                                100.00
15222                                                                                                 40.00
15223                                                                                                500.00
15224                                                                                                  1.00
15225                                                                                                  1.00
15226                                                                                                227.00
15227                                                                                                  1.00
15228                                                                                                  1.00
15229                                                                                                 20.00
15230                                                                                                500.00
15231                                                                                                 50.00
15232                                                                                                 23.00
15233                                                                                                136.00
15234                                                                                                 23.00
15235                                                                                                136.00
15236                                                                                                250.00
15237                                                                                                312.50
15238                                                                                                  5.50
15239                                                                                                 23.00
15240                                                                                                 68.00
15241                                                                                                500.00
15242                                                                                                136.00
15243                                                                                                222.00
15244                                                                                                0.3, 1
15245                                                                                                150.00
15246                                                                                                300.00
15247                                                                                                  2.00
15248                                                                                                272.00
15249                                                                                                272.00
15250                                                                                       based on weight
15251                                                                                                  1.00
15252                                                                                               4 drops
15253                                                                                                227 mg
15254                                                                                                  0.50
15255                                                                                                  4.00
15256                                                                                       based on weight
15257                                                                                                  0.50
15258                                                                                                  0.50
15259                                                                              1.25 tablet/pill/capsule
15260                                                                                                 60.00
15261                                                                                                  6.00
15262                                                                                                100.00
15263                                                                                                  1.14
15264                                                                                                  0.50
15265                                                                                                272.00
15266                                                                                                 68.00
15267                                                                                                  0.50
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15270                                                                                                  0.50
15271                                                                                                450.00
15272                                                                                                 20.00
15273                                                                                                450.00
15274                                                                                           unspecified
15275                                                                                                 60.00
15276                                                                                                  1.00
15277                                                                                               1000.00
15278                                                                                                  2.00
15279                                                                                                  1.00
15280                                                                                                200.00
15281                                                                                                720.00
15282                                                                                                  1.00
15283                                                                                                720.00
15284                                                                                                500.00
15285                                                                                                100.00
15286                                                                                                100.00
15287                                                                                                750.00
15288                                                                                                  3.00
15289                                                                                                500.00
15290                                                                                                500.00
15291                                                                                                850.00
15292                                                                                                375.00
15293                                                                                                250.00
15294                                                                                                270.00
15295                                                                                                  1.00
15296                                                                                                 75.00
15297                                                                                                  1.00
15298                                                                                                200.00
15299                                                                                                 10.00
15300                                                                                                  1.00
15301                                                                                                500.00
15302                                                                                                340.00
15303                                                                                                  4.00
15304                                                                                                  3.50
15305                                                                                                 70.00
15306                                                                                                  0.40
15307                                                                                                 50.00
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15312                                                                                                  0.40
15313                                                                                                 50.00
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15316                                                                                                  0.40
15317                                                                          based on weight (50-100 lbs)
15318                                                                                                  0.40
15319                                                                                 1 tablet/pill/capsule
15320                                                                                                  0.40
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15324                                                                                                  0.40
15325                                                                                                  0.40
15326                                                                                                375.00
15327                                                                                                  0.40
15328                                                                                                 60.00
15329                                                                                                 20.00
15330                                                                                                 60.00
15331                                                                                                  0.40
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15335                                                                                                 15.00
15336                                                                                                 15.00
15337                                                                                                    90
15338                                                                                                  1.00
15339                                                                                              27, 1620
15340                                                                                               1620.00
15341                                                                                                 75.00
15342                                                                                                 10.00
15343                                                                                               1620.00
15344                                                                                                 15.00
15345                                                                                              27, 1620
15346                                                                                                 15.00
15347                                                                                                 30.00
15348                                                                                              27, 1620
15349                                                                                                 15.00
15350                                                                                                  1.00
15351                                                                                                900.00
15352                                                                                                 10.60
15353                                                                                                 10.00
15354                                                                                                  2.00
15355                                                                                                  1.00
15356                                                                                                 15.00
15357                                                                                                 10.00
15358                                                                                                900.00
15359                                                                                                  9.00
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15364                                                                                                500.00
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15368                                                                                                 23.00
15369                                                                                                 23.00
15370                                                                                                136.00
15371                                                                                                 23.00
15372                                                                                                  0.09
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15380                                                                                                 20.00
15381                                                                                                  1.00
15382                                                                                                  2.60
15383                                                                                           unspecified
15384                                                                                           unspecified
15385                                                                                                500.00
15386                                                                                                300.00
15387                                                                                                100.00
15388                                                                                                 50.00
15389                                                                                                250.00
15390                                                                                                 60.00
15391                                                                                                 23.00
15392                                                                                                 40.00
15393                                                                                                 20.00
15394                                                                                                272.00
15395                                                                                                  9.80
15396                                                                                                 50.00
15397                                                                                                272.00
15398                                                                                                 24.00
15399                                                                                                272.00
15400                                                                                                  5.00
15401                                                                                                 50.00
15402                                                                                          small amount
15403                                                                                                 30.00
15404                                                                                                500.00
15405                                                                                                 10.00
15406                                                                                                500.00
15407                                                                                                272.00
15408                                                                                                375.00
15409                                                                                                250.00
15410                                                                                                600.00
15411                                                                                                  3.00
15412                                                                                             22.7, 272
15413                                                                                                375.00
15414                                                                                                 48.00
15415                                                                                                600.00
15416                                                                                                  3.00
15417                                                                                                272.00
15418                                                                                                272.00
15419                                                                                                 20.00
15420                                                                                                132.00
15421                                                                                                375.00
15422                                                                                                 10.00
15423                                                                                                 10.00
15424                                                                                                272.00
15425                                                                                                250.00
15426                                                                                                 48.00
15427                                                                                                 50.00
15428                                                                                                250.00
15429                                                                                                 50.00
15430                                                                                                 20.00
15431                                                                                                 10.00
15432                                                                                                 60.00
15433                                                                                                 68.00
15434                                                                                                 16.08
15435                                                                                                  7.00
15436                                                                                                 30.00
15437                                                                                                250.00
15438                                                                                                 30.00
15439                                                                                                  7.00
15440                                                                                                  1.00
15441                                                                                           unspecified
15442                                                                                                  1.00
15443                                                                                                300.00
15444                                                                                                  5.00
15445                                                                                           unspecified
15446                                                                                                 20.00
15447                                                                                                272.00
15448                                                                                 1 tablet/pill/capsule
15449                                                                                                272.00
15450                                                                                                272.00
15451                                                                          based on weight (51-100 lbs)
15452                                                                                                750.00
15453                                                                                           unspecified
15454                                                                                           unspecified
15455                                                                                                    75
15456                                                                                                    75
15457                                                                                                 75.00
15458                                                                                                 75.00
15459                                                                                                200.00
15460                                                                                                 75.00
15461                                                                                                 75.00
15462                                                                                                625.00
15463                                                                                                 20.00
15464                                                                                                272.00
15465                                                                                                300.00
15466                                                                                                  0.50
15467                                                                                                750.00
15468                                                                                                272.00
15469                                                                                                136.00
15470                                                                                                  1.00
15471                                                                                                500.00
15472                                                                                                250.00
15473                                                                                                 16.00
15474                                                                                                272.00
15475                                                                                                136.00
15476                                                                                                 16.00
15477                                                                                                  1.00
15478                                                                                                500.00
15479                                                                                                250.00
15480                                                                                                200.00
15481                                                                                                272.00
15482                                                                                                136.00
15483                                                                                                 16.00
15484                                                                                                  1.00
15485                                                                                                272.00
15486                                                                                                136.00
15487                                                                                                272.00
15488                                                                                                136.00
15489                                                                                                  0.57
15490                                                                                                 16.00
15491                                                                                                150.00
15492                                                                                               1000.00
15493                                                                                                400.00
15494                                                                                                272.00
15495                                                                                                136.00
15496                                                                                                900.00
15497                                                                                                100.00
15498                                                                                                  2.00
15499                                                                                                272.00
15500                                                                                                136.00
15501                                                                                                 20.00
15502                                                                                                300.00
15503                                                                                                150.00
15504                                                                                                500.00
15505                                                                                                  1.00
15506                                                                                                200.00
15507                                                                                                  1.00
15508                                                                                                150.00
15509                                                                                                272.00
15510                                                                                                272.00
15511                                                                                                272.00
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15514                                                                                                272.00
15515                                                                         based on weight (44.1-88 lbs)
15516                                                                                                250.00
15517                                                                                                136.00
15518                                                                                                  1.00
15519                                                                                                272.00
15520                                                                                               1000.00
15521                                                                                                272.00
15522                                                                                                 50.00
15523                                                                                                 50.00
15524                                                                                 1 tablet/pill/capsule
15525                                                                                                272.00
15526                                                                                               1000.00
15527                                                                                                    75
15528                                                                                               23, 228
15529                                                                                               1000.00
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15532                                                                                               1000.00
15533                                                                              based on weight (25 lbs)
15534                                                                                                 75.00
15535                                                                                                 75.00
15536                                                                                                300.00
15537                                                                                                 50.00
15538                                                                                                 15.00
15539                                                                                                 75.00
15540                                                                                                500.00
15541                                                                                                750.00
15542                                                                                                 60.00
15543                                                                                                  3.00
15544                                                                                                 75.00
15545                                                                                                    38
15546                                                                                                136.00
15547                                                                                                  4.40
15548                                                                                                227.00
15549                                                                                                113.50
15550                                                                                                 50.00
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15553                                                                                                272.00
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15557                                                                                                150.00
15558                                                                                                  62.5
15559                                                                                                800.00
15560                                                                                              45327.00
15561                                                                                                  2.20
15562                                                                                                  3.00
15563                                                                                       0.25 inch strip
15564                                                                                                375.00
15565                                                                                                136.00
15566                                                                                                 30.00
15567                                                                                                 15.00
15568                                                                                                100.00
15569                                                                                                 50.00
15570                                                                                                  0.30
15571                                                                                                500.00
15572                                                                                                 23.00
15573                                                                                               1000.00
15574                                                                                                  1.00
15575                                                                                                375.00
15576                                                                                                  1.00
15577                                                                                                  6.00
15578                                                                                                125.00
15579                                                                                                125.00
15580                                                                                                 50.00
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15588                                                                                                  66.5
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15595                                                                                                 18.00
15596                                                                                                 75.00
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15605                                                                                                150.00
15606                                                                                               1000.00
15607                                                                                                200.00
15608                                                                                                 75.00
15609                                                                                                300.00
15610                                                                                                300.00
15611                                                                                                  5.00
15612                                                                                                272.00
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15615                                                                                                  3.00
15616                                                                                               272 mcg
15617                                                                                                272.00
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15619                                                                                                  0.91
15620                                                                                                 23.00
15621                                                                                                500.00
15622                                                                                                500.00
15623                                                                                                 50.00
15624                                                                                                 50.00
15625                                                                                                775.00
15626                                                                                                250.00
15627                                                                                                 23.00
15628                                                                                                500.00
15629                                                                                                 75.00
15630                                                                                                750.00
15631                                                                                                200.00
15632                                                                                               1000.00
15633                                                                                              tapering
15634                                                                                                 23.00
15635                                                                                                 23.00
15636                                                                          based on weight (51-100 lbs)
15637                                                                                                204.00
15638                                                                                                400.00
15639                                                                                                100.00
15640                                                                                                200.00
15641                                                                                                400.00
15642                                                                                                100.00
15643                                                                                                500.00
15644                                                                                                 10.00
15645                                                                                                  2.00
15646                                                                                                250.00
15647                                                                                                200.00
15648                                                                                                200.00
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15651                                                                                                200.00
15652                                                                                                  5.00
15653                                                                                                 50.00
15654                                                                                                 10.00
15655                                                                                                 10.00
15656                                                                                                 56.75
15657                                                                                                102.00
15658                                                                                                272.00
15659                                                                                                  1.00
15660                                                                                                  5.00
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15664                                                                                                100.00
15665                                                                                                  1.00
15666                                                                                                  5.00
15667                                                                                          small amount
15668                                                                                                  2.00
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15671                                                                                                 15.00
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15676                                                                                                120.00
15677                                                                                                  1.00
15678                                                                                               1000.00
15679                                                                                                  1.00
15680                                                                                                  1.00
15681                                                                                               1000.00
15682                                                                                                300.00
15683                                                                                                  1.00
15684                                                                                                900.00
15685                                                                                                 75.00
15686                                                                                                 95.00
15687                                                                                                100.00
15688                                                                                                  1.00
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15694                                                                                                  1.00
15695                                                                                                  1.00
15696                                                                                                250.00
15697                                                                                                272.00
15698                                                                                                272.00
15699                                                                                 1 tablet/pill/capsule
15700                                                                                                227.00
15701                                                                                           unspecified
15702                                                                                                  4.00
15703                                                                                                  1.28
15704                                                                                                  4.00
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15708                                                                                                500.00
15709                                                                                                750.00
15710                                                                                                 50.00
15711                                                                                                  1.00
15712                                                                                           unspecified
15713                                                                                                  2.00
15714                                                                                                  0.75
15715                                                                                              27, 1620
15716                                                                                                  0.75
15717                                                                                                  2.00
15718                                                                                                  1.00
15719                                                                                                272.00
15720                                                                                                136.00
15721                                                                                                  0.75
15722                                                                                                  2.00
15723                                                                                                 70.00
15724                                                                                                 70.00
15725                                                                                                272.00
15726                                                                                                136.00
15727                                                                                                  2.00
15728                                                                                                272.00
15729                                                                                                136.00
15730                                                                                                  3.00
15731                                                                                                  3.00
15732                                                                                                  2.00
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15734                                                                                                300.00
15735                                                                                                  2.00
15736                                                                                                  2.00
15737                                                                                                  8.00
15738                                                                                                300.00
15739                                                                                                  2.00
15740                                                                                                  0.75
15741                                                                                                  9.00
15742                                                                                                300.00
15743                                                                                                 50.00
15744                                                                                                  0.75
15745                                                                                                  0.75
15746                                                                                                  1.00
15747                                                                                                  1.50
15748                                                                                                  1.00
15749                                                                                                  2.00
15750                                                                                           unspecified
15751                                                                                                 10.00
15752                                                                                                750.00
15753                                                                                                  6.00
15754                                                                                                  5.00
15755                                                                                                  1.00
15756                                                                                                  1.00
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15759                                                                                                272.00
15760                                                                                                136.00
15761                                                                                                136.00
15762                                                                                                136.00
15763                                                                                                136.00
15764                                                                                                150.00
15765                                                                                                500.00
15766                                                                                                960.00
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15771                                                                                                 16.00
15772                                                                                                 75.00
15773                                                                                                136.00
15774                                                                                                114.00
15775                                                                                                114.00
15776                                                                                                500 mg
15777                                                                                                  1.50
15778                                                                                           unspecified
15779                                                                                                500.00
15780                                                                                                  1.50
15781                                                                                           unspecified
15782                                                                                           unspecified
15783                                                                                                  1.00
15784                                                                                                  1.00
15785                                                                                                  1.00
15786                                                                                                  1.00
15787                                                                                                 30 mg
15788                                                                                                   1.5
15789                                                                                                500.00
15790                                                                                           unspecified
15791                                                                                                  7.50
15792                                                                                                200.00
15793                                                                                                  7.50
15794                                                                                                  3.75
15795                                                                                                500.00
15796                                                                                              125, 500
15797                                                                                                136.00
15798                                                                                                500.00
15799                                                                                           unspecified
15800                                                                                                  1.50
15801                                                                                                500.00
15802                                                                                                 15.00
15803                                                                                                272.00
15804                                                                                                  2.68
15805                                                                                                 15.00
15806                                                                                                 20.00
15807                                                                                                  2.68
15808                                                                                                  1.00
15809                                                                                                750.00
15810                                                                                                  6.50
15811                                                                           based on weight (44-88 lbs)
15812                                                                                                750.00
15813                                                                                                  5.40
15814                                                                                                  2.00
15815                                                                        based on weight (50.1-100 lbs)
15816                                                                                                    66
15817                                                                                                 50.00
15818                                                                          based on weight (51-100 lbs)
15819                                                                                                  1.00
15820                                                                                                  1.00
15821                                                                                                272.00
15822                                                                                                  2.68
15823                                                                                                500.00
15824                                                                                                 50.00
15825                                                                                                150.00
15826                                                                                                 15.00
15827                                                                                                  5.00
15828                                                                                                  6.30
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15830                                                                                                  5.00
15831                                                                                                  7.50
15832                                                                                                350.00
15833                                                                                                170.00
15834                                                                                                272.00
15835                                                                                                227.00
15836                                                                                                 68.00
15837                                                                                                227.00
15838                                                                                                 68.00
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15843                                                                                                 50.00
15844                                                                          based on weight (51-100 lbs)
15845                                                                                               1000.00
15846                                                                                                100.00
15847                                                                                                750.00
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15851                                                                                               1400.00
15852                                                                                                 75.00
15853                                                                                                 15.00
15854                                                                                                120.00
15855                                                                                                  1.20
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15865                                                                                               1000.00
15866                                                                                                 23.00
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15872                                                                                               1000.00
15873                                                                                                200.00
15874                                                                                               1500.00
15875                                                                                                  2.00
15876                                                                                               1500.00
15877                                                                                                251.00
15878                                                                                                100.00
15879                                                                                               1500.00
15880                                                                                                  2.00
15881                                                                                               1000.00
15882                                                                                                 23.00
15883                                                                                                  0.57
15884                                                                                                 50.00
15885                                                                                               1000.00
15886                                                                                           unspecified
15887                                                                                                  1.00
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15893                                                                                                 50.00
15894                                                                                                  1.00
15895                                                                                                  1.00
15896                                                                                                  1.00
15897                                                                                                240.00
15898                                                                                                250.00
15899                                                                                                  1.00
15900                                                                                                  1.00
15901                                                                                                 62.50
15902                                                                                                250.00
15903                                                                                                  1.00
15904                                                                                                  4.00
15905                                                                                                  3.00
15906                                                                                                 37.50
15907                                                                                          small amount
15908                                                                                                  1.00
15909                                                                                                  1.00
15910                                                                                                  1.00
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15913                                                                                                 20.00
15914                                                                                                125.00
15915                                                                                               1000.00
15916                                                                                                  1.00
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15938                                                                                                 20.00
15939                                                                                                  3.00
15940                                                                                                  1.00
15941                                                                                                 20.00
15942                                                                                                 10.00
15943                                                                                                  3.00
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15946                                                                                                  2.00
15947                                                                                              10000.00
15948                                                                                                  1.00
15949                                                                                                  1.00
15950                                                                                                  1.00
15951                                                                                                 80.00
15952                                                                                                 80.00
15953                                                                                                300.00
15954                                                                                                  8.00
15955                                                                                                  0.25
15956                                                                                                  3.00
15957                                                                                                 16.00
15958                                                                                                300.00
15959                                                                                                  0.50
15960                                                                                               1000.00
15961                                                                                                  3.00
15962                                                                                                  0.13
15963                                                                                                300.00
15964                                                                                                 80.00
15965                                                                                                150.00
15966                                                                                                  3.00
15967                                                                                                272.00
15968                                                                                                 50.00
15969                                                                                                  4.00
15970                                                                                                  4.00
15971                                                                                                500.00
15972                                                                                                  1.00
15973                                                                                               1620.00
15974                                                                                                 25.00
15975                                                                                                100.00
15976                                                                                                272.00
15977                                                                                                240.00
15978                                                                                                 37.50
15979                                                                                                 75.00
15980                                                                                                500.00
15981                                                                          based on weight (51-100 lbs)
15982                                                                                                 50.00
15983                                                                                          small amount
15984                                                                                                 16.00
15985                                                                                                 16.00
15986                                                                           based on weight (56-95 lbs)
15987                                                                                                 20.00
15988                                                                                                 10.00
15989                                                                                                 10.00
15990                                                                                                 10.00
15991                                                                                                150.00
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15994                                                                                                125.00
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16001                                                                                                  1.00
16002                                                                                                  1.00
16003                                                                                                  1.00
16004                                                                                                  8.00
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16006                                                                                               1000.00
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16010                                                                                                 20.00
16011                                                                                                  1.00
16012                                                                                                  1.00
16013                                                                                                  1.00
16014                                                                                                  0.75
16015                                                                                                250.00
16016                                                                                           application
16017                                                                                                250.00
16018                                                                                                250.00
16019                                                                                                272.00
16020                                                                                                  8.04
16021                                                                                                272.00
16022                                                                                                500.00
16023                                                                                                272.00
16024                                                                                                272.00
16025                                                                                                200.00
16026                                                                                          small amount
16027                                                                                                 60.00
16028                                                                                                  0.50
16029                                                                                                200.00
16030                                                                                                 60.00
16031                                                                                                 60.00
16032                                                                                                350.00
16033                                                                                       based on weight
16034                                                                                                750.00
16035                                                                                                    66
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16040                                                                                                750.00
16041                                                                                                 10.00
16042                                                                                                500.00
16043                                                                                                  2.00
16044                                                                                                300.00
16045                                                                                                500.00
16046                                                                                                375.00
16047                                                                                                 62.50
16048                                                                                                125.00
16049                                                                                                272.00
16050                                                                                                  8.00
16051                                                                                                375.00
16052                                                                                       based on weight
16053                                                                                       based on weight
16054                                                                                                  5.00
16055                                                                                                750.00
16056                                                                                                500.00
16057                                                                                                  4.02
16058                                                                                                500.00
16059                                                                                                300.00
16060                                                                                                227.00
16061                                                                                                 68.00
16062                                                                                                272.00
16063                                                                                                 68.00
16064                                                                                                500.00
16065                                                                                                  4.00
16066                                                                                                200.00
16067                                                                                                272.00
16068                                                                                                 68.00
16069                                                                                                 10.00
16070                                                                                                300.00
16071                                                                                                300.00
16072                                                                                                 50.00
16073                                                                                                300.00
16074                                                                                                100.00
16075                                                                                                200.00
16076                                                                                                300.00
16077                                                                                                 20.00
16078                                                                                                300.00
16079                                                                                                  2.60
16080                                                                                                 25.00
16081                                                                                                 20.00
16082                                                                                                272.00
16083                                                                                                125.00
16084                                                                                                250.00
16085                                                                                                  3.00
16086                                                                                                  0.57
16087                                                                                                175.00
16088                                                                                                450.00
16089                                                                                                 50.00
16090                                                                                                 18.75
16091                                                                                                 50.00
16092                                                                                                 35.00
16093                                                                                                227.00
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16095                                                                                                136.00
16096                                                                                               1000.00
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16099                                                                                                850.00
16100                                                                                                300.00
16101                                                                                                100.00
16102                                                                                                 15.00
16103                                                                                                 10.00
16104                                                                                                  4.00
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16119                                                                                                200.00
16120                                                                                                  8.00
16121                                                                                                  0.50
16122                                                                                                 50.00
16123                                                                                                272.00
16124                                                                                                  2.00
16125                                                                                                  1.00
16126                                                                                                  1.00
16127                                                                                                272.00
16128                                                                                               1000.00
16129                                                                                                272.00
16130                                                                                                  0.95
16131                                                                                                272.00
16132                                                                                                272.00
16133                                                                                                272.00
16134                                                                                                100.00
16135                                                                                                  6.00
16136                                                                                                272.00
16137                                                                                                500.00
16138                                                                                                150.00
16139                                                                                                 16.00
16140                                                                                                600.00
16141                                                                                                  1.00
16142                                                                                                500.00
16143                                                                                                150.00
16144                                                                                                  1.00
16145                                                                                                 16.00
16146                                                                                                 70.00
16147                                                                                                 16.00
16148                                                                                                  1.00
16149                                                                                                200.00
16150                                                                                           unspecified
16151                                                                                                  0.01
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16166                                                                                                300.00
16167                                                                                                250.00
16168                                                                                                250.00
16169                                                                                                200.00
16170                                                                                                100.00
16171                                                                                                375.00
16172                                                                                                 62.50
16173                                                                                                 30.00
16174                                                                                                 40.00
16175                                                                                                  0.30
16176                                                                                                 30.00
16177                                                                                           unspecified
16178                                                                                                200.00
16179                                                                                           unspecified
16180                                                                                                375.00
16181                                                                                                136.00
16182                                                                                                136.00
16183                                                                                                250.00
16184                                                                                                200.00
16185                                                                                                 70.00
16186                                                                                                  8.00
16187                                                                                                  0.30
16188                                                                                                  2.50
16189                                                                                                540.00
16190                                                                                                 10.00
16191                                                                                                  1.00
16192                                                                                                100.00
16193                                                                                                200.00
16194                                                                                                100.00
16195                                                                                                 60.00
16196                                                                                                 10.00
16197                                                                                                200.00
16198                                                                                                375.00
16199                                                                                           unspecified
16200                                                                                                100.00
16201                                                                                                  0.30
16202                                                                                                 50.00
16203                                                                                                 60.00
16204                                                                                                150.00
16205                                                                                                  0.30
16206                                                                                                 70.00
16207                                                                                                 15.00
16208                                                                                                200.00
16209                                                                                                300.00
16210                                                                                                 60.00
16211                                                                                                272.00
16212                                                                                                227.00
16213                                                                                                  8.80
16214                                                                                                 44.00
16215                                                                                                  0.44
16216                                                                                                  1.00
16217                                                                                                200.00
16218                                                                                                 50.00
16219                                                                                                750.00
16220                                                                                                  5.00
16221                                                                                                375.00
16222                                                                                                500.00
16223                                                                                                100.00
16224                                                                                                250.00
16225                                                                                                 20.00
16226                                                                                                  5.00
16227                                                                                                500.00
16228                                                                                                  6.00
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16231                                                                                                  1.00
16232                                                                                                300.00
16233                                                                                                 50.00
16234                                                                                                  1.00
16235                                                                                                  1.00
16236                                                                                                200.00
16237                                                                                                  1.00
16238                                                                                                 16.00
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16243                                                                                                  7.50
16244                                                                                                  3.30
16245                                                                                                  0.68
16246                                                                                                150.00
16247                                                                                                200.00
16248                                                                                                  2.20
16249                                                                                                 62.50
16250                                                                                                250.00
16251                                                                                          small amount
16252                                                                                                  1.00
16253                                                                                           unspecified
16254                                                                                                  1.00
16255                                                                                                 23.00
16256                                                                                                 80.00
16257                                                                                                100.00
16258                                                                                                100.00
16259                                                                                                100.00
16260                                                                                                 50.00
16261                                                                                                150.00
16262                                                                                                 37.50
16263                                                                                                  1.00
16264                                                                                                  0.60
16265                                                                                                810.00
16266                                                                                                  0.60
16267                                                                                               1000.00
16268                                                                                                400.00
16269                                                                                                437.50
16270                                                                                                810.00
16271                                                                                                  6.00
16272                                                                                               1000.00
16273                                                                                                 23.00
16274                                                                                               1000.00
16275                                                                                                500.00
16276                                                                                                400.00
16277                                                                                                 50.00
16278                                                                                                100.00
16279                                                                                                136.00
16280                                                                                                  0.65
16281                                                                                               1000.00
16282                                                                                                  0.70
16283                                                                                                  1.00
16284                                                                                                  0.60
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16291                                                                                                  75.5
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16297                                                                                                 25.00
16298                                                                                                136.00
16299                                                                                                 23.00
16300                                                                                                 80.00
16301                                                                                                625.00
16302                                                                                                 26.10
16303                                                                                                  3.50
16304                                                                                                  1.00
16305                                                                                                  4.00
16306                                                                                                  2.00
16307                                                                                                 60.00
16308                                                                                                 50.00
16309                                                                                                  6.00
16310                                                                                                272.00
16311                                                                                                 68.00
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16314                                                                                               6000.00
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16320                                                                                               1200.00
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16323                                                                                               1200.00
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16327                                                                                                  1.00
16328                                                                                                500.00
16329                                                                                                 75.00
16330                                                                                               1000.00
16331                                                                                                204.00
16332                                                                                                 30.00
16333                                                                                                  8.00
16334                                                                                               1000.00
16335                                                                                                 20.00
16336                                                                                                900.00
16337                                                                                                900.00
16338                                                                                                 10.00
16339                                                                                                  75.5
16340                                                                          based on weight (51-100 lbs)
16341                                                                                                 20.00
16342                                                                                                  5.00
16343                                                                                                375.00
16344                                                                                                272.00
16345                                                                                                 23.00
16346                                                                                                272.00
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16348                                                                                                100.00
16349                                                                                                  1.25
16350                                                                                                 40.00
16351                                                                                                  1.00
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16353                                                                                               1000.00
16354                                                                                                  2.00
16355                                                                                           unspecified
16356                                                                                           unspecified
16357                                                                                                  1.00
16358                                                                                                  1.00
16359                                                                                                  1.00
16360                                                                                                  0.50
16361                                                                                                  1.00
16362                                                                                                  1.00
16363                                                                                                  1.00
16364                                                                                                  1.00
16365                                                                                                  2.00
16366                                                                                                  1.00
16367                                                                                           unspecified
16368                                                                                                  1.50
16369                                                                                                 12.00
16370                                                                                                  3.00
16371                                                                                           unspecified
16372                                                                                                  1.00
16373                                                                                                  0.50
16374                                                                                           unspecified
16375                                                                                                300.00
16376                                                                                           unspecified
16377                                                                                                  0.50
16378                                                                                           unspecified
16379                                                                                                  1.00
16380                                                                                                  1.00
16381                                                                                                  1.00
16382                                                                                           unspecified
16383                                                                                                272.00
16384                                                                                                 10.00
16385                                                                                                100.00
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16390                                                                                               1620.00
16391                                                                                                  4.00
16392                                                                                                  1.00
16393                                                                                                  4.00
16394                                                                                                  2.00
16395                                                                                                 16.00
16396                                                                                               2000.00
16397                                                                                                  1.00
16398                                                                                               1000.00
16399                                                                                                  1.00
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16402                                                                                                500.00
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16405                                                                                                 16.00
16406                                                                                                  8.00
16407                                                                                                  2.00
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16409                                                                                               1000.00
16410                                                                                                 16.00
16411                                                                                                  2.00
16412                                                                                                200.00
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16417                                                                                                  0.70
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16421                                                                                                  1.00
16422                                                                                                  6.00
16423                                                                                                 37.50
16424                                                                                                100.00
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16427                                                                                                  2.68
16428                                                                                                 50.00
16429                                                                                                 50.00
16430                                                                                                750.00
16431                                                                                                 50.00
16432                                                                                                 23.00
16433                                                                                                500.00
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16438                                                                                                187.50
16439                                                                                                500.00
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16444                                                                                                500.00
16445                                                                                                136.00
16446                                                                                                500.00
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16449                                                                                                  4.00
16450                                                                          based on weight (51-100 lbs)
16451                                                                                                  8.00
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16455                                                                                                  1.00
16456                                                                                                  1.00
16457                                                                                                 40.00
16458                                                                                                  3.20
16459                                                                                                  3.20
16460                                                                                                  1.00
16461                                                                                               1000.00
16462                                                                                             0.5 ml/kg
16463                                                                                               1000.00
16464                                                                                               1500.00
16465                                                                                               1500.00
16466                                                                                               1000.00
16467                                                                                                400.00
16468                                                                                                 50.00
16469                                                                                                750.00
16470                                                                                                272.00
16471                                                                                                  4.28
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16473                                                                                                  4.70
16474                                                                                     1 syringe/pipette
16475                                                                                                 30.00
16476                                                                                                  1.50
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16480                                                                                                272.00
16481                                                                                                 23.00
16482                                                                                                 27.00
16483                                                                                               1000.00
16484                                                                                                 23.00
16485                                                                                                  66.5
16486                                                                                                100.00
16487                                                                                                136.00
16488                                                                                                100.00
16489                                                                                                  0.02
16490                                                                                                 50.00
16491                                                                                                 50.00
16492                                                                                                375.00
16493                                                                                                  1.00
16494                                                                                                100.00
16495                                                                                                100.00
16496                                                                                                 23.00
16497                                                                                           bottle/vial
16498                                                                                                  1.00
16499                                                                                                  1.00
16500                                                                                                 75.00
16501                                                                                                200.00
16502                                                                                                272.00
16503                                                                                                 23.00
16504                                                                                               1000.00
16505                                                                                                125.00
16506                                                                                                500.00
16507                                                                                                250.00
16508                                                                                                 25.00
16509                                                                                                375.00
16510                                                                                                  5.00
16511                                                                                                480.00
16512                                                                                                 22.00
16513                                                                                                373.00
16514                                                                                                478.00
16515                                                                                                136.00
16516                                                                                                136.00
16517                                                                                                  5.00
16518                                                                                                204.00
16519                                                                                                272.00
16520                                                                                                500.00
16521                                                                                                  5.00
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16527                                                                                                375.00
16528                                                                                                500.00
16529                                                                                                250.00
16530                                                                                                500.00
16531                                                                                                 10.00
16532                                                                                                 11.00
16533                                                                                                113.50
16534                                                                                                204.00
16535                                                                                                580.00
16536                                                                                                 26.00
16537                                                                                                  5.00
16538                                                                                                    75
16539                                                                                                136.00
16540                                                                                                 93.00
16541                                                                                                500.00
16542                                                                                                500.00
16543                                                                                                    66
16544                                                                           based on weight (44-88 lbs)
16545                                                                                                500.00
16546                                                                        based on weight (50.1-100 lbs)
16547                                                                                                500.00
16548                                                                                                 93.00
16549                                                                                                136.00
16550                                                                                                375.00
16551                                                                                                    66
16552                                                                                                375.00
16553                                                                        based on weight (50.1-100 lbs)
16554                                                                                                    66
16555                                                                                                375.00
16556                                                                                                 68.00
16557                                                                                                500.00
16558                                                                                                  1.00
16559                                                                                                 93.00
16560                                                                                                  1.00
16561                                                                                                227.00
16562                                                                                                 68.00
16563                                                                                                500.00
16564                                                                                                  1.00
16565                                                                                                 50.00
16566                                                                                                  2.70
16567                                                                                                100.00
16568                                                                                                500.00
16569                                                                                                186.00
16570                                                                                                100.00
16571                                                                                                618.00
16572                                                                                                 28.00
16573                                                                                                 20.00
16574                                                                                                 28.00
16575                                                                                                  1.80
16576                                                                                                100.00
16577                                                                                                  1.80
16578                                                                                                170.00
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16581                                                                                                  2.00
16582                                                                                                  1.00
16583                                                                                                  0.56
16584                                                                                                  1.40
16585                                                                                                  1.40
16586                                                                                                  0.56
16587                                                                                                  2.10
16588                                                                                                  0.90
16589                                                                                                 50.00
16590                                                                                                   125
16591                                                                                                  1.50
16592                                                                                                500.00
16593                                                                                                200.00
16594                                                                                                 20.00
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16600                                                                                                204.00
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16603                                                                                                100.00
16604                                                                                                  0.70
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16607                                                                                                  0.70
16608                                                                          based on weight (51-100 lbs)
16609                                                                                                  0.70
16610                                                                                                  0.70
16611                                                                                                500.00
16612                                                                                                850.00
16613                                                                                                272.00
16614                                                                                                  2.68
16615                                                                                                272.00
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16618                                                                                                 90.00
16619                                                                                                272.00
16620                                                                                                250.00
16621                                                                                                  1.00
16622                                                                                                  1.00
16623                                                                                                  1.00
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16625                                                                                                  1.00
16626                                                                                                500.00
16627                                                                                               1620.00
16628                                                                                                 80.00
16629                                                                                                 75.00
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16632                                                                                                600.00
16633                                                                                                  3.00
16634                                                                                                 62.50
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16637                                                                                                    66
16638                                                                                                    75
16639                                                                          based on weight (51-100 lbs)
16640                                                                                                  90.5
16641                                                                                                 23.00
16642                                                                                                136.00
16643                                                                                               1000.00
16644                                                                                                 10.00
16645                                                                                                  4.00
16646                                                                                              10 drops
16647                                                                                                 10.00
16648                                                                                                227.00
16649                                                                                                272.00
16650                                                                                                136.00
16651                                                                                                 16.00
16652                                                                                                200.00
16653                                                                                                 15.00
16654                                                                                                 16.00
16655                                                                                                200.00
16656                                                                                                 15.00
16657                                                                                             6-8 drops
16658                                                                                                  3.50
16659                                                                                                 50.00
16660                                                                                                  1.00
16661                                                                                                  1.00
16662                                                                                                  1.00
16663                                                                                                  1.00
16664                                                                                                 75.00
16665                                                                                                250.00
16666                                                                                                  1.00
16667                                                                                                  37.5
16668                                                                                                  1.00
16669                                                                                                  1.00
16670                                                                                                  1.00
16671                                                                                                  1.00
16672                                                                                                  1.00
16673                                                                                                 34.00
16674                                                                                                 75.00
16675                                                                                                 15.00
16676                                                                                                 37.00
16677                                                                                                 50.00
16678                                                                                                 823.5
16679                                                                                                  4.30
16680                                                                                                 50.00
16681                                                                                                 50.00
16682                                                                                                  1.00
16683                                                                                                625.00
16684                                                                                          small amount
16685                                                                                              wipe/pad
16686                                                                                                 50.00
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16688                                                                                                136.00
16689                                                                                                   1.5
16690                                                                                                   125
16691                                                                                                300.00
16692                                                                                                  2.00
16693                                                                                                750.00
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16696                                                                                                  4.00
16697                                                                                               1250.00
16698                                                                                                  4.00
16699                                                                                                  2.00
16700                                                                                                  1.00
16701                                                                                                 10.00
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16706                                                                                                 40.00
16707                                                                                                  1.00
16708                                                                                                500.00
16709                                                                                                 41.00
16710                                                                                                120.00
16711                                                                                          small amount
16712                                                                                          small amount
16713                                                                                                 16.00
16714                                                                                          small amount
16715                                                                                                  3.86
16716                                                                                                344.00
16717                                                                                          small amount
16718                                                                                          small amount
16719                                                                                                  5.00
16720                                                                                                136.00
16721                                                                          based on weight (51-100 lbs)
16722                                                                                                   1.5
16723                                                                                           application
16724                                                                                           application
16725                                                                                                  1.00
16726                                                                                                 spray
16727                                                                                                500.00
16728                                                                                                120.00
16729                                                                                                100.00
16730                                                                                                  3.80
16731                                                                                                  5.00
16732                                                                                                  4.00
16733                                                                                                272.00
16734                                                                                                272.00
16735                                                                                                272.00
16736                                                                                                500.00
16737                                                                                                 50.00
16738                                                                                                 90.00
16739                                                                                                150.00
16740                                                                                                204.00
16741                                                                                                 20.00
16742                                                                                                  1.00
16743                                                                                                  1.00
16744                                                                                                 23.00
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16747                                                                                                 23.00
16748                                                                                               1000.00
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16752                                                                                               1000.00
16753                                                                                                 23.00
16754                                                                                               1000.00
16755                                                                                                700.00
16756                                                                                                  1.00
16757                                                                                                  0.75
16758                                                                                                  1.00
16759                                                                                                100.00
16760                                                                                                200.00
16761                                                                                                500.00
16762                                                                                                  3.00
16763                                                                                                  1.00
16764                                                                                                  5.00
16765                                                                                                300.00
16766                                                                                                 30.00
16767                                                                                                 10.00
16768                                                                                                200.00
16769                                                                                                 40.00
16770                                                                                                 20.00
16771                                                                                                  3.00
16772                                                                                                300.00
16773                                                                                                  5.00
16774                                                                                           unspecified
16775                                                                                                  1.00
16776                                                                                                  1.00
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16780                                                                                                  1.00
16781                                                                                                  1.00
16782                                                                                                  1.00
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16788                                                                                                240.00
16789                                                                                                1.1 ml
16790                                                                                                  3.40
16791                                                                           based on weight (44-88 lbs)
16792                                                                                                  1.10
16793                                                                           based on weight (24-60 lbs)
16794                                                                                                200.00
16795                                                                                                150.00
16796                                                                                                136.00
16797                                                                                                100.00
16798                                                                                           unspecified
16799                                                                                                  1.50
16800                                                                                                 37.50
16801                                                                                                500.00
16802                                                                                                  3.00
16803                                                                                                  3.00
16804                                                                                                 50.00
16805                                                                          based on weight (50-100 lbs)
16806                                                                                                  5.00
16807                                                                             based on weight (55+ lbs)
16808                                                                                                272.00
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16812                                                                                                 23.00
16813                                                                                                  0.10
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16817                                                                                                750.00
16818                                                                                                 23.00
16819                                                                                                  4.00
16820                                                                                                  0.10
16821                                                                                           unspecified
16822                                                                                                 75.00
16823                                                                                           unspecified
16824                                                                                                200.00
16825                                                                                                 23.00
16826                                                                                                  1.00
16827                                                                                                  0.10
16828                                                                                                 75.00
16829                                                                                                 10.00
16830                                                                                                  0.10
16831                                                                                                 75.00
16832                                                                                                 10.00
16833                                                                                                  0.10
16834                                                                                           unspecified
16835                                                                                                 10.00
16836                                                                                                  0.10
16837                                                                                                  1.80
16838                                                                                           unspecified
16839                                                                                                 75.00
16840                                                                                           unspecified
16841                                                                                           unspecified
16842                                                                                                  1.80
16843                                                                                                 10.00
16844                                                                                                  0.10
16845                                                                                                300.00
16846                                                                                                  1.00
16847                                                                                           unspecified
16848                                                                                                 75.00
16849                                                                                                1 pump
16850                                                                                                 15.00
16851                                                                                                272.00
16852                                                                                                136.00
16853                                                                                                500.00
16854                                                                                                272.00
16855                                                                                                136.00
16856                                                                                                272.00
16857                                                                                                375.00
16858                                                                                                 80.00
16859                                                                                                272.00
16860                                                                                                 80 mg
16861                                                                                                272.00
16862                                                                                                136.00
16863                                                                                                 23.00
16864                                                                                                  75.5
16865                                                                                                375.00
16866                                                                                                    75
16867                                                                                                375.00
16868                                                                                                  6.00
16869                                                                          based on weight (50-100 lbs)
16870                                                                                                  1.00
16871                                                                                                  9.80
16872                                                                                                  4.50
16873                                                                                                500.00
16874                                                                                                 15.00
16875                                                                                                 16.60
16876                                                                                                 23.00
16877                                                                                             13.5, 810
16878                                                                                                 23.00
16879                                                                                                  1.00
16880                                                                                                 23.00
16881                                                                                                 23.00
16882                                                                                       based on weight
16883                                                                                                  2.00
16884                                                                                                  1.00
16885                                                                                                  1.00
16886                                                                                                  1.00
16887                                                                                                810.00
16888                                                                                                  1.10
16889                                                                                                  1.10
16890                                                                                                  1.20
16891                                                                                                 80.00
16892                                                                                                  3.40
16893                                                                                                500.00
16894                                                                                                150.00
16895                                                                                                  3.00
16896                                                                                                  8.00
16897                                                                                                  3.20
16898                                                                                                500.00
16899                                                                                                200.00
16900                                                                                                  3.25
16901                                                                                                 60.00
16902                                                                                                272.00
16903                                                                                                272.00
16904                                                                                                136.00
16905                                                                                                272.00
16906                                                                                                272.00
16907                                                                                                272.00
16908                                                                                                136.00
16909                                                                                                272.00
16910                                                                                                136.00
16911                                                                                                500.00
16912                                                                                                 75.00
16913                                                                                                 30.00
16914                                                                                                136.00
16915                                                                                                100 mg
16916                                                                                                500 mg
16917                                                                                                250.00
16918                                                                                           unspecified
16919                                                                                                 11.50
16920                                                                                                    66
16921                                                                                                 44.00
16922                                                                                                500.00
16923                                                                                                 16.00
16924                                                                                                400.00
16925                                                                                                 11.50
16926                                                                                                125.00
16927                                                                                                810.00
16928                                                                                                240.00
16929                                                                                 1 tablet/pill/capsule
16930                                                                                                    30
16931                                                                                             13.5, 810
16932                                                                                                 60.00
16933                                                                                             13.5, 810
16934                                                                                               1620.00
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16938                                                                                                  1.00
16939                                                                                          small amount
16940                                                                                                500.00
16941                                                                                                100.00
16942                                                                                                500.00
16943                                                                                                375.00
16944                                                                                                500.00
16945                                                                                                  1.00
16946                                                                                                  1.00
16947                                                                                                  1.00
16948                                                                                                  1.00
16949                                                                                                500.00
16950                                                                                                500.00
16951                                                                                                  4.00
16952                                                                                                  1.00
16953                                                                                                  1.00
16954                                                                                                136.00
16955                                                                                                 23.00
16956                                                                                                113.50
16957                                                                                                113.50
16958                                                                                                 23.00
16959                                                                                               1000.00
16960                                                                                                 23.00
16961                                                                                                  1.00
16962                                                                                                  3.00
16963                                                                                                500.00
16964                                                                                                500.00
16965                                                                                                100.00
16966                                                                                                300.00
16967                                                                                                113.00
16968                                                                                                300.00
16969                                                                                                 10.00
16970                                                                          based on weight (51-100 lbs)
16971                                                                                                 15.00
16972                                                                                                  1.00
16973                                                                                                  1.00
16974                                                                                                  1.50
16975                                                                                                  1.00
16976                                                                                                  2.00
16977                                                                                                  3.00
16978                                                                                                  3.50
16979                                                                                                 14.00
16980                                                                                                  1.00
16981                                                                                                  1.00
16982                                                                                                  1.00
16983                                                                                              6 months
16984                                                                                                272.00
16985                                                                                                227.00
16986                                                                                                272.00
16987                                                                                                272.00
16988                                                                                                 27.00
16989                                                                                                  0.34
16990                                                                                                272.00
16991                                                                                                500.00
16992                                                                                                500.00
16993                                                                                           as directed
16994                                                                                           application
16995                                                                                                 75.00
16996                                                                                                 75.00
16997                                                                                                272.00
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17001                                                                                               1000.00
17002                                                                                                  2.00
17003                                                                                                  3.50
17004                                                                                                 75.00
17005                                                                                                  6.00
17006                                                                                                 40.00
17007                                                                                                100.00
17008                                                                                                250.00
17009                                                                                                500.00
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17011                                                                                                200.00
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17015                                                                                                250.00
17016                                                                                                  8.00
17017                                                                                                500.00
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17021                                                                                               1000.00
17022                                                                                           unspecified
17023                                                                                                  2.00
17024                                                                                                  2.00
17025                                                                                               1000.00
17026                                                                                                 40.00
17027                                                                                                 60.00
17028                                                                                                 10.00
17029                                                                                                  2.00
17030                                                                                                 40.00
17031                                                                                                 10.00
17032                                                                                                136.00
17033                                                                                               272 mcg
17034                                                                                                272.00
17035                                                                                               272 mcg
17036                                                                                                136 mg
17037                                                                                                272.00
17038                                                                                                272.00
17039                                                                                                 68.00
17040                                                                                                 16.00
17041                                                                                                    75
17042                                                                        based on weight (50.1-100 lbs)
17043                                                                                                 16.00
17044                                                                                                200.00
17045                                                                                                750.00
17046                                                                                                200.00
17047                                                                                                500.00
17048                                                                                                 15.00
17049                                                                                               272 mcg
17050                                                                                               1000.00
17051                                                                                               1000 mg
17052                                                                                                272.00
17053                                                                                 1 tablet/pill/capsule
17054                                                                                                  2.00
17055                                                                                                  2.10
17056                                                                                                  0.70
17057                                                                                                  90.5
17058                                                                                                  7.50
17059                                                                                                272.00
17060                                                                                                272.00
17061                                                                                                  1.00
17062                                                                                           unspecified
17063                                                                                                  1.00
17064                                                                                                  2.00
17065                                                                                                  1.00
17066                                                                                                375.00
17067                                                                                                272.00
17068                                                                                                  1.00
17069                                                                                                 60.00
17070                                                                                                  1.00
17071                                                                                                100.00
17072                                                                                                  1.00
17073                                                                                                  1.00
17074                                                                                                272.00
17075                                                                                                 68.00
17076                                                                                                  2.30
17077                                                                                                272.00
17078                                                                                                227.00
17079                                                                                                500.00
17080                                                                                                  1.00
17081                                                                                               1620.00
17082                                                                                                  3.00
17083                                                                                                  4.80
17084                                                                                                375.00
17085                                                                                                625.00
17086                                                                                                272.00
17087                                                                                                136.00
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17092                                                                                                  1.00
17093                                                                                                  1.00
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17096                                                                                                272.00
17097                                                                                                136.00
17098                                                                                           unspecified
17099                                                                                       based on weight
17100                                                                                                375.00
17101                                                                                                500.00
17102                                                                                                 20.00
17103                                                                                             500125.00
17104                                                                                                 75.00
17105                                                                                                 75.00
17106                                                                                                150.00
17107                                                                                                 50.00
17108                                                                                                 75.00
17109                                                                                                 80.00
17110                                                                                                100.00
17111                                                                                                125.00
17112                                                                                                 75.00
17113                                                                                                375.00
17114                                                                                                  3.00
17115                                                                                                  1.00
17116                                                                                                 68.00
17117                                                                                                  0.68
17118                                                                                                136.00
17119                                                                                                  1.37
17120                                                                                          small amount
17121                                                                                          small amount
17122                                                                                                900.00
17123                                                                                                240.00
17124                                                                                                360.00
17125                                                                                                 25.00
17126                                                                                          small amount
17127                                                                                           as directed
17128                                                                                                 20.00
17129                                                                                                  3.00
17130                                                                                                360.00
17131                                                                                                  22.5
17132                                                                                                750.00
17133                                                                                                 75.00
17134                                                                                                175.00
17135                                                                                                  8.00
17136                                                                                                  2.00
17137                                                                                                  1.00
17138                                                                          based on weight (51-100 lbs)
17139                                                                                                  5.00
17140                                                                                                  1.00
17141                                                                                                 20.00
17142                                                                                                  5.00
17143                                                                          based on weight (51-100 lbs)
17144                                                                                                500.00
17145                                                                                                 16.00
17146                                                                                                136.00
17147                                                                                                100.00
17148                                                                                                 16.00
17149                                                                                                  2.00
17150                                                                                                 25.00
17151                                                                                                    50
17152                                                                                                136.00
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17154                                                                                                  1.00
17155                                                                                               1620.00
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17158                                                                                                240.00
17159                                                                                                240.00
17160                                                                                                228.00
17161                                                                                                 80.00
17162                                                                                                  1.00
17163                                                                                                  7.50
17164                                                                                                500.00
17165                                                                                                 75.00
17166                                                                                                  3.00
17167                                                                                                  1.00
17168                                                                                                  2.00
17169                                                                                                 23.00
17170                                                                                                100.00
17171                                                                                                 75.00
17172                                                                                                100.00
17173                                                                                           unspecified
17174                                                                                                375.00
17175                                                                                                 60.00
17176                                                                                                150.00
17177                                                                                           unspecified
17178                                                                                                 29.00
17179                                                                                                 14.00
17180                                                                                           unspecified
17181                                                                                                 75.00
17182                                                                                                  1.40
17183                                                                                                300.00
17184                                                                                                150.00
17185                                                                                                 75.00
17186                                                                                                 60.00
17187                                                                                                225.00
17188                                                                                                100.00
17189                                                                                                300.00
17190                                                                                                140.00
17191                                                                                                 60.00
17192                                                                                                 20.00
17193                                                                                                160.00
17194                                                                                                 25.00
17195                                                                                                272.00
17196                                                                                                    38
17197                                                                                                    38
17198                                                                                                500.00
17199                                                                                                 20.00
17200                                                                                                 57.00
17201                                                                                                  1.00
17202                                                                                                  66.5
17203                                                                                                200.00
17204                                                                                               1620.00
17205                                                                                                  2.68
17206                                                                                                 20.00
17207                                                                                                 16.08
17208                                                                                                272.00
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17212                                                                                                272.00
17213                                                                                                136.00
17214                                                                                                300.00
17215                                                                                                100.00
17216                                                                                                300.00
17217                                                                                                  1.00
17218                                                                           based on weight (56-95 lbs)
17219                                                                                                272.00
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17222                                                                                                272.00
17223                                                                                                136.00
17224                                                                                                227.00
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17230                                                                                                  1.00
17231                                                                                                  1.00
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17235                                                                                                750.00
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17242                                                                                                 70.00
17243                                                                                                 80.00
17244                                                                                                500.00
17245                                                                                                272.00
17246                                                                                                227.00
17247                                                                                                  1.00
17248                                                                                 1 tablet/pill/capsule
17249                                                                                                 50.00
17250                                                                                                500.00
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17256                                                                                              45293.00
17257                                                                                                  1.00
17258                                                                                                425.00
17259                                                                                                  1.00
17260                                                                                                  1.00
17261                                                                                                 75.00
17262                                                                                                  1.00
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17265                                                                                               1620.00
17266                                                                                 1 tablet/pill/capsule
17267                                                                                                500.00
17268                                                                          based on weight (51-100 lbs)
17269                                                                                                 50.00
17270                                                                                                500.00
17271                                                                                                272.00
17272                                                                                                135.00
17273                                                                                                 75.00
17274                                                                                                136.00
17275                                                                                                272.00
17276                                                                                                 75.00
17277                                                                                                100.00
17278                                                                                                 23.00
17279                                                                                                136.00
17280                                                                                                  0.70
17281                                                                                                  0.08
17282                                                                                                136.00
17283                                                                                                57, 68
17284                                                                                                375.00
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17286                                                                                                136.00
17287                                                                                                  0.70
17288                                                                                                  1.00
17289                                                                                                  1.00
17290                                                                                                  0.70
17291                                                                                                  0.70
17292                                                                                                 75.00
17293                                                                                                  0.70
17294                                                                                                    75
17295                                                                                                  66.5
17296                                                                                                 40.00
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17299                                                                                                 30.00
17300                                                                                                136.00
17301                                                                                                184.00
17302                                                                                                  5.00
17303                                                                                                 10.00
17304                                                                                                 10.00
17305                                                                                                100.00
17306                                                                                                208.00
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17311                                                                                                272.00
17312                                                                                                  4.70
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17316                                                                                                272.00
17317                                                                                                  0.16
17318                                                                                                110.00
17319                                                                                                272.00
17320                                                                                                200.00
17321                                                                                                 50.00
17322                                                                                                300.00
17323                                                                                                100.00
17324                                                                                                 60.00
17325                                                                                                  0.60
17326                                                                                                 55.00
17327                                                                                           application
17328                                                                                                  0.01
17329                                                                                           application
17330                                                                                           application
17331                                                                                                100.00
17332                                                                                                  0.28
17333                                                                                                  5.50
17334                                                                                                  1.00
17335                                                                                           application
17336                                                                                                  1.00
17337                                                                                                  1.00
17338                                                                                                  1.00
17339                                                                                                300.00
17340                                                                                                  0.25
17341                                                                                                  1.00
17342                                                                                                350.00
17343                                                                                                  0.25
17344                                                                                                  1.00
17345                                                                                                 37.50
17346                                                                                                400.00
17347                                                                                                  1.00
17348                                                                                                240.00
17349                                                                                                 15.00
17350                                                                                                120.00
17351                                                                                                250.00
17352                                                                                           unspecified
17353                                                                                                 60.00
17354                                                                                                100.00
17355                                                                                           unspecified
17356                                                                                                500.00
17357                                                                                                  3.60
17358                                                                                                 80.00
17359                                                                                                272.00
17360                                                                                                500.00
17361                                                                                                 50.00
17362                                                                                                 25.00
17363                                                                                                  1.00
17364                                                                                                  1.00
17365                                                                                                 20.00
17366                                                                                                500.00
17367                                                                                                  1.00
17368                                                                                                 50.00
17369                                                                                                500.00
17370                                                                                                  1.00
17371                                                                                                  1.00
17372                                                                                                  1.00
17373                                                                                                  1.00
17374                                                                                                  6.00
17375                                                                                                500.00
17376                                                                                                500.00
17377                                                                                                 75.00
17378                                                                                                 20.00
17379                                                                                                  1.00
17380                                                                                                500.00
17381                                                                                                 30 ml
17382                                                                                                272.00
17383                                                                                                227.00
17384                                                                                                272.00
17385                                                                                                 22.70
17386                                                                                               272 mcg
17387                                                                                           unspecified
17388                                                                                                222.00
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17392                                                                                                 75.00
17393                                                                                           application
17394                                                                                                500.00
17395                                                                                                 50.00
17396                                                                                                  2.80
17397                                                                                                  2.10
17398                                                                                                 23.00
17399                                                                        based on weight (50.1-100 lbs)
17400                                                                                                 23.00
17401                                                                                                 23.00
17402                                                                                                 23.00
17403                                                                                                460.00
17404                                                                                                136.00
17405                                                                                                 75.00
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17408                                                                                                200.00
17409                                                                                                 75.00
17410                                                                                                 80.00
17411                                                                                                 70.00
17412                                                                                           unspecified
17413                                                                                                 70.00
17414                                                                                                 70.00
17415                                                                                                 68.00
17416                                                                                                272.00
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17421                                                                                                  8.00
17422                                                                                                100.00
17423                                                                                                200.00
17424                                                                                                  0.02
17425                                                                                                250.00
17426                                                                                           unspecified
17427                                                                                           unspecified
17428                                                                                                500.00
17429                                                                                                500.00
17430                                                                                                  4.00
17431                                                                                                 50.00
17432                                                                                                500.00
17433                                                                                                200.00
17434                                                                                                 50.00
17435                                                                                                500.00
17436                                                                                                100.00
17437                                                                                                 23.00
17438                                                                                                272.00
17439                                                                                                272.00
17440                                                                                                500 mg
17441                                                                                                 30.00
17442                                                                                                500.00
17443                                                                                                500.00
17444                                                                                                272.00
17445                                                                                                272.00
17446                                                                                           bottle/vial
17447                                                                                               1000.00
17448                                                                                                272.00
17449                                                                                               1000.00
17450                                                                                                  0.01
17451                                                                                                272.00
17452                                                                                               1000.00
17453                                                                                                500.00
17454                                                                                                500.00
17455                                                                                                 15.00
17456                                                                                                  5.00
17457                                                                                                  1.00
17458                                                                                                210.00
17459                                                                                                  1.00
17460                                                                                                  2.00
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17462                                                                                               1000.00
17463                                                                                        1 pack/package
17464                                                                                                  1.00
17465                                                                                                  2.50
17466                                                                                                 15.00
17467                                                                                                  3.00
17468                                                                                               23, 460
17469                                                                                               1000.00
17470                                                                                        1 pack/package
17471                                                                                                315.00
17472                                                                                                  1.00
17473                                                                                                  1.00
17474                                                                                                  1.00
17475                                                                                                  1.00
17476                                                                                                  2.50
17477                                                                                                  3.20
17478                                                                                                 15.00
17479                                                                                                500.00
17480                                                                                                 15.00
17481                                                                                                500.00
17482                                                                                          small amount
17483                                                                                                 50.00
17484                                                                                                    75
17485                                                                                                 80.00
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17494                                                                                                  66.5
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17497                                                                                                    75
17498                                                                                                  66.5
17499                                                                                                500.00
17500                                                                                                120.00
17501                                                                                                 16.00
17502                                                                                                 80.00
17503                                                                                                 37.50
17504                                                                                                500.00
17505                                                                                                625.00
17506                                                                                                 80.00
17507                                                                                                 37.50
17508                                                                                                125.00
17509                                                                                                375.00
17510                                                                                                100.00
17511                                                                                                 50.00
17512                                                                                                  2.00
17513                                                                                                 23.00
17514                                                                                                500.00
17515                                                                                                250.00
17516                                                                                                 50.00
17517                                                                                                 50.00
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17520                                                                                                 75.00
17521                                                                                                100.00
17522                                                                                                100.00
17523                                                                                                200.00
17524                                                                                                875.00
17525                                                                                                250.00
17526                                                                                                100.00
17527                                                                                                 75.00
17528                                                                                                 60.00
17529                                                                                                 15.00
17530                                                                                              45293.00
17531                                                                                                750.00
17532                                                                                                 30.00
17533                                                                                                300.00
17534                                                                                                  1.40
17535                                                                                                 60.00
17536                                                                                                 62.50
17537                                                                                                200.00
17538                                                                                                500.00
17539                                                                                                160.00
17540                                                                                                 50.00
17541                                                                                                  1.40
17542                                                                                                 75.00
17543                                                                                                200.00
17544                                                                                                  3.00
17545                                                                                                  1.40
17546                                                                                                200.00
17547                                                                                                  3.00
17548                                                                                                  1.40
17549                                                                                                  2.00
17550                                                                                                 75.00
17551                                                                                                200.00
17552                                                                                                 15.00
17553                                                                                                750.00
17554                                                                                                 15.00
17555                                                                                               1000.00
17556                                                                                               1000.00
17557                                                                                               1000.00
17558                                                                                                385.00
17559                                                                                                375.00
17560                                                                                                  2.00
17561                                                                                                 75.00
17562                                                                                                 50.00
17563                                                                                                  1.00
17564                                                                                                200.00
17565                                                                                                250.00
17566                                                                                                200.00
17567                                                                                                  6.00
17568                                                                                                  1.00
17569                                                                                                  6.00
17570                                                                                                250.00
17571                                                                                                  5.00
17572                                                                                                375.00
17573                                                                                                 50.00
17574                                                                                                270.00
17575                                                                                                  4.50
17576                                                                                           unspecified
17577                                                                                                 30.00
17578                                                                                                500.00
17579                                                                                                 60.00
17580                                                                                                 60.00
17581                                                                                                500.00
17582                                                                                                  1.00
17583                                                                                           application
17584                                                                                                500.00
17585                                                                                                  1.25
17586                                                                                                 75.00
17587                                                                                                 75.00
17588                                                                                                 spray
17589                                                                                                  1.40
17590                                                                                                  1.40
17591                                                                                                  1.00
17592                                                                                                  1.40
17593                                                                                               1200.00
17594                                                                                                 37.50
17595                                                                                                 50.00
17596                                                                                                140.00
17597                                                                                                 50.00
17598                                                                                                200.00
17599                                                                                                  1.40
17600                                                                                                 50.00
17601                                                                                                  1.00
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17604                                                                                                  0.04
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17606                                                                                                  4.00
17607                                                                                                164.00
17608                                                                                                400.00
17609                                                                                                  5.00
17610                                                                                                170.25
17611                                                                           based on weight (44-88 lbs)
17612                                                                                                  1.75
17613                                                                                                 16.00
17614                                                                                                400.00
17615                                                                           based on weight (45-88 lbs)
17616                                                                                               1000.00
17617                                                                                                  1.83
17618                                                                                                 60.00
17619                                                                                                 16.00
17620                                                                                                500.00
17621                                                                                                  1.00
17622                                                                                                  0.30
17623                                                                                                136.00
17624                                                                                                300.00
17625                                                                                                  1.00
17626                                                                                                  1.74
17627                                                                         based on weight (44.1-88 lbs)
17628                                                                                               1000.00
17629                                                                                                  1.74
17630                                                                                                 10.00
17631                                                                                                  1.00
17632                                                                                                300.00
17633                                                                                               1.71 ml
17634                                                                                               1000.00
17635                                                                                                  1.62
17636                                                                                                200.00
17637                                                                                                100.00
17638                                                                                                730.00
17639                                                                                                200.00
17640                                                                                                375.00
17641                                                                                                  1.00
17642                                                                                                  1.00
17643                                                                                                  2.50
17644                                                                                                  3.50
17645                                                                                                300.00
17646                                                                                                  0.25
17647                                                                                                 62.50
17648                                                                                                 20.00
17649                                                                                                  1.00
17650                                                                                                350.00
17651                                                                                                  2.50
17652                                                                                                 30.00
17653                                                                                                 30.00
17654                                                                                                 10.00
17655                                                                                                 30.00
17656                                                                                                 30.00
17657                                                                                                900.00
17658                                                                                               1000.00
17659                                                                          based on weight (50-100 lbs)
17660                                                                                                500.00
17661                                                                                                 75.00
17662                                                                                                  3.40
17663                                                                                                500.00
17664                                                                                                300.00
17665                                                                                                 75.00
17666                                                                                                100.00
17667                                                                                                 75.00
17668                                                                                               1620.00
17669                                                                                                 27.00
17670                                                                                                    90
17671                                                                                               1620.00
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17674                                                                                                  1.00
17675                                                                                                  2.00
17676                                                                                                  1.00
17677                                                                                                 60.00
17678                                                                                                300.00
17679                                                                                                  1.00
17680                                                                                           unspecified
17681                                                                                                113.50
17682                                                                                                 50.00
17683                                                                                                250.00
17684                                                                                                170.00
17685                                                                                               1693.00
17686                                                                                                400.00
17687                                                                                                500.00
17688                                                                                                  8.00
17689                                                                                                  1.00
17690                                                                                               1650.00
17691                                                                                                150.00
17692                                                                                                250.00
17693                                                                                                  1.00
17694                                                                                                200.00
17695                                                                                                300.00
17696                                                                                                300.00
17697                                                                                              27, 1620
17698                                                                                               1000.00
17699                                                                                                300.00
17700                                                                                                  8.00
17701                                                                                                200.00
17702                                                                                               10, 100
17703                                                                                               23, 460
17704                                                                                                  3.60
17705                                                                                                100.00
17706                                                                                                200.00
17707                                                                                                 50.00
17708                                                                                                750.00
17709                                                                                                100.00
17710                                                                                                  0.14
17711                                                                                                375.00
17712                                                                                                 50.00
17713                                                                                                  0.80
17714                                                                                                 23.00
17715                                                                                                300.00
17716                                                                                                 27.00
17717                                                                                                 19.50
17718                                                                                                150.00
17719                                                                                               23, 460
17720                                                                                          small amount
17721                                                                                                500.00
17722                                                                          based on weight (51-100 lbs)
17723                                                                                                    90
17724                                                                                                150.00
17725                                                                                                 23.00
17726                                                                                                136.00
17727                                                                                                150.00
17728                                                                                                200.00
17729                                                                                                150.00
17730                                                                                                  1.60
17731                                                                                                 60.00
17732                                                                                                  1.60
17733                                                                                                 60.00
17734                                                                                               1000.00
17735                                                                                                  1.00
17736                                                                                                500.00
17737                                                                                                375.00
17738                                                                                                100.00
17739                                                                                               1000.00
17740                                                                                                  1.00
17741                                                                                                  1.00
17742                                                                                           application
17743                                                                                                1 drop
17744                                                                                                  1.00
17745                                                                                                 36.00
17746                                                                                               1000.00
17747                                                                                                500.00
17748                                                                                                500.00
17749                                                                                                 37.50
17750                                                                                                  2.50
17751                                                                                                136.00
17752                                                                                                  5.00
17753                                                                                                  5.00
17754                                                                                                227.00
17755                                                                           based on weight (45-88 lbs)
17756                                                                                                136.00
17757                                                                                                272.00
17758                                                                                                272.00
17759                                                                                                136.00
17760                                                                                                 68.00
17761                                                                                                136.00
17762                                                                                                150.00
17763                                                                                                272.00
17764                                                                                                136.00
17765                                                                                                100.00
17766                                                                                                  0.60
17767                                                                                                400.00
17768                                                                                                136.00
17769                                                                                                 10.00
17770                                                                                                 10.00
17771                                                                                                  0.40
17772                                                                                                 20.00
17773                                                                                                136.00
17774                                                                                                 32.00
17775                                                                                                272.00
17776                                                                                                  2.50
17777                                                                                                250.00
17778                                                                                                 75.00
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17783                                                                                                300.00
17784                                                                                                  5.00
17785                                                                                                 16.00
17786                                                                                                750.00
17787                                                                                                 16.00
17788                                                                                               1000.00
17789                                                                                                 16.00
17790                                                                                                 16.00
17791                                                                                               1000.00
17792                                                                                                200.00
17793                                                                                                 16.00
17794                                                                                                  8.00
17795                                                                                               1000.00
17796                                                                                                200.00
17797                                                                                                 16.00
17798                                                                                             6-8 drops
17799                                                                                                200.00
17800                                                                                                200.00
17801                                                                                                750.00
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17805                                                                                                  1.00
17806                                                                                                 90.00
17807                                                                                                300.00
17808                                                                                                  1.00
17809                                                                                                 16.00
17810                                                                                                 75.00
17811                                                                                                  1.00
17812                                                                                                300.00
17813                                                                                                 40.00
17814                                                                                                272.00
17815                                                                                                  2.68
17816                                                                                                300.00
17817                                                                                                272.00
17818                                                                          based on weight (60-120 lbs)
17819                                                                                                300.00
17820                                                                                                180.00
17821                                                                                                  3.50
17822                                                                                                  1.00
17823                                                                                                 30.00
17824                                                                                                500.00
17825                                                                                                272.00
17826                                                                                                136.00
17827                                                                                                272.00
17828                                                                                                136.00
17829                                                                                                 90.00
17830                                                                                               1000.00
17831                                                                                                300.00
17832                                                                                           unspecified
17833                                                                                                  1.00
17834                                                                                                  1.00
17835                                                                                                150.00
17836                                                                                                 80.00
17837                                                                                                100.00
17838                                                                                                  4.00
17839                                                                                                  2.50
17840                                                                                                  1.00
17841                                                                                                  1.00
17842                                                                                                 75.00
17843                                                                                                200.00
17844                                                                                                500.00
17845                                                                                           unspecified
17846                                                                                                  4.00
17847                                                                                                 80.00
17848                                                                                                  2.00
17849                                                                                                425.00
17850                                                                                                300.00
17851                                                                                                100.00
17852                                                                                                 40.00
17853                                                                                           unspecified
17854                                                                                                500.00
17855                                                                                           unspecified
17856                                                                                           unspecified
17857                                                                                                 75.00
17858                                                                                                100.00
17859                                                                                                400.00
17860                                                                                           unspecified
17861                                                                                                160.00
17862                                                                                                 50.00
17863                                                                                           unspecified
17864                                                                                                500.00
17865                                                                                           unspecified
17866                                                                                                  1.00
17867                                                                                                  1.00
17868                                                                                                 75.00
17869                                                                                                 68.00
17870                                                                                                136.00
17871                                                                                                  0.02
17872                                                                                                  0.05
17873                                                                                                  0.09
17874                                                                                                250.00
17875                                                                                                125.00
17876                                                                                                250.00
17877                                                                                                500.00
17878                                                                                                  8.00
17879                                                                                                250.00
17880                                                                                                150.00
17881                                                                                                 20.00
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17883                                                                                                  1.32
17884                                                                                                200.00
17885                                                                                                  3.50
17886                                                                                                 15.00
17887                                                                                                136.00
17888                                                                                                  0.09
17889                                                                                                150.00
17890                                                                                                 40.00
17891                                                                                                 50.00
17892                                                                                                 50.00
17893                                                                                                500.00
17894                                                                                                  8.00
17895                                                                                                150.00
17896                                                                                                  2.68
17897                                                                                                272.00
17898                                                                                                200.00
17899                                                                                                136.00
17900                                                                                                  2.68
17901                                                                                                200.00
17902                                                                                                250.00
17903                                                                                                102.00
17904                                                                                                136.00
17905                                                                                                  2.68
17906                                                                                                200.00
17907                                                                                                250.00
17908                                                                                                  1.00
17909                                                                                                102.00
17910                                                                                                  0.40
17911                                                                                                  8.00
17912                                                                                                  3.50
17913                                                                                                150.00
17914                                                                                                  8.00
17915                                                                                                 50.00
17916                                                                                                150.00
17917                                                                                                 40.00
17918                                                                                                136.00
17919                                                                                                  2.68
17920                                                                                                150.00
17921                                                                                                 40.00
17922                                                                                                 21.00
17923                                                                                                 50.00
17924                                                                                                250.00
17925                                                                                                150.00
17926                                                                                                 50.00
17927                                                                                                325.00
17928                                                                                                100.00
17929                                                                                                136.00
17930                                                                                                  8.00
17931                                                                                                500.00
17932                                                                                                 24.00
17933                                                                                                 25.00
17934                                                                                                  0.40
17935                                                                                                 20.00
17936                                                                                                  1.50
17937                                                                                                425.00
17938                                                                                                 20.00
17939                                                                                                  1.00
17940                                                                                                  1.00
17941                                                                                                100.00
17942                                                                                                  1.00
17943                                                                                                  7.00
17944                                                                                                200.00
17945                                                                                                 50.00
17946                                                                                                500.00
17947                                                                                                  1.00
17948                                                                                                 15.00
17949                                                                                                  3.20
17950                                                                                                 23.00
17951                                                                                                136.00
17952                                                                                                 60.00
17953                                                                                                136.00
17954                                                                                                 23.00
17955                                                                                                 23 mg
17956                                                                                                136.00
17957                                                                                               4 drops
17958                                                                                                136.00
17959                                                                                                 23.00
17960                                                                                                300.00
17961                                                                                                 75.00
17962                                                                                                200.00
17963                                                                                                 75.00
17964                                                                                               1000.00
17965                                                                                                136.00
17966                                                                                                 10.00
17967                                                                                                200.00
17968                                                                                                150.00
17969                                                                                                 15.00
17970                                                                                                136.00
17971                                                                                                136.00
17972                                                                                                 10.00
17973                                                                                                 50.00
17974                                                                                                  2.00
17975                                                                                                200.00
17976                                                                                                  1.00
17977                                                                                                  1.00
17978                                                                                                136.00
17979                                                                                                272.00
17980                                                                                                 50.00
17981                                                                                                 36.00
17982                                                                                                272.00
17983                                                                                                227.00
17984                                                                                                500.00
17985                                                                                                500.00
17986                                                                                                 50.00
17987                                                                                                272.00
17988                                                                                                125.00
17989                                                                                                125.00
17990                                                                                                500.00
17991                                                                                                  1.00
17992                                                                                                 15.00
17993                                                                                                500.00
17994                                                                                                120.00
17995                                                                                                 20.00
17996                                                                                                375.00
17997                                                                                                  8.00
17998                                                                                                 11.50
17999                                                                                                 62.50
18000                                                                                                200.00
18001                                                                                                    38
18002                                                                                                 50.00
18003                                                                                                    75
18004                                                                                                  8.00
18005                                                                                                 50.00
18006                                                                                                  5.00
18007                                                                                                 50.00
18008                                                                                                  4.00
18009                                                                                                    66
18010                                                                                                    75
18011                                                                                                  66.5
18012                                                                                                  1.50
18013                                                                                                  5.40
18014                                                                                                  66.5
18015                                                                                                    75
18016                                                                                                  1.50
18017                                                                                                100.00
18018                                                                                                  5.40
18019                                                                                                 10.80
18020                                                                                                100.00
18021                                                                                                    75
18022                                                                                                  5.40
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18025                                                                                                  1.00
18026                                                                                                  1.00
18027                                                                                                  5.40
18028                                                                                                 10.80
18029                                                                                                 60.00
18030                                                                                                  1.00
18031                                                                                                  5.40
18032                                                                                                500.00
18033                                                                                                  5.40
18034                                                                                                375.00
18035                                                                                                 50.00
18036                                                                                                200.00
18037                                                                                              45355.00
18038                                                                                                 10.00
18039                                                                                                500.00
18040                                                                                                500.00
18041                                                                                                  1.00
18042                                                                                                  9.00
18043                                                                                                  2.50
18044                                                                                              45355.00
18045                                                                                                500.00
18046                                                                                                272.00
18047                                                                                                136.00
18048                                                                                                500.00
18049                                                                                                272.00
18050                                                                                                136.00
18051                                                                                                200.00
18052                                                                                                 15.00
18053                                                                                                  2.50
18054                                                                                                500.00
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18059                                                                                                 50.00
18060                                                                                                 75.00
18061                                                                                                201.00
18062                                                                                                500.00
18063                                                                                                200.00
18064                                                                                                  3.00
18065                                                                                                300.00
18066                                                                                                300.00
18067                                                                                                 20.00
18068                                                                                                  3.00
18069                                                                                                  1.00
18070                                                                                                 50.00
18071                                                                                                  6.00
18072                                                                         based on weight (40.1-60 lbs)
18073                                                                                                    66
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18076                                                                                                    66
18077                                                                                                 10.00
18078                                                                                                 10.00
18079                                                                                                  1.00
18080                                                                                                  1.00
18081                                                                                                  1.00
18082                                                                                                272.00
18083                                                                                                  0.36
18084                                                                                                 50.00
18085                                                                                                300.00
18086                                                                                                500.00
18087                                                                                                200.00
18088                                                                                                250.00
18089                                                                                                500.00
18090                                                                                                 60.00
18091                                                                                                 10.00
18092                                                                                                 10.00
18093                                                                                                250.00
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18097                                                                                                750.00
18098                                                                                           unspecified
18099                                                                                                  1.00
18100                                                                                                 60.00
18101                                                                                                125.00
18102                                                                                                500.00
18103                                                                                               1000.00
18104                                                                                                200.00
18105                                                                                                562.50
18106                                                                                                300.00
18107                                                                                               1500.00
18108                                                                                                300.00
18109                                                                                                100.00
18110                                                                                                100.00
18111                                                                                                375.00
18112                                                                                                  0.70
18113                                                                                                150.00
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18117                                                                                                    75
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18120                                                                                                  4.00
18121                                                                                                 23.00
18122                                                                                                125.00
18123                                                                                                  1.00
18124                                                                             based on weight (50+ lbs)
18125                                                                                                    38
18126                                                                                                 23.00
18127                                                                                                  3.00
18128                                                                                                200.00
18129                                                                                                  5.00
18130                                                                                                100.00
18131                                                                                                  8.00
18132                                                                                                  3.00
18133                                                                                                  5.00
18134                                                                                           unspecified
18135                                                                                                  2.40
18136                                                                                                  1.20
18137                                                                                                  0.50
18138                                                                                                  8.00
18139                                                                                                100.00
18140                                                                                                 50.00
18141                                                                                           unspecified
18142                                                                                                  0.36
18143                                                                                                  0.10
18144                                                                                                  6.00
18145                                                                                                  2.10
18146                                                                                                  0.10
18147                                                                                           unspecified
18148                                                                                                 23.00
18149                                                                                                  2.68
18150                                                                                                  1.99
18151                                                                                                  6.00
18152                                                                                                150.00
18153                                                                                                500.00
18154                                                                                                  0.30
18155                                                                                                 48.00
18156                                                                                                100.00
18157                                                                                                 56.75
18158                                                                                                 34.05
18159                                                                                               6 drops
18160                                                                                                 23.00
18161                                                                                                136.00
18162                                                                                                 37.50
18163                                                                                               1000.00
18164                                                                                               6 drops
18165                                                                                          small amount
18166                                                                                                 23.00
18167                                                                                                136.00
18168                                                                                               1000.00
18169                                                                                                  2.00
18170                                                                                                200.00
18171                                                                                                 37.50
18172                                                                                                 20.00
18173                                                                                               1000.00
18174                                                                                                120.00
18175                                                                                                200.00
18176                                                                                                 20.00
18177                                                                                                  3.70
18178                                                                                                120.00
18179                                                                                                  2.90
18180                                                                                                 15.00
18181                                                                                                  9.00
18182                                                                                                136.00
18183                                                                                                 41.47
18184                                                                                                  3.00
18185                                                                                                201.60
18186                                                                                                 20.00
18187                                                                                                200.00
18188                                                                                 1 tablet/pill/capsule
18189                                                                                                100.00
18190                                                                                                272.00
18191                                                                                                100.00
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18194                                                                                                 10.00
18195                                                                                           unspecified
18196                                                                                                375.00
18197                                                                                                 50.00
18198                                                                                                250.00
18199                                                                                                  5, 2
18200                                                                                               1000.00
18201                                                                                                 16.00
18202                                                                          based on weight (51-100 lbs)
18203                                                                                                 16.00
18204                                                                                                 16.00
18205                                                                          based on weight (51-100 lbs)
18206                                                                                                 16.00
18207                                                                                                 16.00
18208                                                                                                100.00
18209                                                                                                 16.00
18210                                                                                                500.00
18211                                                                                                100.00
18212                                                                                                 50.00
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18219                                                                                                 10.00
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18223                                                                                                 60.00
18224                                                                                                 50.00
18225                                                                                                200.00
18226                                                                                                 75.00
18227                                                                                                  2.00
18228                                                                                                125.00
18229                                                                                               1620.00
18230                                                                                                 27.00
18231                                                                                                  9.80
18232                                                                                                  8.80
18233                                                                                                 22.10
18234                                                                                                  1.60
18235                                                                                                  1.60
18236                                                                                                  1.50
18237                                                                                                  2.00
18238                                                                                           unspecified
18239                                                                                               1620.00
18240                                                                                                 27.00
18241                                                                                                  4.95
18242                                                                                                  0.44
18243                                                                                                 36.08
18244                                                                                                 16.00
18245                                                                                                  0.08
18246                                                                                                  1.70
18247                                                                                                  1.70
18248                                                                                                  3.00
18249                                                                                                150 mg
18250                                                                                                300.00
18251                                                                                                powder
18252                                                                                                150 mg
18253                                                                                                 50.00
18254                                                                                                100.00
18255                                                                                               1620.00
18256                                                                                                 27.00
18257                                                                                                  1.00
18258                                                                                     0.44, 4.95, 36.08
18259                                                                                                 10.00
18260                                                                                              27, 1620
18261                                                                                                 80.00
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18265                                                                                                 80.00
18266                                                                                              27, 1620
18267                                                                                                 80.00
18268                                                                                                 16.00
18269                                                                                                 75.00
18270                                                                                                100.00
18271                                                                                                    iu
18272                                                                                                 80.00
18273                                                                                                 27.00
18274                                                                                                  1.00
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18278                                                                                                  1.00
18279                                                                                                  1.00
18280                                                                                                250.00
18281                                                                                                  1.00
18282                                                                                               1000.00
18283                                                                                                  1.00
18284                                                                                                    75
18285                                                                                                  1.00
18286                                                                                                900.00
18287                                                                                                200.00
18288                                                                                                300.00
18289                                                                                                100.00
18290                                                                                                325.00
18291                                                                                                 50.00
18292                                                                                                500.00
18293                                                                                                 10.00
18294                                                                                                100.00
18295                                                                                                 60.00
18296                                                                                                  2.00
18297                                                                                                250.00
18298                                                                                                 50.00
18299                                                                                                 45.40
18300                                                                                                  1.00
18301                                                                                                  1.00
18302                                                                                                 50.00
18303                                                                                                 37.50
18304                                                                                                 50.00
18305                                                                                                500.00
18306                                                                                                 50.00
18307                                                                                                 12.50
18308                                                                                                 10.00
18309                                                                                                  1.00
18310                                                                                                  5.00
18311                                                                                               1000.00
18312                                                                                                750.00
18313                                                                                                  2.50
18314                                                                                                  1.00
18315                                                                                                 10.00
18316                                                                                                  1.00
18317                                                                                                200.00
18318                                                                                                  1.00
18319                                                                                                  1.00
18320                                                                                                  1.00
18321                                                                                                  1.00
18322                                                                                                  1.00
18323                                                                                          small amount
18324                                                                                                 20.00
18325                                                                                           unspecified
18326                                                                                           unspecified
18327                                                                                                 15.00
18328                                                                                                 50.00
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18331                                                                                                  7.00
18332                                                                                                250.00
18333                                                                                                720.00
18334                                                                                                500.00
18335                                                                                                  1.00
18336                                                                                                 20.00
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18346                                                                                                100.00
18347                                                                                                  3.75
18348                                                                                                300.00
18349                                                                                                272.00
18350                                                                                                500.00
18351                                                                                               1000.00
18352                                                                                                 64.80
18353                                                                                                 75.00
18354                                                                                                  3.75
18355                                                                                               2500.00
18356                                                                                                500.00
18357                                                                                                300.00
18358                                                                                                 75.00
18359                                                                                                  1.00
18360                                                                                               2500.00
18361                                                                                                 97.20
18362                                                                                                 30.00
18363                                                                                                150.00
18364                                                                                                300.00
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18367                                                                                                  1.00
18368                                                                                                150.00
18369                                                                                                500.00
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18372                                                                                                  1.50
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18375                                                                                                    75
18376                                                                                                  7.50
18377                                                                                                 15.00
18378                                                                                               1500.00
18379                                                                                               2000.00
18380                                                                                                  7.50
18381                                                                                                 15.00
18382                                                                                                 40.00
18383                                                                                                  7.50
18384                                                                                                 50.00
18385                                                                                                500.00
18386                                                                                                 40.00
18387                                                                                                  7.50
18388                                                                                                 15.00
18389                                                                                                 50.00
18390                                                                                                272.00
18391                                                                                                272.00
18392                                                                                                500.00
18393                                                                                                  8.00
18394                                                                                               1000.00
18395                                                                                                  2.70
18396                                                                                                272.00
18397                                                                                                  5.00
18398                                                                                                272.00
18399                                                                                                136.00
18400                                                                                                 16.00
18401                                                                                                272.00
18402                                                                                                136.00
18403                                                                                                 16.00
18404                                                                                                 drops
18405                                                                                                 70.00
18406                                                                                                272.00
18407                                                                                                136.00
18408                                                                                                 70.00
18409                                                                                                 16.00
18410                                                                                                200.00
18411                                                                                                375.00
18412                                                                                                 50.00
18413                                                                                               1000.00
18414                                                                                                272.00
18415                                                                          based on weight (51-100 lbs)
18416                                                                                                    66
18417                                                                                                 70.00
18418                                                                                                272.00
18419                                                                                                900.00
18420                                                                                                 16.00
18421                                                                                               1000.00
18422                                                                                                 50.00
18423                                                                                                150.00
18424                                                                                                  0.10
18425                                                                                                  0.30
18426                                                                                                  8.00
18427                                                                                          small amount
18428                                                                                               1000.00
18429                                                                                                 16.00
18430                                                                                                 70.00
18431                                                                                                200.00
18432                                                                                               1000.00
18433                                                                                                 80.00
18434                                                                                                 16.00
18435                                                                                                500.00
18436                                                                                                  1.00
18437                                                                                                  5.00
18438                                                                                                 70.00
18439                                                                                                 16.00
18440                                                                                                  1.00
18441                                                                              2 tablets/pills/capsules
18442                                                                                                 50.00
18443                                                                                                500.00
18444                                                                                                  1.00
18445                                                                                                  1.00
18446                                                                                                  1.00
18447                                                                                                 50.00
18448                                                                                                 50.00
18449                                                                                                 25.00
18450                                                                                                 50.00
18451                                                                                                200.00
18452                                                                                                 20.00
18453                                                                                                  1.00
18454                                                                                                  1.00
18455                                                                                                200.00
18456                                                                                                 50.00
18457                                                                                                  1.00
18458                                                                                                  1.00
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18462                                                                                                400.00
18463                                                                                                500.00
18464                                                                                                500 mg
18465                                                                                                 50.00
18466                                                                                                1 drop
18467                                                                                               272 mcg
18468                                                                                                 60.00
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18473                                                                                                    90
18474                                                                                                450.00
18475                                                                                                200.00
18476                                                                                                150.00
18477                                                                                                  1.00
18478                                                                                                750.00
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18481                                                                                                500.00
18482                                                                                               1620.00
18483                                                                                              27, 1610
18484                                                                                                 80.00
18485                                                                                                300.00
18486                                                                                                 50.00
18487                                                                                                500.00
18488                                                                                                 20.00
18489                                                                                       based on weight
18490                                                                                       based on weight
18491                                                                                                 50.00
18492                                                                                                 50.00
18493                                                                                                 20.00
18494                                                                                       based on weight
18495                                                                                       based on weight
18496                                                                                                 50.00
18497                                                                                                227.00
18498                                                                                                  4.70
18499                                                                                                 50.00
18500                                                                                       based on weight
18501                                                                                                 50.00
18502                                                                          based on weight (50-100 lbs)
18503                                                                                                 50.00
18504                                                                                                  1.00
18505                                                                                                130.00
18506                                                                                                100.00
18507                                                                                                 75.00
18508                                                                                                300.00
18509                                                                                                 75.00
18510                                                                                                300.00
18511                                                                                                 75.00
18512                                                                                               272 mcg
18513                                                                                                272.00
18514                                                                           based on weight (21-55 lbs)
18515                                                                                                100.00
18516                                                                                                250.00
18517                                                                                                272.00
18518                                                                                                200.00
18519                                                                                                    42
18520                                                                              based on weight (60 lbs)
18521                                                                                                113.00
18522                                                                                                500.00
18523                                                                                                 16.00
18524                                                                                                272.00
18525                                                                           based on weight (44-88 lbs)
18526                                                                                               1000.00
18527                                                                                               1000.00
18528                                                                                                  1.00
18529                                                                                                  1.00
18530                                                                                                  1.00
18531                                                                                                  1.00
18532                                                                                               1000.00
18533                                                                                               1000.00
18534                                                                                           unspecified
18535                                                                                                  2.00
18536                                                                                                  1.00
18537                                                                                                113.50
18538                                                                                                272.00
18539                                                                                                  66.5
18540                                                                                                 10.00
18541                                                                                                272.00
18542                                                                                                  66.5
18543                                                                                               6 drops
18544                                                                                                  4.00
18545                                                                                                 16.00
18546                                                                                                227.00
18547                                                                                                  3.00
18548                                                                                                200.00
18549                                                                                                 30.00
18550                                                                                                  1.00
18551                                                                                                  3.60
18552                                                                                                  3.60
18553                                                                                                400.00
18554                                                                                                  2.00
18555                                                                                                 70.00
18556                                                                                                  4.00
18557                                                                                                  3.20
18558                                                                                                  1.00
18559                                                                                                120.00
18560                                                                                                400.00
18561                                                                                                272.00
18562                                                                                                  1 ml
18563                                                                                                200.00
18564                                                                                                272.00
18565                                                                             based on weight (55+ lbs)
18566                                                                                                150.00
18567                                                                                                562.50
18568                                                                                                300.00
18569                                                                                                204.00
18570                                                                                                  1.00
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18573                                                                                                  1.00
18574                                                                                                  1.00
18575                                                                                                272.00
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18578                                                                                                250.00
18579                                                                                                 60.00
18580                                                                          based on weight (50-100 lbs)
18581                                                                                                  1.00
18582                                                                                                960.00
18583                                                                                                 68.00
18584                                                                                                500.00
18585                                                                                                375.00
18586                                                                                                 60.00
18587                                                                                                  2.00
18588                                                                                           unspecified
18589                                                                                                272.00
18590                                                                                                227.00
18591                                                                                                 spray
18592                                                                                                460.00
18593                                                                                                460.00
18594                                                                                                460.00
18595                                                                                           as directed
18596                                                                                                 23.00
18597                                                                                                136.00
18598                                                                                                 23.00
18599                                                                                                136.00
18600                                                                                                 23.00
18601                                                                                                136.00
18602                                                                                                500.00
18603                                                                                                100.00
18604                                                                                                 75.00
18605                                                                                                500.00
18606                                                                                                200.00
18607                                                                                                  1.00
18608                                                                                                500.00
18609                                                                                           unspecified
18610                                                                                                  1.00
18611                                                                                                 75.00
18612                                                                                           unspecified
18613                                                                                                  3.00
18614                                                                                                    50
18615                                                                                                 23.00
18616                                                                                                136.00
18617                                                                                                 23.00
18618                                                                                                136.00
18619                                                                                                300.00
18620                                                                                                 75.00
18621                                                                                           unspecified
18622                                                                                                 30.00
18623                                                                                                200.00
18624                                                                                                200.00
18625                                                                                                 70.00
18626                                                                                                  5.00
18627                                                                                                 75.00
18628                                                                                                200.00
18629                                                                                                  4.00
18630                                                                                                  2.00
18631                                                                                                 15.00
18632                                                                                                 20.00
18633                                                                                                 15.00
18634                                                                                                125.00
18635                                                                                                  1.00
18636                                                                                                 50.00
18637                                                                                                750.00
18638                                                                                                500.00
18639                                                                                                  6.00
18640                                                                                                 75.00
18641                                                                                                750.00
18642                                                                                                750.00
18643                                                                                                 75.00
18644                                                                                               1000.00
18645                                                                                                 16.00
18646                                                                                                 16.00
18647                                                                                                272.00
18648                                                                                                  1.00
18649                                                                             based on weight (25+ lbs)
18650                                                                                                 75.00
18651                                                                                                 50.00
18652                                                                                                 16.00
18653                                                                                               1000.00
18654                                                                                                 90.00
18655                                                                                               1000.00
18656                                                                                                  8.00
18657                                                                                                 90.00
18658                                                                                                 16.00
18659                                                                                               1000.00
18660                                                                                                 16.00
18661                                                                                                136.00
18662                                                                                                272.00
18663                                                                                                 16.00
18664                                                                                               1000.00
18665                                                                                                150.00
18666                                                                                                  4.00
18667                                                                                                 16.00
18668                                                                                                 16.00
18669                                                                                                  1.00
18670                                                                                               1000.00
18671                                                                                                 16.00
18672                                                                                                150.00
18673                                                                                                  8.00
18674                                                                                                  1.00
18675                                                                                                 75.00
18676                                                                                                 30.00
18677                                                                                                300.00
18678                                                                                               1000.00
18679                                                                                                500.00
18680                                                                                                 16.00
18681                                                                                                 75.00
18682                                                                                                 20.00
18683                                                                                                560.00
18684                                                                                                  9.30
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18691                                                                                                200.00
18692                                                                                                 65.00
18693                                                                                                 60.00
18694                                                                                             11.5, 230
18695                                                                                                  2.68
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18698                                                                                                  1.25
18699                                                                                                 15.00
18700                                                                                                 14.00
18701                                                                                                500.00
18702                                                                                                500.00
18703                                                                          based on weight (51-100 lbs)
18704                                                                                                    42
18705                                                                                                    38
18706                                                                                                272.00
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18708                                                                                                 68.00
18709                                                                                                 24.00
18710                                                                                                500.00
18711                                                                                                375.00
18712                                                                                                136.00
18713                                                                                                100.00
18714                                                                                                500.00
18715                                                                                                375.00
18716                                                                                           unspecified
18717                                                                                                250.00
18718                                                                                           unspecified
18719                                                                                                 24.00
18720                                                                                                 10.00
18721                                                                                                100.00
18722                                                                                                100.00
18723                                                                                                 24.00
18724                                                                                                500.00
18725                                                                                                 24.00
18726                                                                                                100.00
18727                                                                                                  1.00
18728                                                                                                  1.00
18729                                                                                           unspecified
18730                                                                                                 24.00
18731                                                                                                100.00
18732                                                                                                  1.00
18733                                                                                                  1.00
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18737                                                                                                  4.50
18738                                                                                                100.00
18739                                                                                                250.00
18740                                                                                                  2.00
18741                                                                                                 50.00
18742                                                                                                100.00
18743                                                                           based on weight (26-50 lbs)
18744                                                                                                  1.00
18745                                                                                                  1.00
18746                                                                                                227.00
18747                                                                                                 68.00
18748                                                                                                  1.00
18749                                                                                                272.00
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18751                                                                                                136.00
18752                                                                                                100.00
18753                                                                                                 75 mg
18754                                                                                                500.00
18755                                                                                                150.00
18756                                                                                                 75.00
18757                                                                                                500.00
18758                                                                                                 40.00
18759                                                                                                100.00
18760                                                                                                 16.00
18761                                                                                                150.00
18762                                                                                                300.00
18763                                                                                                112.50
18764                                                                                                 16.00
18765                                                                                                200.00
18766                                                                                                300.00
18767                                                                                                  2.00
18768                                                                                                810.00
18769                                                                                                 13.50
18770                                                                                                250.00
18771                                                                                               1000.00
18772                                                                                                500.00
18773                                                                                                  1.00
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18776                                                                                                150.00
18777                                                                                                  5.00
18778                                                                                                  1.00
18779                                                                                                 20.00
18780                                                                                                 50.00
18781                                                                                                 10.00
18782                                                                                                 20.00
18783                                                                                                 30.00
18784                                                                                                 75.00
18785                                                                                                 20.00
18786                                                                                                 25.00
18787                                                                                                 20.00
18788                                                                                                  1.00
18789                                                                                                 25.00
18790                                                                                                 10.00
18791                                                                                                 30.00
18792                                                                                                 50.00
18793                                                                                                 75.00
18794                                                                                                 20.00
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18801                                                                                                272.00
18802                                                                                                  4.00
18803                                                                                                  1.00
18804                                                                                                272.00
18805                                                                                                227.00
18806                                                                                                 23.00
18807                                                                                                272.00
18808                                                                                                300.00
18809                                                                                                500.00
18810                                                                                                 60.00
18811                                                                                                  1.00
18812                                                                                                 60.00
18813                                                                                                 50.00
18814                                                                                                113.50
18815                                                                                                113.50
18816                                                                                                 37.50
18817                                                                                                 50.00
18818                                                                                                200.00
18819                                                                                                 83.30
18820                                                                                          small amount
18821                                                                                               5 drops
18822                                                                                                 50.00
18823                                                                                                 75.00
18824                                                                                                500.00
18825                                                                                                500.00
18826                                                                                                  1.00
18827                                                                                                 16.00
18828                                                                                                  3.20
18829                                                                                           unspecified
18830                                                                                                  0.40
18831                                                                                                100.00
18832                                                                                                  0.40
18833                                                                                                200.00
18834                                                                                                 16.00
18835                                                                                                 75.00
18836                                                                                               1620.00
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18840                                                                                                  3.60
18841                                                                                                500.00
18842                                                                                                  1.00
18843                                                                                                200.00
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18846                                                                                                    66
18847                                                                                       based on weight
18848                                                                                                 16.00
18849                                                                                                 10.00
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18855                                                                                                    75
18856                                                                                                    66
18857                                                                                                 16.00
18858                                                                                                 75.00
18859                                                                                                750.00
18860                                                                                                500.00
18861                                                                                                  5.00
18862                                                                                                 16.00
18863                                                                                                 75.00
18864                                                                                                  1.00
18865                                                                                                  1.00
18866                                                                                                500.00
18867                                                                                                 16.00
18868                                                                                                 80.00
18869                                                                                                  1.00
18870                                                                                                  2.00
18871                                                                                                170.00
18872                                                                                                300.00
18873                                                                                                 75.00
18874                                                                                               1620.00
18875                                                                                                  1.00
18876                                                                                                  1.00
18877                                                                                                  1.00
18878                                                                                                  1.00
18879                                                                                                  1.00
18880                                                                                                  1.00
18881                                                                                                  1.00
18882                                                                                           application
18883                                                                                                500.00
18884                                                                                                  3.00
18885                                                                                                300.00
18886                                                                                                272.00
18887                                                                                                136.00
18888                                                                                                  0.75
18889                                                                                                  1.60
18890                                                                                                  0.70
18891                                                                                                  1.30
18892                                                                                                150.00
18893                                                                                                  1.00
18894                                                                                                272.00
18895                                                                                                136.00
18896                                                                                                  7.00
18897                                                                                                  2.00
18898                                                                                                  1.00
18899                                                                                                  2.00
18900                                                                                                900.00
18901                                                                                               1500.00
18902                                                                                                272.00
18903                                                                                                136.00
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18906                                                                                                500.00
18907                                                                                                300.00
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18910                                                                                                272.00
18911                                                                                                300.00
18912                                                                                                 75.00
18913                                                                                                  4.00
18914                                                                                                272.00
18915                                                                                                272.00
18916                                                                                                136.00
18917                                                                                                272.00
18918                                                                                                136.00
18919                                                                                                collar
18920                                                                                                272.00
18921                                                                             based on weight (18+ lbs)
18922                                                                                                  2.00
18923                                                                                               1000.00
18924                                                                                           unspecified
18925                                                                                                125.00
18926                                                                                                750.00
18927                                                                                                100.00
18928                                                                                                125.00
18929                                                                                                 15.00
18930                                                                                                272.00
18931                                                                                                  66.5
18932                                                                                                  77.5
18933                                                                                           unspecified
18934                                                                                                  77.5
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18938                                                                                                500.00
18939                                                                                                272.00
18940                                                                                                272.00
18941                                                                                                200.00
18942                                                                                                 60.00
18943                                                                                                600.00
18944                                                                                                 60.00
18945                                                                                                204.00
18946                                                                                                 15.00
18947                                                                                                 60.00
18948                                                                                                  2.00
18949                                                                                                750.00
18950                                                                                                240.00
18951                                                                                                272.00
18952                                                                                                227.00
18953                                                                                                  8.80
18954                                                                                                 44.00
18955                                                                                               1000.00
18956                                                                                                 16.00
18957                                                                                                200.00
18958                                                                                                  8.00
18959                                                                                                136.00
18960                                                                                                272.00
18961                                                                              2 tablets/pills/capsules
18962                                                                                                272.00
18963                                                                                                136.00
18964                                                                                           unspecified
18965                                                                                                  8.00
18966                                                                                                  7.50
18967                                                                                                272.00
18968                                                                                                136.00
18969                                                                                                  7.50
18970                                                                                 1 tablet/pill/capsule
18971                                                                                                  1.00
18972                                                                                                272.00
18973                                                                                                 68.00
18974                                                                                                  7.50
18975                                                                                                272.00
18976                                                                                                136.00
18977                                                                                                  7.50
18978                                                                                                200.00
18979                                                                                                  7.50
18980                                                                                                272.00
18981                                                                                                200.00
18982                                                                                                272.00
18983                                                                                                500.00
18984                                                                                                200.00
18985                                                                                                170.00
18986                                                                                                500.00
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18990                                                                                                272.00
18991                                                                          based on weight (51-100 lbs)
18992                                                                                                325.00
18993                                                                                              2 scoops
18994                                                                                                200.00
18995                                                                                                  3.00
18996                                                                                                200.00
18997                                                                                           unspecified
18998                                                                                           unspecified
18999                                                                                                  1.00
19000                                                                                                 16.00
19001                                                                                                150.00
19002                                                                                                200.00
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19007                                                                                                  3.00
19008                                                                                           unspecified
19009                                                                                           unspecified
19010                                                                                                  1.00
19011                                                                                                  1.00
19012                                                                                                  1.00
19013                                                                                                  1.00
19014                                                                                                500.00
19015                                                                                           unspecified
19016                                                                                                  1.00
19017                                                                                                  1.00
19018                                                                                                200.00
19019                                                                                           unspecified
19020                                                                                                 10.00
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19024                                                                                                  1.00
19025                                                                                 1 tablet/pill/capsule
19026                                                                                                 37.50
19027                                                                                                300.00
19028                                                                                                 25.00
19029                                                                                                300.00
19030                                                                                                 20.00
19031                                                                                                125.00
19032                                                                                                  9.30
19033                                                                                                 23.00
19034                                                                                                460.00
19035                                                                                                228.00
19036                                                                                                272.00
19037                                                                                                 68.00
19038                                                                                                272.00
19039                                                                                                136.00
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19042                                                                                                272.00
19043                                                                                                  66.5
19044                                                                                                625.00
19045                                                                                                  1.00
19046                                                                                                480.00
19047                                                                                                  1.00
19048                                                                                                500.00
19049                                                                                                  0.01
19050                                                                                                272.00
19051                                                                                                  66.5
19052                                                                                                200.00
19053                                                                                                 20.00
19054                                                                                                272.00
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19058                                                                                                  8.00
19059                                                                                                  0.40
19060                                                                                                  0.40
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19063                                                                                                500.00
19064                                                                                                300.00
19065                                                                                                 50.00
19066                                                                                                 50.00
19067                                                                                                 60.00
19068                                                                              based on weight (50 lbs)
19069                                                                                                  0.20
19070                                                                             based on weight (50+ lbs)
19071                                                                                                227.00
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19074                                                                                                500.00
19075                                                                                                136.00
19076                                                                                                100.00
19077                                                                                                  66.5
19078                                                                          based on weight (51-100 lbs)
19079                                                                                                  2.50
19080                                                                                                  2.50
19081                                                                                                  2.50
19082                                                                           based on weight (45-88 lbs)
19083                                                                                                272.00
19084                                                                                                100.00
19085                                                                                                272.00
19086                                                                                                  5.30
19087                                                                                                  0.55
19088                                                                                                272.00
19089                                                                                                 16.08
19090                                                                                                  6.00
19091                                                                                                  0.50
19092                                                                                                100.00
19093                                                                                                750.00
19094                                                                                                  0.43
19095                                                                                                  5.00
19096                                                                                                190.00
19097                                                                                                 19.00
19098                                                                                                  0.45
19099                                                                                                 95.00
19100                                                                                                100.00
19101                                                                                                  8.00
19102                                                                                                 71.55
19103                                                                                                  0.10
19104                                                                                                600.00
19105                                                                                                  1.00
19106                                                                                                500.00
19107                                                                                                  3.00
19108                                                                                                 15.00
19109                                                                                                  4.00
19110                                                                                                  0.15
19111                                                                                                  4.00
19112                                                                                                375.00
19113                                                                                                136.00
19114                                                                                                  0.16
19115                                                                                                 10.00
19116                                                                                                  1.00
19117                                                                                                 20.00
19118                                                                                                 20.00
19119                                                                                                 15.00
19120                                                                                                 10.00
19121                                                                                                900.00
19122                                                                             based on weight (55+ lbs)
19123                                                                                                  1.30
19124                                                                                                  3.20
19125                                                                                                  2.30
19126                                                                                                  1.60
19127                                                                                                  1.60
19128                                                                                                  0.30
19129                                                                                                  0.10
19130                                                                           based on weight (44-88 lbs)
19131                                                                                                 15.00
19132                                                                                                 20.00
19133                                                                                                600.00
19134                                                                                                  0.13
19135                                                                                                 15.00
19136                                                                                                 20.00
19137                                                                                                  4.80
19138                                                                                                 15.00
19139                                                                                                 20.00
19140                                                                                                  1.00
19141                                                                                                  1.50
19142                                                                                                  1.00
19143                                                                                                 15.00
19144                                                                                                 20.00
19145                                                                                                  1.50
19146                                                                                                  1.00
19147                                                                                                 20.00
19148                                                                                                 10.00
19149                                                                                                 15.00
19150                                                                                                 20.00
19151                                                                                                  1.00
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19155                                                                                                  1.00
19156                                                                                                  1.00
19157                                                                                                  1.00
19158                                                                                                  1.00
19159                                                                                           unspecified
19160                                                                                                 10.00
19161                                                                                                113.50
19162                                                                                                  6.00
19163                                                                                                 10.00
19164                                                                                                  1.00
19165                                                                          based on weight (51-100 lbs)
19166                                                                                                  1.00
19167                                                                                                  1.00
19168                                                                                                 20.00
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19171                                                                                                 16.00
19172                                                                                                 16.00
19173                                                                                                100.00
19174                                                                                                100.00
19175                                                                                                300.00
19176                                                                                                 34.00
19177                                                                                                  7.00
19178                                                                                                  0.10
19179                                                                                                  8.00
19180                                                                                                200.00
19181                                                                                                  5.00
19182                                                                                                  1.00
19183                                                                                                collar
19184                                                                                           unspecified
19185                                                                                                170.00
19186                                                                                               1000.00
19187                                                                                                  8.00
19188                                                                                                  8.00
19189                                                                                                 75.00
19190                                                                                                100.00
19191                                                                                                750.00
19192                                                                                                300.00
19193                                                                                                  1.00
19194                                                                                                 62.50
19195                                                                                                 30.00
19196                                                                                                200.00
19197                                                                                                  3.00
19198                                                                                                 30.00
19199                                                                                                 75.00
19200                                                                                                 60.00
19201                                                                                                 30.00
19202                                                                                                 50.00
19203                                                                                                124.00
19204                                                                                                  5.00
19205                                                                                                375.00
19206                                                                                                  5.00
19207                                                                                                  6.00
19208                                                                                                  4.00
19209                                                                                                150.00
19210                                                                                                 50.00
19211                                                                                                 50.00
19212                                                                                                125.00
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19218                                                                                                  2.00
19219                                                                                                150.00
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19225                                                                                                500.00
19226                                                                                                  1.00
19227                                                                                                375.00
19228                                                                                                  1.00
19229                                                                                                 50.00
19230                                                                                                150.00
19231                                                                                                  1.00
19232                                                                                                 60.00
19233                                                                                                 20.00
19234                                                                                                  1.00
19235                                                                                                500.00
19236                                                                                               1000.00
19237                                                                                                 10.00
19238                                                                                                 50.00
19239                                                                                               1000.00
19240                                                                                                 50.00
19241                                                                                                300 mg
19242                                                                                                 75 mg
19243                                                                                                272.00
19244                                                                                                227.00
19245                                                                                                  1.00
19246                                                                                           as directed
19247                                                                                                500.00
19248                                                                                                  0.20
19249                                                                                                  1.00
19250                                                                                                250.00
19251                                                                                                125.00
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19260                                                                                                  3.25
19261                                                                                                480.00
19262                                                                                                250.00
19263                                                                                                 60.00
19264                                                                                                  1.00
19265                                                                                                  3.25
19266                                                                                                270.00
19267                                                                                                150.00
19268                                                                                                  3.25
19269                                                                                                125.00
19270                                                                                                  6.00
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19274                                                                                               1000.00
19275                                                                                                200.00
19276                                                                                                1 tube
19277                                                                                                200.00
19278                                                                          based on weight (51-100 lbs)
19279                                                                                               1000.00
19280                                                                                                 10.00
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19283                                                                                                500.00
19284                                                                                                500.00
19285                                                                                                 16.00
19286                                                                                                 16.00
19287                                                                                                 10.00
19288                                                                                           unspecified
19289                                                                                                 50.00
19290                                                                                                 10.00
19291                                                                                                500.00
19292                                                                                                525.00
19293                                                                                                136.00
19294                                                                                                 50.00
19295                                                                                                136.00
19296                                                                                                 16.00
19297                                                                                                 50.00
19298                                                                                           unspecified
19299                                                                                           unspecified
19300                                                                                                 16.00
19301                                                                                                 50.00
19302                                                                                                272.00
19303                                                                                                  0.09
19304                                                                                                 15.00
19305                                                                                                272.00
19306                                                                                                  0.09
19307                                                                                               1000.00
19308                                                                                                  5.00
19309                                                                                                100.00
19310                                                                                                  1.70
19311                                                                                                 75.00
19312                                                                                                 23.00
19313                                                                                                  2.68
19314                                                                                                 23.00
19315                                                                                                    66
19316                                                                                                  5.00
19317                                                                                                 23.00
19318                                                                           based on weight (44-88 lbs)
19319                                                                                                  1.00
19320                                                                                                 16.00
19321                                                                                                  1.00
19322                                                                                                100.00
19323                                                                                                  1.00
19324                                                                                                100.00
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19328                                                                                                125.00
19329                                                                                                480.00
19330                                                                                                250.00
19331                                                                                                500 mg
19332                                                                                                500.00
19333                                                                                                 23.00
19334                                                                                                200.00
19335                                                                                                200 mg
19336                                                                                                100 mg
19337                                                                                                375.00
19338                                                                                           unspecified
19339                                                                                                250.00
19340                                                                                                 50.00
19341                                                                                                  1.00
19342                                                                                                102.00
19343                                                                                                750.00
19344                                                                                                  1.00
19345                                                                                                  1.00
19346                                                                                                  1.00
19347                                                                                                  1.00
19348                                                                                                100.00
19349                                                                                                500.00
19350                                                                                       0.25 inch strip
19351                                                                                                 50.00
19352                                                                                                 50.00
19353                                                                                           unspecified
19354                                                                                           unspecified
19355                                                                                                 50.00
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19358                                                                                                 16.00
19359                                                                                                272.00
19360                                                                                                 16.00
19361                                                                                                 16.00
19362                                                                                                 16.00
19363                                                                                                500.00
19364                                                                                                 16.00
19365                                                                                                272.00
19366                                                                                                272.00
19367                                                                                                272.00
19368                                                                                                272.00
19369                                                                                                 68.00
19370                                                                                                100.00
19371                                                                                                900.00
19372                                                                                                 50.00
19373                                                                          based on weight (51-100 lbs)
19374                                                                                                    66
19375                                                                                                  1.00
19376                                                                                                272.00
19377                                                                                                 80.00
19378                                                                                                100.00
19379                                                                                               2655.00
19380                                                                                                272.00
19381                                                                                                 80.00
19382                                                                                                100.00
19383                                                                                                375.00
19384                                                                                                  1.00
19385                                                                                                100.00
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19388                                                                                                375.00
19389                                                                                                 50.00
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19392                                                                                                  8.00
19393                                                                                                375.00
19394                                                                                                 50.00
19395                                                                                                  4.00
19396                                                                                                750.00
19397                                                                                                  0.25
19398                                                                                                 10.00
19399                                                                                                 23.00
19400                                                                                                 25.00
19401                                                                                                272.00
19402                                                                                                136.00
19403                                                                                                102.00
19404                                                                                                375.00
19405                                                                                                 23.00
19406                                                                                                500.00
19407                                                                                                 23.00
19408                                                                                                 23.00
19409                                                                                                 23.00
19410                                                                                                480.00
19411                                                                                                200.00
19412                                                                                                 60.00
19413                                                                                                200.00
19414                                                                                                 60.00
19415                                                                                                272.00
19416                                                                                                272.00
19417                                                                                                  0.30
19418                                                                                                  0.60
19419                                                                                                  8.00
19420                                                                                                  3.70
19421                                                                                                300.00
19422                                                                                                  4.02
19423                                                                          based on weight (51-100 lbs)
19424                                                                                                    66
19425                                                                                                  2.68
19426                                                                                                  1.00
19427                                                                                       based on weight
19428                                                                                                150.00
19429                                                                                                 20.00
19430                                                                                                250.00
19431                                                                                                272.00
19432                                                                                                272.00
19433                                                                                                272.00
19434                                                                                               1000.00
19435                                                                                                500.00
19436                                                                                                 50.00
19437                                                                                                  8.00
19438                                                                                                 15.00
19439                                                                                                  5.00
19440                                                                                                 10.00
19441                                                                                                375.00
19442                                                                                                 60.00
19443                                                                                                 25.00
19444                                                                                                 50.00
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19455                                                                                                 20.00
19456                                                                                                 50.00
19457                                                                          based on weight (51-100 lbs)
19458                                                                                                 15.00
19459                                                                                                500.00
19460                                                                                                200.00
19461                                                                                                    66
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19466                                                                                                 80.00
19467                                                                                                100.00
19468                                                                                                 37.50
19469                                                                                                136.00
19470                                                                                                  8.00
19471                                                                                                500.00
19472                                                                                                 70.00
19473                                                                                                 50.00
19474                                                                                                100.00
19475                                                                                                 50.00
19476                                                                              based on weight (35 lbs)
19477                                                                                                 50.00
19478                                                                                                200.00
19479                                                                                                500.00
19480                                                                                                250.00
19481                                                                                                500.00
19482                                                                          based on weight (51-100 lbs)
19483                                                                                                  8.00
19484                                                                                                  8.00
19485                                                                                                300.00
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19488                                                                                                 25.00
19489                                                                                                 10.00
19490                                                                                                  2.00
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19494                                                                                                  0.02
19495                                                                             based on weight (50+ lbs)
19496                                                                                                 70.00
19497                                                                                                272.00
19498                                                                                                136.00
19499                                                                                                 15.00
19500                                                                                               0.57 mg
19501                                                                                                  1.00
19502                                                                                                 70.00
19503                                                                                                272.00
19504                                                                                                136.00
19505                                                                                                 10.00
19506                                                                                                 16.00
19507                                                                                                  2.00
19508                                                                                                272.00
19509                                                                                                136.00
19510                                                                                                 15.00
19511                                                                                                  7.50
19512                                                                                                 16.00
19513                                                                                                 70.00
19514                                                                                                 16.60
19515                                                                                                  3.00
19516                                                                                                  1.00
19517                                                                                                  1.00
19518                                                                                                 70.00
19519                                                                                                 80.00
19520                                                                                                 15.00
19521                                                                                                  7.50
19522                                                                                                  3.00
19523                                                                                                 15.00
19524                                                                                                  2.00
19525                                                                                                 55.00
19526                                                                                                 30.00
19527                                                                                                204.00
19528                                                                                                600.00
19529                                                                                                 15.00
19530                                                                                                  7.50
19531                                                                                                 35.00
19532                                                                                                325.00
19533                                                                                                 20.00
19534                                                                                                  3.00
19535                                                                                                 50.00
19536                                                                                                 20.00
19537                                                                                       based on weight
19538                                                                                                 10.00
19539                                                                                                  5.00
19540                                                                                                500.00
19541                                                                                                  1.00
19542                                                                                                  1.00
19543                                                                                                  1.00
19544                                                                                                  1.00
19545                                                                                                 16.00
19546                                                                                                500.00
19547                                                                                                  7.00
19548                                                                                                  1.00
19549                                                                                                 10.00
19550                                                                                                  1.00
19551                                                                                                  1.00
19552                                                                                                 10.00
19553                                                                                                200.00
19554                                                                                                 10.00
19555                                                                                                500.00
19556                                                                                                250.00
19557                                                                                                 10.00
19558                                                                                                250.00
19559                                                                                                500.00
19560                                                                                                 20.00
19561                                                                                               1000.00
19562                                                                                                  1.00
19563                                                                                                250.00
19564                                                                                                 20.00
19565                                                                                                  1.00
19566                                                                                                500.00
19567                                                                                                150 mg
19568                                                                                                1 pump
19569                                                                                                  2.20
19570                                                                                                 48.00
19571                                                                                                250.00
19572                                                                                                250.00
19573                                                                                                 88.00
19574                                                                                                750.00
19575                                                                                                500.00
19576                                                                                                500.00
19577                                                                                                 10.00
19578                                                                                                150.00
19579                                                                                                 48.00
19580                                                                                                250.00
19581                                                                                                 88.00
19582                                                                                                  1.00
19583                                                                                                500.00
19584                                                                                                 10.00
19585                                                                                                200.00
19586                                                                                                 20.00
19587                                                                                                200.00
19588                                                                                                 60.00
19589                                                                                                 25.00
19590                                                                                                 23.00
19591                                                                                                  3.60
19592                                                                                                  1.00
19593                                                                                                200.00
19594                                                                                                200.00
19595                                                                                                 10.00
19596                                                                          based on weight (51-100 lbs)
19597                                                                                                  75.5
19598                                                                                                200.00
19599                                                                                                200.00
19600                                                                                                 10.00
19601                                                                                                  1.00
19602                                                                                                  3.00
19603                                                                           based on weight (40-60 lbs)
19604                                                                                                    75
19605                                                                                                 50.00
19606                                                                                                 10.00
19607                                                                                                 10.00
19608                                                                                                 75.00
19609                                                                                                 10.00
19610                                                                                                272.00
19611                                                                                                272.00
19612                                                                                                  2.68
19613                                                                                                272.00
19614                                                                                                 50.00
19615                                                                                                  8.00
19616                                                                                                272.00
19617                                                                                       2.68 ml of 9.8%
19618                                                                                                  62.5
19619                                                                                                200.00
19620                                                                                                 16.00
19621                                                                                                272.00
19622                                                                                                  2.68
19623                                                                                                 16.00
19624                                                                                                272.00
19625                                                                                                 16.00
19626                                                                                                272.00
19627                                                                                                  2.68
19628                                                                                                 16.00
19629                                                                                                200.00
19630                                                                                                 16.00
19631                                                                                                200.00
19632                                                                                                 16.00
19633                                                                                                 16.00
19634                                                                                                 75.00
19635                                                                                                  2.00
19636                                                                                                 16.00
19637                                                                                                 15.00
19638                                                                                                200.00
19639                                                                                                 90.00
19640                                                                                                 75.00
19641                                                                                           unspecified
19642                                                                                                500.00
19643                                                                                                  1.20
19644                                                                                                250.00
19645                                                                                                250.00
19646                                                                                                  1.00
19647                                                                                                 23.00
19648                                                                                                460.00
19649                                                                                                136.00
19650                                                                                                500.00
19651                                                                                                1 drop
19652                                                                                                 23.00
19653                                                                                                136.00
19654                                                                                                 70.00
19655                                                                                                 60.00
19656                                                                                                 30.00
19657                                                                                                500.00
19658                                                                                                500.00
19659                                                                                                  1.00
19660                                                                                                 23.00
19661                                                                                                136.00
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19664                                                                                                500.00
19665                                                                                                 40.00
19666                                                                                                250.00
19667                                                                                                 23.00
19668                                                                                                 80.00
19669                                                                                                    75
19670                                                                                                 80.00
19671                                                                                                 16.00
19672                                                                                                200.00
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19675                                                                                                250.00
19676                                                                                                200.00
19677                                                                                                  3.50
19678                                                                                                 75.00
19679                                                                                                250.00
19680                                                                                                300.00
19681                                                                                                 75.00
19682                                                                                                 80.00
19683                                                                                                460.00
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19687                                                                                                 37.50
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19691                                                                                                 23.00
19692                                                                                                 50.00
19693                                                                                                 23.00
19694                                                                                                460.00
19695                                                                                                 23.00
19696                                                                                                 23.00
19697                                                                                                 23.00
19698                                                                                                 23.00
19699                                                                                                 16.00
19700                                                                                                 23.00
19701                                                                                                 16.00
19702                                                                                                 23.00
19703                                                                                                 16.00
19704                                                                                                272.00
19705                                                                                                227.00
19706                                                                                                  4.00
19707                                                                                                136.00
19708                                                                                               272 mcg
19709                                                                                                227.00
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19719                                                                                                  1.00
19720                                                                                                150.00
19721                                                                                                 50.00
19722                                                                                           unspecified
19723                                                                                                136.00
19724                                                                                                  1.00
19725                                                                                                250.00
19726                                                                                                500.00
19727                                                                                                 50.00
19728                                                                                                  2.00
19729                                                                                                  1.00
19730                                                                                                  5.00
19731                                                                                                136.00
19732                                                                                                 50.00
19733                                                                                                 50.00
19734                                                                                                500.00
19735                                                                                          small amount
19736                                                                                                 16.00
19737                                                                                          small amount
19738                                                                                                 16.00
19739                                                                                                 16.00
19740                                                                                                 11.50
19741                                                                          based on weight (51-100 lbs)
19742                                                                                                100.00
19743                                                                                                 75.00
19744                                                                                                200.00
19745                                                                                                 23.00
19746                                                                                                  2.68
19747                                                                                                 10.00
19748                                                                                                 50.00
19749                                                                                               1000.00
19750                                                                                                 23.00
19751                                                                                                200.00
19752                                                                                                 16.00
19753                                                                                                  1.00
19754                                                                                               23, 228
19755                                                                                               1000.00
19756                                                                                                 10.00
19757                                                                                                 75.00
19758                                                                                                200.00
19759                                                                                                 10.00
19760                                                                                                 60.00
19761                                                                                                 10.00
19762                                                                                                 20.00
19763                                                                                                 20.00
19764                                                                                                200.00
19765                                                                                                200.00
19766                                                                                                  3.00
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19769                                                                                                810.00
19770                                                                                                200.00
19771                                                                                             13.5, 810
19772                                                                                                125.00
19773                                                                                                200.00
19774                                                                                                810.00
19775                                                                                                250.00
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19779                                                                                                  6.00
19780                                                                                                  1.00
19781                                                                                                  1.00
19782                                                                                                  2.00
19783                                                                                                810.00
19784                                                                                                 16.00
19785                                                                                                150.00
19786                                                                                                  4.00
19787                                                                                                200.00
19788                                                                                           unspecified
19789                                                                                                  2.80
19790                                                                                           unspecified
19791                                                                                                 80.00
19792                                                                                           unspecified
19793                                                                                                  1.00
19794                                                                                                 23.00
19795                                                                                               1000.00
19796                                                                                                 80.00
19797                                                                                                600.00
19798                                                                                                 80.00
19799                                                                                                600.00
19800                                                                                                    75
19801                                                                           based on weight (44-88 lbs)
19802                                                                                                  1.00
19803                                                                          based on weight (51-100 lbs)
19804                                                                                                  1.00
19805                                                                                                  1.00
19806                                                                                                  1.00
19807                                                                                                  1.00
19808                                                                                                 70.00
19809                                                                                                  1.00
19810                                                                                                  3.00
19811                                                                                                200.00
19812                                                                                                  1.00
19813                                                                                                  1.00
19814                                                                                                200.00
19815                                                                                                 10.00
19816                                                                                                  1.00
19817                                                                                                  1.00
19818                                                                                                  0.10
19819                                                                                                 16.00
19820                                                                                                 23.00
19821                                                                                                  1.00
19822                                                                                                 75.00
19823                                                                                          small amount
19824                                                                                                200.00
19825                                                                                                  1.00
19826                                                                                                 23.00
19827                                                                                                 80.00
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19830                                                                                                 80.00
19831                                                                                                200.00
19832                                                                                                251.00
19833                                                                                                  4.70
19834                                                                                                 30.00
19835                                                                                                200.00
19836                                                                                                120.00
19837                                                                                                 15.00
19838                                                                                           unspecified
19839                                                                                                 60.00
19840                                                                                                 16.00
19841                                                                                                 15.00
19842                                                                                                 60.00
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19846                                                                                                  1.00
19847                                                                                                  1.00
19848                                                                                                600.00
19849                                                                                                 40.00
19850                                                                                                 60.00
19851                                                                          based on weight (60-100 lbs)
19852                                                                                                  6.00
19853                                                                                                    75
19854                                                                                                 110.5
19855                                                                                                500.00
19856                                                                        based on weight (50.1-100 lbs)
19857                                                                                                 110.5
19858                                                                                                  9.80
19859                                                                                                  8.00
19860                                                                                               1 mg/lb
19861                                                                                                  8.00
19862                                                                                                  2.68
19863                                                                                                 23.00
19864                                                                                                960.00
19865                                                                                                125.00
19866                                                                                              2 sprays
19867                                                                                                 23.00
19868                                                                                                  8.00
19869                                                                                                136.00
19870                                                                                                 23.00
19871                                                                                                228.00
19872                                                                                                  8.00
19873                                                                                                 23.00
19874                                                                                                136.00
19875                                                                                                  8.00
19876                                                                                           unspecified
19877                                                                                               1000.00
19878                                                                                                480.00
19879                                                                                                  8.00
19880                                                                                                204.00
19881                                                                                           unspecified
19882                                                                                                100.00
19883                                                                                                300.00
19884                                                                                                  1.00
19885                                                                                                  8.00
19886                                                                                                  8.00
19887                                                                                                  1.00
19888                                                                          based on weight (50-100 lbs)
19889                                                                                                500.00
19890                                                                                                300.00
19891                                                                                                  9.30
19892                                                                                                 62.50
19893                                                                                                  4.50
19894                                                                                                 23.00
19895                                                                                                460.00
19896                                                                                                228.00
19897                                                                                                150.00
19898                                                                                                200.00
19899                                                                                                 15.00
19900                                                                                                  6.00
19901                                                                                                136.00
19902                                                                                                272.00
19903                                                                                                136.00
19904                                                                                                272.00
19905                                                                                                136.00
19906                                                                                                 16.00
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19908                                                                                                200.00
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19910                                                                                                200.00
19911                                                                                       based on weight
19912                                                                                           unspecified
19913                                                                                                  4.00
19914                                                                                           unspecified
19915                                                                                                  0.40
19916                                                                                                  0.50
19917                                                                                           application
19918                                                                                                  0.40
19919                                                                                                  0.50
19920                                                                                                  0.50
19921                                                                                                  0.50
19922                                                                                                  0.50
19923                                                                                                  2.00
19924                                                                                                300.00
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19929                                                                                                  0.50
19930                                                                                             13.5, 810
19931                                                                                                500.00
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19934                                                                                                136.00
19935                                                                                                750.00
19936                                                                                                    50
19937                                                                                                 20.00
19938                                                                                                  2.00
19939                                                                                                200.00
19940                                                                                                  3.00
19941                                                                                                500.00
19942                                                                                                 75.00
19943                                                                                                    90
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19951                                                                                                200.00
19952                                                                                           unspecified
19953                                                                                                 34.00
19954                                                                                                272.00
19955                                                                                                272.00
19956                                                                                                272.00
19957                                                                                                272.00
19958                                                                                                collar
19959                                                                                                  1.00
19960                                                                                                  1.00
19961                                                                                                 75.00
19962                                                                                                  1.00
19963                                                                                                 75.00
19964                                                                                                  1.00
19965                                                                                                 75.00
19966                                                                                                 50.00
19967                                                                                                 50.00
19968                                                                                                 50.00
19969                                                                                               2 drops
19970                                                                                                  2.00
19971                                                                                                  1.00
19972                                                                                                272.00
19973                                                                                                200.00
19974                                                                                                113.50
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19976                                                                                                 50.00
19977                                                                                                  0.40
19978                                                                                                272.00
19979                                                                                                272.00
19980                                                                                                  0.40
19981                                                                                                 75.00
19982                                                                                                 80.00
19983                                                                                                  0.40
19984                                                                                           unspecified
19985                                                                                                  0.40
19986                                                                                                  0.40
19987                                                                                                  0.30
19988                                                                                                 75.00
19989                                                                                                250.00
19990                                                                                                  5.00
19991                                                                                                  1.00
19992                                                                                                  1.00
19993                                                                                                 75.00
19994                                                                                                200.00
19995                                                                                                272.00
19996                                                                                                272.00
19997                                                                                                136.00
19998                                                                                                272.00
19999                                                                                                500.00
          dose_unit
1                mg
2                mg
3                ml
4                mg
5                iu
6                mg
7                mg
8                mg
9                mg
10    other specify
11            drops
12    other specify
13               mg
14    other specify
15               mg
16               ml
17               mg
18            drops
19            drops
20            drops
21               mg
22      unspecified
23               mg
24               mg
25               mg
26               mg
27               mg
28            drops
29               mg
30               mg
31               mg
32               mg
33               mg
34            drops
35            drops
36               mg
37               mg
38               mg
39               ml
40    other specify
41      unspecified
42    other specify
43               mg
44               mg
45               mg
46    other specify
47              mcg
48    other specify
49    other specify
50               mg
51    other specify
52               mg
53              mcg
54               mg
55               mg
56            units
57            units
58               mg
59    other specify
60    other specify
61               iu
62    other specify
63    other specify
64               mg
65            units
66            units
67    other specify
68               mg
69               mg
70    other specify
71               mg
72            drops
73    other specify
74    other specify
75    other specify
76               mg
77               mg
78            drops
79               mg
80               mg
81               mg
82               mg
83    other specify
84    other specify
85               mg
86               mg
87    other specify
88               mg
89               mg
90               mg
91            drops
92               mg
93               mg
94               mg
95               iu
96               mg
97               mg
98            units
99               mg
100              mg
101              mg
102              mg
103              mg
104              mg
105              mg
106              mg
107              mg
108              mg
109   other specify
110              mg
111           drops
112           drops
113           drops
114           drops
115              ml
116              ml
117              mg
118   other specify
119   other specify
120   other specify
121   other specify
122   other specify
123              mg
124              gm
125              mg
126              mg
127              iu
128   other specify
129              gm
130   other specify
131              gm
132   other specify
133              mg
134              mg
135              mg
136              mg
137              mg
138              mg
139              mg
140              mg
141              mg
142              mg
143              mg
144              mg
145             mcg
146              mg
147              mg
148              mg
149   other specify
150   other specify
151   other specify
152   other specify
153   other specify
154              mg
155   other specify
156   other specify
157              iu
158              mg
159              mg
160              mg
161   other specify
162   other specify
163              gm
164   other specify
165              gm
166              mg
167     unspecified
168              mg
169              mg
170           units
171              mg
172              mg
173              ml
174              mg
175   other specify
176   other specify
177              mg
178              mg
179              gm
180              ml
181              ml
182              ml
183              ml
184              mg
185              ml
186              mg
187              mg
188   other specify
189              ml
190              ml
191              ml
192   other specify
193              ml
194              ml
195   other specify
196              ml
197              ml
198              mg
199              mg
200           units
201           units
202              mg
203              mg
204              mg
205              mg
206              mg
207              mg
208              mg
209              mg
210              mg
211              mg
212              mg
213              mg
214              mg
215              mg
216              ml
217   other specify
218              ml
219              ml
220   other specify
221              mg
222              mg
223              ml
224              mg
225              mg
226              mg
227             mcg
228              mg
229   other specify
230   other specify
231              mg
232              mg
233   other specify
234              oz
235              mg
236   other specify
237   other specify
238   other specify
239              mg
240              ml
241              mg
242              ml
243   other specify
244   other specify
245              mg
246              mg
247              mg
248   other specify
249              mg
250              ml
251              mg
252              mg
253              mg
254              mg
255              mg
256              mg
257           units
258   other specify
259   other specify
260              mg
261              mg
262              mg
263              mg
264              mg
265              mg
266              mg
267              mg
268              mg
269              mg
270              mg
271              mg
272              mg
273   other specify
274   other specify
275   other specify
276   other specify
277   other specify
278           drops
279   other specify
280   other specify
281   other specify
282   other specify
283   other specify
284   other specify
285           drops
286   other specify
287              mg
288             mcg
289              mg
290              mg
291              mg
292              gm
293              mg
294              mg
295           units
296              mg
297              mg
298              mg
299              mg
300              gm
301              mg
302              mg
303           drops
304              mg
305              mg
306              mg
307              mg
308              ml
309   other specify
310             mcg
311              mg
312   other specify
313              mg
314              mg
315             mcg
316              mg
317           units
318           units
319              gm
320              mg
321              mg
322              mg
323             mcg
324   other specify
325              mg
326              mg
327           drops
328   other specify
329   other specify
330              mg
331              mg
332   other specify
333   other specify
334              mg
335              mg
336              mg
337              mg
338              mg
339              mg
340              mg
341             mcg
342              mg
343              ml
344              ml
345              mg
346              mg
347              mg
348              mg
349   other specify
350              mg
351              mg
352              mg
353              mg
354              mg
355              mg
356              mg
357              mg
358              mg
359              mg
360              mg
361              mg
362              mg
363              mg
364              mg
365              mg
366     unspecified
367              mg
368              mg
369              mg
370           drops
371           drops
372              mg
373           drops
374   other specify
375   other specify
376   other specify
377           drops
378   other specify
379   other specify
380   other specify
381   other specify
382           drops
383   other specify
384   other specify
385   other specify
386   other specify
387              mg
388              ml
389              mg
390              mg
391   other specify
392             mcg
393   other specify
394              mg
395   other specify
396   other specify
397   other specify
398              mg
399              gm
400              mg
401   other specify
402   other specify
403             mcg
404              mg
405              mg
406             mcg
407              mg
408              mg
409              mg
410              mg
411              mg
412           drops
413              mg
414              mg
415              mg
416              ml
417              mg
418             mcg
419              mg
420              mg
421              ml
422              ml
423              ml
424              mg
425              mg
426              mg
427              ml
428              mg
429             mcg
430              mg
431              mg
432              mg
433             mcg
434             mcg
435              mg
436              mg
437              mg
438              mg
439             mcg
440              mg
441              mg
442              mg
443              mg
444              mg
445              mg
446              mg
447           drops
448              mg
449     unspecified
450              mg
451              mg
452              mg
453           drops
454              mg
455              mg
456              mg
457              gm
458              mg
459              mg
460              mg
461   other specify
462   other specify
463             mcg
464             mcg
465              mg
466             mcg
467              mg
468              mg
469              mg
470              mg
471              ml
472              mg
473           units
474             mcg
475              mg
476              mg
477              ml
478             mcg
479              mg
480   other specify
481              mg
482              mg
483              mg
484              ml
485              mg
486              mg
487             mcg
488              mg
489              mg
490              mg
491   other specify
492             mcg
493              mg
494             mcg
495             mcg
496             mcg
497              mg
498   other specify
499              mg
500              mg
501              mg
502             mcg
503              mg
504   other specify
505   other specify
506              mg
507              mg
508              mg
509              gm
510              mg
511              mg
512              mg
513             mcg
514              mg
515              mg
516              gm
517              mg
518              mg
519   other specify
520              mg
521              mg
522              mg
523             mcg
524              mg
525              mg
526             mcg
527              mg
528              mg
529              mg
530   other specify
531              mg
532             mcg
533              mg
534             mcg
535              mg
536              mg
537           drops
538   other specify
539   other specify
540   other specify
541   other specify
542   other specify
543              mg
544              mg
545              gm
546              mg
547              mg
548   other specify
549              mg
550              ml
551   other specify
552              mg
553              mg
554   other specify
555   other specify
556              mg
557   other specify
558              ml
559   other specify
560              mg
561              mg
562              mg
563              mg
564              mg
565              mg
566              mg
567              mg
568   other specify
569              mg
570              mg
571              mg
572              mg
573              mg
574   other specify
575              ml
576             tbs
577              mg
578              mg
579              mg
580              mg
581              mg
582              ml
583              mg
584              mg
585              mg
586              mg
587              mg
588              mg
589              mg
590              mg
591              mg
592              mg
593              mg
594           drops
595              mg
596              mg
597   other specify
598   other specify
599   other specify
600   other specify
601              mg
602              mg
603   other specify
604   other specify
605           units
606           units
607              mg
608   other specify
609   other specify
610           drops
611              mg
612              mg
613              mg
614              mg
615              mg
616              mg
617              mg
618              mg
619   other specify
620              mg
621              mg
622              mg
623              mg
624              mg
625              mg
626              mg
627              mg
628              mg
629              mg
630              mg
631              mg
632              ml
633              mg
634   other specify
635              mg
636             mcg
637   other specify
638              mg
639              mg
640              mg
641             mcg
642              ml
643              mg
644             mcg
645              mg
646              mg
647              mg
648              mg
649              mg
650   other specify
651             mcg
652              mg
653              mg
654              mg
655              mg
656              mg
657              mg
658              ml
659             mcg
660              mg
661              ml
662              mg
663              mg
664   other specify
665              mg
666              mg
667           drops
668           drops
669              mg
670              mg
671             mcg
672           drops
673              mg
674             mcg
675              mg
676           drops
677              ml
678              mg
679              mg
680              mg
681              mg
682              ml
683              mg
684              mg
685              mg
686     unspecified
687              mg
688              mg
689              mg
690              mg
691              mg
692              mg
693              mg
694   other specify
695              ml
696              mg
697              mg
698              mg
699           units
700             mcg
701              mg
702              ml
703   other specify
704   other specify
705              mg
706              mg
707   other specify
708   other specify
709     unspecified
710     unspecified
711     unspecified
712     unspecified
713              mg
714              ml
715              mg
716              mg
717              mg
718              mg
719              ml
720              mg
721              mg
722              mg
723              mg
724              ml
725              mg
726              ml
727   other specify
728   other specify
729   other specify
730             mcg
731              mg
732              mg
733           drops
734   other specify
735              mg
736              mg
737           drops
738   other specify
739   other specify
740              mg
741           drops
742              mg
743              mg
744           drops
745   other specify
746              mg
747           drops
748              mg
749              mg
750              mg
751              mg
752              mg
753              mg
754   other specify
755   other specify
756   other specify
757   other specify
758              mg
759           drops
760           drops
761           drops
762              mg
763           drops
764             mcg
765              mg
766              mg
767           drops
768           drops
769   other specify
770              mg
771              mg
772              mg
773              mg
774              mg
775              mg
776              mg
777              mg
778     unspecified
779              mg
780              mg
781              mg
782              mg
783              mg
784              mg
785   other specify
786              mg
787              mg
788              ml
789           drops
790   other specify
791              mg
792   other specify
793              mg
794              mg
795              mg
796              mg
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803   other specify
804   other specify
805              mg
806              mg
807              ml
808             mcg
809              mg
810   other specify
811              ml
812              mg
813              mg
814              mg
815              mg
816   other specify
817              mg
818             mcg
819             mcg
820             mcg
821             mcg
822   other specify
823              ml
824   other specify
825             mcg
826              mg
827   other specify
828   other specify
829   other specify
830   other specify
831              mg
832     unspecified
833              mg
834              mg
835              mg
836              mg
837              ml
838              mg
839              ml
840              gm
841              mg
842              mg
843           drops
844              ml
845              mg
846   other specify
847   other specify
848           drops
849   other specify
850              ml
851             mcg
852             mcg
853              mg
854             mcg
855              mg
856             mcg
857              mg
858              mg
859              mg
860              mg
861              mg
862   other specify
863              mg
864              mg
865             mcg
866              mg
867              mg
868              mg
869              mg
870              mg
871              mg
872              mg
873              mg
874              mg
875              mg
876              mg
877           drops
878              mg
879              mg
880              mg
881   other specify
882              mg
883              mg
884              mg
885              mg
886              mg
887              mg
888              mg
889              mg
890              mg
891              mg
892              mg
893              mg
894              mg
895              mg
896              mg
897              mg
898              mg
899              mg
900   other specify
901           drops
902             mcg
903              mg
904              ml
905              ml
906              mg
907             mcg
908              mg
909             mcg
910             mcg
911              mg
912             mcg
913   other specify
914             mcg
915              mg
916              mg
917              mg
918              mg
919              mg
920              mg
921   other specify
922           drops
923              ml
924              ml
925              ml
926              ml
927              ml
928              mg
929           drops
930           drops
931   other specify
932   other specify
933              mg
934              mg
935              mg
936           drops
937           drops
938              mg
939              mg
940              mg
941              mg
942              mg
943              mg
944              mg
945              mg
946              mg
947              mg
948              mg
949             tbs
950           units
951   other specify
952           units
953              oz
954           units
955   other specify
956   other specify
957             tbs
958              mg
959   other specify
960   other specify
961   other specify
962           units
963              ml
964              mg
965              mg
966              mg
967   other specify
968              ml
969           drops
970   other specify
971              mg
972              mg
973              gm
974              mg
975              mg
976              mg
977           drops
978              mg
979   other specify
980   other specify
981              mg
982   other specify
983   other specify
984              mg
985              mg
986              mg
987              gm
988              mg
989   other specify
990              mg
991   other specify
992   other specify
993   other specify
994              mg
995   other specify
996   other specify
997              mg
998              mg
999   other specify
1000             mg
1001    unspecified
1002             mg
1003             mg
1004             mg
1005             mg
1006             mg
1007             mg
1008             mg
1009             mg
1010             mg
1011             mg
1012             mg
1013             mg
1014  other specify
1015             mg
1016             mg
1017  other specify
1018  other specify
1019  other specify
1020  other specify
1021  other specify
1022             mg
1023  other specify
1024  other specify
1025  other specify
1026             mg
1027  other specify
1028          drops
1029  other specify
1030  other specify
1031          drops
1032             mg
1033          drops
1034             mg
1035             mg
1036  other specify
1037  other specify
1038             mg
1039  other specify
1040             mg
1041             mg
1042  other specify
1043  other specify
1044  other specify
1045             mg
1046            mcg
1047             mg
1048             gm
1049             mg
1050  other specify
1051  other specify
1052  other specify
1053             oz
1054             oz
1055             mg
1056             mg
1057             mg
1058             mg
1059             mg
1060  other specify
1061  other specify
1062             mg
1063             mg
1064  other specify
1065             mg
1066  other specify
1067          drops
1068             mg
1069  other specify
1070  other specify
1071             mg
1072          drops
1073  other specify
1074  other specify
1075             mg
1076             ml
1077  other specify
1078  other specify
1079  other specify
1080             ml
1081             mg
1082             mg
1083             mg
1084             ml
1085             mg
1086  other specify
1087  other specify
1088             mg
1089             mg
1090             mg
1091          drops
1092             mg
1093             mg
1094             mg
1095             oz
1096             gm
1097             mg
1098             ml
1099  other specify
1100  other specify
1101  other specify
1102             mg
1103             mg
1104             mg
1105             mg
1106             mg
1107             mg
1108  other specify
1109             mg
1110             mg
1111             mg
1112  other specify
1113             mg
1114             mg
1115             mg
1116  other specify
1117             mg
1118             mg
1119             mg
1120            mcg
1121             mg
1122             mg
1123             mg
1124             mg
1125             mg
1126             mg
1127             mg
1128             mg
1129  other specify
1130             mg
1131          drops
1132             mg
1133             mg
1134             ml
1135            tbs
1136             mg
1137             mg
1138             mg
1139          units
1140             ml
1141             mg
1142             mg
1143             ml
1144             mg
1145            mcg
1146             oz
1147            mcg
1148             ml
1149             mg
1150  other specify
1151          drops
1152  other specify
1153  other specify
1154  other specify
1155  other specify
1156             mg
1157             mg
1158             mg
1159  other specify
1160  other specify
1161  other specify
1162             mg
1163             mg
1164             mg
1165  other specify
1166  other specify
1167             mg
1168          units
1169          units
1170  other specify
1171            mcg
1172             mg
1173  other specify
1174             mg
1175  other specify
1176            mcg
1177  other specify
1178            mcg
1179  other specify
1180             mg
1181             mg
1182             mg
1183             mg
1184             mg
1185  other specify
1186  other specify
1187             mg
1188             mg
1189  other specify
1190  other specify
1191             mg
1192             mg
1193             mg
1194          units
1195  other specify
1196             mg
1197             mg
1198            mcg
1199             ml
1200             ml
1201             ml
1202             mg
1203             mg
1204             mg
1205            mcg
1206            mcg
1207             mg
1208  other specify
1209  other specify
1210             mg
1211             mg
1212             mg
1213            mcg
1214            mcg
1215            mcg
1216            mcg
1217  other specify
1218             mg
1219             mg
1220             oz
1221            mcg
1222             ml
1223             mg
1224             mg
1225            mcg
1226  other specify
1227            mcg
1228            mcg
1229            mcg
1230             mg
1231             mg
1232             mg
1233    unspecified
1234             mg
1235             mg
1236             mg
1237             mg
1238             mg
1239             mg
1240  other specify
1241  other specify
1242  other specify
1243             mg
1244             mg
1245             mg
1246             mg
1247  other specify
1248  other specify
1249             mg
1250             mg
1251             mg
1252             mg
1253             mg
1254            mcg
1255             mg
1256             mg
1257            mcg
1258             mg
1259             mg
1260             mg
1261             mg
1262             mg
1263             ml
1264             mg
1265             mg
1266             mg
1267             mg
1268             mg
1269             mg
1270             mg
1271            mcg
1272             mg
1273             mg
1274             mg
1275             mg
1276             ml
1277             mg
1278             mg
1279             mg
1280             mg
1281             mg
1282             mg
1283             mg
1284             mg
1285             mg
1286          drops
1287             mg
1288             mg
1289          drops
1290             mg
1291             mg
1292             mg
1293             mg
1294             mg
1295             ml
1296             mg
1297             mg
1298             ml
1299             mg
1300             mg
1301             mg
1302  other specify
1303             mg
1304             mg
1305             mg
1306             mg
1307             mg
1308             ml
1309             ml
1310             mg
1311             mg
1312             mg
1313             mg
1314             mg
1315             mg
1316             mg
1317             mg
1318             mg
1319             mg
1320             mg
1321             mg
1322             mg
1323             ml
1324             mg
1325             mg
1326             mg
1327             mg
1328  other specify
1329  other specify
1330             mg
1331             mg
1332             mg
1333             mg
1334             mg
1335             mg
1336    unspecified
1337             mg
1338  other specify
1339  other specify
1340  other specify
1341             mg
1342  other specify
1343             mg
1344  other specify
1345          drops
1346  other specify
1347             mg
1348  other specify
1349             mg
1350             mg
1351             ml
1352  other specify
1353             mg
1354             mg
1355  other specify
1356             mg
1357             ml
1358             mg
1359  other specify
1360             mg
1361             mg
1362             mg
1363             mg
1364             ml
1365             ml
1366             mg
1367             mg
1368             mg
1369             mg
1370             mg
1371  other specify
1372             mg
1373  other specify
1374             mg
1375             mg
1376             mg
1377             mg
1378             mg
1379             mg
1380             mg
1381             mg
1382             mg
1383             mg
1384            tsp
1385             mg
1386             mg
1387             mg
1388             mg
1389             mg
1390             mg
1391             ml
1392             mg
1393  other specify
1394             mg
1395             mg
1396             mg
1397             mg
1398          drops
1399             mg
1400             mg
1401             mg
1402             ml
1403             mg
1404  other specify
1405          drops
1406             mg
1407             mg
1408             mg
1409             mg
1410             mg
1411             mg
1412             mg
1413             mg
1414             mg
1415  other specify
1416             mg
1417  other specify
1418             mg
1419  other specify
1420             mg
1421             mg
1422  other specify
1423             mg
1424             mg
1425             mg
1426             mg
1427             mg
1428             mg
1429             mg
1430             mg
1431  other specify
1432             mg
1433             mg
1434  other specify
1435  other specify
1436             mg
1437             mg
1438  other specify
1439             mg
1440             ml
1441  other specify
1442  other specify
1443  other specify
1444             mg
1445             ml
1446  other specify
1447  other specify
1448             ml
1449             mg
1450  other specify
1451  other specify
1452             mg
1453             ml
1454             mg
1455             mg
1456             mg
1457             mg
1458             mg
1459  other specify
1460             gm
1461             mg
1462  other specify
1463             mg
1464  other specify
1465             mg
1466             mg
1467             mg
1468             mg
1469             mg
1470             mg
1471             mg
1472             ml
1473    unspecified
1474             ml
1475    unspecified
1476             mg
1477  other specify
1478             mg
1479             mg
1480             mg
1481             mg
1482             mg
1483             gm
1484             mg
1485             mg
1486             mg
1487             mg
1488  other specify
1489  other specify
1490  other specify
1491          units
1492            mcg
1493             mg
1494             mg
1495             mg
1496  other specify
1497             mg
1498             mg
1499             mg
1500             mg
1501  other specify
1502            mcg
1503  other specify
1504            tsp
1505             iu
1506             gm
1507             gm
1508             iu
1509             iu
1510            mcg
1511  other specify
1512  other specify
1513            mcg
1514  other specify
1515            mcg
1516             mg
1517            mcg
1518             mg
1519            mcg
1520             mg
1521  other specify
1522             mg
1523             mg
1524             mg
1525            tsp
1526             mg
1527             mg
1528  other specify
1529  other specify
1530            mcg
1531             mg
1532  other specify
1533             mg
1534          units
1535          units
1536  other specify
1537  other specify
1538             mg
1539  other specify
1540          drops
1541    unspecified
1542    unspecified
1543          drops
1544             mg
1545             mg
1546             mg
1547             mg
1548             mg
1549             gm
1550             ml
1551  other specify
1552             mg
1553             mg
1554             ml
1555             ml
1556  other specify
1557             mg
1558             mg
1559             mg
1560             mg
1561             mg
1562             mg
1563             mg
1564             mg
1565             mg
1566             mg
1567             mg
1568             mg
1569  other specify
1570          drops
1571          mg/kg
1572  other specify
1573             mg
1574             mg
1575             mg
1576             ml
1577             mg
1578             mg
1579             mg
1580             mg
1581             mg
1582             mg
1583            mcg
1584             mg
1585             ml
1586             oz
1587  other specify
1588             mg
1589             mg
1590             ml
1591             mg
1592             mg
1593             mg
1594             mg
1595             mg
1596  other specify
1597  other specify
1598  other specify
1599            mcg
1600             mg
1601             ml
1602             mg
1603             mg
1604             mg
1605             mg
1606             mg
1607             mg
1608             mg
1609             mg
1610             mg
1611          units
1612             mg
1613             mg
1614             mg
1615             mg
1616             mg
1617             mg
1618             mg
1619             mg
1620             mg
1621          drops
1622             mg
1623             mg
1624             mg
1625             mg
1626             mg
1627            mcg
1628             ml
1629             mg
1630            mcg
1631             ml
1632             ml
1633  other specify
1634          drops
1635  other specify
1636          units
1637  other specify
1638  other specify
1639  other specify
1640  other specify
1641             mg
1642             mg
1643             mg
1644             mg
1645  other specify
1646             mg
1647             mg
1648             mg
1649             mg
1650    unspecified
1651             mg
1652             mg
1653  other specify
1654            mcg
1655            mcg
1656             ml
1657            mcg
1658             oz
1659            mcg
1660             mg
1661             mg
1662  other specify
1663  other specify
1664             mg
1665             mg
1666             mg
1667             mg
1668  other specify
1669            mcg
1670            mcg
1671  other specify
1672             ml
1673             mg
1674             gm
1675  other specify
1676            mcg
1677            mcg
1678             mg
1679  other specify
1680  other specify
1681  other specify
1682            mcg
1683  other specify
1684  other specify
1685  other specify
1686             mg
1687             mg
1688            mcg
1689  other specify
1690  other specify
1691             mg
1692  other specify
1693             mg
1694             mg
1695          drops
1696             mg
1697  other specify
1698             mg
1699             ml
1700             ml
1701          drops
1702          drops
1703             mg
1704             gm
1705             mg
1706          drops
1707             ml
1708             mg
1709          drops
1710             mg
1711             ml
1712  other specify
1713             ml
1714             mg
1715  other specify
1716             ml
1717            mcg
1718             mg
1719             mg
1720  other specify
1721             mg
1722             mg
1723             mg
1724             mg
1725            mcg
1726             ml
1727          units
1728          units
1729             ml
1730            mcg
1731          units
1732          units
1733            mcg
1734            mcg
1735            mcg
1736            mcg
1737             mg
1738             mg
1739             mg
1740             mg
1741             mg
1742            mcg
1743            mcg
1744            mcg
1745             mg
1746             ml
1747  other specify
1748  other specify
1749  other specify
1750             mg
1751             mg
1752             mg
1753  other specify
1754             mg
1755             ml
1756  other specify
1757  other specify
1758  other specify
1759  other specify
1760             ml
1761  other specify
1762             mg
1763             mg
1764             mg
1765             mg
1766             gm
1767             mg
1768             mg
1769             mg
1770             mg
1771             mg
1772             mg
1773  other specify
1774             mg
1775             mg
1776             mg
1777             mg
1778            mcg
1779             mg
1780            mcg
1781             mg
1782             mg
1783             mg
1784             mg
1785            mcg
1786             mg
1787             gm
1788             mg
1789          drops
1790             mg
1791    unspecified
1792             mg
1793             mg
1794    unspecified
1795    unspecified
1796  other specify
1797             mg
1798             ml
1799  other specify
1800             mg
1801             mg
1802  other specify
1803  other specify
1804             gm
1805          drops
1806             mg
1807             mg
1808             mg
1809             mg
1810             mg
1811             mg
1812            tsp
1813            tbs
1814             mg
1815             mg
1816             mg
1817          drops
1818             mg
1819          drops
1820  other specify
1821             mg
1822             mg
1823          drops
1824             mg
1825             mg
1826             ml
1827          drops
1828            mcg
1829             mg
1830  other specify
1831  other specify
1832             ml
1833             mg
1834            mcg
1835             mg
1836            mcg
1837             mg
1838            mcg
1839             mg
1840             mg
1841  other specify
1842  other specify
1843            mcg
1844            mcg
1845  other specify
1846  other specify
1847  other specify
1848  other specify
1849  other specify
1850  other specify
1851  other specify
1852             mg
1853             mg
1854             mg
1855             mg
1856             mg
1857             mg
1858             mg
1859          drops
1860             mg
1861             mg
1862             mg
1863            mcg
1864  other specify
1865             mg
1866  other specify
1867  other specify
1868             mg
1869             gm
1870             mg
1871          drops
1872  other specify
1873  other specify
1874  other specify
1875          drops
1876            mcg
1877  other specify
1878             mg
1879             mg
1880            mcg
1881             mg
1882          drops
1883          drops
1884          drops
1885  other specify
1886             ml
1887  other specify
1888  other specify
1889            mcg
1890  other specify
1891             gm
1892             gm
1893  other specify
1894  other specify
1895             mg
1896             mg
1897             gm
1898             mg
1899             mg
1900             mg
1901             mg
1902             mg
1903             mg
1904             mg
1905             mg
1906             mg
1907             mg
1908            mcg
1909  other specify
1910             mg
1911             mg
1912             mg
1913             mg
1914             mg
1915             gm
1916  other specify
1917  other specify
1918  other specify
1919             mg
1920  other specify
1921  other specify
1922  other specify
1923             mg
1924          drops
1925  other specify
1926  other specify
1927             mg
1928  other specify
1929  other specify
1930  other specify
1931  other specify
1932             mg
1933             mg
1934  other specify
1935             mg
1936            mcg
1937             mg
1938          drops
1939  other specify
1940             mg
1941  other specify
1942            mcg
1943             mg
1944          drops
1945  other specify
1946            mcg
1947  other specify
1948  other specify
1949          drops
1950             mg
1951             mg
1952  other specify
1953             mg
1954  other specify
1955  other specify
1956  other specify
1957             mg
1958  other specify
1959             ml
1960  other specify
1961             mg
1962  other specify
1963  other specify
1964  other specify
1965             ml
1966             mg
1967             mg
1968             mg
1969             mg
1970            mcg
1971             ml
1972  other specify
1973  other specify
1974  other specify
1975             ml
1976            mcg
1977             mg
1978             mg
1979             mg
1980  other specify
1981  other specify
1982  other specify
1983  other specify
1984  other specify
1985  other specify
1986  other specify
1987  other specify
1988             mg
1989             ml
1990             mg
1991             mg
1992             mg
1993             mg
1994    unspecified
1995             mg
1996             mg
1997             mg
1998  other specify
1999             mg
2000             mg
2001             mg
2002             mg
2003             mg
2004             mg
2005             mg
2006            mcg
2007             mg
2008             mg
2009             mg
2010             oz
2011             mg
2012    unspecified
2013    unspecified
2014             mg
2015          drops
2016  other specify
2017            mcg
2018             mg
2019             mg
2020             mg
2021          drops
2022  other specify
2023          units
2024          units
2025  other specify
2026  other specify
2027  other specify
2028             mg
2029            mcg
2030             mg
2031            mcg
2032  other specify
2033  other specify
2034  other specify
2035  other specify
2036  other specify
2037             mg
2038  other specify
2039            mcg
2040             mg
2041  other specify
2042  other specify
2043             ml
2044          mg/kg
2045             mg
2046             ml
2047             ml
2048             ml
2049             ml
2050  other specify
2051  other specify
2052             ml
2053             ml
2054             mg
2055             mg
2056             mg
2057          drops
2058             mg
2059            mcg
2060            mcg
2061             mg
2062            mcg
2063            mcg
2064          drops
2065            mcg
2066             ml
2067             mg
2068             mg
2069            mcg
2070             ml
2071             mg
2072             mg
2073            mcg
2074            mcg
2075  other specify
2076            mcg
2077             mg
2078             mg
2079             mg
2080             mg
2081             mg
2082             mg
2083  other specify
2084  other specify
2085  other specify
2086  other specify
2087  other specify
2088  other specify
2089  other specify
2090             ml
2091  other specify
2092             mg
2093  other specify
2094             ml
2095             ml
2096  other specify
2097             mg
2098             mg
2099  other specify
2100             mg
2101             ml
2102             mg
2103             mg
2104             mg
2105             mg
2106             mg
2107  other specify
2108  other specify
2109  other specify
2110  other specify
2111             mg
2112             mg
2113  other specify
2114             mg
2115          drops
2116  other specify
2117             mg
2118  other specify
2119             mg
2120             ml
2121            mcg
2122  other specify
2123  other specify
2124  other specify
2125             mg
2126  other specify
2127  other specify
2128          drops
2129             ml
2130             ml
2131             ml
2132             ml
2133             ml
2134             mg
2135             mg
2136             ml
2137  other specify
2138  other specify
2139             ml
2140             mg
2141  other specify
2142             ml
2143  other specify
2144            tbs
2145             mg
2146  other specify
2147  other specify
2148             ml
2149  other specify
2150  other specify
2151  other specify
2152  other specify
2153             ml
2154             ml
2155             ml
2156             ml
2157             ml
2158             ml
2159             mg
2160             mg
2161  other specify
2162  other specify
2163  other specify
2164  other specify
2165  other specify
2166          drops
2167  other specify
2168             mg
2169            mcg
2170             mg
2171             mg
2172             mg
2173            mcg
2174             mg
2175  other specify
2176             mg
2177             mg
2178             mg
2179             mg
2180             mg
2181             mg
2182             mg
2183             mg
2184             mg
2185             mg
2186             mg
2187             mg
2188             mg
2189             mg
2190             mg
2191             mg
2192             mg
2193             mg
2194             mg
2195  other specify
2196            mcg
2197             mg
2198            mcg
2199  other specify
2200  other specify
2201  other specify
2202  other specify
2203  other specify
2204  other specify
2205  other specify
2206  other specify
2207  other specify
2208          drops
2209  other specify
2210             mg
2211          drops
2212             mg
2213             mg
2214          drops
2215             mg
2216  other specify
2217  other specify
2218             mg
2219  other specify
2220  other specify
2221             mg
2222  other specify
2223  other specify
2224  other specify
2225             mg
2226  other specify
2227             mg
2228            tbs
2229  other specify
2230             mg
2231             mg
2232             gm
2233             mg
2234          units
2235          units
2236             mg
2237  other specify
2238  other specify
2239          units
2240  other specify
2241  other specify
2242             ml
2243  other specify
2244  other specify
2245             mg
2246             mg
2247             mg
2248             mg
2249             mg
2250  other specify
2251            mcg
2252  other specify
2253             mg
2254             mg
2255  other specify
2256             mg
2257             gm
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2267             mg
2268             mg
2269    unspecified
2270    unspecified
2271             mg
2272             ml
2273             mg
2274             mg
2275             mg
2276             mg
2277            mcg
2278            mcg
2279          units
2280  other specify
2281             mg
2282  other specify
2283  other specify
2284             mg
2285             mg
2286             mg
2287            mcg
2288             mg
2289            tsp
2290             mg
2291             mg
2292             mg
2293             mg
2294            mcg
2295             mg
2296             mg
2297  other specify
2298             mg
2299             mg
2300             mg
2301  other specify
2302             ml
2303             mg
2304             mg
2305             mg
2306             mg
2307  other specify
2308            mcg
2309             mg
2310             mg
2311            mcg
2312             mg
2313             mg
2314             mg
2315             mg
2316             mg
2317             mg
2318             mg
2319             mg
2320             mg
2321             mg
2322             mg
2323             mg
2324             mg
2325             mg
2326             mg
2327             gm
2328             mg
2329  other specify
2330             mg
2331             mg
2332             mg
2333            mcg
2334            mcg
2335            mcg
2336             mg
2337  other specify
2338             mg
2339          drops
2340            mcg
2341             mg
2342          drops
2343            mcg
2344             mg
2345            mcg
2346             mg
2347            mcg
2348             mg
2349             mg
2350             mg
2351  other specify
2352            mcg
2353             mg
2354             mg
2355             mg
2356            mcg
2357             mg
2358             mg
2359            mcg
2360             mg
2361             mg
2362             mg
2363             iu
2364             mg
2365             mg
2366             mg
2367             mg
2368             mg
2369             mg
2370             mg
2371          drops
2372             mg
2373             mg
2374          drops
2375             mg
2376             mg
2377          drops
2378             mg
2379             mg
2380  other specify
2381             mg
2382             mg
2383             mg
2384  other specify
2385             mg
2386  other specify
2387             mg
2388             mg
2389             mg
2390  other specify
2391             mg
2392             mg
2393             gm
2394             mg
2395            mcg
2396             mg
2397             gm
2398  other specify
2399            mcg
2400             mg
2401            tbs
2402            tbs
2403  other specify
2404  other specify
2405  other specify
2406            tsp
2407            mcg
2408  other specify
2409             mg
2410             mg
2411             ml
2412             mg
2413             mg
2414             mg
2415             mg
2416            mcg
2417             mg
2418            mcg
2419            mcg
2420            mcg
2421             mg
2422             mg
2423             mg
2424             mg
2425             mg
2426             mg
2427             mg
2428             mg
2429             mg
2430             mg
2431             mg
2432             mg
2433             mg
2434             mg
2435             mg
2436             mg
2437          units
2438             mg
2439             mg
2440             mg
2441  other specify
2442             gm
2443          units
2444             ml
2445             mg
2446          units
2447             mg
2448          units
2449          units
2450             mg
2451          units
2452          units
2453             mg
2454          units
2455             mg
2456             mg
2457             mg
2458             mg
2459             mg
2460             ml
2461             ml
2462             oz
2463  other specify
2464          units
2465  other specify
2466             mg
2467            tbs
2468             mg
2469             mg
2470             mg
2471             mg
2472  other specify
2473          drops
2474          drops
2475             mg
2476             ml
2477             mg
2478             mg
2479  other specify
2480             mg
2481  other specify
2482  other specify
2483  other specify
2484             mg
2485             mg
2486  other specify
2487  other specify
2488             mg
2489             mg
2490  other specify
2491  other specify
2492  other specify
2493             mg
2494             mg
2495  other specify
2496             mg
2497             gm
2498             mg
2499  other specify
2500  other specify
2501             mg
2502             mg
2503             mg
2504  other specify
2505  other specify
2506  other specify
2507             mg
2508  other specify
2509             mg
2510            mcg
2511            mcg
2512            mcg
2513            mcg
2514            mcg
2515             mg
2516            mcg
2517             mg
2518  other specify
2519            mcg
2520             mg
2521             mg
2522             mg
2523            tsp
2524            tsp
2525             mg
2526             ml
2527             mg
2528             mg
2529             ml
2530             mg
2531             mg
2532             mg
2533             mg
2534          drops
2535             mg
2536          units
2537            mcg
2538            mcg
2539  other specify
2540  other specify
2541            mcg
2542  other specify
2543  other specify
2544             mg
2545  other specify
2546  other specify
2547  other specify
2548  other specify
2549    unspecified
2550    unspecified
2551             mg
2552             mg
2553             mg
2554             mg
2555             mg
2556             mg
2557             mg
2558  other specify
2559  other specify
2560  other specify
2561             mg
2562             mg
2563             mg
2564            mcg
2565             mg
2566             mg
2567             mg
2568             mg
2569             mg
2570             mg
2571             ml
2572  other specify
2573             ml
2574             mg
2575    unspecified
2576             mg
2577             mg
2578  other specify
2579             mg
2580  other specify
2581             mg
2582          drops
2583             ml
2584             ml
2585            mcg
2586  other specify
2587             mg
2588             mg
2589             mg
2590  other specify
2591  other specify
2592  other specify
2593          drops
2594            tsp
2595  other specify
2596  other specify
2597             mg
2598          drops
2599          drops
2600  other specify
2601  other specify
2602             ml
2603  other specify
2604          drops
2605          drops
2606  other specify
2607             mg
2608             mg
2609             mg
2610  other specify
2611             ml
2612             ml
2613             mg
2614            mcg
2615             mg
2616             mg
2617             mg
2618             ml
2619             mg
2620            mcg
2621             mg
2622             mg
2623             mg
2624             mg
2625             mg
2626             mg
2627             mg
2628             mg
2629             mg
2630             mg
2631             mg
2632            mcg
2633             mg
2634             mg
2635             mg
2636             mg
2637  other specify
2638             mg
2639             mg
2640             mg
2641             mg
2642  other specify
2643             mg
2644             mg
2645  other specify
2646             mg
2647            mcg
2648             mg
2649             mg
2650             mg
2651  other specify
2652          drops
2653          drops
2654             mg
2655    unspecified
2656             mg
2657             mg
2658             mg
2659  other specify
2660  other specify
2661  other specify
2662             mg
2663             mg
2664  other specify
2665             mg
2666             mg
2667             mg
2668             mg
2669             mg
2670            mcg
2671             mg
2672             mg
2673             mg
2674             mg
2675            mcg
2676             mg
2677             mg
2678             mg
2679             mg
2680            mcg
2681             mg
2682             mg
2683             mg
2684             mg
2685            mcg
2686             mg
2687             mg
2688             mg
2689             mg
2690            mcg
2691             mg
2692             mg
2693             mg
2694             mg
2695  other specify
2696             ml
2697             ml
2698             mg
2699  other specify
2700             mg
2701             mg
2702            mcg
2703             mg
2704             mg
2705             mg
2706  other specify
2707             mg
2708             ml
2709             mg
2710  other specify
2711             mg
2712             ml
2713          units
2714             mg
2715  other specify
2716             ml
2717  other specify
2718             mg
2719            mcg
2720             mg
2721          drops
2722             mg
2723             mg
2724             mg
2725            mcg
2726  other specify
2727             mg
2728             mg
2729             mg
2730             mg
2731             mg
2732             mg
2733             mg
2734             mg
2735             mg
2736             mg
2737             mg
2738             mg
2739             mg
2740             mg
2741             mg
2742  other specify
2743  other specify
2744             mg
2745  other specify
2746  other specify
2747             mg
2748  other specify
2749  other specify
2750             mg
2751             mg
2752             mg
2753  other specify
2754             mg
2755             mg
2756  other specify
2757             mg
2758             mg
2759             mg
2760          drops
2761             mg
2762             mg
2763             mg
2764             mg
2765             mg
2766             mg
2767             mg
2768             mg
2769             mg
2770             mg
2771             ml
2772            mcg
2773             mg
2774            mcg
2775             mg
2776          drops
2777            mcg
2778             mg
2779          drops
2780             mg
2781            mcg
2782             mg
2783          drops
2784             mg
2785             mg
2786             ml
2787             mg
2788             mg
2789             mg
2790             mg
2791            mcg
2792             mg
2793             mg
2794             mg
2795             mg
2796          drops
2797  other specify
2798             ml
2799             oz
2800             ml
2801  other specify
2802             ml
2803             oz
2804             mg
2805             mg
2806             ml
2807  other specify
2808             mg
2809             ml
2810             mg
2811             mg
2812  other specify
2813             mg
2814             mg
2815             mg
2816             mg
2817  other specify
2818  other specify
2819             ml
2820             ml
2821             mg
2822  other specify
2823             mg
2824             mg
2825  other specify
2826  other specify
2827  other specify
2828  other specify
2829             mg
2830          drops
2831  other specify
2832             ml
2833          units
2834             mg
2835             oz
2836             oz
2837             gm
2838  other specify
2839             ml
2840             mg
2841             mg
2842             oz
2843             mg
2844             mg
2845             mg
2846  other specify
2847             mg
2848             mg
2849             mg
2850             mg
2851  other specify
2852             mg
2853            mcg
2854             mg
2855  other specify
2856             mg
2857            mcg
2858             mg
2859             mg
2860             mg
2861             mg
2862             mg
2863             mg
2864  other specify
2865            mcg
2866  other specify
2867             mg
2868            mcg
2869          units
2870             mg
2871             ml
2872             mg
2873             mg
2874             mg
2875             mg
2876  other specify
2877             mg
2878             ml
2879          drops
2880          drops
2881          drops
2882             ml
2883             ml
2884             mg
2885             mg
2886             mg
2887  other specify
2888             mg
2889             mg
2890             ml
2891             mg
2892             mg
2893             mg
2894             mg
2895             ml
2896             mg
2897  other specify
2898             mg
2899  other specify
2900  other specify
2901             mg
2902             mg
2903  other specify
2904  other specify
2905  other specify
2906             mg
2907  other specify
2908             oz
2909  other specify
2910  other specify
2911  other specify
2912  other specify
2913             gm
2914             mg
2915             mg
2916             ml
2917             ml
2918             ml
2919  other specify
2920  other specify
2921  other specify
2922  other specify
2923  other specify
2924             mg
2925  other specify
2926  other specify
2927  other specify
2928             mg
2929             mg
2930             mg
2931             mg
2932  other specify
2933             mg
2934             mg
2935             mg
2936             mg
2937             mg
2938             mg
2939             mg
2940             mg
2941             mg
2942  other specify
2943  other specify
2944          drops
2945             mg
2946          drops
2947             ml
2948  other specify
2949  other specify
2950  other specify
2951          drops
2952             mg
2953             mg
2954             mg
2955             mg
2956             mg
2957  other specify
2958  other specify
2959  other specify
2960  other specify
2961  other specify
2962  other specify
2963  other specify
2964  other specify
2965             mg
2966             mg
2967             mg
2968  other specify
2969  other specify
2970             mg
2971             mg
2972  other specify
2973  other specify
2974  other specify
2975  other specify
2976             ml
2977             mg
2978  other specify
2979             mg
2980          drops
2981             mg
2982             mg
2983          drops
2984             mg
2985             mg
2986          drops
2987             mg
2988          drops
2989             mg
2990             mg
2991            tsp
2992             mg
2993    unspecified
2994             mg
2995             mg
2996            mcg
2997             mg
2998  other specify
2999             mg
3000             mg
3001          drops
3002             mg
3003  other specify
3004            mcg
3005             oz
3006            mcg
3007          drops
3008             mg
3009             mg
3010             mg
3011             mg
3012            mcg
3013          units
3014             mg
3015             mg
3016             mg
3017             mg
3018            mcg
3019            mcg
3020            mcg
3021             mg
3022  other specify
3023             mg
3024             mg
3025             mg
3026             mg
3027            mcg
3028          drops
3029             mg
3030             mg
3031    unspecified
3032             mg
3033             mg
3034             mg
3035             mg
3036             mg
3037             mg
3038             mg
3039             oz
3040            mcg
3041  other specify
3042  other specify
3043          drops
3044            mcg
3045             mg
3046             mg
3047             mg
3048             mg
3049             ml
3050             gm
3051            mcg
3052            mcg
3053             mg
3054             mg
3055  other specify
3056             mg
3057             mg
3058  other specify
3059             mg
3060  other specify
3061            mcg
3062             mg
3063            mcg
3064             mg
3065             mg
3066            mcg
3067             mg
3068             mg
3069             mg
3070             mg
3071             mg
3072             mg
3073          drops
3074             mg
3075            mcg
3076             mg
3077             mg
3078             mg
3079             mg
3080             mg
3081             mg
3082             mg
3083             mg
3084             mg
3085             mg
3086             mg
3087             mg
3088             mg
3089             ml
3090             mg
3091             mg
3092             mg
3093             mg
3094             mg
3095  other specify
3096             mg
3097            mcg
3098             mg
3099             mg
3100             mg
3101             mg
3102             mg
3103            mcg
3104             mg
3105             mg
3106            mcg
3107             mg
3108             mg
3109            tsp
3110          drops
3111             mg
3112          drops
3113             mg
3114             mg
3115             mg
3116             mg
3117             mg
3118             mg
3119          drops
3120            tsp
3121            mcg
3122             mg
3123             mg
3124  other specify
3125             mg
3126             mg
3127             mg
3128             mg
3129             mg
3130             mg
3131          drops
3132             mg
3133  other specify
3134  other specify
3135  other specify
3136            mcg
3137             oz
3138             mg
3139             mg
3140  other specify
3141             mg
3142             mg
3143             mg
3144             mg
3145  other specify
3146             mg
3147          drops
3148             mg
3149             ml
3150             ml
3151             ml
3152             mg
3153             mg
3154             mg
3155            tsp
3156  other specify
3157  other specify
3158  other specify
3159  other specify
3160             mg
3161             mg
3162  other specify
3163  other specify
3164  other specify
3165  other specify
3166  other specify
3167             ml
3168             mg
3169             mg
3170             mg
3171             ml
3172             ml
3173            mcg
3174             mg
3175            mcg
3176             mg
3177             mg
3178             gm
3179             mg
3180             mg
3181             mg
3182            mcg
3183  other specify
3184             mg
3185             mg
3186            mcg
3187             mg
3188             mg
3189             mg
3190             mg
3191             mg
3192  other specify
3193             mg
3194             mg
3195            mcg
3196             mg
3197             mg
3198             gm
3199             mg
3200             mg
3201             gm
3202             mg
3203             gm
3204             mg
3205             mg
3206             mg
3207  other specify
3208             mg
3209             mg
3210            mcg
3211             mg
3212             ml
3213             gm
3214             mg
3215             mg
3216             gm
3217             mg
3218  other specify
3219  other specify
3220             mg
3221             mg
3222             mg
3223             mg
3224             mg
3225             mg
3226          drops
3227             mg
3228             mg
3229             mg
3230            mcg
3231             mg
3232             mg
3233          drops
3234          drops
3235            mcg
3236             mg
3237          drops
3238          drops
3239             mg
3240             mg
3241            mcg
3242             mg
3243          drops
3244          drops
3245             mg
3246  other specify
3247  other specify
3248             mg
3249          drops
3250  other specify
3251  other specify
3252             mg
3253  other specify
3254  other specify
3255  other specify
3256          drops
3257            mcg
3258             mg
3259             mg
3260             mg
3261             mg
3262             mg
3263  other specify
3264  other specify
3265  other specify
3266             mg
3267             mg
3268             gm
3269  other specify
3270             mg
3271  other specify
3272  other specify
3273  other specify
3274             mg
3275             mg
3276             ml
3277             mg
3278  other specify
3279             mg
3280  other specify
3281  other specify
3282             mg
3283             mg
3284  other specify
3285             mg
3286             mg
3287  other specify
3288             mg
3289             mg
3290             mg
3291  other specify
3292             mg
3293  other specify
3294  other specify
3295             mg
3296  other specify
3297             mg
3298             mg
3299             gm
3300  other specify
3301             mg
3302             mg
3303             mg
3304             gm
3305  other specify
3306            mcg
3307             mg
3308            mcg
3309             mg
3310            mcg
3311             mg
3312  other specify
3313  other specify
3314             mg
3315  other specify
3316             mg
3317             mg
3318             mg
3319             mg
3320             ml
3321             mg
3322             mg
3323             ml
3324             mg
3325             mg
3326             mg
3327             mg
3328             mg
3329             mg
3330          drops
3331          units
3332             mg
3333  other specify
3334             ml
3335          units
3336          units
3337             mg
3338          units
3339  other specify
3340             mg
3341             mg
3342  other specify
3343             mg
3344             mg
3345             mg
3346             mg
3347             mg
3348             mg
3349             mg
3350          units
3351            mcg
3352            mcg
3353             mg
3354             mg
3355            mcg
3356          units
3357             mg
3358            mcg
3359  other specify
3360  other specify
3361             mg
3362            mcg
3363             ml
3364             mg
3365  other specify
3366          drops
3367             mg
3368             mg
3369             mg
3370             ml
3371          drops
3372          units
3373            mcg
3374            mcg
3375          units
3376  other specify
3377             mg
3378            mcg
3379          units
3380          drops
3381             mg
3382             mg
3383            mcg
3384  other specify
3385            tbs
3386            tbs
3387          units
3388            mcg
3389             ml
3390             mg
3391             mg
3392             mg
3393  other specify
3394    unspecified
3395             mg
3396            mcg
3397             mg
3398             iu
3399             mg
3400             mg
3401             mg
3402             mg
3403             mg
3404  other specify
3405  other specify
3406  other specify
3407  other specify
3408  other specify
3409  other specify
3410             mg
3411  other specify
3412             mg
3413             mg
3414             mg
3415             mg
3416  other specify
3417             mg
3418             mg
3419             mg
3420             mg
3421          drops
3422          drops
3423             ml
3424             mg
3425  other specify
3426  other specify
3427             mg
3428             mg
3429          units
3430             mg
3431             mg
3432             mg
3433             mg
3434            mcg
3435             mg
3436             mg
3437          drops
3438             mg
3439          drops
3440            mcg
3441             mg
3442            mcg
3443             mg
3444             mg
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3450             mg
3451             mg
3452             mg
3453             mg
3454  other specify
3455             mg
3456  other specify
3457  other specify
3458  other specify
3459             mg
3460             mg
3461             ml
3462             ml
3463             ml
3464             ml
3465             mg
3466            mcg
3467             mg
3468             ml
3469            mcg
3470             mg
3471             mg
3472            mcg
3473             mg
3474             mg
3475             mg
3476             mg
3477             mg
3478            tsp
3479             mg
3480            tsp
3481             mg
3482             gm
3483             mg
3484             mg
3485             mg
3486             mg
3487  other specify
3488  other specify
3489             mg
3490  other specify
3491  other specify
3492  other specify
3493             mg
3494             mg
3495  other specify
3496  other specify
3497  other specify
3498  other specify
3499             mg
3500             mg
3501             mg
3502             mg
3503             mg
3504             mg
3505             mg
3506             mg
3507             mg
3508             mg
3509          units
3510             mg
3511             mg
3512  other specify
3513  other specify
3514  other specify
3515          units
3516  other specify
3517    unspecified
3518             mg
3519  other specify
3520             mg
3521             mg
3522             mg
3523             mg
3524             mg
3525            mcg
3526            mcg
3527            mcg
3528             mg
3529             mg
3530  other specify
3531          drops
3532             mg
3533             mg
3534             mg
3535          drops
3536             mg
3537             mg
3538             mg
3539             mg
3540             mg
3541             mg
3542             mg
3543             oz
3544             mg
3545             mg
3546             mg
3547            mcg
3548             mg
3549             mg
3550             mg
3551            mcg
3552             mg
3553             mg
3554             mg
3555            mcg
3556             mg
3557            mcg
3558             mg
3559             mg
3560          drops
3561          drops
3562             mg
3563          drops
3564             mg
3565             mg
3566          drops
3567             mg
3568             mg
3569             mg
3570             mg
3571             mg
3572             mg
3573             mg
3574             gm
3575             mg
3576             mg
3577             mg
3578             mg
3579             mg
3580             mg
3581  other specify
3582             ml
3583             ml
3584             ml
3585             ml
3586             ml
3587  other specify
3588  other specify
3589             mg
3590             mg
3591  other specify
3592  other specify
3593  other specify
3594  other specify
3595             ml
3596             mg
3597             mg
3598             mg
3599             mg
3600             ml
3601             mg
3602             mg
3603             mg
3604             mg
3605             mg
3606             gm
3607             gm
3608             mg
3609             mg
3610  other specify
3611             mg
3612             mg
3613             mg
3614             mg
3615             mg
3616  other specify
3617  other specify
3618             mg
3619             mg
3620             mg
3621             mg
3622  other specify
3623             mg
3624             mg
3625             mg
3626             mg
3627            mcg
3628             mg
3629             mg
3630             mg
3631  other specify
3632  other specify
3633             mg
3634             mg
3635             mg
3636             ml
3637             mg
3638             mg
3639          drops
3640          drops
3641  other specify
3642             mg
3643             mg
3644             mg
3645          drops
3646             ml
3647             ml
3648             ml
3649             mg
3650          units
3651             mg
3652             mg
3653             gm
3654             mg
3655             mg
3656             mg
3657          drops
3658             mg
3659             mg
3660             ml
3661            mcg
3662             ml
3663  other specify
3664            mcg
3665             mg
3666  other specify
3667  other specify
3668  other specify
3669  other specify
3670  other specify
3671             mg
3672             mg
3673             mg
3674             mg
3675  other specify
3676             mg
3677             mg
3678  other specify
3679             mg
3680             mg
3681             ml
3682             ml
3683             ml
3684  other specify
3685  other specify
3686             mg
3687             mg
3688          drops
3689  other specify
3690  other specify
3691  other specify
3692  other specify
3693  other specify
3694             mg
3695             mg
3696            mcg
3697             mg
3698  other specify
3699  other specify
3700             mg
3701  other specify
3702             mg
3703             mg
3704  other specify
3705  other specify
3706             mg
3707             mg
3708             mg
3709  other specify
3710    unspecified
3711             mg
3712             mg
3713             mg
3714             mg
3715             mg
3716             mg
3717  other specify
3718          drops
3719  other specify
3720          units
3721            mcg
3722             mg
3723             ml
3724             mg
3725            mcg
3726  other specify
3727            mcg
3728             ml
3729  other specify
3730             mg
3731             mg
3732            mcg
3733  other specify
3734             mg
3735          drops
3736             mg
3737             mg
3738             mg
3739             mg
3740             mg
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3746             mg
3747             mg
3748             mg
3749          drops
3750             mg
3751             ml
3752            mcg
3753             mg
3754  other specify
3755             mg
3756  other specify
3757             mg
3758  other specify
3759  other specify
3760             mg
3761          drops
3762             mg
3763          drops
3764             mg
3765             mg
3766             mg
3767             mg
3768             mg
3769             mg
3770             mg
3771             mg
3772             ml
3773          drops
3774          drops
3775             mg
3776             mg
3777             mg
3778  other specify
3779             mg
3780  other specify
3781          drops
3782          drops
3783          drops
3784             mg
3785             mg
3786             mg
3787             mg
3788             mg
3789    unspecified
3790             mg
3791          drops
3792             mg
3793          drops
3794             mg
3795  other specify
3796          drops
3797  other specify
3798  other specify
3799             mg
3800  other specify
3801             mg
3802             mg
3803             mg
3804             mg
3805             mg
3806             mg
3807             mg
3808             mg
3809            mcg
3810            mcg
3811             mg
3812             mg
3813            mcg
3814            mcg
3815          units
3816             gm
3817             ml
3818             ml
3819             ml
3820             mg
3821             mg
3822          drops
3823             mg
3824             gm
3825             mg
3826             mg
3827             mg
3828             mg
3829          drops
3830             ml
3831             mg
3832             mg
3833             ml
3834             mg
3835            tbs
3836            tbs
3837             mg
3838          units
3839             mg
3840  other specify
3841            mcg
3842             mg
3843             mg
3844             mg
3845             mg
3846             mg
3847             mg
3848  other specify
3849            mcg
3850  other specify
3851             mg
3852             mg
3853             mg
3854             mg
3855             mg
3856             mg
3857  other specify
3858  other specify
3859  other specify
3860  other specify
3861             gm
3862             mg
3863             mg
3864             mg
3865             mg
3866             mg
3867          drops
3868            mcg
3869             mg
3870             mg
3871             mg
3872          units
3873             mg
3874  other specify
3875            mcg
3876             mg
3877             mg
3878             mg
3879             mg
3880             mg
3881            mcg
3882             mg
3883            mcg
3884  other specify
3885  other specify
3886  other specify
3887             mg
3888             ml
3889  other specify
3890  other specify
3891            mcg
3892             ml
3893             mg
3894             mg
3895             mg
3896  other specify
3897  other specify
3898    unspecified
3899             mg
3900            mcg
3901            mcg
3902  other specify
3903  other specify
3904  other specify
3905          drops
3906  other specify
3907  other specify
3908            mcg
3909             ml
3910             mg
3911  other specify
3912  other specify
3913             mg
3914            mcg
3915             mg
3916             mg
3917            mcg
3918             mg
3919             mg
3920             mg
3921             ml
3922             ml
3923             ml
3924             mg
3925             mg
3926            mcg
3927             mg
3928             mg
3929             mg
3930             mg
3931             mg
3932             mg
3933             mg
3934             ml
3935             mg
3936  other specify
3937  other specify
3938  other specify
3939             mg
3940             mg
3941             mg
3942  other specify
3943  other specify
3944  other specify
3945          drops
3946  other specify
3947             oz
3948             mg
3949  other specify
3950             mg
3951             mg
3952  other specify
3953             mg
3954             mg
3955  other specify
3956  other specify
3957          drops
3958  other specify
3959             mg
3960  other specify
3961             mg
3962             mg
3963             mg
3964             mg
3965             mg
3966             mg
3967             mg
3968             mg
3969             mg
3970             mg
3971             ml
3972  other specify
3973             mg
3974  other specify
3975             mg
3976             mg
3977             mg
3978  other specify
3979             ml
3980  other specify
3981  other specify
3982             mg
3983             mg
3984  other specify
3985  other specify
3986             mg
3987             mg
3988             mg
3989  other specify
3990  other specify
3991             mg
3992             mg
3993             mg
3994             mg
3995             ml
3996             mg
3997  other specify
3998             mg
3999             mg
4000    unspecified
4001  other specify
4002             ml
4003             mg
4004             mg
4005             ml
4006  other specify
4007             mg
4008             mg
4009             ml
4010  other specify
4011             mg
4012            mcg
4013             mg
4014             mg
4015             mg
4016  other specify
4017  other specify
4018             mg
4019             mg
4020             mg
4021             mg
4022             mg
4023             mg
4024             mg
4025             mg
4026             mg
4027             mg
4028             mg
4029             mg
4030             mg
4031  other specify
4032             ml
4033            tbs
4034             mg
4035             mg
4036             mg
4037             mg
4038             mg
4039             mg
4040             mg
4041             mg
4042    unspecified
4043             mg
4044             ml
4045  other specify
4046             ml
4047             mg
4048             mg
4049             mg
4050             mg
4051             mg
4052             mg
4053             mg
4054             mg
4055             mg
4056             mg
4057             mg
4058  other specify
4059             mg
4060            mcg
4061            mcg
4062             mg
4063            mcg
4064             mg
4065             mg
4066  other specify
4067  other specify
4068             ml
4069             ml
4070             mg
4071  other specify
4072  other specify
4073  other specify
4074             ml
4075             mg
4076             mg
4077             mg
4078             mg
4079             mg
4080             mg
4081             mg
4082             mg
4083             mg
4084             mg
4085             mg
4086             mg
4087          drops
4088  other specify
4089          drops
4090             mg
4091             ml
4092  other specify
4093             ml
4094            tsp
4095  other specify
4096             mg
4097             mg
4098             mg
4099             mg
4100             mg
4101             mg
4102             mg
4103             mg
4104             mg
4105             mg
4106             mg
4107             mg
4108             mg
4109  other specify
4110             mg
4111  other specify
4112  other specify
4113          drops
4114          drops
4115             mg
4116             mg
4117  other specify
4118  other specify
4119          drops
4120  other specify
4121             mg
4122  other specify
4123             mg
4124             mg
4125             mg
4126             mg
4127  other specify
4128  other specify
4129             mg
4130  other specify
4131  other specify
4132    unspecified
4133    unspecified
4134          drops
4135             mg
4136             mg
4137             mg
4138             mg
4139             ml
4140             mg
4141             mg
4142             mg
4143             mg
4144             mg
4145          drops
4146             gm
4147  other specify
4148             mg
4149             mg
4150             mg
4151  other specify
4152             mg
4153             mg
4154  other specify
4155             ml
4156            mcg
4157             mg
4158             ml
4159             ml
4160             ml
4161             mg
4162             ml
4163             mg
4164            mcg
4165             mg
4166             mg
4167            mcg
4168             gm
4169            mcg
4170             gm
4171             mg
4172  other specify
4173             mg
4174            mcg
4175  other specify
4176  other specify
4177             mg
4178             mg
4179             mg
4180             mg
4181             mg
4182             mg
4183  other specify
4184          units
4185             mg
4186             mg
4187             mg
4188             mg
4189  other specify
4190  other specify
4191  other specify
4192             mg
4193          drops
4194             mg
4195             gm
4196             mg
4197  other specify
4198  other specify
4199  other specify
4200             mg
4201             mg
4202             mg
4203             mg
4204  other specify
4205             mg
4206  other specify
4207             mg
4208            mcg
4209  other specify
4210  other specify
4211             mg
4212             mg
4213             mg
4214             mg
4215             mg
4216          drops
4217             mg
4218          drops
4219             mg
4220             mg
4221             mg
4222             mg
4223             mg
4224             mg
4225             mg
4226             mg
4227             mg
4228             mg
4229  other specify
4230             mg
4231             mg
4232             mg
4233             mg
4234             mg
4235             mg
4236             ml
4237  other specify
4238  other specify
4239             mg
4240             mg
4241             mg
4242             mg
4243  other specify
4244             ml
4245          drops
4246            mcg
4247            mcg
4248             mg
4249          drops
4250             mg
4251            mcg
4252             mg
4253             mg
4254            mcg
4255             mg
4256             mg
4257            mcg
4258             mg
4259             mg
4260             mg
4261            mcg
4262             mg
4263             mg
4264             mg
4265          drops
4266          drops
4267             mg
4268             mg
4269             mg
4270             gm
4271             mg
4272             mg
4273             mg
4274    unspecified
4275             mg
4276            tsp
4277             mg
4278             mg
4279             mg
4280             mg
4281             mg
4282             mg
4283            mcg
4284            mcg
4285            mcg
4286            mcg
4287  other specify
4288            tbs
4289             mg
4290             mg
4291             mg
4292            mcg
4293             mg
4294             mg
4295             mg
4296             mg
4297             mg
4298  other specify
4299  other specify
4300             mg
4301             mg
4302  other specify
4303  other specify
4304  other specify
4305  other specify
4306  other specify
4307  other specify
4308             mg
4309             mg
4310             mg
4311             mg
4312             mg
4313  other specify
4314  other specify
4315  other specify
4316             ml
4317             mg
4318             mg
4319             mg
4320             mg
4321             mg
4322             mg
4323  other specify
4324  other specify
4325  other specify
4326  other specify
4327             mg
4328  other specify
4329             mg
4330             mg
4331             mg
4332             mg
4333             mg
4334             ml
4335  other specify
4336  other specify
4337  other specify
4338  other specify
4339  other specify
4340  other specify
4341             mg
4342             mg
4343             gm
4344             mg
4345             mg
4346             mg
4347          drops
4348  other specify
4349  other specify
4350  other specify
4351  other specify
4352  other specify
4353  other specify
4354  other specify
4355             mg
4356             mg
4357             ml
4358             mg
4359  other specify
4360  other specify
4361             mg
4362             mg
4363             mg
4364             mg
4365             mg
4366             mg
4367             mg
4368             mg
4369             mg
4370             mg
4371             mg
4372             mg
4373          drops
4374             mg
4375             mg
4376             mg
4377             mg
4378             mg
4379  other specify
4380             mg
4381            mcg
4382             mg
4383             mg
4384             mg
4385  other specify
4386          drops
4387            mcg
4388             mg
4389  other specify
4390  other specify
4391             mg
4392            mcg
4393            mcg
4394             mg
4395             mg
4396             mg
4397             mg
4398             mg
4399            mcg
4400             mg
4401             mg
4402             mg
4403             mg
4404             mg
4405             mg
4406             mg
4407             mg
4408             mg
4409  other specify
4410          units
4411             mg
4412             mg
4413             mg
4414             mg
4415             mg
4416             ml
4417             ml
4418             ml
4419             ml
4420             mg
4421             mg
4422             mg
4423             mg
4424             mg
4425             mg
4426  other specify
4427  other specify
4428  other specify
4429             mg
4430  other specify
4431  other specify
4432             mg
4433             mg
4434             mg
4435             mg
4436             mg
4437             gm
4438  other specify
4439             mg
4440             ml
4441             ml
4442            tbs
4443             mg
4444  other specify
4445  other specify
4446  other specify
4447  other specify
4448  other specify
4449             mg
4450             ml
4451             mg
4452             mg
4453             mg
4454  other specify
4455             mg
4456             ml
4457             mg
4458             mg
4459             mg
4460             mg
4461             mg
4462             mg
4463             mg
4464             mg
4465             mg
4466             mg
4467             mg
4468             mg
4469  other specify
4470  other specify
4471  other specify
4472  other specify
4473             mg
4474             mg
4475             mg
4476             mg
4477             mg
4478             mg
4479             mg
4480  other specify
4481  other specify
4482  other specify
4483  other specify
4484             mg
4485  other specify
4486  other specify
4487  other specify
4488             ml
4489             mg
4490             oz
4491             ml
4492             mg
4493             mg
4494             mg
4495             mg
4496             oz
4497  other specify
4498  other specify
4499  other specify
4500  other specify
4501  other specify
4502  other specify
4503             mg
4504  other specify
4505  other specify
4506             mg
4507             mg
4508             mg
4509  other specify
4510  other specify
4511  other specify
4512  other specify
4513             mg
4514  other specify
4515  other specify
4516  other specify
4517             gm
4518  other specify
4519             mg
4520             mg
4521            tsp
4522  other specify
4523          drops
4524  other specify
4525            mcg
4526             mg
4527             mg
4528             iu
4529            tsp
4530            tsp
4531  other specify
4532  other specify
4533            tsp
4534  other specify
4535             mg
4536  other specify
4537             mg
4538  other specify
4539            mcg
4540            mcg
4541             ml
4542             mg
4543             mg
4544          units
4545  other specify
4546             mg
4547          drops
4548             mg
4549             mg
4550             mg
4551             mg
4552  other specify
4553             mg
4554             mg
4555             mg
4556            mcg
4557             mg
4558  other specify
4559  other specify
4560  other specify
4561  other specify
4562  other specify
4563             mg
4564  other specify
4565  other specify
4566  other specify
4567  other specify
4568  other specify
4569  other specify
4570             mg
4571             mg
4572             mg
4573             mg
4574             mg
4575             mg
4576             mg
4577             mg
4578  other specify
4579             mg
4580             mg
4581             mg
4582             mg
4583            mcg
4584             mg
4585             mg
4586            mcg
4587          units
4588             mg
4589             mg
4590            mcg
4591             mg
4592             mg
4593            mcg
4594             mg
4595             mg
4596             mg
4597  other specify
4598             mg
4599            mcg
4600             mg
4601            mcg
4602            mcg
4603             mg
4604            mcg
4605             mg
4606             mg
4607             mg
4608             mg
4609             mg
4610             mg
4611             mg
4612             mg
4613             mg
4614             mg
4615             mg
4616             gm
4617          mg/ml
4618             mg
4619             mg
4620             gm
4621             mg
4622             mg
4623             mg
4624             mg
4625             mg
4626             mg
4627             ml
4628             ml
4629             mg
4630  other specify
4631             ml
4632             mg
4633             mg
4634  other specify
4635             mg
4636             mg
4637             mg
4638             ml
4639          drops
4640             gm
4641             mg
4642             mg
4643  other specify
4644          drops
4645          drops
4646  other specify
4647          drops
4648             mg
4649             ml
4650          drops
4651  other specify
4652  other specify
4653             mg
4654             ml
4655             mg
4656          drops
4657          drops
4658          drops
4659             mg
4660          units
4661             mg
4662             mg
4663          drops
4664          drops
4665             mg
4666             mg
4667             mg
4668             mg
4669             mg
4670          drops
4671          drops
4672             mg
4673             mg
4674             mg
4675             mg
4676             mg
4677          drops
4678          drops
4679          drops
4680          drops
4681             mg
4682             gm
4683          drops
4684          drops
4685             mg
4686             mg
4687             mg
4688             mg
4689            mcg
4690            mcg
4691            mcg
4692             mg
4693  other specify
4694  other specify
4695  other specify
4696             mg
4697             mg
4698             mg
4699             mg
4700             mg
4701             mg
4702             mg
4703             mg
4704             mg
4705             mg
4706             mg
4707             mg
4708             mg
4709             mg
4710             mg
4711          drops
4712             mg
4713            mcg
4714            mcg
4715             mg
4716             mg
4717             mg
4718             mg
4719          drops
4720          drops
4721             mg
4722             mg
4723             mg
4724             mg
4725            mcg
4726  other specify
4727             mg
4728             mg
4729             ml
4730             mg
4731             mg
4732             mg
4733             mg
4734             mg
4735             mg
4736             ml
4737             mg
4738  other specify
4739  other specify
4740             mg
4741             mg
4742             mg
4743          drops
4744          drops
4745             mg
4746             mg
4747             mg
4748          units
4749  other specify
4750             mg
4751            mcg
4752             mg
4753             mg
4754            tsp
4755             mg
4756  other specify
4757          drops
4758             ml
4759  other specify
4760  other specify
4761            tsp
4762             mg
4763  other specify
4764             oz
4765             mg
4766  other specify
4767             mg
4768             mg
4769             mg
4770  other specify
4771             mg
4772  other specify
4773             mg
4774             mg
4775             mg
4776             mg
4777  other specify
4778             mg
4779             mg
4780  other specify
4781             mg
4782  other specify
4783             mg
4784          units
4785             mg
4786  other specify
4787             mg
4788             mg
4789             mg
4790             mg
4791             mg
4792             mg
4793             mg
4794             mg
4795             mg
4796             mg
4797             mg
4798             mg
4799             mg
4800             mg
4801             mg
4802  other specify
4803          drops
4804             mg
4805          drops
4806  other specify
4807             mg
4808             mg
4809             mg
4810             mg
4811             mg
4812             ml
4813    unspecified
4814             mg
4815             ml
4816             mg
4817  other specify
4818             mg
4819             mg
4820             mg
4821             ml
4822             mg
4823             mg
4824             ml
4825             mg
4826  other specify
4827             mg
4828  other specify
4829             mg
4830             mg
4831             mg
4832  other specify
4833             mg
4834             mg
4835             mg
4836             mg
4837             mg
4838  other specify
4839             mg
4840            tsp
4841             mg
4842  other specify
4843             ml
4844             mg
4845             ml
4846             ml
4847             mg
4848             mg
4849             mg
4850  other specify
4851             ml
4852             mg
4853  other specify
4854             mg
4855             mg
4856             mg
4857             mg
4858             mg
4859             mg
4860             mg
4861             mg
4862            mcg
4863             mg
4864             mg
4865             mg
4866             mg
4867             mg
4868             mg
4869  other specify
4870  other specify
4871             mg
4872             mg
4873             mg
4874          drops
4875             mg
4876             mg
4877             mg
4878             mg
4879             mg
4880             mg
4881  other specify
4882  other specify
4883  other specify
4884             mg
4885             mg
4886             mg
4887             mg
4888             ml
4889             mg
4890             mg
4891             mg
4892             mg
4893          drops
4894          drops
4895             mg
4896             mg
4897             mg
4898             mg
4899             mg
4900             mg
4901            mcg
4902  other specify
4903            mcg
4904  other specify
4905             mg
4906            mcg
4907  other specify
4908            mcg
4909            mcg
4910  other specify
4911            mcg
4912             mg
4913  other specify
4914             mg
4915             mg
4916             mg
4917            mcg
4918             mg
4919            mcg
4920             mg
4921             mg
4922             mg
4923             mg
4924             mg
4925             mg
4926             mg
4927             mg
4928  other specify
4929             mg
4930             mg
4931             mg
4932             mg
4933             mg
4934             mg
4935  other specify
4936            mcg
4937            mcg
4938            mcg
4939             mg
4940          drops
4941             mg
4942             mg
4943             mg
4944             mg
4945             mg
4946          drops
4947             mg
4948             mg
4949          drops
4950          drops
4951             mg
4952             ml
4953             mg
4954             mg
4955             mg
4956  other specify
4957             gm
4958             mg
4959             mg
4960  other specify
4961             mg
4962             mg
4963             ml
4964             mg
4965             mg
4966             mg
4967             mg
4968             mg
4969             mg
4970             iu
4971             mg
4972             ml
4973             mg
4974             mg
4975             mg
4976             mg
4977             mg
4978             mg
4979             mg
4980  other specify
4981             mg
4982             mg
4983             ml
4984             mg
4985             mg
4986             mg
4987             oz
4988             mg
4989             mg
4990             mg
4991             mg
4992             mg
4993             mg
4994             mg
4995             mg
4996  other specify
4997             mg
4998          drops
4999             mg
5000             mg
5001             mg
5002             mg
5003          drops
5004             mg
5005             mg
5006             mg
5007             mg
5008             mg
5009             mg
5010             ml
5011             mg
5012             mg
5013             mg
5014             mg
5015             mg
5016             mg
5017             mg
5018             mg
5019             mg
5020             mg
5021             ml
5022             ml
5023             ml
5024             ml
5025             ml
5026  other specify
5027             ml
5028  other specify
5029             ml
5030             mg
5031             mg
5032             ml
5033             mg
5034             mg
5035             mg
5036             mg
5037             mg
5038             mg
5039             mg
5040             mg
5041             mg
5042             mg
5043          units
5044             mg
5045             mg
5046          units
5047             mg
5048             mg
5049             mg
5050             mg
5051             mg
5052             mg
5053             mg
5054             mg
5055             mg
5056             mg
5057          drops
5058             mg
5059             mg
5060             mg
5061             mg
5062             mg
5063  other specify
5064  other specify
5065             mg
5066  other specify
5067  other specify
5068             gm
5069  other specify
5070             mg
5071             mg
5072             mg
5073             mg
5074             mg
5075             mg
5076             mg
5077             mg
5078  other specify
5079             mg
5080             mg
5081             ml
5082             mg
5083          drops
5084  other specify
5085             mg
5086            mcg
5087          units
5088             mg
5089            mcg
5090             mg
5091            mcg
5092             mg
5093             mg
5094            mcg
5095            mcg
5096             mg
5097            mcg
5098             mg
5099            mcg
5100             mg
5101             gm
5102             mg
5103             mg
5104            mcg
5105            mcg
5106             mg
5107            mcg
5108             mg
5109  other specify
5110             mg
5111            mcg
5112             mg
5113             oz
5114             mg
5115            mcg
5116             ml
5117             mg
5118  other specify
5119  other specify
5120             mg
5121            mcg
5122          units
5123          units
5124             mg
5125             ml
5126             ml
5127  other specify
5128             iu
5129             mg
5130  other specify
5131             mg
5132             mg
5133             mg
5134          units
5135             mg
5136             mg
5137             mg
5138             mg
5139             mg
5140             mg
5141  other specify
5142             mg
5143  other specify
5144             ml
5145             mg
5146             mg
5147             mg
5148             mg
5149             mg
5150  other specify
5151             mg
5152            mcg
5153             mg
5154             mg
5155             mg
5156            mcg
5157             mg
5158             mg
5159    unspecified
5160    unspecified
5161    unspecified
5162             mg
5163             mg
5164             mg
5165             mg
5166             mg
5167             mg
5168            tbs
5169            mcg
5170             mg
5171             ml
5172             mg
5173  other specify
5174  other specify
5175             mg
5176            mcg
5177             mg
5178            mcg
5179             mg
5180            mcg
5181             mg
5182             mg
5183             mg
5184             mg
5185             mg
5186             mg
5187             mg
5188  other specify
5189  other specify
5190  other specify
5191             mg
5192             mg
5193          drops
5194             mg
5195  other specify
5196             mg
5197             mg
5198             mg
5199             mg
5200  other specify
5201             mg
5202          units
5203  other specify
5204  other specify
5205             ml
5206  other specify
5207  other specify
5208             ml
5209             mg
5210  other specify
5211  other specify
5212  other specify
5213  other specify
5214  other specify
5215             mg
5216             mg
5217             mg
5218             gm
5219             mg
5220  other specify
5221  other specify
5222  other specify
5223  other specify
5224             mg
5225  other specify
5226             mg
5227             mg
5228  other specify
5229  other specify
5230             mg
5231  other specify
5232             mg
5233             mg
5234  other specify
5235  other specify
5236             mg
5237             mg
5238             gm
5239             mg
5240             mg
5241             mg
5242             mg
5243  other specify
5244  other specify
5245             mg
5246             mg
5247  other specify
5248  other specify
5249             mg
5250  other specify
5251             mg
5252             mg
5253  other specify
5254             mg
5255  other specify
5256  other specify
5257  other specify
5258  other specify
5259            tsp
5260             mg
5261  other specify
5262  other specify
5263             mg
5264  other specify
5265  other specify
5266             mg
5267             mg
5268  other specify
5269             mg
5270  other specify
5271  other specify
5272             mg
5273  other specify
5274             mg
5275             mg
5276  other specify
5277             mg
5278             mg
5279             ml
5280             mg
5281             mg
5282             ml
5283             mg
5284             mg
5285  other specify
5286            mcg
5287             mg
5288            mcg
5289  other specify
5290             mg
5291             mg
5292             mg
5293             mg
5294             mg
5295            mcg
5296             mg
5297             mg
5298             mg
5299            mcg
5300             mg
5301             mg
5302             mg
5303             mg
5304             mg
5305            mcg
5306             mg
5307             mg
5308             mg
5309            mcg
5310             mg
5311             mg
5312             mg
5313             mg
5314            mcg
5315             mg
5316             mg
5317             mg
5318             mg
5319             mg
5320             mg
5321             mg
5322             mg
5323             mg
5324             mg
5325             mg
5326             mg
5327             mg
5328             mg
5329             mg
5330             mg
5331            mcg
5332  other specify
5333  other specify
5334  other specify
5335  other specify
5336  other specify
5337            mcg
5338             mg
5339          units
5340  other specify
5341  other specify
5342             mg
5343             mg
5344  other specify
5345             mg
5346            mcg
5347             mg
5348            mcg
5349             mg
5350             mg
5351            mcg
5352             mg
5353             mg
5354  other specify
5355            mcg
5356             mg
5357          drops
5358            mcg
5359            mcg
5360             mg
5361             mg
5362  other specify
5363             mg
5364             mg
5365            mcg
5366             mg
5367             mg
5368             mg
5369  other specify
5370             ml
5371            mcg
5372             mg
5373             gm
5374             mg
5375             gm
5376            mcg
5377  other specify
5378  other specify
5379  other specify
5380  other specify
5381             mg
5382  other specify
5383             oz
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5389            mcg
5390             mg
5391  other specify
5392  other specify
5393             mg
5394            mcg
5395            mcg
5396             mg
5397            mcg
5398             mg
5399             mg
5400             mg
5401  other specify
5402             mg
5403  other specify
5404             mg
5405             mg
5406             mg
5407             mg
5408             mg
5409             mg
5410             mg
5411             mg
5412             mg
5413             mg
5414          drops
5415             ml
5416             mg
5417             mg
5418             mg
5419             mg
5420          drops
5421             mg
5422             mg
5423             mg
5424  other specify
5425             gm
5426             mg
5427             mg
5428  other specify
5429             mg
5430             mg
5431             mg
5432             mg
5433             mg
5434             mg
5435             ml
5436             ml
5437             mg
5438          drops
5439          drops
5440             mg
5441             mg
5442             mg
5443             mg
5444             mg
5445             mg
5446             mg
5447             ml
5448             ml
5449             mg
5450             mg
5451             mg
5452             mg
5453             mg
5454             mg
5455             mg
5456             mg
5457             mg
5458             mg
5459             mg
5460          drops
5461             mg
5462             ml
5463             mg
5464             mg
5465             mg
5466             ml
5467             mg
5468             ml
5469             ml
5470             mg
5471             mg
5472             mg
5473             mg
5474             mg
5475             mg
5476             gm
5477             mg
5478             mg
5479             mg
5480             mg
5481             mg
5482             mg
5483  other specify
5484             mg
5485             mg
5486             mg
5487  other specify
5488             mg
5489             mg
5490             mg
5491          drops
5492  other specify
5493  other specify
5494          drops
5495          drops
5496             mg
5497  other specify
5498  other specify
5499  other specify
5500  other specify
5501  other specify
5502  other specify
5503             mg
5504            mcg
5505  other specify
5506             mg
5507  other specify
5508  other specify
5509  other specify
5510  other specify
5511  other specify
5512             mg
5513  other specify
5514             mg
5515  other specify
5516  other specify
5517             mg
5518             mg
5519             mg
5520             mg
5521             mg
5522             mg
5523             mg
5524            tbs
5525             mg
5526             mg
5527  other specify
5528  other specify
5529  other specify
5530             mg
5531             mg
5532             mg
5533  other specify
5534  other specify
5535          drops
5536             mg
5537  other specify
5538             mg
5539             mg
5540             mg
5541  other specify
5542  other specify
5543             mg
5544             mg
5545  other specify
5546  other specify
5547             mg
5548             mg
5549             mg
5550             gm
5551            mcg
5552            tbs
5553            tbs
5554             mg
5555             mg
5556  other specify
5557  other specify
5558             mg
5559             mg
5560          units
5561             mg
5562  other specify
5563             mg
5564  other specify
5565             mg
5566  other specify
5567  other specify
5568  other specify
5569             mg
5570             mg
5571  other specify
5572  other specify
5573          drops
5574  other specify
5575  other specify
5576  other specify
5577  other specify
5578  other specify
5579             mg
5580             mg
5581          drops
5582             mg
5583             ml
5584  other specify
5585             mg
5586             ml
5587             mg
5588             mg
5589             mg
5590             mg
5591            mcg
5592             mg
5593             mg
5594             mg
5595  other specify
5596             mg
5597             mg
5598          drops
5599             mg
5600  other specify
5601  other specify
5602  other specify
5603             ml
5604             mg
5605             mg
5606             ml
5607             mg
5608             ml
5609             mg
5610             mg
5611  other specify
5612             mg
5613          units
5614             mg
5615             gm
5616             mg
5617             mg
5618             ml
5619             mg
5620          drops
5621             mg
5622             mg
5623             mg
5624             ml
5625             ml
5626  other specify
5627          units
5628          units
5629             mg
5630             mg
5631  other specify
5632  other specify
5633             mg
5634             mg
5635             mg
5636             mg
5637             mg
5638             mg
5639            mcg
5640             mg
5641             ml
5642             ml
5643             mg
5644             mg
5645             mg
5646             ml
5647             mg
5648             mg
5649  other specify
5650             mg
5651             mg
5652             oz
5653             mg
5654             mg
5655             ml
5656             ml
5657             mg
5658             mg
5659             ml
5660             mg
5661             mg
5662             ml
5663             mg
5664             mg
5665             mg
5666             mg
5667             mg
5668            mcg
5669  other specify
5670  other specify
5671  other specify
5672  other specify
5673             mg
5674             mg
5675             mg
5676  other specify
5677  other specify
5678  other specify
5679  other specify
5680  other specify
5681  other specify
5682  other specify
5683             mg
5684             mg
5685             mg
5686             mg
5687             ml
5688  other specify
5689  other specify
5690             mg
5691             mg
5692            mcg
5693             ml
5694             ml
5695             mg
5696             mg
5697             ml
5698             mg
5699             mg
5700             mg
5701             mg
5702             mg
5703            mcg
5704             mg
5705             mg
5706             mg
5707             mg
5708             mg
5709             mg
5710             ml
5711             mg
5712             mg
5713             mg
5714             mg
5715             mg
5716             mg
5717             mg
5718             mg
5719             mg
5720             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5726             mg
5727             mg
5728             mg
5729          drops
5730             mg
5731          drops
5732             mg
5733             mg
5734             mg
5735             mg
5736             mg
5737             mg
5738             gm
5739            mcg
5740            mcg
5741             mg
5742            mcg
5743             mg
5744            mcg
5745            mcg
5746             ml
5747  other specify
5748  other specify
5749             mg
5750            mcg
5751             mg
5752             mg
5753             mg
5754            mcg
5755             mg
5756            mcg
5757             mg
5758             mg
5759             mg
5760  other specify
5761             mg
5762             mg
5763             ml
5764            mcg
5765             ml
5766             mg
5767             ml
5768  other specify
5769            mcg
5770             mg
5771             mg
5772             mg
5773             mg
5774             mg
5775             mg
5776             mg
5777  other specify
5778             mg
5779             mg
5780             mg
5781             mg
5782             mg
5783             mg
5784             mg
5785             mg
5786            mcg
5787             mg
5788             mg
5789             mg
5790             mg
5791             oz
5792             mg
5793  other specify
5794  other specify
5795             mg
5796             mg
5797             mg
5798             mg
5799             gm
5800             mg
5801             mg
5802             mg
5803             mg
5804             mg
5805             mg
5806             mg
5807             mg
5808             mg
5809  other specify
5810  other specify
5811             mg
5812             mg
5813  other specify
5814            tsp
5815             mg
5816             mg
5817             mg
5818          drops
5819            mcg
5820            mcg
5821            mcg
5822             ml
5823             mg
5824          drops
5825             mg
5826             mg
5827             mg
5828             mg
5829  other specify
5830  other specify
5831            mcg
5832             mg
5833            mcg
5834            mcg
5835            mcg
5836             mg
5837             mg
5838             mg
5839             mg
5840             mg
5841             mg
5842            mcg
5843             mg
5844             ml
5845             mg
5846             mg
5847             mg
5848             mg
5849             mg
5850  other specify
5851            mcg
5852  other specify
5853             mg
5854             mg
5855             mg
5856             mg
5857             mg
5858  other specify
5859             mg
5860             mg
5861            mcg
5862  other specify
5863             mg
5864             mg
5865            mcg
5866             mg
5867  other specify
5868            mcg
5869            mcg
5870             mg
5871  other specify
5872  other specify
5873  other specify
5874             gm
5875             ml
5876             gm
5877  other specify
5878             mg
5879             mg
5880             gm
5881             mg
5882             mg
5883             mg
5884  other specify
5885             mg
5886             mg
5887          drops
5888             mg
5889             mg
5890  other specify
5891             mg
5892             mg
5893             mg
5894             mg
5895             mg
5896  other specify
5897             mg
5898             ml
5899             mg
5900             ml
5901             mg
5902             mg
5903             ml
5904             mg
5905             mg
5906             mg
5907             mg
5908             mg
5909             mg
5910             mg
5911             mg
5912             mg
5913  other specify
5914             mg
5915             mg
5916          drops
5917          drops
5918             mg
5919             mg
5920  other specify
5921             mg
5922             mg
5923             mg
5924             mg
5925  other specify
5926             mg
5927             mg
5928  other specify
5929             gm
5930  other specify
5931  other specify
5932    unspecified
5933  other specify
5934  other specify
5935          drops
5936  other specify
5937  other specify
5938          drops
5939          drops
5940             mg
5941  other specify
5942  other specify
5943  other specify
5944             mg
5945  other specify
5946             mg
5947             mg
5948             ml
5949             mg
5950             mg
5951             mg
5952             mg
5953             mg
5954          drops
5955             mg
5956          drops
5957             mg
5958             mg
5959          drops
5960             mg
5961             mg
5962            tbs
5963  other specify
5964  other specify
5965             mg
5966             mg
5967             mg
5968             mg
5969          units
5970             mg
5971             mg
5972             mg
5973             mg
5974             mg
5975             mg
5976          drops
5977             mg
5978             mg
5979             mg
5980  other specify
5981  other specify
5982             mg
5983             mg
5984             mg
5985  other specify
5986             mg
5987             mg
5988             mg
5989             mg
5990             mg
5991  other specify
5992  other specify
5993            mcg
5994          drops
5995          drops
5996  other specify
5997  other specify
5998  other specify
5999             mg
6000             mg
6001             gm
6002  other specify
6003             mg
6004             ml
6005             gm
6006             oz
6007             mg
6008             ml
6009             mg
6010             mg
6011  other specify
6012  other specify
6013             mg
6014            mcg
6015            mcg
6016             mg
6017             mg
6018             mg
6019             mg
6020             mg
6021            mcg
6022             mg
6023             mg
6024            mcg
6025            mcg
6026            mcg
6027            mcg
6028             mg
6029             mg
6030             mg
6031             mg
6032             mg
6033             gm
6034            mcg
6035             mg
6036             mg
6037            mcg
6038  other specify
6039  other specify
6040            mcg
6041             ml
6042             ml
6043            mcg
6044             mg
6045             mg
6046  other specify
6047             mg
6048             ml
6049             oz
6050             ml
6051             mg
6052             mg
6053             ml
6054             mg
6055             ml
6056             mg
6057             mg
6058             ml
6059  other specify
6060  other specify
6061  other specify
6062             mg
6063  other specify
6064             mg
6065             mg
6066             mg
6067             mg
6068          units
6069  other specify
6070             mg
6071  other specify
6072  other specify
6073  other specify
6074  other specify
6075             mg
6076  other specify
6077             mg
6078  other specify
6079             mg
6080  other specify
6081             mg
6082             mg
6083             mg
6084             mg
6085             ml
6086             mg
6087             mg
6088  other specify
6089             mg
6090  other specify
6091             mg
6092             mg
6093  other specify
6094             ml
6095  other specify
6096             mg
6097             mg
6098             mg
6099             mg
6100             mg
6101             mg
6102             mg
6103  other specify
6104             mg
6105             mg
6106          drops
6107             mg
6108             mg
6109             mg
6110             mg
6111             mg
6112             mg
6113             mg
6114             mg
6115             mg
6116             gm
6117             mg
6118  other specify
6119             mg
6120             mg
6121             mg
6122             mg
6123             mg
6124             mg
6125             mg
6126             ml
6127             ml
6128             mg
6129  other specify
6130  other specify
6131             mg
6132  other specify
6133  other specify
6134          units
6135          units
6136  other specify
6137  other specify
6138             mg
6139  other specify
6140  other specify
6141  other specify
6142             mg
6143             mg
6144             mg
6145             mg
6146             mg
6147             mg
6148             mg
6149             mg
6150             mg
6151            mcg
6152             mg
6153             mg
6154             mg
6155             mg
6156             mg
6157             mg
6158  other specify
6159             mg
6160  other specify
6161             mg
6162            mcg
6163             mg
6164  other specify
6165             mg
6166             mg
6167             mg
6168             mg
6169            mcg
6170             mg
6171             ml
6172             mg
6173             ml
6174             ml
6175             mg
6176             ml
6177             mg
6178             ml
6179             ml
6180          drops
6181             mg
6182             mg
6183             mg
6184             mg
6185            mcg
6186             gm
6187             mg
6188          units
6189             mg
6190            mcg
6191             ml
6192             mg
6193             mg
6194             mg
6195             mg
6196          drops
6197            mcg
6198             mg
6199             mg
6200  other specify
6201            mcg
6202  other specify
6203             mg
6204  other specify
6205             mg
6206  other specify
6207  other specify
6208  other specify
6209             mg
6210             mg
6211             mg
6212             ml
6213             ml
6214             ml
6215  other specify
6216             mg
6217             mg
6218  other specify
6219             mg
6220             mg
6221          drops
6222             mg
6223             mg
6224  other specify
6225  other specify
6226  other specify
6227             mg
6228             mg
6229  other specify
6230             ml
6231  other specify
6232  other specify
6233             mg
6234          units
6235             oz
6236  other specify
6237             mg
6238             ml
6239             ml
6240             mg
6241             mg
6242             ml
6243             mg
6244          drops
6245          drops
6246             ml
6247             ml
6248             mg
6249             mg
6250             mg
6251             mg
6252            tbs
6253             mg
6254  other specify
6255             mg
6256  other specify
6257  other specify
6258  other specify
6259             mg
6260             mg
6261             mg
6262  other specify
6263  other specify
6264             mg
6265             mg
6266          drops
6267          drops
6268          drops
6269  other specify
6270             mg
6271             mg
6272             mg
6273             mg
6274             mg
6275  other specify
6276             mg
6277             mg
6278             mg
6279             mg
6280             mg
6281             mg
6282            mcg
6283  other specify
6284             mg
6285             mg
6286             mg
6287             mg
6288             mg
6289             mg
6290             mg
6291             mg
6292             mg
6293  other specify
6294             mg
6295             mg
6296            tsp
6297             ml
6298            mcg
6299             mg
6300             mg
6301            mcg
6302            mcg
6303             mg
6304            mcg
6305             mg
6306             mg
6307             mg
6308            mcg
6309            tsp
6310            mcg
6311             mg
6312    unspecified
6313             mg
6314            tsp
6315             ml
6316             mg
6317            tsp
6318             mg
6319    unspecified
6320    unspecified
6321             mg
6322             mg
6323            mcg
6324             mg
6325             mg
6326  other specify
6327            mcg
6328             mg
6329  other specify
6330          drops
6331  other specify
6332  other specify
6333          drops
6334  other specify
6335             mg
6336             ml
6337  other specify
6338             mg
6339             mg
6340             mg
6341  other specify
6342             oz
6343             mg
6344             mg
6345             ml
6346             mg
6347             mg
6348             mg
6349             mg
6350             mg
6351             ml
6352             mg
6353            mcg
6354  other specify
6355             mg
6356             mg
6357             mg
6358  other specify
6359             mg
6360             mg
6361             mg
6362  other specify
6363             mg
6364             mg
6365            mcg
6366  other specify
6367  other specify
6368             mg
6369            mcg
6370             mg
6371             mg
6372             mg
6373             mg
6374             mg
6375             mg
6376             mg
6377             mg
6378             mg
6379            mcg
6380             mg
6381            mcg
6382             mg
6383            mcg
6384             mg
6385             mg
6386  other specify
6387          drops
6388          drops
6389             mg
6390    unspecified
6391            mcg
6392            mcg
6393             mg
6394          drops
6395  other specify
6396             mg
6397             mg
6398             mg
6399          drops
6400             gm
6401            mcg
6402             mg
6403             gm
6404            mcg
6405  other specify
6406  other specify
6407            mcg
6408             mg
6409             mg
6410             mg
6411          units
6412          drops
6413            mcg
6414             mg
6415             mg
6416             mg
6417          drops
6418             mg
6419             mg
6420          drops
6421             mg
6422             mg
6423             mg
6424            mcg
6425             mg
6426             mg
6427             mg
6428             ml
6429             mg
6430             mg
6431             mg
6432             mg
6433             mg
6434             mg
6435             mg
6436             mg
6437             mg
6438             mg
6439             mg
6440  other specify
6441             mg
6442             mg
6443          drops
6444  other specify
6445             mg
6446             mg
6447             mg
6448            mcg
6449             mg
6450             mg
6451  other specify
6452             mg
6453  other specify
6454            mcg
6455             mg
6456             mg
6457  other specify
6458             mg
6459             mg
6460             mg
6461          drops
6462             mg
6463             mg
6464             mg
6465             mg
6466             mg
6467             mg
6468             mg
6469             mg
6470             mg
6471             mg
6472             gm
6473            mcg
6474  other specify
6475  other specify
6476             mg
6477             mg
6478            mcg
6479            mcg
6480  other specify
6481             mg
6482            mcg
6483             mg
6484             mg
6485             mg
6486             mg
6487             mg
6488             mg
6489             mg
6490             mg
6491             mg
6492            mcg
6493             mg
6494             mg
6495  other specify
6496            mcg
6497  other specify
6498             mg
6499  other specify
6500  other specify
6501             mg
6502             mg
6503             mg
6504             mg
6505             mg
6506             mg
6507             mg
6508             mg
6509             mg
6510             mg
6511  other specify
6512             mg
6513             mg
6514  other specify
6515             mg
6516             mg
6517  other specify
6518             mg
6519             mg
6520             mg
6521          drops
6522  other specify
6523  other specify
6524             mg
6525             mg
6526             mg
6527  other specify
6528  other specify
6529             mg
6530             mg
6531             mg
6532             mg
6533             mg
6534             mg
6535             mg
6536             mg
6537             mg
6538             mg
6539             mg
6540             ml
6541             mg
6542             mg
6543          units
6544             mg
6545             mg
6546             ml
6547             mg
6548             mg
6549            tbs
6550             ml
6551             mg
6552             mg
6553             mg
6554             mg
6555  other specify
6556             mg
6557            tsp
6558             mg
6559             mg
6560             mg
6561             mg
6562  other specify
6563             mg
6564             mg
6565  other specify
6566            mcg
6567            mcg
6568            mcg
6569  other specify
6570  other specify
6571  other specify
6572            mcg
6573  other specify
6574             mg
6575             mg
6576             mg
6577             mg
6578             mg
6579  other specify
6580            mcg
6581  other specify
6582            mcg
6583             mg
6584             mg
6585             mg
6586             mg
6587             mg
6588             mg
6589             mg
6590             mg
6591             mg
6592             mg
6593             mg
6594  other specify
6595             mg
6596             mg
6597             mg
6598             mg
6599             mg
6600             mg
6601             mg
6602  other specify
6603             mg
6604             mg
6605             mg
6606  other specify
6607             mg
6608             mg
6609             mg
6610             mg
6611            mcg
6612  other specify
6613             mg
6614             mg
6615             mg
6616             mg
6617             mg
6618             mg
6619             mg
6620             mg
6621             mg
6622             mg
6623             mg
6624             mg
6625  other specify
6626             mg
6627             mg
6628             mg
6629             mg
6630             mg
6631             mg
6632             mg
6633  other specify
6634             mg
6635            tbs
6636  other specify
6637             mg
6638             mg
6639  other specify
6640             mg
6641             mg
6642             mg
6643             ml
6644  other specify
6645            tbs
6646  other specify
6647  other specify
6648  other specify
6649             mg
6650             ml
6651             mg
6652             mg
6653             mg
6654             mg
6655            mcg
6656             mg
6657  other specify
6658  other specify
6659             mg
6660             mg
6661             mg
6662  other specify
6663  other specify
6664            mcg
6665             mg
6666             mg
6667             mg
6668            mcg
6669             mg
6670  other specify
6671             mg
6672             mg
6673             mg
6674  other specify
6675  other specify
6676  other specify
6677             mg
6678             mg
6679             mg
6680  other specify
6681             mg
6682             mg
6683  other specify
6684             mg
6685             mg
6686            tsp
6687  other specify
6688  other specify
6689             mg
6690             mg
6691             mg
6692             mg
6693  other specify
6694             mg
6695             mg
6696  other specify
6697          drops
6698  other specify
6699             mg
6700             mg
6701             mg
6702  other specify
6703          drops
6704             mg
6705             mg
6706            tsp
6707             mg
6708             mg
6709             mg
6710             ml
6711             ml
6712             ml
6713             mg
6714             mg
6715  other specify
6716  other specify
6717  other specify
6718             ml
6719             ml
6720             ml
6721             mg
6722             mg
6723             mg
6724             mg
6725             mg
6726  other specify
6727  other specify
6728            mcg
6729             mg
6730             mg
6731            mcg
6732             mg
6733            mcg
6734            mcg
6735            mcg
6736             mg
6737             mg
6738             mg
6739             mg
6740             mg
6741             mg
6742             mg
6743             mg
6744             mg
6745             mg
6746             mg
6747             mg
6748             mg
6749             mg
6750             mg
6751    unspecified
6752             mg
6753             mg
6754             mg
6755             mg
6756             mg
6757             mg
6758             mg
6759          drops
6760  other specify
6761            mcg
6762             mg
6763            mcg
6764  other specify
6765             mg
6766             mg
6767             mg
6768             mg
6769             mg
6770  other specify
6771  other specify
6772             mg
6773             mg
6774  other specify
6775  other specify
6776  other specify
6777             mg
6778  other specify
6779  other specify
6780             mg
6781  other specify
6782             mg
6783  other specify
6784            mcg
6785            mcg
6786          drops
6787             mg
6788             mg
6789            mcg
6790             mg
6791             mg
6792            mcg
6793             mg
6794             mg
6795  other specify
6796  other specify
6797             mg
6798             mg
6799             mg
6800             mg
6801             mg
6802             mg
6803             mg
6804  other specify
6805             mg
6806             mg
6807            mcg
6808             mg
6809             mg
6810             mg
6811             mg
6812             mg
6813             mg
6814             mg
6815             mg
6816  other specify
6817  other specify
6818          drops
6819          drops
6820          drops
6821             mg
6822             mg
6823             mg
6824    unspecified
6825             mg
6826             mg
6827             mg
6828  other specify
6829             mg
6830             mg
6831             mg
6832             mg
6833             mg
6834             mg
6835             mg
6836             mg
6837  other specify
6838            mcg
6839             mg
6840             mg
6841             mg
6842             mg
6843             mg
6844             mg
6845             mg
6846             mg
6847             mg
6848             mg
6849            mcg
6850             mg
6851             mg
6852             mg
6853             mg
6854  other specify
6855            mcg
6856             mg
6857             ml
6858             ml
6859             ml
6860             ml
6861             ml
6862  other specify
6863             ml
6864             ml
6865             mg
6866             mg
6867             mg
6868  other specify
6869             ml
6870  other specify
6871             mg
6872             mg
6873  other specify
6874             mg
6875            mcg
6876             ml
6877             mg
6878             mg
6879             mg
6880  other specify
6881             ml
6882             mg
6883             ml
6884             mg
6885             ml
6886  other specify
6887            mcg
6888  other specify
6889             mg
6890            mcg
6891  other specify
6892  other specify
6893             mg
6894             mg
6895             mg
6896             mg
6897            mcg
6898  other specify
6899  other specify
6900             mg
6901             mg
6902             mg
6903             ml
6904             mg
6905             mg
6906  other specify
6907             mg
6908  other specify
6909  other specify
6910  other specify
6911             mg
6912             mg
6913             mg
6914             mg
6915             mg
6916            mcg
6917             mg
6918             mg
6919            mcg
6920            mcg
6921             mg
6922             mg
6923             mg
6924             mg
6925             mg
6926             mg
6927             mg
6928  other specify
6929             mg
6930             mg
6931  other specify
6932             mg
6933             mg
6934          drops
6935          drops
6936          drops
6937             mg
6938  other specify
6939             mg
6940             mg
6941             mg
6942             mg
6943             mg
6944             mg
6945             mg
6946             mg
6947             mg
6948             mg
6949             mg
6950             mg
6951             mg
6952             mg
6953             mg
6954             mg
6955             mg
6956    unspecified
6957  other specify
6958             mg
6959             mg
6960             mg
6961             mg
6962             mg
6963          drops
6964             mg
6965             mg
6966             mg
6967             ml
6968             ml
6969             mg
6970          drops
6971          units
6972          units
6973             mg
6974             ml
6975             ml
6976             mg
6977             mg
6978             mg
6979             mg
6980             mg
6981  other specify
6982  other specify
6983  other specify
6984  other specify
6985            mcg
6986             mg
6987             mg
6988             mg
6989             mg
6990          drops
6991  other specify
6992  other specify
6993             mg
6994             mg
6995  other specify
6996             mg
6997             mg
6998  other specify
6999  other specify
7000             mg
7001             mg
7002             mg
7003             mg
7004             mg
7005    unspecified
7006    unspecified
7007             mg
7008             ml
7009             mg
7010             mg
7011             ml
7012             ml
7013             mg
7014             mg
7015             ml
7016             mg
7017  other specify
7018          drops
7019             mg
7020             mg
7021  other specify
7022             mg
7023             ml
7024             mg
7025          drops
7026             mg
7027             gm
7028             mg
7029             mg
7030             mg
7031             mg
7032             mg
7033             mg
7034             mg
7035             mg
7036             mg
7037             mg
7038             mg
7039             mg
7040             mg
7041             mg
7042          drops
7043             ml
7044             ml
7045             mg
7046          drops
7047            mcg
7048            mcg
7049            mcg
7050            mcg
7051            mcg
7052             mg
7053            mcg
7054            mcg
7055             mg
7056             mg
7057             mg
7058             ml
7059             mg
7060             mg
7061             mg
7062             mg
7063             mg
7064  other specify
7065  other specify
7066  other specify
7067  other specify
7068  other specify
7069             mg
7070             mg
7071          drops
7072             mg
7073          drops
7074  other specify
7075             mg
7076  other specify
7077            mcg
7078            mcg
7079             mg
7080            mcg
7081             mg
7082            mcg
7083             mg
7084             mg
7085             mg
7086             mg
7087             mg
7088  other specify
7089             mg
7090             mg
7091             mg
7092  other specify
7093  other specify
7094             mg
7095             mg
7096             mg
7097             mg
7098             mg
7099             gm
7100             mg
7101             mg
7102             mg
7103             mg
7104             gm
7105             mg
7106             mg
7107            mcg
7108            mcg
7109            mcg
7110            mcg
7111            mcg
7112             mg
7113             mg
7114             mg
7115             mg
7116          drops
7117             mg
7118             mg
7119             mg
7120             mg
7121             gm
7122             ml
7123             mg
7124             mg
7125             mg
7126             mg
7127    unspecified
7128             mg
7129             mg
7130             mg
7131            mcg
7132            mcg
7133             mg
7134             mg
7135            mcg
7136            mcg
7137  other specify
7138            mcg
7139            mcg
7140            mcg
7141          drops
7142          drops
7143             gm
7144             mg
7145             mg
7146  other specify
7147             mg
7148             mg
7149  other specify
7150             mg
7151  other specify
7152  other specify
7153  other specify
7154  other specify
7155  other specify
7156             mg
7157             mg
7158             mg
7159             mg
7160  other specify
7161          drops
7162  other specify
7163          drops
7164  other specify
7165  other specify
7166  other specify
7167  other specify
7168  other specify
7169             mg
7170             mg
7171             mg
7172  other specify
7173  other specify
7174             mg
7175             oz
7176             mg
7177             oz
7178             mg
7179  other specify
7180  other specify
7181             mg
7182             mg
7183             mg
7184             mg
7185             mg
7186             mg
7187             mg
7188             mg
7189  other specify
7190             mg
7191             mg
7192             mg
7193             mg
7194             mg
7195             mg
7196             mg
7197  other specify
7198  other specify
7199  other specify
7200             mg
7201          drops
7202  other specify
7203  other specify
7204  other specify
7205             ml
7206             mg
7207             ml
7208  other specify
7209             mg
7210             mg
7211             mg
7212  other specify
7213             ml
7214             ml
7215             ml
7216             mg
7217             mg
7218             mg
7219  other specify
7220             mg
7221          drops
7222             mg
7223             mg
7224             mg
7225             mg
7226             mg
7227  other specify
7228             mg
7229             mg
7230             mg
7231             mg
7232          drops
7233             mg
7234             mg
7235             mg
7236             mg
7237             mg
7238             mg
7239             mg
7240          drops
7241            mcg
7242             mg
7243            mcg
7244             mg
7245            mcg
7246             mg
7247  other specify
7248  other specify
7249  other specify
7250          drops
7251            mcg
7252             mg
7253            mcg
7254            mcg
7255             mg
7256             mg
7257            mcg
7258            mcg
7259            mcg
7260  other specify
7261  other specify
7262  other specify
7263             mg
7264  other specify
7265  other specify
7266             mg
7267  other specify
7268  other specify
7269  other specify
7270  other specify
7271            tsp
7272  other specify
7273  other specify
7274  other specify
7275  other specify
7276             ml
7277             mg
7278             mg
7279             ml
7280            mcg
7281             ml
7282             mg
7283             mg
7284             ml
7285             mg
7286             mg
7287             mg
7288             mg
7289             mg
7290             ml
7291  other specify
7292             mg
7293  other specify
7294             mg
7295  other specify
7296             mg
7297  other specify
7298             mg
7299             mg
7300            mcg
7301             mg
7302             mg
7303             mg
7304             mg
7305             mg
7306             mg
7307             mg
7308             mg
7309             mg
7310             mg
7311             mg
7312             mg
7313             mg
7314             mg
7315             mg
7316             mg
7317             mg
7318             mg
7319             mg
7320  other specify
7321             mg
7322             mg
7323             mg
7324             mg
7325  other specify
7326             mg
7327             mg
7328             mg
7329             mg
7330             mg
7331             mg
7332             mg
7333             mg
7334             mg
7335             mg
7336             mg
7337  other specify
7338  other specify
7339  other specify
7340  other specify
7341  other specify
7342  other specify
7343  other specify
7344  other specify
7345  other specify
7346          drops
7347             mg
7348             mg
7349             mg
7350             mg
7351          drops
7352          drops
7353             mg
7354             mg
7355             mg
7356             mg
7357            mcg
7358             mg
7359             mg
7360             mg
7361             mg
7362             mg
7363             mg
7364          drops
7365          drops
7366             mg
7367             mg
7368          drops
7369             mg
7370             mg
7371  other specify
7372          drops
7373            mcg
7374             mg
7375             mg
7376             mg
7377             mg
7378             mg
7379             mg
7380  other specify
7381             mg
7382            mcg
7383             mg
7384             mg
7385             mg
7386             gm
7387             mg
7388            mcg
7389             mg
7390             mg
7391             mg
7392            mcg
7393             mg
7394             mg
7395             mg
7396  other specify
7397            mcg
7398             mg
7399          units
7400             mg
7401             mg
7402             mg
7403             mg
7404             mg
7405             mg
7406             mg
7407             mg
7408             mg
7409             mg
7410             mg
7411             mg
7412             ml
7413  other specify
7414             mg
7415             mg
7416          units
7417             mg
7418             ml
7419             mg
7420             mg
7421             mg
7422             mg
7423             mg
7424             mg
7425             mg
7426             mg
7427             mg
7428             mg
7429             mg
7430             mg
7431             mg
7432             mg
7433             mg
7434             mg
7435             mg
7436             mg
7437             mg
7438             mg
7439             mg
7440  other specify
7441             mg
7442             mg
7443             mg
7444          units
7445             mg
7446             mg
7447             ml
7448             mg
7449             mg
7450          units
7451             mg
7452             mg
7453             mg
7454             mg
7455             mg
7456             mg
7457             mg
7458            mcg
7459             mg
7460             mg
7461             mg
7462             mg
7463             mg
7464             mg
7465          drops
7466             mg
7467             mg
7468             mg
7469             mg
7470             mg
7471             mg
7472             mg
7473             mg
7474             mg
7475  other specify
7476             mg
7477            mcg
7478            mcg
7479          drops
7480             mg
7481             mg
7482             mg
7483             mg
7484             mg
7485             mg
7486          drops
7487          drops
7488             mg
7489             mg
7490             mg
7491             mg
7492             mg
7493             mg
7494             mg
7495            mcg
7496            mcg
7497             mg
7498             mg
7499             mg
7500             mg
7501            mcg
7502             mg
7503  other specify
7504             mg
7505             mg
7506             mg
7507            mcg
7508             mg
7509             mg
7510  other specify
7511  other specify
7512  other specify
7513  other specify
7514             mg
7515  other specify
7516  other specify
7517            mcg
7518            mcg
7519            mcg
7520             mg
7521  other specify
7522             mg
7523            mcg
7524  other specify
7525            mcg
7526             mg
7527            mcg
7528             mg
7529          drops
7530             gm
7531  other specify
7532             mg
7533             mg
7534             mg
7535             mg
7536             mg
7537             ml
7538             ml
7539             ml
7540             ml
7541             ml
7542             mg
7543             mg
7544             mg
7545             mg
7546             mg
7547             mg
7548             mg
7549             mg
7550            mcg
7551  other specify
7552             mg
7553             mg
7554             mg
7555  other specify
7556             mg
7557             mg
7558  other specify
7559  other specify
7560             ml
7561             mg
7562             mg
7563  other specify
7564    unspecified
7565            mcg
7566  other specify
7567             mg
7568             mg
7569             mg
7570             mg
7571             mg
7572             mg
7573          drops
7574             mg
7575            mcg
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7581             mg
7582             mg
7583  other specify
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7591             mg
7592             mg
7593          units
7594             mg
7595             mg
7596  other specify
7597             mg
7598  other specify
7599  other specify
7600  other specify
7601  other specify
7602  other specify
7603  other specify
7604             mg
7605             gm
7606  other specify
7607  other specify
7608            tsp
7609          drops
7610          units
7611          units
7612          units
7613            tsp
7614          units
7615          units
7616          units
7617          units
7618          units
7619            tsp
7620             mg
7621             mg
7622  other specify
7623  other specify
7624  other specify
7625  other specify
7626  other specify
7627  other specify
7628  other specify
7629  other specify
7630  other specify
7631  other specify
7632  other specify
7633            tsp
7634  other specify
7635             mg
7636             mg
7637             mg
7638  other specify
7639          units
7640          units
7641             mg
7642  other specify
7643  other specify
7644  other specify
7645  other specify
7646             mg
7647  other specify
7648             mg
7649             mg
7650             mg
7651  other specify
7652  other specify
7653  other specify
7654  other specify
7655  other specify
7656  other specify
7657             mg
7658  other specify
7659  other specify
7660  other specify
7661             mg
7662             mg
7663             gm
7664             mg
7665             mg
7666             mg
7667             mg
7668             mg
7669             mg
7670             mg
7671             mg
7672             mg
7673  other specify
7674  other specify
7675             mg
7676             mg
7677             oz
7678  other specify
7679  other specify
7680             ml
7681             mg
7682  other specify
7683  other specify
7684  other specify
7685             mg
7686             mg
7687             mg
7688             ml
7689             ml
7690             mg
7691             mg
7692             mg
7693             mg
7694  other specify
7695             mg
7696             mg
7697             mg
7698             mg
7699             mg
7700             mg
7701             mg
7702             mg
7703             mg
7704             mg
7705  other specify
7706             mg
7707             mg
7708             mg
7709             mg
7710             mg
7711             mg
7712             mg
7713             mg
7714             mg
7715             mg
7716             mg
7717             mg
7718             mg
7719          units
7720             mg
7721             mg
7722             mg
7723             mg
7724          drops
7725          drops
7726             mg
7727          drops
7728             mg
7729             mg
7730             mg
7731             mg
7732  other specify
7733             mg
7734          units
7735          units
7736             ml
7737             mg
7738             mg
7739             mg
7740             mg
7741             mg
7742          units
7743          units
7744  other specify
7745  other specify
7746  other specify
7747  other specify
7748          units
7749          units
7750          units
7751          drops
7752  other specify
7753  other specify
7754             ml
7755            mcg
7756             ml
7757             mg
7758             mg
7759  other specify
7760             mg
7761          drops
7762             mg
7763  other specify
7764  other specify
7765  other specify
7766             ml
7767            tsp
7768  other specify
7769    unspecified
7770          drops
7771             mg
7772    unspecified
7773            tsp
7774             mg
7775    unspecified
7776    unspecified
7777             mg
7778             mg
7779             mg
7780  other specify
7781          units
7782          units
7783  other specify
7784  other specify
7785  other specify
7786  other specify
7787          drops
7788             mg
7789  other specify
7790  other specify
7791            mcg
7792             mg
7793             mg
7794             oz
7795  other specify
7796             mg
7797             mg
7798            mcg
7799             mg
7800             mg
7801             mg
7802             mg
7803             mg
7804            mcg
7805             mg
7806             mg
7807             mg
7808             mg
7809             mg
7810             mg
7811          drops
7812  other specify
7813             ml
7814             mg
7815          drops
7816             mg
7817             mg
7818    unspecified
7819             mg
7820    unspecified
7821             mg
7822    unspecified
7823             mg
7824             mg
7825             mg
7826             ml
7827             mg
7828             mg
7829             mg
7830             mg
7831            mcg
7832             ml
7833          drops
7834            mcg
7835             mg
7836          drops
7837             mg
7838  other specify
7839  other specify
7840             mg
7841  other specify
7842  other specify
7843  other specify
7844             mg
7845          drops
7846          drops
7847  other specify
7848             ml
7849             mg
7850             mg
7851             mg
7852    unspecified
7853  other specify
7854    unspecified
7855             mg
7856             mg
7857             mg
7858             mg
7859             mg
7860             mg
7861             mg
7862             mg
7863             mg
7864             mg
7865            mcg
7866             mg
7867            mcg
7868            mcg
7869            mcg
7870             mg
7871             mg
7872             mg
7873            mcg
7874            mcg
7875             mg
7876             ml
7877             mg
7878            mcg
7879             mg
7880            mcg
7881             mg
7882             mg
7883  other specify
7884  other specify
7885             ml
7886             mg
7887          units
7888             mg
7889          units
7890             mg
7891             mg
7892             mg
7893  other specify
7894             mg
7895          drops
7896             mg
7897          drops
7898             mg
7899             mg
7900             mg
7901             mg
7902             mg
7903             mg
7904             mg
7905             mg
7906             mg
7907             mg
7908             mg
7909             mg
7910             mg
7911             mg
7912            mcg
7913             mg
7914             ml
7915             mg
7916             mg
7917             mg
7918             mg
7919             mg
7920             mg
7921             gm
7922             mg
7923             mg
7924             mg
7925             mg
7926  other specify
7927             mg
7928             mg
7929  other specify
7930             mg
7931             mg
7932             mg
7933             mg
7934             mg
7935             mg
7936            mcg
7937             mg
7938             mg
7939             mg
7940             mg
7941             ml
7942             mg
7943             mg
7944          drops
7945             ml
7946          drops
7947          drops
7948            mcg
7949            mcg
7950            mcg
7951          drops
7952             ml
7953          drops
7954             mg
7955             ml
7956            mcg
7957          drops
7958             mg
7959             mg
7960             mg
7961  other specify
7962             mg
7963             mg
7964          drops
7965            tsp
7966  other specify
7967  other specify
7968  other specify
7969  other specify
7970             mg
7971  other specify
7972             mg
7973          drops
7974  other specify
7975             mg
7976  other specify
7977             mg
7978            mcg
7979          drops
7980             mg
7981             mg
7982             mg
7983             mg
7984             mg
7985             mg
7986             oz
7987             mg
7988  other specify
7989          units
7990          units
7991             ml
7992             ml
7993  other specify
7994             mg
7995             mg
7996             ml
7997             ml
7998  other specify
7999             ml
8000  other specify
8001             ml
8002             ml
8003             mg
8004             mg
8005             gm
8006             mg
8007             mg
8008             mg
8009  other specify
8010             mg
8011             mg
8012  other specify
8013             mg
8014  other specify
8015             mg
8016             mg
8017  other specify
8018             mg
8019             mg
8020          drops
8021             mg
8022             mg
8023             mg
8024             mg
8025             mg
8026             mg
8027             ml
8028            mcg
8029  other specify
8030  other specify
8031          drops
8032             mg
8033          drops
8034             mg
8035            mcg
8036            mcg
8037            mcg
8038            mcg
8039            mcg
8040            mcg
8041             mg
8042             mg
8043             mg
8044             mg
8045             mg
8046             mg
8047             mg
8048             mg
8049             mg
8050             mg
8051             mg
8052             mg
8053             mg
8054             mg
8055             mg
8056             mg
8057             mg
8058  other specify
8059             mg
8060             mg
8061  other specify
8062  other specify
8063  other specify
8064             ml
8065             mg
8066  other specify
8067  other specify
8068             mg
8069  other specify
8070  other specify
8071  other specify
8072             mg
8073             mg
8074             mg
8075    unspecified
8076             gm
8077             mg
8078             mg
8079             mg
8080             mg
8081             gm
8082             mg
8083             mg
8084             mg
8085             mg
8086  other specify
8087  other specify
8088             mg
8089             mg
8090             mg
8091             mg
8092  other specify
8093             mg
8094             gm
8095             ml
8096             mg
8097             oz
8098             oz
8099             oz
8100             mg
8101             oz
8102             mg
8103             mg
8104             mg
8105             gm
8106             mg
8107             mg
8108             mg
8109             ml
8110  other specify
8111  other specify
8112             ml
8113  other specify
8114             mg
8115             mg
8116             mg
8117             mg
8118             mg
8119             mg
8120  other specify
8121  other specify
8122             mg
8123  other specify
8124            mcg
8125          units
8126             mg
8127             mg
8128  other specify
8129          drops
8130  other specify
8131  other specify
8132             mg
8133             mg
8134             mg
8135          drops
8136  other specify
8137  other specify
8138  other specify
8139  other specify
8140  other specify
8141             mg
8142             mg
8143             mg
8144             mg
8145             mg
8146             mg
8147             mg
8148             mg
8149             mg
8150             mg
8151             mg
8152             mg
8153             mg
8154             mg
8155  other specify
8156  other specify
8157             mg
8158             ml
8159            mcg
8160  other specify
8161             mg
8162             mg
8163             mg
8164             mg
8165             mg
8166            mcg
8167             mg
8168            mcg
8169             ml
8170            mcg
8171             oz
8172            mcg
8173          drops
8174             ml
8175            mcg
8176             mg
8177             mg
8178            mcg
8179             mg
8180             mg
8181             mg
8182  other specify
8183             mg
8184  other specify
8185  other specify
8186  other specify
8187  other specify
8188  other specify
8189             mg
8190             mg
8191             mg
8192             mg
8193             mg
8194             mg
8195  other specify
8196  other specify
8197             mg
8198             mg
8199             mg
8200  other specify
8201  other specify
8202             mg
8203  other specify
8204  other specify
8205  other specify
8206  other specify
8207  other specify
8208  other specify
8209             mg
8210          units
8211          units
8212  other specify
8213             ml
8214             mg
8215  other specify
8216             mg
8217             mg
8218             mg
8219            mcg
8220  other specify
8221  other specify
8222  other specify
8223          units
8224            mcg
8225             mg
8226             mg
8227    unspecified
8228    unspecified
8229             mg
8230             mg
8231             mg
8232             mg
8233             mg
8234  other specify
8235  other specify
8236  other specify
8237             mg
8238          units
8239  other specify
8240             mg
8241             mg
8242          drops
8243             mg
8244  other specify
8245             mg
8246          drops
8247             mg
8248  other specify
8249             mg
8250             mg
8251             mg
8252  other specify
8253             mg
8254             mg
8255             mg
8256             mg
8257             mg
8258             mg
8259             mg
8260             mg
8261             mg
8262             mg
8263             mg
8264             mg
8265             mg
8266             mg
8267             mg
8268             mg
8269             mg
8270             mg
8271             mg
8272             mg
8273             mg
8274             mg
8275             mg
8276             mg
8277             mg
8278             mg
8279             mg
8280    unspecified
8281             mg
8282             mg
8283             mg
8284  other specify
8285             mg
8286             mg
8287             mg
8288             mg
8289             mg
8290             mg
8291             mg
8292          drops
8293  other specify
8294             mg
8295             mg
8296  other specify
8297  other specify
8298          drops
8299  other specify
8300          drops
8301  other specify
8302  other specify
8303             mg
8304             ml
8305  other specify
8306  other specify
8307  other specify
8308             mg
8309          drops
8310          drops
8311          drops
8312          drops
8313          drops
8314             mg
8315             mg
8316             mg
8317             mg
8318             mg
8319             mg
8320             mg
8321            mcg
8322             mg
8323             mg
8324             mg
8325            mcg
8326  other specify
8327             mg
8328             mg
8329             mg
8330             mg
8331            mcg
8332  other specify
8333             mg
8334            mcg
8335  other specify
8336          drops
8337             mg
8338             mg
8339            mcg
8340  other specify
8341          drops
8342             mg
8343             mg
8344            mcg
8345          drops
8346             mg
8347          drops
8348             mg
8349  other specify
8350             mg
8351            mcg
8352  other specify
8353            mcg
8354  other specify
8355  other specify
8356             mg
8357             mg
8358  other specify
8359  other specify
8360          drops
8361  other specify
8362  other specify
8363             mg
8364             mg
8365             mg
8366             mg
8367             mg
8368          drops
8369  other specify
8370  other specify
8371  other specify
8372             mg
8373             mg
8374  other specify
8375  other specify
8376  other specify
8377  other specify
8378  other specify
8379  other specify
8380             mg
8381             mg
8382  other specify
8383             mg
8384          drops
8385  other specify
8386            mcg
8387            mcg
8388            mcg
8389             mg
8390             mg
8391             mg
8392             mg
8393             mg
8394             mg
8395             mg
8396             mg
8397             mg
8398             mg
8399             mg
8400             mg
8401             mg
8402             ml
8403             mg
8404             mg
8405  other specify
8406             mg
8407             mg
8408  other specify
8409             ml
8410  other specify
8411             ml
8412             ml
8413             mg
8414             mg
8415             mg
8416             mg
8417             mg
8418  other specify
8419             mg
8420  other specify
8421  other specify
8422            mcg
8423            mcg
8424  other specify
8425  other specify
8426             mg
8427  other specify
8428             mg
8429             mg
8430  other specify
8431             ml
8432             mg
8433             ml
8434            mcg
8435  other specify
8436  other specify
8437            mcg
8438            mcg
8439            mcg
8440            mcg
8441            mcg
8442            mcg
8443            mcg
8444             mg
8445             mg
8446            mcg
8447             mg
8448          drops
8449  other specify
8450            mcg
8451            mcg
8452             mg
8453             mg
8454  other specify
8455             mg
8456             mg
8457             mg
8458             mg
8459             mg
8460  other specify
8461  other specify
8462             mg
8463            mcg
8464             mg
8465  other specify
8466  other specify
8467  other specify
8468             mg
8469             mg
8470          drops
8471             mg
8472             mg
8473             mg
8474             mg
8475  other specify
8476             mg
8477             mg
8478  other specify
8479             mg
8480            mcg
8481             mg
8482          drops
8483            mcg
8484             mg
8485            mcg
8486             mg
8487            mcg
8488             mg
8489  other specify
8490             mg
8491             ml
8492             mg
8493  other specify
8494             mg
8495  other specify
8496             mg
8497             mg
8498             mg
8499             mg
8500          drops
8501             mg
8502             gm
8503             ml
8504             mg
8505  other specify
8506             mg
8507             mg
8508             mg
8509  other specify
8510             mg
8511             ml
8512             mg
8513             mg
8514  other specify
8515  other specify
8516             mg
8517             mg
8518             mg
8519             mg
8520             mg
8521             mg
8522             mg
8523             mg
8524  other specify
8525             mg
8526             mg
8527             mg
8528  other specify
8529             mg
8530             mg
8531  other specify
8532  other specify
8533  other specify
8534  other specify
8535             mg
8536             mg
8537             mg
8538             mg
8539             mg
8540             mg
8541             oz
8542             mg
8543             mg
8544             mg
8545             mg
8546          drops
8547             mg
8548             mg
8549             mg
8550             mg
8551            mcg
8552            mcg
8553             mg
8554  other specify
8555  other specify
8556             mg
8557             mg
8558             mg
8559          drops
8560             mg
8561             mg
8562             mg
8563          drops
8564             mg
8565             ml
8566          drops
8567             mg
8568             mg
8569             mg
8570             mg
8571             mg
8572             mg
8573             mg
8574  other specify
8575             mg
8576             mg
8577  other specify
8578  other specify
8579             mg
8580             mg
8581  other specify
8582  other specify
8583          drops
8584          drops
8585  other specify
8586  other specify
8587  other specify
8588          drops
8589             mg
8590             mg
8591  other specify
8592             ml
8593             ml
8594             mg
8595  other specify
8596  other specify
8597             ml
8598  other specify
8599  other specify
8600  other specify
8601             mg
8602             mg
8603             mg
8604  other specify
8605          units
8606  other specify
8607  other specify
8608             mg
8609  other specify
8610             mg
8611             mg
8612             mg
8613             ml
8614             mg
8615  other specify
8616             mg
8617             mg
8618             mg
8619             mg
8620             mg
8621             mg
8622             ml
8623             mg
8624             mg
8625             ml
8626             ml
8627             ml
8628             ml
8629             ml
8630             ml
8631             ml
8632  other specify
8633  other specify
8634             ml
8635             mg
8636             mg
8637             mg
8638             mg
8639             mg
8640  other specify
8641  other specify
8642             mg
8643            mcg
8644             mg
8645             ml
8646             ml
8647             mg
8648             ml
8649             ml
8650             ml
8651             mg
8652             mg
8653             mg
8654             mg
8655  other specify
8656             ml
8657             mg
8658             mg
8659          drops
8660            mcg
8661          drops
8662             mg
8663             mg
8664             mg
8665             mg
8666             mg
8667  other specify
8668             mg
8669          units
8670             mg
8671             mg
8672             mg
8673             mg
8674  other specify
8675  other specify
8676  other specify
8677  other specify
8678             mg
8679            mcg
8680            mcg
8681             mg
8682             mg
8683             gm
8684            mcg
8685             mg
8686          drops
8687             mg
8688             mg
8689             mg
8690             mg
8691             mg
8692             mg
8693            mcg
8694  other specify
8695             mg
8696             mg
8697             ml
8698  other specify
8699  other specify
8700            mcg
8701            mcg
8702  other specify
8703             mg
8704             ml
8705             mg
8706            mcg
8707  other specify
8708             mg
8709             mg
8710             ml
8711  other specify
8712             mg
8713  other specify
8714            mcg
8715             mg
8716             ml
8717             mg
8718  other specify
8719             ml
8720             mg
8721             mg
8722             ml
8723             mg
8724  other specify
8725             mg
8726  other specify
8727             mg
8728             mg
8729  other specify
8730             ml
8731  other specify
8732             ml
8733             mg
8734             ml
8735  other specify
8736  other specify
8737  other specify
8738  other specify
8739  other specify
8740  other specify
8741             mg
8742             mg
8743             mg
8744    unspecified
8745    unspecified
8746             mg
8747             mg
8748             mg
8749             mg
8750             mg
8751             mg
8752             mg
8753             mg
8754             mg
8755             mg
8756  other specify
8757             mg
8758  other specify
8759  other specify
8760  other specify
8761             gm
8762             mg
8763             mg
8764             mg
8765          units
8766             mg
8767  other specify
8768  other specify
8769  other specify
8770  other specify
8771  other specify
8772             mg
8773             mg
8774             mg
8775             mg
8776  other specify
8777  other specify
8778  other specify
8779  other specify
8780  other specify
8781  other specify
8782             mg
8783             mg
8784             mg
8785             mg
8786  other specify
8787  other specify
8788             mg
8789             mg
8790  other specify
8791  other specify
8792    unspecified
8793  other specify
8794  other specify
8795  other specify
8796  other specify
8797             mg
8798             mg
8799  other specify
8800             mg
8801             mg
8802             mg
8803             mg
8804             mg
8805  other specify
8806             gm
8807             mg
8808  other specify
8809          drops
8810  other specify
8811             mg
8812             mg
8813             mg
8814             mg
8815  other specify
8816          drops
8817             ml
8818            mcg
8819  other specify
8820  other specify
8821             ml
8822             ml
8823             mg
8824             mg
8825             mg
8826  other specify
8827  other specify
8828  other specify
8829            mcg
8830             mg
8831            mcg
8832             mg
8833  other specify
8834             mg
8835             mg
8836             mg
8837             mg
8838             mg
8839            mcg
8840            mcg
8841             ml
8842            mcg
8843             ml
8844            mcg
8845  other specify
8846             mg
8847             mg
8848             mg
8849             mg
8850             mg
8851    unspecified
8852    unspecified
8853    unspecified
8854             mg
8855            mcg
8856          drops
8857             mg
8858             mg
8859             gm
8860          drops
8861             mg
8862            mcg
8863             ml
8864            mcg
8865            mcg
8866             mg
8867             mg
8868             mg
8869             mg
8870             mg
8871             mg
8872             mg
8873             mg
8874             mg
8875    unspecified
8876    unspecified
8877          drops
8878             mg
8879  other specify
8880            mcg
8881             mg
8882            mcg
8883             mg
8884             mg
8885            mcg
8886             ml
8887             mg
8888            mcg
8889             mg
8890            mcg
8891             mg
8892            mcg
8893             mg
8894             mg
8895          drops
8896             mg
8897             mg
8898             mg
8899          drops
8900             mg
8901             mg
8902             mg
8903  other specify
8904             mg
8905             mg
8906             mg
8907             mg
8908             mg
8909             mg
8910             mg
8911  other specify
8912             mg
8913             mg
8914             mg
8915             mg
8916             mg
8917             mg
8918             mg
8919             mg
8920             mg
8921             mg
8922             mg
8923             mg
8924             iu
8925             mg
8926            mcg
8927             mg
8928             mg
8929  other specify
8930            mcg
8931             mg
8932             mg
8933             mg
8934             mg
8935             mg
8936             mg
8937             mg
8938             mg
8939             mg
8940             mg
8941             mg
8942             mg
8943             mg
8944             mg
8945             mg
8946             mg
8947             mg
8948             mg
8949             mg
8950             mg
8951            mcg
8952             ml
8953             mg
8954             mg
8955             mg
8956             ml
8957             gm
8958            mcg
8959             mg
8960             mg
8961  other specify
8962            mcg
8963             mg
8964             mg
8965             mg
8966             mg
8967             mg
8968             mg
8969             mg
8970             mg
8971             mg
8972             mg
8973             mg
8974             mg
8975             mg
8976  other specify
8977  other specify
8978  other specify
8979             mg
8980             mg
8981  other specify
8982             ml
8983             mg
8984  other specify
8985            tbs
8986             mg
8987             mg
8988            mcg
8989             mg
8990             mg
8991             mg
8992          drops
8993            mcg
8994             mg
8995             ml
8996             mg
8997             ml
8998             ml
8999             mg
9000             mg
9001             mg
9002             mg
9003             mg
9004             mg
9005             mg
9006            mcg
9007             mg
9008             mg
9009          drops
9010             mg
9011             mg
9012             mg
9013             mg
9014             mg
9015             mg
9016             mg
9017             mg
9018             mg
9019             mg
9020             mg
9021             mg
9022             mg
9023             mg
9024  other specify
9025            mcg
9026  other specify
9027             mg
9028             mg
9029             mg
9030             mg
9031             mg
9032             mg
9033             mg
9034             mg
9035             mg
9036             mg
9037             mg
9038             mg
9039             mg
9040             mg
9041             mg
9042             mg
9043  other specify
9044  other specify
9045             mg
9046  other specify
9047          drops
9048             mg
9049          drops
9050  other specify
9051             mg
9052             oz
9053  other specify
9054  other specify
9055  other specify
9056             mg
9057             mg
9058             mg
9059             mg
9060  other specify
9061             mg
9062             mg
9063          drops
9064          drops
9065             gm
9066             mg
9067             mg
9068             mg
9069             mg
9070  other specify
9071  other specify
9072             mg
9073          drops
9074             mg
9075             mg
9076             mg
9077             mg
9078             mg
9079             mg
9080             mg
9081             mg
9082             mg
9083             mg
9084    unspecified
9085             mg
9086             mg
9087             mg
9088            mcg
9089             mg
9090             mg
9091          drops
9092             mg
9093             mg
9094  other specify
9095  other specify
9096             mg
9097             mg
9098  other specify
9099             mg
9100  other specify
9101  other specify
9102             mg
9103             mg
9104             mg
9105            mcg
9106  other specify
9107  other specify
9108             mg
9109  other specify
9110             mg
9111             mg
9112             mg
9113             mg
9114             mg
9115             mg
9116          drops
9117             mg
9118  other specify
9119             mg
9120  other specify
9121  other specify
9122  other specify
9123  other specify
9124            tsp
9125             mg
9126             mg
9127            mcg
9128             mg
9129          drops
9130            mcg
9131             mg
9132  other specify
9133            tsp
9134  other specify
9135             mg
9136  other specify
9137             mg
9138             mg
9139             mg
9140             mg
9141             mg
9142             mg
9143             mg
9144  other specify
9145            tsp
9146  other specify
9147             mg
9148             mg
9149             mg
9150  other specify
9151             mg
9152             mg
9153             mg
9154          drops
9155             mg
9156          drops
9157             mg
9158             ml
9159            mcg
9160  other specify
9161  other specify
9162             mg
9163            mcg
9164  other specify
9165  other specify
9166             mg
9167             ml
9168             mg
9169             mg
9170  other specify
9171  other specify
9172  other specify
9173             mg
9174             mg
9175             mg
9176             mg
9177             mg
9178             mg
9179             mg
9180            mcg
9181  other specify
9182             mg
9183             mg
9184             mg
9185             mg
9186             mg
9187          drops
9188             mg
9189  other specify
9190             mg
9191             mg
9192             mg
9193  other specify
9194             mg
9195             mg
9196             mg
9197  other specify
9198  other specify
9199  other specify
9200  other specify
9201             ml
9202  other specify
9203             ml
9204             mg
9205             mg
9206             mg
9207             mg
9208             mg
9209  other specify
9210             mg
9211            tsp
9212             mg
9213             mg
9214             gm
9215             mg
9216             mg
9217             mg
9218             mg
9219  other specify
9220             mg
9221             mg
9222            tsp
9223             mg
9224             ml
9225             mg
9226             mg
9227             mg
9228             mg
9229             mg
9230  other specify
9231             mg
9232  other specify
9233             mg
9234             mg
9235             mg
9236  other specify
9237             mg
9238             ml
9239             ml
9240  other specify
9241  other specify
9242  other specify
9243             mg
9244          drops
9245             mg
9246             mg
9247             ml
9248  other specify
9249            mcg
9250             mg
9251             mg
9252  other specify
9253  other specify
9254  other specify
9255             mg
9256             mg
9257            mcg
9258             mg
9259          units
9260             mg
9261             mg
9262             mg
9263             mg
9264             ml
9265            mcg
9266            mcg
9267  other specify
9268  other specify
9269  other specify
9270  other specify
9271             mg
9272             mg
9273             mg
9274             mg
9275             mg
9276             mg
9277             mg
9278             mg
9279             mg
9280             mg
9281             mg
9282             ml
9283             mg
9284             mg
9285             ml
9286             ml
9287            mcg
9288             mg
9289  other specify
9290  other specify
9291             mg
9292             mg
9293             mg
9294             mg
9295             mg
9296             mg
9297             mg
9298             mg
9299  other specify
9300             mg
9301             ml
9302             mg
9303          drops
9304             mg
9305            mcg
9306             ml
9307             ml
9308            mcg
9309             ml
9310            mcg
9311             mg
9312            mcg
9313             mg
9314             mg
9315             mg
9316             mg
9317            tbs
9318             mg
9319             mg
9320            tbs
9321          units
9322             mg
9323             mg
9324             mg
9325             ml
9326  other specify
9327             mg
9328             ml
9329             ml
9330             ml
9331          drops
9332             mg
9333             mg
9334             mg
9335            mcg
9336            mcg
9337            mcg
9338             mg
9339             mg
9340             mg
9341             mg
9342             mg
9343             mg
9344             mg
9345             ml
9346             mg
9347          drops
9348             mg
9349             mg
9350             mg
9351             ml
9352             mg
9353            mcg
9354             mg
9355             mg
9356             mg
9357             mg
9358             mg
9359             mg
9360             mg
9361            mcg
9362            mcg
9363          drops
9364             mg
9365             mg
9366            mcg
9367             mg
9368             mg
9369             mg
9370             mg
9371             mg
9372             mg
9373             mg
9374             mg
9375             mg
9376             mg
9377             mg
9378             mg
9379             mg
9380             mg
9381             mg
9382  other specify
9383  other specify
9384          drops
9385          drops
9386  other specify
9387  other specify
9388             mg
9389             mg
9390            mcg
9391          drops
9392            mcg
9393             mg
9394            mcg
9395             mg
9396            mcg
9397             mg
9398             mg
9399            mcg
9400             mg
9401             mg
9402             mg
9403             ml
9404             ml
9405             ml
9406  other specify
9407             mg
9408             mg
9409             mg
9410            mcg
9411             mg
9412             mg
9413            tsp
9414          units
9415  other specify
9416             ml
9417          units
9418          drops
9419             mg
9420             mg
9421  other specify
9422  other specify
9423             mg
9424             mg
9425             ml
9426  other specify
9427             mg
9428             mg
9429  other specify
9430             mg
9431             mg
9432  other specify
9433            tbs
9434  other specify
9435  other specify
9436  other specify
9437             mg
9438  other specify
9439             mg
9440  other specify
9441  other specify
9442             mg
9443             mg
9444             mg
9445             mg
9446             mg
9447          drops
9448             mg
9449             mg
9450             mg
9451             mg
9452            mcg
9453  other specify
9454  other specify
9455            mcg
9456  other specify
9457             mg
9458            mcg
9459             mg
9460            mcg
9461             mg
9462            mcg
9463             mg
9464             mg
9465             mg
9466            mcg
9467            mcg
9468            mcg
9469             mg
9470             mg
9471            mcg
9472            mcg
9473             mg
9474            mcg
9475            mcg
9476             mg
9477             mg
9478             gm
9479             mg
9480             mg
9481             mg
9482             mg
9483             mg
9484             mg
9485             mg
9486             mg
9487             mg
9488             mg
9489             mg
9490             mg
9491          drops
9492             ml
9493             mg
9494  other specify
9495  other specify
9496             mg
9497            mcg
9498             mg
9499             mg
9500             mg
9501             mg
9502             mg
9503             mg
9504             mg
9505            mcg
9506  other specify
9507             mg
9508             mg
9509             mg
9510             mg
9511             mg
9512             mg
9513          drops
9514             mg
9515  other specify
9516  other specify
9517             mg
9518             mg
9519          drops
9520             mg
9521            mcg
9522             mg
9523             mg
9524             ml
9525            tsp
9526             mg
9527             mg
9528             mg
9529             mg
9530             mg
9531             mg
9532             mg
9533             mg
9534            mcg
9535            mcg
9536             mg
9537             mg
9538             mg
9539             mg
9540             mg
9541  other specify
9542            mcg
9543            mcg
9544  other specify
9545            mcg
9546  other specify
9547            mcg
9548  other specify
9549  other specify
9550             mg
9551             mg
9552             mg
9553            mcg
9554             mg
9555             mg
9556  other specify
9557             mg
9558             mg
9559             mg
9560             mg
9561            mcg
9562            mcg
9563             mg
9564             mg
9565             mg
9566             mg
9567             mg
9568             mg
9569             mg
9570             mg
9571             mg
9572             mg
9573  other specify
9574  other specify
9575  other specify
9576             mg
9577             mg
9578          units
9579             mg
9580             mg
9581             mg
9582             mg
9583             mg
9584  other specify
9585             mg
9586             mg
9587  other specify
9588          drops
9589             mg
9590          drops
9591             mg
9592    unspecified
9593             mg
9594             mg
9595             mg
9596          drops
9597             mg
9598             ml
9599  other specify
9600  other specify
9601  other specify
9602             mg
9603             mg
9604             mg
9605             mg
9606             mg
9607             mg
9608  other specify
9609  other specify
9610  other specify
9611             mg
9612  other specify
9613  other specify
9614  other specify
9615  other specify
9616  other specify
9617  other specify
9618  other specify
9619  other specify
9620  other specify
9621  other specify
9622             mg
9623             mg
9624             mg
9625             mg
9626             mg
9627             mg
9628             mg
9629          drops
9630  other specify
9631             mg
9632  other specify
9633          drops
9634          drops
9635             mg
9636             mg
9637             ml
9638  other specify
9639             mg
9640  other specify
9641  other specify
9642             mg
9643  other specify
9644             mg
9645             mg
9646             mg
9647             mg
9648          drops
9649             mg
9650             mg
9651             mg
9652             mg
9653             mg
9654             mg
9655             ml
9656             mg
9657  other specify
9658            mcg
9659             oz
9660            mcg
9661             mg
9662             ml
9663            mcg
9664             mg
9665             mg
9666             mg
9667             mg
9668             mg
9669             mg
9670             mg
9671             mg
9672             gm
9673            mcg
9674             mg
9675             mg
9676             mg
9677             mg
9678             mg
9679             mg
9680             mg
9681             mg
9682             mg
9683            mcg
9684             ml
9685             mg
9686             mg
9687             mg
9688             mg
9689             mg
9690             ml
9691            mcg
9692             mg
9693             mg
9694             mg
9695            mcg
9696             mg
9697             mg
9698             gm
9699             mg
9700             mg
9701             mg
9702             mg
9703             mg
9704             mg
9705             mg
9706             mg
9707             mg
9708             mg
9709             mg
9710             mg
9711             mg
9712  other specify
9713             mg
9714             mg
9715             mg
9716             mg
9717  other specify
9718  other specify
9719             mg
9720             mg
9721             mg
9722  other specify
9723          units
9724             mg
9725             mg
9726             mg
9727             mg
9728             mg
9729  other specify
9730  other specify
9731             mg
9732             mg
9733             mg
9734             mg
9735             mg
9736             mg
9737             mg
9738             mg
9739             mg
9740             mg
9741             mg
9742             mg
9743             mg
9744  other specify
9745             mg
9746             mg
9747             mg
9748             mg
9749          drops
9750             mg
9751             mg
9752             mg
9753          drops
9754          drops
9755             mg
9756            mcg
9757             ml
9758             mg
9759  other specify
9760             ml
9761  other specify
9762             mg
9763             mg
9764             mg
9765             mg
9766  other specify
9767             mg
9768             ml
9769            tbs
9770  other specify
9771  other specify
9772             mg
9773             mg
9774             mg
9775             mg
9776             mg
9777             mg
9778            mcg
9779             mg
9780             mg
9781  other specify
9782             mg
9783             mg
9784             mg
9785            mcg
9786             mg
9787             mg
9788             mg
9789             oz
9790             oz
9791             mg
9792             mg
9793             mg
9794             mg
9795             mg
9796          drops
9797             oz
9798             mg
9799             mg
9800  other specify
9801             mg
9802             mg
9803             mg
9804             mg
9805             mg
9806             mg
9807          drops
9808          drops
9809          drops
9810             mg
9811             mg
9812             mg
9813             mg
9814  other specify
9815             mg
9816             mg
9817             mg
9818             mg
9819            mcg
9820             mg
9821  other specify
9822             mg
9823             ml
9824          drops
9825             ml
9826  other specify
9827          drops
9828             mg
9829             mg
9830             mg
9831             mg
9832             mg
9833  other specify
9834             mg
9835             ml
9836             mg
9837    unspecified
9838             mg
9839             ml
9840    unspecified
9841             mg
9842             mg
9843    unspecified
9844             mg
9845             mg
9846             mg
9847             mg
9848             mg
9849             mg
9850             mg
9851             mg
9852          drops
9853             mg
9854  other specify
9855             mg
9856             mg
9857             mg
9858             mg
9859             mg
9860             mg
9861             mg
9862             mg
9863  other specify
9864             mg
9865  other specify
9866             mg
9867             mg
9868             mg
9869             mg
9870             mg
9871             mg
9872             ml
9873    unspecified
9874             mg
9875             mg
9876             mg
9877    unspecified
9878             mg
9879             mg
9880             ml
9881             mg
9882             mg
9883             mg
9884  other specify
9885          units
9886          units
9887          drops
9888  other specify
9889  other specify
9890  other specify
9891  other specify
9892  other specify
9893  other specify
9894          units
9895          units
9896          units
9897  other specify
9898  other specify
9899  other specify
9900  other specify
9901  other specify
9902  other specify
9903  other specify
9904  other specify
9905             ml
9906            tbs
9907    unspecified
9908             mg
9909             ml
9910             mg
9911             mg
9912             mg
9913             mg
9914             mg
9915  other specify
9916  other specify
9917  other specify
9918  other specify
9919             mg
9920             mg
9921             mg
9922             mg
9923             mg
9924             mg
9925             mg
9926  other specify
9927             mg
9928    unspecified
9929             mg
9930             mg
9931  other specify
9932             mg
9933             mg
9934             mg
9935  other specify
9936             mg
9937             mg
9938             mg
9939             mg
9940             ml
9941             mg
9942  other specify
9943             mg
9944  other specify
9945  other specify
9946             mg
9947            mcg
9948             mg
9949            mcg
9950            mcg
9951             mg
9952             mg
9953             mg
9954  other specify
9955             mg
9956             mg
9957             mg
9958             mg
9959             mg
9960            mcg
9961  other specify
9962            mcg
9963  other specify
9964  other specify
9965            mcg
9966  other specify
9967            mcg
9968  other specify
9969            mcg
9970  other specify
9971            mcg
9972          units
9973             mg
9974            mcg
9975             mg
9976  other specify
9977             mg
9978             mg
9979            mcg
9980             mg
9981             mg
9982             ml
9983  other specify
9984             mg
9985             mg
9986             ml
9987  other specify
9988            mcg
9989             mg
9990             mg
9991          drops
9992            mcg
9993             mg
9994             mg
9995             mg
9996             mg
9997             mg
9998            mcg
9999             mg
10000            mg
10001           mcg
10002            mg
10003            mg
10004            mg
10005            mg
10006 other specify
10007            mg
10008            mg
10009            mg
10010           mcg
10011            mg
10012            mg
10013            mg
10014         drops
10015 other specify
10016            mg
10017 other specify
10018            mg
10019            mg
10020            mg
10021            mg
10022            mg
10023 other specify
10024            mg
10025            mg
10026            mg
10027 other specify
10028            mg
10029            mg
10030            ml
10031            mg
10032            mg
10033            mg
10034            mg
10035            mg
10036         drops
10037         drops
10038            mg
10039            mg
10040            mg
10041            mg
10042   unspecified
10043            mg
10044            mg
10045            mg
10046            mg
10047            mg
10048           mcg
10049            mg
10050            mg
10051            mg
10052           mcg
10053 other specify
10054            mg
10055           mcg
10056           mcg
10057            mg
10058            mg
10059            ml
10060         drops
10061 other specify
10062           mcg
10063 other specify
10064            mg
10065           mcg
10066 other specify
10067            mg
10068            mg
10069            mg
10070            mg
10071            mg
10072           mcg
10073            mg
10074         drops
10075           mcg
10076            mg
10077           mcg
10078            mg
10079            mg
10080            mg
10081         drops
10082           mcg
10083           mcg
10084            mg
10085            mg
10086           mcg
10087            mg
10088            mg
10089            mg
10090            ml
10091            mg
10092         drops
10093   unspecified
10094            mg
10095            mg
10096           mcg
10097            mg
10098            ml
10099            oz
10100            mg
10101            ml
10102            mg
10103            mg
10104            mg
10105            mg
10106           mcg
10107            ml
10108           mcg
10109            ml
10110            ml
10111           mcg
10112           mcg
10113            ml
10114            mg
10115 other specify
10116         drops
10117            mg
10118            ml
10119 other specify
10120         drops
10121 other specify
10122            mg
10123            mg
10124            mg
10125            mg
10126         units
10127            mg
10128            mg
10129            mg
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134 other specify
10135            mg
10136            mg
10137            mg
10138            mg
10139            mg
10140            mg
10141            mg
10142 other specify
10143 other specify
10144 other specify
10145            mg
10146            mg
10147            mg
10148            mg
10149         drops
10150            ml
10151         drops
10152            mg
10153            mg
10154            mg
10155            mg
10156            mg
10157            mg
10158            mg
10159            mg
10160            mg
10161            mg
10162            mg
10163            mg
10164 other specify
10165            mg
10166            mg
10167 other specify
10168            mg
10169            mg
10170 other specify
10171            mg
10172 other specify
10173            mg
10174            mg
10175 other specify
10176 other specify
10177            mg
10178            mg
10179            mg
10180            ml
10181 other specify
10182            mg
10183            ml
10184            mg
10185            mg
10186            mg
10187 other specify
10188 other specify
10189            mg
10190            mg
10191            mg
10192            mg
10193            mg
10194            mg
10195            mg
10196            mg
10197            mg
10198            ml
10199            ml
10200 other specify
10201           mcg
10202           mcg
10203           mcg
10204            mg
10205            mg
10206            mg
10207            mg
10208            mg
10209 other specify
10210            ml
10211            ml
10212            mg
10213            mg
10214            mg
10215            mg
10216            mg
10217            mg
10218            mg
10219 other specify
10220            gm
10221            mg
10222            mg
10223            mg
10224            mg
10225            mg
10226            mg
10227            mg
10228            mg
10229         drops
10230 other specify
10231 other specify
10232            mg
10233            mg
10234            mg
10235           mcg
10236           mcg
10237            mg
10238            mg
10239            mg
10240            mg
10241            mg
10242           mcg
10243            ml
10244            mg
10245 other specify
10246            mg
10247 other specify
10248            ml
10249 other specify
10250            mg
10251         drops
10252            mg
10253            mg
10254           mcg
10255            mg
10256            mg
10257            mg
10258            mg
10259            mg
10260   unspecified
10261 other specify
10262            mg
10263         drops
10264 other specify
10265           tsp
10266            ml
10267            mg
10268 other specify
10269           mcg
10270         drops
10271            mg
10272            mg
10273 other specify
10274 other specify
10275 other specify
10276 other specify
10277            ml
10278 other specify
10279            mg
10280            mg
10281            mg
10282            mg
10283 other specify
10284            ml
10285 other specify
10286 other specify
10287            mg
10288            mg
10289            gm
10290            mg
10291 other specify
10292            mg
10293 other specify
10294            mg
10295            mg
10296            mg
10297            ml
10298            ml
10299            mg
10300 other specify
10301            mg
10302            mg
10303            mg
10304            mg
10305            mg
10306            mg
10307            mg
10308            mg
10309            mg
10310            mg
10311            mg
10312         drops
10313            mg
10314            mg
10315            mg
10316            mg
10317            mg
10318            ml
10319            ml
10320            mg
10321            mg
10322            mg
10323            mg
10324            ml
10325            mg
10326            mg
10327            mg
10328            gm
10329            mg
10330            mg
10331            mg
10332 other specify
10333 other specify
10334 other specify
10335 other specify
10336            mg
10337            mg
10338            mg
10339            mg
10340            mg
10341         units
10342         units
10343            mg
10344            mg
10345 other specify
10346            mg
10347 other specify
10348 other specify
10349 other specify
10350            mg
10351            mg
10352 other specify
10353            mg
10354            mg
10355            mg
10356 other specify
10357            mg
10358            mg
10359            mg
10360            mg
10361 other specify
10362            mg
10363 other specify
10364            mg
10365 other specify
10366 other specify
10367           mcg
10368            mg
10369            ml
10370            mg
10371            ml
10372 other specify
10373            ml
10374 other specify
10375            ml
10376            mg
10377            mg
10378            mg
10379            mg
10380            mg
10381            mg
10382            mg
10383            mg
10384            mg
10385            mg
10386            mg
10387            mg
10388            mg
10389            mg
10390            mg
10391            mg
10392            mg
10393            mg
10394            mg
10395            mg
10396            mg
10397            mg
10398            mg
10399            mg
10400            ml
10401            ml
10402           mcg
10403 other specify
10404           mcg
10405 other specify
10406           mcg
10407            mg
10408 other specify
10409            mg
10410            mg
10411            mg
10412            mg
10413            mg
10414         drops
10415            mg
10416            mg
10417            mg
10418            mg
10419            mg
10420            mg
10421            mg
10422            mg
10423            mg
10424            mg
10425           mcg
10426 other specify
10427            mg
10428            gm
10429         drops
10430           mcg
10431            mg
10432           mcg
10433           mcg
10434           mcg
10435            ml
10436 other specify
10437            mg
10438            mg
10439            mg
10440            ml
10441   unspecified
10442            mg
10443            mg
10444            mg
10445 other specify
10446            mg
10447            mg
10448            mg
10449            mg
10450            mg
10451            mg
10452            mg
10453            mg
10454            mg
10455            mg
10456            mg
10457            mg
10458            mg
10459            mg
10460            mg
10461            mg
10462            mg
10463            gm
10464            mg
10465            ml
10466            mg
10467 other specify
10468           tbs
10469            oz
10470            gm
10471            oz
10472            mg
10473            mg
10474           mcg
10475            mg
10476         drops
10477 other specify
10478 other specify
10479            mg
10480           mcg
10481           mcg
10482            mg
10483           mcg
10484            mg
10485           mcg
10486            mg
10487           mcg
10488            mg
10489            mg
10490            mg
10491         drops
10492            mg
10493            mg
10494            gm
10495            mg
10496            mg
10497            mg
10498            mg
10499            mg
10500            mg
10501           mcg
10502            mg
10503 other specify
10504            mg
10505 other specify
10506           mcg
10507           mcg
10508            mg
10509           mcg
10510           mcg
10511           mcg
10512           mcg
10513            mg
10514            mg
10515            mg
10516           mcg
10517            ml
10518            mg
10519            ml
10520            mg
10521            ml
10522            ml
10523            mg
10524            mg
10525            ml
10526 other specify
10527            mg
10528            mg
10529 other specify
10530 other specify
10531            mg
10532            mg
10533            mg
10534            gm
10535            mg
10536            gm
10537            mg
10538            ml
10539            mg
10540            mg
10541            mg
10542            mg
10543            mg
10544            mg
10545            mg
10546            mg
10547            mg
10548            mg
10549            ml
10550            mg
10551            mg
10552            mg
10553            mg
10554            mg
10555 other specify
10556            mg
10557   unspecified
10558            mg
10559            mg
10560            mg
10561            mg
10562            mg
10563            mg
10564            mg
10565   unspecified
10566            mg
10567            mg
10568            mg
10569            mg
10570            mg
10571            mg
10572            mg
10573   unspecified
10574            mg
10575 other specify
10576            mg
10577            mg
10578            mg
10579            mg
10580            ml
10581            mg
10582            mg
10583 other specify
10584           mcg
10585           mcg
10586            mg
10587            mg
10588 other specify
10589 other specify
10590 other specify
10591 other specify
10592            mg
10593            mg
10594 other specify
10595 other specify
10596            mg
10597            ml
10598            mg
10599            mg
10600            mg
10601            mg
10602            ml
10603            mg
10604            mg
10605            mg
10606            mg
10607            mg
10608 other specify
10609            ml
10610           mcg
10611            mg
10612            mg
10613            mg
10614            mg
10615            mg
10616 other specify
10617            ml
10618 other specify
10619 other specify
10620            mg
10621            mg
10622            mg
10623            mg
10624 other specify
10625           mcg
10626            mg
10627            mg
10628 other specify
10629           mcg
10630            mg
10631           mcg
10632            mg
10633           mcg
10634            mg
10635            mg
10636            mg
10637            mg
10638           mcg
10639            mg
10640            mg
10641            mg
10642            oz
10643            mg
10644            mg
10645            mg
10646            mg
10647            mg
10648            mg
10649            mg
10650            mg
10651            mg
10652            mg
10653 other specify
10654            gm
10655 other specify
10656            mg
10657            mg
10658            mg
10659            mg
10660            mg
10661            mg
10662            mg
10663            mg
10664            mg
10665            mg
10666            mg
10667            mg
10668            mg
10669            mg
10670            mg
10671            mg
10672            mg
10673            mg
10674 other specify
10675            mg
10676            mg
10677            mg
10678            mg
10679            mg
10680            mg
10681            mg
10682            mg
10683 other specify
10684 other specify
10685 other specify
10686 other specify
10687 other specify
10688           tbs
10689 other specify
10690            mg
10691            mg
10692         drops
10693            mg
10694 other specify
10695            mg
10696         drops
10697           tbs
10698            mg
10699            mg
10700            mg
10701            mg
10702            mg
10703            mg
10704            mg
10705            mg
10706            mg
10707 other specify
10708            mg
10709            mg
10710            mg
10711 other specify
10712 other specify
10713 other specify
10714 other specify
10715           tbs
10716            mg
10717 other specify
10718         drops
10719            mg
10720            mg
10721            ml
10722            ml
10723            ml
10724            ml
10725 other specify
10726 other specify
10727 other specify
10728            ml
10729            ml
10730            ml
10731            ml
10732            mg
10733            mg
10734            mg
10735            ml
10736            mg
10737            mg
10738            mg
10739            mg
10740   unspecified
10741            mg
10742            mg
10743 other specify
10744           mcg
10745           mcg
10746           mcg
10747            mg
10748           mcg
10749            mg
10750         drops
10751   unspecified
10752            ml
10753   unspecified
10754         drops
10755           mcg
10756 other specify
10757           mcg
10758            ml
10759            ml
10760           mcg
10761            ml
10762           mcg
10763            mg
10764            mg
10765           mcg
10766           mcg
10767            mg
10768            mg
10769           mcg
10770           mcg
10771            mg
10772            mg
10773           mcg
10774            gm
10775            mg
10776            mg
10777            mg
10778            ml
10779            mg
10780 other specify
10781 other specify
10782            mg
10783            mg
10784            mg
10785            mg
10786            mg
10787            mg
10788            mg
10789            mg
10790            mg
10791            mg
10792           mcg
10793            ml
10794 other specify
10795            mg
10796 other specify
10797            mg
10798            mg
10799            ml
10800            mg
10801            ml
10802            mg
10803 other specify
10804            mg
10805 other specify
10806            mg
10807            mg
10808            mg
10809            mg
10810            mg
10811            mg
10812            mg
10813            ml
10814            mg
10815            mg
10816            mg
10817            mg
10818            mg
10819 other specify
10820 other specify
10821            mg
10822            mg
10823            mg
10824 other specify
10825 other specify
10826            mg
10827 other specify
10828            mg
10829            mg
10830 other specify
10831            mg
10832            mg
10833            mg
10834            mg
10835            mg
10836            mg
10837 other specify
10838            mg
10839            mg
10840           mcg
10841 other specify
10842 other specify
10843 other specify
10844            mg
10845            mg
10846 other specify
10847            gm
10848            mg
10849 other specify
10850 other specify
10851 other specify
10852            mg
10853 other specify
10854           mcg
10855            ml
10856            mg
10857           mcg
10858            ml
10859            mg
10860         units
10861         units
10862            mg
10863 other specify
10864            mg
10865         units
10866         units
10867            mg
10868            mg
10869            ml
10870 other specify
10871 other specify
10872            mg
10873            mg
10874 other specify
10875            ml
10876            mg
10877 other specify
10878 other specify
10879            mg
10880            mg
10881            mg
10882            mg
10883            mg
10884            mg
10885            mg
10886           mcg
10887            mg
10888           mcg
10889            ml
10890           mcg
10891           mcg
10892         drops
10893           mcg
10894            mg
10895            mg
10896         drops
10897           mcg
10898            ml
10899         drops
10900           mcg
10901         drops
10902            mg
10903            mg
10904            mg
10905 other specify
10906            mg
10907         drops
10908            mg
10909            mg
10910            ml
10911            mg
10912            mg
10913           mcg
10914            mg
10915            ml
10916            ml
10917 other specify
10918            mg
10919 other specify
10920            mg
10921            ml
10922            mg
10923            mg
10924            mg
10925            mg
10926            mg
10927 other specify
10928 other specify
10929 other specify
10930            mg
10931           mcg
10932 other specify
10933 other specify
10934 other specify
10935            mg
10936 other specify
10937            mg
10938 other specify
10939 other specify
10940            mg
10941           mcg
10942            mg
10943            mg
10944            mg
10945         drops
10946         drops
10947           mcg
10948            ml
10949           mcg
10950 other specify
10951            mg
10952           mcg
10953         drops
10954           mcg
10955           mcg
10956           mcg
10957            mg
10958           mcg
10959         drops
10960            mg
10961            mg
10962            mg
10963            mg
10964            mg
10965            mg
10966 other specify
10967 other specify
10968 other specify
10969 other specify
10970 other specify
10971 other specify
10972            mg
10973            gm
10974 other specify
10975            mg
10976            mg
10977            mg
10978            mg
10979            mg
10980            mg
10981            mg
10982            mg
10983            mg
10984         drops
10985 other specify
10986            mg
10987            mg
10988            mg
10989 other specify
10990 other specify
10991            mg
10992            mg
10993            mg
10994         units
10995         units
10996            mg
10997           mcg
10998 other specify
10999            mg
11000           mcg
11001            mg
11002 other specify
11003 other specify
11004            mg
11005            mg
11006         units
11007 other specify
11008 other specify
11009 other specify
11010 other specify
11011 other specify
11012            mg
11013            mg
11014            mg
11015            mg
11016 other specify
11017            mg
11018            mg
11019            mg
11020            mg
11021   unspecified
11022            mg
11023         drops
11024            mg
11025           mcg
11026            mg
11027            mg
11028            mg
11029            mg
11030           mcg
11031            mg
11032            ml
11033           mcg
11034            mg
11035 other specify
11036 other specify
11037 other specify
11038 other specify
11039 other specify
11040 other specify
11041 other specify
11042 other specify
11043            mg
11044            mg
11045            mg
11046            mg
11047            mg
11048         drops
11049            mg
11050           mcg
11051         drops
11052 other specify
11053            mg
11054            mg
11055            mg
11056            mg
11057            mg
11058            gm
11059            mg
11060         units
11061            mg
11062 other specify
11063            mg
11064         units
11065            mg
11066            mg
11067            mg
11068            ml
11069 other specify
11070 other specify
11071            mg
11072            mg
11073            mg
11074            mg
11075         drops
11076            mg
11077            mg
11078            mg
11079            mg
11080            mg
11081            mg
11082            mg
11083            mg
11084            mg
11085   unspecified
11086            mg
11087            mg
11088   unspecified
11089         drops
11090           mcg
11091 other specify
11092            mg
11093         drops
11094            mg
11095           mcg
11096           mcg
11097            mg
11098            mg
11099           mcg
11100            mg
11101           mcg
11102            mg
11103            mg
11104            mg
11105            ml
11106 other specify
11107            mg
11108            mg
11109 other specify
11110            mg
11111            gm
11112            mg
11113            ml
11114            mg
11115            mg
11116            mg
11117            mg
11118            mg
11119            ml
11120            gm
11121            oz
11122            oz
11123            oz
11124            mg
11125           mcg
11126            mg
11127            mg
11128            mg
11129            mg
11130            ml
11131            mg
11132            gm
11133           mcg
11134 other specify
11135            mg
11136            oz
11137            oz
11138            gm
11139            mg
11140            mg
11141            gm
11142   unspecified
11143            mg
11144            oz
11145            oz
11146            mg
11147            mg
11148            mg
11149            mg
11150            mg
11151            mg
11152 other specify
11153 other specify
11154            mg
11155         units
11156         units
11157            mg
11158 other specify
11159         units
11160            mg
11161            mg
11162            mg
11163         units
11164            mg
11165 other specify
11166 other specify
11167            mg
11168            mg
11169            mg
11170            mg
11171            mg
11172            mg
11173            mg
11174            mg
11175            mg
11176            mg
11177            mg
11178            mg
11179            mg
11180            ml
11181            mg
11182   unspecified
11183            mg
11184           mcg
11185           mcg
11186 other specify
11187            mg
11188            mg
11189            mg
11190            mg
11191 other specify
11192            mg
11193            mg
11194            mg
11195            mg
11196            mg
11197            mg
11198            mg
11199            mg
11200 other specify
11201            mg
11202            mg
11203 other specify
11204            mg
11205            mg
11206           mcg
11207           mcg
11208            mg
11209            mg
11210 other specify
11211 other specify
11212 other specify
11213   unspecified
11214            mg
11215            mg
11216            mg
11217            mg
11218            mg
11219            gm
11220            mg
11221            mg
11222            mg
11223            mg
11224 other specify
11225            mg
11226            mg
11227 other specify
11228 other specify
11229           mcg
11230         drops
11231            mg
11232            mg
11233 other specify
11234            mg
11235            mg
11236            mg
11237            mg
11238            mg
11239            mg
11240            mg
11241            mg
11242 other specify
11243            mg
11244            mg
11245            mg
11246            mg
11247            mg
11248            mg
11249            mg
11250            mg
11251            mg
11252            mg
11253            mg
11254           tsp
11255            mg
11256            mg
11257            mg
11258 other specify
11259            mg
11260           tsp
11261            mg
11262            mg
11263            mg
11264           tsp
11265            mg
11266           tsp
11267         units
11268         units
11269            mg
11270            mg
11271         units
11272         drops
11273            mg
11274            mg
11275            mg
11276            mg
11277            mg
11278            mg
11279            mg
11280            mg
11281            mg
11282            mg
11283            mg
11284            mg
11285            mg
11286            mg
11287            mg
11288            mg
11289            mg
11290            mg
11291 other specify
11292 other specify
11293 other specify
11294 other specify
11295 other specify
11296 other specify
11297            mg
11298 other specify
11299            ml
11300            mg
11301            mg
11302           mcg
11303           mcg
11304            mg
11305            mg
11306            mg
11307 other specify
11308            mg
11309 other specify
11310 other specify
11311           mcg
11312           mcg
11313            mg
11314            mg
11315            mg
11316            mg
11317            mg
11318            mg
11319            mg
11320            mg
11321 other specify
11322            mg
11323            ml
11324            ml
11325 other specify
11326 other specify
11327 other specify
11328 other specify
11329 other specify
11330 other specify
11331            mg
11332            mg
11333            mg
11334 other specify
11335            mg
11336         drops
11337            mg
11338 other specify
11339            mg
11340            mg
11341 other specify
11342 other specify
11343            mg
11344 other specify
11345 other specify
11346 other specify
11347           mcg
11348            mg
11349 other specify
11350         units
11351         units
11352         units
11353            mg
11354         units
11355            mg
11356 other specify
11357            mg
11358            mg
11359            mg
11360   unspecified
11361            mg
11362 other specify
11363            mg
11364            mg
11365            mg
11366 other specify
11367            mg
11368 other specify
11369            mg
11370            mg
11371            mg
11372            mg
11373           mcg
11374            mg
11375            mg
11376            mg
11377 other specify
11378           mcg
11379            mg
11380            mg
11381 other specify
11382            mg
11383            mg
11384            ml
11385 other specify
11386 other specify
11387 other specify
11388 other specify
11389         drops
11390 other specify
11391            mg
11392            mg
11393            mg
11394 other specify
11395            mg
11396            mg
11397            gm
11398            mg
11399 other specify
11400            mg
11401            mg
11402            mg
11403            mg
11404            mg
11405            mg
11406            mg
11407            mg
11408            mg
11409 other specify
11410            mg
11411            mg
11412            mg
11413            mg
11414            mg
11415 other specify
11416            mg
11417            mg
11418            mg
11419 other specify
11420            mg
11421            ml
11422            gm
11423            ml
11424            ml
11425 other specify
11426            mg
11427            mg
11428            mg
11429            mg
11430            mg
11431            mg
11432            mg
11433            mg
11434            mg
11435            mg
11436 other specify
11437 other specify
11438            mg
11439            ml
11440            mg
11441            mg
11442         drops
11443            mg
11444         drops
11445            mg
11446            ml
11447            mg
11448            mg
11449            mg
11450            mg
11451 other specify
11452            mg
11453            ml
11454            mg
11455            mg
11456            mg
11457            mg
11458            mg
11459            ml
11460            mg
11461 other specify
11462            ml
11463            mg
11464 other specify
11465            mg
11466            mg
11467            gm
11468            mg
11469            ml
11470   unspecified
11471   unspecified
11472            mg
11473 other specify
11474 other specify
11475           mcg
11476            mg
11477 other specify
11478 other specify
11479 other specify
11480            mg
11481            mg
11482            mg
11483            mg
11484            mg
11485            mg
11486            mg
11487            mg
11488            mg
11489            ml
11490            mg
11491            mg
11492            ml
11493   unspecified
11494            mg
11495            mg
11496            mg
11497            mg
11498            mg
11499            mg
11500            mg
11501            mg
11502            gm
11503            mg
11504            gm
11505 other specify
11506 other specify
11507 other specify
11508            mg
11509 other specify
11510           mcg
11511            mg
11512         drops
11513         drops
11514           mcg
11515            mg
11516            mg
11517           mcg
11518            mg
11519 other specify
11520           mcg
11521            mg
11522           mcg
11523            mg
11524            mg
11525            mg
11526            mg
11527            mg
11528            mg
11529            mg
11530            mg
11531            mg
11532            mg
11533            mg
11534            mg
11535            mg
11536            mg
11537         units
11538         units
11539            mg
11540            mg
11541            mg
11542            mg
11543            mg
11544            mg
11545            mg
11546 other specify
11547            mg
11548            mg
11549 other specify
11550 other specify
11551   unspecified
11552            mg
11553 other specify
11554            mg
11555            mg
11556            mg
11557            mg
11558 other specify
11559           mcg
11560 other specify
11561 other specify
11562 other specify
11563            mg
11564         units
11565            mg
11566            mg
11567 other specify
11568 other specify
11569            mg
11570 other specify
11571            ml
11572            mg
11573            mg
11574            mg
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11579            mg
11580            mg
11581            mg
11582            mg
11583 other specify
11584            gm
11585           tsp
11586 other specify
11587            mg
11588         drops
11589 other specify
11590 other specify
11591           mcg
11592            mg
11593 other specify
11594 other specify
11595 other specify
11596 other specify
11597           mcg
11598 other specify
11599 other specify
11600 other specify
11601           mcg
11602           mcg
11603            mg
11604           mcg
11605            mg
11606            mg
11607            mg
11608         drops
11609 other specify
11610            ml
11611            mg
11612            ml
11613            mg
11614            mg
11615            mg
11616            mg
11617            mg
11618            mg
11619            mg
11620         drops
11621         drops
11622            mg
11623            mg
11624            mg
11625            mg
11626            mg
11627         units
11628         units
11629         drops
11630         units
11631           mcg
11632 other specify
11633            mg
11634            mg
11635           mcg
11636            mg
11637 other specify
11638            mg
11639           mcg
11640            mg
11641            mg
11642            mg
11643         units
11644            mg
11645            mg
11646         drops
11647            gm
11648            mg
11649 other specify
11650 other specify
11651 other specify
11652 other specify
11653 other specify
11654 other specify
11655 other specify
11656 other specify
11657            mg
11658            mg
11659            ml
11660 other specify
11661 other specify
11662 other specify
11663 other specify
11664 other specify
11665            mg
11666         drops
11667         drops
11668            mg
11669            mg
11670            mg
11671         drops
11672            mg
11673         drops
11674            mg
11675            mg
11676            ml
11677            mg
11678 other specify
11679            mg
11680 other specify
11681 other specify
11682            ml
11683 other specify
11684 other specify
11685            mg
11686            mg
11687            mg
11688            mg
11689            ml
11690            mg
11691 other specify
11692         drops
11693           tbs
11694            mg
11695 other specify
11696            mg
11697            mg
11698 other specify
11699 other specify
11700 other specify
11701 other specify
11702           mcg
11703           mcg
11704            mg
11705            mg
11706            mg
11707            mg
11708           mcg
11709 other specify
11710 other specify
11711            ml
11712            mg
11713            ml
11714 other specify
11715 other specify
11716            mg
11717         drops
11718            mg
11719         units
11720            mg
11721            mg
11722         drops
11723            mg
11724 other specify
11725            mg
11726            mg
11727            gm
11728 other specify
11729 other specify
11730            mg
11731            mg
11732            mg
11733            mg
11734            mg
11735 other specify
11736         drops
11737            mg
11738            mg
11739            mg
11740            mg
11741 other specify
11742            ml
11743            mg
11744 other specify
11745            mg
11746            mg
11747            mg
11748            mg
11749            mg
11750            mg
11751            mg
11752            mg
11753            mg
11754            mg
11755            mg
11756            mg
11757            mg
11758            mg
11759            mg
11760            ml
11761            mg
11762            mg
11763            mg
11764            mg
11765            mg
11766            mg
11767            mg
11768 other specify
11769            mg
11770            mg
11771         units
11772            mg
11773            mg
11774            mg
11775            mg
11776            ml
11777            mg
11778            mg
11779            ml
11780            mg
11781            mg
11782            mg
11783            mg
11784            mg
11785            mg
11786         drops
11787            mg
11788            mg
11789            mg
11790         drops
11791            mg
11792            mg
11793            mg
11794         drops
11795            gm
11796           mcg
11797            mg
11798           mcg
11799            mg
11800            mg
11801            mg
11802            mg
11803            mg
11804         drops
11805            mg
11806 other specify
11807            mg
11808 other specify
11809            mg
11810            mg
11811           tsp
11812 other specify
11813            mg
11814 other specify
11815 other specify
11816 other specify
11817            mg
11818            mg
11819            ml
11820            mg
11821            ml
11822 other specify
11823 other specify
11824 other specify
11825 other specify
11826            mg
11827            mg
11828            mg
11829            mg
11830            mg
11831            mg
11832 other specify
11833 other specify
11834            gm
11835 other specify
11836 other specify
11837 other specify
11838            gm
11839            mg
11840            mg
11841            mg
11842            mg
11843            mg
11844            mg
11845            mg
11846            mg
11847 other specify
11848 other specify
11849            mg
11850            mg
11851         drops
11852            mg
11853            mg
11854            mg
11855            mg
11856         drops
11857            mg
11858            mg
11859            mg
11860            mg
11861 other specify
11862 other specify
11863            mg
11864            mg
11865            mg
11866            mg
11867         drops
11868            mg
11869            mg
11870            mg
11871            mg
11872         drops
11873 other specify
11874 other specify
11875 other specify
11876            mg
11877            mg
11878            mg
11879         drops
11880            mg
11881 other specify
11882 other specify
11883            mg
11884            mg
11885 other specify
11886         drops
11887         drops
11888            mg
11889 other specify
11890            mg
11891            mg
11892 other specify
11893 other specify
11894 other specify
11895            mg
11896            mg
11897            mg
11898           mcg
11899            mg
11900            mg
11901           mcg
11902            mg
11903            mg
11904           mcg
11905            mg
11906            mg
11907            mg
11908            mg
11909            mg
11910            mg
11911            mg
11912           mcg
11913            iu
11914            mg
11915            mg
11916            mg
11917            mg
11918            mg
11919 other specify
11920            mg
11921            mg
11922            mg
11923            mg
11924            mg
11925            mg
11926           mcg
11927           mcg
11928           mcg
11929            gm
11930 other specify
11931            mg
11932            mg
11933            gm
11934            mg
11935            mg
11936            mg
11937            mg
11938            mg
11939            mg
11940            mg
11941            mg
11942            mg
11943            mg
11944            mg
11945            mg
11946            mg
11947           mcg
11948            mg
11949            mg
11950            ml
11951            mg
11952            mg
11953            ml
11954            mg
11955            mg
11956            mg
11957            mg
11958            mg
11959            mg
11960 other specify
11961            mg
11962            mg
11963            mg
11964 other specify
11965            mg
11966         drops
11967         drops
11968         drops
11969         drops
11970         drops
11971            mg
11972            mg
11973            mg
11974            gm
11975            gm
11976            mg
11977            mg
11978 other specify
11979            ml
11980 other specify
11981            mg
11982            mg
11983         units
11984            mg
11985            mg
11986         drops
11987         drops
11988 other specify
11989            mg
11990 other specify
11991         drops
11992         units
11993         drops
11994         units
11995         drops
11996            mg
11997         drops
11998            mg
11999            mg
12000            mg
12001            mg
12002            mg
12003            ml
12004            mg
12005         drops
12006 other specify
12007 other specify
12008 other specify
12009         drops
12010         drops
12011 other specify
12012            mg
12013            mg
12014 other specify
12015 other specify
12016            mg
12017            mg
12018 other specify
12019 other specify
12020 other specify
12021           mcg
12022            mg
12023            mg
12024           mcg
12025            mg
12026            mg
12027           mcg
12028            mg
12029            mg
12030            mg
12031           mcg
12032           mcg
12033            mg
12034            mg
12035            mg
12036           mcg
12037            mg
12038           mcg
12039            mg
12040            mg
12041            mg
12042            mg
12043            mg
12044            mg
12045            mg
12046            mg
12047            mg
12048            ml
12049           mcg
12050            mg
12051 other specify
12052            mg
12053            mg
12054 other specify
12055            mg
12056            mg
12057            gm
12058           mcg
12059            mg
12060            mg
12061           mcg
12062            mg
12063            mg
12064            mg
12065           mcg
12066            mg
12067            mg
12068         drops
12069            mg
12070           mcg
12071            mg
12072            mg
12073            mg
12074            mg
12075            mg
12076            mg
12077            mg
12078            ml
12079            mg
12080            mg
12081            mg
12082            ml
12083 other specify
12084            mg
12085            mg
12086           mcg
12087            ml
12088            mg
12089            mg
12090 other specify
12091            mg
12092         drops
12093 other specify
12094 other specify
12095            mg
12096            mg
12097            mg
12098 other specify
12099 other specify
12100 other specify
12101 other specify
12102 other specify
12103            ml
12104 other specify
12105 other specify
12106            mg
12107 other specify
12108         drops
12109            mg
12110            mg
12111 other specify
12112         units
12113         units
12114            mg
12115            mg
12116         drops
12117         drops
12118            mg
12119            mg
12120   unspecified
12121            mg
12122            mg
12123            mg
12124            mg
12125            ml
12126            mg
12127           mcg
12128 other specify
12129 other specify
12130         drops
12131            mg
12132         drops
12133            mg
12134            mg
12135 other specify
12136 other specify
12137            mg
12138            mg
12139           mcg
12140            mg
12141            mg
12142 other specify
12143 other specify
12144 other specify
12145            mg
12146           mcg
12147            mg
12148            mg
12149            mg
12150            mg
12151           mcg
12152            mg
12153            mg
12154 other specify
12155 other specify
12156           mcg
12157            mg
12158            mg
12159 other specify
12160 other specify
12161            mg
12162            mg
12163            mg
12164 other specify
12165            mg
12166            mg
12167 other specify
12168            ml
12169            mg
12170            mg
12171            mg
12172            mg
12173 other specify
12174            ml
12175            mg
12176            mg
12177            mg
12178            mg
12179            mg
12180            ml
12181            mg
12182         drops
12183            mg
12184 other specify
12185         drops
12186           mcg
12187           mcg
12188           mcg
12189            mg
12190 other specify
12191            mg
12192           mcg
12193            ml
12194           mcg
12195            ml
12196           mcg
12197            mg
12198            mg
12199 other specify
12200 other specify
12201            gm
12202            mg
12203            mg
12204            mg
12205   unspecified
12206         drops
12207            mg
12208            mg
12209            gm
12210            mg
12211           mcg
12212            mg
12213           mcg
12214           mcg
12215           mcg
12216            mg
12217            mg
12218            mg
12219            mg
12220           mcg
12221           tsp
12222           tsp
12223 other specify
12224            mg
12225            mg
12226 other specify
12227 other specify
12228            mg
12229 other specify
12230            mg
12231            mg
12232            mg
12233            mg
12234            mg
12235            ml
12236            mg
12237            mg
12238            mg
12239            mg
12240            mg
12241            mg
12242            mg
12243            mg
12244            mg
12245            gm
12246         drops
12247         drops
12248            ml
12249           mcg
12250            gm
12251            mg
12252            mg
12253           mcg
12254            mg
12255 other specify
12256            mg
12257            ml
12258            mg
12259            ml
12260            ml
12261 other specify
12262            mg
12263            mg
12264            mg
12265 other specify
12266 other specify
12267 other specify
12268 other specify
12269            mg
12270            mg
12271 other specify
12272 other specify
12273 other specify
12274            mg
12275 other specify
12276 other specify
12277            mg
12278 other specify
12279         drops
12280            mg
12281            mg
12282 other specify
12283            mg
12284            mg
12285            mg
12286            mg
12287            mg
12288            mg
12289 other specify
12290            mg
12291            mg
12292            mg
12293            mg
12294            mg
12295            mg
12296            mg
12297            mg
12298            mg
12299            mg
12300            mg
12301            mg
12302            mg
12303            mg
12304            ml
12305            mg
12306 other specify
12307            mg
12308            mg
12309 other specify
12310            mg
12311         drops
12312            mg
12313            mg
12314            mg
12315            mg
12316            mg
12317 other specify
12318            mg
12319 other specify
12320            mg
12321            ml
12322            mg
12323            mg
12324 other specify
12325            mg
12326            mg
12327            gm
12328            ml
12329            ml
12330            ml
12331            mg
12332            mg
12333            mg
12334            mg
12335            mg
12336            mg
12337 other specify
12338            iu
12339            mg
12340            mg
12341            mg
12342 other specify
12343 other specify
12344            mg
12345            mg
12346            mg
12347 other specify
12348            mg
12349 other specify
12350            mg
12351            mg
12352            mg
12353            mg
12354            mg
12355            ml
12356            mg
12357 other specify
12358 other specify
12359            mg
12360            mg
12361 other specify
12362            ml
12363            ml
12364            mg
12365            mg
12366 other specify
12367            mg
12368            mg
12369            mg
12370            mg
12371            mg
12372            mg
12373 other specify
12374            mg
12375            mg
12376            mg
12377            mg
12378            mg
12379            mg
12380            mg
12381            mg
12382            oz
12383            mg
12384           mcg
12385           mcg
12386            ml
12387            mg
12388           mcg
12389            mg
12390            mg
12391            mg
12392            mg
12393            mg
12394   unspecified
12395           mcg
12396            mg
12397            ml
12398           mcg
12399 other specify
12400            ml
12401 other specify
12402 other specify
12403            ml
12404            mg
12405           tsp
12406 other specify
12407 other specify
12408            ml
12409 other specify
12410 other specify
12411 other specify
12412            mg
12413            ml
12414 other specify
12415 other specify
12416 other specify
12417 other specify
12418 other specify
12419            mg
12420 other specify
12421         units
12422         units
12423 other specify
12424            mg
12425            ml
12426            mg
12427   unspecified
12428            mg
12429         drops
12430 other specify
12431 other specify
12432 other specify
12433           mcg
12434            mg
12435           mcg
12436            mg
12437            mg
12438           mcg
12439            mg
12440            mg
12441            ml
12442            ml
12443            mg
12444            mg
12445            mg
12446            mg
12447           mcg
12448            ml
12449            mg
12450            mg
12451            gm
12452            mg
12453 other specify
12454 other specify
12455           mcg
12456 other specify
12457 other specify
12458            mg
12459 other specify
12460            mg
12461 other specify
12462 other specify
12463           tbs
12464            mg
12465         drops
12466            mg
12467            mg
12468            mg
12469            mg
12470            mg
12471            mg
12472            mg
12473 other specify
12474 other specify
12475            mg
12476            mg
12477   unspecified
12478            mg
12479            mg
12480            mg
12481 other specify
12482            mg
12483            mg
12484            mg
12485         drops
12486            mg
12487            mg
12488            mg
12489            mg
12490           mcg
12491            mg
12492            mg
12493         drops
12494            mg
12495 other specify
12496 other specify
12497 other specify
12498 other specify
12499            mg
12500 other specify
12501            mg
12502            mg
12503            gm
12504            mg
12505            mg
12506         drops
12507            mg
12508            mg
12509            mg
12510            mg
12511 other specify
12512 other specify
12513 other specify
12514         drops
12515         units
12516         units
12517            mg
12518            mg
12519            mg
12520 other specify
12521 other specify
12522            mg
12523 other specify
12524         units
12525         units
12526            mg
12527         units
12528 other specify
12529 other specify
12530 other specify
12531            mg
12532            mg
12533            mg
12534            mg
12535 other specify
12536         units
12537            mg
12538            mg
12539 other specify
12540 other specify
12541 other specify
12542 other specify
12543 other specify
12544 other specify
12545 other specify
12546 other specify
12547         units
12548         units
12549         units
12550 other specify
12551 other specify
12552 other specify
12553 other specify
12554 other specify
12555            mg
12556 other specify
12557            mg
12558            mg
12559            mg
12560            mg
12561            mg
12562            gm
12563            mg
12564            mg
12565            mg
12566            mg
12567         drops
12568            mg
12569            mg
12570            oz
12571 other specify
12572            mg
12573            mg
12574            mg
12575           mcg
12576            mg
12577 other specify
12578           mcg
12579            mg
12580           mcg
12581            mg
12582            mg
12583            mg
12584            mg
12585           mcg
12586            mg
12587            mg
12588            mg
12589           mcg
12590            mg
12591            mg
12592            mg
12593            mg
12594            mg
12595            mg
12596            mg
12597            mg
12598            mg
12599         drops
12600            mg
12601            mg
12602           mcg
12603            mg
12604            mg
12605            mg
12606           mcg
12607            mg
12608            mg
12609            mg
12610            mg
12611            mg
12612           mcg
12613           mcg
12614 other specify
12615            ml
12616 other specify
12617 other specify
12618           mcg
12619            mg
12620 other specify
12621            mg
12622            mg
12623 other specify
12624            mg
12625 other specify
12626            mg
12627            mg
12628            ml
12629            ml
12630         units
12631            mg
12632         drops
12633            mg
12634            mg
12635            mg
12636   unspecified
12637            mg
12638 other specify
12639 other specify
12640            mg
12641           mcg
12642           mcg
12643            mg
12644            mg
12645            mg
12646         drops
12647            mg
12648            mg
12649            mg
12650            mg
12651            mg
12652            mg
12653            mg
12654            mg
12655            mg
12656            mg
12657           mcg
12658           mcg
12659           mcg
12660           mcg
12661            mg
12662            mg
12663            mg
12664            mg
12665            mg
12666            mg
12667            mg
12668 other specify
12669            mg
12670            mg
12671 other specify
12672            mg
12673            mg
12674            mg
12675            gm
12676            gm
12677            ml
12678            mg
12679            mg
12680            mg
12681            mg
12682            mg
12683 other specify
12684            mg
12685            ml
12686 other specify
12687            mg
12688            mg
12689            mg
12690            mg
12691            mg
12692            mg
12693 other specify
12694 other specify
12695            mg
12696            mg
12697            mg
12698            mg
12699            mg
12700            mg
12701            mg
12702            mg
12703            mg
12704            mg
12705            mg
12706            mg
12707            mg
12708            ml
12709            mg
12710           mcg
12711         drops
12712         drops
12713            mg
12714 other specify
12715           mcg
12716           mcg
12717           mcg
12718         drops
12719            mg
12720            mg
12721            mg
12722            mg
12723            mg
12724           mcg
12725           mcg
12726            mg
12727            mg
12728 other specify
12729            mg
12730         drops
12731            mg
12732         drops
12733            mg
12734            mg
12735 other specify
12736            mg
12737            mg
12738            mg
12739            mg
12740            mg
12741            mg
12742            mg
12743            mg
12744            mg
12745            ml
12746            mg
12747 other specify
12748            ml
12749            mg
12750            mg
12751 other specify
12752            ml
12753            mg
12754            mg
12755            mg
12756         drops
12757            mg
12758            mg
12759            mg
12760            mg
12761           mcg
12762            mg
12763           mcg
12764           mcg
12765            mg
12766            mg
12767           mcg
12768           mcg
12769            mg
12770            mg
12771 other specify
12772            mg
12773            mg
12774 other specify
12775            mg
12776            mg
12777            mg
12778            mg
12779            mg
12780 other specify
12781         drops
12782            mg
12783            mg
12784 other specify
12785            mg
12786 other specify
12787 other specify
12788 other specify
12789           mcg
12790            mg
12791            mg
12792            mg
12793            mg
12794            mg
12795 other specify
12796 other specify
12797 other specify
12798            mg
12799            mg
12800 other specify
12801 other specify
12802            mg
12803            mg
12804 other specify
12805 other specify
12806            mg
12807 other specify
12808 other specify
12809            mg
12810            mg
12811            mg
12812 other specify
12813 other specify
12814 other specify
12815            mg
12816            mg
12817            mg
12818            mg
12819            mg
12820            mg
12821            mg
12822            mg
12823            mg
12824            mg
12825            mg
12826 other specify
12827            mg
12828 other specify
12829            mg
12830            mg
12831            mg
12832            mg
12833            mg
12834            mg
12835            gm
12836            mg
12837 other specify
12838           mcg
12839            mg
12840           mcg
12841 other specify
12842           mcg
12843            mg
12844            mg
12845            mg
12846            mg
12847           mcg
12848            ml
12849         drops
12850         drops
12851 other specify
12852            mg
12853            mg
12854 other specify
12855 other specify
12856 other specify
12857 other specify
12858 other specify
12859            mg
12860         mg/kg
12861         drops
12862 other specify
12863 other specify
12864 other specify
12865         drops
12866 other specify
12867            mg
12868 other specify
12869 other specify
12870 other specify
12871            mg
12872            mg
12873         drops
12874            mg
12875            mg
12876            mg
12877            mg
12878            mg
12879 other specify
12880 other specify
12881 other specify
12882 other specify
12883            mg
12884            mg
12885            mg
12886            mg
12887            mg
12888            mg
12889 other specify
12890 other specify
12891            mg
12892 other specify
12893            mg
12894         drops
12895 other specify
12896            mg
12897            mg
12898            gm
12899            mg
12900           mcg
12901           mcg
12902            mg
12903            mg
12904            mg
12905            ml
12906 other specify
12907 other specify
12908 other specify
12909            mg
12910            mg
12911   unspecified
12912            mg
12913         drops
12914            mg
12915            mg
12916 other specify
12917            mg
12918            mg
12919           mcg
12920 other specify
12921           mcg
12922            ml
12923            mg
12924            mg
12925            mg
12926         drops
12927           mcg
12928           mcg
12929 other specify
12930            mg
12931 other specify
12932         units
12933         drops
12934            ml
12935            mg
12936            mg
12937            ml
12938            mg
12939            mg
12940         units
12941            mg
12942 other specify
12943 other specify
12944 other specify
12945 other specify
12946            mg
12947            mg
12948 other specify
12949           mcg
12950            ml
12951            mg
12952 other specify
12953         drops
12954            mg
12955 other specify
12956 other specify
12957 other specify
12958 other specify
12959 other specify
12960           mcg
12961           mcg
12962         drops
12963 other specify
12964           mcg
12965           mcg
12966 other specify
12967            mg
12968            mg
12969            mg
12970         units
12971            mg
12972            mg
12973            mg
12974            mg
12975            mg
12976            mg
12977            mg
12978            mg
12979            oz
12980            mg
12981           mcg
12982            mg
12983            mg
12984            ml
12985            mg
12986            mg
12987            mg
12988           mcg
12989           mcg
12990            mg
12991           mcg
12992 other specify
12993           mcg
12994 other specify
12995 other specify
12996            mg
12997            mg
12998            mg
12999           mcg
13000            mg
13001            mg
13002            mg
13003            mg
13004            mg
13005 other specify
13006 other specify
13007            mg
13008 other specify
13009            mg
13010   unspecified
13011            mg
13012            mg
13013   unspecified
13014            mg
13015            mg
13016            mg
13017            mg
13018            mg
13019            mg
13020   unspecified
13021            gm
13022 other specify
13023            mg
13024            mg
13025            mg
13026            mg
13027            mg
13028            mg
13029            ml
13030            mg
13031            mg
13032            mg
13033            mg
13034 other specify
13035           mcg
13036            oz
13037           mcg
13038           mcg
13039           mcg
13040           mcg
13041         drops
13042           mcg
13043           mcg
13044         drops
13045           mcg
13046            mg
13047            mg
13048            mg
13049 other specify
13050            mg
13051            mg
13052            mg
13053            mg
13054            mg
13055            mg
13056            mg
13057            ml
13058           mcg
13059            mg
13060            ml
13061 other specify
13062            ml
13063 other specify
13064            mg
13065           mcg
13066            mg
13067           mcg
13068            mg
13069            mg
13070            mg
13071            ml
13072            ml
13073            mg
13074   unspecified
13075         units
13076         units
13077            mg
13078            mg
13079            mg
13080            mg
13081   unspecified
13082            mg
13083            mg
13084            mg
13085            ml
13086            mg
13087            mg
13088            mg
13089            mg
13090            mg
13091            mg
13092            mg
13093            ml
13094           mcg
13095            mg
13096 other specify
13097           tsp
13098            mg
13099            mg
13100 other specify
13101            ml
13102 other specify
13103 other specify
13104   unspecified
13105            mg
13106 other specify
13107            mg
13108            mg
13109            mg
13110         mg/m2
13111         mg/m2
13112         mg/m2
13113            mg
13114            mg
13115            mg
13116            mg
13117            mg
13118            mg
13119            mg
13120            mg
13121            mg
13122            mg
13123 other specify
13124 other specify
13125           mcg
13126         drops
13127            ml
13128            mg
13129 other specify
13130 other specify
13131            mg
13132            mg
13133         drops
13134           mcg
13135            mg
13136 other specify
13137 other specify
13138         drops
13139           mcg
13140            mg
13141         drops
13142 other specify
13143 other specify
13144            mg
13145            mg
13146            mg
13147            mg
13148            mg
13149 other specify
13150 other specify
13151 other specify
13152 other specify
13153            mg
13154            mg
13155            mg
13156            mg
13157 other specify
13158            mg
13159   unspecified
13160   unspecified
13161            mg
13162            mg
13163            mg
13164            mg
13165            mg
13166            mg
13167 other specify
13168 other specify
13169 other specify
13170 other specify
13171            mg
13172            mg
13173         drops
13174 other specify
13175            mg
13176            mg
13177            mg
13178            mg
13179            mg
13180            mg
13181            ml
13182            ml
13183            mg
13184            mg
13185            ml
13186            mg
13187 other specify
13188            ml
13189           mcg
13190            mg
13191         drops
13192            mg
13193 other specify
13194            ml
13195 other specify
13196 other specify
13197            mg
13198 other specify
13199 other specify
13200            mg
13201           mcg
13202            mg
13203            ml
13204            mg
13205            mg
13206            mg
13207         drops
13208 other specify
13209 other specify
13210            ml
13211            mg
13212            mg
13213            mg
13214            mg
13215            ml
13216            ml
13217            mg
13218            mg
13219 other specify
13220 other specify
13221            mg
13222            mg
13223            mg
13224            ml
13225            mg
13226            ml
13227            ml
13228            mg
13229            mg
13230         drops
13231            mg
13232            mg
13233 other specify
13234            mg
13235            mg
13236            mg
13237         drops
13238            mg
13239            mg
13240            mg
13241            mg
13242            ml
13243            mg
13244            mg
13245 other specify
13246 other specify
13247            mg
13248         units
13249         units
13250            mg
13251            mg
13252            ml
13253 other specify
13254            mg
13255            mg
13256            mg
13257            mg
13258            mg
13259            mg
13260           mcg
13261            mg
13262           mcg
13263           mcg
13264           mcg
13265            mg
13266            mg
13267           mcg
13268            mg
13269            mg
13270            mg
13271 other specify
13272 other specify
13273 other specify
13274           mcg
13275            ml
13276            mg
13277         drops
13278 other specify
13279 other specify
13280            mg
13281            mg
13282            mg
13283            gm
13284           mcg
13285 other specify
13286            gm
13287            oz
13288           mcg
13289            mg
13290            mg
13291            mg
13292            mg
13293            ml
13294            mg
13295            mg
13296            ml
13297 other specify
13298 other specify
13299            mg
13300            mg
13301            mg
13302            ml
13303            ml
13304            ml
13305            ml
13306         drops
13307 other specify
13308 other specify
13309 other specify
13310         drops
13311            mg
13312            mg
13313 other specify
13314 other specify
13315         drops
13316            mg
13317            mg
13318         drops
13319            mg
13320 other specify
13321 other specify
13322            mg
13323            mg
13324           mcg
13325            mg
13326            mg
13327            mg
13328            mg
13329 other specify
13330            mg
13331 other specify
13332 other specify
13333         units
13334            mg
13335            mg
13336 other specify
13337            mg
13338            mg
13339            mg
13340         drops
13341 other specify
13342            mg
13343 other specify
13344 other specify
13345         drops
13346           mcg
13347           mcg
13348            ml
13349            mg
13350            mg
13351            mg
13352            mg
13353         drops
13354 other specify
13355 other specify
13356            mg
13357 other specify
13358            mg
13359            mg
13360            mg
13361            mg
13362            mg
13363 other specify
13364            mg
13365            mg
13366 other specify
13367            mg
13368            ml
13369            mg
13370         drops
13371            ml
13372 other specify
13373            ml
13374            mg
13375         drops
13376         units
13377            ml
13378 other specify
13379            ml
13380            ml
13381            mg
13382            ml
13383 other specify
13384            ml
13385            ml
13386            ml
13387            mg
13388            mg
13389            ml
13390            ml
13391 other specify
13392            ml
13393            ml
13394            ml
13395            mg
13396            mg
13397            mg
13398            mg
13399            mg
13400            mg
13401            mg
13402            mg
13403            mg
13404            mg
13405            mg
13406            ml
13407            ml
13408            ml
13409            ml
13410            ml
13411   unspecified
13412            mg
13413            mg
13414            ml
13415            mg
13416            mg
13417            mg
13418            mg
13419            mg
13420            ml
13421            mg
13422            mg
13423 other specify
13424            ml
13425 other specify
13426 other specify
13427            ml
13428            ml
13429            mg
13430            mg
13431 other specify
13432 other specify
13433            mg
13434            mg
13435            ml
13436            ml
13437            ml
13438            ml
13439            ml
13440            ml
13441            ml
13442            ml
13443            mg
13444            mg
13445 other specify
13446            ml
13447 other specify
13448 other specify
13449 other specify
13450 other specify
13451 other specify
13452 other specify
13453            mg
13454 other specify
13455 other specify
13456            mg
13457           mcg
13458            ml
13459 other specify
13460 other specify
13461 other specify
13462 other specify
13463            mg
13464            mg
13465            mg
13466            mg
13467            mg
13468 other specify
13469            mg
13470 other specify
13471 other specify
13472            mg
13473 other specify
13474         drops
13475 other specify
13476 other specify
13477            gm
13478            mg
13479 other specify
13480            mg
13481 other specify
13482            mg
13483 other specify
13484 other specify
13485            mg
13486            mg
13487            mg
13488            mg
13489            mg
13490            mg
13491            mg
13492            mg
13493            mg
13494            mg
13495            mg
13496         drops
13497            mg
13498            mg
13499            mg
13500            mg
13501            mg
13502         units
13503         units
13504         drops
13505           mcg
13506 other specify
13507           mcg
13508            mg
13509            mg
13510            mg
13511            mg
13512            mg
13513            mg
13514           mcg
13515            mg
13516           mcg
13517            ml
13518           mcg
13519            mg
13520            mg
13521            mg
13522            mg
13523            mg
13524            mg
13525            mg
13526            mg
13527            mg
13528            mg
13529            mg
13530            mg
13531            mg
13532 other specify
13533            mg
13534           mcg
13535            ml
13536            mg
13537            mg
13538 other specify
13539            mg
13540            mg
13541            mg
13542            mg
13543            mg
13544            mg
13545            mg
13546            mg
13547            mg
13548            mg
13549            mg
13550            mg
13551            mg
13552            mg
13553            mg
13554            mg
13555            mg
13556         drops
13557         drops
13558            mg
13559            mg
13560         drops
13561            mg
13562            mg
13563 other specify
13564            mg
13565            mg
13566            ml
13567            ml
13568            mg
13569            mg
13570            mg
13571            mg
13572            mg
13573            mg
13574            mg
13575 other specify
13576 other specify
13577            ml
13578 other specify
13579         drops
13580            mg
13581            mg
13582            mg
13583            ml
13584            ml
13585            mg
13586 other specify
13587 other specify
13588 other specify
13589            mg
13590 other specify
13591            mg
13592            mg
13593            mg
13594         drops
13595         drops
13596            mg
13597            mg
13598            mg
13599            ml
13600 other specify
13601 other specify
13602            mg
13603            mg
13604            mg
13605            mg
13606 other specify
13607         drops
13608            mg
13609 other specify
13610            mg
13611         drops
13612            gm
13613         drops
13614         drops
13615         drops
13616            mg
13617            ml
13618 other specify
13619            mg
13620            mg
13621            mg
13622            mg
13623 other specify
13624 other specify
13625 other specify
13626            mg
13627            mg
13628 other specify
13629            mg
13630            mg
13631 other specify
13632            mg
13633           mcg
13634           mcg
13635            ml
13636           mcg
13637            ml
13638           mcg
13639            mg
13640           mcg
13641           mcg
13642            mg
13643           mcg
13644            mg
13645           mcg
13646            mg
13647            mg
13648            mg
13649            ml
13650            ml
13651           mcg
13652           mcg
13653            mg
13654 other specify
13655            ml
13656            mg
13657 other specify
13658            ml
13659         drops
13660 other specify
13661 other specify
13662            mg
13663            gm
13664            gm
13665            mg
13666 other specify
13667            mg
13668           mcg
13669            mg
13670            mg
13671            mg
13672            mg
13673 other specify
13674 other specify
13675           mcg
13676            mg
13677            gm
13678 other specify
13679            mg
13680 other specify
13681            mg
13682            mg
13683            mg
13684            mg
13685            mg
13686            ml
13687            mg
13688            ml
13689            mg
13690            mg
13691            mg
13692            mg
13693 other specify
13694           mcg
13695            mg
13696         drops
13697         drops
13698            mg
13699            mg
13700            mg
13701            mg
13702            mg
13703            mg
13704            mg
13705            mg
13706            mg
13707            mg
13708            mg
13709           mcg
13710            ml
13711            ml
13712         drops
13713         drops
13714            mg
13715            mg
13716            mg
13717            mg
13718            ml
13719 other specify
13720            mg
13721            mg
13722 other specify
13723 other specify
13724 other specify
13725            mg
13726            mg
13727            mg
13728            mg
13729            mg
13730 other specify
13731         drops
13732            mg
13733            mg
13734 other specify
13735            mg
13736            mg
13737 other specify
13738           mcg
13739            mg
13740   unspecified
13741   unspecified
13742            mg
13743            mg
13744            mg
13745            mg
13746            mg
13747            mg
13748            mg
13749            mg
13750            mg
13751            mg
13752            mg
13753            mg
13754            mg
13755            mg
13756         drops
13757            mg
13758            mg
13759            mg
13760            mg
13761            mg
13762            mg
13763            mg
13764            mg
13765            mg
13766 other specify
13767            mg
13768         drops
13769 other specify
13770            mg
13771            mg
13772           mcg
13773            mg
13774            mg
13775           mcg
13776 other specify
13777            mg
13778            mg
13779            mg
13780            ml
13781 other specify
13782 other specify
13783 other specify
13784            mg
13785            mg
13786 other specify
13787            mg
13788            mg
13789            mg
13790            mg
13791            mg
13792            mg
13793            mg
13794            mg
13795            mg
13796 other specify
13797            mg
13798            mg
13799            mg
13800            mg
13801 other specify
13802 other specify
13803            mg
13804            ml
13805 other specify
13806 other specify
13807            mg
13808            mg
13809            mg
13810            mg
13811            mg
13812            mg
13813            mg
13814            mg
13815            mg
13816           mcg
13817            mg
13818            ml
13819            mg
13820           mcg
13821            ml
13822            mg
13823         drops
13824           mcg
13825 other specify
13826            mg
13827 other specify
13828 other specify
13829            mg
13830            mg
13831            mg
13832            mg
13833            gm
13834            mg
13835            mg
13836            mg
13837           mcg
13838            mg
13839            mg
13840           mcg
13841 other specify
13842            mg
13843            mg
13844            mg
13845 other specify
13846            ml
13847            ml
13848         drops
13849            oz
13850            mg
13851 other specify
13852         drops
13853            mg
13854            mg
13855            mg
13856            mg
13857 other specify
13858 other specify
13859            ml
13860            ml
13861            ml
13862            ml
13863            ml
13864            ml
13865            mg
13866            mg
13867            mg
13868            mg
13869            mg
13870            mg
13871            mg
13872            mg
13873            mg
13874 other specify
13875            ml
13876            ml
13877            ml
13878            ml
13879            mg
13880            gm
13881            ml
13882           mcg
13883            mg
13884            ml
13885           mcg
13886            mg
13887            ml
13888            mg
13889            mg
13890            ml
13891            mg
13892            mg
13893            mg
13894            mg
13895            gm
13896 other specify
13897 other specify
13898            mg
13899            mg
13900            mg
13901            mg
13902            mg
13903            mg
13904            mg
13905            mg
13906            mg
13907            mg
13908            ml
13909            mg
13910 other specify
13911 other specify
13912   unspecified
13913   unspecified
13914            mg
13915         drops
13916         drops
13917         drops
13918            mg
13919            mg
13920            mg
13921            mg
13922            mg
13923            mg
13924            mg
13925            mg
13926            mg
13927            mg
13928            mg
13929            mg
13930            mg
13931            mg
13932            mg
13933            mg
13934            mg
13935            mg
13936            mg
13937            mg
13938            mg
13939            mg
13940            mg
13941            mg
13942            mg
13943         units
13944            mg
13945            mg
13946 other specify
13947           mcg
13948            mg
13949            mg
13950            mg
13951         drops
13952            mg
13953            mg
13954            mg
13955            mg
13956            mg
13957 other specify
13958 other specify
13959         drops
13960            ml
13961            mg
13962            mg
13963            mg
13964            mg
13965 other specify
13966            mg
13967 other specify
13968           mcg
13969            gm
13970         drops
13971            mg
13972            ml
13973 other specify
13974            mg
13975            mg
13976            mg
13977            mg
13978            mg
13979            ml
13980           mcg
13981            mg
13982            mg
13983            mg
13984            mg
13985            mg
13986            mg
13987            mg
13988            mg
13989            mg
13990            mg
13991            mg
13992           mcg
13993            mg
13994         units
13995         units
13996         drops
13997            mg
13998 other specify
13999 other specify
14000            mg
14001            mg
14002         drops
14003            mg
14004            mg
14005            mg
14006 other specify
14007 other specify
14008         drops
14009            mg
14010            mg
14011            mg
14012            mg
14013            mg
14014 other specify
14015           mcg
14016            mg
14017            mg
14018            mg
14019           mcg
14020            mg
14021            mg
14022           mcg
14023            mg
14024            mg
14025           mcg
14026            mg
14027           mcg
14028            mg
14029            mg
14030            mg
14031            mg
14032            mg
14033            mg
14034            mg
14035            mg
14036            mg
14037            mg
14038            mg
14039            mg
14040            mg
14041            mg
14042            mg
14043            mg
14044            mg
14045            mg
14046            mg
14047            mg
14048            mg
14049            mg
14050 other specify
14051 other specify
14052            mg
14053            gm
14054            mg
14055            mg
14056            mg
14057            mg
14058         drops
14059         drops
14060 other specify
14061            mg
14062            mg
14063         drops
14064 other specify
14065 other specify
14066            mg
14067            mg
14068            mg
14069            mg
14070            mg
14071 other specify
14072            mg
14073            mg
14074            mg
14075            mg
14076            mg
14077            mg
14078            mg
14079            mg
14080            mg
14081 other specify
14082            mg
14083            mg
14084            mg
14085            mg
14086            mg
14087            mg
14088            mg
14089            mg
14090            mg
14091            mg
14092            mg
14093            mg
14094            mg
14095            mg
14096            mg
14097            mg
14098            mg
14099            mg
14100            mg
14101            mg
14102            mg
14103            mg
14104            mg
14105            mg
14106 other specify
14107            mg
14108            mg
14109            mg
14110 other specify
14111            mg
14112            mg
14113 other specify
14114 other specify
14115            mg
14116 other specify
14117            mg
14118            mg
14119            mg
14120            ml
14121            ml
14122            ml
14123            ml
14124            ml
14125           tbs
14126           tbs
14127 other specify
14128            mg
14129 other specify
14130         drops
14131 other specify
14132            mg
14133            mg
14134            mg
14135            mg
14136         drops
14137 other specify
14138            mg
14139         drops
14140            mg
14141            mg
14142            mg
14143            mg
14144            ml
14145 other specify
14146            mg
14147 other specify
14148 other specify
14149 other specify
14150 other specify
14151 other specify
14152            mg
14153 other specify
14154 other specify
14155            ml
14156            mg
14157            mg
14158            mg
14159            mg
14160            mg
14161            mg
14162 other specify
14163 other specify
14164 other specify
14165         units
14166         units
14167 other specify
14168            ml
14169            mg
14170 other specify
14171 other specify
14172 other specify
14173 other specify
14174 other specify
14175         drops
14176            mg
14177 other specify
14178 other specify
14179 other specify
14180         drops
14181 other specify
14182            mg
14183            mg
14184            mg
14185            mg
14186            mg
14187            mg
14188            mg
14189 other specify
14190         drops
14191           mcg
14192            mg
14193            mg
14194            mg
14195            mg
14196           mcg
14197            mg
14198            mg
14199            mg
14200            mg
14201 other specify
14202            mg
14203            mg
14204            ml
14205           mcg
14206            mg
14207         units
14208            mg
14209            oz
14210            mg
14211            mg
14212            mg
14213            mg
14214            mg
14215            mg
14216            mg
14217            mg
14218         drops
14219 other specify
14220            mg
14221         drops
14222            mg
14223            mg
14224            mg
14225            mg
14226            mg
14227            mg
14228   unspecified
14229            mg
14230         drops
14231            mg
14232 other specify
14233            mg
14234            mg
14235 other specify
14236 other specify
14237 other specify
14238 other specify
14239 other specify
14240           mcg
14241            ml
14242           mcg
14243            ml
14244           mcg
14245            ml
14246           mcg
14247            oz
14248           mcg
14249 other specify
14250           mcg
14251         units
14252           mcg
14253            ml
14254            mg
14255            mg
14256            mg
14257            mg
14258            mg
14259            ml
14260            ml
14261            ml
14262            mg
14263            mg
14264            mg
14265            mg
14266           mcg
14267            mg
14268           mcg
14269            ml
14270            mg
14271            mg
14272           mcg
14273            mg
14274            mg
14275            ml
14276           mcg
14277            mg
14278            mg
14279            mg
14280            mg
14281           mcg
14282            mg
14283            mg
14284         units
14285            mg
14286 other specify
14287            mg
14288            mg
14289            mg
14290            mg
14291 other specify
14292            mg
14293            mg
14294            mg
14295           mcg
14296           mcg
14297           mcg
14298 other specify
14299            mg
14300            mg
14301 other specify
14302 other specify
14303            mg
14304            mg
14305            gm
14306            mg
14307            mg
14308            mg
14309            mg
14310            mg
14311            mg
14312            mg
14313           tsp
14314            mg
14315            mg
14316 other specify
14317 other specify
14318 other specify
14319           mcg
14320            mg
14321            mg
14322            ml
14323 other specify
14324         drops
14325            mg
14326            mg
14327            mg
14328            mg
14329            mg
14330         drops
14331            mg
14332            mg
14333            mg
14334 other specify
14335            ml
14336         drops
14337            mg
14338            mg
14339 other specify
14340 other specify
14341 other specify
14342            mg
14343 other specify
14344            mg
14345            mg
14346 other specify
14347            mg
14348            mg
14349            ml
14350 other specify
14351 other specify
14352 other specify
14353            mg
14354 other specify
14355 other specify
14356            mg
14357         drops
14358 other specify
14359            ml
14360           mcg
14361            mg
14362            mg
14363            mg
14364           mcg
14365 other specify
14366 other specify
14367 other specify
14368            gm
14369            mg
14370            mg
14371 other specify
14372 other specify
14373 other specify
14374            mg
14375 other specify
14376 other specify
14377            mg
14378 other specify
14379 other specify
14380 other specify
14381            mg
14382            mg
14383            mg
14384            mg
14385            mg
14386            mg
14387            mg
14388            mg
14389            mg
14390            mg
14391            mg
14392 other specify
14393            mg
14394           tbs
14395            mg
14396           tbs
14397           tbs
14398 other specify
14399         drops
14400 other specify
14401 other specify
14402            mg
14403            mg
14404            mg
14405            mg
14406 other specify
14407         drops
14408 other specify
14409         drops
14410            mg
14411            mg
14412            mg
14413            ml
14414 other specify
14415           mcg
14416            mg
14417            mg
14418            mg
14419            mg
14420           mcg
14421            mg
14422            mg
14423            mg
14424            mg
14425            mg
14426            mg
14427            mg
14428            mg
14429 other specify
14430            mg
14431 other specify
14432 other specify
14433 other specify
14434 other specify
14435            mg
14436            mg
14437 other specify
14438            ml
14439            mg
14440            mg
14441            mg
14442            ml
14443 other specify
14444 other specify
14445 other specify
14446 other specify
14447 other specify
14448 other specify
14449 other specify
14450            mg
14451 other specify
14452            mg
14453            mg
14454           mcg
14455 other specify
14456            ml
14457           mcg
14458           mcg
14459            mg
14460           mcg
14461            mg
14462         drops
14463           mcg
14464            mg
14465           mcg
14466            mg
14467            mg
14468            mg
14469            mg
14470            mg
14471 other specify
14472            mg
14473 other specify
14474            mg
14475            mg
14476            mg
14477         units
14478            mg
14479 other specify
14480            mg
14481            mg
14482            mg
14483            mg
14484            mg
14485            mg
14486            mg
14487            mg
14488 other specify
14489 other specify
14490 other specify
14491            ml
14492            mg
14493            mg
14494            mg
14495 other specify
14496            mg
14497            mg
14498 other specify
14499 other specify
14500            mg
14501            mg
14502            mg
14503            mg
14504            ml
14505            mg
14506         units
14507         units
14508         units
14509         units
14510            mg
14511            mg
14512         units
14513         units
14514            ml
14515 other specify
14516            mg
14517            mg
14518            mg
14519            mg
14520            mg
14521            mg
14522            mg
14523            mg
14524            mg
14525            mg
14526           mcg
14527 other specify
14528 other specify
14529 other specify
14530            mg
14531            mg
14532           mcg
14533            mg
14534           mcg
14535            mg
14536            mg
14537           mcg
14538            mg
14539            mg
14540            mg
14541            mg
14542            mg
14543            mg
14544            mg
14545            mg
14546            mg
14547 other specify
14548   unspecified
14549            mg
14550            mg
14551            mg
14552            mg
14553 other specify
14554 other specify
14555         drops
14556 other specify
14557 other specify
14558            ml
14559 other specify
14560            mg
14561            mg
14562 other specify
14563            mg
14564           mcg
14565           mcg
14566            mg
14567            mg
14568           mcg
14569 other specify
14570            mg
14571            mg
14572            mg
14573            mg
14574            mg
14575            mg
14576 other specify
14577 other specify
14578 other specify
14579            mg
14580            mg
14581            gm
14582 other specify
14583 other specify
14584 other specify
14585 other specify
14586 other specify
14587 other specify
14588 other specify
14589            mg
14590            mg
14591            mg
14592            mg
14593            mg
14594 other specify
14595            mg
14596 other specify
14597           mcg
14598            mg
14599           mcg
14600            mg
14601 other specify
14602            mg
14603            mg
14604            mg
14605            mg
14606            mg
14607            mg
14608            mg
14609            mg
14610            mg
14611 other specify
14612            mg
14613            mg
14614            mg
14615            mg
14616 other specify
14617            mg
14618            mg
14619           mcg
14620            mg
14621            mg
14622           mcg
14623 other specify
14624         drops
14625         drops
14626            mg
14627           mcg
14628           mcg
14629            mg
14630           mcg
14631 other specify
14632            gm
14633            mg
14634            mg
14635            mg
14636           mcg
14637         drops
14638            mg
14639            mg
14640            mg
14641            mg
14642            mg
14643 other specify
14644 other specify
14645            mg
14646           mcg
14647            mg
14648            mg
14649            mg
14650 other specify
14651           mcg
14652            mg
14653            mg
14654 other specify
14655            mg
14656            mg
14657            mg
14658 other specify
14659            mg
14660            mg
14661            mg
14662            mg
14663            mg
14664 other specify
14665 other specify
14666            mg
14667            mg
14668            mg
14669            mg
14670            mg
14671            mg
14672            mg
14673            mg
14674            mg
14675            mg
14676            mg
14677            mg
14678            mg
14679            mg
14680 other specify
14681 other specify
14682            mg
14683            mg
14684            mg
14685            mg
14686 other specify
14687            mg
14688            mg
14689            mg
14690            mg
14691            mg
14692            mg
14693            mg
14694            mg
14695            mg
14696            mg
14697 other specify
14698            mg
14699 other specify
14700 other specify
14701 other specify
14702           mcg
14703            mg
14704            mg
14705           mcg
14706            mg
14707            mg
14708            mg
14709            mg
14710 other specify
14711 other specify
14712 other specify
14713 other specify
14714            mg
14715            mg
14716            mg
14717            mg
14718 other specify
14719 other specify
14720 other specify
14721 other specify
14722 other specify
14723 other specify
14724            mg
14725            mg
14726 other specify
14727            mg
14728            mg
14729            mg
14730            mg
14731            mg
14732            mg
14733            mg
14734            mg
14735            mg
14736            mg
14737 other specify
14738 other specify
14739            mg
14740            mg
14741            mg
14742            mg
14743            mg
14744 other specify
14745            mg
14746 other specify
14747            mg
14748 other specify
14749            mg
14750            mg
14751            mg
14752            mg
14753            mg
14754 other specify
14755 other specify
14756         drops
14757         drops
14758            mg
14759            mg
14760 other specify
14761            mg
14762 other specify
14763 other specify
14764         drops
14765            mg
14766            mg
14767            mg
14768            ml
14769            mg
14770 other specify
14771 other specify
14772           mcg
14773            mg
14774            mg
14775   unspecified
14776            mg
14777   unspecified
14778   unspecified
14779            mg
14780            mg
14781 other specify
14782           mcg
14783            mg
14784           mcg
14785            mg
14786            mg
14787            mg
14788            mg
14789            mg
14790           mcg
14791            mg
14792            mg
14793            mg
14794            mg
14795            mg
14796           tsp
14797            ml
14798            ml
14799            mg
14800 other specify
14801            mg
14802            mg
14803            mg
14804            ml
14805 other specify
14806         units
14807            mg
14808            mg
14809            mg
14810            mg
14811            mg
14812            mg
14813            mg
14814            ml
14815            mg
14816            mg
14817            mg
14818            mg
14819 other specify
14820            mg
14821            ml
14822            mg
14823            ml
14824            mg
14825            iu
14826            mg
14827            mg
14828            mg
14829            mg
14830            mg
14831            mg
14832            mg
14833            mg
14834            mg
14835 other specify
14836           mcg
14837           mcg
14838            mg
14839            mg
14840            ml
14841           mcg
14842            mg
14843            mg
14844 other specify
14845 other specify
14846         drops
14847         drops
14848         drops
14849            mg
14850 other specify
14851 other specify
14852            mg
14853            ml
14854            mg
14855            mg
14856            mg
14857         units
14858            mg
14859            mg
14860            mg
14861 other specify
14862            mg
14863            mg
14864         units
14865            mg
14866            oz
14867            mg
14868            mg
14869         units
14870         units
14871         units
14872            mg
14873            mg
14874 other specify
14875 other specify
14876            mg
14877            mg
14878   unspecified
14879            mg
14880            mg
14881           mcg
14882            mg
14883            mg
14884            mg
14885            mg
14886            mg
14887            mg
14888            mg
14889            mg
14890            mg
14891            mg
14892            mg
14893            mg
14894           mcg
14895            mg
14896            mg
14897           mcg
14898            mg
14899            ml
14900            mg
14901            mg
14902            mg
14903            mg
14904            mg
14905            mg
14906            mg
14907            mg
14908            mg
14909            mg
14910            mg
14911            mg
14912            mg
14913            mg
14914            mg
14915            mg
14916            mg
14917           mcg
14918           mcg
14919 other specify
14920            mg
14921            mg
14922            mg
14923            mg
14924            mg
14925            mg
14926            mg
14927            mg
14928         units
14929            mg
14930            mg
14931            mg
14932            mg
14933            mg
14934         units
14935            mg
14936            mg
14937 other specify
14938         units
14939            mg
14940            mg
14941            mg
14942            ml
14943         units
14944            ml
14945            mg
14946 other specify
14947         units
14948            mg
14949            mg
14950            mg
14951 other specify
14952            mg
14953         drops
14954            mg
14955            ml
14956         drops
14957            mg
14958            mg
14959            mg
14960            mg
14961            mg
14962            mg
14963 other specify
14964            mg
14965            mg
14966           mcg
14967           mcg
14968           mcg
14969           mcg
14970           mcg
14971 other specify
14972 other specify
14973 other specify
14974 other specify
14975 other specify
14976            mg
14977            ml
14978 other specify
14979 other specify
14980            ml
14981 other specify
14982 other specify
14983 other specify
14984            mg
14985            mg
14986            mg
14987            mg
14988            gm
14989            mg
14990            mg
14991           mcg
14992           mcg
14993            mg
14994            mg
14995            mg
14996            mg
14997            mg
14998           mcg
14999           mcg
15000           mcg
15001           mcg
15002            oz
15003            ml
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15012            mg
15013            mg
15014            mg
15015            ml
15016            ml
15017 other specify
15018            mg
15019            mg
15020            mg
15021           mcg
15022            oz
15023 other specify
15024            mg
15025            oz
15026            oz
15027            oz
15028            mg
15029            mg
15030            ml
15031            mg
15032            mg
15033            mg
15034            mg
15035         units
15036         units
15037            mg
15038            mg
15039            mg
15040            mg
15041            ml
15042            mg
15043            mg
15044            mg
15045            mg
15046            mg
15047            mg
15048 other specify
15049            mg
15050 other specify
15051            mg
15052         drops
15053            mg
15054            mg
15055            mg
15056            mg
15057            mg
15058            mg
15059 other specify
15060           mcg
15061 other specify
15062           mcg
15063            ml
15064           mcg
15065            mg
15066            mg
15067           mcg
15068           mcg
15069            mg
15070            mg
15071            mg
15072           mcg
15073            mg
15074            mg
15075           mcg
15076           mcg
15077 other specify
15078            mg
15079            mg
15080            mg
15081            ml
15082           mcg
15083 other specify
15084            mg
15085            mg
15086            ml
15087            ml
15088            ml
15089         units
15090            ml
15091         drops
15092            mg
15093            mg
15094            mg
15095            mg
15096            mg
15097            mg
15098            mg
15099            mg
15100            mg
15101            ml
15102         drops
15103            mg
15104         units
15105            ml
15106            ml
15107            ml
15108         units
15109            ml
15110         drops
15111            mg
15112            mg
15113            mg
15114         drops
15115            mg
15116            mg
15117            mg
15118            mg
15119            mg
15120            mg
15121            mg
15122            mg
15123            mg
15124         drops
15125         drops
15126            mg
15127            mg
15128 other specify
15129 other specify
15130           mcg
15131            mg
15132            mg
15133         drops
15134            gm
15135            mg
15136            mg
15137 other specify
15138            mg
15139 other specify
15140 other specify
15141           mcg
15142            mg
15143            mg
15144         units
15145         units
15146            mg
15147            mg
15148            mg
15149            mg
15150 other specify
15151         units
15152            mg
15153            mg
15154            mg
15155   unspecified
15156            mg
15157 other specify
15158            mg
15159            mg
15160            mg
15161            mg
15162            mg
15163            mg
15164            mg
15165            mg
15166            mg
15167           mcg
15168            mg
15169            mg
15170            mg
15171            mg
15172            mg
15173            mg
15174            mg
15175            ml
15176            mg
15177            mg
15178 other specify
15179            mg
15180            ml
15181            ml
15182            ml
15183            ml
15184            mg
15185            mg
15186            mg
15187            mg
15188            mg
15189 other specify
15190            mg
15191            mg
15192            mg
15193           mcg
15194            mg
15195            mg
15196 other specify
15197 other specify
15198           mcg
15199           mcg
15200            ml
15201 other specify
15202           mcg
15203           mcg
15204            mg
15205           mcg
15206            mg
15207           mcg
15208           mcg
15209 other specify
15210            mg
15211         drops
15212            mg
15213 other specify
15214            mg
15215            mg
15216            mg
15217            mg
15218            mg
15219            mg
15220 other specify
15221            mg
15222            mg
15223            mg
15224 other specify
15225 other specify
15226            mg
15227 other specify
15228 other specify
15229            mg
15230            mg
15231            mg
15232            mg
15233            mg
15234            mg
15235            mg
15236            mg
15237            mg
15238            gm
15239            mg
15240            mg
15241            mg
15242            mg
15243 other specify
15244            mg
15245            mg
15246            mg
15247 other specify
15248           mcg
15249           mcg
15250 other specify
15251 other specify
15252         drops
15253            mg
15254            mg
15255 other specify
15256         units
15257            mg
15258            mg
15259           tsp
15260 other specify
15261 other specify
15262            mg
15263 other specify
15264            mg
15265           mcg
15266            mg
15267            mg
15268 other specify
15269 other specify
15270            mg
15271            mg
15272            mg
15273            mg
15274   unspecified
15275            mg
15276 other specify
15277            mg
15278 other specify
15279 other specify
15280            mg
15281            mg
15282 other specify
15283            mg
15284            mg
15285            mg
15286            mg
15287            mg
15288 other specify
15289            mg
15290            mg
15291            mg
15292            mg
15293            mg
15294            mg
15295 other specify
15296            mg
15297         units
15298            mg
15299            mg
15300 other specify
15301            mg
15302            mg
15303            mg
15304            mg
15305            mg
15306            mg
15307            mg
15308 other specify
15309 other specify
15310 other specify
15311 other specify
15312            mg
15313            mg
15314         units
15315 other specify
15316            mg
15317 other specify
15318            mg
15319            mg
15320            mg
15321 other specify
15322 other specify
15323            oz
15324            mg
15325            mg
15326            mg
15327            mg
15328            mg
15329            mg
15330 other specify
15331            mg
15332 other specify
15333            gm
15334 other specify
15335            mg
15336            mg
15337 other specify
15338 other specify
15339            mg
15340            mg
15341            mg
15342         drops
15343            mg
15344            mg
15345            mg
15346            mg
15347            mg
15348            mg
15349            mg
15350 other specify
15351            mg
15352            mg
15353            mg
15354 other specify
15355 other specify
15356            mg
15357            mg
15358            mg
15359            mg
15360            mg
15361 other specify
15362 other specify
15363         drops
15364            mg
15365 other specify
15366 other specify
15367 other specify
15368            mg
15369            mg
15370            mg
15371            mg
15372            oz
15373 other specify
15374 other specify
15375 other specify
15376 other specify
15377 other specify
15378 other specify
15379            mg
15380            mg
15381            gm
15382            ml
15383            mg
15384            mg
15385            mg
15386            mg
15387            mg
15388            mg
15389            mg
15390            mg
15391            mg
15392            mg
15393            mg
15394           mcg
15395 other specify
15396            mg
15397           mcg
15398            mg
15399           mcg
15400            mg
15401            mg
15402            oz
15403            mg
15404            ml
15405            mg
15406            mg
15407           mcg
15408            mg
15409            mg
15410            mg
15411 other specify
15412           mcg
15413            mg
15414            mg
15415            mg
15416 other specify
15417           mcg
15418           mcg
15419            mg
15420           mcg
15421            mg
15422            mg
15423            mg
15424           mcg
15425            mg
15426            mg
15427            mg
15428            mg
15429            mg
15430            mg
15431            mg
15432            mg
15433           mcg
15434            ml
15435            mg
15436            mg
15437            mg
15438            mg
15439            mg
15440 other specify
15441            mg
15442         units
15443            mg
15444         drops
15445         drops
15446            mg
15447           mcg
15448           mcg
15449           mcg
15450           mcg
15451 other specify
15452            mg
15453 other specify
15454   unspecified
15455            mg
15456            mg
15457            mg
15458            mg
15459            mg
15460            mg
15461            mg
15462            mg
15463            mg
15464           mcg
15465            mg
15466            oz
15467            mg
15468           mcg
15469            mg
15470 other specify
15471            mg
15472            mg
15473            mg
15474           mcg
15475            mg
15476            mg
15477 other specify
15478            mg
15479            mg
15480            mg
15481           mcg
15482            mg
15483            mg
15484         units
15485           mcg
15486            mg
15487           mcg
15488            mg
15489            mg
15490            mg
15491            mg
15492            mg
15493            mg
15494           mcg
15495            mg
15496            mg
15497            mg
15498 other specify
15499           mcg
15500            mg
15501            mg
15502            mg
15503            mg
15504            mg
15505         units
15506            mg
15507            ml
15508            mg
15509           mcg
15510           mcg
15511           mcg
15512         units
15513         units
15514           mcg
15515 other specify
15516            mg
15517           mcg
15518         units
15519           mcg
15520            mg
15521           mcg
15522            mg
15523            mg
15524 other specify
15525           mcg
15526            mg
15527 other specify
15528            mg
15529            mg
15530 other specify
15531            mg
15532            mg
15533 other specify
15534            mg
15535            mg
15536            mg
15537            mg
15538            mg
15539            mg
15540            mg
15541            mg
15542            mg
15543            ml
15544            mg
15545 other specify
15546            mg
15547            mg
15548            mg
15549            mg
15550 other specify
15551 other specify
15552 other specify
15553           mcg
15554 other specify
15555 other specify
15556 other specify
15557            mg
15558            mg
15559            mg
15560 other specify
15561            mg
15562            mg
15563 other specify
15564            mg
15565            mg
15566            mg
15567            mg
15568            mg
15569            mg
15570 other specify
15571            mg
15572            mg
15573            mg
15574 other specify
15575            mg
15576 other specify
15577            ml
15578            mg
15579            mg
15580            mg
15581 other specify
15582            mg
15583            mg
15584         drops
15585 other specify
15586 other specify
15587            mg
15588 other specify
15589 other specify
15590 other specify
15591 other specify
15592         drops
15593 other specify
15594 other specify
15595            ml
15596            mg
15597 other specify
15598 other specify
15599 other specify
15600 other specify
15601 other specify
15602            mg
15603   unspecified
15604   unspecified
15605            mg
15606            mg
15607            mg
15608            mg
15609            mg
15610            mg
15611         drops
15612           mcg
15613           tbs
15614         drops
15615         drops
15616           mcg
15617            mg
15618           mcg
15619            oz
15620            mg
15621            mg
15622            mg
15623            mg
15624            mg
15625            mg
15626            mg
15627            mg
15628            mg
15629            mg
15630            mg
15631            mg
15632            mg
15633            mg
15634            mg
15635            mg
15636         units
15637            mg
15638            mg
15639            mg
15640            mg
15641            mg
15642            mg
15643            mg
15644         drops
15645            gm
15646            mg
15647            mg
15648            mg
15649 other specify
15650 other specify
15651            mg
15652         drops
15653            mg
15654         drops
15655         drops
15656            mg
15657            mg
15658            mg
15659         drops
15660         drops
15661 other specify
15662         drops
15663 other specify
15664            mg
15665 other specify
15666         drops
15667         drops
15668         drops
15669           mcg
15670            mg
15671            gm
15672           mcg
15673           mcg
15674            mg
15675 other specify
15676            mg
15677            ml
15678            mg
15679 other specify
15680         drops
15681            mg
15682            mg
15683         drops
15684            mg
15685            mg
15686            mg
15687            mg
15688 other specify
15689 other specify
15690         units
15691         units
15692         units
15693         units
15694         units
15695         units
15696            mg
15697           mcg
15698           mcg
15699           mcg
15700            mg
15701 other specify
15702            ml
15703            ml
15704         drops
15705         drops
15706 other specify
15707            mg
15708            mg
15709            mg
15710            mg
15711 other specify
15712 other specify
15713 other specify
15714           tsp
15715            mg
15716           tsp
15717 other specify
15718 other specify
15719           mcg
15720            mg
15721           tsp
15722 other specify
15723 other specify
15724 other specify
15725           mcg
15726            mg
15727 other specify
15728           mcg
15729            mg
15730 other specify
15731 other specify
15732 other specify
15733           mcg
15734            mg
15735 other specify
15736 other specify
15737         drops
15738            mg
15739 other specify
15740           tsp
15741            mg
15742            mg
15743            mg
15744           tsp
15745           tsp
15746           tbs
15747 other specify
15748 other specify
15749 other specify
15750   unspecified
15751            ml
15752            mg
15753            ml
15754         drops
15755 other specify
15756 other specify
15757 other specify
15758 other specify
15759           mcg
15760            mg
15761            mg
15762            mg
15763            mg
15764            mg
15765            mg
15766            mg
15767         drops
15768         drops
15769         drops
15770         drops
15771            mg
15772            mg
15773           mcg
15774            mg
15775            mg
15776            mg
15777            ml
15778 other specify
15779            mg
15780            mg
15781 other specify
15782 other specify
15783 other specify
15784 other specify
15785 other specify
15786 other specify
15787            mg
15788         mg/ml
15789            mg
15790 other specify
15791            mg
15792            mg
15793            mg
15794            mg
15795            mg
15796            mg
15797            mg
15798            mg
15799   unspecified
15800            mg
15801            mg
15802            mg
15803           mcg
15804            ml
15805            mg
15806            mg
15807            ml
15808 other specify
15809            mg
15810            mg
15811 other specify
15812            mg
15813            mg
15814 other specify
15815 other specify
15816 other specify
15817            mg
15818         units
15819 other specify
15820 other specify
15821           mcg
15822            ml
15823            mg
15824            mg
15825            mg
15826            mg
15827            mg
15828            mg
15829           mcg
15830            mg
15831            gm
15832            ml
15833            ml
15834           mcg
15835           mcg
15836           mcg
15837           mcg
15838           mcg
15839 other specify
15840 other specify
15841 other specify
15842 other specify
15843            mg
15844 other specify
15845            mg
15846            mg
15847            mg
15848 other specify
15849 other specify
15850 other specify
15851            mg
15852            mg
15853            gm
15854            mg
15855            ml
15856 other specify
15857 other specify
15858            mg
15859 other specify
15860            mg
15861 other specify
15862 other specify
15863 other specify
15864 other specify
15865            mg
15866            mg
15867 other specify
15868 other specify
15869 other specify
15870 other specify
15871            mg
15872            mg
15873            mg
15874            mg
15875 other specify
15876            mg
15877            mg
15878            mg
15879            mg
15880 other specify
15881            mg
15882            mg
15883            mg
15884            mg
15885            mg
15886 other specify
15887            mg
15888   unspecified
15889         drops
15890            mg
15891 other specify
15892            mg
15893            mg
15894         drops
15895         drops
15896         drops
15897            mg
15898            mg
15899 other specify
15900 other specify
15901            mg
15902            mg
15903 other specify
15904            gm
15905            ml
15906            mg
15907         drops
15908 other specify
15909         units
15910         units
15911         units
15912            mg
15913            mg
15914            mg
15915           mcg
15916           tsp
15917 other specify
15918           tsp
15919            mg
15920           tsp
15921 other specify
15922 other specify
15923            gm
15924           mcg
15925            mg
15926            mg
15927            iu
15928 other specify
15929 other specify
15930         units
15931            mg
15932           mcg
15933            iu
15934            mg
15935         units
15936            mg
15937 other specify
15938            mg
15939            mg
15940            ml
15941            mg
15942            mg
15943            mg
15944            mg
15945         units
15946 other specify
15947         units
15948         units
15949         units
15950 other specify
15951            mg
15952            mg
15953            mg
15954            mg
15955           tsp
15956            mg
15957            mg
15958            mg
15959           tsp
15960           mcg
15961            mg
15962           tsp
15963            mg
15964            mg
15965            mg
15966            mg
15967           mcg
15968            mg
15969            ml
15970            gm
15971            mg
15972 other specify
15973            mg
15974            mg
15975            mg
15976           mcg
15977            mg
15978            mg
15979            mg
15980            mg
15981 other specify
15982            mg
15983 other specify
15984            mg
15985            mg
15986 other specify
15987            mg
15988            mg
15989            mg
15990            mg
15991            mg
15992 other specify
15993 other specify
15994            mg
15995 other specify
15996 other specify
15997 other specify
15998 other specify
15999 other specify
16000 other specify
16001            mg
16002            mg
16003            ml
16004         drops
16005            mg
16006            mg
16007            mg
16008            mg
16009            ml
16010            mg
16011         drops
16012         drops
16013         drops
16014            ml
16015            mg
16016 other specify
16017            mg
16018            mg
16019           mcg
16020            ml
16021           mcg
16022            mg
16023           mcg
16024            mg
16025            mg
16026 other specify
16027            mg
16028            ml
16029            mg
16030            mg
16031            mg
16032            mg
16033           mcg
16034            mg
16035 other specify
16036 other specify
16037            mg
16038 other specify
16039 other specify
16040            mg
16041            mg
16042            mg
16043         drops
16044            mg
16045            mg
16046            mg
16047            mg
16048            mg
16049           mcg
16050         drops
16051            mg
16052 other specify
16053 other specify
16054            mg
16055            mg
16056            mg
16057            ml
16058            mg
16059            mg
16060           mcg
16061            mg
16062           mcg
16063            mg
16064            mg
16065            mg
16066            mg
16067           mcg
16068            mg
16069            mg
16070            mg
16071            mg
16072            mg
16073            mg
16074            mg
16075            mg
16076            mg
16077            mg
16078            mg
16079            ml
16080            mg
16081            mg
16082           mcg
16083            mg
16084            mg
16085            ml
16086 other specify
16087            mg
16088            mg
16089            mg
16090            mg
16091            mg
16092            mg
16093           mcg
16094 other specify
16095            mg
16096            mg
16097 other specify
16098 other specify
16099            mg
16100            mg
16101            mg
16102            ml
16103         drops
16104         drops
16105            mg
16106            mg
16107 other specify
16108            mg
16109            mg
16110         units
16111            ml
16112            mg
16113 other specify
16114         drops
16115         drops
16116            mg
16117            mg
16118            mg
16119            mg
16120         drops
16121            ml
16122            mg
16123           mcg
16124 other specify
16125         units
16126         units
16127           mcg
16128            mg
16129           mcg
16130            ml
16131           mcg
16132           mcg
16133           mcg
16134            mg
16135         drops
16136           mcg
16137            mg
16138            mg
16139            mg
16140            mg
16141 other specify
16142            mg
16143            mg
16144 other specify
16145            mg
16146            mg
16147            mg
16148         drops
16149            mg
16150 other specify
16151            ml
16152 other specify
16153 other specify
16154 other specify
16155 other specify
16156 other specify
16157 other specify
16158 other specify
16159 other specify
16160 other specify
16161 other specify
16162 other specify
16163 other specify
16164 other specify
16165 other specify
16166            mg
16167            mg
16168            mg
16169            mg
16170            mg
16171            mg
16172            mg
16173            mg
16174            mg
16175            mg
16176            gm
16177 other specify
16178            mg
16179 other specify
16180            mg
16181            mg
16182            mg
16183            mg
16184            mg
16185            mg
16186         drops
16187            mg
16188            ml
16189            mg
16190            mg
16191            gm
16192            mg
16193            mg
16194            mg
16195            mg
16196            mg
16197            mg
16198            mg
16199            mg
16200            mg
16201            mg
16202            mg
16203            mg
16204            mg
16205            mg
16206            mg
16207            mg
16208            mg
16209            mg
16210            mg
16211           mcg
16212           mcg
16213 other specify
16214 other specify
16215 other specify
16216            gm
16217            mg
16218            mg
16219            mg
16220            mg
16221            mg
16222            mg
16223            mg
16224            mg
16225            mg
16226            mg
16227            mg
16228            mg
16229 other specify
16230 other specify
16231 other specify
16232            mg
16233            mg
16234 other specify
16235 other specify
16236            mg
16237 other specify
16238            mg
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16243            ml
16244            ml
16245            ml
16246            mg
16247            mg
16248            ml
16249            mg
16250            mg
16251         drops
16252         drops
16253            gm
16254            mg
16255            mg
16256            mg
16257            mg
16258            mg
16259            mg
16260            mg
16261            mg
16262            mg
16263         drops
16264            ml
16265            mg
16266            ml
16267            mg
16268            mg
16269            mg
16270            mg
16271            mg
16272            mg
16273            mg
16274            mg
16275            mg
16276            mg
16277            mg
16278            mg
16279            mg
16280            ml
16281            mg
16282            ml
16283 other specify
16284            ml
16285            mg
16286   unspecified
16287 other specify
16288 other specify
16289 other specify
16290         drops
16291 other specify
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16297            mg
16298            mg
16299            mg
16300            mg
16301            mg
16302            mg
16303            mg
16304 other specify
16305 other specify
16306 other specify
16307            mg
16308            mg
16309            mg
16310           mcg
16311            mg
16312 other specify
16313 other specify
16314            mg
16315 other specify
16316 other specify
16317         drops
16318 other specify
16319 other specify
16320            mg
16321 other specify
16322 other specify
16323            mg
16324 other specify
16325 other specify
16326 other specify
16327            mg
16328            mg
16329            mg
16330            mg
16331            mg
16332            ml
16333            oz
16334            mg
16335            mg
16336            mg
16337            mg
16338         drops
16339 other specify
16340 other specify
16341            mg
16342            mg
16343            mg
16344            mg
16345            mg
16346           mcg
16347 other specify
16348            mg
16349            ml
16350            mg
16351            mg
16352            mg
16353            mg
16354 other specify
16355 other specify
16356 other specify
16357 other specify
16358 other specify
16359            gm
16360 other specify
16361 other specify
16362 other specify
16363 other specify
16364 other specify
16365            ml
16366            ml
16367         drops
16368            ml
16369            ml
16370            ml
16371         drops
16372 other specify
16373            mg
16374         drops
16375            mg
16376   unspecified
16377            mg
16378         drops
16379 other specify
16380         drops
16381 other specify
16382         drops
16383           mcg
16384            mg
16385            mg
16386            mg
16387 other specify
16388 other specify
16389           mcg
16390            mg
16391            mg
16392         units
16393            mg
16394 other specify
16395            mg
16396            mg
16397 other specify
16398            mg
16399 other specify
16400 other specify
16401 other specify
16402            mg
16403 other specify
16404 other specify
16405            mg
16406            mg
16407 other specify
16408           mcg
16409            mg
16410            mg
16411 other specify
16412            mg
16413 other specify
16414 other specify
16415            mg
16416            mg
16417            ml
16418 other specify
16419 other specify
16420 other specify
16421           tsp
16422         drops
16423            mg
16424            mg
16425 other specify
16426 other specify
16427            ml
16428            mg
16429            mg
16430            mg
16431            mg
16432            mg
16433            mg
16434            mg
16435            mg
16436            mg
16437            mg
16438            mg
16439            mg
16440 other specify
16441 other specify
16442 other specify
16443 other specify
16444            mg
16445            mg
16446            mg
16447 other specify
16448 other specify
16449            ml
16450 other specify
16451         drops
16452            ml
16453            ml
16454            mg
16455            gm
16456            gm
16457            mg
16458            ml
16459            ml
16460 other specify
16461            mg
16462            ml
16463            mg
16464            mg
16465            mg
16466            mg
16467            mg
16468            mg
16469            mg
16470           mcg
16471            ml
16472            mg
16473            ml
16474 other specify
16475            gm
16476            ml
16477            mg
16478         drops
16479 other specify
16480           mcg
16481            mg
16482            mg
16483            mg
16484            mg
16485 other specify
16486            mg
16487            mg
16488            mg
16489 other specify
16490            mg
16491            mg
16492            mg
16493 other specify
16494            mg
16495            mg
16496            mg
16497         drops
16498 other specify
16499 other specify
16500            mg
16501            mg
16502           mcg
16503            mg
16504            mg
16505            mg
16506            mg
16507            mg
16508            mg
16509            mg
16510         drops
16511            mg
16512            mg
16513            mg
16514            mg
16515            mg
16516            mg
16517         drops
16518            mg
16519            mg
16520            mg
16521         drops
16522 other specify
16523 other specify
16524 other specify
16525            mg
16526            ml
16527            mg
16528            mg
16529            mg
16530            mg
16531            ml
16532            mg
16533            mg
16534            mg
16535            mg
16536            mg
16537            ml
16538 other specify
16539            mg
16540            mg
16541            mg
16542            mg
16543 other specify
16544 other specify
16545            mg
16546         units
16547            mg
16548            mg
16549            mg
16550            mg
16551 other specify
16552            mg
16553 other specify
16554 other specify
16555            mg
16556            mg
16557            mg
16558            ml
16559            mg
16560            mg
16561            mg
16562            mg
16563            mg
16564            mg
16565            mg
16566            ml
16567            mg
16568            mg
16569            mg
16570            mg
16571            mg
16572            mg
16573            ml
16574            mg
16575            ml
16576            mg
16577            ml
16578            mg
16579 other specify
16580 other specify
16581            ml
16582            ml
16583            ml
16584            ml
16585            ml
16586            ml
16587            ml
16588            ml
16589            mg
16590            mg
16591            ml
16592            mg
16593            mg
16594            mg
16595 other specify
16596 other specify
16597 other specify
16598 other specify
16599 other specify
16600            mg
16601 other specify
16602            mg
16603            mg
16604            mg
16605           tbs
16606 other specify
16607            mg
16608 other specify
16609            mg
16610            mg
16611            mg
16612            mg
16613           mcg
16614            ml
16615           mcg
16616            mg
16617            gm
16618            mg
16619            mg
16620            mg
16621            gm
16622 other specify
16623 other specify
16624            mg
16625 other specify
16626            mg
16627            mg
16628            mg
16629            mg
16630 other specify
16631 other specify
16632            mg
16633            mg
16634            mg
16635 other specify
16636 other specify
16637 other specify
16638 other specify
16639 other specify
16640 other specify
16641            mg
16642            mg
16643            mg
16644         drops
16645            mg
16646         drops
16647         drops
16648           mcg
16649           mcg
16650            mg
16651            mg
16652            mg
16653            gm
16654            mg
16655            mg
16656            gm
16657         drops
16658            mg
16659            mg
16660 other specify
16661 other specify
16662 other specify
16663 other specify
16664            mg
16665            mg
16666 other specify
16667            mg
16668 other specify
16669 other specify
16670 other specify
16671 other specify
16672 other specify
16673            mg
16674            mg
16675            mg
16676            mg
16677            mg
16678            mg
16679            mg
16680            mg
16681            mg
16682 other specify
16683            mg
16684 other specify
16685 other specify
16686            mg
16687 other specify
16688            mg
16689         mg/ml
16690            mg
16691            mg
16692         drops
16693            mg
16694 other specify
16695 other specify
16696 other specify
16697            mg
16698            mg
16699         drops
16700           tbs
16701            ml
16702 other specify
16703 other specify
16704 other specify
16705 other specify
16706            mg
16707            gm
16708            mg
16709            mg
16710            mg
16711 other specify
16712 other specify
16713            mg
16714 other specify
16715            mg
16716            mg
16717 other specify
16718 other specify
16719            ml
16720            mg
16721 other specify
16722         mg/ml
16723 other specify
16724           tbs
16725            ml
16726 other specify
16727            mg
16728            mg
16729            mg
16730            mg
16731         drops
16732         drops
16733           mcg
16734           mcg
16735           mcg
16736            mg
16737            mg
16738            mg
16739            mg
16740            mg
16741            mg
16742 other specify
16743            ml
16744            mg
16745            mg
16746            mg
16747            mg
16748            mg
16749            mg
16750            mg
16751            mg
16752            mg
16753            mg
16754            mg
16755            mg
16756 other specify
16757           mcg
16758 other specify
16759            mg
16760            mg
16761            mg
16762            ml
16763 other specify
16764            mg
16765            mg
16766            mg
16767            mg
16768            mg
16769            mg
16770            mg
16771            ml
16772            mg
16773            mg
16774 other specify
16775 other specify
16776 other specify
16777 other specify
16778 other specify
16779 other specify
16780 other specify
16781 other specify
16782 other specify
16783   unspecified
16784   unspecified
16785   unspecified
16786            mg
16787            mg
16788            mg
16789 other specify
16790            mg
16791            ml
16792            ml
16793            mg
16794            mg
16795            mg
16796            mg
16797            mg
16798         drops
16799            ml
16800            mg
16801            mg
16802         drops
16803         drops
16804            mg
16805 other specify
16806         drops
16807 other specify
16808           mcg
16809 other specify
16810 other specify
16811 other specify
16812            mg
16813            mg
16814            ml
16815 other specify
16816         drops
16817            mg
16818            mg
16819            ml
16820            mg
16821 other specify
16822            mg
16823         drops
16824            mg
16825            mg
16826            ml
16827            mg
16828            mg
16829            mg
16830            mg
16831            mg
16832            mg
16833            mg
16834   unspecified
16835            mg
16836            mg
16837            ml
16838   unspecified
16839            mg
16840   unspecified
16841   unspecified
16842            ml
16843            mg
16844            mg
16845            mg
16846   unspecified
16847   unspecified
16848            mg
16849 other specify
16850            gm
16851           mcg
16852            mg
16853            mg
16854           mcg
16855            mg
16856           mcg
16857            mg
16858            mg
16859           mcg
16860            mg
16861           mcg
16862           mcg
16863            mg
16864 other specify
16865            mg
16866 other specify
16867            mg
16868         drops
16869 other specify
16870 other specify
16871 other specify
16872 other specify
16873            mg
16874            mg
16875            mg
16876            mg
16877            mg
16878            mg
16879 other specify
16880            mg
16881            mg
16882 other specify
16883           tsp
16884           tbs
16885           tbs
16886         units
16887            mg
16888            ml
16889            ml
16890            ml
16891            mg
16892            mg
16893            mg
16894            mg
16895         drops
16896            mg
16897            mg
16898            mg
16899            mg
16900            mg
16901            mg
16902           mcg
16903           mcg
16904            mg
16905           mcg
16906           mcg
16907           mcg
16908            mg
16909           mcg
16910            mg
16911            mg
16912            mg
16913 other specify
16914           mcg
16915            mg
16916            mg
16917            mg
16918 other specify
16919            mg
16920 other specify
16921 other specify
16922            mg
16923            mg
16924            mg
16925            mg
16926            mg
16927            mg
16928            mg
16929 other specify
16930         mg/kg
16931            mg
16932 other specify
16933            mg
16934            mg
16935         units
16936 other specify
16937 other specify
16938 other specify
16939         drops
16940            mg
16941            mg
16942            mg
16943            mg
16944            mg
16945 other specify
16946 other specify
16947 other specify
16948 other specify
16949            mg
16950            mg
16951            mg
16952 other specify
16953 other specify
16954            mg
16955            mg
16956            mg
16957            mg
16958            mg
16959            mg
16960            mg
16961         drops
16962            mg
16963            mg
16964            mg
16965            mg
16966            mg
16967            mg
16968            mg
16969            mg
16970           mcg
16971         drops
16972 other specify
16973 other specify
16974            mg
16975            mg
16976            mg
16977            ml
16978            ml
16979 other specify
16980            mg
16981            mg
16982            mg
16983 other specify
16984            mg
16985            mg
16986            mg
16987           mcg
16988            mg
16989            mg
16990           mcg
16991            mg
16992            mg
16993 other specify
16994 other specify
16995            mg
16996            mg
16997           mcg
16998 other specify
16999           mcg
17000            ml
17001            mg
17002         units
17003            mg
17004            mg
17005         drops
17006            mg
17007            mg
17008            mg
17009            mg
17010 other specify
17011            mg
17012 other specify
17013 other specify
17014 other specify
17015            mg
17016         drops
17017            mg
17018 other specify
17019 other specify
17020   unspecified
17021            mg
17022         drops
17023            mg
17024            mg
17025            mg
17026            mg
17027            mg
17028            mg
17029 other specify
17030            mg
17031            mg
17032           mcg
17033           mcg
17034           mcg
17035         units
17036         units
17037           mcg
17038           mcg
17039            mg
17040            mg
17041 other specify
17042 other specify
17043            mg
17044            mg
17045            mg
17046            mg
17047            mg
17048            mg
17049           mcg
17050            mg
17051            mg
17052           mcg
17053         units
17054         units
17055            ml
17056            mg
17057 other specify
17058            gm
17059           mcg
17060           mcg
17061            mg
17062         drops
17063         drops
17064            mg
17065         drops
17066            mg
17067            mg
17068 other specify
17069            mg
17070         drops
17071            mg
17072         drops
17073         drops
17074           mcg
17075            mg
17076            ml
17077           mcg
17078            mg
17079            mg
17080 other specify
17081            mg
17082           tbs
17083            gm
17084            mg
17085            mg
17086            mg
17087            mg
17088 other specify
17089            mg
17090 other specify
17091 other specify
17092         drops
17093         drops
17094 other specify
17095 other specify
17096            mg
17097            mg
17098           mcg
17099            mg
17100            mg
17101            mg
17102            mg
17103            mg
17104            mg
17105            mg
17106            mg
17107            mg
17108            mg
17109            mg
17110            mg
17111            mg
17112            mg
17113            mg
17114            ml
17115            ml
17116           mcg
17117            ml
17118           mcg
17119            ml
17120 other specify
17121 other specify
17122            mg
17123            mg
17124            mg
17125         drops
17126 other specify
17127 other specify
17128         drops
17129            ml
17130            mg
17131         drops
17132            mg
17133            mg
17134            mg
17135         drops
17136 other specify
17137 other specify
17138 other specify
17139            ml
17140            gm
17141            mg
17142 other specify
17143 other specify
17144            mg
17145            mg
17146            mg
17147            mg
17148            mg
17149            mg
17150            mg
17151 other specify
17152            mg
17153            mg
17154         drops
17155            mg
17156 other specify
17157 other specify
17158            mg
17159            mg
17160            mg
17161            mg
17162            gm
17163            gm
17164            mg
17165            mg
17166            ml
17167            mg
17168            ml
17169            mg
17170            mg
17171            mg
17172            mg
17173         drops
17174            mg
17175            mg
17176            mg
17177 other specify
17178            mg
17179            mg
17180 other specify
17181            mg
17182            ml
17183            mg
17184            mg
17185            mg
17186            mg
17187            mg
17188            mg
17189            mg
17190            mg
17191            mg
17192            mg
17193            mg
17194            mg
17195           mcg
17196 other specify
17197 other specify
17198            mg
17199 other specify
17200            mg
17201 other specify
17202 other specify
17203            mg
17204            mg
17205            ml
17206            mg
17207            ml
17208           mcg
17209 other specify
17210           mcg
17211            mg
17212           mcg
17213            mg
17214            mg
17215            mg
17216            mg
17217            ml
17218           mcg
17219           mcg
17220           mcg
17221           mcg
17222           mcg
17223            mg
17224           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17230 other specify
17231 other specify
17232 other specify
17233 other specify
17234 other specify
17235            mg
17236 other specify
17237 other specify
17238 other specify
17239 other specify
17240           mcg
17241           mcg
17242            mg
17243            mg
17244            mg
17245           mcg
17246            mg
17247 other specify
17248 other specify
17249            mg
17250            mg
17251 other specify
17252 other specify
17253            mg
17254 other specify
17255 other specify
17256         drops
17257         drops
17258            mg
17259         drops
17260         drops
17261            mg
17262 other specify
17263            mg
17264            mg
17265            mg
17266         units
17267            mg
17268 other specify
17269            mg
17270            mg
17271           mcg
17272            mg
17273            mg
17274            mg
17275            mg
17276            mg
17277            mg
17278            mg
17279            mg
17280            mg
17281            mg
17282            mg
17283           mcg
17284            mg
17285           mcg
17286            mg
17287            mg
17288         drops
17289 other specify
17290            mg
17291            mg
17292            mg
17293            mg
17294 other specify
17295 other specify
17296            mg
17297            mg
17298 other specify
17299            mg
17300           mcg
17301            mg
17302            mg
17303            mg
17304            mg
17305            mg
17306            mg
17307            mg
17308            mg
17309            mg
17310            mg
17311           mcg
17312            ml
17313           mcg
17314            mg
17315            mg
17316           mcg
17317 other specify
17318            mg
17319           mcg
17320            mg
17321            mg
17322            mg
17323            mg
17324            mg
17325            mg
17326            mg
17327 other specify
17328 other specify
17329 other specify
17330 other specify
17331            mg
17332            mg
17333            mg
17334 other specify
17335 other specify
17336         drops
17337         drops
17338         drops
17339            mg
17340 other specify
17341         drops
17342            mg
17343 other specify
17344         drops
17345            mg
17346            mg
17347            mg
17348            mg
17349            gm
17350            mg
17351            mg
17352 other specify
17353            mg
17354            mg
17355 other specify
17356            mg
17357            ml
17358            mg
17359            mg
17360            mg
17361            mg
17362            mg
17363 other specify
17364 other specify
17365            mg
17366            mg
17367 other specify
17368            mg
17369            mg
17370 other specify
17371 other specify
17372 other specify
17373 other specify
17374            ml
17375            mg
17376            mg
17377            mg
17378            mg
17379            gm
17380            mg
17381 other specify
17382           mcg
17383            mg
17384           mcg
17385            mg
17386           mcg
17387           mcg
17388 other specify
17389           mcg
17390 other specify
17391           mcg
17392            mg
17393 other specify
17394            mg
17395            mg
17396            ml
17397            ml
17398            mg
17399 other specify
17400            mg
17401            mg
17402            mg
17403            mg
17404            mg
17405            mg
17406 other specify
17407 other specify
17408            mg
17409            mg
17410            mg
17411            mg
17412   unspecified
17413            mg
17414            mg
17415           mcg
17416           mcg
17417 other specify
17418 other specify
17419 other specify
17420 other specify
17421         drops
17422            mg
17423            mg
17424 other specify
17425            mg
17426   unspecified
17427   unspecified
17428            mg
17429           mcg
17430            mg
17431           mcg
17432            mg
17433            mg
17434            mg
17435            mg
17436            mg
17437            mg
17438           mcg
17439           mcg
17440            mg
17441            gm
17442            mg
17443            mg
17444           mcg
17445           mcg
17446         drops
17447            mg
17448           mcg
17449            mg
17450            ml
17451           mcg
17452            mg
17453            mg
17454            mg
17455            mg
17456            ml
17457 other specify
17458            mg
17459 other specify
17460            ml
17461            mg
17462            mg
17463 other specify
17464 other specify
17465            mg
17466            ml
17467            ml
17468            mg
17469            mg
17470            gm
17471            mg
17472         units
17473         units
17474         units
17475         units
17476            mg
17477            ml
17478            ml
17479            mg
17480            ml
17481            mg
17482            oz
17483            mg
17484 other specify
17485            mg
17486 other specify
17487 other specify
17488 other specify
17489 other specify
17490 other specify
17491 other specify
17492 other specify
17493 other specify
17494 other specify
17495 other specify
17496 other specify
17497 other specify
17498 other specify
17499            mg
17500            mg
17501            mg
17502            mg
17503            mg
17504            mg
17505            mg
17506            mg
17507            mg
17508            mg
17509            mg
17510            mg
17511            mg
17512         drops
17513            mg
17514            mg
17515            mg
17516            mg
17517            mg
17518 other specify
17519 other specify
17520            mg
17521            mg
17522            mg
17523            mg
17524            mg
17525            mg
17526            mg
17527            mg
17528            mg
17529            mg
17530 other specify
17531            mg
17532            mg
17533            mg
17534            ml
17535            mg
17536            mg
17537            mg
17538            mg
17539            mg
17540            mg
17541            ml
17542            mg
17543            mg
17544         drops
17545            ml
17546            mg
17547 other specify
17548            ml
17549 other specify
17550            mg
17551            mg
17552            mg
17553            mg
17554            ml
17555            mg
17556            mg
17557            mg
17558            mg
17559            mg
17560 other specify
17561            mg
17562 other specify
17563         drops
17564            mg
17565            mg
17566            mg
17567         drops
17568 other specify
17569         drops
17570            mg
17571            ml
17572            mg
17573            mg
17574            mg
17575            mg
17576 other specify
17577            mg
17578            mg
17579            mg
17580            mg
17581            mg
17582 other specify
17583            ml
17584            mg
17585            mg
17586            mg
17587            mg
17588 other specify
17589            ml
17590            ml
17591   unspecified
17592            ml
17593            mg
17594            mg
17595            mg
17596            mg
17597            mg
17598            mg
17599            ml
17600            mg
17601         drops
17602 other specify
17603 other specify
17604 other specify
17605            mg
17606 other specify
17607            mg
17608            mg
17609            mg
17610            mg
17611 other specify
17612            ml
17613            mg
17614            mg
17615 other specify
17616            mg
17617            ml
17618            mg
17619            mg
17620            mg
17621 other specify
17622            ml
17623            mg
17624            mg
17625 other specify
17626            ml
17627 other specify
17628            mg
17629            ml
17630            mg
17631 other specify
17632            mg
17633            ml
17634            mg
17635            ml
17636            mg
17637            mg
17638            mg
17639            mg
17640            mg
17641         drops
17642 other specify
17643            mg
17644            mg
17645            mg
17646 other specify
17647            mg
17648            mg
17649 other specify
17650            mg
17651            mg
17652            mg
17653            mg
17654            mg
17655            mg
17656            mg
17657            mg
17658            mg
17659 other specify
17660            mg
17661            mg
17662            ml
17663            mg
17664            mg
17665            mg
17666            mg
17667            mg
17668            mg
17669            mg
17670 other specify
17671            mg
17672            mg
17673            mg
17674 other specify
17675 other specify
17676 other specify
17677            mg
17678            mg
17679            gm
17680   unspecified
17681            mg
17682            mg
17683            mg
17684            mg
17685            mg
17686            mg
17687            mg
17688         drops
17689 other specify
17690            mg
17691            mg
17692            mg
17693 other specify
17694            mg
17695            mg
17696            mg
17697            mg
17698            mg
17699            mg
17700         drops
17701            mg
17702            mg
17703            mg
17704            ml
17705            mg
17706            mg
17707            mg
17708            mg
17709            mg
17710            ml
17711            mg
17712            mg
17713            ml
17714            mg
17715            mg
17716            mg
17717            ml
17718            mg
17719            mg
17720 other specify
17721            mg
17722 other specify
17723 other specify
17724            mg
17725           mcg
17726            mg
17727            mg
17728            mg
17729            mg
17730            ml
17731            mg
17732            ml
17733            mg
17734            mg
17735           tsp
17736            mg
17737            mg
17738            mg
17739            mg
17740           tbs
17741 other specify
17742         drops
17743         drops
17744         drops
17745            mg
17746            mg
17747            mg
17748            mg
17749            mg
17750            ml
17751           mcg
17752            mg
17753            mg
17754            mg
17755 other specify
17756            mg
17757           mcg
17758           mcg
17759            mg
17760           mcg
17761            mg
17762            mg
17763           mcg
17764            mg
17765            mg
17766            mg
17767            mg
17768            mg
17769            mg
17770            mg
17771            mg
17772            mg
17773            mg
17774            mg
17775           mcg
17776            mg
17777            mg
17778            mg
17779 other specify
17780            mg
17781         drops
17782 other specify
17783            mg
17784            ml
17785            gm
17786            mg
17787            mg
17788            mg
17789            mg
17790            mg
17791            mg
17792            mg
17793            mg
17794         drops
17795            mg
17796            mg
17797            mg
17798         drops
17799            mg
17800            mg
17801            mg
17802 other specify
17803   unspecified
17804   unspecified
17805 other specify
17806            mg
17807            mg
17808 other specify
17809            mg
17810            mg
17811 other specify
17812            mg
17813            mg
17814           mcg
17815            ml
17816            mg
17817           mcg
17818 other specify
17819            ml
17820            ml
17821            ml
17822            gm
17823            ml
17824            mg
17825           mcg
17826            mg
17827           mcg
17828            mg
17829            mg
17830            mg
17831            mg
17832 other specify
17833         drops
17834         drops
17835            mg
17836 other specify
17837            mg
17838         units
17839         units
17840         drops
17841         drops
17842            mg
17843            mg
17844            mg
17845 other specify
17846 other specify
17847 other specify
17848 other specify
17849            mg
17850            mg
17851            mg
17852            mg
17853   unspecified
17854            mg
17855         drops
17856         drops
17857            mg
17858            mg
17859            mg
17860   unspecified
17861            mg
17862            mg
17863 other specify
17864            mg
17865   unspecified
17866         drops
17867         drops
17868            mg
17869           mcg
17870           mcg
17871            oz
17872            oz
17873            oz
17874            mg
17875            mg
17876            mg
17877            mg
17878         drops
17879            mg
17880            mg
17881            mg
17882            mg
17883            mg
17884            mg
17885            gm
17886            gm
17887           mcg
17888            oz
17889            mg
17890            mg
17891            mg
17892            mg
17893            mg
17894         drops
17895            mg
17896            ml
17897           mcg
17898            mg
17899           mcg
17900            ml
17901            mg
17902            mg
17903            mg
17904           mcg
17905            ml
17906            mg
17907            mg
17908            gm
17909            mg
17910            mg
17911         drops
17912            mg
17913            mg
17914            mg
17915            mg
17916            mg
17917            mg
17918           mcg
17919            ml
17920            mg
17921            mg
17922            mg
17923            mg
17924            mg
17925            mg
17926            mg
17927            mg
17928            mg
17929            mg
17930            mg
17931            mg
17932            mg
17933            mg
17934            mg
17935            mg
17936 other specify
17937            mg
17938            mg
17939 other specify
17940 other specify
17941            mg
17942 other specify
17943            mg
17944            mg
17945            mg
17946            mg
17947 other specify
17948            mg
17949            ml
17950            mg
17951            mg
17952            mg
17953            mg
17954            mg
17955            mg
17956            mg
17957            gm
17958            mg
17959            mg
17960            mg
17961            mg
17962            mg
17963            mg
17964            mg
17965            mg
17966            mg
17967            mg
17968            mg
17969         drops
17970            mg
17971            mg
17972         drops
17973            mg
17974 other specify
17975            mg
17976 other specify
17977 other specify
17978            mg
17979            mg
17980            mg
17981            mg
17982           mcg
17983            mg
17984            mg
17985            mg
17986            mg
17987           mcg
17988            mg
17989            mg
17990            mg
17991 other specify
17992            gm
17993            mg
17994            ml
17995            mg
17996            mg
17997            oz
17998            mg
17999            mg
18000            mg
18001 other specify
18002            mg
18003 other specify
18004            mg
18005            mg
18006            mg
18007            mg
18008            mg
18009 other specify
18010 other specify
18011 other specify
18012            mg
18013            mg
18014 other specify
18015 other specify
18016            mg
18017            mg
18018            mg
18019            mg
18020            mg
18021 other specify
18022            mg
18023 other specify
18024 other specify
18025 other specify
18026 other specify
18027            mg
18028            mg
18029            mg
18030 other specify
18031            mg
18032            mg
18033            mg
18034            mg
18035            mg
18036            mg
18037         drops
18038            mg
18039            mg
18040            mg
18041 other specify
18042            gm
18043            mg
18044         drops
18045            mg
18046            mg
18047            mg
18048            mg
18049           mcg
18050            mg
18051            mg
18052            mg
18053            mg
18054            mg
18055         drops
18056            mg
18057 other specify
18058 other specify
18059            mg
18060            mg
18061            mg
18062            mg
18063            mg
18064         drops
18065            mg
18066            mg
18067            mg
18068         drops
18069 other specify
18070            mg
18071         drops
18072 other specify
18073 other specify
18074         drops
18075 other specify
18076 other specify
18077         drops
18078         drops
18079 other specify
18080 other specify
18081 other specify
18082           mcg
18083 other specify
18084            mg
18085            mg
18086            mg
18087            mg
18088            mg
18089            mg
18090            mg
18091            mg
18092            mg
18093            mg
18094 other specify
18095 other specify
18096            ml
18097            mg
18098         drops
18099 other specify
18100            mg
18101            mg
18102            mg
18103            mg
18104            mg
18105            mg
18106            mg
18107            mg
18108            mg
18109            mg
18110            mg
18111            mg
18112            mg
18113            mg
18114            mg
18115            mg
18116            mg
18117 other specify
18118 other specify
18119 other specify
18120            ml
18121            mg
18122           mcg
18123         units
18124 other specify
18125 other specify
18126            mg
18127            ml
18128            mg
18129         drops
18130            mg
18131            mg
18132            ml
18133         drops
18134   unspecified
18135            ml
18136            ml
18137            ml
18138            ml
18139            mg
18140            mg
18141   unspecified
18142            mg
18143            ml
18144            ml
18145            ml
18146            ml
18147 other specify
18148            mg
18149            ml
18150 other specify
18151         drops
18152            mg
18153            mg
18154            mg
18155            mg
18156            mg
18157            mg
18158            mg
18159         drops
18160            mg
18161            mg
18162            mg
18163            mg
18164         drops
18165 other specify
18166            mg
18167            mg
18168            mg
18169 other specify
18170            mg
18171            mg
18172            mg
18173            mg
18174            mg
18175            mg
18176            mg
18177            ml
18178            mg
18179            ml
18180            mg
18181            ml
18182           mcg
18183 other specify
18184            mg
18185            mg
18186            mg
18187            mg
18188 other specify
18189            mg
18190            mg
18191         units
18192            iu
18193            mg
18194            mg
18195            mg
18196            mg
18197            mg
18198            mg
18199            mg
18200            mg
18201            mg
18202 other specify
18203            mg
18204            mg
18205 other specify
18206            mg
18207            mg
18208            mg
18209            mg
18210            mg
18211            mg
18212            mg
18213         units
18214 other specify
18215            mg
18216            mg
18217           mcg
18218           mcg
18219            mg
18220            mg
18221            ml
18222 other specify
18223 other specify
18224            mg
18225            mg
18226            mg
18227            ml
18228            mg
18229            mg
18230            mg
18231 other specify
18232 other specify
18233 other specify
18234            ml
18235            ml
18236            ml
18237 other specify
18238 other specify
18239            mg
18240            mg
18241 other specify
18242 other specify
18243 other specify
18244            mg
18245            ml
18246            ml
18247            ml
18248            ml
18249            mg
18250            mg
18251 other specify
18252            mg
18253            mg
18254 other specify
18255            mg
18256            mg
18257            ml
18258 other specify
18259            mg
18260            mg
18261            mg
18262 other specify
18263            iu
18264            mg
18265            mg
18266            mg
18267            mg
18268            mg
18269            mg
18270            mg
18271            ml
18272            mg
18273            mg
18274            ml
18275 other specify
18276         drops
18277         units
18278         units
18279         units
18280            mg
18281         units
18282            mg
18283         units
18284         units
18285 other specify
18286            mg
18287            mg
18288            mg
18289            mg
18290            mg
18291            mg
18292            mg
18293            mg
18294            mg
18295            mg
18296 other specify
18297            mg
18298            mg
18299            mg
18300 other specify
18301 other specify
18302            mg
18303            mg
18304           mcg
18305            mg
18306            mg
18307            mg
18308            mg
18309 other specify
18310         drops
18311            mg
18312            mg
18313            mg
18314 other specify
18315            mg
18316 other specify
18317            mg
18318 other specify
18319 other specify
18320 other specify
18321 other specify
18322 other specify
18323   unspecified
18324            mg
18325   unspecified
18326   unspecified
18327            gm
18328            mg
18329            ml
18330            ml
18331            ml
18332            mg
18333            mg
18334            mg
18335 other specify
18336            ml
18337 other specify
18338         drops
18339 other specify
18340 other specify
18341 other specify
18342         units
18343         drops
18344 other specify
18345            mg
18346            mg
18347            mg
18348            mg
18349           mcg
18350            mg
18351            mg
18352            mg
18353            mg
18354            mg
18355            mg
18356            mg
18357            mg
18358            mg
18359         drops
18360            mg
18361            mg
18362            mg
18363            mg
18364            mg
18365 other specify
18366 other specify
18367 other specify
18368            mg
18369            mg
18370 other specify
18371 other specify
18372 other specify
18373 other specify
18374 other specify
18375 other specify
18376            mg
18377            mg
18378            mg
18379            mg
18380            mg
18381            mg
18382            mg
18383            mg
18384            mg
18385            mg
18386            mg
18387            mg
18388            mg
18389            mg
18390           mcg
18391           mcg
18392            mg
18393            mg
18394            mg
18395            mg
18396           mcg
18397            mg
18398           mcg
18399            mg
18400            mg
18401           mcg
18402            mg
18403            mg
18404         drops
18405            mg
18406           mcg
18407            mg
18408            mg
18409            mg
18410            mg
18411            mg
18412            mg
18413            mg
18414           mcg
18415 other specify
18416 other specify
18417            mg
18418           mcg
18419           mcg
18420            mg
18421            mg
18422            mg
18423            mg
18424            ml
18425            ml
18426            ml
18427 other specify
18428            mg
18429            mg
18430            mg
18431            mg
18432            mg
18433            mg
18434            mg
18435            mg
18436 other specify
18437            ml
18438            mg
18439            mg
18440            mg
18441            mg
18442            mg
18443            mg
18444 other specify
18445         units
18446         units
18447            mg
18448            mg
18449            mg
18450            mg
18451            mg
18452            mg
18453 other specify
18454 other specify
18455            mg
18456            mg
18457 other specify
18458 other specify
18459 other specify
18460 other specify
18461 other specify
18462            mg
18463            mg
18464            mg
18465            mg
18466         drops
18467           mcg
18468            mg
18469 other specify
18470           mcg
18471 other specify
18472           mcg
18473 other specify
18474            mg
18475            mg
18476            mg
18477         drops
18478            mg
18479            mg
18480            mg
18481            mg
18482            mg
18483            mg
18484            mg
18485            mg
18486            mg
18487            mg
18488            mg
18489 other specify
18490 other specify
18491            mg
18492            mg
18493            mg
18494 other specify
18495 other specify
18496            mg
18497           mcg
18498            ml
18499            mg
18500 other specify
18501            mg
18502 other specify
18503            mg
18504 other specify
18505            mg
18506            mg
18507            mg
18508            mg
18509            mg
18510            mg
18511            mg
18512           mcg
18513           mcg
18514 other specify
18515            mg
18516            mg
18517           mcg
18518            mg
18519 other specify
18520 other specify
18521            mg
18522            mg
18523            mg
18524           mcg
18525            mg
18526            mg
18527            mg
18528         units
18529            mg
18530         units
18531         units
18532            mg
18533            mg
18534 other specify
18535 other specify
18536 other specify
18537            mg
18538           mcg
18539 other specify
18540            gm
18541           mcg
18542 other specify
18543 other specify
18544            ml
18545            mg
18546            mg
18547            ml
18548            mg
18549            mg
18550            oz
18551            ml
18552            ml
18553            mg
18554            mg
18555 other specify
18556            ml
18557            ml
18558 other specify
18559            mg
18560            mg
18561           mcg
18562 other specify
18563            mg
18564           mcg
18565 other specify
18566            mg
18567            mg
18568            mg
18569            mg
18570         drops
18571 other specify
18572 other specify
18573         units
18574         drops
18575           mcg
18576 other specify
18577 other specify
18578            mg
18579            mg
18580 other specify
18581 other specify
18582            mg
18583            mg
18584            mg
18585            mg
18586            mg
18587            mg
18588   unspecified
18589           mcg
18590            mg
18591 other specify
18592            mg
18593            mg
18594            mg
18595 other specify
18596            mg
18597            mg
18598            mg
18599            mg
18600            mg
18601            mg
18602            mg
18603            mg
18604            mg
18605            mg
18606            mg
18607 other specify
18608            mg
18609            mg
18610 other specify
18611            mg
18612 other specify
18613            gm
18614 other specify
18615            mg
18616            mg
18617            mg
18618            mg
18619            mg
18620            mg
18621         drops
18622            mg
18623            mg
18624            mg
18625            mg
18626         drops
18627            mg
18628            mg
18629            mg
18630 other specify
18631            mg
18632            mg
18633            mg
18634            mg
18635 other specify
18636            mg
18637            mg
18638            mg
18639         drops
18640            mg
18641            mg
18642            mg
18643            mg
18644            mg
18645            mg
18646            mg
18647            mg
18648            ml
18649 other specify
18650            mg
18651            mg
18652            mg
18653            mg
18654            mg
18655            mg
18656         drops
18657            mg
18658            mg
18659            mg
18660            mg
18661            mg
18662           mcg
18663            mg
18664            mg
18665            mg
18666 other specify
18667            mg
18668            mg
18669 other specify
18670            mg
18671            mg
18672            mg
18673         drops
18674 other specify
18675            mg
18676            mg
18677            mg
18678            mg
18679            mg
18680            mg
18681            mg
18682            mg
18683            mg
18684            mg
18685            mg
18686           mcg
18687         drops
18688            mg
18689            mg
18690           mcg
18691            mg
18692 other specify
18693            mg
18694            mg
18695            ml
18696 other specify
18697 other specify
18698            oz
18699            gm
18700            gm
18701            mg
18702            mg
18703 other specify
18704 other specify
18705           mcg
18706           mcg
18707           mcg
18708            mg
18709            mg
18710            mg
18711            mg
18712            mg
18713            mg
18714            mg
18715            mg
18716 other specify
18717            mg
18718 other specify
18719            mg
18720            mg
18721            mg
18722            mg
18723            mg
18724            mg
18725            mg
18726            mg
18727 other specify
18728            ml
18729 other specify
18730            mg
18731            mg
18732 other specify
18733 other specify
18734 other specify
18735 other specify
18736 other specify
18737            gm
18738            mg
18739            mg
18740 other specify
18741            mg
18742            mg
18743 other specify
18744 other specify
18745 other specify
18746            mg
18747            mg
18748 other specify
18749           mcg
18750           mcg
18751            mg
18752            mg
18753            mg
18754            mg
18755            mg
18756            mg
18757            mg
18758            mg
18759            mg
18760            mg
18761            mg
18762            mg
18763            mg
18764            mg
18765            mg
18766            mg
18767            ml
18768            mg
18769            mg
18770            mg
18771            mg
18772            mg
18773 other specify
18774            mg
18775            mg
18776            mg
18777         drops
18778 other specify
18779            mg
18780            mg
18781            mg
18782            mg
18783            mg
18784            mg
18785            mg
18786            mg
18787            mg
18788         units
18789            mg
18790            mg
18791            mg
18792            mg
18793            mg
18794            mg
18795 other specify
18796 other specify
18797 other specify
18798 other specify
18799           mcg
18800           mcg
18801           mcg
18802            mg
18803            ml
18804           mcg
18805           mcg
18806            mg
18807           mcg
18808            mg
18809            mg
18810            mg
18811            gm
18812            mg
18813            mg
18814            mg
18815            mg
18816            mg
18817            mg
18818            mg
18819            mg
18820         drops
18821         drops
18822            mg
18823            mg
18824            mg
18825            mg
18826 other specify
18827            mg
18828            ml
18829            mg
18830            mg
18831            mg
18832            mg
18833            mg
18834            mg
18835            mg
18836            mg
18837 other specify
18838 other specify
18839 other specify
18840            ml
18841            mg
18842         drops
18843            mg
18844 other specify
18845 other specify
18846 other specify
18847 other specify
18848            mg
18849            mg
18850 other specify
18851            mg
18852 other specify
18853 other specify
18854 other specify
18855 other specify
18856 other specify
18857            mg
18858            mg
18859            mg
18860            mg
18861         drops
18862            mg
18863            mg
18864         units
18865         units
18866            mg
18867            mg
18868            mg
18869 other specify
18870 other specify
18871            mg
18872            mg
18873            mg
18874            mg
18875 other specify
18876 other specify
18877 other specify
18878 other specify
18879 other specify
18880 other specify
18881 other specify
18882 other specify
18883            mg
18884            ml
18885            mg
18886           mcg
18887            mg
18888            ml
18889            ml
18890            ml
18891            ml
18892            mg
18893 other specify
18894           mcg
18895            mg
18896         drops
18897 other specify
18898            gm
18899 other specify
18900            mg
18901            mg
18902           mcg
18903            mg
18904            mg
18905            mg
18906            mg
18907            mg
18908 other specify
18909 other specify
18910           mcg
18911            mg
18912            mg
18913            ml
18914           mcg
18915           mcg
18916            mg
18917           mcg
18918            mg
18919 other specify
18920           mcg
18921 other specify
18922 other specify
18923            mg
18924 other specify
18925            mg
18926            mg
18927            mg
18928            mg
18929            gm
18930           mcg
18931            ml
18932           mcg
18933            mg
18934           mcg
18935 other specify
18936 other specify
18937 other specify
18938            mg
18939           mcg
18940           mcg
18941            mg
18942            mg
18943            mg
18944            mg
18945            mg
18946            mg
18947            mg
18948            mg
18949            mg
18950            mg
18951           mcg
18952            mg
18953 other specify
18954 other specify
18955            mg
18956            mg
18957            mg
18958            mg
18959            mg
18960           mcg
18961 other specify
18962           mcg
18963            mg
18964 other specify
18965            mg
18966            mg
18967           mcg
18968            mg
18969            mg
18970 other specify
18971           tbs
18972           mcg
18973            mg
18974            mg
18975           mcg
18976            mg
18977            mg
18978            mg
18979            mg
18980           mcg
18981            mg
18982           mcg
18983            mg
18984            mg
18985            mg
18986            mg
18987           mcg
18988 other specify
18989 other specify
18990           mcg
18991 other specify
18992            mg
18993           tbs
18994            mg
18995 other specify
18996            mg
18997            mg
18998   unspecified
18999 other specify
19000            mg
19001            mg
19002            mg
19003   unspecified
19004         drops
19005 other specify
19006 other specify
19007         drops
19008 other specify
19009 other specify
19010 other specify
19011 other specify
19012           tsp
19013 other specify
19014            mg
19015            mg
19016            ml
19017            ml
19018            mg
19019            mg
19020            mg
19021   unspecified
19022 other specify
19023 other specify
19024 other specify
19025 other specify
19026            mg
19027            mg
19028            mg
19029            mg
19030            mg
19031            mg
19032            mg
19033            mg
19034            mg
19035            mg
19036           mcg
19037            mg
19038           mcg
19039            mg
19040            mg
19041            mg
19042            mg
19043 other specify
19044            mg
19045 other specify
19046            mg
19047            gm
19048            mg
19049         drops
19050            mg
19051         drops
19052            mg
19053            mg
19054            mg
19055 other specify
19056 other specify
19057         drops
19058         drops
19059            mg
19060            mg
19061 other specify
19062            mg
19063            mg
19064            mg
19065            mg
19066            mg
19067 other specify
19068            mg
19069            mg
19070 other specify
19071            mg
19072 other specify
19073 other specify
19074            mg
19075            mg
19076            mg
19077 other specify
19078 other specify
19079            ml
19080            ml
19081            ml
19082 other specify
19083           mcg
19084            mg
19085           mcg
19086            ml
19087            oz
19088           mcg
19089            ml
19090         drops
19091            ml
19092            mg
19093            mg
19094            mg
19095            mg
19096            mg
19097            mg
19098            mg
19099            mg
19100            mg
19101         drops
19102 other specify
19103            ml
19104            mg
19105 other specify
19106            mg
19107            ml
19108            mg
19109            ml
19110            ml
19111 other specify
19112            mg
19113            mg
19114            ml
19115            mg
19116            gm
19117            mg
19118            mg
19119            mg
19120            mg
19121            mg
19122 other specify
19123            ml
19124            ml
19125            ml
19126            ml
19127            ml
19128            ml
19129            ml
19130 other specify
19131            mg
19132            mg
19133            mg
19134            ml
19135            mg
19136            mg
19137            gm
19138            mg
19139            mg
19140 other specify
19141 other specify
19142 other specify
19143            mg
19144            mg
19145 other specify
19146 other specify
19147            mg
19148            mg
19149            mg
19150            mg
19151 other specify
19152         drops
19153 other specify
19154 other specify
19155            ml
19156            ml
19157 other specify
19158 other specify
19159   unspecified
19160            mg
19161            mg
19162            ml
19163            mg
19164           tbs
19165 other specify
19166 other specify
19167 other specify
19168            mg
19169 other specify
19170 other specify
19171            mg
19172            mg
19173            mg
19174            mg
19175            mg
19176            mg
19177            mg
19178            mg
19179            mg
19180            mg
19181            mg
19182 other specify
19183 other specify
19184 other specify
19185            mg
19186            mg
19187         drops
19188         drops
19189            mg
19190            mg
19191            mg
19192            mg
19193         units
19194            mg
19195            mg
19196            mg
19197            ml
19198            mg
19199            mg
19200            mg
19201            mg
19202            mg
19203            mg
19204            mg
19205            mg
19206            mg
19207            mg
19208 other specify
19209            mg
19210            mg
19211            mg
19212            mg
19213 other specify
19214 other specify
19215 other specify
19216 other specify
19217 other specify
19218           tbs
19219            mg
19220           mcg
19221 other specify
19222 other specify
19223 other specify
19224 other specify
19225            mg
19226 other specify
19227            mg
19228            gm
19229            mg
19230            mg
19231 other specify
19232            mg
19233            mg
19234            gm
19235            mg
19236            mg
19237            mg
19238            mg
19239            mg
19240            mg
19241            mg
19242            mg
19243           mcg
19244            mg
19245         units
19246 other specify
19247            mg
19248            mg
19249            gm
19250            mg
19251            mg
19252            mg
19253            mg
19254            mg
19255           mcg
19256            mg
19257            mg
19258            mg
19259            mg
19260            mg
19261            mg
19262            mg
19263            mg
19264            gm
19265            mg
19266            mg
19267            mg
19268            mg
19269            mg
19270         drops
19271 other specify
19272 other specify
19273 other specify
19274            mg
19275            mg
19276         drops
19277            mg
19278 other specify
19279            mg
19280         drops
19281 other specify
19282 other specify
19283            mg
19284            mg
19285            mg
19286            mg
19287         drops
19288         drops
19289            mg
19290         drops
19291            mg
19292            mg
19293            mg
19294            mg
19295            mg
19296            mg
19297            mg
19298         drops
19299 other specify
19300            mg
19301            mg
19302           mcg
19303            oz
19304            ml
19305           mcg
19306            oz
19307            mg
19308            mg
19309            mg
19310            ml
19311            mg
19312            mg
19313            ml
19314            mg
19315 other specify
19316            mg
19317            mg
19318 other specify
19319            ml
19320            mg
19321            ml
19322            mg
19323         drops
19324            mg
19325         drops
19326 other specify
19327 other specify
19328            mg
19329            mg
19330            mg
19331            mg
19332            mg
19333            mg
19334            mg
19335            mg
19336            mg
19337            mg
19338 other specify
19339            mg
19340            mg
19341 other specify
19342            mg
19343            mg
19344         units
19345         units
19346 other specify
19347         units
19348            mg
19349            mg
19350 other specify
19351            mg
19352            mg
19353   unspecified
19354   unspecified
19355            mg
19356           mcg
19357 other specify
19358            mg
19359           mcg
19360            mg
19361            mg
19362            mg
19363            mg
19364            mg
19365           mcg
19366           mcg
19367           mcg
19368            mg
19369            mg
19370            mg
19371            mg
19372            mg
19373 other specify
19374 other specify
19375            ml
19376           mcg
19377            mg
19378            mg
19379            mg
19380           mcg
19381            mg
19382            mg
19383            mg
19384            ml
19385            mg
19386 other specify
19387 other specify
19388            mg
19389            mg
19390 other specify
19391 other specify
19392         drops
19393            mg
19394            mg
19395 other specify
19396            mg
19397 other specify
19398            mg
19399            mg
19400            mg
19401           mcg
19402           mcg
19403            mg
19404            mg
19405            mg
19406            mg
19407            mg
19408            mg
19409            mg
19410            mg
19411            mg
19412            mg
19413            mg
19414            mg
19415           mcg
19416           mcg
19417            mg
19418            mg
19419            mg
19420            mg
19421            mg
19422            mg
19423 other specify
19424 other specify
19425            ml
19426 other specify
19427 other specify
19428            mg
19429            mg
19430            mg
19431           mcg
19432           mcg
19433           mcg
19434            mg
19435            mg
19436            mg
19437            oz
19438            gm
19439            ml
19440            ml
19441            mg
19442            ml
19443            mg
19444            mg
19445 other specify
19446 other specify
19447 other specify
19448 other specify
19449 other specify
19450 other specify
19451            mg
19452   unspecified
19453   unspecified
19454   unspecified
19455            mg
19456            mg
19457 other specify
19458            mg
19459            mg
19460            mg
19461 other specify
19462 other specify
19463 other specify
19464         drops
19465         drops
19466            mg
19467            mg
19468            mg
19469            mg
19470            mg
19471            mg
19472            mg
19473            mg
19474            mg
19475            mg
19476 other specify
19477            mg
19478            mg
19479            mg
19480            mg
19481            mg
19482 other specify
19483         drops
19484         drops
19485            mg
19486         units
19487 other specify
19488            mg
19489            mg
19490            mg
19491         drops
19492 other specify
19493 other specify
19494 other specify
19495 other specify
19496            mg
19497           mcg
19498            mg
19499            gm
19500            mg
19501           tbs
19502            mg
19503           mcg
19504            mg
19505            mg
19506            mg
19507 other specify
19508            mg
19509            mg
19510            mg
19511            mg
19512            mg
19513            mg
19514            mg
19515            mg
19516            gm
19517            gm
19518            mg
19519            mg
19520            mg
19521            mg
19522            mg
19523 other specify
19524 other specify
19525            mg
19526            mg
19527            mg
19528            mg
19529            mg
19530            mg
19531            mg
19532            mg
19533            mg
19534            mg
19535            mg
19536            mg
19537 other specify
19538         drops
19539         drops
19540            mg
19541 other specify
19542 other specify
19543 other specify
19544 other specify
19545            mg
19546            mg
19547            mg
19548 other specify
19549            mg
19550 other specify
19551 other specify
19552            mg
19553            mg
19554         drops
19555 other specify
19556            mg
19557            mg
19558            mg
19559            mg
19560            mg
19561            mg
19562            oz
19563            mg
19564            mg
19565 other specify
19566            mg
19567            mg
19568 other specify
19569            ml
19570            mg
19571            mg
19572            mg
19573            ml
19574            mg
19575            mg
19576            mg
19577            mg
19578            mg
19579            mg
19580            mg
19581            ml
19582 other specify
19583            mg
19584            gm
19585            mg
19586            mg
19587            mg
19588            ml
19589            mg
19590            mg
19591            ml
19592 other specify
19593            mg
19594            mg
19595         drops
19596            mg
19597 other specify
19598            mg
19599            mg
19600         drops
19601 other specify
19602 other specify
19603 other specify
19604 other specify
19605            mg
19606            mg
19607            mg
19608            mg
19609            mg
19610           mcg
19611           mcg
19612            ml
19613           mcg
19614            mg
19615         drops
19616           mcg
19617            ml
19618            mg
19619            mg
19620            mg
19621           mcg
19622            ml
19623            mg
19624           mcg
19625            mg
19626           mcg
19627            ml
19628            mg
19629            mg
19630            mg
19631            mg
19632            mg
19633            mg
19634            mg
19635 other specify
19636            mg
19637            mg
19638            mg
19639            mg
19640            mg
19641   unspecified
19642            mg
19643            ml
19644            mg
19645            mg
19646           tbs
19647            mg
19648            mg
19649            mg
19650            mg
19651         drops
19652            mg
19653            mg
19654            mg
19655            mg
19656            mg
19657            mg
19658            mg
19659 other specify
19660            mg
19661            mg
19662 other specify
19663            mg
19664            mg
19665            mg
19666            mg
19667            mg
19668            mg
19669         units
19670            mg
19671            mg
19672            mg
19673 other specify
19674 other specify
19675            mg
19676            mg
19677            ml
19678            mg
19679            mg
19680            mg
19681            mg
19682            mg
19683            mg
19684            mg
19685 other specify
19686            mg
19687            mg
19688 other specify
19689            mg
19690            gm
19691            mg
19692            mg
19693            mg
19694            mg
19695            mg
19696            mg
19697            mg
19698            mg
19699            mg
19700            mg
19701            mg
19702            mg
19703            mg
19704           mcg
19705            mg
19706            ml
19707            mg
19708           mcg
19709            mg
19710 other specify
19711 other specify
19712 other specify
19713 other specify
19714 other specify
19715 other specify
19716 other specify
19717 other specify
19718 other specify
19719           tsp
19720            mg
19721            mg
19722 other specify
19723           mcg
19724 other specify
19725            mg
19726            mg
19727            mg
19728            oz
19729 other specify
19730         drops
19731            mg
19732            mg
19733            mg
19734            mg
19735 other specify
19736            mg
19737         drops
19738            mg
19739            mg
19740            mg
19741         units
19742            mg
19743            mg
19744            mg
19745            mg
19746            ml
19747         drops
19748            mg
19749            mg
19750            mg
19751            mg
19752            mg
19753         units
19754            mg
19755            mg
19756            mg
19757            mg
19758            mg
19759            mg
19760            mg
19761            mg
19762            mg
19763            mg
19764            mg
19765            mg
19766            gm
19767         drops
19768 other specify
19769            mg
19770            mg
19771            mg
19772            mg
19773            mg
19774            mg
19775            mg
19776 other specify
19777 other specify
19778 other specify
19779         drops
19780 other specify
19781 other specify
19782 other specify
19783           mcg
19784            mg
19785            mg
19786 other specify
19787            mg
19788 other specify
19789            ml
19790            oz
19791            mg
19792   unspecified
19793 other specify
19794            mg
19795            mg
19796            mg
19797            mg
19798            mg
19799            mg
19800 other specify
19801 other specify
19802 other specify
19803 other specify
19804 other specify
19805 other specify
19806 other specify
19807 other specify
19808            mg
19809 other specify
19810 other specify
19811            mg
19812 other specify
19813 other specify
19814            mg
19815            mg
19816 other specify
19817 other specify
19818            ml
19819            mg
19820            mg
19821 other specify
19822            mg
19823 other specify
19824            mg
19825         units
19826            mg
19827            mg
19828 other specify
19829 other specify
19830            mg
19831            mg
19832            mg
19833            ml
19834            mg
19835            mg
19836            ml
19837 other specify
19838   unspecified
19839            mg
19840            oz
19841            ml
19842            mg
19843         drops
19844            ml
19845         drops
19846 other specify
19847 other specify
19848            mg
19849            mg
19850            mg
19851         units
19852         drops
19853 other specify
19854 other specify
19855            mg
19856 other specify
19857 other specify
19858            mg
19859            mg
19860            mg
19861            mg
19862            ml
19863            mg
19864            mg
19865            mg
19866 other specify
19867            mg
19868            mg
19869            mg
19870            mg
19871            mg
19872            mg
19873            mg
19874            mg
19875            mg
19876            mg
19877            mg
19878            mg
19879            mg
19880            mg
19881   unspecified
19882            mg
19883            mg
19884         drops
19885            mg
19886            mg
19887 other specify
19888 other specify
19889            mg
19890            mg
19891            mg
19892            mg
19893            mg
19894            mg
19895            mg
19896            mg
19897            mg
19898            mg
19899            mg
19900            mg
19901            mg
19902           mcg
19903           mcg
19904           mcg
19905            mg
19906            mg
19907            mg
19908            mg
19909            mg
19910            mg
19911 other specify
19912         drops
19913            mg
19914 other specify
19915            mg
19916            mg
19917 other specify
19918            mg
19919            mg
19920            mg
19921            mg
19922            mg
19923 other specify
19924            mg
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19929            mg
19930            mg
19931            mg
19932         units
19933 other specify
19934            mg
19935            mg
19936 other specify
19937         drops
19938 other specify
19939            mg
19940 other specify
19941            mg
19942            mg
19943 other specify
19944            mg
19945            mg
19946 other specify
19947            mg
19948            mg
19949            mg
19950            mg
19951            mg
19952 other specify
19953            mg
19954           mcg
19955           mcg
19956           mcg
19957           mcg
19958 other specify
19959         drops
19960         drops
19961            mg
19962 other specify
19963            mg
19964         drops
19965            mg
19966            mg
19967            mg
19968            mg
19969         drops
19970         drops
19971 other specify
19972           mcg
19973            mg
19974            mg
19975 other specify
19976            mg
19977            mg
19978           mcg
19979           mcg
19980            mg
19981            mg
19982            mg
19983            mg
19984   unspecified
19985            mg
19986            mg
19987            mg
19988            mg
19989            mg
19990            ml
19991 other specify
19992 other specify
19993            mg
19994            mg
19995           mcg
19996           mcg
19997            mg
19998           mcg
19999            mg
                                                    dose_unit_specify
1                                                                <NA>
2                                                                <NA>
3                                                                <NA>
4                                                                <NA>
5                                                                <NA>
6                                                                <NA>
7                                                                <NA>
8                                                                <NA>
9                                                                <NA>
10                                                                  %
11                                                               <NA>
12                                                                  %
13                                                               <NA>
14                                                    based on weight
15                                                               <NA>
16                                                               <NA>
17                                                               <NA>
18                                                               <NA>
19                                                               <NA>
20                                                               <NA>
21                                                               <NA>
22                                                               <NA>
23                                                               <NA>
24                                                               <NA>
25                                                               <NA>
26                                                               <NA>
27                                                               <NA>
28                                                               <NA>
29                                                               <NA>
30                                                               <NA>
31                                                               <NA>
32                                                               <NA>
33                                                               <NA>
34                                                               <NA>
35                                                               <NA>
36                                                               <NA>
37                                                               <NA>
38                                                               <NA>
39                                                               <NA>
40                                                    based on weight
41                                                               <NA>
42                                                    based on weight
43                                                               <NA>
44                                                               <NA>
45                                                               <NA>
46                                                tablet/pill/capsule
47                                                               <NA>
48                                                               tube
49                                                               tube
50                                                               <NA>
51                                                tablet/pill/capsule
52                                                               <NA>
53                                                               <NA>
54                                                               <NA>
55                                                               <NA>
56                                                               <NA>
57                                                               <NA>
58                                                               <NA>
59                                              1 tablet/pill/capsule
60                                                        bottle/vial
61                                                               <NA>
62                                                        application
63                                                tablet/pill/capsule
64                                                               <NA>
65                                                               <NA>
66                                                               <NA>
67                                                       small amount
68                                                               <NA>
69                                                               <NA>
70                                                       small amount
71                                                               <NA>
72                                                               <NA>
73                                                tablet/pill/capsule
74                                                              drops
75                                                tablet/pill/capsule
76                                                               <NA>
77                                                               <NA>
78                                                               <NA>
79                                                               <NA>
80                                                               <NA>
81                                                               <NA>
82                                                               <NA>
83                                                tablet/pill/capsule
84                                                              spray
85                                                               <NA>
86                                                               <NA>
87                                                    0.25 inch strip
88                                                               <NA>
89                                                               <NA>
90                                                               <NA>
91                                                               <NA>
92                                                               <NA>
93                                                               <NA>
94                                                               <NA>
95                                                               <NA>
96                                                               <NA>
97                                                               <NA>
98                                                               <NA>
99                                                               <NA>
100                                                              <NA>
101                                                              <NA>
102                                                              <NA>
103                                                              <NA>
104                                                              <NA>
105                                                              <NA>
106                                                              <NA>
107                                                              <NA>
108                                                              <NA>
109                                                            mcg/hr
110                                                              <NA>
111                                                              <NA>
112                                                              <NA>
113                                                              <NA>
114                                                              <NA>
115                                                              <NA>
116                                                              <NA>
117                                                              <NA>
118                                               tablet/pill/capsule
119                                               tablet/pill/capsule
120                                               tablet/pill/capsule
121                                               tablet/pill/capsule
122                                                             drops
123                                                              <NA>
124                                                              <NA>
125                                                              <NA>
126                                                              <NA>
127                                                              <NA>
128                                               tablet/pill/capsule
129                                                              <NA>
130                                               tablet/pill/capsule
131                                                              <NA>
132                                               tablet/pill/capsule
133                                                              <NA>
134                                                              <NA>
135                                                              <NA>
136                                                              <NA>
137                                                              <NA>
138                                                              <NA>
139                                                              <NA>
140                                                              <NA>
141                                                              <NA>
142                                                              <NA>
143                                                              <NA>
144                                                              <NA>
145                                                              <NA>
146                                                              <NA>
147                                                              <NA>
148                                                              <NA>
149                                                    shampoo/mousse
150                                                      small amount
151                                                       application
152                                               tablet/pill/capsule
153                                               tablet/pill/capsule
154                                                              <NA>
155                                               tablet/pill/capsule
156                                               tablet/pill/capsule
157                                                              <NA>
158                                                              <NA>
159                                                              <NA>
160                                                              <NA>
161                                               tablet/pill/capsule
162                                               tablet/pill/capsule
163                                                              <NA>
164                                               tablet/pill/capsule
165                                                              <NA>
166                                                              <NA>
167                                                              <NA>
168                                                              <NA>
169                                                              <NA>
170                                                              <NA>
171                                                              <NA>
172                                                              <NA>
173                                                              <NA>
174                                                              <NA>
175                                                    shampoo/mousse
176                                                          ointment
177                                                              <NA>
178                                                              <NA>
179                                                              <NA>
180                                                              <NA>
181                                                              <NA>
182                                                              <NA>
183                                                              <NA>
184                                                              <NA>
185                                                              <NA>
186                                                              <NA>
187                                                              <NA>
188                                               tablet/pill/capsule
189                                                              <NA>
190                                                              <NA>
191                                                              <NA>
192                                               tablet/pill/capsule
193                                                              <NA>
194                                                              <NA>
195                                                   based on weight
196                                                              <NA>
197                                                              <NA>
198                                                              <NA>
199                                                              <NA>
200                                                              <NA>
201                                                              <NA>
202                                                              <NA>
203                                                              <NA>
204                                                              <NA>
205                                                              <NA>
206                                                              <NA>
207                                                              <NA>
208                                                              <NA>
209                                                              <NA>
210                                                              <NA>
211                                                              <NA>
212                                                              <NA>
213                                                              <NA>
214                                                              <NA>
215                                                              <NA>
216                                                              <NA>
217                                               tablet/pill/capsule
218                                                              <NA>
219                                                              <NA>
220                                               tablet/pill/capsule
221                                                              <NA>
222                                                              <NA>
223                                                              <NA>
224                                                              <NA>
225                                                              <NA>
226                                                              <NA>
227                                                              <NA>
228                                                              <NA>
229                                                                 %
230                       272 mcg ivermectin, 227 mg pyrantel pamoate
231                                                              <NA>
232                                                              <NA>
233                                                             drops
234                                                              <NA>
235                                                              <NA>
236                                                              tube
237                                                              tube
238                                                      small amount
239                                                              <NA>
240                                                              <NA>
241                                                              <NA>
242                                                              <NA>
243                                                              tube
244                                                   based on weight
245                                                              <NA>
246                                                              <NA>
247                                                              <NA>
248                                                              tube
249                                                              <NA>
250                                                              <NA>
251                                                              <NA>
252                                                              <NA>
253                                                              <NA>
254                                                              <NA>
255                                                              <NA>
256                                                              <NA>
257                                                              <NA>
258                                               tablet/pill/capsule
259                                               tablet/pill/capsule
260                                                              <NA>
261                                                              <NA>
262                                                              <NA>
263                                                              <NA>
264                                                              <NA>
265                                                              <NA>
266                                                              <NA>
267                                                              <NA>
268                                                              <NA>
269                                                              <NA>
270                                                              <NA>
271                                                              <NA>
272                                                              <NA>
273                                               tablet/pill/capsule
274                                               tablet/pill/capsule
275                                               tablet/pill/capsule
276                                               tablet/pill/capsule
277                                               tablet/pill/capsule
278                                                              <NA>
279                                                   moderate amount
280                                                      small amount
281                                               tablet/pill/capsule
282                                                         injection
283                                               tablet/pill/capsule
284                                                      small amount
285                                                              <NA>
286                                               tablet/pill/capsule
287                                                              <NA>
288                                                              <NA>
289                                                              <NA>
290                                                              <NA>
291                                                              <NA>
292                                                              <NA>
293                                                              <NA>
294                                                              <NA>
295                                                              <NA>
296                                                              <NA>
297                                                              <NA>
298                                                              <NA>
299                                                              <NA>
300                                                              <NA>
301                                                              <NA>
302                                                              <NA>
303                                                              <NA>
304                                                              <NA>
305                                                              <NA>
306                                                              <NA>
307                                                              <NA>
308                                                              <NA>
309                                                                 %
310                                                              <NA>
311                                                              <NA>
312                                                                 %
313                                                              <NA>
314                                                              <NA>
315                                                              <NA>
316                                                              <NA>
317                                                              <NA>
318                                                              <NA>
319                                                              <NA>
320                                                              <NA>
321                                                              <NA>
322                                                              <NA>
323                                                              <NA>
324                                                   based on weight
325                                                              <NA>
326                                                              <NA>
327                                                              <NA>
328                                                   based on weight
329                                                   based on weight
330                                                              <NA>
331                                                              <NA>
332                                                   based on weight
333                                                   based on weight
334                                                              <NA>
335                                                              <NA>
336                                                              <NA>
337                                                              <NA>
338                                                              <NA>
339                                                              <NA>
340                                                              <NA>
341                                                              <NA>
342                                                              <NA>
343                                                              <NA>
344                                                              <NA>
345                                                              <NA>
346                                                              <NA>
347                                                              <NA>
348                                                              <NA>
349                                                             23 mg
350                                                              <NA>
351                                                              <NA>
352                                                              <NA>
353                                                              <NA>
354                                                              <NA>
355                                                              <NA>
356                                                              <NA>
357                                                              <NA>
358                                                              <NA>
359                                                              <NA>
360                                                              <NA>
361                                                              <NA>
362                                                              <NA>
363                                                              <NA>
364                                                              <NA>
365                                                              <NA>
366                                                              <NA>
367                                                              <NA>
368                                                              <NA>
369                                                              <NA>
370                                                              <NA>
371                                                              <NA>
372                                                              <NA>
373                                                              <NA>
374                                               tablet/pill/capsule
375                                               tablet/pill/capsule
376                                               tablet/pill/capsule
377                                                              <NA>
378                                                             mg/kg
379                                                             mg/kg
380                                                             mg/kg
381                                                         mcg/kg/hr
382                                                              <NA>
383                                               tablet/pill/capsule
384                                      based on weight (50-100 lbs)
385                                      based on weight (50-100 lbs)
386                                               tablet/pill/capsule
387                                                              <NA>
388                                                              <NA>
389                                                              <NA>
390                                                              <NA>
391                                                                 %
392                                                              <NA>
393                                                                 %
394                                                              <NA>
395                                                   based on weight
396                                                      small amount
397                                               tablet/pill/capsule
398                                                              <NA>
399                                                              <NA>
400                                                              <NA>
401                                               tablet/pill/capsule
402                                                   based on weight
403                                                              <NA>
404                                                              <NA>
405                                                              <NA>
406                                                              <NA>
407                                                              <NA>
408                                                              <NA>
409                                                              <NA>
410                                                              <NA>
411                                                              <NA>
412                                                              <NA>
413                                                              <NA>
414                                                              <NA>
415                                                              <NA>
416                                                              <NA>
417                                                              <NA>
418                                                              <NA>
419                                                              <NA>
420                                                              <NA>
421                                                              <NA>
422                                                              <NA>
423                                                              <NA>
424                                                              <NA>
425                                                              <NA>
426                                                              <NA>
427                                                              <NA>
428                                                              <NA>
429                                                              <NA>
430                                                              <NA>
431                                                              <NA>
432                                                              <NA>
433                                                              <NA>
434                                                              <NA>
435                                                              <NA>
436                                                              <NA>
437                                                              <NA>
438                                                              <NA>
439                                                              <NA>
440                                                              <NA>
441                                                              <NA>
442                                                              <NA>
443                                                              <NA>
444                                                              <NA>
445                                                              <NA>
446                                                              <NA>
447                                                              <NA>
448                                                              <NA>
449                                                              <NA>
450                                                              <NA>
451                                                              <NA>
452                                                              <NA>
453                                                              <NA>
454                                                              <NA>
455                                                              <NA>
456                                                              <NA>
457                                                              <NA>
458                                                              <NA>
459                                                              <NA>
460                                                              <NA>
461                                      based on weight (60-120 lbs)
462                                                              1 ml
463                                                              <NA>
464                                                              <NA>
465                                                              <NA>
466                                                              <NA>
467                                                              <NA>
468                                                              <NA>
469                                                              <NA>
470                                                              <NA>
471                                                              <NA>
472                                                              <NA>
473                                                              <NA>
474                                                              <NA>
475                                                              <NA>
476                                                              <NA>
477                                                              <NA>
478                                                              <NA>
479                                                              <NA>
480                                                            1 tube
481                                                              <NA>
482                                                              <NA>
483                                                              <NA>
484                                                              <NA>
485                                                              <NA>
486                                                              <NA>
487                                                              <NA>
488                                                              <NA>
489                                                              <NA>
490                                                              <NA>
491                                                       bottle/vial
492                                                              <NA>
493                                                              <NA>
494                                                              <NA>
495                                                              <NA>
496                                                              <NA>
497                                                              <NA>
498                                                   based on weight
499                                                              <NA>
500                                                              <NA>
501                                                              <NA>
502                                                              <NA>
503                                                              <NA>
504                                               tablet/pill/capsule
505                                                       application
506                                                              <NA>
507                                                              <NA>
508                                                              <NA>
509                                                              <NA>
510                                                              <NA>
511                                                              <NA>
512                                                              <NA>
513                                                              <NA>
514                                                              <NA>
515                                                              <NA>
516                                                              <NA>
517                                                              <NA>
518                                                              <NA>
519                                                       unspecified
520                                                              <NA>
521                                                              <NA>
522                                                              <NA>
523                                                              <NA>
524                                                              <NA>
525                                                              <NA>
526                                                              <NA>
527                                                              <NA>
528                                                              <NA>
529                                                              <NA>
530                                                              tube
531                                                              <NA>
532                                                              <NA>
533                                                              <NA>
534                                                              <NA>
535                                                              <NA>
536                                                              <NA>
537                                                              <NA>
538                                               tablet/pill/capsule
539                                               tablet/pill/capsule
540                                               tablet/pill/capsule
541                                               tablet/pill/capsule
542                                               tablet/pill/capsule
543                                                              <NA>
544                                                              <NA>
545                                                              <NA>
546                                                              <NA>
547                                                              <NA>
548                                               tablet/pill/capsule
549                                                              <NA>
550                                                              <NA>
551                                               tablet/pill/capsule
552                                                              <NA>
553                                                              <NA>
554                                               tablet/pill/capsule
555                                               tablet/pill/capsule
556                                                              <NA>
557                                               tablet/pill/capsule
558                                                              <NA>
559                                               tablet/pill/capsule
560                                                              <NA>
561                                                              <NA>
562                                                              <NA>
563                                                              <NA>
564                                                              <NA>
565                                                              <NA>
566                                                              <NA>
567                                                              <NA>
568                                               tablet/pill/capsule
569                                                              <NA>
570                                                              <NA>
571                                                              <NA>
572                                                              <NA>
573                                                              <NA>
574                                               tablet/pill/capsule
575                                                              <NA>
576                                                              <NA>
577                                                              <NA>
578                                                              <NA>
579                                                              <NA>
580                                                              <NA>
581                                                              <NA>
582                                                              <NA>
583                                                              <NA>
584                                                              <NA>
585                                                              <NA>
586                                                              <NA>
587                                                              <NA>
588                                                              <NA>
589                                                              <NA>
590                                                              <NA>
591                                                              <NA>
592                                                              <NA>
593                                                              <NA>
594                                                              <NA>
595                                                              <NA>
596                                                              <NA>
597                                                                 1
598                                                                 1
599                                               tablet/pill/capsule
600                                               tablet/pill/capsule
601                                                              <NA>
602                                                              <NA>
603                                               tablet/pill/capsule
604                                               tablet/pill/capsule
605                                                              <NA>
606                                                              <NA>
607                                                              <NA>
608                                               tablet/pill/capsule
609                                               tablet/pill/capsule
610                                                              <NA>
611                                                              <NA>
612                                                              <NA>
613                                                              <NA>
614                                                              <NA>
615                                                              <NA>
616                                                              <NA>
617                                                              <NA>
618                                                              <NA>
619                                               tablet/pill/capsule
620                                                              <NA>
621                                                              <NA>
622                                                              <NA>
623                                                              <NA>
624                                                              <NA>
625                                                              <NA>
626                                                              <NA>
627                                                              <NA>
628                                                              <NA>
629                                                              <NA>
630                                                              <NA>
631                                                              <NA>
632                                                              <NA>
633                                                              <NA>
634                                               tablet/pill/capsule
635                                                              <NA>
636                                                              <NA>
637                                                   based on weight
638                                                              <NA>
639                                                              <NA>
640                                                              <NA>
641                                                              <NA>
642                                                              <NA>
643                                                              <NA>
644                                                              <NA>
645                                                              <NA>
646                                                              <NA>
647                                                              <NA>
648                                                              <NA>
649                                                              <NA>
650                                                       application
651                                                              <NA>
652                                                              <NA>
653                                                              <NA>
654                                                              <NA>
655                                                              <NA>
656                                                              <NA>
657                                                              <NA>
658                                                              <NA>
659                                                              <NA>
660                                                              <NA>
661                                                              <NA>
662                                                              <NA>
663                                                              <NA>
664                                                                 l
665                                                              <NA>
666                                                              <NA>
667                                                              <NA>
668                                                              <NA>
669                                                              <NA>
670                                                              <NA>
671                                                              <NA>
672                                                              <NA>
673                                                              <NA>
674                                                              <NA>
675                                                              <NA>
676                                                              <NA>
677                                                              <NA>
678                                                              <NA>
679                                                              <NA>
680                                                              <NA>
681                                                              <NA>
682                                                              <NA>
683                                                              <NA>
684                                                              <NA>
685                                                              <NA>
686                                                              <NA>
687                                                              <NA>
688                                                              <NA>
689                                                              <NA>
690                                                              <NA>
691                                                              <NA>
692                                                              <NA>
693                                                              <NA>
694                                                             spray
695                                                              <NA>
696                                                              <NA>
697                                                              <NA>
698                                                              <NA>
699                                                              <NA>
700                                                              <NA>
701                                                              <NA>
702                                                              <NA>
703                                                   based on weight
704                                                   based on weight
705                                                              <NA>
706                                                              <NA>
707                                               tablet/pill/capsule
708                                               tablet/pill/capsule
709                                                              <NA>
710                                                              <NA>
711                                                              <NA>
712                                                              <NA>
713                                                              <NA>
714                                                              <NA>
715                                                              <NA>
716                                                              <NA>
717                                                              <NA>
718                                                              <NA>
719                                                              <NA>
720                                                              <NA>
721                                                              <NA>
722                                                              <NA>
723                                                              <NA>
724                                                              <NA>
725                                                              <NA>
726                                                              <NA>
727                                               tablet/pill/capsule
728                                               tablet/pill/capsule
729                                               tablet/pill/capsule
730                                                              <NA>
731                                                              <NA>
732                                                              <NA>
733                                                              <NA>
734                                                        inch strip
735                                                              <NA>
736                                                              <NA>
737                                                              <NA>
738                                      based on weight (50-100 lbs)
739                                      based on weight (60-120 lbs)
740                                                              <NA>
741                                                              <NA>
742                                                              <NA>
743                                                              <NA>
744                                                              <NA>
745                                                        inch strip
746                                                              <NA>
747                                                              <NA>
748                                                              <NA>
749                                                              <NA>
750                                                              <NA>
751                                                              <NA>
752                                                              <NA>
753                                                              <NA>
754                                               tablet/pill/capsule
755                                                   based on weight
756                                                   based on weight
757                                                   based on weight
758                                                              <NA>
759                                                              <NA>
760                                                              <NA>
761                                                              <NA>
762                                                              <NA>
763                                                              <NA>
764                                                              <NA>
765                                                              <NA>
766                                                              <NA>
767                                                              <NA>
768                                                              <NA>
769                                                   based on weight
770                                                              <NA>
771                                                              <NA>
772                                                              <NA>
773                                                              <NA>
774                                                              <NA>
775                                                              <NA>
776                                                              <NA>
777                                                              <NA>
778                                                              <NA>
779                                                              <NA>
780                                                              <NA>
781                                                              <NA>
782                                                              <NA>
783                                                              <NA>
784                                                              <NA>
785                                               tablet/pill/capsule
786                                                              <NA>
787                                                              <NA>
788                                                              <NA>
789                                                              <NA>
790                                               tablet/pill/capsule
791                                                              <NA>
792                                               tablet/pill/capsule
793                                                              <NA>
794                                                              <NA>
795                                                              <NA>
796                                                              <NA>
797                                                              <NA>
798                                                              <NA>
799                                                              <NA>
800                                                              <NA>
801                                                              <NA>
802                                                              <NA>
803                                                   based on weight
804                                                       unspecified
805                                                              <NA>
806                                                              <NA>
807                                                              <NA>
808                                                              <NA>
809                                                              <NA>
810                                                       bottle/vial
811                                                              <NA>
812                                                              <NA>
813                                                              <NA>
814                                                              <NA>
815                                                              <NA>
816                                                      pack/package
817                                                              <NA>
818                                                              <NA>
819                                                              <NA>
820                                                              <NA>
821                                                              <NA>
822                                                                 %
823                                                              <NA>
824                                               tablet/pill/capsule
825                                                              <NA>
826                                                              <NA>
827                                               tablet/pill/capsule
828                                               tablet/pill/capsule
829                                               tablet/pill/capsule
830                                               tablet/pill/capsule
831                                                              <NA>
832                                                              <NA>
833                                                              <NA>
834                                                              <NA>
835                                                              <NA>
836                                                              <NA>
837                                                              <NA>
838                                                              <NA>
839                                                              <NA>
840                                                              <NA>
841                                                              <NA>
842                                                              <NA>
843                                                              <NA>
844                                                              <NA>
845                                                              <NA>
846                                               tablet/pill/capsule
847                                               tablet/pill/capsule
848                                                              <NA>
849                                               tablet/pill/capsule
850                                                              <NA>
851                                                              <NA>
852                                                              <NA>
853                                                              <NA>
854                                                              <NA>
855                                                              <NA>
856                                                              <NA>
857                                                              <NA>
858                                                              <NA>
859                                                              <NA>
860                                                              <NA>
861                                                              <NA>
862                                               tablet/pill/capsule
863                                                              <NA>
864                                                              <NA>
865                                                              <NA>
866                                                              <NA>
867                                                              <NA>
868                                                              <NA>
869                                                              <NA>
870                                                              <NA>
871                                                              <NA>
872                                                              <NA>
873                                                              <NA>
874                                                              <NA>
875                                                              <NA>
876                                                              <NA>
877                                                              <NA>
878                                                              <NA>
879                                                              <NA>
880                                                              <NA>
881                                                   based on weight
882                                                              <NA>
883                                                              <NA>
884                                                              <NA>
885                                                              <NA>
886                                                              <NA>
887                                                              <NA>
888                                                              <NA>
889                                                              <NA>
890                                                              <NA>
891                                                              <NA>
892                                                              <NA>
893                                                              <NA>
894                                                              <NA>
895                                                              <NA>
896                                                              <NA>
897                                                              <NA>
898                                                              <NA>
899                                                              <NA>
900                                                   based on weight
901                                                              <NA>
902                                                              <NA>
903                                                              <NA>
904                                                              <NA>
905                                                              <NA>
906                                                              <NA>
907                                                              <NA>
908                                                              <NA>
909                                                              <NA>
910                                                              <NA>
911                                                              <NA>
912                                                              <NA>
913                                                   based on weight
914                                                              <NA>
915                                                              <NA>
916                                                              <NA>
917                                                              <NA>
918                                                              <NA>
919                                                              <NA>
920                                                              <NA>
921                                                   based on weight
922                                                              <NA>
923                                                              <NA>
924                                                              <NA>
925                                                              <NA>
926                                                              <NA>
927                                                              <NA>
928                                                              <NA>
929                                                              <NA>
930                                                              <NA>
931                                               tablet/pill/capsule
932                                               tablet/pill/capsule
933                                                              <NA>
934                                                              <NA>
935                                                              <NA>
936                                                              <NA>
937                                                              <NA>
938                                                              <NA>
939                                                              <NA>
940                                                              <NA>
941                                                              <NA>
942                                                              <NA>
943                                                              <NA>
944                                                              <NA>
945                                                              <NA>
946                                                              <NA>
947                                                              <NA>
948                                                              <NA>
949                                                              <NA>
950                                                              <NA>
951                                                            collar
952                                                              <NA>
953                                                              <NA>
954                                                              <NA>
955                                                            collar
956                                               tablet/pill/capsule
957                                                              <NA>
958                                                              <NA>
959                                               tablet/pill/capsule
960                                                            collar
961                                      based on weight (50-100 lbs)
962                                                              <NA>
963                                                              <NA>
964                                                              <NA>
965                                                              <NA>
966                                                              <NA>
967                                      based on weight (50-100 lbs)
968                                                              <NA>
969                                                              <NA>
970                                                            1 pump
971                                                              <NA>
972                                                              <NA>
973                                                              <NA>
974                                                              <NA>
975                                                              <NA>
976                                                              <NA>
977                                                              <NA>
978                                                              <NA>
979                                                   based on weight
980                                                   based on weight
981                                                              <NA>
982                                               tablet/pill/capsule
983                                               tablet/pill/capsule
984                                                              <NA>
985                                                              <NA>
986                                                              <NA>
987                                                              <NA>
988                                                              <NA>
989                                                   based on weight
990                                                              <NA>
991                                                   based on weight
992                                                   based on weight
993                                               tablet/pill/capsule
994                                                              <NA>
995                                                   based on weight
996                                                   based on weight
997                                                              <NA>
998                                                              <NA>
999                                               tablet/pill/capsule
1000                                                             <NA>
1001                                                             <NA>
1002                                                             <NA>
1003                                                             <NA>
1004                                                             <NA>
1005                                                             <NA>
1006                                                             <NA>
1007                                                             <NA>
1008                                                             <NA>
1009                                                             <NA>
1010                                                             <NA>
1011                                                             <NA>
1012                                                             <NA>
1013                                                             <NA>
1014                                     based on weight (50-100 lbs)
1015                                                             <NA>
1016                                                             <NA>
1017                                              tablet/pill/capsule
1018                                              tablet/pill/capsule
1019                                                           1 pump
1020                                                       inch strip
1021                                                         wipe/pad
1022                                                             <NA>
1023                                                     pack/package
1024                                                             pump
1025                                                         wipe/pad
1026                                                             <NA>
1027                                                   shampoo/mousse
1028                                                             <NA>
1029                                                         wipe/pad
1030                                                   shampoo/mousse
1031                                                             <NA>
1032                                                             <NA>
1033                                                             <NA>
1034                                                             <NA>
1035                                                             <NA>
1036                                                     small amount
1037                                                     small amount
1038                                                             <NA>
1039                                                      bottle/vial
1040                                                             <NA>
1041                                                             <NA>
1042                                                         wipe/pad
1043                                                                %
1044                                                                %
1045                                                             <NA>
1046                                                             <NA>
1047                                                             <NA>
1048                                                             <NA>
1049                                                             <NA>
1050                                                  based on weight
1051                                                  based on weight
1052                                                  based on weight
1053                                                             <NA>
1054                                                             <NA>
1055                                                             <NA>
1056                                                             <NA>
1057                                                             <NA>
1058                                                             <NA>
1059                                                             <NA>
1060                                                  based on weight
1061                                                  based on weight
1062                                                             <NA>
1063                                                             <NA>
1064                                                             tube
1065                                                             <NA>
1066                                                  syringe/pipette
1067                                                             <NA>
1068                                                             <NA>
1069                                                         wipe/pad
1070                                              tablet/pill/capsule
1071                                                             <NA>
1072                                                             <NA>
1073                                                             pump
1074                                              tablet/pill/capsule
1075                                                             <NA>
1076                                                             <NA>
1077                                              tablet/pill/capsule
1078                                                     pack/package
1079                                              tablet/pill/capsule
1080                                                             <NA>
1081                                                             <NA>
1082                                                             <NA>
1083                                                             <NA>
1084                                                             <NA>
1085                                                             <NA>
1086                                              tablet/pill/capsule
1087                         27 mg milbemycin oxime, 1620 mg spinosad
1088                                                             <NA>
1089                                                             <NA>
1090                                                             <NA>
1091                                                             <NA>
1092                                                             <NA>
1093                                                             <NA>
1094                                                             <NA>
1095                                                             <NA>
1096                                                             <NA>
1097                                                             <NA>
1098                                                             <NA>
1099                                              tablet/pill/capsule
1100                                              tablet/pill/capsule
1101                                              tablet/pill/capsule
1102                                                             <NA>
1103                                                             <NA>
1104                                                             <NA>
1105                                                             <NA>
1106                                                             <NA>
1107                                                             <NA>
1108                                                         wipe/pad
1109                                                             <NA>
1110                                                             <NA>
1111                                                             <NA>
1112                                                      unspecified
1113                                                             <NA>
1114                                                             <NA>
1115                                                             <NA>
1116                                                      unspecified
1117                                                             <NA>
1118                                                             <NA>
1119                                                             <NA>
1120                                                             <NA>
1121                                                             <NA>
1122                                                             <NA>
1123                                                             <NA>
1124                                                             <NA>
1125                                                             <NA>
1126                                                             <NA>
1127                                                             <NA>
1128                                                             <NA>
1129                                              tablet/pill/capsule
1130                                                             <NA>
1131                                                             <NA>
1132                                                             <NA>
1133                                                             <NA>
1134                                                             <NA>
1135                                                             <NA>
1136                                                             <NA>
1137                                                             <NA>
1138                                                             <NA>
1139                                                             <NA>
1140                                                             <NA>
1141                                                             <NA>
1142                                                             <NA>
1143                                                             <NA>
1144                                                             <NA>
1145                                                             <NA>
1146                                                             <NA>
1147                                                             <NA>
1148                                                             <NA>
1149                                                             <NA>
1150                                                     small amount
1151                                                             <NA>
1152                                     based on weight (50-100 lbs)
1153                                     based on weight (50-100 lbs)
1154                                     based on weight (50-100 lbs)
1155                                              tablet/pill/capsule
1156                                                             <NA>
1157                                                             <NA>
1158                                                             <NA>
1159    460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                     based on weight (50-100 lbs)
1161                                        based on weight (60+ lbs)
1162                                                             <NA>
1163                                                             <NA>
1164                                                             <NA>
1165                                                                %
1166                                                                %
1167                                                             <NA>
1168                                                             <NA>
1169                                                             <NA>
1170                                                             dose
1171                                                             <NA>
1172                                                             <NA>
1173                                                      application
1174                                                             <NA>
1175                                                                %
1176                                                             <NA>
1177                                                                %
1178                                                             <NA>
1179                                                     small amount
1180                                                             <NA>
1181                                                             <NA>
1182                                                             <NA>
1183                                                             <NA>
1184                                                             <NA>
1185                                                  based on weight
1186                                                  based on weight
1187                                                             <NA>
1188                                                             <NA>
1189                                                  based on weight
1190                                                  based on weight
1191                                                             <NA>
1192                                                             <NA>
1193                                                             <NA>
1194                                                             <NA>
1195                                                  based on weight
1196                                                             <NA>
1197                                                             <NA>
1198                                                             <NA>
1199                                                             <NA>
1200                                                             <NA>
1201                                                             <NA>
1202                                                             <NA>
1203                                                             <NA>
1204                                                             <NA>
1205                                                             <NA>
1206                                                             <NA>
1207                                                             <NA>
1208                                                   1 pack/package
1209                                              tablet/pill/capsule
1210                                                             <NA>
1211                                                             <NA>
1212                                                             <NA>
1213                                                             <NA>
1214                                                             <NA>
1215                                                             <NA>
1216                                                             <NA>
1217                                                      combination
1218                                                             <NA>
1219                                                             <NA>
1220                                                             <NA>
1221                                                             <NA>
1222                                                             <NA>
1223                                                             <NA>
1224                                                             <NA>
1225                                                             <NA>
1226                                                  based on weight
1227                                                             <NA>
1228                                                             <NA>
1229                                                             <NA>
1230                                                             <NA>
1231                                                             <NA>
1232                                                             <NA>
1233                                                             <NA>
1234                                                             <NA>
1235                                                             <NA>
1236                                                             <NA>
1237                                                             <NA>
1238                                                             <NA>
1239                                                             <NA>
1240                                              tablet/pill/capsule
1241                                              tablet/pill/capsule
1242                                              tablet/pill/capsule
1243                                                             <NA>
1244                                                             <NA>
1245                                                             <NA>
1246                                                             <NA>
1247                                                  based on weight
1248                                                  based on weight
1249                                                             <NA>
1250                                                             <NA>
1251                                                             <NA>
1252                                                             <NA>
1253                                                             <NA>
1254                                                             <NA>
1255                                                             <NA>
1256                                                             <NA>
1257                                                             <NA>
1258                                                             <NA>
1259                                                             <NA>
1260                                                             <NA>
1261                                                             <NA>
1262                                                             <NA>
1263                                                             <NA>
1264                                                             <NA>
1265                                                             <NA>
1266                                                             <NA>
1267                                                             <NA>
1268                                                             <NA>
1269                                                             <NA>
1270                                                             <NA>
1271                                                             <NA>
1272                                                             <NA>
1273                                                             <NA>
1274                                                             <NA>
1275                                                             <NA>
1276                                                             <NA>
1277                                                             <NA>
1278                                                             <NA>
1279                                                             <NA>
1280                                                             <NA>
1281                                                             <NA>
1282                                                             <NA>
1283                                                             <NA>
1284                                                             <NA>
1285                                                             <NA>
1286                                                             <NA>
1287                                                             <NA>
1288                                                             <NA>
1289                                                             <NA>
1290                                                             <NA>
1291                                                             <NA>
1292                                                             <NA>
1293                                                             <NA>
1294                                                             <NA>
1295                                                             <NA>
1296                                                             <NA>
1297                                                             <NA>
1298                                                             <NA>
1299                                                             <NA>
1300                                                             <NA>
1301                                                             <NA>
1302                                                                %
1303                                                             <NA>
1304                                                             <NA>
1305                                                             <NA>
1306                                                             <NA>
1307                                                             <NA>
1308                                                             <NA>
1309                                                             <NA>
1310                                                             <NA>
1311                                                             <NA>
1312                                                             <NA>
1313                                                             <NA>
1314                                                             <NA>
1315                                                             <NA>
1316                                                             <NA>
1317                                                             <NA>
1318                                                             <NA>
1319                                                             <NA>
1320                                                             <NA>
1321                                                             <NA>
1322                                                             <NA>
1323                                                             <NA>
1324                                                             <NA>
1325                                                             <NA>
1326                                                             <NA>
1327                                                             <NA>
1328                                                  based on weight
1329                                                  based on weight
1330                                                             <NA>
1331                                                             <NA>
1332                                                             <NA>
1333                                                             <NA>
1334                                                             <NA>
1335                                                             <NA>
1336                                                             <NA>
1337                                                             <NA>
1338                                              tablet/pill/capsule
1339                                                            scoop
1340                                              tablet/pill/capsule
1341                                                             <NA>
1342                                                         wipe/pad
1343                                                             <NA>
1344                                              tablet/pill/capsule
1345                                                             <NA>
1346                                                     small amount
1347                                                             <NA>
1348                                                            spray
1349                                                             <NA>
1350                                                             <NA>
1351                                                             <NA>
1352                                                     small amount
1353                                                             <NA>
1354                                                             <NA>
1355                                                  based on weight
1356                                                             <NA>
1357                                                             <NA>
1358                                                             <NA>
1359                                                                %
1360                                                             <NA>
1361                                                             <NA>
1362                                                             <NA>
1363                                                             <NA>
1364                                                             <NA>
1365                                                             <NA>
1366                                                             <NA>
1367                                                             <NA>
1368                                                             <NA>
1369                                                             <NA>
1370                                                             <NA>
1371                                            1 tablet/pill/capsule
1372                                                             <NA>
1373                                              tablet/pill/capsule
1374                                                             <NA>
1375                                                             <NA>
1376                                                             <NA>
1377                                                             <NA>
1378                                                             <NA>
1379                                                             <NA>
1380                                                             <NA>
1381                                                             <NA>
1382                                                             <NA>
1383                                                             <NA>
1384                                                             <NA>
1385                                                             <NA>
1386                                                             <NA>
1387                                                             <NA>
1388                                                             <NA>
1389                                                             <NA>
1390                                                             <NA>
1391                                                             <NA>
1392                                                             <NA>
1393                                            1 tablet/pill/capsule
1394                                                             <NA>
1395                                                             <NA>
1396                                                             <NA>
1397                                                             <NA>
1398                                                             <NA>
1399                                                             <NA>
1400                                                             <NA>
1401                                                             <NA>
1402                                                             <NA>
1403                                                             <NA>
1404                                                            spray
1405                                                             <NA>
1406                                                             <NA>
1407                                                             <NA>
1408                                                             <NA>
1409                                                             <NA>
1410                                                             <NA>
1411                                                             <NA>
1412                                                             <NA>
1413                                                             <NA>
1414                                                             <NA>
1415                                                     small amount
1416                                                             <NA>
1417                                                             tube
1418                                                             <NA>
1419                                     based on weight (50-100 lbs)
1420                                                             <NA>
1421                                                             <NA>
1422                                              tablet/pill/capsule
1423                                                             <NA>
1424                                                             <NA>
1425                                                             <NA>
1426                                                             <NA>
1427                                                             <NA>
1428                                                             <NA>
1429                                                             <NA>
1430                                                             <NA>
1431                                              tablet/pill/capsule
1432                                                             <NA>
1433                                                             <NA>
1434                                                             tube
1435                                              tablet/pill/capsule
1436                                                             <NA>
1437                                                             <NA>
1438                                              tablet/pill/capsule
1439                                                             <NA>
1440                                                             <NA>
1441                                              tablet/pill/capsule
1442                                              tablet/pill/capsule
1443                                                      bottle/vial
1444                                                             <NA>
1445                                                             <NA>
1446                                     based on weight (50-100 lbs)
1447                                      based on weight (44-88 lbs)
1448                                                             <NA>
1449                                                             <NA>
1450                                                             tube
1451                                              tablet/pill/capsule
1452                                                             <NA>
1453                                                             <NA>
1454                                                             <NA>
1455                                                             <NA>
1456                                                             <NA>
1457                                                             <NA>
1458                                                             <NA>
1459                                                      application
1460                                                             <NA>
1461                                                             <NA>
1462                                                      bottle/vial
1463                                                             <NA>
1464                                                  based on weight
1465                                                             <NA>
1466                                                             <NA>
1467                                                             <NA>
1468                                                             <NA>
1469                                                             <NA>
1470                                                             <NA>
1471                                                             <NA>
1472                                                             <NA>
1473                                                             <NA>
1474                                                             <NA>
1475                                                             <NA>
1476                                                             <NA>
1477                                              tablet/pill/capsule
1478                                                             <NA>
1479                                                             <NA>
1480                                                             <NA>
1481                                                             <NA>
1482                                                             <NA>
1483                                                             <NA>
1484                                                             <NA>
1485                                                             <NA>
1486                                                             <NA>
1487                                                             <NA>
1488                                                          monthly
1489                                                          monthly
1490                                     based on weight (50-100 lbs)
1491                                                             <NA>
1492                                                             <NA>
1493                                                             <NA>
1494                                                             <NA>
1495                                                             <NA>
1496                                                     pack/package
1497                                                             <NA>
1498                                                             <NA>
1499                                                             <NA>
1500                                                             <NA>
1501                                            1 tablet/pill/capsule
1502                                                             <NA>
1503                                                  based on weight
1504                                                             <NA>
1505                                                             <NA>
1506                                                             <NA>
1507                                                             <NA>
1508                                                             <NA>
1509                                                             <NA>
1510                                                             <NA>
1511                                                  based on weight
1512                                                  based on weight
1513                                                             <NA>
1514                                                  based on weight
1515                                                             <NA>
1516                                                             <NA>
1517                                                             <NA>
1518                                                             <NA>
1519                                                             <NA>
1520                                                             <NA>
1521                                                  based on weight
1522                                                             <NA>
1523                                                             <NA>
1524                                                             <NA>
1525                                                             <NA>
1526                                                             <NA>
1527                                                             <NA>
1528                                                  based on weight
1529                                                  based on weight
1530                                                             <NA>
1531                                                             <NA>
1532                                                           1 tube
1533                                                             <NA>
1534                                                             <NA>
1535                                                             <NA>
1536                                                      application
1537                                              tablet/pill/capsule
1538                                                             <NA>
1539                                                             tube
1540                                                             <NA>
1541                                                             <NA>
1542                                                             <NA>
1543                                                             <NA>
1544                                                             <NA>
1545                                                             <NA>
1546                                                             <NA>
1547                                                             <NA>
1548                                                             <NA>
1549                                                             <NA>
1550                                                             <NA>
1551                                              tablet/pill/capsule
1552                                                             <NA>
1553                                                             <NA>
1554                                                             <NA>
1555                                                             <NA>
1556                                                         inhalant
1557                                                             <NA>
1558                                                             <NA>
1559                                                             <NA>
1560                                                             <NA>
1561                                                             <NA>
1562                                                             <NA>
1563                                                             <NA>
1564                                                             <NA>
1565                                                             <NA>
1566                                                             <NA>
1567                                                             <NA>
1568                                                             <NA>
1569                                                     pack/package
1570                                                             <NA>
1571                                      based on weight (44-88 lbs)
1572                                     based on weight (50-100 lbs)
1573                                                             <NA>
1574                                                             <NA>
1575                                                             <NA>
1576                                                             <NA>
1577                                                             <NA>
1578                                                             <NA>
1579                                                             <NA>
1580                                                             <NA>
1581                                                             <NA>
1582                                                             <NA>
1583                                                             <NA>
1584                                                             <NA>
1585                                                             <NA>
1586                                                             <NA>
1587                                                      combination
1588                                                             <NA>
1589                                                             <NA>
1590                                                             <NA>
1591                                                             <NA>
1592                                                             <NA>
1593                                                             <NA>
1594                                                             <NA>
1595                                                             <NA>
1596                                                  based on weight
1597                                                  based on weight
1598                                                  based on weight
1599                                                             <NA>
1600                                                             <NA>
1601                                                             <NA>
1602                                                             <NA>
1603                                                             <NA>
1604                                                             <NA>
1605                                                             <NA>
1606                                                             <NA>
1607                                                             <NA>
1608                                                             <NA>
1609                                                             <NA>
1610                                                             <NA>
1611                                                             <NA>
1612                                                             <NA>
1613                                                             <NA>
1614                                                             <NA>
1615                                                             <NA>
1616                                                             <NA>
1617                                                             <NA>
1618                                                             <NA>
1619                                                             <NA>
1620                                                             <NA>
1621                                                             <NA>
1622                                                             <NA>
1623                                                             <NA>
1624                                                             <NA>
1625                                                             <NA>
1626                                                             <NA>
1627                                                             <NA>
1628                                                             <NA>
1629                                                             <NA>
1630                                                             <NA>
1631                                                             <NA>
1632                                                             <NA>
1633                                     based on weight (50-100 lbs)
1634                                                             <NA>
1635                                         4 tablets/pills/capsules
1636                                                             <NA>
1637                                                             tube
1638                                              tablet/pill/capsule
1639                                              tablet/pill/capsule
1640                                                     pack/package
1641                                                             <NA>
1642                                                             <NA>
1643                                                             <NA>
1644                                                             <NA>
1645                                              tablet/pill/capsule
1646                                                             <NA>
1647                                                             <NA>
1648                                                             <NA>
1649                                                             <NA>
1650                                                             <NA>
1651                                                             <NA>
1652                                                             <NA>
1653                                              tablet/pill/capsule
1654                                                             <NA>
1655                                                             <NA>
1656                                                             <NA>
1657                                                             <NA>
1658                                                             <NA>
1659                                                             <NA>
1660                                                             <NA>
1661                                                             <NA>
1662                                                             pump
1663                                     based on weight (60-120 lbs)
1664                                                             <NA>
1665                                                             <NA>
1666                                                             <NA>
1667                                                             <NA>
1668                                                  moderate amount
1669                                                             <NA>
1670                                                             <NA>
1671                                                  based on weight
1672                                                             <NA>
1673                                                             <NA>
1674                                                             <NA>
1675                                              tablet/pill/capsule
1676                                                             <NA>
1677                                                             <NA>
1678                                                             <NA>
1679                                                     pack/package
1680                                                      application
1681                                                           collar
1682                                                             <NA>
1683                                                           collar
1684                                                   shampoo/mousse
1685                                                            spray
1686                                                             <NA>
1687                                                             <NA>
1688                                                             <NA>
1689                                                  moderate amount
1690                                                            spray
1691                                                             <NA>
1692                                                  moderate amount
1693                                                             <NA>
1694                                                             <NA>
1695                                                             <NA>
1696                                                             <NA>
1697                                                           collar
1698                                                             <NA>
1699                                                             <NA>
1700                                                             <NA>
1701                                                             <NA>
1702                                                             <NA>
1703                                                             <NA>
1704                                                             <NA>
1705                                                             <NA>
1706                                                             <NA>
1707                                                             <NA>
1708                                                             <NA>
1709                                                             <NA>
1710                                                             <NA>
1711                                                             <NA>
1712                                     based on weight (50-100 lbs)
1713                                                             <NA>
1714                                                             <NA>
1715                                     based on weight (50-100 lbs)
1716                                                             <NA>
1717                                                             <NA>
1718                                                             <NA>
1719                                                             <NA>
1720                                     based on weight (50-100 lbs)
1721                                                             <NA>
1722                                                             <NA>
1723                                                             <NA>
1724                                                             <NA>
1725                                                             <NA>
1726                                                             <NA>
1727                                                             <NA>
1728                                                             <NA>
1729                                                             <NA>
1730                                                             <NA>
1731                                                             <NA>
1732                                                             <NA>
1733                                                             <NA>
1734                                                             <NA>
1735                                                             <NA>
1736                                                             <NA>
1737                                                             <NA>
1738                                                             <NA>
1739                                                             <NA>
1740                                                             <NA>
1741                                                             <NA>
1742                                                             <NA>
1743                                                             <NA>
1744                                                             <NA>
1745                                                             <NA>
1746                                                             <NA>
1747                                                      bottle/vial
1748                                                    1 bottle/vial
1749                                                  based on weight
1750                                                             <NA>
1751                                                             <NA>
1752                                                             <NA>
1753                                                   shampoo/mousse
1754                                                             <NA>
1755                                                             <NA>
1756                                                      unspecified
1757                                                      unspecified
1758                                                  based on weight
1759                                                  based on weight
1760                                                             <NA>
1761                                                            spray
1762                                                             <NA>
1763                                                             <NA>
1764                                                             <NA>
1765                                                             <NA>
1766                                                             <NA>
1767                                                             <NA>
1768                                                             <NA>
1769                                                             <NA>
1770                                                             <NA>
1771                                                             <NA>
1772                                                             <NA>
1773                                              tablet/pill/capsule
1774                                                             <NA>
1775                                                             <NA>
1776                                                             <NA>
1777                                                             <NA>
1778                                                             <NA>
1779                                                             <NA>
1780                                                             <NA>
1781                                                             <NA>
1782                                                             <NA>
1783                                                             <NA>
1784                                                             <NA>
1785                                                             <NA>
1786                                                             <NA>
1787                                                             <NA>
1788                                                             <NA>
1789                                                             <NA>
1790                                                             <NA>
1791                                                             <NA>
1792                                                             <NA>
1793                                                             <NA>
1794                                                             <NA>
1795                                                             <NA>
1796                                              tablet/pill/capsule
1797                                                             <NA>
1798                                                             <NA>
1799                                                     pack/package
1800                                                             <NA>
1801                                                             <NA>
1802                                                               gm
1803                                              tablet/pill/capsule
1804                                                             <NA>
1805                                                             <NA>
1806                                                             <NA>
1807                                                             <NA>
1808                                                             <NA>
1809                                                             <NA>
1810                                                             <NA>
1811                                                             <NA>
1812                                                             <NA>
1813                                                             <NA>
1814                                                             <NA>
1815                                                             <NA>
1816                                                             <NA>
1817                                                             <NA>
1818                                                             <NA>
1819                                                             <NA>
1820                                                      unspecified
1821                                                             <NA>
1822                                                             <NA>
1823                                                             <NA>
1824                                                             <NA>
1825                                                             <NA>
1826                                                             <NA>
1827                                                             <NA>
1828                                                             <NA>
1829                                                             <NA>
1830                                              tablet/pill/capsule
1831                                              tablet/pill/capsule
1832                                                             <NA>
1833                                                             <NA>
1834                                                             <NA>
1835                                                             <NA>
1836                                                             <NA>
1837                                                             <NA>
1838                                                             <NA>
1839                                                             <NA>
1840                                                             <NA>
1841                                              tablet/pill/capsule
1842                                                             tube
1843                                                             <NA>
1844                                                             <NA>
1845                                                             tube
1846                                              tablet/pill/capsule
1847                                                             tube
1848                                              tablet/pill/capsule
1849                                                  based on weight
1850                                                       inch strip
1851                                                  0.25 inch strip
1852                                                             <NA>
1853                                                             <NA>
1854                                                             <NA>
1855                                                             <NA>
1856                                                             <NA>
1857                                                             <NA>
1858                                                             <NA>
1859                                                             <NA>
1860                                                             <NA>
1861                                                             <NA>
1862                                                             <NA>
1863                                                             <NA>
1864                                                  based on weight
1865                                                             <NA>
1866                                                  based on weight
1867                                                  based on weight
1868                                                             <NA>
1869                                                             <NA>
1870                                                             <NA>
1871                                                             <NA>
1872                                                  based on weight
1873                                                  based on weight
1874                                                  based on weight
1875                                                             <NA>
1876                                                             <NA>
1877                                                      unspecified
1878                                                             <NA>
1879                                                             <NA>
1880                                                             <NA>
1881                                                             <NA>
1882                                                             <NA>
1883                                                             <NA>
1884                                                             <NA>
1885                                              tablet/pill/capsule
1886                                                             <NA>
1887                                                            spray
1888                                                           collar
1889                                                             <NA>
1890                                                  based on weight
1891                                                             <NA>
1892                                                             <NA>
1893                                              tablet/pill/capsule
1894                                                      unspecified
1895                                                             <NA>
1896                                                             <NA>
1897                                                             <NA>
1898                                                             <NA>
1899                                                             <NA>
1900                                                             <NA>
1901                                                             <NA>
1902                                                             <NA>
1903                                                             <NA>
1904                                                             <NA>
1905                                                             <NA>
1906                                                             <NA>
1907                                                             <NA>
1908                                                             <NA>
1909                                                  based on weight
1910                                                             <NA>
1911                                                             <NA>
1912                                                             <NA>
1913                                                             <NA>
1914                                                             <NA>
1915                                                             <NA>
1916                                                  based on weight
1917                                                  based on weight
1918                                                            scoop
1919                                                             <NA>
1920                                                         wipe/pad
1921                                                             pump
1922                                                            spray
1923                                                             <NA>
1924                                                             <NA>
1925                                                   shampoo/mousse
1926                                                     small amount
1927                                                             <NA>
1928                                                  based on weight
1929                                                  based on weight
1930                                                            spray
1931                                                     small amount
1932                                                             <NA>
1933                                                             <NA>
1934                                                             pump
1935                                                             <NA>
1936                                                             <NA>
1937                                                             <NA>
1938                                                             <NA>
1939                                                      unspecified
1940                                                             <NA>
1941                                                     small amount
1942                                                             <NA>
1943                                                             <NA>
1944                                                             <NA>
1945                                                            daily
1946                                                             <NA>
1947                                                  based on weight
1948                                              tablet/pill/capsule
1949                                                             <NA>
1950                                                             <NA>
1951                                                             <NA>
1952                                                            scoop
1953                                                             <NA>
1954                                                  based on weight
1955                                                  based on weight
1956                                                  based on weight
1957                                                             <NA>
1958                                                     pack/package
1959                                                             <NA>
1960                                                  based on weight
1961                                                             <NA>
1962                                                  based on weight
1963                                              tablet/pill/capsule
1964                                                      application
1965                                                             <NA>
1966                                                             <NA>
1967                                                             <NA>
1968                                                             <NA>
1969                                                             <NA>
1970                                                             <NA>
1971                                                             <NA>
1972                                              tablet/pill/capsule
1973                                              tablet/pill/capsule
1974                                              tablet/pill/capsule
1975                                                             <NA>
1976                                                             <NA>
1977                                                             <NA>
1978                                                             <NA>
1979                                                             <NA>
1980                                                             tube
1981                                              tablet/pill/capsule
1982                                            1 tablet/pill/capsule
1983                                                           1 tube
1984                                          0.5 tablet/pill/capsule
1985                                            1 tablet/pill/capsule
1986                                              tablet/pill/capsule
1987                                              tablet/pill/capsule
1988                                                             <NA>
1989                                                             <NA>
1990                                                             <NA>
1991                                                             <NA>
1992                                                             <NA>
1993                                                             <NA>
1994                                                             <NA>
1995                                                             <NA>
1996                                                             <NA>
1997                                                             <NA>
1998                                                             puff
1999                                                             <NA>
2000                                                             <NA>
2001                                                             <NA>
2002                                                             <NA>
2003                                                             <NA>
2004                                                             <NA>
2005                                                             <NA>
2006                                                             <NA>
2007                                                             <NA>
2008                                                             <NA>
2009                                                             <NA>
2010                                                             <NA>
2011                                                             <NA>
2012                                                             <NA>
2013                                                             <NA>
2014                                                             <NA>
2015                                                             <NA>
2016                                                  based on weight
2017                                                             <NA>
2018                                                             <NA>
2019                                                             <NA>
2020                                                             <NA>
2021                                                             <NA>
2022                                                     small amount
2023                                                             <NA>
2024                                                             <NA>
2025                                                      bottle/vial
2026                                              tablet/pill/capsule
2027                                              tablet/pill/capsule
2028                                                             <NA>
2029                                                             <NA>
2030                                                             <NA>
2031                                                             <NA>
2032                                                      unspecified
2033                                                      unspecified
2034                                                      unspecified
2035                                                  based on weight
2036                                                  based on weight
2037                                                             <NA>
2038                                              tablet/pill/capsule
2039                                                             <NA>
2040                                                             <NA>
2041                                                      as directed
2042                                                      as directed
2043                                                             <NA>
2044                                                            mg/kg
2045                                                             <NA>
2046                                                             <NA>
2047                                                             <NA>
2048                                                             <NA>
2049                                                             <NA>
2050                                                  based on weight
2051                                                  based on weight
2052                                                             <NA>
2053                                                             <NA>
2054                                                             <NA>
2055                                                             <NA>
2056                                                             <NA>
2057                                                             <NA>
2058                                                             <NA>
2059                                                             <NA>
2060                                                             <NA>
2061                                                             <NA>
2062                                                             <NA>
2063                                                             <NA>
2064                                                             <NA>
2065                                                             <NA>
2066                                                             <NA>
2067                                                             <NA>
2068                                                             <NA>
2069                                                             <NA>
2070                                                             <NA>
2071                                                             <NA>
2072                                                             <NA>
2073                                                             <NA>
2074                                                             <NA>
2075                                     based on weight (50-100 lbs)
2076                                                             <NA>
2077                                                             <NA>
2078                                                             <NA>
2079                                                             <NA>
2080                                                             <NA>
2081                                                             <NA>
2082                                                             <NA>
2083                                      based on weight (40-88 lbs)
2084                                     based on weight (50-100 lbs)
2085                                                  based on weight
2086                                     based on weight (50-100 lbs)
2087                                     based on weight (50-100 lbs)
2088                                      based on weight (44-88 lbs)
2089                                        based on weight (80+ lbs)
2090                                                             <NA>
2091                                                  based on weight
2092                                                             <NA>
2093                                                  based on weight
2094                                                             <NA>
2095                                                             <NA>
2096                                              tablet/pill/capsule
2097                                                             <NA>
2098                                                             <NA>
2099                                                               gm
2100                                                             <NA>
2101                                                             <NA>
2102                                                             <NA>
2103                                                             <NA>
2104                                                             <NA>
2105                                                             <NA>
2106                                                             <NA>
2107                                              tablet/pill/capsule
2108                                            1 tablet/pill/capsule
2109                                            1 tablet/pill/capsule
2110                                                  based on weight
2111                                                             <NA>
2112                                                             <NA>
2113                                              tablet/pill/capsule
2114                                                             <NA>
2115                                                             <NA>
2116                                                     small amount
2117                                                             <NA>
2118                                              tablet/pill/capsule
2119                                                             <NA>
2120                                                             <NA>
2121                                                             <NA>
2122                                                              50%
2123                                         2 tablets/pills/capsules
2124                                                             pump
2125                                                             <NA>
2126                                              tablet/pill/capsule
2127                                              tablet/pill/capsule
2128                                                             <NA>
2129                                                             <NA>
2130                                                             <NA>
2131                                                             <NA>
2132                                                             <NA>
2133                                                             <NA>
2134                                                             <NA>
2135                                                             <NA>
2136                                                             <NA>
2137                                              tablet/pill/capsule
2138                                              tablet/pill/capsule
2139                                                             <NA>
2140                                                             <NA>
2141                                                  syringe/pipette
2142                                                             <NA>
2143                                              tablet/pill/capsule
2144                                                             <NA>
2145                                                             <NA>
2146                                                     pack/package
2147                                     based on weight (50-100 lbs)
2148                                                             <NA>
2149                                                  based on weight
2150                                              tablet/pill/capsule
2151                                                  based on weight
2152                                              tablet/pill/capsule
2153                                                             <NA>
2154                                                             <NA>
2155                                                             <NA>
2156                                                             <NA>
2157                                                             <NA>
2158                                                             <NA>
2159                                                             <NA>
2160                                                             <NA>
2161                                                  based on weight
2162                                                  based on weight
2163                                              tablet/pill/capsule
2164                                                     small amount
2165                                                            drops
2166                                                             <NA>
2167                                              tablet/pill/capsule
2168                                                             <NA>
2169                                                             <NA>
2170                                                             <NA>
2171                                                             <NA>
2172                                                             <NA>
2173                                                             <NA>
2174                                                             <NA>
2175                                              tablet/pill/capsule
2176                                                             <NA>
2177                                                             <NA>
2178                                                             <NA>
2179                                                             <NA>
2180                                                             <NA>
2181                                                             <NA>
2182                                                             <NA>
2183                                                             <NA>
2184                                                             <NA>
2185                                                             <NA>
2186                                                             <NA>
2187                                                             <NA>
2188                                                             <NA>
2189                                                             <NA>
2190                                                             <NA>
2191                                                             <NA>
2192                                                             <NA>
2193                                                             <NA>
2194                                                             <NA>
2195                                                      unspecified
2196                                                             <NA>
2197                                                             <NA>
2198                                                             <NA>
2199                                                  based on weight
2200                                                  based on weight
2201                                              tablet/pill/capsule
2202                                              tablet/pill/capsule
2203                                              tablet/pill/capsule
2204                                              tablet/pill/capsule
2205                                              tablet/pill/capsule
2206                                            1 tablet/pill/capsule
2207                                            1 tablet/pill/capsule
2208                                                             <NA>
2209                                              tablet/pill/capsule
2210                                                             <NA>
2211                                                             <NA>
2212                                                             <NA>
2213                                                             <NA>
2214                                                             <NA>
2215                                                             <NA>
2216                                              tablet/pill/capsule
2217                                              tablet/pill/capsule
2218                                                             <NA>
2219                                            1 tablet/pill/capsule
2220                                            1 tablet/pill/capsule
2221                                                             <NA>
2222                                                      application
2223                                              tablet/pill/capsule
2224                                            1 tablet/pill/capsule
2225                                                             <NA>
2226                                            1 tablet/pill/capsule
2227                                                             <NA>
2228                                                             <NA>
2229                                            1 tablet/pill/capsule
2230                                                             <NA>
2231                                                             <NA>
2232                                                             <NA>
2233                                                             <NA>
2234                                                             <NA>
2235                                                             <NA>
2236                                                             <NA>
2237                                                            scoop
2238                                              tablet/pill/capsule
2239                                                             <NA>
2240                                                      application
2241                                                      application
2242                                                             <NA>
2243                                                  based on weight
2244                                                  based on weight
2245                                                             <NA>
2246                                                             <NA>
2247                                                             <NA>
2248                                                             <NA>
2249                                                             <NA>
2250                                                      unspecified
2251                                                             <NA>
2252                                                             tube
2253                                                             <NA>
2254                                                             <NA>
2255                                                             tube
2256                                                             <NA>
2257                                                             <NA>
2258                                                             <NA>
2259                                                             <NA>
2260                                                             <NA>
2261                                                             <NA>
2262                                                             <NA>
2263                                                             <NA>
2264                                                             <NA>
2265                                                             <NA>
2266                                                             <NA>
2267                                                             <NA>
2268                                                             <NA>
2269                                                             <NA>
2270                                                             <NA>
2271                                                             <NA>
2272                                                             <NA>
2273                                                             <NA>
2274                                                             <NA>
2275                                                             <NA>
2276                                                             <NA>
2277                                                             <NA>
2278                                                             <NA>
2279                                                             <NA>
2280                                                  based on weight
2281                                                             <NA>
2282                                     based on weight (50-100 lbs)
2283                                                  based on weight
2284                                                             <NA>
2285                                                             <NA>
2286                                                             <NA>
2287                                                             <NA>
2288                                                             <NA>
2289                                                             <NA>
2290                                                             <NA>
2291                                                             <NA>
2292                                                             <NA>
2293                                                             <NA>
2294                                                             <NA>
2295                                                             <NA>
2296                                                             <NA>
2297                                              tablet/pill/capsule
2298                                                             <NA>
2299                                                             <NA>
2300                                                             <NA>
2301                                                           liquid
2302                                                             <NA>
2303                                                             <NA>
2304                                                             <NA>
2305                                                             <NA>
2306                                                             <NA>
2307                                                           powder
2308                                                             <NA>
2309                                                             <NA>
2310                                                             <NA>
2311                                                             <NA>
2312                                                             <NA>
2313                                                             <NA>
2314                                                             <NA>
2315                                                             <NA>
2316                                                             <NA>
2317                                                             <NA>
2318                                                             <NA>
2319                                                             <NA>
2320                                                             <NA>
2321                                                             <NA>
2322                                                             <NA>
2323                                                             <NA>
2324                                                             <NA>
2325                                                             <NA>
2326                                                             <NA>
2327                                                             <NA>
2328                                                             <NA>
2329                                              tablet/pill/capsule
2330                                                             <NA>
2331                                                             <NA>
2332                                                             <NA>
2333                                                             <NA>
2334                                                             <NA>
2335                                                             <NA>
2336                                                             <NA>
2337                                                                %
2338                                                             <NA>
2339                                                             <NA>
2340                                                             <NA>
2341                                                             <NA>
2342                                                             <NA>
2343                                                             <NA>
2344                                                             <NA>
2345                                                             <NA>
2346                                                             <NA>
2347                                                             <NA>
2348                                                             <NA>
2349                                                             <NA>
2350                                                             <NA>
2351                                                           cup(s)
2352                                                             <NA>
2353                                                             <NA>
2354                                                             <NA>
2355                                                             <NA>
2356                                                             <NA>
2357                                                             <NA>
2358                                                             <NA>
2359                                                             <NA>
2360                                                             <NA>
2361                                                             <NA>
2362                                                             <NA>
2363                                                             <NA>
2364                                                             <NA>
2365                                                             <NA>
2366                                                             <NA>
2367                                                             <NA>
2368                                                             <NA>
2369                                                             <NA>
2370                                                             <NA>
2371                                                             <NA>
2372                                                             <NA>
2373                                                             <NA>
2374                                                             <NA>
2375                                                             <NA>
2376                                                             <NA>
2377                                                             <NA>
2378                                                             <NA>
2379                                                             <NA>
2380                                                         ointment
2381                                                             <NA>
2382                                                             <NA>
2383                                                             <NA>
2384                                                  based on weight
2385                                                             <NA>
2386                                                  based on weight
2387                                                             <NA>
2388                                                             <NA>
2389                                                             <NA>
2390                                                            spray
2391                                                             <NA>
2392                                                             <NA>
2393                                                             <NA>
2394                                                             <NA>
2395                                                             <NA>
2396                                                             <NA>
2397                                                             <NA>
2398                                                            spray
2399                                                             <NA>
2400                                                             <NA>
2401                                                             <NA>
2402                                                             <NA>
2403                                              tablet/pill/capsule
2404                                              tablet/pill/capsule
2405                                                      application
2406                                                             <NA>
2407                                                             <NA>
2408                                                      application
2409                                                             <NA>
2410                                                             <NA>
2411                                                             <NA>
2412                                                             <NA>
2413                                                             <NA>
2414                                                             <NA>
2415                                                             <NA>
2416                                                             <NA>
2417                                                             <NA>
2418                                                             <NA>
2419                                                             <NA>
2420                                                             <NA>
2421                                                             <NA>
2422                                                             <NA>
2423                                                             <NA>
2424                                                             <NA>
2425                                                             <NA>
2426                                                             <NA>
2427                                                             <NA>
2428                                                             <NA>
2429                                                             <NA>
2430                                                             <NA>
2431                                                             <NA>
2432                                                             <NA>
2433                                                             <NA>
2434                                                             <NA>
2435                                                             <NA>
2436                                                             <NA>
2437                                                             <NA>
2438                                                             <NA>
2439                                                             <NA>
2440                                                             <NA>
2441                                              tablet/pill/capsule
2442                                                             <NA>
2443                                                             <NA>
2444                                                             <NA>
2445                                                             <NA>
2446                                                             <NA>
2447                                                             <NA>
2448                                                             <NA>
2449                                                             <NA>
2450                                                             <NA>
2451                                                             <NA>
2452                                                             <NA>
2453                                                             <NA>
2454                                                             <NA>
2455                                                             <NA>
2456                                                             <NA>
2457                                                             <NA>
2458                                                             <NA>
2459                                                             <NA>
2460                                                             <NA>
2461                                                             <NA>
2462                                                             <NA>
2463                                                     pack/package
2464                                                             <NA>
2465                                              tablet/pill/capsule
2466                                                             <NA>
2467                                                             <NA>
2468                                                             <NA>
2469                                                             <NA>
2470                                                             <NA>
2471                                                             <NA>
2472                                                          5 mg/ml
2473                                                             <NA>
2474                                                             <NA>
2475                                                             <NA>
2476                                                             <NA>
2477                                                             <NA>
2478                                                             <NA>
2479                                              tablet/pill/capsule
2480                                                             <NA>
2481                                                            spray
2482                                     based on weight (50-100 lbs)
2483                                     based on weight (60-120 lbs)
2484                                                             <NA>
2485                                                             <NA>
2486                                                        as needed
2487                                                         biweekly
2488                                                             <NA>
2489                                                             <NA>
2490                                                          5 drops
2491                                                     small amount
2492                                                       1 wipe/pad
2493                                                             <NA>
2494                                                             <NA>
2495                                              tablet/pill/capsule
2496                                                             <NA>
2497                                                             <NA>
2498                                                             <NA>
2499                                                     pack/package
2500                                            1 tablet/pill/capsule
2501                                                             <NA>
2502                                                             <NA>
2503                                                             <NA>
2504                                            1 tablet/pill/capsule
2505                                     based on weight (50-100 lbs)
2506                                     based on weight (60-120 lbs)
2507                                                             <NA>
2508                                              tablet/pill/capsule
2509                                                             <NA>
2510                                                             <NA>
2511                                                             <NA>
2512                                                             <NA>
2513                                                             <NA>
2514                                                             <NA>
2515                                                             <NA>
2516                                                             <NA>
2517                                                             <NA>
2518                                              tablet/pill/capsule
2519                                                             <NA>
2520                                                             <NA>
2521                                                             <NA>
2522                                                             <NA>
2523                                                             <NA>
2524                                                             <NA>
2525                                                             <NA>
2526                                                             <NA>
2527                                                             <NA>
2528                                                             <NA>
2529                                                             <NA>
2530                                                             <NA>
2531                                                             <NA>
2532                                                             <NA>
2533                                                             <NA>
2534                                                             <NA>
2535                                                             <NA>
2536                                                             <NA>
2537                                                             <NA>
2538                                                             <NA>
2539                                                  based on weight
2540                                     based on weight (50-100 lbs)
2541                                                             <NA>
2542                                     based on weight (50-100 lbs)
2543                                                           collar
2544                                                             <NA>
2545                                              tablet/pill/capsule
2546                                                           collar
2547                                            1 tablet/pill/capsule
2548                                        based on weight (18+ lbs)
2549                                                             <NA>
2550                                                             <NA>
2551                                                             <NA>
2552                                                             <NA>
2553                                                             <NA>
2554                                                             <NA>
2555                                                             <NA>
2556                                                             <NA>
2557                                                             <NA>
2558                                                  based on weight
2559                                                  based on weight
2560                                                  based on weight
2561                                                             <NA>
2562                                                             <NA>
2563                                                             <NA>
2564                                                             <NA>
2565                                                             <NA>
2566                                                             <NA>
2567                                                             <NA>
2568                                                             <NA>
2569                                                             <NA>
2570                                                             <NA>
2571                                                             <NA>
2572                                                  based on weight
2573                                                             <NA>
2574                                                             <NA>
2575                                                             <NA>
2576                                                             <NA>
2577                                                             <NA>
2578                                                            spray
2579                                                             <NA>
2580                                                         ointment
2581                                                             <NA>
2582                                                             <NA>
2583                                                             <NA>
2584                                                             <NA>
2585                                                             <NA>
2586                                                      application
2587                                                             <NA>
2588                                                             <NA>
2589                                                             <NA>
2590                                                            scoop
2591                                                            scoop
2592                                              tablet/pill/capsule
2593                                                             <NA>
2594                                                             <NA>
2595                                              tablet/pill/capsule
2596                                              tablet/pill/capsule
2597                                                             <NA>
2598                                                             <NA>
2599                                                             <NA>
2600                                                  based on weight
2601                                              tablet/pill/capsule
2602                                                             <NA>
2603                                              tablet/pill/capsule
2604                                                             <NA>
2605                                                             <NA>
2606                                                     small amount
2607                                                             <NA>
2608                                                             <NA>
2609                                                             <NA>
2610                                              tablet/pill/capsule
2611                                                             <NA>
2612                                                             <NA>
2613                                                             <NA>
2614                                                             <NA>
2615                                                             <NA>
2616                                                             <NA>
2617                                                             <NA>
2618                                                             <NA>
2619                                                             <NA>
2620                                                             <NA>
2621                                                             <NA>
2622                                                             <NA>
2623                                                             <NA>
2624                                                             <NA>
2625                                                             <NA>
2626                                                             <NA>
2627                                                             <NA>
2628                                                             <NA>
2629                                                             <NA>
2630                                                             <NA>
2631                                                             <NA>
2632                                                             <NA>
2633                                                             <NA>
2634                                                             <NA>
2635                                                             <NA>
2636                                                             <NA>
2637                                              tablet/pill/capsule
2638                                                             <NA>
2639                                                             <NA>
2640                                                             <NA>
2641                                                             <NA>
2642                                                            spray
2643                                                             <NA>
2644                                                             <NA>
2645                                                      unspecified
2646                                                             <NA>
2647                                                             <NA>
2648                                                             <NA>
2649                                                             <NA>
2650                                                             <NA>
2651                                                      unspecified
2652                                                             <NA>
2653                                                             <NA>
2654                                                             <NA>
2655                                                             <NA>
2656                                                             <NA>
2657                                                             <NA>
2658                                                             <NA>
2659                                                      unspecified
2660                                                      unspecified
2661                                                      unspecified
2662                                                             <NA>
2663                                                             <NA>
2664                                                            spray
2665                                                             <NA>
2666                                                             <NA>
2667                                                             <NA>
2668                                                             <NA>
2669                                                             <NA>
2670                                                             <NA>
2671                                                             <NA>
2672                                                             <NA>
2673                                                             <NA>
2674                                                             <NA>
2675                                                             <NA>
2676                                                             <NA>
2677                                                             <NA>
2678                                                             <NA>
2679                                                             <NA>
2680                                                             <NA>
2681                                                             <NA>
2682                                                             <NA>
2683                                                             <NA>
2684                                                             <NA>
2685                                                             <NA>
2686                                                             <NA>
2687                                                             <NA>
2688                                                             <NA>
2689                                                             <NA>
2690                                                             <NA>
2691                                                             <NA>
2692                                                             <NA>
2693                                                             <NA>
2694                                                             <NA>
2695                                                            mg/ml
2696                                                             <NA>
2697                                                             <NA>
2698                                                             <NA>
2699                                                            spray
2700                                                             <NA>
2701                                                             <NA>
2702                                                             <NA>
2703                                                             <NA>
2704                                                             <NA>
2705                                                             <NA>
2706                                                      unspecified
2707                                                             <NA>
2708                                                             <NA>
2709                                                             <NA>
2710                                                  based on weight
2711                                                             <NA>
2712                                                             <NA>
2713                                                             <NA>
2714                                                             <NA>
2715                                                  based on weight
2716                                                             <NA>
2717                                                  based on weight
2718                                                             <NA>
2719                                                             <NA>
2720                                                             <NA>
2721                                                             <NA>
2722                                                             <NA>
2723                                                             <NA>
2724                                                             <NA>
2725                                                             <NA>
2726                                                             dose
2727                                                             <NA>
2728                                                             <NA>
2729                                                             <NA>
2730                                                             <NA>
2731                                                             <NA>
2732                                                             <NA>
2733                                                             <NA>
2734                                                             <NA>
2735                                                             <NA>
2736                                                             <NA>
2737                                                             <NA>
2738                                                             <NA>
2739                                                             <NA>
2740                                                             <NA>
2741                                                             <NA>
2742                                                  based on weight
2743                                                  based on weight
2744                                                             <NA>
2745                                                  based on weight
2746                                                  based on weight
2747                                                             <NA>
2748                                                  based on weight
2749                                                  based on weight
2750                                                             <NA>
2751                                                             <NA>
2752                                                             <NA>
2753                                                  based on weight
2754                                                             <NA>
2755                                                             <NA>
2756                                                  based on weight
2757                                                             <NA>
2758                                                             <NA>
2759                                                             <NA>
2760                                                             <NA>
2761                                                             <NA>
2762                                                             <NA>
2763                                                             <NA>
2764                                                             <NA>
2765                                                             <NA>
2766                                                             <NA>
2767                                                             <NA>
2768                                                             <NA>
2769                                                             <NA>
2770                                                             <NA>
2771                                                             <NA>
2772                                                             <NA>
2773                                                             <NA>
2774                                                             <NA>
2775                                                             <NA>
2776                                                             <NA>
2777                                                             <NA>
2778                                                             <NA>
2779                                                             <NA>
2780                                                             <NA>
2781                                                             <NA>
2782                                                             <NA>
2783                                                             <NA>
2784                                                             <NA>
2785                                                             <NA>
2786                                                             <NA>
2787                                                             <NA>
2788                                                             <NA>
2789                                                             <NA>
2790                                                             <NA>
2791                                                             <NA>
2792                                                             <NA>
2793                                                             <NA>
2794                                                             <NA>
2795                                                             <NA>
2796                                                             <NA>
2797                                     based on weight (50-100 lbs)
2798                                                             <NA>
2799                                                             <NA>
2800                                                             <NA>
2801                                                      application
2802                                                             <NA>
2803                                                             <NA>
2804                                                             <NA>
2805                                                             <NA>
2806                                                             <NA>
2807                                              tablet/pill/capsule
2808                                                             <NA>
2809                                                             <NA>
2810                                                             <NA>
2811                                                             <NA>
2812                                              tablet/pill/capsule
2813                                                             <NA>
2814                                                             <NA>
2815                                                             <NA>
2816                                                             <NA>
2817                                                  based on weight
2818                                                     pack/package
2819                                                             <NA>
2820                                                             <NA>
2821                                                             <NA>
2822                                                  based on weight
2823                                                             <NA>
2824                                                             <NA>
2825                                                  based on weight
2826                                                  based on weight
2827                                                  based on weight
2828                                              tablet/pill/capsule
2829                                                             <NA>
2830                                                             <NA>
2831                                              tablet/pill/capsule
2832                                                             <NA>
2833                                                             <NA>
2834                                                             <NA>
2835                                                             <NA>
2836                                                             <NA>
2837                                                             <NA>
2838                                            1 tablet/pill/capsule
2839                                                             <NA>
2840                                                             <NA>
2841                                                             <NA>
2842                                                             <NA>
2843                                                             <NA>
2844                                                             <NA>
2845                                                             <NA>
2846                                            1 tablet/pill/capsule
2847                                                             <NA>
2848                                                             <NA>
2849                                                             <NA>
2850                                                             <NA>
2851                                                                %
2852                                                             <NA>
2853                                                             <NA>
2854                                                             <NA>
2855                                              tablet/pill/capsule
2856                                                             <NA>
2857                                                             <NA>
2858                                                             <NA>
2859                                                             <NA>
2860                                                             <NA>
2861                                                             <NA>
2862                                                             <NA>
2863                                                             <NA>
2864                                                                %
2865                                                             <NA>
2866                                                                %
2867                                                             <NA>
2868                                                             <NA>
2869                                                             <NA>
2870                                                             <NA>
2871                                                             <NA>
2872                                                             <NA>
2873                                                             <NA>
2874                                                             <NA>
2875                                                             <NA>
2876                                      based on weight (44-88 lbs)
2877                                                             <NA>
2878                                                             <NA>
2879                                                             <NA>
2880                                                             <NA>
2881                                                             <NA>
2882                                                             <NA>
2883                                                             <NA>
2884                                                             <NA>
2885                                                             <NA>
2886                                                             <NA>
2887                                              tablet/pill/capsule
2888                                                             <NA>
2889                                                             <NA>
2890                                                             <NA>
2891                                                             <NA>
2892                                                             <NA>
2893                                                             <NA>
2894                                                             <NA>
2895                                                             <NA>
2896                                                             <NA>
2897                                                   shampoo/mousse
2898                                                             <NA>
2899                                                               mg
2900                                                     small amount
2901                                                             <NA>
2902                                                             <NA>
2903                                                   shampoo/mousse
2904                                                  moderate amount
2905                                                           weekly
2906                                                             <NA>
2907                                                     pack/package
2908                                                             <NA>
2909                                              tablet/pill/capsule
2910                                                  based on weight
2911                                     based on weight (50-100 lbs)
2912                                      based on weight (24-60 lbs)
2913                                                             <NA>
2914                                                             <NA>
2915                                                             <NA>
2916                                                             <NA>
2917                                                             <NA>
2918                                                             <NA>
2919                                            1 tablet/pill/capsule
2920                                            1 tablet/pill/capsule
2921                                                               gm
2922                                              tablet/pill/capsule
2923                                              tablet/pill/capsule
2924                                                             <NA>
2925                                                      unspecified
2926                                                  based on weight
2927                                                  based on weight
2928                                                             <NA>
2929                                                             <NA>
2930                                                             <NA>
2931                                                             <NA>
2932                                                             tube
2933                                                             <NA>
2934                                                             <NA>
2935                                                             <NA>
2936                                                             <NA>
2937                                                             <NA>
2938                                                             <NA>
2939                                                             <NA>
2940                                                             <NA>
2941                                                             <NA>
2942                                                                %
2943                                            1 tablet/pill/capsule
2944                                                             <NA>
2945                                                             <NA>
2946                                                             <NA>
2947                                                             <NA>
2948                                     based on weight (50-100 lbs)
2949                                                  based on weight
2950                                                  based on weight
2951                                                             <NA>
2952                                                             <NA>
2953                                                             <NA>
2954                                                             <NA>
2955                                                             <NA>
2956                                                             <NA>
2957                                              tablet/pill/capsule
2958                                              tablet/pill/capsule
2959                                              tablet/pill/capsule
2960                                              tablet/pill/capsule
2961                                              tablet/pill/capsule
2962                                              tablet/pill/capsule
2963                                              tablet/pill/capsule
2964                                              tablet/pill/capsule
2965                                                             <NA>
2966                                                             <NA>
2967                                                             <NA>
2968                                      based on weight (44-88 lbs)
2969                                                  based on weight
2970                                                             <NA>
2971                                                             <NA>
2972                                                            drops
2973                                                           1.5 ml
2974                                              tablet/pill/capsule
2975                                                      application
2976                                                             <NA>
2977                                                             <NA>
2978                                              tablet/pill/capsule
2979                                                             <NA>
2980                                                             <NA>
2981                                                             <NA>
2982                                                             <NA>
2983                                                             <NA>
2984                                                             <NA>
2985                                                             <NA>
2986                                                             <NA>
2987                                                             <NA>
2988                                                             <NA>
2989                                                             <NA>
2990                                                             <NA>
2991                                                             <NA>
2992                                                             <NA>
2993                                                             <NA>
2994                                                             <NA>
2995                                                             <NA>
2996                                                             <NA>
2997                                                             <NA>
2998                                                     pack/package
2999                                                             <NA>
3000                                                             <NA>
3001                                                             <NA>
3002                                                             <NA>
3003                                                     small amount
3004                                                             <NA>
3005                                                             <NA>
3006                                                             <NA>
3007                                                             <NA>
3008                                                             <NA>
3009                                                             <NA>
3010                                                             <NA>
3011                                                             <NA>
3012                                                             <NA>
3013                                                             <NA>
3014                                                             <NA>
3015                                                             <NA>
3016                                                             <NA>
3017                                                             <NA>
3018                                                             <NA>
3019                                                             <NA>
3020                                                             <NA>
3021                                                             <NA>
3022                                              tablet/pill/capsule
3023                                                             <NA>
3024                                                             <NA>
3025                                                             <NA>
3026                                                             <NA>
3027                                                             <NA>
3028                                                             <NA>
3029                                                             <NA>
3030                                                             <NA>
3031                                                             <NA>
3032                                                             <NA>
3033                                                             <NA>
3034                                                             <NA>
3035                                                             <NA>
3036                                                             <NA>
3037                                                             <NA>
3038                                                             <NA>
3039                                                             <NA>
3040                                                             <NA>
3041                                              tablet/pill/capsule
3042                                                      application
3043                                                             <NA>
3044                                                             <NA>
3045                                                             <NA>
3046                                                             <NA>
3047                                                             <NA>
3048                                                             <NA>
3049                                                             <NA>
3050                                                             <NA>
3051                                                             <NA>
3052                                                             <NA>
3053                                                             <NA>
3054                                                             <NA>
3055                                                         ointment
3056                                                             <NA>
3057                                                             <NA>
3058                                                     small amount
3059                                                             <NA>
3060                                      based on weight (26-50 lbs)
3061                                                             <NA>
3062                                                             <NA>
3063                                                             <NA>
3064                                                             <NA>
3065                                                             <NA>
3066                                                             <NA>
3067                                                             <NA>
3068                                                             <NA>
3069                                                             <NA>
3070                                                             <NA>
3071                                                             <NA>
3072                                                             <NA>
3073                                                             <NA>
3074                                                             <NA>
3075                                                             <NA>
3076                                                             <NA>
3077                                                             <NA>
3078                                                             <NA>
3079                                                             <NA>
3080                                                             <NA>
3081                                                             <NA>
3082                                                             <NA>
3083                                                             <NA>
3084                                                             <NA>
3085                                                             <NA>
3086                                                             <NA>
3087                                                             <NA>
3088                                                             <NA>
3089                                                             <NA>
3090                                                             <NA>
3091                                                             <NA>
3092                                                             <NA>
3093                                                             <NA>
3094                                                             <NA>
3095                                                      unspecified
3096                                                             <NA>
3097                                                             <NA>
3098                                                             <NA>
3099                                                             <NA>
3100                                                             <NA>
3101                                                             <NA>
3102                                                             <NA>
3103                                                             <NA>
3104                                                             <NA>
3105                                                             <NA>
3106                                                             <NA>
3107                                                             <NA>
3108                                                             <NA>
3109                                                             <NA>
3110                                                             <NA>
3111                                                             <NA>
3112                                                             <NA>
3113                                                             <NA>
3114                                                             <NA>
3115                                                             <NA>
3116                                                             <NA>
3117                                                             <NA>
3118                                                             <NA>
3119                                                             <NA>
3120                                                             <NA>
3121                                                             <NA>
3122                                                             <NA>
3123                                                             <NA>
3124                                                     small amount
3125                                                             <NA>
3126                                                             <NA>
3127                                                             <NA>
3128                                                             <NA>
3129                                                             <NA>
3130                                                             <NA>
3131                                                             <NA>
3132                                                             <NA>
3133                                                             pump
3134                                              tablet/pill/capsule
3135                                              tablet/pill/capsule
3136                                                             <NA>
3137                                                             <NA>
3138                                                             <NA>
3139                                                             <NA>
3140                                                      unspecified
3141                                                             <NA>
3142                                                             <NA>
3143                                                             <NA>
3144                                                             <NA>
3145                                                             pump
3146                                                             <NA>
3147                                                             <NA>
3148                                                             <NA>
3149                                                             <NA>
3150                                                             <NA>
3151                                                             <NA>
3152                                                             <NA>
3153                                                             <NA>
3154                                                             <NA>
3155                                                             <NA>
3156                                              tablet/pill/capsule
3157                                                     pack/package
3158                                              tablet/pill/capsule
3159                                                             pump
3160                                                             <NA>
3161                                                             <NA>
3162                                                             pump
3163                                              tablet/pill/capsule
3164                                              tablet/pill/capsule
3165                                                     pack/package
3166                                              tablet/pill/capsule
3167                                                             <NA>
3168                                                             <NA>
3169                                                             <NA>
3170                                                             <NA>
3171                                                             <NA>
3172                                                             <NA>
3173                                                             <NA>
3174                                                             <NA>
3175                                                             <NA>
3176                                                             <NA>
3177                                                             <NA>
3178                                                             <NA>
3179                                                             <NA>
3180                                                             <NA>
3181                                                             <NA>
3182                                                             <NA>
3183                                                            mg/kg
3184                                                             <NA>
3185                                                             <NA>
3186                                                             <NA>
3187                                                             <NA>
3188                                                             <NA>
3189                                                             <NA>
3190                                                             <NA>
3191                                                             <NA>
3192                                                                l
3193                                                             <NA>
3194                                                             <NA>
3195                                                             <NA>
3196                                                             <NA>
3197                                                             <NA>
3198                                                             <NA>
3199                                                             <NA>
3200                                                             <NA>
3201                                                             <NA>
3202                                                             <NA>
3203                                                             <NA>
3204                                                             <NA>
3205                                                             <NA>
3206                                                             <NA>
3207                                                                %
3208                                                             <NA>
3209                                                             <NA>
3210                                                             <NA>
3211                                                             <NA>
3212                                                             <NA>
3213                                                             <NA>
3214                                                             <NA>
3215                                                             <NA>
3216                                                             <NA>
3217                                                             <NA>
3218                                              tablet/pill/capsule
3219                                              tablet/pill/capsule
3220                                                             <NA>
3221                                                             <NA>
3222                                                             <NA>
3223                                                             <NA>
3224                                                             <NA>
3225                                                             <NA>
3226                                                             <NA>
3227                                                             <NA>
3228                                                             <NA>
3229                                                             <NA>
3230                                                             <NA>
3231                                                             <NA>
3232                                                             <NA>
3233                                                             <NA>
3234                                                             <NA>
3235                                                             <NA>
3236                                                             <NA>
3237                                                             <NA>
3238                                                             <NA>
3239                                                             <NA>
3240                                                             <NA>
3241                                                             <NA>
3242                                                             <NA>
3243                                                             <NA>
3244                                                             <NA>
3245                                                             <NA>
3246                                                  based on weight
3247                                              tablet/pill/capsule
3248                                                             <NA>
3249                                                             <NA>
3250                                                  based on weight
3251                                                  based on weight
3252                                                             <NA>
3253                                     based on weight (50-100 lbs)
3254                                                  based on weight
3255                                                  based on weight
3256                                                             <NA>
3257                                                             <NA>
3258                                                             <NA>
3259                                                             <NA>
3260                                                             <NA>
3261                                                             <NA>
3262                                                             <NA>
3263                                                    1 bottle/vial
3264                                                     pack/package
3265                                                      bottle/vial
3266                                                             <NA>
3267                                                             <NA>
3268                                                             <NA>
3269                                              tablet/pill/capsule
3270                                                             <NA>
3271                                              tablet/pill/capsule
3272                                                           1 pump
3273                                                        as needed
3274                                                             <NA>
3275                                                             <NA>
3276                                                             <NA>
3277                                                             <NA>
3278                                                       inch strip
3279                                                             <NA>
3280                                            1 tablet/pill/capsule
3281                                                             pump
3282                                                             <NA>
3283                                                             <NA>
3284                                                  based on weight
3285                                                             <NA>
3286                                                             <NA>
3287                                                     small amount
3288                                                             <NA>
3289                                                             <NA>
3290                                                             <NA>
3291                                                     small amount
3292                                                             <NA>
3293                                                     small amount
3294                                              tablet/pill/capsule
3295                                                             <NA>
3296                                              tablet/pill/capsule
3297                                                             <NA>
3298                                                             <NA>
3299                                                             <NA>
3300                                              tablet/pill/capsule
3301                                                             <NA>
3302                                                             <NA>
3303                                                             <NA>
3304                                                             <NA>
3305                                                     small amount
3306                                                             <NA>
3307                                                             <NA>
3308                                                             <NA>
3309                                                             <NA>
3310                                                             <NA>
3311                                                             <NA>
3312                                                  moderate amount
3313                                                     small amount
3314                                                             <NA>
3315                                                     pack/package
3316                                                             <NA>
3317                                                             <NA>
3318                                                             <NA>
3319                                                             <NA>
3320                                                             <NA>
3321                                                             <NA>
3322                                                             <NA>
3323                                                             <NA>
3324                                                             <NA>
3325                                                             <NA>
3326                                                             <NA>
3327                                                             <NA>
3328                                                             <NA>
3329                                                             <NA>
3330                                                             <NA>
3331                                                             <NA>
3332                                                             <NA>
3333                                              tablet/pill/capsule
3334                                                             <NA>
3335                                                             <NA>
3336                                                             <NA>
3337                                                             <NA>
3338                                                             <NA>
3339                                              tablet/pill/capsule
3340                                                             <NA>
3341                                                             <NA>
3342                                                      application
3343                                                             <NA>
3344                                                             <NA>
3345                                                             <NA>
3346                                                             <NA>
3347                                                             <NA>
3348                                                             <NA>
3349                                                             <NA>
3350                                                             <NA>
3351                                                             <NA>
3352                                                             <NA>
3353                                                             <NA>
3354                                                             <NA>
3355                                                             <NA>
3356                                                             <NA>
3357                                                             <NA>
3358                                                             <NA>
3359                                                  based on weight
3360                                                  based on weight
3361                                                             <NA>
3362                                                             <NA>
3363                                                             <NA>
3364                                                             <NA>
3365                                              tablet/pill/capsule
3366                                                             <NA>
3367                                                             <NA>
3368                                                             <NA>
3369                                                             <NA>
3370                                                             <NA>
3371                                                             <NA>
3372                                                             <NA>
3373                                                             <NA>
3374                                                             <NA>
3375                                                             <NA>
3376                                                      application
3377                                                             <NA>
3378                                                             <NA>
3379                                                             <NA>
3380                                                             <NA>
3381                                                             <NA>
3382                                                             <NA>
3383                                                             <NA>
3384                                                  based on weight
3385                                                             <NA>
3386                                                             <NA>
3387                                                             <NA>
3388                                                             <NA>
3389                                                             <NA>
3390                                                             <NA>
3391                                                             <NA>
3392                                                             <NA>
3393                                                             tube
3394                                                             <NA>
3395                                                             <NA>
3396                                                             <NA>
3397                                                             <NA>
3398                                                             <NA>
3399                                                             <NA>
3400                                                             <NA>
3401                                                             <NA>
3402                                                             <NA>
3403                                                             <NA>
3404                                      based on weight (24-60 lbs)
3405                                      based on weight (26-50 lbs)
3406                                                             tube
3407                                                  based on weight
3408                                                  based on weight
3409                                              tablet/pill/capsule
3410                                                             <NA>
3411                                                           1 pump
3412                                                             <NA>
3413                                                             <NA>
3414                                                             <NA>
3415                                                             <NA>
3416                                              tablet/pill/capsule
3417                                                             <NA>
3418                                                             <NA>
3419                                                             <NA>
3420                                                             <NA>
3421                                                             <NA>
3422                                                             <NA>
3423                                                             <NA>
3424                                                             <NA>
3425                                                  based on weight
3426                                                      as directed
3427                                                             <NA>
3428                                                             <NA>
3429                                                             <NA>
3430                                                             <NA>
3431                                                             <NA>
3432                                                             <NA>
3433                                                             <NA>
3434                                                             <NA>
3435                                                             <NA>
3436                                                             <NA>
3437                                                             <NA>
3438                                                             <NA>
3439                                                             <NA>
3440                                                             <NA>
3441                                                             <NA>
3442                                                             <NA>
3443                                                             <NA>
3444                                                             <NA>
3445                                                             <NA>
3446                                                             <NA>
3447                                                             <NA>
3448                                                             <NA>
3449                                                             <NA>
3450                                                             <NA>
3451                                                             <NA>
3452                                                             <NA>
3453                                                             <NA>
3454                                                                %
3455                                                             <NA>
3456                                                           1 tube
3457                                              tablet/pill/capsule
3458                                                             tube
3459                                                             <NA>
3460                                                             <NA>
3461                                                             <NA>
3462                                                             <NA>
3463                                                             <NA>
3464                                                             <NA>
3465                                                             <NA>
3466                                                             <NA>
3467                                                             <NA>
3468                                                             <NA>
3469                                                             <NA>
3470                                                             <NA>
3471                                                             <NA>
3472                                                             <NA>
3473                                                             <NA>
3474                                                             <NA>
3475                                                             <NA>
3476                                                             <NA>
3477                                                             <NA>
3478                                                             <NA>
3479                                                             <NA>
3480                                                             <NA>
3481                                                             <NA>
3482                                                             <NA>
3483                                                             <NA>
3484                                                             <NA>
3485                                                             <NA>
3486                                                             <NA>
3487                                                  based on weight
3488                                        based on weight (25+ lbs)
3489                                                             <NA>
3490                                                  based on weight
3491                                                  based on weight
3492                                                  based on weight
3493                                                             <NA>
3494                                                             <NA>
3495                                                  based on weight
3496                                                  based on weight
3497                                                  based on weight
3498                                                  based on weight
3499                                                             <NA>
3500                                                             <NA>
3501                                                             <NA>
3502                                                             <NA>
3503                                                             <NA>
3504                                                             <NA>
3505                                                             <NA>
3506                                                             <NA>
3507                                                             <NA>
3508                                                             <NA>
3509                                                             <NA>
3510                                                             <NA>
3511                                                             <NA>
3512                                            1 tablet/pill/capsule
3513                                                  based on weight
3514                                     based on weight (50-100 lbs)
3515                                                             <NA>
3516                                              tablet/pill/capsule
3517                                                             <NA>
3518                                                             <NA>
3519                                                  based on weight
3520                                                             <NA>
3521                                                             <NA>
3522                                                             <NA>
3523                                                             <NA>
3524                                                             <NA>
3525                                                             <NA>
3526                                                             <NA>
3527                                                             <NA>
3528                                                             <NA>
3529                                                             <NA>
3530                                                             pump
3531                                                             <NA>
3532                                                             <NA>
3533                                                             <NA>
3534                                                             <NA>
3535                                                             <NA>
3536                                                             <NA>
3537                                                             <NA>
3538                                                             <NA>
3539                                                             <NA>
3540                                                             <NA>
3541                                                             <NA>
3542                                                             <NA>
3543                                                             <NA>
3544                                                             <NA>
3545                                                             <NA>
3546                                                             <NA>
3547                                                             <NA>
3548                                                             <NA>
3549                                                             <NA>
3550                                                             <NA>
3551                                                             <NA>
3552                                                             <NA>
3553                                                             <NA>
3554                                                             <NA>
3555                                                             <NA>
3556                                                             <NA>
3557                                                             <NA>
3558                                                             <NA>
3559                                                             <NA>
3560                                                             <NA>
3561                                                             <NA>
3562                                                             <NA>
3563                                                             <NA>
3564                                                             <NA>
3565                                                             <NA>
3566                                                             <NA>
3567                                                             <NA>
3568                                                             <NA>
3569                                                             <NA>
3570                                                             <NA>
3571                                                             <NA>
3572                                                             <NA>
3573                                                             <NA>
3574                                                             <NA>
3575                                                             <NA>
3576                                                             <NA>
3577                                                             <NA>
3578                                                             <NA>
3579                                                             <NA>
3580                                                             <NA>
3581                                              tablet/pill/capsule
3582                                                             <NA>
3583                                                             <NA>
3584                                                             <NA>
3585                                                             <NA>
3586                                                             <NA>
3587                                                                %
3588                                                                %
3589                                                             <NA>
3590                                                             <NA>
3591                                                            mg/kg
3592                                                            mg/kg
3593                                                           mcg/kg
3594                                                            mg/kg
3595                                                             <NA>
3596                                                             <NA>
3597                                                             <NA>
3598                                                             <NA>
3599                                                             <NA>
3600                                                             <NA>
3601                                                             <NA>
3602                                                             <NA>
3603                                                             <NA>
3604                                                             <NA>
3605                                                             <NA>
3606                                                             <NA>
3607                                                             <NA>
3608                                                             <NA>
3609                                                             <NA>
3610                                                                %
3611                                                             <NA>
3612                                                             <NA>
3613                                                             <NA>
3614                                                             <NA>
3615                                                             <NA>
3616                                              tablet/pill/capsule
3617                                              tablet/pill/capsule
3618                                                             <NA>
3619                                                             <NA>
3620                                                             <NA>
3621                                                             <NA>
3622                                                     pack/package
3623                                                             <NA>
3624                                                             <NA>
3625                                                             <NA>
3626                                                             <NA>
3627                                                             <NA>
3628                                                             <NA>
3629                                                             <NA>
3630                                                             <NA>
3631                                            1 tablet/pill/capsule
3632                                            1 tablet/pill/capsule
3633                                                             <NA>
3634                                                             <NA>
3635                                                             <NA>
3636                                                             <NA>
3637                                                             <NA>
3638                                                             <NA>
3639                                                             <NA>
3640                                                             <NA>
3641                                                            spray
3642                                                             <NA>
3643                                                             <NA>
3644                                                             <NA>
3645                                                             <NA>
3646                                                             <NA>
3647                                                             <NA>
3648                                                             <NA>
3649                                                             <NA>
3650                                                             <NA>
3651                                                             <NA>
3652                                                             <NA>
3653                                                             <NA>
3654                                                             <NA>
3655                                                             <NA>
3656                                                             <NA>
3657                                                             <NA>
3658                                                             <NA>
3659                                                             <NA>
3660                                                             <NA>
3661                                                             <NA>
3662                                                             <NA>
3663                                              tablet/pill/capsule
3664                                                             <NA>
3665                                                             <NA>
3666                                                            spray
3667                                                     small amount
3668                                              tablet/pill/capsule
3669                                              tablet/pill/capsule
3670                                              tablet/pill/capsule
3671                                                             <NA>
3672                                                             <NA>
3673                                                             <NA>
3674                                                             <NA>
3675                                                            spray
3676                                                             <NA>
3677                                                             <NA>
3678                                              tablet/pill/capsule
3679                                                             <NA>
3680                                                             <NA>
3681                                                             <NA>
3682                                                             <NA>
3683                                                             <NA>
3684                                              tablet/pill/capsule
3685                                                             tube
3686                                                             <NA>
3687                                                             <NA>
3688                                                             <NA>
3689                                                             tube
3690                                                            drops
3691                                                      bottle/vial
3692                                              tablet/pill/capsule
3693                                                            spray
3694                                                             <NA>
3695                                                             <NA>
3696                                                             <NA>
3697                                                             <NA>
3698                                                  based on weight
3699                                                  based on weight
3700                                                             <NA>
3701                                                  based on weight
3702                                                             <NA>
3703                                                             <NA>
3704                                                  based on weight
3705                                              tablet/pill/capsule
3706                                                             <NA>
3707                                                             <NA>
3708                                                             <NA>
3709                                                  based on weight
3710                                                             <NA>
3711                                                             <NA>
3712                                                             <NA>
3713                                                             <NA>
3714                                                             <NA>
3715                                                             <NA>
3716                                                             <NA>
3717                                         based on weight (10 lbs)
3718                                                             <NA>
3719                                            1 tablet/pill/capsule
3720                                                             <NA>
3721                                                             <NA>
3722                                                             <NA>
3723                                                             <NA>
3724                                                             <NA>
3725                                                             <NA>
3726                                              tablet/pill/capsule
3727                                                             <NA>
3728                                                             <NA>
3729                                              tablet/pill/capsule
3730                                                             <NA>
3731                                                             <NA>
3732                                                             <NA>
3733                                                            spray
3734                                                             <NA>
3735                                                             <NA>
3736                                                             <NA>
3737                                                             <NA>
3738                                                             <NA>
3739                                                             <NA>
3740                                                             <NA>
3741                                                             <NA>
3742                                                             <NA>
3743                                                             <NA>
3744                                                             <NA>
3745                                                             <NA>
3746                                                             <NA>
3747                                                             <NA>
3748                                                             <NA>
3749                                                             <NA>
3750                                                             <NA>
3751                                                             <NA>
3752                                                             <NA>
3753                                                             <NA>
3754                                                        as needed
3755                                                             <NA>
3756                                                            spray
3757                                                             <NA>
3758                                                        as needed
3759                                                        as needed
3760                                                             <NA>
3761                                                             <NA>
3762                                                             <NA>
3763                                                             <NA>
3764                                                             <NA>
3765                                                             <NA>
3766                                                             <NA>
3767                                                             <NA>
3768                                                             <NA>
3769                                                             <NA>
3770                                                             <NA>
3771                                                             <NA>
3772                                                             <NA>
3773                                                             <NA>
3774                                                             <NA>
3775                                                             <NA>
3776                                                             <NA>
3777                                                             <NA>
3778                                                             tube
3779                                                             <NA>
3780                                                            mg/ml
3781                                                             <NA>
3782                                                             <NA>
3783                                                             <NA>
3784                                                             <NA>
3785                                                             <NA>
3786                                                             <NA>
3787                                                             <NA>
3788                                                             <NA>
3789                                                             <NA>
3790                                                             <NA>
3791                                                             <NA>
3792                                                             <NA>
3793                                                             <NA>
3794                                                             <NA>
3795                                                             tube
3796                                                             <NA>
3797                                                            spray
3798                                                     small amount
3799                                                             <NA>
3800                                                     small amount
3801                                                             <NA>
3802                                                             <NA>
3803                                                             <NA>
3804                                                             <NA>
3805                                                             <NA>
3806                                                             <NA>
3807                                                             <NA>
3808                                                             <NA>
3809                                                             <NA>
3810                                                             <NA>
3811                                                             <NA>
3812                                                             <NA>
3813                                                             <NA>
3814                                                             <NA>
3815                                                             <NA>
3816                                                             <NA>
3817                                                             <NA>
3818                                                             <NA>
3819                                                             <NA>
3820                                                             <NA>
3821                                                             <NA>
3822                                                             <NA>
3823                                                             <NA>
3824                                                             <NA>
3825                                                             <NA>
3826                                                             <NA>
3827                                                             <NA>
3828                                                             <NA>
3829                                                             <NA>
3830                                                             <NA>
3831                                                             <NA>
3832                                                             <NA>
3833                                                             <NA>
3834                                                             <NA>
3835                                                             <NA>
3836                                                             <NA>
3837                                                             <NA>
3838                                                             <NA>
3839                                                             <NA>
3840                                                      application
3841                                                             <NA>
3842                                                             <NA>
3843                                                             <NA>
3844                                                             <NA>
3845                                                             <NA>
3846                                                             <NA>
3847                                                             <NA>
3848                                                       inch strip
3849                                                             <NA>
3850                                                             pump
3851                                                             <NA>
3852                                                             <NA>
3853                                                             <NA>
3854                                                             <NA>
3855                                                             <NA>
3856                                                             <NA>
3857                                            1 tablet/pill/capsule
3858                                                           1 tube
3859                                            1 tablet/pill/capsule
3860                                              tablet/pill/capsule
3861                                                             <NA>
3862                                                             <NA>
3863                                                             <NA>
3864                                                             <NA>
3865                                                             <NA>
3866                                                             <NA>
3867                                                             <NA>
3868                                                             <NA>
3869                                                             <NA>
3870                                                             <NA>
3871                                                             <NA>
3872                                                             <NA>
3873                                                             <NA>
3874                                                      application
3875                                                             <NA>
3876                                                             <NA>
3877                                                             <NA>
3878                                                             <NA>
3879                                                             <NA>
3880                                                             <NA>
3881                                                             <NA>
3882                                                             <NA>
3883                                                             <NA>
3884                                                  based on weight
3885                                                  based on weight
3886                                                  based on weight
3887                                                             <NA>
3888                                                             <NA>
3889                                                  based on weight
3890                                                  based on weight
3891                                                             <NA>
3892                                                             <NA>
3893                                                             <NA>
3894                                                             <NA>
3895                                                             <NA>
3896                                                  based on weight
3897                                                  based on weight
3898                                                             <NA>
3899                                                             <NA>
3900                                                             <NA>
3901                                                             <NA>
3902                                                  based on weight
3903                                                  based on weight
3904                                                  based on weight
3905                                                             <NA>
3906                                                  based on weight
3907                                                  based on weight
3908                                                             <NA>
3909                                                             <NA>
3910                                                             <NA>
3911                                                  based on weight
3912                                                  based on weight
3913                                                             <NA>
3914                                                             <NA>
3915                                                             <NA>
3916                                                             <NA>
3917                                                             <NA>
3918                                                             <NA>
3919                                                             <NA>
3920                                                             <NA>
3921                                                             <NA>
3922                                                             <NA>
3923                                                             <NA>
3924                                                             <NA>
3925                                                             <NA>
3926                                                             <NA>
3927                                                             <NA>
3928                                                             <NA>
3929                                                             <NA>
3930                                                             <NA>
3931                                                             <NA>
3932                                                             <NA>
3933                                                             <NA>
3934                                                             <NA>
3935                                                             <NA>
3936                                                  based on weight
3937                                              tablet/pill/capsule
3938                                                  based on weight
3939                                                             <NA>
3940                                                             <NA>
3941                                                             <NA>
3942                                                  based on weight
3943                                                  based on weight
3944                                                     small amount
3945                                                             <NA>
3946                                                  based on weight
3947                                                             <NA>
3948                                                             <NA>
3949                                                         inhalant
3950                                                             <NA>
3951                                                             <NA>
3952                                                  based on weight
3953                                                             <NA>
3954                                                             <NA>
3955                                                  based on weight
3956                                                  based on weight
3957                                                             <NA>
3958                                              tablet/pill/capsule
3959                                                             <NA>
3960                                                             tube
3961                                                             <NA>
3962                                                             <NA>
3963                                                             <NA>
3964                                                             <NA>
3965                                                             <NA>
3966                                                             <NA>
3967                                                             <NA>
3968                                                             <NA>
3969                                                             <NA>
3970                                                             <NA>
3971                                                             <NA>
3972                                                  based on weight
3973                                                             <NA>
3974                                                  based on weight
3975                                                             <NA>
3976                                                             <NA>
3977                                                             <NA>
3978                                                             puff
3979                                                             <NA>
3980                                                  based on weight
3981                                                  based on weight
3982                                                             <NA>
3983                                                             <NA>
3984                                                  based on weight
3985                                                  based on weight
3986                                                             <NA>
3987                                                             <NA>
3988                                                             <NA>
3989                                              tablet/pill/capsule
3990                                              tablet/pill/capsule
3991                                                             <NA>
3992                                                             <NA>
3993                                                             <NA>
3994                                                             <NA>
3995                                                             <NA>
3996                                                             <NA>
3997                                                  based on weight
3998                                                             <NA>
3999                                                             <NA>
4000                                                             <NA>
4001                                              tablet/pill/capsule
4002                                                             <NA>
4003                                                             <NA>
4004                                                             <NA>
4005                                                             <NA>
4006                                              tablet/pill/capsule
4007                                                             <NA>
4008                                                             <NA>
4009                                                             <NA>
4010                                                             tube
4011                                                             <NA>
4012                                                             <NA>
4013                                                             <NA>
4014                                                             <NA>
4015                                                             <NA>
4016                                        based on weight (51+ lbs)
4017                                            1 tablet/pill/capsule
4018                                                             <NA>
4019                                                             <NA>
4020                                                             <NA>
4021                                                             <NA>
4022                                                             <NA>
4023                                                             <NA>
4024                                                             <NA>
4025                                                             <NA>
4026                                                             <NA>
4027                                                             <NA>
4028                                                             <NA>
4029                                                             <NA>
4030                                                             <NA>
4031                                              tablet/pill/capsule
4032                                                             <NA>
4033                                                             <NA>
4034                                                             <NA>
4035                                                             <NA>
4036                                                             <NA>
4037                                                             <NA>
4038                                                             <NA>
4039                                                             <NA>
4040                                                             <NA>
4041                                                             <NA>
4042                                                             <NA>
4043                                                             <NA>
4044                                                             <NA>
4045                                              tablet/pill/capsule
4046                                                             <NA>
4047                                                             <NA>
4048                                                             <NA>
4049                                                             <NA>
4050                                                             <NA>
4051                                                             <NA>
4052                                                             <NA>
4053                                                             <NA>
4054                                                             <NA>
4055                                                             <NA>
4056                                                             <NA>
4057                                                             <NA>
4058                                                  based on weight
4059                                                             <NA>
4060                                                             <NA>
4061                                                             <NA>
4062                                                             <NA>
4063                                                             <NA>
4064                                                             <NA>
4065                                                             <NA>
4066                                                  based on weight
4067                                                  based on weight
4068                                                             <NA>
4069                                                             <NA>
4070                                                             <NA>
4071                                                     small amount
4072                                                  based on weight
4073                                     based on weight (50-100 lbs)
4074                                                             <NA>
4075                                                             <NA>
4076                                                             <NA>
4077                                                             <NA>
4078                                                             <NA>
4079                                                             <NA>
4080                                                             <NA>
4081                                                             <NA>
4082                                                             <NA>
4083                                                             <NA>
4084                                                             <NA>
4085                                                             <NA>
4086                                                             <NA>
4087                                                             <NA>
4088                                                         ointment
4089                                                             <NA>
4090                                                             <NA>
4091                                                             <NA>
4092                                                  syringe/pipette
4093                                                             <NA>
4094                                                             <NA>
4095                                              tablet/pill/capsule
4096                                                             <NA>
4097                                                             <NA>
4098                                                             <NA>
4099                                                             <NA>
4100                                                             <NA>
4101                                                             <NA>
4102                                                             <NA>
4103                                                             <NA>
4104                                                             <NA>
4105                                                             <NA>
4106                                                             <NA>
4107                                                             <NA>
4108                                                             <NA>
4109                                                  based on weight
4110                                                             <NA>
4111                                              tablet/pill/capsule
4112                                              tablet/pill/capsule
4113                                                             <NA>
4114                                                             <NA>
4115                                                             <NA>
4116                                                             <NA>
4117                                                      bottle/vial
4118                                              tablet/pill/capsule
4119                                                             <NA>
4120                                              tablet/pill/capsule
4121                                                             <NA>
4122                                                  based on weight
4123                                                             <NA>
4124                                                             <NA>
4125                                                             <NA>
4126                                                             <NA>
4127                                                  based on weight
4128                                                  based on weight
4129                                                             <NA>
4130                                                  based on weight
4131                                                            spray
4132                                                             <NA>
4133                                                             <NA>
4134                                                             <NA>
4135                                                             <NA>
4136                                                             <NA>
4137                                                             <NA>
4138                                                             <NA>
4139                                                             <NA>
4140                                                             <NA>
4141                                                             <NA>
4142                                                             <NA>
4143                                                             <NA>
4144                                                             <NA>
4145                                                             <NA>
4146                                                             <NA>
4147                                                            mg/ml
4148                                                             <NA>
4149                                                             <NA>
4150                                                             <NA>
4151                                                  based on weight
4152                                                             <NA>
4153                                                             <NA>
4154                                                             tube
4155                                                             <NA>
4156                                                             <NA>
4157                                                             <NA>
4158                                                             <NA>
4159                                                             <NA>
4160                                                             <NA>
4161                                                             <NA>
4162                                                             <NA>
4163                                                             <NA>
4164                                                             <NA>
4165                                                             <NA>
4166                                                             <NA>
4167                                                             <NA>
4168                                                             <NA>
4169                                                             <NA>
4170                                                             <NA>
4171                                                             <NA>
4172                                      based on weight (44-88 lbs)
4173                                                             <NA>
4174                                                             <NA>
4175                                                             tube
4176                                              tablet/pill/capsule
4177                                                             <NA>
4178                                                             <NA>
4179                                                             <NA>
4180                                                             <NA>
4181                                                             <NA>
4182                                                             <NA>
4183                                                      as directed
4184                                                             <NA>
4185                                                             <NA>
4186                                                             <NA>
4187                                                             <NA>
4188                                                             <NA>
4189                                              tablet/pill/capsule
4190                                              tablet/pill/capsule
4191                                                  based on weight
4192                                                             <NA>
4193                                                             <NA>
4194                                                             <NA>
4195                                                             <NA>
4196                                                             <NA>
4197                                                             pump
4198                                                  based on weight
4199                                                  based on weight
4200                                                             <NA>
4201                                                             <NA>
4202                                                             <NA>
4203                                                             <NA>
4204                                                      unspecified
4205                                                             <NA>
4206                                                  based on weight
4207                                                             <NA>
4208                                                             <NA>
4209                                              tablet/pill/capsule
4210                                     based on weight (60-120 lbs)
4211                                                             <NA>
4212                                                             <NA>
4213                                                             <NA>
4214                                                             <NA>
4215                                                             <NA>
4216                                                             <NA>
4217                                                             <NA>
4218                                                             <NA>
4219                                                             <NA>
4220                                                             <NA>
4221                                                             <NA>
4222                                                             <NA>
4223                                                             <NA>
4224                                                             <NA>
4225                                                             <NA>
4226                                                             <NA>
4227                                                             <NA>
4228                                                             <NA>
4229                                                        100 mg/ml
4230                                                             <NA>
4231                                                             <NA>
4232                                                             <NA>
4233                                                             <NA>
4234                                                             <NA>
4235                                                             <NA>
4236                                                             <NA>
4237                                            1 tablet/pill/capsule
4238                                                           1 tube
4239                                                             <NA>
4240                                                             <NA>
4241                                                             <NA>
4242                                                             <NA>
4243                                                  based on weight
4244                                                             <NA>
4245                                                             <NA>
4246                                                             <NA>
4247                                                             <NA>
4248                                                             <NA>
4249                                                             <NA>
4250                                                             <NA>
4251                                                             <NA>
4252                                                             <NA>
4253                                                             <NA>
4254                                                             <NA>
4255                                                             <NA>
4256                                                             <NA>
4257                                                             <NA>
4258                                                             <NA>
4259                                                             <NA>
4260                                                             <NA>
4261                                                             <NA>
4262                                                             <NA>
4263                                                             <NA>
4264                                                             <NA>
4265                                                             <NA>
4266                                                             <NA>
4267                                                             <NA>
4268                                                             <NA>
4269                                                             <NA>
4270                                                             <NA>
4271                                                             <NA>
4272                                                             <NA>
4273                                                             <NA>
4274                                                             <NA>
4275                                                             <NA>
4276                                                             <NA>
4277                                                             <NA>
4278                                                             <NA>
4279                                                             <NA>
4280                                                             <NA>
4281                                                             <NA>
4282                                                             <NA>
4283                                                             <NA>
4284                                                             <NA>
4285                                                             <NA>
4286                                                             <NA>
4287                                                             pump
4288                                                             <NA>
4289                                                             <NA>
4290                                                             <NA>
4291                                                             <NA>
4292                                                             <NA>
4293                                                             <NA>
4294                                                             <NA>
4295                                                             <NA>
4296                                                             <NA>
4297                                                             <NA>
4298                                      based on weight (44-88 lbs)
4299                                     based on weight (50-100 lbs)
4300                                                             <NA>
4301                                                             <NA>
4302                                     based on weight (50-100 lbs)
4303                                      based on weight (44-88 lbs)
4304                                                      unspecified
4305                                                      unspecified
4306                                                      unspecified
4307                                              tablet/pill/capsule
4308                                                             <NA>
4309                                                             <NA>
4310                                                             <NA>
4311                                                             <NA>
4312                                                             <NA>
4313                                                  based on weight
4314                                                  based on weight
4315                                                  based on weight
4316                                                             <NA>
4317                                                             <NA>
4318                                                             <NA>
4319                                                             <NA>
4320                                                             <NA>
4321                                                             <NA>
4322                                                             <NA>
4323                                                  based on weight
4324                                                           powder
4325                                                  based on weight
4326                                                           powder
4327                                                             <NA>
4328                                                  based on weight
4329                                                             <NA>
4330                                                             <NA>
4331                                                             <NA>
4332                                                             <NA>
4333                                                             <NA>
4334                                                             <NA>
4335                                              tablet/pill/capsule
4336                                              tablet/pill/capsule
4337                                              tablet/pill/capsule
4338                                              tablet/pill/capsule
4339                                                      application
4340                                              tablet/pill/capsule
4341                                                             <NA>
4342                                                             <NA>
4343                                                             <NA>
4344                                                             <NA>
4345                                                             <NA>
4346                                                             <NA>
4347                                                             <NA>
4348                                                       inch strip
4349                                                  based on weight
4350                                                  based on weight
4351                                                  based on weight
4352                                                         wipe/pad
4353                                                  based on weight
4354                                              tablet/pill/capsule
4355                                                             <NA>
4356                                                             <NA>
4357                                                             <NA>
4358                                                             <NA>
4359                                                  based on weight
4360                                                          1 spray
4361                                                             <NA>
4362                                                             <NA>
4363                                                             <NA>
4364                                                             <NA>
4365                                                             <NA>
4366                                                             <NA>
4367                                                             <NA>
4368                                                             <NA>
4369                                                             <NA>
4370                                                             <NA>
4371                                                             <NA>
4372                                                             <NA>
4373                                                             <NA>
4374                                                             <NA>
4375                                                             <NA>
4376                                                             <NA>
4377                                                             <NA>
4378                                                             <NA>
4379                                                  based on weight
4380                                                             <NA>
4381                                                             <NA>
4382                                                             <NA>
4383                                                             <NA>
4384                                                             <NA>
4385                                              tablet/pill/capsule
4386                                                             <NA>
4387                                                             <NA>
4388                                                             <NA>
4389                                              tablet/pill/capsule
4390                                              tablet/pill/capsule
4391                                                             <NA>
4392                                                             <NA>
4393                                                             <NA>
4394                                                             <NA>
4395                                                             <NA>
4396                                                             <NA>
4397                                                             <NA>
4398                                                             <NA>
4399                                                             <NA>
4400                                                             <NA>
4401                                                             <NA>
4402                                                             <NA>
4403                                                             <NA>
4404                                                             <NA>
4405                                                             <NA>
4406                                                             <NA>
4407                                                             <NA>
4408                                                             <NA>
4409                                                     small amount
4410                                                             <NA>
4411                                                             <NA>
4412                                                             <NA>
4413                                                             <NA>
4414                                                             <NA>
4415                                                             <NA>
4416                                                             <NA>
4417                                                             <NA>
4418                                                             <NA>
4419                                                             <NA>
4420                                                             <NA>
4421                                                             <NA>
4422                                                             <NA>
4423                                                             <NA>
4424                                                             <NA>
4425                                                             <NA>
4426                                              tablet/pill/capsule
4427                                                             tube
4428                                            1 tablet/pill/capsule
4429                                                             <NA>
4430                                                             pump
4431                                                             pump
4432                                                             <NA>
4433                                                             <NA>
4434                                                             <NA>
4435                                                             <NA>
4436                                                             <NA>
4437                                                             <NA>
4438                                              tablet/pill/capsule
4439                                                             <NA>
4440                                                             <NA>
4441                                                             <NA>
4442                                                             <NA>
4443                                                             <NA>
4444                                                             tube
4445                         27 mg milbemycin oxime, 1620 mg spinosad
4446                                                      1 gm/sachet
4447                                              tablet/pill/capsule
4448                                              tablet/pill/capsule
4449                                                             <NA>
4450                                                             <NA>
4451                                                             <NA>
4452                                                             <NA>
4453                                                             <NA>
4454                                                         inhalant
4455                                                             <NA>
4456                                                             <NA>
4457                                                             <NA>
4458                                                             <NA>
4459                                                             <NA>
4460                                                             <NA>
4461                                                             <NA>
4462                                                             <NA>
4463                                                             <NA>
4464                                                             <NA>
4465                                                             <NA>
4466                                                             <NA>
4467                                                             <NA>
4468                                                             <NA>
4469                                                     small amount
4470                                                     small amount
4471                                                         wipe/pad
4472                                                     small amount
4473                                                             <NA>
4474                                                             <NA>
4475                                                             <NA>
4476                                                             <NA>
4477                                                             <NA>
4478                                                             <NA>
4479                                                             <NA>
4480                                                     small amount
4481                                                         wipe/pad
4482                                              tablet/pill/capsule
4483                                              tablet/pill/capsule
4484                                                             <NA>
4485                                                     pack/package
4486                                              tablet/pill/capsule
4487                                              tablet/pill/capsule
4488                                                             <NA>
4489                                                             <NA>
4490                                                             <NA>
4491                                                             <NA>
4492                                                             <NA>
4493                                                             <NA>
4494                                                             <NA>
4495                                                             <NA>
4496                                                             <NA>
4497                                                  based on weight
4498                                                  based on weight
4499                                              tablet/pill/capsule
4500                                              tablet/pill/capsule
4501                                                      as directed
4502                                              tablet/pill/capsule
4503                                                             <NA>
4504                                                      unspecified
4505                                            1 tablet/pill/capsule
4506                                                             <NA>
4507                                                             <NA>
4508                                                             <NA>
4509                                     based on weight (50-100 lbs)
4510                                     based on weight (60-120 lbs)
4511                                              tablet/pill/capsule
4512                                              tablet/pill/capsule
4513                                                             <NA>
4514                                              tablet/pill/capsule
4515                                     based on weight (50-100 lbs)
4516                                     based on weight (60-120 lbs)
4517                                                             <NA>
4518                                              tablet/pill/capsule
4519                                                             <NA>
4520                                                             <NA>
4521                                                             <NA>
4522                                              tablet/pill/capsule
4523                                                             <NA>
4524                                                  based on weight
4525                                                             <NA>
4526                                                             <NA>
4527                                                             <NA>
4528                                                             <NA>
4529                                                             <NA>
4530                                                             <NA>
4531                                              tablet/pill/capsule
4532                                                  based on weight
4533                                                             <NA>
4534                                                              tbs
4535                                                             <NA>
4536                                                  based on weight
4537                                                             <NA>
4538                                                      bottle/vial
4539                                                             <NA>
4540                                                             <NA>
4541                                                             <NA>
4542                                                             <NA>
4543                                                             <NA>
4544                                                             <NA>
4545                                              tablet/pill/capsule
4546                                                             <NA>
4547                                                             <NA>
4548                                                             <NA>
4549                                                             <NA>
4550                                                             <NA>
4551                                                             <NA>
4552                                              tablet/pill/capsule
4553                                                             <NA>
4554                                                             <NA>
4555                                                             <NA>
4556                                                             <NA>
4557                                                             <NA>
4558                                                  based on weight
4559                                                  based on weight
4560                                              tablet/pill/capsule
4561                                                            spray
4562                                              tablet/pill/capsule
4563                                                             <NA>
4564                                                  based on weight
4565                                                  based on weight
4566                                                  based on weight
4567                                                  based on weight
4568                                                      unspecified
4569                                                  based on weight
4570                                                             <NA>
4571                                                             <NA>
4572                                                             <NA>
4573                                                             <NA>
4574                                                             <NA>
4575                                                             <NA>
4576                                                             <NA>
4577                                                             <NA>
4578                                                     small amount
4579                                                             <NA>
4580                                                             <NA>
4581                                                             <NA>
4582                                                             <NA>
4583                                                             <NA>
4584                                                             <NA>
4585                                                             <NA>
4586                                                             <NA>
4587                                                             <NA>
4588                                                             <NA>
4589                                                             <NA>
4590                                                             <NA>
4591                                                             <NA>
4592                                                             <NA>
4593                                                             <NA>
4594                                                             <NA>
4595                                                             <NA>
4596                                                             <NA>
4597                                                      unspecified
4598                                                             <NA>
4599                                                             <NA>
4600                                                             <NA>
4601                                                             <NA>
4602                                                             <NA>
4603                                                             <NA>
4604                                                             <NA>
4605                                                             <NA>
4606                                                             <NA>
4607                                                             <NA>
4608                                                             <NA>
4609                                                             <NA>
4610                                                             <NA>
4611                                                             <NA>
4612                                                             <NA>
4613                                                             <NA>
4614                                                             <NA>
4615                                                             <NA>
4616                                                             <NA>
4617                                                            spray
4618                                                             <NA>
4619                                                             <NA>
4620                                                             <NA>
4621                                                             <NA>
4622                                                             <NA>
4623                                                             <NA>
4624                                                             <NA>
4625                                                             <NA>
4626                                                             <NA>
4627                                                             <NA>
4628                                                             <NA>
4629                                                             <NA>
4630                                                     small amount
4631                                                             <NA>
4632                                                             <NA>
4633                                                             <NA>
4634                                                     pack/package
4635                                                             <NA>
4636                                                             <NA>
4637                                                             <NA>
4638                                                             <NA>
4639                                                             <NA>
4640                                                             <NA>
4641                                                             <NA>
4642                                                             <NA>
4643                                                            0.20%
4644                                                             <NA>
4645                                                             <NA>
4646                                                            0.03%
4647                                                             <NA>
4648                                                             <NA>
4649                                                             <NA>
4650                                                             <NA>
4651                                                         ointment
4652                                                  moderate amount
4653                                                             <NA>
4654                                                             <NA>
4655                                                             <NA>
4656                                                             <NA>
4657                                                             <NA>
4658                                                             <NA>
4659                                                             <NA>
4660                                                             <NA>
4661                                                             <NA>
4662                                                             <NA>
4663                                                             <NA>
4664                                                             <NA>
4665                                                             <NA>
4666                                                             <NA>
4667                                                             <NA>
4668                                                             <NA>
4669                                                             <NA>
4670                                                             <NA>
4671                                                             <NA>
4672                                                             <NA>
4673                                                             <NA>
4674                                                             <NA>
4675                                                             <NA>
4676                                                             <NA>
4677                                                             <NA>
4678                                                             <NA>
4679                                                             <NA>
4680                                                             <NA>
4681                                                             <NA>
4682                                                             <NA>
4683                                                             <NA>
4684                                                             <NA>
4685                                                             <NA>
4686                                                             <NA>
4687                                                             <NA>
4688                                                             <NA>
4689                                                             <NA>
4690                                                             <NA>
4691                                                             <NA>
4692                                                             <NA>
4693                                              tablet/pill/capsule
4694                                              tablet/pill/capsule
4695                                              tablet/pill/capsule
4696                                                             <NA>
4697                                                             <NA>
4698                                                             <NA>
4699                                                             <NA>
4700                                                             <NA>
4701                                                             <NA>
4702                                                             <NA>
4703                                                             <NA>
4704                                                             <NA>
4705                                                             <NA>
4706                                                             <NA>
4707                                                             <NA>
4708                                                             <NA>
4709                                                             <NA>
4710                                                             <NA>
4711                                                             <NA>
4712                                                             <NA>
4713                                                             <NA>
4714                                                             <NA>
4715                                                             <NA>
4716                                                             <NA>
4717                                                             <NA>
4718                                                             <NA>
4719                                                             <NA>
4720                                                             <NA>
4721                                                             <NA>
4722                                                             <NA>
4723                                                             <NA>
4724                                                             <NA>
4725                                                             <NA>
4726                                                  based on weight
4727                                                             <NA>
4728                                                             <NA>
4729                                                             <NA>
4730                                                             <NA>
4731                                                             <NA>
4732                                                             <NA>
4733                                                             <NA>
4734                                                             <NA>
4735                                                             <NA>
4736                                                             <NA>
4737                                                             <NA>
4738                                     based on weight (60-120 lbs)
4739                                                  based on weight
4740                                                             <NA>
4741                                                             <NA>
4742                                                             <NA>
4743                                                             <NA>
4744                                                             <NA>
4745                                                             <NA>
4746                                                             <NA>
4747                                                             <NA>
4748                                                             <NA>
4749                                              tablet/pill/capsule
4750                                                             <NA>
4751                                                             <NA>
4752                                                             <NA>
4753                                                             <NA>
4754                                                             <NA>
4755                                                             <NA>
4756                                              tablet/pill/capsule
4757                                                             <NA>
4758                                                             <NA>
4759                                              tablet/pill/capsule
4760                                              tablet/pill/capsule
4761                                                             <NA>
4762                                                             <NA>
4763                                        based on weight (55+ lbs)
4764                                                             <NA>
4765                                                             <NA>
4766                                                  based on weight
4767                                                             <NA>
4768                                                             <NA>
4769                                                             <NA>
4770                                                               gm
4771                                                             <NA>
4772                                                               gm
4773                                                             <NA>
4774                                                             <NA>
4775                                                             <NA>
4776                                                             <NA>
4777                                                   shampoo/mousse
4778                                                             <NA>
4779                                                             <NA>
4780                                        based on weight (88+ lbs)
4781                                                             <NA>
4782                                              tablet/pill/capsule
4783                                                             <NA>
4784                                                             <NA>
4785                                                             <NA>
4786                                              tablet/pill/capsule
4787                                                             <NA>
4788                                                             <NA>
4789                                                             <NA>
4790                                                             <NA>
4791                                                             <NA>
4792                                                             <NA>
4793                                                             <NA>
4794                                                             <NA>
4795                                                             <NA>
4796                                                             <NA>
4797                                                             <NA>
4798                                                             <NA>
4799                                                             <NA>
4800                                                             <NA>
4801                                                             <NA>
4802                                              tablet/pill/capsule
4803                                                             <NA>
4804                                                             <NA>
4805                                                             <NA>
4806                                     based on weight (60-120 lbs)
4807                                                             <NA>
4808                                                             <NA>
4809                                                             <NA>
4810                                                             <NA>
4811                                                             <NA>
4812                                                             <NA>
4813                                                             <NA>
4814                                                             <NA>
4815                                                             <NA>
4816                                                             <NA>
4817                                                           1 pump
4818                                                             <NA>
4819                                                             <NA>
4820                                                             <NA>
4821                                                             <NA>
4822                                                             <NA>
4823                                                             <NA>
4824                                                             <NA>
4825                                                             <NA>
4826                                                            units
4827                                                             <NA>
4828                                                           powder
4829                                                             <NA>
4830                                                             <NA>
4831                                                             <NA>
4832                                                                %
4833                                                             <NA>
4834                                                             <NA>
4835                                                             <NA>
4836                                                             <NA>
4837                                                             <NA>
4838                                                         wipe/pad
4839                                                             <NA>
4840                                                             <NA>
4841                                                             <NA>
4842                                              tablet/pill/capsule
4843                                                             <NA>
4844                                                             <NA>
4845                                                             <NA>
4846                                                             <NA>
4847                                                             <NA>
4848                                                             <NA>
4849                                                             <NA>
4850                                                   shampoo/mousse
4851                                                             <NA>
4852                                                             <NA>
4853                                                     small amount
4854                                                             <NA>
4855                                                             <NA>
4856                                                             <NA>
4857                                                             <NA>
4858                                                             <NA>
4859                                                             <NA>
4860                                                             <NA>
4861                                                             <NA>
4862                                                             <NA>
4863                                                             <NA>
4864                                                             <NA>
4865                                                             <NA>
4866                                                             <NA>
4867                                                             <NA>
4868                                                             <NA>
4869                                                            scoop
4870                                              tablet/pill/capsule
4871                                                             <NA>
4872                                                             <NA>
4873                                                             <NA>
4874                                                             <NA>
4875                                                             <NA>
4876                                                             <NA>
4877                                                             <NA>
4878                                                             <NA>
4879                                                             <NA>
4880                                                             <NA>
4881                                                       inch strip
4882                                              tablet/pill/capsule
4883                                              tablet/pill/capsule
4884                                                             <NA>
4885                                                             <NA>
4886                                                             <NA>
4887                                                             <NA>
4888                                                             <NA>
4889                                                             <NA>
4890                                                             <NA>
4891                                                             <NA>
4892                                                             <NA>
4893                                                             <NA>
4894                                                             <NA>
4895                                                             <NA>
4896                                                             <NA>
4897                                                             <NA>
4898                                                             <NA>
4899                                                             <NA>
4900                                                             <NA>
4901                                                             <NA>
4902                                                                %
4903                                                             <NA>
4904                                                      combination
4905                                                             <NA>
4906                                                             <NA>
4907                                                                %
4908                                                             <NA>
4909                                                             <NA>
4910                                                           collar
4911                                                             <NA>
4912                                                             <NA>
4913                                                           collar
4914                                                             <NA>
4915                                                             <NA>
4916                                                             <NA>
4917                                                             <NA>
4918                                                             <NA>
4919                                                             <NA>
4920                                                             <NA>
4921                                                             <NA>
4922                                                             <NA>
4923                                                             <NA>
4924                                                             <NA>
4925                                                             <NA>
4926                                                             <NA>
4927                                                             <NA>
4928                                              tablet/pill/capsule
4929                                                             <NA>
4930                                                             <NA>
4931                                                             <NA>
4932                                                             <NA>
4933                                                             <NA>
4934                                                             <NA>
4935                                                  based on weight
4936                                                             <NA>
4937                                                             <NA>
4938                                                             <NA>
4939                                                             <NA>
4940                                                             <NA>
4941                                                             <NA>
4942                                                             <NA>
4943                                                             <NA>
4944                                                             <NA>
4945                                                             <NA>
4946                                                             <NA>
4947                                                             <NA>
4948                                                             <NA>
4949                                                             <NA>
4950                                                             <NA>
4951                                                             <NA>
4952                                                             <NA>
4953                                                             <NA>
4954                                                             <NA>
4955                                                             <NA>
4956                                                     small amount
4957                                                             <NA>
4958                                                             <NA>
4959                                                             <NA>
4960                                                     small amount
4961                                                             <NA>
4962                                                             <NA>
4963                                                             <NA>
4964                                                             <NA>
4965                                                             <NA>
4966                                                             <NA>
4967                                                             <NA>
4968                                                             <NA>
4969                                                             <NA>
4970                                                             <NA>
4971                                                             <NA>
4972                                                             <NA>
4973                                                             <NA>
4974                                                             <NA>
4975                                                             <NA>
4976                                                             <NA>
4977                                                             <NA>
4978                                                             <NA>
4979                                                             <NA>
4980                                                     pack/package
4981                                                             <NA>
4982                                                             <NA>
4983                                                             <NA>
4984                                                             <NA>
4985                                                             <NA>
4986                                                             <NA>
4987                                                             <NA>
4988                                                             <NA>
4989                                                             <NA>
4990                                                             <NA>
4991                                                             <NA>
4992                                                             <NA>
4993                                                             <NA>
4994                                                             <NA>
4995                                                             <NA>
4996                                                      unspecified
4997                                                             <NA>
4998                                                             <NA>
4999                                                             <NA>
5000                                                             <NA>
5001                                                             <NA>
5002                                                             <NA>
5003                                                             <NA>
5004                                                             <NA>
5005                                                             <NA>
5006                                                             <NA>
5007                                                             <NA>
5008                                                             <NA>
5009                                                             <NA>
5010                                                             <NA>
5011                                                             <NA>
5012                                                             <NA>
5013                                                             <NA>
5014                                                             <NA>
5015                                                             <NA>
5016                                                             <NA>
5017                                                             <NA>
5018                                                             <NA>
5019                                                             <NA>
5020                                                             <NA>
5021                                                             <NA>
5022                                                             <NA>
5023                                                             <NA>
5024                                                             <NA>
5025                                                             <NA>
5026                                                  based on weight
5027                                                             <NA>
5028                                               10:1 ket:ace ratio
5029                                                             <NA>
5030                                                             <NA>
5031                                                             <NA>
5032                                                             <NA>
5033                                                             <NA>
5034                                                             <NA>
5035                                                             <NA>
5036                                                             <NA>
5037                                                             <NA>
5038                                                             <NA>
5039                                                             <NA>
5040                                                             <NA>
5041                                                             <NA>
5042                                                             <NA>
5043                                                             <NA>
5044                                                             <NA>
5045                                                             <NA>
5046                                                             <NA>
5047                                                             <NA>
5048                                                             <NA>
5049                                                             <NA>
5050                                                             <NA>
5051                                                             <NA>
5052                                                             <NA>
5053                                                             <NA>
5054                                                             <NA>
5055                                                             <NA>
5056                                                             <NA>
5057                                                             <NA>
5058                                                             <NA>
5059                                                             <NA>
5060                                                             <NA>
5061                                                             <NA>
5062                                                             <NA>
5063                                              tablet/pill/capsule
5064                                              tablet/pill/capsule
5065                                                             <NA>
5066                                                  based on weight
5067                                                  based on weight
5068                                                             <NA>
5069                                              tablet/pill/capsule
5070                                                             <NA>
5071                                                             <NA>
5072                                                             <NA>
5073                                                             <NA>
5074                                                             <NA>
5075                                                             <NA>
5076                                                             <NA>
5077                                                             <NA>
5078                                                  based on weight
5079                                                             <NA>
5080                                                             <NA>
5081                                                             <NA>
5082                                                             <NA>
5083                                                             <NA>
5084                                                   shampoo/mousse
5085                                                             <NA>
5086                                                             <NA>
5087                                                             <NA>
5088                                                             <NA>
5089                                                             <NA>
5090                                                             <NA>
5091                                                             <NA>
5092                                                             <NA>
5093                                                             <NA>
5094                                                             <NA>
5095                                                             <NA>
5096                                                             <NA>
5097                                                             <NA>
5098                                                             <NA>
5099                                                             <NA>
5100                                                             <NA>
5101                                                             <NA>
5102                                                             <NA>
5103                                                             <NA>
5104                                                             <NA>
5105                                                             <NA>
5106                                                             <NA>
5107                                                             <NA>
5108                                                             <NA>
5109                                                            spray
5110                                                             <NA>
5111                                                             <NA>
5112                                                             <NA>
5113                                                             <NA>
5114                                                             <NA>
5115                                                             <NA>
5116                                                             <NA>
5117                                                             <NA>
5118                                              tablet/pill/capsule
5119                                              tablet/pill/capsule
5120                                                             <NA>
5121                                                             <NA>
5122                                                             <NA>
5123                                                             <NA>
5124                                                             <NA>
5125                                                             <NA>
5126                                                             <NA>
5127                                                      unspecified
5128                                                             <NA>
5129                                                             <NA>
5130                                              tablet/pill/capsule
5131                                                             <NA>
5132                                                             <NA>
5133                                                             <NA>
5134                                                             <NA>
5135                                                             <NA>
5136                                                             <NA>
5137                                                             <NA>
5138                                                             <NA>
5139                                                             <NA>
5140                                                             <NA>
5141                                              tablet/pill/capsule
5142                                                             <NA>
5143                                              tablet/pill/capsule
5144                                                             <NA>
5145                                                             <NA>
5146                                                             <NA>
5147                                                             <NA>
5148                                                             <NA>
5149                                                             <NA>
5150                                                  based on weight
5151                                                             <NA>
5152                                                             <NA>
5153                                                             <NA>
5154                                                             <NA>
5155                                                             <NA>
5156                                                             <NA>
5157                                                             <NA>
5158                                                             <NA>
5159                                                             <NA>
5160                                                             <NA>
5161                                                             <NA>
5162                                                             <NA>
5163                                                             <NA>
5164                                                             <NA>
5165                                                             <NA>
5166                                                             <NA>
5167                                                             <NA>
5168                                                             <NA>
5169                                                             <NA>
5170                                                             <NA>
5171                                                             <NA>
5172                                                             <NA>
5173                                              tablet/pill/capsule
5174                                              tablet/pill/capsule
5175                                                             <NA>
5176                                                             <NA>
5177                                                             <NA>
5178                                                             <NA>
5179                                                             <NA>
5180                                                             <NA>
5181                                                             <NA>
5182                                                             <NA>
5183                                                             <NA>
5184                                                             <NA>
5185                                                             <NA>
5186                                                             <NA>
5187                                                             <NA>
5188                                              tablet/pill/capsule
5189                                                  based on weight
5190                                              tablet/pill/capsule
5191                                                             <NA>
5192                                                             <NA>
5193                                                             <NA>
5194                                                             <NA>
5195                                                  based on weight
5196                                                             <NA>
5197                                                             <NA>
5198                                                             <NA>
5199                                                             <NA>
5200                                                      unspecified
5201                                                             <NA>
5202                                                             <NA>
5203                                              tablet/pill/capsule
5204                                              tablet/pill/capsule
5205                                                             <NA>
5206                                     based on weight (50-100 lbs)
5207                                     based on weight (50-100 lbs)
5208                                                             <NA>
5209                                                             <NA>
5210                                                  moderate amount
5211                                                  moderate amount
5212                                                            spray
5213                                                  moderate amount
5214                                                  based on weight
5215                                                             <NA>
5216                                                             <NA>
5217                                                             <NA>
5218                                                             <NA>
5219                                                             <NA>
5220                                                            spray
5221                                                            spray
5222                                                  based on weight
5223                                                  based on weight
5224                                                             <NA>
5225                                              tablet/pill/capsule
5226                                                             <NA>
5227                                                             <NA>
5228                                                            spray
5229                                                     small amount
5230                                                             <NA>
5231                                              tablet/pill/capsule
5232                                                             <NA>
5233                                                             <NA>
5234                                         2 tablets/pills/capsules
5235                                                  based on weight
5236                                                             <NA>
5237                                                             <NA>
5238                                                             <NA>
5239                                                             <NA>
5240                                                             <NA>
5241                                                             <NA>
5242                                                             <NA>
5243                                                  based on weight
5244                                                  based on weight
5245                                                             <NA>
5246                                                             <NA>
5247                                                  based on weight
5248                                                  based on weight
5249                                                             <NA>
5250                                                             pump
5251                                                             <NA>
5252                                                             <NA>
5253                                                  based on weight
5254                                                             <NA>
5255                                                  based on weight
5256                                                  based on weight
5257                                                  based on weight
5258                                              tablet/pill/capsule
5259                                                             <NA>
5260                                                             <NA>
5261                                                  based on weight
5262                                              tablet/pill/capsule
5263                                                             <NA>
5264                                                  based on weight
5265                                                  based on weight
5266                                                             <NA>
5267                                                             <NA>
5268                                                             pump
5269                                                             <NA>
5270                                                  based on weight
5271                                                  based on weight
5272                                                             <NA>
5273                                              tablet/pill/capsule
5274                                                             <NA>
5275                                                             <NA>
5276                                                               ml
5277                                                             <NA>
5278                                                             <NA>
5279                                                             <NA>
5280                                                             <NA>
5281                                                             <NA>
5282                                                             <NA>
5283                                                             <NA>
5284                                                             <NA>
5285                                                             pump
5286                                                             <NA>
5287                                                             <NA>
5288                                                             <NA>
5289                                                             dose
5290                                                             <NA>
5291                                                             <NA>
5292                                                             <NA>
5293                                                             <NA>
5294                                                             <NA>
5295                                                             <NA>
5296                                                             <NA>
5297                                                             <NA>
5298                                                             <NA>
5299                                                             <NA>
5300                                                             <NA>
5301                                                             <NA>
5302                                                             <NA>
5303                                                             <NA>
5304                                                             <NA>
5305                                                             <NA>
5306                                                             <NA>
5307                                                             <NA>
5308                                                             <NA>
5309                                                             <NA>
5310                                                             <NA>
5311                                                             <NA>
5312                                                             <NA>
5313                                                             <NA>
5314                                                             <NA>
5315                                                             <NA>
5316                                                             <NA>
5317                                                             <NA>
5318                                                             <NA>
5319                                                             <NA>
5320                                                             <NA>
5321                                                             <NA>
5322                                                             <NA>
5323                                                             <NA>
5324                                                             <NA>
5325                                                             <NA>
5326                                                             <NA>
5327                                                             <NA>
5328                                                             <NA>
5329                                                             <NA>
5330                                                             <NA>
5331                                                             <NA>
5332                                                  based on weight
5333                                                      unspecified
5334                                              tablet/pill/capsule
5335                                                           collar
5336                                              tablet/pill/capsule
5337                                                             <NA>
5338                                                             <NA>
5339                                                             <NA>
5340                                                          monthly
5341                                                             pump
5342                                                             <NA>
5343                                                             <NA>
5344                                                  based on weight
5345                                                             <NA>
5346                                                             <NA>
5347                                                             <NA>
5348                                                             <NA>
5349                                                             <NA>
5350                                                             <NA>
5351                                                             <NA>
5352                                                             <NA>
5353                                                             <NA>
5354                                                           collar
5355                                                             <NA>
5356                                                             <NA>
5357                                                             <NA>
5358                                                             <NA>
5359                                                             <NA>
5360                                                             <NA>
5361                                                             <NA>
5362                                              tablet/pill/capsule
5363                                                             <NA>
5364                                                             <NA>
5365                                                             <NA>
5366                                                             <NA>
5367                                                             <NA>
5368                                                             <NA>
5369                                              tablet/pill/capsule
5370                                                             <NA>
5371                                                             <NA>
5372                                                             <NA>
5373                                                             <NA>
5374                                                             <NA>
5375                                                             <NA>
5376                                                             <NA>
5377                                                      combination
5378                                                                %
5379                                                  based on weight
5380                                                  based on weight
5381                                                             <NA>
5382                                                  based on weight
5383                                                             <NA>
5384                                                             <NA>
5385                                                             <NA>
5386                                                             <NA>
5387                                                             <NA>
5388                                                             <NA>
5389                                                             <NA>
5390                                                             <NA>
5391                                            1 tablet/pill/capsule
5392                                            1 tablet/pill/capsule
5393                                                             <NA>
5394                                                             <NA>
5395                                                             <NA>
5396                                                             <NA>
5397                                                             <NA>
5398                                                             <NA>
5399                                                             <NA>
5400                                                             <NA>
5401                                              tablet/pill/capsule
5402                                                             <NA>
5403                                              tablet/pill/capsule
5404                                                             <NA>
5405                                                             <NA>
5406                                                             <NA>
5407                                                             <NA>
5408                                                             <NA>
5409                                                             <NA>
5410                                                             <NA>
5411                                                             <NA>
5412                                                             <NA>
5413                                                             <NA>
5414                                                             <NA>
5415                                                             <NA>
5416                                                             <NA>
5417                                                             <NA>
5418                                                             <NA>
5419                                                             <NA>
5420                                                             <NA>
5421                                                             <NA>
5422                                                             <NA>
5423                                                             <NA>
5424                                                           3.5 gm
5425                                                             <NA>
5426                                                             <NA>
5427                                                             <NA>
5428                                                      bottle/vial
5429                                                             <NA>
5430                                                             <NA>
5431                                                             <NA>
5432                                                             <NA>
5433                                                             <NA>
5434                                                             <NA>
5435                                                             <NA>
5436                                                             <NA>
5437                                                             <NA>
5438                                                             <NA>
5439                                                             <NA>
5440                                                             <NA>
5441                                                             <NA>
5442                                                             <NA>
5443                                                             <NA>
5444                                                             <NA>
5445                                                             <NA>
5446                                                             <NA>
5447                                                             <NA>
5448                                                             <NA>
5449                                                             <NA>
5450                                                             <NA>
5451                                                             <NA>
5452                                                             <NA>
5453                                                             <NA>
5454                                                             <NA>
5455                                                             <NA>
5456                                                             <NA>
5457                                                             <NA>
5458                                                             <NA>
5459                                                             <NA>
5460                                                             <NA>
5461                                                             <NA>
5462                                                             <NA>
5463                                                             <NA>
5464                                                             <NA>
5465                                                             <NA>
5466                                                             <NA>
5467                                                             <NA>
5468                                                             <NA>
5469                                                             <NA>
5470                                                             <NA>
5471                                                             <NA>
5472                                                             <NA>
5473                                                             <NA>
5474                                                             <NA>
5475                                                             <NA>
5476                                                             <NA>
5477                                                             <NA>
5478                                                             <NA>
5479                                                             <NA>
5480                                                             <NA>
5481                                                             <NA>
5482                                                             <NA>
5483                                              tablet/pill/capsule
5484                                                             <NA>
5485                                                             <NA>
5486                                                             <NA>
5487                                              tablet/pill/capsule
5488                                                             <NA>
5489                                                             <NA>
5490                                                             <NA>
5491                                                             <NA>
5492                                              tablet/pill/capsule
5493                                              tablet/pill/capsule
5494                                                             <NA>
5495                                                             <NA>
5496                                                             <NA>
5497                                              tablet/pill/capsule
5498                                              tablet/pill/capsule
5499                                                             dose
5500                                              tablet/pill/capsule
5501                                                     small amount
5502                                                      bottle/vial
5503                                                             <NA>
5504                                                             <NA>
5505                                                        mcg/kg/hr
5506                                                             <NA>
5507                                              tablet/pill/capsule
5508                                              tablet/pill/capsule
5509                                                  based on weight
5510                                              tablet/pill/capsule
5511                                                  based on weight
5512                                                             <NA>
5513                                              tablet/pill/capsule
5514                                                             <NA>
5515                                              tablet/pill/capsule
5516                                              tablet/pill/capsule
5517                                                             <NA>
5518                                                             <NA>
5519                                                             <NA>
5520                                                             <NA>
5521                                                             <NA>
5522                                                             <NA>
5523                                                             <NA>
5524                                                             <NA>
5525                                                             <NA>
5526                                                             <NA>
5527                                                     small amount
5528                                                      application
5529                                                      application
5530                                                             <NA>
5531                                                             <NA>
5532                                                             <NA>
5533                                                     small amount
5534                                     based on weight (50-100 lbs)
5535                                                             <NA>
5536                                                             <NA>
5537                                                            spray
5538                                                             <NA>
5539                                                             <NA>
5540                                                             <NA>
5541                                              tablet/pill/capsule
5542                                                  syringe/pipette
5543                                                             <NA>
5544                                                             <NA>
5545                                            1 tablet/pill/capsule
5546                                         2 tablets/pills/capsules
5547                                                             <NA>
5548                                                             <NA>
5549                                                             <NA>
5550                                                             <NA>
5551                                                             <NA>
5552                                                             <NA>
5553                                                             <NA>
5554                                                             <NA>
5555                                                             <NA>
5556                                                   1 pack/package
5557                                              tablet/pill/capsule
5558                                                             <NA>
5559                                                             <NA>
5560                                                             <NA>
5561                                                             <NA>
5562                                              tablet/pill/capsule
5563                                                             <NA>
5564                                              tablet/pill/capsule
5565                                                             <NA>
5566                                                           collar
5567                                                           collar
5568                                                  based on weight
5569                                                             <NA>
5570                                                             <NA>
5571                                                  based on weight
5572                                                           collar
5573                                                             <NA>
5574                                                  based on weight
5575                                                           collar
5576                                              tablet/pill/capsule
5577                                                           collar
5578                                              tablet/pill/capsule
5579                                                             <NA>
5580                                                             <NA>
5581                                                             <NA>
5582                                                             <NA>
5583                                                             <NA>
5584                                                     pack/package
5585                                                             <NA>
5586                                                             <NA>
5587                                                             <NA>
5588                                                             <NA>
5589                                                             <NA>
5590                                                             <NA>
5591                                                             <NA>
5592                                                             <NA>
5593                                                             <NA>
5594                                                             <NA>
5595                                     based on weight (50-100 lbs)
5596                                                             <NA>
5597                                                             <NA>
5598                                                             <NA>
5599                                                             <NA>
5600                                                  based on weight
5601                                                  based on weight
5602                                                  based on weight
5603                                                             <NA>
5604                                                             <NA>
5605                                                             <NA>
5606                                                             <NA>
5607                                                             <NA>
5608                                                             <NA>
5609                                                             <NA>
5610                                                             <NA>
5611                                              tablet/pill/capsule
5612                                                             <NA>
5613                                                             <NA>
5614                                                             <NA>
5615                                                             <NA>
5616                                                             <NA>
5617                                                             <NA>
5618                                                             <NA>
5619                                                             <NA>
5620                                                             <NA>
5621                                                             <NA>
5622                                                             <NA>
5623                                                             <NA>
5624                                                             <NA>
5625                                                             <NA>
5626                                                  based on weight
5627                                                             <NA>
5628                                                             <NA>
5629                                                             <NA>
5630                                                             <NA>
5631                                                  based on weight
5632                                                  based on weight
5633                                                             <NA>
5634                                                             <NA>
5635                                                             <NA>
5636                                                             <NA>
5637                                                             <NA>
5638                                                             <NA>
5639                                                             <NA>
5640                                                             <NA>
5641                                                             <NA>
5642                                                             <NA>
5643                                                             <NA>
5644                                                             <NA>
5645                                                             <NA>
5646                                                             <NA>
5647                                                             <NA>
5648                                                             <NA>
5649                                                      billion cfu
5650                                                             <NA>
5651                                                             <NA>
5652                                                             <NA>
5653                                                             <NA>
5654                                                             <NA>
5655                                                             <NA>
5656                                                             <NA>
5657                                                             <NA>
5658                                                             <NA>
5659                                                             <NA>
5660                                                             <NA>
5661                                                             <NA>
5662                                                             <NA>
5663                                                             <NA>
5664                                                             <NA>
5665                                                             <NA>
5666                                                             <NA>
5667                                                             <NA>
5668                                                             <NA>
5669                                              tablet/pill/capsule
5670                                              tablet/pill/capsule
5671                                              tablet/pill/capsule
5672                                              tablet/pill/capsule
5673                                                             <NA>
5674                                                             <NA>
5675                                                             <NA>
5676                                              tablet/pill/capsule
5677                                              tablet/pill/capsule
5678                                                     pack/package
5679                                              tablet/pill/capsule
5680                                              tablet/pill/capsule
5681                                              tablet/pill/capsule
5682                                              tablet/pill/capsule
5683                                                             <NA>
5684                                                             <NA>
5685                                                             <NA>
5686                                                             <NA>
5687                                                             <NA>
5688                                                     pack/package
5689                                              tablet/pill/capsule
5690                                                             <NA>
5691                                                             <NA>
5692                                                             <NA>
5693                                                             <NA>
5694                                                             <NA>
5695                                                             <NA>
5696                                                             <NA>
5697                                                             <NA>
5698                                                             <NA>
5699                                                             <NA>
5700                                                             <NA>
5701                                                             <NA>
5702                                                             <NA>
5703                                                             <NA>
5704                                                             <NA>
5705                                                             <NA>
5706                                                             <NA>
5707                                                             <NA>
5708                                                             <NA>
5709                                                             <NA>
5710                                                             <NA>
5711                                                             <NA>
5712                                                             <NA>
5713                                                             <NA>
5714                                                             <NA>
5715                                                             <NA>
5716                                                             <NA>
5717                                                             <NA>
5718                                                             <NA>
5719                                                             <NA>
5720                                                             <NA>
5721                                                             <NA>
5722                                                             <NA>
5723                                                             <NA>
5724                                                             <NA>
5725                                                             <NA>
5726                                                             <NA>
5727                                                             <NA>
5728                                                             <NA>
5729                                                             <NA>
5730                                                             <NA>
5731                                                             <NA>
5732                                                             <NA>
5733                                                             <NA>
5734                                                             <NA>
5735                                                             <NA>
5736                                                             <NA>
5737                                                             <NA>
5738                                                             <NA>
5739                                                             <NA>
5740                                                             <NA>
5741                                                             <NA>
5742                                                             <NA>
5743                                                             <NA>
5744                                                             <NA>
5745                                                             <NA>
5746                                                             <NA>
5747                                              tablet/pill/capsule
5748                                              tablet/pill/capsule
5749                                                             <NA>
5750                                                             <NA>
5751                                                             <NA>
5752                                                             <NA>
5753                                                             <NA>
5754                                                             <NA>
5755                                                             <NA>
5756                                                             <NA>
5757                                                             <NA>
5758                                                             <NA>
5759                                                             <NA>
5760                                                  based on weight
5761                                                             <NA>
5762                                                             <NA>
5763                                                             <NA>
5764                                                             <NA>
5765                                                             <NA>
5766                                                             <NA>
5767                                                             <NA>
5768                                     based on weight (50-100 lbs)
5769                                                             <NA>
5770                                                             <NA>
5771                                                             <NA>
5772                                                             <NA>
5773                                                             <NA>
5774                                                             <NA>
5775                                                             <NA>
5776                                                             <NA>
5777                                                      unspecified
5778                                                             <NA>
5779                                                             <NA>
5780                                                             <NA>
5781                                                             <NA>
5782                                                             <NA>
5783                                                             <NA>
5784                                                             <NA>
5785                                                             <NA>
5786                                                             <NA>
5787                                                             <NA>
5788                                                             <NA>
5789                                                             <NA>
5790                                                             <NA>
5791                                                             <NA>
5792                                                             <NA>
5793                                                  based on weight
5794                                                  based on weight
5795                                                             <NA>
5796                                                             <NA>
5797                                                             <NA>
5798                                                             <NA>
5799                                                             <NA>
5800                                                             <NA>
5801                                                             <NA>
5802                                                             <NA>
5803                                                             <NA>
5804                                                             <NA>
5805                                                             <NA>
5806                                                             <NA>
5807                                                             <NA>
5808                                                             <NA>
5809                                              tablet/pill/capsule
5810                                                             tube
5811                                                             <NA>
5812                                                             <NA>
5813                                                     small amount
5814                                                             <NA>
5815                                                             <NA>
5816                                                             <NA>
5817                                                             <NA>
5818                                                             <NA>
5819                                                             <NA>
5820                                                             <NA>
5821                                                             <NA>
5822                                                             <NA>
5823                                                             <NA>
5824                                                             <NA>
5825                                                             <NA>
5826                                                             <NA>
5827                                                             <NA>
5828                                                             <NA>
5829                                              tablet/pill/capsule
5830                                              tablet/pill/capsule
5831                                                             <NA>
5832                                                             <NA>
5833                                                             <NA>
5834                                                             <NA>
5835                                                             <NA>
5836                                                             <NA>
5837                                                             <NA>
5838                                                             <NA>
5839                                                             <NA>
5840                                                             <NA>
5841                                                             <NA>
5842                                                             <NA>
5843                                                             <NA>
5844                                                             <NA>
5845                                                             <NA>
5846                                                             <NA>
5847                                                             <NA>
5848                                                             <NA>
5849                                                             <NA>
5850                                                            l/min
5851                                                             <NA>
5852                                                                %
5853                                                             <NA>
5854                                                             <NA>
5855                                                             <NA>
5856                                                             <NA>
5857                                                             <NA>
5858                                                       inch strip
5859                                                             <NA>
5860                                                             <NA>
5861                                                             <NA>
5862                                                                %
5863                                                             <NA>
5864                                                             <NA>
5865                                                             <NA>
5866                                                             <NA>
5867                                                                %
5868                                                             <NA>
5869                                                             <NA>
5870                                                             <NA>
5871                                                       inch strip
5872                                                  based on weight
5873                                                  based on weight
5874                                                             <NA>
5875                                                             <NA>
5876                                                             <NA>
5877                                                  based on weight
5878                                                             <NA>
5879                                                             <NA>
5880                                                             <NA>
5881                                                             <NA>
5882                                                             <NA>
5883                                                             <NA>
5884                                                      unspecified
5885                                                             <NA>
5886                                                             <NA>
5887                                                             <NA>
5888                                                             <NA>
5889                                                             <NA>
5890                                                  based on weight
5891                                                             <NA>
5892                                                             <NA>
5893                                                             <NA>
5894                                                             <NA>
5895                                                             <NA>
5896                                                  based on weight
5897                                                             <NA>
5898                                                             <NA>
5899                                                             <NA>
5900                                                             <NA>
5901                                                             <NA>
5902                                                             <NA>
5903                                                             <NA>
5904                                                             <NA>
5905                                                             <NA>
5906                                                             <NA>
5907                                                             <NA>
5908                                                             <NA>
5909                                                             <NA>
5910                                                             <NA>
5911                                                             <NA>
5912                                                             <NA>
5913                                              tablet/pill/capsule
5914                                                             <NA>
5915                                                             <NA>
5916                                                             <NA>
5917                                                             <NA>
5918                                                             <NA>
5919                                                             <NA>
5920                                                  based on weight
5921                                                             <NA>
5922                                                             <NA>
5923                                                             <NA>
5924                                                             <NA>
5925                                                  based on weight
5926                                                             <NA>
5927                                                             <NA>
5928                                                  based on weight
5929                                                             <NA>
5930                                                  based on weight
5931                                                  based on weight
5932                                                             <NA>
5933                                                  based on weight
5934                                                  based on weight
5935                                                             <NA>
5936                                                  based on weight
5937                                                  based on weight
5938                                                             <NA>
5939                                                             <NA>
5940                                                             <NA>
5941                                                  based on weight
5942                                                  based on weight
5943                                                            gm/ml
5944                                                             <NA>
5945                                                         wipe/pad
5946                                                             <NA>
5947                                                             <NA>
5948                                                             <NA>
5949                                                             <NA>
5950                                                             <NA>
5951                                                             <NA>
5952                                                             <NA>
5953                                                             <NA>
5954                                                             <NA>
5955                                                             <NA>
5956                                                             <NA>
5957                                                             <NA>
5958                                                             <NA>
5959                                                             <NA>
5960                                                             <NA>
5961                                                             <NA>
5962                                                             <NA>
5963                                                  based on weight
5964                                                  based on weight
5965                                                             <NA>
5966                                                             <NA>
5967                                                             <NA>
5968                                                             <NA>
5969                                                             <NA>
5970                                                             <NA>
5971                                                             <NA>
5972                                                             <NA>
5973                                                             <NA>
5974                                                             <NA>
5975                                                             <NA>
5976                                                             <NA>
5977                                                             <NA>
5978                                                             <NA>
5979                                                             <NA>
5980                                                  based on weight
5981                                              tablet/pill/capsule
5982                                                             <NA>
5983                                                             <NA>
5984                                                             <NA>
5985                                                  based on weight
5986                                                             <NA>
5987                                                             <NA>
5988                                                             <NA>
5989                                                             <NA>
5990                                                             <NA>
5991                                                  syringe/pipette
5992                                              tablet/pill/capsule
5993                                                             <NA>
5994                                                             <NA>
5995                                                             <NA>
5996                                              tablet/pill/capsule
5997                                              tablet/pill/capsule
5998                                              tablet/pill/capsule
5999                                                             <NA>
6000                                                             <NA>
6001                                                             <NA>
6002                                                                %
6003                                                             <NA>
6004                                                             <NA>
6005                                                             <NA>
6006                                                             <NA>
6007                                                             <NA>
6008                                                             <NA>
6009                                                             <NA>
6010                                                             <NA>
6011                                                             tube
6012                                                  based on weight
6013                                                             <NA>
6014                                                             <NA>
6015                                                             <NA>
6016                                                             <NA>
6017                                                             <NA>
6018                                                             <NA>
6019                                                             <NA>
6020                                                             <NA>
6021                                                             <NA>
6022                                                             <NA>
6023                                                             <NA>
6024                                                             <NA>
6025                                                             <NA>
6026                                                             <NA>
6027                                                             <NA>
6028                                                             <NA>
6029                                                             <NA>
6030                                                             <NA>
6031                                                             <NA>
6032                                                             <NA>
6033                                                             <NA>
6034                                                             <NA>
6035                                                             <NA>
6036                                                             <NA>
6037                                                             <NA>
6038                                              tablet/pill/capsule
6039                                     based on weight (50-100 lbs)
6040                                                             <NA>
6041                                                             <NA>
6042                                                             <NA>
6043                                                             <NA>
6044                                                             <NA>
6045                                                             <NA>
6046                                                            spray
6047                                                             <NA>
6048                                                             <NA>
6049                                                             <NA>
6050                                                             <NA>
6051                                                             <NA>
6052                                                             <NA>
6053                                                             <NA>
6054                                                             <NA>
6055                                                             <NA>
6056                                                             <NA>
6057                                                             <NA>
6058                                                             <NA>
6059                                                  based on weight
6060                                                  based on weight
6061                                                  based on weight
6062                                                             <NA>
6063                                                      as directed
6064                                                             <NA>
6065                                                             <NA>
6066                                                             <NA>
6067                                                             <NA>
6068                                                             <NA>
6069                                                      application
6070                                                             <NA>
6071                                     based on weight (50-100 lbs)
6072                                                      unspecified
6073                                                          monthly
6074                                                            spray
6075                                                             <NA>
6076                                                           collar
6077                                                             <NA>
6078                                                           collar
6079                                                             <NA>
6080                                              tablet/pill/capsule
6081                                                             <NA>
6082                                                             <NA>
6083                                                             <NA>
6084                                                             <NA>
6085                                                             <NA>
6086                                                             <NA>
6087                                                             <NA>
6088                                                  0.25 inch strip
6089                                                             <NA>
6090                                                  0.25 inch strip
6091                                                             <NA>
6092                                                             <NA>
6093                                     based on weight (50-100 lbs)
6094                                                             <NA>
6095                                                            spray
6096                                                             <NA>
6097                                                             <NA>
6098                                                             <NA>
6099                                                             <NA>
6100                                                             <NA>
6101                                                             <NA>
6102                                                             <NA>
6103                                                                %
6104                                                             <NA>
6105                                                             <NA>
6106                                                             <NA>
6107                                                             <NA>
6108                                                             <NA>
6109                                                             <NA>
6110                                                             <NA>
6111                                                             <NA>
6112                                                             <NA>
6113                                                             <NA>
6114                                                             <NA>
6115                                                             <NA>
6116                                                             <NA>
6117                                                             <NA>
6118                                                              meq
6119                                                             <NA>
6120                                                             <NA>
6121                                                             <NA>
6122                                                             <NA>
6123                                                             <NA>
6124                                                             <NA>
6125                                                             <NA>
6126                                                             <NA>
6127                                                             <NA>
6128                                                             <NA>
6129                                     based on weight (50-100 lbs)
6130                                     based on weight (60-120 lbs)
6131                                                             <NA>
6132                                              tablet/pill/capsule
6133                                              tablet/pill/capsule
6134                                                             <NA>
6135                                                             <NA>
6136                                              tablet/pill/capsule
6137                                              tablet/pill/capsule
6138                                                             <NA>
6139                                              tablet/pill/capsule
6140                                              tablet/pill/capsule
6141                                                        injection
6142                                                             <NA>
6143                                                             <NA>
6144                                                             <NA>
6145                                                             <NA>
6146                                                             <NA>
6147                                                             <NA>
6148                                                             <NA>
6149                                                             <NA>
6150                                                             <NA>
6151                                                             <NA>
6152                                                             <NA>
6153                                                             <NA>
6154                                                             <NA>
6155                                                             <NA>
6156                                                             <NA>
6157                                                             <NA>
6158                                                         wipe/pad
6159                                                             <NA>
6160                                                  based on weight
6161                                                             <NA>
6162                                                             <NA>
6163                                                             <NA>
6164                                                        as needed
6165                                                             <NA>
6166                                                             <NA>
6167                                                             <NA>
6168                                                             <NA>
6169                                                             <NA>
6170                                                             <NA>
6171                                                             <NA>
6172                                                             <NA>
6173                                                             <NA>
6174                                                             <NA>
6175                                                             <NA>
6176                                                             <NA>
6177                                                             <NA>
6178                                                             <NA>
6179                                                             <NA>
6180                                                             <NA>
6181                                                             <NA>
6182                                                             <NA>
6183                                                             <NA>
6184                                                             <NA>
6185                                                             <NA>
6186                                                             <NA>
6187                                                             <NA>
6188                                                             <NA>
6189                                                             <NA>
6190                                                             <NA>
6191                                                             <NA>
6192                                                             <NA>
6193                                                             <NA>
6194                                                             <NA>
6195                                                             <NA>
6196                                                             <NA>
6197                                                             <NA>
6198                                                             <NA>
6199                                                             <NA>
6200                                              tablet/pill/capsule
6201                                                             <NA>
6202                                              tablet/pill/capsule
6203                                                             <NA>
6204                                                         wipe/pad
6205                                                             <NA>
6206                                                           1 tube
6207                                                         wipe/pad
6208                                                             tube
6209                                                             <NA>
6210                                                             <NA>
6211                                                             <NA>
6212                                                             <NA>
6213                                                             <NA>
6214                                                             <NA>
6215                                                            spray
6216                                                             <NA>
6217                                                             <NA>
6218                                                           joules
6219                                                             <NA>
6220                                                             <NA>
6221                                                             <NA>
6222                                                             <NA>
6223                                                             <NA>
6224                                                  based on weight
6225                                                  based on weight
6226                                                  based on weight
6227                                                             <NA>
6228                                                             <NA>
6229                                                             tube
6230                                                             <NA>
6231                                                  based on weight
6232                                                  based on weight
6233                                                             <NA>
6234                                                             <NA>
6235                                                             <NA>
6236                                                             tube
6237                                                             <NA>
6238                                                             <NA>
6239                                                             <NA>
6240                                                             <NA>
6241                                                             <NA>
6242                                                             <NA>
6243                                                             <NA>
6244                                                             <NA>
6245                                                             <NA>
6246                                                             <NA>
6247                                                             <NA>
6248                                                             <NA>
6249                                                             <NA>
6250                                                             <NA>
6251                                                             <NA>
6252                                                             <NA>
6253                                                             <NA>
6254                                              tablet/pill/capsule
6255                                                             <NA>
6256                                              tablet/pill/capsule
6257                                                      application
6258                                              tablet/pill/capsule
6259                                                             <NA>
6260                                                             <NA>
6261                                                             <NA>
6262                                     based on weight (50-100 lbs)
6263                                      based on weight (24-60 lbs)
6264                                                             <NA>
6265                                                             <NA>
6266                                                             <NA>
6267                                                             <NA>
6268                                                             <NA>
6269                                                            mg/ml
6270                                                             <NA>
6271                                                             <NA>
6272                                                             <NA>
6273                                                             <NA>
6274                                                             <NA>
6275                                                      application
6276                                                             <NA>
6277                                                             <NA>
6278                                                             <NA>
6279                                                             <NA>
6280                                                             <NA>
6281                                                             <NA>
6282                                                             <NA>
6283                                                      application
6284                                                             <NA>
6285                                                             <NA>
6286                                                             <NA>
6287                                                             <NA>
6288                                                             <NA>
6289                                                             <NA>
6290                                                             <NA>
6291                                                             <NA>
6292                                                             <NA>
6293                                              tablet/pill/capsule
6294                                                             <NA>
6295                                                             <NA>
6296                                                             <NA>
6297                                                             <NA>
6298                                                             <NA>
6299                                                             <NA>
6300                                                             <NA>
6301                                                             <NA>
6302                                                             <NA>
6303                                                             <NA>
6304                                                             <NA>
6305                                                             <NA>
6306                                                             <NA>
6307                                                             <NA>
6308                                                             <NA>
6309                                                             <NA>
6310                                                             <NA>
6311                                                             <NA>
6312                                                             <NA>
6313                                                             <NA>
6314                                                             <NA>
6315                                                             <NA>
6316                                                             <NA>
6317                                                             <NA>
6318                                                             <NA>
6319                                                             <NA>
6320                                                             <NA>
6321                                                             <NA>
6322                                                             <NA>
6323                                                             <NA>
6324                                                             <NA>
6325                                                             <NA>
6326                                                      application
6327                                                             <NA>
6328                                                             <NA>
6329                                     based on weight (50-100 lbs)
6330                                                             <NA>
6331                                                  based on weight
6332                                              tablet/pill/capsule
6333                                                             <NA>
6334                                              tablet/pill/capsule
6335                                                             <NA>
6336                                                             <NA>
6337                                              tablet/pill/capsule
6338                                                             <NA>
6339                                                             <NA>
6340                                                             <NA>
6341                                              tablet/pill/capsule
6342                                                             <NA>
6343                                                             <NA>
6344                                                             <NA>
6345                                                             <NA>
6346                                                             <NA>
6347                                                             <NA>
6348                                                             <NA>
6349                                                             <NA>
6350                                                             <NA>
6351                                                             <NA>
6352                                                             <NA>
6353                                                             <NA>
6354                                                  based on weight
6355                                                             <NA>
6356                                                             <NA>
6357                                                             <NA>
6358                                                   shampoo/mousse
6359                                                             <NA>
6360                                                             <NA>
6361                                                             <NA>
6362                                                  based on weight
6363                                                             <NA>
6364                                                             <NA>
6365                                                             <NA>
6366                                                             tube
6367                                              tablet/pill/capsule
6368                                                             <NA>
6369                                                             <NA>
6370                                                             <NA>
6371                                                             <NA>
6372                                                             <NA>
6373                                                             <NA>
6374                                                             <NA>
6375                                                             <NA>
6376                                                             <NA>
6377                                                             <NA>
6378                                                             <NA>
6379                                                             <NA>
6380                                                             <NA>
6381                                                             <NA>
6382                                                             <NA>
6383                                                             <NA>
6384                                                             <NA>
6385                                                             <NA>
6386                                                            units
6387                                                             <NA>
6388                                                             <NA>
6389                                                             <NA>
6390                                                             <NA>
6391                                                             <NA>
6392                                                             <NA>
6393                                                             <NA>
6394                                                             <NA>
6395                                                  based on weight
6396                                                             <NA>
6397                                                             <NA>
6398                                                             <NA>
6399                                                             <NA>
6400                                                             <NA>
6401                                                             <NA>
6402                                                             <NA>
6403                                                             <NA>
6404                                                             <NA>
6405                                                  based on weight
6406                                                           collar
6407                                                             <NA>
6408                                                             <NA>
6409                                                             <NA>
6410                                                             <NA>
6411                                                             <NA>
6412                                                             <NA>
6413                                                             <NA>
6414                                                             <NA>
6415                                                             <NA>
6416                                                             <NA>
6417                                                             <NA>
6418                                                             <NA>
6419                                                             <NA>
6420                                                             <NA>
6421                                                             <NA>
6422                                                             <NA>
6423                                                             <NA>
6424                                                             <NA>
6425                                                             <NA>
6426                                                             <NA>
6427                                                             <NA>
6428                                                             <NA>
6429                                                             <NA>
6430                                                             <NA>
6431                                                             <NA>
6432                                                             <NA>
6433                                                             <NA>
6434                                                             <NA>
6435                                                             <NA>
6436                                                             <NA>
6437                                                             <NA>
6438                                                             <NA>
6439                                                             <NA>
6440                                              tablet/pill/capsule
6441                                                             <NA>
6442                                                             <NA>
6443                                                             <NA>
6444                                            1 tablet/pill/capsule
6445                                                             <NA>
6446                                                             <NA>
6447                                                             <NA>
6448                                                             <NA>
6449                                                             <NA>
6450                                                             <NA>
6451                                                      unspecified
6452                                                             <NA>
6453                                              tablet/pill/capsule
6454                                                             <NA>
6455                                                             <NA>
6456                                                             <NA>
6457                                              tablet/pill/capsule
6458                                                             <NA>
6459                                                             <NA>
6460                                                             <NA>
6461                                                             <NA>
6462                                                             <NA>
6463                                                             <NA>
6464                                                             <NA>
6465                                                             <NA>
6466                                                             <NA>
6467                                                             <NA>
6468                                                             <NA>
6469                                                             <NA>
6470                                                             <NA>
6471                                                             <NA>
6472                                                             <NA>
6473                                                             <NA>
6474                                              tablet/pill/capsule
6475                                            1 tablet/pill/capsule
6476                                                             <NA>
6477                                                             <NA>
6478                                                             <NA>
6479                                                             <NA>
6480                                              tablet/pill/capsule
6481                                                             <NA>
6482                                                             <NA>
6483                                                             <NA>
6484                                                             <NA>
6485                                                             <NA>
6486                                                             <NA>
6487                                                             <NA>
6488                                                             <NA>
6489                                                             <NA>
6490                                                             <NA>
6491                                                             <NA>
6492                                                             <NA>
6493                                                             <NA>
6494                                                             <NA>
6495                                                            drops
6496                                                             <NA>
6497                                                            drops
6498                                                             <NA>
6499                                              tablet/pill/capsule
6500                                                  based on weight
6501                                                             <NA>
6502                                                             <NA>
6503                                                             <NA>
6504                                                             <NA>
6505                                                             <NA>
6506                                                             <NA>
6507                                                             <NA>
6508                                                             <NA>
6509                                                             <NA>
6510                                                             <NA>
6511                                                                %
6512                                                             <NA>
6513                                                             <NA>
6514                                                                %
6515                                                             <NA>
6516                                                             <NA>
6517                                                                %
6518                                                             <NA>
6519                                                             <NA>
6520                                                             <NA>
6521                                                             <NA>
6522                                                  based on weight
6523                                                  based on weight
6524                                                             <NA>
6525                                                             <NA>
6526                                                             <NA>
6527                                                  based on weight
6528                                                  based on weight
6529                                                             <NA>
6530                                                             <NA>
6531                                                             <NA>
6532                                                             <NA>
6533                                                             <NA>
6534                                                             <NA>
6535                                                             <NA>
6536                                                             <NA>
6537                                                             <NA>
6538                                                             <NA>
6539                                                             <NA>
6540                                                             <NA>
6541                                                             <NA>
6542                                                             <NA>
6543                                                             <NA>
6544                                                             <NA>
6545                                                             <NA>
6546                                                             <NA>
6547                                                             <NA>
6548                                                             <NA>
6549                                                             <NA>
6550                                                             <NA>
6551                                                             <NA>
6552                                                             <NA>
6553                                                             <NA>
6554                                                             <NA>
6555                                                  based on weight
6556                                                             <NA>
6557                                                             <NA>
6558                                                             <NA>
6559                                                             <NA>
6560                                                             <NA>
6561                                                             <NA>
6562                                                     small amount
6563                                                             <NA>
6564                                                             <NA>
6565                                              tablet/pill/capsule
6566                                                             <NA>
6567                                                             <NA>
6568                                                             <NA>
6569                                              tablet/pill/capsule
6570                                                             tube
6571                                                      unspecified
6572                                                             <NA>
6573                                                      bottle/vial
6574                                                             <NA>
6575                                                             <NA>
6576                                                             <NA>
6577                                                             <NA>
6578                                                             <NA>
6579                                                  based on weight
6580                                                             <NA>
6581                                                      unspecified
6582                                                             <NA>
6583                                                             <NA>
6584                                                             <NA>
6585                                                             <NA>
6586                                                             <NA>
6587                                                             <NA>
6588                                                             <NA>
6589                                                             <NA>
6590                                                             <NA>
6591                                                             <NA>
6592                                                             <NA>
6593                                                             <NA>
6594                                     based on weight (50-100 lbs)
6595                                                             <NA>
6596                                                             <NA>
6597                                                             <NA>
6598                                                             <NA>
6599                                                             <NA>
6600                                                             <NA>
6601                                                             <NA>
6602                                            1 tablet/pill/capsule
6603                                                             <NA>
6604                                                             <NA>
6605                                                             <NA>
6606                                       1-2 tablets/pills/capsules
6607                                                             <NA>
6608                                                             <NA>
6609                                                             <NA>
6610                                                             <NA>
6611                                                             <NA>
6612                                              tablet/pill/capsule
6613                                                             <NA>
6614                                                             <NA>
6615                                                             <NA>
6616                                                             <NA>
6617                                                             <NA>
6618                                                             <NA>
6619                                                             <NA>
6620                                                             <NA>
6621                                                             <NA>
6622                                                             <NA>
6623                                                             <NA>
6624                                                             <NA>
6625                                            1 tablet/pill/capsule
6626                                                             <NA>
6627                                                             <NA>
6628                                                             <NA>
6629                                                             <NA>
6630                                                             <NA>
6631                                                             <NA>
6632                                                             <NA>
6633                                              tablet/pill/capsule
6634                                                             <NA>
6635                                                             <NA>
6636                                              tablet/pill/capsule
6637                                                             <NA>
6638                                                             <NA>
6639                                                  based on weight
6640                                                             <NA>
6641                                                             <NA>
6642                                                             <NA>
6643                                                             <NA>
6644                                                  based on weight
6645                                                             <NA>
6646                                              tablet/pill/capsule
6647                                            1 tablet/pill/capsule
6648                                            1 tablet/pill/capsule
6649                                                             <NA>
6650                                                             <NA>
6651                                                             <NA>
6652                                                             <NA>
6653                                                             <NA>
6654                                                             <NA>
6655                                                             <NA>
6656                                                             <NA>
6657                                            1 tablet/pill/capsule
6658                                              tablet/pill/capsule
6659                                                             <NA>
6660                                                             <NA>
6661                                                             <NA>
6662                                     based on weight (50-100 lbs)
6663                                              tablet/pill/capsule
6664                                                             <NA>
6665                                                             <NA>
6666                                                             <NA>
6667                                                             <NA>
6668                                                             <NA>
6669                                                             <NA>
6670                                              tablet/pill/capsule
6671                                                             <NA>
6672                                                             <NA>
6673                                                             <NA>
6674                                                  based on weight
6675                                                  based on weight
6676                                                  based on weight
6677                                                             <NA>
6678                                                             <NA>
6679                                                             <NA>
6680                                                  based on weight
6681                                                             <NA>
6682                                                             <NA>
6683                                                     small amount
6684                                                             <NA>
6685                                                             <NA>
6686                                                             <NA>
6687                                                  based on weight
6688                                                  based on weight
6689                                                             <NA>
6690                                                             <NA>
6691                                                             <NA>
6692                                                             <NA>
6693                                            1 tablet/pill/capsule
6694                                                             <NA>
6695                                                             <NA>
6696                                                  based on weight
6697                                                             <NA>
6698                                              tablet/pill/capsule
6699                                                             <NA>
6700                                                             <NA>
6701                                                             <NA>
6702                                              tablet/pill/capsule
6703                                                             <NA>
6704                                                             <NA>
6705                                                             <NA>
6706                                                             <NA>
6707                                                             <NA>
6708                                                             <NA>
6709                                                             <NA>
6710                                                             <NA>
6711                                                             <NA>
6712                                                             <NA>
6713                                                             <NA>
6714                                                             <NA>
6715                                      based on weight (26-50 lbs)
6716                                                      unspecified
6717                                                      unspecified
6718                                                             <NA>
6719                                                             <NA>
6720                                                             <NA>
6721                                                             <NA>
6722                                                             <NA>
6723                                                             <NA>
6724                                                             <NA>
6725                                                             <NA>
6726                                              tablet/pill/capsule
6727                                              tablet/pill/capsule
6728                                                             <NA>
6729                                                             <NA>
6730                                                             <NA>
6731                                                             <NA>
6732                                                             <NA>
6733                                                             <NA>
6734                                                             <NA>
6735                                                             <NA>
6736                                                             <NA>
6737                                                             <NA>
6738                                                             <NA>
6739                                                             <NA>
6740                                                             <NA>
6741                                                             <NA>
6742                                                             <NA>
6743                                                             <NA>
6744                                                             <NA>
6745                                                             <NA>
6746                                                             <NA>
6747                                                             <NA>
6748                                                             <NA>
6749                                                             <NA>
6750                                                             <NA>
6751                                                             <NA>
6752                                                             <NA>
6753                                                             <NA>
6754                                                             <NA>
6755                                                             <NA>
6756                                                             <NA>
6757                                                             <NA>
6758                                                             <NA>
6759                                                             <NA>
6760                                        based on weight (51+ lbs)
6761                                                             <NA>
6762                                                             <NA>
6763                                                             <NA>
6764                                                  based on weight
6765                                                             <NA>
6766                                                             <NA>
6767                                                             <NA>
6768                                                             <NA>
6769                                                             <NA>
6770                                                     pack/package
6771                                              tablet/pill/capsule
6772                                                             <NA>
6773                                                             <NA>
6774                                              tablet/pill/capsule
6775                                              tablet/pill/capsule
6776                                                  0.25 inch strip
6777                                                             <NA>
6778                                              tablet/pill/capsule
6779                                              tablet/pill/capsule
6780                                                             <NA>
6781                                              tablet/pill/capsule
6782                                                             <NA>
6783                                              tablet/pill/capsule
6784                                                             <NA>
6785                                                             <NA>
6786                                                             <NA>
6787                                                             <NA>
6788                                                             <NA>
6789                                                             <NA>
6790                                                             <NA>
6791                                                             <NA>
6792                                                             <NA>
6793                                                             <NA>
6794                                                             <NA>
6795                                     based on weight (50-100 lbs)
6796                                                  based on weight
6797                                                             <NA>
6798                                                             <NA>
6799                                                             <NA>
6800                                                             <NA>
6801                                                             <NA>
6802                                                             <NA>
6803                                                             <NA>
6804                                              tablet/pill/capsule
6805                                                             <NA>
6806                                                             <NA>
6807                                                             <NA>
6808                                                             <NA>
6809                                                             <NA>
6810                                                             <NA>
6811                                                             <NA>
6812                                                             <NA>
6813                                                             <NA>
6814                                                             <NA>
6815                                                             <NA>
6816                                                       inch strip
6817                                                       inch strip
6818                                                             <NA>
6819                                                             <NA>
6820                                                             <NA>
6821                                                             <NA>
6822                                                             <NA>
6823                                                             <NA>
6824                                                             <NA>
6825                                                             <NA>
6826                                                             <NA>
6827                                                             <NA>
6828                                                             dose
6829                                                             <NA>
6830                                                             <NA>
6831                                                             <NA>
6832                                                             <NA>
6833                                                             <NA>
6834                                                             <NA>
6835                                                             <NA>
6836                                                             <NA>
6837                                                            spray
6838                                                             <NA>
6839                                                             <NA>
6840                                                             <NA>
6841                                                             <NA>
6842                                                             <NA>
6843                                                             <NA>
6844                                                             <NA>
6845                                                             <NA>
6846                                                             <NA>
6847                                                             <NA>
6848                                                             <NA>
6849                                                             <NA>
6850                                                             <NA>
6851                                                             <NA>
6852                                                             <NA>
6853                                                             <NA>
6854                                                  based on weight
6855                                                             <NA>
6856                                                             <NA>
6857                                                             <NA>
6858                                                             <NA>
6859                                                             <NA>
6860                                                             <NA>
6861                                                             <NA>
6862                                                         titrated
6863                                                             <NA>
6864                                                             <NA>
6865                                                             <NA>
6866                                                             <NA>
6867                                                             <NA>
6868                                                         inhalant
6869                                                             <NA>
6870                                                     small amount
6871                                                             <NA>
6872                                                             <NA>
6873                                                     pack/package
6874                                                             <NA>
6875                                                             <NA>
6876                                                             <NA>
6877                                                             <NA>
6878                                                             <NA>
6879                                                             <NA>
6880                                                         inhalant
6881                                                             <NA>
6882                                                             <NA>
6883                                                             <NA>
6884                                                             <NA>
6885                                                             <NA>
6886                                                  moderate amount
6887                                                             <NA>
6888                                                     pack/package
6889                                                             <NA>
6890                                                             <NA>
6891                                                      application
6892                                                     small amount
6893                                                             <NA>
6894                                                             <NA>
6895                                                             <NA>
6896                                                             <NA>
6897                                                             <NA>
6898                                                  based on weight
6899                                                      bottle/vial
6900                                                             <NA>
6901                                                             <NA>
6902                                                             <NA>
6903                                                             <NA>
6904                                                             <NA>
6905                                                             <NA>
6906                                              tablet/pill/capsule
6907                                                             <NA>
6908                                                             1 ml
6909                                              tablet/pill/capsule
6910                                              tablet/pill/capsule
6911                                                             <NA>
6912                                                             <NA>
6913                                                             <NA>
6914                                                             <NA>
6915                                                             <NA>
6916                                                             <NA>
6917                                                             <NA>
6918                                                             <NA>
6919                                                             <NA>
6920                                                             <NA>
6921                                                             <NA>
6922                                                             <NA>
6923                                                             <NA>
6924                                                             <NA>
6925                                                             <NA>
6926                                                             <NA>
6927                                                             <NA>
6928                                                   shampoo/mousse
6929                                                             <NA>
6930                                                             <NA>
6931                                                           collar
6932                                                             <NA>
6933                                                             <NA>
6934                                                             <NA>
6935                                                             <NA>
6936                                                             <NA>
6937                                                             <NA>
6938                                                  based on weight
6939                                                             <NA>
6940                                                             <NA>
6941                                                             <NA>
6942                                                             <NA>
6943                                                             <NA>
6944                                                             <NA>
6945                                                             <NA>
6946                                                             <NA>
6947                                                             <NA>
6948                                                             <NA>
6949                                                             <NA>
6950                                                             <NA>
6951                                                             <NA>
6952                                                             <NA>
6953                                                             <NA>
6954                                                             <NA>
6955                                                             <NA>
6956                                                             <NA>
6957                                                  based on weight
6958                                                             <NA>
6959                                                             <NA>
6960                                                             <NA>
6961                                                             <NA>
6962                                                             <NA>
6963                                                             <NA>
6964                                                             <NA>
6965                                                             <NA>
6966                                                             <NA>
6967                                                             <NA>
6968                                                             <NA>
6969                                                             <NA>
6970                                                             <NA>
6971                                                             <NA>
6972                                                             <NA>
6973                                                             <NA>
6974                                                             <NA>
6975                                                             <NA>
6976                                                             <NA>
6977                                                             <NA>
6978                                                             <NA>
6979                                                             <NA>
6980                                                             <NA>
6981                                              tablet/pill/capsule
6982                                              tablet/pill/capsule
6983                                              tablet/pill/capsule
6984                                              tablet/pill/capsule
6985                                                             <NA>
6986                                                             <NA>
6987                                                             <NA>
6988                                                             <NA>
6989                                                             <NA>
6990                                                             <NA>
6991                                              tablet/pill/capsule
6992                                                  based on weight
6993                                                             <NA>
6994                                                             <NA>
6995                                                  based on weight
6996                                                             <NA>
6997                                                             <NA>
6998                                                  based on weight
6999                                                             tube
7000                                                             <NA>
7001                                                             <NA>
7002                                                             <NA>
7003                                                             <NA>
7004                                                             <NA>
7005                                                             <NA>
7006                                                             <NA>
7007                                                             <NA>
7008                                                             <NA>
7009                                                             <NA>
7010                                                             <NA>
7011                                                             <NA>
7012                                                             <NA>
7013                                                             <NA>
7014                                                             <NA>
7015                                                             <NA>
7016                                                             <NA>
7017                                              tablet/pill/capsule
7018                                                             <NA>
7019                                                             <NA>
7020                                                             <NA>
7021                                              tablet/pill/capsule
7022                                                             <NA>
7023                                                             <NA>
7024                                                             <NA>
7025                                                             <NA>
7026                                                             <NA>
7027                                                             <NA>
7028                                                             <NA>
7029                                                             <NA>
7030                                                             <NA>
7031                                                             <NA>
7032                                                             <NA>
7033                                                             <NA>
7034                                                             <NA>
7035                                                             <NA>
7036                                                             <NA>
7037                                                             <NA>
7038                                                             <NA>
7039                                                             <NA>
7040                                                             <NA>
7041                                                             <NA>
7042                                                             <NA>
7043                                                             <NA>
7044                                                             <NA>
7045                                                             <NA>
7046                                                             <NA>
7047                                                             <NA>
7048                                                             <NA>
7049                                                             <NA>
7050                                                             <NA>
7051                                                             <NA>
7052                                                             <NA>
7053                                                             <NA>
7054                                                             <NA>
7055                                                             <NA>
7056                                                             <NA>
7057                                                             <NA>
7058                                                             <NA>
7059                                                             <NA>
7060                                                             <NA>
7061                                                             <NA>
7062                                                             <NA>
7063                                                             <NA>
7064                                                  based on weight
7065                                                  based on weight
7066                                              tablet/pill/capsule
7067                                                  based on weight
7068                                              tablet/pill/capsule
7069                                                             <NA>
7070                                                             <NA>
7071                                                             <NA>
7072                                                             <NA>
7073                                                             <NA>
7074                                                             pump
7075                                                             <NA>
7076                                                             pump
7077                                                             <NA>
7078                                                             <NA>
7079                                                             <NA>
7080                                                             <NA>
7081                                                             <NA>
7082                                                             <NA>
7083                                                             <NA>
7084                                                             <NA>
7085                                                             <NA>
7086                                                             <NA>
7087                                                             <NA>
7088                                              tablet/pill/capsule
7089                                                             <NA>
7090                                                             <NA>
7091                                                             <NA>
7092                                                            spray
7093                                              tablet/pill/capsule
7094                                                             <NA>
7095                                                             <NA>
7096                                                             <NA>
7097                                                             <NA>
7098                                                             <NA>
7099                                                             <NA>
7100                                                             <NA>
7101                                                             <NA>
7102                                                             <NA>
7103                                                             <NA>
7104                                                             <NA>
7105                                                             <NA>
7106                                                             <NA>
7107                                                             <NA>
7108                                                             <NA>
7109                                                             <NA>
7110                                                             <NA>
7111                                                             <NA>
7112                                                             <NA>
7113                                                             <NA>
7114                                                             <NA>
7115                                                             <NA>
7116                                                             <NA>
7117                                                             <NA>
7118                                                             <NA>
7119                                                             <NA>
7120                                                             <NA>
7121                                                             <NA>
7122                                                             <NA>
7123                                                             <NA>
7124                                                             <NA>
7125                                                             <NA>
7126                                                             <NA>
7127                                                             <NA>
7128                                                             <NA>
7129                                                             <NA>
7130                                                             <NA>
7131                                                             <NA>
7132                                                             <NA>
7133                                                             <NA>
7134                                                             <NA>
7135                                                             <NA>
7136                                                             <NA>
7137                                                            scoop
7138                                                             <NA>
7139                                                             <NA>
7140                                                             <NA>
7141                                                             <NA>
7142                                                             <NA>
7143                                                             <NA>
7144                                                             <NA>
7145                                                             <NA>
7146                                              tablet/pill/capsule
7147                                                             <NA>
7148                                                             <NA>
7149                                            1 tablet/pill/capsule
7150                                                             <NA>
7151                                                         ointment
7152                                                   1 pack/package
7153                                                     small amount
7154                                                           liquid
7155                                                           powder
7156                                                             <NA>
7157                                                             <NA>
7158                                                             <NA>
7159                                                             <NA>
7160                                              tablet/pill/capsule
7161                                                             <NA>
7162                                                             puff
7163                                                             <NA>
7164                                              tablet/pill/capsule
7165                                              tablet/pill/capsule
7166                                              tablet/pill/capsule
7167                                              tablet/pill/capsule
7168                                                            spray
7169                                                             <NA>
7170                                                             <NA>
7171                                                             <NA>
7172                                                           powder
7173                                                         wipe/pad
7174                                                             <NA>
7175                                                             <NA>
7176                                                             <NA>
7177                                                             <NA>
7178                                                             <NA>
7179                                              tablet/pill/capsule
7180                                                             pump
7181                                                             <NA>
7182                                                             <NA>
7183                                                             <NA>
7184                                                             <NA>
7185                                                             <NA>
7186                                                             <NA>
7187                                                             <NA>
7188                                                             <NA>
7189                                                            spray
7190                                                             <NA>
7191                                                             <NA>
7192                                                             <NA>
7193                                                             <NA>
7194                                                             <NA>
7195                                                             <NA>
7196                                                             <NA>
7197                                                            spray
7198                                                               gm
7199                                              tablet/pill/capsule
7200                                                             <NA>
7201                                                             <NA>
7202                                                            spray
7203                                     based on weight (60-120 lbs)
7204                                              tablet/pill/capsule
7205                                                             <NA>
7206                                                             <NA>
7207                                                             <NA>
7208                                                  0.25 inch strip
7209                                                             <NA>
7210                                                             <NA>
7211                                                             <NA>
7212                                                     small amount
7213                                                             <NA>
7214                                                             <NA>
7215                                                             <NA>
7216                                                             <NA>
7217                                                             <NA>
7218                                                             <NA>
7219                                                  based on weight
7220                                                             <NA>
7221                                                             <NA>
7222                                                             <NA>
7223                                                             <NA>
7224                                                             <NA>
7225                                                             <NA>
7226                                                             <NA>
7227                                              tablet/pill/capsule
7228                                                             <NA>
7229                                                             <NA>
7230                                                             <NA>
7231                                                             <NA>
7232                                                             <NA>
7233                                                             <NA>
7234                                                             <NA>
7235                                                             <NA>
7236                                                             <NA>
7237                                                             <NA>
7238                                                             <NA>
7239                                                             <NA>
7240                                                             <NA>
7241                                                             <NA>
7242                                                             <NA>
7243                                                             <NA>
7244                                                             <NA>
7245                                                             <NA>
7246                                                             <NA>
7247                                              tablet/pill/capsule
7248                                              tablet/pill/capsule
7249                                              tablet/pill/capsule
7250                                                             <NA>
7251                                                             <NA>
7252                                                             <NA>
7253                                                             <NA>
7254                                                             <NA>
7255                                                             <NA>
7256                                                             <NA>
7257                                                             <NA>
7258                                                             <NA>
7259                                                             <NA>
7260                                              tablet/pill/capsule
7261                                              tablet/pill/capsule
7262                                              tablet/pill/capsule
7263                                                             <NA>
7264                                              tablet/pill/capsule
7265                                              tablet/pill/capsule
7266                                                             <NA>
7267                                              tablet/pill/capsule
7268                                              tablet/pill/capsule
7269                                              tablet/pill/capsule
7270                                              tablet/pill/capsule
7271                                                             <NA>
7272                                              tablet/pill/capsule
7273                                              tablet/pill/capsule
7274                                              tablet/pill/capsule
7275                                              tablet/pill/capsule
7276                                                             <NA>
7277                                                             <NA>
7278                                                             <NA>
7279                                                             <NA>
7280                                                             <NA>
7281                                                             <NA>
7282                                                             <NA>
7283                                                             <NA>
7284                                                             <NA>
7285                                                             <NA>
7286                                                             <NA>
7287                                                             <NA>
7288                                                             <NA>
7289                                                             <NA>
7290                                                             <NA>
7291                                              tablet/pill/capsule
7292                                                             <NA>
7293                                                  syringe/pipette
7294                                                             <NA>
7295                                              tablet/pill/capsule
7296                                                             <NA>
7297                                         2 tablets/pills/capsules
7298                                                             <NA>
7299                                                             <NA>
7300                                                             <NA>
7301                                                             <NA>
7302                                                             <NA>
7303                                                             <NA>
7304                                                             <NA>
7305                                                             <NA>
7306                                                             <NA>
7307                                                             <NA>
7308                                                             <NA>
7309                                                             <NA>
7310                                                             <NA>
7311                                                             <NA>
7312                                                             <NA>
7313                                                             <NA>
7314                                                             <NA>
7315                                                             <NA>
7316                                                             <NA>
7317                                                             <NA>
7318                                                             <NA>
7319                                                             <NA>
7320                                                  based on weight
7321                                                             <NA>
7322                                                             <NA>
7323                                                             <NA>
7324                                                             <NA>
7325                                                     small amount
7326                                                             <NA>
7327                                                             <NA>
7328                                                             <NA>
7329                                                             <NA>
7330                                                             <NA>
7331                                                             <NA>
7332                                                             <NA>
7333                                                             <NA>
7334                                                             <NA>
7335                                                             <NA>
7336                                                             <NA>
7337                                      based on weight (25-50 lbs)
7338                                      based on weight (22-44 lbs)
7339                                                  syringe/pipette
7340                                              tablet/pill/capsule
7341                                                      unspecified
7342                                                  syringe/pipette
7343                                                  syringe/pipette
7344                                                      unspecified
7345                                                      unspecified
7346                                                             <NA>
7347                                                             <NA>
7348                                                             <NA>
7349                                                             <NA>
7350                                                             <NA>
7351                                                             <NA>
7352                                                             <NA>
7353                                                             <NA>
7354                                                             <NA>
7355                                                             <NA>
7356                                                             <NA>
7357                                                             <NA>
7358                                                             <NA>
7359                                                             <NA>
7360                                                             <NA>
7361                                                             <NA>
7362                                                             <NA>
7363                                                             <NA>
7364                                                             <NA>
7365                                                             <NA>
7366                                                             <NA>
7367                                                             <NA>
7368                                                             <NA>
7369                                                             <NA>
7370                                                             <NA>
7371                                                     small amount
7372                                                             <NA>
7373                                                             <NA>
7374                                                             <NA>
7375                                                             <NA>
7376                                                             <NA>
7377                                                             <NA>
7378                                                             <NA>
7379                                                             <NA>
7380                                                                %
7381                                                             <NA>
7382                                                             <NA>
7383                                                             <NA>
7384                                                             <NA>
7385                                                             <NA>
7386                                                             <NA>
7387                                                             <NA>
7388                                                             <NA>
7389                                                             <NA>
7390                                                             <NA>
7391                                                             <NA>
7392                                                             <NA>
7393                                                             <NA>
7394                                                             <NA>
7395                                                             <NA>
7396                                              tablet/pill/capsule
7397                                                             <NA>
7398                                                             <NA>
7399                                                             <NA>
7400                                                             <NA>
7401                                                             <NA>
7402                                                             <NA>
7403                                                             <NA>
7404                                                             <NA>
7405                                                             <NA>
7406                                                             <NA>
7407                                                             <NA>
7408                                                             <NA>
7409                                                             <NA>
7410                                                             <NA>
7411                                                             <NA>
7412                                                             <NA>
7413                                                  based on weight
7414                                                             <NA>
7415                                                             <NA>
7416                                                             <NA>
7417                                                             <NA>
7418                                                             <NA>
7419                                                             <NA>
7420                                                             <NA>
7421                                                             <NA>
7422                                                             <NA>
7423                                                             <NA>
7424                                                             <NA>
7425                                                             <NA>
7426                                                             <NA>
7427                                                             <NA>
7428                                                             <NA>
7429                                                             <NA>
7430                                                             <NA>
7431                                                             <NA>
7432                                                             <NA>
7433                                                             <NA>
7434                                                             <NA>
7435                                                             <NA>
7436                                                             <NA>
7437                                                             <NA>
7438                                                             <NA>
7439                                                             <NA>
7440                                                                %
7441                                                             <NA>
7442                                                             <NA>
7443                                                             <NA>
7444                                                             <NA>
7445                                                             <NA>
7446                                                             <NA>
7447                                                             <NA>
7448                                                             <NA>
7449                                                             <NA>
7450                                                             <NA>
7451                                                             <NA>
7452                                                             <NA>
7453                                                             <NA>
7454                                                             <NA>
7455                                                             <NA>
7456                                                             <NA>
7457                                                             <NA>
7458                                                             <NA>
7459                                                             <NA>
7460                                                             <NA>
7461                                                             <NA>
7462                                                             <NA>
7463                                                             <NA>
7464                                                             <NA>
7465                                                             <NA>
7466                                                             <NA>
7467                                                             <NA>
7468                                                             <NA>
7469                                                             <NA>
7470                                                             <NA>
7471                                                             <NA>
7472                                                             <NA>
7473                                                             <NA>
7474                                                             <NA>
7475                                                             tube
7476                                                             <NA>
7477                                                             <NA>
7478                                                             <NA>
7479                                                             <NA>
7480                                                             <NA>
7481                                                             <NA>
7482                                                             <NA>
7483                                                             <NA>
7484                                                             <NA>
7485                                                             <NA>
7486                                                             <NA>
7487                                                             <NA>
7488                                                             <NA>
7489                                                             <NA>
7490                                                             <NA>
7491                                                             <NA>
7492                                                             <NA>
7493                                                             <NA>
7494                                                             <NA>
7495                                                             <NA>
7496                                                             <NA>
7497                                                             <NA>
7498                                                             <NA>
7499                                                             <NA>
7500                                                             <NA>
7501                                                             <NA>
7502                                                             <NA>
7503                                              tablet/pill/capsule
7504                                                             <NA>
7505                                                             <NA>
7506                                                             <NA>
7507                                                             <NA>
7508                                                             <NA>
7509                                                             <NA>
7510                                              tablet/pill/capsule
7511                                              tablet/pill/capsule
7512                                              tablet/pill/capsule
7513                                              tablet/pill/capsule
7514                                                             <NA>
7515                                              tablet/pill/capsule
7516                                              tablet/pill/capsule
7517                                                             <NA>
7518                                                             <NA>
7519                                                             <NA>
7520                                                             <NA>
7521                                                      combination
7522                                                             <NA>
7523                                                             <NA>
7524                                                      unspecified
7525                                                             <NA>
7526                                                             <NA>
7527                                                             <NA>
7528                                                             <NA>
7529                                                             <NA>
7530                                                             <NA>
7531                                              tablet/pill/capsule
7532                                                             <NA>
7533                                                             <NA>
7534                                                             <NA>
7535                                                             <NA>
7536                                                             <NA>
7537                                                             <NA>
7538                                                             <NA>
7539                                                             <NA>
7540                                                             <NA>
7541                                                             <NA>
7542                                                             <NA>
7543                                                             <NA>
7544                                                             <NA>
7545                                                             <NA>
7546                                                             <NA>
7547                                                             <NA>
7548                                                             <NA>
7549                                                             <NA>
7550                                                             <NA>
7551                                            1 tablet/pill/capsule
7552                                                             <NA>
7553                                                             <NA>
7554                                                             <NA>
7555                                              tablet/pill/capsule
7556                                                             <NA>
7557                                                             <NA>
7558                                     based on weight (50-100 lbs)
7559                                        based on weight (55+ lbs)
7560                                                             <NA>
7561                                                             <NA>
7562                                                             <NA>
7563                                              tablet/pill/capsule
7564                                                             <NA>
7565                                                             <NA>
7566                                     based on weight (50-100 lbs)
7567                                                             <NA>
7568                                                             <NA>
7569                                                             <NA>
7570                                                             <NA>
7571                                                             <NA>
7572                                                             <NA>
7573                                                             <NA>
7574                                                             <NA>
7575                                                             <NA>
7576                                                             <NA>
7577                                                             <NA>
7578                                                             <NA>
7579                                                             <NA>
7580                                                             <NA>
7581                                                             <NA>
7582                                                             <NA>
7583                                     based on weight (50-100 lbs)
7584                                                             <NA>
7585                                                             <NA>
7586                                                             <NA>
7587                                                             <NA>
7588                                                             <NA>
7589                                                             <NA>
7590                                                             <NA>
7591                                                             <NA>
7592                                                             <NA>
7593                                                             <NA>
7594                                                             <NA>
7595                                                             <NA>
7596                                              tablet/pill/capsule
7597                                                             <NA>
7598                                                         wipe/pad
7599                                              tablet/pill/capsule
7600                                              tablet/pill/capsule
7601                                              tablet/pill/capsule
7602                                              tablet/pill/capsule
7603                                              tablet/pill/capsule
7604                                                             <NA>
7605                                                             <NA>
7606                                              tablet/pill/capsule
7607                                                             tube
7608                                                             <NA>
7609                                                             <NA>
7610                                                             <NA>
7611                                                             <NA>
7612                                                             <NA>
7613                                                             <NA>
7614                                                             <NA>
7615                                                             <NA>
7616                                                             <NA>
7617                                                             <NA>
7618                                                             <NA>
7619                                                             <NA>
7620                                                             <NA>
7621                                                             <NA>
7622                                              tablet/pill/capsule
7623                                              tablet/pill/capsule
7624                                              tablet/pill/capsule
7625                                              tablet/pill/capsule
7626                                              tablet/pill/capsule
7627                                              tablet/pill/capsule
7628                                              tablet/pill/capsule
7629                                              tablet/pill/capsule
7630                                              tablet/pill/capsule
7631                                              tablet/pill/capsule
7632                                              tablet/pill/capsule
7633                                                             <NA>
7634                                              tablet/pill/capsule
7635                                                             <NA>
7636                                                             <NA>
7637                                                             <NA>
7638                                              tablet/pill/capsule
7639                                                             <NA>
7640                                                             <NA>
7641                                                             <NA>
7642                                              tablet/pill/capsule
7643                                              tablet/pill/capsule
7644                                              tablet/pill/capsule
7645                                              tablet/pill/capsule
7646                                                             <NA>
7647                                              tablet/pill/capsule
7648                                                             <NA>
7649                                                             <NA>
7650                                                             <NA>
7651                                              tablet/pill/capsule
7652                                              tablet/pill/capsule
7653                                              tablet/pill/capsule
7654                                              tablet/pill/capsule
7655                                              tablet/pill/capsule
7656                                              tablet/pill/capsule
7657                                                             <NA>
7658                                              tablet/pill/capsule
7659                                              tablet/pill/capsule
7660                                     based on weight (50-100 lbs)
7661                                                             <NA>
7662                                                             <NA>
7663                                                             <NA>
7664                                                             <NA>
7665                                                             <NA>
7666                                                             <NA>
7667                                                             <NA>
7668                                                             <NA>
7669                                                             <NA>
7670                                                             <NA>
7671                                                             <NA>
7672                                                             <NA>
7673                                                      unspecified
7674                                                      unspecified
7675                                                             <NA>
7676                                                             <NA>
7677                                                             <NA>
7678                                                  0.25 inch strip
7679                                                           1 pump
7680                                                             <NA>
7681                                                             <NA>
7682                                                  based on weight
7683                                                  based on weight
7684                                                  based on weight
7685                                                             <NA>
7686                                                             <NA>
7687                                                             <NA>
7688                                                             <NA>
7689                                                             <NA>
7690                                                             <NA>
7691                                                             <NA>
7692                                                             <NA>
7693                                                             <NA>
7694                                                                %
7695                                                             <NA>
7696                                                             <NA>
7697                                                             <NA>
7698                                                             <NA>
7699                                                             <NA>
7700                                                             <NA>
7701                                                             <NA>
7702                                                             <NA>
7703                                                             <NA>
7704                                                             <NA>
7705                                                            daily
7706                                                             <NA>
7707                                                             <NA>
7708                                                             <NA>
7709                                                             <NA>
7710                                                             <NA>
7711                                                             <NA>
7712                                                             <NA>
7713                                                             <NA>
7714                                                             <NA>
7715                                                             <NA>
7716                                                             <NA>
7717                                                             <NA>
7718                                                             <NA>
7719                                                             <NA>
7720                                                             <NA>
7721                                                             <NA>
7722                                                             <NA>
7723                                                             <NA>
7724                                                             <NA>
7725                                                             <NA>
7726                                                             <NA>
7727                                                             <NA>
7728                                                             <NA>
7729                                                             <NA>
7730                                                             <NA>
7731                                                             <NA>
7732                                      based on weight (25-50 lbs)
7733                                                             <NA>
7734                                                             <NA>
7735                                                             <NA>
7736                                                             <NA>
7737                                                             <NA>
7738                                                             <NA>
7739                                                             <NA>
7740                                                             <NA>
7741                                                             <NA>
7742                                                             <NA>
7743                                                             <NA>
7744                                                  based on weight
7745                                                  based on weight
7746                                              tablet/pill/capsule
7747                                                      application
7748                                                             <NA>
7749                                                             <NA>
7750                                                             <NA>
7751                                                             <NA>
7752                                                            scoop
7753                                                            scoop
7754                                                             <NA>
7755                                                             <NA>
7756                                                             <NA>
7757                                                             <NA>
7758                                                             <NA>
7759                                                           1 tube
7760                                                             <NA>
7761                                                             <NA>
7762                                                             <NA>
7763                                            1 tablet/pill/capsule
7764                                              tablet/pill/capsule
7765                                                             tube
7766                                                             <NA>
7767                                                             <NA>
7768                                              tablet/pill/capsule
7769                                                             <NA>
7770                                                             <NA>
7771                                                             <NA>
7772                                                             <NA>
7773                                                             <NA>
7774                                                             <NA>
7775                                                             <NA>
7776                                                             <NA>
7777                                                             <NA>
7778                                                             <NA>
7779                                                             <NA>
7780                                                             tube
7781                                                             <NA>
7782                                                             <NA>
7783                                                           1 tube
7784                                            1 tablet/pill/capsule
7785                                              tablet/pill/capsule
7786                                                           1 tube
7787                                                             <NA>
7788                                                             <NA>
7789                                              tablet/pill/capsule
7790                                                             tube
7791                                                             <NA>
7792                                                             <NA>
7793                                                             <NA>
7794                                                             <NA>
7795                                              tablet/pill/capsule
7796                                                             <NA>
7797                                                             <NA>
7798                                                             <NA>
7799                                                             <NA>
7800                                                             <NA>
7801                                                             <NA>
7802                                                             <NA>
7803                                                             <NA>
7804                                                             <NA>
7805                                                             <NA>
7806                                                             <NA>
7807                                                             <NA>
7808                                                             <NA>
7809                                                             <NA>
7810                                                             <NA>
7811                                                             <NA>
7812                                                     small amount
7813                                                             <NA>
7814                                                             <NA>
7815                                                             <NA>
7816                                                             <NA>
7817                                                             <NA>
7818                                                             <NA>
7819                                                             <NA>
7820                                                             <NA>
7821                                                             <NA>
7822                                                             <NA>
7823                                                             <NA>
7824                                                             <NA>
7825                                                             <NA>
7826                                                             <NA>
7827                                                             <NA>
7828                                                             <NA>
7829                                                             <NA>
7830                                                             <NA>
7831                                                             <NA>
7832                                                             <NA>
7833                                                             <NA>
7834                                                             <NA>
7835                                                             <NA>
7836                                                             <NA>
7837                                                             <NA>
7838                                              tablet/pill/capsule
7839                                                           powder
7840                                                             <NA>
7841                                              tablet/pill/capsule
7842                                              tablet/pill/capsule
7843                                              tablet/pill/capsule
7844                                                             <NA>
7845                                                             <NA>
7846                                                             <NA>
7847                                                     pack/package
7848                                                             <NA>
7849                                                             <NA>
7850                                                             <NA>
7851                                                             <NA>
7852                                                             <NA>
7853                                                             pump
7854                                                             <NA>
7855                                                             <NA>
7856                                                             <NA>
7857                                                             <NA>
7858                                                             <NA>
7859                                                             <NA>
7860                                                             <NA>
7861                                                             <NA>
7862                                                             <NA>
7863                                                             <NA>
7864                                                             <NA>
7865                                                             <NA>
7866                                                             <NA>
7867                                                             <NA>
7868                                                             <NA>
7869                                                             <NA>
7870                                                             <NA>
7871                                                             <NA>
7872                                                             <NA>
7873                                                             <NA>
7874                                                             <NA>
7875                                                             <NA>
7876                                                             <NA>
7877                                                             <NA>
7878                                                             <NA>
7879                                                             <NA>
7880                                                             <NA>
7881                                                             <NA>
7882                                                             <NA>
7883                                            1 tablet/pill/capsule
7884                                            1 tablet/pill/capsule
7885                                                             <NA>
7886                                                             <NA>
7887                                                             <NA>
7888                                                             <NA>
7889                                                             <NA>
7890                                                             <NA>
7891                                                             <NA>
7892                                                             <NA>
7893                                                             tube
7894                                                             <NA>
7895                                                             <NA>
7896                                                             <NA>
7897                                                             <NA>
7898                                                             <NA>
7899                                                             <NA>
7900                                                             <NA>
7901                                                             <NA>
7902                                                             <NA>
7903                                                             <NA>
7904                                                             <NA>
7905                                                             <NA>
7906                                                             <NA>
7907                                                             <NA>
7908                                                             <NA>
7909                                                             <NA>
7910                                                             <NA>
7911                                                             <NA>
7912                                                             <NA>
7913                                                             <NA>
7914                                                             <NA>
7915                                                             <NA>
7916                                                             <NA>
7917                                                             <NA>
7918                                                             <NA>
7919                                                             <NA>
7920                                                             <NA>
7921                                                             <NA>
7922                                                             <NA>
7923                                                             <NA>
7924                                                             <NA>
7925                                                             <NA>
7926                                                           powder
7927                                                             <NA>
7928                                                             <NA>
7929                                                     small amount
7930                                                             <NA>
7931                                                             <NA>
7932                                                             <NA>
7933                                                             <NA>
7934                                                             <NA>
7935                                                             <NA>
7936                                                             <NA>
7937                                                             <NA>
7938                                                             <NA>
7939                                                             <NA>
7940                                                             <NA>
7941                                                             <NA>
7942                                                             <NA>
7943                                                             <NA>
7944                                                             <NA>
7945                                                             <NA>
7946                                                             <NA>
7947                                                             <NA>
7948                                                             <NA>
7949                                                             <NA>
7950                                                             <NA>
7951                                                             <NA>
7952                                                             <NA>
7953                                                             <NA>
7954                                                             <NA>
7955                                                             <NA>
7956                                                             <NA>
7957                                                             <NA>
7958                                                             <NA>
7959                                                             <NA>
7960                                                             <NA>
7961                                                         ointment
7962                                                             <NA>
7963                                                             <NA>
7964                                                             <NA>
7965                                                             <NA>
7966                                              tablet/pill/capsule
7967                                              tablet/pill/capsule
7968                                              tablet/pill/capsule
7969                                              tablet/pill/capsule
7970                                                             <NA>
7971                                                  based on weight
7972                                                             <NA>
7973                                                             <NA>
7974                                                  based on weight
7975                                                             <NA>
7976                                                  based on weight
7977                                                             <NA>
7978                                                             <NA>
7979                                                             <NA>
7980                                                             <NA>
7981                                                             <NA>
7982                                                             <NA>
7983                                                             <NA>
7984                                                             <NA>
7985                                                             <NA>
7986                                                             <NA>
7987                                                             <NA>
7988                                                  based on weight
7989                                                             <NA>
7990                                                             <NA>
7991                                                             <NA>
7992                                                             <NA>
7993                                                  based on weight
7994                                                             <NA>
7995                                                             <NA>
7996                                                             <NA>
7997                                                             <NA>
7998                                                     pack/package
7999                                                             <NA>
8000                                                  based on weight
8001                                                             <NA>
8002                                                             <NA>
8003                                                             <NA>
8004                                                             <NA>
8005                                                             <NA>
8006                                                             <NA>
8007                                                             <NA>
8008                                                             <NA>
8009                                                      unspecified
8010                                                             <NA>
8011                                                             <NA>
8012                                                         ointment
8013                                                             <NA>
8014                                                     small amount
8015                                                             <NA>
8016                                                             <NA>
8017                                                     small amount
8018                                                             <NA>
8019                                                             <NA>
8020                                                             <NA>
8021                                                             <NA>
8022                                                             <NA>
8023                                                             <NA>
8024                                                             <NA>
8025                                                             <NA>
8026                                                             <NA>
8027                                                             <NA>
8028                                                             <NA>
8029                                                      combination
8030                                                  based on weight
8031                                                             <NA>
8032                                                             <NA>
8033                                                             <NA>
8034                                                             <NA>
8035                                                             <NA>
8036                                                             <NA>
8037                                                             <NA>
8038                                                             <NA>
8039                                                             <NA>
8040                                                             <NA>
8041                                                             <NA>
8042                                                             <NA>
8043                                                             <NA>
8044                                                             <NA>
8045                                                             <NA>
8046                                                             <NA>
8047                                                             <NA>
8048                                                             <NA>
8049                                                             <NA>
8050                                                             <NA>
8051                                                             <NA>
8052                                                             <NA>
8053                                                             <NA>
8054                                                             <NA>
8055                                                             <NA>
8056                                                             <NA>
8057                                                             <NA>
8058                                              tablet/pill/capsule
8059                                                             <NA>
8060                                                             <NA>
8061                                                     pack/package
8062                                              tablet/pill/capsule
8063                                                  based on weight
8064                                                             <NA>
8065                                                             <NA>
8066                                                  based on weight
8067                                                  based on weight
8068                                                             <NA>
8069                                                  based on weight
8070                                                  based on weight
8071                                                  based on weight
8072                                                             <NA>
8073                                                             <NA>
8074                                                             <NA>
8075                                                             <NA>
8076                                                             <NA>
8077                                                             <NA>
8078                                                             <NA>
8079                                                             <NA>
8080                                                             <NA>
8081                                                             <NA>
8082                                                             <NA>
8083                                                             <NA>
8084                                                             <NA>
8085                                                             <NA>
8086                                                     small amount
8087                                              tablet/pill/capsule
8088                                                             <NA>
8089                                                             <NA>
8090                                                             <NA>
8091                                                             <NA>
8092                                                         wipe/pad
8093                                                             <NA>
8094                                                             <NA>
8095                                                             <NA>
8096                                                             <NA>
8097                                                             <NA>
8098                                                             <NA>
8099                                                             <NA>
8100                                                             <NA>
8101                                                             <NA>
8102                                                             <NA>
8103                                                             <NA>
8104                                                             <NA>
8105                                                             <NA>
8106                                                             <NA>
8107                                                             <NA>
8108                                                             <NA>
8109                                                             <NA>
8110                                                  0.25 inch strip
8111                                                             tube
8112                                                             <NA>
8113                                                     small amount
8114                                                             <NA>
8115                                                             <NA>
8116                                                             <NA>
8117                                                             <NA>
8118                                                             <NA>
8119                                                             <NA>
8120                                                  based on weight
8121                                     based on weight (50-100 lbs)
8122                                                             <NA>
8123                                              tablet/pill/capsule
8124                                                             <NA>
8125                                                             <NA>
8126                                                             <NA>
8127                                                             <NA>
8128                                                     small amount
8129                                                             <NA>
8130                                                  based on weight
8131                                                  based on weight
8132                                                             <NA>
8133                                                             <NA>
8134                                                             <NA>
8135                                                             <NA>
8136                                                  based on weight
8137                                                  based on weight
8138                                                  based on weight
8139                                                  based on weight
8140                                                     small amount
8141                                                             <NA>
8142                                                             <NA>
8143                                                             <NA>
8144                                                             <NA>
8145                                                             <NA>
8146                                                             <NA>
8147                                                             <NA>
8148                                                             <NA>
8149                                                             <NA>
8150                                                             <NA>
8151                                                             <NA>
8152                                                             <NA>
8153                                                             <NA>
8154                                                             <NA>
8155                                              tablet/pill/capsule
8156                                              tablet/pill/capsule
8157                                                             <NA>
8158                                                             <NA>
8159                                                             <NA>
8160                                                      unspecified
8161                                                             <NA>
8162                                                             <NA>
8163                                                             <NA>
8164                                                             <NA>
8165                                                             <NA>
8166                                                             <NA>
8167                                                             <NA>
8168                                                             <NA>
8169                                                             <NA>
8170                                                             <NA>
8171                                                             <NA>
8172                                                             <NA>
8173                                                             <NA>
8174                                                             <NA>
8175                                                             <NA>
8176                                                             <NA>
8177                                                             <NA>
8178                                                             <NA>
8179                                                             <NA>
8180                                                             <NA>
8181                                                             <NA>
8182                                                     small amount
8183                                                             <NA>
8184                                                           powder
8185                                     based on weight (50-100 lbs)
8186                                     based on weight (50-100 lbs)
8187                                     based on weight (50-100 lbs)
8188                                     based on weight (60-120 lbs)
8189                                                             <NA>
8190                                                             <NA>
8191                                                             <NA>
8192                                                             <NA>
8193                                                             <NA>
8194                                                             <NA>
8195                                                  based on weight
8196                                                  based on weight
8197                                                             <NA>
8198                                                             <NA>
8199                                                             <NA>
8200                                                            spray
8201                                                             puff
8202                                                             <NA>
8203                                      based on weight (44-88 lbs)
8204                                              tablet/pill/capsule
8205                                                  based on weight
8206                                                  based on weight
8207                                                  based on weight
8208                                                  based on weight
8209                                                             <NA>
8210                                                             <NA>
8211                                                             <NA>
8212                                                  based on weight
8213                                                             <NA>
8214                                                             <NA>
8215                                                  based on weight
8216                                                             <NA>
8217                                                             <NA>
8218                                                             <NA>
8219                                                             <NA>
8220                                            1 tablet/pill/capsule
8221                                            1 tablet/pill/capsule
8222                                            1 tablet/pill/capsule
8223                                                             <NA>
8224                                                             <NA>
8225                                                             <NA>
8226                                                             <NA>
8227                                                             <NA>
8228                                                             <NA>
8229                                                             <NA>
8230                                                             <NA>
8231                                                             <NA>
8232                                                             <NA>
8233                                                             <NA>
8234                                                          8 drops
8235                                                     small amount
8236                                                            spray
8237                                                             <NA>
8238                                                             <NA>
8239                                              tablet/pill/capsule
8240                                                             <NA>
8241                                                             <NA>
8242                                                             <NA>
8243                                                             <NA>
8244                                                  based on weight
8245                                                             <NA>
8246                                                             <NA>
8247                                                             <NA>
8248                                              tablet/pill/capsule
8249                                                             <NA>
8250                                                             <NA>
8251                                                             <NA>
8252                                                            spray
8253                                                             <NA>
8254                                                             <NA>
8255                                                             <NA>
8256                                                             <NA>
8257                                                             <NA>
8258                                                             <NA>
8259                                                             <NA>
8260                                                             <NA>
8261                                                             <NA>
8262                                                             <NA>
8263                                                             <NA>
8264                                                             <NA>
8265                                                             <NA>
8266                                                             <NA>
8267                                                             <NA>
8268                                                             <NA>
8269                                                             <NA>
8270                                                             <NA>
8271                                                             <NA>
8272                                                             <NA>
8273                                                             <NA>
8274                                                             <NA>
8275                                                             <NA>
8276                                                             <NA>
8277                                                             <NA>
8278                                                             <NA>
8279                                                             <NA>
8280                                                             <NA>
8281                                                             <NA>
8282                                                             <NA>
8283                                                             <NA>
8284                                                     small amount
8285                                                             <NA>
8286                                                             <NA>
8287                                                             <NA>
8288                                                             <NA>
8289                                                             <NA>
8290                                                             <NA>
8291                                                             <NA>
8292                                                             <NA>
8293                                                     small amount
8294                                                             <NA>
8295                                                             <NA>
8296                                     based on weight (50-100 lbs)
8297                                      based on weight (44-88 lbs)
8298                                                             <NA>
8299                                                             1 ml
8300                                                             <NA>
8301                                                  based on weight
8302                                                  based on weight
8303                                                             <NA>
8304                                                             <NA>
8305                                                            spray
8306                                                  based on weight
8307                                                  based on weight
8308                                                             <NA>
8309                                                             <NA>
8310                                                             <NA>
8311                                                             <NA>
8312                                                             <NA>
8313                                                             <NA>
8314                                                             <NA>
8315                                                             <NA>
8316                                                             <NA>
8317                                                             <NA>
8318                                                             <NA>
8319                                                             <NA>
8320                                                             <NA>
8321                                                             <NA>
8322                                                             <NA>
8323                                                             <NA>
8324                                                             <NA>
8325                                                             <NA>
8326                                                  based on weight
8327                                                             <NA>
8328                                                             <NA>
8329                                                             <NA>
8330                                                             <NA>
8331                                                             <NA>
8332                                                  based on weight
8333                                                             <NA>
8334                                                             <NA>
8335                                                  based on weight
8336                                                             <NA>
8337                                                             <NA>
8338                                                             <NA>
8339                                                             <NA>
8340                                                  based on weight
8341                                                             <NA>
8342                                                             <NA>
8343                                                             <NA>
8344                                                             <NA>
8345                                                             <NA>
8346                                                             <NA>
8347                                                             <NA>
8348                                                             <NA>
8349                                                  based on weight
8350                                                             <NA>
8351                                                             <NA>
8352                                                  moderate amount
8353                                                             <NA>
8354                                              tablet/pill/capsule
8355                                                    1 application
8356                                                             <NA>
8357                                                             <NA>
8358                                                  based on weight
8359                                                  based on weight
8360                                                             <NA>
8361                                              tablet/pill/capsule
8362                                                     small amount
8363                                                             <NA>
8364                                                             <NA>
8365                                                             <NA>
8366                                                             <NA>
8367                                                             <NA>
8368                                                             <NA>
8369                                                     small amount
8370                                              tablet/pill/capsule
8371                                              tablet/pill/capsule
8372                                                             <NA>
8373                                                             <NA>
8374                                                             pump
8375                                                             tube
8376                                                     small amount
8377                                              tablet/pill/capsule
8378                                              tablet/pill/capsule
8379                                                     small amount
8380                                                             <NA>
8381                                                             <NA>
8382                                                     pack/package
8383                                                             <NA>
8384                                                             <NA>
8385                                                     pack/package
8386                                                             <NA>
8387                                                             <NA>
8388                                                             <NA>
8389                                                             <NA>
8390                                                             <NA>
8391                                                             <NA>
8392                                                             <NA>
8393                                                             <NA>
8394                                                             <NA>
8395                                                             <NA>
8396                                                             <NA>
8397                                                             <NA>
8398                                                             <NA>
8399                                                             <NA>
8400                                                             <NA>
8401                                                             <NA>
8402                                                             <NA>
8403                                                             <NA>
8404                                                             <NA>
8405                                                             tube
8406                                                             <NA>
8407                                                             <NA>
8408                                                                1
8409                                                             <NA>
8410                                                  based on weight
8411                                                             <NA>
8412                                                             <NA>
8413                                                             <NA>
8414                                                             <NA>
8415                                                             <NA>
8416                                                             <NA>
8417                                                             <NA>
8418                                                         inhalant
8419                                                             <NA>
8420                                                  based on weight
8421                                              tablet/pill/capsule
8422                                                             <NA>
8423                                                             <NA>
8424                                                           1 tube
8425                                              tablet/pill/capsule
8426                                                             <NA>
8427                                              tablet/pill/capsule
8428                                                             <NA>
8429                                                             <NA>
8430                                              tablet/pill/capsule
8431                                                             <NA>
8432                                                             <NA>
8433                                                             <NA>
8434                                                             <NA>
8435                                                   1 pack/package
8436                                                     small amount
8437                                                             <NA>
8438                                                             <NA>
8439                                                             <NA>
8440                                                             <NA>
8441                                                             <NA>
8442                                                             <NA>
8443                                                             <NA>
8444                                                             <NA>
8445                                                             <NA>
8446                                                             <NA>
8447                                                             <NA>
8448                                                             <NA>
8449                                                       inch strip
8450                                                             <NA>
8451                                                             <NA>
8452                                                             <NA>
8453                                                             <NA>
8454                                              tablet/pill/capsule
8455                                                             <NA>
8456                                                             <NA>
8457                                                             <NA>
8458                                                             <NA>
8459                                                             <NA>
8460                                                     pack/package
8461                                                  based on weight
8462                                                             <NA>
8463                                                             <NA>
8464                                                             <NA>
8465                                                  based on weight
8466                                            1 tablet/pill/capsule
8467                                                     small amount
8468                                                             <NA>
8469                                                             <NA>
8470                                                             <NA>
8471                                                             <NA>
8472                                                             <NA>
8473                                                             <NA>
8474                                                             <NA>
8475                                                   shampoo/mousse
8476                                                             <NA>
8477                                                             <NA>
8478                                                   shampoo/mousse
8479                                                             <NA>
8480                                                             <NA>
8481                                                             <NA>
8482                                                             <NA>
8483                                                             <NA>
8484                                                             <NA>
8485                                                             <NA>
8486                                                             <NA>
8487                                                             <NA>
8488                                                             <NA>
8489                                                  based on weight
8490                                                             <NA>
8491                                                             <NA>
8492                                                             <NA>
8493                                                            spray
8494                                                             <NA>
8495                                                  moderate amount
8496                                                             <NA>
8497                                                             <NA>
8498                                                             <NA>
8499                                                             <NA>
8500                                                             <NA>
8501                                                             <NA>
8502                                                             <NA>
8503                                                             <NA>
8504                                                             <NA>
8505                                              tablet/pill/capsule
8506                                                             <NA>
8507                                                             <NA>
8508                                                             <NA>
8509                                              tablet/pill/capsule
8510                                                             <NA>
8511                                                             <NA>
8512                                                             <NA>
8513                                                             <NA>
8514                                              tablet/pill/capsule
8515                                              tablet/pill/capsule
8516                                                             <NA>
8517                                                             <NA>
8518                                                             <NA>
8519                                                             <NA>
8520                                                             <NA>
8521                                                             <NA>
8522                                                             <NA>
8523                                                             <NA>
8524                                                      unspecified
8525                                                             <NA>
8526                                                             <NA>
8527                                                             <NA>
8528                                              tablet/pill/capsule
8529                                                             <NA>
8530                                                             <NA>
8531                                              tablet/pill/capsule
8532                                              tablet/pill/capsule
8533                                              tablet/pill/capsule
8534                                              tablet/pill/capsule
8535                                                             <NA>
8536                                                             <NA>
8537                                                             <NA>
8538                                                             <NA>
8539                                                             <NA>
8540                                                             <NA>
8541                                                             <NA>
8542                                                             <NA>
8543                                                             <NA>
8544                                                             <NA>
8545                                                             <NA>
8546                                                             <NA>
8547                                                             <NA>
8548                                                             <NA>
8549                                                             <NA>
8550                                                             <NA>
8551                                                             <NA>
8552                                                             <NA>
8553                                                             <NA>
8554                                                  based on weight
8555                                                  based on weight
8556                                                             <NA>
8557                                                             <NA>
8558                                                             <NA>
8559                                                             <NA>
8560                                                             <NA>
8561                                                             <NA>
8562                                                             <NA>
8563                                                             <NA>
8564                                                             <NA>
8565                                                             <NA>
8566                                                             <NA>
8567                                                             <NA>
8568                                                             <NA>
8569                                                             <NA>
8570                                                             <NA>
8571                                                             <NA>
8572                                                             <NA>
8573                                                             <NA>
8574                                              tablet/pill/capsule
8575                                                             <NA>
8576                                                             <NA>
8577                                                     small amount
8578                                                     small amount
8579                                                             <NA>
8580                                                             <NA>
8581                                                     small amount
8582                                            1 tablet/pill/capsule
8583                                                             <NA>
8584                                                             <NA>
8585                                                           powder
8586                                                       1 wipe/pad
8587                                              tablet/pill/capsule
8588                                                             <NA>
8589                                                             <NA>
8590                                                             <NA>
8591                                              tablet/pill/capsule
8592                                                             <NA>
8593                                                             <NA>
8594                                                             <NA>
8595                                              tablet/pill/capsule
8596                                              tablet/pill/capsule
8597                                                             <NA>
8598                                              tablet/pill/capsule
8599                                              tablet/pill/capsule
8600                                              tablet/pill/capsule
8601                                                             <NA>
8602                                                             <NA>
8603                                                             <NA>
8604                                              tablet/pill/capsule
8605                                                             <NA>
8606                                              tablet/pill/capsule
8607                                                  based on weight
8608                                                             <NA>
8609                                                  based on weight
8610                                                             <NA>
8611                                                             <NA>
8612                                                             <NA>
8613                                                             <NA>
8614                                                             <NA>
8615                                              tablet/pill/capsule
8616                                                             <NA>
8617                                                             <NA>
8618                                                             <NA>
8619                                                             <NA>
8620                                                             <NA>
8621                                                             <NA>
8622                                                             <NA>
8623                                                             <NA>
8624                                                             <NA>
8625                                                             <NA>
8626                                                             <NA>
8627                                                             <NA>
8628                                                             <NA>
8629                                                             <NA>
8630                                                             <NA>
8631                                                             <NA>
8632                                                                %
8633                                                                %
8634                                                             <NA>
8635                                                             <NA>
8636                                                             <NA>
8637                                                             <NA>
8638                                                             <NA>
8639                                                             <NA>
8640                                              tablet/pill/capsule
8641                                                  based on weight
8642                                                             <NA>
8643                                                             <NA>
8644                                                             <NA>
8645                                                             <NA>
8646                                                             <NA>
8647                                                             <NA>
8648                                                             <NA>
8649                                                             <NA>
8650                                                             <NA>
8651                                                             <NA>
8652                                                             <NA>
8653                                                             <NA>
8654                                                             <NA>
8655                                              tablet/pill/capsule
8656                                                             <NA>
8657                                                             <NA>
8658                                                             <NA>
8659                                                             <NA>
8660                                                             <NA>
8661                                                             <NA>
8662                                                             <NA>
8663                                                             <NA>
8664                                                             <NA>
8665                                                             <NA>
8666                                                             <NA>
8667                                                       inch strip
8668                                                             <NA>
8669                                                             <NA>
8670                                                             <NA>
8671                                                             <NA>
8672                                                             <NA>
8673                                                             <NA>
8674                                                  based on weight
8675                                              tablet/pill/capsule
8676                                              tablet/pill/capsule
8677                                              tablet/pill/capsule
8678                                                             <NA>
8679                                                             <NA>
8680                                                             <NA>
8681                                                             <NA>
8682                                                             <NA>
8683                                                             <NA>
8684                                                             <NA>
8685                                                             <NA>
8686                                                             <NA>
8687                                                             <NA>
8688                                                             <NA>
8689                                                             <NA>
8690                                                             <NA>
8691                                                             <NA>
8692                                                             <NA>
8693                                                             <NA>
8694                                                    1 bottle/vial
8695                                                             <NA>
8696                                                             <NA>
8697                                                             <NA>
8698                                                         wipe/pad
8699                                              tablet/pill/capsule
8700                                                             <NA>
8701                                                             <NA>
8702                                                      bottle/vial
8703                                                             <NA>
8704                                                             <NA>
8705                                                             <NA>
8706                                                             <NA>
8707                                                    1 bottle/vial
8708                                                             <NA>
8709                                                             <NA>
8710                                                             <NA>
8711                                              tablet/pill/capsule
8712                                                             <NA>
8713                                              tablet/pill/capsule
8714                                                             <NA>
8715                                                             <NA>
8716                                                             <NA>
8717                                                             <NA>
8718                                              tablet/pill/capsule
8719                                                             <NA>
8720                                                             <NA>
8721                                                             <NA>
8722                                                             <NA>
8723                                                             <NA>
8724                                                             tube
8725                                                             <NA>
8726                                                           cup(s)
8727                                                             <NA>
8728                                                             <NA>
8729                                                             tube
8730                                                             <NA>
8731                                                           collar
8732                                                             <NA>
8733                                                             <NA>
8734                                                             <NA>
8735                                                     small amount
8736                                                         wipe/pad
8737                                              tablet/pill/capsule
8738                                                             tube
8739                                              tablet/pill/capsule
8740                                                             tube
8741                                                             <NA>
8742                                                             <NA>
8743                                                             <NA>
8744                                                             <NA>
8745                                                             <NA>
8746                                                             <NA>
8747                                                             <NA>
8748                                                             <NA>
8749                                                             <NA>
8750                                                             <NA>
8751                                                             <NA>
8752                                                             <NA>
8753                                                             <NA>
8754                                                             <NA>
8755                                                             <NA>
8756                                            1 tablet/pill/capsule
8757                                                             <NA>
8758                                              tablet/pill/capsule
8759                                                  based on weight
8760                                                  based on weight
8761                                                             <NA>
8762                                                             <NA>
8763                                                             <NA>
8764                                                             <NA>
8765                                                             <NA>
8766                                                             <NA>
8767                                                      application
8768                                        based on weight (51+ lbs)
8769                                        based on weight (56+ lbs)
8770                                            1 tablet/pill/capsule
8771                                                           1 tube
8772                                                             <NA>
8773                                                             <NA>
8774                                                             <NA>
8775                                                             <NA>
8776                                                  based on weight
8777                                                  based on weight
8778                                            1 tablet/pill/capsule
8779                                                    1 application
8780                                            1 tablet/pill/capsule
8781                                                    1 application
8782                                                             <NA>
8783                                                             <NA>
8784                                                             <NA>
8785                                                             <NA>
8786                                                  based on weight
8787                                                  based on weight
8788                                                             <NA>
8789                                                             <NA>
8790                                                  based on weight
8791                                                  based on weight
8792                                                             <NA>
8793                                              tablet/pill/capsule
8794                                              tablet/pill/capsule
8795                                                  based on weight
8796                                                  based on weight
8797                                                             <NA>
8798                                                             <NA>
8799                                                            mg/ml
8800                                                             <NA>
8801                                                             <NA>
8802                                                             <NA>
8803                                                             <NA>
8804                                                             <NA>
8805                                              tablet/pill/capsule
8806                                                             <NA>
8807                                                             <NA>
8808                                                      application
8809                                                             <NA>
8810                                              tablet/pill/capsule
8811                                                             <NA>
8812                                                             <NA>
8813                                                             <NA>
8814                                                             <NA>
8815                                                       inch strip
8816                                                             <NA>
8817                                                             <NA>
8818                                                             <NA>
8819                                                  based on weight
8820                                                  based on weight
8821                                                             <NA>
8822                                                             <NA>
8823                                                             <NA>
8824                                                             <NA>
8825                                                             <NA>
8826                                                             dose
8827                                                  based on weight
8828                                                  based on weight
8829                                                             <NA>
8830                                                             <NA>
8831                                                             <NA>
8832                                                             <NA>
8833                                                  based on weight
8834                                                             <NA>
8835                                                             <NA>
8836                                                             <NA>
8837                                                             <NA>
8838                                                             <NA>
8839                                                             <NA>
8840                                                             <NA>
8841                                                             <NA>
8842                                                             <NA>
8843                                                             <NA>
8844                                                             <NA>
8845                                                  based on weight
8846                                                             <NA>
8847                                                             <NA>
8848                                                             <NA>
8849                                                             <NA>
8850                                                             <NA>
8851                                                             <NA>
8852                                                             <NA>
8853                                                             <NA>
8854                                                             <NA>
8855                                                             <NA>
8856                                                             <NA>
8857                                                             <NA>
8858                                                             <NA>
8859                                                             <NA>
8860                                                             <NA>
8861                                                             <NA>
8862                                                             <NA>
8863                                                             <NA>
8864                                                             <NA>
8865                                                             <NA>
8866                                                             <NA>
8867                                                             <NA>
8868                                                             <NA>
8869                                                             <NA>
8870                                                             <NA>
8871                                                             <NA>
8872                                                             <NA>
8873                                                             <NA>
8874                                                             <NA>
8875                                                             <NA>
8876                                                             <NA>
8877                                                             <NA>
8878                                                             <NA>
8879                                                  based on weight
8880                                                             <NA>
8881                                                             <NA>
8882                                                             <NA>
8883                                                             <NA>
8884                                                             <NA>
8885                                                             <NA>
8886                                                             <NA>
8887                                                             <NA>
8888                                                             <NA>
8889                                                             <NA>
8890                                                             <NA>
8891                                                             <NA>
8892                                                             <NA>
8893                                                             <NA>
8894                                                             <NA>
8895                                                             <NA>
8896                                                             <NA>
8897                                                             <NA>
8898                                                             <NA>
8899                                                             <NA>
8900                                                             <NA>
8901                                                             <NA>
8902                                                             <NA>
8903                                                            spray
8904                                                             <NA>
8905                                                             <NA>
8906                                                             <NA>
8907                                                             <NA>
8908                                                             <NA>
8909                                                             <NA>
8910                                                             <NA>
8911                                                  based on weight
8912                                                             <NA>
8913                                                             <NA>
8914                                                             <NA>
8915                                                             <NA>
8916                                                             <NA>
8917                                                             <NA>
8918                                                             <NA>
8919                                                             <NA>
8920                                                             <NA>
8921                                                             <NA>
8922                                                             <NA>
8923                                                             <NA>
8924                                                             <NA>
8925                                                             <NA>
8926                                                             <NA>
8927                                                             <NA>
8928                                                             <NA>
8929                                                      as directed
8930                                                             <NA>
8931                                                             <NA>
8932                                                             <NA>
8933                                                             <NA>
8934                                                             <NA>
8935                                                             <NA>
8936                                                             <NA>
8937                                                             <NA>
8938                                                             <NA>
8939                                                             <NA>
8940                                                             <NA>
8941                                                             <NA>
8942                                                             <NA>
8943                                                             <NA>
8944                                                             <NA>
8945                                                             <NA>
8946                                                             <NA>
8947                                                             <NA>
8948                                                             <NA>
8949                                                             <NA>
8950                                                             <NA>
8951                                                             <NA>
8952                                                             <NA>
8953                                                             <NA>
8954                                                             <NA>
8955                                                             <NA>
8956                                                             <NA>
8957                                                             <NA>
8958                                                             <NA>
8959                                                             <NA>
8960                                                             <NA>
8961                                                      as directed
8962                                                             <NA>
8963                                                             <NA>
8964                                                             <NA>
8965                                                             <NA>
8966                                                             <NA>
8967                                                             <NA>
8968                                                             <NA>
8969                                                             <NA>
8970                                                             <NA>
8971                                                             <NA>
8972                                                             <NA>
8973                                                             <NA>
8974                                                             <NA>
8975                                                             <NA>
8976                                              tablet/pill/capsule
8977                                              tablet/pill/capsule
8978                                              tablet/pill/capsule
8979                                                             <NA>
8980                                                             <NA>
8981                                              tablet/pill/capsule
8982                                                             <NA>
8983                                                             <NA>
8984                                              tablet/pill/capsule
8985                                                             <NA>
8986                                                             <NA>
8987                                                             <NA>
8988                                                             <NA>
8989                                                             <NA>
8990                                                             <NA>
8991                                                             <NA>
8992                                                             <NA>
8993                                                             <NA>
8994                                                             <NA>
8995                                                             <NA>
8996                                                             <NA>
8997                                                             <NA>
8998                                                             <NA>
8999                                                             <NA>
9000                                                             <NA>
9001                                                             <NA>
9002                                                             <NA>
9003                                                             <NA>
9004                                                             <NA>
9005                                                             <NA>
9006                                                             <NA>
9007                                                             <NA>
9008                                                             <NA>
9009                                                             <NA>
9010                                                             <NA>
9011                                                             <NA>
9012                                                             <NA>
9013                                                             <NA>
9014                                                             <NA>
9015                                                             <NA>
9016                                                             <NA>
9017                                                             <NA>
9018                                                             <NA>
9019                                                             <NA>
9020                                                             <NA>
9021                                                             <NA>
9022                                                             <NA>
9023                                                             <NA>
9024                                              tablet/pill/capsule
9025                                                             <NA>
9026                                     based on weight (50-100 lbs)
9027                                                             <NA>
9028                                                             <NA>
9029                                                             <NA>
9030                                                             <NA>
9031                                                             <NA>
9032                                                             <NA>
9033                                                             <NA>
9034                                                             <NA>
9035                                                             <NA>
9036                                                             <NA>
9037                                                             <NA>
9038                                                             <NA>
9039                                                             <NA>
9040                                                             <NA>
9041                                                             <NA>
9042                                                             <NA>
9043                                                  0.25 inch strip
9044                                         based on weight (20 lbs)
9045                                                             <NA>
9046                                            1 tablet/pill/capsule
9047                                                             <NA>
9048                                                             <NA>
9049                                                             <NA>
9050                                              tablet/pill/capsule
9051                                                             <NA>
9052                                                             <NA>
9053                                              tablet/pill/capsule
9054                                              tablet/pill/capsule
9055                                                  based on weight
9056                                                             <NA>
9057                                                             <NA>
9058                                                             <NA>
9059                                                             <NA>
9060                                            1 tablet/pill/capsule
9061                                                             <NA>
9062                                                             <NA>
9063                                                             <NA>
9064                                                             <NA>
9065                                                             <NA>
9066                                                             <NA>
9067                                                             <NA>
9068                                                             <NA>
9069                                                             <NA>
9070                                              tablet/pill/capsule
9071                                              tablet/pill/capsule
9072                                                             <NA>
9073                                                             <NA>
9074                                                             <NA>
9075                                                             <NA>
9076                                                             <NA>
9077                                                             <NA>
9078                                                             <NA>
9079                                                             <NA>
9080                                                             <NA>
9081                                                             <NA>
9082                                                             <NA>
9083                                                             <NA>
9084                                                             <NA>
9085                                                             <NA>
9086                                                             <NA>
9087                                                             <NA>
9088                                                             <NA>
9089                                                             <NA>
9090                                                             <NA>
9091                                                             <NA>
9092                                                             <NA>
9093                                                             <NA>
9094                                                  based on weight
9095                                                  based on weight
9096                                                             <NA>
9097                                                             <NA>
9098                                                  based on weight
9099                                                             <NA>
9100                                                      unspecified
9101                                                      unspecified
9102                                                             <NA>
9103                                                             <NA>
9104                                                             <NA>
9105                                                             <NA>
9106                                                                %
9107                                              tablet/pill/capsule
9108                                                             <NA>
9109                                                  0.25 inch strip
9110                                                             <NA>
9111                                                             <NA>
9112                                                             <NA>
9113                                                             <NA>
9114                                                             <NA>
9115                                                             <NA>
9116                                                             <NA>
9117                                                             <NA>
9118                                                       inch strip
9119                                                             <NA>
9120                                              tablet/pill/capsule
9121                                              tablet/pill/capsule
9122                                              tablet/pill/capsule
9123                                              tablet/pill/capsule
9124                                                             <NA>
9125                                                             <NA>
9126                                                             <NA>
9127                                                             <NA>
9128                                                             <NA>
9129                                                             <NA>
9130                                                             <NA>
9131                                                             <NA>
9132                                              tablet/pill/capsule
9133                                                             <NA>
9134                                              tablet/pill/capsule
9135                                                             <NA>
9136                                                     small amount
9137                                                             <NA>
9138                                                             <NA>
9139                                                             <NA>
9140                                                             <NA>
9141                                                             <NA>
9142                                                             <NA>
9143                                                             <NA>
9144                                              tablet/pill/capsule
9145                                                             <NA>
9146                                                     pack/package
9147                                                             <NA>
9148                                                             <NA>
9149                                                             <NA>
9150                                                               gm
9151                                                             <NA>
9152                                                             <NA>
9153                                                             <NA>
9154                                                             <NA>
9155                                                             <NA>
9156                                                             <NA>
9157                                                             <NA>
9158                                                             <NA>
9159                                                             <NA>
9160                                                  based on weight
9161                                                  based on weight
9162                                                             <NA>
9163                                                             <NA>
9164                                                  based on weight
9165                                              tablet/pill/capsule
9166                                                             <NA>
9167                                                             <NA>
9168                                                             <NA>
9169                                                             <NA>
9170                                                  based on weight
9171                                                  based on weight
9172                                                  based on weight
9173                                                             <NA>
9174                                                             <NA>
9175                                                             <NA>
9176                                                             <NA>
9177                                                             <NA>
9178                                                             <NA>
9179                                                             <NA>
9180                                                             <NA>
9181                                                     pack/package
9182                                                             <NA>
9183                                                             <NA>
9184                                                             <NA>
9185                                                             <NA>
9186                                                             <NA>
9187                                                             <NA>
9188                                                             <NA>
9189                                              tablet/pill/capsule
9190                                                             <NA>
9191                                                             <NA>
9192                                                             <NA>
9193                                                     pack/package
9194                                                             <NA>
9195                                                             <NA>
9196                                                             <NA>
9197                                              tablet/pill/capsule
9198                                              tablet/pill/capsule
9199                                                           collar
9200                                              tablet/pill/capsule
9201                                                             <NA>
9202                                            1 tablet/pill/capsule
9203                                                             <NA>
9204                                                             <NA>
9205                                                             <NA>
9206                                                             <NA>
9207                                                             <NA>
9208                                                             <NA>
9209                                              tablet/pill/capsule
9210                                                             <NA>
9211                                                             <NA>
9212                                                             <NA>
9213                                                             <NA>
9214                                                             <NA>
9215                                                             <NA>
9216                                                             <NA>
9217                                                             <NA>
9218                                                             <NA>
9219                                                            mg/ml
9220                                                             <NA>
9221                                                             <NA>
9222                                                             <NA>
9223                                                             <NA>
9224                                                             <NA>
9225                                                             <NA>
9226                                                             <NA>
9227                                                             <NA>
9228                                                             <NA>
9229                                                             <NA>
9230                                                     small amount
9231                                                             <NA>
9232                                                             pump
9233                                                             <NA>
9234                                                             <NA>
9235                                                             <NA>
9236                                                  based on weight
9237                                                             <NA>
9238                                                             <NA>
9239                                                             <NA>
9240                                                      as directed
9241                                                      unspecified
9242                                              tablet/pill/capsule
9243                                                             <NA>
9244                                                             <NA>
9245                                                             <NA>
9246                                                             <NA>
9247                                                             <NA>
9248                                              tablet/pill/capsule
9249                                                             <NA>
9250                                                             <NA>
9251                                                             <NA>
9252                                                     pack/package
9253                                                        as needed
9254                                              tablet/pill/capsule
9255                                                             <NA>
9256                                                             <NA>
9257                                                             <NA>
9258                                                             <NA>
9259                                                             <NA>
9260                                                             <NA>
9261                                                             <NA>
9262                                                             <NA>
9263                                                             <NA>
9264                                                             <NA>
9265                                                             <NA>
9266                                                             <NA>
9267                                                  based on weight
9268                                                  based on weight
9269                                            1 tablet/pill/capsule
9270                                            1 tablet/pill/capsule
9271                                                             <NA>
9272                                                             <NA>
9273                                                             <NA>
9274                                                             <NA>
9275                                                             <NA>
9276                                                             <NA>
9277                                                             <NA>
9278                                                             <NA>
9279                                                             <NA>
9280                                                             <NA>
9281                                                             <NA>
9282                                                             <NA>
9283                                                             <NA>
9284                                                             <NA>
9285                                                             <NA>
9286                                                             <NA>
9287                                                             <NA>
9288                                                             <NA>
9289                                                     pack/package
9290                                              tablet/pill/capsule
9291                                                             <NA>
9292                                                             <NA>
9293                                                             <NA>
9294                                                             <NA>
9295                                                             <NA>
9296                                                             <NA>
9297                                                             <NA>
9298                                                             <NA>
9299                                                  based on weight
9300                                                             <NA>
9301                                                             <NA>
9302                                                             <NA>
9303                                                             <NA>
9304                                                             <NA>
9305                                                             <NA>
9306                                                             <NA>
9307                                                             <NA>
9308                                                             <NA>
9309                                                             <NA>
9310                                                             <NA>
9311                                                             <NA>
9312                                                             <NA>
9313                                                             <NA>
9314                                                             <NA>
9315                                                             <NA>
9316                                                             <NA>
9317                                                             <NA>
9318                                                             <NA>
9319                                                             <NA>
9320                                                             <NA>
9321                                                             <NA>
9322                                                             <NA>
9323                                                             <NA>
9324                                                             <NA>
9325                                                             <NA>
9326                                              tablet/pill/capsule
9327                                                             <NA>
9328                                                             <NA>
9329                                                             <NA>
9330                                                             <NA>
9331                                                             <NA>
9332                                                             <NA>
9333                                                             <NA>
9334                                                             <NA>
9335                                                             <NA>
9336                                                             <NA>
9337                                                             <NA>
9338                                                             <NA>
9339                                                             <NA>
9340                                                             <NA>
9341                                                             <NA>
9342                                                             <NA>
9343                                                             <NA>
9344                                                             <NA>
9345                                                             <NA>
9346                                                             <NA>
9347                                                             <NA>
9348                                                             <NA>
9349                                                             <NA>
9350                                                             <NA>
9351                                                             <NA>
9352                                                             <NA>
9353                                                             <NA>
9354                                                             <NA>
9355                                                             <NA>
9356                                                             <NA>
9357                                                             <NA>
9358                                                             <NA>
9359                                                             <NA>
9360                                                             <NA>
9361                                                             <NA>
9362                                                             <NA>
9363                                                             <NA>
9364                                                             <NA>
9365                                                             <NA>
9366                                                             <NA>
9367                                                             <NA>
9368                                                             <NA>
9369                                                             <NA>
9370                                                             <NA>
9371                                                             <NA>
9372                                                             <NA>
9373                                                             <NA>
9374                                                             <NA>
9375                                                             <NA>
9376                                                             <NA>
9377                                                             <NA>
9378                                                             <NA>
9379                                                             <NA>
9380                                                             <NA>
9381                                                             <NA>
9382                                              tablet/pill/capsule
9383                                                      application
9384                                                             <NA>
9385                                                             <NA>
9386                                              tablet/pill/capsule
9387                                                      bottle/vial
9388                                                             <NA>
9389                                                             <NA>
9390                                                             <NA>
9391                                                             <NA>
9392                                                             <NA>
9393                                                             <NA>
9394                                                             <NA>
9395                                                             <NA>
9396                                                             <NA>
9397                                                             <NA>
9398                                                             <NA>
9399                                                             <NA>
9400                                                             <NA>
9401                                                             <NA>
9402                                                             <NA>
9403                                                             <NA>
9404                                                             <NA>
9405                                                             <NA>
9406                                                         inhalant
9407                                                             <NA>
9408                                                             <NA>
9409                                                             <NA>
9410                                                             <NA>
9411                                                             <NA>
9412                                                             <NA>
9413                                                             <NA>
9414                                                             <NA>
9415                                              tablet/pill/capsule
9416                                                             <NA>
9417                                                             <NA>
9418                                                             <NA>
9419                                                             <NA>
9420                                                             <NA>
9421                                                           collar
9422                                              tablet/pill/capsule
9423                                                             <NA>
9424                                                             <NA>
9425                                                             <NA>
9426                                            1 tablet/pill/capsule
9427                                                             <NA>
9428                                                             <NA>
9429                                                      application
9430                                                             <NA>
9431                                                             <NA>
9432                                                           collar
9433                                                             <NA>
9434                                                  based on weight
9435                                                      unspecified
9436                                              tablet/pill/capsule
9437                                                             <NA>
9438                                                     small amount
9439                                                             <NA>
9440                                              tablet/pill/capsule
9441                                              tablet/pill/capsule
9442                                                             <NA>
9443                                                             <NA>
9444                                                             <NA>
9445                                                             <NA>
9446                                                             <NA>
9447                                                             <NA>
9448                                                             <NA>
9449                                                             <NA>
9450                                                             <NA>
9451                                                             <NA>
9452                                                             <NA>
9453                                                                %
9454                                                       inch strip
9455                                                             <NA>
9456                                                                %
9457                                                             <NA>
9458                                                             <NA>
9459                                                             <NA>
9460                                                             <NA>
9461                                                             <NA>
9462                                                             <NA>
9463                                                             <NA>
9464                                                             <NA>
9465                                                             <NA>
9466                                                             <NA>
9467                                                             <NA>
9468                                                             <NA>
9469                                                             <NA>
9470                                                             <NA>
9471                                                             <NA>
9472                                                             <NA>
9473                                                             <NA>
9474                                                             <NA>
9475                                                             <NA>
9476                                                             <NA>
9477                                                             <NA>
9478                                                             <NA>
9479                                                             <NA>
9480                                                             <NA>
9481                                                             <NA>
9482                                                             <NA>
9483                                                             <NA>
9484                                                             <NA>
9485                                                             <NA>
9486                                                             <NA>
9487                                                             <NA>
9488                                                             <NA>
9489                                                             <NA>
9490                                                             <NA>
9491                                                             <NA>
9492                                                             <NA>
9493                                                             <NA>
9494                                                      unspecified
9495                                                      unspecified
9496                                                             <NA>
9497                                                             <NA>
9498                                                             <NA>
9499                                                             <NA>
9500                                                             <NA>
9501                                                             <NA>
9502                                                             <NA>
9503                                                             <NA>
9504                                                             <NA>
9505                                                             <NA>
9506                                                      unspecified
9507                                                             <NA>
9508                                                             <NA>
9509                                                             <NA>
9510                                                             <NA>
9511                                                             <NA>
9512                                                             <NA>
9513                                                             <NA>
9514                                                             <NA>
9515                                              tablet/pill/capsule
9516                                                 0.125 inch strip
9517                                                             <NA>
9518                                                             <NA>
9519                                                             <NA>
9520                                                             <NA>
9521                                                             <NA>
9522                                                             <NA>
9523                                                             <NA>
9524                                                             <NA>
9525                                                             <NA>
9526                                                             <NA>
9527                                                             <NA>
9528                                                             <NA>
9529                                                             <NA>
9530                                                             <NA>
9531                                                             <NA>
9532                                                             <NA>
9533                                                             <NA>
9534                                                             <NA>
9535                                                             <NA>
9536                                                             <NA>
9537                                                             <NA>
9538                                                             <NA>
9539                                                             <NA>
9540                                                             <NA>
9541                                                                %
9542                                                             <NA>
9543                                                             <NA>
9544                                                  based on weight
9545                                                             <NA>
9546                                                  based on weight
9547                                                             <NA>
9548                                                  based on weight
9549                                                  based on weight
9550                                                             <NA>
9551                                                             <NA>
9552                                                             <NA>
9553                                                             <NA>
9554                                                             <NA>
9555                                                             <NA>
9556                                                                %
9557                                                             <NA>
9558                                                             <NA>
9559                                                             <NA>
9560                                                             <NA>
9561                                                             <NA>
9562                                                             <NA>
9563                                                             <NA>
9564                                                             <NA>
9565                                                             <NA>
9566                                                             <NA>
9567                                                             <NA>
9568                                                             <NA>
9569                                                             <NA>
9570                                                             <NA>
9571                                                             <NA>
9572                                                             <NA>
9573                                              tablet/pill/capsule
9574                                              tablet/pill/capsule
9575                                              tablet/pill/capsule
9576                                                             <NA>
9577                                                             <NA>
9578                                                             <NA>
9579                                                             <NA>
9580                                                             <NA>
9581                                                             <NA>
9582                                                             <NA>
9583                                                             <NA>
9584                                            1 tablet/pill/capsule
9585                                                             <NA>
9586                                                             <NA>
9587                                              tablet/pill/capsule
9588                                                             <NA>
9589                                                             <NA>
9590                                                             <NA>
9591                                                             <NA>
9592                                                             <NA>
9593                                                             <NA>
9594                                                             <NA>
9595                                                             <NA>
9596                                                             <NA>
9597                                                             <NA>
9598                                                             <NA>
9599                                                            ml/hr
9600                                                  based on weight
9601                                                  based on weight
9602                                                             <NA>
9603                                                             <NA>
9604                                                             <NA>
9605                                                             <NA>
9606                                                             <NA>
9607                                                             <NA>
9608                                              tablet/pill/capsule
9609                                              tablet/pill/capsule
9610                                              tablet/pill/capsule
9611                                                             <NA>
9612                                                            spray
9613                                                            spray
9614                                                         wipe/pad
9615                                              tablet/pill/capsule
9616                                              tablet/pill/capsule
9617                                              tablet/pill/capsule
9618                                              tablet/pill/capsule
9619                                              tablet/pill/capsule
9620                                              tablet/pill/capsule
9621                                     based on weight (50-100 lbs)
9622                                                             <NA>
9623                                                             <NA>
9624                                                             <NA>
9625                                                             <NA>
9626                                                             <NA>
9627                                                             <NA>
9628                                                             <NA>
9629                                                             <NA>
9630                                              tablet/pill/capsule
9631                                                             <NA>
9632                                                  based on weight
9633                                                             <NA>
9634                                                             <NA>
9635                                                             <NA>
9636                                                             <NA>
9637                                                             <NA>
9638                                                  based on weight
9639                                                             <NA>
9640                                              tablet/pill/capsule
9641                                              tablet/pill/capsule
9642                                                             <NA>
9643                                              tablet/pill/capsule
9644                                                             <NA>
9645                                                             <NA>
9646                                                             <NA>
9647                                                             <NA>
9648                                                             <NA>
9649                                                             <NA>
9650                                                             <NA>
9651                                                             <NA>
9652                                                             <NA>
9653                                                             <NA>
9654                                                             <NA>
9655                                                             <NA>
9656                                                             <NA>
9657                                                  based on weight
9658                                                             <NA>
9659                                                             <NA>
9660                                                             <NA>
9661                                                             <NA>
9662                                                             <NA>
9663                                                             <NA>
9664                                                             <NA>
9665                                                             <NA>
9666                                                             <NA>
9667                                                             <NA>
9668                                                             <NA>
9669                                                             <NA>
9670                                                             <NA>
9671                                                             <NA>
9672                                                             <NA>
9673                                                             <NA>
9674                                                             <NA>
9675                                                             <NA>
9676                                                             <NA>
9677                                                             <NA>
9678                                                             <NA>
9679                                                             <NA>
9680                                                             <NA>
9681                                                             <NA>
9682                                                             <NA>
9683                                                             <NA>
9684                                                             <NA>
9685                                                             <NA>
9686                                                             <NA>
9687                                                             <NA>
9688                                                             <NA>
9689                                                             <NA>
9690                                                             <NA>
9691                                                             <NA>
9692                                                             <NA>
9693                                                             <NA>
9694                                                             <NA>
9695                                                             <NA>
9696                                                             <NA>
9697                                                             <NA>
9698                                                             <NA>
9699                                                             <NA>
9700                                                             <NA>
9701                                                             <NA>
9702                                                             <NA>
9703                                                             <NA>
9704                                                             <NA>
9705                                                             <NA>
9706                                                             <NA>
9707                                                             <NA>
9708                                                             <NA>
9709                                                             <NA>
9710                                                             <NA>
9711                                                             <NA>
9712                                                  based on weight
9713                                                             <NA>
9714                                                             <NA>
9715                                                             <NA>
9716                                                             <NA>
9717                                                  based on weight
9718                                                      unspecified
9719                                                             <NA>
9720                                                             <NA>
9721                                                             <NA>
9722                                                                %
9723                                                             <NA>
9724                                                             <NA>
9725                                                             <NA>
9726                                                             <NA>
9727                                                             <NA>
9728                                                             <NA>
9729                                                  based on weight
9730                                                  based on weight
9731                                                             <NA>
9732                                                             <NA>
9733                                                             <NA>
9734                                                             <NA>
9735                                                             <NA>
9736                                                             <NA>
9737                                                             <NA>
9738                                                             <NA>
9739                                                             <NA>
9740                                                             <NA>
9741                                                             <NA>
9742                                                             <NA>
9743                                                             <NA>
9744                                                           powder
9745                                                             <NA>
9746                                                             <NA>
9747                                                             <NA>
9748                                                             <NA>
9749                                                             <NA>
9750                                                             <NA>
9751                                                             <NA>
9752                                                             <NA>
9753                                                             <NA>
9754                                                             <NA>
9755                                                             <NA>
9756                                                             <NA>
9757                                                             <NA>
9758                                                             <NA>
9759                      272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                             <NA>
9761                                                  based on weight
9762                                                             <NA>
9763                                                             <NA>
9764                                                             <NA>
9765                                                             <NA>
9766                                                  based on weight
9767                                                             <NA>
9768                                                             <NA>
9769                                                             <NA>
9770                                                  based on weight
9771                                                  based on weight
9772                                                             <NA>
9773                                                             <NA>
9774                                                             <NA>
9775                                                             <NA>
9776                                                             <NA>
9777                                                             <NA>
9778                                                             <NA>
9779                                                             <NA>
9780                                                             <NA>
9781                                                                %
9782                                                             <NA>
9783                                                             <NA>
9784                                                             <NA>
9785                                                             <NA>
9786                                                             <NA>
9787                                                             <NA>
9788                                                             <NA>
9789                                                             <NA>
9790                                                             <NA>
9791                                                             <NA>
9792                                                             <NA>
9793                                                             <NA>
9794                                                             <NA>
9795                                                             <NA>
9796                                                             <NA>
9797                                                             <NA>
9798                                                             <NA>
9799                                                             <NA>
9800                                     based on weight (50-100 lbs)
9801                                                             <NA>
9802                                                             <NA>
9803                                                             <NA>
9804                                                             <NA>
9805                                                             <NA>
9806                                                             <NA>
9807                                                             <NA>
9808                                                             <NA>
9809                                                             <NA>
9810                                                             <NA>
9811                                                             <NA>
9812                                                             <NA>
9813                                                             <NA>
9814                                                     pack/package
9815                                                             <NA>
9816                                                             <NA>
9817                                                             <NA>
9818                                                             <NA>
9819                                                             <NA>
9820                                                             <NA>
9821                                                     pack/package
9822                                                             <NA>
9823                                                             <NA>
9824                                                             <NA>
9825                                                             <NA>
9826                                                       inch strip
9827                                                             <NA>
9828                                                             <NA>
9829                                                             <NA>
9830                                                             <NA>
9831                                                             <NA>
9832                                                             <NA>
9833                                                  0.25 inch strip
9834                                                             <NA>
9835                                                             <NA>
9836                                                             <NA>
9837                                                             <NA>
9838                                                             <NA>
9839                                                             <NA>
9840                                                             <NA>
9841                                                             <NA>
9842                                                             <NA>
9843                                                             <NA>
9844                                                             <NA>
9845                                                             <NA>
9846                                                             <NA>
9847                                                             <NA>
9848                                                             <NA>
9849                                                             <NA>
9850                                                             <NA>
9851                                                             <NA>
9852                                                             <NA>
9853                                                             <NA>
9854                                                       inch strip
9855                                                             <NA>
9856                                                             <NA>
9857                                                             <NA>
9858                                                             <NA>
9859                                                             <NA>
9860                                                             <NA>
9861                                                             <NA>
9862                                                             <NA>
9863                                                         wipe/pad
9864                                                             <NA>
9865                                                             pump
9866                                                             <NA>
9867                                                             <NA>
9868                                                             <NA>
9869                                                             <NA>
9870                                                             <NA>
9871                                                             <NA>
9872                                                             <NA>
9873                                                             <NA>
9874                                                             <NA>
9875                                                             <NA>
9876                                                             <NA>
9877                                                             <NA>
9878                                                             <NA>
9879                                                             <NA>
9880                                                             <NA>
9881                                                             <NA>
9882                                                             <NA>
9883                                                             <NA>
9884                                                               1%
9885                                                             <NA>
9886                                                             <NA>
9887                                                             <NA>
9888                                                       inch strip
9889                                              tablet/pill/capsule
9890                                                      bottle/vial
9891                                                       inch strip
9892                                                     small amount
9893                                     based on weight (60-120 lbs)
9894                                                             <NA>
9895                                                             <NA>
9896                                                             <NA>
9897                                     based on weight (50-100 lbs)
9898                                     based on weight (60-120 lbs)
9899                                              tablet/pill/capsule
9900                                            1 tablet/pill/capsule
9901                                            1 tablet/pill/capsule
9902                                            1 tablet/pill/capsule
9903                                                  0.25 inch strip
9904                                              tablet/pill/capsule
9905                                                             <NA>
9906                                                             <NA>
9907                                                             <NA>
9908                                                             <NA>
9909                                                             <NA>
9910                                                             <NA>
9911                                                             <NA>
9912                                                             <NA>
9913                                                             <NA>
9914                                                             <NA>
9915                                              tablet/pill/capsule
9916                                                             tube
9917                                                  based on weight
9918                                                  based on weight
9919                                                             <NA>
9920                                                             <NA>
9921                                                             <NA>
9922                                                             <NA>
9923                                                             <NA>
9924                                                             <NA>
9925                                                             <NA>
9926                                                      combination
9927                                                             <NA>
9928                                                             <NA>
9929                                                             <NA>
9930                                                             <NA>
9931                                            1 tablet/pill/capsule
9932                                                             <NA>
9933                                                             <NA>
9934                                                             <NA>
9935                                              tablet/pill/capsule
9936                                                             <NA>
9937                                                             <NA>
9938                                                             <NA>
9939                                                             <NA>
9940                                                             <NA>
9941                                                             <NA>
9942                                                           cup(s)
9943                                                             <NA>
9944                                                      unspecified
9945                                                  based on weight
9946                                                             <NA>
9947                                                             <NA>
9948                                                             <NA>
9949                                                             <NA>
9950                                                             <NA>
9951                                                             <NA>
9952                                                             <NA>
9953                                                             <NA>
9954                                              tablet/pill/capsule
9955                                                             <NA>
9956                                                             <NA>
9957                                                             <NA>
9958                                                             <NA>
9959                                                             <NA>
9960                                                             <NA>
9961                                                           1 tube
9962                                                             <NA>
9963                                                  based on weight
9964                                        based on weight (55+ lbs)
9965                                                             <NA>
9966                                                  based on weight
9967                                                             <NA>
9968                                                  based on weight
9969                                                             <NA>
9970                                                     small amount
9971                                                             <NA>
9972                                                             <NA>
9973                                                             <NA>
9974                                                             <NA>
9975                                                             <NA>
9976                                                           1 drop
9977                                                             <NA>
9978                                                             <NA>
9979                                                             <NA>
9980                                                             <NA>
9981                                                             <NA>
9982                                                             <NA>
9983                                                                %
9984                                                             <NA>
9985                                                             <NA>
9986                                                             <NA>
9987                                                            spray
9988                                                             <NA>
9989                                                             <NA>
9990                                                             <NA>
9991                                                             <NA>
9992                                                             <NA>
9993                                                             <NA>
9994                                                             <NA>
9995                                                             <NA>
9996                                                             <NA>
9997                                                             <NA>
9998                                                             <NA>
9999                                                             <NA>
10000                                                            <NA>
10001                                                            <NA>
10002                                                            <NA>
10003                                                            <NA>
10004                                                            <NA>
10005                                                            <NA>
10006                                                    small amount
10007                                                            <NA>
10008                                                            <NA>
10009                                                            <NA>
10010                                                            <NA>
10011                                                            <NA>
10012                                                            <NA>
10013                                                            <NA>
10014                                                            <NA>
10015                                                           spray
10016                                                            <NA>
10017                                                 based on weight
10018                                                            <NA>
10019                                                            <NA>
10020                                                            <NA>
10021                                                            <NA>
10022                                                            <NA>
10023                                              transient-gradient
10024                                                            <NA>
10025                                                            <NA>
10026                                                            <NA>
10027                                                     application
10028                                                            <NA>
10029                                                            <NA>
10030                                                            <NA>
10031                                                            <NA>
10032                                                            <NA>
10033                                                            <NA>
10034                                                            <NA>
10035                                                            <NA>
10036                                                            <NA>
10037                                                            <NA>
10038                                                            <NA>
10039                                                            <NA>
10040                                                            <NA>
10041                                                            <NA>
10042                                                            <NA>
10043                                                            <NA>
10044                                                            <NA>
10045                                                            <NA>
10046                                                            <NA>
10047                                                            <NA>
10048                                                            <NA>
10049                                                            <NA>
10050                                                            <NA>
10051                                                            <NA>
10052                                                            <NA>
10053                                                 based on weight
10054                                                            <NA>
10055                                                            <NA>
10056                                                            <NA>
10057                                                            <NA>
10058                                                            <NA>
10059                                                            <NA>
10060                                                            <NA>
10061                                                    small amount
10062                                                            <NA>
10063                                                 based on weight
10064                                                            <NA>
10065                                                            <NA>
10066                                                 based on weight
10067                                                            <NA>
10068                                                            <NA>
10069                                                            <NA>
10070                                                            <NA>
10071                                                            <NA>
10072                                                            <NA>
10073                                                            <NA>
10074                                                            <NA>
10075                                                            <NA>
10076                                                            <NA>
10077                                                            <NA>
10078                                                            <NA>
10079                                                            <NA>
10080                                                            <NA>
10081                                                            <NA>
10082                                                            <NA>
10083                                                            <NA>
10084                                                            <NA>
10085                                                            <NA>
10086                                                            <NA>
10087                                                            <NA>
10088                                                            <NA>
10089                                                            <NA>
10090                                                            <NA>
10091                                                            <NA>
10092                                                            <NA>
10093                                                            <NA>
10094                                                            <NA>
10095                                                            <NA>
10096                                                            <NA>
10097                                                            <NA>
10098                                                            <NA>
10099                                                            <NA>
10100                                                            <NA>
10101                                                            <NA>
10102                                                            <NA>
10103                                                            <NA>
10104                                                            <NA>
10105                                                            <NA>
10106                                                            <NA>
10107                                                            <NA>
10108                                                            <NA>
10109                                                            <NA>
10110                                                            <NA>
10111                                                            <NA>
10112                                                            <NA>
10113                                                            <NA>
10114                                                            <NA>
10115                                             tablet/pill/capsule
10116                                                            <NA>
10117                                                            <NA>
10118                                                            <NA>
10119                                                     combination
10120                                                            <NA>
10121                                             tablet/pill/capsule
10122                                                            <NA>
10123                                                            <NA>
10124                                                            <NA>
10125                                                            <NA>
10126                                                            <NA>
10127                                                            <NA>
10128                                                            <NA>
10129                                                            <NA>
10130                                                            <NA>
10131                                                            <NA>
10132                                                            <NA>
10133                                                            <NA>
10134                                             tablet/pill/capsule
10135                                                            <NA>
10136                                                            <NA>
10137                                                            <NA>
10138                                                            <NA>
10139                                                            <NA>
10140                                                            <NA>
10141                                                            <NA>
10142                                             tablet/pill/capsule
10143                                                           scoop
10144                                                           scoop
10145                                                            <NA>
10146                                                            <NA>
10147                                                            <NA>
10148                                                            <NA>
10149                                                            <NA>
10150                                                            <NA>
10151                                                            <NA>
10152                                                            <NA>
10153                                                            <NA>
10154                                                            <NA>
10155                                                            <NA>
10156                                                            <NA>
10157                                                            <NA>
10158                                                            <NA>
10159                                                            <NA>
10160                                                            <NA>
10161                                                            <NA>
10162                                                            <NA>
10163                                                            <NA>
10164                                                 based on weight
10165                                                            <NA>
10166                                                            <NA>
10167                                    based on weight (50-100 lbs)
10168                                                            <NA>
10169                                                            <NA>
10170                                    based on weight (50-100 lbs)
10171                                                            <NA>
10172                                             tablet/pill/capsule
10173                                                            <NA>
10174                                                            <NA>
10175                                           1 tablet/pill/capsule
10176                                                    small amount
10177                                                            <NA>
10178                                                            <NA>
10179                                                            <NA>
10180                                                            <NA>
10181                                    based on weight (50-100 lbs)
10182                                                            <NA>
10183                                                            <NA>
10184                                                            <NA>
10185                                                            <NA>
10186                                                            <NA>
10187                                                    small amount
10188                                             tablet/pill/capsule
10189                                                            <NA>
10190                                                            <NA>
10191                                                            <NA>
10192                                                            <NA>
10193                                                            <NA>
10194                                                            <NA>
10195                                                            <NA>
10196                                                            <NA>
10197                                                            <NA>
10198                                                            <NA>
10199                                                            <NA>
10200                                             tablet/pill/capsule
10201                                                            <NA>
10202                                                            <NA>
10203                                                            <NA>
10204                                                            <NA>
10205                                                            <NA>
10206                                                            <NA>
10207                                                            <NA>
10208                                                            <NA>
10209                                                 based on weight
10210                                                            <NA>
10211                                                            <NA>
10212                                                            <NA>
10213                                                            <NA>
10214                                                            <NA>
10215                                                            <NA>
10216                                                            <NA>
10217                                                            <NA>
10218                                                            <NA>
10219                                                 based on weight
10220                                                            <NA>
10221                                                            <NA>
10222                                                            <NA>
10223                                                            <NA>
10224                                                            <NA>
10225                                                            <NA>
10226                                                            <NA>
10227                                                            <NA>
10228                                                            <NA>
10229                                                            <NA>
10230                                    based on weight (50-100 lbs)
10231                                    based on weight (60-120 lbs)
10232                                                            <NA>
10233                                                            <NA>
10234                                                            <NA>
10235                                                            <NA>
10236                                                            <NA>
10237                                                            <NA>
10238                                                            <NA>
10239                                                            <NA>
10240                                                            <NA>
10241                                                            <NA>
10242                                                            <NA>
10243                                                            <NA>
10244                                                            <NA>
10245                                             tablet/pill/capsule
10246                                                            <NA>
10247                                             tablet/pill/capsule
10248                                                            <NA>
10249                                     based on weight (44-88 lbs)
10250                                                            <NA>
10251                                                            <NA>
10252                                                            <NA>
10253                                                            <NA>
10254                                                            <NA>
10255                                                            <NA>
10256                                                            <NA>
10257                                                            <NA>
10258                                                            <NA>
10259                                                            <NA>
10260                                                            <NA>
10261                                     based on weight (44-88 lbs)
10262                                                            <NA>
10263                                                            <NA>
10264                                                 moderate amount
10265                                                            <NA>
10266                                                            <NA>
10267                                                            <NA>
10268                                             tablet/pill/capsule
10269                                                            <NA>
10270                                                            <NA>
10271                                                            <NA>
10272                                                            <NA>
10273                                                 based on weight
10274                                                 based on weight
10275                                                 based on weight
10276                                                 based on weight
10277                                                            <NA>
10278                                             tablet/pill/capsule
10279                                                            <NA>
10280                                                            <NA>
10281                                                            <NA>
10282                                                            <NA>
10283                                                    pack/package
10284                                                            <NA>
10285                                             tablet/pill/capsule
10286                                             tablet/pill/capsule
10287                                                            <NA>
10288                                                            <NA>
10289                                                            <NA>
10290                                                            <NA>
10291                                                           mg/ml
10292                                                            <NA>
10293                                                               %
10294                                                            <NA>
10295                                                            <NA>
10296                                                            <NA>
10297                                                            <NA>
10298                                                            <NA>
10299                                                            <NA>
10300                                                     bottle/vial
10301                                                            <NA>
10302                                                            <NA>
10303                                                            <NA>
10304                                                            <NA>
10305                                                            <NA>
10306                                                            <NA>
10307                                                            <NA>
10308                                                            <NA>
10309                                                            <NA>
10310                                                            <NA>
10311                                                            <NA>
10312                                                            <NA>
10313                                                            <NA>
10314                                                            <NA>
10315                                                            <NA>
10316                                                            <NA>
10317                                                            <NA>
10318                                                            <NA>
10319                                                            <NA>
10320                                                            <NA>
10321                                                            <NA>
10322                                                            <NA>
10323                                                            <NA>
10324                                                            <NA>
10325                                                            <NA>
10326                                                            <NA>
10327                                                            <NA>
10328                                                            <NA>
10329                                                            <NA>
10330                                                            <NA>
10331                                                            <NA>
10332                                                 based on weight
10333                                                 based on weight
10334                                             tablet/pill/capsule
10335                                             tablet/pill/capsule
10336                                                            <NA>
10337                                                            <NA>
10338                                                            <NA>
10339                                                            <NA>
10340                                                            <NA>
10341                                                            <NA>
10342                                                            <NA>
10343                                                            <NA>
10344                                                            <NA>
10345                                                    small amount
10346                                                            <NA>
10347                                             tablet/pill/capsule
10348                                             tablet/pill/capsule
10349                                                    small amount
10350                                                            <NA>
10351                                                            <NA>
10352                                             tablet/pill/capsule
10353                                                            <NA>
10354                                                            <NA>
10355                                                            <NA>
10356                                                    small amount
10357                                                            <NA>
10358                                                            <NA>
10359                                                            <NA>
10360                                                            <NA>
10361                                             tablet/pill/capsule
10362                                                            <NA>
10363                                             tablet/pill/capsule
10364                                                            <NA>
10365                                             tablet/pill/capsule
10366                                                            tube
10367                                                            <NA>
10368                                                            <NA>
10369                                                            <NA>
10370                                                            <NA>
10371                                                            <NA>
10372                                                     combination
10373                                                            <NA>
10374                                                     combination
10375                                                            <NA>
10376                                                            <NA>
10377                                                            <NA>
10378                                                            <NA>
10379                                                            <NA>
10380                                                            <NA>
10381                                                            <NA>
10382                                                            <NA>
10383                                                            <NA>
10384                                                            <NA>
10385                                                            <NA>
10386                                                            <NA>
10387                                                            <NA>
10388                                                            <NA>
10389                                                            <NA>
10390                                                            <NA>
10391                                                            <NA>
10392                                                            <NA>
10393                                                            <NA>
10394                                                            <NA>
10395                                                            <NA>
10396                                                            <NA>
10397                                                            <NA>
10398                                                            <NA>
10399                                                            <NA>
10400                                                            <NA>
10401                                                            <NA>
10402                                                            <NA>
10403                                                          1 tube
10404                                                            <NA>
10405                                                 based on weight
10406                                                            <NA>
10407                                                            <NA>
10408                                             tablet/pill/capsule
10409                                                            <NA>
10410                                                            <NA>
10411                                                            <NA>
10412                                                            <NA>
10413                                                            <NA>
10414                                                            <NA>
10415                                                            <NA>
10416                                                            <NA>
10417                                                            <NA>
10418                                                            <NA>
10419                                                            <NA>
10420                                                            <NA>
10421                                                            <NA>
10422                                                            <NA>
10423                                                            <NA>
10424                                                            <NA>
10425                                                            <NA>
10426                                                               %
10427                                                            <NA>
10428                                                            <NA>
10429                                                            <NA>
10430                                                            <NA>
10431                                                            <NA>
10432                                                            <NA>
10433                                                            <NA>
10434                                                            <NA>
10435                                                            <NA>
10436                                                        wipe/pad
10437                                                            <NA>
10438                                                            <NA>
10439                                                            <NA>
10440                                                            <NA>
10441                                                            <NA>
10442                                                            <NA>
10443                                                            <NA>
10444                                                            <NA>
10445                                                           spray
10446                                                            <NA>
10447                                                            <NA>
10448                                                            <NA>
10449                                                            <NA>
10450                                                            <NA>
10451                                                            <NA>
10452                                                            <NA>
10453                                                            <NA>
10454                                                            <NA>
10455                                                            <NA>
10456                                                            <NA>
10457                                                            <NA>
10458                                                            <NA>
10459                                                            <NA>
10460                                                            <NA>
10461                                                            <NA>
10462                                                            <NA>
10463                                                            <NA>
10464                                                            <NA>
10465                                                            <NA>
10466                                                            <NA>
10467                                                           mg/ml
10468                                                            <NA>
10469                                                            <NA>
10470                                                            <NA>
10471                                                            <NA>
10472                                                            <NA>
10473                                                            <NA>
10474                                                            <NA>
10475                                                            <NA>
10476                                                            <NA>
10477                                                     bottle/vial
10478                                    based on weight (50-100 lbs)
10479                                                            <NA>
10480                                                            <NA>
10481                                                            <NA>
10482                                                            <NA>
10483                                                            <NA>
10484                                                            <NA>
10485                                                            <NA>
10486                                                            <NA>
10487                                                            <NA>
10488                                                            <NA>
10489                                                            <NA>
10490                                                            <NA>
10491                                                            <NA>
10492                                                            <NA>
10493                                                            <NA>
10494                                                            <NA>
10495                                                            <NA>
10496                                                            <NA>
10497                                                            <NA>
10498                                                            <NA>
10499                                                            <NA>
10500                                                            <NA>
10501                                                            <NA>
10502                                                            <NA>
10503                                           1 tablet/pill/capsule
10504                                                            <NA>
10505                                           1 tablet/pill/capsule
10506                                                            <NA>
10507                                                            <NA>
10508                                                            <NA>
10509                                                            <NA>
10510                                                            <NA>
10511                                                            <NA>
10512                                                            <NA>
10513                                                            <NA>
10514                                                            <NA>
10515                                                            <NA>
10516                                                            <NA>
10517                                                            <NA>
10518                                                            <NA>
10519                                                            <NA>
10520                                                            <NA>
10521                                                            <NA>
10522                                                            <NA>
10523                                                            <NA>
10524                                                            <NA>
10525                                                            <NA>
10526                                                     unspecified
10527                                                            <NA>
10528                                                            <NA>
10529                                                    small amount
10530                                                               %
10531                                                            <NA>
10532                                                            <NA>
10533                                                            <NA>
10534                                                            <NA>
10535                                                            <NA>
10536                                                            <NA>
10537                                                            <NA>
10538                                                            <NA>
10539                                                            <NA>
10540                                                            <NA>
10541                                                            <NA>
10542                                                            <NA>
10543                                                            <NA>
10544                                                            <NA>
10545                                                            <NA>
10546                                                            <NA>
10547                                                            <NA>
10548                                                            <NA>
10549                                                            <NA>
10550                                                            <NA>
10551                                                            <NA>
10552                                                            <NA>
10553                                                            <NA>
10554                                                            <NA>
10555                                                     application
10556                                                            <NA>
10557                                                            <NA>
10558                                                            <NA>
10559                                                            <NA>
10560                                                            <NA>
10561                                                            <NA>
10562                                                            <NA>
10563                                                            <NA>
10564                                                            <NA>
10565                                                            <NA>
10566                                                            <NA>
10567                                                            <NA>
10568                                                            <NA>
10569                                                            <NA>
10570                                                            <NA>
10571                                                            <NA>
10572                                                            <NA>
10573                                                            <NA>
10574                                                            <NA>
10575                                                    small amount
10576                                                            <NA>
10577                                                            <NA>
10578                                                            <NA>
10579                                                            <NA>
10580                                                            <NA>
10581                                                            <NA>
10582                                                            <NA>
10583                                                 based on weight
10584                                                            <NA>
10585                                                            <NA>
10586                                                            <NA>
10587                                                            <NA>
10588                                             tablet/pill/capsule
10589                                             tablet/pill/capsule
10590                                             tablet/pill/capsule
10591                                           1 tablet/pill/capsule
10592                                                            <NA>
10593                                                            <NA>
10594                                                 based on weight
10595                                             tablet/pill/capsule
10596                                                            <NA>
10597                                                            <NA>
10598                                                            <NA>
10599                                                            <NA>
10600                                                            <NA>
10601                                                            <NA>
10602                                                            <NA>
10603                                                            <NA>
10604                                                            <NA>
10605                                                            <NA>
10606                                                            <NA>
10607                                                            <NA>
10608                                                          mcg/hr
10609                                                            <NA>
10610                                                            <NA>
10611                                                            <NA>
10612                                                            <NA>
10613                                                            <NA>
10614                                                            <NA>
10615                                                            <NA>
10616                                                           spray
10617                                                            <NA>
10618                                             tablet/pill/capsule
10619                                             tablet/pill/capsule
10620                                                            <NA>
10621                                                            <NA>
10622                                                            <NA>
10623                                                            <NA>
10624                                                 based on weight
10625                                                            <NA>
10626                                                            <NA>
10627                                                            <NA>
10628                                                      inch strip
10629                                                            <NA>
10630                                                            <NA>
10631                                                            <NA>
10632                                                            <NA>
10633                                                            <NA>
10634                                                            <NA>
10635                                                            <NA>
10636                                                            <NA>
10637                                                            <NA>
10638                                                            <NA>
10639                                                            <NA>
10640                                                            <NA>
10641                                                            <NA>
10642                                                            <NA>
10643                                                            <NA>
10644                                                            <NA>
10645                                                            <NA>
10646                                                            <NA>
10647                                                            <NA>
10648                                                            <NA>
10649                                                            <NA>
10650                                                            <NA>
10651                                                            <NA>
10652                                                            <NA>
10653                                             tablet/pill/capsule
10654                                                            <NA>
10655                                    based on weight (50-100 lbs)
10656                                                            <NA>
10657                                                            <NA>
10658                                                            <NA>
10659                                                            <NA>
10660                                                            <NA>
10661                                                            <NA>
10662                                                            <NA>
10663                                                            <NA>
10664                                                            <NA>
10665                                                            <NA>
10666                                                            <NA>
10667                                                            <NA>
10668                                                            <NA>
10669                                                            <NA>
10670                                                            <NA>
10671                                                            <NA>
10672                                                            <NA>
10673                                                            <NA>
10674                                             tablet/pill/capsule
10675                                                            <NA>
10676                                                            <NA>
10677                                                            <NA>
10678                                                            <NA>
10679                                                            <NA>
10680                                                            <NA>
10681                                                            <NA>
10682                                                            <NA>
10683                                    based on weight (50-100 lbs)
10684                                    based on weight (50-100 lbs)
10685                                                 based on weight
10686                                                     unspecified
10687                                                      1-2 scoops
10688                                                            <NA>
10689                                    based on weight (50-100 lbs)
10690                                                            <NA>
10691                                                            <NA>
10692                                                            <NA>
10693                                                            <NA>
10694                                    based on weight (50-100 lbs)
10695                                                            <NA>
10696                                                            <NA>
10697                                                            <NA>
10698                                                            <NA>
10699                                                            <NA>
10700                                                            <NA>
10701                                                            <NA>
10702                                                            <NA>
10703                                                            <NA>
10704                                                            <NA>
10705                                                            <NA>
10706                                                            <NA>
10707                                    based on weight (50-100 lbs)
10708                                                            <NA>
10709                                                            <NA>
10710                                                            <NA>
10711                                    based on weight (50-100 lbs)
10712                                                 based on weight
10713                                                     unspecified
10714                                                      1-2 scoops
10715                                                            <NA>
10716                                                            <NA>
10717                                    based on weight (50-100 lbs)
10718                                                            <NA>
10719                                                            <NA>
10720                                                            <NA>
10721                                                            <NA>
10722                                                            <NA>
10723                                                            <NA>
10724                                                            <NA>
10725                                    based on weight (50-100 lbs)
10726                                                          powder
10727                                                     unspecified
10728                                                            <NA>
10729                                                            <NA>
10730                                                            <NA>
10731                                                            <NA>
10732                                                            <NA>
10733                                                            <NA>
10734                                                            <NA>
10735                                                            <NA>
10736                                                            <NA>
10737                                                            <NA>
10738                                                            <NA>
10739                                                            <NA>
10740                                                            <NA>
10741                                                            <NA>
10742                                                            <NA>
10743                                                        wipe/pad
10744                                                            <NA>
10745                                                            <NA>
10746                                                            <NA>
10747                                                            <NA>
10748                                                            <NA>
10749                                                            <NA>
10750                                                            <NA>
10751                                                            <NA>
10752                                                            <NA>
10753                                                            <NA>
10754                                                            <NA>
10755                                                            <NA>
10756                                           1 tablet/pill/capsule
10757                                                            <NA>
10758                                                            <NA>
10759                                                            <NA>
10760                                                            <NA>
10761                                                            <NA>
10762                                                            <NA>
10763                                                            <NA>
10764                                                            <NA>
10765                                                            <NA>
10766                                                            <NA>
10767                                                            <NA>
10768                                                            <NA>
10769                                                            <NA>
10770                                                            <NA>
10771                                                            <NA>
10772                                                            <NA>
10773                                                            <NA>
10774                                                            <NA>
10775                                                            <NA>
10776                                                            <NA>
10777                                                            <NA>
10778                                                            <NA>
10779                                                            <NA>
10780                                                 based on weight
10781                                                 based on weight
10782                                                            <NA>
10783                                                            <NA>
10784                                                            <NA>
10785                                                            <NA>
10786                                                            <NA>
10787                                                            <NA>
10788                                                            <NA>
10789                                                            <NA>
10790                                                            <NA>
10791                                                            <NA>
10792                                                            <NA>
10793                                                            <NA>
10794                                                 based on weight
10795                                                            <NA>
10796                                                     combination
10797                                                            <NA>
10798                                                            <NA>
10799                                                            <NA>
10800                                                            <NA>
10801                                                            <NA>
10802                                                            <NA>
10803                                             tablet/pill/capsule
10804                                                            <NA>
10805                                             tablet/pill/capsule
10806                                                            <NA>
10807                                                            <NA>
10808                                                            <NA>
10809                                                            <NA>
10810                                                            <NA>
10811                                                            <NA>
10812                                                            <NA>
10813                                                            <NA>
10814                                                            <NA>
10815                                                            <NA>
10816                                                            <NA>
10817                                                            <NA>
10818                                                            <NA>
10819                                             tablet/pill/capsule
10820                                             tablet/pill/capsule
10821                                                            <NA>
10822                                                            <NA>
10823                                                            <NA>
10824                                                 based on weight
10825                                                          collar
10826                                                            <NA>
10827                                                          collar
10828                                                            <NA>
10829                                                            <NA>
10830                                             tablet/pill/capsule
10831                                                            <NA>
10832                                                            <NA>
10833                                                            <NA>
10834                                                            <NA>
10835                                                            <NA>
10836                                                            <NA>
10837                                                  125 mg, 500 mg
10838                                                            <NA>
10839                                                            <NA>
10840                                                            <NA>
10841                     2 mg prednisone, 5 mg trimeprazine tartrate
10842                                    based on weight (50-100 lbs)
10843                                    based on weight (85-130 lbs)
10844                                                            <NA>
10845                                                            <NA>
10846                                             tablet/pill/capsule
10847                                                            <NA>
10848                                                            <NA>
10849                                                 based on weight
10850                                                 based on weight
10851                                                 based on weight
10852                                                            <NA>
10853                                                    small amount
10854                                                            <NA>
10855                                                            <NA>
10856                                                            <NA>
10857                                                            <NA>
10858                                                            <NA>
10859                                                            <NA>
10860                                                            <NA>
10861                                                            <NA>
10862                                                            <NA>
10863                                                            pump
10864                                                            <NA>
10865                                                            <NA>
10866                                                            <NA>
10867                                                            <NA>
10868                                                            <NA>
10869                                                            <NA>
10870                                             tablet/pill/capsule
10871                                                     bottle/vial
10872                                                            <NA>
10873                                                            <NA>
10874                                             tablet/pill/capsule
10875                                                            <NA>
10876                                                            <NA>
10877                                             tablet/pill/capsule
10878                                             tablet/pill/capsule
10879                                                            <NA>
10880                                                            <NA>
10881                                                            <NA>
10882                                                            <NA>
10883                                                            <NA>
10884                                                            <NA>
10885                                                            <NA>
10886                                                            <NA>
10887                                                            <NA>
10888                                                            <NA>
10889                                                            <NA>
10890                                                            <NA>
10891                                                            <NA>
10892                                                            <NA>
10893                                                            <NA>
10894                                                            <NA>
10895                                                            <NA>
10896                                                            <NA>
10897                                                            <NA>
10898                                                            <NA>
10899                                                            <NA>
10900                                                            <NA>
10901                                                            <NA>
10902                                                            <NA>
10903                                                            <NA>
10904                                                            <NA>
10905                                                           spray
10906                                                            <NA>
10907                                                            <NA>
10908                                                            <NA>
10909                                                            <NA>
10910                                                            <NA>
10911                                                            <NA>
10912                                                            <NA>
10913                                                            <NA>
10914                                                            <NA>
10915                                                            <NA>
10916                                                            <NA>
10917                                                           drops
10918                                                            <NA>
10919                                                    small amount
10920                                                            <NA>
10921                                                            <NA>
10922                                                            <NA>
10923                                                            <NA>
10924                                                            <NA>
10925                                                            <NA>
10926                                                            <NA>
10927                                    based on weight (60-120 lbs)
10928                                                            tube
10929                                                            tube
10930                                                            <NA>
10931                                                            <NA>
10932                                                 based on weight
10933                                                 based on weight
10934                                                 based on weight
10935                                                            <NA>
10936                                             tablet/pill/capsule
10937                                                            <NA>
10938                                             tablet/pill/capsule
10939                                                      inch strip
10940                                                            <NA>
10941                                                            <NA>
10942                                                            <NA>
10943                                                            <NA>
10944                                                            <NA>
10945                                                            <NA>
10946                                                            <NA>
10947                                                            <NA>
10948                                                            <NA>
10949                                                            <NA>
10950                                                 based on weight
10951                                                            <NA>
10952                                                            <NA>
10953                                                            <NA>
10954                                                            <NA>
10955                                                            <NA>
10956                                                            <NA>
10957                                                            <NA>
10958                                                            <NA>
10959                                                            <NA>
10960                                                            <NA>
10961                                                            <NA>
10962                                                            <NA>
10963                                                            <NA>
10964                                                            <NA>
10965                                                            <NA>
10966                                                 based on weight
10967                                                 based on weight
10968                                             tablet/pill/capsule
10969                                             tablet/pill/capsule
10970                                             tablet/pill/capsule
10971                                             tablet/pill/capsule
10972                                                            <NA>
10973                                                            <NA>
10974                                             tablet/pill/capsule
10975                                                            <NA>
10976                                                            <NA>
10977                                                            <NA>
10978                                                            <NA>
10979                                                            <NA>
10980                                                            <NA>
10981                                                            <NA>
10982                                                            <NA>
10983                                                            <NA>
10984                                                            <NA>
10985                                             tablet/pill/capsule
10986                                                            <NA>
10987                                                            <NA>
10988                                                            <NA>
10989                                             tablet/pill/capsule
10990                                                 based on weight
10991                                                            <NA>
10992                                                            <NA>
10993                                                            <NA>
10994                                                            <NA>
10995                                                            <NA>
10996                                                            <NA>
10997                                                            <NA>
10998                                                 syringe/pipette
10999                                                            <NA>
11000                                                            <NA>
11001                                                            <NA>
11002                                             tablet/pill/capsule
11003                                             tablet/pill/capsule
11004                                                            <NA>
11005                                                            <NA>
11006                                                            <NA>
11007                                                 based on weight
11008                                           1 tablet/pill/capsule
11009                                           1 tablet/pill/capsule
11010                                                 based on weight
11011                                                 based on weight
11012                                                            <NA>
11013                                                            <NA>
11014                                                            <NA>
11015                                                            <NA>
11016                                                    small amount
11017                                                            <NA>
11018                                                            <NA>
11019                                                            <NA>
11020                                                            <NA>
11021                                                            <NA>
11022                                                            <NA>
11023                                                            <NA>
11024                                                            <NA>
11025                                                            <NA>
11026                                                            <NA>
11027                                                            <NA>
11028                                                            <NA>
11029                                                            <NA>
11030                                                            <NA>
11031                                                            <NA>
11032                                                            <NA>
11033                                                            <NA>
11034                                                            <NA>
11035                                             tablet/pill/capsule
11036                                             tablet/pill/capsule
11037                                             tablet/pill/capsule
11038                                             tablet/pill/capsule
11039                                             tablet/pill/capsule
11040                                             tablet/pill/capsule
11041                                             tablet/pill/capsule
11042                                             tablet/pill/capsule
11043                                                            <NA>
11044                                                            <NA>
11045                                                            <NA>
11046                                                            <NA>
11047                                                            <NA>
11048                                                            <NA>
11049                                                            <NA>
11050                                                            <NA>
11051                                                            <NA>
11052                                                            tube
11053                                                            <NA>
11054                                                            <NA>
11055                                                            <NA>
11056                                                            <NA>
11057                                                            <NA>
11058                                                            <NA>
11059                                                            <NA>
11060                                                            <NA>
11061                                                            <NA>
11062                                             tablet/pill/capsule
11063                                                            <NA>
11064                                                            <NA>
11065                                                            <NA>
11066                                                            <NA>
11067                                                            <NA>
11068                                                            <NA>
11069                                             tablet/pill/capsule
11070                                    based on weight (50-100 lbs)
11071                                                            <NA>
11072                                                            <NA>
11073                                                            <NA>
11074                                                            <NA>
11075                                                            <NA>
11076                                                            <NA>
11077                                                            <NA>
11078                                                            <NA>
11079                                                            <NA>
11080                                                            <NA>
11081                                                            <NA>
11082                                                            <NA>
11083                                                            <NA>
11084                                                            <NA>
11085                                                            <NA>
11086                                                            <NA>
11087                                                            <NA>
11088                                                            <NA>
11089                                                            <NA>
11090                                                            <NA>
11091                                     based on weight (21-55 lbs)
11092                                                            <NA>
11093                                                            <NA>
11094                                                            <NA>
11095                                                            <NA>
11096                                                            <NA>
11097                                                            <NA>
11098                                                            <NA>
11099                                                            <NA>
11100                                                            <NA>
11101                                                            <NA>
11102                                                            <NA>
11103                                                            <NA>
11104                                                            <NA>
11105                                                            <NA>
11106                                                 based on weight
11107                                                            <NA>
11108                                                            <NA>
11109                                                            pump
11110                                                            <NA>
11111                                                            <NA>
11112                                                            <NA>
11113                                                            <NA>
11114                                                            <NA>
11115                                                            <NA>
11116                                                            <NA>
11117                                                            <NA>
11118                                                            <NA>
11119                                                            <NA>
11120                                                            <NA>
11121                                                            <NA>
11122                                                            <NA>
11123                                                            <NA>
11124                                                            <NA>
11125                                                            <NA>
11126                                                            <NA>
11127                                                            <NA>
11128                                                            <NA>
11129                                                            <NA>
11130                                                            <NA>
11131                                                            <NA>
11132                                                            <NA>
11133                                                            <NA>
11134                                                 based on weight
11135                                                            <NA>
11136                                                            <NA>
11137                                                            <NA>
11138                                                            <NA>
11139                                                            <NA>
11140                                                            <NA>
11141                                                            <NA>
11142                                                            <NA>
11143                                                            <NA>
11144                                                            <NA>
11145                                                            <NA>
11146                                                            <NA>
11147                                                            <NA>
11148                                                            <NA>
11149                                                            <NA>
11150                                                            <NA>
11151                                                            <NA>
11152                                                 based on weight
11153                                                 based on weight
11154                                                            <NA>
11155                                                            <NA>
11156                                                            <NA>
11157                                                            <NA>
11158                                                 based on weight
11159                                                            <NA>
11160                                                            <NA>
11161                                                            <NA>
11162                                                            <NA>
11163                                                            <NA>
11164                                                            <NA>
11165                                                 based on weight
11166                                                 based on weight
11167                                                            <NA>
11168                                                            <NA>
11169                                                            <NA>
11170                                                            <NA>
11171                                                            <NA>
11172                                                            <NA>
11173                                                            <NA>
11174                                                            <NA>
11175                                                            <NA>
11176                                                            <NA>
11177                                                            <NA>
11178                                                            <NA>
11179                                                            <NA>
11180                                                            <NA>
11181                                                            <NA>
11182                                                            <NA>
11183                                                            <NA>
11184                                                            <NA>
11185                                                            <NA>
11186                                             tablet/pill/capsule
11187                                                            <NA>
11188                                                            <NA>
11189                                                            <NA>
11190                                                            <NA>
11191                                           1 tablet/pill/capsule
11192                                                            <NA>
11193                                                            <NA>
11194                                                            <NA>
11195                                                            <NA>
11196                                                            <NA>
11197                                                            <NA>
11198                                                            <NA>
11199                                                            <NA>
11200                                             tablet/pill/capsule
11201                                                            <NA>
11202                                                            <NA>
11203                                                 based on weight
11204                                                            <NA>
11205                                                            <NA>
11206                                                            <NA>
11207                                                            <NA>
11208                                                            <NA>
11209                                                            <NA>
11210                                                     unspecified
11211                                                     unspecified
11212                                                 based on weight
11213                                                            <NA>
11214                                                            <NA>
11215                                                            <NA>
11216                                                            <NA>
11217                                                            <NA>
11218                                                            <NA>
11219                                                            <NA>
11220                                                            <NA>
11221                                                            <NA>
11222                                                            <NA>
11223                                                            <NA>
11224                                             tablet/pill/capsule
11225                                                            <NA>
11226                                                            <NA>
11227                                                     bottle/vial
11228                                             tablet/pill/capsule
11229                                                            <NA>
11230                                                            <NA>
11231                                                            <NA>
11232                                                            <NA>
11233                                             tablet/pill/capsule
11234                                                            <NA>
11235                                                            <NA>
11236                                                            <NA>
11237                                                            <NA>
11238                                                            <NA>
11239                                                            <NA>
11240                                                            <NA>
11241                                                            <NA>
11242                        460 mg lufenuron, 23 mg milbemycin oxime
11243                                                            <NA>
11244                                                            <NA>
11245                                                            <NA>
11246                                                            <NA>
11247                                                            <NA>
11248                                                            <NA>
11249                                                            <NA>
11250                                                            <NA>
11251                                                            <NA>
11252                                                            <NA>
11253                                                            <NA>
11254                                                            <NA>
11255                                                            <NA>
11256                                                            <NA>
11257                                                            <NA>
11258                                                           spray
11259                                                            <NA>
11260                                                            <NA>
11261                                                            <NA>
11262                                                            <NA>
11263                                                            <NA>
11264                                                            <NA>
11265                                                            <NA>
11266                                                            <NA>
11267                                                            <NA>
11268                                                            <NA>
11269                                                            <NA>
11270                                                            <NA>
11271                                                            <NA>
11272                                                            <NA>
11273                                                            <NA>
11274                                                            <NA>
11275                                                            <NA>
11276                                                            <NA>
11277                                                            <NA>
11278                                                            <NA>
11279                                                            <NA>
11280                                                            <NA>
11281                                                            <NA>
11282                                                            <NA>
11283                                                            <NA>
11284                                                            <NA>
11285                                                            <NA>
11286                                                            <NA>
11287                                                            <NA>
11288                                                            <NA>
11289                                                            <NA>
11290                                                            <NA>
11291                                                 based on weight
11292                                                 based on weight
11293                                           1 tablet/pill/capsule
11294                                           1 tablet/pill/capsule
11295                                           1 tablet/pill/capsule
11296                                           1 tablet/pill/capsule
11297                                                            <NA>
11298                                             tablet/pill/capsule
11299                                                            <NA>
11300                                                            <NA>
11301                                                            <NA>
11302                                                            <NA>
11303                                                            <NA>
11304                                                            <NA>
11305                                                            <NA>
11306                                                            <NA>
11307                                             tablet/pill/capsule
11308                                                            <NA>
11309                                             tablet/pill/capsule
11310                                             tablet/pill/capsule
11311                                                            <NA>
11312                                                            <NA>
11313                                                            <NA>
11314                                                            <NA>
11315                                                            <NA>
11316                                                            <NA>
11317                                                            <NA>
11318                                                            <NA>
11319                                                            <NA>
11320                                                            <NA>
11321                                             tablet/pill/capsule
11322                                                            <NA>
11323                                                            <NA>
11324                                                            <NA>
11325                                             tablet/pill/capsule
11326                                             tablet/pill/capsule
11327                                             tablet/pill/capsule
11328                                             tablet/pill/capsule
11329                                             tablet/pill/capsule
11330                                             tablet/pill/capsule
11331                                                            <NA>
11332                                                            <NA>
11333                                                            <NA>
11334                                             tablet/pill/capsule
11335                                                            <NA>
11336                                                            <NA>
11337                                                            <NA>
11338                                                    small amount
11339                                                            <NA>
11340                                                            <NA>
11341                                                 based on weight
11342                                                 based on weight
11343                                                            <NA>
11344                                             tablet/pill/capsule
11345                                             tablet/pill/capsule
11346                                                          liquid
11347                                                            <NA>
11348                                                            <NA>
11349                                                          liquid
11350                                                            <NA>
11351                                                            <NA>
11352                                                            <NA>
11353                                                            <NA>
11354                                                            <NA>
11355                                                            <NA>
11356                                                    small amount
11357                                                            <NA>
11358                                                            <NA>
11359                                                            <NA>
11360                                                            <NA>
11361                                                            <NA>
11362                                             tablet/pill/capsule
11363                                                            <NA>
11364                                                            <NA>
11365                                                            <NA>
11366                                                 based on weight
11367                                                            <NA>
11368                                             tablet/pill/capsule
11369                                                            <NA>
11370                                                            <NA>
11371                                                            <NA>
11372                                                            <NA>
11373                                                            <NA>
11374                                                            <NA>
11375                                                            <NA>
11376                                                            <NA>
11377                                                 based on weight
11378                                                            <NA>
11379                                                            <NA>
11380                                                            <NA>
11381                                             tablet/pill/capsule
11382                                                            <NA>
11383                                                            <NA>
11384                                                            <NA>
11385                                             tablet/pill/capsule
11386                                             tablet/pill/capsule
11387                                                    pack/package
11388                                                    pack/package
11389                                                            <NA>
11390                                                     application
11391                                                            <NA>
11392                                                            <NA>
11393                                                            <NA>
11394                                                    small amount
11395                                                            <NA>
11396                                                            <NA>
11397                                                            <NA>
11398                                                            <NA>
11399                                                           spray
11400                                                            <NA>
11401                                                            <NA>
11402                                                            <NA>
11403                                                            <NA>
11404                                                            <NA>
11405                                                            <NA>
11406                                                            <NA>
11407                                                            <NA>
11408                                                            <NA>
11409                                             tablet/pill/capsule
11410                                                            <NA>
11411                                                            <NA>
11412                                                            <NA>
11413                                                            <NA>
11414                                                            <NA>
11415                                                    small amount
11416                                                            <NA>
11417                                                            <NA>
11418                                                            <NA>
11419                                             tablet/pill/capsule
11420                                                            <NA>
11421                                                            <NA>
11422                                                            <NA>
11423                                                            <NA>
11424                                                            <NA>
11425                                                 based on weight
11426                                                            <NA>
11427                                                            <NA>
11428                                                            <NA>
11429                                                            <NA>
11430                                                            <NA>
11431                                                            <NA>
11432                                                            <NA>
11433                                                            <NA>
11434                                                            <NA>
11435                                                            <NA>
11436                                                 based on weight
11437                                                 based on weight
11438                                                            <NA>
11439                                                            <NA>
11440                                                            <NA>
11441                                                            <NA>
11442                                                            <NA>
11443                                                            <NA>
11444                                                            <NA>
11445                                                            <NA>
11446                                                            <NA>
11447                                                            <NA>
11448                                                            <NA>
11449                                                            <NA>
11450                                                            <NA>
11451                                                               %
11452                                                            <NA>
11453                                                            <NA>
11454                                                            <NA>
11455                                                            <NA>
11456                                                            <NA>
11457                                                            <NA>
11458                                                            <NA>
11459                                                            <NA>
11460                                                            <NA>
11461                                                 based on weight
11462                                                            <NA>
11463                                                            <NA>
11464                                                    small amount
11465                                                            <NA>
11466                                                            <NA>
11467                                                            <NA>
11468                                                            <NA>
11469                                                            <NA>
11470                                                            <NA>
11471                                                            <NA>
11472                                                            <NA>
11473                                                 based on weight
11474                                                 based on weight
11475                                                            <NA>
11476                                                            <NA>
11477                                             tablet/pill/capsule
11478                                             tablet/pill/capsule
11479                                             tablet/pill/capsule
11480                                                            <NA>
11481                                                            <NA>
11482                                                            <NA>
11483                                                            <NA>
11484                                                            <NA>
11485                                                            <NA>
11486                                                            <NA>
11487                                                            <NA>
11488                                                            <NA>
11489                                                            <NA>
11490                                                            <NA>
11491                                                            <NA>
11492                                                            <NA>
11493                                                            <NA>
11494                                                            <NA>
11495                                                            <NA>
11496                                                            <NA>
11497                                                            <NA>
11498                                                            <NA>
11499                                                            <NA>
11500                                                            <NA>
11501                                                            <NA>
11502                                                            <NA>
11503                                                            <NA>
11504                                                            <NA>
11505                                                 0.25 inch strip
11506                                                 0.25 inch strip
11507                                                           spray
11508                                                            <NA>
11509                                    based on weight (50-100 lbs)
11510                                                            <NA>
11511                                                            <NA>
11512                                                            <NA>
11513                                                            <NA>
11514                                                            <NA>
11515                                                            <NA>
11516                                                            <NA>
11517                                                            <NA>
11518                                                            <NA>
11519                                             tablet/pill/capsule
11520                                                            <NA>
11521                                                            <NA>
11522                                                            <NA>
11523                                                            <NA>
11524                                                            <NA>
11525                                                            <NA>
11526                                                            <NA>
11527                                                            <NA>
11528                                                            <NA>
11529                                                            <NA>
11530                                                            <NA>
11531                                                            <NA>
11532                                                            <NA>
11533                                                            <NA>
11534                                                            <NA>
11535                                                            <NA>
11536                                                            <NA>
11537                                                            <NA>
11538                                                            <NA>
11539                                                            <NA>
11540                                                            <NA>
11541                                                            <NA>
11542                                                            <NA>
11543                                                            <NA>
11544                                                            <NA>
11545                                                            <NA>
11546                                                 based on weight
11547                                                            <NA>
11548                                                            <NA>
11549                                             tablet/pill/capsule
11550                                             tablet/pill/capsule
11551                                                            <NA>
11552                                                            <NA>
11553                                                           mg/ml
11554                                                            <NA>
11555                                                            <NA>
11556                                                            <NA>
11557                                                            <NA>
11558                                                              gm
11559                                                            <NA>
11560                                           1 tablet/pill/capsule
11561                                                 based on weight
11562                                                 based on weight
11563                                                            <NA>
11564                                                            <NA>
11565                                                            <NA>
11566                                                            <NA>
11567                                             tablet/pill/capsule
11568                                             tablet/pill/capsule
11569                                                            <NA>
11570                                             tablet/pill/capsule
11571                                                            <NA>
11572                                                            <NA>
11573                                                            <NA>
11574                                                            <NA>
11575                                                            <NA>
11576                                                            <NA>
11577                                                            <NA>
11578                                                            <NA>
11579                                                            <NA>
11580                                                            <NA>
11581                                                            <NA>
11582                                                            <NA>
11583                                             tablet/pill/capsule
11584                                                            <NA>
11585                                                            <NA>
11586                                             tablet/pill/capsule
11587                                                            <NA>
11588                                                            <NA>
11589                                                 based on weight
11590                                                 based on weight
11591                                                            <NA>
11592                                                            <NA>
11593                                             tablet/pill/capsule
11594                                             tablet/pill/capsule
11595                                             tablet/pill/capsule
11596                                                 based on weight
11597                                                            <NA>
11598                                                               %
11599                                                            tube
11600                                             tablet/pill/capsule
11601                                                            <NA>
11602                                                            <NA>
11603                                                            <NA>
11604                                                            <NA>
11605                                                            <NA>
11606                                                            <NA>
11607                                                            <NA>
11608                                                            <NA>
11609                                                    pack/package
11610                                                            <NA>
11611                                                            <NA>
11612                                                            <NA>
11613                                                            <NA>
11614                                                            <NA>
11615                                                            <NA>
11616                                                            <NA>
11617                                                            <NA>
11618                                                            <NA>
11619                                                            <NA>
11620                                                            <NA>
11621                                                            <NA>
11622                                                            <NA>
11623                                                            <NA>
11624                                                            <NA>
11625                                                            <NA>
11626                                                            <NA>
11627                                                            <NA>
11628                                                            <NA>
11629                                                            <NA>
11630                                                            <NA>
11631                                                            <NA>
11632                                                     application
11633                                                            <NA>
11634                                                            <NA>
11635                                                            <NA>
11636                                                            <NA>
11637                                     based on weight (25-60 lbs)
11638                                                            <NA>
11639                                                            <NA>
11640                                                            <NA>
11641                                                            <NA>
11642                                                            <NA>
11643                                                            <NA>
11644                                                            <NA>
11645                                                            <NA>
11646                                                            <NA>
11647                                                            <NA>
11648                                                            <NA>
11649                                                            tube
11650                                    based on weight (50-100 lbs)
11651                                             tablet/pill/capsule
11652                                                            tube
11653                                    based on weight (60-120 lbs)
11654                                           1 tablet/pill/capsule
11655                                             tablet/pill/capsule
11656                                                 based on weight
11657                                                            <NA>
11658                                                            <NA>
11659                                                            <NA>
11660                                                 based on weight
11661                                           1 tablet/pill/capsule
11662                                           1 tablet/pill/capsule
11663                                                 based on weight
11664                                                 based on weight
11665                                                            <NA>
11666                                                            <NA>
11667                                                            <NA>
11668                                                            <NA>
11669                                                            <NA>
11670                                                            <NA>
11671                                                            <NA>
11672                                                            <NA>
11673                                                            <NA>
11674                                                            <NA>
11675                                                            <NA>
11676                                                            <NA>
11677                                                            <NA>
11678                                                 based on weight
11679                                                            <NA>
11680                                                 based on weight
11681                                                 based on weight
11682                                                            <NA>
11683                                                 based on weight
11684                                                 based on weight
11685                                                            <NA>
11686                                                            <NA>
11687                                                            <NA>
11688                                                            <NA>
11689                                                            <NA>
11690                                                            <NA>
11691                                       based on weight (51+ lbs)
11692                                                            <NA>
11693                                                            <NA>
11694                                                            <NA>
11695                                                    small amount
11696                                                            <NA>
11697                                                            <NA>
11698                                                 based on weight
11699                                             tablet/pill/capsule
11700                                             tablet/pill/capsule
11701                                             tablet/pill/capsule
11702                                                            <NA>
11703                                                            <NA>
11704                                                            <NA>
11705                                                            <NA>
11706                                                            <NA>
11707                                                            <NA>
11708                                                            <NA>
11709                                             tablet/pill/capsule
11710                                             tablet/pill/capsule
11711                                                            <NA>
11712                                                            <NA>
11713                                                            <NA>
11714                                             tablet/pill/capsule
11715                                                     application
11716                                                            <NA>
11717                                                            <NA>
11718                                                            <NA>
11719                                                            <NA>
11720                                                            <NA>
11721                                                            <NA>
11722                                                            <NA>
11723                                                            <NA>
11724                                                           scoop
11725                                                            <NA>
11726                                                            <NA>
11727                                                            <NA>
11728                                             tablet/pill/capsule
11729                                             tablet/pill/capsule
11730                                                            <NA>
11731                                                            <NA>
11732                                                            <NA>
11733                                                            <NA>
11734                                                            <NA>
11735                                                 based on weight
11736                                                            <NA>
11737                                                            <NA>
11738                                                            <NA>
11739                                                            <NA>
11740                                                            <NA>
11741                                             tablet/pill/capsule
11742                                                            <NA>
11743                                                            <NA>
11744                                             tablet/pill/capsule
11745                                                            <NA>
11746                                                            <NA>
11747                                                            <NA>
11748                                                            <NA>
11749                                                            <NA>
11750                                                            <NA>
11751                                                            <NA>
11752                                                            <NA>
11753                                                            <NA>
11754                                                            <NA>
11755                                                            <NA>
11756                                                            <NA>
11757                                                            <NA>
11758                                                            <NA>
11759                                                            <NA>
11760                                                            <NA>
11761                                                            <NA>
11762                                                            <NA>
11763                                                            <NA>
11764                                                            <NA>
11765                                                            <NA>
11766                                                            <NA>
11767                                                            <NA>
11768                                             tablet/pill/capsule
11769                                                            <NA>
11770                                                            <NA>
11771                                                            <NA>
11772                                                            <NA>
11773                                                            <NA>
11774                                                            <NA>
11775                                                            <NA>
11776                                                            <NA>
11777                                                            <NA>
11778                                                            <NA>
11779                                                            <NA>
11780                                                            <NA>
11781                                                            <NA>
11782                                                            <NA>
11783                                                            <NA>
11784                                                            <NA>
11785                                                            <NA>
11786                                                            <NA>
11787                                                            <NA>
11788                                                            <NA>
11789                                                            <NA>
11790                                                            <NA>
11791                                                            <NA>
11792                                                            <NA>
11793                                                            <NA>
11794                                                            <NA>
11795                                                            <NA>
11796                                                            <NA>
11797                                                            <NA>
11798                                                            <NA>
11799                                                            <NA>
11800                                                            <NA>
11801                                                            <NA>
11802                                                            <NA>
11803                                                            <NA>
11804                                                            <NA>
11805                                                            <NA>
11806                                                     unspecified
11807                                                            <NA>
11808                                                           spray
11809                                                            <NA>
11810                                                            <NA>
11811                                                            <NA>
11812                                             tablet/pill/capsule
11813                                                            <NA>
11814                                                 based on weight
11815                                                 based on weight
11816                                                 based on weight
11817                                                            <NA>
11818                                                            <NA>
11819                                                            <NA>
11820                                                            <NA>
11821                                                            <NA>
11822                                             tablet/pill/capsule
11823                                             tablet/pill/capsule
11824                                                     application
11825                                             tablet/pill/capsule
11826                                                            <NA>
11827                                                            <NA>
11828                                                            <NA>
11829                                                            <NA>
11830                                                            <NA>
11831                                                            <NA>
11832                                                     combination
11833                                                     combination
11834                                                            <NA>
11835                                             tablet/pill/capsule
11836                                             tablet/pill/capsule
11837                                             tablet/pill/capsule
11838                                                            <NA>
11839                                                            <NA>
11840                                                            <NA>
11841                                                            <NA>
11842                                                            <NA>
11843                                                            <NA>
11844                                                            <NA>
11845                                                            <NA>
11846                                                            <NA>
11847                                             tablet/pill/capsule
11848                                             tablet/pill/capsule
11849                                                            <NA>
11850                                                            <NA>
11851                                                            <NA>
11852                                                            <NA>
11853                                                            <NA>
11854                                                            <NA>
11855                                                            <NA>
11856                                                            <NA>
11857                                                            <NA>
11858                                                            <NA>
11859                                                            <NA>
11860                                                            <NA>
11861                                                     combination
11862                                                     combination
11863                                                            <NA>
11864                                                            <NA>
11865                                                            <NA>
11866                                                            <NA>
11867                                                            <NA>
11868                                                            <NA>
11869                                                            <NA>
11870                                                            <NA>
11871                                                            <NA>
11872                                                            <NA>
11873                                             tablet/pill/capsule
11874                                             tablet/pill/capsule
11875                                             tablet/pill/capsule
11876                                                            <NA>
11877                                                            <NA>
11878                                                            <NA>
11879                                                            <NA>
11880                                                            <NA>
11881                                                 based on weight
11882                                                 based on weight
11883                                                            <NA>
11884                                                            <NA>
11885                                                 0.25 inch strip
11886                                                            <NA>
11887                                                            <NA>
11888                                                            <NA>
11889                                                 based on weight
11890                                                            <NA>
11891                                                            <NA>
11892                                             tablet/pill/capsule
11893                                             tablet/pill/capsule
11894                                                           spray
11895                                                            <NA>
11896                                                            <NA>
11897                                                            <NA>
11898                                                            <NA>
11899                                                            <NA>
11900                                                            <NA>
11901                                                            <NA>
11902                                                            <NA>
11903                                                            <NA>
11904                                                            <NA>
11905                                                            <NA>
11906                                                            <NA>
11907                                                            <NA>
11908                                                            <NA>
11909                                                            <NA>
11910                                                            <NA>
11911                                                            <NA>
11912                                                            <NA>
11913                                                            <NA>
11914                                                            <NA>
11915                                                            <NA>
11916                                                            <NA>
11917                                                            <NA>
11918                                                            <NA>
11919                                             tablet/pill/capsule
11920                                                            <NA>
11921                                                            <NA>
11922                                                            <NA>
11923                                                            <NA>
11924                                                            <NA>
11925                                                            <NA>
11926                                                            <NA>
11927                                                            <NA>
11928                                                            <NA>
11929                                                            <NA>
11930                                                     billion cfu
11931                                                            <NA>
11932                                                            <NA>
11933                                                            <NA>
11934                                                            <NA>
11935                                                            <NA>
11936                                                            <NA>
11937                                                            <NA>
11938                                                            <NA>
11939                                                            <NA>
11940                                                            <NA>
11941                                                            <NA>
11942                                                            <NA>
11943                                                            <NA>
11944                                                            <NA>
11945                                                            <NA>
11946                                                            <NA>
11947                                                            <NA>
11948                                                            <NA>
11949                                                            <NA>
11950                                                            <NA>
11951                                                            <NA>
11952                                                            <NA>
11953                                                            <NA>
11954                                                            <NA>
11955                                                            <NA>
11956                                                            <NA>
11957                                                            <NA>
11958                                                            <NA>
11959                                                            <NA>
11960                                                     as directed
11961                                                            <NA>
11962                                                            <NA>
11963                                                            <NA>
11964                                                 based on weight
11965                                                            <NA>
11966                                                            <NA>
11967                                                            <NA>
11968                                                            <NA>
11969                                                            <NA>
11970                                                            <NA>
11971                                                            <NA>
11972                                                            <NA>
11973                                                            <NA>
11974                                                            <NA>
11975                                                            <NA>
11976                                                            <NA>
11977                                                            <NA>
11978                                                           spray
11979                                                            <NA>
11980                                                          1 tube
11981                                                            <NA>
11982                                                            <NA>
11983                                                            <NA>
11984                                                            <NA>
11985                                                            <NA>
11986                                                            <NA>
11987                                                            <NA>
11988                                                               1
11989                                                            <NA>
11990                                                            tube
11991                                                            <NA>
11992                                                            <NA>
11993                                                            <NA>
11994                                                            <NA>
11995                                                            <NA>
11996                                                            <NA>
11997                                                            <NA>
11998                                                            <NA>
11999                                                            <NA>
12000                                                            <NA>
12001                                                            <NA>
12002                                                            <NA>
12003                                                            <NA>
12004                                                            <NA>
12005                                                            <NA>
12006                                                 based on weight
12007                                                 based on weight
12008                                             tablet/pill/capsule
12009                                                            <NA>
12010                                                            <NA>
12011                                                    pack/package
12012                                                            <NA>
12013                                                            <NA>
12014                                                 based on weight
12015                                                 based on weight
12016                                                            <NA>
12017                                                            <NA>
12018                                                            tube
12019                                             tablet/pill/capsule
12020                                    based on weight (50-100 lbs)
12021                                                            <NA>
12022                                                            <NA>
12023                                                            <NA>
12024                                                            <NA>
12025                                                            <NA>
12026                                                            <NA>
12027                                                            <NA>
12028                                                            <NA>
12029                                                            <NA>
12030                                                            <NA>
12031                                                            <NA>
12032                                                            <NA>
12033                                                            <NA>
12034                                                            <NA>
12035                                                            <NA>
12036                                                            <NA>
12037                                                            <NA>
12038                                                            <NA>
12039                                                            <NA>
12040                                                            <NA>
12041                                                            <NA>
12042                                                            <NA>
12043                                                            <NA>
12044                                                            <NA>
12045                                                            <NA>
12046                                                            <NA>
12047                                                            <NA>
12048                                                            <NA>
12049                                                            <NA>
12050                                                            <NA>
12051                                                    pack/package
12052                                                            <NA>
12053                                                            <NA>
12054                                                     unspecified
12055                                                            <NA>
12056                                                            <NA>
12057                                                            <NA>
12058                                                            <NA>
12059                                                            <NA>
12060                                                            <NA>
12061                                                            <NA>
12062                                                            <NA>
12063                                                            <NA>
12064                                                            <NA>
12065                                                            <NA>
12066                                                            <NA>
12067                                                            <NA>
12068                                                            <NA>
12069                                                            <NA>
12070                                                            <NA>
12071                                                            <NA>
12072                                                            <NA>
12073                                                            <NA>
12074                                                            <NA>
12075                                                            <NA>
12076                                                            <NA>
12077                                                            <NA>
12078                                                            <NA>
12079                                                            <NA>
12080                                                            <NA>
12081                                                            <NA>
12082                                                            <NA>
12083                                             tablet/pill/capsule
12084                                                            <NA>
12085                                                            <NA>
12086                                                            <NA>
12087                                                            <NA>
12088                                                            <NA>
12089                                                            <NA>
12090                                                 based on weight
12091                                                            <NA>
12092                                                            <NA>
12093                                             tablet/pill/capsule
12094                                             tablet/pill/capsule
12095                                                            <NA>
12096                                                            <NA>
12097                                                            <NA>
12098                                    based on weight (60-120 lbs)
12099                                    based on weight (50-100 lbs)
12100                                     based on weight (40-60 lbs)
12101                                                            pump
12102                                                 based on weight
12103                                                            <NA>
12104                                        based on weight (68 lbs)
12105                                    based on weight (50-100 lbs)
12106                                                            <NA>
12107                                    based on weight (50-100 lbs)
12108                                                            <NA>
12109                                                            <NA>
12110                                                            <NA>
12111                                                 moderate amount
12112                                                            <NA>
12113                                                            <NA>
12114                                                            <NA>
12115                                                            <NA>
12116                                                            <NA>
12117                                                            <NA>
12118                                                            <NA>
12119                                                            <NA>
12120                                                            <NA>
12121                                                            <NA>
12122                                                            <NA>
12123                                                            <NA>
12124                                                            <NA>
12125                                                            <NA>
12126                                                            <NA>
12127                                                            <NA>
12128                                                 based on weight
12129                                                 based on weight
12130                                                            <NA>
12131                                                            <NA>
12132                                                            <NA>
12133                                                            <NA>
12134                                                            <NA>
12135                                             tablet/pill/capsule
12136                                             tablet/pill/capsule
12137                                                            <NA>
12138                                                            <NA>
12139                                                            <NA>
12140                                                            <NA>
12141                                                            <NA>
12142                                             tablet/pill/capsule
12143                                             tablet/pill/capsule
12144                                             tablet/pill/capsule
12145                                                            <NA>
12146                                                            <NA>
12147                                                            <NA>
12148                                                            <NA>
12149                                                            <NA>
12150                                                            <NA>
12151                                                            <NA>
12152                                                            <NA>
12153                                                            <NA>
12154                                           1 tablet/pill/capsule
12155                                           1 tablet/pill/capsule
12156                                                            <NA>
12157                                                            <NA>
12158                                                            <NA>
12159                                                     unspecified
12160                                                     unspecified
12161                                                            <NA>
12162                                                            <NA>
12163                                                            <NA>
12164                                                     unspecified
12165                                                            <NA>
12166                                                            <NA>
12167                                             tablet/pill/capsule
12168                                                            <NA>
12169                                                            <NA>
12170                                                            <NA>
12171                                                            <NA>
12172                                                            <NA>
12173                                           1 tablet/pill/capsule
12174                                                            <NA>
12175                                                            <NA>
12176                                                            <NA>
12177                                                            <NA>
12178                                                            <NA>
12179                                                            <NA>
12180                                                            <NA>
12181                                                            <NA>
12182                                                            <NA>
12183                                                            <NA>
12184                                                      inch strip
12185                                                            <NA>
12186                                                            <NA>
12187                                                            <NA>
12188                                                            <NA>
12189                                                            <NA>
12190                                                           spray
12191                                                            <NA>
12192                                                            <NA>
12193                                                            <NA>
12194                                                            <NA>
12195                                                            <NA>
12196                                                            <NA>
12197                                                            <NA>
12198                                                            <NA>
12199                                             tablet/pill/capsule
12200                                                            pump
12201                                                            <NA>
12202                                                            <NA>
12203                                                            <NA>
12204                                                            <NA>
12205                                                            <NA>
12206                                                            <NA>
12207                                                            <NA>
12208                                                            <NA>
12209                                                            <NA>
12210                                                            <NA>
12211                                                            <NA>
12212                                                            <NA>
12213                                                            <NA>
12214                                                            <NA>
12215                                                            <NA>
12216                                                            <NA>
12217                                                            <NA>
12218                                                            <NA>
12219                                                            <NA>
12220                                                            <NA>
12221                                                            <NA>
12222                                                            <NA>
12223                                                       0.5 drops
12224                                                            <NA>
12225                                                            <NA>
12226                                                           scoop
12227                                                           scoop
12228                                                            <NA>
12229                                             tablet/pill/capsule
12230                                                            <NA>
12231                                                            <NA>
12232                                                            <NA>
12233                                                            <NA>
12234                                                            <NA>
12235                                                            <NA>
12236                                                            <NA>
12237                                                            <NA>
12238                                                            <NA>
12239                                                            <NA>
12240                                                            <NA>
12241                                                            <NA>
12242                                                            <NA>
12243                                                            <NA>
12244                                                            <NA>
12245                                                            <NA>
12246                                                            <NA>
12247                                                            <NA>
12248                                                            <NA>
12249                                                            <NA>
12250                                                            <NA>
12251                                                            <NA>
12252                                                            <NA>
12253                                                            <NA>
12254                                                            <NA>
12255                                                            tube
12256                                                            <NA>
12257                                                            <NA>
12258                                                            <NA>
12259                                                            <NA>
12260                                                            <NA>
12261                                             tablet/pill/capsule
12262                                                            <NA>
12263                                                            <NA>
12264                                                            <NA>
12265                                                 based on weight
12266                                                 based on weight
12267                                                 based on weight
12268                                                 based on weight
12269                                                            <NA>
12270                                                            <NA>
12271                                                 based on weight
12272                                                 based on weight
12273                                                        ointment
12274                                                            <NA>
12275                                                 based on weight
12276                                                 based on weight
12277                                                            <NA>
12278                                                        wipe/pad
12279                                                            <NA>
12280                                                            <NA>
12281                                                            <NA>
12282                                                          collar
12283                                                            <NA>
12284                                                            <NA>
12285                                                            <NA>
12286                                                            <NA>
12287                                                            <NA>
12288                                                            <NA>
12289                                                            tube
12290                                                            <NA>
12291                                                            <NA>
12292                                                            <NA>
12293                                                            <NA>
12294                                                            <NA>
12295                                                            <NA>
12296                                                            <NA>
12297                                                            <NA>
12298                                                            <NA>
12299                                                            <NA>
12300                                                            <NA>
12301                                                            <NA>
12302                                                            <NA>
12303                                                            <NA>
12304                                                            <NA>
12305                                                            <NA>
12306                                                    small amount
12307                                                            <NA>
12308                                                            <NA>
12309                                                            pump
12310                                                            <NA>
12311                                                            <NA>
12312                                                            <NA>
12313                                                            <NA>
12314                                                            <NA>
12315                                                            <NA>
12316                                                            <NA>
12317                                                     bottle/vial
12318                                                            <NA>
12319                                             tablet/pill/capsule
12320                                                            <NA>
12321                                                            <NA>
12322                                                            <NA>
12323                                                            <NA>
12324                                             tablet/pill/capsule
12325                                                            <NA>
12326                                                            <NA>
12327                                                            <NA>
12328                                                            <NA>
12329                                                            <NA>
12330                                                            <NA>
12331                                                            <NA>
12332                                                            <NA>
12333                                                            <NA>
12334                                                            <NA>
12335                                                            <NA>
12336                                                            <NA>
12337                                                     unspecified
12338                                                            <NA>
12339                                                            <NA>
12340                                                            <NA>
12341                                                            <NA>
12342                                             tablet/pill/capsule
12343                                                     unspecified
12344                                                            <NA>
12345                                                            <NA>
12346                                                            <NA>
12347                                           monoclonal antibodies
12348                                                            <NA>
12349                                                     bottle/vial
12350                                                            <NA>
12351                                                            <NA>
12352                                                            <NA>
12353                                                            <NA>
12354                                                            <NA>
12355                                                            <NA>
12356                                                            <NA>
12357                                                     bottle/vial
12358                                             tablet/pill/capsule
12359                                                            <NA>
12360                                                            <NA>
12361                                             tablet/pill/capsule
12362                                                            <NA>
12363                                                            <NA>
12364                                                            <NA>
12365                                                            <NA>
12366                                             tablet/pill/capsule
12367                                                            <NA>
12368                                                            <NA>
12369                                                            <NA>
12370                                                            <NA>
12371                                                            <NA>
12372                                                            <NA>
12373                                             tablet/pill/capsule
12374                                                            <NA>
12375                                                            <NA>
12376                                                            <NA>
12377                                                            <NA>
12378                                                            <NA>
12379                                                            <NA>
12380                                                            <NA>
12381                                                            <NA>
12382                                                            <NA>
12383                                                            <NA>
12384                                                            <NA>
12385                                                            <NA>
12386                                                            <NA>
12387                                                            <NA>
12388                                                            <NA>
12389                                                            <NA>
12390                                                            <NA>
12391                                                            <NA>
12392                                                            <NA>
12393                                                            <NA>
12394                                                            <NA>
12395                                                            <NA>
12396                                                            <NA>
12397                                                            <NA>
12398                                                            <NA>
12399                                                               %
12400                                                            <NA>
12401                                                 based on weight
12402                                                 based on weight
12403                                                            <NA>
12404                                                            <NA>
12405                                                            <NA>
12406                                             tablet/pill/capsule
12407                                             tablet/pill/capsule
12408                                                            <NA>
12409                                                  1 pack/package
12410                                           1 tablet/pill/capsule
12411                                                           drops
12412                                                            <NA>
12413                                                            <NA>
12414                                                 based on weight
12415                                                 based on weight
12416                                             tablet/pill/capsule
12417                                             tablet/pill/capsule
12418                                             tablet/pill/capsule
12419                                                            <NA>
12420                                                        ointment
12421                                                            <NA>
12422                                                            <NA>
12423                                                    small amount
12424                                                            <NA>
12425                                                            <NA>
12426                                                            <NA>
12427                                                            <NA>
12428                                                            <NA>
12429                                                            <NA>
12430                                             tablet/pill/capsule
12431                                             tablet/pill/capsule
12432                                             tablet/pill/capsule
12433                                                            <NA>
12434                                                            <NA>
12435                                                            <NA>
12436                                                            <NA>
12437                                                            <NA>
12438                                                            <NA>
12439                                                            <NA>
12440                                                            <NA>
12441                                                            <NA>
12442                                                            <NA>
12443                                                            <NA>
12444                                                            <NA>
12445                                                            <NA>
12446                                                            <NA>
12447                                                            <NA>
12448                                                            <NA>
12449                                                            <NA>
12450                                                            <NA>
12451                                                            <NA>
12452                                                            <NA>
12453                                                     combination
12454                                    based on weight (50-100 lbs)
12455                                                            <NA>
12456                                                 based on weight
12457                                                 based on weight
12458                                                            <NA>
12459                                             tablet/pill/capsule
12460                                                            <NA>
12461                                                        wipe/pad
12462                                             tablet/pill/capsule
12463                                                            <NA>
12464                                                            <NA>
12465                                                            <NA>
12466                                                            <NA>
12467                                                            <NA>
12468                                                            <NA>
12469                                                            <NA>
12470                                                            <NA>
12471                                                            <NA>
12472                                                            <NA>
12473                                                 based on weight
12474                                                 based on weight
12475                                                            <NA>
12476                                                            <NA>
12477                                                            <NA>
12478                                                            <NA>
12479                                                            <NA>
12480                                                            <NA>
12481                                                 based on weight
12482                                                            <NA>
12483                                                            <NA>
12484                                                            <NA>
12485                                                            <NA>
12486                                                            <NA>
12487                                                            <NA>
12488                                                            <NA>
12489                                                            <NA>
12490                                                            <NA>
12491                                                            <NA>
12492                                                            <NA>
12493                                                            <NA>
12494                                                            <NA>
12495                                                 based on weight
12496                                                 based on weight
12497                                                     billion cfu
12498                                                 based on weight
12499                                                            <NA>
12500                                             tablet/pill/capsule
12501                                                            <NA>
12502                                                            <NA>
12503                                                            <NA>
12504                                                            <NA>
12505                                                            <NA>
12506                                                            <NA>
12507                                                            <NA>
12508                                                            <NA>
12509                                                            <NA>
12510                                                            <NA>
12511                                             tablet/pill/capsule
12512                                             tablet/pill/capsule
12513                                             tablet/pill/capsule
12514                                                            <NA>
12515                                                            <NA>
12516                                                            <NA>
12517                                                            <NA>
12518                                                            <NA>
12519                                                            <NA>
12520                                                 based on weight
12521                                           1 tablet/pill/capsule
12522                                                            <NA>
12523                                                 based on weight
12524                                                            <NA>
12525                                                            <NA>
12526                                                            <NA>
12527                                                            <NA>
12528                                                    small amount
12529                                                    small amount
12530                                                 based on weight
12531                                                            <NA>
12532                                                            <NA>
12533                                                            <NA>
12534                                                            <NA>
12535                                                    small amount
12536                                                            <NA>
12537                                                            <NA>
12538                                                            <NA>
12539                                    0.5-2 tablets/pills/capsules
12540                                                            dose
12541                                                            dose
12542                                             tablet/pill/capsule
12543                                                     bottle/vial
12544                                             tablet/pill/capsule
12545                                                     application
12546                                                           scoop
12547                                                            <NA>
12548                                                            <NA>
12549                                                            <NA>
12550                                             tablet/pill/capsule
12551                                                            tube
12552                                             tablet/pill/capsule
12553                                                    small amount
12554                                                    small amount
12555                                                            <NA>
12556                                                               %
12557                                                            <NA>
12558                                                            <NA>
12559                                                            <NA>
12560                                                            <NA>
12561                                                            <NA>
12562                                                            <NA>
12563                                                            <NA>
12564                                                            <NA>
12565                                                            <NA>
12566                                                            <NA>
12567                                                            <NA>
12568                                                            <NA>
12569                                                            <NA>
12570                                                            <NA>
12571                                                              1%
12572                                                            <NA>
12573                                                            <NA>
12574                                                            <NA>
12575                                                            <NA>
12576                                                            <NA>
12577                                                           tubes
12578                                                            <NA>
12579                                                            <NA>
12580                                                            <NA>
12581                                                            <NA>
12582                                                            <NA>
12583                                                            <NA>
12584                                                            <NA>
12585                                                            <NA>
12586                                                            <NA>
12587                                                            <NA>
12588                                                            <NA>
12589                                                            <NA>
12590                                                            <NA>
12591                                                            <NA>
12592                                                            <NA>
12593                                                            <NA>
12594                                                            <NA>
12595                                                            <NA>
12596                                                            <NA>
12597                                                            <NA>
12598                                                            <NA>
12599                                                            <NA>
12600                                                            <NA>
12601                                                            <NA>
12602                                                            <NA>
12603                                                            <NA>
12604                                                            <NA>
12605                                                            <NA>
12606                                                            <NA>
12607                                                            <NA>
12608                                                            <NA>
12609                                                            <NA>
12610                                                            <NA>
12611                                                            <NA>
12612                                                            <NA>
12613                                                            <NA>
12614                                             tablet/pill/capsule
12615                                                            <NA>
12616                                    based on weight (50-100 lbs)
12617                                             tablet/pill/capsule
12618                                                            <NA>
12619                                                            <NA>
12620                                           1 tablet/pill/capsule
12621                                                            <NA>
12622                                                            <NA>
12623                                           1 tablet/pill/capsule
12624                                                            <NA>
12625                                             tablet/pill/capsule
12626                                                            <NA>
12627                                                            <NA>
12628                                                            <NA>
12629                                                            <NA>
12630                                                            <NA>
12631                                                            <NA>
12632                                                            <NA>
12633                                                            <NA>
12634                                                            <NA>
12635                                                            <NA>
12636                                                            <NA>
12637                                                            <NA>
12638                                                 based on weight
12639                                           1 tablet/pill/capsule
12640                                                            <NA>
12641                                                            <NA>
12642                                                            <NA>
12643                                                            <NA>
12644                                                            <NA>
12645                                                            <NA>
12646                                                            <NA>
12647                                                            <NA>
12648                                                            <NA>
12649                                                            <NA>
12650                                                            <NA>
12651                                                            <NA>
12652                                                            <NA>
12653                                                            <NA>
12654                                                            <NA>
12655                                                            <NA>
12656                                                            <NA>
12657                                                            <NA>
12658                                                            <NA>
12659                                                            <NA>
12660                                                            <NA>
12661                                                            <NA>
12662                                                            <NA>
12663                                                            <NA>
12664                                                            <NA>
12665                                                            <NA>
12666                                                            <NA>
12667                                                            <NA>
12668                                                           spray
12669                                                            <NA>
12670                                                            <NA>
12671                                                           spray
12672                                                            <NA>
12673                                                            <NA>
12674                                                            <NA>
12675                                                            <NA>
12676                                                            <NA>
12677                                                            <NA>
12678                                                            <NA>
12679                                                            <NA>
12680                                                            <NA>
12681                                                            <NA>
12682                                                            <NA>
12683                                             tablet/pill/capsule
12684                                                            <NA>
12685                                                            <NA>
12686                                           1 tablet/pill/capsule
12687                                                            <NA>
12688                                                            <NA>
12689                                                            <NA>
12690                                                            <NA>
12691                                                            <NA>
12692                                                            <NA>
12693                                             tablet/pill/capsule
12694                                             tablet/pill/capsule
12695                                                            <NA>
12696                                                            <NA>
12697                                                            <NA>
12698                                                            <NA>
12699                                                            <NA>
12700                                                            <NA>
12701                                                            <NA>
12702                                                            <NA>
12703                                                            <NA>
12704                                                            <NA>
12705                                                            <NA>
12706                                                            <NA>
12707                                                            <NA>
12708                                                            <NA>
12709                                                            <NA>
12710                                                            <NA>
12711                                                            <NA>
12712                                                            <NA>
12713                                                            <NA>
12714                                                 based on weight
12715                                                            <NA>
12716                                                            <NA>
12717                                                            <NA>
12718                                                            <NA>
12719                                                            <NA>
12720                                                            <NA>
12721                                                            <NA>
12722                                                            <NA>
12723                                                            <NA>
12724                                                            <NA>
12725                                                            <NA>
12726                                                            <NA>
12727                                                            <NA>
12728                                                               %
12729                                                            <NA>
12730                                                            <NA>
12731                                                            <NA>
12732                                                            <NA>
12733                                                            <NA>
12734                                                            <NA>
12735                                                    small amount
12736                                                            <NA>
12737                                                            <NA>
12738                                                            <NA>
12739                                                            <NA>
12740                                                            <NA>
12741                                                            <NA>
12742                                                            <NA>
12743                                                            <NA>
12744                                                            <NA>
12745                                                            <NA>
12746                                                            <NA>
12747                                                    pack/package
12748                                                            <NA>
12749                                                            <NA>
12750                                                            <NA>
12751                                                    pack/package
12752                                                            <NA>
12753                                                            <NA>
12754                                                            <NA>
12755                                                            <NA>
12756                                                            <NA>
12757                                                            <NA>
12758                                                            <NA>
12759                                                            <NA>
12760                                                            <NA>
12761                                                            <NA>
12762                                                            <NA>
12763                                                            <NA>
12764                                                            <NA>
12765                                                            <NA>
12766                                                            <NA>
12767                                                            <NA>
12768                                                            <NA>
12769                                                            <NA>
12770                                                            <NA>
12771                                                       injection
12772                                                            <NA>
12773                                                            <NA>
12774                                             tablet/pill/capsule
12775                                                            <NA>
12776                                                            <NA>
12777                                                            <NA>
12778                                                            <NA>
12779                                                            <NA>
12780                                                    pack/package
12781                                                            <NA>
12782                                                            <NA>
12783                                                            <NA>
12784                                                    pack/package
12785                                                            <NA>
12786                                                            tube
12787                                                          collar
12788                                                 0.25 inch strip
12789                                                            <NA>
12790                                                            <NA>
12791                                                            <NA>
12792                                                            <NA>
12793                                                            <NA>
12794                                                            <NA>
12795                                           1 tablet/pill/capsule
12796                                                          collar
12797                                                  1 pack/package
12798                                                            <NA>
12799                                                            <NA>
12800                                                    pack/package
12801                                                          powder
12802                                                            <NA>
12803                                                            <NA>
12804                                                          collar
12805                                                              2%
12806                                                            <NA>
12807                                             tablet/pill/capsule
12808                                             tablet/pill/capsule
12809                                                            <NA>
12810                                                            <NA>
12811                                                            <NA>
12812                                                    pack/package
12813                                             tablet/pill/capsule
12814                                             tablet/pill/capsule
12815                                                            <NA>
12816                                                            <NA>
12817                                                            <NA>
12818                                                            <NA>
12819                                                            <NA>
12820                                                            <NA>
12821                                                            <NA>
12822                                                            <NA>
12823                                                            <NA>
12824                                                            <NA>
12825                                                            <NA>
12826                                                     application
12827                                                            <NA>
12828                                                     application
12829                                                            <NA>
12830                                                            <NA>
12831                                                            <NA>
12832                                                            <NA>
12833                                                            <NA>
12834                                                            <NA>
12835                                                            <NA>
12836                                                            <NA>
12837                                                 based on weight
12838                                                            <NA>
12839                                                            <NA>
12840                                                            <NA>
12841                                                 based on weight
12842                                                            <NA>
12843                                                            <NA>
12844                                                            <NA>
12845                                                            <NA>
12846                                                            <NA>
12847                                                            <NA>
12848                                                            <NA>
12849                                                            <NA>
12850                                                            <NA>
12851                                             tablet/pill/capsule
12852                                                            <NA>
12853                                                            <NA>
12854                                             tablet/pill/capsule
12855                                             tablet/pill/capsule
12856                                                            tube
12857                                             tablet/pill/capsule
12858                                                           spray
12859                                                            <NA>
12860                                                           mg/kg
12861                                                            <NA>
12862                                           1 tablet/pill/capsule
12863                                             tablet/pill/capsule
12864                                             tablet/pill/capsule
12865                                                            <NA>
12866                                                     unspecified
12867                                                            <NA>
12868                                             tablet/pill/capsule
12869                                             tablet/pill/capsule
12870                                                          powder
12871                                                            <NA>
12872                                                            <NA>
12873                                                            <NA>
12874                                                            <NA>
12875                                                            <NA>
12876                                                            <NA>
12877                                                            <NA>
12878                                                            <NA>
12879                                    based on weight (50-100 lbs)
12880                                    based on weight (60-120 lbs)
12881                                                    small amount
12882                                                    small amount
12883                                                            <NA>
12884                                                            <NA>
12885                                                            <NA>
12886                                                            <NA>
12887                                                            <NA>
12888                                                            <NA>
12889                                             tablet/pill/capsule
12890                                             tablet/pill/capsule
12891                                                            <NA>
12892                                             tablet/pill/capsule
12893                                                            <NA>
12894                                                            <NA>
12895                                                     unspecified
12896                                                            <NA>
12897                                                            <NA>
12898                                                            <NA>
12899                                                            <NA>
12900                                                            <NA>
12901                                                            <NA>
12902                                                            <NA>
12903                                                            <NA>
12904                                                            <NA>
12905                                                            <NA>
12906                                                              ml
12907                                                     unspecified
12908                                                     unspecified
12909                                                            <NA>
12910                                                            <NA>
12911                                                            <NA>
12912                                                            <NA>
12913                                                            <NA>
12914                                                            <NA>
12915                                                            <NA>
12916                                                 based on weight
12917                                                            <NA>
12918                                                            <NA>
12919                                                            <NA>
12920                                                 based on weight
12921                                                            <NA>
12922                                                            <NA>
12923                                                            <NA>
12924                                                            <NA>
12925                                                            <NA>
12926                                                            <NA>
12927                                                            <NA>
12928                                                            <NA>
12929                                                 based on weight
12930                                                            <NA>
12931                                             tablet/pill/capsule
12932                                                            <NA>
12933                                                            <NA>
12934                                                            <NA>
12935                                                            <NA>
12936                                                            <NA>
12937                                                            <NA>
12938                                                            <NA>
12939                                                            <NA>
12940                                                            <NA>
12941                                                            <NA>
12942                                             tablet/pill/capsule
12943                                                 based on weight
12944                                                 based on weight
12945                                             tablet/pill/capsule
12946                                                            <NA>
12947                                                            <NA>
12948                                             tablet/pill/capsule
12949                                                            <NA>
12950                                                            <NA>
12951                                                            <NA>
12952                                             tablet/pill/capsule
12953                                                            <NA>
12954                                                            <NA>
12955                                             tablet/pill/capsule
12956                                                     as directed
12957                                    based on weight (50-100 lbs)
12958                                             tablet/pill/capsule
12959                                                           drops
12960                                                            <NA>
12961                                                            <NA>
12962                                                            <NA>
12963                                        2 tablets/pills/capsules
12964                                                            <NA>
12965                                                            <NA>
12966                                                 based on weight
12967                                                            <NA>
12968                                                            <NA>
12969                                                            <NA>
12970                                                            <NA>
12971                                                            <NA>
12972                                                            <NA>
12973                                                            <NA>
12974                                                            <NA>
12975                                                            <NA>
12976                                                            <NA>
12977                                                            <NA>
12978                                                            <NA>
12979                                                            <NA>
12980                                                            <NA>
12981                                                            <NA>
12982                                                            <NA>
12983                                                            <NA>
12984                                                            <NA>
12985                                                            <NA>
12986                                                            <NA>
12987                                                            <NA>
12988                                                            <NA>
12989                                                            <NA>
12990                                                            <NA>
12991                                                            <NA>
12992                                                 based on weight
12993                                                            <NA>
12994                                                            tube
12995                                             tablet/pill/capsule
12996                                                            <NA>
12997                                                            <NA>
12998                                                            <NA>
12999                                                            <NA>
13000                                                            <NA>
13001                                                            <NA>
13002                                                            <NA>
13003                                                            <NA>
13004                                                            <NA>
13005                                    based on weight (50-100 lbs)
13006                                    based on weight (60-120 lbs)
13007                                                            <NA>
13008                                           1 tablet/pill/capsule
13009                                                            <NA>
13010                                                            <NA>
13011                                                            <NA>
13012                                                            <NA>
13013                                                            <NA>
13014                                                            <NA>
13015                                                            <NA>
13016                                                            <NA>
13017                                                            <NA>
13018                                                            <NA>
13019                                                            <NA>
13020                                                            <NA>
13021                                                            <NA>
13022                                             tablet/pill/capsule
13023                                                            <NA>
13024                                                            <NA>
13025                                                            <NA>
13026                                                            <NA>
13027                                                            <NA>
13028                                                            <NA>
13029                                                            <NA>
13030                                                            <NA>
13031                                                            <NA>
13032                                                            <NA>
13033                                                            <NA>
13034                                     based on weight (20-40 lbs)
13035                                                            <NA>
13036                                                            <NA>
13037                                                            <NA>
13038                                                            <NA>
13039                                                            <NA>
13040                                                            <NA>
13041                                                            <NA>
13042                                                            <NA>
13043                                                            <NA>
13044                                                            <NA>
13045                                                            <NA>
13046                                                            <NA>
13047                                                            <NA>
13048                                                            <NA>
13049                                                    small amount
13050                                                            <NA>
13051                                                            <NA>
13052                                                            <NA>
13053                                                            <NA>
13054                                                            <NA>
13055                                                            <NA>
13056                                                            <NA>
13057                                                            <NA>
13058                                                            <NA>
13059                                                            <NA>
13060                                                            <NA>
13061                                             tablet/pill/capsule
13062                                                            <NA>
13063                                             tablet/pill/capsule
13064                                                            <NA>
13065                                                            <NA>
13066                                                            <NA>
13067                                                            <NA>
13068                                                            <NA>
13069                                                            <NA>
13070                                                            <NA>
13071                                                            <NA>
13072                                                            <NA>
13073                                                            <NA>
13074                                                            <NA>
13075                                                            <NA>
13076                                                            <NA>
13077                                                            <NA>
13078                                                            <NA>
13079                                                            <NA>
13080                                                            <NA>
13081                                                            <NA>
13082                                                            <NA>
13083                                                            <NA>
13084                                                            <NA>
13085                                                            <NA>
13086                                                            <NA>
13087                                                            <NA>
13088                                                            <NA>
13089                                                            <NA>
13090                                                            <NA>
13091                                                            <NA>
13092                                                            <NA>
13093                                                            <NA>
13094                                                            <NA>
13095                                                            <NA>
13096                                                    small amount
13097                                                            <NA>
13098                                                            <NA>
13099                                                            <NA>
13100                                                            dose
13101                                                            <NA>
13102                                                            tube
13103                                             tablet/pill/capsule
13104                                                            <NA>
13105                                                            <NA>
13106                                             tablet/pill/capsule
13107                                                            <NA>
13108                                                            <NA>
13109                                                            <NA>
13110                                                     combination
13111                                                     combination
13112                                                     combination
13113                                                            <NA>
13114                                                            <NA>
13115                                                            <NA>
13116                                                            <NA>
13117                                                            <NA>
13118                                                            <NA>
13119                                                            <NA>
13120                                                            <NA>
13121                                                            <NA>
13122                                                            <NA>
13123                                                    small amount
13124                                                    small amount
13125                                                            <NA>
13126                                                            <NA>
13127                                                            <NA>
13128                                                            <NA>
13129                                                    small amount
13130                                                    small amount
13131                                                            <NA>
13132                                                            <NA>
13133                                                            <NA>
13134                                                            <NA>
13135                                                            <NA>
13136                                                 based on weight
13137                                     based on weight (44-88 lbs)
13138                                                            <NA>
13139                                                            <NA>
13140                                                            <NA>
13141                                                            <NA>
13142                                                 based on weight
13143                                                 based on weight
13144                                                            <NA>
13145                                                            <NA>
13146                                                            <NA>
13147                                                            <NA>
13148                                                            <NA>
13149                                           1 tablet/pill/capsule
13150                                           1 tablet/pill/capsule
13151                                           1 tablet/pill/capsule
13152                                           1 tablet/pill/capsule
13153                                                            <NA>
13154                                                            <NA>
13155                                                            <NA>
13156                                                            <NA>
13157                                           1 tablet/pill/capsule
13158                                                            <NA>
13159                                                            <NA>
13160                                                            <NA>
13161                                                            <NA>
13162                                                            <NA>
13163                                                            <NA>
13164                                                            <NA>
13165                                                            <NA>
13166                                                            <NA>
13167                                             tablet/pill/capsule
13168                                             tablet/pill/capsule
13169                                             tablet/pill/capsule
13170                                             tablet/pill/capsule
13171                                                            <NA>
13172                                                            <NA>
13173                                                            <NA>
13174                                             tablet/pill/capsule
13175                                                            <NA>
13176                                                            <NA>
13177                                                            <NA>
13178                                                            <NA>
13179                                                            <NA>
13180                                                            <NA>
13181                                                            <NA>
13182                                                            <NA>
13183                                                            <NA>
13184                                                            <NA>
13185                                                            <NA>
13186                                                            <NA>
13187                                                           spray
13188                                                            <NA>
13189                                                            <NA>
13190                                                            <NA>
13191                                                            <NA>
13192                                                            <NA>
13193                                                    pack/package
13194                                                            <NA>
13195                                                           spray
13196                                                  shampoo/mousse
13197                                                            <NA>
13198                                                    small amount
13199                                             tablet/pill/capsule
13200                                                            <NA>
13201                                                            <NA>
13202                                                            <NA>
13203                                                            <NA>
13204                                                            <NA>
13205                                                            <NA>
13206                                                            <NA>
13207                                                            <NA>
13208                                             tablet/pill/capsule
13209                                             tablet/pill/capsule
13210                                                            <NA>
13211                                                            <NA>
13212                                                            <NA>
13213                                                            <NA>
13214                                                            <NA>
13215                                                            <NA>
13216                                                            <NA>
13217                                                            <NA>
13218                                                            <NA>
13219                                             tablet/pill/capsule
13220                                             tablet/pill/capsule
13221                                                            <NA>
13222                                                            <NA>
13223                                                            <NA>
13224                                                            <NA>
13225                                                            <NA>
13226                                                            <NA>
13227                                                            <NA>
13228                                                            <NA>
13229                                                            <NA>
13230                                                            <NA>
13231                                                            <NA>
13232                                                            <NA>
13233                                                     application
13234                                                            <NA>
13235                                                            <NA>
13236                                                            <NA>
13237                                                            <NA>
13238                                                            <NA>
13239                                                            <NA>
13240                                                            <NA>
13241                                                            <NA>
13242                                                            <NA>
13243                                                            <NA>
13244                                                            <NA>
13245                                                            tube
13246                                                      inch strip
13247                                                            <NA>
13248                                                            <NA>
13249                                                            <NA>
13250                                                            <NA>
13251                                                            <NA>
13252                                                            <NA>
13253                                             tablet/pill/capsule
13254                                                            <NA>
13255                                                            <NA>
13256                                                            <NA>
13257                                                            <NA>
13258                                                            <NA>
13259                                                            <NA>
13260                                                            <NA>
13261                                                            <NA>
13262                                                            <NA>
13263                                                            <NA>
13264                                                            <NA>
13265                                                            <NA>
13266                                                            <NA>
13267                                                            <NA>
13268                                                            <NA>
13269                                                            <NA>
13270                                                            <NA>
13271                                             tablet/pill/capsule
13272                                             tablet/pill/capsule
13273                                             tablet/pill/capsule
13274                                                            <NA>
13275                                                            <NA>
13276                                                            <NA>
13277                                                            <NA>
13278                                                        ointment
13279                                                        ointment
13280                                                            <NA>
13281                                                            <NA>
13282                                                            <NA>
13283                                                            <NA>
13284                                                            <NA>
13285                                                               %
13286                                                            <NA>
13287                                                            <NA>
13288                                                            <NA>
13289                                                            <NA>
13290                                                            <NA>
13291                                                            <NA>
13292                                                            <NA>
13293                                                            <NA>
13294                                                            <NA>
13295                                                            <NA>
13296                                                            <NA>
13297                                             tablet/pill/capsule
13298                                             tablet/pill/capsule
13299                                                            <NA>
13300                                                            <NA>
13301                                                            <NA>
13302                                                            <NA>
13303                                                            <NA>
13304                                                            <NA>
13305                                                            <NA>
13306                                                            <NA>
13307                                             tablet/pill/capsule
13308                                                 based on weight
13309                                                 based on weight
13310                                                            <NA>
13311                                                            <NA>
13312                                                            <NA>
13313                                                 based on weight
13314                                                 based on weight
13315                                                            <NA>
13316                                                            <NA>
13317                                                            <NA>
13318                                                            <NA>
13319                                                            <NA>
13320                                             tablet/pill/capsule
13321                                                 moderate amount
13322                                                            <NA>
13323                                                            <NA>
13324                                                            <NA>
13325                                                            <NA>
13326                                                            <NA>
13327                                                            <NA>
13328                                                            <NA>
13329                                             tablet/pill/capsule
13330                                                            <NA>
13331                                                 based on weight
13332                                                       2-3 drops
13333                                                            <NA>
13334                                                            <NA>
13335                                                            <NA>
13336                                                 based on weight
13337                                                            <NA>
13338                                                            <NA>
13339                                                            <NA>
13340                                                            <NA>
13341                                             tablet/pill/capsule
13342                                                            <NA>
13343                                             tablet/pill/capsule
13344                                             tablet/pill/capsule
13345                                                            <NA>
13346                                                            <NA>
13347                                                            <NA>
13348                                                            <NA>
13349                                                            <NA>
13350                                                            <NA>
13351                                                            <NA>
13352                                                            <NA>
13353                                                            <NA>
13354                                             tablet/pill/capsule
13355                                             tablet/pill/capsule
13356                                                            <NA>
13357                                                     unspecified
13358                                                            <NA>
13359                                                            <NA>
13360                                                            <NA>
13361                                                            <NA>
13362                                                            <NA>
13363                                             tablet/pill/capsule
13364                                                            <NA>
13365                                                            <NA>
13366                                                           spray
13367                                                            <NA>
13368                                                            <NA>
13369                                                            <NA>
13370                                                            <NA>
13371                                                            <NA>
13372                                             tablet/pill/capsule
13373                                                            <NA>
13374                                                            <NA>
13375                                                            <NA>
13376                                                            <NA>
13377                                                            <NA>
13378                                             tablet/pill/capsule
13379                                                            <NA>
13380                                                            <NA>
13381                                                            <NA>
13382                                                            <NA>
13383                                             tablet/pill/capsule
13384                                                            <NA>
13385                                                            <NA>
13386                                                            <NA>
13387                                                            <NA>
13388                                                            <NA>
13389                                                            <NA>
13390                                                            <NA>
13391                                             tablet/pill/capsule
13392                                                            <NA>
13393                                                            <NA>
13394                                                            <NA>
13395                                                            <NA>
13396                                                            <NA>
13397                                                            <NA>
13398                                                            <NA>
13399                                                            <NA>
13400                                                            <NA>
13401                                                            <NA>
13402                                                            <NA>
13403                                                            <NA>
13404                                                            <NA>
13405                                                            <NA>
13406                                                            <NA>
13407                                                            <NA>
13408                                                            <NA>
13409                                                            <NA>
13410                                                            <NA>
13411                                                            <NA>
13412                                                            <NA>
13413                                                            <NA>
13414                                                            <NA>
13415                                                            <NA>
13416                                                            <NA>
13417                                                            <NA>
13418                                                            <NA>
13419                                                            <NA>
13420                                                            <NA>
13421                                                            <NA>
13422                                                            <NA>
13423                                             tablet/pill/capsule
13424                                                            <NA>
13425                                                              gm
13426                                             tablet/pill/capsule
13427                                                            <NA>
13428                                                            <NA>
13429                                                            <NA>
13430                                                            <NA>
13431                                             tablet/pill/capsule
13432                                             tablet/pill/capsule
13433                                                            <NA>
13434                                                            <NA>
13435                                                            <NA>
13436                                                            <NA>
13437                                                            <NA>
13438                                                            <NA>
13439                                                            <NA>
13440                                                            <NA>
13441                                                            <NA>
13442                                                            <NA>
13443                                                            <NA>
13444                                                            <NA>
13445                                             tablet/pill/capsule
13446                                                            <NA>
13447                                             tablet/pill/capsule
13448                                             tablet/pill/capsule
13449                                             tablet/pill/capsule
13450                                             tablet/pill/capsule
13451                                             tablet/pill/capsule
13452                                                            tube
13453                                                            <NA>
13454                                                 based on weight
13455                                                 based on weight
13456                                                            <NA>
13457                                                            <NA>
13458                                                            <NA>
13459                                                 based on weight
13460                                                    small amount
13461                                             tablet/pill/capsule
13462                                             tablet/pill/capsule
13463                                                            <NA>
13464                                                            <NA>
13465                                                            <NA>
13466                                                            <NA>
13467                                                            <NA>
13468                                                     unspecified
13469                                                            <NA>
13470                                             tablet/pill/capsule
13471                                                 based on weight
13472                                                            <NA>
13473                                                      inch strip
13474                                                            <NA>
13475                                                 based on weight
13476                                             tablet/pill/capsule
13477                                                            <NA>
13478                                                            <NA>
13479                                                 based on weight
13480                                                            <NA>
13481                                             tablet/pill/capsule
13482                                                            <NA>
13483                                                 based on weight
13484                                                 based on weight
13485                                                            <NA>
13486                                                            <NA>
13487                                                            <NA>
13488                                                            <NA>
13489                                                            <NA>
13490                                                            <NA>
13491                                                            <NA>
13492                                                            <NA>
13493                                                            <NA>
13494                                                            <NA>
13495                                                            <NA>
13496                                                            <NA>
13497                                                            <NA>
13498                                                            <NA>
13499                                                            <NA>
13500                                                            <NA>
13501                                                            <NA>
13502                                                            <NA>
13503                                                            <NA>
13504                                                            <NA>
13505                                                            <NA>
13506                                             tablet/pill/capsule
13507                                                            <NA>
13508                                                            <NA>
13509                                                            <NA>
13510                                                            <NA>
13511                                                            <NA>
13512                                                            <NA>
13513                                                            <NA>
13514                                                            <NA>
13515                                                            <NA>
13516                                                            <NA>
13517                                                            <NA>
13518                                                            <NA>
13519                                                            <NA>
13520                                                            <NA>
13521                                                            <NA>
13522                                                            <NA>
13523                                                            <NA>
13524                                                            <NA>
13525                                                            <NA>
13526                                                            <NA>
13527                                                            <NA>
13528                                                            <NA>
13529                                                            <NA>
13530                                                            <NA>
13531                                                            <NA>
13532                                                    pack/package
13533                                                            <NA>
13534                                                            <NA>
13535                                                            <NA>
13536                                                            <NA>
13537                                                            <NA>
13538                                             tablet/pill/capsule
13539                                                            <NA>
13540                                                            <NA>
13541                                                            <NA>
13542                                                            <NA>
13543                                                            <NA>
13544                                                            <NA>
13545                                                            <NA>
13546                                                            <NA>
13547                                                            <NA>
13548                                                            <NA>
13549                                                            <NA>
13550                                                            <NA>
13551                                                            <NA>
13552                                                            <NA>
13553                                                            <NA>
13554                                                            <NA>
13555                                                            <NA>
13556                                                            <NA>
13557                                                            <NA>
13558                                                            <NA>
13559                                                            <NA>
13560                                                            <NA>
13561                                                            <NA>
13562                                                            <NA>
13563                                                  shampoo/mousse
13564                                                            <NA>
13565                                                            <NA>
13566                                                            <NA>
13567                                                            <NA>
13568                                                            <NA>
13569                                                            <NA>
13570                                                            <NA>
13571                                                            <NA>
13572                                                            <NA>
13573                                                            <NA>
13574                                                            <NA>
13575                                                        titrated
13576                                           1 tablet/pill/capsule
13577                                                            <NA>
13578                                                            pump
13579                                                            <NA>
13580                                                            <NA>
13581                                                            <NA>
13582                                                            <NA>
13583                                                            <NA>
13584                                                            <NA>
13585                                                            <NA>
13586                                                           spray
13587                                                            pump
13588                                                      inch strip
13589                                                            <NA>
13590                                                       as needed
13591                                                            <NA>
13592                                                            <NA>
13593                                                            <NA>
13594                                                            <NA>
13595                                                            <NA>
13596                                                            <NA>
13597                                                            <NA>
13598                                                            <NA>
13599                                                            <NA>
13600                                                           spray
13601                                                      inch strip
13602                                                            <NA>
13603                                                            <NA>
13604                                                            <NA>
13605                                                            <NA>
13606                                                            pump
13607                                                            <NA>
13608                                                            <NA>
13609                                                 0.25 inch strip
13610                                                            <NA>
13611                                                            <NA>
13612                                                            <NA>
13613                                                            <NA>
13614                                                            <NA>
13615                                                            <NA>
13616                                                            <NA>
13617                                                            <NA>
13618                                                    small amount
13619                                                            <NA>
13620                                                            <NA>
13621                                                            <NA>
13622                                                            <NA>
13623                                                     bottle/vial
13624                                                 based on weight
13625                                                            tube
13626                                                            <NA>
13627                                                            <NA>
13628                                                 based on weight
13629                                                            <NA>
13630                                                            <NA>
13631                                                    small amount
13632                                                            <NA>
13633                                                            <NA>
13634                                                            <NA>
13635                                                            <NA>
13636                                                            <NA>
13637                                                            <NA>
13638                                                            <NA>
13639                                                            <NA>
13640                                                            <NA>
13641                                                            <NA>
13642                                                            <NA>
13643                                                            <NA>
13644                                                            <NA>
13645                                                            <NA>
13646                                                            <NA>
13647                                                            <NA>
13648                                                            <NA>
13649                                                            <NA>
13650                                                            <NA>
13651                                                            <NA>
13652                                                            <NA>
13653                                                            <NA>
13654                                                    small amount
13655                                                            <NA>
13656                                                            <NA>
13657                                                    small amount
13658                                                            <NA>
13659                                                            <NA>
13660                                                          powder
13661                                                     bottle/vial
13662                                                            <NA>
13663                                                            <NA>
13664                                                            <NA>
13665                                                            <NA>
13666                                                   1 bottle/vial
13667                                                            <NA>
13668                                                            <NA>
13669                                                            <NA>
13670                                                            <NA>
13671                                                            <NA>
13672                                                            <NA>
13673                                                               %
13674                                                              gm
13675                                                            <NA>
13676                                                            <NA>
13677                                                            <NA>
13678                                                     bottle/vial
13679                                                            <NA>
13680                                                        inhalant
13681                                                            <NA>
13682                                                            <NA>
13683                                                            <NA>
13684                                                            <NA>
13685                                                            <NA>
13686                                                            <NA>
13687                                                            <NA>
13688                                                            <NA>
13689                                                            <NA>
13690                                                            <NA>
13691                                                            <NA>
13692                                                            <NA>
13693                                             tablet/pill/capsule
13694                                                            <NA>
13695                                                            <NA>
13696                                                            <NA>
13697                                                            <NA>
13698                                                            <NA>
13699                                                            <NA>
13700                                                            <NA>
13701                                                            <NA>
13702                                                            <NA>
13703                                                            <NA>
13704                                                            <NA>
13705                                                            <NA>
13706                                                            <NA>
13707                                                            <NA>
13708                                                            <NA>
13709                                                            <NA>
13710                                                            <NA>
13711                                                            <NA>
13712                                                            <NA>
13713                                                            <NA>
13714                                                            <NA>
13715                                                            <NA>
13716                                                            <NA>
13717                                                            <NA>
13718                                                            <NA>
13719                                             tablet/pill/capsule
13720                                                            <NA>
13721                                                            <NA>
13722                                             tablet/pill/capsule
13723                                     based on weight (44-88 lbs)
13724                                                 based on weight
13725                                                            <NA>
13726                                                            <NA>
13727                                                            <NA>
13728                                                            <NA>
13729                                                            <NA>
13730                                             tablet/pill/capsule
13731                                                            <NA>
13732                                                            <NA>
13733                                                            <NA>
13734                                                          collar
13735                                                            <NA>
13736                                                            <NA>
13737                                             tablet/pill/capsule
13738                                                            <NA>
13739                                                            <NA>
13740                                                            <NA>
13741                                                            <NA>
13742                                                            <NA>
13743                                                            <NA>
13744                                                            <NA>
13745                                                            <NA>
13746                                                            <NA>
13747                                                            <NA>
13748                                                            <NA>
13749                                                            <NA>
13750                                                            <NA>
13751                                                            <NA>
13752                                                            <NA>
13753                                                            <NA>
13754                                                            <NA>
13755                                                            <NA>
13756                                                            <NA>
13757                                                            <NA>
13758                                                            <NA>
13759                                                            <NA>
13760                                                            <NA>
13761                                                            <NA>
13762                                                            <NA>
13763                                                            <NA>
13764                                                            <NA>
13765                                                            <NA>
13766                                             tablet/pill/capsule
13767                                                            <NA>
13768                                                            <NA>
13769                                                           spray
13770                                                            <NA>
13771                                                            <NA>
13772                                                            <NA>
13773                                                            <NA>
13774                                                            <NA>
13775                                                            <NA>
13776                                                 based on weight
13777                                                            <NA>
13778                                                            <NA>
13779                                                            <NA>
13780                                                            <NA>
13781                                           1 tablet/pill/capsule
13782                                                 syringe/pipette
13783                                                 based on weight
13784                                                            <NA>
13785                                                            <NA>
13786                                                            tube
13787                                                            <NA>
13788                                                            <NA>
13789                                                            <NA>
13790                                                            <NA>
13791                                                            <NA>
13792                                                            <NA>
13793                                                            <NA>
13794                                                            <NA>
13795                                                            <NA>
13796                                                        wipe/pad
13797                                                            <NA>
13798                                                            <NA>
13799                                                            <NA>
13800                                                            <NA>
13801                                             tablet/pill/capsule
13802                                             tablet/pill/capsule
13803                                                            <NA>
13804                                                            <NA>
13805                                                    pack/package
13806                                             tablet/pill/capsule
13807                                                            <NA>
13808                                                            <NA>
13809                                                            <NA>
13810                                                            <NA>
13811                                                            <NA>
13812                                                            <NA>
13813                                                            <NA>
13814                                                            <NA>
13815                                                            <NA>
13816                                                            <NA>
13817                                                            <NA>
13818                                                            <NA>
13819                                                            <NA>
13820                                                            <NA>
13821                                                            <NA>
13822                                                            <NA>
13823                                                            <NA>
13824                                                            <NA>
13825                                                               %
13826                                                            <NA>
13827                                             tablet/pill/capsule
13828                                                    pack/package
13829                                                            <NA>
13830                                                            <NA>
13831                                                            <NA>
13832                                                            <NA>
13833                                                            <NA>
13834                                                            <NA>
13835                                                            <NA>
13836                                                            <NA>
13837                                                            <NA>
13838                                                            <NA>
13839                                                            <NA>
13840                                                            <NA>
13841                                                            dose
13842                                                            <NA>
13843                                                            <NA>
13844                                                            <NA>
13845                                                    pack/package
13846                                                            <NA>
13847                                                            <NA>
13848                                                            <NA>
13849                                                            <NA>
13850                                                            <NA>
13851                                             tablet/pill/capsule
13852                                                            <NA>
13853                                                            <NA>
13854                                                            <NA>
13855                                                            <NA>
13856                                                            <NA>
13857                                             tablet/pill/capsule
13858                                                    pack/package
13859                                                            <NA>
13860                                                            <NA>
13861                                                            <NA>
13862                                                            <NA>
13863                                                            <NA>
13864                                                            <NA>
13865                                                            <NA>
13866                                                            <NA>
13867                                                            <NA>
13868                                                            <NA>
13869                                                            <NA>
13870                                                            <NA>
13871                                                            <NA>
13872                                                            <NA>
13873                                                            <NA>
13874                                                    pack/package
13875                                                            <NA>
13876                                                            <NA>
13877                                                            <NA>
13878                                                            <NA>
13879                                                            <NA>
13880                                                            <NA>
13881                                                            <NA>
13882                                                            <NA>
13883                                                            <NA>
13884                                                            <NA>
13885                                                            <NA>
13886                                                            <NA>
13887                                                            <NA>
13888                                                            <NA>
13889                                                            <NA>
13890                                                            <NA>
13891                                                            <NA>
13892                                                            <NA>
13893                                                            <NA>
13894                                                            <NA>
13895                                                            <NA>
13896                                                 based on weight
13897                                                 based on weight
13898                                                            <NA>
13899                                                            <NA>
13900                                                            <NA>
13901                                                            <NA>
13902                                                            <NA>
13903                                                            <NA>
13904                                                            <NA>
13905                                                            <NA>
13906                                                            <NA>
13907                                                            <NA>
13908                                                            <NA>
13909                                                            <NA>
13910                                                 based on weight
13911                                                 based on weight
13912                                                            <NA>
13913                                                            <NA>
13914                                                            <NA>
13915                                                            <NA>
13916                                                            <NA>
13917                                                            <NA>
13918                                                            <NA>
13919                                                            <NA>
13920                                                            <NA>
13921                                                            <NA>
13922                                                            <NA>
13923                                                            <NA>
13924                                                            <NA>
13925                                                            <NA>
13926                                                            <NA>
13927                                                            <NA>
13928                                                            <NA>
13929                                                            <NA>
13930                                                            <NA>
13931                                                            <NA>
13932                                                            <NA>
13933                                                            <NA>
13934                                                            <NA>
13935                                                            <NA>
13936                                                            <NA>
13937                                                            <NA>
13938                                                            <NA>
13939                                                            <NA>
13940                                                            <NA>
13941                                                            <NA>
13942                                                            <NA>
13943                                                            <NA>
13944                                                            <NA>
13945                                                            <NA>
13946                                                           spray
13947                                                            <NA>
13948                                                            <NA>
13949                                                            <NA>
13950                                                            <NA>
13951                                                            <NA>
13952                                                            <NA>
13953                                                            <NA>
13954                                                            <NA>
13955                                                            <NA>
13956                                                            <NA>
13957                                                            pump
13958                                                           drops
13959                                                            <NA>
13960                                                            <NA>
13961                                                            <NA>
13962                                                            <NA>
13963                                                            <NA>
13964                                                            <NA>
13965                                             tablet/pill/capsule
13966                                                            <NA>
13967                                                           mg/ml
13968                                                            <NA>
13969                                                            <NA>
13970                                                            <NA>
13971                                                            <NA>
13972                                                            <NA>
13973                                             tablet/pill/capsule
13974                                                            <NA>
13975                                                            <NA>
13976                                                            <NA>
13977                                                            <NA>
13978                                                            <NA>
13979                                                            <NA>
13980                                                            <NA>
13981                                                            <NA>
13982                                                            <NA>
13983                                                            <NA>
13984                                                            <NA>
13985                                                            <NA>
13986                                                            <NA>
13987                                                            <NA>
13988                                                            <NA>
13989                                                            <NA>
13990                                                            <NA>
13991                                                            <NA>
13992                                                            <NA>
13993                                                            <NA>
13994                                                            <NA>
13995                                                            <NA>
13996                                                            <NA>
13997                                                            <NA>
13998                                           1 tablet/pill/capsule
13999                                             tablet/pill/capsule
14000                                                            <NA>
14001                                                            <NA>
14002                                                            <NA>
14003                                                            <NA>
14004                                                            <NA>
14005                                                            <NA>
14006                                                           spray
14007                                             tablet/pill/capsule
14008                                                            <NA>
14009                                                            <NA>
14010                                                            <NA>
14011                                                            <NA>
14012                                                            <NA>
14013                                                            <NA>
14014                                                 based on weight
14015                                                            <NA>
14016                                                            <NA>
14017                                                            <NA>
14018                                                            <NA>
14019                                                            <NA>
14020                                                            <NA>
14021                                                            <NA>
14022                                                            <NA>
14023                                                            <NA>
14024                                                            <NA>
14025                                                            <NA>
14026                                                            <NA>
14027                                                            <NA>
14028                                                            <NA>
14029                                                            <NA>
14030                                                            <NA>
14031                                                            <NA>
14032                                                            <NA>
14033                                                            <NA>
14034                                                            <NA>
14035                                                            <NA>
14036                                                            <NA>
14037                                                            <NA>
14038                                                            <NA>
14039                                                            <NA>
14040                                                            <NA>
14041                                                            <NA>
14042                                                            <NA>
14043                                                            <NA>
14044                                                            <NA>
14045                                                            <NA>
14046                                                            <NA>
14047                                                            <NA>
14048                                                            <NA>
14049                                                            <NA>
14050                                                 0.25 inch strip
14051                                             tablet/pill/capsule
14052                                                            <NA>
14053                                                            <NA>
14054                                                            <NA>
14055                                                            <NA>
14056                                                            <NA>
14057                                                            <NA>
14058                                                            <NA>
14059                                                            <NA>
14060                                             tablet/pill/capsule
14061                                                            <NA>
14062                                                            <NA>
14063                                                            <NA>
14064                                                 based on weight
14065                                             tablet/pill/capsule
14066                                                            <NA>
14067                                                            <NA>
14068                                                            <NA>
14069                                                            <NA>
14070                                                            <NA>
14071                                                 based on weight
14072                                                            <NA>
14073                                                            <NA>
14074                                                            <NA>
14075                                                            <NA>
14076                                                            <NA>
14077                                                            <NA>
14078                                                            <NA>
14079                                                            <NA>
14080                                                            <NA>
14081                                                          liquid
14082                                                            <NA>
14083                                                            <NA>
14084                                                            <NA>
14085                                                            <NA>
14086                                                            <NA>
14087                                                            <NA>
14088                                                            <NA>
14089                                                            <NA>
14090                                                            <NA>
14091                                                            <NA>
14092                                                            <NA>
14093                                                            <NA>
14094                                                            <NA>
14095                                                            <NA>
14096                                                            <NA>
14097                                                            <NA>
14098                                                            <NA>
14099                                                            <NA>
14100                                                            <NA>
14101                                                            <NA>
14102                                                            <NA>
14103                                                            <NA>
14104                                                            <NA>
14105                                                            <NA>
14106                                                 based on weight
14107                                                            <NA>
14108                                                            <NA>
14109                                                            <NA>
14110                                                 based on weight
14111                                                            <NA>
14112                                                            <NA>
14113                                             tablet/pill/capsule
14114                                             tablet/pill/capsule
14115                                                            <NA>
14116                                             tablet/pill/capsule
14117                                                            <NA>
14118                                                            <NA>
14119                                                            <NA>
14120                                                            <NA>
14121                                                            <NA>
14122                                                            <NA>
14123                                                            <NA>
14124                                                            <NA>
14125                                                            <NA>
14126                                                            <NA>
14127                                                    pack/package
14128                                                            <NA>
14129                                                 based on weight
14130                                                            <NA>
14131                                                    small amount
14132                                                            <NA>
14133                                                            <NA>
14134                                                            <NA>
14135                                                            <NA>
14136                                                            <NA>
14137                                                 based on weight
14138                                                            <NA>
14139                                                            <NA>
14140                                                            <NA>
14141                                                            <NA>
14142                                                            <NA>
14143                                                            <NA>
14144                                                            <NA>
14145                                                    pack/package
14146                                                            <NA>
14147                                             tablet/pill/capsule
14148                                                     bottle/vial
14149                                             tablet/pill/capsule
14150                                             tablet/pill/capsule
14151                                             tablet/pill/capsule
14152                                                            <NA>
14153                                                 based on weight
14154                                             tablet/pill/capsule
14155                                                            <NA>
14156                                                            <NA>
14157                                                            <NA>
14158                                                            <NA>
14159                                                            <NA>
14160                                                            <NA>
14161                                                            <NA>
14162                                             tablet/pill/capsule
14163                                             tablet/pill/capsule
14164                                             tablet/pill/capsule
14165                                                            <NA>
14166                                                            <NA>
14167                                                    small amount
14168                                                            <NA>
14169                                                            <NA>
14170                                                    small amount
14171                                                            tube
14172                                                 based on weight
14173                                                 based on weight
14174                                                            tube
14175                                                            <NA>
14176                                                            <NA>
14177                                           1 tablet/pill/capsule
14178                                                            tube
14179                                                            tube
14180                                                            <NA>
14181                                             tablet/pill/capsule
14182                                                            <NA>
14183                                                            <NA>
14184                                                            <NA>
14185                                                            <NA>
14186                                                            <NA>
14187                                                            <NA>
14188                                                            <NA>
14189                                                               %
14190                                                            <NA>
14191                                                            <NA>
14192                                                            <NA>
14193                                                            <NA>
14194                                                            <NA>
14195                                                            <NA>
14196                                                            <NA>
14197                                                            <NA>
14198                                                            <NA>
14199                                                            <NA>
14200                                                            <NA>
14201                                             tablet/pill/capsule
14202                                                            <NA>
14203                                                            <NA>
14204                                                            <NA>
14205                                                            <NA>
14206                                                            <NA>
14207                                                            <NA>
14208                                                            <NA>
14209                                                            <NA>
14210                                                            <NA>
14211                                                            <NA>
14212                                                            <NA>
14213                                                            <NA>
14214                                                            <NA>
14215                                                            <NA>
14216                                                            <NA>
14217                                                            <NA>
14218                                                            <NA>
14219                                                 based on weight
14220                                                            <NA>
14221                                                            <NA>
14222                                                            <NA>
14223                                                            <NA>
14224                                                            <NA>
14225                                                            <NA>
14226                                                            <NA>
14227                                                            <NA>
14228                                                            <NA>
14229                                                            <NA>
14230                                                            <NA>
14231                                                            <NA>
14232                                                            pump
14233                                                            <NA>
14234                                                            <NA>
14235                                             tablet/pill/capsule
14236                                             tablet/pill/capsule
14237                                             tablet/pill/capsule
14238                                                    small amount
14239                                             tablet/pill/capsule
14240                                                            <NA>
14241                                                            <NA>
14242                                                            <NA>
14243                                                            <NA>
14244                                                            <NA>
14245                                                            <NA>
14246                                                            <NA>
14247                                                            <NA>
14248                                                            <NA>
14249                                                 based on weight
14250                                                            <NA>
14251                                                            <NA>
14252                                                            <NA>
14253                                                            <NA>
14254                                                            <NA>
14255                                                            <NA>
14256                                                            <NA>
14257                                                            <NA>
14258                                                            <NA>
14259                                                            <NA>
14260                                                            <NA>
14261                                                            <NA>
14262                                                            <NA>
14263                                                            <NA>
14264                                                            <NA>
14265                                                            <NA>
14266                                                            <NA>
14267                                                            <NA>
14268                                                            <NA>
14269                                                            <NA>
14270                                                            <NA>
14271                                                            <NA>
14272                                                            <NA>
14273                                                            <NA>
14274                                                            <NA>
14275                                                            <NA>
14276                                                            <NA>
14277                                                            <NA>
14278                                                            <NA>
14279                                                            <NA>
14280                                                            <NA>
14281                                                            <NA>
14282                                                            <NA>
14283                                                            <NA>
14284                                                            <NA>
14285                                                            <NA>
14286                                                 based on weight
14287                                                            <NA>
14288                                                            <NA>
14289                                                            <NA>
14290                                                            <NA>
14291                                                            pump
14292                                                            <NA>
14293                                                            <NA>
14294                                                            <NA>
14295                                                            <NA>
14296                                                            <NA>
14297                                                            <NA>
14298                                                 based on weight
14299                                                            <NA>
14300                                                            <NA>
14301                                    based on weight (50-100 lbs)
14302                                       based on weight (25+ lbs)
14303                                                            <NA>
14304                                                            <NA>
14305                                                            <NA>
14306                                                            <NA>
14307                                                            <NA>
14308                                                            <NA>
14309                                                            <NA>
14310                                                            <NA>
14311                                                            <NA>
14312                                                            <NA>
14313                                                            <NA>
14314                                                            <NA>
14315                                                            <NA>
14316                                             tablet/pill/capsule
14317                                             tablet/pill/capsule
14318                                             tablet/pill/capsule
14319                                                            <NA>
14320                                                            <NA>
14321                                                            <NA>
14322                                                            <NA>
14323                                                      inch strip
14324                                                            <NA>
14325                                                            <NA>
14326                                                            <NA>
14327                                                            <NA>
14328                                                            <NA>
14329                                                            <NA>
14330                                                            <NA>
14331                                                            <NA>
14332                                                            <NA>
14333                                                            <NA>
14334                                                            tube
14335                                                            <NA>
14336                                                            <NA>
14337                                                            <NA>
14338                                                            <NA>
14339                                                            tube
14340                                                            tube
14341                                                            tube
14342                                                            <NA>
14343                                                            tube
14344                                                            <NA>
14345                                                            <NA>
14346                                                            tube
14347                                                            <NA>
14348                                                            <NA>
14349                                                            <NA>
14350                                                            tube
14351                                             tablet/pill/capsule
14352                                                            tube
14353                                                            <NA>
14354                                             tablet/pill/capsule
14355                                             tablet/pill/capsule
14356                                                            <NA>
14357                                                            <NA>
14358                                             tablet/pill/capsule
14359                                                            <NA>
14360                                                            <NA>
14361                                                            <NA>
14362                                                            <NA>
14363                                                            <NA>
14364                                                            <NA>
14365                                                     combination
14366                     272 mcg ivermectin, 227 mg pyrantel pamoate
14367 680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14368                                                            <NA>
14369                                                            <NA>
14370                                                            <NA>
14371                                                    pack/package
14372                                                 based on weight
14373                                       based on weight (18+ lbs)
14374                                                            <NA>
14375                                                 based on weight
14376                                                          collar
14377                                                            <NA>
14378                                             tablet/pill/capsule
14379                                                 based on weight
14380                                                          collar
14381                                                            <NA>
14382                                                            <NA>
14383                                                            <NA>
14384                                                            <NA>
14385                                                            <NA>
14386                                                            <NA>
14387                                                            <NA>
14388                                                            <NA>
14389                                                            <NA>
14390                                                            <NA>
14391                                                            <NA>
14392                                             tablet/pill/capsule
14393                                                            <NA>
14394                                                            <NA>
14395                                                            <NA>
14396                                                            <NA>
14397                                                            <NA>
14398                                             tablet/pill/capsule
14399                                                            <NA>
14400                                                     unspecified
14401                                                       as needed
14402                                                            <NA>
14403                                                            <NA>
14404                                                            <NA>
14405                                                            <NA>
14406                                    based on weight (50-100 lbs)
14407                                                            <NA>
14408                                             tablet/pill/capsule
14409                                                            <NA>
14410                                                            <NA>
14411                                                            <NA>
14412                                                            <NA>
14413                                                            <NA>
14414                                                     unspecified
14415                                                            <NA>
14416                                                            <NA>
14417                                                            <NA>
14418                                                            <NA>
14419                                                            <NA>
14420                                                            <NA>
14421                                                            <NA>
14422                                                            <NA>
14423                                                            <NA>
14424                                                            <NA>
14425                                                            <NA>
14426                                                            <NA>
14427                                                            <NA>
14428                                                            <NA>
14429                                    based on weight (50-100 lbs)
14430                                                            <NA>
14431                                    based on weight (50-100 lbs)
14432                                                 based on weight
14433                                                     unspecified
14434                                                           scoop
14435                                                            <NA>
14436                                                            <NA>
14437                                                               %
14438                                                            <NA>
14439                                                            <NA>
14440                                                            <NA>
14441                                                            <NA>
14442                                                            <NA>
14443                                    based on weight (50-100 lbs)
14444                                                     unspecified
14445                                                     unspecified
14446                                                     unspecified
14447                                                     unspecified
14448                                    based on weight (50-100 lbs)
14449                                    based on weight (50-100 lbs)
14450                                                            <NA>
14451                                             tablet/pill/capsule
14452                                                            <NA>
14453                                                            <NA>
14454                                                            <NA>
14455                                                 0.25 inch strip
14456                                                            <NA>
14457                                                            <NA>
14458                                                            <NA>
14459                                                            <NA>
14460                                                            <NA>
14461                                                            <NA>
14462                                                            <NA>
14463                                                            <NA>
14464                                                            <NA>
14465                                                            <NA>
14466                                                            <NA>
14467                                                            <NA>
14468                                                            <NA>
14469                                                            <NA>
14470                                                            <NA>
14471                                                     unspecified
14472                                                            <NA>
14473                                                     unspecified
14474                                                            <NA>
14475                                                            <NA>
14476                                                            <NA>
14477                                                            <NA>
14478                                                            <NA>
14479                                                 based on weight
14480                                                            <NA>
14481                                                            <NA>
14482                                                            <NA>
14483                                                            <NA>
14484                                                            <NA>
14485                                                            <NA>
14486                                                            <NA>
14487                                                            <NA>
14488                                           1 tablet/pill/capsule
14489                                             tablet/pill/capsule
14490                                    based on weight (50-100 lbs)
14491                                                            <NA>
14492                                                            <NA>
14493                                                            <NA>
14494                                                            <NA>
14495                                           1 tablet/pill/capsule
14496                                                            <NA>
14497                                                            <NA>
14498                                             tablet/pill/capsule
14499                                    based on weight (50-100 lbs)
14500                                                            <NA>
14501                                                            <NA>
14502                                                            <NA>
14503                                                            <NA>
14504                                                            <NA>
14505                                                            <NA>
14506                                                            <NA>
14507                                                            <NA>
14508                                                            <NA>
14509                                                            <NA>
14510                                                            <NA>
14511                                                            <NA>
14512                                                            <NA>
14513                                                            <NA>
14514                                                            <NA>
14515                                                 based on weight
14516                                                            <NA>
14517                                                            <NA>
14518                                                            <NA>
14519                                                            <NA>
14520                                                            <NA>
14521                                                            <NA>
14522                                                            <NA>
14523                                                            <NA>
14524                                                            <NA>
14525                                                            <NA>
14526                                                            <NA>
14527                                                 based on weight
14528                                     based on weight (44-88 lbs)
14529                                    based on weight (50-100 lbs)
14530                                                            <NA>
14531                                                            <NA>
14532                                                            <NA>
14533                                                            <NA>
14534                                                            <NA>
14535                                                            <NA>
14536                                                            <NA>
14537                                                            <NA>
14538                                                            <NA>
14539                                                            <NA>
14540                                                            <NA>
14541                                                            <NA>
14542                                                            <NA>
14543                                                            <NA>
14544                                                            <NA>
14545                                                            <NA>
14546                                                            <NA>
14547                                    based on weight (50-100 lbs)
14548                                                            <NA>
14549                                                            <NA>
14550                                                            <NA>
14551                                                            <NA>
14552                                                            <NA>
14553                                    based on weight (50-100 lbs)
14554                                     based on weight (44-88 lbs)
14555                                                            <NA>
14556                                             tablet/pill/capsule
14557                                             tablet/pill/capsule
14558                                                            <NA>
14559                                             tablet/pill/capsule
14560                                                            <NA>
14561                                                            <NA>
14562                                                 based on weight
14563                                                            <NA>
14564                                                            <NA>
14565                                                            <NA>
14566                                                            <NA>
14567                                                            <NA>
14568                                                            <NA>
14569                                                               %
14570                                                            <NA>
14571                                                            <NA>
14572                                                            <NA>
14573                                                            <NA>
14574                                                            <NA>
14575                                                            <NA>
14576                                                 based on weight
14577                                                 based on weight
14578                                       based on weight (25+ lbs)
14579                                                            <NA>
14580                                                            <NA>
14581                                                            <NA>
14582                                                 based on weight
14583                                                 based on weight
14584                                                 based on weight
14585                                                 based on weight
14586                                                 based on weight
14587                                                 based on weight
14588                                                 based on weight
14589                                                            <NA>
14590                                                            <NA>
14591                                                            <NA>
14592                                                            <NA>
14593                                                            <NA>
14594                                             tablet/pill/capsule
14595                                                            <NA>
14596                                             tablet/pill/capsule
14597                                                            <NA>
14598                                                            <NA>
14599                                                            <NA>
14600                                                            <NA>
14601                                                     unspecified
14602                                                            <NA>
14603                                                            <NA>
14604                                                            <NA>
14605                                                            <NA>
14606                                                            <NA>
14607                                                            <NA>
14608                                                            <NA>
14609                                                            <NA>
14610                                                            <NA>
14611                                                           spray
14612                                                            <NA>
14613                                                            <NA>
14614                                                            <NA>
14615                                                            <NA>
14616                                             tablet/pill/capsule
14617                                                            <NA>
14618                                                            <NA>
14619                                                            <NA>
14620                                                            <NA>
14621                                                            <NA>
14622                                                            <NA>
14623                                                 based on weight
14624                                                            <NA>
14625                                                            <NA>
14626                                                            <NA>
14627                                                            <NA>
14628                                                            <NA>
14629                                                            <NA>
14630                                                            <NA>
14631                                                 based on weight
14632                                                            <NA>
14633                                                            <NA>
14634                                                            <NA>
14635                                                            <NA>
14636                                                            <NA>
14637                                                            <NA>
14638                                                            <NA>
14639                                                            <NA>
14640                                                            <NA>
14641                                                            <NA>
14642                                                            <NA>
14643                                             tablet/pill/capsule
14644                                             tablet/pill/capsule
14645                                                            <NA>
14646                                                            <NA>
14647                                                            <NA>
14648                                                            <NA>
14649                                                            <NA>
14650                                                    small amount
14651                                                            <NA>
14652                                                            <NA>
14653                                                            <NA>
14654                                                               %
14655                                                            <NA>
14656                                                            <NA>
14657                                                            <NA>
14658                     272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                            <NA>
14660                                                            <NA>
14661                                                            <NA>
14662                                                            <NA>
14663                                                            <NA>
14664                                    based on weight (50-100 lbs)
14665                                    based on weight (60-120 lbs)
14666                                                            <NA>
14667                                                            <NA>
14668                                                            <NA>
14669                                                            <NA>
14670                                                            <NA>
14671                                                            <NA>
14672                                                            <NA>
14673                                                            <NA>
14674                                                            <NA>
14675                                                            <NA>
14676                                                            <NA>
14677                                                            <NA>
14678                                                            <NA>
14679                                                            <NA>
14680                                             tablet/pill/capsule
14681                                             tablet/pill/capsule
14682                                                            <NA>
14683                                                            <NA>
14684                                                            <NA>
14685                                                            <NA>
14686                                             tablet/pill/capsule
14687                                                            <NA>
14688                                                            <NA>
14689                                                            <NA>
14690                                                            <NA>
14691                                                            <NA>
14692                                                            <NA>
14693                                                            <NA>
14694                                                            <NA>
14695                                                            <NA>
14696                                                            <NA>
14697                                                        ointment
14698                                                            <NA>
14699                                                     application
14700                                                 based on weight
14701                                                 based on weight
14702                                                            <NA>
14703                                                            <NA>
14704                                                            <NA>
14705                                                            <NA>
14706                                                            <NA>
14707                                                            <NA>
14708                                                            <NA>
14709                                                            <NA>
14710                                     based on weight (56-95 lbs)
14711                                    based on weight (50-100 lbs)
14712                                     based on weight (56-95 lbs)
14713                                        based on weight (85 lbs)
14714                                                            <NA>
14715                                                            <NA>
14716                                                            <NA>
14717                                                            <NA>
14718                                             tablet/pill/capsule
14719                                             tablet/pill/capsule
14720                                    based on weight (50-100 lbs)
14721                                     based on weight (56-95 lbs)
14722                                    based on weight (50-100 lbs)
14723                                    based on weight (50-100 lbs)
14724                                                            <NA>
14725                                                            <NA>
14726                                     based on weight (44-88 lbs)
14727                                                            <NA>
14728                                                            <NA>
14729                                                            <NA>
14730                                                            <NA>
14731                                                            <NA>
14732                                                            <NA>
14733                                                            <NA>
14734                                                            <NA>
14735                                                            <NA>
14736                                                            <NA>
14737                                    based on weight (50-100 lbs)
14738                                     based on weight (44-88 lbs)
14739                                                            <NA>
14740                                                            <NA>
14741                                                            <NA>
14742                                                            <NA>
14743                                                            <NA>
14744                                                 based on weight
14745                                                            <NA>
14746                                     based on weight (44-88 lbs)
14747                                                            <NA>
14748                                                           drops
14749                                                            <NA>
14750                                                            <NA>
14751                                                            <NA>
14752                                                            <NA>
14753                                                            <NA>
14754                                       based on weight (22+ lbs)
14755                                    based on weight (50-100 lbs)
14756                                                            <NA>
14757                                                            <NA>
14758                                                            <NA>
14759                                                            <NA>
14760                                                 based on weight
14761                                                            <NA>
14762                                                            tube
14763                                    based on weight (50-100 lbs)
14764                                                            <NA>
14765                                                            <NA>
14766                                                            <NA>
14767                                                            <NA>
14768                                                            <NA>
14769                                                            <NA>
14770                                             tablet/pill/capsule
14771                                             tablet/pill/capsule
14772                                                            <NA>
14773                                                            <NA>
14774                                                            <NA>
14775                                                            <NA>
14776                                                            <NA>
14777                                                            <NA>
14778                                                            <NA>
14779                                                            <NA>
14780                                                            <NA>
14781                                                            tube
14782                                                            <NA>
14783                                                            <NA>
14784                                                            <NA>
14785                                                            <NA>
14786                                                            <NA>
14787                                                            <NA>
14788                                                            <NA>
14789                                                            <NA>
14790                                                            <NA>
14791                                                            <NA>
14792                                                            <NA>
14793                                                            <NA>
14794                                                            <NA>
14795                                                            <NA>
14796                                                            <NA>
14797                                                            <NA>
14798                                                            <NA>
14799                                                            <NA>
14800                                             tablet/pill/capsule
14801                                                            <NA>
14802                                                            <NA>
14803                                                            <NA>
14804                                                            <NA>
14805                                             tablet/pill/capsule
14806                                                            <NA>
14807                                                            <NA>
14808                                                            <NA>
14809                                                            <NA>
14810                                                            <NA>
14811                                                            <NA>
14812                                                            <NA>
14813                                                            <NA>
14814                                                            <NA>
14815                                                            <NA>
14816                                                            <NA>
14817                                                            <NA>
14818                                                            <NA>
14819                                             tablet/pill/capsule
14820                                                            <NA>
14821                                                            <NA>
14822                                                            <NA>
14823                                                            <NA>
14824                                                            <NA>
14825                                                            <NA>
14826                                                            <NA>
14827                                                            <NA>
14828                                                            <NA>
14829                                                            <NA>
14830                                                            <NA>
14831                                                            <NA>
14832                                                            <NA>
14833                                                            <NA>
14834                                                            <NA>
14835                                                               %
14836                                                            <NA>
14837                                                            <NA>
14838                                                            <NA>
14839                                                            <NA>
14840                                                            <NA>
14841                                                            <NA>
14842                                                            <NA>
14843                                                            <NA>
14844                                                             tbs
14845                                                             tbs
14846                                                            <NA>
14847                                                            <NA>
14848                                                            <NA>
14849                                                            <NA>
14850                                             tablet/pill/capsule
14851                                             tablet/pill/capsule
14852                                                            <NA>
14853                                                            <NA>
14854                                                            <NA>
14855                                                            <NA>
14856                                                            <NA>
14857                                                            <NA>
14858                                                            <NA>
14859                                                            <NA>
14860                                                            <NA>
14861                                                 based on weight
14862                                                            <NA>
14863                                                            <NA>
14864                                                            <NA>
14865                                                            <NA>
14866                                                            <NA>
14867                                                            <NA>
14868                                                            <NA>
14869                                                            <NA>
14870                                                            <NA>
14871                                                            <NA>
14872                                                            <NA>
14873                                                            <NA>
14874                                                 based on weight
14875                                                 based on weight
14876                                                            <NA>
14877                                                            <NA>
14878                                                            <NA>
14879                                                            <NA>
14880                                                            <NA>
14881                                                            <NA>
14882                                                            <NA>
14883                                                            <NA>
14884                                                            <NA>
14885                                                            <NA>
14886                                                            <NA>
14887                                                            <NA>
14888                                                            <NA>
14889                                                            <NA>
14890                                                            <NA>
14891                                                            <NA>
14892                                                            <NA>
14893                                                            <NA>
14894                                                            <NA>
14895                                                            <NA>
14896                                                            <NA>
14897                                                            <NA>
14898                                                            <NA>
14899                                                            <NA>
14900                                                            <NA>
14901                                                            <NA>
14902                                                            <NA>
14903                                                            <NA>
14904                                                            <NA>
14905                                                            <NA>
14906                                                            <NA>
14907                                                            <NA>
14908                                                            <NA>
14909                                                            <NA>
14910                                                            <NA>
14911                                                            <NA>
14912                                                            <NA>
14913                                                            <NA>
14914                                                            <NA>
14915                                                            <NA>
14916                                                            <NA>
14917                                                            <NA>
14918                                                            <NA>
14919                                                               %
14920                                                            <NA>
14921                                                            <NA>
14922                                                            <NA>
14923                                                            <NA>
14924                                                            <NA>
14925                                                            <NA>
14926                                                            <NA>
14927                                                            <NA>
14928                                                            <NA>
14929                                                            <NA>
14930                                                            <NA>
14931                                                            <NA>
14932                                                            <NA>
14933                                                            <NA>
14934                                                            <NA>
14935                                                            <NA>
14936                                                            <NA>
14937                                                     unspecified
14938                                                            <NA>
14939                                                            <NA>
14940                                                            <NA>
14941                                                            <NA>
14942                                                            <NA>
14943                                                            <NA>
14944                                                            <NA>
14945                                                            <NA>
14946                                                               %
14947                                                            <NA>
14948                                                            <NA>
14949                                                            <NA>
14950                                                            <NA>
14951                                                             pnu
14952                                                            <NA>
14953                                                            <NA>
14954                                                            <NA>
14955                                                            <NA>
14956                                                            <NA>
14957                                                            <NA>
14958                                                            <NA>
14959                                                            <NA>
14960                                                            <NA>
14961                                                            <NA>
14962                                                            <NA>
14963                                                 0.25 inch strip
14964                                                            <NA>
14965                                                            <NA>
14966                                                            <NA>
14967                                                            <NA>
14968                                                            <NA>
14969                                                            <NA>
14970                                                            <NA>
14971                                                 based on weight
14972                                             tablet/pill/capsule
14973                                                     unspecified
14974                                             tablet/pill/capsule
14975                                             tablet/pill/capsule
14976                                                            <NA>
14977                                                            <NA>
14978                                             tablet/pill/capsule
14979                                         0.5 tablet/pill/capsule
14980                                                            <NA>
14981                                                 based on weight
14982                                             tablet/pill/capsule
14983                                                     as directed
14984                                                            <NA>
14985                                                            <NA>
14986                                                            <NA>
14987                                                            <NA>
14988                                                            <NA>
14989                                                            <NA>
14990                                                            <NA>
14991                                                            <NA>
14992                                                            <NA>
14993                                                            <NA>
14994                                                            <NA>
14995                                                            <NA>
14996                                                            <NA>
14997                                                            <NA>
14998                                                            <NA>
14999                                                            <NA>
15000                                                            <NA>
15001                                                            <NA>
15002                                                            <NA>
15003                                                            <NA>
15004                                                            <NA>
15005                                                            <NA>
15006                                                            <NA>
15007                                                            <NA>
15008                                                            <NA>
15009                                                            <NA>
15010                                                            <NA>
15011                                                            <NA>
15012                                                            <NA>
15013                                                            <NA>
15014                                                            <NA>
15015                                                            <NA>
15016                                                            <NA>
15017                                    based on weight (50-100 lbs)
15018                                                            <NA>
15019                                                            <NA>
15020                                                            <NA>
15021                                                            <NA>
15022                                                            <NA>
15023                                                   1 bottle/vial
15024                                                            <NA>
15025                                                            <NA>
15026                                                            <NA>
15027                                                            <NA>
15028                                                            <NA>
15029                                                            <NA>
15030                                                            <NA>
15031                                                            <NA>
15032                                                            <NA>
15033                                                            <NA>
15034                                                            <NA>
15035                                                            <NA>
15036                                                            <NA>
15037                                                            <NA>
15038                                                            <NA>
15039                                                            <NA>
15040                                                            <NA>
15041                                                            <NA>
15042                                                            <NA>
15043                                                            <NA>
15044                                                            <NA>
15045                                                            <NA>
15046                                                            <NA>
15047                                                            <NA>
15048                                                 based on weight
15049                                                            <NA>
15050                                                     as directed
15051                                                            <NA>
15052                                                            <NA>
15053                                                            <NA>
15054                                                            <NA>
15055                                                            <NA>
15056                                                            <NA>
15057                                                            <NA>
15058                                                            <NA>
15059                                           1 tablet/pill/capsule
15060                                                            <NA>
15061                                             tablet/pill/capsule
15062                                                            <NA>
15063                                                            <NA>
15064                                                            <NA>
15065                                                            <NA>
15066                                                            <NA>
15067                                                            <NA>
15068                                                            <NA>
15069                                                            <NA>
15070                                                            <NA>
15071                                                            <NA>
15072                                                            <NA>
15073                                                            <NA>
15074                                                            <NA>
15075                                                            <NA>
15076                                                            <NA>
15077                                                          collar
15078                                                            <NA>
15079                                                            <NA>
15080                                                            <NA>
15081                                                            <NA>
15082                                                            <NA>
15083                                                          1 tube
15084                                                            <NA>
15085                                                            <NA>
15086                                                            <NA>
15087                                                            <NA>
15088                                                            <NA>
15089                                                            <NA>
15090                                                            <NA>
15091                                                            <NA>
15092                                                            <NA>
15093                                                            <NA>
15094                                                            <NA>
15095                                                            <NA>
15096                                                            <NA>
15097                                                            <NA>
15098                                                            <NA>
15099                                                            <NA>
15100                                                            <NA>
15101                                                            <NA>
15102                                                            <NA>
15103                                                            <NA>
15104                                                            <NA>
15105                                                            <NA>
15106                                                            <NA>
15107                                                            <NA>
15108                                                            <NA>
15109                                                            <NA>
15110                                                            <NA>
15111                                                            <NA>
15112                                                            <NA>
15113                                                            <NA>
15114                                                            <NA>
15115                                                            <NA>
15116                                                            <NA>
15117                                                            <NA>
15118                                                            <NA>
15119                                                            <NA>
15120                                                            <NA>
15121                                                            <NA>
15122                                                            <NA>
15123                                                            <NA>
15124                                                            <NA>
15125                                                            <NA>
15126                                                            <NA>
15127                                                            <NA>
15128                                             tablet/pill/capsule
15129                                                           drops
15130                                                            <NA>
15131                                                            <NA>
15132                                                            <NA>
15133                                                            <NA>
15134                                                            <NA>
15135                                                            <NA>
15136                                                            <NA>
15137                                                           spray
15138                                                            <NA>
15139                                                     combination
15140                                                     combination
15141                                                            <NA>
15142                                                            <NA>
15143                                                            <NA>
15144                                                            <NA>
15145                                                            <NA>
15146                                                            <NA>
15147                                                            <NA>
15148                                                            <NA>
15149                                                            <NA>
15150                                                 based on weight
15151                                                            <NA>
15152                                                            <NA>
15153                                                            <NA>
15154                                                            <NA>
15155                                                            <NA>
15156                                                            <NA>
15157                                                               %
15158                                                            <NA>
15159                                                            <NA>
15160                                                            <NA>
15161                                                            <NA>
15162                                                            <NA>
15163                                                            <NA>
15164                                                            <NA>
15165                                                            <NA>
15166                                                            <NA>
15167                                                            <NA>
15168                                                            <NA>
15169                                                            <NA>
15170                                                            <NA>
15171                                                            <NA>
15172                                                            <NA>
15173                                                            <NA>
15174                                                            <NA>
15175                                                            <NA>
15176                                                            <NA>
15177                                                            <NA>
15178                                                 based on weight
15179                                                            <NA>
15180                                                            <NA>
15181                                                            <NA>
15182                                                            <NA>
15183                                                            <NA>
15184                                                            <NA>
15185                                                            <NA>
15186                                                            <NA>
15187                                                            <NA>
15188                                                            <NA>
15189                                                          collar
15190                                                            <NA>
15191                                                            <NA>
15192                                                            <NA>
15193                                                            <NA>
15194                                                            <NA>
15195                                                            <NA>
15196                                                     unspecified
15197                                                    small amount
15198                                                            <NA>
15199                                                            <NA>
15200                                                            <NA>
15201                                                    small amount
15202                                                            <NA>
15203                                                            <NA>
15204                                                            <NA>
15205                                                            <NA>
15206                                                            <NA>
15207                                                            <NA>
15208                                                            <NA>
15209                                                     bottle/vial
15210                                                            <NA>
15211                                                            <NA>
15212                                                            <NA>
15213                                                            pump
15214                                                            <NA>
15215                                                            <NA>
15216                                                            <NA>
15217                                                            <NA>
15218                                                            <NA>
15219                                                            <NA>
15220                                             tablet/pill/capsule
15221                                                            <NA>
15222                                                            <NA>
15223                                                            <NA>
15224                                             tablet/pill/capsule
15225                                             tablet/pill/capsule
15226                                                            <NA>
15227                                             tablet/pill/capsule
15228                                             tablet/pill/capsule
15229                                                            <NA>
15230                                                            <NA>
15231                                                            <NA>
15232                                                            <NA>
15233                                                            <NA>
15234                                                            <NA>
15235                                                            <NA>
15236                                                            <NA>
15237                                                            <NA>
15238                                                            <NA>
15239                                                            <NA>
15240                                                            <NA>
15241                                                            <NA>
15242                                                            <NA>
15243                                                            mg/g
15244                                                            <NA>
15245                                                            <NA>
15246                                                            <NA>
15247                                             tablet/pill/capsule
15248                                                            <NA>
15249                                                            <NA>
15250                                                            tube
15251                                             tablet/pill/capsule
15252                                                            <NA>
15253                                                            <NA>
15254                                                            <NA>
15255                                             tablet/pill/capsule
15256                                                            <NA>
15257                                                            <NA>
15258                                                            <NA>
15259                                                            <NA>
15260                                                 based on weight
15261                                             tablet/pill/capsule
15262                                                            <NA>
15263                                                 based on weight
15264                                                            <NA>
15265                                                            <NA>
15266                                                            <NA>
15267                                                            <NA>
15268                                    based on weight (50-100 lbs)
15269                                     based on weight (24-60 lbs)
15270                                                            <NA>
15271                                                            <NA>
15272                                                            <NA>
15273                                                            <NA>
15274                                                            <NA>
15275                                                            <NA>
15276                                           1 tablet/pill/capsule
15277                                                            <NA>
15278                                             tablet/pill/capsule
15279                                             tablet/pill/capsule
15280                                                            <NA>
15281                                                            <NA>
15282                                                    small amount
15283                                                            <NA>
15284                                                            <NA>
15285                                                            <NA>
15286                                                            <NA>
15287                                                            <NA>
15288                                             tablet/pill/capsule
15289                                                            <NA>
15290                                                            <NA>
15291                                                            <NA>
15292                                                            <NA>
15293                                                            <NA>
15294                                                            <NA>
15295                                                            dose
15296                                                            <NA>
15297                                                            <NA>
15298                                                            <NA>
15299                                                            <NA>
15300                                                    pack/package
15301                                                            <NA>
15302                                                            <NA>
15303                                                            <NA>
15304                                                            <NA>
15305                                                            <NA>
15306                                                            <NA>
15307                                                            <NA>
15308                                             tablet/pill/capsule
15309                                             tablet/pill/capsule
15310                                           1 tablet/pill/capsule
15311                                                          collar
15312                                                            <NA>
15313                                                            <NA>
15314                                                            <NA>
15315                                                          collar
15316                                                            <NA>
15317                                             tablet/pill/capsule
15318                                                            <NA>
15319                                                            <NA>
15320                                                            <NA>
15321                                           1 tablet/pill/capsule
15322                                                          collar
15323                                                            <NA>
15324                                                            <NA>
15325                                                            <NA>
15326                                                            <NA>
15327                                                            <NA>
15328                                                            <NA>
15329                                                            <NA>
15330                                             tablet/pill/capsule
15331                                                            <NA>
15332                                                     as directed
15333                                                            <NA>
15334                                                           spray
15335                                                            <NA>
15336                                                            <NA>
15337                                                 based on weight
15338                                                            puff
15339                                                            <NA>
15340                                                            <NA>
15341                                                            <NA>
15342                                                            <NA>
15343                                                            <NA>
15344                                                            <NA>
15345                                                            <NA>
15346                                                            <NA>
15347                                                            <NA>
15348                                                            <NA>
15349                                                            <NA>
15350                                                    pack/package
15351                                                            <NA>
15352                                                            <NA>
15353                                                            <NA>
15354                                             tablet/pill/capsule
15355                                             tablet/pill/capsule
15356                                                            <NA>
15357                                                            <NA>
15358                                                            <NA>
15359                                                            <NA>
15360                                                            <NA>
15361                                             tablet/pill/capsule
15362                                             tablet/pill/capsule
15363                                                            <NA>
15364                                                            <NA>
15365                                             tablet/pill/capsule
15366                                             tablet/pill/capsule
15367                                           1 tablet/pill/capsule
15368                                                            <NA>
15369                                                            <NA>
15370                                                            <NA>
15371                                                            <NA>
15372                                                            <NA>
15373                                                 based on weight
15374                                                 based on weight
15375                                           1 tablet/pill/capsule
15376                                                          1 tube
15377                                           1 tablet/pill/capsule
15378                                                     bottle/vial
15379                                                            <NA>
15380                                                            <NA>
15381                                                            <NA>
15382                                                            <NA>
15383                                                            <NA>
15384                                                            <NA>
15385                                                            <NA>
15386                                                            <NA>
15387                                                            <NA>
15388                                                            <NA>
15389                                                            <NA>
15390                                                            <NA>
15391                                                            <NA>
15392                                                            <NA>
15393                                                            <NA>
15394                                                            <NA>
15395                                                               %
15396                                                            <NA>
15397                                                            <NA>
15398                                                            <NA>
15399                                                            <NA>
15400                                                            <NA>
15401                                                            <NA>
15402                                                            <NA>
15403                                                            <NA>
15404                                                            <NA>
15405                                                            <NA>
15406                                                            <NA>
15407                                                            <NA>
15408                                                            <NA>
15409                                                            <NA>
15410                                                            <NA>
15411                                             tablet/pill/capsule
15412                                                            <NA>
15413                                                            <NA>
15414                                                            <NA>
15415                                                            <NA>
15416                                             tablet/pill/capsule
15417                                                            <NA>
15418                                                            <NA>
15419                                                            <NA>
15420                                                            <NA>
15421                                                            <NA>
15422                                                            <NA>
15423                                                            <NA>
15424                                                            <NA>
15425                                                            <NA>
15426                                                            <NA>
15427                                                            <NA>
15428                                                            <NA>
15429                                                            <NA>
15430                                                            <NA>
15431                                                            <NA>
15432                                                            <NA>
15433                                                            <NA>
15434                                                            <NA>
15435                                                            <NA>
15436                                                            <NA>
15437                                                            <NA>
15438                                                            <NA>
15439                                                            <NA>
15440                                             tablet/pill/capsule
15441                                                            <NA>
15442                                                            <NA>
15443                                                            <NA>
15444                                                            <NA>
15445                                                            <NA>
15446                                                            <NA>
15447                                                            <NA>
15448                                                            <NA>
15449                                                            <NA>
15450                                                            <NA>
15451                                             tablet/pill/capsule
15452                                                            <NA>
15453                                                 moderate amount
15454                                                            <NA>
15455                                                            <NA>
15456                                                            <NA>
15457                                                            <NA>
15458                                                            <NA>
15459                                                            <NA>
15460                                                            <NA>
15461                                                            <NA>
15462                                                            <NA>
15463                                                            <NA>
15464                                                            <NA>
15465                                                            <NA>
15466                                                            <NA>
15467                                                            <NA>
15468                                                            <NA>
15469                                                            <NA>
15470                                                            pump
15471                                                            <NA>
15472                                                            <NA>
15473                                                            <NA>
15474                                                            <NA>
15475                                                            <NA>
15476                                                            <NA>
15477                                                            pump
15478                                                            <NA>
15479                                                            <NA>
15480                                                            <NA>
15481                                                            <NA>
15482                                                            <NA>
15483                                                            <NA>
15484                                                            <NA>
15485                                                            <NA>
15486                                                            <NA>
15487                                                            <NA>
15488                                                            <NA>
15489                                                            <NA>
15490                                                            <NA>
15491                                                            <NA>
15492                                                            <NA>
15493                                                            <NA>
15494                                                            <NA>
15495                                                            <NA>
15496                                                            <NA>
15497                                                            <NA>
15498                                             tablet/pill/capsule
15499                                                            <NA>
15500                                                            <NA>
15501                                                            <NA>
15502                                                            <NA>
15503                                                            <NA>
15504                                                            <NA>
15505                                                            <NA>
15506                                                            <NA>
15507                                                            <NA>
15508                                                            <NA>
15509                                                            <NA>
15510                                                            <NA>
15511                                                            <NA>
15512                                                            <NA>
15513                                                            <NA>
15514                                                            <NA>
15515                                           1 tablet/pill/capsule
15516                                                            <NA>
15517                                                            <NA>
15518                                                            <NA>
15519                                                            <NA>
15520                                                            <NA>
15521                                                            <NA>
15522                                                            <NA>
15523                                                            <NA>
15524                                             tablet/pill/capsule
15525                                                            <NA>
15526                                                            <NA>
15527                                             tablet/pill/capsule
15528                                                            <NA>
15529                                                            <NA>
15530                                                 based on weight
15531                                                            <NA>
15532                                                            <NA>
15533                                             tablet/pill/capsule
15534                                                            <NA>
15535                                                            <NA>
15536                                                            <NA>
15537                                                            <NA>
15538                                                            <NA>
15539                                                            <NA>
15540                                                            <NA>
15541                                                            <NA>
15542                                                            <NA>
15543                                                            <NA>
15544                                                            <NA>
15545                                                 based on weight
15546                                                            <NA>
15547                                                            <NA>
15548                                                            <NA>
15549                                                            <NA>
15550                                                 based on weight
15551                                                 based on weight
15552                                             tablet/pill/capsule
15553                                                            <NA>
15554                                                 based on weight
15555                                                 based on weight
15556                                                 based on weight
15557                                                            <NA>
15558                                                            <NA>
15559                                                            <NA>
15560                                                       mcg/kg/hr
15561                                                            <NA>
15562                                                            <NA>
15563                                                        ointment
15564                                                            <NA>
15565                                                            <NA>
15566                                                            <NA>
15567                                                            <NA>
15568                                                            <NA>
15569                                                            <NA>
15570                                                               %
15571                                                            <NA>
15572                                                            <NA>
15573                                                            <NA>
15574                                    based on weight (50-100 lbs)
15575                                                            <NA>
15576                                             tablet/pill/capsule
15577                                                            <NA>
15578                                                            <NA>
15579                                                            <NA>
15580                                                            <NA>
15581                                                          liquid
15582                                                            <NA>
15583                                                            <NA>
15584                                                            <NA>
15585                                           1 tablet/pill/capsule
15586                                                     application
15587                                                            <NA>
15588                                                 based on weight
15589                                                 based on weight
15590                                             tablet/pill/capsule
15591                                             tablet/pill/capsule
15592                                                            <NA>
15593                                             tablet/pill/capsule
15594                                             tablet/pill/capsule
15595                                                            <NA>
15596                                                            <NA>
15597                                             tablet/pill/capsule
15598                                             tablet/pill/capsule
15599                                                        ointment
15600                                           1 tablet/pill/capsule
15601                                           1 tablet/pill/capsule
15602                                                            <NA>
15603                                                            <NA>
15604                                                            <NA>
15605                                                            <NA>
15606                                                            <NA>
15607                                                            <NA>
15608                                                            <NA>
15609                                                            <NA>
15610                                                            <NA>
15611                                                            <NA>
15612                                                            <NA>
15613                                                            <NA>
15614                                                            <NA>
15615                                                            <NA>
15616                                                            <NA>
15617                                                            <NA>
15618                                                            <NA>
15619                                                            <NA>
15620                                                            <NA>
15621                                                            <NA>
15622                                                            <NA>
15623                                                            <NA>
15624                                                            <NA>
15625                                                            <NA>
15626                                                            <NA>
15627                                                            <NA>
15628                                                            <NA>
15629                                                            <NA>
15630                                                            <NA>
15631                                                            <NA>
15632                                                            <NA>
15633                                                            <NA>
15634                                                            <NA>
15635                                                            <NA>
15636                                                            <NA>
15637                                                            <NA>
15638                                                            <NA>
15639                                                            <NA>
15640                                                            <NA>
15641                                                            <NA>
15642                                                            <NA>
15643                                                            <NA>
15644                                                            <NA>
15645                                                            <NA>
15646                                                            <NA>
15647                                                            <NA>
15648                                                            <NA>
15649                                                 based on weight
15650                                                 based on weight
15651                                                            <NA>
15652                                                            <NA>
15653                                                            <NA>
15654                                                            <NA>
15655                                                            <NA>
15656                                                            <NA>
15657                                                            <NA>
15658                                                            <NA>
15659                                                            <NA>
15660                                                            <NA>
15661                                             tablet/pill/capsule
15662                                                            <NA>
15663                                                     bottle/vial
15664                                                            <NA>
15665                                                           spray
15666                                                            <NA>
15667                                                            <NA>
15668                                                            <NA>
15669                                                            <NA>
15670                                                            <NA>
15671                                                            <NA>
15672                                                            <NA>
15673                                                            <NA>
15674                                                            <NA>
15675                                                          1 tube
15676                                                            <NA>
15677                                                            <NA>
15678                                                            <NA>
15679                                                            tube
15680                                                            <NA>
15681                                                            <NA>
15682                                                            <NA>
15683                                                            <NA>
15684                                                            <NA>
15685                                                            <NA>
15686                                                            <NA>
15687                                                            <NA>
15688                                    based on weight (60-120 lbs)
15689                                             tablet/pill/capsule
15690                                                            <NA>
15691                                                            <NA>
15692                                                            <NA>
15693                                                            <NA>
15694                                                            <NA>
15695                                                            <NA>
15696                                                            <NA>
15697                                                            <NA>
15698                                                            <NA>
15699                                                            <NA>
15700                                                            <NA>
15701                                                 13.5 mg, 810 mg
15702                                                            <NA>
15703                                                            <NA>
15704                                                            <NA>
15705                                                            <NA>
15706                                                    small amount
15707                                                            <NA>
15708                                                            <NA>
15709                                                            <NA>
15710                                                            <NA>
15711                                                    small amount
15712                                             tablet/pill/capsule
15713                                             tablet/pill/capsule
15714                                                            <NA>
15715                                                            <NA>
15716                                                            <NA>
15717                                             tablet/pill/capsule
15718                                                     application
15719                                                            <NA>
15720                                                            <NA>
15721                                                            <NA>
15722                                             tablet/pill/capsule
15723                                                 based on weight
15724                                                 based on weight
15725                                                            <NA>
15726                                                            <NA>
15727                                             tablet/pill/capsule
15728                                                            <NA>
15729                                                            <NA>
15730                                             tablet/pill/capsule
15731                                             tablet/pill/capsule
15732                                             tablet/pill/capsule
15733                                                            <NA>
15734                                                            <NA>
15735                                             tablet/pill/capsule
15736                                             tablet/pill/capsule
15737                                                            <NA>
15738                                                            <NA>
15739                                             tablet/pill/capsule
15740                                                            <NA>
15741                                                            <NA>
15742                                                            <NA>
15743                                                            <NA>
15744                                                            <NA>
15745                                                            <NA>
15746                                                            <NA>
15747                                             tablet/pill/capsule
15748                                                           drops
15749                                             tablet/pill/capsule
15750                                                            <NA>
15751                                                            <NA>
15752                                                            <NA>
15753                                                            <NA>
15754                                                            <NA>
15755                                             tablet/pill/capsule
15756                                                            dose
15757                                             tablet/pill/capsule
15758                                                     bottle/vial
15759                                                            <NA>
15760                                                            <NA>
15761                                                            <NA>
15762                                                            <NA>
15763                                                            <NA>
15764                                                            <NA>
15765                                                            <NA>
15766                                                            <NA>
15767                                                            <NA>
15768                                                            <NA>
15769                                                            <NA>
15770                                                            <NA>
15771                                                            <NA>
15772                                                            <NA>
15773                                                            <NA>
15774                                                            <NA>
15775                                                            <NA>
15776                                                            <NA>
15777                                                            <NA>
15778                                                           spray
15779                                                            <NA>
15780                                                            <NA>
15781                                                 0.25 inch strip
15782                                                           spray
15783                                                     unspecified
15784                                    based on weight (50-100 lbs)
15785                                             tablet/pill/capsule
15786                                             tablet/pill/capsule
15787                                                            <NA>
15788                                                       1.5 mg/ml
15789                                                            <NA>
15790                                                     unspecified
15791                                                            <NA>
15792                                                            <NA>
15793                                                            <NA>
15794                                                            <NA>
15795                                                            <NA>
15796                                                            <NA>
15797                                                            <NA>
15798                                                            <NA>
15799                                                            <NA>
15800                                                            <NA>
15801                                                            <NA>
15802                                                            <NA>
15803                                                            <NA>
15804                                                            <NA>
15805                                                            <NA>
15806                                                            <NA>
15807                                                            <NA>
15808                                             tablet/pill/capsule
15809                                                            <NA>
15810                                                            <NA>
15811                                                    pack/package
15812                                                            <NA>
15813                                                            <NA>
15814                                             tablet/pill/capsule
15815                                                 based on weight
15816                                                 based on weight
15817                                                            <NA>
15818                                                            <NA>
15819                                             tablet/pill/capsule
15820                                                            tube
15821                                                            <NA>
15822                                                            <NA>
15823                                                            <NA>
15824                                                            <NA>
15825                                                            <NA>
15826                                                            <NA>
15827                                                            <NA>
15828                                                            <NA>
15829                                                            <NA>
15830                                                            <NA>
15831                                                            <NA>
15832                                                            <NA>
15833                                                            <NA>
15834                                                            <NA>
15835                                                            <NA>
15836                                                            <NA>
15837                                                            <NA>
15838                                                            <NA>
15839                                                     unspecified
15840                                                     unspecified
15841                                    based on weight (50-100 lbs)
15842                                    based on weight (50-100 lbs)
15843                                                            <NA>
15844                                    based on weight (50-100 lbs)
15845                                                            <NA>
15846                                                            <NA>
15847                                                            <NA>
15848                                                 based on weight
15849                                    based on weight (50-100 lbs)
15850                                    based on weight (50-100 lbs)
15851                                                            <NA>
15852                                                            <NA>
15853                                                            <NA>
15854                                                            <NA>
15855                                                            <NA>
15856                                                          1 tube
15857                                             tablet/pill/capsule
15858                                                            <NA>
15859                                           1 tablet/pill/capsule
15860                                                            <NA>
15861                                                           spray
15862                                                      inch strip
15863                                                      inch strip
15864                                                           drops
15865                                                            <NA>
15866                                                            <NA>
15867                                             tablet/pill/capsule
15868                                           1 tablet/pill/capsule
15869                                                 based on weight
15870                                                 based on weight
15871                                                            <NA>
15872                                                            <NA>
15873                                                            <NA>
15874                                                            <NA>
15875                                                               %
15876                                                            <NA>
15877                                                            <NA>
15878                                                            <NA>
15879                                                            <NA>
15880                                                               %
15881                                                            <NA>
15882                                                            <NA>
15883                                                            <NA>
15884                                                            <NA>
15885                                                            <NA>
15886                                             tablet/pill/capsule
15887                                                            <NA>
15888                                                            <NA>
15889                                                            <NA>
15890                                                            <NA>
15891                                                 based on weight
15892                                                            <NA>
15893                                                            <NA>
15894                                                            <NA>
15895                                                            <NA>
15896                                                            <NA>
15897                                                            <NA>
15898                                                            <NA>
15899                                                    pack/package
15900                                             tablet/pill/capsule
15901                                                            <NA>
15902                                                            <NA>
15903                                             tablet/pill/capsule
15904                                                            <NA>
15905                                                            <NA>
15906                                                            <NA>
15907                                                            <NA>
15908                                             tablet/pill/capsule
15909                                                            <NA>
15910                                                            <NA>
15911                                                            <NA>
15912                                                            <NA>
15913                                                            <NA>
15914                                                            <NA>
15915                                                            <NA>
15916                                                            <NA>
15917                                             tablet/pill/capsule
15918                                                            <NA>
15919                                                            <NA>
15920                                                            <NA>
15921                                             tablet/pill/capsule
15922                                                 based on weight
15923                                                            <NA>
15924                                                            <NA>
15925                                                            <NA>
15926                                                            <NA>
15927                                                            <NA>
15928                                                    pack/package
15929                                             tablet/pill/capsule
15930                                                            <NA>
15931                                                            <NA>
15932                                                            <NA>
15933                                                            <NA>
15934                                                            <NA>
15935                                                            <NA>
15936                                                            <NA>
15937                                                 based on weight
15938                                                            <NA>
15939                                                            <NA>
15940                                                            <NA>
15941                                                            <NA>
15942                                                            <NA>
15943                                                            <NA>
15944                                                            <NA>
15945                                                            <NA>
15946                                             tablet/pill/capsule
15947                                                            <NA>
15948                                                            <NA>
15949                                                            <NA>
15950                                             tablet/pill/capsule
15951                                                            <NA>
15952                                                            <NA>
15953                                                            <NA>
15954                                                            <NA>
15955                                                            <NA>
15956                                                            <NA>
15957                                                            <NA>
15958                                                            <NA>
15959                                                            <NA>
15960                                                            <NA>
15961                                                            <NA>
15962                                                            <NA>
15963                                                            <NA>
15964                                                            <NA>
15965                                                            <NA>
15966                                                            <NA>
15967                                                            <NA>
15968                                                            <NA>
15969                                                            <NA>
15970                                                            <NA>
15971                                                            <NA>
15972                                                           spray
15973                                                            <NA>
15974                                                            <NA>
15975                                                            <NA>
15976                                                            <NA>
15977                                                            <NA>
15978                                                            <NA>
15979                                                            <NA>
15980                                                            <NA>
15981                                    based on weight (50-100 lbs)
15982                                                            <NA>
15983                                                    small amount
15984                                                            <NA>
15985                                                            <NA>
15986                                     based on weight (56-95 lbs)
15987                                                            <NA>
15988                                                            <NA>
15989                                                            <NA>
15990                                                            <NA>
15991                                                            <NA>
15992                                    based on weight (50-100 lbs)
15993                                     based on weight (56-95 lbs)
15994                                                            <NA>
15995                                    based on weight (50-100 lbs)
15996                                     based on weight (56-95 lbs)
15997                                     based on weight (44-88 lbs)
15998                                                   1 bottle/vial
15999                                    based on weight (50-100 lbs)
16000                                     based on weight (44-88 lbs)
16001                                                            <NA>
16002                                                            <NA>
16003                                                            <NA>
16004                                                            <NA>
16005                                                            <NA>
16006                                                            <NA>
16007                                                            <NA>
16008                                                            <NA>
16009                                                            <NA>
16010                                                            <NA>
16011                                                            <NA>
16012                                                            <NA>
16013                                                            <NA>
16014                                                            <NA>
16015                                                            <NA>
16016                                                        ointment
16017                                                            <NA>
16018                                                            <NA>
16019                                                            <NA>
16020                                                            <NA>
16021                                                            <NA>
16022                                                            <NA>
16023                                                            <NA>
16024                                                            <NA>
16025                                                            <NA>
16026                                                    small amount
16027                                                            <NA>
16028                                                            <NA>
16029                                                            <NA>
16030                                                            <NA>
16031                                                            <NA>
16032                                                            <NA>
16033                                                            <NA>
16034                                                            <NA>
16035                                                 based on weight
16036                                                 based on weight
16037                                                            <NA>
16038                                                 based on weight
16039                                                     application
16040                                                            <NA>
16041                                                            <NA>
16042                                                            <NA>
16043                                                            <NA>
16044                                                            <NA>
16045                                                            <NA>
16046                                                            <NA>
16047                                                            <NA>
16048                                                            <NA>
16049                                                            <NA>
16050                                                            <NA>
16051                                                            <NA>
16052                                             tablet/pill/capsule
16053                                                            tube
16054                                                            <NA>
16055                                                            <NA>
16056                                                            <NA>
16057                                                            <NA>
16058                                                            <NA>
16059                                                            <NA>
16060                                                            <NA>
16061                                                            <NA>
16062                                                            <NA>
16063                                                            <NA>
16064                                                            <NA>
16065                                                            <NA>
16066                                                            <NA>
16067                                                            <NA>
16068                                                            <NA>
16069                                                            <NA>
16070                                                            <NA>
16071                                                            <NA>
16072                                                            <NA>
16073                                                            <NA>
16074                                                            <NA>
16075                                                            <NA>
16076                                                            <NA>
16077                                                            <NA>
16078                                                            <NA>
16079                                                            <NA>
16080                                                            <NA>
16081                                                            <NA>
16082                                                            <NA>
16083                                                            <NA>
16084                                                            <NA>
16085                                                            <NA>
16086                                                           spray
16087                                                            <NA>
16088                                                            <NA>
16089                                                            <NA>
16090                                                            <NA>
16091                                                            <NA>
16092                                                            <NA>
16093                                                            <NA>
16094                     272 mcg ivermectin, 227 mg pyrantel pamoate
16095                                                            <NA>
16096                                                            <NA>
16097                                             tablet/pill/capsule
16098                                             tablet/pill/capsule
16099                                                            <NA>
16100                                                            <NA>
16101                                                            <NA>
16102                                                            <NA>
16103                                                            <NA>
16104                                                            <NA>
16105                                                            <NA>
16106                                                            <NA>
16107                                                       6-8 drops
16108                                                            <NA>
16109                                                            <NA>
16110                                                            <NA>
16111                                                            <NA>
16112                                                            <NA>
16113                                                     unspecified
16114                                                            <NA>
16115                                                            <NA>
16116                                                            <NA>
16117                                                            <NA>
16118                                                            <NA>
16119                                                            <NA>
16120                                                            <NA>
16121                                                            <NA>
16122                                                            <NA>
16123                                                            <NA>
16124                                                            pump
16125                                                            <NA>
16126                                                            <NA>
16127                                                            <NA>
16128                                                            <NA>
16129                                                            <NA>
16130                                                            <NA>
16131                                                            <NA>
16132                                                            <NA>
16133                                                            <NA>
16134                                                            <NA>
16135                                                            <NA>
16136                                                            <NA>
16137                                                            <NA>
16138                                                            <NA>
16139                                                            <NA>
16140                                                            <NA>
16141                                                    pack/package
16142                                                            <NA>
16143                                                            <NA>
16144                                                     application
16145                                                            <NA>
16146                                                            <NA>
16147                                                            <NA>
16148                                                            <NA>
16149                                                            <NA>
16150                                                     bottle/vial
16151                                                            <NA>
16152                                                            tube
16153                                             tablet/pill/capsule
16154                                                     bottle/vial
16155                                                     bottle/vial
16156                                                    pack/package
16157                                             tablet/pill/capsule
16158                                             tablet/pill/capsule
16159                                             tablet/pill/capsule
16160                                             tablet/pill/capsule
16161                                             tablet/pill/capsule
16162                                             tablet/pill/capsule
16163                                             tablet/pill/capsule
16164                                             tablet/pill/capsule
16165                                             tablet/pill/capsule
16166                                                            <NA>
16167                                                            <NA>
16168                                                            <NA>
16169                                                            <NA>
16170                                                            <NA>
16171                                                            <NA>
16172                                                            <NA>
16173                                                            <NA>
16174                                                            <NA>
16175                                                            <NA>
16176                                                            <NA>
16177                                                    small amount
16178                                                            <NA>
16179                                                        wipe/pad
16180                                                            <NA>
16181                                                            <NA>
16182                                                            <NA>
16183                                                            <NA>
16184                                                            <NA>
16185                                                            <NA>
16186                                                            <NA>
16187                                                            <NA>
16188                                                            <NA>
16189                                                            <NA>
16190                                                            <NA>
16191                                                            <NA>
16192                                                            <NA>
16193                                                            <NA>
16194                                                            <NA>
16195                                                            <NA>
16196                                                            <NA>
16197                                                            <NA>
16198                                                            <NA>
16199                                                            <NA>
16200                                                            <NA>
16201                                                            <NA>
16202                                                            <NA>
16203                                                            <NA>
16204                                                            <NA>
16205                                                            <NA>
16206                                                            <NA>
16207                                                            <NA>
16208                                                            <NA>
16209                                                            <NA>
16210                                                            <NA>
16211                                                            <NA>
16212                                                            <NA>
16213                                                 based on weight
16214                                                 based on weight
16215                                                 based on weight
16216                                                            <NA>
16217                                                            <NA>
16218                                                            <NA>
16219                                                            <NA>
16220                                                            <NA>
16221                                                            <NA>
16222                                                            <NA>
16223                                                            <NA>
16224                                                            <NA>
16225                                                            <NA>
16226                                                            <NA>
16227                                                            <NA>
16228                                                            <NA>
16229                                             tablet/pill/capsule
16230                                    based on weight (50-100 lbs)
16231                                             tablet/pill/capsule
16232                                                            <NA>
16233                                                            <NA>
16234                                             tablet/pill/capsule
16235                                                          collar
16236                                                            <NA>
16237                                                          collar
16238                                                            <NA>
16239                                                            <NA>
16240                                                            <NA>
16241                                                            <NA>
16242                                                            <NA>
16243                                                            <NA>
16244                                                            <NA>
16245                                                            <NA>
16246                                                            <NA>
16247                                                            <NA>
16248                                                            <NA>
16249                                                            <NA>
16250                                                            <NA>
16251                                                            <NA>
16252                                                            <NA>
16253                                                            <NA>
16254                                                            <NA>
16255                                                            <NA>
16256                                                            <NA>
16257                                                            <NA>
16258                                                            <NA>
16259                                                            <NA>
16260                                                            <NA>
16261                                                            <NA>
16262                                                            <NA>
16263                                                            <NA>
16264                                                            <NA>
16265                                                            <NA>
16266                                                            <NA>
16267                                                            <NA>
16268                                                            <NA>
16269                                                            <NA>
16270                                                            <NA>
16271                                                            <NA>
16272                                                            <NA>
16273                                                            <NA>
16274                                                            <NA>
16275                                                            <NA>
16276                                                            <NA>
16277                                                            <NA>
16278                                                            <NA>
16279                                                            <NA>
16280                                                            <NA>
16281                                                            <NA>
16282                                                            <NA>
16283                                             tablet/pill/capsule
16284                                                            <NA>
16285                                                            <NA>
16286                                                            <NA>
16287                                     based on weight (26-50 lbs)
16288                                     based on weight (44-88 lbs)
16289                                             tablet/pill/capsule
16290                                                            <NA>
16291                                             tablet/pill/capsule
16292                                                            <NA>
16293                                                            <NA>
16294                                                            <NA>
16295                                                            <NA>
16296                                                            <NA>
16297                                                            <NA>
16298                                                            <NA>
16299                                                            <NA>
16300                                                            <NA>
16301                                                            <NA>
16302                                                            <NA>
16303                                                            <NA>
16304                                             tablet/pill/capsule
16305                                             tablet/pill/capsule
16306                                             tablet/pill/capsule
16307                                                            <NA>
16308                                                            <NA>
16309                                                            <NA>
16310                                                            <NA>
16311                                                            <NA>
16312                                             tablet/pill/capsule
16313                                             tablet/pill/capsule
16314                                                            <NA>
16315                                             tablet/pill/capsule
16316                                             tablet/pill/capsule
16317                                                            <NA>
16318                                           1 tablet/pill/capsule
16319                                           1 tablet/pill/capsule
16320                                                            <NA>
16321                                           1 tablet/pill/capsule
16322                                           1 tablet/pill/capsule
16323                                                            <NA>
16324                                           1 tablet/pill/capsule
16325                                           1 tablet/pill/capsule
16326                                    based on weight (50-100 lbs)
16327                                                            <NA>
16328                                                            <NA>
16329                                                            <NA>
16330                                                            <NA>
16331                                                            <NA>
16332                                                            <NA>
16333                                                            <NA>
16334                                                            <NA>
16335                                                            <NA>
16336                                                            <NA>
16337                                                            <NA>
16338                                                            <NA>
16339                                                 based on weight
16340                                                 based on weight
16341                                                            <NA>
16342                                                            <NA>
16343                                                            <NA>
16344                                                            <NA>
16345                                                            <NA>
16346                                                            <NA>
16347                                                               %
16348                                                            <NA>
16349                                                            <NA>
16350                                                            <NA>
16351                                                            <NA>
16352                                                            <NA>
16353                                                            <NA>
16354                                             tablet/pill/capsule
16355                                                    small amount
16356                                                     as directed
16357                                                  shampoo/mousse
16358                                                  shampoo/mousse
16359                                                            <NA>
16360                                             tablet/pill/capsule
16361                                             tablet/pill/capsule
16362                                             tablet/pill/capsule
16363                                             tablet/pill/capsule
16364                                             tablet/pill/capsule
16365                                                            <NA>
16366                                                            <NA>
16367                                                            <NA>
16368                                                            <NA>
16369                                                            <NA>
16370                                                            <NA>
16371                                                            <NA>
16372                                             tablet/pill/capsule
16373                                                            <NA>
16374                                                            <NA>
16375                                                            <NA>
16376                                                            <NA>
16377                                                            <NA>
16378                                                            <NA>
16379                                             tablet/pill/capsule
16380                                                            <NA>
16381                                             tablet/pill/capsule
16382                                                            <NA>
16383                                                            <NA>
16384                                                            <NA>
16385                                                            <NA>
16386                                                            <NA>
16387                                                  shampoo/mousse
16388                                                           spray
16389                                                            <NA>
16390                                                            <NA>
16391                                                            <NA>
16392                                                            <NA>
16393                                                            <NA>
16394                                                            pump
16395                                                            <NA>
16396                                                            <NA>
16397                                             tablet/pill/capsule
16398                                                            <NA>
16399                                             tablet/pill/capsule
16400                                             tablet/pill/capsule
16401                                             tablet/pill/capsule
16402                                                            <NA>
16403                                                 based on weight
16404                                                 based on weight
16405                                                            <NA>
16406                                                            <NA>
16407                                                            pump
16408                                                            <NA>
16409                                                            <NA>
16410                                                            <NA>
16411                                                            pump
16412                                                            <NA>
16413                                             tablet/pill/capsule
16414                                             tablet/pill/capsule
16415                                                            <NA>
16416                                                            <NA>
16417                                                            <NA>
16418                                                     unspecified
16419                                                     unspecified
16420                                                     unspecified
16421                                                            <NA>
16422                                                            <NA>
16423                                                            <NA>
16424                                                            <NA>
16425                                     based on weight (44-88 lbs)
16426                                     based on weight (44-88 lbs)
16427                                                            <NA>
16428                                                            <NA>
16429                                                            <NA>
16430                                                            <NA>
16431                                                            <NA>
16432                                                            <NA>
16433                                                            <NA>
16434                                                            <NA>
16435                                                            <NA>
16436                                                            <NA>
16437                                                            <NA>
16438                                                            <NA>
16439                                                            <NA>
16440                                    based on weight (50-100 lbs)
16441                                    based on weight (50-100 lbs)
16442                                                     unspecified
16443                                                     unspecified
16444                                                            <NA>
16445                                                            <NA>
16446                                                            <NA>
16447                                    based on weight (50-100 lbs)
16448                                                     unspecified
16449                                                            <NA>
16450                                    based on weight (50-100 lbs)
16451                                                            <NA>
16452                                                            <NA>
16453                                                            <NA>
16454                                                            <NA>
16455                                                            <NA>
16456                                                            <NA>
16457                                                            <NA>
16458                                                            <NA>
16459                                                            <NA>
16460                                                     application
16461                                                            <NA>
16462                                                            <NA>
16463                                                            <NA>
16464                                                            <NA>
16465                                                            <NA>
16466                                                            <NA>
16467                                                            <NA>
16468                                                            <NA>
16469                                                            <NA>
16470                                                            <NA>
16471                                                            <NA>
16472                                                            <NA>
16473                                                            <NA>
16474                                                 syringe/pipette
16475                                                            <NA>
16476                                                            <NA>
16477                                                            <NA>
16478                                                            <NA>
16479                                                 syringe/pipette
16480                                                            <NA>
16481                                                            <NA>
16482                                                            <NA>
16483                                                            <NA>
16484                                                            <NA>
16485                                                 based on weight
16486                                                            <NA>
16487                                                            <NA>
16488                                                            <NA>
16489                                                        ointment
16490                                                            <NA>
16491                                                            <NA>
16492                                                            <NA>
16493                                             tablet/pill/capsule
16494                                                            <NA>
16495                                                            <NA>
16496                                                            <NA>
16497                                                            <NA>
16498                                             tablet/pill/capsule
16499                                                 syringe/pipette
16500                                                            <NA>
16501                                                            <NA>
16502                                                            <NA>
16503                                                            <NA>
16504                                                            <NA>
16505                                                            <NA>
16506                                                            <NA>
16507                                                            <NA>
16508                                                            <NA>
16509                                                            <NA>
16510                                                            <NA>
16511                                                            <NA>
16512                                                            <NA>
16513                                                            <NA>
16514                                                            <NA>
16515                                                            <NA>
16516                                                            <NA>
16517                                                            <NA>
16518                                                            <NA>
16519                                                            <NA>
16520                                                            <NA>
16521                                                            <NA>
16522                                             tablet/pill/capsule
16523                                             tablet/pill/capsule
16524                                                     bottle/vial
16525                                                            <NA>
16526                                                            <NA>
16527                                                            <NA>
16528                                                            <NA>
16529                                                            <NA>
16530                                                            <NA>
16531                                                            <NA>
16532                                                            <NA>
16533                                                            <NA>
16534                                                            <NA>
16535                                                            <NA>
16536                                                            <NA>
16537                                                            <NA>
16538                                                 based on weight
16539                                                            <NA>
16540                                                            <NA>
16541                                                            <NA>
16542                                                            <NA>
16543                                                 based on weight
16544                                                     bottle/vial
16545                                                            <NA>
16546                                                            <NA>
16547                                                            <NA>
16548                                                            <NA>
16549                                                            <NA>
16550                                                            <NA>
16551                                                 based on weight
16552                                                            <NA>
16553                                                 based on weight
16554                                                 based on weight
16555                                                            <NA>
16556                                                            <NA>
16557                                                            <NA>
16558                                                            <NA>
16559                                                            <NA>
16560                                                            <NA>
16561                                                            <NA>
16562                                                            <NA>
16563                                                            <NA>
16564                                                            <NA>
16565                                                            <NA>
16566                                                            <NA>
16567                                                            <NA>
16568                                                            <NA>
16569                                                            <NA>
16570                                                            <NA>
16571                                                            <NA>
16572                                                            <NA>
16573                                                            <NA>
16574                                                            <NA>
16575                                                            <NA>
16576                                                            <NA>
16577                                                            <NA>
16578                                                            <NA>
16579                                                 based on weight
16580                                                    small amount
16581                                                            <NA>
16582                                                            <NA>
16583                                                            <NA>
16584                                                            <NA>
16585                                                            <NA>
16586                                                            <NA>
16587                                                            <NA>
16588                                                            <NA>
16589                                                            <NA>
16590                                                            <NA>
16591                                                            <NA>
16592                                                            <NA>
16593                                                            <NA>
16594                                                            <NA>
16595                                    based on weight (50-100 lbs)
16596                                                 based on weight
16597                                                 based on weight
16598                                                 based on weight
16599                                                 based on weight
16600                                                            <NA>
16601                                                 based on weight
16602                                                            <NA>
16603                                                            <NA>
16604                                                            <NA>
16605                                                            <NA>
16606                                                 based on weight
16607                                                            <NA>
16608                                                 based on weight
16609                                                            <NA>
16610                                                            <NA>
16611                                                            <NA>
16612                                                            <NA>
16613                                                            <NA>
16614                                                            <NA>
16615                                                            <NA>
16616                                                            <NA>
16617                                                            <NA>
16618                                                            <NA>
16619                                                            <NA>
16620                                                            <NA>
16621                                                            <NA>
16622                                             tablet/pill/capsule
16623                                             tablet/pill/capsule
16624                                                            <NA>
16625                                                    pack/package
16626                                                            <NA>
16627                                                            <NA>
16628                                                            <NA>
16629                                                            <NA>
16630                                    based on weight (50-100 lbs)
16631                                    based on weight (50-100 lbs)
16632                                                            <NA>
16633                                                            <NA>
16634                                                            <NA>
16635                                                        ointment
16636                                             tablet/pill/capsule
16637                                                 based on weight
16638                                                 based on weight
16639                                             tablet/pill/capsule
16640                                             tablet/pill/capsule
16641                                                            <NA>
16642                                                            <NA>
16643                                                            <NA>
16644                                                            <NA>
16645                                                            <NA>
16646                                                            <NA>
16647                                                            <NA>
16648                                                            <NA>
16649                                                            <NA>
16650                                                            <NA>
16651                                                            <NA>
16652                                                            <NA>
16653                                                            <NA>
16654                                                            <NA>
16655                                                            <NA>
16656                                                            <NA>
16657                                                            <NA>
16658                                                            <NA>
16659                                                            <NA>
16660                                             tablet/pill/capsule
16661                                    based on weight (60-120 lbs)
16662                                                 0.25 inch strip
16663                                                        wipe/pad
16664                                                            <NA>
16665                                                            <NA>
16666                                                    small amount
16667                                                            <NA>
16668                                     based on weight (40-60 lbs)
16669                                    based on weight (50-100 lbs)
16670                                     based on weight (26-50 lbs)
16671                                                     as directed
16672                                   based on weight (11 - 20 lbs)
16673                                                            <NA>
16674                                                            <NA>
16675                                                            <NA>
16676                                                            <NA>
16677                                                            <NA>
16678                                                            <NA>
16679                                                            <NA>
16680                                                            <NA>
16681                                                            <NA>
16682                                                        wipe/pad
16683                                                            <NA>
16684                                                          powder
16685                                                        wipe/pad
16686                                                            <NA>
16687                                                            dose
16688                                                            <NA>
16689                                                 based on weight
16690                                                            <NA>
16691                                                            <NA>
16692                                                            <NA>
16693                                                            <NA>
16694                                             tablet/pill/capsule
16695                                             tablet/pill/capsule
16696                                             tablet/pill/capsule
16697                                                            <NA>
16698                                                            <NA>
16699                                                            <NA>
16700                                                            <NA>
16701                                                            <NA>
16702                                                 0.25 inch strip
16703                                                          powder
16704                                             tablet/pill/capsule
16705                                             tablet/pill/capsule
16706                                                            <NA>
16707                                                            <NA>
16708                                                            <NA>
16709                                                            <NA>
16710                                                            <NA>
16711                                                    small amount
16712                                                  shampoo/mousse
16713                                                            <NA>
16714                                                    small amount
16715                                                            <NA>
16716                                                            <NA>
16717                                                    small amount
16718                                                    small amount
16719                                                            <NA>
16720                                                            <NA>
16721                                             tablet/pill/capsule
16722                                                 based on weight
16723                                                          powder
16724                                                            <NA>
16725                                                            <NA>
16726                                                           spray
16727                                                            <NA>
16728                                                            <NA>
16729                                                            <NA>
16730                                                            <NA>
16731                                                            <NA>
16732                                                            <NA>
16733                                                            <NA>
16734                                                            <NA>
16735                                                            <NA>
16736                                                            <NA>
16737                                                            <NA>
16738                                                            <NA>
16739                                                            <NA>
16740                                                            <NA>
16741                                                            <NA>
16742                                             tablet/pill/capsule
16743                                                            <NA>
16744                                                            <NA>
16745                                                            <NA>
16746                                                            <NA>
16747                                                            <NA>
16748                                                            <NA>
16749                                                            <NA>
16750                                                            <NA>
16751                                                            <NA>
16752                                                            <NA>
16753                                                            <NA>
16754                                                            <NA>
16755                                                            <NA>
16756                                                            dose
16757                                                            <NA>
16758                                                            dose
16759                                                            <NA>
16760                                                            <NA>
16761                                                            <NA>
16762                                                            <NA>
16763                                             tablet/pill/capsule
16764                                                            <NA>
16765                                                            <NA>
16766                                                            <NA>
16767                                                            <NA>
16768                                                            <NA>
16769                                                            <NA>
16770                                                            <NA>
16771                                                            <NA>
16772                                                            <NA>
16773                                                            <NA>
16774                                             tablet/pill/capsule
16775                                             tablet/pill/capsule
16776                                                     application
16777                                             tablet/pill/capsule
16778                                                     bottle/vial
16779                                                           mg/kg
16780                                    based on weight (50-100 lbs)
16781                                                    pack/package
16782                                                    small amount
16783                                                            <NA>
16784                                                            <NA>
16785                                                            <NA>
16786                                                            <NA>
16787                                                            <NA>
16788                                                            <NA>
16789                                                             10%
16790                                                            <NA>
16791                                                            <NA>
16792                                                            <NA>
16793                                                            <NA>
16794                                                            <NA>
16795                                                            <NA>
16796                                                            <NA>
16797                                                            <NA>
16798                                                            <NA>
16799                                                            <NA>
16800                                                            <NA>
16801                                                            <NA>
16802                                                            <NA>
16803                                                            <NA>
16804                                                            <NA>
16805                                                 based on weight
16806                                                            <NA>
16807                                                     application
16808                                                            <NA>
16809                                                            tube
16810                                                     combination
16811                                                 based on weight
16812                                                            <NA>
16813                                                            <NA>
16814                                                            <NA>
16815                                                     unspecified
16816                                                            <NA>
16817                                                            <NA>
16818                                                            <NA>
16819                                                            <NA>
16820                                                            <NA>
16821                                             tablet/pill/capsule
16822                                                            <NA>
16823                                                            <NA>
16824                                                            <NA>
16825                                                            <NA>
16826                                                            <NA>
16827                                                            <NA>
16828                                                            <NA>
16829                                                            <NA>
16830                                                            <NA>
16831                                                            <NA>
16832                                                            <NA>
16833                                                            <NA>
16834                                                            <NA>
16835                                                            <NA>
16836                                                            <NA>
16837                                                            <NA>
16838                                                            <NA>
16839                                                            <NA>
16840                                                            <NA>
16841                                                            <NA>
16842                                                            <NA>
16843                                                            <NA>
16844                                                            <NA>
16845                                                            <NA>
16846                                                            <NA>
16847                                                            <NA>
16848                                                            <NA>
16849                                                            pump
16850                                                            <NA>
16851                                                            <NA>
16852                                                            <NA>
16853                                                            <NA>
16854                                                            <NA>
16855                                                            <NA>
16856                                                            <NA>
16857                                                            <NA>
16858                                                            <NA>
16859                                                            <NA>
16860                                                            <NA>
16861                                                            <NA>
16862                                                            <NA>
16863                                                            <NA>
16864                                                 based on weight
16865                                                            <NA>
16866                                                 based on weight
16867                                                            <NA>
16868                                                            <NA>
16869                                                 based on weight
16870                                               1 syringe/pipette
16871                                                               %
16872                                                               %
16873                                                            <NA>
16874                                                            <NA>
16875                                                            <NA>
16876                                                            <NA>
16877                                                            <NA>
16878                                                            <NA>
16879                                                          collar
16880                                                            <NA>
16881                                                            <NA>
16882                                                          collar
16883                                                            <NA>
16884                                                            <NA>
16885                                                            <NA>
16886                                                            <NA>
16887                                                            <NA>
16888                                                            <NA>
16889                                                            <NA>
16890                                                            <NA>
16891                                                            <NA>
16892                                                            <NA>
16893                                                            <NA>
16894                                                            <NA>
16895                                                            <NA>
16896                                                            <NA>
16897                                                            <NA>
16898                                                            <NA>
16899                                                            <NA>
16900                                                            <NA>
16901                                                            <NA>
16902                                                            <NA>
16903                                                            <NA>
16904                                                            <NA>
16905                                                            <NA>
16906                                                            <NA>
16907                                                            <NA>
16908                                                            <NA>
16909                                                            <NA>
16910                                                            <NA>
16911                                                            <NA>
16912                                                            <NA>
16913                                                 based on weight
16914                                                            <NA>
16915                                                            <NA>
16916                                                            <NA>
16917                                                            <NA>
16918                                                     unspecified
16919                                                            <NA>
16920                                                 based on weight
16921                                                 based on weight
16922                                                            <NA>
16923                                                            <NA>
16924                                                            <NA>
16925                                                            <NA>
16926                                                            <NA>
16927                                                            <NA>
16928                                                            <NA>
16929                                                     as directed
16930                                                            dose
16931                                                            <NA>
16932                                                              ml
16933                                                            <NA>
16934                                                            <NA>
16935                                                            <NA>
16936                                     based on weight (26-50 lbs)
16937                                     based on weight (44-88 lbs)
16938                                             tablet/pill/capsule
16939                                                            <NA>
16940                                                            <NA>
16941                                                            <NA>
16942                                                            <NA>
16943                                                            <NA>
16944                                                            <NA>
16945                                             tablet/pill/capsule
16946                                             tablet/pill/capsule
16947                                             tablet/pill/capsule
16948                                             tablet/pill/capsule
16949                                                            <NA>
16950                                                            <NA>
16951                                                            <NA>
16952                                             tablet/pill/capsule
16953                                             tablet/pill/capsule
16954                                                            <NA>
16955                                                            <NA>
16956                                                            <NA>
16957                                                            <NA>
16958                                                            <NA>
16959                                                            <NA>
16960                                                            <NA>
16961                                                            <NA>
16962                                                            <NA>
16963                                                            <NA>
16964                                                            <NA>
16965                                                            <NA>
16966                                                            <NA>
16967                                                            <NA>
16968                                                            <NA>
16969                                                            <NA>
16970                                                            <NA>
16971                                                            <NA>
16972                                             tablet/pill/capsule
16973                                             tablet/pill/capsule
16974                                                            <NA>
16975                                                            <NA>
16976                                                            <NA>
16977                                                            <NA>
16978                                                            <NA>
16979                                             tablet/pill/capsule
16980                                                            <NA>
16981                                                            <NA>
16982                                                            <NA>
16983                                             tablet/pill/capsule
16984                                                            <NA>
16985                                                            <NA>
16986                                                            <NA>
16987                                                            <NA>
16988                                                            <NA>
16989                                                            <NA>
16990                                                            <NA>
16991                                                            <NA>
16992                                                            <NA>
16993                                                    small amount
16994                                                    small amount
16995                                                            <NA>
16996                                                            <NA>
16997                                                            <NA>
16998                                                           tubes
16999                                                            <NA>
17000                                                            <NA>
17001                                                            <NA>
17002                                                            <NA>
17003                                                            <NA>
17004                                                            <NA>
17005                                                            <NA>
17006                                                            <NA>
17007                                                            <NA>
17008                                                            <NA>
17009                                                            <NA>
17010                                                     combination
17011                                                            <NA>
17012                                                     bottle/vial
17013                                             tablet/pill/capsule
17014                                                 based on weight
17015                                                            <NA>
17016                                                            <NA>
17017                                                            <NA>
17018                                                     unspecified
17019                                             tablet/pill/capsule
17020                                                            <NA>
17021                                                            <NA>
17022                                                            <NA>
17023                                                            <NA>
17024                                                            <NA>
17025                                                            <NA>
17026                                                            <NA>
17027                                                            <NA>
17028                                                            <NA>
17029                                             tablet/pill/capsule
17030                                                            <NA>
17031                                                            <NA>
17032                                                            <NA>
17033                                                            <NA>
17034                                                            <NA>
17035                                                            <NA>
17036                                                            <NA>
17037                                                            <NA>
17038                                                            <NA>
17039                                                            <NA>
17040                                                            <NA>
17041                                                 based on weight
17042                                                 based on weight
17043                                                            <NA>
17044                                                            <NA>
17045                                                            <NA>
17046                                                            <NA>
17047                                                            <NA>
17048                                                            <NA>
17049                                                            <NA>
17050                                                            <NA>
17051                                                            <NA>
17052                                                            <NA>
17053                                                            <NA>
17054                                                            <NA>
17055                                                            <NA>
17056                                                            <NA>
17057                                                 based on weight
17058                                                            <NA>
17059                                                            <NA>
17060                                                            <NA>
17061                                                            <NA>
17062                                                            <NA>
17063                                                            <NA>
17064                                                            <NA>
17065                                                            <NA>
17066                                                            <NA>
17067                                                            <NA>
17068                                                    small amount
17069                                                            <NA>
17070                                                            <NA>
17071                                                            <NA>
17072                                                            <NA>
17073                                                            <NA>
17074                                                            <NA>
17075                                                            <NA>
17076                                                            <NA>
17077                                                            <NA>
17078                                                            <NA>
17079                                                            <NA>
17080                                             tablet/pill/capsule
17081                                                            <NA>
17082                                                            <NA>
17083                                                            <NA>
17084                                                            <NA>
17085                                                            <NA>
17086                                                            <NA>
17087                                                            <NA>
17088                                                     combination
17089                                                            <NA>
17090                                           1 tablet/pill/capsule
17091                                           1 tablet/pill/capsule
17092                                                            <NA>
17093                                                            <NA>
17094                                    based on weight (50-100 lbs)
17095                                    based on weight (60-120 lbs)
17096                                                            <NA>
17097                                                            <NA>
17098                                                            <NA>
17099                                                            <NA>
17100                                                            <NA>
17101                                                            <NA>
17102                                                            <NA>
17103                                                            <NA>
17104                                                            <NA>
17105                                                            <NA>
17106                                                            <NA>
17107                                                            <NA>
17108                                                            <NA>
17109                                                            <NA>
17110                                                            <NA>
17111                                                            <NA>
17112                                                            <NA>
17113                                                            <NA>
17114                                                            <NA>
17115                                                            <NA>
17116                                                            <NA>
17117                                                            <NA>
17118                                                            <NA>
17119                                                            <NA>
17120                                                    small amount
17121                                                    small amount
17122                                                            <NA>
17123                                                            <NA>
17124                                                            <NA>
17125                                                            <NA>
17126                                                       as needed
17127                                                       as needed
17128                                                            <NA>
17129                                                            <NA>
17130                                                            <NA>
17131                                                            <NA>
17132                                                            <NA>
17133                                                            <NA>
17134                                                            <NA>
17135                                                            <NA>
17136                                                            pump
17137                                             tablet/pill/capsule
17138                                             tablet/pill/capsule
17139                                                            <NA>
17140                                                            <NA>
17141                                                            <NA>
17142                                                    small amount
17143                                                 based on weight
17144                                                            <NA>
17145                                                            <NA>
17146                                                            <NA>
17147                                                            <NA>
17148                                                            <NA>
17149                                                            <NA>
17150                                                            <NA>
17151                                                 based on weight
17152                                                            <NA>
17153                                                            <NA>
17154                                                            <NA>
17155                                                            <NA>
17156                                             tablet/pill/capsule
17157                                             tablet/pill/capsule
17158                                                            <NA>
17159                                                            <NA>
17160                                                            <NA>
17161                                                            <NA>
17162                                                            <NA>
17163                                                            <NA>
17164                                                            <NA>
17165                                                            <NA>
17166                                                            <NA>
17167                                                            <NA>
17168                                                            <NA>
17169                                                            <NA>
17170                                                            <NA>
17171                                                            <NA>
17172                                                            <NA>
17173                                                            <NA>
17174                                                            <NA>
17175                                                            <NA>
17176                                                            <NA>
17177                                             tablet/pill/capsule
17178                                                            <NA>
17179                                                            <NA>
17180                                             tablet/pill/capsule
17181                                                            <NA>
17182                                                            <NA>
17183                                                            <NA>
17184                                                            <NA>
17185                                                            <NA>
17186                                                            <NA>
17187                                                            <NA>
17188                                                            <NA>
17189                                                            <NA>
17190                                                            <NA>
17191                                                            <NA>
17192                                                            <NA>
17193                                                            <NA>
17194                                                            <NA>
17195                                                            <NA>
17196                                                 based on weight
17197                                                 based on weight
17198                                                            <NA>
17199                                                 based on weight
17200                                                            <NA>
17201                                                           spray
17202                                                 based on weight
17203                                                            <NA>
17204                                                            <NA>
17205                                                            <NA>
17206                                                            <NA>
17207                                                            <NA>
17208                                                            <NA>
17209                                             tablet/pill/capsule
17210                                                            <NA>
17211                                                            <NA>
17212                                                            <NA>
17213                                                            <NA>
17214                                                            <NA>
17215                                                            <NA>
17216                                                            <NA>
17217                                                            <NA>
17218                                                            <NA>
17219                                                            <NA>
17220                                                            <NA>
17221                                                            <NA>
17222                                                            <NA>
17223                                                            <NA>
17224                                                            <NA>
17225                                                            <NA>
17226                                                            <NA>
17227                                                            <NA>
17228                                                            <NA>
17229                                                            <NA>
17230                                             tablet/pill/capsule
17231                                                            tube
17232                                             tablet/pill/capsule
17233                                                            tube
17234                                             tablet/pill/capsule
17235                                                            <NA>
17236                                                          1 tube
17237                                             tablet/pill/capsule
17238                                                            tube
17239                                             tablet/pill/capsule
17240                                                            <NA>
17241                                                            <NA>
17242                                                            <NA>
17243                                                            <NA>
17244                                                            <NA>
17245                                                            <NA>
17246                                                            <NA>
17247                                             tablet/pill/capsule
17248                                    based on weight (50-100 lbs)
17249                                                            <NA>
17250                                                            <NA>
17251                                    based on weight (50-100 lbs)
17252                                                 syringe/pipette
17253                                                            <NA>
17254                                                    small amount
17255                                           1 tablet/pill/capsule
17256                                                            <NA>
17257                                                            <NA>
17258                                                            <NA>
17259                                                            <NA>
17260                                                            <NA>
17261                                                            <NA>
17262                                             tablet/pill/capsule
17263                                                            <NA>
17264                                                            <NA>
17265                                                            <NA>
17266                                                            <NA>
17267                                                            <NA>
17268                                                 based on weight
17269                                                            <NA>
17270                                                            <NA>
17271                                                            <NA>
17272                                                            <NA>
17273                                                            <NA>
17274                                                            <NA>
17275                                                            <NA>
17276                                                            <NA>
17277                                                            <NA>
17278                                                            <NA>
17279                                                            <NA>
17280                                                            <NA>
17281                                                            <NA>
17282                                                            <NA>
17283                                                            <NA>
17284                                                            <NA>
17285                                                            <NA>
17286                                                            <NA>
17287                                                            <NA>
17288                                                            <NA>
17289                                                      inch strip
17290                                                            <NA>
17291                                                            <NA>
17292                                                            <NA>
17293                                                            <NA>
17294                                                 based on weight
17295                                                 based on weight
17296                                                            <NA>
17297                                                            <NA>
17298                                                 based on weight
17299                                                            <NA>
17300                                                            <NA>
17301                                                            <NA>
17302                                                            <NA>
17303                                                            <NA>
17304                                                            <NA>
17305                                                            <NA>
17306                                                            <NA>
17307                                                            <NA>
17308                                                            <NA>
17309                                                            <NA>
17310                                                            <NA>
17311                                                            <NA>
17312                                                            <NA>
17313                                                            <NA>
17314                                                            <NA>
17315                                                            <NA>
17316                                                            <NA>
17317                                                           fl oz
17318                                                            <NA>
17319                                                            <NA>
17320                                                            <NA>
17321                                                            <NA>
17322                                                            <NA>
17323                                                            <NA>
17324                                                            <NA>
17325                                                            <NA>
17326                                                            <NA>
17327                                                     application
17328                                                               %
17329                                                     application
17330                                                     application
17331                                                            <NA>
17332                                                            <NA>
17333                                                            <NA>
17334                                                               %
17335                                                     application
17336                                                            <NA>
17337                                                            <NA>
17338                                                            <NA>
17339                                                            <NA>
17340                                                      inch strip
17341                                                            <NA>
17342                                                            <NA>
17343                                                      inch strip
17344                                                            <NA>
17345                                                            <NA>
17346                                                            <NA>
17347                                                            <NA>
17348                                                            <NA>
17349                                                            <NA>
17350                                                            <NA>
17351                                                            <NA>
17352                                                           spray
17353                                                            <NA>
17354                                                            <NA>
17355                                                    small amount
17356                                                            <NA>
17357                                                            <NA>
17358                                                            <NA>
17359                                                            <NA>
17360                                                            <NA>
17361                                                            <NA>
17362                                                            <NA>
17363                                             tablet/pill/capsule
17364                                                     bottle/vial
17365                                                            <NA>
17366                                                            <NA>
17367                                             tablet/pill/capsule
17368                                                            <NA>
17369                                                            <NA>
17370                                             tablet/pill/capsule
17371                                             tablet/pill/capsule
17372                                             tablet/pill/capsule
17373                                             tablet/pill/capsule
17374                                                            <NA>
17375                                                            <NA>
17376                                                            <NA>
17377                                                            <NA>
17378                                                            <NA>
17379                                                            <NA>
17380                                                            <NA>
17381                                                       2-3 drops
17382                                                            <NA>
17383                                                            <NA>
17384                                                            <NA>
17385                                                            <NA>
17386                                                            <NA>
17387                                                            <NA>
17388                                                            mg/g
17389                                                            <NA>
17390                                             tablet/pill/capsule
17391                                                            <NA>
17392                                                            <NA>
17393                                                        ointment
17394                                                            <NA>
17395                                                            <NA>
17396                                                            <NA>
17397                                                            <NA>
17398                                                            <NA>
17399                                             tablet/pill/capsule
17400                                                            <NA>
17401                                                            <NA>
17402                                                            <NA>
17403                                                            <NA>
17404                                                            <NA>
17405                                                            <NA>
17406                                                 based on weight
17407                                                           spray
17408                                                            <NA>
17409                                                            <NA>
17410                                                            <NA>
17411                                                            <NA>
17412                                                            <NA>
17413                                                            <NA>
17414                                                            <NA>
17415                                                            <NA>
17416                                                            <NA>
17417                                                          collar
17418                                             tablet/pill/capsule
17419                                             tablet/pill/capsule
17420                                             tablet/pill/capsule
17421                                                            <NA>
17422                                                            <NA>
17423                                                            <NA>
17424                                                    small amount
17425                                                            <NA>
17426                                                            <NA>
17427                                                            <NA>
17428                                                            <NA>
17429                                                            <NA>
17430                                                            <NA>
17431                                                            <NA>
17432                                                            <NA>
17433                                                            <NA>
17434                                                            <NA>
17435                                                            <NA>
17436                                                            <NA>
17437                                                            <NA>
17438                                                            <NA>
17439                                                            <NA>
17440                                                            <NA>
17441                                                            <NA>
17442                                                            <NA>
17443                                                            <NA>
17444                                                            <NA>
17445                                                            <NA>
17446                                                            <NA>
17447                                                            <NA>
17448                                                            <NA>
17449                                                            <NA>
17450                                                            <NA>
17451                                                            <NA>
17452                                                            <NA>
17453                                                            <NA>
17454                                                            <NA>
17455                                                            <NA>
17456                                                            <NA>
17457                                             tablet/pill/capsule
17458                                                            <NA>
17459                                                            tube
17460                                                            <NA>
17461                                                            <NA>
17462                                                            <NA>
17463                                                    pack/package
17464                                             tablet/pill/capsule
17465                                                            <NA>
17466                                                            <NA>
17467                                                            <NA>
17468                                                            <NA>
17469                                                            <NA>
17470                                                            <NA>
17471                                                            <NA>
17472                                                            <NA>
17473                                                            <NA>
17474                                                            <NA>
17475                                                            <NA>
17476                                                            <NA>
17477                                                            <NA>
17478                                                            <NA>
17479                                                            <NA>
17480                                                            <NA>
17481                                                            <NA>
17482                                                            <NA>
17483                                                            <NA>
17484                                                 based on weight
17485                                                            <NA>
17486                                                 based on weight
17487                                                 based on weight
17488                                                 based on weight
17489                                                 based on weight
17490                                                 based on weight
17491                                                 based on weight
17492                                                 based on weight
17493                                                 based on weight
17494                                                 based on weight
17495                                                 based on weight
17496                                                 based on weight
17497                                                 based on weight
17498                                                 based on weight
17499                                                            <NA>
17500                                                            <NA>
17501                                                            <NA>
17502                                                            <NA>
17503                                                            <NA>
17504                                                            <NA>
17505                                                            <NA>
17506                                                            <NA>
17507                                                            <NA>
17508                                                            <NA>
17509                                                            <NA>
17510                                                            <NA>
17511                                                            <NA>
17512                                                            <NA>
17513                                                            <NA>
17514                                                            <NA>
17515                                                            <NA>
17516                                                            <NA>
17517                                                            <NA>
17518                                                 based on weight
17519                                           1 tablet/pill/capsule
17520                                                            <NA>
17521                                                            <NA>
17522                                                            <NA>
17523                                                            <NA>
17524                                                            <NA>
17525                                                            <NA>
17526                                                            <NA>
17527                                                            <NA>
17528                                                            <NA>
17529                                                            <NA>
17530                                             tablet/pill/capsule
17531                                                            <NA>
17532                                                            <NA>
17533                                                            <NA>
17534                                                            <NA>
17535                                                            <NA>
17536                                                            <NA>
17537                                                            <NA>
17538                                                            <NA>
17539                                                            <NA>
17540                                                            <NA>
17541                                                            <NA>
17542                                                            <NA>
17543                                                            <NA>
17544                                                            <NA>
17545                                                            <NA>
17546                                                            <NA>
17547                                             tablet/pill/capsule
17548                                                            <NA>
17549                                                           spray
17550                                                            <NA>
17551                                                            <NA>
17552                                                            <NA>
17553                                                            <NA>
17554                                                            <NA>
17555                                                            <NA>
17556                                                            <NA>
17557                                                            <NA>
17558                                                            <NA>
17559                                                            <NA>
17560                                             tablet/pill/capsule
17561                                                            <NA>
17562                                                 based on weight
17563                                                            <NA>
17564                                                            <NA>
17565                                                            <NA>
17566                                                            <NA>
17567                                                            <NA>
17568                                                            tube
17569                                                            <NA>
17570                                                            <NA>
17571                                                            <NA>
17572                                                            <NA>
17573                                                            <NA>
17574                                                            <NA>
17575                                                            <NA>
17576                                                 0.25 inch strip
17577                                                            <NA>
17578                                                            <NA>
17579                                                            <NA>
17580                                                            <NA>
17581                                                            <NA>
17582                                                           spray
17583                                                            <NA>
17584                                                            <NA>
17585                                                            <NA>
17586                                                            <NA>
17587                                                            <NA>
17588                                                           spray
17589                                                            <NA>
17590                                                            <NA>
17591                                                            <NA>
17592                                                            <NA>
17593                                                            <NA>
17594                                                            <NA>
17595                                                            <NA>
17596                                                            <NA>
17597                                                            <NA>
17598                                                            <NA>
17599                                                            <NA>
17600                                                            <NA>
17601                                                            <NA>
17602                                                    small amount
17603                                                           23 mg
17604                                                               %
17605                                                            <NA>
17606                                                               %
17607                                                            <NA>
17608                                                            <NA>
17609                                                            <NA>
17610                                                            <NA>
17611                                                 based on weight
17612                                                            <NA>
17613                                                            <NA>
17614                                                            <NA>
17615                                                 based on weight
17616                                                            <NA>
17617                                                            <NA>
17618                                                            <NA>
17619                                                            <NA>
17620                                                            <NA>
17621                                                    pack/package
17622                                                            <NA>
17623                                                            <NA>
17624                                                            <NA>
17625                                                    pack/package
17626                                                            <NA>
17627                                                 based on weight
17628                                                            <NA>
17629                                                            <NA>
17630                                                            <NA>
17631                                                    pack/package
17632                                                            <NA>
17633                                                            <NA>
17634                                                            <NA>
17635                                                            <NA>
17636                                                            <NA>
17637                                                            <NA>
17638                                                            <NA>
17639                                                            <NA>
17640                                                            <NA>
17641                                                            <NA>
17642                                                           spray
17643                                                            <NA>
17644                                                            <NA>
17645                                                            <NA>
17646                                                      inch strip
17647                                                            <NA>
17648                                                            <NA>
17649                                                           spray
17650                                                            <NA>
17651                                                            <NA>
17652                                                            <NA>
17653                                                            <NA>
17654                                                            <NA>
17655                                                            <NA>
17656                                                            <NA>
17657                                                            <NA>
17658                                                            <NA>
17659                                             tablet/pill/capsule
17660                                                            <NA>
17661                                                            <NA>
17662                                                            <NA>
17663                                                            <NA>
17664                                                            <NA>
17665                                                            <NA>
17666                                                            <NA>
17667                                                            <NA>
17668                                                            <NA>
17669                                                            <NA>
17670                                                 based on weight
17671                                                            <NA>
17672                                                            <NA>
17673                                                            <NA>
17674                                             tablet/pill/capsule
17675                                             tablet/pill/capsule
17676                                             tablet/pill/capsule
17677                                                            <NA>
17678                                                            <NA>
17679                                                            <NA>
17680                                                            <NA>
17681                                                            <NA>
17682                                                            <NA>
17683                                                            <NA>
17684                                                            <NA>
17685                                                            <NA>
17686                                                            <NA>
17687                                                            <NA>
17688                                                            <NA>
17689                                             tablet/pill/capsule
17690                                                            <NA>
17691                                                            <NA>
17692                                                            <NA>
17693                                             tablet/pill/capsule
17694                                                            <NA>
17695                                                            <NA>
17696                                                            <NA>
17697                                                            <NA>
17698                                                            <NA>
17699                                                            <NA>
17700                                                            <NA>
17701                                                            <NA>
17702                                                            <NA>
17703                                                            <NA>
17704                                                            <NA>
17705                                                            <NA>
17706                                                            <NA>
17707                                                            <NA>
17708                                                            <NA>
17709                                                            <NA>
17710                                                            <NA>
17711                                                            <NA>
17712                                                            <NA>
17713                                                            <NA>
17714                                                            <NA>
17715                                                            <NA>
17716                                                            <NA>
17717                                                            <NA>
17718                                                            <NA>
17719                                                            <NA>
17720                                                    small amount
17721                                                            <NA>
17722                                                 based on weight
17723                                                 based on weight
17724                                                            <NA>
17725                                                            <NA>
17726                                                            <NA>
17727                                                            <NA>
17728                                                            <NA>
17729                                                            <NA>
17730                                                            <NA>
17731                                                            <NA>
17732                                                            <NA>
17733                                                            <NA>
17734                                                            <NA>
17735                                                            <NA>
17736                                                            <NA>
17737                                                            <NA>
17738                                                            <NA>
17739                                                            <NA>
17740                                                            <NA>
17741                                                    pack/package
17742                                                            <NA>
17743                                                            <NA>
17744                                                            <NA>
17745                                                            <NA>
17746                                                            <NA>
17747                                                            <NA>
17748                                                            <NA>
17749                                                            <NA>
17750                                                            <NA>
17751                                                            <NA>
17752                                                            <NA>
17753                                                            <NA>
17754                                                            <NA>
17755                                                 syringe/pipette
17756                                                            <NA>
17757                                                            <NA>
17758                                                            <NA>
17759                                                            <NA>
17760                                                            <NA>
17761                                                            <NA>
17762                                                            <NA>
17763                                                            <NA>
17764                                                            <NA>
17765                                                            <NA>
17766                                                            <NA>
17767                                                            <NA>
17768                                                            <NA>
17769                                                            <NA>
17770                                                            <NA>
17771                                                            <NA>
17772                                                            <NA>
17773                                                            <NA>
17774                                                            <NA>
17775                                                            <NA>
17776                                                            <NA>
17777                                                            <NA>
17778                                                            <NA>
17779                                                     application
17780                                                            <NA>
17781                                                            <NA>
17782                                                     application
17783                                                            <NA>
17784                                                            <NA>
17785                                                            <NA>
17786                                                            <NA>
17787                                                            <NA>
17788                                                            <NA>
17789                                                            <NA>
17790                                                            <NA>
17791                                                            <NA>
17792                                                            <NA>
17793                                                            <NA>
17794                                                            <NA>
17795                                                            <NA>
17796                                                            <NA>
17797                                                            <NA>
17798                                                            <NA>
17799                                                            <NA>
17800                                                            <NA>
17801                                                            <NA>
17802                                                           paste
17803                                                            <NA>
17804                                                            <NA>
17805                                                           spray
17806                                                            <NA>
17807                                                            <NA>
17808                                                           spray
17809                                                            <NA>
17810                                                            <NA>
17811                                                           spray
17812                                                            <NA>
17813                                                            <NA>
17814                                                            <NA>
17815                                                            <NA>
17816                                                            <NA>
17817                                                            <NA>
17818                                                 based on weight
17819                                                            <NA>
17820                                                            <NA>
17821                                                            <NA>
17822                                                            <NA>
17823                                                            <NA>
17824                                                            <NA>
17825                                                            <NA>
17826                                                            <NA>
17827                                                            <NA>
17828                                                            <NA>
17829                                                            <NA>
17830                                                            <NA>
17831                                                            <NA>
17832                                        based on weight (80 lbs)
17833                                                            <NA>
17834                                                            <NA>
17835                                                            <NA>
17836                                                 based on weight
17837                                                            <NA>
17838                                                            <NA>
17839                                                            <NA>
17840                                                            <NA>
17841                                                            <NA>
17842                                                            <NA>
17843                                                            <NA>
17844                                                            <NA>
17845                                                 based on weight
17846                                             tablet/pill/capsule
17847                                                 based on weight
17848                                             tablet/pill/capsule
17849                                                            <NA>
17850                                                            <NA>
17851                                                            <NA>
17852                                                            <NA>
17853                                                            <NA>
17854                                                            <NA>
17855                                                            <NA>
17856                                                            <NA>
17857                                                            <NA>
17858                                                            <NA>
17859                                                            <NA>
17860                                                            <NA>
17861                                                            <NA>
17862                                                            <NA>
17863                                             tablet/pill/capsule
17864                                                            <NA>
17865                                                            <NA>
17866                                                            <NA>
17867                                                            <NA>
17868                                                            <NA>
17869                                                            <NA>
17870                                                            <NA>
17871                                                            <NA>
17872                                                            <NA>
17873                                                            <NA>
17874                                                            <NA>
17875                                                            <NA>
17876                                                            <NA>
17877                                                            <NA>
17878                                                            <NA>
17879                                                            <NA>
17880                                                            <NA>
17881                                                            <NA>
17882                                                            <NA>
17883                                                            <NA>
17884                                                            <NA>
17885                                                            <NA>
17886                                                            <NA>
17887                                                            <NA>
17888                                                            <NA>
17889                                                            <NA>
17890                                                            <NA>
17891                                                            <NA>
17892                                                            <NA>
17893                                                            <NA>
17894                                                            <NA>
17895                                                            <NA>
17896                                                            <NA>
17897                                                            <NA>
17898                                                            <NA>
17899                                                            <NA>
17900                                                            <NA>
17901                                                            <NA>
17902                                                            <NA>
17903                                                            <NA>
17904                                                            <NA>
17905                                                            <NA>
17906                                                            <NA>
17907                                                            <NA>
17908                                                            <NA>
17909                                                            <NA>
17910                                                            <NA>
17911                                                            <NA>
17912                                                            <NA>
17913                                                            <NA>
17914                                                            <NA>
17915                                                            <NA>
17916                                                            <NA>
17917                                                            <NA>
17918                                                            <NA>
17919                                                            <NA>
17920                                                            <NA>
17921                                                            <NA>
17922                                                            <NA>
17923                                                            <NA>
17924                                                            <NA>
17925                                                            <NA>
17926                                                            <NA>
17927                                                            <NA>
17928                                                            <NA>
17929                                                            <NA>
17930                                                            <NA>
17931                                                            <NA>
17932                                                            <NA>
17933                                                            <NA>
17934                                                            <NA>
17935                                                            <NA>
17936                                             tablet/pill/capsule
17937                                                            <NA>
17938                                                            <NA>
17939                                             tablet/pill/capsule
17940                                                    pack/package
17941                                                            <NA>
17942                                     based on weight (40-60 lbs)
17943                                                            <NA>
17944                                                            <NA>
17945                                                            <NA>
17946                                                            <NA>
17947                                                    pack/package
17948                                                            <NA>
17949                                                            <NA>
17950                                                            <NA>
17951                                                            <NA>
17952                                                            <NA>
17953                                                            <NA>
17954                                                            <NA>
17955                                                            <NA>
17956                                                            <NA>
17957                                                            <NA>
17958                                                            <NA>
17959                                                            <NA>
17960                                                            <NA>
17961                                                            <NA>
17962                                                            <NA>
17963                                                            <NA>
17964                                                            <NA>
17965                                                            <NA>
17966                                                            <NA>
17967                                                            <NA>
17968                                                            <NA>
17969                                                            <NA>
17970                                                            <NA>
17971                                                            <NA>
17972                                                            <NA>
17973                                                            <NA>
17974                                                           spray
17975                                                            <NA>
17976                                             tablet/pill/capsule
17977                                                    small amount
17978                                                            <NA>
17979                                                            <NA>
17980                                                            <NA>
17981                                                            <NA>
17982                                                            <NA>
17983                                                            <NA>
17984                                                            <NA>
17985                                                            <NA>
17986                                                            <NA>
17987                                                            <NA>
17988                                                            <NA>
17989                                                            <NA>
17990                                                            <NA>
17991                                                    pack/package
17992                                                            <NA>
17993                                                            <NA>
17994                                                            <NA>
17995                                                            <NA>
17996                                                            <NA>
17997                                                            <NA>
17998                                                            <NA>
17999                                                            <NA>
18000                                                            <NA>
18001                                                 based on weight
18002                                                            <NA>
18003                                                 based on weight
18004                                                            <NA>
18005                                                            <NA>
18006                                                            <NA>
18007                                                            <NA>
18008                                                            <NA>
18009                                                 based on weight
18010                                                 based on weight
18011                                                 based on weight
18012                                                            <NA>
18013                                                            <NA>
18014                                                 based on weight
18015                                                 based on weight
18016                                                            <NA>
18017                                                            <NA>
18018                                                            <NA>
18019                                                            <NA>
18020                                                            <NA>
18021                                                 based on weight
18022                                                            <NA>
18023                                                 based on weight
18024                                                 based on weight
18025                                                 based on weight
18026                                                 based on weight
18027                                                            <NA>
18028                                                            <NA>
18029                                                            <NA>
18030                                                 based on weight
18031                                                            <NA>
18032                                                            <NA>
18033                                                            <NA>
18034                                                            <NA>
18035                                                            <NA>
18036                                                            <NA>
18037                                                            <NA>
18038                                                            <NA>
18039                                                            <NA>
18040                                                            <NA>
18041                                                           spray
18042                                                            <NA>
18043                                                            <NA>
18044                                                            <NA>
18045                                                            <NA>
18046                                                            <NA>
18047                                                            <NA>
18048                                                            <NA>
18049                                                            <NA>
18050                                                            <NA>
18051                                                            <NA>
18052                                                            <NA>
18053                                                            <NA>
18054                                                            <NA>
18055                                                            <NA>
18056                                                            <NA>
18057                                                 based on weight
18058                                                 based on weight
18059                                                            <NA>
18060                                                            <NA>
18061                                                            <NA>
18062                                                            <NA>
18063                                                            <NA>
18064                                                            <NA>
18065                                                            <NA>
18066                                                            <NA>
18067                                                            <NA>
18068                                                            <NA>
18069                                     based on weight (40-60 lbs)
18070                                                            <NA>
18071                                                            <NA>
18072                                             tablet/pill/capsule
18073                                             tablet/pill/capsule
18074                                                            <NA>
18075                                                            dose
18076                                                            dose
18077                                                            <NA>
18078                                                            <NA>
18079                                             tablet/pill/capsule
18080                                             tablet/pill/capsule
18081                                                     bottle/vial
18082                                                            <NA>
18083                                                               %
18084                                                            <NA>
18085                                                            <NA>
18086                                                            <NA>
18087                                                            <NA>
18088                                                            <NA>
18089                                                            <NA>
18090                                                            <NA>
18091                                                            <NA>
18092                                                            <NA>
18093                                                            <NA>
18094                                             tablet/pill/capsule
18095                                             tablet/pill/capsule
18096                                                            <NA>
18097                                                            <NA>
18098                                                            <NA>
18099                                             tablet/pill/capsule
18100                                                            <NA>
18101                                                            <NA>
18102                                                            <NA>
18103                                                            <NA>
18104                                                            <NA>
18105                                                            <NA>
18106                                                            <NA>
18107                                                            <NA>
18108                                                            <NA>
18109                                                            <NA>
18110                                                            <NA>
18111                                                            <NA>
18112                                                            <NA>
18113                                                            <NA>
18114                                                            <NA>
18115                                                            <NA>
18116                                                            <NA>
18117                                                 based on weight
18118                                       based on weight (55+ lbs)
18119                                    based on weight (50-100 lbs)
18120                                                            <NA>
18121                                                            <NA>
18122                                                            <NA>
18123                                                            <NA>
18124                                                 based on weight
18125                                                 based on weight
18126                                                            <NA>
18127                                                            <NA>
18128                                                            <NA>
18129                                                            <NA>
18130                                                            <NA>
18131                                                            <NA>
18132                                                            <NA>
18133                                                            <NA>
18134                                                            <NA>
18135                                                            <NA>
18136                                                            <NA>
18137                                                            <NA>
18138                                                            <NA>
18139                                                            <NA>
18140                                                            <NA>
18141                                                            <NA>
18142                                                            <NA>
18143                                                            <NA>
18144                                                            <NA>
18145                                                            <NA>
18146                                                            <NA>
18147                                                            hour
18148                                                            <NA>
18149                                                            <NA>
18150                                                               %
18151                                                            <NA>
18152                                                            <NA>
18153                                                            <NA>
18154                                                            <NA>
18155                                                            <NA>
18156                                                            <NA>
18157                                                            <NA>
18158                                                            <NA>
18159                                                            <NA>
18160                                                            <NA>
18161                                                            <NA>
18162                                                            <NA>
18163                                                            <NA>
18164                                                            <NA>
18165                                                    small amount
18166                                                            <NA>
18167                                                            <NA>
18168                                                            <NA>
18169                                                           tubes
18170                                                            <NA>
18171                                                            <NA>
18172                                                            <NA>
18173                                                            <NA>
18174                                                            <NA>
18175                                                            <NA>
18176                                                            <NA>
18177                                                            <NA>
18178                                                            <NA>
18179                                                            <NA>
18180                                                            <NA>
18181                                                            <NA>
18182                                                            <NA>
18183                                                               %
18184                                                            <NA>
18185                                                            <NA>
18186                                                            <NA>
18187                                                            <NA>
18188                                             tablet/pill/capsule
18189                                                            <NA>
18190                                                            <NA>
18191                                                            <NA>
18192                                                            <NA>
18193                                                            <NA>
18194                                                            <NA>
18195                                                            <NA>
18196                                                            <NA>
18197                                                            <NA>
18198                                                            <NA>
18199                                                            <NA>
18200                                                            <NA>
18201                                                            <NA>
18202                                                 based on weight
18203                                                            <NA>
18204                                                            <NA>
18205                                                 based on weight
18206                                                            <NA>
18207                                                            <NA>
18208                                                            <NA>
18209                                                            <NA>
18210                                                            <NA>
18211                                                            <NA>
18212                                                            <NA>
18213                                                            <NA>
18214                                                 based on weight
18215                                                            <NA>
18216                                                            <NA>
18217                                                            <NA>
18218                                                            <NA>
18219                                                            <NA>
18220                                                            <NA>
18221                                                            <NA>
18222                                             tablet/pill/capsule
18223                                                 based on weight
18224                                                            <NA>
18225                                                            <NA>
18226                                                            <NA>
18227                                                            <NA>
18228                                                            <NA>
18229                                                            <NA>
18230                                                            <NA>
18231                                                               %
18232                                                               %
18233                                                               %
18234                                                            <NA>
18235                                                            <NA>
18236                                                            <NA>
18237                                                               %
18238                                                     unspecified
18239                                                            <NA>
18240                                                            <NA>
18241                                                               %
18242                                                               %
18243                                                               %
18244                                                            <NA>
18245                                                            <NA>
18246                                                            <NA>
18247                                                            <NA>
18248                                                            <NA>
18249                                                            <NA>
18250                                                            <NA>
18251                                                          powder
18252                                                            <NA>
18253                                                            <NA>
18254                                                               %
18255                                                            <NA>
18256                                                            <NA>
18257                                                            <NA>
18258                                                               %
18259                                                            <NA>
18260                                                            <NA>
18261                                                            <NA>
18262                                                               %
18263                                                            <NA>
18264                                                            <NA>
18265                                                            <NA>
18266                                                            <NA>
18267                                                            <NA>
18268                                                            <NA>
18269                                                            <NA>
18270                                                            <NA>
18271                                                            <NA>
18272                                                            <NA>
18273                                                            <NA>
18274                                                            <NA>
18275                                                    small amount
18276                                                            <NA>
18277                                                            <NA>
18278                                                            <NA>
18279                                                            <NA>
18280                                                            <NA>
18281                                                            <NA>
18282                                                            <NA>
18283                                                            <NA>
18284                                                            <NA>
18285                                             tablet/pill/capsule
18286                                                            <NA>
18287                                                            <NA>
18288                                                            <NA>
18289                                                            <NA>
18290                                                            <NA>
18291                                                            <NA>
18292                                                            <NA>
18293                                                            <NA>
18294                                                            <NA>
18295                                                            <NA>
18296                                             tablet/pill/capsule
18297                                                            <NA>
18298                                                            <NA>
18299                                                            <NA>
18300                                                            tube
18301                                                     unspecified
18302                                                            <NA>
18303                                                            <NA>
18304                                                            <NA>
18305                                                            <NA>
18306                                                            <NA>
18307                                                            <NA>
18308                                                            <NA>
18309                                                       as needed
18310                                                            <NA>
18311                                                            <NA>
18312                                                            <NA>
18313                                                            <NA>
18314                                                        ointment
18315                                                            <NA>
18316                                                     unspecified
18317                                                            <NA>
18318                                                   tapering dose
18319                                                 based on weight
18320                                                    small amount
18321                                             tablet/pill/capsule
18322                                             tablet/pill/capsule
18323                                                            <NA>
18324                                                            <NA>
18325                                                            <NA>
18326                                                            <NA>
18327                                                            <NA>
18328                                                            <NA>
18329                                                            <NA>
18330                                                            <NA>
18331                                                            <NA>
18332                                                            <NA>
18333                                                            <NA>
18334                                                            <NA>
18335                                             tablet/pill/capsule
18336                                                            <NA>
18337                                             tablet/pill/capsule
18338                                                            <NA>
18339                                             tablet/pill/capsule
18340                                             tablet/pill/capsule
18341                                                     unspecified
18342                                                            <NA>
18343                                                            <NA>
18344                                           1 tablet/pill/capsule
18345                                                            <NA>
18346                                                            <NA>
18347                                                            <NA>
18348                                                            <NA>
18349                                                            <NA>
18350                                                            <NA>
18351                                                            <NA>
18352                                                            <NA>
18353                                                            <NA>
18354                                                            <NA>
18355                                                            <NA>
18356                                                            <NA>
18357                                                            <NA>
18358                                                            <NA>
18359                                                            <NA>
18360                                                            <NA>
18361                                                            <NA>
18362                                                            <NA>
18363                                                            <NA>
18364                                                            <NA>
18365                                             tablet/pill/capsule
18366                                             tablet/pill/capsule
18367                                             tablet/pill/capsule
18368                                                            <NA>
18369                                                            <NA>
18370                                             tablet/pill/capsule
18371                                             tablet/pill/capsule
18372                                             tablet/pill/capsule
18373                                           1 tablet/pill/capsule
18374                                           1 tablet/pill/capsule
18375                                                 based on weight
18376                                                            <NA>
18377                                                            <NA>
18378                                                            <NA>
18379                                                            <NA>
18380                                                            <NA>
18381                                                            <NA>
18382                                                            <NA>
18383                                                            <NA>
18384                                                            <NA>
18385                                                            <NA>
18386                                                            <NA>
18387                                                            <NA>
18388                                                            <NA>
18389                                                            <NA>
18390                                                            <NA>
18391                                                            <NA>
18392                                                            <NA>
18393                                                            <NA>
18394                                                            <NA>
18395                                                            <NA>
18396                                                            <NA>
18397                                                            <NA>
18398                                                            <NA>
18399                                                            <NA>
18400                                                            <NA>
18401                                                            <NA>
18402                                                            <NA>
18403                                                            <NA>
18404                                                            <NA>
18405                                                            <NA>
18406                                                            <NA>
18407                                                            <NA>
18408                                                            <NA>
18409                                                            <NA>
18410                                                            <NA>
18411                                                            <NA>
18412                                                            <NA>
18413                                                            <NA>
18414                                                            <NA>
18415                                                 based on weight
18416                                                 based on weight
18417                                                            <NA>
18418                                                            <NA>
18419                                                            <NA>
18420                                                            <NA>
18421                                                            <NA>
18422                                                            <NA>
18423                                                            <NA>
18424                                                            <NA>
18425                                                            <NA>
18426                                                            <NA>
18427                                                      inch strip
18428                                                            <NA>
18429                                                            <NA>
18430                                                            <NA>
18431                                                            <NA>
18432                                                            <NA>
18433                                                            <NA>
18434                                                            <NA>
18435                                                            <NA>
18436                                             tablet/pill/capsule
18437                                                            <NA>
18438                                                            <NA>
18439                                                            <NA>
18440                                                            <NA>
18441                                                            <NA>
18442                                                            <NA>
18443                                                            <NA>
18444                                                            pump
18445                                                            <NA>
18446                                                            <NA>
18447                                                            <NA>
18448                                                            <NA>
18449                                                            <NA>
18450                                                            <NA>
18451                                                            <NA>
18452                                                            <NA>
18453                                             tablet/pill/capsule
18454                                             tablet/pill/capsule
18455                                                            <NA>
18456                                                            <NA>
18457                                             tablet/pill/capsule
18458                                             tablet/pill/capsule
18459                                                 based on weight
18460                                                            dose
18461                                                            dose
18462                                                            <NA>
18463                                                            <NA>
18464                                                            <NA>
18465                                                            <NA>
18466                                                            <NA>
18467                                                            <NA>
18468                                                            <NA>
18469                                                 0.25 inch strip
18470                                                            <NA>
18471                                                 0.25 inch strip
18472                                                            <NA>
18473                                                 based on weight
18474                                                            <NA>
18475                                                            <NA>
18476                                                            <NA>
18477                                                            <NA>
18478                                                            <NA>
18479                                                            <NA>
18480                                                            <NA>
18481                                                            <NA>
18482                                                            <NA>
18483                                                            <NA>
18484                                                            <NA>
18485                                                            <NA>
18486                                                            <NA>
18487                                                            <NA>
18488                                                            <NA>
18489                                             tablet/pill/capsule
18490                                             tablet/pill/capsule
18491                                                            <NA>
18492                                                            <NA>
18493                                                            <NA>
18494                                             tablet/pill/capsule
18495                                             tablet/pill/capsule
18496                                                            <NA>
18497                                                            <NA>
18498                                                            <NA>
18499                                                            <NA>
18500                                             tablet/pill/capsule
18501                                                            <NA>
18502                                             tablet/pill/capsule
18503                                                            <NA>
18504                                             tablet/pill/capsule
18505                                                            <NA>
18506                                                            <NA>
18507                                                            <NA>
18508                                                            <NA>
18509                                                            <NA>
18510                                                            <NA>
18511                                                            <NA>
18512                                                            <NA>
18513                                                            <NA>
18514                                     based on weight (21-55 lbs)
18515                                                            <NA>
18516                                                            <NA>
18517                                                            <NA>
18518                                                            <NA>
18519                                                 based on weight
18520                                        based on weight (60 lbs)
18521                                                            <NA>
18522                                                            <NA>
18523                                                            <NA>
18524                                                            <NA>
18525                                                            <NA>
18526                                                            <NA>
18527                                                            <NA>
18528                                                            <NA>
18529                                                            <NA>
18530                                                            <NA>
18531                                                            <NA>
18532                                                            <NA>
18533                                                            <NA>
18534                                                           daily
18535                                             tablet/pill/capsule
18536                                             tablet/pill/capsule
18537                                                            <NA>
18538                                                            <NA>
18539                                                 based on weight
18540                                                            <NA>
18541                                                            <NA>
18542                                                 based on weight
18543                                                           drops
18544                                                            <NA>
18545                                                            <NA>
18546                                                            <NA>
18547                                                            <NA>
18548                                                            <NA>
18549                                                            <NA>
18550                                                            <NA>
18551                                                            <NA>
18552                                                            <NA>
18553                                                            <NA>
18554                                                            <NA>
18555                                                 based on weight
18556                                                            <NA>
18557                                                            <NA>
18558                                                            puff
18559                                                            <NA>
18560                                                            <NA>
18561                                                            <NA>
18562                                                          powder
18563                                                            <NA>
18564                                                            <NA>
18565                                                          1 tube
18566                                                            <NA>
18567                                                            <NA>
18568                                                            <NA>
18569                                                            <NA>
18570                                                            <NA>
18571                                             tablet/pill/capsule
18572                                             tablet/pill/capsule
18573                                                            <NA>
18574                                                            <NA>
18575                                                            <NA>
18576                                             tablet/pill/capsule
18577                                             tablet/pill/capsule
18578                                                            <NA>
18579                                                            <NA>
18580                                             tablet/pill/capsule
18581                                             tablet/pill/capsule
18582                                                            <NA>
18583                                                            <NA>
18584                                                            <NA>
18585                                                            <NA>
18586                                                            <NA>
18587                                                            <NA>
18588                                                            <NA>
18589                                                            <NA>
18590                                                            <NA>
18591                                                           spray
18592                                                            <NA>
18593                                                            <NA>
18594                                                            <NA>
18595                                                 based on weight
18596                                                            <NA>
18597                                                            <NA>
18598                                                            <NA>
18599                                                            <NA>
18600                                                            <NA>
18601                                                            <NA>
18602                                                            <NA>
18603                                                            <NA>
18604                                                            <NA>
18605                                                            <NA>
18606                                                            <NA>
18607                                                    pack/package
18608                                                            <NA>
18609                                                            <NA>
18610                                                    pack/package
18611                                                            <NA>
18612                                                     unspecified
18613                                                            <NA>
18614                                                 based on weight
18615                                                            <NA>
18616                                                            <NA>
18617                                                            <NA>
18618                                                            <NA>
18619                                                            <NA>
18620                                                            <NA>
18621                                                            <NA>
18622                                                            <NA>
18623                                                            <NA>
18624                                                            <NA>
18625                                                            <NA>
18626                                                            <NA>
18627                                                            <NA>
18628                                                            <NA>
18629                                                            <NA>
18630                                                 0.25 inch strip
18631                                                            <NA>
18632                                                            <NA>
18633                                                            <NA>
18634                                                            <NA>
18635                                             tablet/pill/capsule
18636                                                            <NA>
18637                                                            <NA>
18638                                                            <NA>
18639                                                            <NA>
18640                                                            <NA>
18641                                                            <NA>
18642                                                            <NA>
18643                                                            <NA>
18644                                                            <NA>
18645                                                            <NA>
18646                                                            <NA>
18647                                                            <NA>
18648                                                            <NA>
18649                                                 based on weight
18650                                                            <NA>
18651                                                            <NA>
18652                                                            <NA>
18653                                                            <NA>
18654                                                            <NA>
18655                                                            <NA>
18656                                                            <NA>
18657                                                            <NA>
18658                                                            <NA>
18659                                                            <NA>
18660                                                            <NA>
18661                                                            <NA>
18662                                                            <NA>
18663                                                            <NA>
18664                                                            <NA>
18665                                                            <NA>
18666                                             tablet/pill/capsule
18667                                                            <NA>
18668                                                            <NA>
18669                                                        wipe/pad
18670                                                            <NA>
18671                                                            <NA>
18672                                                            <NA>
18673                                                            <NA>
18674                                                    pack/package
18675                                                            <NA>
18676                                                            <NA>
18677                                                            <NA>
18678                                                            <NA>
18679                                                            <NA>
18680                                                            <NA>
18681                                                            <NA>
18682                                                            <NA>
18683                                                            <NA>
18684                                                            <NA>
18685                                                            <NA>
18686                                                            <NA>
18687                                                            <NA>
18688                                                            <NA>
18689                                                            <NA>
18690                                                            <NA>
18691                                                            <NA>
18692                                        based on weight (65 lbs)
18693                                                            <NA>
18694                                                            <NA>
18695                                                            <NA>
18696                                                     combination
18697                                                     combination
18698                                                            <NA>
18699                                                            <NA>
18700                                                            <NA>
18701                                                            <NA>
18702                                                            <NA>
18703                     272 mcg ivermectin, 227 mg pyrantel pamoate
18704                                                68 mg afoxolaner
18705                                                            <NA>
18706                                                            <NA>
18707                                                            <NA>
18708                                                            <NA>
18709                                                            <NA>
18710                                                            <NA>
18711                                                            <NA>
18712                                                            <NA>
18713                                                            <NA>
18714                                                            <NA>
18715                                                            <NA>
18716                                                        ointment
18717                                                            <NA>
18718                                                           spray
18719                                                            <NA>
18720                                                            <NA>
18721                                                            <NA>
18722                                                            <NA>
18723                                                            <NA>
18724                                                            <NA>
18725                                                            <NA>
18726                                                            <NA>
18727                                             tablet/pill/capsule
18728                                                            <NA>
18729                                                        ointment
18730                                                            <NA>
18731                                                            <NA>
18732                                                            tube
18733                                             tablet/pill/capsule
18734                                             tablet/pill/capsule
18735                                             tablet/pill/capsule
18736                                             tablet/pill/capsule
18737                                                            <NA>
18738                                                            <NA>
18739                                                            <NA>
18740                                             tablet/pill/capsule
18741                                                            <NA>
18742                                                            <NA>
18743                                             tablet/pill/capsule
18744                                                          collar
18745                                                    pack/package
18746                                                            <NA>
18747                                                            <NA>
18748                                                    pack/package
18749                                                            <NA>
18750                                                            <NA>
18751                                                            <NA>
18752                                                            <NA>
18753                                                            <NA>
18754                                                            <NA>
18755                                                            <NA>
18756                                                            <NA>
18757                                                            <NA>
18758                                                            <NA>
18759                                                            <NA>
18760                                                            <NA>
18761                                                            <NA>
18762                                                            <NA>
18763                                                            <NA>
18764                                                            <NA>
18765                                                            <NA>
18766                                                            <NA>
18767                                                            <NA>
18768                                                            <NA>
18769                                                            <NA>
18770                                                            <NA>
18771                                                            <NA>
18772                                                            <NA>
18773                                             tablet/pill/capsule
18774                                                            <NA>
18775                                                            <NA>
18776                                                            <NA>
18777                                                            <NA>
18778                                             tablet/pill/capsule
18779                                                            <NA>
18780                                                            <NA>
18781                                                            <NA>
18782                                                            <NA>
18783                                                            <NA>
18784                                                            <NA>
18785                                                            <NA>
18786                                                            <NA>
18787                                                            <NA>
18788                                                            <NA>
18789                                                            <NA>
18790                                                            <NA>
18791                                                            <NA>
18792                                                            <NA>
18793                                                            <NA>
18794                                                            <NA>
18795                                             tablet/pill/capsule
18796                                                     bottle/vial
18797                                             tablet/pill/capsule
18798                                                     bottle/vial
18799                                                            <NA>
18800                                                            <NA>
18801                                                            <NA>
18802                                                            <NA>
18803                                                            <NA>
18804                                                            <NA>
18805                                                            <NA>
18806                                                            <NA>
18807                                                            <NA>
18808                                                            <NA>
18809                                                            <NA>
18810                                                            <NA>
18811                                                            <NA>
18812                                                            <NA>
18813                                                            <NA>
18814                                                            <NA>
18815                                                            <NA>
18816                                                            <NA>
18817                                                            <NA>
18818                                                            <NA>
18819                                                            <NA>
18820                                                            <NA>
18821                                                            <NA>
18822                                                            <NA>
18823                                                            <NA>
18824                                                            <NA>
18825                                                            <NA>
18826                                                         monthly
18827                                                            <NA>
18828                                                            <NA>
18829                                                            <NA>
18830                                                            <NA>
18831                                                            <NA>
18832                                                            <NA>
18833                                                            <NA>
18834                                                            <NA>
18835                                                            <NA>
18836                                                            <NA>
18837                                             tablet/pill/capsule
18838                                        2 tablets/pills/capsules
18839                                           1 tablet/pill/capsule
18840                                                            <NA>
18841                                                            <NA>
18842                                                            <NA>
18843                                                            <NA>
18844                                                 syringe/pipette
18845                                             tablet/pill/capsule
18846                                             tablet/pill/capsule
18847                                        2 tablets/pills/capsules
18848                                                            <NA>
18849                                                            <NA>
18850                                           1 tablet/pill/capsule
18851                                                            <NA>
18852                                             tablet/pill/capsule
18853                                           1 tablet/pill/capsule
18854                                           1 tablet/pill/capsule
18855                                                 based on weight
18856                                                 based on weight
18857                                                            <NA>
18858                                                            <NA>
18859                                                            <NA>
18860                                                            <NA>
18861                                                            <NA>
18862                                                            <NA>
18863                                                            <NA>
18864                                                            <NA>
18865                                                            <NA>
18866                                                            <NA>
18867                                                            <NA>
18868                                                            <NA>
18869                                             tablet/pill/capsule
18870                                             tablet/pill/capsule
18871                                                            <NA>
18872                                                            <NA>
18873                                                            <NA>
18874                                                            <NA>
18875                                             tablet/pill/capsule
18876                                             tablet/pill/capsule
18877                                             tablet/pill/capsule
18878                                             tablet/pill/capsule
18879                                             tablet/pill/capsule
18880                                             tablet/pill/capsule
18881                                             tablet/pill/capsule
18882                                                            dose
18883                                                            <NA>
18884                                                            <NA>
18885                                                            <NA>
18886                                                            <NA>
18887                                                            <NA>
18888                                                            <NA>
18889                                                            <NA>
18890                                                            <NA>
18891                                                            <NA>
18892                                                            <NA>
18893                                             tablet/pill/capsule
18894                                                            <NA>
18895                                                            <NA>
18896                                                            <NA>
18897                                             tablet/pill/capsule
18898                                                            <NA>
18899                                             tablet/pill/capsule
18900                                                            <NA>
18901                                                            <NA>
18902                                                            <NA>
18903                                                            <NA>
18904                                                            <NA>
18905                                                            <NA>
18906                                                            <NA>
18907                                                            <NA>
18908                                                 based on weight
18909                                                 based on weight
18910                                                            <NA>
18911                                                            <NA>
18912                                                            <NA>
18913                                                            <NA>
18914                                                            <NA>
18915                                                            <NA>
18916                                                            <NA>
18917                                                            <NA>
18918                                                            <NA>
18919                                                          collar
18920                                                            <NA>
18921                                                          collar
18922                                             tablet/pill/capsule
18923                                                            <NA>
18924                                                 based on weight
18925                                                            <NA>
18926                                                            <NA>
18927                                                            <NA>
18928                                                            <NA>
18929                                                            <NA>
18930                                                            <NA>
18931                                                            <NA>
18932                                                            <NA>
18933                                                            <NA>
18934                                                            <NA>
18935                                    based on weight (50-100 lbs)
18936                                                          collar
18937                                             tablet/pill/capsule
18938                                                            <NA>
18939                                                            <NA>
18940                                                            <NA>
18941                                                            <NA>
18942                                                            <NA>
18943                                                            <NA>
18944                                                            <NA>
18945                                                            <NA>
18946                                                            <NA>
18947                                                            <NA>
18948                                                            <NA>
18949                                                            <NA>
18950                                                            <NA>
18951                                                            <NA>
18952                                                            <NA>
18953                                                 based on weight
18954                                                 based on weight
18955                                                            <NA>
18956                                                            <NA>
18957                                                            <NA>
18958                                                            <NA>
18959                                                            <NA>
18960                                                            <NA>
18961                                        2 tablets/pills/capsules
18962                                                            <NA>
18963                                                            <NA>
18964                                             tablet/pill/capsule
18965                                                            <NA>
18966                                                            <NA>
18967                                                            <NA>
18968                                                            <NA>
18969                                                            <NA>
18970                                             tablet/pill/capsule
18971                                                            <NA>
18972                                                            <NA>
18973                                                            <NA>
18974                                                            <NA>
18975                                                            <NA>
18976                                                            <NA>
18977                                                            <NA>
18978                                                            <NA>
18979                                                            <NA>
18980                                                            <NA>
18981                                                            <NA>
18982                                                            <NA>
18983                                                            <NA>
18984                                                            <NA>
18985                                                            <NA>
18986                                                            <NA>
18987                                                            <NA>
18988                                                     unspecified
18989                                                     unspecified
18990                                                            <NA>
18991                                                    small amount
18992                                                            <NA>
18993                                                            <NA>
18994                                                            <NA>
18995                                             tablet/pill/capsule
18996                                                            <NA>
18997                                                            <NA>
18998                                                            <NA>
18999                                             tablet/pill/capsule
19000                                                            <NA>
19001                                                            <NA>
19002                                                            <NA>
19003                                                            <NA>
19004                                                            <NA>
19005                                                           spray
19006                                                           spray
19007                                                            <NA>
19008                                      1-2 tablets/pills/capsules
19009                                      1-2 tablets/pills/capsules
19010                                                           scoop
19011                                                           scoop
19012                                                            <NA>
19013                                                           scoop
19014                                                            <NA>
19015                                                            <NA>
19016                                                            <NA>
19017                                                            <NA>
19018                                                            <NA>
19019                                                            <NA>
19020                                                            <NA>
19021                                                            <NA>
19022                                             tablet/pill/capsule
19023                                                    small amount
19024                                             tablet/pill/capsule
19025                                    based on weight (50-100 lbs)
19026                                                            <NA>
19027                                                            <NA>
19028                                                            <NA>
19029                                                            <NA>
19030                                                            <NA>
19031                                                            <NA>
19032                                                            <NA>
19033                                                            <NA>
19034                                                            <NA>
19035                                                            <NA>
19036                                                            <NA>
19037                                                            <NA>
19038                                                            <NA>
19039                                                            <NA>
19040                                                            <NA>
19041                                                            <NA>
19042                                                            <NA>
19043                                                 based on weight
19044                                                            <NA>
19045                                             tablet/pill/capsule
19046                                                            <NA>
19047                                                            <NA>
19048                                                            <NA>
19049                                                            <NA>
19050                                                            <NA>
19051                                                            <NA>
19052                                                            <NA>
19053                                                            <NA>
19054                                                            <NA>
19055                                                 based on weight
19056                                                     unspecified
19057                                                            <NA>
19058                                                            <NA>
19059                                                            <NA>
19060                                                            <NA>
19061                                                 based on weight
19062                                                            <NA>
19063                                                            <NA>
19064                                                            <NA>
19065                                                            <NA>
19066                                                            <NA>
19067                                                 based on weight
19068                                                            <NA>
19069                                                            <NA>
19070                                             tablet/pill/capsule
19071                                                            <NA>
19072                                                            tube
19073                                             tablet/pill/capsule
19074                                                            <NA>
19075                                                            <NA>
19076                                                            <NA>
19077                                                 based on weight
19078                                                 based on weight
19079                                                            <NA>
19080                                                            <NA>
19081                                                            <NA>
19082                                                          1 tube
19083                                                            <NA>
19084                                                            <NA>
19085                                                            <NA>
19086                                                            <NA>
19087                                                            <NA>
19088                                                            <NA>
19089                                                            <NA>
19090                                                            <NA>
19091                                                            <NA>
19092                                                            <NA>
19093                                                            <NA>
19094                                                            <NA>
19095                                                            <NA>
19096                                                            <NA>
19097                                                            <NA>
19098                                                            <NA>
19099                                                            <NA>
19100                                                            <NA>
19101                                                            <NA>
19102                                                 based on weight
19103                                                            <NA>
19104                                                            <NA>
19105                                                            tube
19106                                                            <NA>
19107                                                            <NA>
19108                                                            <NA>
19109                                                            <NA>
19110                                                            <NA>
19111                                             tablet/pill/capsule
19112                                                            <NA>
19113                                                            <NA>
19114                                                            <NA>
19115                                                            <NA>
19116                                                            <NA>
19117                                                            <NA>
19118                                                            <NA>
19119                                                            <NA>
19120                                                            <NA>
19121                                                            <NA>
19122                                                 based on weight
19123                                                            <NA>
19124                                                            <NA>
19125                                                            <NA>
19126                                                            <NA>
19127                                                            <NA>
19128                                                            <NA>
19129                                                            <NA>
19130                                             tablet/pill/capsule
19131                                                            <NA>
19132                                                            <NA>
19133                                                            <NA>
19134                                                            <NA>
19135                                                            <NA>
19136                                                            <NA>
19137                                                            <NA>
19138                                                            <NA>
19139                                                            <NA>
19140                                             tablet/pill/capsule
19141                                                           scoop
19142                                                    pack/package
19143                                                            <NA>
19144                                                            <NA>
19145                                                           scoop
19146                                                    pack/package
19147                                                            <NA>
19148                                                            <NA>
19149                                                            <NA>
19150                                                            <NA>
19151                                                    pack/package
19152                                                            <NA>
19153                                             tablet/pill/capsule
19154                                             tablet/pill/capsule
19155                                                            <NA>
19156                                                            <NA>
19157                                             tablet/pill/capsule
19158                                             tablet/pill/capsule
19159                                                            <NA>
19160                                                            <NA>
19161                                                            <NA>
19162                                                            <NA>
19163                                                            <NA>
19164                                                            <NA>
19165                                             tablet/pill/capsule
19166                                             tablet/pill/capsule
19167                                                            tube
19168                                                            <NA>
19169                                           1 tablet/pill/capsule
19170                                                          1 tube
19171                                                            <NA>
19172                                                            <NA>
19173                                                            <NA>
19174                                                            <NA>
19175                                                            <NA>
19176                                                            <NA>
19177                                                            <NA>
19178                                                            <NA>
19179                                                            <NA>
19180                                                            <NA>
19181                                                            <NA>
19182                                                               %
19183                                                               1
19184                                                     unspecified
19185                                                            <NA>
19186                                                            <NA>
19187                                                            <NA>
19188                                                            <NA>
19189                                                            <NA>
19190                                                            <NA>
19191                                                            <NA>
19192                                                            <NA>
19193                                                            <NA>
19194                                                            <NA>
19195                                                            <NA>
19196                                                            <NA>
19197                                                            <NA>
19198                                                            <NA>
19199                                                            <NA>
19200                                                            <NA>
19201                                                            <NA>
19202                                                            <NA>
19203                                                            <NA>
19204                                                            <NA>
19205                                                            <NA>
19206                                                            <NA>
19207                                                            <NA>
19208                                             tablet/pill/capsule
19209                                                            <NA>
19210                                                            <NA>
19211                                                            <NA>
19212                                                            <NA>
19213                                                     unspecified
19214                                                     unspecified
19215                                                     as directed
19216                                                     as directed
19217                                                            tube
19218                                                            <NA>
19219                                                            <NA>
19220                                                            <NA>
19221                                           1 tablet/pill/capsule
19222                                           1 tablet/pill/capsule
19223                                           1 tablet/pill/capsule
19224                                                          collar
19225                                                            <NA>
19226                                             tablet/pill/capsule
19227                                                            <NA>
19228                                                            <NA>
19229                                                            <NA>
19230                                                            <NA>
19231                                             tablet/pill/capsule
19232                                                            <NA>
19233                                                            <NA>
19234                                                            <NA>
19235                                                            <NA>
19236                                                            <NA>
19237                                                            <NA>
19238                                                            <NA>
19239                                                            <NA>
19240                                                            <NA>
19241                                                            <NA>
19242                                                            <NA>
19243                                                            <NA>
19244                                                            <NA>
19245                                                            <NA>
19246                                                     as directed
19247                                                            <NA>
19248                                                            <NA>
19249                                                            <NA>
19250                                                            <NA>
19251                                                            <NA>
19252                                                            <NA>
19253                                                            <NA>
19254                                                            <NA>
19255                                                            <NA>
19256                                                            <NA>
19257                                                            <NA>
19258                                                            <NA>
19259                                                            <NA>
19260                                                            <NA>
19261                                                            <NA>
19262                                                            <NA>
19263                                                            <NA>
19264                                                            <NA>
19265                                                            <NA>
19266                                                            <NA>
19267                                                            <NA>
19268                                                            <NA>
19269                                                            <NA>
19270                                                            <NA>
19271                                                 based on weight
19272                                                 based on weight
19273                                                 based on weight
19274                                                            <NA>
19275                                                            <NA>
19276                                                            <NA>
19277                                                            <NA>
19278                                                     combination
19279                                                            <NA>
19280                                                            <NA>
19281                                                 based on weight
19282                                                 based on weight
19283                                                            <NA>
19284                                                            <NA>
19285                                                            <NA>
19286                                                            <NA>
19287                                                            <NA>
19288                                                            <NA>
19289                                                            <NA>
19290                                                            <NA>
19291                                                            <NA>
19292                                                            <NA>
19293                                                            <NA>
19294                                                            <NA>
19295                                                            <NA>
19296                                                            <NA>
19297                                                            <NA>
19298                                                            <NA>
19299                                                            dose
19300                                                            <NA>
19301                                                            <NA>
19302                                                            <NA>
19303                                                            <NA>
19304                                                            <NA>
19305                                                            <NA>
19306                                                            <NA>
19307                                                            <NA>
19308                                                            <NA>
19309                                                            <NA>
19310                                                            <NA>
19311                                                            <NA>
19312                                                            <NA>
19313                                                            <NA>
19314                                                            <NA>
19315                                                 based on weight
19316                                                            <NA>
19317                                                            <NA>
19318                                                 based on weight
19319                                                            <NA>
19320                                                            <NA>
19321                                                            <NA>
19322                                                            <NA>
19323                                                            <NA>
19324                                                            <NA>
19325                                                            <NA>
19326                                                 based on weight
19327                                                 based on weight
19328                                                            <NA>
19329                                                            <NA>
19330                                                            <NA>
19331                                                            <NA>
19332                                                            <NA>
19333                                                            <NA>
19334                                                            <NA>
19335                                                            <NA>
19336                                                            <NA>
19337                                                            <NA>
19338                                                 based on weight
19339                                                            <NA>
19340                                                            <NA>
19341                                                    pack/package
19342                                                            <NA>
19343                                                            <NA>
19344                                                            <NA>
19345                                                            <NA>
19346                                                           spray
19347                                                            <NA>
19348                                                            <NA>
19349                                                            <NA>
19350                                                      inch strip
19351                                                            <NA>
19352                                                            <NA>
19353                                                            <NA>
19354                                                            <NA>
19355                                                            <NA>
19356                                                            <NA>
19357                                       based on weight (55+ lbs)
19358                                                            <NA>
19359                                                            <NA>
19360                                                            <NA>
19361                                                            <NA>
19362                                                            <NA>
19363                                                            <NA>
19364                                                            <NA>
19365                                                            <NA>
19366                                                            <NA>
19367                                                            <NA>
19368                                                            <NA>
19369                                                            <NA>
19370                                                            <NA>
19371                                                            <NA>
19372                                                            <NA>
19373                                             tablet/pill/capsule
19374                                             tablet/pill/capsule
19375                                                            <NA>
19376                                                            <NA>
19377                                                            <NA>
19378                                                            <NA>
19379                                                            <NA>
19380                                                            <NA>
19381                                                            <NA>
19382                                                            <NA>
19383                                                            <NA>
19384                                                            <NA>
19385                                                            <NA>
19386                                                 based on weight
19387                                                 based on weight
19388                                                            <NA>
19389                                                            <NA>
19390                                                    small amount
19391                                                 based on weight
19392                                                            <NA>
19393                                                            <NA>
19394                                                            <NA>
19395                                                           spray
19396                                                            <NA>
19397                                                      inch strip
19398                                                            <NA>
19399                                                            <NA>
19400                                                            <NA>
19401                                                            <NA>
19402                                                            <NA>
19403                                                            <NA>
19404                                                            <NA>
19405                                                            <NA>
19406                                                            <NA>
19407                                                            <NA>
19408                                                            <NA>
19409                                                            <NA>
19410                                                            <NA>
19411                                                            <NA>
19412                                                            <NA>
19413                                                            <NA>
19414                                                            <NA>
19415                                                            <NA>
19416                                                            <NA>
19417                                                            <NA>
19418                                                            <NA>
19419                                                            <NA>
19420                                                            <NA>
19421                                                            <NA>
19422                                                            <NA>
19423                                                 based on weight
19424                                                 based on weight
19425                                                            <NA>
19426                                             tablet/pill/capsule
19427                                             tablet/pill/capsule
19428                                                            <NA>
19429                                                            <NA>
19430                                                            <NA>
19431                                                            <NA>
19432                                                            <NA>
19433                                                            <NA>
19434                                                            <NA>
19435                                                            <NA>
19436                                                            <NA>
19437                                                            <NA>
19438                                                            <NA>
19439                                                            <NA>
19440                                                            <NA>
19441                                                            <NA>
19442                                                            <NA>
19443                                                            <NA>
19444                                                            <NA>
19445                                             tablet/pill/capsule
19446                                                     application
19447                                                 based on weight
19448                                                 based on weight
19449                                                 based on weight
19450                                                 based on weight
19451                                                            <NA>
19452                                                            <NA>
19453                                                            <NA>
19454                                                            <NA>
19455                                                            <NA>
19456                                                            <NA>
19457                                                 based on weight
19458                                                            <NA>
19459                                                            <NA>
19460                                                            <NA>
19461                                                 based on weight
19462                                           1 tablet/pill/capsule
19463                                           1 tablet/pill/capsule
19464                                                            <NA>
19465                                                            <NA>
19466                                                            <NA>
19467                                                            <NA>
19468                                                            <NA>
19469                                                            <NA>
19470                                                            <NA>
19471                                                            <NA>
19472                                                            <NA>
19473                                                            <NA>
19474                                                            <NA>
19475                                                            <NA>
19476                                                 syringe/pipette
19477                                                            <NA>
19478                                                            <NA>
19479                                                            <NA>
19480                                                            <NA>
19481                                                            <NA>
19482                     272 mcg ivermectin, 227 mg pyrantel pamoate
19483                                                            <NA>
19484                                                            <NA>
19485                                                            <NA>
19486                                                            <NA>
19487                                             tablet/pill/capsule
19488                                                            <NA>
19489                                                            <NA>
19490                                                            <NA>
19491                                                            <NA>
19492                                             tablet/pill/capsule
19493                                             tablet/pill/capsule
19494                                                     application
19495                                             tablet/pill/capsule
19496                                                            <NA>
19497                                                            <NA>
19498                                                            <NA>
19499                                                            <NA>
19500                                                            <NA>
19501                                                            <NA>
19502                                                            <NA>
19503                                                            <NA>
19504                                                            <NA>
19505                                                            <NA>
19506                                                            <NA>
19507                                                               %
19508                                                            <NA>
19509                                                            <NA>
19510                                                            <NA>
19511                                                            <NA>
19512                                                            <NA>
19513                                                            <NA>
19514                                                            <NA>
19515                                                            <NA>
19516                                                            <NA>
19517                                                            <NA>
19518                                                            <NA>
19519                                                            <NA>
19520                                                            <NA>
19521                                                            <NA>
19522                                                            <NA>
19523                                                               %
19524                                                               %
19525                                                            <NA>
19526                                                            <NA>
19527                                                            <NA>
19528                                                            <NA>
19529                                                            <NA>
19530                                                            <NA>
19531                                                            <NA>
19532                                                            <NA>
19533                                                            <NA>
19534                                                            <NA>
19535                                                            <NA>
19536                                                            <NA>
19537                                             tablet/pill/capsule
19538                                                            <NA>
19539                                                            <NA>
19540                                                            <NA>
19541                                             tablet/pill/capsule
19542                                             tablet/pill/capsule
19543                                             tablet/pill/capsule
19544                                                     application
19545                                                            <NA>
19546                                                            <NA>
19547                                                            <NA>
19548                                             tablet/pill/capsule
19549                                                            <NA>
19550                                                            tube
19551                                             tablet/pill/capsule
19552                                                            <NA>
19553                                                            <NA>
19554                                                            <NA>
19555                                           1 tablet/pill/capsule
19556                                                            <NA>
19557                                                            <NA>
19558                                                            <NA>
19559                                                            <NA>
19560                                                            <NA>
19561                                                            <NA>
19562                                                            <NA>
19563                                                            <NA>
19564                                                            <NA>
19565                                             tablet/pill/capsule
19566                                                            <NA>
19567                                                            <NA>
19568                                                          1 pump
19569                                                            <NA>
19570                                                            <NA>
19571                                                            <NA>
19572                                                            <NA>
19573                                                            <NA>
19574                                                            <NA>
19575                                                            <NA>
19576                                                            <NA>
19577                                                            <NA>
19578                                                            <NA>
19579                                                            <NA>
19580                                                            <NA>
19581                                                            <NA>
19582                                                            tube
19583                                                            <NA>
19584                                                            <NA>
19585                                                            <NA>
19586                                                            <NA>
19587                                                            <NA>
19588                                                            <NA>
19589                                                            <NA>
19590                                                            <NA>
19591                                                            <NA>
19592                                                            tube
19593                                                            <NA>
19594                                                            <NA>
19595                                                            <NA>
19596                                                            <NA>
19597                                                 based on weight
19598                                                            <NA>
19599                                                            <NA>
19600                                                            <NA>
19601                                                            tube
19602                                                    small amount
19603                                             tablet/pill/capsule
19604                                                            tube
19605                                                            <NA>
19606                                                            <NA>
19607                                                            <NA>
19608                                                            <NA>
19609                                                            <NA>
19610                                                            <NA>
19611                                                            <NA>
19612                                                            <NA>
19613                                                            <NA>
19614                                                            <NA>
19615                                                            <NA>
19616                                                            <NA>
19617                                                            <NA>
19618                                                            <NA>
19619                                                            <NA>
19620                                                            <NA>
19621                                                            <NA>
19622                                                            <NA>
19623                                                            <NA>
19624                                                            <NA>
19625                                                            <NA>
19626                                                            <NA>
19627                                                            <NA>
19628                                                            <NA>
19629                                                            <NA>
19630                                                            <NA>
19631                                                            <NA>
19632                                                            <NA>
19633                                                            <NA>
19634                                                            <NA>
19635                                                           spray
19636                                                            <NA>
19637                                                            <NA>
19638                                                            <NA>
19639                                                            <NA>
19640                                                            <NA>
19641                                                            <NA>
19642                                                            <NA>
19643                                                            <NA>
19644                                                            <NA>
19645                                                            <NA>
19646                                                            <NA>
19647                                                            <NA>
19648                                                            <NA>
19649                                                            <NA>
19650                                                            <NA>
19651                                                            <NA>
19652                                                            <NA>
19653                                                            <NA>
19654                                                            <NA>
19655                                                            <NA>
19656                                                            <NA>
19657                                                            <NA>
19658                                                            <NA>
19659                                                    pack/package
19660                                                            <NA>
19661                                                            <NA>
19662                                                    pack/package
19663                                                            <NA>
19664                                                            <NA>
19665                                                            <NA>
19666                                                            <NA>
19667                                                            <NA>
19668                                                            <NA>
19669                                                            <NA>
19670                                                            <NA>
19671                                                            <NA>
19672                                                            <NA>
19673                                                 based on weight
19674                                                 based on weight
19675                                                            <NA>
19676                                                            <NA>
19677                                                            <NA>
19678                                                            <NA>
19679                                                            <NA>
19680                                                            <NA>
19681                                                            <NA>
19682                                                            <NA>
19683                                                            <NA>
19684                                                            <NA>
19685                                                 based on weight
19686                                                            <NA>
19687                                                            <NA>
19688                                             tablet/pill/capsule
19689                                                            <NA>
19690                                                            <NA>
19691                                                            <NA>
19692                                                            <NA>
19693                                                            <NA>
19694                                                            <NA>
19695                                                            <NA>
19696                                                            <NA>
19697                                                            <NA>
19698                                                            <NA>
19699                                                            <NA>
19700                                                            <NA>
19701                                                            <NA>
19702                                                            <NA>
19703                                                            <NA>
19704                                                            <NA>
19705                                                            <NA>
19706                                                            <NA>
19707                                                            <NA>
19708                                                            <NA>
19709                                                            <NA>
19710                                                 based on weight
19711                                                 based on weight
19712                                                 based on weight
19713                                           1 tablet/pill/capsule
19714                                                          collar
19715                                             tablet/pill/capsule
19716                                                          collar
19717                                                 based on weight
19718                                                 based on weight
19719                                                            <NA>
19720                                                            <NA>
19721                                                            <NA>
19722                                             tablet/pill/capsule
19723                                                            <NA>
19724                                                           9.80%
19725                                                            <NA>
19726                                                            <NA>
19727                                                            <NA>
19728                                                            <NA>
19729                                             tablet/pill/capsule
19730                                                            <NA>
19731                                                            <NA>
19732                                                            <NA>
19733                                                            <NA>
19734                                                            <NA>
19735                                                    small amount
19736                                                            <NA>
19737                                                            <NA>
19738                                                            <NA>
19739                                                            <NA>
19740                                                            <NA>
19741                                                            <NA>
19742                                                            <NA>
19743                                                            <NA>
19744                                                            <NA>
19745                                                            <NA>
19746                                                            <NA>
19747                                                            <NA>
19748                                                            <NA>
19749                                                            <NA>
19750                                                            <NA>
19751                                                            <NA>
19752                                                            <NA>
19753                                                            <NA>
19754                                                            <NA>
19755                                                            <NA>
19756                                                            <NA>
19757                                                            <NA>
19758                                                            <NA>
19759                                                            <NA>
19760                                                            <NA>
19761                                                            <NA>
19762                                                            <NA>
19763                                                            <NA>
19764                                                            <NA>
19765                                                            <NA>
19766                                                            <NA>
19767                                                            <NA>
19768                                                            dose
19769                                                            <NA>
19770                                                            <NA>
19771                                                            <NA>
19772                                                            <NA>
19773                                                            <NA>
19774                                                            <NA>
19775                                                            <NA>
19776                                     based on weight (40-60 lbs)
19777                                           1 tablet/pill/capsule
19778                                                 based on weight
19779                                                            <NA>
19780                                             tablet/pill/capsule
19781                                             tablet/pill/capsule
19782                                             tablet/pill/capsule
19783                                                            <NA>
19784                                                            <NA>
19785                                                            <NA>
19786                                                               %
19787                                                            <NA>
19788                                                        wipe/pad
19789                                                            <NA>
19790                                                            <NA>
19791                                                            <NA>
19792                                                            <NA>
19793                                             tablet/pill/capsule
19794                                                            <NA>
19795                                                            <NA>
19796                                                            <NA>
19797                                                            <NA>
19798                                                            <NA>
19799                                                            <NA>
19800                                                 based on weight
19801                                                 based on weight
19802                                             tablet/pill/capsule
19803                                             tablet/pill/capsule
19804                                             tablet/pill/capsule
19805                                             tablet/pill/capsule
19806                                                           scoop
19807                                             tablet/pill/capsule
19808                                                            <NA>
19809                                             tablet/pill/capsule
19810                                             tablet/pill/capsule
19811                                                            <NA>
19812                                             tablet/pill/capsule
19813                                             tablet/pill/capsule
19814                                                            <NA>
19815                                                            <NA>
19816                                                     application
19817                                             tablet/pill/capsule
19818                                                            <NA>
19819                                                            <NA>
19820                                                            <NA>
19821                                                     application
19822                                                            <NA>
19823                                                        ointment
19824                                                            <NA>
19825                                                            <NA>
19826                                                            <NA>
19827                                                            <NA>
19828                                                 based on weight
19829                                                 based on weight
19830                                                            <NA>
19831                                                            <NA>
19832                                                            <NA>
19833                                                            <NA>
19834                                                            <NA>
19835                                                            <NA>
19836                                                            <NA>
19837                                                              gm
19838                                                            <NA>
19839                                                            <NA>
19840                                                            <NA>
19841                                                            <NA>
19842                                                            <NA>
19843                                                            <NA>
19844                                                            <NA>
19845                                                            <NA>
19846                                                            tube
19847                                                    small amount
19848                                                            <NA>
19849                                                            <NA>
19850                                                            <NA>
19851                                                            <NA>
19852                                                            <NA>
19853                                                 based on weight
19854                                                 based on weight
19855                                                            <NA>
19856                                                 based on weight
19857                                                 based on weight
19858                                                            <NA>
19859                                                            <NA>
19860                                                            <NA>
19861                                                            <NA>
19862                                                            <NA>
19863                                                            <NA>
19864                                                            <NA>
19865                                                            <NA>
19866                                                           spray
19867                                                            <NA>
19868                                                            <NA>
19869                                                            <NA>
19870                                                            <NA>
19871                                                            <NA>
19872                                                            <NA>
19873                                                            <NA>
19874                                                            <NA>
19875                                                            <NA>
19876                                                            <NA>
19877                                                            <NA>
19878                                                            <NA>
19879                                                            <NA>
19880                                                            <NA>
19881                                                            <NA>
19882                                                            <NA>
19883                                                            <NA>
19884                                                            <NA>
19885                                                            <NA>
19886                                                            <NA>
19887                                     based on weight (20-50 lbs)
19888                                             tablet/pill/capsule
19889                                                            <NA>
19890                                                            <NA>
19891                                                            <NA>
19892                                                            <NA>
19893                                                            <NA>
19894                                                            <NA>
19895                                                            <NA>
19896                                                            <NA>
19897                                                            <NA>
19898                                                            <NA>
19899                                                            <NA>
19900                                                            <NA>
19901                                                            <NA>
19902                                                            <NA>
19903                                                            <NA>
19904                                                            <NA>
19905                                                            <NA>
19906                                                            <NA>
19907                                                            <NA>
19908                                                            <NA>
19909                                                            <NA>
19910                                                            <NA>
19911                                                 based on weight
19912                                                            <NA>
19913                                                            <NA>
19914                                                     unspecified
19915                                                            <NA>
19916                                                            <NA>
19917                                                    small amount
19918                                                            <NA>
19919                                                            <NA>
19920                                                            <NA>
19921                                                            <NA>
19922                                                            <NA>
19923                                                               %
19924                                                            <NA>
19925                                                            <NA>
19926                                                            <NA>
19927                                                            <NA>
19928                                                            <NA>
19929                                                            <NA>
19930                                                            <NA>
19931                                                            <NA>
19932                                                            <NA>
19933                                                 based on weight
19934                                                            <NA>
19935                                                            <NA>
19936                                                 based on weight
19937                                                            <NA>
19938                                             tablet/pill/capsule
19939                                                            <NA>
19940                                             tablet/pill/capsule
19941                                                            <NA>
19942                                                            <NA>
19943                                                 based on weight
19944                                                            <NA>
19945                                                            <NA>
19946                                                 based on weight
19947                                                            <NA>
19948                                                            <NA>
19949                                                            <NA>
19950                                                            <NA>
19951                                                            <NA>
19952                                                     unspecified
19953                                                            <NA>
19954                                                            <NA>
19955                                                            <NA>
19956                                                            <NA>
19957                                                            <NA>
19958                                                          collar
19959                                                            <NA>
19960                                                            <NA>
19961                                                            <NA>
19962                                                      inch strip
19963                                                            <NA>
19964                                                            <NA>
19965                                                            <NA>
19966                                                            <NA>
19967                                                            <NA>
19968                                                            <NA>
19969                                                            <NA>
19970                                                            <NA>
19971                                             tablet/pill/capsule
19972                                                            <NA>
19973                                                            <NA>
19974                                                            <NA>
19975                                                     combination
19976                                                            <NA>
19977                                                            <NA>
19978                                                            <NA>
19979                                                            <NA>
19980                                                            <NA>
19981                                                            <NA>
19982                                                            <NA>
19983                                                            <NA>
19984                                                            <NA>
19985                                                            <NA>
19986                                                            <NA>
19987                                                            <NA>
19988                                                            <NA>
19989                                                            <NA>
19990                                                            <NA>
19991                                             tablet/pill/capsule
19992                                                            tube
19993                                                            <NA>
19994                                                            <NA>
19995                                                            <NA>
19996                                                            <NA>
19997                                                            <NA>
19998                                                            <NA>
19999                                                            <NA>
                                                                                              dose_original
1                                                                                                    500.00
2                                                                                                    75-100
3                                                                                                     12.00
4                                                                                                    460.00
5                                                                                                      1.00
6                                                                                                    300.00
7                                                                                                     50.00
8                                                                                                      2.50
9                                                                                                    300.00
10                                                                                                     1.00
11                                                                                                     1.00
12                                                                                                     0.30
13                                                                                                    50.00
14                                                                                                    60.00
15                                                                                                   680.00
16                                                                                                     3.00
17                                                                                                     3.00
18                                                                                                     1.00
19                                                                                                     1.00
20                                                                                                     1.00
21                                                                                                    50.00
22                                                                                              unspecified
23                                                                                                   300.00
24                                                                                                     2.27
25                                                                                                   200.00
26                                                                                                   325.00
27                                                                                                   375.00
28                                                                                                     6.00
29                                                                                                   150.00
30                                                                                                    30.00
31                                                                                                   640.00
32                                                                                                     5.50
33                                                                                                    40.00
34                                                                                                     6.00
35                                                                                                     6.00
36                                                                                                   375.00
37                                                                                                     2.72
38                                                                                                    23.00
39                                                                                                     0.56
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
43                                                                                                    25.00
44                                                                                                   500.00
45                                                                                                   227.00
46                                                                              based on weight (40-60 lbs)
47                                                                                                   272.00
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
50                                                                                                   100.00
51                                                                              based on weight (21-40 lbs)
52                                                                                                   500.00
53                                                                                                   272.00
54                                                                                                   500.00
55                                                                                                   227.00
56                                                                                                     1.00
57                                                                                                100000.00
58                                                                                                    40.00
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
61                                                                                                   500.00
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
64                                                                                                   750.00
65                                                                                                  1000.00
66                                                                                                     1.00
67                                                                                              application
68                                                                                                    20.00
69                                                                                                   500.00
70                                                                                              application
71                                                                                                   200.00
72                                                                                                     3.00
73                                                                                                     1.00
74                                                                                              bottle/vial
75                                                                                                     1.00
76                                                                                                   500.00
77                                                                                                     1.00
78                                                                                                     4.00
79                                                                                                    50.00
80                                                                                                   750.00
81                                                                                                    60.00
82                                                                                                  1000.00
83                                                                                                     1.00
84                                                                                              application
85                                                                                                    20.00
86                                                                                                   100.00
87                                                                                              application
88                                                                                                    50.00
89                                                                                                   100.00
90                                                                                                   100.00
91                                                                                              application
92                                                                                                  1000.00
93                                                                                                  1000.00
94                                                                                                    60.00
95                                                                                                   400.00
96                                                                                                  1500.00
97                                                                                                  1105.00
98                                                                                                     1.00
99                                                                                                   300.00
100                                                                                                  500.00
101                                                                                                  100.00
102                                                                                                  200.00
103                                                                                                  200.00
104                                                                                                 1000.00
105                                                                                                  150.00
106                                                                                                  300.00
107                                                                                                  200.00
108                                                                                                    0.75
109                                                                                                   25.00
110                                                                                                  100.00
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
115                                                                                                    1.00
116                                                                                                    1.00
117                                                                                                  100.00
118                                                                                                    1.00
119                                                                                                    1.00
120                                                                                                    1.00
121                                                                                                    3.00
122                                                                                                    1.50
123                                                                                                 1000.00
124                                                                                                    0.90
125                                                                                                   60.00
126                                                                                                 1000.00
127                                                                                                  400.00
128                                                                                                    2.00
129                                                                                                    1.00
130                                                                                                    1.00
131                                                                                                    1.00
132                                                                                                    1.00
133                                                                                                  113.50
134                                                                                                  100.00
135                                                                                                    8.00
136                                                                                                    8.00
137                                                                                                  272.00
138                                                                                                  200.00
139                                                                                                  750.00
140                                                                                                    3.50
141                                                                                                  600.00
142                                                                                                   60.00
143                                                                                                  100.00
144                                                                                                  500.00
145                                                                                                   75.00
146                                                                                                   50.00
147                                                                                                  150.00
148                                                                                                  100.00
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
154                                                                                                  500.00
155                                                                                             unspecified
156                                                                                                    3.00
157                                                                                                  400.00
158                                                                                                 1000.00
159                                                                                                  500.00
160                                                                                                   60.00
161                                                                                                    1.00
162                                                                                                    1.00
163                                                                                                    0.90
164                                                                                                    1.00
165                                                                                                    3.00
166                                                                                                 1500.00
167                                                                                             unspecified
168                                                                                                  100.00
169                                                                                                   30.00
170                                                                                                    1.00
171                                                                                                  272.00
172                                                                                                  300.00
173                                                                                                    1.00
174                                                                                                    3.50
175                                                                                                    1.00
176                                                                                                    1.00
177                                                                                                   25.00
178                                                                                                   20.00
179                                                                                                    6.00
180                                                                                                    0.70
181                                                                                                    0.80
182                                                                                                    0.76
183                                                                                                    0.70
184                                                                                                 1000.00
185                                                                                                    0.70
186                                                                                                 1000.00
187                                                                                                  112.50
188                                                                             based on weight (44-88 lbs)
189                                                                                                    0.86
190                                                                                                   16.00
191                                                                                                    0.80
192                                                                             based on weight (44-88 lbs)
193                                                                                                    0.60
194                                                                                                    0.60
195                                                                                                   45-88
196                                                                                                    0.59
197                                                                                                    0.60
198                                                                                                 1000.00
199                                                                                                  150.00
200                                                                                                   30.00
201                                                                                               300000.00
202                                                                                                  720.00
203                                                                                                  145.00
204                                                                                                    0.30
205                                                                                                   75.00
206                                                                                                  437.50
207                                                                                                 1000.00
208                                                                                                    0.17
209                                                                                                    0.60
210                                                                                                  112.50
211                                                                                                   26.80
212                                                                                                  130.00
213                                                                                                  640.00
214                                                                                                  375.00
215                                                                                                  100.00
216                                                                                                    0.60
217                                                                                                    1.00
218                                                                                                   13.00
219                                                                                                    0.60
220                                                                             based on weight (44-88 lbs)
221                                                                                                  375.00
222                                                                                                  300.00
223                                                                                                    3.20
224                                                                                                  100.00
225                                                                                                  500.00
226                                                                                                   20.00
227                                                                                                  272.00
228                                                                                                  500.00
229                                                                                                    1.00
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
231                                                                                                  500.00
232                                                                                                    2.27
233                                                                                               4-6 drops
234                                                                                                    0.09
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
240                                                                                                    2.68
241                                                                                                   60.00
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
244                                                                                                   45-88
245                                                                                                   60.00
246                                                                                                   70.00
247                                                                                                   60.00
248                                                                                                  1 tube
249                                                                                                   60.00
250                                                                                                    1.00
251                                                                                                   75.00
252                                                                                                   50.00
253                                                                                                  125.00
254                                                                                                   50.00
255                                                                                                  480.00
256                                                                                                   13.50
257                                                                             based on weight (40-60 lbs)
258                                                                                                    1.00
259                                                                                                    1.00
260                                                                                                   37.50
261                                                                                                   23.00
262                                                                                                   20.00
263                                                                                                  540.00
264                                                                                                   20.00
265                                                                                                   20.00
266                                                                                                    1.00
267                                                                                                  500.00
268                                                                                                  500.00
269                                                                                                   60.00
270                                                                                                  425.00
271                                                                                                  100.00
272                                                                                                   16.00
273                                                                                                    1.00
274                                                                                                    1.00
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
278                                                                                                    8.00
279                                                                                            small amount
280                                                                                                   spray
281                                                                                                    2.00
282                                                                                                    1.00
283                                                                                                    1.00
284                                                                                                    1.00
285                                                                                                    8.00
286                                                                                                    1.00
287                                                                                                  272 mg
288                                                                                                  272.00
289                                                                                                  500.00
290                                                                                                   23.00
291                                                                                                  375.00
292                                                                                                    7.00
293                                                                                                  150.00
294                                                                                                   50.00
295                                                                                               810000.00
296                                                                                                  150.00
297                                                                                                  125.00
298                                                                                                  500.00
299                                                                                                  375.00
300                                                                                                    7.00
301                                                                                                  100.00
302                                                                                                  300.00
303                                                                                                    7.00
304                                                                                                  500.00
305                                                                                                   37.50
306                                                                                                  500.00
307                                                                                                  375.00
308                                                                                                    0.80
309                                                                                                    8.80
310                                                                                             unspecified
311                                                                                                  200.00
312                                                                                                    1.00
313                                                                                                  500.00
314                                                                                                 1800.00
315                                                                                                  750.00
316                                                                                                  870.00
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
319                                                                                                    7.50
320                                                                                                  500.00
321                                                                                                  300.00
322                                                                                                  500.00
323                                                                                                  272.00
324                                                                                             as directed
325                                                                                                  136.00
326                                                                                                  150.00
327                                                                                                    7.00
328                                                                                         based on weight
329                                                                                         based on weight
330                                                                                                  200.00
331                                                                                                  200.00
332                                                                                         based on weight
333                                                                                         based on weight
334                                                                                                   40.00
335                                                                                                   20.00
336                                                                                                   20.00
337                                                                                                   75.00
338                                                                                                  200.00
339                                                                                                  500.00
340                                                                                                   75.00
341                                                                                                  272.00
342                                                                                                    1.00
343                                                                                                    7.20
344                                                                                                    2.90
345                                                                                                  375.00
346                                                                                                  136.00
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
349                                                                                                    1.00
350                                                                                                 23, 460
351                                                                                                 23, 460
352                                                                                                   80.00
353                                                                                                 23, 460
354                                                                                                   80.00
355                                                                                                 23, 460
356                                                                                                  300.00
357                                                                                                  200.00
358                                                                                                  500.00
359                                                                                                  300.00
360                                                                                                  150.00
361                                                                                                   60.00
362                                                                                                  100.00
363                                                                                                  100.00
364                                                                                                  500.00
365                                                                                                 1000.00
366                                                                                             unspecified
367                                                                                                    1.00
368                                                                            based on weight (60-121 lbs)
369                                                                                                  136.00
370                                                                                                    1.00
371                                                                                                    0.01
372                                                                                                  136 mg
373                                                                                                    1.00
374                                                                                                    1.00
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
377                                                                                                    0.01
378                                                                                                   30.00
379                                                                                                   10.00
380                                                                                                    0.50
381                                                                                                    3.00
382                                                                                                    1.00
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
387                                                                                                  500.00
388                                                                                                   14.00
389                                                                                                  483.00
390                                                                                                  136.00
391                                                                                                    8.80
392                                                                                                  136.00
393                                                                                                    8.80
394                                                                                                  125.00
395                                                                                                   14.34
396                                                                                                    2.05
397                                                                                                    1.00
398                                                                                                  500.00
399                                                                                                    4.00
400                                                                                                    2.00
401                                                                                                    1.00
402                                                                                                  50-100
403                                                                                             unspecified
404                                                                                             unspecified
405                                                                                                  100.00
406                                                                                                  272.00
407                                                                                                   23.00
408                                                                                                   50.00
409                                                                                                  250.00
410                                                                                                    0.30
411                                                                                                   75.00
412                                                                                                   10.00
413                                                                                                  100.00
414                                                                                           23 mg, 460 mg
415                                                                                                   24.00
416                                                                                                    1.00
417                                                                                                   23.00
418                                                                                                  272.00
419                                                                                                   16.00
420                                                                                                  100.00
421                                                                                                    1.00
422                                                                                                    3.00
423                                                                                                   30.00
424                                                                                                  100.00
425                                                                                                  100.00
426                                                                                                  200.00
427                                                                                                    2.00
428                                                                                                  100.00
429                                                                                                  272.00
430                                                                                                  136.00
431                                                                                                   16.00
432                                                                                                  100.00
433                                                                                                  272.00
434                                                                                                   68.00
435                                                                                                   16.00
436                                                                                                 1400.00
437                                                                                                  400.00
438                                                                                                  110.00
439                                                                                                  272.00
440                                                                                                  136.00
441                                                                                                   16.00
442                                                                                                  110.00
443                                                                                                   16.00
444                                                                                                   16.00
445                                                                                                  300.00
446                                                                                                   16.00
447                                                                                             unspecified
448                                                                                                  300.00
449                                                                                             unspecified
450                                                                                                  100.00
451                                                                                                   20.00
452                                                                                                   16.00
453                                                                                             unspecified
454                                                                                                  100.00
455                                                                                                  300.00
456                                                                                                   24.00
457                                                                                                    4.00
458                                                                                                   30.00
459                                                                                                   50.00
460                                                                                                   20.00
461                                                                                                    1.00
462                                                                                                    1.00
463                                                                                                  272.00
464                                                                                                  272.00
465                                                                                                   68.00
466                                                                                                  272.00
467                                                                                                   68.00
468                                                                                                   80.00
469                                                                                                  150.00
470                                                                                                   50.00
471                                                                                                    2.50
472                                                                                                   10.70
473                                                                                                    1.00
474                                                                                                  272.00
475                                                                                                    0.70
476                                                                                                   30.00
477                                                                                                  120.00
478                                                                                                  272.00
479                                                                                                   68.00
480                                                                                                  1 tube
481                                                                                                  150.00
482                                                                                                   60.00
483                                                                                                  375.00
484                                                                                                    2.50
485                                                                                                   60.00
486                                                                                                   50.00
487                                                                                                  272.00
488                                                                                                   68.00
489                                                                                                   60.00
490                                                                                                  375.00
491                                                                                                    1.00
492                                                                                                  272.00
493                                                                                                  375.00
494                                                                                                  227.00
495                                                                                                  136.00
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
499                                                                                                 1000.00
500                                                                                                 1000.00
501                                                                                                  100.00
502                                                                                                   10.00
503                                                                                                   37.50
504                                                                                                    1.00
505                                                                                                    1.00
506                                                                                                  500.00
507                                                                                                   50.00
508                                                                                                   75.00
509                                                                                                    1.00
510                                                                                                   15.00
511                                                                                                  500.00
512                                                                                                   50.00
513                                                                                                  272.00
514                                                                                                   68.00
515                                                                                                   15.00
516                                                                                                    1.00
517                                                                                                   50.00
518                                                                                                  500.00
519                                                                                                inhalant
520                                                                                                  300.00
521                                                                                                   12.00
522                                                                                                   40.00
523                                                                                                  272.00
524                                                                                                  136.00
525                                                                                                  375.00
526                                                                                                  272.00
527                                                                                                  136.00
528                                                                                                   16.00
529                                                                                                   16.00
530                                                                                                    1.00
531                                                                                                  500.00
532                                                                                                  272.00
533                                                                                                  136.00
534                                                                                                  272.00
535                                                                                                  136.00
536                                                                                                  500.00
537                                                                                                   drops
538                                                                                                    1.00
539                                                                                                    1.00
540                                                                                                    1.00
541                                                                                                    1.00
542                                                                                                    2.00
543                                                                                                   75.00
544                                                                                                   75.00
545                                                                                                    1.00
546                                                                                                  272.00
547                                                                                                  500.00
548                                                                                                    2.00
549                                                                                                  125.00
550                                                                                                  125.00
551                                                                                                    1.00
552                                                                                                   50.00
553                                                                                                  200.00
554                                                                                                    1.00
555                                                                                                    1.00
556                                                                                                  160.00
557                                                                                                    1.00
558                                                                                                    1.20
559                                                                                                    3.50
560                                                                                                   20.00
561                                                                                                   20.00
562                                                                                                   10.00
563                                                                                                  272.00
564                                                                                                  500.00
565                                                                                                  500.00
566                                                                                                  100.00
567                                                                                                  500.00
568                                                                                                    1.00
569                                                                                                    5.00
570                                                                                                    5.00
571                                                                                                    0.20
572                                                                                                    0.30
573                                                                                                    0.40
574                                                                                                    1.00
575                                                                                                    1.40
576                                                                                                    2.00
577                                                                                                  160.00
578                                                                                                   20.00
579                                                                                                   20.00
580                                                                                                   15.00
581                                                                                                   10.00
582                                                                                                    6.00
583                                                                                                  500.00
584                                                                                                  250.00
585                                                                                                  200.00
586                                                                                                   50.00
587                                                                                                  200.00
588                                                                                                   50.00
589                                                                                                   68.00
590                                                                                                  500.00
591                                                                                                   50.00
592                                                                                                   20.00
593                                                                                                  200.00
594                                                                                                    5.00
595                                                                                                  200.00
596                                                                                                   50.00
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
599                                                                                                    1.00
600                                                                                                    1.00
601                                                                                                   50.00
602                                                                                                  200.00
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
605                                                                                                    1.00
606                                                                                                    1.00
607                                                                                                   50.00
608                                                                                                    1.00
609                                                                                                    1.00
610                                                                                            small amount
611                                                                                                   50.00
612                                                                                                  200.00
613                                                                                                  200.00
614                                                                                                   16.00
615                                                                                                   50.00
616                                                                                                  300.00
617                                                                                                   75.00
618                                                                                                  200.00
619                                                                                             unspecified
620                                                                                                  100.00
621                                                                                                    3.00
622                                                                                                   75.00
623                                                                                                   60.00
624                                                                                                   60.00
625                                                                                                   15.00
626                                                                                                  150.00
627                                                                                                   60.00
628                                                                                                  500.00
629                                                                                                   80.00
630                                                                                                    6.00
631                                                                                                    4.00
632                                                                                                    3.00
633                                                                                                  500.00
634                                                                                                    1.00
635                                                                                                    3 mg
636                                                                                                  272.00
637                                                                                         based on weight
638                                                                                                    3.00
639                                                                                                  600.00
640                                                                                                  500.00
641                                                                                                  272.00
642                                                                                            small amount
643                                                                                                    5.00
644                                                                                                  272.00
645                                                                                                    3 mg
646                                                                                                    5.00
647                                                                                                   10.00
648                                                                                                    6.00
649                                                                                                   16.00
650                                                                                                    1.00
651                                                                                                  272.00
652                                                                                                   10.00
653                                                                                                    6.00
654                                                                                                   16.00
655                                                                                                  227.00
656                                                                                                   10.00
657                                                                                                  200.00
658                                                                                                    3.00
659                                                                                                  272.00
660                                                                                                  227.00
661                                                                                                    1.10
662                                                                                                  500.00
663                                                                                                   20.00
664                                                                                                    2.00
665                                                                                                   34.00
666                                                                                                   30.00
667                                                                                                    2.00
668                                                                                                    1.00
669                                                                                                  250.00
670                                                                                                  300.00
671                                                                                                  272.00
672                                                                                                    2.00
673                                                                                                  300.00
674                                                                                                  272.00
675                                                                                                  136.00
676                                                                                                    2.00
677                                                                                                    5.00
678                                                                                                  500.00
679                                                                                                  500.00
680                                                                                                   90.00
681                                                                                                  300.00
682                                                                                                  850.00
683                                                                                                  100.00
684                                                                                                  500.00
685                                                                                                   30.00
686                                                                                             unspecified
687                                                                                                  100.00
688                                                                                             unspecified
689                                                                                                  340.00
690                                                                                                  100.00
691                                                                                                   10.00
692                                                                                                  100.00
693                                                                                                   30.00
694                                                                                                    2.00
695                                                                                                    0.70
696                                                                                                   10.00
697                                                                                                   25.00
698                                                                                                   50.00
699                                                                                                    2.00
700                                                                                                  272.00
701                                                                                                   75.00
702                                                                                                   15.00
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
705                                                                                                   23.00
706                                                                                                   80.00
707                                                                                                    1.00
708                                                                                                    1.00
709                                                                                             unspecified
710                                                                                             unspecified
711                                                                                                   55.00
712                                                                                             unspecified
713                                                                                                  150.00
714                                                                                                    1.50
715                                                                                                  500.00
716                                                                                                  425.00
717                                                                                                 1000.00
718                                                                                                   55.00
719                                                                                                    0.60
720                                                                                                  150.00
721                                                                                                   30.00
722                                                                                                    8.00
723                                                                                                   20.00
724                                                                                                    8.00
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
726                                                                                                    8.00
727                                                                                                    1.00
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
732                                                                                                   16.00
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
740                                                                                                    5.00
741                                                                                                    1.00
742                                                                                                  250.00
743                                                                                                  204.00
744                                                                                                    1.00
745                                                                                                    1.00
746                                                                                                  250.00
747                                                                                                    1.00
748                                                                                                    0.80
749                                                                                                    5.00
750                                                                                                  136 mg
751                                                                                                   50.00
752                                                                                                    8.00
753                                                                                                  500.00
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
756                                                                                                   44-88
757                                                                            based on weight (51-100 lbs)
758                                                                                                  300.00
759                                                                                                    1.00
760                                                                                                  1 drop
761                                                                                                    1.00
762                                                                                                  400.00
763                                                                                                    1.00
764                                                                                                  272.00
765                                                                                                  100.00
766                                                                                                  110.00
767                                                                                                    2.00
768                                                                                                    8.00
769                                                                                                   90.00
770                                                                                                   23.00
771                                                                                                   50 mg
772                                                                                                   23.00
773                                                                                                   23.00
774                                                                                                   23.00
775                                                                                                   23.00
776                                                                                                  500.00
777                                                                                                   50.00
778                                                                                             unspecified
779                                                                                                  360.00
780                                                                                                   50.00
781                                                                                                   10.00
782                                                                                                  360.00
783                                                                                                   50.00
784                                                                                                  460.00
785                                                                            based on weight (60-120 lbs)
786                                                                                                   27.00
787                                                                                                 1620.00
788                                                                                                    2.68
789                                                                                                45387.00
790                                                                            based on weight (60-120 lbs)
791                                                                                                 1000.00
792                                                                            based on weight (51-100 lbs)
793                                                                                                  900.00
794                                                                                                  900.00
795                                                                                                  200.00
796                                                                                                   75.00
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
805                                                                                                   75.00
806                                                                                                  227.00
807                                                                                                    2.68
808                                                                                                  272.00
809                                                                                                 1000.00
810                                                                             based on weight (40-85 lbs)
811                                                                                                    7.00
812                                                                                                   50.00
813                                                                                                   50.00
814                                                                                                 1000.00
815                                                                                                  200.00
816                                                                                             unspecified
817                                                                                                   40.00
818                                                                                                  136.00
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
821                                                                                                  136.00
822                                                                                                    9.80
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
825                                                                                                  136.00
826                                                                                                   64.00
827                                                                                                    1.00
828                                                                                                    1.00
829                                                                                                    1.00
830                                                                                                    1.00
831                                                                                                   10.00
832                                                                                             unspecified
833                                                                                                   50.00
834                                                                                                  100.00
835                                                                                                  200.00
836                                                                                                  300.00
837                                                                                                   30.00
838                                                                                                   24.00
839                                                                                                    2.50
840                                                                                                   15.00
841                                                                                                   25.00
842                                                                                                   60.00
843                                                                                                    5.00
844                                                                                                    3.00
845                                                                                                  250.00
846                                                                                                    1.00
847                                                                                                    3.00
848                                                                                                    1.00
849                                                                                                    1.00
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
852                                                                                                  272.00
853                                                                                                  136.00
854                                                                                                  272.00
855                                                                                                  136.00
856                                                                                                  272.00
857                                                                                                  136.00
858                                                                                                  100.00
859                                                                                                   75.00
860                                                                                                   30.00
861                                                                                                   10.00
862                                                                                         based on weight
863                                                                                                  200 mg
864                                                                                                    4.00
865                                                                                                  227.00
866                                                                                                  200.00
867                                                                                                  113.50
868                                                                                                   37.50
869                                                                                                  300.00
870                                                                                                   30.00
871                                                                                               13.5, 810
872                                                                                                  810.00
873                                                                                                   13.50
874                                                                                                27, 1620
875                                                                                                   27.00
876                                                                                                  750.00
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
881                                                                                                  61-120
882                                                                                                   50.00
883                                                                                                  100.00
884                                                                                               13.5, 810
885                                                                                                  810.00
886                                                                                                   13.50
887                                                                                                27, 1620
888                                                                                                  500.00
889                                                                                                   27.00
890                                                                                                   37.50
891                                                                                                27, 1620
892                                                                                                  136.00
893                                                                                                27, 1620
894                                                                                                    5.50
895                                                                                                   20.00
896                                                                                                   10.00
897                                                                                                   10.00
898                                                                                                   50.00
899                                                                                                27, 1620
900                                                                                                  61-120
901                                                                                             unspecified
902                                                                                                  272.00
903                                                                                                    4.02
904                                                                                                    3.00
905                                                                                             unspecified
906                                                                                                   16.00
907                                                                                                  272.00
908                                                                                                   16.00
909                                                                                                  272.00
910                                                                                                  272.00
911                                                                                                  227.00
912                                                                                                  272.00
913                                                                               based on weight (55+ lbs)
914                                                                                                  272.00
915                                                                                                   50.00
916                                                                                                  200.00
917                                                                                                  227 mg
918                                                                                                  250 mg
919                                                                                                   75.00
920                                                                                                  437.50
921                                                                            based on weight (51-100 lbs)
922                                                                                                    1.00
923                                                                                                    1.00
924                                                                                                    1.90
925                                                                                                    1.30
926                                                                                                   13.00
927                                                                                                    0.34
928                                                                                                  100.00
929                                                                                                  1 drop
930                                                                                                  1 drop
931                                                                                                    1.00
932                                                                                                    1.00
933                                                                                                  136.00
934                                                                                                  272.00
935                                                                                                   50.00
936                                                                                                    1.00
937                                                                                                    1.00
938                                                                                                   50.00
939                                                                                                 1000.00
940                                                                                                   25.00
941                                                                                                   20.00
942                                                                                                  375.00
943                                                                                                  150.00
944                                                                                                  200.00
945                                                                                                  100.00
946                                                                                                  150.00
947                                                                                                  200.00
948                                                                                                  100.00
949                                                                                                    1.00
950                                                                                   1 tablet/pill/capsule
951                                                                                                    1.00
952                                                                                                    1.00
953                                                                                                    1.00
954                                                                                                    1.00
955                                                                                                  collar
956                                                                                                    1.00
957                                                                                                    1.00
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
959                                                                                                    1.00
960                                                                                                    1.00
961                                                                                                    1.00
962                                                                                                    1.00
963                                                                                                    0.70
964                                                                                                  100.00
965                                                                                                  500.00
966                                                                                                    5.00
967                                                                                                   50.00
968                                                                                                    1.00
969                                                                                             unspecified
970                                                                                                  1 pump
971                                                                                                  500.00
972                                                                                                  136.00
973                                                                                                    1.00
974                                                                                                  100.00
975                                                                                                   16.00
976                                                                                                  750.00
977                                                                                             application
978                                                                                                   16.00
979                                                                                                  50-100
980                                                                                                  60-121
981                                                                                                   16.00
982                                                                                             unspecified
983                                                                                             unspecified
984                                                                                                  250.00
985                                                                                                  272.00
986                                                                                                  136.00
987                                                                                                   15.00
988                                                                                                   16.00
989                                                                                         based on weight
990                                                                                                  300.00
991                                                                                                  50-100
992                                                                                                  60-121
993                                                                                                45293.00
994                                                                                                   16.00
995                                                                                                  60-121
996                                                                                                  50-100
997                                                                                                   60.00
998                                                                                                  250.00
999                                                                                                    1.00
1000                                                                                                  16.00
1001                                                                                            unspecified
1002                                                                                                  15.00
1003                                                                                                  16.00
1004                                                                                                   3.00
1005                                                                                                  20.00
1006                                                                                                 150.00
1007                                                                                                 125.00
1008                                                                                                 150.00
1009                                                                                                 250.00
1010                                                                                                 100.00
1011                                                                                                 150.00
1012                                                                                                 476.00
1013                                                                                                  15.00
1014                                                                                                  50.00
1015                                                                                                 750.00
1016                                                                                                 100.00
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1022                                                                                                 250.00
1023                                                                                                   1.00
1024                                                                                                   1.00
1025                                                                                                   1.00
1026                                                                                                 225.00
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1032                                                                                                 500.00
1033                                                                                        syringe/pipette
1034                                                                                                  20.00
1035                                                                                                  20.00
1036                                                                                           small amount
1037                                                                                                 1 pump
1038                                                                                                 300.00
1039                                                                                          1 bottle/vial
1040                                                                                                  16.00
1041                                                                                                  16.00
1042                                                                                            unspecified
1043                                                                                                   1.00
1044                                                                                                   3.00
1045                                                                                                  60.00
1046                                                                                                 272.00
1047                                                                                                 136.00
1048                                                                                                   7.50
1049                                                                                                  16.00
1050                                                                                        based on weight
1051                                                                                                 50-100
1052                                                                                                 60-121
1053                                                                                                   6.80
1054                                                                                                   1.00
1055                                                                                                 300.00
1056                                                                                                  60.00
1057                                                                                                 300.00
1058                                                                                                 300.00
1059                                                                                                  16.00
1060                                                                                                 60-121
1061                                                                                                 50-100
1062                                                                                                 250.00
1063                                                                                                 250.00
1064                                                                                                   1.00
1065                                                                                                   0.10
1066                                                                                                   1.00
1067                                                                                                  10.00
1068                                                                                                  70.00
1069                                                                                                   1.00
1070                                                                                                   1.00
1071                                                                                                 150.00
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1075                                                                                                 150.00
1076                                                                                                   1.00
1077                                                                                                   1.00
1078                                                                                                   1.00
1079                                                                                                   1.00
1080                                                                                                   3.00
1081                                                                                                 150.00
1082                                                                                                  60.00
1083                                                                                                  30.00
1084                                                                                                  10.00
1085                                                                                                  60.00
1086                                                                                                   3.00
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1089                                                                                                  75.00
1090                                                                                                1620.00
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1094                                                                                                4000.00
1095                                                                                                  16.00
1096                                                                                                  15.00
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1102                                                                                                1000.00
1103                                                                                                8000.00
1104                                                                                                  16.00
1105                                                                                                  75.00
1106                                                                                                1000.00
1107                                                                                                 136.00
1108                                                                                             1 wipe/pad
1109                                                                                                 136.00
1110                                                                                                1000.00
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1113                                                                                                 136.00
1114                                                                                                1000.00
1115                                                                                                  16.00
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1117                                                                                                1000.00
1118                                                                                                1000.00
1119                                                                                                1000.00
1120                                                                                                 272.00
1121                                                                                                  20.00
1122                                                                                                 600.00
1123                                                                                                1000.00
1124                                                                                                 300.00
1125                                                                                                  20.00
1126                                                                                                  20.00
1127                                                                                                 425.00
1128                                                                                                 272.00
1129                                                                           based on weight (21-100 lbs)
1130                                                                                                 200.00
1131                                                                                                5 drops
1132                                                                                                 375.00
1133                                                                                                 500.00
1134                                                                                                  15.00
1135                                                                                                   1.00
1136                                                                                                 500.00
1137                                                                                                  50.00
1138                                                                                                  50.00
1139                                                                                                   1.00
1140                                                                                                   3.00
1141                                                                                                 500.00
1142                                                                                                 227.00
1143                                                                                                   2.00
1144                                                                                                 136.00
1145                                                                                                 272.00
1146                                                                                                   0.14
1147                                                                                                 227.00
1148                                                                                                   2.00
1149                                                                                                 300.00
1150                                                                                           small amount
1151                                                                                                   8.00
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1156                                                                                                  23.00
1157                                                                                                  23.00
1158                                                                                                 375.00
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1162                                                                                                 375.00
1163                                                                                                 150.00
1164                                                                                                  23.00
1165                                                                                                   9.70
1166                                                                                                   8.80
1167                                                                                                1000.00
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1171                                                                                                 272.00
1172                                                                                                 227.00
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1178                                                                                                 272.00
1179                                                                                            unspecified
1180                                                                                                  50.00
1181                                                                                                 200.00
1182                                                                                                  50.00
1183                                                                                                  23.80
1184                                                                                                  50.00
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1188                                                                                                 300.00
1189                                                                                            unspecified
1190                                                                                            unspecified
1191                                                                                                 250.00
1192                                                                                                 227.00
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1196                                                                                                 100.00
1197                                                                                                  23.00
1198                                                                                                 272.00
1199                                                                                                   2.80
1200                                                                                                   2.30
1201                                                                                                   0.50
1202                                                                                                  75.00
1203                                                                                                  75.00
1204                                                                                                 125.00
1205                                                                                                 272.00
1206                                                                                                 272.00
1207                                                                                                  16.00
1208                                                                              based on weight (55+ lbs)
1209                                                                                                 50-100
1210                                                                                                 200.00
1211                                                                                                  16.00
1212                                                                                                 100.00
1213                                                                                                 272.00
1214                                                                                                 136.00
1215                                                                                                 272.00
1216                                                                                                 272.00
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1218                                                                                                 300.00
1219                                                                                                  75.00
1220                                                                                                   1.00
1221                                                                                                 272.00
1222                                                                                                   2.50
1223                                                                                                  75.00
1224                                                                                                 150.00
1225                                                                                                 272.00
1226                                                                              based on weight (55+ lbs)
1227                                                                                                 272.00
1228                                                                                                 272.00
1229                                                                                                 272.00
1230                                                                                                 600.00
1231                                                                                                  75.00
1232                                                                                                 136.00
1233                                                                                            unspecified
1234                                                                                                  75.00
1235                                                                                                  37.50
1236                                                                                                  20.00
1237                                                                                                 150.00
1238                                                                                                   2.00
1239                                                                                                 300.00
1240                                                                                                   2.00
1241                                                                                                   1.00
1242                                                                                                   1.00
1243                                                                                                  20.00
1244                                                                                                  23.00
1245                                                                                                   5.00
1246                                                                                                  20.00
1247                                                                           based on weight (51-100 lbs)
1248                                                                                                 60-120
1249                                                                                                  16.00
1250                                                                                                 460.00
1251                                                                                                 136.00
1252                                                                                                  16.00
1253                                                                                                  10.00
1254                                                                                                 460.00
1255                                                                                                 136.00
1256                                                                                                  16.00
1257                                                                                                  23.00
1258                                                                                                 136.00
1259                                                                                                   0.57
1260                                                                                                 375.00
1261                                                                                                 100.00
1262                                                                                                  70.00
1263                                                                                                   1.00
1264                                                                                                  30.00
1265                                                                                                 300.00
1266                                                                                                  10.00
1267                                                                                                 500.00
1268                                                                                                  23.00
1269                                                                                                  68.00
1270                                                                                                  68.00
1271                                                                                                 272.00
1272                                                                                                 500.00
1273                                                                                                   5.00
1274                                                                                                  23 mg
1275                                                                                                  60.00
1276                                                                                                   2.50
1277                                                                                                  68.00
1278                                                                                                  23.00
1279                                                                                                  60.00
1280                                                                                                 200.00
1281                                                                                                 375.00
1282                                                                                                 500.00
1283                                                                                                 227.00
1284                                                                                                  68.00
1285                                                                                            unspecified
1286                                                                                                   8.00
1287                                                                                                 200.00
1288                                                                                                  60.00
1289                                                                                                   1.00
1290                                                                                                 125.00
1291                                                                                                  60.00
1292                                                                                                 500.00
1293                                                                                                  23.00
1294                                                                                                 125.00
1295                                                                                                   2.68
1296                                                                                                  23.00
1297                                                                                                   1.00
1298                                                                                                   2.68
1299                                                                                                  23.00
1300                                                                                                 375.00
1301                                                                                                  23.00
1302                                                                                                   9.80
1303                                                                                                   1.00
1304                                                                                                  50.00
1305                                                                                                  15.00
1306                                                                                                 500.00
1307                                                                                                 600 mg
1308                                                                                                   4.70
1309                                                                                                   2.68
1310                                                                                                  23.00
1311                                                                                                  23.00
1312                                                                                                  80.00
1313                                                                                                  50.00
1314                                                                                                  20.00
1315                                                                                                   1.00
1316                                                                                                 600.00
1317                                                                                                  50.00
1318                                                                                                  20.00
1319                                                                                                 100.00
1320                                                                                                  60.00
1321                                                                                                  20.00
1322                                                                                                 800.00
1323                                                                                                   3.00
1324                                                                                                  50.00
1325                                                                                                  20.00
1326                                                                                                   1.00
1327                                                                                                  20.00
1328                                                                                                 50-100
1329                                                                                                  44-88
1330                                                                                                 200.00
1331                                                                                                  50.00
1332                                                                                                 130.00
1333                                                                                                 100.00
1334                                                                                                   0.50
1335                                                                                                  20.00
1336                                                                                            unspecified
1337                                                                                                  20.00
1338                                                                                                   1.00
1339                                                                                                   2.00
1340                                                                                                   1.00
1341                                                                                                 325.00
1342                                                                                                   1.00
1343                                                                                                  60.00
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1347                                                                                                1000.00
1348                                                                                               2 sprays
1349                                                                                                1000.00
1350                                                                                                  20.00
1351                                                                                                   0.14
1352                                                                                                   2.00
1353                                                                                                   8.00
1354                                                                                                1000.00
1355                                                                           based on weight (89-132 lbs)
1356                                                                                                  24.00
1357                                                                                                   4.02
1358                                                                                                  16.00
1359                                                                                                   9.80
1360                                                                                                  23.00
1361                                                                                                  24.00
1362                                                                                                  90.00
1363                                                                                                 600.00
1364                                                                                                   4.70
1365                                                                                                   4.02
1366                                                                                                  23.00
1367                                                                                                  23.00
1368                                                                                                 120.00
1369                                                                                                 500.00
1370                                                                                                 200.00
1371                                                                           based on weight (51-100 lbs)
1372                                                                                                 500.00
1373                                                                                                   1.00
1374                                                                                                 500.00
1375                                                                                                 200.00
1376                                                                                                 500.00
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1381                                                                                                 500.00
1382                                                                                                  75.00
1383                                                                                                 500.00
1384                                                                                                   0.25
1385                                                                                                   0.50
1386                                                                                                 300.00
1387                                                                                                  75.00
1388                                                                                                 200.00
1389                                                                                                  10.00
1390                                                                                                  16.00
1391                                                                                                  60.00
1392                                                                                                  16.00
1393                                                                                                   1.00
1394                                                                                                  16.00
1395                                                                                                  10.00
1396                                                                                                 200.00
1397                                                                                                 500.00
1398                                                                                              1-2 drops
1399                                                                                                  16.00
1400                                                                                                  90.00
1401                                                                                                  20.00
1402                                                                                                   1.00
1403                                                                                                 500.00
1404                                                                                            unspecified
1405                                                                                            unspecified
1406                                                                                                 500.00
1407                                                                                                 100.00
1408                                                                                                 200.00
1409                                                                                                 200.00
1410                                                                                                 200.00
1411                                                                                                1000.00
1412                                                                                                  10.00
1413                                                                                                 200.00
1414                                                                                                  24.00
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1421                                                                                                  60.00
1422                                                                           based on weight (51-100 lbs)
1423                                                                                                 750.00
1424                                                                                                  50.00
1425                                                                                                  15.00
1426                                                                                                  50.00
1427                                                                                                 500.00
1428                                                                                                 500.00
1429                                                                                                  50.00
1430                                                                                                  60.00
1431                                                                                                   2.00
1432                                                                                                  16.00
1433                                                                                                  16.00
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1436                                                                                                  16.00
1437                                                                                                  50.00
1438                                                                           based on weight (51-100 lbs)
1439                                                                                                  60.00
1440                                                                                                   1.00
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1444                                                                                                  70.00
1445                                                                                                   1.00
1446                                                                                                   1.00
1447                                                                                                   1.00
1448                                                                                                   1.00
1449                                                                                                  60.00
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1452                                                                                                  70.00
1453                                                                                                   1.00
1454                                                                                                  70.00
1455                                                                                                 300.00
1456                                                                                                  50.00
1457                                                                                                 150.00
1458                                                                                                 100.00
1459                                                                             based on weight (2-55 lbs)
1460                                                                                                  50.00
1461                                                                                                  10.00
1462                                                                            based on weight (56-95 lbs)
1463                                                                                                 900.00
1464                                                                           based on weight (51-100 lbs)
1465                                                                                                   0.09
1466                                                                                                   1.25
1467                                                                                                   2.00
1468                                                                                                   2.00
1469                                                                                                  23.00
1470                                                                                                 100.00
1471                                                                                                 100.00
1472                                                                                                   1.00
1473                                                                                            unspecified
1474                                                                                                   1.90
1475                                                                                            unspecified
1476                                                                                                 500.00
1477                                                                                                   1.00
1478                                                                                                 500.00
1479                                                                                                  10.00
1480                                                                                                   5.00
1481                                                                                                   5.00
1482                                                                                                 500.00
1483                                                                                                   1.50
1484                                                                                                  10.00
1485                                                                                                 500.00
1486                                                                                                   5.00
1487                                                                                                   0.40
1488                                                                                                   1.00
1489                                                                                                   1.00
1490                                                                                                   1.00
1491                                                                                  1 tablet/pill/capsule
1492                                                                                                 272.00
1493                                                                                                 200.00
1494                                                                                                  25.00
1495                                                                                                 200.00
1496                                                                                                   1.00
1497                                                                                                 200.00
1498                                                                                                  50.00
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1503                                                                                                  50-95
1504                                                                                               0.25 tsp
1505                                                                                                 400.00
1506                                                                                                   7.00
1507                                                                                                   3.00
1508                                                                                               10000.00
1509                                                                                                 400.00
1510                                                                                                 272.00
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1513                                                                                                 272.00
1514                                                                          based on weight (24.1-60 lbs)
1515                                                                                                 272.00
1516                                                                                                 136.00
1517                                                                                                 227.00
1518                                                                                                 136.00
1519                                                                                                 272.00
1520                                                                                                  68.00
1521                                                                                                  60.00
1522                                                                                                 375.00
1523                                                                                                1000.00
1524                                                                                                 600.00
1525                                                                                                   0.50
1526                                                                                                  50.00
1527                                                                                                 272.00
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1530                                                                                                 272.00
1531                                                                                                 272.00
1532                                                                              based on weight (55+ lbs)
1533                                                                                                 272.00
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1540                                                                                                   1.00
1541                                                                                            unspecified
1542                                                                                            unspecified
1543                                                                                                   1.00
1544                                                                                                 500.00
1545                                                                                                 500.00
1546                                                                                                 200.00
1547                                                                                                 100.00
1548                                                                                                  75.00
1549                                                                                                   3.00
1550                                                                                                   6.00
1551                                                                                                   1.00
1552                                                                                                 100.00
1553                                                                                                   8.00
1554                                                                                                  12.00
1555                                                                                                   7.00
1556                                                                                               inhalant
1557                                                                                                  16.00
1558                                                                                                 200.00
1559                                                                                                 375.00
1560                                                                                                 100.00
1561                                                                                                  50.00
1562                                                                                                 400.00
1563                                                                                                  75.00
1564                                                                                                 400.00
1565                                                                                                  50.00
1566                                                                                                 375.00
1567                                                                                                   2.50
1568                                                                                                 500.00
1569                                                                                                   1.00
1570                                                                                                   1.00
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1573                                                                                                 136.00
1574                                                                                                  80.00
1575                                                                                                 100.00
1576                                                                                                   1.00
1577                                                                                                   0.40
1578                                                                                                 100.00
1579                                                                                                 100.00
1580                                                                                                   0.40
1581                                                                                                  20.00
1582                                                                                                  50.00
1583                                                                                                 272.00
1584                                                                                                 227.00
1585                                                                                                   4.00
1586                                                                                           small amount
1587                                                                                            unspecified
1588                                                                                                1000.00
1589                                                                                                  75.00
1590                                                                                                   7.50
1591                                                                                                 225.00
1592                                                                                                 100.00
1593                                                                                                  20.00
1594                                                                                                  50.00
1595                                                                                                 250.00
1596                                                                                                  60.00
1597                                                                                                  60.00
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1600                                                                                                 136.00
1601                                                                                                   1.00
1602                                                                                                   7.50
1603                                                                                                  70.00
1604                                                                                                   3.75
1605                                                                                                 200.00
1606                                                                                                   0.13
1607                                                                                                   6.30
1608                                                                                                 180.00
1609                                                                                                   2.50
1610                                                                                                 204.00
1611                                                                                                   1.00
1612                                                                                                  80.00
1613                                                                                                 200.00
1614                                                                                                  80.00
1615                                                                                                   7.00
1616                                                                                                 200.00
1617                                                                                                 204.00
1618                                                                                                  80.00
1619                                                                                                  50.00
1620                                                                                                 500.00
1621                                                                                                  10.00
1622                                                                                                  50.00
1623                                                                                                  75.00
1624                                                                                                  50.00
1625                                                                                                   1.50
1626                                                                                                  50.00
1627                                                                                                 272.00
1628                                                                                                   2.68
1629                                                                                                  50.00
1630                                                                                                 272.00
1631                                                                                                   2.68
1632                                                                                                   0.10
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1637                                                                                                   1.00
1638                                                                                                   1.00
1639                                                                                                   1.00
1640                                                                                                   1.00
1641                                                                                                  75.00
1642                                                                                                 500.00
1643                                                                                                 500.00
1644                                                                                                  20.00
1645                                                                                                   0.25
1646                                                                                                  75.00
1647                                                                                                 500.00
1648                                                                                                 500.00
1649                                                                                                 200.00
1650                                                                                            unspecified
1651                                                                                                 100.00
1652                                                                                                  75.00
1653                                                                                                   1.00
1654                                                                                                 272.00
1655                                                                                                 272.00
1656                                                                                                   2.68
1657                                                                                                 272.00
1658                                                                                                   0.09
1659                                                                                                 272.00
1660                                                                                                  68.00
1661                                                                                                  50.00
1662                                                                                                  15.00
1663                                                                           based on weight (60-120 lbs)
1664                                                                                                  25.00
1665                                                                                                 250.00
1666                                                                                                 250.00
1667                                                                                                 750.00
1668                                                                                            unspecified
1669                                                                                                 272.00
1670                                                                                                 272.00
1671                                                                                                  44-88
1672                                                                                                   2.68
1673                                                                                                  29.00
1674                                                                                                   1.00
1675                                                                                                   2.00
1676                                                                                                 272.00
1677                                                                                                 272.00
1678                                                                                                 500.00
1679                                                                                                   1.00
1680                                                                                                   1.00
1681                                                                                                   1.00
1682                                                                                                 272.00
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1686                                                                                                 500.00
1687                                                                                                 120.00
1688                                                                                                 272.00
1689                                                                                        moderate amount
1690                                                                                                1 spray
1691                                                                                                 500.00
1692                                                                                        moderate amount
1693                                                                                                 100.00
1694                                                                                                 100.00
1695                                                                                                 1 drop
1696                                                                                                  75.00
1697                                                                                        based on weight
1698                                                                                                  23.00
1699                                                                                                   2.68
1700                                                                                                   2.68
1701                                                                                                   8.00
1702                                                                                                   1.00
1703                                                                                                 375.00
1704                                                                                                   2.50
1705                                                                                                  50.00
1706                                                                                                   8.00
1707                                                                                                   2.68
1708                                                                                                23, 460
1709                                                                                                   8.00
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1711                                                                                                   2.68
1712                                                                           based on weight (50-100 lbs)
1713                                                                                                   2.68
1714                                                                                                1000.00
1715                                                                           based on weight (51-100 lbs)
1716                                                                                                   2.68
1717                                                                                                1000.00
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1721                                                                                                 120.00
1722                                                                                                1000.00
1723                                                                                                2000.00
1724                                                                                                  10.00
1725                                                                                                 272.00
1726                                                                                                   4.00
1727                                                                                                   1.00
1728                                                                                                   1.00
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1731                                                                                                   1.00
1732                                                                                                   1.00
1733                                                                                                 272.00
1734                                                                                                 272.00
1735                                                                                                 272.00
1736                                                                                                 272.00
1737                                                                                                 227.00
1738                                                                                                 200.00
1739                                                                                                 227.00
1740                                                                                                  20.00
1741                                                                                                 227.00
1742                                                                                                 272.00
1743                                                                                        based on weight
1744                                                                                                 272.00
1745                                                                                                1647.00
1746                                                                                                   1.50
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1750                                                                                                 750.00
1751                                                                                                 120.00
1752                                                                                                 400.00
1753                                                                                                   0.04
1754                                                                                                  20.00
1755                                                                                                   3.70
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1762                                                                                                 375.00
1763                                                                                                  75.00
1764                                                                                                 100.00
1765                                                                                                 200.00
1766                                                                                                  15.00
1767                                                                                                   2.00
1768                                                                                                 200.00
1769                                                                                            application
1770                                                                                                  23.00
1771                                                                                                1000.00
1772                                                                                                 200.00
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1776                                                                                                1000.00
1777                                                                                                  23.00
1778                                                                                                 272.00
1779                                                                                                1000.00
1780                                                                                                 272.00
1781                                                                                                1000.00
1782                                                                                                 132.00
1783                                                                                                   3.20
1784                                                                                                  50.00
1785                                                                                                 272.00
1786                                                                                                1000.00
1787                                                                                                 240.00
1788                                                                                                1090.00
1789                                                                                            unspecified
1790                                                                                                 375.00
1791                                                                                            unspecified
1792                                                                                                 150.00
1793                                                                                                 200.00
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1797                                                                                                  50.00
1798                                                                               based on weight (75 lbs)
1799                                                                                                   1.00
1800                                                                                                 250.00
1801                                                                                                 300.00
1802                                                                                                  15.00
1803                                                                                                   3.00
1804                                                                                                  22.00
1805                                                                                           small amount
1806                                                                                                  95.00
1807                                                                                                  95.00
1808                                                                                                 500.00
1809                                                                                            unspecified
1810                                                                                                1000.00
1811                                                                                                 500.00
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1814                                                                                                 100.00
1815                                                                                                  50.00
1816                                                                                                 170.00
1817                                                                                                   1.00
1818                                                                                                   0.50
1819                                                                                            unspecified
1820                                                                                            unspecified
1821                                                                                                 150.00
1822                                                                                                 100.00
1823                                                                                            unspecified
1824                                                                                                  50.00
1825                                                                                                  16.00
1826                                                                                                   1.20
1827                                                                                                  10.00
1828                                                                                                 272.00
1829                                                                                                 500.00
1830                                                                                                   1.00
1831                                                                                                   1.00
1832                                                                                                   1.40
1833                                                                                                  16.00
1834                                                                                                 272.00
1835                                                                                                 136.00
1836                                                                                                 272.00
1837                                                                                                 136.00
1838                                                                                                 272.00
1839                                                                                                 136.00
1840                                                                                                 100.00
1841                                                                                                   1.00
1842                                                                                                   1.00
1843                                                                                                 272.00
1844                                                                                                 272.00
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1852                                                                                                 100.00
1853                                                                                                   5.00
1854                                                                                                 500.00
1855                                                                                                 500.00
1856                                                                                                  20.00
1857                                                                                                 500.00
1858                                                                                                  68.00
1859                                                                                                   4.00
1860                                                                                                  50.00
1861                                                                                                  75 mg
1862                                                                                                  75.00
1863                                                                                                 272.00
1864                                                                                                  56-95
1865                                                                                                 900.00
1866                                                                                                  56-95
1867                                                                           based on weight (51-100 lbs)
1868                                                                                                 500.00
1869                                                                                                   1.00
1870                                                                                                 150.00
1871                                                                                                   5.00
1872                                                                           based on weight (51-100 lbs)
1873                                                                                                  56-95
1874                                                                                                  66.00
1875                                                                                                   8.00
1876                                                                                                 190.00
1877                                                                                            unspecified
1878                                                                                                  50.00
1879                                                                                                 375.00
1880                                                                                                 227.00
1881                                                                                                 375.00
1882                                                                                                  10.00
1883                                                                                                   8.00
1884                                                                                                   8.00
1885                                                                                                   1.00
1886                                                                                                   1.00
1887                                                                                                  spray
1888                                                                                             continuous
1889                                                                                                 272.00
1890                                                                                                  60.00
1891                                                                                                   1.00
1892                                                                                                   1.00
1893                                                                                                   1.00
1894                                                                                                   1.00
1895                                                                                                  50.00
1896                                                                                                  60.00
1897                                                                                                   1.00
1898                                                                                                 375.00
1899                                                                                                 375.00
1900                                                                                                 100.00
1901                                                                                                 300.00
1902                                                                                                 150.00
1903                                                                                                  50.00
1904                                                                                                  10.00
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1907                                                                                                  50.00
1908                                                                                                 190.00
1909                                                                                                  56-95
1910                                                                                                 900.00
1911                                                                                                  14.00
1912                                                                                                   7.00
1913                                                                                                   7.00
1914                                                                                                 200.00
1915                                                                                                   0.50
1916                                                                                                  56-95
1917                                                                           based on weight (51-100 lbs)
1918                                                                                                   1.50
1919                                                                                                 750.00
1920                                                                                                   1.00
1921                                                                                                   2.00
1922                                                                                                  spray
1923                                                                                                  68.00
1924                                                                                                   8.00
1925                                                                                            unspecified
1926                                                                                           small amount
1927                                                                                                  16.00
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1930                                                                                                   2.00
1931                                                                                           small amount
1932                                                                                                 150.00
1933                                                                                                  50.00
1934                                                                                                   2.00
1935                                                                                                  60.00
1936                                                                                                 190.00
1937                                                                                                  50.00
1938                                                                                                   2.00
1939                                                                                            unspecified
1940                                                                                                 200.00
1941                                                                                            application
1942                                                                                                 190.00
1943                                                                                                  50.00
1944                                                                                                   2.00
1945                                                                                                  spray
1946                                                                                                 190.00
1947                                                                                                  70.00
1948                                                                                        based on weight
1949                                                                                                   1.00
1950                                                                                                  50.00
1951                                                                                                 200.00
1952                                                                                                   2.00
1953                                                                                                  50.00
1954                                                                                                   0-22
1955                                                                                                  23-44
1956                                                                                                  26-50
1957                                                                                                 250.00
1958                                                                                                   1.00
1959                                                                                                  10.50
1960                                                                                                  45-88
1961                                                                                                 100.00
1962                                                                           based on weight (51-100 lbs)
1963                                                                                                   1.00
1964                                                                                                   1.00
1965                                                                                           small amount
1966                                                                                                 240.00
1967                                                                                                1200.00
1968                                                                                                 450.00
1969                                                                                                   2.00
1970                                                                                                 136.00
1971                                                                                                   2.50
1972                                                                                                   1.00
1973                                                                                                   1.00
1974                                                                                                   1.00
1975                                                                                                   4.00
1976                                                                                                 272.00
1977                                                                                                1200.00
1978                                                                                                 900.00
1979                                                                                                   2.00
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1986                                                                                                   1.00
1987                                                                                                   1.00
1988                                                                                                 100.00
1989                                                                                                   1.00
1990                                                                                                 300.00
1991                                                                                                  50.00
1992                                                                                                 500.00
1993                                                                                                 136.00
1994                                                                                            unspecified
1995                                                                                                  70.00
1996                                                                                                  50.00
1997                                                                                                 400.00
1998                                                                                           small amount
1999                                                                                                 272.00
2000                                                                                                1000.00
2001                                                                                                 272.00
2002                                                                                                1000.00
2003                                                                                                1000.00
2004                                                                                                  75.00
2005                                                                                                1000.00
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2008                                                                                                 900.00
2009                                                                                                 937.50
2010                                                                                                   9.80
2011                                                                                                 500.00
2012                                                                                            unspecified
2013                                                                                            unspecified
2014                                                                                                 200.00
2015                                                                                                   5.00
2016                                                                           based on weight (51-100 lbs)
2017                                                                                                 272.00
2018                                                                                                 100.00
2019                                                                                                 300.00
2020                                                                                                 100.00
2021                                                                                                   5.00
2022                                                                                            application
2023                                                                                                   1.00
2024                                                                                                   1.00
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2027                                                                                                   1.00
2028                                                                                                 500.00
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2031                                                                                                 136.00
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2035                                                                                                  26-50
2036                                                                                                  45-88
2037                                                                                                 250.00
2038                                                                                                   1.00
2039                                                                                                 272.00
2040                                                                                                 227.00
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2045                                                                                                  50.00
2046                                                                                                  13.00
2047                                                                                                   2.20
2048                                                                                                   0.22
2049                                                                                                   0.11
2050                                                                           based on weight (51-100 lbs)
2051                                                                                                  45-88
2052                                                                                                   7.60
2053                                                                                                  11.00
2054                                                                                                 125.00
2055                                                                                                 375.00
2056                                                                                                  50.00
2057                                                                                                   4.00
2058                                                                                                 150.00
2059                                                                                                 272.00
2060                                                                                                 272.00
2061                                                                                                 200.00
2062                                                                                                 272.00
2063                                                                                                 220.00
2064                                                                                                   1.00
2065                                                                                                 220.00
2066                                                                                                   2.68
2067                                                                                                1000.00
2068                                                                                                 150.00
2069                                                                                                 272.00
2070                                                                                                   2.68
2071                                                                                                  80.00
2072                                                                                                 500 mg
2073                                                                                                 272.00
2074                                                                                                 272.00
2075                                                                           based on weight (51-100 lbs)
2076                                                                                                 272.00
2077                                                                                                1000.00
2078                                                                                                  75.00
2079                                                                                                  23.00
2080                                                                                                 160.00
2081                                                                                                 900.00
2082                                                                                                1000.00
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2086                                                                                                 50-100
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2090                                                                                                   1.60
2091                                                                           based on weight (51-100 lbs)
2092                                                                                                1000.00
2093                                                                              based on weight (80+ lbs)
2094                                                                                                   1.60
2095                                                                                                   1.60
2096                                                                                                   1.00
2097                                                                                                   3.75
2098                                                                                                 160.00
2099                                                                                                   6.00
2100                                                                                                   3.75
2101                                                                                                   2.00
2102                                                                                                   3.75
2103                                                                                                 136.00
2104                                                                                                 500.00
2105                                                                                                  20.00
2106                                                                                                   7.50
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2111                                                                                                 150.00
2112                                                                                                 200.00
2113                                                                                               tapering
2114                                                                                                  16.00
2115                                                                                            unspecified
2116                                                                                            unspecified
2117                                                                                                  20.00
2118                                                                                                   1.00
2119                                                                                                 300.00
2120                                                                                                   1.00
2121                                                                                                 272.00
2122                                                                                                  50.00
2123                                                                                  1 tablet/pill/capsule
2124                                                                                                   1.00
2125                                                                                                 750.00
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2128                                                                                                   9.00
2129                                                                                                1000.00
2130                                                                                                  13.30
2131                                                                                                   3.25
2132                                                                                                   1.26
2133                                                                                                   0.90
2134                                                                                                   7.50
2135                                                                                                 750.00
2136                                                                                                1000.00
2137                                                                                                   1.00
2138                                                                                                   3.00
2139                                                                                                   8.00
2140                                                                                                   2.50
2141                                                                                                   1.00
2142                                                                                                   1.00
2143                                                                                                   1.00
2144                                                                                                   2.00
2145                                                                                                 500.00
2146                                                                                                   1.00
2147                                                                                                   1.00
2148                                                                                                  15.00
2149                                                                           based on weight (51-100 lbs)
2150                                                                                                   1.00
2151                                                                           based on weight (51-100 lbs)
2152                                                                                                   1.00
2153                                                                                                   1.50
2154                                                                                                  16.00
2155                                                                                                   4.50
2156                                                                                                   1.80
2157                                                                                                   0.60
2158                                                                                                1000.00
2159                                                                                                   3.75
2160                                                                                                 100.00
2161                                                                           based on weight (51-100 lbs)
2162                                                                                                  44-88
2163                                                                                                   1.00
2164                                                                                               45294.00
2165                                                                                           small amount
2166                                                                                            as directed
2167                                                                                                   1.00
2168                                                                                                 500.00
2169                                                                                                1000.00
2170                                                                                                 700.00
2171                                                                                                  60.00
2172                                                                                                 240.00
2173                                                                                                1000.00
2174                                                                                                 500.00
2175                                                                                                   1.00
2176                                                                                                  50.00
2177                                                                                                 200.00
2178                                                                                                  23.00
2179                                                                                                 810.00
2180                                                                                                  50.00
2181                                                                                                 250.00
2182                                                                                                  93.00
2183                                                                                                 120.00
2184                                                                                                  50.00
2185                                                                                                  40.00
2186                                                                                                  50.00
2187                                                                                                1000.00
2188                                                                                                 800.00
2189                                                                                                  68.00
2190                                                                                                  68.00
2191                                                                                                 200.00
2192                                                                                                  50.00
2193                                                                                                1000.00
2194                                                                                                 800.00
2195                                                                                            unspecified
2196                                                                                                 272.00
2197                                                                                                  68.00
2198                                                                                                 272.00
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2208                                                                                                   0.30
2209                                                                                                   1.00
2210                                                                                                 100.00
2211                                                                                            unspecified
2212                                                                                                  50.00
2213                                                                                                  50.00
2214                                                                                                   1.00
2215                                                                                                  50.00
2216                                                                                                   1.00
2217                                                                                                   2.00
2218                                                                                                  50.00
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2222                                                                                                   1.00
2223                                                                                                   1.00
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2227                                                                                                 750.00
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2231                                                                                                  20.00
2232                                                                                                   1.00
2233                                                                           based on weight (50-100 lbs)
2234                                                                                                   1.00
2235                                                                                                   1.00
2236                                                                                                 200.00
2237                                                                                                   1.50
2238                                                                                                   1.00
2239                                                                                                   1.00
2240                                                                                                   1.00
2241                                                                                            application
2242                                                                                                   0.30
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2246                                                                                                  60.00
2247                                                                                                  10.00
2248                                                                                                 100.00
2249                                                                                                  50.00
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2252                                                                                                   1.00
2253                                                                                                  68.00
2254                                                                                                1000.00
2255                                                                            based on weight (21-55 lbs)
2256                                                                                                 450.00
2257                                                                                                   4.00
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2267                                                                                                 375.00
2268                                                                                                 375.00
2269                                                                                            unspecified
2270                                                                                            unspecified
2271                                                                                                  60.00
2272                                                                                            unspecified
2273                                                                                                  20.00
2274                                                                                                 375.00
2275                                                                                                  25.00
2276                                                                                                  15.00
2277                                                                                                 272.00
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2281                                                                                                 250.00
2282                                                                                                   1.00
2283                                                                           based on weight (51-100 lbs)
2284                                                                                                 272.00
2285                                                                                                 200.00
2286                                                                                                   2.50
2287                                                                                                 272.00
2288                                                                                                 500.00
2289                                                                                                   0.25
2290                                                                                                 300.00
2291                                                                                                  10.00
2292                                                                                                 300.00
2293                                                                                                  75.00
2294                                                                                                 500.00
2295                                                                                                  75.00
2296                                                                                                  12.50
2297                                                                                                   1.00
2298                                                                                                  50.00
2299                                                                                                 480.00
2300                                                                                                1000.00
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2303                                                                                                1000.00
2304                                                                                                   4.00
2305                                                                                                  12.00
2306                                                                                                 500.00
2307                                                                                                   1.00
2308                                                                                                 272.00
2309                                                                                                 136.00
2310                                                                                                 200.00
2311                                                                                                 272.00
2312                                                                                                 136.00
2313                                                                                                 500.00
2314                                                                                                 500.00
2315                                                                                                 200.00
2316                                                                                                  10.00
2317                                                                                                 500.00
2318                                                                                                 500.00
2319                                                                                                 500.00
2320                                                                                                  75.00
2321                                                                                                   2.00
2322                                                                                                 300.00
2323                                                                                                 100.00
2324                                                                                                 500.00
2325                                                                                                  20.00
2326                                                                                                  75.00
2327                                                                                                   1.00
2328                                                                                                 500.00
2329                                                                                                   1.00
2330                                                                                                  50.00
2331                                                                                                  70.00
2332                                                                                                 500.00
2333                                                                                                 272 mg
2334                                                                                                 272.00
2335                                                                                                 272.00
2336                                                                                                 227.00
2337                                                                                                   9.10
2338                                                                                                  20.00
2339                                                                                                 1 drop
2340                                                                                                 272.00
2341                                                                                                 227.00
2342                                                                                                 1 drop
2343                                                                                                 272.00
2344                                                                                                 227.00
2345                                                                                                272 mcg
2346                                                                                                 227.00
2347                                                                                                272 mcg
2348                                                                                                 227.00
2349                                                                                                  20.00
2350                                                                                                 300.00
2351                                                                                                   1.50
2352                                                                                                272 mcg
2353                                                                                                 227.00
2354                                                                                                  20.00
2355                                                                                                 350.00
2356                                                                                                272 mcg
2357                                                                                                  20.00
2358                                                                                                 229.00
2359                                                                                                 429.00
2360                                                                                                  60.00
2361                                                                                                   6.00
2362                                                                                                 500.00
2363                                                                                                 500.00
2364                                                                                                  30.00
2365                                                                                                 300.00
2366                                                                                                  20.00
2367                                                                                                 500.00
2368                                                                                                  20.00
2369                                                                                                 500.00
2370                                                                                                  68.00
2371                                                                                                   1.00
2372                                                                                                 350.00
2373                                                                                                 500.00
2374                                                                                                   1.00
2375                                                                                                 250.00
2376                                                                                                 300.00
2377                                                                                                   8.00
2378                                                                                                 100.00
2379                                                                                                  75.00
2380                                                                                                   1.00
2381                                                                                                 250.00
2382                                                                                                 500.00
2383                                                                                                 400.00
2384                                                                                                 50-100
2385                                                                                                 500.00
2386                                                                                                 50-100
2387                                                                                                   0.15
2388                                                                                                  30.00
2389                                                                                                  48.00
2390                                                                                                  spray
2391                                                                                                 250.00
2392                                                                                                  37.50
2393                                                                                                   1.00
2394                                                                                                   4.00
2395                                                                                                 252.00
2396                                                                                                  80.00
2397                                                                                                   1.00
2398                                                                                                  spray
2399                                                                                                 272.00
2400                                                                                                  30.00
2401                                                                                                   1.00
2402                                                                                                   1.00
2403                                                                                                   1.00
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2407                                                                                                 272.00
2408                                                                                                  44-88
2409                                                                           based on weight (51-100 lbs)
2410                                                                                                 500.00
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2413                                                                                                 100.00
2414                                                                                                  75.00
2415                                                                                                 200.00
2416                                                                                                 272.00
2417                                                                                                 227.00
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2420                                                                                                 272.00
2421                                                                                                  16.00
2422                                                                                                  16.00
2423                                                                                                1000.00
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2429                                                                                                  16.00
2430                                                                                                 500.00
2431                                                                                                  75.00
2432                                                                                                  16.00
2433                                                                                                  75.00
2434                                                                                                 500.00
2435                                                                                                  75.00
2436                                                                                                 300.00
2437                                                                                                   1.00
2438                                                                                                 500.00
2439                                                                                                 500.00
2440                                                                                                 250.00
2441                                                                                                   3.00
2442                                                                                                   1.00
2443                                                                                                   2.00
2444                                                                                                 227.00
2445                                                                                                 250.00
2446                                                                                                   1.00
2447                                                                                                 100.00
2448                                                                                                   1.00
2449                                                                                                   1.00
2450                                                                                                 150 mg
2451                                                                                                   3.50
2452                                                                                                   3.20
2453                                                                                                  60 mg
2454                                                                                                   3.60
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2457                                                                                                 500.00
2458                                                                                                  50.00
2459                                                                                                   5.00
2460                                                                                                   5.00
2461                                                                                                  15.00
2462                                                                                                  12.00
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2465                                                                                                   1.00
2466                                                                                                 500.00
2467                                                                                    tablet/pill/capsule
2468                                                                                                 300.00
2469                                                                                                  60.00
2470                                                                                                 500.00
2471                                                                                                  20.00
2472                                                                                                   5.00
2473                                                                                           small amount
2474                                                                                           small amount
2475                                                                                                 200.00
2476                                                                                                  30.00
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2480                                                                                                 100.00
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2483                                                                                                 60-120
2484                                                                                                 200.00
2485                                                                                                  16.00
2486                                                                                            as directed
2487                                                                                            as directed
2488                                                                                                 375.00
2489                                                                                                  75.00
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2493                                                                                                  16.00
2494                                                                                                 200.00
2495                                                                                                   1.00
2496                                                                                                  20.00
2497                                                                                                   1.00
2498                                                                                                 250.00
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2507                                                                                                 250.00
2508                                                                                    tablet/pill/capsule
2509                                                                                                  60.00
2510                                                                                                 272.00
2511                                                                                                 272.00
2512                                                                                                 227.00
2513                                                                                                 228.00
2514                                                                                                 272.00
2515                                                                                                 500.00
2516                                                                                                 272.00
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2519                                                                                                 460.00
2520                                                                                                 150.00
2521                                                                                                  23.00
2522                                                                                                  23.00
2523                                                                                                   0.75
2524                                                                                                   0.75
2525                                                                                                 125.00
2526                                                                                                   1.40
2527                                                                                                 125.00
2528                                                                                                 170.00
2529                                                                                                   1.40
2530                                                                                                 125.00
2531                                                                                                 136.00
2532                                                                                                  20.00
2533                                                                                                 150.00
2534                                                                                            unspecified
2535                                                                                                 100.00
2536                                                                                                   1.00
2537                                                                                                 272.00
2538                                                                                                 272.00
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2541                                                                                                 136.00
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2551                                                                                                  75.00
2552                                                                                                 500.00
2553                                                                                                  75.00
2554                                                                                                 500.00
2555                                                                                                  75.00
2556                                                                                                 500.00
2557                                                                                                  20.00
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2561                                                                                                  20.00
2562                                                                           based on weight (50-100 lbs)
2563                                                                                                   8.00
2564                                                                                                 227.00
2565                                                                                                  20.00
2566                                                                                    tablet/pill/capsule
2567                                                                                                  20.00
2568                                                                                                  16.00
2569                                                                                                   8.00
2570                                                                                                   0.40
2571                                                                                                   0.30
2572                                                                                                  21-55
2573                                                                                                   0.35
2574                                                                                                 375.00
2575                                                                                            unspecified
2576                                                                                                  10.00
2577                                                                                                 200.00
2578                                                                                                  spray
2579                                                                                                  10.80
2580                                                                                            application
2581                                                                                                 375.00
2582                                                                                                   8.00
2583                                                                                            unspecified
2584                                                                                                   2.68
2585                                                                                                 136.00
2586                                                                                                   1.00
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2590                                                                                                   1.00
2591                                                                                                   1.00
2592                                                                                                   2.00
2593                                                                                                   1.00
2594                                                                                                   2.00
2595                                                                                                   1.00
2596                                                                                                   2.00
2597                                                                                                1950.00
2598                                                                                                   1.00
2599                                                                                            unspecified
2600                                                                                            unspecified
2601                                                                                                   2.50
2602                                                                                                  11.00
2603                                                                                                   1.00
2604                                                                                                   1.00
2605                                                                                                   1.00
2606                                                                                                   1.00
2607                                                                                                  50.00
2608                                                                                                  50.00
2609                                                                                                   6.50
2610                                                                                                   1.00
2611                                                                                                   1.00
2612                                                                                                   1.00
2613                                                                                                  68.00
2614                                                                                                  81.50
2615                                                                                                  73.00
2616                                                                                                 100.00
2617                                                                                                 136.50
2618                                                                                                   3.00
2619                                                                                                  68.00
2620                                                                                                  81.50
2621                                                                                                  73.00
2622                                                                                                 100.00
2623                                                                                                 136.50
2624                                                                                                   5.00
2625                                                                                                 204.00
2626                                                                                                   1.00
2627                                                                                                0.57 mg
2628                                                                                                   5.00
2629                                                                                                   5.00
2630                                                                                                   5.00
2631                                                                                                  68.00
2632                                                                                                  81.50
2633                                                                                                  73.00
2634                                                                                                 100.00
2635                                                                                                 136.50
2636                                                                                                  16 mg
2637                                                                                                   1.00
2638                                                                                                 500.00
2639                                                                                                   8.00
2640                                                                                                   8.00
2641                                                                                                  50.00
2642                                                                                            unspecified
2643                                                                                                  70.00
2644                                                                                                1000.00
2645                                                                                                   1.00
2646                                                                                                  68.00
2647                                                                                                  81.50
2648                                                                                                  73.00
2649                                                                                                 100.00
2650                                                                                                 136.50
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2654                                                                                                 500.00
2655                                                                                            unspecified
2656                                                                                                  75.00
2657                                                                                                 200.00
2658                                                                                                 100.00
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2662                                                                                                   5.00
2663                                                                                                  25.00
2664                                                                                                   2.00
2665                                                                                                   5.00
2666                                                                                                   5.00
2667                                                                                                   5.00
2668                                                                                                 500.00
2669                                                                                                  68.00
2670                                                                                                  81.50
2671                                                                                                  73.00
2672                                                                                                 100.00
2673                                                                                                 136.50
2674                                                                                                  68.00
2675                                                                                                  81.50
2676                                                                                                  73.00
2677                                                                                                 100.00
2678                                                                                                 136.50
2679                                                                                                  68.00
2680                                                                                                  81.50
2681                                                                                                  73.00
2682                                                                                                 100.00
2683                                                                                                 136.50
2684                                                                                                  68.00
2685                                                                                                  81.50
2686                                                                                                  73.00
2687                                                                                                 100.00
2688                                                                                                 136.50
2689                                                                                                  68.00
2690                                                                                                  81.50
2691                                                                                                  73.00
2692                                                                                                 100.00
2693                                                                                                 136.50
2694                                                                                                  60.00
2695                                                                                                   0.57
2696                                                                                                   1.00
2697                                                                                                   3.00
2698                                                                                                   5.00
2699                                                                                               2 sprays
2700                                                                                                  60.00
2701                                                                                                  68.00
2702                                                                                                  81.50
2703                                                                                                  73.00
2704                                                                                                 100.00
2705                                                                                                 136.50
2706                                                                                                   1.00
2707                                                                                                 500.00
2708                                                                                                   2.70
2709                                                                                                 400.00
2710                                                                           based on weight (51-100 lbs)
2711                                                                                                 500.00
2712                                                                                                   2.50
2713                                                                                                   1.00
2714                                                                                                  60.00
2715                                                                                                  60.00
2716                                                                                                   2.70
2717                                                                                                   1.00
2718                                                                                                  70.00
2719                                                                                                 272.00
2720                                                                                                 136.00
2721                                                                                            application
2722                                                                                                  20.00
2723                                                                                                  20.00
2724                                                                                                 136.00
2725                                                                                                 272.00
2726                                                                           based on weight (50-100 lbs)
2727                                                                                                  40.00
2728                                                                                                  20.00
2729                                                                                                   4.00
2730                                                                                                  20.00
2731                                                                                              13.5, 810
2732                                                                                                 250.00
2733                                                                                                 200.00
2734                                                                                                 250.00
2735                                                                                              13.5, 810
2736                                                                                                  68.00
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2740                                                                                                 134.00
2741                                                                                                 200.00
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2744                                                                                                  16.00
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2747                                                                                                  70.00
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2751                                                                                                  80.00
2752                                                                                                 200.00
2753                                                                           based on weight (50-100 lbs)
2754                                                                                                1000.00
2755                                                                                                  16.00
2756                                                                               based on weight (80 lbs)
2757                                                                                                 200.00
2758                                                                                                  80.00
2759                                                                                                  16.00
2760                                                                                                   5.00
2761                                                                                                 500.00
2762                                                                                                 200.00
2763                                                                                                 500.00
2764                                                                                                  16.00
2765                                                                                                  70.00
2766                                                                                                 300.00
2767                                                                                                  50.00
2768                                                                                                 500.00
2769                                                                                                 500.00
2770                                                                                                 250.00
2771                                                                                                   2.68
2772                                                                                                 272.00
2773                                                                                                 750.00
2774                                                                                                 272.00
2775                                                                                                  68.00
2776                                                                                                   8.00
2777                                                                                                 272.00
2778                                                                                                  68.00
2779                                                                                                  10.00
2780                                                                                                 300.00
2781                                                                                                 272.00
2782                                                                                                  80.00
2783                                                                                                   8.00
2784                                                                                                 500.00
2785                                                                                                  30.00
2786                                                                                                 400.00
2787                                                                                                 136.00
2788                                                                                                 750.00
2789                                                                                                   2.00
2790                                                                                                 300.00
2791                                                                                                 272.00
2792                                                                                                 136.00
2793                                                                                                 300.00
2794                                                                                                 750.00
2795                                                                                                  10.00
2796                                                                                                   8.00
2797                                                                                                   1.00
2798                                                                                                   5.00
2799                                                                                                   0.09
2800                                                                                                   5.00
2801                                                                                                   1.00
2802                                                                                                   0.60
2803                                                                                                   0.55
2804                                                                                                1400.00
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2806                                                                                                   0.60
2807                                                                                                   1.00
2808                                                                                                1400 mg
2809                                                                                                   0.60
2810                                                                                                1400.00
2811                                                                                                 500.00
2812                                                                                                   1.00
2813                                                                                                   6.00
2814                                                                                                1000.00
2815                                                                                               300, 600
2816                                                                                                1400.00
2817                                                                                                   0-25
2818                                                                                        0.25 inch strip
2819                                                                                                   2.13
2820                                                                                                   2.33
2821                                                                                                  50.00
2822                                                                                                  40.00
2823                                                                                                  10.00
2824                                                                                                 200.00
2825                                                                           based on weight (51-100 lbs)
2826                                                                                                  25-50
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2829                                                                                                 375.00
2830                                                                                                   1.00
2831                                                                                                   1.00
2832                                                                                                   5.00
2833                                                                           based on weight (51-100 lbs)
2834                                                                                                 375.00
2835                                                                                                  12.00
2836                                                                                                   1.00
2837                                                                                                  30.00
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2840                                                                                                 100.00
2841                                                                                                 200.00
2842                                                                                           small amount
2843                                                                                                  16.00
2844                                                                                        0.25 inch strip
2845                                                                                                  75.00
2846                                                                           based on weight (50-100 lbs)
2847                                                                                                 200.00
2848                                                                                                 500.00
2849                                                                                                  10.00
2850                                                                                                 300.00
2851                                                                                                   0.10
2852                                                                                                  10.00
2853                                                                                                 110.00
2854                                                                                                 100.00
2855                                                                                            unspecified
2856                                                                                                 500.00
2857                                                                                                 272.00
2858                                                                                                   8.00
2859                                                                                                  10.00
2860                                                                                                1000.00
2861                                                                                                   8.00
2862                                                                                                  20.00
2863                                                                                                 227.00
2864                                                                                                   9.80
2865                                                                                                 272.00
2866                                                                                                   9.20
2867                                                                                                  75.00
2868                                                                                                 272.00
2869                                                                                  1 tablet/pill/capsule
2870                                                                                                 272.00
2871                                                                                                  10.00
2872                                                                                                  59.20
2873                                                                                                  50.00
2874                                                                                                  50.00
2875                                                                                                  50.00
2876                                                                                                   1.00
2877                                                                                                 810.00
2878                                                                                                   3.00
2879                                                                                                  20.00
2880                                                                                                  10.00
2881                                                                                                  10.00
2882                                                                                                   1.17
2883                                                                                                   0.15
2884                                                                                                   1.45
2885                                                                                                 375.00
2886                                                                                                 300.00
2887                                                                                                   1.00
2888                                                                                                  50.00
2889                                                                                                 200.00
2890                                                                                                   2.00
2891                                                                                                   3.10
2892                                                                                                   8.00
2893                                                                                                 150.00
2894                                                                                                 375.00
2895                                                                                                   2.20
2896                                                                                                 160.00
2897                                                                                  lather and then rinse
2898                                                                                                 200.00
2899                                                                                                  20.00
2900                                                                                            application
2901                                                                                                 200.00
2902                                                                                                  20.00
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2906                                                                                                  20.00
2907                                                                                         1 pack/package
2908                                                                                                   8.00
2909                                                                                                   1.00
2910                                                                                                  24-60
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2914                                                                                                  50.00
2915                                                                                                 375.00
2916                                                                                                   3.00
2917                                                                                                   1.50
2918                                                                                                   1.50
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2924                                                                                                1000.00
2925                                                                                            unspecified
2926                                                                                                 50-100
2927                                                                                                 60-121
2928                                                                                                1000.00
2929                                                                                                1000.00
2930                                                                                                1000.00
2931                                                                                                  80.00
2932                                                                                                   2.00
2933                                                                                                  20.00
2934                                                                                                  80.00
2935                                                                                                  20.00
2936                                                                                                 500.00
2937                                                                                                  10.00
2938                                                                                                  16.00
2939                                                                                                   5.00
2940                                                                                                 500.00
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2945                                                                                                  23.00
2946                                                                                          1 bottle/vial
2947                                                                                                   4.00
2948                                                                                                   1.00
2949                                                                                                   1.00
2950                                                                                                   1.00
2951                                                                                                 1 tube
2952                                                                                                  40.00
2953                                                                                                  60.00
2954                                                                                                  49.00
2955                                                                                                 400.00
2956                                                                                                 100.00
2957                                                                                                   1.00
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2965                                                                                                 300.00
2966                                                                                                 200.00
2967                                                                                                  23.00
2968                                                                                                  45-88
2969                                                                                                   1.00
2970                                                                                                   3.00
2971                                                                                                  32.50
2972                                                                                                   1.00
2973                                                                                                   1.00
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2976                                                                                                   1.00
2977                                                                                                  23.00
2978                                                                         based on weight (50.1-100 lbs)
2979                                                                                                 136.00
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2983                                                                                                   1.00
2984                                                                                                  23.00
2985                                                                                                 136.00
2986                                                                                                   1.00
2987                                                                                                 750.00
2988                                                                                        based on weight
2989                                                                                                 150.00
2990                                                                                                 272.00
2991                                                                                                   0.13
2992                                                                                                 500.00
2993                                                                                            unspecified
2994                                                                                                 100.00
2995                                                                                                  50.00
2996                                                                                                 272.00
2997                                                                             1.5 tablets/pills/capsules
2998                                                                                                   1.00
2999                                                                                                   8.00
3000                                                                                                   5.00
3001                                                                                               45451.00
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3004                                                                                                 272.00
3005                                                                                                   0.09
3006                                                                                                 272.00
3007                                                                            based on weight (45-88 lbs)
3008                                                                                                 375.00
3009                                                                                                  50.00
3010                                                                                                  60.00
3011                                                                                                 105.00
3012                                                                                                1000.00
3013                                                                                                   1.00
3014                                                                                                   4.00
3015                                                                                                  30.00
3016                                                                                                  20.00
3017                                                                                                 150.00
3018                                                                                                 227.00
3019                                                                                                 272.00
3020                                                                                                 272.00
3021                                                                                                 272.00
3022                                                                                                   1.00
3023                                                                                                 150.00
3024                                                                                                 300.00
3025                                                                                                 425.00
3026                                                                                                 300.00
3027                                                                                                 272.00
3028                                                                            based on weight (45-88 lbs)
3029                                                                                                 150.00
3030                                                                                                   0.50
3031                                                                                            unspecified
3032                                                                                                 300.00
3033                                                                                                 850.00
3034                                                                                                 150.00
3035                                                                                                 150.00
3036                                                                                                   0.40
3037                                                                                                 100.00
3038                                                                                                  60.00
3039                                                                                                   0.09
3040                                                                                                 272.00
3041                                                                                                   1.00
3042                                                                                                   1.00
3043                                                                                                  45-88
3044                                                                                                 272.00
3045                                                                                                 500.00
3046                                                                                                 400.00
3047                                                                                                  62.50
3048                                                                                                   5.00
3049                                                                                                   2.50
3050                                                                                                   7.50
3051                                                                                                 68-136
3052                                                                                                 272.00
3053                                                                                                 227.00
3054                                                                                                 500.00
3055                                                                                            application
3056                                                                                                 100.00
3057                                                                                                  75.00
3058                                                                                            application
3059                                                                                                 500.00
3060                                                                                            unspecified
3061                                                                                                 272.00
3062                                                                                                 227.00
3063                                                                                                 272.00
3064                                                                                                 227.00
3065                                                                                                  10.00
3066                                                                                                 272.00
3067                                                                                                 227.00
3068                                                                                                  10.00
3069                                                                                                 272.00
3070                                                                                                  10.00
3071                                                                                                 400.00
3072                                                                                                 136.00
3073                                                                                                   8.00
3074                                                                                                  16.00
3075                                                                                                 272.00
3076                                                                                                  50.00
3077                                                                                                 150.00
3078                                                                                                 400.00
3079                                                                                                 136.00
3080                                                                                                 150.00
3081                                                                                                  50.00
3082                                                                                                 272.00
3083                                                                                                  50.00
3084                                                                                                   7.00
3085                                                                                                  10.00
3086                                                                                                  18.50
3087                                                                                                  50.00
3088                                                                                                 100.00
3089                                                                                                   4.70
3090                                                                                                  23.00
3091                                                                                                 240.00
3092                                                                                                 100 mg
3093                                                                                                 500.00
3094                                                                                                  20.00
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3097                                                                                                 272.00
3098                                                                                                  12.50
3099                                                                                                  75.00
3100                                                                                                  50.00
3101                                                                                                 240.00
3102                                                                                                 136.00
3103                                                                                                 272.00
3104                                                                                                 136.00
3105                                                                                                  25.00
3106                                                                                                 272.00
3107                                                                                                 136.00
3108                                                                                                  25-50
3109                                                                                                   0.25
3110                                                                                           small amount
3111                                                                                                 500.00
3112                                                                                                   6.00
3113                                                                                                  16.00
3114                                                                                                  20.00
3115                                                                                                  20.00
3116                                                                                                 500.00
3117                                                                                                 200.00
3118                                                                                                  12.50
3119                                                                                            as directed
3120                                                                                                   0.25
3121                                                                                                 272.00
3122                                                                                                 136.00
3123                                                                                                  16.00
3124                                                                                                   1.00
3125                                                                                                  16.00
3126                                                                                                  75.00
3127                                                                                                   4.00
3128                                                                                                  30.00
3129                                                                                                   4.00
3130                                                                                                  30.00
3131                                                                                                   2.00
3132                                                                                                   4.00
3133                                                                                                   2.00
3134                                                                                                   3.00
3135                                                                                                   1.00
3136                                                                                                 240.00
3137                                                                                                   0.09
3138                                                                                                  30.00
3139                                                                                                   4.00
3140                                                                                                2 pumps
3141                                                                                                 240.00
3142                                                                                                  80.00
3143                                                                                                   4.00
3144                                                                                                  30.00
3145                                                                                                   2.00
3146                                                                                                  10 mg
3147                                                                                            unspecified
3148                                                                                                  30.00
3149                                                                                                   0.30
3150                                                                                                   0.30
3151                                                                                                   0.30
3152                                                                                                  75.00
3153                                                                                                 500.00
3154                                                                                                  60.00
3155                                                                                                  18.00
3156                                                                                                   4.00
3157                                                                                                   1.00
3158                                                                                                   1.00
3159                                                                                                   2.00
3160                                                                                                  50.00
3161                                                                                                 300.00
3162                                                                                                   2.00
3163                                                                                                   1.00
3164                                                                                                   4.00
3165                                                                                                   1.00
3166                                                                                                   2.00
3167                                                                                                  12.00
3168                                                                                                  50.00
3169                                                                                                   3.00
3170                                                                                                 500.00
3171                                                                                                   3.20
3172                                                                                                   5.00
3173                                                                                                 272.00
3174                                                                                                 227.00
3175                                                                                                 810.00
3176                                                                                                  13.50
3177                                                                                                 180.00
3178                                                                                                   1.50
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3181                                                                                                1000.00
3182                                                                                                 272.00
3183                                                                                                  10.00
3184                                                                                                 500.00
3185                                                                                                 300.00
3186                                                                                                 272.00
3187                                                                                                1000.00
3188                                                                                                 320.00
3189                                                                                                 310.00
3190                                                                                                 300.00
3191                                                                                                   0.30
3192                                                                                                   1.00
3193                                                                                                 100.00
3194                                                                                                1000.00
3195                                                                                                 272.00
3196                                                                                                1000.00
3197                                                                                                 450.00
3198                                                                                                   1.50
3199                                                                                                 600.00
3200                                                                                                  20.00
3201                                                                                                   1.00
3202                                                                                                  15.00
3203                                                                                                   1.00
3204                                                                                                   8.00
3205                                                                                                 120.00
3206                                                                                                   8.20
3207                                                                                               45293.00
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3210                                                                                                 272.00
3211                                                                                                1000.00
3212                                                                                                 1 pump
3213                                                                                                   0.01
3214                                                                                                 500.00
3215                                                                                                 500.00
3216                                                                                                   1.50
3217                                                                                                 100.00
3218                                                                                                   1.00
3219                                                                                                   2.00
3220                                                                                                  75.00
3221                                                                                                   0.70
3222                                                                                                   0.35
3223                                                                                                   0.35
3224                                                                                                   0.30
3225                                                                                                   0.30
3226                                                                                                   1.00
3227                                                                                                1000.00
3228                                                                                                   0.30
3229                                                                                                   0.60
3230                                                                                                1000.00
3231                                                                                                 500.00
3232                                                                                                   0.30
3233                                                                                                   1.00
3234                                                                                                   1.00
3235                                                                                                1000.00
3236                                                                                                   0.30
3237                                                                                                   1.00
3238                                                                                                   1.00
3239                                                                                                  34.50
3240                                                                                                 272.00
3241                                                                                                1000.00
3242                                                                                                   0.30
3243                                                                                                   1.00
3244                                                                                                   1.00
3245                                                                                                  68.00
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3248                                                                                                 500.00
3249                                                                                                  10.00
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3252                                                                                                1900.00
3253                                                                           based on weight (50-100 lbs)
3254                                                                                                 50-100
3255                                                                                                 50-100
3256                                                                                                  10.00
3257                                                                           based on weight (50-100 lbs)
3258                                                                                                 300.00
3259                                                                                                 100.00
3260                                                                                                  56.00
3261                                                                                                 500 mg
3262                                                                                                 136.00
3263                                                                                                   1.00
3264                                                                                                   1.00
3265                                                                                                   1.00
3266                                                                                                 100.00
3267                                                                                                 250.00
3268                                                                                                   1.00
3269                                                                                                   1.00
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3272                                                                                                   1.00
3273                                                                                                   1.00
3274                                                                                                 500.00
3275                                                                                                 625.00
3276                                                                                                  14.00
3277                                                                                                 750.00
3278                                                                                        0.25 inch strip
3279                                                                                                  50.00
3280                                                                           based on weight (50-100 lbs)
3281                                                                                                   1.00
3282                                                                                                 375.00
3283                                                                                                  50.00
3284                                                                           based on weight (51-100 lbs)
3285                                                                                                 500.00
3286                                                                                                 100.00
3287                                                                                            application
3288                                                                                                 200.00
3289                                                                                                  10.00
3290                                                                                                  40.00
3291                                                                                            application
3292                                                                                                 500.00
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3295                                                                                                 500.00
3296                                                                                                   1.00
3297                                                                                                 150.00
3298                                                                                                  40.00
3299                                                                                                  15.00
3300                                                                           based on weight (51-100 lbs)
3301                                                                                                  50.00
3302                                                                                                  50.00
3303                                                                                                 50-100
3304                                                                                                   1.00
3305                                                                                           small amount
3306                                                                                                 272.00
3307                                                                                                1400.00
3308                                                                                                 272.00
3309                                                                                                1000.00
3310                                                                                                 272.00
3311                                                                                                1400.00
3312                                                                                           small amount
3313                                                                                           small amount
3314                                                                                                  23.00
3315                                                                                                   1.00
3316                                                                                                  80.00
3317                                                                                                 300.00
3318                                                                                                 150.00
3319                                                                                                 300.00
3320                                                                                                   6.00
3321                                                                                                1000.00
3322                                                                                                   0.60
3323                                                                                                   3.60
3324                                                                                                  15.00
3325                                                                                                  90.00
3326                                                                                                  60.00
3327                                                                                                  45.00
3328                                                                                                  23.00
3329                                                                                                  37.50
3330                                                                                                   1.00
3331                                                                                                   1.00
3332                                                                                                 500.00
3333                                                                                                   2.00
3334                                                                                                   4.00
3335                                                                                                   1.00
3336                                                                                                   1.00
3337                                                                                                 500.00
3338                                                                                                   1.00
3339                                                                           based on weight (51-100 lbs)
3340                                                                                                  75.00
3341                                                                                                  50.00
3342                                                                                            unspecified
3343                                                                                                 500.00
3344                                                                                                 500.00
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3347                                                                                                 500.00
3348                                                                                                 125.00
3349                                                                                                  13.50
3350                                                                                            unspecified
3351                                                                                                 227.00
3352                                                                                                 136.00
3353                                                                                                 114.00
3354                                                                                                 204.00
3355                                                                                                 136.00
3356                                                                                                   1.00
3357                                                                                                 150.00
3358                                                                                                 136.00
3359                                                                                                  44-88
3360                                                                                        based on weight
3361                                                                                                 150.00
3362                                                                                                 272.00
3363                                                                                                   4.00
3364                                                                                                  50.00
3365                                                                                                   1.00
3366                                                                                            unspecified
3367                                                                                                1250.00
3368                                                                                                 100.00
3369                                                                                                  27.00
3370                                                                                                   6.00
3371                                                                                                   6.00
3372                                                                                            unspecified
3373                                                                                                 227.00
3374                                                                                                 136.00
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3377                                                                                                 272.00
3378                                                                                                 136.00
3379                                                                                                   1.00
3380                                                                                                   5.00
3381                                                                                                1000.00
3382                                                                                                  10.00
3383                                                                                                 136.00
3384                                                                                                  44-88
3385                                                                                                   2.00
3386                                                                                                   2.00
3387                                                                                                   1.00
3388                                                                                                 272.00
3389                                                                                                   4.00
3390                                                                                                   0.80
3391                                                                                                 204.00
3392                                                                                                 600.00
3393                                                                                                   1.00
3394                                                                                            unspecified
3395                                                                                                 250.00
3396                                                                                                  68.00
3397                                                                                                1200.00
3398                                                                                                 500.00
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3400                                                                                                  11.50
3401                                                                                                  68.00
3402                                                                                                1000.00
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3407                                                                                                 50-100
3408                                                                                                  24-60
3409                                                                                                   1.00
3410                                                                                                 100.00
3411                                                                                                   1.00
3412                                                                                                 113.50
3413                                                                                                 200.00
3414                                                                                                  60.00
3415                                                                                                 113.50
3416                                                                                                   1.00
3417                                                                                                  60.00
3418                                                                                                   5.00
3419                                                                                                  60.00
3420                                                                                                  25.00
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3424                                                                                                   2.70
3425                                                                                            unspecified
3426                                                                                            unspecified
3427                                                                                                   3.75
3428                                                                                                1620.00
3429                                                                             based on weight (4-60 lbs)
3430                                                                                                  23.00
3431                                                                                                1000.00
3432                                                                                                  23.00
3433                                                                                                1000.00
3434                                                                                                 227.00
3435                                                                                                1000.00
3436                                                                                                  60.00
3437                                                                                           small amount
3438                                                                                                  60.00
3439                                                                                                 1 tube
3440                                                                                                 272.00
3441                                                                                                1000.00
3442                                                                                                 272.00
3443                                                                                                 136.00
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3450                                                                                                  11.50
3451                                                                                                23, 460
3452                                                                                                  23.00
3453                                                                                                  23.00
3454                                                                                                   9.80
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3460                                                                                                  23.00
3461                                                                                                   2.68
3462                                                                                                   0.70
3463                                                                                                   0.60
3464                                                                                                   0.80
3465                                                                                                  50 mg
3466                                                                                                 272.00
3467                                                                                                  50.00
3468                                                                                                   2.80
3469                                                                                                 272.00
3470                                                                                                  50.00
3471                                                                                                  50.00
3472                                                                                                 272.00
3473                                                                                                  50.00
3474                                                                                                 200.00
3475                                                                                                  50.00
3476                                                                                                 150.00
3477                                                                                                  50.00
3478                                                                                                   1.00
3479                                                                                                  23.00
3480                                                                                                   1.00
3481                                                                                                 750.00
3482                                                                                                   7.50
3483                                                                                                  23.00
3484                                                                                                 460.00
3485                                                                                                  23.00
3486                                                                                                 200.00
3487                                                                                                  45-88
3488                                                                              based on weight (25+ lbs)
3489                                                                                                 170.00
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3493                                                                                                  60.00
3494                                                                                                 750.00
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3499                                                                                                 500.00
3500                                                                                                  75.00
3501                                                                                                 200.00
3502                                                                                                1000.00
3503                                                                                                  50.00
3504                                                                                                  75.00
3505                                                                                                 250.00
3506                                                                                                  60.00
3507                                                                                                 500.00
3508                                                                                                  60.00
3509                                                                                                   3.00
3510                                                                                                   2.50
3511                                                                                                  75.00
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3518                                                                                                 100.00
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3521                                                                                                1000.00
3522                                                                           based on weight (51-100 lbs)
3523                                                                                                1000.00
3524                                                                                                 800.00
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3527                                                                                                 272.00
3528                                                                                                 200.00
3529                                                                                                  90.00
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3532                                                                                                  90.00
3533                                                                                                  75.00
3534                                                                                                  90.00
3535                                                                                            unspecified
3536                                                                                                  75.00
3537                                                                                                 100.00
3538                                                                                                 200.00
3539                                                                                                  20.00
3540                                                                                                  25.00
3541                                                                                                  30.00
3542                                                                                                  57.00
3543                                                                                                   0.05
3544                                                                                                   9.30
3545                                                                                                 810.00
3546                                                                                                  13.50
3547                                                                                                 272.00
3548                                                                                                  23.00
3549                                                                                                  23.00
3550                                                                                                  23.00
3551                                                                                                 272.00
3552                                                                                                  68.00
3553                                                                                                 500.00
3554                                                                                                  10.00
3555                                                                                                 272.00
3556                                                                                                  68.00
3557                                                                                                 272.00
3558                                                                                                   1.00
3559                                                                                                 500.00
3560                                                                                                   1.00
3561                                                                                                   1.00
3562                                                                                                   1.00
3563                                                                                                   1.00
3564                                                                                                   1.00
3565                                                                                                 100.00
3566                                                                                                   1.00
3567                                                                                                 100.00
3568                                                                                                1620.00
3569                                                                                                  27.00
3570                                                                                                 200.00
3571                                                                                                   1.50
3572                                                                                                  32.50
3573                                                                                                 375.00
3574                                                                                                   4.00
3575                                                                                                  55.00
3576                                                                                                1620.00
3577                                                                                                  27.00
3578                                                                                                 375.00
3579                                                                                                1620.00
3580                                                                                                  27.00
3581                                                                                    tablet/pill/capsule
3582                                                                                                   1.70
3583                                                                                                   0.09
3584                                                                                                   1.30
3585                                                                                                   3.40
3586                                                                                                   2.00
3587                                                                                                   8.50
3588                                                                                                1.5-2.5
3589                                                                                                1620.00
3590                                                                                                  27.00
3591                                                                                                   0.20
3592                                                                                                   0.30
3593                                                                                                   3.00
3594                                                                                                   0.03
3595                                                                                                   1.40
3596                                                                                                  75.00
3597                                                                                                 200.00
3598                                                                                                 100.00
3599                                                                                                 200.00
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3602                                                                                                  75.00
3603                                                                                                 100.00
3604                                                                                                 190.00
3605                                                                                                  80.00
3606                                                                                                   1.00
3607                                                                                                   1.00
3608                                                                                                  16.00
3609                                                                                                  75.00
3610                                                                                                   2.00
3611                                                                                                1620.00
3612                                                                                                  27.00
3613                                                                                                  16.00
3614                                                                                                1620.00
3615                                                                                                  27.00
3616                                                                                                   1.00
3617                                                                                                   3.00
3618                                                                                                  80.00
3619                                                                                                23, 228
3620                                                                                                 375.00
3621                                                                                                  16.00
3622                                                                                           pack/package
3623                                                                                                  80.00
3624                                                                                                  11.50
3625                                                                                                  60.00
3626                                                                                                  20.00
3627                                                                                                 272.00
3628                                                                                                  40.00
3629                                                                                                 500.00
3630                                                                                                  10.00
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3633                                                                                                 100.00
3634                                                                                                 230.00
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3637                                                                                                 325.00
3638                                                                                                  50.00
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3642                                                                                                 250.00
3643                                                                                                  20.00
3644                                                                                                1300.00
3645                                                                                                   5.00
3646                                                                                                   4.00
3647                                                                                                   4.00
3648                                                                                                   4.00
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3653                                                                                                   7.00
3654                                                                                                 500.00
3655                                                                                                  68.00
3656                                                                                                 250.00
3657                                                                                                   6.00
3658                                                                                                 102.00
3659                                                                                                 375.00
3660                                                                                                   1.34
3661                                                                                                 136.00
3662                                                                                                   2.68
3663                                                                                                   1.00
3664                                                                                                 272.00
3665                                                                                                 136.00
3666                                                                                                  spray
3667                                                                                           small amount
3668                                                                                                   1.00
3669                                                                                                   1.00
3670                                                                                                   1.00
3671                                                                                                  23.00
3672                                                                                                 136.00
3673                                                                                                  16.00
3674                                                                                                  16.00
3675                                                                                           small amount
3676                                                                                                1000.00
3677                                                                                                  23.00
3678                                                                                                   1.00
3679                                                                                                  75.00
3680                                                                                                1000.00
3681                                                                                                   2.70
3682                                                                                                   3.70
3683                                                                                                   0.52
3684                                                                                            unspecified
3685                                                                                            unspecified
3686                                                                                                1000.00
3687                                                                                                  75.00
3688                                                                                                   6.00
3689                                                                                                   1.00
3690                                                                                                   1.00
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3694                                                                                                  16.00
3695                                                                                                  16.00
3696                                                                                                 272.00
3697                                                                                                 500.00
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3700                                                                                                  50.00
3701                                                                           based on weight (51-100 lbs)
3702                                                                                                 750.00
3703                                                                                                 500.00
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3707                                                                                                 200.00
3708                                                                                                 300.00
3709                                                                                                  74.00
3710                                                                                            unspecified
3711                                                                                                  75.00
3712                                                                                                 250.00
3713                                                                                                 187.50
3714                                                                                                 125.00
3715                                                                                                  62.50
3716                                                                                                  12.50
3717                                                                                                  10.00
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3720                                                                                                   1.00
3721                                                                                                 272.00
3722                                                                                                  68.00
3723                                                                                                   2.50
3724                                                                                                  60.00
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3727                                                                                                 272.00
3728                                                                                                  16.08
3729                                                                                                   3.00
3730                                                                                                   5.00
3731                                                                                                  50.00
3732                                                                                                 272.00
3733                                                                                                   1.00
3734                                                                                                  10.00
3735                                                                                                   gtts
3736                                                                                                 500.00
3737                                                                                                 100.00
3738                                                                                                1 mg/kg
3739                                                                                                 800.00
3740                                                                                                  75.00
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3746                                                                                                  90.00
3747                                                                                                  10.00
3748                                                                                                 100.00
3749                                                                                                   1.00
3750                                                                                          23 mg, 460 mg
3751                                                                                                   1.00
3752                                                                                                 272.00
3753                                                                                                 227.00
3754                                                                                                   0.02
3755                                                                                                 500.00
3756                                                                                                   0.01
3757                                                                                                 200.00
3758                                                                                                   0.01
3759                                                                                                   0.02
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3761                                                                                                   1.00
3762                                                                                                 150.00
3763                                                                                                   1.00
3764                                                                                                  10.00
3765                                                                                                  10.00
3766                                                                                                 300.00
3767                                                                                                  50.00
3768                                                                                                 100.00
3769                                                                                                 250.00
3770                                                                                                1620.00
3771                                                                                                   5.00
3772                                                                                                   1.00
3773                                                                                            application
3774                                                                                                   0.03
3775                                                                                                1692.00
3776                                                                                                 375.00
3777                                                                                                  16.00
3778                                                                                                   1.00
3779                                                                                                1620.00
3780                                                                                                 100.00
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3787                                                                                                1620.00
3788                                                                                                  70.00
3789                                                                                            unspecified
3790                                                                                                  16.00
3791                                                                                                   1.00
3792                                                                                                 250.00
3793                                                                                                   1.00
3794                                                                                                   5.00
3795                                                                                                   1.00
3796                                                                                                  10.00
3797                                                                                                  spray
3798                                                                                            as directed
3799                                                                                                  16.00
3800                                                                                            application
3801                                                                                                  16.00
3802                                                                                                  75.00
3803                                                                                              1200-2400
3804                                                                                                 200 mg
3805                                                                                                  16.00
3806                                                                                                 250.00
3807                                                                                                   5.00
3808                                                                                                  75.00
3809                                                                                                 120.00
3810                                                                                                 272.00
3811                                                                                                  75.00
3812                                                                                                  75.00
3813                                                                                                 272.00
3814                                                                                                 272.00
3815                                                                                        based on weight
3816                                                                                                   1.00
3817                                                                                                   2.90
3818                                                                                                   5.80
3819                                                                                                   1.00
3820                                                                                                  60.00
3821                                                                                                 170.00
3822                                                                                                   2.00
3823                                                                                                  60.00
3824                                                                                                   1.00
3825                                                                                                  20.00
3826                                                                                                  75.00
3827                                                                                                 560.00
3828                                                                                                 500.00
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3831                                                                                                1620.00
3832                                                                                                  50.00
3833                                                                                                   2.50
3834                                                                                                   3.00
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3841                                                                                                 272.00
3842                                                                                                 136.00
3843                                                                                                   0.40
3844                                                                                                   3.00
3845                                                                                                   0.40
3846                                                                                                  32.50
3847                                                                                                  50.00
3848                                                                                        0.25 inch strip
3849                                                                                                 136.00
3850                                                                                                   1.00
3851                                                                                                  32.50
3852                                                                                                 500.00
3853                                                                                                  50.00
3854                                                                                                 500.00
3855                                                                                                 200.00
3856                                                                                                  50.00
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3862                                                                                                  37.50
3863                                                                                                 560.00
3864                                                                                                 500.00
3865                                                                                                 250.00
3866                                                                                                  50.00
3867                                                                                           small amount
3868                                                                                                 272.00
3869                                                                                                 136.00
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3873                                                                                                   0.40
3874                                                                                           small amount
3875                                                                                                 272.00
3876                                                                                                 136.00
3877                                                                                                   0.40
3878                                                                                                   0.30
3879                                                                                                   0.30
3880                                                                                                   0.80
3881                                                                           based on weight (51-100 lbs)
3882                                                                                                 960.00
3883                                                                                                 272.00
3884                                                                                                  45-88
3885                                                                                                  45-88
3886                                                                           based on weight (51-100 lbs)
3887                                                                                                 113.50
3888                                                                                                   3.00
3889                                                                           based on weight (51-100 lbs)
3890                                                                                                  45-88
3891                                                                                                 272.00
3892                                                                                                   2.68
3893                                                                                                 200.00
3894                                                                                                  10.00
3895                                                                                                1000.00
3896                                                                                                  44-88
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3899                                                                                                 100.00
3900                                                                           based on weight (51-100 lbs)
3901                                                                                                 272.00
3902                                                                                                  44-88
3903                                                                           based on weight (51-100 lbs)
3904                                                                                                  45-88
3905                                                                                                  10.00
3906                                                                           based on weight (51-100 lbs)
3907                                                                                                  45-88
3908                                                                                                 272.00
3909                                                                                                   2.68
3910                                                                                                1000.00
3911                                                                           based on weight (51-100 lbs)
3912                                                                                                  45-88
3913                                                                                                 272.00
3914                                                                                                 272.00
3915                                                                                                  23.00
3916                                                                                                 460.00
3917                                                                                                 272.00
3918                                                                                                 227.00
3919                                                                                                 272.00
3920                                                                                                 227.00
3921                                                                                                   2.68
3922                                                                                                   4.00
3923                                                                                                   2.68
3924                                                                                                  23.00
3925                                                                                                  23.00
3926                                                                                                  23.00
3927                                                                                                 100.00
3928                                                                                                  75.00
3929                                                                                                  50.00
3930                                                                                                1647.00
3931                                                                                                 500.00
3932                                                                                                 250.00
3933                                                                                                  50.00
3934                                                                                                   3.60
3935                                                                                                 843.50
3936                                                                                                  41-60
3937                                                                                                   1.00
3938                                                                           based on weight (51-100 lbs)
3939                                                                                                 100.00
3940                                                                                                   5.00
3941                                                                                                 200.00
3942                                                                                                  25-60
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3947                                                                                                  16.00
3948                                                                                                  20.00
3949                                                                                                   1.00
3950                                                                                                 375.00
3951                                                                                                 100.00
3952                                                                           based on weight (51-100 lbs)
3953                                                                                                  50.00
3954                                                                                                 375.00
3955                                                                                                  24-50
3956                                                                                                  60.00
3957                                                                                                   2.00
3958                                                                                                   1.00
3959                                                                                                 100.00
3960                                                                                                   1.00
3961                                                                                                 100.00
3962                                                                                                 375.00
3963                                                                                                 100.00
3964                                                                                                  60.00
3965                                                                                                  75.00
3966                                                                                                1647.00
3967                                                                                                  25.00
3968                                                                                                  25.00
3969                                                                                                  12.50
3970                                                                                                 826.50
3971                                                                                                   3.60
3972                                                                          based on weight (40.1-60 lbs)
3973                                                                                                  12.50
3974                                                                                                  50.00
3975                                                                                                  12.50
3976                                                                                                  35.00
3977                                                                                                 200.00
3978                                                                                                   2.00
3979                                                                                                   2.00
3980                                                                           based on weight (51-100 lbs)
3981                                                                                                  24-60
3982                                                                                                  12.50
3983                                                                                                  12.50
3984                                                                           based on weight (51-100 lbs)
3985                                                                                                  24-60
3986                                                                                                 300.00
3987                                                                                                 150.00
3988                                                                                                 150.00
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
3991                                                                                                  12.50
3992                                                                                                 150.00
3993                                                                                                 375.00
3994                                                                                                 100.00
3995                                                                                                   1.10
3996                                                                                                  12.50
3997                                                                                                  60.00
3998                                                                                                  12.50
3999                                                                                                 110.00
4000                                                                                            unspecified
4001                                                                                                   1.00
4002                                                                                                   1.20
4003                                                                                                  12.50
4004                                                                                                  12.50
4005                                                                                                   1.10
4006                                                                                                   1.00
4007                                                                                                 100.00
4008                                                                                                  60.00
4009                                                                                                   2.00
4010                                                                                                   1.00
4011                                                                                                 500.00
4012                                                                                                 136.00
4013                                                                                                  23.00
4014                                                                                                  23.00
4015                                                                                                  23.00
4016                                                                                                   1.00
4017                                                                           based on weight (51-100 lbs)
4018                                                                                                 200.00
4019                                                                                                  16.00
4020                                                                                                 300.00
4021                                                                                                 200.00
4022                                                                                                 500.00
4023                                                                                                 150.00
4024                                                                                                 100.00
4025                                                                                                  50.00
4026                                                                                                   6.00
4027                                                                                                  10.00
4028                                                                                                 111.00
4029                                                                                                1000.00
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4032                                                                                                   4.70
4033                                                                                                 136.00
4034                                                                                                  75.00
4035                                                                                                 100.00
4036                                                                                                 200.00
4037                                                                                                  23.00
4038                                                                                                1620.00
4039                                                                                                  23.00
4040                                                                                                1620.00
4041                                                                                                 500.00
4042                                                                                            unspecified
4043                                                                                                  75.00
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4046                                                                                                   1.40
4047                                                                                                  80 mg
4048                                                                                                 500.00
4049                                                                                                 720.00
4050                                                                                                 500.00
4051                                                                                                  10.00
4052                                                                                                  25.00
4053                                                                                                   3.00
4054                                                                                                   9.00
4055                                                                                                 500.00
4056                                                                                                  10.00
4057                                                                                                  60.00
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4061                                                                                                 272.00
4062                                                                                                 227.00
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4065                                                                                                  16.00
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4078                                                                                                 100.00
4079                                                                                                 500.00
4080                                                                                                 750.00
4081                                                                                                 100.00
4082                                                                                                 113.50
4083                                                                                                 750.00
4084                                                                                                 170.00
4085                                                                                                 100.00
4086                                                                                                  70.00
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4090                                                                                                 113.50
4091                                                                                                   1.20
4092                                                                                      1 syringe/pipette
4093                                                                                                   1.50
4094                                                                                                   3.00
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4098                                                                                                 500.00
4099                                                                                                 150.00
4100                                                                                                 100.00
4101                                                                                                   8.00
4102                                                                                                   3.00
4103                                                                                                 150.00
4104                                                                                                 500.00
4105                                                                                                 720.00
4106                                                                                                 650.00
4107                                                                                                 150.00
4108                                                                                                  60.00
4109                                                                                                   1.00
4110                                                                                                  45.00
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4115                                                                                                 200.00
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4121                                                                                                1620.00
4122                                                                                                 60-120
4123                                                                                                 200.00
4124                                                                                                  16.00
4125                                                                                               27, 1620
4126                                                                                                 200.00
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4129                                                                                                 200.00
4130                                                                                                 60-120
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4135                                                                                                  16.00
4136                                                                                                  50.00
4137                                                                                                 100.00
4138                                                                                                 100.00
4139                                                                                                   3.00
4140                                                                                                   7.50
4141                                                                                                  20.00
4142                                                                                                 160.00
4143                                                                                                  10.00
4144                                                                                                 500.00
4145                                                                                                   3.00
4146                                                                                                   6.00
4147                                                                                                   1.50
4148                                                                                                 500.00
4149                                                                                                 227.00
4150                                                                                                 100.00
4151                                                                                                  73.00
4152                                                                                                 500.00
4153                                                                                                 500.00
4154                                                                                                   1.00
4155                                                                                                   1.34
4156                                                                                                 272.00
4157                                                                                                 227.00
4158                                                                                                   2.68
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4163                                                                                                   2.00
4164                                                                                                   4.40
4165                                                                                                  20.00
4166                                                                                                  37.50
4167                                                                                                1000.00
4168                                                                                                   1.00
4169                                                                                                  80.00
4170                                                                                                   4.00
4171                                                                                                 500.00
4172                                                                            based on weight (45-88 lbs)
4173                                                                                                 272.00
4174                                                                                                 272.00
4175                                                                                                   1.00
4176                                                                                                   1.00
4177                                                                                                 272.00
4178                                                                                                1620.00
4179                                                                                                1620.00
4180                                                                                                 360.00
4181                                                                                                 360.00
4182                                                                                                 240.00
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4185                                                                                                 100.00
4186                                                                                                  75.00
4187                                                                                                 200.00
4188                                                                                                 240.00
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4192                                                                                                  75.00
4193                                                                                            application
4194                                                                                                 200.00
4195                                                                                                   6.00
4196                                                                                                1620.00
4197                                                                                                   1.00
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4200                                                                                                 200.00
4201                                                                                                  16.00
4202                                                                                                  23.00
4203                                                                                                  80.00
4204                                                                                                   1 ml
4205                                                                                                 375.00
4206                                                                                                  80.00
4207                                                                                                 810.00
4208                                                                                                 272.00
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4211                                                                                                 810.00
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4214                                                                                                  23.00
4215                                                                                                23, 460
4216                                                                                            unspecified
4217                                                                                                  20.00
4218                                                                                            unspecified
4219                                                                                                 100.00
4220                                                                                                 120.00
4221                                                                                                 100.00
4222                                                                                                 100.00
4223                                                                                                  60.00
4224                                                                                                  28.00
4225                                                                                                1000.00
4226                                                                                                 136.00
4227                                                                                                 500.00
4228                                                                                                 500.00
4229                                                                                                15.7 ml
4230                                                                                                 150.00
4231                                                                                                  20.00
4232                                                                                                 120.00
4233                                                                                                 150.00
4234                                                                                                 100 mg
4235                                                                                                   0.60
4236                                                                                                   2.00
4237                                                                                                   1.00
4238                                                                                                   1.00
4239                                                                                                 300.00
4240                                                                                                 125.00
4241                                                                                                 375.00
4242                                                                                                 150.00
4243                                                                                                  70.00
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4246                                                                                                 272.00
4247                                                                                            unspecified
4248                                                                                                   0.50
4249                                                                                                   1.00
4250                                                                                                 875.00
4251                                                                                                 272.00
4252                                                                                                 136.00
4253                                                                                                   0.50
4254                                                                                                 272.00
4255                                                                                                   0.50
4256                                                                                                 136.00
4257                                                                                                 272.00
4258                                                                                                 136.00
4259                                                                                                   0.50
4260                                                                                                  60.00
4261                                                                                                 272.00
4262                                                                                                 136.00
4263                                                                                                   0.50
4264                                                                                                 310.00
4265                                                                                                 1 drop
4266                                                                                            as directed
4267                                                                                                  70.00
4268                                                                                                   0.13
4269                                                                                                   0.11
4270                                                                                                   0.20
4271                                                                                                   6.00
4272                                                                                                  30.00
4273                                                                                                  60.00
4274                                                                                            unspecified
4275                                                                                                 500.00
4276                                                                                                   0.25
4277                                                                                                  12.50
4278                                                                                                 250.00
4279                                                                                                 125.00
4280                                                                                                 250.00
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4283                                                                                                 227.00
4284                                                                                                 272.00
4285                                                                                                 272.00
4286                                                                                                 272.00
4287                                                                                                   1.00
4288                                                                                                   2.00
4289                                                                                                  25.00
4290                                                                                                 300.00
4291                                                                                                 100.00
4292                                                                                                  50.00
4293                                                                                                   7.20
4294                                                                                                 150.00
4295                                                                                                 125.00
4296                                                                                                  65.00
4297                                                                                                  50.00
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4300                                                                                                 750.00
4301                                                                                                 100.00
4302                                                                           based on weight (51-100 lbs)
4303                                                                                                  45-88
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4310                                                                                                1200.00
4311                                                                                            unspecified
4312                                                                                                  75.00
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4315                                                                                                  60.00
4316                                                                                                   1.60
4317                                                                                                  75.00
4318                                                                                                 300.00
4319                                                                                                   5.00
4320                                                                                                 200.00
4321                                                                                                 120.00
4322                                                                                                 200.00
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4327                                                                                                 500.00
4328                                                                                                   1.00
4329                                                                                                 100.00
4330                                                                                                  50.00
4331                                                                                                  75.00
4332                                                                                                   5.00
4333                                                                                                 300.00
4334                                                                                                   1 ml
4335                                                                                                   2.00
4336                                                                                            unspecified
4337                                                                                                   1.00
4338                                                                         based on weight (50.1-100 lbs)
4339                                                                                                   1.00
4340                                                                                                   1.00
4341                                                                                                 100 mg
4342                                                                                                  50.00
4343                                                                                                   1.00
4344                                                                                                  10.00
4345                                                                                                 250.00
4346                                                                                                 500.00
4347                                                                                                   1.00
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4351                                                                                                  41-60
4352                                                                                                   1.00
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4355                                                                                                  15.00
4356                                                                                                  17.00
4357                                                                                                   0.40
4358                                                                                                  75.00
4359                                                                                                 60-120
4360                                                                                                1 spray
4361                                                                                                  16.00
4362                                                                                                 810.00
4363                                                                                                 100.00
4364                                                                                                 900.00
4365                                                                                                 375.00
4366                                                                                                  75.00
4367                                                                                                  50.00
4368                                                                                        based on weight
4369                                                                                                   1.00
4370                                                                                                 500.00
4371                                                                                        based on weight
4372                                                                                                 250.00
4373                                                                                                   1.00
4374                                                                                                 500.00
4375                                                                                                 200.00
4376                                                                                                 500.00
4377                                                                                                  25.00
4378                                                                                                 100.00
4379                                                                                                   1.00
4380                                                                                                 200.00
4381                                                                                                 272.00
4382                                                                                                 227.00
4383                                                                                                  50.00
4384                                                                                               350, 900
4385                                                                                                   1.00
4386                                                                                                 150.00
4387                                                                                                 272.00
4388                                                                                                 900.00
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4391                                                                                                  23.00
4392                                                                                                  23.00
4393                                                                                                  23.00
4394                                                                                                 130.00
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4396                                                                                                  16.00
4397                                                                                                  60.00
4398                                                                                                  60.00
4399                                                                                                 272.00
4400                                                                                                  16.00
4401                                                                                                  16.00
4402                                                                                                  16.00
4403                                                                                                  16.00
4404                                                                                                  75.00
4405                                                                                              13.5, 810
4406                                                                                                 250.00
4407                                                                                                 250.00
4408                                                                                                 150.00
4409                                                                                         1 pack/package
4410                                                                                                   1.50
4411                                                                                                 500.00
4412                                                                                                 500.00
4413                                                                                                  10.00
4414                                                                                                  50.00
4415                                                                                                  75.00
4416                                                                                                   2.50
4417                                                                                                   2.60
4418                                                                                                   3.00
4419                                                                                                   4.50
4420                                                                                                  75.00
4421                                                                                                 375.00
4422                                                                                                1500.00
4423                                                                                                 750.00
4424                                                                                                 500.00
4425                                                                                                  30.00
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4429                                                                                                 500.00
4430                                                                                                  spray
4431                                                                                                  spray
4432                                                                                                 100.00
4433                                                                                                 175.00
4434                                                                                                 150.00
4435                                                                                                 270.00
4436                                                                                                1000.00
4437                                                                                                   1.00
4438                                                                                                   1.00
4439                                                                                                 150.00
4440                                                                                                   1.00
4441                                                                                                   1.00
4442                                                                                                   1.00
4443                                                                                                 560.00
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4447                                                                                                   1.00
4448                                                                                                   2.00
4449                                                                                                 375.00
4450                                                                                                   2.00
4451                                                                                                 150.00
4452                                                                                                   7.50
4453                                                                                                   3.00
4454                                                                                               inhalant
4455                                                                                                  50.00
4456                                                                                                   2.60
4457                                                                                                 190.00
4458                                                                                                   9.50
4459                                                                                                   0.36
4460                                                                                                  15.00
4461                                                                                                  75.00
4462                                                                                                 375.00
4463                                                                                                   6.00
4464                                                                                                 100.00
4465                                                                                                 375.00
4466                                                                                                 125.00
4467                                                                                                  40.00
4468                                                                                                 170.00
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4473                                                                                                 170.00
4474                                                                                                 500.00
4475                                                                                                 375.00
4476                                                                                                  75.00
4477                                                                                                  40.00
4478                                                                                                  12.00
4479                                                                                                 100.00
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4482                                                                                                   2.00
4483                                                                                        based on weight
4484                                                                                                 136.00
4485                                                                                                   1.00
4486                                                                               3 tablets/pills/capsules
4487                                                                                                   2.00
4488                                                                                                   1 ml
4489                                                                                                  16.00
4490                                                                                                   8.00
4491                                                                                                   1 ml
4492                                                                                                 500.00
4493                                                                                                  60.00
4494                                                                                                   8.00
4495                                                                                                  16.00
4496                                                                                                   8.00
4497                                                                           based on weight (51-100 lbs)
4498                                                                                                 60-121
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4503                                                                                                  16.00
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4506                                                                                                   0.96
4507                                                                                                  40.00
4508                                                                                                  16.00
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4512                                                                                                   1.00
4513                                                                                                  16.00
4514                                                                                                   1.00
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4518                                                                                                   1.00
4519                                                                                                  16.00
4520                                                                                                  75.00
4521                                                                                                   1.00
4522                                                                                                   1.00
4523                                                                                                   8.00
4524                                                                           based on weight (50-100 lbs)
4525                                                                                                 272.00
4526                                                                                                 228.00
4527                                                                                                 228.00
4528                                                                                                1000.00
4529                                                                                                   1.00
4530                                                                                                   1.00
4531                                                                                                   1.00
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4537                                                                                                1000.00
4538                                                                                                   1.00
4539                                                                                                 272.00
4540                                                                                                 272.00
4541                                                                                                   4.70
4542                                                                                                 200.00
4543                                                                                                  50.00
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4546                                                                                                  75.00
4547                                                                                           small amount
4548                                                                                                 200.00
4549                                                                                                 200.00
4550                                                                                                  75.00
4551                                                                                                 375.00
4552                                                                                                   1.00
4553                                                                                                  75.00
4554                                                                                                  75.00
4555                                                                                                  25.00
4556                                                                                                 272.00
4557                                                                                                 250.00
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4563                                                                                                 100.00
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4570                                                                                                 300.00
4571                                                                                                  50.00
4572                                                                                                 300.00
4573                                                                                                  60.00
4574                                                                                                 500.00
4575                                                                                                 500.00
4576                                                                                                   8.00
4577                                                                                                   8.00
4578                                                                                                   1.00
4579                                                                                                 300.00
4580                                                                                                  50.00
4581                                                                                                   8.00
4582                                                                                                 810.00
4583                                                                                                 272.00
4584                                                                                                 227.00
4585                                                                                                 136.00
4586                                                                                                 272.00
4587                                                                           based on weight (51-100 lbs)
4588                                                                                                 136.00
4589                                                                                                 750.00
4590                                                                                                 272.00
4591                                                                                                 136.00
4592                                                                                                 750.00
4593                                                                                                 227.00
4594                                                                                                 136.00
4595                                                                                                  80.00
4596                                                                                                 750.00
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4601                                                                                                 272.00
4602                                                                                                 130.00
4603                                                                                                  16.00
4604                                                                                                 272.00
4605                                                                                                 100.00
4606                                                                                                  50.00
4607                                                                                                  16.00
4608                                                                                                   1.50
4609                                                                                                  30.00
4610                                                                                                 227.00
4611                                                                                               27, 1620
4612                                                                                                 300.00
4613                                                                                                  75.00
4614                                                                                                 240.00
4615                                                                                                 250.00
4616                                                                                                   4.00
4617                                                                                             0.57 mg/ml
4618                                                                                                  27.00
4619                                                                                                1620.00
4620                                                                                                   1.00
4621                                                                                                 750.00
4622                                                                                                 200.00
4623                                                                                                  75.00
4624                                                                                                1620.00
4625                                                                                                  23.00
4626                                                                                                 460.00
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4632                                                                                                 750.00
4633                                                                                                1600.00
4634                                                                                            unspecified
4635                                                                                                  23.00
4636                                                                                                 750.00
4637                                                                                                1600.00
4638                                                                                        2.68 ml of 9.8%
4639                                                                                                   1.00
4640                                                                                                  15 au
4641                                                                                                  23.00
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4650                                                                                                   0.01
4651                                                                                           small amount
4652                                                                                        moderate amount
4653                                                                                                   3.18
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4656                                                                                                   1.00
4657                                                                                                   1.00
4658                                                                                                   1.00
4659                                                                                                1000.00
4660                                                                                                1000.00
4661                                                                                                1000.00
4662                                                                                                1000.00
4663                                                                                                   1.00
4664                                                                                                   1.00
4665                                                                                                 250.00
4666                                                                                                 500.00
4667                                                                                                 300.00
4668                                                                                                  50.00
4669                                                                                                  50.00
4670                                                                                                   1.00
4671                                                                                                   1.00
4672                                                                                                 200.00
4673                                                                                                 625.00
4674                                                                                                 225.00
4675                                                                                                 500.00
4676                                                                                                 500.00
4677                                                                                                   1.00
4678                                                                                                   1.00
4679                                                                                                   3.00
4680                                                                                                   3.00
4681                                                                                                  50.00
4682                                                                                                   1.00
4683                                                                                                   1.00
4684                                                                                                   1.00
4685                                                                                                 300.00
4686                                                                                                 200.00
4687                                                                                                  16.00
4688                                                                                                 125 mg
4689                                                                                                 272.00
4690                                                                                                 272.00
4691                                                                                                 273.00
4692                                                                                                  68.00
4693                                                                                                 50-100
4694                                                                                                  24-60
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4698                                                                                                 136.00
4699                                                                                                 100.00
4700                                                                                                   5 mg
4701                                                                                                 150.00
4702                                                                                                 250.00
4703                                                                                                  23 mg
4704                                                                                                 136.00
4705                                                                                                  23 mg
4706                                                                                                 500.00
4707                                                                                                 100.00
4708                                                                                                  12.50
4709                                                                                                   7.50
4710                                                                                                 100.00
4711                                                                                                 1 drop
4712                                                                                                   0.40
4713                                                                                                 272.00
4714                                                                                                   0.40
4715                                                                                                   0.20
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4718                                                                                                   0.40
4719                                                                                                  drops
4720                                                                                                  drops
4721                                                                                                  23.00
4722                                                                                                   0.40
4723                                                                                                1000.00
4724                                                                                                   3.60
4725                                                                                                 272.00
4726                                                                           based on weight (51-100 lbs)
4727                                                                                                   0.40
4728                                                                                                 500.00
4729                                                                                                   1.70
4730                                                                                                   0.60
4731                                                                                                  60.00
4732                                                                                                 272.00
4733                                                                                                  80.00
4734                                                                                                  60.00
4735                                                                                                   0.60
4736                                                                                                   1.50
4737                                                                                                  60.00
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4740                                                                                                   3.00
4741                                                                                                 200.00
4742                                                                                                   5.00
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4746                                                                                                 136.00
4747                                                                                                 900.00
4748                                                                                                 1 unit
4749                                                                                                   1.00
4750                                                                                                 900.00
4751                                                                                                 272.00
4752                                                                                                   5.00
4753                                                                                                 500.00
4754                                                                                                   0.50
4755                                                                                                 900.00
4756                                                                                                   0.50
4757                                                                                        based on weight
4758                                                                                                   1.50
4759                                                                                                   1.00
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4762                                                                                                   5.10
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4765                                                                                                  80.00
4766                                                                              based on weight (55+ lbs)
4767                                                                                                   5.50
4768                                                                                                  80.00
4769                                                                                                 200.00
4770                                                                                                 110.00
4771                                                                                                 200.00
4772                                                                                                   6.00
4773                                                                                                  16.00
4774                                                                                                 100.00
4775                                                                                                   2.50
4776                                                                                                  50.00
4777                                                                                            unspecified
4778                                                                                                  80.00
4779                                                                                                  50.00
4780                                                                                            unspecified
4781                                                                                                 200.00
4782                                                                                            unspecified
4783                                                                                                  16.00
4784                                                                                                   1.50
4785                                                                                                  80.00
4786                                                                                                   1.00
4787                                                                                                  16.00
4788                                                                                                 300.00
4789                                                                                                 200.00
4790                                                                                                  80.00
4791                                                                                                 200.00
4792                                                                                                 360.00
4793                                                                                                  80.00
4794                                                                                                 200.00
4795                                                                                                 100.00
4796                                                                                                 150.00
4797                                                                                                   5.00
4798                                                                                                  20 mg
4799                                                                                                 200.00
4800                                                                                                 200.00
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4808                                                                                                  23.00
4809                                                                                                 750.00
4810                                                                                                  75.00
4811                                                                                                  10.00
4812                                                                                                   1.40
4813                                                                                            unspecified
4814                                                                                                  60.00
4815                                                                                                   2.00
4816                                                                                                 250.00
4817                                                                                                   1.00
4818                                                                                                 500.00
4819                                                                                                 500.00
4820                                                                                                  60.00
4821                                                                                                   1.00
4822                                                                                                  10.80
4823                                                                                                  75.00
4824                                                                            based on weight (20-55 lbs)
4825                                                                                                  68.00
4826                                                                                            unspecified
4827                                                                                                  10.80
4828                                                                                            unspecified
4829                                                                                                  37.50
4830                                                                                                  23.00
4831                                                                                                1000.00
4832                                                                                                 0.1, 1
4833                                                                                                1000.00
4834                                                                                                  23.00
4835                                                                                                  23.00
4836                                                                                                1000.00
4837                                                                                                 100.00
4838                                                                                                   1.00
4839                                                                                                 150.00
4840                                                                                                   1.00
4841                                                                                                  16.00
4842                                                                                                   3.00
4843                                                                                                   2.00
4844                                                                                                 150.00
4845                                                                                                   2.00
4846                                                                                                   1.00
4847                                                                                                  60.00
4848                                                                                                1000.00
4849                                                                                                 100.00
4850                                                                                                 1 drop
4851                                                                                                   5.00
4852                                                                                                 150.00
4853                                                                                           small amount
4854                                                                                                  50.00
4855                                                                                               27, 1620
4856                                                                                                 810.00
4857                                                                                                  15.00
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4860                                                                                                 136.00
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4863                                                                                                 336.00
4864                                                                                                  10.00
4865                                                                                                   0.80
4866                                                                                                 180.00
4867                                                                                                1400.00
4868                                                                                                1000.00
4869                                                                                                   1.50
4870                                                                                                   1.00
4871                                                                                                  90.00
4872                                                                                                  50.00
4873                                                                                                1000.00
4874                                                                                                   5.00
4875                                                                                                  20.00
4876                                                                                                  20.00
4877                                                                                                  20.00
4878                                                                                                  70.00
4879                                                                                                  75.00
4880                                                                                                 750.00
4881                                                                                           small amount
4882                                                                                                   1.00
4883                                                                                                   1.00
4884                                                                                                 180.00
4885                                                                                                1200.00
4886                                                                                                  75.00
4887                                                                                                 100.00
4888                                                                                                   3.80
4889                                                                                                 500.00
4890                                                                                                 500.00
4891                                                                                                 300.00
4892                                                                                                   0.80
4893                                                                                                   5.00
4894                                                                                                   5.00
4895                                                                                                  50.00
4896                                                                                                  40.00
4897                                                                                                  33.20
4898                                                                                                  75.00
4899                                                                                                  20.00
4900                                                                                                  90.00
4901                                                                                                 272.00
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4903                                                                                                 272.00
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4906                                                                                                 272.00
4907                                                                                                 4.5-10
4908                                                                                                272 mcg
4909                                                                                                 272.00
4910                                                                                                 collar
4911                                                                                                 272.00
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4915                                                                                                1000.00
4916                                                                                                1000.00
4917                                                                                        23 mcg, 228 mcg
4918                                                                                                1000.00
4919                                                                                                 272.00
4920                                                                                                 228.00
4921                                                                                                 250.00
4922                                                                                                 180.00
4923                                                                                                 300.00
4924                                                                                                 300.00
4925                                                                                                  75.00
4926                                                                                                 300.00
4927                                                                                                 150.00
4928                                                                                                   1.00
4929                                                                                                  75.00
4930                                                                                                 300.00
4931                                                                                                 300.00
4932                                                                                                 150.00
4933                                                                                                  20.00
4934                                                                                                  75.00
4935                                                                           based on weight (51-100 lbs)
4936                                                                                                 136.00
4937                                                                                                 136.00
4938                                                                                                 136.00
4939                                                                                                  11.50
4940                                                                                                   1.00
4941                                                                                                  50.00
4942                                                                                                 125.00
4943                                                                                                 125.00
4944                                                                                                  50.00
4945                                                                                                 150.00
4946                                                                                                   1.00
4947                                                                                                 150.00
4948                                                                                                 125.00
4949                                                                                                   1.00
4950                                                                                                   1.00
4951                                                                                                 562.50
4952                                                                                                   0.40
4953                                                                                                1000.00
4954                                                                                                  27.00
4955                                                                                                1620.00
4956                                                                                            unspecified
4957                                                                                                   5.00
4958                                                                                                   6.00
4959                                                                                                  15.00
4960                                                                                           small amount
4961                                                                                                1620.00
4962                                                                                                  27.00
4963                                                                                                   2.00
4964                                                                                                1000.00
4965                                                                                                1620.00
4966                                                                                                  27.00
4967                                                                                                 180.00
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4970                                                                                                 360.00
4971                                                                                                  40.00
4972                                                                                                   1.00
4973                                                                                                  20.00
4974                                                                                                  23.00
4975                                                                                                  80.00
4976                                                                                                  80.00
4977                                                                                                 160.00
4978                                                                                                  40.00
4979                                                                                                 400.00
4980                                                                                           pack/package
4981                                                                                                23, 228
4982                                                                                                  80.00
4983                                                                                                   1.00
4984                                                                                                 200.00
4985                                                                                                 100.00
4986                                                                                                   1.00
4987                                                                                                   1.00
4988                                                                                                  25.00
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4991                                                                                                 136.00
4992                                                                                                  50.00
4993                                                                                                  50.00
4994                                                                                                 100.00
4995                                                                                                 200.00
4996                                                                                            unspecified
4997                                                                                                 200.00
4998                                                                                            unspecified
4999                                                                                                 200.00
5000                                                                                                 113.50
5001                                                                                                  20.00
5002                                                                                                 250.00
5003                                                                                                   1.00
5004                                                                                                 113.50
5005                                                                                                 300.00
5006                                                                                                 500.00
5007                                                                                                 227.00
5008                                                                                                   0.60
5009                                                                                                 300.00
5010                                                                                                   2.80
5011                                                                                                   0.60
5012                                                                                                 227.00
5013                                                                                                 200.00
5014                                                                                                 500.00
5015                                                                                                  10.00
5016                                                                                                  20.00
5017                                                                                                  40.00
5018                                                                                                  50.00
5019                                                                                                   1.00
5020                                                                                                 100.00
5021                                                                                                   2.00
5022                                                                                                   1.50
5023                                                                                                  50.00
5024                                                                                                  60.00
5025                                                                                                   1.00
5026                                                                                                   5.00
5027                                                                                                  12.00
5028                                                                                                   2.25
5029                                                                                                   1.20
5030                                                                                                 500.00
5031                                                                                                  75.00
5032                                                                                                   1.50
5033                                                                                                 500.00
5034                                                                                                   6.00
5035                                                                                                   0.40
5036                                                                                                   0.40
5037                                                                                                   0.40
5038                                                                                                   0.50
5039                                                                                                   0.30
5040                                                                                                 136 mg
5041                                                                                                  16.00
5042                                                                                                   0.50
5043                                                                                                  spray
5044                                                                                                  16.00
5045                                                                                                 500.00
5046                                                                                                  spray
5047                                                                                                  24.00
5048                                                                                                  70.00
5049                                                                                                  16.00
5050                                                                                                 136.00
5051                                                                                                 437.50
5052                                                                                                 300.00
5053                                                                                                  70.00
5054                                                                                                 100.00
5055                                                                                                  60.00
5056                                                                                                   0.40
5057                                                                                                   4.00
5058                                                                                                  60.00
5059                                                                                                  15.00
5060                                                                                                 375.00
5061                                                                                                   0.30
5062                                                                                                 100.00
5063                                                                                                   1.00
5064                                                                                                   1.00
5065                                                                                                 250.00
5066                                                                                                 60-120
5067                                                                                                 60-120
5068                                                                                                  15.00
5069                                                                                                   2.00
5070                                                                                                 200.00
5071                                                                                                  75.00
5072                                                                                                 350.00
5073                                                                                                  45.00
5074                                                                                                  75.00
5075                                                                                                  30.00
5076                                                                                                  75.00
5077                                                                                                   5.00
5078                                                                            based on weight (40-60 lbs)
5079                                                                                                 200.00
5080                                                                                                 500.00
5081                                                                                                   0.50
5082                                                                                                 272.00
5083                                                                                                   2.00
5084                                                                                                   1.00
5085                                                                                                 500.00
5086                                                                                                1620.00
5087                                                                                                   1.00
5088                                                                                                 500.00
5089                                                                                                 272.00
5090                                                                                                  50.00
5091                                                                                                 272.00
5092                                                                                                  27.00
5093                                                                                                 750.00
5094                                                                                                 272.00
5095                                                                                                 227.00
5096                                                                                                 136.00
5097                                                                                                 227.00
5098                                                                                                 136.00
5099                                                                                                 272.00
5100                                                                                                 136.00
5101                                                                                                  15.00
5102                                                                                                  75.00
5103                                                                                                 250.00
5104                                                                                                 272.00
5105                                                                                                 272.00
5106                                                                                                 500.00
5107                                                                                                 272.00
5108                                                                                                 500.00
5109                                                                                                   2.00
5110                                                                                                 150.00
5111                                                                                                 272.00
5112                                                                                                 150.00
5113                                                                                                   0.55
5114                                                                                                 600.00
5115                                                                                                 272.00
5116                                                                                                  15.00
5117                                                                                                  68.00
5118                                                                                                   1.00
5119                                                                                                   1.00
5120                                                                                                  68.00
5121                                                                                                 272.00
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5124                                                                                                 113.50
5125                                                                                                   1 ml
5126                                                                                                   1.00
5127                                                                                              injection
5128                                                                                               10000.00
5129                                                                                                 500.00
5130                                                                                                   1.00
5131                                                                                                1000.00
5132                                                                                                 227.00
5133                                                                                                 300.00
5134                                                                                        based on weight
5135                                                                                                 600.00
5136                                                                                                 100.00
5137                                                                                                  75.00
5138                                                                                                 875.00
5139                                                                                                 200.00
5140                                                                                            750, 187, 5
5141                                                                                                   1.00
5142                                                                                                 227.00
5143                                                                                                   1.00
5144                                                                                                   2.40
5145                                                                                                 250.00
5146                                                                                                 250.00
5147                                                                                                   2.00
5148                                                                                                  11.50
5149                                                                                                  23.00
5150                                                                                                  40-60
5151                                                                                                 136.00
5152                                                                                                 272.00
5153                                                                                                  75.00
5154                                                                                                 272.00
5155                                                                                                 136.00
5156                                                                                                 272.00
5157                                                                                                  68.00
5158                                                                                                 150.00
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5162                                                                                                  50.00
5163                                                                                                 250.00
5164                                                                                                 100.00
5165                                                                                                 100 mg
5166                                                                                                 250.00
5167                                                                                                 222.00
5168                                                                                                   1.00
5169                                                                                                 272.00
5170                                                                                                 136.00
5171                                                                                                   3.20
5172                                                                                                 500.00
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5176                                                                                                 272.00
5177                                                                                                 136.00
5178                                                                                                 272.00
5179                                                                                                 136.00
5180                                                                                                 272.00
5181                                                                                                 136.00
5182                                                                                                  80.00
5183                                                                                                  75.00
5184                                                                                                  75.00
5185                                                                                                 375.00
5186                                                                                                  60.00
5187                                                                                                  75.00
5188                                                                                                   1.00
5189                                                                                                 60-120
5190                                                                                                   1.00
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5194                                                                                                  23.00
5195                                                                              based on weight (18+ lbs)
5196                                                                                                 500.00
5197                                                                                                  75.00
5198                                                                                                 150.00
5199                                                                                                 100.00
5200                                                                                                   1.00
5201                                                                                                  75 mg
5202                                                                                                   1.00
5203                                                                           based on weight (50-100 lbs)
5204                                                                                                   1.00
5205                                                                                                   0.75
5206                                                                                                   1.00
5207                                                                                                   1.00
5208                                                                                                   1.00
5209                                                                                                 150.00
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5215                                                                                                 500.00
5216                                                                                                 500.00
5217                                                                                                 200.00
5218                                                                                                   1.00
5219                                                                                                  21.00
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5224                                                                                                 750.00
5225                                                                           based on weight (51-100 lbs)
5226                                                                                                 750.00
5227                                                                                                   7.00
5228                                                                                                   1.00
5229                                                                                                   1.00
5230                                                                                                1224.60
5231                                                                                                   3.00
5232                                                                                                 150.00
5233                                                                                                1000.00
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5236                                                                                                 150.00
5237                                                                                                 200.00
5238                                                                                                  15.00
5239                                                                                                  21.00
5240                                                                                                  16.00
5241                                                                                                 280.00
5242                                                                                                 164.00
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5245                                                                                                 500.00
5246                                                                                                  60.00
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5249                                                                                                  16.00
5250                                                                                                   1.00
5251                                                                                                 550.00
5252                                                                                                 150.00
5253                                                                           based on weight (51-100 lbs)
5254                                                                                                 125.00
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5259                                                                                                   2.00
5260                                                                                                1088.20
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5263                                                                                                 150.00
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5266                                                                                                 625.00
5267                                                                                                 150.00
5268                                                                                                   1.00
5269                                                                                                 150.00
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5272                                                                                                 750.00
5273                                                                                                   3.00
5274                                                                                                 200.00
5275                                                                                                 500.00
5276                                                                                                   1.50
5277                                                                                                 150.00
5278                                                                                                 150.00
5279                                                                                                   1.50
5280                                                                                                 100.00
5281                                                                                                 400.00
5282                                                                                                   1.50
5283                                                                                                 150.00
5284                                                                                                  20.00
5285                                                                                                   1.00
5286                                                                                                 272.00
5287                                                                                                 136.00
5288                                                                                                 236.00
5289                                                                           based on weight (50-100 lbs)
5290                                                                                                  40.00
5291                                                                                                   0.80
5292                                                                                                  40.00
5293                                                                                                 500.00
5294                                                                                                  30.00
5295                                                                                                 272.00
5296                                                                                                   5.00
5297                                                                                                 500.00
5298                                                                                                  16.00
5299                                                                                                 272.00
5300                                                                                                1000.00
5301                                                                                                 450.00
5302                                                                                                   6.00
5303                                                                                                 100.00
5304                                                                                                  60.00
5305                                                                                                 272.00
5306                                                                                                 100.00
5307                                                                                                  40.00
5308                                                                                                  70.00
5309                                                                                                 272.00
5310                                                                                                 100.00
5311                                                                                                  80.00
5312                                                                                                 100.00
5313                                                                                                  80.00
5314                                                                                                 272.00
5315                                                                                                  70.00
5316                                                                                                  80.00
5317                                                                                                  81.00
5318                                                                                                 100.00
5319                                                                                                 100.00
5320                                                                                                 300.00
5321                                                                                                  75.00
5322                                                                                                 250.00
5323                                                                                                 200.00
5324                                                                                                 300.00
5325                                                                                                 250.00
5326                                                                                                 500.00
5327                                                                                                  50.00
5328                                                                                                  50.00
5329                                                                                                 437.50
5330                                                                                                 437.50
5331                                                                                                 272.00
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5338                                                                                                 300.00
5339                                                                                                  70.00
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5342                                                                                                 500.00
5343                                                                                                 300.00
5344                                                                                                  70.00
5345                                                                                                  75.00
5346                                                                                                 272.00
5347                                                                                                   7.00
5348                                                                                                 272.00
5349                                                                                                 227.00
5350                                                                                                 500.00
5351                                                                                                 272.00
5352                                                                                                 227.00
5353                                                                                                 136.00
5354                                                                                                 collar
5355                                                                                                 272.00
5356                                                                                                 500.00
5357                                                                                                  drops
5358                                                                                                 272.00
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5363                                                                                                 500.00
5364                                                                                                 480.00
5365                                                                                                 272.00
5366                                                                                                 228.00
5367                                                                                                 228.00
5368                                                                                                  75.00
5369                                                                           based on weight (50-100 lbs)
5370                                                                                                   4.70
5371                                                                                                 272.00
5372                                                                                                 136.00
5373                                                                                                   1.00
5374                                                                                                1000.00
5375                                                                                                  25.00
5376                                                                                                 272.00
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5380                                                                                                  45-88
5381                                                                                                  23.00
5382                                                                                                  45-88
5383                                                                                                   0.14
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5389                                                                                                 272.00
5390                                                                                                 136.00
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5393                                                                                                  50.00
5394                                                                                                 272.00
5395                                                                                                 272.00
5396                                                                                                 227.00
5397                                                                                                 272.00
5398                                                                                                 227.00
5399                                                                                                  23.00
5400                                                                                                  23.00
5401                                                                                                   1.00
5402                                                                                                   0.60
5403                                                                              based on weight (100 lbs)
5404                                                                                                   0.80
5405                                                                                                 375.00
5406                                                                                                   1.00
5407                                                                                                  23.00
5408                                                                                                   0.70
5409                                                                                                1000.00
5410                                                                                                  12.50
5411                                                                                                  23.00
5412                                                                                                1000.00
5413                                                                                                 150.00
5414                                                                                                   8.00
5415                                                                                                   2.00
5416                                                                                                   0.70
5417                                                                                                1000.00
5418                                                                                                1000.00
5419                                                                                                  10.00
5420                                                                                                   8.00
5421                                                                                                   0.70
5422                                                                                                 100.00
5423                                                                                                 200.00
5424                                                                                           small amount
5425                                                                                                   1.00
5426                                                                                                  20.00
5427                                                                                                 500.00
5428                                                                                                  spray
5429                                                                                                 300.00
5430                                                                                                  50.00
5431                                                                                                  75.00
5432                                                                                                 200.00
5433                                                                                                  75.00
5434                                                                                                  50.00
5435                                                                                                   0.50
5436                                                                                                  20.00
5437                                                                                                 500.00
5438                                                                                                  15.00
5439                                                                                                  10.00
5440                                                                                            unspecified
5441                                                                                                  75.00
5442                                                                                                  75.00
5443                                                                                                  75.00
5444                                                                                                1000.00
5445                                                                                                  75.00
5446                                                                                                   3.75
5447                                                                                                   1.40
5448                                                                                                   1.00
5449                                                                                                 500.00
5450                                                                                                 100.00
5451                                                                                                  37.50
5452                                                                                                 500.00
5453                                                                                                 250.00
5454                                                                                                  23.00
5455                                                                                                  80.00
5456                                                                                                   0.60
5457                                                                                                   0.60
5458                                                                                                  23.00
5459                                                                                                 460.00
5460                                                                                           small amount
5461                                                                                                  23.00
5462                                                                                                   6.00
5463                                                                                                  23.00
5464                                                                                               27, 1620
5465                                                                                                1000.00
5466                                                                                                   6.00
5467                                                                                                  23.00
5468                                                                                                   1.80
5469                                                                                                   2 ml
5470                                                                                                 250.00
5471                                                                                                 500.00
5472                                                                                                  30.00
5473                                                                                                 500.00
5474                                                                                                   5.00
5475                                                                                                  20.00
5476                                                                                                   1.00
5477                                                                                                 500.00
5478                                                                                                  50.00
5479                                                                                                  50.00
5480                                                                                                  10.00
5481                                                                                                   2.50
5482                                                                                                1700.00
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5486                                                                                                3000.00
5487                                                                                                   1.00
5488                                                                                                   5.00
5489                                                                                                  10.00
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5493                                                                                                   1.00
5494                                                                                                   1.00
5495                                                                                                   1.00
5496                                                                                                  75.00
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5503                                                                                                  75.00
5504                                                                                                 102.00
5505                                                                                                   2.00
5506                                                                                                 100.00
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5510                                                                                                   2.00
5511                                                                           based on weight (51-100 lbs)
5512                                                                                                  75.00
5513                                                                           based on weight (51-100 lbs)
5514                                                                                                1000.00
5515                                                                                                   1.00
5516                                                                                                   1.00
5517                                                                                                 300.00
5518                                                                                                 100.00
5519                                                                                                  75.00
5520                                                                                                1000.00
5521                                                                                                  30.00
5522                                                                                                  75.00
5523                                                                                                 100.00
5524                                                                                                   2.00
5525                                                                                                 300.00
5526                                                                                                  25.00
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5530                                                                                                   5.00
5531                                                                                                  60.00
5532                                                                                                  14.00
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5536                                                                                                   5.00
5537                                                                                           small amount
5538                                                                                                 375.00
5539                                                                                                  70.00
5540                                                                                                  50.00
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5543                                                                                                   7.50
5544                                                                                                  80.00
5545                                                                                        based on weight
5546                                                                                        based on weight
5547                                                                                                  16.00
5548                                                                                                  16.00
5549                                                                                                  40.00
5550                                                                                                   7.50
5551                                                                                                 272.00
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5554                                                                                                1000.00
5555                                                                                                  16.00
5556                                                                                                  44-88
5557                                                                           based on weight (51-100 lbs)
5558                                                                                                 100.00
5559                                                                                                  16.00
5560                                                                                                1000.00
5561                                                                                                  16.00
5562                                                                                                   1.00
5563                                                                                                  16.00
5564                                                                                                   1.00
5565                                                                                                 810.00
5566                                                                                                   1.00
5567                                                                                                   1.00
5568                                                                           based on weight (51-100 lbs)
5569                                                                                                  50.00
5570                                                                                                 375.00
5571                                                                           based on weight (51-100 lbs)
5572                                                                                                   1.00
5573                                                                                                   8.00
5574                                                                                                 50-100
5575                                                                                                   1.00
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5579                                                                                                 200.00
5580                                                                                                 200.00
5581                                                                                                   1.00
5582                                                                                                 125.00
5583                                                                                                   8.00
5584                                                                                                   1.00
5585                                                                                                1000.00
5586                                                                                                  11.00
5587                                                                                                 500.00
5588                                                                                                   5.00
5589                                                                                                  57.00
5590                                                                                                  68.00
5591                                                                                                  81.50
5592                                                                                                  73.00
5593                                                                                                 100.00
5594                                                                                                 136.50
5595                                                                           based on weight (51-100 lbs)
5596                                                                                                  23.00
5597                                                                                                 460.00
5598                                                                                                  10.00
5599                                                                                                  60.00
5600                                                                           based on weight (51-100 lbs)
5601                                                                                                  45-88
5602                                                                           based on weight (51-100 lbs)
5603                                                                                                   2.68
5604                                                                                                  23.00
5605                                                                                                 500.00
5606                                                                                                   1.36
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5608                                                                                                   2.68
5609                                                                                                  23.00
5610                                                                                                 200.00
5611                                                                                                   1.00
5612                                                                                                 500.00
5613                                                                                                   1.00
5614                                                                                                  60.00
5615                                                                                                   1.00
5616                                                                                                 200.00
5617                                                                                                  15.00
5618                                                                                                   3.00
5619                                                                                                  80.00
5620                                                                                                   1.00
5621                                                                                                  30.00
5622                                                                                                 400.00
5623                                                                                                 500.00
5624                                                                                                   1.20
5625                                                                                                   1.20
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5633                                                                                                 200.00
5634                                                                                                 200.00
5635                                                                                                 100.00
5636                                                                                                   5.00
5637                                                                                                  13.50
5638                                                                                                 810.00
5639                                                                                                 810.00
5640                                                                                                  13.50
5641                                                                                                 1.7 ml
5642                                                                                                   1.70
5643                                                                                                   0.18
5644                                                                                                  60.00
5645                                                                                                  17.70
5646                                                                                                   1.84
5647                                                                                                1000.00
5648                                                                                                 180.00
5649                                                                                          5 billion cfu
5650                                                                                                  60.00
5651                                                                                                1500.00
5652                                                                                                   1.00
5653                                                                                                 300.00
5654                                                                                                 600.00
5655                                                                                                   6.00
5656                                                                                                   2.00
5657                                                                                                 200.00
5658                                                                                                  40.00
5659                                                                                                   7.00
5660                                                                                                 400.00
5661                                                                                                  10.00
5662                                                                                                 175.00
5663                                                                                                 200.00
5664                                                                                                1000.00
5665                                                                                                 200.00
5666                                                                                                 500.00
5667                                                                                                 400.00
5668                                                                                                272 mcg
5669                                                                                                   1.00
5670                                                                                                   2.00
5671                                                                                                   2.00
5672                                                                                                   1.00
5673                                                                                                  25.00
5674                                                                                                  50.00
5675                                                                                                  10.00
5676                                                                                                   2.00
5677                                                                                                   1.00
5678                                                                                                   1.00
5679                                                                                                   2.00
5680                                                                                                   1.00
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5683                                                                                                  10.00
5684                                                                                                   7.50
5685                                                                                                2000.00
5686                                                                                                  70.00
5687                                                                                                   1.00
5688                                                                                                   1.00
5689                                                                                                   1.00
5690                                                                                                  50.00
5691                                                                                                   8.00
5692                                                                                                 272.00
5693                                                                                                   6.00
5694                                                                                                   6.00
5695                                                                                            unspecified
5696                                                                                                  23.00
5697                                                                                                   2.68
5698                                                                                                  23.00
5699                                                                                                1000.00
5700                                                                                                  23.00
5701                                                                                                  68.00
5702                                                                                                  23.00
5703                                                                                                 272.00
5704                                                                                                 136.00
5705                                                                                                 460.00
5706                                                                                                 136.00
5707                                                                                                  23.00
5708                                                                                                  68.00
5709                                                                                                  23.00
5710                                                                                                   2.30
5711                                                                                                 136.00
5712                                                                                                  60.00
5713                                                                                                1620.00
5714                                                                                                  27.00
5715                                                                                                  45.40
5716                                                                                                  45.40
5717                                                                                                 226.80
5718                                                                                                 250.00
5719                                                                                                 500.00
5720                                                                                                1454.00
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5726                                                                                                  23.00
5727                                                                                                1000.00
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5730                                                                                                 200.00
5731                                                                                            unspecified
5732                                                                                                 150.00
5733                                                                                                 300.00
5734                                                                                                 300.00
5735                                                                                                  30.00
5736                                                                                                  20.00
5737                                                                                                 750 mg
5738                                                                                                   1.00
5739                                                                                                 272.00
5740                                                                                                 272.00
5741                                                                                                 136.00
5742                                                                                                 272.00
5743                                                                                                 136.00
5744                                                                                                 227.00
5745                                                                                                 272.00
5746                                                                                                   4.28
5747                                                                                        based on weight
5748                                                                                                  60-10
5749                                                                                                 136.00
5750                                                                                                 272.00
5751                                                                                                 136.00
5752                                                                                                 227.00
5753                                                                                                 136.00
5754                                                                                                 272.00
5755                                                                                                 136.00
5756                                                                                                 272.00
5757                                                                                                 136.00
5758                                                                                                1500.00
5759                                                                                                 500.00
5760                                                                                            unspecified
5761                                                                                                 483.00
5762                                                                                        based on weight
5763                                                                                                   1.30
5764                                                                                                 272.00
5765                                                                                                   1.60
5766                                                                                                 200.00
5767                                                                                                   1.40
5768                                                                           based on weight (51-100 lbs)
5769                                                                                                 272.00
5770                                                                                                 120.00
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5772                                                                                                  23.00
5773                                                                                                 228.00
5774                                                                                                 750 mg
5775                                                                                                  75.00
5776                                                                                                 375.00
5777                                                                                            unspecified
5778                                                                                                 100.00
5779                                                                                                   1.00
5780                                                                                                 300.00
5781                                                                                                 300.00
5782                                                                                                 100.00
5783                                                                                                 300.00
5784                                                                                                  10.00
5785                                                                                                  75.00
5786                                                                                                 136.00
5787                                                                                                 125.00
5788                                                                                                 125.00
5789                                                                                                  25.00
5790                                                                                                 200.00
5791                                                                                                   8.00
5792                                                                                                  50.00
5793                                                                                                  26-50
5794                                                                                                  41-60
5795                                                                                                 200.00
5796                                                                                                  50.00
5797                                                                                                 250.00
5798                                                                                                 100.00
5799                                                                                                   1.00
5800                                                                                                 100.00
5801                                                                                                  50.00
5802                                                                                                 200.00
5803                                                                                                   8.00
5804                                                                                                13, 228
5805                                                                                                   8.00
5806                                                                                                   8.00
5807                                                                                                  75.00
5808                                                                                                   1.00
5809                                                                                                   1.00
5810                                                                                                   1.00
5811                                                                                                   8.00
5812                                                                                                  40.00
5813                                                                                                   4.00
5814                                                                                            unspecified
5815                                                                                                   8.00
5816                                                                                                  40.00
5817                                                                                                 250.00
5818                                                                                                   5.00
5819                                                                                                 272.00
5820                                                                                                 272.00
5821                                                                                                 272.00
5822                                                                                                   1.00
5823                                                                                                  37.50
5824                                                                                                  10.00
5825                                                                                                  50.00
5826                                                                                                  50.00
5827                                                                                                  75.00
5828                                                                                                  50.00
5829                                                                                                   1.00
5830                                                                                                   1.00
5831                                                                                                 272.00
5832                                                                                                 227.00
5833                                                                                                 272.00
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5835                                                                                                 272.00
5836                                                                                                 460.00
5837                                                                                                 500.00
5838                                                                                                  10.00
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5841                                                                                                  50.00
5842                                                                                                 272.00
5843                                                                                                 250.00
5844                                                                                                   1.00
5845                                                                                                   1.00
5846                                                                                                   5.00
5847                                                                                                  95.00
5848                                                                                                 125.00
5849                                                                                                   6.25
5850                                                                                                   1.00
5851                                                                                                 136.00
5852                                                                                                  41.00
5853                                                                                                 100.00
5854                                                                                                 275.00
5855                                                                                                 100.00
5856                                                                                                 275.00
5857                                                                                                 420.00
5858                                                                                        0.25 inch strip
5859                                                                                                 375.00
5860                                                                                                   5.00
5861                                                                                                 272.00
5862                                                                                                  41.47
5863                                                                                                 130.00
5864                                                                                                  50.00
5865                                                                                                 272.00
5866                                                                                                 840.00
5867                                                                                                  41.47
5868                                                                                                 272.00
5869                                                                           based on weight (51-100 lbs)
5870                                                                                                 500.00
5871                                                                                                   0.25
5872                                                                                                  0-125
5873                                                                                                   0-88
5874                                                                                                   2.00
5875                                                                                                  15.00
5876                                                                                                   4.00
5877                                                                                        based on weight
5878                                                                                                 500.00
5879                                                                                                 200.00
5880                                                                                                  15.00
5881                                                                                                  75.00
5882                                                                                                1000.00
5883                                                                                                  50.00
5884                                                                                            unspecified
5885                                                                                                 100.00
5886                                                                                                  10.00
5887                                                                                           small amount
5888                                                                                                1000.00
5889                                                                                                 200.00
5890                                                                                                 86-130
5891                                                                                                 100.00
5892                                                                                                 200.00
5893                                                                                                 100.00
5894                                                                                                  50.00
5895                                                                                                  16.00
5896                                                                                                 88-123
5897                                                                                                 100.00
5898                                                                                                   1.00
5899                                                                                                  16.00
5900                                                                                                   1.00
5901                                                                                                1400.00
5902                                                                                                  16.00
5903                                                                                                   0.50
5904                                                                                                  75.00
5905                                                                                                1400.00
5906                                                                                                  16.00
5907                                                                                                  75.00
5908                                                                                                1400.00
5909                                                                                                  16.00
5910                                                                                                  20.00
5911                                                                                                 300.00
5912                                                                                                  75.00
5913                                                                                        based on weight
5914                                                                                                  16.00
5915                                                                                                  20.00
5916                                                                                                   8.00
5917                                                                                              6-8 drops
5918                                                                                                   5.63
5919                                                                                                 500.00
5920                                                                                                   1.00
5921                                                                                                 250.00
5922                                                                                                 500.00
5923                                                                                                 350.00
5924                                                                                                  50.00
5925                                                                                                 60-120
5926                                                                                                1620.00
5927                                                                                                  27.00
5928                                                                                                 60-120
5929                                                                                                  15.00
5930                                                                           based on weight (51-100 lbs)
5931                                                                                                  44-88
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5938                                                                                                   0.01
5939                                                                                                   0.01
5940                                                                                                 500.00
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5943                                                                                                   1.00
5944                                                                                                 500.00
5945                                                                                             1 wipe/pad
5946                                                                                                 200.00
5947                                                                                                 500.00
5948                                                                                                   1.50
5949                                                                                                 300.00
5950                                                                                                  75.00
5951                                                                                                 500.00
5952                                                                                                  12.50
5953                                                                                                  30.00
5954                                                                                                   1.00
5955                                                                                                 375.00
5956                                                                                                   1.00
5957                                                                                                 300.00
5958                                                                                                  75.00
5959                                                                                                   1.00
5960                                                                                                  15.00
5961                                                                                                  30.00
5962                                                                                                  75.00
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5969                                                                                                1000.00
5970                                                                                                 400.00
5971                                                                                                 500.00
5972                                                                                                  80.00
5973                                                                                                  20.00
5974                                                                                                 125.00
5975                                                                                                 136.00
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5982                                                                                                1620.00
5983                                                                                                  37.50
5984                                                                                                 200.00
5985                                                                                                 88-123
5986                                                                                                  37.50
5987                                                                                                100-150
5988                                                                                        based on weight
5989                                                                                                  75.00
5990                                                                                                 500.00
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
5995                                                                                                   1.00
5996                                                                                                   1.00
5997                                                                                                   1.00
5998                                                                                                   1.00
5999                                                                                                 100.00
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6001                                                                                                  15.00
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6006                                                                                                   1.00
6007                                                                                                 227.00
6008                                                                                                  60.00
6009                                                                                                  16.00
6010                                                                                                 500.00
6011                                                                                                   1.00
6012                                                                                                 50-121
6013                                                                                                 150.00
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6018                                                                                                 500.00
6019                                                                                                 750.00
6020                                                                                                 100.00
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6023                                                                                                 272.00
6024                                                                                                 272.00
6025                                                                                                 272.00
6026                                                                                                 272.00
6027                                                                                                 227.00
6028                                                                                                 500.00
6029                                                                                                 108.00
6030                                                                                                 300.00
6031                                                                                                  75.00
6032                                                                                                 500.00
6033                                                                                                  15.00
6034                                                                                                   7.00
6035                                                                                                   5.00
6036                                                                                               27, 1620
6037                                                                                                 272.00
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6040                                                                                                 272.00
6041                                                                                                   4.02
6042                                                                                                   2.68
6043                                                                                                 272.00
6044                                                                                                  16.00
6045                                                                                                 200.00
6046                                                                                                   4.00
6047                                                                                                  23.00
6048                                                                                                   2.68
6049                                                                                                   0.09
6050                                                                                                   2.68
6051                                                                                                 500.00
6052                                                                                                 136.00
6053                                                                                                  10.00
6054                                                                                                 100.00
6055                                                                                                   2.60
6056                                                                                                  23.00
6057                                                                                                  23.00
6058                                                                                                   2.68
6059                                                                           based on weight (51-100 lbs)
6060                                                                                                 60-121
6061                                                                                                  70.00
6062                                                                                                 750.00
6063                                                                                           small amount
6064                                                                                                  37.50
6065                                                                                                  60.00
6066                                                                                                 500.00
6067                                                                                                  10.00
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6073                                                                                                 50-100
6074                                                                                                1 spray
6075                                                                                                 500.00
6076                                                                                                 collar
6077                                                                                                 227.00
6078                                                                                                 collar
6079                                                                                                 500.00
6080                                                                                                   1.00
6081                                                                                                 750.00
6082                                                                                                  50.00
6083                                                                                                 500.00
6084                                                                                                  50.00
6085                                                                                                   2.50
6086                                                                                                1620.00
6087                                                                                                 160.00
6088                                                                                        0.25 inch strip
6089                                                                                                  25-50
6090                                                                                        0.25 inch strip
6091                                                                                                  75.00
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6100                                                                                                  23.00
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6103                                                                                                   0.10
6104                                                                                           23, 228, 460
6105                                                                                                  80.00
6106                                                                                                   1.00
6107                                                                                                  80.00
6108                                                                                                 100.00
6109                                                                                      90, 350, 800, 900
6110                                                                                                 200.00
6111                                                                                                 900.00
6112                                                                                                  60.00
6113                                                                                                 300.00
6114                                                                                                  20.00
6115                                                                                                  60.00
6116                                                                                                   1.00
6117                                                                                                  17.00
6118                                                                                                  20.00
6119                                                                                                   0.90
6120                                                                                                  24.00
6121                                                                                                  80.00
6122                                                                                                   7.20
6123                                                                                                   7.20
6124                                                                                                  75.00
6125                                                                                                  75.00
6126                                                                                                   1.00
6127                                                                                                   3.60
6128                                                                                                  75.00
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6131                                                                                                 100.00
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6138                                                                                                  16.00
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6141                                                                                                   1.00
6142                                                                                                 200.00
6143                                                                                                 300.00
6144                                                                                                 600.00
6145                                                                                                  75.00
6146                                                                                                  20.00
6147                                                                                                1647.00
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6151                                                                                                 136.00
6152                                                                                                  23 mg
6153                                                                                                1000.00
6154                                                                                                  20.00
6155                                                                                                  10.00
6156                                                                                                   5.00
6157                                                                                                   5.00
6158                                                                                                   1.00
6159                                                                                                  57.00
6160                                                                                                  45-88
6161                                                                                                23, 460
6162                                                                                                 272.00
6163                                                                                                 136.00
6164                                                                                           small amount
6165                                                                                                  90.00
6166                                                                                                  50.00
6167                                                                                                 200.00
6168                                                                                                 250.00
6169                                                                                                 227.00
6170                                                                                                  22.70
6171                                                                                                   0.40
6172                                                                                                  50.00
6173                                                                                                  10.00
6174                                                                                                  18.00
6175                                                                                                 250.00
6176                                                                                                   1.20
6177                                                                                                 240.00
6178                                                                                                  12.00
6179                                                                                                   1.50
6180                                                                                                   8.00
6181                                                                                                  50.00
6182                                                                                                 113.50
6183                                                                                                 500.00
6184                                                                                                 500.00
6185                                                                                                 272.00
6186                                                                                                  25.00
6187                                                                                                 136.00
6188                                                                                                   1.00
6189                                                                                                  25-50
6190                                                                                                 272.00
6191                                                                                                   3.00
6192                                                                                                  20.00
6193                                                                                                 850.00
6194                                                                                                 750.00
6195                                                                                                  75.00
6196                                                                                                   6.00
6197                                                                                                 272.00
6198                                                                                                   1.40
6199                                                                                                  50.00
6200                                                                           based on weight (88-132 lbs)
6201                                                                                                 272.00
6202                                                                           based on weight (60-120 lbs)
6203                                                                                                  16.00
6204                                                                                                  60.00
6205                                                                                                 200.00
6206                                                                                            application
6207                                                                                                  60.00
6208                                                                                            application
6209                                                                                                  23.00
6210                                                                                                 120.00
6211                                                                                                 900.00
6212                                                                                                   4.20
6213                                                                                                   2.00
6214                                                                                                   3.80
6215                                                                                                 1 pump
6216                                                                                                  90.00
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6219                                                                                                   2.50
6220                                                                                                  75.00
6221                                                                                                5-10 ml
6222                                                                                                  75.00
6223                                                                                                  50.00
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6227                                                                                                  90.00
6228                                                                                                1000.00
6229                                                                                                   1.00
6230                                                                                                   4.30
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6233                                                                                                 100.00
6234                                                                                                   1.00
6235                                                                                                   1.00
6236                                                                                                   1.00
6237                                                                                                 100.00
6238                                                                                                   4.10
6239                                                                                                   4.10
6240                                                                                                 500.00
6241                                                                                                 204.00
6242                                                                                                   1.80
6243                                                                                                 100.00
6244                                                                                            unspecified
6245                                                                                                   8.00
6246                                                                                                  20.00
6247                                                                                                   4.00
6248                                                                                                  60.00
6249                                                                                                  15.00
6250                                                                                                 100.00
6251                                                                                                  90.00
6252                                                                                                  50.00
6253                                                                                                 500.00
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6256                                                                                                   3.00
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6259                                                                                                 150.00
6260                                                                                                   3.00
6261                                                                                                 175.00
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6264                                                                                                 175.00
6265                                                                                                 150.00
6266                                                                                            application
6267                                                                                           small amount
6268                                                                                                   5.00
6269                                                                                                   0.09
6270                                                                                                 300.00
6271                                                                                                 200.00
6272                                                                                                  50.00
6273                                                                                                 200.00
6274                                                                                                   7.50
6275                                                                                            unspecified
6276                                                                                                  50.00
6277                                                                                                 600.00
6278                                                                                                 300.00
6279                                                                                                 250.00
6280                                                                                                   5.00
6281                                                                                                1100.00
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6285                                                                                                 274.00
6286                                                                                                 600.00
6287                                                                                                 300.00
6288                                                                                                 250.00
6289                                                                                                 820.00
6290                                                                                                 548.00
6291                                                                                                1000.00
6292                                                                                                 800.00
6293                                                                            based on weight (24-60 lbs)
6294                                                                                                 500.00
6295                                                                                                 500.00
6296                                                                                              0.125 tsp
6297                                                                                                   1.00
6298                                                                                                 272.00
6299                                                                                                  75.00
6300                                                                                                 100.00
6301                                                                                                 272.00
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6303                                                                                                  16.00
6304                                                                                                1000.00
6305                                                                                                  16.00
6306                                                                                                 170.00
6307                                                                                              62.5, 437
6308                                                                                                1000.00
6309                                                                                                   0.13
6310                                                                                                 500.00
6311                                                                                                  80.00
6312                                                                                            unspecified
6313                                                                                                 750.00
6314                                                                                                   0.12
6315                                                                                                   1.00
6316                                                                                                 750.00
6317                                                                                                   0.13
6318                                                                                                1000.00
6319                                                                                            unspecified
6320                                                                                            unspecified
6321                                                                                                  75.00
6322                                                                                                 750.00
6323                                                                                                1000.00
6324                                                                                                2000.00
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6327                                                                                                 272.00
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6330                                                                                                   8.00
6331                                                                           based on weight (51-100 lbs)
6332                                                                                                   1.50
6333                                                                                                   1.00
6334                                                                                                   1.00
6335                                                                                                  50.00
6336                                                                                                   2.40
6337                                                                                                   1.00
6338                                                                                                  75.00
6339                                                                                                  20.00
6340                                                                                                  20.00
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6344                                                                                                  50.00
6345                                                                                                   2.60
6346                                                                                                 100.00
6347                                                                                                 200.00
6348                                                                                                 375.00
6349                                                                                                  50.00
6350                                                                                                   0.57
6351                                                                                                   2.60
6352                                                                                                 100.00
6353                                                                                                 272.00
6354                                                                                                  45-88
6355                                                                                                 500.00
6356                                                                                                  50.00
6357                                                                                                 150.00
6358                                                                                            unspecified
6359                                                                                                 100.00
6360                                                                                                 100.00
6361                                                                                                 272.00
6362                                                                                                  45-88
6363                                                                                                 200.00
6364                                                                                                 500.00
6365                                                                                                 272.00
6366                                                                                                   1.00
6367                                                                                                   1.00
6368                                                                                                1000.00
6369                                                                                                 272.00
6370                                                                                                  75.00
6371                                                                                                1000.00
6372                                                                                                  75.00
6373                                                                                                1000.00
6374                                                                                                  75.00
6375                                                                                                 200.00
6376                                                                                                 170.00
6377                                                                                                1000.00
6378                                                                                                 600.00
6379                                                                                                 272.00
6380                                                                                                1000.00
6381                                                                                                 272.00
6382                                                                                                 60-120
6383                                                                                                 272.00
6384                                                                                                  23.00
6385                                                                                                 150.00
6386                                                                                                  60.00
6387                                                                                                   1.00
6388                                                                                                 1 drop
6389                                                                                                   7.00
6390                                                                                            unspecified
6391                                                                                                 272.00
6392                                                                                                 272.00
6393                                                                                                 250.00
6394                                                                                                  10.00
6395                                                                            based on weight (45-88 lbs)
6396                                                                                                  50.00
6397                                                                                                  50.00
6398                                                                                                   3.00
6399                                                                                                8 drops
6400                                                                                                   1.00
6401                                                                                                 272.00
6402                                                                                                  15.00
6403                                                                                                   1.00
6404                                                                                                 272.00
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6407                                                                                                 272.00
6408                                                                                                  68.00
6409                                                                                                  12.00
6410                                                                                                1000.00
6411                                                                                           small amount
6412                                                                                               45577.00
6413                                                                                                 272.00
6414                                                                                                 136.00
6415                                                                                                 272.00
6416                                                                                                  80.00
6417                                                                                                  12.00
6418                                                                                                  50.00
6419                                                                                                  50.00
6420                                                                                                   6.00
6421                                                                                                 300.00
6422                                                                                                 200.00
6423                                                                                                 600.00
6424                                                                                                 272.00
6425                                                                                                 900.00
6426                                                                                                 750.00
6427                                                                                                  16.00
6428                                                                                                   1.00
6429                                                                                                 600.00
6430                                                                                                  50.00
6431                                                                                                 250.00
6432                                                                                                 600.00
6433                                                                                                  50.00
6434                                                                                                 600.00
6435                                                                                                  50.00
6436                                                                                                  75.00
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6438                                                                                                1000.00
6439                                                                                                1200.00
6440                                                                                                   1.00
6441                                                                                             1200, 1500
6442                                                                                                1000.00
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6445                                                                                                1500.00
6446                                                                                                   1.00
6447                                                                                                 250.00
6448                                                                                                 272.00
6449                                                                                                 136.00
6450                                                                                                  16.00
6451                                                                                            unspecified
6452                                                                                                 250.00
6453                                                                                                   3.00
6454                                                                                                 272.00
6455                                                                                                 136.00
6456                                                                                                  16.00
6457                                                                                                   3.00
6458                                                                                                1000.00
6459                                                                                             1200, 1500
6460                                                                                                  16.00
6461                                                                                            unspecified
6462                                                                                                  16.00
6463                                                                                                 750.00
6464                                                                                                  60.00
6465                                                                                                 400.00
6466                                                                                                   3.75
6467                                                                                                  50.00
6468                                                                                                 100.00
6469                                                                                                 300.00
6470                                                                                                 750.00
6471                                                                                                  60.00
6472                                                                                                   0.50
6473                                                                                                 272.00
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6476                                                                                                  60.00
6477                                                                                                  20.00
6478                                                                                                 272.00
6479                                                                                                1400.00
6480                                                                                                   0.50
6481                                                                                                 160.00
6482                                                                                                 272.00
6483                                                                                                1000.00
6484                                                                                                1400.00
6485                                                                                                1400.00
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6487                                                                                                 100.00
6488                                                                                                 100.00
6489                                                                                                1400.00
6490                                                                                                 100.00
6491                                                                                                 136.00
6492                                                                                                 272.00
6493                                                                                                 136.00
6494                                                                                                  50.00
6495                                                                                                  drops
6496                                                                                                 272.00
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6501                                                                                                 300.00
6502                                                                                                  50.00
6503                                                                                                  90.00
6504                                                                                                  90.00
6505                                                                                                 250.00
6506                                                                                                 250.00
6507                                                                                                 250.00
6508                                                                                                 500.00
6509                                                                                                   0.40
6510                                                                                                 409.80
6511                                                                                                   9.80
6512                                                                                                   0.40
6513                                                                                                 409.80
6514                                                                                                   9.80
6515                                                                                                   0.40
6516                                                                                                 409.80
6517                                                                                                   9.80
6518                                                                                                  23.00
6519                                                                                                   5.00
6520                                                                                                 500.00
6521                                                                                                  20.00
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6524                                                                                                   0.40
6525                                                                                                  10.00
6526                                                                                                 750.00
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6529                                                                                                   0.50
6530                                                                                                  10.00
6531                                                                                                 150.00
6532                                                                                                  10.00
6533                                                                                                   0.50
6534                                                                                                  10.70
6535                                                                                                  10.00
6536                                                                                                  10.00
6537                                                                                                   0.50
6538                                                                                                  10.00
6539                                                                                                   0.50
6540                                                                                                   2.40
6541                                                                                                   0.50
6542                                                                                                  10.00
6543                                                                                                   1.00
6544                                                                                                 200.00
6545                                                                                                  50.00
6546                                                                                                   5.00
6547                                                                                                 200.00
6548                                                                                                1000.00
6549                                                                                                  30.00
6550                                                                                                   3.00
6551                                                                                                  24.00
6552                                                                                                 500.00
6553                                                                                                 460.00
6554                                                                                                  68.00
6555                                                                           based on weight (51-100 lbs)
6556                                                                                                 250.00
6557                                                                                                   6.00
6558                                                                                                  23.00
6559                                                                                                 250.00
6560                                                                                                 150.00
6561                                                                                                 250.00
6562                                                                                        moderate amount
6563                                                                                                  13.50
6564                                                                                                 810.00
6565                                                                                  1 tablet/pill/capsule
6566                                                                                                 272.00
6567                                                                                                 272.00
6568                                                                                                 272.00
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6572                                                                                                 272.00
6573                                                                            based on weight (45-88 lbs)
6574                                                                                                 600.00
6575                                                                                                 227.00
6576                                                                                                  68.00
6577                                                                                                  60.00
6578                                                                                                 200.00
6579                                                                                        based on weight
6580                                                                                                 136.00
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6582                                                                                                 272.00
6583                                                                                                 227.00
6584                                                                                                  23.00
6585                                                                                                 200.00
6586                                                                                                  23.00
6587                                                                                                 200.00
6588                                                                                                 200.00
6589                                                                                                  23.00
6590                                                                                                 200.00
6591                                                                                                  20.00
6592                                                                                                 200.00
6593                                                                                                  20.00
6594                                                                           based on weight (51-100 lbs)
6595                                                                                                 375.00
6596                                                                                                 100.00
6597                                                                                                 200.00
6598                                                                                                  75.00
6599                                                                                                  75.00
6600                                                                                                 200.00
6601                                                                                                  50.00
6602                                                                           based on weight (51-100 lbs)
6603                                                                                                1000.00
6604                                                                                                  15.00
6605                                                                                                 750.00
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6607                                                                                                 100.00
6608                                                                                                 499.00
6609                                                                                                 500.00
6610                                                                                                 227.00
6611                                                                                                 272.00
6612                                                                         based on weight (50.1-100 lbs)
6613                                                                                                  75.00
6614                                                                                                 300.00
6615                                                                                                 100.00
6616                                                                                                1000.00
6617                                                                                                 375.00
6618                                                                                                  75.00
6619                                                                                                  20.00
6620                                                                                                  75.00
6621                                                                                                1000.00
6622                                                                                                1000.00
6623                                                                                                  20.00
6624                                                                                                  20.00
6625                                                                           based on weight (51-100 lbs)
6626                                                                                                  20.00
6627                                                                                                  10.00
6628                                                                                                  20.00
6629                                                                                                 500.00
6630                                                                                                  75.00
6631                                                                                                  70.00
6632                                                                                                  70.00
6633                                                                                                   1.00
6634                                                                                                 500.00
6635                                                                                                   1.00
6636                                                                           based on weight (50-100 lbs)
6637                                                                                                 113.50
6638                                                                                                 500.00
6639                                                                                                 51-100
6640                                                                                                 100.00
6641                                                                                                 500.00
6642                                                                                                 500.00
6643                                                                                                   3.00
6644                                                                           based on weight (51-100 lbs)
6645                                                                                                   1.00
6646                                                                                                   1.00
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6651                                                                                                 500.00
6652                                                                                                  23.00
6653                                                                                                 600.00
6654                                                                                                 228.00
6655                                                                                                 272.00
6656                                                                                                 375.00
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6659                                                                                                 750.00
6660                                                                                                  68.00
6661                                                                                                  50.00
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6664                                                                                                 272.00
6665                                                                                                   1.00
6666                                                                                                  45.00
6667                                                                                                  10.00
6668                                                                                                 272.00
6669                                                                                                 227.00
6670                                                                                                   1.00
6671                                                                                                 125.00
6672                                                                                                 500.00
6673                                                                                                  50.00
6674                                                                                                   0-25
6675                                                                                                  26-50
6676                                                                                                 50-100
6677                                                                                                  75.00
6678                                                                                                  60.00
6679                                                                                                  50.00
6680                                                                                            unspecified
6681                                                                                                 125.00
6682                                                                                                  37.50
6683                                                                                           small amount
6684                                                                                                 250.00
6685                                                                                                1200.00
6686                                                                                                   1.00
6687                                                                                            unspecified
6688                                                                                            unspecified
6689                                                                                                 136.00
6690                                                                                                  12.00
6691                                                                                                  50.00
6692                                                                                                 500.00
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6695                                                                                                  32.00
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6699                                                                                                1200.00
6700                                                                                                 450.00
6701                                                                                                 150.00
6702                                                                                            unspecified
6703                                                                                        based on weight
6704                                                                                                 450.00
6705                                                                                                  10.00
6706                                                                                                   1.00
6707                                                                                                 100.00
6708                                                                                                 100.00
6709                                                                                                   5.00
6710                                                                                                   1.70
6711                                                                                                   1.70
6712                                                                                                   1.10
6713                                                                                                 375.00
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6718                                                                                                   3.80
6719                                                                                                   2.50
6720                                                                                                   0.55
6721                                                                                                 500.00
6722                                                                                                 500.00
6723                                                                                                 100.00
6724                                                                                                  40.00
6725                                                                                                  50.00
6726                                                                                                   1.00
6727                                                                                                   1.00
6728                                                                                                 272.00
6729                                                                                                 100.00
6730                                                                                                 150.00
6731                                                                                                 272.00
6732                                                                                                  40.00
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6734                                                                                                 227.00
6735                                                                                                 340.00
6736                                                                                                 200.00
6737                                                                                                  32.00
6738                                                                                                   0.40
6739                                                                                                 125 mg
6740                                                                                                 300.00
6741                                                                                                   0.40
6742                                                                                                  16.00
6743                                                                                                 600.00
6744                                                                                                 200.00
6745                                                                                                 100.00
6746                                                                                                 750.00
6747                                                                                                 600.00
6748                                                                                                   0.40
6749                                                                                                  16.00
6750                                                                                                 200.00
6751                                                                                            unspecified
6752                                                                                                 100.00
6753                                                                                                 200.00
6754                                                                                                 600.00
6755                                                                                                   0.40
6756                                                                                                 100.00
6757                                                                                                 272.00
6758                                                                                                 500.00
6759                                                                                            application
6760                                                                                            unspecified
6761                                                                                                 272.00
6762                                                                                                  10.20
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6765                                                                                                  16.00
6766                                                                                                  20.00
6767                                                                                                   8.00
6768                                                                                                 500.00
6769                                                                                                 600.00
6770                                                                                                   1.00
6771                                                                                                   3.00
6772                                                                                                 250.00
6773                                                                                                 125.00
6774                                                                                                   1.00
6775                                                                                                   1.00
6776                                                                                                   1.00
6777                                                                                                  50.00
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6780                                                                                                 116.00
6781                                                                           based on weight (51-100 lbs)
6782                                                                                                 227.00
6783                                                                         based on weight (50.1-100 lbs)
6784                                                                                                 136.00
6785                                                                                                 272.00
6786                                                                              based on weight (55+ lbs)
6787                                                                                                 272.00
6788                                                                                                  68.00
6789                                                                                                272 mcg
6790                                                                                                1000.00
6791                                                                                                1000.00
6792                                                                                                 272.00
6793                                                                                                1000.00
6794                                                                                                  50.00
6795                                                                                                  50.00
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6798                                                                                                 500.00
6799                                                                                                 100.00
6800                                                                                                   0.70
6801                                                                                                  75.00
6802                                                                                                   0.30
6803                                                                                                  75.00
6804                                                                                                   1.00
6805                                                                                                  16.00
6806                                                                                                 500.00
6807                                                                                                 272.00
6808                                                                                                  16.00
6809                                                                                                  16.00
6810                                                                                                  75.00
6811                                                                                                 200.00
6812                                                                                                  60.00
6813                                                                                                  16.00
6814                                                                                                 100.00
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6819                                                                                                   8.00
6820                                                                                                   2.00
6821                                                                                                 500.00
6822                                                                                                 100.00
6823                                                                                                 625.00
6824                                                                                            unspecified
6825                                                                                                 100.00
6826                                                                                            unspecified
6827                                                                                                 100.00
6828                                                                           based on weight (51-100 lbs)
6829                                                                                                  20.00
6830                                                                                                  25.00
6831                                                                                                   8.00
6832                                                                                                1000.00
6833                                                                                                   8.00
6834                                                                                                  10.00
6835                                                                                                  10.00
6836                                                                                                  10.00
6837                                                                                                   1.00
6838                                                                                                 272.00
6839                                                                                                  75 mg
6840                                                                                                  16.00
6841                                                                                                  23.00
6842                                                                                                  23.00
6843                                                                                                  23.00
6844                                                                                                 200.00
6845                                                                                                 100.00
6846                                                                                                  23.00
6847                                                                                                 125.00
6848                                                                                                  24.00
6849                                                                                                 136.00
6850                                                                                                  50.00
6851                                                                                                  75.00
6852                                                                                                 250.00
6853                                                                                                   5.00
6854                                                                                                  45-88
6855                                                                                                 272.00
6856                                                                                                  60.00
6857                                                                                                   1.00
6858                                                                                                  50.00
6859                                                                                                   1.00
6860                                                                                                   0.07
6861                                                                                                   1.22
6862                                                                                                   1.00
6863                                                                                                   1.00
6864                                                                                                   1 ml
6865                                                                                                   0.66
6866                                                                                                   0.66
6867                                                                                                  88.00
6868                                                                                            as directed
6869                                                                                                   1.00
6870                                                                                                   1.00
6871                                                                                                 200.00
6872                                                                                                  10.00
6873                                                                                                   1.00
6874                                                                                                 200.00
6875                                                                                                 272.00
6876                                                                                                   1.00
6877                                                                                                   0.66
6878                                                                                                   0.66
6879                                                                                                  88.00
6880                                                                                            as directed
6881                                                                                                   1.00
6882                                                                                                  60.00
6883                                                                                                   2.00
6884                                                                                                   0.97
6885                                                                                                  50.00
6886                                                                                            application
6887                                                                                                 272.00
6888                                                                                                   1.00
6889                                                                                                 200.00
6890                                                                                                 272.00
6891                                                                                            application
6892                                                                                           small amount
6893                                                                                                  50.00
6894                                                                                                  20.00
6895                                                                                                 500.00
6896                                                                                                  20.00
6897                                                                                                 272.00
6898                                                                                                  45-88
6899                                                                                                   2.00
6900                                                                                                 500.00
6901                                                                                                  24.00
6902                                                                                                 250.00
6903                                                                                                   1.00
6904                                                                                                 375.00
6905                                                                                                  15.00
6906                                                                                                272 mcg
6907                                                                                                1000.00
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6911                                                                                                 100.00
6912                                                                                                 750.00
6913                                                                                                 500.00
6914                                                                                                1000.00
6915                                                                                                   0.80
6916                                                                                                 340.00
6917                                                                                                 100.00
6918                                                                                                 260.00
6919                                                                                                 272.00
6920                                                                                                  68.00
6921                                                                                                   0.80
6922                                                                                                   0.80
6923                                                                                                   0.80
6924                                                                                                 260.00
6925                                                                                                  24.00
6926                                                                                                  40.00
6927                                                                                                   0.80
6928                                                                                            application
6929                                                                                                 500.00
6930                                                                                                 360.00
6931                                                                                                   9.00
6932                                                                                                1000.00
6933                                                                                                 408.00
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6937                                                                                                 500.00
6938                                                                                                 60-120
6939                                                                                                1000.00
6940                                                                                                  19.80
6941                                                                                                 100.00
6942                                                                                                1620.00
6943                                                                                                  38.70
6944                                                                                                1000.00
6945                                                                                                 100.00
6946                                                                                               27, 1620
6947                                                                                                1000.00
6948                                                                                                 100.00
6949                                                                                                  75.00
6950                                                                                                 100.00
6951                                                                                                1000.00
6952                                                                                                  16.00
6953                                                                                                 500.00
6954                                                                                                1620.00
6955                                                                                                1000.00
6956                                                                                            unspecified
6957                                                                                            unspecified
6958                                                                                                 300.00
6959                                                                                                 200.00
6960                                                                                                  75.00
6961                                                                                                 272.00
6962                                                                                                 562.50
6963                                                                                                   1.00
6964                                                                                                  80.00
6965                                                                                                 200.00
6966                                                                                                 200.00
6967                                                                                                   4.30
6968                                                                                                   1.30
6969                                                                                                 100.00
6970                                                                                                   1.00
6971                                                                                                   1.00
6972                                                                                                   1.00
6973                                                                                                 200.00
6974                                                                                                   1.30
6975                                                                                                   1.00
6976                                                                                                 100.00
6977                                                                                                 100.00
6978                                                                                                  20.00
6979                                                                                                 500.00
6980                                                                                                 240.00
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6985                                                                                                 272.00
6986                                                                                            unspecified
6987                                                                                                  50.00
6988                                                                                                 300.00
6989                                                                                                  50.00
6990                                                                                                   2.00
6991                                                                                                   2.00
6992                                                                                                  40-85
6993                                                                                                 200.00
6994                                                                                                  16.00
6995                                                                                                  40-85
6996                                                                                                  16.00
6997                                                                                                  16.00
6998                                                                                                  40-85
6999                                                                                                 1 tube
7000                                                                                                 240.00
7001                                                                                                  16.00
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7003                                                                                                  16.00
7004                                                                                                  16.00
7005                                                                                            unspecified
7006                                                                                            unspecified
7007                                                                                                  50.00
7008                                                                                                   1.70
7009                                                                                                  40.00
7010                                                                                                 120.00
7011                                                                                                   1.70
7012                                                                                                   1.70
7013                                                                                                  20 mg
7014                                                                                                  20.00
7015                                                                                                   1.60
7016                                                                                                   5.00
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7020                                                                                                  20.00
7021                                                                            based on weight (44-88 lbs)
7022                                                                                                 150.00
7023                                                                                                 1.6 ml
7024                                                                                                  20.00
7025                                                                                            unspecified
7026                                                                                                  50.00
7027                                                                                        0.25 inch strip
7028                                                                                                   0.50
7029                                                                                                   0.50
7030                                                                                  1 tablet/pill/capsule
7031                                                                                                   0.50
7032                                                                                                 500.00
7033                                                                                                  22.70
7034                                                                                                 100.00
7035                                                                                                 500.00
7036                                                                                                   0.50
7037                                                                                                 100.00
7038                                                                                                 500.00
7039                                                                                                 500.00
7040                                                                                                 100.00
7041                                                                                                 500.00
7042                                                                                           small amount
7043                                                                                                   2.00
7044                                                                                                   1.00
7045                                                                                                 500.00
7046                                                                                                   5.00
7047                                                                                                 272 ug
7048                                                                                                 272.00
7049                                                                                                 272.00
7050                                                                                                 272.00
7051                                                                                                 272.00
7052                                                                                                 136.00
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7055                                                                                                 500.00
7056                                                                                                  75.00
7057                                                                                                  75.00
7058                                                                                                   1.75
7059                                                                                                 200.00
7060                                                                                                  30.00
7061                                                                                                 100.00
7062                                                                                                 500.00
7063                                                                                                 114.00
7064                                                                                                  26-50
7065                                                                                                 50-100
7066                                                                                                   1.00
7067                                                                                  1 tablet/pill/capsule
7068                                                                                                   1.00
7069                                                                                                 500.00
7070                                                                                                 100.00
7071                                                                                            unspecified
7072                                                                                                  75.00
7073                                                                                                   8.00
7074                                                                                                   1.00
7075                                                                                                  20.00
7076                                                                                                   2.00
7077                                                                                                 272.00
7078                                                                                                 272.00
7079                                                                                                 136.00
7080                                                                                                 272.00
7081                                                                                                 136.00
7082                                                                                                 272.00
7083                                                                                                 136.00
7084                                                                                                  23.00
7085                                                                                                 120.00
7086                                                                                                  25.00
7087                                                                                                 120.00
7088                                                                                                   1.00
7089                                                                                                  50.00
7090                                                                                                 200.00
7091                                                                                                 500.00
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7094                                                                                                  60.00
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7097                                                                                                1620.00
7098                                                                                                 136.00
7099                                                                                                  15.00
7100                                                                                                1620.00
7101                                                                                                1620.00
7102                                                                                                1620.00
7103                                                                                                  60.00
7104                                                                                                   3.00
7105                                                                                                 136.00
7106                                                                                                 272.00
7107                                                                                                 272.00
7108                                                                                                 272.00
7109                                                                                                 272.00
7110                                                                                                 272.00
7111                                                                                                 272.00
7112                                                                                                 136.00
7113                                                                                                   0.70
7114                                                                                                 500.00
7115                                                                                                 300.00
7116                                                                                            unspecified
7117                                                                                                  50.00
7118                                                                                                 200.00
7119                                                                                                 300.00
7120                                                                                                  80.00
7121                                                                                                  60.00
7122                                                                                                   3.00
7123                                                                                                  75.00
7124                                                                                                  10.00
7125                                                                                                  10.00
7126                                                                                                  10.00
7127                                                                                            unspecified
7128                                                                                                 810.00
7129                                                                                                  13.50
7130                                                                                               27, 1620
7131                                                                                               272, 228
7132                                                                                                 272.00
7133                                                                                                  25.00
7134                                                                                                  50.00
7135                                                                                                 272.00
7136                                                                                                 272.00
7137                                                                                        based on weight
7138                                                                                                 272.00
7139                                                                                                 272.00
7140                                                                                                 272.00
7141                                                                                                   1.00
7142                                                                                                   1.00
7143                                                                                                   2.00
7144                                                                                                 200.00
7145                                                                                                  30.00
7146                                                                                                   1.00
7147                                                                                                 750.00
7148                                                                                                  75.00
7149                                                                           based on weight (60-120 lbs)
7150                                                                                                1000.00
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7156                                                                                                   5.00
7157                                                                                                  75.00
7158                                                                                                 204.00
7159                                                                                                1000.00
7160                                                                                                   1.00
7161                                                                                                   1.00
7162                                                                                                   1.00
7163                                                                                                   1.00
7164                                                                                                   1.00
7165                                                                                                   1.00
7166                                                                                                   1.00
7167                                                                                                   1.00
7168                                                                                                   1.00
7169                                                                                                  75.00
7170                                                                                                 500.00
7171                                                                                                 500.00
7172                                                                                                 powder
7173                                                                                               wipe/pad
7174                                                                                                 100.00
7175                                                                                            application
7176                                                                                                 300.00
7177                                                                                                  spray
7178                                                                                                1620.00
7179                                                                                                   1.00
7180                                                                                                  spray
7181                                                                                                 204.00
7182                                                                                                 500.00
7183                                                                                                   5.00
7184                                                                                                   5.00
7185                                                                                                 204.00
7186                                                                                                 500.00
7187                                                                                                2000.00
7188                                                                                                  10.00
7189                                                                                            unspecified
7190                                                                                                 375.00
7191                                                                                                  60.00
7192                                                                                                 300.00
7193                                                                                                 100.00
7194                                                                                                  75.00
7195                                                                                                 300.00
7196                                                                                                 500.00
7197                                                                                                   1.00
7198                                                                                                   8.00
7199                                                                                                   4.00
7200                                                                                                  75.00
7201                                                                                                  10.00
7202                                                                                                   1.00
7203                                                                                                   1.00
7204                                                                                                   1.00
7205                                                                                                   3.40
7206                                                                                                 500.00
7207                                                                                                  60.00
7208                                                                                        0.25 inch strip
7209                                                                                                  60.00
7210                                                                                                  20.00
7211                                                                                                  50.00
7212                                                                                                   1.00
7213                                                                                                   3.37
7214                                                                                                   2.50
7215                                                                                                   1.92
7216                                                                                                 200.00
7217                                                                                                1620.00
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7219                                                                                                 60-120
7220                                                                                                1620.00
7221                                                                                                   1.00
7222                                                                                                  10.00
7223                                                                                                 500.00
7224                                                                                                   1.00
7225                                                                                                  50.00
7226                                                                                                 200.00
7227                                                                                                   1.00
7228                                                                                                  50.00
7229                                                                                                 200.00
7230                                                                                                 300.00
7231                                                                                                1000.00
7232                                                                                                   8.00
7233                                                                                                  75.00
7234                                                                                                  20.00
7235                                                                                                  20.00
7236                                                                                                 125.00
7237                                                                                                  50.00
7238                                                                                                 500.00
7239                                                                                                  50.00
7240                                                                                                2 drops
7241                                                                                                 227.00
7242                                                                                                  50.00
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7244                                                                                                  68.00
7245                                                                                                 272.00
7246                                                                                                  68.00
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7250                                                                                                   2.00
7251                                                                                                 272.00
7252                                                                                                   1.00
7253                                                                                                 272.00
7254                                                                                                 272.00
7255                                                                                                  40.00
7256                                                                                                 500.00
7257                                                                                                 272.00
7258                                                                                                 272.00
7259                                                                                                 272.00
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7263                                                                                                   0.80
7264                                                                                                   1.00
7265                                                                                                   4.00
7266                                                                                                   0.70
7267                                                                                                   2.00
7268                                                                                                   1.00
7269                                                                                                   1.00
7270                                                                                                   1.00
7271                                                                                                   1.00
7272                                                                                                   1.00
7273                                                                                                   4.00
7274                                                                                                   1.00
7275                                                                                                   1.00
7276                                                                                                   2.50
7277                                                                                                 500.00
7278                                                                                                   5.00
7279                                                                                                  10.00
7280                                                                                                 272.00
7281                                                                                                   1.70
7282                                                                                                 340.50
7283                                                                                                  75.00
7284                                                                                                   1.90
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7287                                                                                                  75.00
7288                                                                                                 300.00
7289                                                                                                  16.00
7290                                                                                                   1.90
7291                                                                            based on weight (44-88 lbs)
7292                                                                                                 500.00
7293                                                                                                   1.00
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7296                                                                                                 500.00
7297                                                                                            unspecified
7298                                                                                                 227.00
7299                                                                                                  20.00
7300                                                                                                 272.00
7301                                                                                                 250.00
7302                                                                                                  50.00
7303                                                                                                 227.00
7304                                                                                                1000.00
7305                                                                                                  12.00
7306                                                                                                   8.00
7307                                                                                                  40.00
7308                                                                                                 200.00
7309                                                                                                  16.00
7310                                                                                                  16.00
7311                                                                                                 476.00
7312                                                                                                  16.00
7313                                                                                                 250.00
7314                                                                                                  50.00
7315                                                                                                  50.00
7316                                                                                                  50.00
7317                                                                                                 272.00
7318                                                                                                 500.00
7319                                                                                                 100.00
7320                                                                           based on weight (51-100 lbs)
7321                                                                                                1125.00
7322                                                                                                 500.00
7323                                                                                                  50.00
7324                                                                                                 375.00
7325                                                                                                   1.00
7326                                                                                                 200.00
7327                                                                                                   0.61
7328                                                                                                   0.50
7329                                                                                                   0.63
7330                                                                                                   0.64
7331                                                                                                 300.00
7332                                                                                                 150.00
7333                                                                                                  10.00
7334                                                                                                  10.00
7335                                                                                                   5.00
7336                                                                                                  50.00
7337                                                                                                   1.00
7338                                                                                                   1.00
7339                                                                                                   1.00
7340                                                                                                   1.00
7341                                                                                                   1.00
7342                                                                            based on weight (45-88 lbs)
7343                                                                                                  45-88
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7347                                                                                                  50.00
7348                                                                                                  60.00
7349                                                                                                 100.00
7350                                                                                                 500.00
7351                                                                                                   7.00
7352                                                                                                   1.00
7353                                                                                                  75.00
7354                                                                                                 100.00
7355                                                                                                   7.50
7356                                                                                                  70.00
7357                                                                                                 272.00
7358                                                                                                 250.00
7359                                                                                                 500.00
7360                                                                                                 725.00
7361                                                                                                 500.00
7362                                                                                                  50.00
7363                                                                                                 500.00
7364                                                                                                   6.00
7365                                                                                                   6.00
7366                                                                                                  20.00
7367                                                                                                 200.00
7368                                                                                                   6.00
7369                                                                                                  75.00
7370                                                                                                  75.00
7371                                                                                           small amount
7372                                                                                                   1.00
7373                                                                                                 252.00
7374                                                                                                 500.00
7375                                                                                                  75.00
7376                                                                                                  23.00
7377                                                                                                   1.60
7378                                                                                                   9.60
7379                                                                                                  70.35
7380                                                                                                   1.00
7381                                                                                                  75.00
7382                                                                                                 272.00
7383                                                                                                 200.00
7384                                                                                                  75.00
7385                                                                                                  72.90
7386                                                                                                   1.00
7387                                                                                                  60.00
7388                                                                                                 272.00
7389                                                                                                 500.00
7390                                                                                                 200.00
7391                                                                                                   1.58
7392                                                                                                  15.00
7393                                                                                                   9.45
7394                                                                                                 107.50
7395                                                                                                 750.00
7396                                                                                                   2.00
7397                                                                                                 272.00
7398                                                                                                 200.00
7399                                                                                               10000.00
7400                                                                                                  40.00
7401                                                                                                  60.00
7402                                                                                                 750.00
7403                                                                                                   0.71
7404                                                                                                  30.00
7405                                                                                                   0.70
7406                                                                                                  20.00
7407                                                                                                  30.20
7408                                                                                                   3.20
7409                                                                                                  64.00
7410                                                                                                  60.00
7411                                                                                                 750.00
7412                                                                                                   1.00
7413                                                                           based on weight (51-100 lbs)
7414                                                                                                 200.00
7415                                                                                                 750.00
7416                                                                                               10000.00
7417                                                                                                  40.00
7418                                                                                                   0.71
7419                                                                                                 250.00
7420                                                                                                  30.20
7421                                                                                                   3.20
7422                                                                                                  64.00
7423                                                                                                  60.00
7424                                                                                                 200.00
7425                                                                                                 180.00
7426                                                                                                150-480
7427                                                                                                  60.00
7428                                                                                                  30.00
7429                                                                                                1000.00
7430                                                                                                  15.00
7431                                                                                                  15.00
7432                                                                                                 50-100
7433                                                                                                  15.00
7434                                                                                                  15.00
7435                                                                                                  15.00
7436                                                                                                  90.00
7437                                                                                                  60.00
7438                                                                                                  30.00
7439                                                                                                  30.00
7440                                                                                                   2.00
7441                                                                                                 450.00
7442                                                                                                  50.00
7443                                                                                                  50.00
7444                                                                                                   2.00
7445                                                                                                 300.00
7446                                                                                                 660.00
7447                                                                                                 120.00
7448                                                                                                 150.00
7449                                                                                                 850.00
7450                                                                                                   1.00
7451                                                                                                 500.00
7452                                                                                                 200.00
7453                                                                                                  23.00
7454                                                                                                1000.00
7455                                                                                                  75.00
7456                                                                                                 200.00
7457                                                                                                 200.00
7458                                                                                                 200.00
7459                                                                                                 200.00
7460                                                                                                 200.00
7461                                                                                                  75.00
7462                                                                                                  75.00
7463                                                                                                 200.00
7464                                                                                                 200.00
7465                                                                                                   6.00
7466                                                                                                  75.00
7467                                                                                                  10.00
7468                                                                                                  80.00
7469                                                                                                  20.00
7470                                                                                                 250.00
7471                                                                                                  23.00
7472                                                                                                 500.00
7473                                                                                                  23.00
7474                                                                                                  23.00
7475                                                                                                   1.00
7476                                                                                                  23.00
7477                                                                                                  23.00
7478                                                                                                  23.00
7479                                                                                               45293.00
7480                                                                                                  75.00
7481                                                                                                 150.00
7482                                                                                                 300.00
7483                                                                                                  75.00
7484                                                                                                 325.00
7485                                                                                                 325.00
7486                                                                                                  10.00
7487                                                                                                  10.00
7488                                                                                                 125.00
7489                                                                                                  50.00
7490                                                                                                  50.00
7491                                                                                                 500.00
7492                                                                                                 375.00
7493                                                                                                 100.00
7494                                                                                                 300.00
7495                                                                                                 272.00
7496                                                                                                 227.00
7497                                                                                                 200.00
7498                                                                                                  50.00
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7500                                                                                                  68.00
7501                                                                                                 272.00
7502                                                                                                  68.00
7503                                                                                        based on weight
7504                                                                                                 250.00
7505                                                                                                  75.00
7506                                                                                                 500.00
7507                                                                                                 272.00
7508                                                                                                 228.00
7509                                                                                                 228.00
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7514                                                                                                  50.00
7515                                                                                                   1.00
7516                                                                                                   1.00
7517                                                                                                1000.00
7518                                                                                                1000.00
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7520                                                                                                 136.00
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7527                                                                                                1000.00
7528                                                                                                 500.00
7529                                                                                                   8.00
7530                                                                                                   1.50
7531                                                                                                   1.00
7532                                                                                                  12.50
7533                                                                                                  50.00
7534                                                                                                 500.00
7535                                                                                                 250.00
7536                                                                                                   0.25
7537                                                                                                   3.00
7538                                                                                                   1.20
7539                                                                                                   1.50
7540                                                                                                   1.30
7541                                                                                                   0.20
7542                                                                                                  50.00
7543                                                                                                  12.50
7544                                                                                                 250.00
7545                                                                                                 500.00
7546                                                                                                  50.00
7547                                                                                                  12.50
7548                                                                                                  60.00
7549                                                                                                  50.00
7550                                                                                                1000.00
7551                                                                                  1 tablet/pill/capsule
7552                                                                                                 200.00
7553                                                                                                  75.00
7554                                                                                                   3.50
7555                                                                           based on weight (88-123 lbs)
7556                                                                                                1000.00
7557                                                                                                 170.00
7558                                                                                                  51.00
7559                                                                                                  55.00
7560                                                                                                   2.00
7561                                                                                                 100.00
7562                                                                                                  10.00
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7567                                                                                                 170.00
7568                                                                                                500-125
7569                                                                                                 300.00
7570                                                                                                  32.00
7571                                                                                                   1.00
7572                                                                                                 227.00
7573                                                                                                  10.00
7574                                                                                                 170.00
7575                                                                                                 272.00
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7581                                                                                                 460.00
7582                                                                                                 460.00
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7591                                                                                                  15.00
7592                                                                                                1200.00
7593                                                                                                   1.00
7594                                                                                                 750.00
7595                                                                                                 350.00
7596                                                                                                   2.00
7597                                                                                                 200.00
7598                                                                                             1 wipe/pad
7599                                                                                                   2.00
7600                                                                                                   1.00
7601                                                                                                   1.00
7602                                                                                                   1.00
7603                                                                                                   1.00
7604                                                                                                 750.00
7605                                                                                                   1.00
7606                                                                                                   1.00
7607                                                                                                   1.00
7608                                                                                                   2.00
7609                                                                                                   8.00
7610                                                                                                   1.00
7611                                                                                                   1.00
7612                                                                                                   1.00
7613                                                                                                   1.00
7614                                                                                                   1.00
7615                                                                                                   1.00
7616                                                                                                   1.00
7617                                                                                                   1.00
7618                                                                                                   1.00
7619                                                                                                   2.00
7620                                                                                                 225.00
7621                                                                                                 375.00
7622                                                                                                   2.00
7623                                                                                                   2.00
7624                                                                                                   2.00
7625                                                                                                   0.50
7626                                                                                                   2.00
7627                                                                                                   1.00
7628                                                                                                   1.00
7629                                                                                                   1.00
7630                                                                                                   1.00
7631                                                                                                   1.00
7632                                                                                                   2.00
7633                                                                                                   1.00
7634                                                                                                   2.00
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7638                                                                                                   2.00
7639                                                                                                   1.00
7640                                                                                                   1.00
7641                                                                                                 500.00
7642                                                                                                   1.00
7643                                                                                                   0.50
7644                                                                                                   1.00
7645                                                                                                   1.00
7646                                                                                                   0.25
7647                                                                                                   1.00
7648                                                                                                 550.00
7649                                                                                                2600.00
7650                                                                                                 500.00
7651                                                                                                   1.00
7652                                                                                                   1.00
7653                                                                                                   1.00
7654                                                                                                   1.00
7655                                                                                                   2.00
7656                                                                                                   2.00
7657                                                                                                   0.25
7658                                                                                                   0.25
7659                                                                                                   0.50
7660                                                                           based on weight (51-100 lbs)
7661                                                                                                 200.00
7662                                                                                                  20.00
7663                                                                                                   3.00
7664                                                                                                 810.00
7665                                                                                                 375.00
7666                                                                                                 100.00
7667                                                                                                  75.00
7668                                                                                                 250.00
7669                                                                                                 100.00
7670                                                                                                  50.00
7671                                                                                                40, 200
7672                                                                                                   0.45
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7676                                                                                                 375.00
7677                                                                                                   1.00
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7680                                                                                                   1.00
7681                                                                            based on weight (40-60 lbs)
7682                                                                                                 60-120
7683                                                                                                 50-100
7684                                                                                                  44-88
7685                                                                                                 375.00
7686                                                                                                  50.00
7687                                                                                                  16.00
7688                                                                                                   1.00
7689                                                                                                   1.00
7690                                                                                                  50.00
7691                                                                                                 100.00
7692                                                                                          23 mg, 228 mg
7693                                                                                                1000.00
7694                                                                                                   3.00
7695                                                                                                1000.00
7696                                                                                                23, 228
7697                                                                                                  50.00
7698                                                                                                  40.00
7699                                                                                                23, 228
7700                                                                                                  40.00
7701                                                                                                23, 228
7702                                                                                                  16.00
7703                                                                                                 100.00
7704                                                                                                 150.00
7705                                                                                           small amount
7706                                                                                                  50.00
7707                                                                                                 200.00
7708                                                                                                 130.00
7709                                                                                                 750.00
7710                                                                                                  50.00
7711                                                                                                   6.00
7712                                                                                                 200.00
7713                                                                                                  16.00
7714                                                                                                 200.00
7715                                                                                                  15.00
7716                                                                                                 200.00
7717                                                                                                  16.00
7718                                                                                                 130.00
7719                                                                                                   1.00
7720                                                                                                  15.00
7721                                                                                                 200.00
7722                                                                                                  10.40
7723                                                                                                  65.00
7724                                                                                                   5.00
7725                                                                                                   8.00
7726                                                                                                  50.00
7727                                                                                                   1.00
7728                                                                                                 200.00
7729                                                                                                 300.00
7730                                                                                                  75.00
7731                                                                                                 200.00
7732                                                                                        based on weight
7733                                                                                                 200.00
7734                                                                                                   1.00
7735                                                                                                   1.00
7736                                                                                                   2.00
7737                                                                                                 500.00
7738                                                                                                 500.00
7739                                                                                                 500.00
7740                                                                                                 160.00
7741                                                                                                 437.50
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7744                                                                                                  45-88
7745                                                                                                 50-100
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7752                                                                                                   1.00
7753                                                                                                   1.00
7754                                                                       based on weight (61+ lbs) - 5 ml
7755                                                                                                 272.00
7756                                                                                                   2.68
7757                                                                                                  75.00
7758                                                                                                  50.00
7759                                                                            based on weight (56-95 lbs)
7760                                                                                                4600.00
7761                                                                                                  15.00
7762                                                                                                1500.00
7763                                                                           based on weight (51-100 lbs)
7764                                                                                                   1.00
7765                                                                                                   1.00
7766                                                                                                   2.00
7767                                                                                                   0.50
7768                                                                                                   2.00
7769                                                                                                   1.00
7770                                                                                                   3.00
7771                                                                                                9000.00
7772                                                                                            unspecified
7773                                                                                                   1.00
7774                                                                                                  50.00
7775                                                                                                   0.50
7776                                                                                            unspecified
7777                                                                                                 720.00
7778                                                                                                 100.00
7779                                                                                                  23.00
7780                                                                                                   1.00
7781                                                                                                   1.00
7782                                                                                                   1.00
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7785                                                                                                   1.00
7786                                                                                                   1.00
7787                                                                                                 1 tube
7788                                                                                                  23.00
7789                                                                                                   1.00
7790                                                                                                   1.00
7791                                                                                                 272.00
7792                                                                                                 240.00
7793                                                                                                 187.50
7794                                                                                                   1.25
7795                                                                            based on weight (60-90 lbs)
7796                                                                                                  50.00
7797                                                                                                  16.00
7798                                                                                                 272.00
7799                                                                                                 136.00
7800                                                                                                  16.00
7801                                                                                                 200.00
7802                                                                                                 100.00
7803                                                                                                  16.00
7804                                                                                                 272.00
7805                                                                                                 136.00
7806                                                                                                  16.00
7807                                                                                                 100.00
7808                                                                                                 272.00
7809                                                                                                 136.00
7810                                                                                                  16.00
7811                                                                                                   2.00
7812                                                                                            unspecified
7813                                                                                                   1.00
7814                                                                                                 200.00
7815                                                                                                   1.00
7816                                                                                                  75.00
7817                                                                                                  20.00
7818                                                                                            unspecified
7819                                                                                                 200.00
7820                                                                                            unspecified
7821                                                                                                 200.00
7822                                                                                            unspecified
7823                                                                                                  16.00
7824                                                                                                 300.00
7825                                                                                                   5.00
7826                                                                                                   3.00
7827                                                                                                  60.00
7828                                                                                                  60.00
7829                                                                                                   5.00
7830                                                                                                 300.00
7831                                                                                                 272.00
7832                                                                                        2.68 ml of 9.7%
7833                                                                                               45451.00
7834                                                                                                 272.00
7835                                                                                                 600.00
7836                                                                                                   1.00
7837                                                                                                 100 mg
7838                                                                                                   1.00
7839                                                                                            application
7840                                                                                                  25-50
7841                                                                                                   1.00
7842                                                                                                   1.00
7843                                                                                                 300.00
7844                                                                                                  75.00
7845                                                                                            unspecified
7846                                                                                            unspecified
7847                                                                                                   1.00
7848                                                                                            unspecified
7849                                                                                                 200.00
7850                                                                                                 250.00
7851                                                                                                 136.00
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7855                                                                                                  20.00
7856                                                                                                  10.00
7857                                                                                                 500.00
7858                                                                                                 375.00
7859                                                                                                  75.00
7860                                                                                                 375.00
7861                                                                                                 500.00
7862                                                                             2-3 tablets/pills/capsules
7863                                                                                                 468.75
7864                                                                                                 50-100
7865                                                                                                 272.00
7866                                                                                                 500.00
7867                                                                                                 272.00
7868                                                                                                 272.00
7869                                                                                                 272.00
7870                                                                                                  75.00
7871                                                                                                 500.00
7872                                                                                                 200.00
7873                                                                                                 272.00
7874                                                                                                 272.00
7875                                                                                                  20.00
7876                                                                                                   2.65
7877                                                                                                 240.00
7878                                                                                                 272.00
7879                                                                                                 126.00
7880                                                                                                 272.00
7881                                                                                                 136.00
7882                                                                                                 375.00
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7886                                                                                                1000.00
7887                                                                                            unspecified
7888                                                                                                1000.00
7889                                                                                            unspecified
7890                                                                                                  90.00
7891                                                                                                1000.00
7892                                                                                                  90.00
7893                                                                                                   2.00
7894                                                                                                 204.00
7895                                                                                            unspecified
7896                                                                                                 500.00
7897                                                                                                   8.00
7898                                                                                                  20.00
7899                                                                                                 200.00
7900                                                                                                 500.00
7901                                                                                                  20.00
7902                                                                                                  10.00
7903                                                                                                   1.00
7904                                                                                                 750.00
7905                                                                                                 750.00
7906                                                                                                   4.00
7907                                                                                                 750.00
7908                                                                                                  50.00
7909                                                                                                 200.00
7910                                                                                                  50.00
7911                                                                                                   8.00
7912                                                                                                 136.00
7913                                                                                                 750.00
7914                                                                                                  12.00
7915                                                                                                 300.00
7916                                                                                                   8.00
7917                                                                                                  50.00
7918                                                                                                 100.00
7919                                                                                                 200.00
7920                                                                                                 500.00
7921                                                                                                   8.00
7922                                                                                                 500.00
7923                                                                                                   5.00
7924                                                                                                 175.00
7925                                                                                                1000.00
7926                                                                                           small amount
7927                                                                                                  20.00
7928                                                                                                1250.00
7929                                                                                           small amount
7930                                                                                                 227.00
7931                                                                                                 450.00
7932                                                                                                 120.00
7933                                                                                                  25.00
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7936                                                                                                 272.00
7937                                                                                                 200.00
7938                                                                                                   6.00
7939                                                                                                   5.00
7940                                                                                                  25.00
7941                                                                                                   1 ml
7942                                                                                                 200.00
7943                                                                                                   5.00
7944                                                                                           small amount
7945                                                                                                   0.70
7946                                                                                           small amount
7947                                                                                                   4.00
7948                                                                                                 272.00
7949                                                                                                 272.00
7950                                                                                                 272.00
7951                                                                                                   2.00
7952                                                                                                   1.50
7953                                                                                                   4.00
7954                                                                                                  25.00
7955                                                                                                   0.75
7956                                                                                                 272.00
7957                                                                                                   4.00
7958                                                                                                  25.00
7959                                                                                                 400.00
7960                                                                                                 100.00
7961                                                                                        0.25 inch strip
7962                                                                                                 100.00
7963                                                                                                   5.00
7964                                                                                                   5.00
7965                                                                                                   1.00
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7971                                                                                                  63.00
7972                                                                                                 500.00
7973                                                                                            unspecified
7974                                                                                                  60.00
7975                                                                                                  75.00
7976                                                                                                  60.00
7977                                                                                                 250.00
7978                                                                                                 272.00
7979                                                                                                   6.00
7980                                                                                                 500.00
7981                                                                                                  25.00
7982                                                                                                 120.00
7983                                                                                                  50.00
7984                                                                                                 250.00
7985                                                                                                 250.00
7986                                                                                                   0.14
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7989                                                                                                   1.50
7990                                                                                                   0.50
7991                                                                                                   1.00
7992                                                                                                   1.00
7993                                                                            based on weight (40-85 lbs)
7994                                                                                                 100.00
7995                                                                                           500 mg, 5 ml
7996                                                                                                   3.00
7997                                                                                                   1.00
7998                                                                           based on weight (85-130 lbs)
7999                                                                                                   1.00
8000                                                                           based on weight (85-130 lbs)
8001                                                                                                   1.80
8002                                                                                                   1.00
8003                                                                                                 100.00
8004                                                                                                 100.00
8005                                                                                                   1.00
8006                                                                                                  10.00
8007                                                                                                 250.00
8008                                                                                                 100.00
8009                                                                                           small amount
8010                                                                                                  50.00
8011                                                                                                 200.00
8012                                                                                           small amount
8013                                                                                                  50.00
8014                                                                                           small amount
8015                                                                                                  23.00
8016                                                                                                 200.00
8017                                                                                           small amount
8018                                                                                                 200.00
8019                                                                                                  75.00
8020                                                                                                   1.00
8021                                                                                                  75.00
8022                                                                                                 200.00
8023                                                                                                 200.00
8024                                                                                                 500.00
8025                                                                                                 300.00
8026                                                                                                  75.00
8027                                                                                                   0.50
8028                                                                                                 272.00
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8031                                                                                                   1.00
8032                                                                                                 100.00
8033                                                                                                   1.00
8034                                                                                                 272.00
8035                                                                                                 272.00
8036                                                                                                 272.00
8037                                                                                                 272.00
8038                                                                                                 272.00
8039                                                                                                 272.00
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8041                                                                                                 500.00
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8046                                                                                                 500.00
8047                                                                                                1000.00
8048                                                                                                 680.00
8049                                                                                                 310.00
8050                                                                                                 950.00
8051                                                                                                 500.00
8052                                                                                                 272.00
8053                                                                                                   4.00
8054                                                                                                   5.00
8055                                                                                                 375.00
8056                                                                                                 500.00
8057                                                                                                 136.00
8058                                                                                                   1.00
8059                                                                                                   0.20
8060                                                                                                 136.00
8061                                                                                                   1.00
8062                                                                                                   1.00
8063                                                                                                  26-60
8064                                                                                                   3.60
8065                                                                                                   0.20
8066                                                                                                  21-55
8067                                                                                                  21-55
8068                                                                                                   0.20
8069                                                                                                  21-55
8070                                                                                                  26-50
8071                                                                                                  26-50
8072                                                                                                   0.40
8073                                                                                                  25.00
8074                                                                                                   0.20
8075                                                                                            unspecified
8076                                                                                                   7.50
8077                                                                                                  50.00
8078                                                                                                   5.00
8079                                                                                                 400.00
8080                                                                                                 500.00
8081                                                                                                   3.50
8082                                                                                                 250.00
8083                                                                                                 250.00
8084                                                                                                  75.00
8085                                                                                                 125.00
8086                                                                                           small amount
8087                                                                                                   1.00
8088                                                                                                 375.00
8089                                                                                                 125.00
8090                                                                                                  50.00
8091                                                                                               125, 375
8092                                                                                                  60.00
8093                                                                                                  26.00
8094                                                                                                   3.50
8095                                                                                                  36.00
8096                                                                                                  16.00
8097                                                                                                   8.00
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8101                                                                                                  24.00
8102                                                                                                  16.00
8103                                                                                                 500.00
8104                                                                                                  50.00
8105                                                                                                   1.00
8106                                                                                                  20.00
8107                                                                                                  30.00
8108                                                                                                 100.00
8109                                                                                                   3.20
8110                                                                                                   1.00
8111                                                                                                   1.00
8112                                                                                                   3.20
8113                                                                                                   1.00
8114                                                                                                  75.00
8115                                                                                                 425.00
8116                                                                                                 100.00
8117                                                                                                 425.00
8118                                                                                                 100.00
8119                                                                                                 215.00
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8124                                                                                                 272.00
8125                                                                                            unspecified
8126                                                                                                 500.00
8127                                                                                                  15.00
8128                                                                                           small amount
8129                                                                                                   8.00
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8132                                                                                                  23.00
8133                                                                                                 900.00
8134                                                                                                  75.00
8135                                                                                                  15-20
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8141                                                                                                 500.00
8142                                                                                                  32.00
8143                                                                                                  60.00
8144                                                                                                1000.00
8145                                                                                                 500.00
8146                                                                                                  60.00
8147                                                                                                  60.00
8148                                                                                                   1.60
8149                                                                                                  13.00
8150                                                                                                 130.00
8151                                                                                                  32.00
8152                                                                                                 100.00
8153                                                                                                  75.00
8154                                                                                                 100.00
8155                                                                                                   1.00
8156                                                                                                   2.00
8157                                                                                                 500.00
8158                                                                                                   2.68
8159                                                                                                 272.00
8160                                                                               2 tablets/pills/capsules
8161                                                                                                 150.00
8162                                                                                                 150.00
8163                                                                                                 700.00
8164                                                                                                 500.00
8165                                                                                               750-1000
8166                                                                                                 272.00
8167                                                                                                 227.00
8168                                                                                                 272.00
8169                                                                                                   2.68
8170                                                                                                 227.00
8171                                                                                                   0.55
8172                                                                                                 272.00
8173                                                                                                   8.00
8174                                                                                                   1.00
8175                                                                                                 272.00
8176                                                                                                1000.00
8177                                                                                                1000.00
8178                                                                                                 272.00
8179                                                                                                  80.00
8180                                                                                                  80.00
8181                                                                                                  75.00
8182                                                                                           small amount
8183                                                                                                  75.00
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8189                                                                                                 200.00
8190                                                                                                 200.00
8191                                                                                                  10.00
8192                                                                                                 200.00
8193                                                                                                   7.00
8194                                                                                                  16.00
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8197                                                                                                 272.00
8198                                                                                                 375.00
8199                                                                                                  50.00
8200                                                                                                   1.00
8201                                                                                                   1.00
8202                                                                                                  10.00
8203                                                                                                   1.00
8204                                                                                                   1.00
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8213                                                                                                   6.00
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8216                                                                                                  75.00
8217                                                                                                 900.00
8218                                                                                                 500.00
8219                                                                                                 136.00
8220                                                                                                  26-50
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8225                                                                                                 750.00
8226                                                                                                  50.00
8227                                                                                                   2.00
8228                                                                                                   1.00
8229                                                                                                 100.00
8230                                                                                                 100.00
8231                                                                                                  23.00
8232                                                                                                  23.00
8233                                                                                                1000.00
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8237                                                                                                  50.00
8238                                                                                           small amount
8239                                                                                                   4.00
8240                                                                                                   6.00
8241                                                                                                  23 mg
8242                                                                                                   8.00
8243                                                                                                  23.00
8244                                                                                                  44-88
8245                                                                                                 750.00
8246                                                                                                   8.00
8247                                                                                                  23.00
8248                                                                            based on weight (44-88 lbs)
8249                                                                                                  32.00
8250                                                                                                 120.00
8251                                                                                               500, 750
8252                                                                                                  spray
8253                                                                                                  23.00
8254                                                                                                  80.00
8255                                                                                                  50.00
8256                                                                                                1000.00
8257                                                                                                  16.00
8258                                                                                                  23.00
8259                                                                                                  50.00
8260                                                                                                  16.00
8261                                                                                                  62.50
8262                                                                                                   6.00
8263                                                                                                 800.00
8264                                                                                                  88.00
8265                                                                                                 500.00
8266                                                                                                 100.00
8267                                                                                                  16.00
8268                                                                                                  50.00
8269                                                                                                 136.20
8270                                                                                                  23.00
8271                                                                                                 500.00
8272                                                                                                 200.00
8273                                                                                                 200.00
8274                                                                                                  16.00
8275                                                                                                  50.00
8276                                                                                                   0.28
8277                                                                                                 740.00
8278                                                                                                 170.00
8279                                                                                                   8.50
8280                                                                                            unspecified
8281                                                                                                   6.00
8282                                                                                                 750.00
8283                                                                                                   5.00
8284                                                                                            unspecified
8285                                                                                                  50.00
8286                                                                                                  16.00
8287                                                                                                  75.00
8288                                                                                                  50.00
8289                                                                                                  16.00
8290                                                                                                  16.00
8291                                                                                                  50.00
8292                                                                                                   8.00
8293                                                                                            unspecified
8294                                                                                                  60.00
8295                                                                                                  16.00
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8301                                                                                                 50-100
8302                                                                                                 50-100
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8306                                                                                                 50-100
8307                                                                                                  44-88
8308                                                                                                  16.00
8309                                                                                                   3.00
8310                                                                                                   1.00
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8316                                                                                                 125.00
8317                                                                                                 125.00
8318                                                                                                 120.00
8319                                                                                                 125.00
8320                                                                                                 136.00
8321                                                                                                 272.00
8322                                                                                                 375.00
8323                                                                                                 500.00
8324                                                                                                  20.00
8325                                                                                                 272.00
8326                                                                                                  56-95
8327                                                                                                 375.00
8328                                                                                                 500.00
8329                                                                                                  20.00
8330                                                                                                  50.00
8331                                                                                                 272.00
8332                                                                                                  56-95
8333                                                                                                  50.00
8334                                                                                                 272.00
8335                                                                                                  56-95
8336                                                                                                   1.00
8337                                                                                            unspecified
8338                                                                                            unspecified
8339                                                                                                 272.00
8340                                                                                                  56-95
8341                                                                                                 1 drop
8342                                                                                                 325.00
8343                                                                                                 750.00
8344                                                                                                 272.00
8345                                                                                                   1.00
8346                                                                                                  50.00
8347                                                                                                   1.00
8348                                                                                                 750.00
8349                                                                                            unspecified
8350                                                                                                  50.00
8351                                                                                                 500.00
8352                                                                                                   1.00
8353                                                                                                 272.00
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8356                                                                                                1000.00
8357                                                                                                   4.76
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8360                                                                                                   7.00
8361                                                                                                   3.00
8362                                                                                           small amount
8363                                                                                                 500.00
8364                                                                                                  23.00
8365                                                                                                 460.00
8366                                                                                                  80.00
8367                                                                                                1000.00
8368                                                                                                   6.00
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8372                                                                                                  60.00
8373                                                                                                 375.00
8374                                                                                                   1.00
8375                                                                                                   1.00
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8379                                                                                                   1.00
8380                                                                                                 375.00
8381                                                                                                 375.00
8382                                                                                                   1.00
8383                                                                                                 375.00
8384                                                                                                   8.00
8385                                                                                                   1.00
8386                                                                                                 272.00
8387                                                                                                 272.00
8388                                                                                                 272.00
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8390                                                                                                 450.00
8391                                                                                                 275.00
8392                                                                                                   0.60
8393                                                                                                 450.00
8394                                                                                                   1.00
8395                                                                                                  75.00
8396                                                                                                 300.00
8397                                                                                                   5.00
8398                                                                                                 300.00
8399                                                                                                   1.00
8400                                                                                                  75.00
8401                                                                                                  20.00
8402                                                                                                   1.00
8403                                                                                                 960.00
8404                                                                                                  75.00
8405                                                                                                 1 tube
8406                                                                                                 500.00
8407                                                                                                  50.00
8408                                                                           based on weight (50-100 lbs)
8409                                                                                                   1.00
8410                                                                           based on weight (51-100 lbs)
8411                                                                                                   0.50
8412                                                                                                   0.90
8413                                                                                                 150.00
8414                                                                                                   1.70
8415                                                                                                   0.43
8416                                                                                                  80.00
8417                                                                                                   4.00
8418                                                                                            unspecified
8419                                                                                                 200.00
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8422                                                                                                 272.00
8423                                                                                                 272.00
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8426                                                                                                 136.00
8427                                                                           based on weight (51-100 lbs)
8428                                                                                                 750.00
8429                                                                                                 227.00
8430                                                                                                   1.00
8431                                                                                                   1.20
8432                                                                                                 150.00
8433                                                                                                   1.50
8434                                                                                                 136.00
8435                                                                                         1 pack/package
8436                                                                                           small amount
8437                                                                                                 272.00
8438                                                                                                 272.00
8439                                                                                                 272.00
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8442                                                                                                 272.00
8443                                                                                                 136.00
8444                                                                                                  20.00
8445                                                                                                  50.00
8446                                                                                                 272.00
8447                                                                                                 100.00
8448                                                                                                   1.00
8449                                                                                                   1.00
8450                                                                                                 272.00
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8453                                                                                                  23.00
8454                                                                           based on weight (50-100 lbs)
8455                                                                                                 200.00
8456                                                                                                  16.00
8457                                                                                                 200.00
8458                                                                                                  16.00
8459                                                                                                 500.00
8460                                                                                                   1.00
8461                                                                                                 50-100
8462                                                                                                 500.00
8463                                                                                                 272.00
8464                                                                                                 100.00
8465                                                                                                  26-50
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8468                                                                                                 150.00
8469                                                                                                  10.00
8470                                                                                                   5.00
8471                                                                                                 150.00
8472                                                                                                  10.00
8473                                                                                                   4.00
8474                                                                                                 200.00
8475                                                                                                   bath
8476                                                                                                 136.00
8477                                                                                                  10.00
8478                                                                                                   bath
8479                                                                                                   4.00
8480                                                                                                 272.00
8481                                                                                                 136.00
8482                                                                                                   5.00
8483                                                                                                 272.00
8484                                                                                                 136.00
8485                                                                                                 272.00
8486                                                                                                 136.00
8487                                                                                                 272.00
8488                                                                                                 136.00
8489                                                                                                  44-88
8490                                                                                                  80.00
8491                                                                                                   1.50
8492                                                                                                 300.00
8493                                                                                                   1.00
8494                                                                                                 100.00
8495                                                                                                   1.00
8496                                                                                                  20.00
8497                                                                                                  20.00
8498                                                                                                  10.00
8499                                                                                                  10.00
8500                                                                                                   1.00
8501                                                                                                 160.00
8502                                                                                                   1.00
8503                                                                                                   2.50
8504                                                                                                   3.00
8505                                                                                                   4.00
8506                                                                                                  30.00
8507                                                                                                  30.00
8508                                                                                                 250.00
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8511                                                                                                   1.40
8512                                                                                                   1.00
8513                                                                                                  30.00
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8516                                                                                                  23.00
8517                                                                                                  30.00
8518                                                                                                   1.00
8519                                                                                                   0.48
8520                                                                                                   1.20
8521                                                                                                  72.00
8522                                                                                                   6.00
8523                                                                                                 105.00
8524                                                                                                   1.00
8525                                                                                                  10.00
8526                                                                                                   0.40
8527                                                                                                   0.20
8528                                                                         based on weight (50.1-100 lbs)
8529                                                                                                   0.20
8530                                                                                                  30.00
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8535                                                                                                  50.00
8536                                                                                                  15.00
8537                                                                                                 300.00
8538                                                                                                 300.00
8539                                                                                                  20.00
8540                                                                                                 200.00
8541                                                                                                  spray
8542                                                                                                 500.00
8543                                                                                                 810.00
8544                                                                                                  37.50
8545                                                                                                  25.00
8546                                                                                                8 drops
8547                                                                                                 500 mg
8548                                                                                                 100.00
8549                                                                                                   5.00
8550                                                                           based on weight (50-100 lbs)
8551                                                                                                 272.00
8552                                                                                                 272.00
8553                                                                                                  23.00
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8556                                                                                                2000.00
8557                                                                                                 500.00
8558                                                                                                 375.00
8559                                                                                                   1.00
8560                                                                                                 200.00
8561                                                                                                  20.00
8562                                                                                                 375.00
8563                                                                                                   1.00
8564                                                                                                   0.69
8565                                                                                                   2.20
8566                                                                                                   1.00
8567                                                                                                 468.75
8568                                                                                                   3.13
8569                                                                                                  37.50
8570                                                                                                  12.00
8571                                                                                                  72.00
8572                                                                                                1620.00
8573                                                                                                  27.00
8574                                                                                                   1.00
8575                                                                                                  25-50
8576                                                                                                1000.00
8577                                                                                                   1.00
8578                                                                                           small amount
8579                                                                                                  20.00
8580                                                                                                 400.00
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8587                                                                                                   1.00
8588                                                                                           small amount
8589                                                                                                 500.00
8590                                                                                                  10.00
8591                                                                           based on weight (60-120 lbs)
8592                                                                                                   1.00
8593                                                                                                   1.50
8594                                                                                                 100.00
8595                                                                                                   1.00
8596                                                                                                   1.00
8597                                                                                                   3.00
8598                                                                                                   1.00
8599                                                                                                   1.00
8600                                                                                                   1.00
8601                                                                                                 100.00
8602                                                                                                 125.00
8603                                                                                                 500.00
8604                                                                                                   1.00
8605                                                                                                   1.00
8606                                                                                                   1.00
8607                                                                              based on weight (55+ lbs)
8608                                                                                                 325.00
8609                                                                           based on weight (51-100 lbs)
8610                                                                                                  75.00
8611                                                                                                  75.00
8612                                                                                                 350.00
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8614                                                                                                 350.00
8615                                                                                                   1.00
8616                                                                                                 400.00
8617                                                                                                  20.00
8618                                                                                                 625.00
8619                                                                                                1000.00
8620                                                                                                  60.00
8621                                                                                                 137.00
8622                                                                                                   6.80
8623                                                                                                 200.00
8624                                                                                                 300.00
8625                                                                                                   3.20
8626                                                                                                   1.30
8627                                                                                                   0.65
8628                                                                                                   0.05
8629                                                                                                   4.20
8630                                                                                                   2.20
8631                                                                                                 161.80
8632                                                                                                   2.00
8633                                                                                                   1.50
8634                                                                                                   1.40
8635                                                                                                  75.00
8636                                                                                                 136.00
8637                                                                                                 300.00
8638                                                                                                  75.00
8639                                                                                                 200.00
8640                                                                                                   1.00
8641                                                                                                  20.00
8642                                                                                                   5.00
8643                                                                                                 227.00
8644                                                                                                 750.00
8645                                                                                                   3.30
8646                                                                                                   2.00
8647                                                                                                  12.70
8648                                                                                                   2.00
8649                                                                                                   2.00
8650                                                                                                   2.50
8651                                                                                                  75.00
8652                                                                                                  50.00
8653                                                                                                 200.00
8654                                                                                                 750.00
8655                                                                                                   1.50
8656                                                                                                   4.00
8657                                                                                                  60.00
8658                                                                                                 750.00
8659                                                                                                  12.00
8660                                                                                                 272.00
8661                                                                                                   8.00
8662                                                                                                 300.00
8663                                                                                                  75.00
8664                                                                                                 300.00
8665                                                                                                  60.00
8666                                                                                                  75.00
8667                                                                                                   0.50
8668                                                                                                  60.00
8669                                                                                                   1.00
8670                                                                                                 200.00
8671                                                                                                1647.00
8672                                                                                                1647.00
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8678                                                                                                 500.00
8679                                                                                                 272.00
8680                                                                                                 272.00
8681                                                                                                 500.00
8682                                                                                                  10.00
8683                                                                                                  15.00
8684                                                                                                 272.00
8685                                                                                                150-100
8686                                                                                                   4.00
8687                                                                                                  10.00
8688                                                                                                 500.00
8689                                                                                                  10.00
8690                                                                                                  50.00
8691                                                                                                 500.00
8692                                                                                                 200.00
8693                                                                                                 272.00
8694                                                                            based on weight (45-88 lbs)
8695                                                                                                25-37.5
8696                                                                                                 200.00
8697                                                                                                 varies
8698                                                                                                   1.00
8699                                                                                                   1.00
8700                                                                                                 272.00
8701                                                                                                 272.00
8702                                                                            based on weight (45-88 lbs)
8703                                                                                                 200.00
8704                                                                                                   1.00
8705                                                                                                  57.00
8706                                                                                                 272.00
8707                                                                            based on weight (45-88 lbs)
8708                                                                                                   3.75
8709                                                                                                 200.00
8710                                                                                                   1.00
8711                                                                                                   1.00
8712                                                                                                1000.00
8713                                                                                                   1.00
8714                                                                                                 272.00
8715                                                                                                   1.88
8716                                                                                                   1.00
8717                                                                                                  12.50
8718                                                                                                   3.00
8719                                                                                                  14.00
8720                                                                                                 150.00
8721                                                                                                 200 mg
8722                                                                                                   2.20
8723                                                                                                 300.00
8724                                                                                                   1.00
8725                                                                                                   4.80
8726                                                                                                   4.50
8727                                                                                                 200.00
8728                                                                                                 300.00
8729                                                                                                   1.00
8730                                                                                                   2.40
8731                                                                                        based on weight
8732                                                                                                   2.60
8733                                                                                                 200.00
8734                                                                                                   1.00
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8737                                                                                                   6.00
8738                                                                                                   1.00
8739                                                                                                  21.00
8740                                                                                                   1.00
8741                                                                                                   5.00
8742                                                                                                 200.00
8743                                                                                                 200.00
8744                                                                                            unspecified
8745                                                                                            unspecified
8746                                                                                                 200.00
8747                                                                                                 400.00
8748                                                                                                 600.00
8749                                                                                                 500.00
8750                                                                                                 600.00
8751                                                                                                 400.00
8752                                                                                                 500.00
8753                                                                                                 600.00
8754                                                                                                 400.00
8755                                                                                                 100.00
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8758                                                                                                   1.00
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8761                                                                                                   7.50
8762                                                                                                 150.00
8763                                                                                                 300.00
8764                                                                                                 150.00
8765                                                                                                   1.00
8766                                                                                                 227.00
8767                                                                                                   1.00
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8772                                                                                                  37.50
8773                                                                                                  16.00
8774                                                                                                  16.00
8775                                                                                                  37.50
8776                                                                                                  56-95
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8782                                                                                                 750.00
8783                                                                                                  30.00
8784                                                                                                 150.00
8785                                                                                                  60.00
8786                                                                           based on weight (51-100 lbs)
8787                                                                                                  44-88
8788                                                                                                 200.00
8789                                                                                                  75.00
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8796                                                                                                  44-88
8797                                                                                            unspecified
8798                                                                                                 200.00
8799                                                                                                  20.00
8800                                                                                                  75.00
8801                                                                                                 100.00
8802                                                                                                 300.00
8803                                                                                                  20.00
8804                                                                                                  75.00
8805                                                                           based on weight (51-100 lbs)
8806                                                                                                   7.00
8807                                                                                                 500.00
8808                                                                                                  44-88
8809                                                                                                   5.00
8810                                                                                                   1.00
8811                                                                                                 750.00
8812                                                                                                 204.00
8813                                                                                                 500.00
8814                                                                                                 500.00
8815                                                                                        0.25 inch strip
8816                                                                                                   8.00
8817                                                                                                   6.00
8818                                                                                                 272.00
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8821                                                                                                   3.40
8822                                                                                                   3.40
8823                                                                                                 500.00
8824                                                                                                  20.00
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8827                                                                                                 60-120
8828                                                                           based on weight (51-100 lbs)
8829                                                                                                 272.00
8830                                                                                                 136.00
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8832                                                                                                 227.00
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8835                                                                                                  75.00
8836                                                                                                 500.00
8837                                                                                            unspecified
8838                                                                                                  75.00
8839                                                                                                 272.00
8840                                                                                                 272.00
8841                                                                                                   2.68
8842                                                                                                 272.00
8843                                                                            based on weight (45-88 lbs)
8844                                                                                                 227.00
8845                                                                                                   1.14
8846                                                                                                   1.00
8847                                                                                                 200.00
8848                                                                                                 300.00
8849                                                                                                  75.00
8850                                                                                                 300.00
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8854                                                                                                 150.00
8855                                                                                                272 mcg
8856                                                                                                   8.00
8857                                                                                                 500.00
8858                                                                                                  60.00
8859                                                                                                   1.00
8860                                                                                           small amount
8861                                                                                                 500.00
8862                                                                                                 272.00
8863                                                                                                   4.00
8864                                                                                                   1.00
8865                                                                                                 272.00
8866                                                                                                 136.00
8867                                                                                                 227.00
8868                                                                                                  16.00
8869                                                                                                1620.00
8870                                                                                                 750.00
8871                                                                                                 300.00
8872                                                                                                 300.00
8873                                                                                                 200.00
8874                                                                                                 200.00
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8878                                                                                                  25.00
8879                                                                           based on weight (51-100 lbs)
8880                                                                                                 272.00
8881                                                                                                 227.00
8882                                                                                                 272.00
8883                                                                                                 227.00
8884                                                                                                 200.00
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8886                                                                                                   1.00
8887                                                                                                 200.00
8888                                                                                                 272.00
8889                                                                                                 227.00
8890                                                                                                 272.00
8891                                                                                                 500.00
8892                                                                                                 272.00
8893                                                                                                  75.00
8894                                                                                                  50.00
8895                                                                                                   1.00
8896                                                                                                 100.00
8897                                                                                                 500.00
8898                                                                                                 200.00
8899                                                                                                   8.00
8900                                                                                                  75.00
8901                                                                                                  75.00
8902                                                                                                 500.00
8903                                                                                                   1.00
8904                                                                                                 250.00
8905                                                                                                   0.30
8906                                                                                                 250.00
8907                                                                                                   0.30
8908                                                                                              13.5, 810
8909                                                                                                 500.00
8910                                                                                                 500.00
8911                                                                           based on weight (51-100 lbs)
8912                                                                                                   0.40
8913                                                                                                   0.40
8914                                                                                                  23.00
8915                                                                                                   0.40
8916                                                                                                  23.00
8917                                                                                                   0.40
8918                                                                                                  23.00
8919                                                                                                   0.40
8920                                                                                                   0.40
8921                                                                                                 100.00
8922                                                                                                   0.40
8923                                                                                                  70.00
8924                                                                                                9200.00
8925                                                                                                  30.00
8926                                                                                                 272.00
8927                                                                                                 228.00
8928                                                                                                 228.00
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8931                                                                                                  50.00
8932                                                                                                  23.00
8933                                                                                                 500.00
8934                                                                                                   2.00
8935                                                                                                  23.00
8936                                                                                                1000.00
8937                                                                                                  23.00
8938                                                                                                1000.00
8939                                                                                                  16.00
8940                                                                                                  23.00
8941                                                                                                1000.00
8942                                                                                                  16.00
8943                                                                                                  23.00
8944                                                                                                1000.00
8945                                                                                                 228.00
8946                                                                                                  16.00
8947                                                                                                   0.70
8948                                                                                                   0.70
8949                                                                                                  16.00
8950                                                                                                  16.00
8951                                                                                                   0.70
8952                                                                                                   3.00
8953                                                                                                  60.00
8954                                                                                                  40.00
8955                                                                                                  16.00
8956                                                                                                   2.00
8957                                                                                                   1.00
8958                                                                                                 272.00
8959                                                                                                 228.00
8960                                                                                                 228.00
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8963                                                                                                  25.00
8964                                                                                                  23.00
8965                                                                                                  23.00
8966                                                                                                1000.00
8967                                                                                                  23.00
8968                                                                                                1000.00
8969                                                                                                  23.00
8970                                                                                                1000.00
8971                                                                                                  23.00
8972                                                                                                1000.00
8973                                                                                                 228.00
8974                                                                                                  30.00
8975                                                                                                  60.00
8976                                                                                                   1.00
8977                                                                                                   1.00
8978                                                                                                   1.00
8979                                                                                                 500.00
8980                                                                                                  60.00
8981                                                                                                   3.00
8982                                                                                                   0.50
8983                                                                                                1000.00
8984                                                                                                   3.00
8985                                                                                                   2.00
8986                                                                                                  16.00
8987                                                                                                  16.00
8988                                                                                                 272.00
8989                                                                                                  24.00
8990                                                                                                  75.00
8991                                                                                                 200.00
8992                                                                                                   6.00
8993                                                                                                 272.00
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8996                                                                                                  80.00
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
8999                                                                                                  70.00
9000                                                                                                  80.00
9001                                                                                                  75.00
9002                                                                                                  75.00
9003                                                                                                 300.00
9004                                                                                                 200.00
9005                                                                                                  80.00
9006                                                                                                 272.00
9007                                                                                                  70.00
9008                                                                                                  70.00
9009                                                                                                   6.00
9010                                                                                                 200.00
9011                                                                                                 200.00
9012                                                                                                  50.00
9013                                                                                                 200.00
9014                                                                                                  70.00
9015                                                                                                  50.00
9016                                                                                                 200.00
9017                                                                                                  70.00
9018                                                                                                  50.00
9019                                                                                                  23.00
9020                                                                                                  23.00
9021                                                                                                1000.00
9022                                                                                                   5.00
9023                                                                                                  23.00
9024                                                                                                   1.00
9025                                                                                                  23.00
9026                                                                           based on weight (50-100 lbs)
9027                                                                                                  75.00
9028                                                                                                  17.60
9029                                                                                                  75.00
9030                                                                                                  20.00
9031                                                                                                  23.00
9032                                                                                                  20.00
9033                                                                                                1000.00
9034                                                                                                  23.00
9035                                                                                                1776.00
9036                                                                                                   4.00
9037                                                                                                  60.00
9038                                                                                                 300.00
9039                                                                                                   3.75
9040                                                                                                 100.00
9041                                                                                                  23.00
9042                                                                                                 460.00
9043                                                                                                   1.00
9044                                                                                                   1.00
9045                                                                                                  23.00
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9048                                                                                                 460.00
9049                                                                                                2 drops
9050                                                                                            as directed
9051                                                                                                 187.50
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9057                                                                                                 500.00
9058                                                                                                  75.00
9059                                                                                                 250.00
9060                                                                                            unspecified
9061                                                                                                 100.00
9062                                                                                                 100.00
9063                                                                                                   1.00
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9066                                                                                                  10.00
9067                                                                                                  50.00
9068                                                                                                 400.00
9069                                                                                                 100.00
9070                                                                                            unspecified
9071                                                                                            unspecified
9072                                                                                                 100.00
9073                                                                                                   2.00
9074                                                                                                 375.00
9075                                                                                                  11.50
9076                                                                                                1000.00
9077                                                                                                  68.00
9078                                                                                                  11.50
9079                                                                                                1000.00
9080                                                                                                 100.00
9081                                                                                                  60.00
9082                                                                                                  20.00
9083                                                                                                  10.00
9084                                                                                            unspecified
9085                                                                                                 500.00
9086                                                                                                 600.00
9087                                                                                                  53.00
9088                                                                                                  91.00
9089                                                                                                 136.00
9090                                                                                                  20.00
9091                                                                                                   1.00
9092                                                                                                 100.00
9093                                                                                                  20.00
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9096                                                                                                 100.00
9097                                                                                                  50.00
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9102                                                                                                 100.00
9103                                                                                                3000.00
9104                                                                                                   1.00
9105                                                                                                 272.00
9106                                                                                                   9.80
9107                                                                                                   1.00
9108                                                                                                 150.00
9109                                                                                        0.25 inch strip
9110                                                                                                 227.00
9111                                                                                                 500.00
9112                                                                                                 500.00
9113                                                                                                 500.00
9114                                                                                                  20.00
9115                                                                                                  10.00
9116                                                                                                   6.00
9117                                                                                                 150.00
9118                                                                                        0.25 inch strip
9119                                                                                                  20.00
9120                                                                                                   1.00
9121                                                                                                   1.00
9122                                                                                                   1.00
9123                                                                                                   1.00
9124                                                                                                   1.00
9125                                                                                                 500.00
9126                                                                                               45585.00
9127                                                                                                 272.00
9128                                                                                                 136.00
9129                                                                                                   8.00
9130                                                                                                 272.00
9131                                                                                                 136.00
9132                                                                              based on weight (60+ lbs)
9133                                                                                                   1.00
9134                                                                                                   1.00
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9138                                                                                                 227.00
9139                                                                                                 136.00
9140                                                                                                 227.00
9141                                                                                                 136.00
9142                                                                                                 227.00
9143                                                                                                 136.00
9144                                                                                                   1.00
9145                                                                                                   1.00
9146                                                                                                   1.00
9147                                                                                                 500.00
9148                                                                                                   0.60
9149                                                                                                 200.00
9150                                                                                                  15.00
9151                                                                                                 227.00
9152                                                                                                 200.00
9153                                                                                                 500.00
9154                                                                                                   8.00
9155                                                                                                  50.00
9156                                                                                            unspecified
9157                                                                                                  50.00
9158                                                                                                   4.00
9159                                                                                                 340.00
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9162                                                                                                 300.00
9163                                                                                                 340.00
9164                                                                                                 88-132
9165                                                                                                   2.00
9166                                                                                                  28.75
9167                                                                                                   4.00
9168                                                                                                   0.90
9169                                                                                                 100.00
9170                                                                           based on weight (51-100 lbs)
9171                                                                                                   0-25
9172                                                                                                 88-132
9173                                                                                                   0.60
9174                                                                                                  50.00
9175                                                                                                  50.00
9176                                                                                                  50.00
9177                                                                                                   0.30
9178                                                                                                  50.00
9179                                                                                                  50.00
9180                                                                                                 272.00
9181                                                                                                   1.00
9182                                                                                                  75.00
9183                                                                                                  50.00
9184                                                                                                 500.00
9185                                                                                                 100.00
9186                                                                                                  50.00
9187                                                                                            application
9188                                                                                                  16.00
9189                                                                                  1 tablet/pill/capsule
9190                                                                                                  80.00
9191                                                                                                 200.00
9192                                                                                                 500.00
9193                                                                                         1 pack/package
9194                                                                                                  80.00
9195                                                                                                  12.00
9196                                                                                                  15.00
9197                                                                                                   2.00
9198                                                                                                   1.00
9199                                                                                                   1.00
9200                                                                                                   1.00
9201                                                                                                   1.00
9202                                                                           based on weight (51-100 lbs)
9203                                                                                                   1.00
9204                                                                                                  16.00
9205                                                                                                 200.00
9206                                                                                                  50.00
9207                                                                                                  60.00
9208                                                                                                1750.00
9209                                                                                                   1.00
9210                                                                                                1750.00
9211                                                                                                   0.25
9212                                                                                                 100.00
9213                                                                                                  50.00
9214                                                                                                  12.50
9215                                                                                                1750.00
9216                                                                                                 200.00
9217                                                                                                  50.00
9218                                                                                                 100.00
9219                                                                                                 100.00
9220                                                                                                1750.00
9221                                                                                                  50.00
9222                                                                                                   0.25
9223                                                                                                 100.00
9224                                                                                                   1.30
9225                                                                                                 100.00
9226                                                                                                  50.00
9227                                                                                                 100.00
9228                                                                                                  75.00
9229                                                                                                  75 mg
9230                                                                                           small amount
9231                                                                                                  10.00
9232                                                                                                   1.00
9233                                                                                                 250 mg
9234                                                                                                  75.00
9235                                                                                                 750.00
9236                                                                           based on weight (51-100 lbs)
9237                                                                                                   3.25
9238                                                                                                   1.00
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9246                                                                                                  60.00
9247                                                                                                   1.50
9248                                                                                                   1.00
9249                                                                                                 272.00
9250                                                                                                 227.00
9251                                                                                                   0.75
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9255                                                                                                   0.50
9256                                                                                                 500.00
9257                                                                                                 500.00
9258                                                                                                   0.50
9259                                                                           based on weight (60-120 lbs)
9260                                                                                                 500.00
9261                                                                                                   0.50
9262                                                                                                 250.00
9263                                                                                                1000.00
9264                                                                                                  10.00
9265                                                                                                 272.00
9266                                                                                                 272.00
9267                                                                           based on weight (51-100 lbs)
9268                                                                                                  44-88
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9272                                                                                                  50.00
9273                                                                                                 100.00
9274                                                                                                 100.00
9275                                                                                                 600.00
9276                                                                                                  20.00
9277                                                                                                 625.00
9278                                                                                                 500.00
9279                                                                                                  10.00
9280                                                                                                  50.00
9281                                                                                                  25.00
9282                                                                                                   5.00
9283                                                                                                  50.00
9284                                                                                                 125.00
9285                                                                                                   4.00
9286                                                                                                   2.00
9287                                                                                                 272.00
9288                                                                                                 227.00
9289                                                                                                   1.00
9290                                                                                                 60-120
9291                                                                                                 750.00
9292                                                                                               27, 1620
9293                                                                                                1620.00
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9296                                                                                                  16.00
9297                                                                                            unspecified
9298                                                                                                  16.00
9299                                                                                                 60-120
9300                                                                                                  16.00
9301                                                                                                   1.20
9302                                                                                                 500.00
9303                                                                                                   3.00
9304                                                                                                 200.00
9305                                                                                                 272.00
9306                                                                                                   2.00
9307                                                                                                   3.00
9308                                                                                                 272.00
9309                                                                                                   4.70
9310                                                                                                 272.00
9311                                                                                                 136.00
9312                                                                                                272 mcg
9313                                                                                                 136.00
9314                                                                                                  75.00
9315                                                                                                  75.00
9316                                                                                                   1.88
9317                                                                                                   1.00
9318                                                                                                  25.00
9319                                                                                                  50.00
9320                                                                                                   1.00
9321                                                                                                   1.00
9322                                                                                                  50.00
9323                                                                                                  75.00
9324                                                                                                  50.00
9325                                                                                                   3.00
9326                                                                                                   1.00
9327                                                                                                 150.00
9328                                                                                                   5.20
9329                                                                                                   1.10
9330                                                                                                   4.70
9331                                                                                                   5.00
9332                                                                                                1340.00
9333                                                                                                  75.00
9334                                                                                                1620.00
9335                                                                                                 272.00
9336                                                                                                 272.00
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9340                                                                                                 100.00
9341                                                                                                   5.00
9342                                                                                                  20.00
9343                                                                                                   0.01
9344                                                                                                   0.50
9345                                                                                                   0.60
9346                                                                                                 500.00
9347                                                                                                   4.00
9348                                                                                                 136 mg
9349                                                                                                 150.00
9350                                                                                                  50.00
9351                                                                                                   1.90
9352                                                                                                 200.00
9353                                                                                                 200.00
9354                                                                                                 500.00
9355                                                                                                 500.00
9356                                                                                                 100.00
9357                                                                                                 100.00
9358                                                                                                  30.00
9359                                                                                                   2.50
9360                                                                                                  20.00
9361                                                                                                 272.00
9362                                                                                                 272.00
9363                                                                                                   6.00
9364                                                                                                 500.00
9365                                                                                                  75.00
9366                                                                                                 272.00
9367                                                                                                1000.00
9368                                                                                                 500.00
9369                                                                                                  75.00
9370                                                                                                 750.00
9371                                                                                                 300.00
9372                                                                                                  75.00
9373                                                                                                 750.00
9374                                                                                                  75.00
9375                                                                                                 750.00
9376                                                                                                   0.70
9377                                                                                                  75.00
9378                                                                                                  30.00
9379                                                                                                   0.70
9380                                                                                                  30.00
9381                                                                                                   0.70
9382                                                                                                   1.00
9383                                                                                                   1.00
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9388                                                                                                  50.00
9389                                                                                                 136.00
9390                                                                                                272 mcg
9391                                                                                                   7.00
9392                                                                                                 272.00
9393                                                                                                 136.00
9394                                                                                                 272.00
9395                                                                                                 136.00
9396                                                                                                 272.00
9397                                                                                                 136.00
9398                                                                                                 600.00
9399                                                                                                 272.00
9400                                                                                                 136.00
9401                                                                                                1000.00
9402                                                                                                  50.00
9403                                                                                                   2.00
9404                                                                                                   2.00
9405                                                                                                   0.20
9406                                                                                                  45.00
9407                                                                                                  10.00
9408                                                                                                 500.00
9409                                                                                                 136.00
9410                                                                                                 272.00
9411                                                                                                  50.00
9412                                                                                                  75.00
9413                                                                                                   1.00
9414                                                                                                   1.00
9415                                                                                                   1.00
9416                                                                                           small amount
9417                                                                                                   1.00
9418                                                                                           small amount
9419                                                                                                 100.00
9420                                                                                                 200.00
9421                                                                                                 collar
9422                                                                                        based on weight
9423                                                                                                 200.00
9424                                                                                                  16.00
9425                                                                                                   1.00
9426                                                                           based on weight (50-100 lbs)
9427                                                                                                 500.00
9428                                                                                                 500.00
9429                                                                                            application
9430                                                                                                  50.00
9431                                                                                                 200.00
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9437                                                                                                 200.00
9438                                                                                              injection
9439                                                                                                6000.00
9440                                                                                                   1.00
9441                                                                                                   1.00
9442                                                                                                 375.00
9443                                                                                                 500.00
9444                                                                                                  50.00
9445                                                                                                 500.00
9446                                                                                                 100.00
9447                                                                                            unspecified
9448                                                                                                 150.00
9449                                                                                                 125.00
9450                                                                                                 250.00
9451                                                                                                 625.00
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9455                                                                                                 272.00
9456                                                                                                   9.80
9457                                                                                                 250.00
9458                                                                                                 272.00
9459                                                                                                  68.00
9460                                                                                                 272.00
9461                                                                                                  68.00
9462                                                                                                 227.00
9463                                                                                                 136.00
9464                                                                                                  23.00
9465                                                                                                  68.00
9466                                                                                                 272.00
9467                                                                                                 272.00
9468                                                                                                 272.00
9469                                                                                                  12.50
9470                                                                                                  12.50
9471                                                                                                 272.00
9472                                                                                                 272.00
9473                                                                                                1000.00
9474                                                                                                 272.00
9475                                                                                                 272.00
9476                                                                                                  12.50
9477                                                                                                 500.00
9478                                                                                                   7.00
9479                                                                                                  74.00
9480                                                                                                   0.50
9481                                                                                                  37.50
9482                                                                                                 350.00
9483                                                                                                  62.50
9484                                                                                                 250.00
9485                                                                                                 500 mg
9486                                                                                                   3.00
9487                                                                                                  25.00
9488                                                                                                 500.00
9489                                                                                                 500.00
9490                                                                                                 100.00
9491                                                                                                   1.00
9492                                                                                                   1.00
9493                                                                                                 200.00
9494                                                                                           small amount
9495                                                                                           small amount
9496                                                                                                 136.00
9497                                                                                                 272.00
9498                                                                                                 136.00
9499                                                                                                1000.00
9500                                                                                                 136.00
9501                                                                                                 400.00
9502                                                                                                   5.00
9503                                                                                                 200.00
9504                                                                                                 136.00
9505                                                                                                 272.00
9506                                                                                                   1.00
9507                                                                                                 400.00
9508                                                                                                 200.00
9509                                                                                                 227.00
9510                                                                                                 200.00
9511                                                                                            unspecified
9512                                                                                                 300.00
9513                                                                                                   5.00
9514                                                                                                 100.00
9515                                                                                                   1.50
9516                                                                                       0.125 inch strip
9517                                                                                                 250.00
9518                                                                                                 100.00
9519                                                                                                   1.00
9520                                                                                                 113.50
9521                                                                                                 272.00
9522                                                                                                 228.00
9523                                                                                                 228.00
9524                                                                                           small amount
9525                                                                                                   1.00
9526                                                                                                 160.00
9527                                                                                                  62.50
9528                                                                                                  32.50
9529                                                                                                   5.00
9530                                                                                                  75.00
9531                                                                                                  34.50
9532                                                                                                  75.00
9533                                                                                                   5.00
9534                                                                                                 272.00
9535                                                                                                 272.00
9536                                                                                                 160.00
9537                                                                                                 160.00
9538                                                                                                   1.63
9539                                                                                                   1.09
9540                                                                                                 108.73
9541                                                                                                   2.50
9542                                                                                                 272.00
9543                                                                                                 272.00
9544                                                                          based on weight (24.1-60 lbs)
9545                                                                                                 272.00
9546                                                                         based on weight (60.1-121 lbs)
9547                                                                                                 272.00
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9550                                                                                                   1.00
9551                                                                                                   1.12
9552                                                                                                 112.00
9553                                                                                                 272.00
9554                                                                                                  75.00
9555                                                                                                 500.00
9556                                                                                                   2.00
9557                                                                                                   1.00
9558                                                                                                   1.17
9559                                                                                                  11.71
9560                                                                                                 117.09
9561                                                                                                 180.00
9562                                                                                                 272.00
9563                                                                                                  75.00
9564                                                                                                 100.00
9565                                                                                                  60.00
9566                                                                                                  75.00
9567                                                                                                  60.00
9568                                                                                                  60.00
9569                                                                                                  15.00
9570                                                                                                 125.00
9571                                                                                                 500.00
9572                                                                                                 900.00
9573                                                                                                   2.00
9574                                                                                                   2.00
9575                                                                                                 60-120
9576                                                                                                  60.00
9577                                                                                                 500.00
9578                                                                                                 60-120
9579                                                                                                2000.00
9580                                                                                                 500.00
9581                                                                                                  15.00
9582                                                                                                1000.00
9583                                                                                                  20.00
9584                                                                           based on weight (51-100 lbs)
9585                                                                                                 200.00
9586                                                                                                  10.00
9587                                                                                                   1.00
9588                                                                                           small amount
9589                                                                                                 500.00
9590                                                                                                   5.00
9591                                                                                                 500.00
9592                                                                                            unspecified
9593                                                                                                  75.00
9594                                                                                                  75.00
9595                                                                                                  75.00
9596                                                                                            unspecified
9597                                                                                                  75.00
9598                                                                                                   0.60
9599                                                                                                 150.00
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9605                                                                                                  17.00
9606                                                                                                 250.00
9607                                                                                                  68.00
9608                                                                                                   1.00
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9611                                                                                                 150.00
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9622                                                                                                 200.00
9623                                                                                                  75.00
9624                                                                                                 200.00
9625                                                                                                  75.00
9626                                                                                                 125.00
9627                                                                                                 375.00
9628                                                                                                 375.00
9629                                                                                                   8.00
9630                                                                                                   1.00
9631                                                                                                 150.00
9632                                                                                                 60-120
9633                                                                                                   8.00
9634                                                                                                   1.00
9635                                                                                               27, 1620
9636                                                                                                  16.00
9637                                                                                                   0.50
9638                                                                                                 60-120
9639                                                                                                  16.00
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9642                                                                                                  16.00
9643                                                                           based on weight (60-120 lbs)
9644                                                                                                  16.00
9645                                                                                                  16.00
9646                                                                                                 200.00
9647                                                                                                  16.00
9648                                                                                                   8.00
9649                                                                                                  70.00
9650                                                                                                  16.00
9651                                                                                                 200.00
9652                                                                                                  20.00
9653                                                                                                 250.00
9654                                                                                                 250.00
9655                                                                                                   1.00
9656                                                                                                  83.00
9657                                                                                                  21-55
9658                                                                                                 136.00
9659                                                                                                   0.12
9660                                                                                                 136.00
9661                                                                                                 100.00
9662                                                                                                   0.12
9663                                                                                                 272.00
9664                                                                                                 100.00
9665                                                                                                 200.00
9666                                                                                                 500.00
9667                                                                                                 250.00
9668                                                                                                   2.50
9669                                                                                                  25.00
9670                                                                                                 375.00
9671                                                                                                 102.00
9672                                                                                                   1.00
9673                                                                                                 272.00
9674                                                                                                  68.00
9675                                                                                                 425.00
9676                                                                                                 200.00
9677                                                                                                 200.00
9678                                                                                                 102.00
9679                                                                                                 375.00
9680                                                                                                 500.00
9681                                                                                                   2.30
9682                                                                                                 500.00
9683                                                                                                 272.00
9684                                                                                                   3.60
9685                                                                                                   0.40
9686                                                                                                 425.00
9687                                                                                                 250.00
9688                                                                                                 113.00
9689                                                                                                 200.00
9690                                                                                                   1.50
9691                                                                                                 272.00
9692                                                                                                 200.00
9693                                                                                                 500.00
9694                                                                                                   0.45
9695                                                                                                 272.00
9696                                                                                                   0.45
9697                                                                                                   0.40
9698                                                                                                   1.00
9699                                                                                                 100.00
9700                                                                                                 200.00
9701                                                                                                 300.00
9702                                                                                                  50.00
9703                                                                                                 150.00
9704                                                                                                 250.00
9705                                                                                                 150.00
9706                                                                                                   0.45
9707                                                                                                  50.00
9708                                                                                                   0.45
9709                                                                                                 200.00
9710                                                                                                  50.00
9711                                                                                                 375.00
9712                                                                                                 51-100
9713                                                                                                 300.00
9714                                                                                                 750.00
9715                                                                                                 300.00
9716                                                                                                 750.00
9717                                                                                                 51-100
9718                                                                                            unspecified
9719                                                                                                 750.00
9720                                                                                                  10.00
9721                                                                                                 100.00
9722                                                                                                   1.00
9723                                                                           based on weight (51-100 lbs)
9724                                                                                                 450.00
9725                                                                                                 750.00
9726                                                                                                1000.00
9727                                                                                                  16.00
9728                                                                                                1000.00
9729                                                                                                 51-100
9730                                                                                                 51-100
9731                                                                                                1000.00
9732                                                                                                   8.00
9733                                                                                                 500.00
9734                                                                                                   8.00
9735                                                                                                 400.00
9736                                                                                                  16.00
9737                                                                                                 100.00
9738                                                                                                 100.00
9739                                                                                                 500.00
9740                                                                                                  16.00
9741                                                                                                 500.00
9742                                                                                                 125.00
9743                                                                                                 100.00
9744                                                                                                   1.00
9745                                                                                                   2.50
9746                                                                                                 250.00
9747                                                                                                 250.00
9748                                                                                                  50.00
9749                                                                                                   1.00
9750                                                                                                   2.25
9751                                                                                                 500.00
9752                                                                                                 300.00
9753                                                                                                   4.00
9754                                                                                                   4.00
9755                                                                                                 823.50
9756                                                                                                 499.00
9757                                                                                                   4.00
9758                                                                                                  10.00
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9762                                                                                                   2.00
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9767                                                                                                  80.00
9768                                                                                                   1.00
9769                                                                                                   0.50
9770                                                                         based on weight (50.1-100 lbs)
9771                                                                                                  45-88
9772                                                                                                 100.00
9773                                                                                                 300.00
9774                                                                                                 250.00
9775                                                                                                  50.00
9776                                                                                                  50.00
9777                                                                                                 250.00
9778                                                                                                 272.00
9779                                                                                                 228.00
9780                                                                                                 228.00
9781                                                                                                   9.70
9782                                                                                                  75.00
9783                                                                                                 100.00
9784                                                                                                 150.00
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9786                                                                                                  20.00
9787                                                                                                 250.00
9788                                                                                                 500.00
9789                                                                                                   1.00
9790                                                                                                   4.00
9791                                                                           based on weight (50-100 lbs)
9792                                                                                                  50.00
9793                                                                                                  75.00
9794                                                                                                 750.00
9795                                                                                                 500.00
9796                                                                                                   8.00
9797                                                                                                   0.00
9798                                                                                                 315.00
9799                                                                                                 136.00
9800                                                                                  1 tablet/pill/capsule
9801                                                                                                 200.00
9802                                                                                                  75.00
9803                                                                                                 200.00
9804                                                                                                 136.00
9805                                                                                                  20.00
9806                                                                                                 500.00
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9810                                                                                                  75.00
9811                                                                                                 750.00
9812                                                                                                 500.00
9813                                                                                                 500.00
9814                                                                                                   1.00
9815                                                                                                  28 mg
9816                                                                                                  60.00
9817                                                                                                 500.00
9818                                                                                                   1.00
9819                                                                                                 272.00
9820                                                                                                 500.00
9821                                                                                         1 pack/package
9822                                                                                                 750.00
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9830                                                                                                  50.00
9831                                                                                                1000.00
9832                                                                                                  50.00
9833                                                                                            application
9834                                                                                                1000.00
9835                                                                                                   4.00
9836                                                                                                 200.00
9837                                                                                            unspecified
9838                                                                                                 200.00
9839                                                                                                   1.40
9840                                                                                            unspecified
9841                                                                                                   3.25
9842                                                                                                 300.00
9843                                                                                            unspecified
9844                                                                                                   3.25
9845                                                                                                 468.00
9846                                                                                                1000.00
9847                                                                                                 200.00
9848                                                                                                 500.00
9849                                                                                                 100.00
9850                                                                                                   3.25
9851                                                                                                 468.00
9852                                                                                                   1.00
9853                                                                                                  20.00
9854                                                                                                   1.00
9855                                                                                                  25.00
9856                                                                                                 250.00
9857                                                                                                  75.00
9858                                                                                                  75.00
9859                                                                                                  75.00
9860                                                                                                  75 mg
9861                                                                                                 750.00
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9864                                                                                                1000.00
9865                                                                                                  spray
9866                                                                                                  20.00
9867                                                                                                 300.00
9868                                                                                                  75.00
9869                                                                                                 200.00
9870                                                                                                 300.00
9871                                                                                                 300.00
9872                                                                                                   1.56
9873                                                                                            unspecified
9874                                                                                                   3.25
9875                                                                                                  75.00
9876                                                                                                 300.00
9877                                                                                            unspecified
9878                                                                                                 500.00
9879                                                                                                 300.00
9880                                                                                                   1.56
9881                                                                                                 300.00
9882                                                                                                 170.00
9883                                                                                                  50.00
9884                                                                                        0.25 inch strip
9885                                                                                                   1.00
9886                                                                                                   1.00
9887                                                                                                   2.00
9888                                                                                                   0.25
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9904                                                                                                   1.00
9905                                                                                                   9.00
9906                                                                                                   2.00
9907                                                                                            unspecified
9908                                                                                                 200.00
9909                                                                                                   1.00
9910                                                                                                 100.00
9911                                                                                                 500.00
9912                                                                                                 500.00
9913                                                                                                  60.00
9914                                                                                                  20.00
9915                                                                                                   1.00
9916                                                                                                   1.00
9917                                                                           based on weight (51-100 lbs)
9918                                                                                                  41-85
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9921                                                                                                 500.00
9922                                                                                                  10.00
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9925                                                                                                 250.00
9926                                                                                                   1.00
9927                                                                                                 150.00
9928                                                                                            unspecified
9929                                                                                                  20.00
9930                                                                                                  75.00
9931                                                                           based on weight (50-100 lbs)
9932                                                                                                 227.00
9933                                                                                                1400.00
9934                                                                                                  75.00
9935                                                                            based on weight (40-60 lbs)
9936                                                                                                  68.00
9937                                                                                                 500.00
9938                                                                                                 500.00
9939                                                                                                 500.00
9940                                                                                                  12.00
9941                                                                                                 500.00
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9946                                                                                                  10.00
9947                                                                                                 272.00
9948                                                                                                 136.00
9949                                                                                                 272.00
9950                                                                                                 136.00
9951                                                                                                 200.00
9952                                                                                                 100.00
9953                                                                                                  50.00
9954                                                                                                   1.00
9955                                                                                                 120.00
9956                                                                                                   1.00
9957                                                                                                  60.00
9958                                                                                                 500.00
9959                                                                                                 100.00
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9964                                                                                                   1.00
9965                                                                                                 272.00
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
9973                                                                                                  75.00
9974                                                                                                 272.00
9975                                                                                                  60.00
9976                                                                                                   1.00
9977                                                                                                 187.50
9978                                                                                                  32.50
9979                                                                                                 272.00
9980                                                                                                   6.40
9981                                                                                                  65.00
9982                                                                                                  16.00
9983                                                                                                   2.00
9984                                                                                                  30.00
9985                                                                                                 113.50
9986                                                                                                   1.00
9987                                                                                                   2.00
9988                                                                                                 272.00
9989                                                                                                 136.00
9990                                                                                                 450.00
9991                                                                                                   5.00
9992                                                                                                 272.00
9993                                                                                                 136.00
9994                                                                                                 500.00
9995                                                                                                  75.00
9996                                                                                                   1.00
9997                                                                                                 900.00
9998                                                                                                 272.00
9999                                                                                                 136.00
10000                                                                                                 50.00
10001                                                                                                272.00
10002                                                                                                136.00
10003                                                                                                 50.00
10004                                                                                                 60.00
10005                                                                                                 30.00
10006                                                                                                  3.00
10007                                                                                               1500.00
10008                                                                                                750.00
10009                                                                                                 50.00
10010                                                                                                272.00
10011                                                                                                136.00
10012                                                                                                750.00
10013                                                                                                170.25
10014                                                                                                  5.00
10015                                                                                                  1.00
10016                                                                                                 23.00
10017                                                                          based on weight (51-100 lbs)
10018                                                                                                500.00
10019                                                                                                 50.00
10020                                                                                                300.00
10021                                                                                                 37.50
10022                                                                                                375.00
10023                                                                                                  0.99
10024                                                                                                 23.00
10025                                                                                                 50.00
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10028                                                                                                 23.00
10029                                                                                                 20.00
10030                                                                                                  5.00
10031                                                                                                500.00
10032                                                                                                 20.00
10033                                                                                                 37.50
10034                                                                                                500.00
10035                                                                                                 20.00
10036                                                                                                  7.00
10037                                                                                           unspecified
10038                                                                                                 37.50
10039                                                                                                500.00
10040                                                                                                 20.00
10041                                                                                                 37.50
10042                                                                                           unspecified
10043                                                                                                 20.00
10044                                                                                                300.00
10045                                                                                                 37.50
10046                                                                                                150.00
10047                                                                                                 60.00
10048                                                                                                272.00
10049                                                                                                 10.00
10050                                                                                                400.00
10051                                                                                                 40.00
10052                                                                                                272.00
10053                                                                          based on weight (50-100 lbs)
10054                                                                                                 75.00
10055                                                                                                272.00
10056                                                                                               272 mcg
10057                                                                                                227 mg
10058                                                                                               1000.00
10059                                                                                                  2.80
10060                                                                                                  8.00
10061                                                                                           application
10062                                                                                                272.00
10063                                                                             based on weight (18+ lbs)
10064                                                                                                500.00
10065                                                                                                272.00
10066                                                                             based on weight (18+ lbs)
10067                                                                                                300.00
10068                                                                                                375.00
10069                                                                                                 50.00
10070                                                                                                100.00
10071                                                                                                 50.00
10072                                                                                                272.00
10073                                                                                                600.00
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10076                                                                                                 75.00
10077                                                                                                272.00
10078                                                                                                500.00
10079                                                                                                  4.00
10080                                                                                                  1.80
10081                                                                                                  6.00
10082                                                                                                272.00
10083                                                                                                272.00
10084                                                                                                 60.00
10085                                                                                                390.00
10086                                                                                                272.00
10087                                                                                                100.00
10088                                                                                                 10.00
10089                                                                                                600.00
10090                                                                                                  7.50
10091                                                                                                375.00
10092                                                                                           unspecified
10093                                                                                           unspecified
10094                                                                                                900.00
10095                                                                                                 10.00
10096                                                                                                272.00
10097                                                                                                227.00
10098                                                                                                  2.68
10099                                                                                                  8.00
10100                                                                                                  3.00
10101                                                                                                  3.00
10102                                                                                                 25.00
10103                                                                                                100.00
10104                                                                                                460.00
10105                                                                                                 11.50
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10110                                                                                                  2.68
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10114                                                                                                500.00
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10117                                                                                                200.00
10118                                                                                                  2.68
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10122                                                                                                170.00
10123                                                                                                500 mg
10124                                                                                                500.00
10125                                                                                                136.00
10126                                                                                                  1.00
10127                                                                                                100.00
10128                                                                                                200.00
10129                                                                                                136.00
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10135                                                                                                300.00
10136                                                                                                 75.00
10137                                                                                                200.00
10138                                                                                                100.00
10139                                                                                                 50.00
10140                                                                                                100.00
10141                                                                                                  1.25
10142                                                                                                  1.00
10143                                                                                                  2.00
10144                                                                                                  2.00
10145                                                                                                 75.00
10146                                                                                                 40.00
10147                                                                                                250.00
10148                                                                                                200.00
10149                                                                                              10 drops
10150                                                                                                  2.90
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10155                                                                                               2000.00
10156                                                                                                250.00
10157                                                                                                 37.50
10158                                                                                                500.00
10159                                                                                               1500.00
10160                                                                                                1.5 ml
10161                                                                                                 70.00
10162                                                                                                 30.00
10163                                                                                                  5.00
10164                                                                                                50-100
10165                                                                                                750.00
10166                                                                                                375.00
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10171                                                                                                 80.00
10172                                                                                                  1.00
10173                                                                                                 75.00
10174                                                                                                 75.00
10175                                                                                                  1.00
10176                                                                                          small amount
10177                                                                                                375.00
10178                                                                                                100.00
10179                                                                                                 32.40
10180                                                                                                  1.50
10181                                                                                                  1.00
10182                                                                                                 81.00
10183                                                                                                  1.50
10184                                                                                                750.00
10185                                                                                                200.00
10186                                                                                                750.00
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10189                                                                                                200.00
10190                                                                                                500.00
10191                                                                                                500.00
10192                                                                                                  5.00
10193                                                                                                 50.00
10194                                                                                                500.00
10195                                                                                           unspecified
10196                                                                                                  5.00
10197                                                                                                  4.00
10198                                                                             based on weight (55+ lbs)
10199                                                                                                  0.50
10200                                                                              based on weight (60 lbs)
10201                                                                                               1000.00
10202                                                                                               1000.00
10203                                                                                                272.00
10204                                                                                                200.00
10205                                                                                                100.00
10206                                                                                                 50.00
10207                                                                                                 10.00
10208                                                                                                200.00
10209                                                                          based on weight (51-100 lbs)
10210                                                                                                 24.00
10211                                                                                                  1.50
10212                                                                                                400.00
10213                                                                                                200.00
10214                                                                                                 10.00
10215                                                                                                 50.00
10216                                                                                                 10.00
10217                                                                                                100.00
10218                                                                                                 25.00
10219                                                                          based on weight (51-100 lbs)
10220                                                                                                  3.50
10221                                                                                                 10.00
10222                                                                                                100.00
10223                                                                                                150.00
10224                                                                                                 40.00
10225                                                                                                 10.00
10226                                                                                                 16.00
10227                                                                                                  2.00
10228                                                                                                 75.00
10229                                                                                                  2.00
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10236                                                                                                60-121
10237                                                                                                 40.00
10238                                                                                                100.00
10239                                                                                                 10.00
10240                                                                                                500.00
10241                                                                                                 50.00
10242                                                                                                272.00
10243                                                                                                  1.50
10244                                                                                                 50.00
10245                                                                          based on weight (50-100 lbs)
10246                                                                                                 80.00
10247                                                                                                  1.00
10248                                                                                                  3.00
10249                                                                                           unspecified
10250                                                                                                 50.00
10251                                                                                                 10.00
10252                                                                                                240.00
10253                                                                                                250.00
10254                                                                                                272.00
10255                                                                                                227.00
10256                                                                                                 12.50
10257                                                                                                113.50
10258                                                                                                 50.00
10259                                                                                                 75.00
10260                                                                                                collar
10261                                                                                                  1.00
10262                                                                                                 70.00
10263                                                                                                 10.00
10264                                                                                          small amount
10265                                                                                                  1.00
10266                                                                                                  3.00
10267                                                                                                 60.00
10268                                                                                                  1.00
10269                                                                                                272.00
10270                                                                                                  8.00
10271                                                                                                 23 mg
10272                                                                                                 68.00
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10277                                                                                                 10.00
10278                                                                                                  1.00
10279                                                                                                 23.00
10280                                                                                                 23.00
10281                                                                                                150.00
10282                                                                                                500.00
10283                                                                                                  1.00
10284                                                                                                 10.00
10285                                                                                                  1.00
10286                                                                                                  1.00
10287                                                                                                 23.00
10288                                                                                                 75.00
10289                                                                                                 15.00
10290                                                                                                900.00
10291                                                                                                100.00
10292                                                                                                 23 mg
10293                                                                                                  9.80
10294                                                                                                 23.00
10295                                                                                                 75.00
10296                                                                                               1000.00
10297                                                                                                  0.60
10298                                                                                                  0.70
10299                                                                                                 23.00
10300                                                                                                  1.00
10301                                                                                               23, 460
10302                                                                                                200.00
10303                                                                                                112.50
10304                                                                                                 23.00
10305                                                                                               1000.00
10306                                                                                                250.00
10307                                                                                                250.00
10308                                                                                                 75.00
10309                                                                                                100.00
10310                                                                                                240.00
10311                                                                                               1000.00
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10315                                                                                                200.00
10316                                                                                 1 tablet/pill/capsule
10317                                                                                                200.00
10318                                                                                                  2.00
10319                                                                                                  2.00
10320                                                                           1 tablet/pill/capsule - 375
10321                                                                                                200.00
10322                                                                                                240.00
10323                                                                                                240.00
10324                                                                          based on weight (85-130 lbs)
10325                                                                                                375.00
10326                                                                                                125.00
10327                                                                                                 16.00
10328                                                                                                 15.00
10329                                                                                                500.00
10330                                                                                                 60.00
10331                                                                                                 75.00
10332                                                                                                60-120
10333                                                                                                88-123
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10336                                                                                               1627.00
10337                                                                                                300.00
10338                                                                                                100.00
10339                                                                                                300.00
10340                                                                                                100.00
10341                                                                                                  1.00
10342                                                                                                  1.00
10343                                                                                                480 mg
10344                                                                                                300.00
10345                                                                                   tablet/pill/capsule
10346                                                                                               1620.00
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10350                                                                                                300.00
10351                                                                                               1620.00
10352                                                                                                  1.00
10353                                                                                               1620.00
10354                                                                                                 75.00
10355                                                                                               1620.00
10356                                                                                       based on weight
10357                                                                                                  1.00
10358                                                                                                  1.00
10359                                                                                                 40.00
10360                                                                                                 75.00
10361                                                                                                  1.00
10362                                                                                                 20.00
10363                                                                                                  1.00
10364                                                                                                 50.00
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10368                                                                                                227.00
10369                                                                                                 16.08
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10371                                                                                                 16.08
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10373                                                                                                  2.68
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10375                                                                                                  2.68
10376                                                                                                 75.00
10377                                                                                                300.00
10378                                                                                                 80.00
10379                                                                                               23, 228
10380                                                                                                 75.00
10381                                                                                                200.00
10382                                                                                                 75.00
10383                                                                                                 80.00
10384                                                                                               1000.00
10385                                                                                               1000.00
10386                                                                                               1000.00
10387                                                                                               1000.00
10388                                                                                                150.00
10389                                                                                               1000.00
10390                                                                                                150.00
10391                                                                                                500.00
10392                                                                                                 75.00
10393                                                                                                300.00
10394                                                                                                100.00
10395                                                                                                 60.00
10396                                                                                                 20.00
10397                                                                                                 50.00
10398                                                                                                 60.00
10399                                                                                                500.00
10400                                                                                           unspecified
10401                                                                                                  2.68
10402                                                                                                272.00
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10406                                                                                                272.00
10407                                                                                                136.00
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10411                                                                                                136.00
10412                                                                                               23, 228
10413                                                                                                136.00
10414                                                                                                  1.00
10415                                                                                                200.00
10416                                                                                                200.00
10417                                                                                                  1.75
10418                                                                                                 60.00
10419                                                                                                 20.00
10420                                                                                                500.00
10421                                                                                                310.00
10422                                                                                                682.00
10423                                                                                                 32.00
10424                                                                                                  1.75
10425                                                                                                272.00
10426                                                                                                  9.70
10427                                                                                               1620.00
10428                                                                                                 15.00
10429                                                                                                 drops
10430                                                                                                272.00
10431                                                                                                136.00
10432                                                                                                1 tube
10433                                                                                                272.00
10434                                                                                                272.00
10435                                                                                           unspecified
10436                                                                                           unspecified
10437                                                                                                325.00
10438                                                                                                100.00
10439                                                                                                200.00
10440                                                                                                  3.00
10441                                                                                           unspecified
10442                                                                                                100.00
10443                                                                                               1000.00
10444                                                                                                500.00
10445                                                                                           unspecified
10446                                                                                                100.00
10447                                                                                                 20.00
10448                                                                                               1000.00
10449                                                                                                100.00
10450                                                                                                 20.00
10451                                                                                                 19.60
10452                                                                                                  4.00
10453                                                                                                156.00
10454                                                                                                  4.00
10455                                                                                                170.00
10456                                                                                                500.00
10457                                                                                                500.00
10458                                                                                                500.00
10459                                                                                                500.00
10460                                                                                                136.00
10461                                                                                                100.00
10462                                                                                                100.00
10463                                                                                                  1.00
10464                                                                                                 25.00
10465                                                                                                 60.00
10466                                                                                                100.00
10467                                                                                                 10.00
10468                                                                                                 25.00
10469                                                                                                  8.00
10470                                                                                          small amount
10471                                                                                                  8.00
10472                                                                                                500.00
10473                                                                                                100.00
10474                                                                                                272.00
10475                                                                                               1620.00
10476                                                                                                  5.00
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10479                                                                                                136.00
10480                                                                                                272.00
10481                                                                                                272.00
10482                                                                                                136.00
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10484                                                                                                136.00
10485                                                                          based on weight (51-100 lbs)
10486                                                                                                136.00
10487                                                                          based on weight (51-100 lbs)
10488                                                                                                625.00
10489                                                                                                 75.00
10490                                                                                                113.50
10491                                                                                                  4.00
10492                                                                                                250.00
10493                                                                                                682.00
10494                                                                                                  1.00
10495                                                                                                100.00
10496                                                                                                100.00
10497                                                                                                227.00
10498                                                                                                227.00
10499                                                                                               23, 228
10500                                                                                             113.5-227
10501                                                                                                272.00
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10504                                                                                                136.00
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10507                                                                                                272.00
10508                                                                                                227.00
10509                                                                                                272.00
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10512                                                                                                272.00
10513                                                                                                500.00
10514                                                                                                272.00
10515                                                                                                272.00
10516                                                                                                272.00
10517                                                                                                  2.68
10518                                                                                                 50.00
10519                                                                                                  1.00
10520                                                                                                 16.00
10521                                                                                                  1.00
10522                                                                                                  1.00
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10527                                                                                                 16.00
10528                                                                                                200.00
10529                                                                                           unspecified
10530                                                                                                  8.80
10531                                                                                                810.00
10532                                                                                                  8.00
10533                                                                                                 70.00
10534                                                                                                 15.00
10535                                                                                                200.00
10536                                                                                                 15.00
10537                                                                                                300.00
10538                                                                                                  4.00
10539                                                                                                 23.00
10540                                                                                               1620.00
10541                                                                                                  8.00
10542                                                                                                200.00
10543                                                                                                 80.00
10544                                                                                                  3.00
10545                                                                                                 23.00
10546                                                                                               1000.00
10547                                                                                                300.00
10548                                                                                                300.00
10549                                                                                                  3.15
10550                                                                                                 70.00
10551                                                                                                 16.00
10552                                                                                                 75.00
10553                                                                                                  7.50
10554                                                                                                 80.00
10555                                                                                           unspecified
10556                                                                                                 16.00
10557                                                                                           unspecified
10558                                                                                                300.00
10559                                                                                                100.00
10560                                                                                                200.00
10561                                                                                                100.00
10562                                                                                                 80.00
10563                                                                                                200.00
10564                                                                                                750.00
10565                                                                                           unspecified
10566                                                                                                 15.00
10567                                                                                                200.00
10568                                                                                                100.00
10569                                                                                                100.00
10570                                                                                                300.00
10571                                                                                                150.00
10572                                                                                                150.00
10573                                                                                           unspecified
10574                                                                                                100.00
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10581                                                                                               1000.00
10582                                                                                                 16.00
10583                                                                          based on weight (60-120 lbs)
10584                                                                                                272.00
10585                                                                                                272.00
10586                                                                                                136.00
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10592                                                                                                 50.00
10593                                                                                                100.00
10594                                                                                                 21-55
10595                                                                                                 50.00
10596                                                                                                500.00
10597                                                                                                  1.00
10598                                                                                                  3.75
10599                                                                                                500.00
10600                                                                                                  3.75
10601                                                                                                136.00
10602                                                                                                  2.68
10603                                                                                                100.00
10604                                                                                                100.00
10605                                                                                                100.00
10606                                                                                                200.00
10607                                                                                                500.00
10608                                                                                                 12.00
10609                                                                                                  2.75
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10611                                                                                                100.00
10612                                                                                                100.00
10613                                                                                                150.00
10614                                                                                                 20.00
10615                                                                                                375.00
10616                                                                                                  1.00
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10620                                                                                                375.00
10621                                                                                                 20.00
10622                                                                                                200.00
10623                                                                                                100.00
10624                                                                                       based on weight
10625                                                                                                272.00
10626                                                                                                500.00
10627                                                                                                500.00
10628                                                                                       0.25 inch strip
10629                                                                                                272.00
10630                                                                                                136.00
10631                                                                                                272.00
10632                                                                                                 80.00
10633                                                                                                272.00
10634                                                                                                 80.00
10635                                                                                                 50.00
10636                                                                                                500.00
10637                                                                                                100.00
10638                                                                                                272.00
10639                                                                                                 80.00
10640                                                                                                100.00
10641                                                                                               1000.00
10642                                                                                           unspecified
10643                                                                                                100.00
10644                                                                                                100.00
10645                                                                                               1000.00
10646                                                                                                100.00
10647                                                                                                100.00
10648                                                                                                100.00
10649                                                                                                100.00
10650                                                                                                100 mg
10651                                                                                                 37.50
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10654                                                                                                  1.00
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10657                                                                                                100.00
10658                                                                                                 50 mg
10659                                                                                                 50.00
10660                                                                                                300.00
10661                                                                                                 23.00
10662                                                                                                500.00
10663                                                                                                500.00
10664                                                                                                 23.00
10665                                                                                               1000.00
10666                                                                                                500.00
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10670                                                                                                500.00
10671                                                                             based on weight (55+ lbs)
10672                                                                                                500.00
10673                                                                                                500.00
10674                                                                                                  1.00
10675                                                                                                100.00
10676                                                                                                100.00
10677                                                                                                272.00
10678                                                                                           unspecified
10679                                                                                                550.00
10680                                                                                                 50.00
10681                                                                                                 50.00
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10690                                                                                                750.00
10691                                                                                                500.00
10692                                                                                                  6.00
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10695                                                                                                 10.00
10696                                                                                           unspecified
10697                                                                                           unspecified
10698                                                                                                468.75
10699                                                                                                 20.00
10700                                                                                                272.00
10701                                                                                           unspecified
10702                                                                                                550.00
10703                                                                                                 50.00
10704                                                                                                 50.00
10705                                                                                                500.00
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10708                                                                                                100.00
10709                                                                                                200.00
10710                                                                                                 50.00
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10716                                                                                                 50.00
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10719                                                                                                 75.00
10720                                                                                               1000.00
10721                                                                                                  0.30
10722                                                                                                  1.00
10723                                                                                                  1.30
10724                                                                                                 14.00
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10728                                                                                                  0.90
10729                                                                                                  0.50
10730                                                                                                  0.02
10731                                                                                                  0.90
10732                                                                                                375.00
10733                                                                                                300.00
10734                                                                                                 50.00
10735                                                                                                  3.00
10736                                                                                                375.00
10737                                                                                                 50.00
10738                                                                                                 50.00
10739                                                                                                  0.50
10740                                                                                           unspecified
10741                                                                                                500.00
10742                                                                                                  0.50
10743                                                                                           unspecified
10744                                                                                                272.00
10745                                                                                                272.00
10746                                                                                                272.00
10747                                                                                                 37.00
10748                                                                                                272.00
10749                                                                                                375.00
10750                                                                                                  3.00
10751                                                                                           unspecified
10752                                                                                                  2.00
10753                                                                                                  1.00
10754                                                                                                  4.00
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10757                                                                                                272.00
10758                                                                                                  2.68
10759                                                                                                  8.04
10760                                                                                                272.00
10761                                                                                                  8.04
10762                                                                                                272.00
10763                                                                                                250.00
10764                                                                                                100.00
10765                                                                                                272.00
10766                                                                                               272 mcg
10767                                                                                                500.00
10768                                                                                                 12.00
10769                                                                                       based on weight
10770                                                                                                272.00
10771                                                                                                136.00
10772                                                                                                 80.00
10773                                                                                                272.00
10774                                                                                                 30.00
10775                                                                                                 60.00
10776                                                                                                 10.00
10777                                                                                                300.00
10778                                                                                                 60.00
10779                                                                                                500.00
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10784                                                                                                500.00
10785                                                                                                500.00
10786                                                                                                600.00
10787                                                                                                 50.00
10788                                                                                                  3.00
10789                                                                                                  8.00
10790                                                                                                  0.80
10791                                                                                                 60.00
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10793                                                                                                  8.10
10794                                                                          based on weight (51-100 lbs)
10795                                                                                                272.00
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10797                                                                                                400.00
10798                                                                                                400.00
10799                                                                                                  0.50
10800                                                                                                100.00
10801                                                                                                  9.10
10802                                                                                                100.00
10803                                                                                                  1.50
10804                                                                                                 80.00
10805                                                                                                  1.00
10806                                                                                                300.00
10807                                                                                                 80.00
10808                                                                                                 60.00
10809                                                                                                 75.00
10810                                                                                                200.00
10811                                                                                                300.00
10812                                                                                                 80.00
10813                                                                                                  2.50
10814                                                                                                 75.00
10815                                                                                                500.00
10816                                                                                                200.00
10817                                                                                                 60.00
10818                                                                                                 75.00
10819                                                                                                  1.00
10820                                                                                                  1.00
10821                                                                                                 75.00
10822                                                                                                500.00
10823                                                                                                500.00
10824                                                                                                  0.17
10825                                                                                           unspecified
10826                                                                                                499.00
10827                                                                                                collar
10828                                                                                                 16.00
10829                                                                                                500.00
10830                                                                          based on weight (51-100 lbs)
10831                                                                                                 75.00
10832                                                                                                 16.00
10833                                                                                                500.00
10834                                                                                                500.00
10835                                                                                                 16.00
10836                                                                                                 75.00
10837                                                                                           unspecified
10838                                                                                                 16.00
10839                                                                                                 75.00
10840                                                                                                272.00
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10844                                                                                                  2.00
10845                                                                                                200.00
10846                                                                             based on weight (60+ lbs)
10847                                                                                                  6.00
10848                                                                                                 16.00
10849                                                                          based on weight (51-100 lbs)
10850                                                                                                88-123
10851                                                                                                 56-95
10852                                                                                                 50.00
10853                                                                                          small amount
10854                                                                                                272.00
10855                                                                                                  2.15
10856                                                                                               1250.00
10857                                                                                                272.00
10858                                                                                                  2.68
10859                                                                                                 25.00
10860                                                                                                  1.00
10861                                                                                                  1.00
10862                                                                                                 25.00
10863                                                                                            1-2 sprays
10864                                                                                                500.00
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10868                                                                                                 23.00
10869                                                                                                  2.68
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10872                                                                                                 25.00
10873                                                                                                 50.00
10874                                                                          based on weight (51-100 lbs)
10875                                                                                                  2.68
10876                                                                                                 25.00
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10879                                                                                               1000.00
10880                                                                                                950.00
10881                                                                                                250.00
10882                                                                                                 60.00
10883                                                                                                 55.00
10884                                                                                               1000.00
10885                                                                                                950.00
10886                                                                                                272.00
10887                                                                                                 50.00
10888                                                                                                272.00
10889                                                                                                  2.68
10890                                                                                                272.00
10891                                                                                                272.00
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10895                                                                                                100.00
10896                                                                                             6-8 drops
10897                                                                                                272.00
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10902                                                                                                 75.00
10903                                                                                                500.00
10904                                                                                                  8.00
10905                                                                                           application
10906                                                                                                500.00
10907                                                                                                 55.00
10908                                                                                                227.00
10909                                                                                               1000.00
10910                                                                                                  1.60
10911                                                                                                 20.00
10912                                                                                                227.00
10913                                                                                                272.00
10914                                                                                                 50.00
10915                                                                                                  0.20
10916                                                                                                  3.00
10917                                                                                                  1.00
10918                                                                                                250.00
10919                                                                                                  1.00
10920                                                                                                 25.00
10921                                                                                                  1.00
10922                                                                                                 62.50
10923                                                                                                175.00
10924                                                                                                 10.00
10925                                                                                                400 mg
10926                                                                                                  5 mg
10927                                                                                                  1.00
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10931                                                                                                272.00
10932                                                                                                60-120
10933                                                                                                50-100
10934                                                                                       based on weight
10935                                                                                                 96.00
10936                                                                                                  1.00
10937                                                                                                300.00
10938                                                                          based on weight (50-100 lbs)
10939                                                                                                  0.25
10940                                                                                                 50.00
10941                                                                                                272.00
10942                                                                                               1000.00
10943                                                                                                100.00
10944                                                                                               1000.00
10945                                                                                                  5.00
10946                                                                                                  1.00
10947                                                                                                272.00
10948                                                                                                  4.00
10949                                                                                                272.00
10950                                                                                                89-132
10951                                                                                                 50.00
10952                                                                                                272.00
10953                                                                          based on weight (89-132 lbs)
10954                                                                                                272.00
10955                                                                                                136.00
10956                                                                                                272.00
10957                                                                                                136.00
10958                                                                                                272.00
10959                                                                          based on weight (89-132 lbs)
10960                                                                                                500.00
10961                                                                                                 15.00
10962                                                                                                 20.00
10963                                                                                                 60.00
10964                                                                                                100.00
10965                                                                                                200.00
10966                                                                                                50-100
10967                                                                                                 44-88
10968                                                                                                  1.00
10969                                                                                                  1.00
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
10972                                                                                                500.00
10973                                                                                                  6.00
10974                                                                                                  1.00
10975                                                                                                 50.00
10976                                                                                                  0.13
10977                                                                                                  2.60
10978                                                                                                110.00
10979                                                                                                 35.00
10980                                                                                                  1.00
10981                                                                                                105.00
10982                                                                                                 50.00
10983                                                                                                600.00
10984                                                                                                  2.00
10985                                                                                                  1.00
10986                                                                                                 50.00
10987                                                                                                150.00
10988                                                                                                250.00
10989                                                                                                  1.00
10990                                                                                                  1.00
10991                                                                                                 50.00
10992                                                                                                 50.00
10993                                                                                                375.00
10994                                                                                                  1.00
10995                                                                                                  2.00
10996                                                                                                500.00
10997                                                                                                272.00
10998                                                                                                  1.00
10999                                                                                                375.00
11000                                                                                                 68.00
11001                                                                                                500.00
11002                                                                                                  1.00
11003                                                                          based on weight (60-121 lbs)
11004                                                                                                500.00
11005                                                                                                325.00
11006                                                                                                50-100
11007                                                                                                50-100
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11012                                                                                                200.00
11013                                                                                                 20.00
11014                                                                                                 10.00
11015                                                                                                200.00
11016                                                                                           unspecified
11017                                                                                                 20.00
11018                                                                                                300.00
11019                                                                                                100.00
11020                                                                                                 50.00
11021                                                                                           unspecified
11022                                                                                                240.00
11023                                                                                                 20.00
11024                                                                                                  5.90
11025                                                                                                205.00
11026                                                                                                 65.00
11027                                                                                                  0.18
11028                                                                                                 28.00
11029                                                                                                 29.50
11030                                                                                                272.00
11031                                                                                                228.00
11032                                                                                                  2.68
11033                                                                                                272.00
11034                                                                                                263.00
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11039                                                                                                  1.00
11040                                                                                                  1.00
11041                                                                                                  1.00
11042                                                                                                  1.00
11043                                                                                                375.00
11044                                                                                                 80.00
11045                                                                                                  4.00
11046                                                                                                 10.00
11047                                                                                                750.00
11048                                                                                                  4.00
11049                                                                                                750.00
11050                                                                                                272.00
11051                                                                                                  8.00
11052                                                                                                1 tube
11053                                                                                                204.00
11054                                                                                                 40.00
11055                                                                                                 10.00
11056                                                                                                 23.00
11057                                                                                                810.00
11058                                                                                                  7.00
11059                                                                                                 37.50
11060                                                                                                  1.00
11061                                                                                                  5.00
11062                                                                                                  1.00
11063                                                                                                100.00
11064                                                                                                  1.00
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11068                                                                                                  2.50
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11072                                                                                                 11.50
11073                                                                                               1000.00
11074                                                                                                 50.00
11075                                                                                                  5.00
11076                                                                                                200.00
11077                                                                                                 50.00
11078                                                                                                 50.00
11079                                                                                                 50.00
11080                                                                                                100.00
11081                                                                                                  8.00
11082                                                                                                 50.00
11083                                                                                                 50.00
11084                                                                                                300.00
11085                                                                                           unspecified
11086                                                                                                 35.00
11087                                                                                                 50.00
11088                                                                                           unspecified
11089                                                                                                  5.00
11090                                                                                                136.00
11091                                                                                                 21-55
11092                                                                                               1620.00
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11094                                                                                                500.00
11095                                                                                                272.00
11096                                                                                                272.00
11097                                                                                                 16.00
11098                                                                                                200.00
11099                                                                                                272.00
11100                                                                                                250.00
11101                                                                                                272.00
11102                                                                                                200.00
11103                                                                                                500.00
11104                                                                                                250.00
11105                                                                                                  5.00
11106                                                                                                 55.00
11107                                                                                                 16.00
11108                                                                                                100.00
11109                                                                                                  1.00
11110                                                                                                 50.00
11111                                                                                                 15.00
11112                                                                                                200 mg
11113                                                                                                 60.00
11114                                                                                                 60.00
11115                                                                                                200.00
11116                                                                                                300.00
11117                                                                                                 20.00
11118                                                                                                300.00
11119                                                                                                500.00
11120                                                                                                 30.00
11121                                                                                                 12.00
11122                                                                                                 16.90
11123                                                                                                  6.80
11124                                                                                               1000.00
11125                                                                                                272.00
11126                                                                                                 60.00
11127                                                                                                200.00
11128                                                                                                300.00
11129                                                                                                 20.00
11130                                                                                                  0.01
11131                                                                                                 50.00
11132                                                                                                 30.00
11133                                                                                                272.00
11134                                                                           based on weight (45-88 lbs)
11135                                                                                                 60.00
11136                                                                                                 16.90
11137                                                                                                 12.00
11138                                                                                                 30.00
11139                                                                                                500.00
11140                                                                                                250.00
11141                                                                                                 30.00
11142                                                                                           unspecified
11143                                                                                                 60.00
11144                                                                                           unspecified
11145                                                                                           unspecified
11146                                                                                                500.00
11147                                                                                                 50.00
11148                                                                                                 60.00
11149                                                                                                 50.00
11150                                                                                                100.00
11151                                                                                                600.00
11152                                                                                           unspecified
11153                                                                                           unspecified
11154                                                                                                 50.00
11155                                                                                           unspecified
11156                                                                                           unspecified
11157                                                                                                 68.00
11158                                                                                           unspecified
11159                                                                                           unspecified
11160                                                                                                 68.00
11161                                                                                                 20.00
11162                                                                                                 34.00
11163                                                                                           unspecified
11164                                                                                                 68.00
11165                                                                                           unspecified
11166                                                                                                 24-60
11167                                                                                                 34.00
11168                                                                                                272.00
11169                                                                                                 68.00
11170                                                                                                 50.00
11171                                                                                                 20.00
11172                                                                                                100.00
11173                                                                                                 10.00
11174                                                                                                375.00
11175                                                                                                 75.00
11176                                                                                                 50.00
11177                                                                                                 60.00
11178                                                                                                100.00
11179                                                                                                100.00
11180                                                                                                  1.20
11181                                                                                                 50.00
11182                                                                                           unspecified
11183                                                                                                  7.00
11184                                                                                                272.00
11185                                                                                                272.00
11186                                                                          based on weight (50-100 lbs)
11187                                                                                                 16.00
11188                                                                                                 25.00
11189                                                                                           unspecified
11190                                                                                                 16.00
11191                                                                                                 12.00
11192                                                                                                150.00
11193                                                                                                300.00
11194                                                                                                 16.00
11195                                                                                                100.00
11196                                                                                               1620.00
11197                                                                                               1620.00
11198                                                                                               1620.00
11199                                                                                                500.00
11200                                                                                                  0.25
11201                                                                                                300.00
11202                                                                                                 50.00
11203                                                                                                 70.00
11204                                                                                                125.00
11205                                                                                                 50.00
11206                                                                                                272.00
11207                                                                                                272.00
11208                                                                        based on weight (50.1-100 lbs)
11209                                                                                                250.00
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11215                                                                                                100.00
11216                                                                                                 75.00
11217                                                                                                250.00
11218                                                                                                200.00
11219                                                                                                  4.00
11220                                                                                                500.00
11221                                                                                                500.00
11222                                                                                                 60.00
11223                                                                                              12510.00
11224                                                                                           unspecified
11225                                                                                                500.00
11226                                                                                                 50.00
11227                                                                                                 40-88
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11230                                                                                                 44-88
11231                                                                                                 23.00
11232                                                                                               1000.00
11233                                                                                 1 tablet/pill/capsule
11234                                                                                                 16.00
11235                                                                                                 50.00
11236                                                                                                  8.00
11237                                                                                                 50.00
11238                                                                                                 50.00
11239                                                                                                 50.00
11240                                                                                                100.00
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11243                                                                                                 23.00
11244                                                                                               1620.00
11245                                                                                                 23.00
11246                                                                                                620.00
11247                                                                                                250.00
11248                                                                                                500.00
11249                                                                                                150.00
11250                                                                                                 50.00
11251                                                                                                  0.60
11252                                                                                                 10.00
11253                                                                                                  7.50
11254                                                                                                  1.00
11255                                                                                                483.00
11256                                                                                                  0.60
11257                                                                                                 15.00
11258                                                                                                  2.00
11259                                                                                                200.00
11260                                                                                                  1.00
11261                                                                                                  2.00
11262                                                                                                  7.50
11263                                                                                                  2.00
11264                                                                                                  1.00
11265                                                                                                200.00
11266                                                                                                  1.00
11267                                                                                                  1.00
11268                                                                                                  1.00
11269                                                                                                  0.60
11270                                                                                                 15.00
11271                                                                                                  1.00
11272                                                                                                  8.00
11273                                                                                                483.00
11274                                                                                                  0.35
11275                                                                                                 15.00
11276                                                                                         23 mg, 460 mg
11277                                                                                                  0.30
11278                                                                                                 10.00
11279                                                                                                  0.30
11280                                                                                                 10.00
11281                                                                                                 10.00
11282                                                                                                600.00
11283                                                                                                  0.30
11284                                                                                                300.00
11285                                                                                                 10.00
11286                                                                                                  0.20
11287                                                                                                600.00
11288                                                                                                300.00
11289                                                                                                300.00
11290                                                                                                300.00
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11297                                                                                                227.00
11298                                                                                                  1.00
11299                                                                                                  2.50
11300                                                                                                 50.00
11301                                                                                 1 tablet/pill/capsule
11302                                                                                                  1.00
11303                                                                                                  1.00
11304                                                                                                227.00
11305                                                                                 1 tablet/pill/capsule
11306                                                                                                200.00
11307                                                                          based on weight (50-100 lbs)
11308                                                                                                136.00
11309                                                                                                  1.00
11310                                                                                                  1.00
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11313                                                                                                150.00
11314                                                                                                227.00
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11319                                                                                                200.00
11320                                                                                                200.00
11321                                                                                                  1.00
11322                                                                                                227.00
11323                                                                                                  3.25
11324                                                                                                  1.10
11325                                                                                                  1.00
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11328                                                                                                  1.00
11329                                                                                                  1.00
11330                                                                                                  1.00
11331                                                                                               1620.00
11332                                                                                                150.00
11333                                                                                                 16.00
11334                                                                                                  2.00
11335                                                                                                250.00
11336                                                                                                  3.00
11337                                                                                                 25.00
11338                                                                                          small amount
11339                                                                                                200.00
11340                                                                                               10, 100
11341                                                                                                50-100
11342                                                                                                 56-95
11343                                                                                                 25.00
11344                                                                                                  1.00
11345                                                                                                  1.00
11346                                                                                       moderate amount
11347                                                                                                272.00
11348                                                                                                136.00
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11355                                                                                                150.00
11356                                                                                           unspecified
11357                                                                                                375.00
11358                                                                                                300.00
11359                                                                                                 78.00
11360                                                                                           unspecified
11361                                                                                                  0.60
11362                                                                                                  1.00
11363                                                                                                50-100
11364                                                                                                  0.60
11365                                                                                                500.00
11366                                                                                                50-100
11367                                                                                                  0.60
11368                                                                          based on weight (50-100 lbs)
11369                                                                                                  0.30
11370                                                                                                  0.30
11371                                                                                                500.00
11372                                                                                                300.00
11373                                                                                                272.00
11374                                                                                                  0.30
11375                                                                                                  0.30
11376                                                                                                  0.15
11377                                                                                                 40-85
11378                                                                                                272.00
11379                                                                                                500.00
11380                                                                                                  0.15
11381                                                                                                  1.00
11382                                                                                                250.00
11383                                                                                                 50.00
11384                                                                                                 10.00
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11389                                                                                                  3.00
11390                                                                                                  1.00
11391                                                                                                250.00
11392                                                                                                125.00
11393                                                                                                350.00
11394                                                                                          small amount
11395                                                                                                100.00
11396                                                                                                 50.00
11397                                                                                                  1.00
11398                                                                                                 10.00
11399                                                                                                  0.01
11400                                                                                                 75.00
11401                                                                                                375.00
11402                                                                                                 75.00
11403                                                                                                 28.00
11404                                                                                                 10.00
11405                                                                                                 30.00
11406                                                                                                100.00
11407                                                                                                500.00
11408                                                                                                 60.00
11409                                                                                                  4.00
11410                                                                                                  2.00
11411                                                                                                500.00
11412                                                                                                 75.00
11413                                                                                                 60.00
11414                                                                                                 50.00
11415                                                                                           unspecified
11416                                                                                                500.00
11417                                                                                                 50.00
11418                                                                                                500.00
11419                                                                                                  1.00
11420                                                                                                200.00
11421                                                                                                  0.88
11422                                                                                                  1.00
11423                                                                                                  3.03
11424                                                                                                  7.58
11425                                                                                                 26-50
11426                                                                                                 23.00
11427                                                                                                460.00
11428                                                                                                  2.40
11429                                                                                                  0.50
11430                                                                                                 50.00
11431                                                                                                  2.50
11432                                                                                                120.00
11433                                                                                                100.00
11434                                                                                                150.00
11435                                                                                                100.00
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11438                                                                                               1000.00
11439                                                                                                  2.50
11440                                                                                                 23.00
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11442                                                                                                  8.00
11443                                                                                                 23.00
11444                                                                                                  1.00
11445                                                                                                 23.00
11446                                                                                                  4.70
11447                                                                                                150.00
11448                                                                                                150.00
11449                                                                                                  5.00
11450                                                                                                 50.00
11451                                                                                                  1.00
11452                                                                                                 23.00
11453                                                                                                  4.70
11454                                                                                                375.00
11455                                                                                                375.00
11456                                                                                                200.00
11457                                                                                                  3.75
11458                                                                                                323.00
11459                                                                                                  4.70
11460                                                                                                 23.00
11461                                                                                                 55-95
11462                                                                                                  4.70
11463                                                                                                 23.00
11464                                                                                           unspecified
11465                                                                                                 10.70
11466                                                                                                 10.70
11467                                                                                                  1.00
11468                                                                                                  2.80
11469                                                                                                  7.10
11470                                                                                           unspecified
11471                                                                                           unspecified
11472                                                                                                240.00
11473                                                                             based on weight (50+ lbs)
11474                                                                                                 24-60
11475                                                                                                272.00
11476                                                                                                 68.00
11477                                                                          based on weight (51-100 lbs)
11478                                                                                                  1.00
11479                                                                                                  1.00
11480                                                                                                  3.75
11481                                                                                                227.00
11482                                                                                            1.14 mg/lb
11483                                                                                                  3.75
11484                                                                                                 75.00
11485                                                                                                 75.00
11486                                                                                                500.00
11487                                                                                                 15.00
11488                                                                                                120.00
11489                                                                                                  3.00
11490                                                                                                100.00
11491                                                                                                300.00
11492                                                                                                  5.00
11493                                                                                           unspecified
11494                                                                                                 75.00
11495                                                                                                 20.00
11496                                                                                                  2.00
11497                                                                                                500.00
11498                                                                                                 75.00
11499                                                                                                 20.00
11500                                                                                                  4.00
11501                                                                                                 10.00
11502                                                                                                  1.00
11503                                                                                                120.00
11504                                                                                                  1.00
11505                                                                                                  1.00
11506                                                                                                  1.00
11507                                                                                                  1.00
11508                                                                                                 75.00
11509                                                                          based on weight (50-100 lbs)
11510                                                                                                272.00
11511                                                                                                125 mg
11512                                                                                                  8.00
11513                                                                                                  8.00
11514                                                                                                272.00
11515                                                                                                  0.50
11516                                                                                                 10.00
11517                                                                                                227.00
11518                                                                                                  0.50
11519                                                                                                  1.00
11520                                                                                                262.00
11521                                                                                                  0.50
11522                                                                                                262.00
11523                                                                                                  0.50
11524                                                                                                  0.50
11525                                                                                                  7.50
11526                                                                                                 20.00
11527                                                                                                  0.50
11528                                                                                                 20.00
11529                                                                                                  0.50
11530                                                                                                 25.00
11531                                                                                                 60.00
11532                                                                                                 60.00
11533                                                                                                460.00
11534                                                                                                 23.00
11535                                                                                                 37.50
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11539                                                                                                100.00
11540                                                                                                300.00
11541                                                                                                 30.00
11542                                                                                                425.00
11543                                                                                                250.00
11544                                                                                                250.00
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11548                                                                                                 20.00
11549                                                                                                  2.00
11550                                                                                                500.00
11551                                                                                           unspecified
11552                                                                                                300.00
11553                                                                                                 20.00
11554                                                                                                150.00
11555                                                                                                 10.00
11556                                                                                                 10.00
11557                                                                                                  5.00
11558                                                                                                  1.00
11559                                                                                                272.00
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11569                                                                                                170.00
11570                                                                                           unspecified
11571                                                                                                  1.90
11572                                                                                                500.00
11573                                                                                                300.00
11574                                                                                                 60.00
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11579                                                                                                750.00
11580                                                                                                500.00
11581                                                                                                750.00
11582                                                                                                 60.00
11583                                                                                                  1.00
11584                                                                                                  1.00
11585                                                                                                  5.00
11586                                                                                                  1.00
11587                                                                                                240.00
11588                                                                                                  8.00
11589                                                                             based on weight (50+ lbs)
11590                                                                                                 24-60
11591                                                                                                272.00
11592                                                                                                136.00
11593                                                                          based on weight (51-100 lbs)
11594                                                                                                  1.00
11595                                                                                                  1.00
11596                                                                          based on weight (51-100 lbs)
11597                                                                                                272.00
11598                                                                                                  9.80
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11601                                                                                                136.00
11602                                                                                                272.00
11603                                                                                                 50.00
11604                                                                                                272.00
11605                                                                                                 16.00
11606                                                                                                 16.00
11607                                                                                                300.00
11608                                                                                                  2.00
11609                                                                                                  1.00
11610                                                                                                  2.90
11611                                                                                                 75.00
11612                                                                                                  2.80
11613                                                                                                 30.00
11614                                                                                                200.00
11615                                                                                                200.00
11616                                                                                                 16.00
11617                                                                                                 75.00
11618                                                                                                300.00
11619                                                                                                 75.00
11620                                                                                           unspecified
11621                                                                                           unspecified
11622                                                                                                300.00
11623                                                                                                 16.00
11624                                                                                                 75.00
11625                                                                                                300.00
11626                                                                                                 40.00
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11629                                                                                                  4.00
11630                                                                                 1 tablet/pill/capsule
11631                                                                                                  1.00
11632                                                                                                  1.00
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11635                                                                                                 5-100
11636                                                                                                100 mg
11637                                                                                           unspecified
11638                                                                                                 80.00
11639                                                                                                272.00
11640                                                                                                204.00
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11642                                                                                                 50.00
11643                                                                                               3000.00
11644                                                                                                500.00
11645                                                                                                250.00
11646                                                                                                  1.00
11647                                                                                                 50.00
11648                                                                                                100.00
11649                                                                                                  1.00
11650                                                                                                  1.00
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11657                                                                                                 25.00
11658                                                                                                  0.50
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11663                                                                                                50-100
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11668                                                                                                  6.25
11669                                                                                                0.5 mg
11670                                                                                               1125.00
11671                                                                                           application
11672                                                                                                200.00
11673                                                                                                 spray
11674                                                                                                500.00
11675                                                                                                500.00
11676                                                                                                  1.80
11677                                                                                                  0.80
11678                                                                          based on weight (51-100 lbs)
11679                                                                                                  0.80
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11682                                                                                                  1.80
11683                                                                          based on weight (51-100 lbs)
11684                                                                                                 44-88
11685                                                                                                170.00
11686                                                                                                  0.80
11687                                                                                                 80.00
11688                                                                                                  0.60
11689                                                                                                  1.80
11690                                                                                                500.00
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11694                                                                                                810.00
11695                                                                                          small amount
11696                                                                                                 23.00
11697                                                                                                 23.00
11698                                                                                                 45-88
11699                                                                                                  1.00
11700                                                                                                  1.00
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11703                                                                                                272.00
11704                                                                                               1000.00
11705                                                                                                 16.00
11706                                                                                                 20.00
11707                                                                                                 75.00
11708                                                                                                272.00
11709                                                                                           unspecified
11710                                                                                           unspecified
11711                                                                                                  2.68
11712                                                                                                500.00
11713                                                                                                  1.00
11714                                                                                                  1.00
11715                                                                                                  1.00
11716                                                                                                150.00
11717                                                                                                  5.00
11718                                                                                                 23.00
11719                                                                                           as directed
11720                                                                                                 75.00
11721                                                                                                400.00
11722                                                                                           unspecified
11723                                                                                           unspecified
11724                                                                                                  3.00
11725                                                                                               100-150
11726                                                                                                150.00
11727                                                                                                  1.00
11728                                                                                                  1.00
11729                                                                                                  1.00
11730                                                                                                300.00
11731                                                                                                 16.00
11732                                                                                                150.00
11733                                                                                                 10.00
11734                                                                                               1000.00
11735                                                                          based on weight (51-100 lbs)
11736                                                                                                  1.00
11737                                                                                                500.00
11738                                                                                                  2.00
11739                                                                                                600.00
11740                                                                                                100.00
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11743                                                                                                500.00
11744                                                                                                  1.00
11745                                                                                                 20.00
11746                                                                                                425.00
11747                                                                                                125.00
11748                                                                                                375.00
11749                                                                                                 68.00
11750                                                                                               1000.00
11751                                                                                                115.00
11752                                                                                                500.00
11753                                                                                                 25.00
11754                                                                                                  5.00
11755                                                                                                 50.00
11756                                                                                                  0.54
11757                                                                                                115.00
11758                                                                                                 50.00
11759                                                                                                500.00
11760                                                                                                  2.30
11761                                                                                                250.00
11762                                                                                                375.00
11763                                                                                                 25.00
11764                                                                                                500.00
11765                                                                                                240.00
11766                                                                                                 60.00
11767                                                                                                250.00
11768                                                                                                  2.00
11769                                                                                                  2.60
11770                                                                                                540.00
11771                                                                                                  1.00
11772                                                                                                115.00
11773                                                                                                 50.00
11774                                                                                                500.00
11775                                                                                                 25.00
11776                                                                                                  1.00
11777                                                                                                500.00
11778                                                                                                500.00
11779                                                                                                  7.50
11780                                                                                                300.00
11781                                                                                                227.00
11782                                                                                                200.00
11783                                                                                                 10.00
11784                                                                                                300.00
11785                                                                                                 50.00
11786                                                                                                  8.00
11787                                                                                                250.00
11788                                                                                                100.00
11789                                                                                                 50.00
11790                                                                                                 15 gm
11791                                                                                                100.00
11792                                                                                                227.00
11793                                                                                                 68.00
11794                                                                                                  5.00
11795                                                                                                272.00
11796                                                                                                136.00
11797                                                                                                272.00
11798                                                                                                136.00
11799                                                                                                200.00
11800                                                                                                227.00
11801                                                                                                136.00
11802                                                                                               23, 460
11803                                                                                                 34.00
11804                                                                                                  5.00
11805                                                                                                 50.00
11806                                                                                           unspecified
11807                                                                                                 50.00
11808                                                                                                  1.00
11809                                                                                                500.00
11810                                                                                                 75.00
11811                                                                                                  0.25
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11815                                                                                                50-100
11816                                                                                                50-100
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11818                                                                                                500.00
11819                                                                                                 12.00
11820                                                                                                120.00
11821                                                                                                  3.00
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11826                                                                                               100-150
11827                                                                                                  3.75
11828                                                                                                500.00
11829                                                                                                120.00
11830                                                                                                900.00
11831                                                                                                136.00
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11834                                                                                                 30.00
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11838                                                                                                 30.00
11839                                                                                                250.00
11840                                                                                               20, 200
11841                                                                                                120.00
11842                                                                                              10325.00
11843                                                                                                250.00
11844                                                                                               20, 200
11845                                                                                                120.00
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11849                                                                                                136.00
11850                                                                                            1200, 1500
11851                                                                                                  8.00
11852                                                                                                250.00
11853                                                                                                 32.00
11854                                                                                                 32.00
11855                                                                                                300.00
11856                                                                                               8 drops
11857                                                                                                 32.00
11858                                                                                                 32.00
11859                                                                                                300.00
11860                                                                                                250.00
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11863                                                                                                136.00
11864                                                                                               1500.00
11865                                                                                               1200.00
11866                                                                                                100.00
11867                                                                                                 10.00
11868                                                                                                 24.00
11869                                                                                               1500.00
11870                                                                                                 24.00
11871                                                                                                100.00
11872                                                                                                 10.00
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11884                                                                                                100.00
11885                                                                                                  1.00
11886                                                                                                  1.00
11887                                                                                                  1.00
11888                                                                                                100.00
11889                                                                          based on weight (51-100 lbs)
11890                                                                                                500.00
11891                                                                                                272.00
11892                                                                                                  1.00
11893                                                                                                  1.00
11894                                                                                                  1.00
11895                                                                                                272.00
11896                                                                                                 10.00
11897                                                                                                  0.80
11898                                                                          based on weight (51-100 lbs)
11899                                                                                                750.00
11900                                                                                                 60.00
11901                                                                                                272.00
11902                                                                                                750.00
11903                                                                                                 60.00
11904                                                                                                272.00
11905                                                                                                  4.00
11906                                                                                                150.00
11907                                                                                                  5.00
11908                                                                                                 75.00
11909                                                                                                 10.00
11910                                                                                                450.00
11911                                                                                          small amount
11912                                                                                                272.00
11913                                                                                               1000.00
11914                                                                                                 16.00
11915                                                                                                500.00
11916                                                                                                 75.00
11917                                                                                                500.00
11918                                                                                                250.00
11919                                                                                           unspecified
11920                                                                                                 75.00
11921                                                                                                200.00
11922                                                                                                 75.00
11923                                                                                                300.00
11924                                                                                                500.00
11925                                                                                                 75.00
11926                                                                                               272 mcg
11927                                                                                                272.00
11928                                                                                                272.00
11929                                                                                                  1.00
11930                                                                                         5 billion cfu
11931                                                                                                250.00
11932                                                                                                500.00
11933                                                                                                  3.00
11934                                                                                                204.00
11935                                                                                                240.00
11936                                                                                               1000.00
11937                                                                                                120.00
11938                                                                                               1000.00
11939                                                                                                250.00
11940                                                                                                500.00
11941                                                                                                100.00
11942                                                                                               1000.00
11943                                                                                                 75.00
11944                                                                                               1000.00
11945                                                                                               1800.00
11946                                                                                                 75.00
11947                                                                                                252.00
11948                                                                                                560.00
11949                                                                                                270.00
11950                                                                                                  2.50
11951                                                                                                250.00
11952                                                                                                300.00
11953                                                                                                  2.60
11954                                                                                                562.50
11955                                                                                                204.00
11956                                                                                                 75.00
11957                                                                                                250.00
11958                                                                                                 13.50
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11961                                                                                                 23.00
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11963                                                                                                 50.00
11964                                                                          based on weight (51-100 lbs)
11965                                                                                                100.00
11966                                                                                                  1.00
11967                                                                                                  1.00
11968                                                                                                  1.00
11969                                                                                                  1.00
11970                                                                                                  1.00
11971                                                                                                  2.68
11972                                                                                                 20.00
11973                                                                                                750.00
11974                                                                                                 15.00
11975                                                                                                204.00
11976                                                                                                  7.50
11977                                                                                                 20.00
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11981                                                                                                750.00
11982                                                                                                 75.00
11983                                                                          based on weight (89-132 lbs)
11984                                                                                                300.00
11985                                                                                                 24.00
11986                                                                                                  8.00
11987                                                                                                  5.00
11988                                                                                                  1.00
11989                                                                                                 16.00
11990                                                                                                  1.00
11991                                                                                                  1.00
11992                                                                                                  2.00
11993                                                                                           unspecified
11994                                                                                                  1.00
11995                                                                                                  1.00
11996                                                                                                 24.00
11997                                                                                                  1.00
11998                                                                                                  0.50
11999                                                                                                  0.30
12000                                                                                                 24.00
12001                                                                                                 50.00
12002                                                                                                500.00
12003                                                                                                 30.00
12004                                                                                                 25.00
12005                                                                                                  1.00
12006                                                                                                 50.00
12007                                                                                                 50.00
12008                                                                                                  1.00
12009                                                                                           unspecified
12010                                                                                           unspecified
12011                                                                                                  1.00
12012                                                                                                 75.00
12013                                                                                                500.00
12014                                                                          based on weight (51-100 lbs)
12015                                                                                                 55.00
12016                                                                                               1000.00
12017                                                                                                 20.00
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12021                                                                                                272.00
12022                                                                                               1000.00
12023                                                                                               5 mg/kg
12024                                                                                                272.00
12025                                                                                                 44-88
12026                                                                                                 15.00
12027                                                                                                272.00
12028                                                                                                227.00
12029                                                                                                500.00
12030                                                                                                113.50
12031                                                                                                272.00
12032                                                                                                272.00
12033                                                                                               1000.00
12034                                                                                                500.00
12035                                                                                                 75.00
12036                                                                                                272.00
12037                                                                                               1400.00
12038                                                                                                272.00
12039                                                                                                 16.00
12040                                                                                                 16.00
12041                                                                                                 80.00
12042                                                                                                 37.50
12043                                                                                           unspecified
12044                                                                                                 20.00
12045                                                                                                500.00
12046                                                                                                 25.00
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12049                                                                                                272.00
12050                                                                                                500.00
12051                                                                                        1 pack/package
12052                                                                                                 68.00
12053                                                                                                500.00
12054                                                                                           unspecified
12055                                                                                                  0.60
12056                                                                                                600.00
12057                                                                                                  6.00
12058                                                                                                272.00
12059                                                                                                136.00
12060                                                                                                  0.60
12061                                                                                                272.00
12062                                                                                                 68.00
12063                                                                                                  0.60
12064                                                                                                 68.00
12065                                                                                                272.00
12066                                                                                                  0.60
12067                                                                                                100.00
12068                                                                                                  6.00
12069                                                                                                 68.00
12070                                                                                                272.00
12071                                                                                                  0.60
12072                                                                                                100.00
12073                                                                                                120.00
12074                                                                                                  0.60
12075                                                                                                100.00
12076                                                                                                  0.60
12077                                                                                                500.00
12078                                                                                                  1.20
12079                                                                                                100.00
12080                                                                                                200.00
12081                                                                                                  0.50
12082                                                                                                  1.20
12083                                                                                                  1.00
12084                                                                                                 59.00
12085                                                                                                250.00
12086                                                                                                  0.38
12087                                                                                                  1.20
12088                                                                                                 50.00
12089                                                                                                500.00
12090                                                                          based on weight (51-100 lbs)
12091                                                                                                500.00
12092                                                                                                  5.00
12093                                                                                                  1.00
12094                                                                                                  1.00
12095                                                                                                100.00
12096                                                                                               1000.00
12097                                                                                                100.00
12098                                                                                                  1.00
12099                                                                                                  1.00
12100                                                                                                  1.00
12101                                                                                                  1.00
12102                                                                                                  1.50
12103                                                                                                  1.00
12104                                                                                                  1.00
12105                                                                                                  1.00
12106                                                                                                250.00
12107                                                                                                 51.00
12108                                                                                       moderate amount
12109                                                                                                 23.00
12110                                                                                                136.00
12111                                                                                           unspecified
12112                                                                                                  1.00
12113                                                                                                  1.00
12114                                                                                                100.00
12115                                                                                                300.00
12116                                                                                                  1.00
12117                                                                                                  8.00
12118                                                                                                 50.00
12119                                                                                                150.00
12120                                                                                           unspecified
12121                                                                                                150.00
12122                                                                                                150.00
12123                                                                                                150.00
12124                                                                                                  4.00
12125                                                                                                  1.60
12126                                                                                                 50.00
12127                                                                                                272.00
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12131                                                                                                 23.00
12132                                                                                                  1.00
12133                                                                                                200.00
12134                                                                                               1000.00
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12137                                                                                                272.00
12138                                                                                                227.00
12139                                                                                                272.00
12140                                                                                                136.00
12141                                                                                                227.00
12142                                                                                                  2.00
12143                                                                                                  1.00
12144                                                                                                  1.00
12145                                                                                                136.00
12146                                                                                                272.00
12147                                                                                                227.00
12148                                                                                                272.00
12149                                                                                                136.00
12150                                                                                                227.00
12151                                                                                                272.00
12152                                                                                                136.00
12153                                                                                                227.00
12154                                                                                           unspecified
12155                                                                                           unspecified
12156                                                                                                272.00
12157                                                                                                136.00
12158                                                                                                272.00
12159                                                                                           unspecified
12160                                                                                           unspecified
12161                                                                                                272.00
12162                                                                                                136.00
12163                                                                                                227.00
12164                                                                                           unspecified
12165                                                                                                500.00
12166                                                                                                136.00
12167                                                                                                  1.00
12168                                                                                                  1.50
12169                                                                                                227.00
12170                                                                                               1000.00
12171                                                                                                469.00
12172                                                                                                300.00
12173                                                                                           unspecified
12174                                                                                                  1.50
12175                                                                                                227.00
12176                                                                                                 60.00
12177                                                                                                500.00
12178                                                                                                 60.00
12179                                                                                                600.00
12180                                                                                                  2.00
12181                                                                                                200.00
12182                                                                                                  8.00
12183                                                                                                200.00
12184                                                                                                  0.25
12185                                                                                                  8.00
12186                                                                                                272.00
12187                                                                                                272.00
12188                                                                                                272.00
12189                                                                                                200.00
12190                                                                                                1 pump
12191                                                                                                 15.00
12192                                                                                                272.00
12193                                                                                                  2.68
12194                                                                                                272 ug
12195                                                                                                  2.68
12196                                                                                                272.00
12197                                                                                                 20.00
12198                                                                                                  2.50
12199                                                                                                  1.00
12200                                                                                                  3.00
12201                                                                                                 25.00
12202                                                                                                750.00
12203                                                                                                500.00
12204                                                                                                500.00
12205                                                                                                200.00
12206                                                                                                  5.00
12207                                                                                                 20.00
12208                                                                                                500.00
12209                                                                                                  7.00
12210                                                                                                  6.00
12211                                                                                                272.00
12212                                                                                                200.00
12213                                                                                               272 mcg
12214                                                                                                272.00
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12216                                                                                                200.00
12217                                                                                                 16.00
12218                                                                                                 60.00
12219                                                                                                 20.00
12220                                                                                                272.00
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12224                                                                                                 23.00
12225                                                                                                 23.00
12226                                                                                                  1.00
12227                                                                                                  1.00
12228                                                                                                500.00
12229                                                                                                  1.00
12230                                                                                                 23.00
12231                                                                                                228.00
12232                                                                                                  2.00
12233                                                                                                500.00
12234                                                                                                 60.00
12235                                                                                                 15.00
12236                                                                                                 30.00
12237                                                                                                150.00
12238                                                                                                 75.00
12239                                                                                                150.00
12240                                                                                                 75.00
12241                                                                                                 60.00
12242                                                                                                 60.00
12243                                                                                                500.00
12244                                                                                                560.00
12245                                                                                                  1.00
12246                                                                                                  1.00
12247                                                                                                  1.00
12248                                                                                                  1.00
12249                                                                                                227.00
12250                                                                                               1400.00
12251                                                                                                272.00
12252                                                                                               1400.00
12253                                                                                                272.00
12254                                                                                               1400.00
12255                                                                                                  1.00
12256                                                                                                250.00
12257                                                                                                  3.00
12258                                                                                                500.00
12259                                                                                                 80.00
12260                                                                                                  4.00
12261                                                                        based on weight (60.1-120 lbs)
12262                                                                                                 25.00
12263                                                                                                200.00
12264                                                                                               1000.00
12265                                                                                                50-100
12266                                                                                                 45-88
12267                                                                                                50-100
12268                                                                                                 45-88
12269                                                                                                 40.00
12270                                                                                                100.00
12271                                                                           based on weight (45-88 lbs)
12272                                                                                                50-100
12273                                                                                          small amount
12274                                                                                                200.00
12275                                                                                                 44-88
12276                                                                                                50-100
12277                                                                                                 20.00
12278                                                                                                  1.00
12279                                                                                          small amount
12280                                                                                                200.00
12281                                                                                                  5.00
12282                                                                                                  1.00
12283                                                                                               23, 228
12284                                                                                               1000.00
12285                                                                                                 23.00
12286                                                                                               1000.00
12287                                                                                                750.00
12288                                                                                                170.00
12289                                                                                                  1.00
12290                                                                                                100.00
12291                                                                                                300.00
12292                                                                                               1000.00
12293                                                                                                150.00
12294                                                                                                 23.00
12295                                                                                                900.00
12296                                                                                                900.00
12297                                                                                                  3.00
12298                                                                                                 37.50
12299                                                                                           unspecified
12300                                                                                                 16.00
12301                                                                                                300.00
12302                                                                                                 75.00
12303                                                                                                 60.00
12304                                                                                                 15.00
12305                                                                                               1000.00
12306                                                                                           unspecified
12307                                                                                                300.00
12308                                                                                                 20.00
12309                                                                                           unspecified
12310                                                                                                 75.00
12311                                                                                                  8.00
12312                                                                                                 27.00
12313                                                                                               23, 460
12314                                                                                              27, 1620
12315                                                                                               1200.00
12316                                                                                               1500.00
12317                                                                                                  1.00
12318                                                                                                200.00
12319                                                                                                  1.00
12320                                                                                                250.00
12321                                                                                                  3.00
12322                                                                                            1200, 1500
12323                                                                                               1200.00
12324                                                                          based on weight (60-120 lbs)
12325                                                                                                500.00
12326                                                                                                  2.00
12327                                                                                                  1.50
12328                                                                                                  3.80
12329                                                                                                  2.00
12330                                                                                                  2.00
12331                                                                                               1600.00
12332                                                                                                480.00
12333                                                                                                 40.00
12334                                                                                             injection
12335                                                                                                225.00
12336                                                                                             injection
12337                                                                                           unspecified
12338                                                                                              10000.00
12339                                                                                                 50.00
12340                                                                                                500.00
12341                                                                                                500.00
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12344                                                                                               1620.00
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12347                                                                                                 52.00
12348                                                                                               1620.00
12349                                                                                       2 bottles/vials
12350                                                                                               1200.00
12351                                                                                             150, 1200
12352                                                                                                500.00
12353                                                                                           unspecified
12354                                                                                                 20.00
12355                                                                                                  2.00
12356                                                                                                 10.00
12357                                                                                                  1.00
12358                                                                                                  1.00
12359                                                                                               1200.00
12360                                                                                               1500.00
12361                                                                                                  1.00
12362                                                                                                  3.00
12363                                                                                                  2.00
12364                                                                                            1200, 1500
12365                                                                                               1200.00
12366                                                                          based on weight (60-120 lbs)
12367                                                                                                 75.00
12368                                                                                                720.00
12369                                                                                               1600.00
12370                                                                                                500.00
12371                                                                                               1500.00
12372                                                                                               1000.00
12373                                                                                                60-120
12374                                                                                               1620.00
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12377                                                                                               1620.00
12378                                                                                               1200.00
12379                                                                                             200, 1500
12380                                                                                                300.00
12381                                                                                                100.00
12382                                                                                                 16.00
12383                                                                                                100.00
12384                                                                                                272.00
12385                                                                                                272.00
12386                                                                                                1.4 ml
12387                                                                                                272.00
12388                                                                                                272.00
12389                                                                                                500.00
12390                                                                                                 37.50
12391                                                                                                625.00
12392                                                                                                100.00
12393                                                                                                 75.00
12394                                                                                           unspecified
12395                                                                                                272.00
12396                                                                                                227.00
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12399                                                                                                  0.10
12400                                                                                                 14.00
12401                                                                                                 45-88
12402                                                                          based on weight (51-100 lbs)
12403                                                                                                 14.00
12404                                                                                                500.00
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12407                                                                                                  1.00
12408                                                                                                 16.00
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12413                                                                                                 16.00
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12416                                                                                                  1.00
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12419                                                                                                 50.00
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12424                                                                                                875.00
12425                                                                                                 16.00
12426                                                                                                 50.00
12427                                                                                           unspecified
12428                                                                                                250.00
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12435                                                                                                272.00
12436                                                                                                 80.00
12437                                                                                                200.00
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12440                                                                                                 60.00
12441                                                                                                  1.60
12442                                                                                                  1.00
12443                                                                                                500.00
12444                                                                                                300.00
12445                                                                                                100.00
12446                                                                                                  8.00
12447                                                                                                272.00
12448                                                                                                  1.40
12449                                                                                                114.00
12450                                                                                                 60.00
12451                                                                                                  1.00
12452                                                                                                 50.00
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12458                                                                                               3000.00
12459                                                                                                  1.00
12460                                                                                                150.00
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12464                                                                                                 75.00
12465                                                                                                  1.00
12466                                                                                 1 tablet/pill/capsule
12467                                                                                                500.00
12468                                                                                                240.00
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12478                                                                                                 16.00
12479                                                                                                 10.00
12480                                                                                                  3.00
12481                                                                                           unspecified
12482                                                                                                 16.00
12483                                                                                                 16.00
12484                                                                                                 10.00
12485                                                                                           unspecified
12486                                                                                                 16.00
12487                                                                                           unspecified
12488                                                                                                 16.00
12489                                                                                                500.00
12490                                                                                                272.00
12491                                                                                                250.00
12492                                                                                                250.00
12493                                                                                                  5.00
12494                                                                                                 68.00
12495                                                                          based on weight (51-100 lbs)
12496                                                                                                 24-60
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12499                                                                                                272.00
12500                                                                          based on weight (50-100 lbs)
12501                                                                                                200.00
12502                                                                                                 16.00
12503                                                                                                100.00
12504                                                                                                 75.00
12505                                                                                                200.00
12506                                                                                           unspecified
12507                                                                                                 60.00
12508                                                                                                  5.00
12509                                                                                                 75.00
12510                                                                                                 25.00
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12515                                                                                                 50-80
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12518                                                                                                100.00
12519                                                                                                 25.00
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12522                                                                                                900.00
12523                                                                          based on weight (51-100 lbs)
12524                                                                                                  1.00
12525                                                                                                  1.00
12526                                                                                                 10.00
12527                                                                                                  1.00
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12531                                                                                                100.00
12532                                                                                                 50.00
12533                                                                                                100.00
12534                                                                                                400.00
12535                                                                                           unspecified
12536                                                                                          small amount
12537                                                                                                200.00
12538                                                                                                100.00
12539                                                                                                 25.00
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12544                                                                                                  1.00
12545                                                                                                  1.00
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12555                                                                                                272.00
12556                                                                                                  8.80
12557                                                                                                 10.00
12558                                                                                                200.00
12559                                                                                                  0.40
12560                                                                                                200.00
12561                                                                                                 20.00
12562                                                                                                  1.00
12563                                                                                                 50.00
12564                                                                                                250.00
12565                                                                                                  0.40
12566                                                                                                100.00
12567                                                                                               8 drops
12568                                                                                                 25.00
12569                                                                                              27, 1610
12570                                                                                                  0.16
12571                                                                                            7-10 drops
12572                                                                                                 20.00
12573                                                                                               1620.00
12574                                                                                                 27.00
12575                                                                                                272.00
12576                                                                                                136.00
12577                                                                                                  2.00
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12579                                                                                                136.00
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12581                                                                                                200.00
12582                                                                                                 16.00
12583                                                                                                150.00
12584                                                                                                136.00
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12586                                                                                                136.00
12587                                                                                                500.00
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12590                                                                                                136.00
12591                                                                                                200.00
12592                                                                                                100.00
12593                                                                                                750.00
12594                                                                                                 90.00
12595                                                                                           unspecified
12596                                                                                           unspecified
12597                                                                                                 20.00
12598                                                                                                150.00
12599                                                                                                  8.00
12600                                                                                                  5.00
12601                                                                                                 75.00
12602                                                                                                136.00
12603                                                                                                114.00
12604                                                                                                114.00
12605                                                                                             11.5, 114
12606                                                                                                  1.00
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12610                                                                                                200.00
12611                                                                                                 60.00
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12614                                                                                                  1.00
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12617                                                                                                227.00
12618                                                                                                272.00
12619                                                                                                  0.70
12620                                                                                           unspecified
12621                                                                                                 70.00
12622                                                                                                  6.00
12623                                                                          based on weight (51-100 lbs)
12624                                                                                                  0.70
12625                                                                                                  1.00
12626                                                                                                  0.70
12627                                                                                                  0.70
12628                                                                                                 15.00
12629                                                                                                 15.00
12630                                                                                           unspecified
12631                                                                                                  0.70
12632                                                                                           unspecified
12633                                                                                                  0.70
12634                                                                                                  0.70
12635                                                                                                  0.35
12636                                                                          based on weight (50-100 lbs)
12637                                                                                                100.00
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12640                                                                                                200.00
12641                                                                                                272.00
12642                                                                          based on weight (50-100 lbs)
12643                                                                                                625.00
12644                                                                                                  7.80
12645                                                                                              125, 500
12646                                                                                                  6.00
12647                                                                                                136.00
12648                                                                                                625.00
12649                                                                                                  9.00
12650                                                                                                625.00
12651                                                                                                136.00
12652                                                                                                625.00
12653                                                                                                175.00
12654                                                                                                  2.00
12655                                                                                                  6.00
12656                                                                                                222.00
12657                                                                                                272.00
12658                                                                                                272.00
12659                                                                                                272.00
12660                                                                                                272.00
12661                                                                                                 50.00
12662                                                                                                 33.00
12663                                                                                                375.00
12664                                                                                                 20.00
12665                                                                                                  7.50
12666                                                                                                  2.00
12667                                                                                                200.00
12668                                                                                                  2.00
12669                                                                                                 23.00
12670                                                                                                200.00
12671                                                                                                  2.00
12672                                                                                                500.00
12673                                                                                                500.00
12674                                                                                                 16.00
12675                                                                                                  1.50
12676                                                                                                  0.50
12677                                                                                                 20.00
12678                                                                                                125.00
12679                                                                                               1000.00
12680                                                                                                150.00
12681                                                                                                375.00
12682                                                                                                625.00
12683                                                                                                  1.00
12684                                                                                                150.00
12685                                                                                                 20.00
12686                                                                          based on weight (51-100 lbs)
12687                                                                                                500.00
12688                                                                                                 20.00
12689                                                                                               1000.00
12690                                                                                               1400.00
12691                                                                                                280.00
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12694                                                                                                50-100
12695                                                                                                 75.00
12696                                                                                                300.00
12697                                                                                                 75.00
12698                                                                                                625.00
12699                                                                                                272.00
12700                                                                                                200.00
12701                                                                                                850.00
12702                                                                                                 10.00
12703                                                                                                 50.00
12704                                                                                                100.00
12705                                                                                                 50.00
12706                                                                                                 10.00
12707                                                                                                  5.00
12708                                                                                                  0.43
12709                                                                                                100.00
12710                                                                                                272.00
12711                                                                                                  1.00
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12715                                                                                                272.00
12716                                                                                                272.00
12717                                                                                                272.00
12718                                                                                                  8.00
12719                                                                                                 60.00
12720                                                                                                 30.00
12721                                                                                                 10.00
12722                                                                                                 10.00
12723                                                                                                 10.00
12724                                                                                                272.00
12725                                                                                                272.00
12726                                                                                                 23.00
12727                                                                                                 23.00
12728                                                                                                  9.70
12729                                                                                                500.00
12730                                                                                           unspecified
12731                                                                                                500.00
12732                                                                                           application
12733                                                                                                 75.00
12734                                                                                                750.00
12735                                                                                           as directed
12736                                                                                                  4.00
12737                                                                                                264.00
12738                                                                          1 tablet/pill/capsule - 1000
12739                                                                                                 13.50
12740                                                                                             13.5, 810
12741                                                                                                500.00
12742                                                                                                 50.00
12743                                                                                                 13.50
12744                                                                                       13.5 mg, 810 mg
12745                                                                                                  2.30
12746                                                                                                250.00
12747                                                                                                  1.00
12748                                                                                                600.00
12749                                                                                             13.5, 810
12750                                                                                                250.00
12751                                                                                                  1.00
12752                                                                                                  2.30
12753                                                                                                 50.00
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12757                                                                                                200.00
12758                                                                                                136.00
12759                                                                                                100.00
12760                                                                                                 40.00
12761                                                                                                272.00
12762                                                                                                100.00
12763                                                                                                272.00
12764                                                                                                272.00
12765                                                                                                 23.00
12766                                                                                                 23.00
12767                                                                                                272.00
12768                                                                                                272.00
12769                                                                                                227.00
12770                                                                                                250.00
12771                                                                                       based on weight
12772                                                                                                500.00
12773                                                                                                200.00
12774                                                                                       based on weight
12775                                                                                                136.00
12776                                                                                                  5.00
12777                                                                                               1000.00
12778                                                                                                250.00
12779                                                                                                500.00
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12782                                                                                                200.00
12783                                                                                                100.00
12784                                                                                        1 pack/package
12785                                                                                                100.00
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12789                                                                                                272.00
12790                                                                                                136.00
12791                                                                                                  2.00
12792                                                                                                113.50
12793                                                                                               1000.00
12794                                                                                                375.00
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12798                                                                                               1000.00
12799                                                                                                500.00
12800                                                                                                  1.00
12801                                                                                           application
12802                                                                                                 20.00
12803                                                                                                500.00
12804                                                                                                  1.00
12805                                                                                                  0.02
12806                                                                                                500.00
12807                                                                                                  1.00
12808                                                                                                  1.00
12809                                                                                                 70.00
12810                                                                                                500.00
12811                                                                                                300.00
12812                                                                                                  1.00
12813                                                                                                  1.00
12814                                                                                                  1.00
12815                                                                                                  1.00
12816                                                                                                  1.80
12817                                                                                                500.00
12818                                                                                                500.00
12819                                                                                               1000.00
12820                                                                                                300.00
12821                                                                                                  1.90
12822                                                                                               1000.00
12823                                                                                                500.00
12824                                                                                                100.00
12825                                                                                                300.00
12826                                                                                           unspecified
12827                                                                                                 16.00
12828                                                                                           unspecified
12829                                                                                                500.00
12830                                                                                               1700.00
12831                                                                                                 80.00
12832                                                                                                  1.80
12833                                                                                                 27 mg
12834                                                                                               1620.00
12835                                                                                                 15.00
12836                                                                          based on weight (60-120 lbs)
12837                                                                                                60-120
12838                                                                                                272.00
12839                                                                                                136.00
12840                                                                                                272.00
12841                                                                                                60-120
12842                                                                                                272.00
12843                                                                                                 68.00
12844                                                                                                 10.00
12845                                                                                                200.00
12846                                                                                                 20.00
12847                                                                                                272.00
12848                                                                                                  2.68
12849                                                                                                 drops
12850                                                                                                 drops
12851                                                                                                  3.00
12852                                                                                                300.00
12853                                                                                                 50.00
12854                                                                                                  3.00
12855                                                                                                  3.00
12856                                                                                                  1.00
12857                                                                                                  1.00
12858                                                                                                  1.00
12859                                                                                                300.00
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12862                                                                                                  1.00
12863                                                                                                  1.00
12864                                                                                                  2.00
12865                                                                                          small amount
12866                                                                                          small amount
12867                                                                                                300.00
12868                                                                                                  1.00
12869                                                                                                  1.00
12870                                                                                           application
12871                                                                                                300.00
12872                                                                                                 10.00
12873                                                                                       moderate amount
12874                                                                                                500 mg
12875                                                                                                300.00
12876                                                                                                 16.00
12877                                                                                                300.00
12878                                                                                                100.00
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12883                                                                                                 16.00
12884                                                                                                100.00
12885                                                                                                300.00
12886                                                                                                500.00
12887                                                                                                100.00
12888                                                                                                300.00
12889                                                                                                  1.00
12890                                                                                                  1.00
12891                                                                                                 16.00
12892                                                                                                  1.00
12893                                                                                               100-200
12894                                                                                          small amount
12895                                                                                                  bath
12896                                                                                               1647.00
12897                                                                                                200.00
12898                                                                                                  1.00
12899                                                                                                136.00
12900                                                                                                227.00
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12912                                                                                                100.00
12913                                                                                                  4.00
12914                                                                                                 80.00
12915                                                                                                300.00
12916                                                                          based on weight (51-100 lbs)
12917                                                                                                 43.00
12918                                                                                                500.00
12919                                                                                                272.00
12920                                                                          based on weight (51-100 lbs)
12921                                                                                                272.00
12922                                                                                                  4.02
12923                                                                                                100.00
12924                                                                                                300.00
12925                                                                                                100.00
12926                                                                                                  8.00
12927                                                                                                275.00
12928                                                                                                272.00
12929                                                                          based on weight (51-100 lbs)
12930                                                                                                136.00
12931                                                                                                  1.00
12932                                                                                                  1.00
12933                                                                                                  1.00
12934                                                                                                  1.00
12935                                                                                                 18.00
12936                                                                                                  0.50
12937                                                                                                 12.00
12938                                                                                                100.00
12939                                                                                                100.00
12940                                                                                                  1.00
12941                                                                                                100.00
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12944                                                                                                 44-88
12945                                                                          based on weight (51-100 lbs)
12946                                                                                                750.00
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12950                                                                                                 44-88
12951                                                                                                204.00
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12954                                                                                                200.00
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12958                                                                                                  1.00
12959                                                                                               8 drops
12960                                                                                                272.00
12961                                                                                                272.00
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12964                                                                                                272.00
12965                                                                                                272.00
12966                                                                           based on weight (45-88 lbs)
12967                                                                                                200.00
12968                                                                                                200.00
12969                                                                                                 60.00
12970                                                                                                  1.00
12971                                                                                                  1.50
12972                                                                                                  8.00
12973                                                                                                300.00
12974                                                                                                150.00
12975                                                                                                  0.75
12976                                                                                                100.00
12977                                                                                                300.00
12978                                                                                                 75.00
12979                                                                                               1 spray
12980                                                                                                  0.80
12981                                                                                                272.00
12982                                                                                                500.00
12983                                                                                                250.00
12984                                                                                                 15.00
12985                                                                                                 75.00
12986                                                                                                  0.80
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12991                                                                                                272.00
12992                                                                                                 20-55
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12995                                                                                                 44-88
12996                                                                                                 16 mg
12997                                                                                                200.00
12998                                                                                                 75.00
12999                                                                                                272.00
13000                                                                                                250.00
13001                                                                                                 50.00
13002                                                                                                 37.50
13003                                                                                                200.00
13004                                                                                                 68.00
13005                                                                                           unspecified
13006                                                                                           unspecified
13007                                                                                                600.00
13008                                                                                           unspecified
13009                                                                                                 16.00
13010                                                                                           unspecified
13011                                                                                                 16.00
13012                                                                                                 50.00
13013                                                                                           unspecified
13014                                                                                                250.00
13015                                                                                                500.00
13016                                                                                                170.00
13017                                                                                                375.00
13018                                                                                                 16.00
13019                                                                                                 20.00
13020                                                                                           unspecified
13021                                                                                                  1.00
13022                                                                                                  1.00
13023                                                                                                 60.00
13024                                                                                                 50.00
13025                                                                                                500.00
13026                                                                                                136.00
13027                                                                                                300.00
13028                                                                                                 16.00
13029                                                                                                  1.40
13030                                                                                                215.00
13031                                                                                                 60.00
13032                                                                                                 50.00
13033                                                                                                100.00
13034                                                                                                 20-40
13035                                                                                                272.00
13036                                                                                                  0.20
13037                                                                                                272.00
13038                                                                                                272.00
13039                                                                                                272.00
13040                                                                                                272.00
13041                                                                                          small amount
13042                                                                                                272.00
13043                                                                                                272.00
13044                                                                                                  6.00
13045                                                                                                272.00
13046                                                                                                400.00
13047                                                                                                 10.00
13048                                                                                                250.00
13049                                                                                           application
13050                                                                                                375.00
13051                                                                                                 50.00
13052                                                                                                 50.00
13053                                                                                                  5.00
13054                                                                                                200.00
13055                                                                                                 50.00
13056                                                                                                 50.00
13057                                                                                                  2.68
13058                                                                                                272.00
13059                                                                                                200.00
13060                                                                                                 15.00
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13064                                                                                               1000.00
13065                                                                                                 22.70
13066                                                                                               1000.00
13067                                                                                                272.00
13068                                                                                               1000.00
13069                                                                                                100.00
13070                                                                                                600.00
13071                                                                                                  1.00
13072                                                                                                  1.00
13073                                                                                                500.00
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13077                                                                                                 23.00
13078                                                                                                 23.00
13079                                                                                               1000.00
13080                                                                                                 16.00
13081                                                                                           unspecified
13082                                                                                                200.00
13083                                                                                                200.00
13084                                                                                               23, 460
13085                                                                                                  2.68
13086                                                                          based on weight (51-100 lbs)
13087                                                                                               1000.00
13088                                                                                                 23.00
13089                                                                                                 23.00
13090                                                                                               1000.00
13091                                                                                                 23.00
13092                                                                                               1000.00
13093                                                                                                  2.00
13094                                                                                                272.00
13095                                                                                               1000.00
13096                                                                                          small amount
13097                                                                                                  1.00
13098                                                                                                50-100
13099                                                                                                113.50
13100                                                                                                  1.00
13101                                                                                                  0.50
13102                                                                                                  1.00
13103                                                                                                  1.00
13104                                                                                           unspecified
13105                                                                                                 50.00
13106                                                                                                  1.00
13107                                                                                                500.00
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13117                                                                                               1620.00
13118                                                                                                250.00
13119                                                                                                300.00
13120                                                                                                 20.00
13121                                                                                               1000.00
13122                                                                                                 20.00
13123                                                                                                  1.00
13124                                                                                          small amount
13125                                                                                                272.00
13126                                                                                          small amount
13127                                                                                          small amount
13128                                                                                                 25.00
13129                                                                                          small amount
13130                                                                                          small amount
13131                                                                                                 20.00
13132                                                                                                 50.00
13133                                                                                          small amount
13134                                                                                                272.00
13135                                                                                                227.00
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13141                                                                                                  6.00
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13144                                                                                                200.00
13145                                                                                                 50.00
13146                                                                                                400.00
13147                                                                                                 75.00
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13153                                                                                               1500.00
13154                                                                                              125, 875
13155                                                                                                400.00
13156                                                                                                300.00
13157                                                                          based on weight (50-100 lbs)
13158                                                                                                170.00
13159                                                                                           unspecified
13160                                                                                           unspecified
13161                                                                                                150.00
13162                                                                                                227.00
13163                                                                                                500.00
13164                                                                                                500.00
13165                                                                                                500.00
13166                                                                                                300.00
13167                                                                                                60-121
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13172                                                                                                150.00
13173                                                                                                1 drop
13174                                                                                                  3.00
13175                                                                                                500.00
13176                                                                                                 20.00
13177                                                                                                500.00
13178                                                                                                 30.00
13179                                                                                                 75.00
13180                                                                                                250.00
13181                                                                                                  3.00
13182                                                                                                  3.45
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13185                                                                                                  1.50
13186                                                                                               1000.00
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13191                                                                                              45451.00
13192                                                                                                 50.00
13193                                                                                                  1.00
13194                                                                                                  3.40
13195                                                                                                 spray
13196                                                                                                  bath
13197                                                                                                150.00
13198                                                                                       moderate amount
13199                                                                                              tapering
13200                                                                                                200.00
13201                                                                                                272.00
13202                                                                                                 68.00
13203                                                                                                  3.80
13204                                                                                                500.00
13205                                                                                                160.00
13206                                                                                                960.00
13207                                                                                                  8.00
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13210                                                                                                  3.00
13211                                                                                                  2.00
13212                                                                                                 76.00
13213                                                                                                150.00
13214                                                                                                 17.50
13215                                                                                                  2.00
13216                                                                                                  2.00
13217                                                                                                300.00
13218                                                                                                 75.00
13219                                                                                                  1.00
13220                                                                                                  1.00
13221                                                                                                300.00
13222                                                                                                 75.00
13223                                                                                                 76.00
13224                                                                                                  3.00
13225                                                                                                  2.00
13226                                                                                                  2.00
13227                                                                                                  2.00
13228                                                                                                 17.50
13229                                                                                                150.00
13230                                                                                                  8.00
13231                                                                                                 75.00
13232                                                                                                300.00
13233                                                                                           unspecified
13234                                                                                                 75.00
13235                                                                                                  2.00
13236                                                                                                 10.00
13237                                                                                                  2.00
13238                                                                                                500 mg
13239                                                                                                250.00
13240                                                                                                200.00
13241                                                                                                500.00
13242                                                                                                  2.00
13243                                                                                                500.00
13244                                                                                                 10.00
13245                                                                                                  2.00
13246                                                                                       0.25 inch strip
13247                                                                                                113.50
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13250                                                                                                 16.00
13251                                                                                                200.00
13252                                                                                                  1.00
13253                                                                                                  1.00
13254                                                                                                200.00
13255                                                                                                170.25
13256                                                                                                250.00
13257                                                                                                 62.50
13258                                                                                                500.00
13259                                                                                                 20.00
13260                                                                                                272.00
13261                                                                                                227.00
13262                                                                                               272 mcg
13263                                                                                                272.00
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13265                                                                                                136.00
13266                                                                                                 20.00
13267                                                                                                272.00
13268                                                                                                136.00
13269                                                                                                 20.00
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13272                                                                                                  1.00
13273                                                                                                  1.00
13274                                                                                                136.00
13275                                                                                                  2.68
13276                                                                                                500.00
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13280                                                                                                500.00
13281                                                                                                 37.50
13282                                                                                                375.00
13283                                                                                                 15.00
13284                                                                                                272.00
13285                                                                                                  9.80
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13289                                                                                                600.00
13290                                                                                                136.00
13291                                                                                                100.00
13292                                                                                               1620.00
13293                                                                                                  3.60
13294                                                                                                 27.00
13295                                                                                                500.00
13296                                                                                                 22.00
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13300                                                                                                136.00
13301                                                                                                100.00
13302                                                                                                  0.45
13303                                                                                                 11.00
13304                                                                                                  0.20
13305                                                                                                  2.20
13306                                                                                                 10.00
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13310                                                                                                  8.00
13311                                                                                                100.00
13312                                                                                                 50.00
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13316                                                                                                136.00
13317                                                                                                500.00
13318                                                                                               8 drops
13319                                                                                                500.00
13320                                                                                                  1.00
13321                                                                                                  bath
13322                                                                                                100.00
13323                                                                                                100.00
13324                                                                                                272.00
13325                                                                                                136.00
13326                                                                                                500.00
13327                                                                                                500.00
13328                                                                                                250.00
13329                                                                                                  1.00
13330                                                                                                 50.00
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13333                                                                                                60-120
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13335                                                                                                 11.00
13336                                                                                                60-120
13337                                                                                                300.00
13338                                                                                                 20.00
13339                                                                                                227.00
13340                                                                                          small amount
13341                                                                                           unspecified
13342                                                                                                500.00
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13346                                                                                                227.00
13347                                                                                                136.00
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13350                                                                                                500.00
13351                                                                                                 20.00
13352                                                                                                900.00
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13358                                                                                                 37.50
13359                                                                                                 20.00
13360                                                                                                 75.00
13361                                                                                                250.00
13362                                                                                                 37.50
13363                                                                                                  1.00
13364                                                                                                500.00
13365                                                                                                136.00
13366                                                                                                  2.00
13367                                                                                                500.00
13368                                                                                                  5.00
13369                                                                                                375.00
13370                                                                                                  5.00
13371                                                                                                  5.00
13372                                                                                                  1.00
13373                                                                                                 15.00
13374                                                                                                200.00
13375                                                                                                  1.00
13376                                                                                           unspecified
13377                                                                                                  5.00
13378                                                                                                  1.00
13379                                                                                                 15.00
13380                                                                                                  3.00
13381                                                                                                500.00
13382                                                                                                  5.00
13383                                                                                                  1.00
13384                                                                                                  0.50
13385                                                                                                  3.00
13386                                                                                                  3.00
13387                                                                                                100.00
13388                                                                                                150.00
13389                                                                                                  5.00
13390                                                                                                  5.00
13391                                                                                                  2.00
13392                                                                                                  6.80
13393                                                                                                  0.13
13394                                                                                                  1.70
13395                                                                                                450.00
13396                                                                                                200.00
13397                                                                                                750.00
13398                                                                                                 30.00
13399                                                                                                200.00
13400                                                                                                500.00
13401                                                                                                500.00
13402                                                                                                200.00
13403                                                                                                 30.00
13404                                                                                                 20.00
13405                                                                                           unspecified
13406                                                                                                 24.00
13407                                                                                                  3.20
13408                                                                                                  2.00
13409                                                                                                  1.00
13410                                                                                                  4.90
13411                                                                                           unspecified
13412                                                                                                 60.00
13413                                                                                                  3.00
13414                                                                                                  6.50
13415                                                                                                 40.00
13416                                                                                                 80.00
13417                                                                                                150.00
13418                                                                                                200.00
13419                                                                                                250.00
13420                                                                                                 24.00
13421                                                                                                750.00
13422                                                                                                 80.00
13423                                                                                                  3.00
13424                                                                                                  1.00
13425                                                                                                  1.00
13426                                                                                                  2.00
13427                                                                                                  5.00
13428                                                                                                  4.90
13429                                                                                                  3.00
13430                                                                                                 60.00
13431                                                                                                  2.00
13432                                                                                                  1.00
13433                                                                                                100.00
13434                                                                                                 10.00
13435                                                                                                 20.00
13436                                                                                                 82.00
13437                                                                                                  3.00
13438                                                                                                  1.40
13439                                                                                                  7.00
13440                                                                                                  2.70
13441                                                                                                  2.70
13442                                                                                                  4.00
13443                                                                                                750.00
13444                                                                                                  3.00
13445                                                                                                  4.00
13446                                                                                                  1.00
13447                                                                                                  2.00
13448                                                                                                  2.00
13449                                                                                                  2.00
13450                                                                                                  2.00
13451                                                                                                  1.00
13452                                                                                                  1.00
13453                                                                                               1000.00
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13457                                                                                                272.00
13458                                                                                                 16.08
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13463                                                                                                300.00
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13465                                                                                               1000.00
13466                                                                                                272.00
13467                                                                                                300.00
13468                                                                                           unspecified
13469                                                                                                500.00
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13472                                                                                                  2.50
13473                                                                                                  0.25
13474                                                                                                  8.00
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13477                                                                                                 15.00
13478                                                                                                500.00
13479                                                                              based on weight (70 lbs)
13480                                                                                                500.00
13481                                                                                                  1.00
13482                                                                                                  5.00
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13486                                                                                                625.00
13487                                                                                                 20 mg
13488                                                                                                625.00
13489                                                                                                500.00
13490                                                                                               1000.00
13491                                                                                                500.00
13492                                                                                                 20.00
13493                                                                                                625.00
13494                                                                                                300.00
13495                                                                                                 20.00
13496                                                                                       based on weight
13497                                                                                                  0.13
13498                                                                                                 25.00
13499                                                                                                  2.50
13500                                                                                                  1.25
13501                                                                                                  0.00
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13504                                                                                                  1.00
13505                                                                                                272.00
13506                                                                          based on weight (50-100 lbs)
13507                                                                                                272.00
13508                                                                                                  4.00
13509                                                                                                 10.00
13510                                                                                                 30.00
13511                                                                                                130.00
13512                                                                                                  0.81
13513                                                                                                500.00
13514                                                                                                272.00
13515                                                                                               1000.00
13516                                                                                                272.00
13517                                                                                                  3.00
13518                                                                                                272.00
13519                                                                                               1000.00
13520                                                                                                500.00
13521                                                                                                 40.00
13522                                                                                                500.00
13523                                                                                                 80.00
13524                                                                                                250.00
13525                                                                                                500.00
13526                                                                                                 50.00
13527                                                                                                500.00
13528                                                                                                500.00
13529                                                                                                500.00
13530                                                                                                  4.00
13531                                                                                                750.00
13532                                                                                        1 pack/package
13533                                                                                                500.00
13534                                                                                                272.00
13535                                                                                                  2.68
13536                                                                                                 27.00
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13539                                                                                               1620.00
13540                                                                                                100.00
13541                                                                                               1620.00
13542                                                                                               1620.00
13543                                                                                                 75.00
13544                                                                                               1620.00
13545                                                                                                500.00
13546                                                                                                 37.50
13547                                                                                                 75.00
13548                                                                                               1647.00
13549                                                                                                 20.00
13550                                                                                                250.00
13551                                                                                                 12.00
13552                                                                                                900.00
13553                                                                                                 20.00
13554                                                                                               1620.00
13555                                                                                                200.00
13556                                                                                                  5.00
13557                                                                                                  7.00
13558                                                                                               1647.00
13559                                                                                               1647.00
13560                                                                                                  7.00
13561                                                                                                  2.00
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13565                                                                                                375.00
13566                                                                                                  1.00
13567                                                                                                  1.00
13568                                                                                                  2.00
13569                                                                                                150.00
13570                                                                                                150.00
13571                                                                                                150.00
13572                                                                                                  3.00
13573                                                                                                  3.00
13574                                                                                                 60.00
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13577                                                                                                  5.00
13578                                                                                                  1.00
13579                                                                                          small amount
13580                                                                                                  2.00
13581                                                                                        27 mg, 1620 mg
13582                                                                                                  2.00
13583                                                                                                  1.00
13584                                                                                                  5.00
13585                                                                                              27, 1620
13586                                                                                                  1.00
13587                                                                                                  1.00
13588                                                                                                  1.00
13589                                                                                                  2.00
13590                                                                                                  bath
13591                                                                                                200.00
13592                                                                                                  2.00
13593                                                                                                100.00
13594                                                                                           unspecified
13595                                                                                           unspecified
13596                                                                                                100.00
13597                                                                                                200.00
13598                                                                                                 16.00
13599                                                                                                  1.00
13600                                                                                                  1.00
13601                                                                                           unspecified
13602                                                                                                150.00
13603                                                                                           unspecified
13604                                                                                                  2.00
13605                                                                                           unspecified
13606                                                                                                  1.00
13607                                                                                                  1.00
13608                                                                                                230.00
13609                                                                                       0.25 inch strip
13610                                                                                                 25.00
13611                                                                                                 10.00
13612                                                                                                  1.00
13613                                                                                                 10.00
13614                                                                                                 10.00
13615                                                                                          small amount
13616                                                                                               1100.00
13617                                                                                                  0.25
13618                                                                                                  0.25
13619                                                                                                100 mg
13620                                                                                               1136.00
13621                                                                                                250.00
13622                                                                                                 50.00
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13626                                                                                                100.00
13627                                                                                                300.00
13628                                                                           based on weight (21-55 lbs)
13629                                                                                                300.00
13630                                                                                                 50.00
13631                                                                                          small amount
13632                                                                                                 68.00
13633                                                                                                272.00
13634                                                                                                272.00
13635                                                                                                  2.68
13636                                                                                                272.00
13637                                                                                                  2.68
13638                                                                                                272.00
13639                                                                                                136.00
13640                                                                                                272.00
13641                                                                                                272.00
13642                                                                                                136.00
13643                                                                                                272.00
13644                                                                                                136.00
13645                                                                                                272.00
13646                                                                                                136.00
13647                                                                                                200.00
13648                                                                                                 50.00
13649                                                                                                  1.00
13650                                                                                                  1.00
13651                                                                                                272.00
13652                                                                                                272.00
13653                                                                                                500.00
13654                                                                                          small amount
13655                                                                                                  1.00
13656                                                                                               1000.00
13657                                                                                          small amount
13658                                                                                                  1.00
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13661                                                                                                  4.00
13662                                                                                               1000.00
13663                                                                                                 15.00
13664                                                                                                 15.00
13665                                                                                                500.00
13666                                                                                           application
13667                                                                                                 75.00
13668                                                                                                210.00
13669                                                                                                  1.00
13670                                                                                                  1.27
13671                                                                                                 12.65
13672                                                                                                126.55
13673                                                                                                  2.00
13674                                                                                                 15.00
13675                                                                                                272.00
13676                                                                                               1000.00
13677                                                                                                 15.00
13678                                                                                                  1.00
13679                                                                                                 75.00
13680                                                                                                  0.02
13681                                                                                                  1.00
13682                                                                                                  1.27
13683                                                                                                 12.60
13684                                                                                                126.55
13685                                                                                                139.20
13686                                                                                                  0.20
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13689                                                                                               1620.00
13690                                                                                                  1.00
13691                                                                                                  2.30
13692                                                                                                 10.00
13693                                                                          based on weight (60-120 lbs)
13694                                                                                                272.00
13695                                                                                                 23.00
13696                                                                                                  1.00
13697                                                                                                  1.00
13698                                                                                                 75.00
13699                                                                                                300.00
13700                                                                                                500.00
13701                                                                                                 75.00
13702                                                                                                 10.00
13703                                                                                                  6.00
13704                                                                                                 50.00
13705                                                                                                 16.00
13706                                                                                               1620.00
13707                                                                                               1620.00
13708                                                                                                500.00
13709                                                                                                272.00
13710                                                                                                  0.60
13711                                                                                                  2.68
13712                                                                                                  8.00
13713                                                                                                 10.00
13714                                                                                                  0.60
13715                                                                                                750 mg
13716                                                                                                175.00
13717                                                                                                  0.60
13718                                                                                                  0.60
13719                                                                                                  1.00
13720                                                                                                150.00
13721                                                                                                500.00
13722                                                                                                  1.00
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13725                                                                                                  0.70
13726                                                                                                250.00
13727                                                                                               1000.00
13728                                                                                                150.00
13729                                                                                                500.00
13730                                                                                   tablet/pill/capsule
13731                                                                                                  8.00
13732                                                                                                250.00
13733                                                                                               1000.00
13734                                                                                                  1.00
13735                                                                                                  0.60
13736                                                                                                200.00
13737                                                                          based on weight (50-100 lbs)
13738                                                                                                  0.70
13739                                                                                                150.00
13740                                                                                           unspecified
13741                                                                                           unspecified
13742                                                                                                  1.05
13743                                                                                                 60.00
13744                                                                                                300.00
13745                                                                                                 23.00
13746                                                                                                 23.00
13747                                                                                               23, 460
13748                                                                                                 23.00
13749                                                                                               1000.00
13750                                                                                               1400.00
13751                                                                                                 23.00
13752                                                                                                200.00
13753                                                                                                 23.00
13754                                                                                               1000.00
13755                                                                                                200.00
13756                                                                                           unspecified
13757                                                                                                150.00
13758                                                                                                150.00
13759                                                                                                300.00
13760                                                                                                150.00
13761                                                                                                200.00
13762                                                                                                300.00
13763                                                                                                500.00
13764                                                                                                 20.00
13765                                                                                                150.00
13766                                                                                                 40-60
13767                                                                                                 11.50
13768                                                                                           application
13769                                                                                                 spray
13770                                                                                                200.00
13771                                                                                                 50.00
13772                                                                                                136.00
13773                                                                                                125.00
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13777                                                                                                136.00
13778                                                                                                100.00
13779                                                                                                500.00
13780                                                                                                  1.00
13781                                                                                                 25-50
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13784                                                                                                100.00
13785                                                                                                200.00
13786                                                                                                1 tube
13787                                                                                                100.00
13788                                                                                                 50.00
13789                                                                                                100.00
13790                                                                                                 50.00
13791                                                                                                100.00
13792                                                                                                100.00
13793                                                                                                100.00
13794                                                                                                184.00
13795                                                                                                 10.00
13796                                                                                            1 wipe/pad
13797                                                                                                 36.00
13798                                                                                                  0.30
13799                                                                                                  0.30
13800                                                                                                  1.00
13801                                                                                                50-100
13802                                                                                                  1.00
13803                                                                                                375 mg
13804                                                                                                  1.20
13805                                                                                                  1.00
13806                                                                                                  1.00
13807                                                                                               4200.00
13808                                                                                                 50.00
13809                                                                                                500.00
13810                                                                                                500.00
13811                                                                                                 50.00
13812                                                                                                125.00
13813                                                                                                 50.00
13814                                                                                                 10.00
13815                                                                                                 20.00
13816                                                                                                272.00
13817                                                                                                375.00
13818                                                                                                  1.20
13819                                                                                                 20.00
13820                                                                                                272.00
13821                                                                                                  2.90
13822                                                                                                 60.00
13823                                                                                                  4.00
13824                                                                                                272.00
13825                                                                                                  9.80
13826                                                                                                 20.00
13827                                                                                                  1.00
13828                                                                                                  1.00
13829                                                                                                 50.00
13830                                                                                                 50.00
13831                                                                                                100.00
13832                                                                                                500.00
13833                                                                                                  1.00
13834                                                                                                 25.00
13835                                                                                                 10.00
13836                                                                                                 20.00
13837                                                                                               1000.00
13838                                                                                                130.00
13839                                                                                                  1.00
13840                                                                                                272.00
13841                                                                                                 44-88
13842                                                                                                 20.00
13843                                                                                                 37.50
13844                                                                                                 10.00
13845                                                                                                  1.00
13846                                                                                                  1.00
13847                                                                                                  1.20
13848                                                                                                  4.00
13849                                                                                                  1.00
13850                                                                                                 10.00
13851                                                                                                  1.00
13852                                                                                                  4.00
13853                                                                                                500.00
13854                                                                                                 10.00
13855                                                                                                 20.00
13856                                                                                                 37.50
13857                                                                                                  1.00
13858                                                                                                  1.00
13859                                                                                                  1.20
13860                                                                                                  1.00
13861                                                                                                  1.60
13862                                                                                                  1.60
13863                                                                                                 13.00
13864                                                                                                  2.00
13865                                                                                                 16.00
13866                                                                                                136.00
13867                                                                                                100.00
13868                                                                                                500.00
13869                                                                                                 20.00
13870                                                                                                 10.00
13871                                                                                                500.00
13872                                                                                                300.00
13873                                                                                                 37.50
13874                                                                                                  1.00
13875                                                                                                  0.02
13876                                                                                                  1.20
13877                                                                                                  1.00
13878                                                                                                  3.30
13879                                                                                                 30.00
13880                                                                                                  1.00
13881                                                                                                  7 ml
13882                                                                                                272.00
13883                                                                                                 50.00
13884                                                                                              2 sprays
13885                                                                                                272.00
13886                                                                                                456.00
13887                                                                                                  3.00
13888                                                                                                200.00
13889                                                                                                200.00
13890                                                                                                  0.70
13891                                                                                                375.00
13892                                                                                                150.00
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13895                                                                                                 30.00
13896                                                                        based on weight (50.1-100 lbs)
13897                                                                                                 56-95
13898                                                                                                100.00
13899                                                                                                100.00
13900                                                                                                300.00
13901                                                                                                150.00
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13907                                                                                                 20.00
13908                                                                                             100 mg/ml
13909                                                                                                 10.00
13910                                                                        based on weight (50.1-100 lbs)
13911                                                                                                 56-95
13912                                                                                           unspecified
13913                                                                                           unspecified
13914                                                                                                100.00
13915                                                                                                  1.00
13916                                                                                                  1.00
13917                                                                                                  1.00
13918                                                                                                250.00
13919                                                                                                 50.00
13920                                                                                                 25.00
13921                                                                                                120.00
13922                                                                                                 27.00
13923                                                                                               1620.00
13924                                                                                                 62.50
13925                                                                                              27, 1620
13926                                                                                                200.00
13927                                                                                                 15.00
13928                                                                                                200.00
13929                                                                                                 15.00
13930                                                                                                240.00
13931                                                                                                100.00
13932                                                                                                  2.00
13933                                                                                                  3.00
13934                                                                                                  3.00
13935                                                                                                 75.00
13936                                                                                                500.00
13937                                                                                                  1.00
13938                                                                                                300.00
13939                                                                                                  0.60
13940                                                                                                300.00
13941                                                                                                  0.60
13942                                                                                                  0.60
13943                                                                          based on weight (51-100 lbs)
13944                                                                                                  0.60
13945                                                                                                136.00
13946                                                                                                 spray
13947                                                                                                272.00
13948                                                                                                136.00
13949                                                                                                200.00
13950                                                                                               1000.00
13951                                                                                                  8.00
13952                                                                                                200.00
13953                                                                                                  1.00
13954                                                                                                200.00
13955                                                                                                 75.00
13956                                                                                               1000.00
13957                                                                                                  1.00
13958                                                                                                  8.00
13959                                                                                                  8.00
13960                                                                                                  1.00
13961                                                                                                300.00
13962                                                                                                300.00
13963                                                                                                 25.00
13964                                                                                                 75.00
13965                                                                                                  2.00
13966                                                                                                500.00
13967                                                                                                200.00
13968                                                                                                136.00
13969                                                                                                  2.00
13970                                                                                                  8.00
13971                                                                                                  2.00
13972                                                                                                  2.50
13973                                                                                                  1.00
13974                                                                                                500.00
13975                                                                                                100.00
13976                                                                                                 20.00
13977                                                                                                 24.00
13978                                                                                                150.00
13979                                                                                                  2.68
13980                                                                                                272.00
13981                                                                                                500.00
13982                                                                                                150.00
13983                                                                                                 20.00
13984                                                                                                 48.00
13985                                                                                                500.00
13986                                                                                                 50.00
13987                                                                                                 25.00
13988                                                                                                750.00
13989                                                                                                  4.00
13990                                                                                                150.00
13991                                                                                                100.00
13992                                                                                                272.00
13993                                                                                                 68.00
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13997                                                                                                 80.00
13998                                                                                           unspecified
13999                                                                                                  1.00
14000                                                                                                 80.00
14001                                                                                                150.00
14002                                                                                                  1.00
14003                                                                                                375.00
14004                                                                                                 20.00
14005                                                                                                 75.00
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14009                                                                                                223.00
14010                                                                                                300.00
14011                                                                                                 50.00
14012                                                                                                600.00
14013                                                                                                300.00
14014                                                                                                  2.00
14015                                                                                                136.00
14016                                                                                                125.00
14017                                                                                                 25.00
14018                                                                                                150.00
14019                                                                                                272.00
14020                                                                                                 50.00
14021                                                                                                100.00
14022                                                                                                272.00
14023                                                                                                 80.00
14024                                                                                                 50.00
14025                                                                                                272.00
14026                                                                                                 80.00
14027                                                                                                272.00
14028                                                                                                 80.00
14029                                                                                                 50.00
14030                                                                                                 50.00
14031                                                                                                250.00
14032                                                                                                200.00
14033                                                                                                225.00
14034                                                                                               1620.00
14035                                                                                                240.00
14036                                                                                                240.00
14037                                                                                                 23.00
14038                                                                                                468.00
14039                                                                                                 75.00
14040                                                                                                400.00
14041                                                                                                 75.00
14042                                                                                                468.00
14043                                                                                                 20.00
14044                                                                                                 20.00
14045                                                                                                 50.00
14046                                                                                                 50.00
14047                                                                                                300.00
14048                                                                                                 75.00
14049                                                                                                375.00
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14052                                                                                                375.00
14053                                                                                                  6.50
14054                                                                                                 10.00
14055                                                                          based on weight (50-100 lbs)
14056                                                                                                 50.00
14057                                                                                                 20.00
14058                                                                                                  1.00
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14065                                                                                                  1.00
14066                                                                                                  7.50
14067                                                                                                  7.50
14068                                                                                                 37.50
14069                                                                                               1000.00
14070                                                                                               1400.00
14071                                                                                                 44-88
14072                                                                                               1500 mg
14073                                                                                                  7.50
14074                                                                                                 25.00
14075                                                                                                  5.00
14076                                                                                                  7.50
14077                                                                                                  7.50
14078                                                                                                 37.50
14079                                                                                               1500.00
14080                                                                                                50-100
14081                                                                                                 44-88
14082                                                                                                375.00
14083                                                                                               1000.00
14084                                                                                                  5.00
14085                                                                                                 37.50
14086                                                                                                  7.50
14087                                                                                                500.00
14088                                                                                                  7.50
14089                                                                                                 37.50
14090                                                                                                  5.00
14091                                                                                               1000.00
14092                                                                                                  7.50
14093                                                                                                 37.50
14094                                                                                                  5.00
14095                                                                                               1000.00
14096                                                                                                 37.50
14097                                                                                                  5.00
14098                                                                                                  7.50
14099                                                                                               1000.00
14100                                                                                                 20.00
14101                                                                                                 37.50
14102                                                                                                  5.00
14103                                                                                                  7.50
14104                                                                                               1000.00
14105                                                                                                 60.00
14106                                                                          based on weight (51-100 lbs)
14107                                                                                                375.00
14108                                                                                                500.00
14109                                                                                                 50.00
14110                                                                                                 50.00
14111                                                                                                 10.00
14112                                                                                                750.00
14113                                                                                                  1.00
14114                                                                          based on weight (60-120 lbs)
14115                                                                                                750.00
14116                                                                                                  1.00
14117                                                                                                500.00
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14119                                                                                               1620.00
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14125                                                                                                  1.00
14126                                                                                                  1.00
14127                                                                                                  1.00
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14130                                                                                                  8.00
14131                                                                                          small amount
14132                                                                                               1620.00
14133                                                                                                200.00
14134                                                                                                 27.00
14135                                                                                                 16.00
14136                                                                                                  8.00
14137                                                                                                 70.00
14138                                                                                                 15.00
14139                                                                                                  8.00
14140                                                                                                 23.00
14141                                                                                                 64.80
14142                                                                                                500.00
14143                                                                                               1000.00
14144                                                                                                  1.00
14145                                                                                                  1.00
14146                                                                                                500.00
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14149                                                                                                  1.00
14150                                                                                                  1.00
14151                                                                          based on weight (50-100 lbs)
14152                                                                                                 20.00
14153                                                                                                60-120
14154                                                                          based on weight (50-100 lbs)
14155                                                                                                  5.00
14156                                                                                                 80.00
14157                                                                                                 75.00
14158                                                                                                750.00
14159                                                                                                 40.00
14160                                                                                                375.00
14161                                                                                                 75.00
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14167                                                                                                  1.00
14168                                                                                                  4.50
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14176                                                                                                  3.75
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14182                                                                                                272.00
14183                                                                                                750.00
14184                                                                                                272.00
14185                                                                                                260.00
14186                                                                                                 50.00
14187                                                                                                500.00
14188                                                                                                900.00
14189                                                                                                  9.80
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14191                                                                                                272.00
14192                                                                                                136.00
14193                                                                                                 50.00
14194                                                                                                 16.00
14195                                                                                                 25.00
14196                                                                                                272.00
14197                                                                                                 80.00
14198                                                                                                100.00
14199                                                                                                300.00
14200                                                                                                 25.00
14201                                                                                                  2.00
14202                                                                                                 25.00
14203                                                                                                 60.00
14204                                                                                                  2.00
14205                                                                                                272.00
14206                                                                                                500.00
14207                                                                                                  1.00
14208                                                                                               1000.00
14209                                                                                                  0.14
14210                                                                                               1620.00
14211                                                                                               1620.00
14212                                                                                                  6.00
14213                                                                                                 20.00
14214                                                                                               1620.00
14215                                                                                                136.00
14216                                                                                                150.00
14217                                                                                                  0.20
14218                                                                                                  3.00
14219                                                                          based on weight (51-100 lbs)
14220                                                                                                 25.00
14221                                                                                           unspecified
14222                                                                                                100.00
14223                                                                                                300.00
14224                                                                                                600.00
14225                                                                                                375.00
14226                                                                                                600.00
14227                                                                                                 50.00
14228                                                                                           unspecified
14229                                                                                                200.00
14230                                                                                                  1.00
14231                                                                                                 60.00
14232                                                                                                  1.00
14233                                                                                                 10.00
14234                                                                                                  5.40
14235                                                                                                  1.50
14236                                                                                                  1.00
14237                                                                                                  1.00
14238                                                                                           unspecified
14239                                                                                                  0.50
14240                                                                                                136.00
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14243                                                                                                 45-88
14244                                                                                                136.00
14245                                                                           based on weight (22-44 lbs)
14246                                                                                                136.00
14247                                                                                                  0.09
14248                                                                                                136.00
14249                                                                                                 45-88
14250                                                                                                136.00
14251                                                                                                 45-88
14252                                                                                                136.00
14253                                                                                                 16.00
14254                                                                                                500.00
14255                                                                                                250.00
14256                                                                                                500.00
14257                                                                                                250.00
14258                                                                                                200.00
14259                                                                                                  0.45
14260                                                                                                  0.90
14261                                                                                                  1.90
14262                                                                                               1620.00
14263                                                                                                 27.00
14264                                                                                                 27.00
14265                                                                                               1620.00
14266                                                                                                272.00
14267                                                                                                227.00
14268                                                                                                272.00
14269                                                                                                  2.68
14270                                                                                                900.00
14271                                                                                                500.00
14272                                                                                                272.00
14273                                                                                                136.00
14274                                                                                                750.00
14275                                                                                                  0.20
14276                                                                                                272.00
14277                                                                                                136.00
14278                                                                                                300.00
14279                                                                                                  7.50
14280                                                                                                300.00
14281                                                                                                272.00
14282                                                                          based on weight (50-100 lbs)
14283                                                                                                  0.40
14284                                                                          based on weight (50-100 lbs)
14285                                                                                                  0.40
14286                                                                                                50-100
14287                                                                                                  0.40
14288                                                                                                  0.40
14289                                                                                                  0.40
14290                                                                                                500.00
14291                                                                                           unspecified
14292                                                                                                  0.40
14293                                                                                                100.00
14294                                                                                                500.00
14295                                                                                                272.00
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14298                                                                                                50-100
14299                                                                                                 23.00
14300                                                                                                 75.00
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14303                                                                                                250.00
14304                                                                                                 60.00
14305                                                                                                  1.50
14306                                                                                                  3.00
14307                                                                                                  0.70
14308                                                                                                  0.35
14309                                                                                                  0.35
14310                                                                                                500.00
14311                                                                                                  0.35
14312                                                                                                125.00
14313                                                                                                  0.25
14314                                                                                                  0.35
14315                                                                                                  0.50
14316                                                                                                  1.00
14317                                                                                                  2.00
14318                                                                                                  1.00
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14320                                                                                                500.00
14321                                                                                                  1.50
14322                                                                                                  3.00
14323                                                                                           application
14324                                                                                             3-4 drops
14325                                                                                                 60.00
14326                                                                                                 10.00
14327                                                                                                 60.00
14328                                                                                                 60.00
14329                                                                                                 60.00
14330                                                                                           unspecified
14331                                                                                                 10.00
14332                                                                                                 60.00
14333                                                                                                 10.00
14334                                                                         based on weight (20.1-55 lbs)
14335                                                                                                  2.50
14336                                                                                             2-3 drops
14337                                                                                                500.00
14338                                                                                                500.00
14339                                                                                                  1.00
14340                                                                                                  1.00
14341                                                                                                  1.00
14342                                                                                                 22-30
14343                                                                                                  1.00
14344                                                                                                500.00
14345                                                                                                 26.00
14346                                                                                                  1.00
14347                                                                                                250.00
14348                                                                                                 30.00
14349                                                                                                  3.00
14350                                                                                                  1.00
14351                                                                                                  1.00
14352                                                                                                  1.00
14353                                                                                                 20.00
14354                                                                                                  1.00
14355                                                                                                  1.00
14356                                                                                                  3.50
14357                                                                                                  8.00
14358                                                                                                  1.00
14359                                                                                                  0.90
14360                                                                                                272.00
14361                                                                                                300.00
14362                                                                                               1000.00
14363                                                                                                 20.00
14364                                                                                                272.00
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14368                                                                                                  1.00
14369                                                                                                  5.00
14370                                                                                                500.00
14371                                                                                                  2.00
14372                                                                                                50-100
14373                                                                                       based on weight
14374                                                                                                500.00
14375                                                                                                50-100
14376                                                                                       based on weight
14377                                                                                                500.00
14378                                                                             based on weight (60+ lbs)
14379                                                                                                50-100
14380                                                                                       based on weight
14381                                                                                                500.00
14382                                                                                               1500.00
14383                                                                                                 23.00
14384                                                                                                 68.00
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14389                                                                                                 23.00
14390                                                                                                 68.00
14391                                                                                                100.00
14392                                                                                                  1.00
14393                                                                                                 25.00
14394                                                                                                  1.00
14395                                                                                                250.00
14396                                                                                                  1.00
14397                                                                                                  1.00
14398                                                                                                  1.00
14399                                                                                                  4.00
14400                                                                                                  1.00
14401                                                                                                  1.00
14402                                                                                                227.00
14403                                                                                               1000.00
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14409                                                                                                 44-88
14410                                                                                                  0.10
14411                                                                                                375.00
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14416                                                                                               1000.00
14417                                                                                                200.00
14418                                                                                                 50.00
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14422                                                                                                375.00
14423                                                                                                  0.80
14424                                                                                                 37.50
14425                                                                                                272.00
14426                                                                                           unspecified
14427                                                                                                550.00
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14430                                                                                                500.00
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14435                                                                                                100.00
14436                                                                                                 50.00
14437                                                                                                  3.00
14438                                                                                                  0.55
14439                                                                                                 10.00
14440                                                                                                  2.50
14441                                                                                                  0.25
14442                                                                                                  2.20
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14450                                                                                                500.00
14451                                                                          based on weight (51-100 lbs)
14452                                                                                                500.00
14453                                                                                                 16.00
14454                                                                                                272.00
14455                                                                                       0.25 inch strip
14456                                                                                                  2.90
14457                                                                                                272.00
14458                                                                                                272.00
14459                                                                                                136.00
14460                                                                                                272.00
14461                                                                                                136.00
14462                                                                                                  5.00
14463                                                                                                272.00
14464                                                                                                136.00
14465                                                                                                272.00
14466                                                                                                272.00
14467                                                                                                 75.00
14468                                                                                                200.00
14469                                                                                               1000.00
14470                                                                                                 20.00
14471                                                                                           unspecified
14472                                                                                                  0.40
14473                                                                                           unspecified
14474                                                                                                  0.60
14475                                                                                                400.00
14476                                                                                                  0.60
14477                                                                                           unspecified
14478                                                                                                  0.80
14479                                                                                       based on weight
14480                                                                                                  0.40
14481                                                                                                 90.00
14482                                                                                                150.00
14483                                                                                                  0.80
14484                                                                                                 10.00
14485                                                                                                500.00
14486                                                                                                 75.00
14487                                                                                                  0.80
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14491                                                                                                  1.00
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14494                                                                                                  5.00
14495                                                                          based on weight (51-100 lbs)
14496                                                                                                500.00
14497                                                                                                  5.00
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14500                                                                                                500.00
14501                                                                                                750.00
14502                                                                                               1000.00
14503                                                                                               1000.00
14504                                                                                                  3.20
14505                                                                                                272.00
14506                                                                                                  1.00
14507                                                                                                  1.00
14508                                                                                                  1.00
14509                                                                                                  1.00
14510                                                                                                 80.00
14511                                                                                                 16.00
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14514                                                                                                  1.20
14515                                                                                                 70.00
14516                                                                                                255.00
14517                                                                                                150.00
14518                                                                                                 80.00
14519                                                                                                 16.00
14520                                                                                                113.50
14521                                                                                                113.50
14522                                                                                                113.50
14523                                                                                                 70.00
14524                                                                                                 70.00
14525                                                                                                113.50
14526                                                                                                136.00
14527                                                                                                 45-88
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14530                                                                                                  0.30
14531                                                                                                  0.30
14532                                                                                                272.00
14533                                                                                                136.00
14534                                                                                                272.00
14535                                                                                                  0.30
14536                                                                                                136.00
14537                                                                                                272.00
14538                                                                                                  0.30
14539                                                                                                136.00
14540                                                                                                  0.20
14541                                                                                                  0.20
14542                                                                                                 20.00
14543                                                                                                  0.20
14544                                                                                                200.00
14545                                                                                                 20.00
14546                                                                                                  0.30
14547                                                                                 1 tablet/pill/capsule
14548                                                                                                120.00
14549                                                                                                120.00
14550                                                                                                200.00
14551                                                                                                500.00
14552                                                                                                113.50
14553                                                                                                  1.00
14554                                                                                                  1.00
14555                                                                                                  1.00
14556                                                                                                  1.00
14557                                                                                                  1.00
14558                                                                                                 15.00
14559                                                                                                  1.00
14560                                                                                               1620.00
14561                                                                                                 16.00
14562                                                                                                85-132
14563                                                                                           unspecified
14564                                                                                                272.00
14565                                                                                                272.00
14566                                                                                               1600.00
14567                                                                                                460.00
14568                                                                                                272.00
14569                                                                                                  9.70
14570                                                                                                 75.00
14571                                                                                                300.00
14572                                                                                                 75.00
14573                                                                                                 23.00
14574                                                                                                460.00
14575                                                                                                375.00
14576                                                                          based on weight (51-100 lbs)
14577                                                                                                 45-88
14578                                                                             based on weight (25+ lbs)
14579                                                                                                170.00
14580                                                                                                200.00
14581                                                                                                  1.00
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14589                                                                                                 80.00
14590                                                                                               1000.00
14591                                                                                                750.00
14592                                                                                                 75.00
14593                                                                                                120.00
14594                                                                                                  1.00
14595                                                                                                100.00
14596                                                                                                  1.00
14597                                                                                                136.00
14598                                                                                                 10.00
14599                                                                                                272.00
14600                                                                                                 10.00
14601                                                                                           unspecified
14602                                                                                                 23.00
14603                                                                                                 80.00
14604                                                                                                 10.00
14605                                                                 25 milbemycin oxime, 228 praziquantel
14606                                                                                                 80.00
14607                                                                                                 10.00
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14609                                                                                                 10.00
14610                                                                                                500.00
14611                                                                                                  1.00
14612                                                                                                 10.00
14613                                                                                                500.00
14614                                                                                                 75.00
14615                                                                                                113.50
14616                                                                                                  2.00
14617                                                                                                250.00
14618                                                                                                500.00
14619                                                                                                227.00
14620                                                                                                500.00
14621                                                                                                  2.25
14622                                                                                                272.00
14623                                                                                                 45-88
14624                                                                                                  2.00
14625                                                                                                  8.00
14626                                                                                                 20.00
14627                                                                                                272.00
14628                                                                                                272.00
14629                                                                                                200.00
14630                                                                                                272.00
14631                                                                                                 44-88
14632                                                                                                 15.00
14633                                                                                                 20.00
14634                                                                                                 75.00
14635                                                                                                  4.00
14636                                                                                                272.00
14637                                                                           based on weight (44-88 lbs)
14638                                                                                                500.00
14639                                                                                                150.00
14640                                                                                                150.00
14641                                                                                                204.00
14642                                                                                                500.00
14643                                                                                                  3.00
14644                                                                                                  2.00
14645                                                                                              27, 1620
14646                                                                                                262.00
14647                                                                                                136.00
14648                                                                                                204.00
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14651                                                                                                272.00
14652                                                                                                136.00
14653                                                                                               1000.00
14654                                                                                          0.1%, 1%, 2%
14655                                                                                                750.00
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14661                                                                                               1000.00
14662                                                                                                 10.00
14663                                                                                                  3.75
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14666                                                                                               1000.00
14667                                                                                                 10.00
14668                                                                                               1000.00
14669                                                                                                 10.00
14670                                                                                               1000.00
14671                                                                                                  7.50
14672                                                                                                 16.00
14673                                                                                                200.00
14674                                                                                                 23.00
14675                                                                                                136.00
14676                                                                                                  3.75
14677                                                                                                750.00
14678                                                                                                500.00
14679                                                                                                 16.00
14680                                                                                                  1.00
14681                                                                                                  1.50
14682                                                                                                  3.75
14683                                                                                                300.00
14684                                                                                                  3.75
14685                                                                                                  0.60
14686                                                                                                  1.00
14687                                                                                                 16.00
14688                                                                                                  3.75
14689                                                                                                  4.00
14690                                                                                                300.00
14691                                                                                                  3.75
14692                                                                                                300.00
14693                                                                                                  3.25
14694                                                                                                500.00
14695                                                                                                200.00
14696                                                                                                200.00
14697                                                                                          small amount
14698                                                                                                 37.50
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14703                                                                                                400.00
14704                                                                                                 60.00
14705                                                                                                272.00
14706                                                                                                320.00
14707                                                                                                750.00
14708                                                                                                 23.00
14709                                                                                                 50.00
14710                                                                                                  1.00
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14714                                                                                                750.00
14715                                                                                               1000.00
14716                                                                                                320.00
14717                                                                                                500.00
14718                                                                                                  3.00
14719                                                                                                  1.00
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14724                                                                                                  2.00
14725                                                                                                 75.00
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14729                                                                                               1000.00
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14732                                                                                                  0.40
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14735                                                                                                  0.40
14736                                                                                                  0.40
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14739                                                                                                  2.40
14740                                                                                                  0.10
14741                                                                                                 20.00
14742                                                                                                750.00
14743                                                                                                250.00
14744                                                                                       based on weight
14745                                                                                                 23.00
14746                                                                                                 44-88
14747                                                                                                 23.00
14748                                                                                            5-10 drops
14749                                                                                                500.00
14750                                                                                                300.00
14751                                                                                                500.00
14752                                                                                                 50.00
14753                                                                                                150.00
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14761                                                                                                 60.00
14762                                                                                                  1.00
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14765                                                                                                 30.00
14766                                                                                                 75.00
14767                                                                                                 75.00
14768                                                                                                  1.00
14769                                                                                                200.00
14770                                                                                                  1.00
14771                                                                                                  1.00
14772                                                                                                272.00
14773                                                                                                136.00
14774                                                                                                 75.00
14775                                                                                           unspecified
14776                                                                                                200.00
14777                                                                                           unspecified
14778                                                                                           unspecified
14779                                                                                                 31.00
14780                                                                                                 75.00
14781                                                                                                  1.00
14782                                                                                                272.00
14783                                                                                                136.00
14784                                                                                                272.00
14785                                                                                                 80.00
14786                                                                                                 16.00
14787                                                                                                200.00
14788                                                                                                200.00
14789                                                                                                136.00
14790                                                                                                272.00
14791                                                                                                136.00
14792                                                                                                 16.00
14793                                                                                                100.00
14794                                                                                                100.00
14795                                                                                                 75.00
14796                                                                                                  0.50
14797                                                                                                  1.00
14798                                                                                                  1.00
14799                                                                                                200.00
14800                                                                                                  1.00
14801                                                                                                 16.00
14802                                                                                                 80.00
14803                                                                                                100.00
14804                                                                                                  1.00
14805                                                                                                  1.00
14806                                                                                                  1.00
14807                                                                                                 16.00
14808                                                                                                100.00
14809                                                                                                 75.00
14810                                                                                                300.00
14811                                                                                                500.00
14812                                                                                                 16.00
14813                                                                                                100.00
14814                                                                                                  1.00
14815                                                                                                 75.00
14816                                                                                                200.00
14817                                                                                                800.00
14818                                                                                                500.00
14819                                                                                                  1.00
14820                                                                                                 80.00
14821                                                                                                  3.40
14822                                                                                                 15.00
14823                                                                                                  1.40
14824                                                                                                 75.00
14825                                                                                              10000.00
14826                                                                                                  0.63
14827                                                                                                250.00
14828                                                                                                 32.10
14829                                                                                                 20.00
14830                                                                                                 80.00
14831                                                                                                 30.00
14832                                                                                                 20.00
14833                                                                                              350, 900
14834                                                                                              27, 1620
14835                                                                                                  9.80
14836                                                                                                250.00
14837                                                                                                250.00
14838                                                                                              350, 900
14839                                                                                               23, 228
14840                                                                                                  2.50
14841                                                                                                272.00
14842                                                                                                 23.00
14843                                                                                               1620.00
14844                                                                                                  1.00
14845                                                                                                  1.00
14846                                                                                                  5.00
14847                                                                                                  1.00
14848                                                                                                  1.00
14849                                                                                                100.00
14850                                                                                                  4.00
14851                                                                                                  2.00
14852                                                                                                 60.00
14853                                                                                                  3.00
14854                                                                                                500.00
14855                                                                                                500.00
14856                                                                                                 20.00
14857                                                                                           unspecified
14858                                                                                               23, 460
14859                                                                                                 20.00
14860                                                                                                170.00
14861                                                                                                50-100
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14865                                                                                                 23.00
14866                                                                                                  0.48
14867                                                                                         23 mg, 228 mg
14868                                                                                                900.00
14869                                                                                                  1.00
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14872                                                                                                875.00
14873                                                                                                 50.00
14874                                                                                                50-100
14875                                                                                                50-100
14876                                                                                                 60.00
14877                                                                                                500.00
14878                                                                                           unspecified
14879                                                                                                200.00
14880                                                                                                 37.50
14881                                                                                                136.00
14882                                                                                                136.00
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14885                                                                                                 22.70
14886                                                                                                250.00
14887                                                                                                170.00
14888                                                                                                454.00
14889                                                                                               1000.00
14890                                                                                                 11.35
14891                                                                                                 85.00
14892                                                                                                125.00
14893                                                                                                227.00
14894                                                                                                272.00
14895                                                                                                136.00
14896                                                                                                500.00
14897                                                                                                272.00
14898                                                                                                136.00
14899                                                                                           unspecified
14900                                                                                                300.00
14901                                                                                                 75.00
14902                                                                                                  0.50
14903                                                                                                100.00
14904                                                                                                500.00
14905                                                                                                120.00
14906                                                                                               1700.00
14907                                                                                                 30 mg
14908                                                                                                500.00
14909                                                                                                500.00
14910                                                                                                  7.50
14911                                                                                              27, 1620
14912                                                                                                500.00
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14915                                                                                                136.00
14916                                                                                                112.50
14917                                                                                                272.00
14918                                                                                                272.00
14919                                                                                                  9.80
14920                                                                                                 90.00
14921                                                                                                900.00
14922                                                                                               3540.00
14923                                                                                                 75.00
14924                                                                                                 23.00
14925                                                                                                 80.00
14926                                                                                                500.00
14927                                                                                                 10.00
14928                                                                                                60-120
14929                                                                                                 50.00
14930                                                                                                150.00
14931                                                                                                 10.00
14932                                                                                                 10.00
14933                                                                                                 10.00
14934                                                                          based on weight (60-120 lbs)
14935                                                                                                 16.00
14936                                                                                                 10.00
14937                                                                                              12000.00
14938                                                                                                  3.00
14939                                                                                                200.00
14940                                                                                               1000.00
14941                                                                                                500.00
14942                                                                                                  0.50
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14945                                                                                                 10.00
14946                                                                                                  1.00
14947                                                                                                  1.00
14948                                                                                               1000.00
14949                                                                                           unspecified
14950                                                                                                 17.00
14951                                                                                              20000.00
14952                                                                                                 90.00
14953                                                                                                  1.00
14954                                                                                                 80.00
14955                                                                                                  1.00
14956                                                                                                  1.00
14957                                                                                                100.00
14958                                                                                                 90.00
14959                                                                                                562.50
14960                                                                                                 90.00
14961                                                                                                  5.00
14962                                                                                                 60.00
14963                                                                                                  1.00
14964                                                                                                 80.00
14965                                                                                                 60.00
14966                                                                                                272.00
14967                                                                                                 50.00
14968                                                                                                 50.00
14969                                                                                             50 mcg/kg
14970                                                                                                 50.00
14971                                                                                                  1.00
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14980                                                                                                  1.00
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14984                                                                                                 37.50
14985                                                                                                500.00
14986                                                                                                300.00
14987                                                                                                250.00
14988                                                                                                 15.00
14989                                                                                                 50.00
14990                                                                                                 20.00
14991                                                                                                272.00
14992                                                                                                 50.00
14993                                                                                                 25.00
14994                                                                                                 10.00
14995                                                                                                600.00
14996                                                                                                 13.00
14997                                                                                                 50.00
14998                                                                                                 50.00
14999                                                                                             50 mcg/kg
15000                                                                                                 50.00
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15003                                                                                                  2.68
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15012                                                                                                  0.60
15013                                                                                                 20.00
15014                                                                                                  0.60
15015                                                                                                  1.40
15016                                                                                                  1.30
15017                                                                          based on weight (50-100 lbs)
15018                                                                                                 50.00
15019                                                                                                 75.00
15020                                                                                                375.00
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15024                                                                                                 23.00
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15031                                                                                                250.00
15032                                                                                                136.00
15033                                                                                                  0.60
15034                                                                                                  0.70
15035                                                                                           unspecified
15036                                                                                           unspecified
15037                                                                                                  0.45
15038                                                                                                 60.00
15039                                                                                                500.00
15040                                                                                                 75.00
15041                                                                                                  1.30
15042                                                                                                 60.00
15043                                                                                                  0.65
15044                                                                                                 60.00
15045                                                                                       based on weight
15046                                                                                                810.00
15047                                                                                                 50.00
15048                                                                          based on weight (50-100 lbs)
15049                                                                                                200.00
15050                                                                                                  1.00
15051                                                                                                250.00
15052                                                                                                  8.00
15053                                                                                                500.00
15054                                                                                                  8.00
15055                                                                                           unspecified
15056                                                                                                 20.00
15057                                                                                               1000.00
15058                                                                                                272.00
15059                                                                          based on weight (51-100 lbs)
15060                                                                                                272.00
15061                                                                          based on weight (51-100 lbs)
15062                                                                                                272.00
15063                                                                                                  2.68
15064                                                                                                272.00
15065                                                                                                 20.00
15066                                                                                                 16.00
15067                                                                                                272.00
15068                                                                                               1000.00
15069                                                                                                500.00
15070                                                                                                 60.00
15071                                                                                                204.00
15072                                                                                                272.00
15073                                                                                                200.00
15074                                                                                                100.00
15075                                                                                                272.00
15076                                                                                                272.00
15077                                                                                           unspecified
15078                                                                                                100.00
15079                                                                                                  2.00
15080                                                                                                  2.00
15081                                                                                                  0.50
15082                                                                                                272.00
15083                                                                                                  1.00
15084                                                                                                  1.30
15085                                                                                                 13.00
15086                                                                                                  1.60
15087                                                                                                  1.61
15088                                                                                                  7.10
15089                                                                                                  1.00
15090                                                                                                  1.80
15091                                                                                                  1.00
15092                                                                                                300 mg
15093                                                                                                360.00
15094                                                                                                500.00
15095                                                                                                 75.00
15096                                                                                                320.00
15097                                                                                                385.00
15098                                                                                                  4.00
15099                                                                                                  8.00
15100                                                                                                130.00
15101                                                                                                  1.80
15102                                                                                          small amount
15103                                                                                                300.00
15104                                                                                                  1.00
15105                                                                                                  7.00
15106                                                                                                  1.60
15107                                                                                                  1.70
15108                                                                                                  1.00
15109                                                                                                  7.00
15110                                                                                                  8.00
15111                                                                                                150.00
15112                                                                                                150.00
15113                                                                                                300.00
15114                                                                                                  8.00
15115                                                                                                150.00
15116                                                                                                300.00
15117                                                                                                 75.00
15118                                                                                                100.00
15119                                                                                                500.00
15120                                                                                                 25.00
15121                                                                                                480.00
15122                                                                                               1500.00
15123                                                                                                960.00
15124                                                                                                  1.00
15125                                                                                                  1.00
15126                                                                                                960.00
15127                                                                                               1500.00
15128                                                                                                  1.00
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15133                                                                                                  8.00
15134                                                                                                 15.00
15135                                                                                                 50.00
15136                                                                                                 50.00
15137                                                                                              2 sprays
15138                                                                                                200.00
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15141                                                                                                  0.70
15142                                                                                                400.00
15143                                                                                                250.00
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15146                                                                                                 16.00
15147                                                                                                200.00
15148                                                                                                 16.00
15149                                                                                                 50.00
15150                                                                                       based on weight
15151                                                                                       based on weight
15152                                                                                                 16.00
15153                                                                                                500.00
15154                                                                                                500.00
15155                                                                                           unspecified
15156                                                                                                437.00
15157                                                                                                  2.00
15158                                                                                                200.00
15159                                                                                                300.00
15160                                                                                                 75.00
15161                                                                                               1000.00
15162                                                                                                600.00
15163                                                                                                 75.00
15164                                                                                                200.00
15165                                                                                                600.00
15166                                                                                                 75.00
15167                                                                                                272.00
15168                                                                                                227.00
15169                                                                                                125.00
15170                                                                                 1 tablet/pill/capsule
15171                                                                                                375.00
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15175                                                                                                  1.50
15176                                                                                                200.00
15177                                                                                                200.00
15178                                                                                                 66.00
15179                                                                           based on weight (25-75 lbs)
15180                                                                                                  0.67
15181                                                                                                  2.40
15182                                                                                                  1.20
15183                                                                                                  2.00
15184                                                                                                750 mg
15185                                                                                                500.00
15186                                                                                                 10.00
15187                                                                                                375.00
15188                                                                                                200.00
15189                                                                                                  1.00
15190                                                                                                200.00
15191                                                                                                300.00
15192                                                                                                600.00
15193                                                                                                272.00
15194                                                                                               1000.00
15195                                                                                               1000.00
15196                                                                                           application
15197                                                                                          small amount
15198                                                                                                272.00
15199                                                                                                272.00
15200                                                                                                  2.68
15201                                                                                                  0.02
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15204                                                                                                 75.00
15205                                                                                                272.00
15206                                                                                                 50.00
15207                                                                                                272.00
15208                                                                                                272.00
15209                                                                           based on weight (44-88 lbs)
15210                                                                                                 50.00
15211                                                                                                  6.00
15212                                                                                                 50.00
15213                                                                                           unspecified
15214                                                                                                 20.00
15215                                                                                                300.00
15216                                                                                                 50.00
15217                                                                                                 20.00
15218                                                                                                300.00
15219                                                                                                 50.00
15220                                                                                                  1.00
15221                                                                                                100.00
15222                                                                                                 40.00
15223                                                                                                500.00
15224                                                                                                  1.00
15225                                                                                                  1.00
15226                                                                                                227.00
15227                                                                                                  1.00
15228                                                                                                  1.00
15229                                                                                                 20.00
15230                                                                                                500.00
15231                                                                                                 50.00
15232                                                                                                 23.00
15233                                                                                                136.00
15234                                                                                                 23.00
15235                                                                                                136.00
15236                                                                                                250.00
15237                                                                                                312.50
15238                                                                                                  5.50
15239                                                                                                 23.00
15240                                                                                                 68.00
15241                                                                                                500.00
15242                                                                                                136.00
15243                                                                                                222.00
15244                                                                                                0.3, 1
15245                                                                                                150.00
15246                                                                                                300.00
15247                                                                                                  2.00
15248                                                                                                272.00
15249                                                                                                272.00
15250                                                                                       based on weight
15251                                                                                                  1.00
15252                                                                                               4 drops
15253                                                                                                227 mg
15254                                                                                                  0.50
15255                                                                                                  4.00
15256                                                                                       based on weight
15257                                                                                                  0.50
15258                                                                                                  0.50
15259                                                                              1.25 tablet/pill/capsule
15260                                                                                                 60.00
15261                                                                                                  6.00
15262                                                                                                100.00
15263                                                                                                  1.14
15264                                                                                                  0.50
15265                                                                                                272.00
15266                                                                                                 68.00
15267                                                                                                  0.50
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15270                                                                                                  0.50
15271                                                                                                450.00
15272                                                                                                 20.00
15273                                                                                                450.00
15274                                                                                           unspecified
15275                                                                                                 60.00
15276                                                                                                  1.00
15277                                                                                               1000.00
15278                                                                                                  2.00
15279                                                                                                  1.00
15280                                                                                                200.00
15281                                                                                                720.00
15282                                                                                                  1.00
15283                                                                                                720.00
15284                                                                                                500.00
15285                                                                                                100.00
15286                                                                                                100.00
15287                                                                                                750.00
15288                                                                                                  3.00
15289                                                                                                500.00
15290                                                                                                500.00
15291                                                                                                850.00
15292                                                                                                375.00
15293                                                                                                250.00
15294                                                                                                270.00
15295                                                                                                  1.00
15296                                                                                                 75.00
15297                                                                                                  1.00
15298                                                                                                200.00
15299                                                                                                 10.00
15300                                                                                                  1.00
15301                                                                                                500.00
15302                                                                                                340.00
15303                                                                                                  4.00
15304                                                                                                  3.50
15305                                                                                                 70.00
15306                                                                                                  0.40
15307                                                                                                 50.00
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15312                                                                                                  0.40
15313                                                                                                 50.00
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15316                                                                                                  0.40
15317                                                                          based on weight (50-100 lbs)
15318                                                                                                  0.40
15319                                                                                 1 tablet/pill/capsule
15320                                                                                                  0.40
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15324                                                                                                  0.40
15325                                                                                                  0.40
15326                                                                                                375.00
15327                                                                                                  0.40
15328                                                                                                 60.00
15329                                                                                                 20.00
15330                                                                                                 60.00
15331                                                                                                  0.40
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15335                                                                                                 15.00
15336                                                                                                 15.00
15337                                                                                                60-120
15338                                                                                                  1.00
15339                                                                                              27, 1620
15340                                                                                               1620.00
15341                                                                                                 75.00
15342                                                                                                 10.00
15343                                                                                               1620.00
15344                                                                                                 15.00
15345                                                                                              27, 1620
15346                                                                                                 15.00
15347                                                                                                 30.00
15348                                                                                              27, 1620
15349                                                                                                 15.00
15350                                                                                                  1.00
15351                                                                                                900.00
15352                                                                                                 10.60
15353                                                                                                 10.00
15354                                                                                                  2.00
15355                                                                                                  1.00
15356                                                                                                 15.00
15357                                                                                                 10.00
15358                                                                                                900.00
15359                                                                                                  9.00
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15364                                                                                                500.00
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15368                                                                                                 23.00
15369                                                                                                 23.00
15370                                                                                                136.00
15371                                                                                                 23.00
15372                                                                                                  0.09
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15380                                                                                                 20.00
15381                                                                                                  1.00
15382                                                                                                  2.60
15383                                                                                           unspecified
15384                                                                                           unspecified
15385                                                                                                500.00
15386                                                                                                300.00
15387                                                                                                100.00
15388                                                                                                 50.00
15389                                                                                                250.00
15390                                                                                                 60.00
15391                                                                                                 23.00
15392                                                                                                 40.00
15393                                                                                                 20.00
15394                                                                                                272.00
15395                                                                                                  9.80
15396                                                                                                 50.00
15397                                                                                                272.00
15398                                                                                                 24.00
15399                                                                                                272.00
15400                                                                                                  5.00
15401                                                                                                 50.00
15402                                                                                          small amount
15403                                                                                                 30.00
15404                                                                                                500.00
15405                                                                                                 10.00
15406                                                                                                500.00
15407                                                                                                272.00
15408                                                                                                375.00
15409                                                                                                250.00
15410                                                                                                600.00
15411                                                                                                  3.00
15412                                                                                             22.7, 272
15413                                                                                                375.00
15414                                                                                                 48.00
15415                                                                                                600.00
15416                                                                                                  3.00
15417                                                                                                272.00
15418                                                                                                272.00
15419                                                                                                 20.00
15420                                                                                                132.00
15421                                                                                                375.00
15422                                                                                                 10.00
15423                                                                                                 10.00
15424                                                                                                272.00
15425                                                                                                250.00
15426                                                                                                 48.00
15427                                                                                                 50.00
15428                                                                                                250.00
15429                                                                                                 50.00
15430                                                                                                 20.00
15431                                                                                                 10.00
15432                                                                                                 60.00
15433                                                                                                 68.00
15434                                                                                                 16.08
15435                                                                                                  7.00
15436                                                                                                 30.00
15437                                                                                                250.00
15438                                                                                                 30.00
15439                                                                                                  7.00
15440                                                                                                  1.00
15441                                                                                           unspecified
15442                                                                                                  1.00
15443                                                                                                300.00
15444                                                                                                  5.00
15445                                                                                           unspecified
15446                                                                                                 20.00
15447                                                                                                272.00
15448                                                                                 1 tablet/pill/capsule
15449                                                                                                272.00
15450                                                                                                272.00
15451                                                                          based on weight (51-100 lbs)
15452                                                                                                750.00
15453                                                                                           unspecified
15454                                                                                           unspecified
15455                                                                                                50-100
15456                                                                                                50-100
15457                                                                                                 75.00
15458                                                                                                 75.00
15459                                                                                                200.00
15460                                                                                                 75.00
15461                                                                                                 75.00
15462                                                                                                625.00
15463                                                                                                 20.00
15464                                                                                                272.00
15465                                                                                                300.00
15466                                                                                                  0.50
15467                                                                                                750.00
15468                                                                                                272.00
15469                                                                                                136.00
15470                                                                                                  1.00
15471                                                                                                500.00
15472                                                                                                250.00
15473                                                                                                 16.00
15474                                                                                                272.00
15475                                                                                                136.00
15476                                                                                                 16.00
15477                                                                                                  1.00
15478                                                                                                500.00
15479                                                                                                250.00
15480                                                                                                200.00
15481                                                                                                272.00
15482                                                                                                136.00
15483                                                                                                 16.00
15484                                                                                                  1.00
15485                                                                                                272.00
15486                                                                                                136.00
15487                                                                                                272.00
15488                                                                                                136.00
15489                                                                                                  0.57
15490                                                                                                 16.00
15491                                                                                                150.00
15492                                                                                               1000.00
15493                                                                                                400.00
15494                                                                                                272.00
15495                                                                                                136.00
15496                                                                                                900.00
15497                                                                                                100.00
15498                                                                                                  2.00
15499                                                                                                272.00
15500                                                                                                136.00
15501                                                                                                 20.00
15502                                                                                                300.00
15503                                                                                                150.00
15504                                                                                                500.00
15505                                                                                                  1.00
15506                                                                                                200.00
15507                                                                                                  1.00
15508                                                                                                150.00
15509                                                                                                272.00
15510                                                                                                272.00
15511                                                                                                272.00
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15514                                                                                                272.00
15515                                                                         based on weight (44.1-88 lbs)
15516                                                                                                250.00
15517                                                                                                136.00
15518                                                                                                  1.00
15519                                                                                                272.00
15520                                                                                               1000.00
15521                                                                                                272.00
15522                                                                                                 50.00
15523                                                                                                 50.00
15524                                                                                 1 tablet/pill/capsule
15525                                                                                                272.00
15526                                                                                               1000.00
15527                                                                                                50-100
15528                                                                                               23, 228
15529                                                                                               1000.00
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15532                                                                                               1000.00
15533                                                                              based on weight (25 lbs)
15534                                                                                                 75.00
15535                                                                                                 75.00
15536                                                                                                300.00
15537                                                                                                 50.00
15538                                                                                                 15.00
15539                                                                                                 75.00
15540                                                                                                500.00
15541                                                                                                750.00
15542                                                                                                 60.00
15543                                                                                                  3.00
15544                                                                                                 75.00
15545                                                                                                 21-55
15546                                                                                                136.00
15547                                                                                                  4.40
15548                                                                                                227.00
15549                                                                                                113.50
15550                                                                                                 50.00
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15553                                                                                                272.00
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15557                                                                                                150.00
15558                                                                                                 50-75
15559                                                                                                800.00
15560                                                                                              45327.00
15561                                                                                                  2.20
15562                                                                                                  3.00
15563                                                                                       0.25 inch strip
15564                                                                                                375.00
15565                                                                                                136.00
15566                                                                                                 30.00
15567                                                                                                 15.00
15568                                                                                                100.00
15569                                                                                                 50.00
15570                                                                                                  0.30
15571                                                                                                500.00
15572                                                                                                 23.00
15573                                                                                               1000.00
15574                                                                                                  1.00
15575                                                                                                375.00
15576                                                                                                  1.00
15577                                                                                                  6.00
15578                                                                                                125.00
15579                                                                                                125.00
15580                                                                                                 50.00
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15588                                                                                                 45-88
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15595                                                                                                 18.00
15596                                                                                                 75.00
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15605                                                                                                150.00
15606                                                                                               1000.00
15607                                                                                                200.00
15608                                                                                                 75.00
15609                                                                                                300.00
15610                                                                                                300.00
15611                                                                                                  5.00
15612                                                                                                272.00
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15615                                                                                                  3.00
15616                                                                                               272 mcg
15617                                                                                                272.00
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15619                                                                                                  0.91
15620                                                                                                 23.00
15621                                                                                                500.00
15622                                                                                                500.00
15623                                                                                                 50.00
15624                                                                                                 50.00
15625                                                                                                775.00
15626                                                                                                250.00
15627                                                                                                 23.00
15628                                                                                                500.00
15629                                                                                                 75.00
15630                                                                                                750.00
15631                                                                                                200.00
15632                                                                                               1000.00
15633                                                                                              tapering
15634                                                                                                 23.00
15635                                                                                                 23.00
15636                                                                          based on weight (51-100 lbs)
15637                                                                                                204.00
15638                                                                                                400.00
15639                                                                                                100.00
15640                                                                                                200.00
15641                                                                                                400.00
15642                                                                                                100.00
15643                                                                                                500.00
15644                                                                                                 10.00
15645                                                                                                  2.00
15646                                                                                                250.00
15647                                                                                                200.00
15648                                                                                                200.00
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15651                                                                                                200.00
15652                                                                                                  5.00
15653                                                                                                 50.00
15654                                                                                                 10.00
15655                                                                                                 10.00
15656                                                                                                 56.75
15657                                                                                                102.00
15658                                                                                                272.00
15659                                                                                                  1.00
15660                                                                                                  5.00
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15664                                                                                                100.00
15665                                                                                                  1.00
15666                                                                                                  5.00
15667                                                                                          small amount
15668                                                                                                  2.00
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15671                                                                                                 15.00
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15676                                                                                                120.00
15677                                                                                                  1.00
15678                                                                                               1000.00
15679                                                                                                  1.00
15680                                                                                                  1.00
15681                                                                                               1000.00
15682                                                                                                300.00
15683                                                                                                  1.00
15684                                                                                                900.00
15685                                                                                                 75.00
15686                                                                                                 95.00
15687                                                                                                100.00
15688                                                                                                  1.00
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15694                                                                                                  1.00
15695                                                                                                  1.00
15696                                                                                                250.00
15697                                                                                                272.00
15698                                                                                                272.00
15699                                                                                 1 tablet/pill/capsule
15700                                                                                                227.00
15701                                                                                           unspecified
15702                                                                                                  4.00
15703                                                                                                  1.28
15704                                                                                                  4.00
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15708                                                                                                500.00
15709                                                                                                750.00
15710                                                                                                 50.00
15711                                                                                                  1.00
15712                                                                                           unspecified
15713                                                                                                  2.00
15714                                                                                                  0.75
15715                                                                                              27, 1620
15716                                                                                                  0.75
15717                                                                                                  2.00
15718                                                                                                  1.00
15719                                                                                                272.00
15720                                                                                                136.00
15721                                                                                                  0.75
15722                                                                                                  2.00
15723                                                                                                 70.00
15724                                                                                                 70.00
15725                                                                                                272.00
15726                                                                                                136.00
15727                                                                                                  2.00
15728                                                                                                272.00
15729                                                                                                136.00
15730                                                                                                  3.00
15731                                                                                                  3.00
15732                                                                                                  2.00
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15734                                                                                                300.00
15735                                                                                                  2.00
15736                                                                                                  2.00
15737                                                                                                  8.00
15738                                                                                                300.00
15739                                                                                                  2.00
15740                                                                                                  0.75
15741                                                                                                  9.00
15742                                                                                                300.00
15743                                                                                                 50.00
15744                                                                                                  0.75
15745                                                                                                  0.75
15746                                                                                                  1.00
15747                                                                                                  1.50
15748                                                                                                  1.00
15749                                                                                                  2.00
15750                                                                                           unspecified
15751                                                                                                 10.00
15752                                                                                                750.00
15753                                                                                                  6.00
15754                                                                                                  5.00
15755                                                                                                  1.00
15756                                                                                                  1.00
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15759                                                                                                272.00
15760                                                                                                136.00
15761                                                                                                136.00
15762                                                                                                136.00
15763                                                                                                136.00
15764                                                                                                150.00
15765                                                                                                500.00
15766                                                                                                960.00
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15771                                                                                                 16.00
15772                                                                                                 75.00
15773                                                                                                136.00
15774                                                                                                114.00
15775                                                                                                114.00
15776                                                                                                500 mg
15777                                                                                                  1.50
15778                                                                                           unspecified
15779                                                                                                500.00
15780                                                                                                  1.50
15781                                                                                           unspecified
15782                                                                                           unspecified
15783                                                                                                  1.00
15784                                                                                                  1.00
15785                                                                                                  1.00
15786                                                                                                  1.00
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15789                                                                                                500.00
15790                                                                                           unspecified
15791                                                                                                  7.50
15792                                                                                                200.00
15793                                                                                                  7.50
15794                                                                                                  3.75
15795                                                                                                500.00
15796                                                                                              125, 500
15797                                                                                                136.00
15798                                                                                                500.00
15799                                                                                           unspecified
15800                                                                                                  1.50
15801                                                                                                500.00
15802                                                                                                 15.00
15803                                                                                                272.00
15804                                                                                                  2.68
15805                                                                                                 15.00
15806                                                                                                 20.00
15807                                                                                                  2.68
15808                                                                                                  1.00
15809                                                                                                750.00
15810                                                                                                  6.50
15811                                                                           based on weight (44-88 lbs)
15812                                                                                                750.00
15813                                                                                                  5.40
15814                                                                                                  2.00
15815                                                                        based on weight (50.1-100 lbs)
15816                                                                                                 44-88
15817                                                                                                 50.00
15818                                                                          based on weight (51-100 lbs)
15819                                                                                                  1.00
15820                                                                                                  1.00
15821                                                                                                272.00
15822                                                                                                  2.68
15823                                                                                                500.00
15824                                                                                                 50.00
15825                                                                                                150.00
15826                                                                                                 15.00
15827                                                                                                  5.00
15828                                                                                                  6.30
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15830                                                                                                  5.00
15831                                                                                                  7.50
15832                                                                                                350.00
15833                                                                                                170.00
15834                                                                                                272.00
15835                                                                                                227.00
15836                                                                                                 68.00
15837                                                                                                227.00
15838                                                                                                 68.00
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15843                                                                                                 50.00
15844                                                                          based on weight (51-100 lbs)
15845                                                                                               1000.00
15846                                                                                                100.00
15847                                                                                                750.00
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15851                                                                                               1400.00
15852                                                                                                 75.00
15853                                                                                                 15.00
15854                                                                                                120.00
15855                                                                                                  1.20
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15865                                                                                               1000.00
15866                                                                                                 23.00
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15872                                                                                               1000.00
15873                                                                                                200.00
15874                                                                                               1500.00
15875                                                                                                  2.00
15876                                                                                               1500.00
15877                                                                                                251.00
15878                                                                                                100.00
15879                                                                                               1500.00
15880                                                                                                  2.00
15881                                                                                               1000.00
15882                                                                                                 23.00
15883                                                                                                  0.57
15884                                                                                                 50.00
15885                                                                                               1000.00
15886                                                                                           unspecified
15887                                                                                                  1.00
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15893                                                                                                 50.00
15894                                                                                                  1.00
15895                                                                                                  1.00
15896                                                                                                  1.00
15897                                                                                                240.00
15898                                                                                                250.00
15899                                                                                                  1.00
15900                                                                                                  1.00
15901                                                                                                 62.50
15902                                                                                                250.00
15903                                                                                                  1.00
15904                                                                                                  4.00
15905                                                                                                  3.00
15906                                                                                                 37.50
15907                                                                                          small amount
15908                                                                                                  1.00
15909                                                                                                  1.00
15910                                                                                                  1.00
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15913                                                                                                 20.00
15914                                                                                                125.00
15915                                                                                               1000.00
15916                                                                                                  1.00
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15938                                                                                                 20.00
15939                                                                                                  3.00
15940                                                                                                  1.00
15941                                                                                                 20.00
15942                                                                                                 10.00
15943                                                                                                  3.00
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15946                                                                                                  2.00
15947                                                                                              10000.00
15948                                                                                                  1.00
15949                                                                                                  1.00
15950                                                                                                  1.00
15951                                                                                                 80.00
15952                                                                                                 80.00
15953                                                                                                300.00
15954                                                                                                  8.00
15955                                                                                                  0.25
15956                                                                                                  3.00
15957                                                                                                 16.00
15958                                                                                                300.00
15959                                                                                                  0.50
15960                                                                                               1000.00
15961                                                                                                  3.00
15962                                                                                                  0.13
15963                                                                                                300.00
15964                                                                                                 80.00
15965                                                                                                150.00
15966                                                                                                  3.00
15967                                                                                                272.00
15968                                                                                                 50.00
15969                                                                                                  4.00
15970                                                                                                  4.00
15971                                                                                                500.00
15972                                                                                                  1.00
15973                                                                                               1620.00
15974                                                                                                 25.00
15975                                                                                                100.00
15976                                                                                                272.00
15977                                                                                                240.00
15978                                                                                                 37.50
15979                                                                                                 75.00
15980                                                                                                500.00
15981                                                                          based on weight (51-100 lbs)
15982                                                                                                 50.00
15983                                                                                          small amount
15984                                                                                                 16.00
15985                                                                                                 16.00
15986                                                                           based on weight (56-95 lbs)
15987                                                                                                 20.00
15988                                                                                                 10.00
15989                                                                                                 10.00
15990                                                                                                 10.00
15991                                                                                                150.00
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15994                                                                                                125.00
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16001                                                                                                  1.00
16002                                                                                                  1.00
16003                                                                                                  1.00
16004                                                                                                  8.00
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16006                                                                                               1000.00
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16010                                                                                                 20.00
16011                                                                                                  1.00
16012                                                                                                  1.00
16013                                                                                                  1.00
16014                                                                                                  0.75
16015                                                                                                250.00
16016                                                                                           application
16017                                                                                                250.00
16018                                                                                                250.00
16019                                                                                                272.00
16020                                                                                                  8.04
16021                                                                                                272.00
16022                                                                                                500.00
16023                                                                                                272.00
16024                                                                                                272.00
16025                                                                                                200.00
16026                                                                                          small amount
16027                                                                                                 60.00
16028                                                                                                  0.50
16029                                                                                                200.00
16030                                                                                                 60.00
16031                                                                                                 60.00
16032                                                                                                350.00
16033                                                                                       based on weight
16034                                                                                                750.00
16035                                                                                                 44-88
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16040                                                                                                750.00
16041                                                                                                 10.00
16042                                                                                                500.00
16043                                                                                                  2.00
16044                                                                                                300.00
16045                                                                                                500.00
16046                                                                                                375.00
16047                                                                                                 62.50
16048                                                                                                125.00
16049                                                                                                272.00
16050                                                                                                  8.00
16051                                                                                                375.00
16052                                                                                       based on weight
16053                                                                                       based on weight
16054                                                                                                  5.00
16055                                                                                                750.00
16056                                                                                                500.00
16057                                                                                                  4.02
16058                                                                                                500.00
16059                                                                                                300.00
16060                                                                                                227.00
16061                                                                                                 68.00
16062                                                                                                272.00
16063                                                                                                 68.00
16064                                                                                                500.00
16065                                                                                                  4.00
16066                                                                                                200.00
16067                                                                                                272.00
16068                                                                                                 68.00
16069                                                                                                 10.00
16070                                                                                                300.00
16071                                                                                                300.00
16072                                                                                                 50.00
16073                                                                                                300.00
16074                                                                                                100.00
16075                                                                                                200.00
16076                                                                                                300.00
16077                                                                                                 20.00
16078                                                                                                300.00
16079                                                                                                  2.60
16080                                                                                                 25.00
16081                                                                                                 20.00
16082                                                                                                272.00
16083                                                                                                125.00
16084                                                                                                250.00
16085                                                                                                  3.00
16086                                                                                                  0.57
16087                                                                                                175.00
16088                                                                                                450.00
16089                                                                                                 50.00
16090                                                                                                 18.75
16091                                                                                                 50.00
16092                                                                                                 35.00
16093                                                                                                227.00
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16095                                                                                                136.00
16096                                                                                               1000.00
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16099                                                                                                850.00
16100                                                                                                300.00
16101                                                                                                100.00
16102                                                                                                 15.00
16103                                                                                                 10.00
16104                                                                                                  4.00
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16119                                                                                                200.00
16120                                                                                                  8.00
16121                                                                                                  0.50
16122                                                                                                 50.00
16123                                                                                                272.00
16124                                                                                                  2.00
16125                                                                                                  1.00
16126                                                                                                  1.00
16127                                                                                                272.00
16128                                                                                               1000.00
16129                                                                                                272.00
16130                                                                                                  0.95
16131                                                                                                272.00
16132                                                                                                272.00
16133                                                                                                272.00
16134                                                                                                100.00
16135                                                                                                  6.00
16136                                                                                                272.00
16137                                                                                                500.00
16138                                                                                                150.00
16139                                                                                                 16.00
16140                                                                                                600.00
16141                                                                                                  1.00
16142                                                                                                500.00
16143                                                                                                150.00
16144                                                                                                  1.00
16145                                                                                                 16.00
16146                                                                                                 70.00
16147                                                                                                 16.00
16148                                                                                                  1.00
16149                                                                                                200.00
16150                                                                                           unspecified
16151                                                                                                  0.01
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16166                                                                                                300.00
16167                                                                                                250.00
16168                                                                                                250.00
16169                                                                                                200.00
16170                                                                                                100.00
16171                                                                                                375.00
16172                                                                                                 62.50
16173                                                                                                 30.00
16174                                                                                                 40.00
16175                                                                                                  0.30
16176                                                                                                 30.00
16177                                                                                           unspecified
16178                                                                                                200.00
16179                                                                                           unspecified
16180                                                                                                375.00
16181                                                                                                136.00
16182                                                                                                136.00
16183                                                                                                250.00
16184                                                                                                200.00
16185                                                                                                 70.00
16186                                                                                                  8.00
16187                                                                                                  0.30
16188                                                                                                  2.50
16189                                                                                                540.00
16190                                                                                                 10.00
16191                                                                                                  1.00
16192                                                                                                100.00
16193                                                                                                200.00
16194                                                                                                100.00
16195                                                                                                 60.00
16196                                                                                                 10.00
16197                                                                                                200.00
16198                                                                                                375.00
16199                                                                                           unspecified
16200                                                                                                100.00
16201                                                                                                  0.30
16202                                                                                                 50.00
16203                                                                                                 60.00
16204                                                                                                150.00
16205                                                                                                  0.30
16206                                                                                                 70.00
16207                                                                                                 15.00
16208                                                                                                200.00
16209                                                                                                300.00
16210                                                                                                 60.00
16211                                                                                                272.00
16212                                                                                                227.00
16213                                                                                                  8.80
16214                                                                                                 44.00
16215                                                                                                  0.44
16216                                                                                                  1.00
16217                                                                                                200.00
16218                                                                                                 50.00
16219                                                                                                750.00
16220                                                                                                  5.00
16221                                                                                                375.00
16222                                                                                                500.00
16223                                                                                                100.00
16224                                                                                                250.00
16225                                                                                                 20.00
16226                                                                                                  5.00
16227                                                                                                500.00
16228                                                                                                  6.00
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16231                                                                                                  1.00
16232                                                                                                300.00
16233                                                                                                 50.00
16234                                                                                                  1.00
16235                                                                                                  1.00
16236                                                                                                200.00
16237                                                                                                  1.00
16238                                                                                                 16.00
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16243                                                                                                  7.50
16244                                                                                                  3.30
16245                                                                                                  0.68
16246                                                                                                150.00
16247                                                                                                200.00
16248                                                                                                  2.20
16249                                                                                                 62.50
16250                                                                                                250.00
16251                                                                                          small amount
16252                                                                                                  1.00
16253                                                                                           unspecified
16254                                                                                                  1.00
16255                                                                                                 23.00
16256                                                                                                 80.00
16257                                                                                                100.00
16258                                                                                                100.00
16259                                                                                                100.00
16260                                                                                                 50.00
16261                                                                                                150.00
16262                                                                                                 37.50
16263                                                                                                  1.00
16264                                                                                                  0.60
16265                                                                                                810.00
16266                                                                                                  0.60
16267                                                                                               1000.00
16268                                                                                                400.00
16269                                                                                                437.50
16270                                                                                                810.00
16271                                                                                                  6.00
16272                                                                                               1000.00
16273                                                                                                 23.00
16274                                                                                               1000.00
16275                                                                                                500.00
16276                                                                                                400.00
16277                                                                                                 50.00
16278                                                                                                100.00
16279                                                                                                136.00
16280                                                                                                  0.65
16281                                                                                               1000.00
16282                                                                                                  0.70
16283                                                                                                  1.00
16284                                                                                                  0.60
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16291                                                                                                51-100
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16297                                                                                                 25.00
16298                                                                                                136.00
16299                                                                                                 23.00
16300                                                                                                 80.00
16301                                                                                                625.00
16302                                                                                                 26.10
16303                                                                                                  3.50
16304                                                                                                  1.00
16305                                                                                                  4.00
16306                                                                                                  2.00
16307                                                                                                 60.00
16308                                                                                                 50.00
16309                                                                                                  6.00
16310                                                                                                272.00
16311                                                                                                 68.00
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16314                                                                                               6000.00
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16320                                                                                               1200.00
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16323                                                                                               1200.00
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16327                                                                                                  1.00
16328                                                                                                500.00
16329                                                                                                 75.00
16330                                                                                               1000.00
16331                                                                                                204.00
16332                                                                                                 30.00
16333                                                                                                  8.00
16334                                                                                               1000.00
16335                                                                                                 20.00
16336                                                                                                900.00
16337                                                                                                900.00
16338                                                                                                 10.00
16339                                                                                                 56-95
16340                                                                          based on weight (51-100 lbs)
16341                                                                                                 20.00
16342                                                                                                  5.00
16343                                                                                                375.00
16344                                                                                                272.00
16345                                                                                                 23.00
16346                                                                                                272.00
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16348                                                                                                100.00
16349                                                                                                  1.25
16350                                                                                                 40.00
16351                                                                                                  1.00
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16353                                                                                               1000.00
16354                                                                                                  2.00
16355                                                                                           unspecified
16356                                                                                           unspecified
16357                                                                                                  1.00
16358                                                                                                  1.00
16359                                                                                                  1.00
16360                                                                                                  0.50
16361                                                                                                  1.00
16362                                                                                                  1.00
16363                                                                                                  1.00
16364                                                                                                  1.00
16365                                                                                                  2.00
16366                                                                                                  1.00
16367                                                                                           unspecified
16368                                                                                                  1.50
16369                                                                                                 12.00
16370                                                                                                  3.00
16371                                                                                           unspecified
16372                                                                                                  1.00
16373                                                                                                  0.50
16374                                                                                           unspecified
16375                                                                                                300.00
16376                                                                                           unspecified
16377                                                                                                  0.50
16378                                                                                           unspecified
16379                                                                                                  1.00
16380                                                                                                  1.00
16381                                                                                                  1.00
16382                                                                                           unspecified
16383                                                                                                272.00
16384                                                                                                 10.00
16385                                                                                                100.00
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16390                                                                                               1620.00
16391                                                                                                  4.00
16392                                                                                                  1.00
16393                                                                                                  4.00
16394                                                                                                  2.00
16395                                                                                                 16.00
16396                                                                                               2000.00
16397                                                                                                  1.00
16398                                                                                               1000.00
16399                                                                                                  1.00
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16402                                                                                                500.00
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16405                                                                                                 16.00
16406                                                                                                  8.00
16407                                                                                                  2.00
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16409                                                                                               1000.00
16410                                                                                                 16.00
16411                                                                                                  2.00
16412                                                                                                200.00
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16417                                                                                                  0.70
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16421                                                                                                  1.00
16422                                                                                                  6.00
16423                                                                                                 37.50
16424                                                                                                100.00
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16427                                                                                                  2.68
16428                                                                                                 50.00
16429                                                                                                 50.00
16430                                                                                                750.00
16431                                                                                                 50.00
16432                                                                                                 23.00
16433                                                                                                500.00
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16438                                                                                                187.50
16439                                                                                                500.00
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16444                                                                                                500.00
16445                                                                                                136.00
16446                                                                                                500.00
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16449                                                                                                  4.00
16450                                                                          based on weight (51-100 lbs)
16451                                                                                                  8.00
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16455                                                                                                  1.00
16456                                                                                                  1.00
16457                                                                                                 40.00
16458                                                                                                  3.20
16459                                                                                                  3.20
16460                                                                                                  1.00
16461                                                                                               1000.00
16462                                                                                             0.5 ml/kg
16463                                                                                               1000.00
16464                                                                                               1500.00
16465                                                                                               1500.00
16466                                                                                               1000.00
16467                                                                                                400.00
16468                                                                                                 50.00
16469                                                                                                750.00
16470                                                                                                272.00
16471                                                                                                  4.28
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16473                                                                                                  4.70
16474                                                                                     1 syringe/pipette
16475                                                                                                 30.00
16476                                                                                                  1.50
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16480                                                                                                272.00
16481                                                                                                 23.00
16482                                                                                                 27.00
16483                                                                                               1000.00
16484                                                                                                 23.00
16485                                                                                                 45-88
16486                                                                                                100.00
16487                                                                                                136.00
16488                                                                                                100.00
16489                                                                                                  0.02
16490                                                                                                 50.00
16491                                                                                                 50.00
16492                                                                                                375.00
16493                                                                                                  1.00
16494                                                                                                100.00
16495                                                                                                100.00
16496                                                                                                 23.00
16497                                                                                           bottle/vial
16498                                                                                                  1.00
16499                                                                                                  1.00
16500                                                                                                 75.00
16501                                                                                                200.00
16502                                                                                                272.00
16503                                                                                                 23.00
16504                                                                                               1000.00
16505                                                                                                125.00
16506                                                                                                500.00
16507                                                                                                250.00
16508                                                                                                 25.00
16509                                                                                                375.00
16510                                                                                                  5.00
16511                                                                                                480.00
16512                                                                                                 22.00
16513                                                                                                373.00
16514                                                                                                478.00
16515                                                                                                136.00
16516                                                                                                136.00
16517                                                                                                  5.00
16518                                                                                                204.00
16519                                                                                                272.00
16520                                                                                                500.00
16521                                                                                                  5.00
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16527                                                                                                375.00
16528                                                                                                500.00
16529                                                                                                250.00
16530                                                                                                500.00
16531                                                                                                 10.00
16532                                                                                                 11.00
16533                                                                                                113.50
16534                                                                                                204.00
16535                                                                                                580.00
16536                                                                                                 26.00
16537                                                                                                  5.00
16538                                                                                                50-100
16539                                                                                                136.00
16540                                                                                                 93.00
16541                                                                                                500.00
16542                                                                                                500.00
16543                                                                                                 44-88
16544                                                                           based on weight (44-88 lbs)
16545                                                                                                500.00
16546                                                                        based on weight (50.1-100 lbs)
16547                                                                                                500.00
16548                                                                                                 93.00
16549                                                                                                136.00
16550                                                                                                375.00
16551                                                                                                 44-88
16552                                                                                                375.00
16553                                                                        based on weight (50.1-100 lbs)
16554                                                                                                 44-88
16555                                                                                                375.00
16556                                                                                                 68.00
16557                                                                                                500.00
16558                                                                                                  1.00
16559                                                                                                 93.00
16560                                                                                                  1.00
16561                                                                                                227.00
16562                                                                                                 68.00
16563                                                                                                500.00
16564                                                                                                  1.00
16565                                                                                                 50.00
16566                                                                                                  2.70
16567                                                                                                100.00
16568                                                                                                500.00
16569                                                                                                186.00
16570                                                                                                100.00
16571                                                                                                618.00
16572                                                                                                 28.00
16573                                                                                                 20.00
16574                                                                                                 28.00
16575                                                                                                  1.80
16576                                                                                                100.00
16577                                                                                                  1.80
16578                                                                                                170.00
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16581                                                                                                  2.00
16582                                                                                                  1.00
16583                                                                                                  0.56
16584                                                                                                  1.40
16585                                                                                                  1.40
16586                                                                                                  0.56
16587                                                                                                  2.10
16588                                                                                                  0.90
16589                                                                                                 50.00
16590                                                                                               100-150
16591                                                                                                  1.50
16592                                                                                                500.00
16593                                                                                                200.00
16594                                                                                                 20.00
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16600                                                                                                204.00
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16603                                                                                                100.00
16604                                                                                                  0.70
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16607                                                                                                  0.70
16608                                                                          based on weight (51-100 lbs)
16609                                                                                                  0.70
16610                                                                                                  0.70
16611                                                                                                500.00
16612                                                                                                850.00
16613                                                                                                272.00
16614                                                                                                  2.68
16615                                                                                                272.00
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16618                                                                                                 90.00
16619                                                                                                272.00
16620                                                                                                250.00
16621                                                                                                  1.00
16622                                                                                                  1.00
16623                                                                                                  1.00
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16625                                                                                                  1.00
16626                                                                                                500.00
16627                                                                                               1620.00
16628                                                                                                 80.00
16629                                                                                                 75.00
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16632                                                                                                600.00
16633                                                                                                  3.00
16634                                                                                                 62.50
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16637                                                                                                 44-88
16638                                                                                                50-100
16639                                                                          based on weight (51-100 lbs)
16640                                                                                                60-121
16641                                                                                                 23.00
16642                                                                                                136.00
16643                                                                                               1000.00
16644                                                                                                 10.00
16645                                                                                                  4.00
16646                                                                                              10 drops
16647                                                                                                 10.00
16648                                                                                                227.00
16649                                                                                                272.00
16650                                                                                                136.00
16651                                                                                                 16.00
16652                                                                                                200.00
16653                                                                                                 15.00
16654                                                                                                 16.00
16655                                                                                                200.00
16656                                                                                                 15.00
16657                                                                                             6-8 drops
16658                                                                                                  3.50
16659                                                                                                 50.00
16660                                                                                                  1.00
16661                                                                                                  1.00
16662                                                                                                  1.00
16663                                                                                                  1.00
16664                                                                                                 75.00
16665                                                                                                250.00
16666                                                                                                  1.00
16667                                                                                                 25-50
16668                                                                                                  1.00
16669                                                                                                  1.00
16670                                                                                                  1.00
16671                                                                                                  1.00
16672                                                                                                  1.00
16673                                                                                                 34.00
16674                                                                                                 75.00
16675                                                                                                 15.00
16676                                                                                                 37.00
16677                                                                                                 50.00
16678                                                                                               27-1620
16679                                                                                                  4.30
16680                                                                                                 50.00
16681                                                                                                 50.00
16682                                                                                                  1.00
16683                                                                                                625.00
16684                                                                                          small amount
16685                                                                                              wipe/pad
16686                                                                                                 50.00
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16688                                                                                                136.00
16689                                                                                             1.5 mg/ml
16690                                                                                               100-150
16691                                                                                                300.00
16692                                                                                                  2.00
16693                                                                                                750.00
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16696                                                                                                  4.00
16697                                                                                               1250.00
16698                                                                                                  4.00
16699                                                                                                  2.00
16700                                                                                                  1.00
16701                                                                                                 10.00
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16706                                                                                                 40.00
16707                                                                                                  1.00
16708                                                                                                500.00
16709                                                                                                 41.00
16710                                                                                                120.00
16711                                                                                          small amount
16712                                                                                          small amount
16713                                                                                                 16.00
16714                                                                                          small amount
16715                                                                                                  3.86
16716                                                                                                344.00
16717                                                                                          small amount
16718                                                                                          small amount
16719                                                                                                  5.00
16720                                                                                                136.00
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16725                                                                                                  1.00
16726                                                                                                 spray
16727                                                                                                500.00
16728                                                                                                120.00
16729                                                                                                100.00
16730                                                                                                  3.80
16731                                                                                                  5.00
16732                                                                                                  4.00
16733                                                                                                272.00
16734                                                                                                272.00
16735                                                                                                272.00
16736                                                                                                500.00
16737                                                                                                 50.00
16738                                                                                                 90.00
16739                                                                                                150.00
16740                                                                                                204.00
16741                                                                                                 20.00
16742                                                                                                  1.00
16743                                                                                                  1.00
16744                                                                                                 23.00
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16747                                                                                                 23.00
16748                                                                                               1000.00
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16752                                                                                               1000.00
16753                                                                                                 23.00
16754                                                                                               1000.00
16755                                                                                                700.00
16756                                                                                                  1.00
16757                                                                                                  0.75
16758                                                                                                  1.00
16759                                                                                                100.00
16760                                                                                                200.00
16761                                                                                                500.00
16762                                                                                                  3.00
16763                                                                                                  1.00
16764                                                                                                  5.00
16765                                                                                                300.00
16766                                                                                                 30.00
16767                                                                                                 10.00
16768                                                                                                200.00
16769                                                                                                 40.00
16770                                                                                                 20.00
16771                                                                                                  3.00
16772                                                                                                300.00
16773                                                                                                  5.00
16774                                                                                           unspecified
16775                                                                                                  1.00
16776                                                                                                  1.00
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16780                                                                                                  1.00
16781                                                                                                  1.00
16782                                                                                                  1.00
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16788                                                                                                240.00
16789                                                                                                1.1 ml
16790                                                                                                  3.40
16791                                                                           based on weight (44-88 lbs)
16792                                                                                                  1.10
16793                                                                           based on weight (24-60 lbs)
16794                                                                                                200.00
16795                                                                                                150.00
16796                                                                                                136.00
16797                                                                                                100.00
16798                                                                                           unspecified
16799                                                                                                  1.50
16800                                                                                                 37.50
16801                                                                                                500.00
16802                                                                                                  3.00
16803                                                                                                  3.00
16804                                                                                                 50.00
16805                                                                          based on weight (50-100 lbs)
16806                                                                                                  5.00
16807                                                                             based on weight (55+ lbs)
16808                                                                                                272.00
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16812                                                                                                 23.00
16813                                                                                                  0.10
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16817                                                                                                750.00
16818                                                                                                 23.00
16819                                                                                                  4.00
16820                                                                                                  0.10
16821                                                                                           unspecified
16822                                                                                                 75.00
16823                                                                                           unspecified
16824                                                                                                200.00
16825                                                                                                 23.00
16826                                                                                                  1.00
16827                                                                                                  0.10
16828                                                                                                 75.00
16829                                                                                                 10.00
16830                                                                                                  0.10
16831                                                                                                 75.00
16832                                                                                                 10.00
16833                                                                                                  0.10
16834                                                                                           unspecified
16835                                                                                                 10.00
16836                                                                                                  0.10
16837                                                                                                  1.80
16838                                                                                           unspecified
16839                                                                                                 75.00
16840                                                                                           unspecified
16841                                                                                           unspecified
16842                                                                                                  1.80
16843                                                                                                 10.00
16844                                                                                                  0.10
16845                                                                                                300.00
16846                                                                                                  1.00
16847                                                                                           unspecified
16848                                                                                                 75.00
16849                                                                                                1 pump
16850                                                                                                 15.00
16851                                                                                                272.00
16852                                                                                                136.00
16853                                                                                                500.00
16854                                                                                                272.00
16855                                                                                                136.00
16856                                                                                                272.00
16857                                                                                                375.00
16858                                                                                                 80.00
16859                                                                                                272.00
16860                                                                                                 80 mg
16861                                                                                                272.00
16862                                                                                                136.00
16863                                                                                                 23.00
16864                                                                                                51-100
16865                                                                                                375.00
16866                                                                                                50-100
16867                                                                                                375.00
16868                                                                                                  6.00
16869                                                                          based on weight (50-100 lbs)
16870                                                                                                  1.00
16871                                                                                                  9.80
16872                                                                                                  4.50
16873                                                                                                500.00
16874                                                                                                 15.00
16875                                                                                                 16.60
16876                                                                                                 23.00
16877                                                                                             13.5, 810
16878                                                                                                 23.00
16879                                                                                                  1.00
16880                                                                                                 23.00
16881                                                                                                 23.00
16882                                                                                       based on weight
16883                                                                                                  2.00
16884                                                                                                  1.00
16885                                                                                                  1.00
16886                                                                                                  1.00
16887                                                                                                810.00
16888                                                                                                  1.10
16889                                                                                                  1.10
16890                                                                                                  1.20
16891                                                                                                 80.00
16892                                                                                                  3.40
16893                                                                                                500.00
16894                                                                                                150.00
16895                                                                                                  3.00
16896                                                                                                  8.00
16897                                                                                                  3.20
16898                                                                                                500.00
16899                                                                                                200.00
16900                                                                                                  3.25
16901                                                                                                 60.00
16902                                                                                                272.00
16903                                                                                                272.00
16904                                                                                                136.00
16905                                                                                                272.00
16906                                                                                                272.00
16907                                                                                                272.00
16908                                                                                                136.00
16909                                                                                                272.00
16910                                                                                                136.00
16911                                                                                                500.00
16912                                                                                                 75.00
16913                                                                                                 30.00
16914                                                                                                136.00
16915                                                                                                100 mg
16916                                                                                                500 mg
16917                                                                                                250.00
16918                                                                                           unspecified
16919                                                                                                 11.50
16920                                                                                                 44-88
16921                                                                                                 44.00
16922                                                                                                500.00
16923                                                                                                 16.00
16924                                                                                                400.00
16925                                                                                                 11.50
16926                                                                                                125.00
16927                                                                                                810.00
16928                                                                                                240.00
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16932                                                                                                 60.00
16933                                                                                             13.5, 810
16934                                                                                               1620.00
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16938                                                                                                  1.00
16939                                                                                          small amount
16940                                                                                                500.00
16941                                                                                                100.00
16942                                                                                                500.00
16943                                                                                                375.00
16944                                                                                                500.00
16945                                                                                                  1.00
16946                                                                                                  1.00
16947                                                                                                  1.00
16948                                                                                                  1.00
16949                                                                                                500.00
16950                                                                                                500.00
16951                                                                                                  4.00
16952                                                                                                  1.00
16953                                                                                                  1.00
16954                                                                                                136.00
16955                                                                                                 23.00
16956                                                                                                113.50
16957                                                                                                113.50
16958                                                                                                 23.00
16959                                                                                               1000.00
16960                                                                                                 23.00
16961                                                                                                  1.00
16962                                                                                                  3.00
16963                                                                                                500.00
16964                                                                                                500.00
16965                                                                                                100.00
16966                                                                                                300.00
16967                                                                                                113.00
16968                                                                                                300.00
16969                                                                                                 10.00
16970                                                                          based on weight (51-100 lbs)
16971                                                                                                 15.00
16972                                                                                                  1.00
16973                                                                                                  1.00
16974                                                                                                  1.50
16975                                                                                                  1.00
16976                                                                                                  2.00
16977                                                                                                  3.00
16978                                                                                                  3.50
16979                                                                                                 14.00
16980                                                                                                  1.00
16981                                                                                                  1.00
16982                                                                                                  1.00
16983                                                                                              6 months
16984                                                                                                272.00
16985                                                                                                227.00
16986                                                                                                272.00
16987                                                                                                272.00
16988                                                                                                 27.00
16989                                                                                                  0.34
16990                                                                                                272.00
16991                                                                                                500.00
16992                                                                                                500.00
16993                                                                                           as directed
16994                                                                                           application
16995                                                                                                 75.00
16996                                                                                                 75.00
16997                                                                                                272.00
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17001                                                                                               1000.00
17002                                                                                                  2.00
17003                                                                                                  3.50
17004                                                                                                 75.00
17005                                                                                                  6.00
17006                                                                                                 40.00
17007                                                                                                100.00
17008                                                                                                250.00
17009                                                                                                500.00
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17011                                                                                                200.00
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17015                                                                                                250.00
17016                                                                                                  8.00
17017                                                                                                500.00
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17021                                                                                               1000.00
17022                                                                                           unspecified
17023                                                                                                  2.00
17024                                                                                                  2.00
17025                                                                                               1000.00
17026                                                                                                 40.00
17027                                                                                                 60.00
17028                                                                                                 10.00
17029                                                                                                  2.00
17030                                                                                                 40.00
17031                                                                                                 10.00
17032                                                                                                136.00
17033                                                                                               272 mcg
17034                                                                                                272.00
17035                                                                                               272 mcg
17036                                                                                                136 mg
17037                                                                                                272.00
17038                                                                                                272.00
17039                                                                                                 68.00
17040                                                                                                 16.00
17041                                                                                                50-100
17042                                                                        based on weight (50.1-100 lbs)
17043                                                                                                 16.00
17044                                                                                                200.00
17045                                                                                                750.00
17046                                                                                                200.00
17047                                                                                                500.00
17048                                                                                                 15.00
17049                                                                                               272 mcg
17050                                                                                               1000.00
17051                                                                                               1000 mg
17052                                                                                                272.00
17053                                                                                 1 tablet/pill/capsule
17054                                                                                                  2.00
17055                                                                                                  2.10
17056                                                                                                  0.70
17057                                                                                                60-121
17058                                                                                                  7.50
17059                                                                                                272.00
17060                                                                                                272.00
17061                                                                                                  1.00
17062                                                                                           unspecified
17063                                                                                                  1.00
17064                                                                                                  2.00
17065                                                                                                  1.00
17066                                                                                                375.00
17067                                                                                                272.00
17068                                                                                                  1.00
17069                                                                                                 60.00
17070                                                                                                  1.00
17071                                                                                                100.00
17072                                                                                                  1.00
17073                                                                                                  1.00
17074                                                                                                272.00
17075                                                                                                 68.00
17076                                                                                                  2.30
17077                                                                                                272.00
17078                                                                                                227.00
17079                                                                                                500.00
17080                                                                                                  1.00
17081                                                                                               1620.00
17082                                                                                                  3.00
17083                                                                                                  4.80
17084                                                                                                375.00
17085                                                                                                625.00
17086                                                                                                272.00
17087                                                                                                136.00
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17092                                                                                                  1.00
17093                                                                                                  1.00
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17096                                                                                                272.00
17097                                                                                                136.00
17098                                                                                           unspecified
17099                                                                                       based on weight
17100                                                                                                375.00
17101                                                                                                500.00
17102                                                                                                 20.00
17103                                                                                             500125.00
17104                                                                                                 75.00
17105                                                                                                 75.00
17106                                                                                                150.00
17107                                                                                                 50.00
17108                                                                                                 75.00
17109                                                                                                 80.00
17110                                                                                                100.00
17111                                                                                                125.00
17112                                                                                                 75.00
17113                                                                                                375.00
17114                                                                                                  3.00
17115                                                                                                  1.00
17116                                                                                                 68.00
17117                                                                                                  0.68
17118                                                                                                136.00
17119                                                                                                  1.37
17120                                                                                          small amount
17121                                                                                          small amount
17122                                                                                                900.00
17123                                                                                                240.00
17124                                                                                                360.00
17125                                                                                                 25.00
17126                                                                                          small amount
17127                                                                                           as directed
17128                                                                                                 20.00
17129                                                                                                  3.00
17130                                                                                                360.00
17131                                                                                                 20-25
17132                                                                                                750.00
17133                                                                                                 75.00
17134                                                                                                175.00
17135                                                                                                  8.00
17136                                                                                                  2.00
17137                                                                                                  1.00
17138                                                                          based on weight (51-100 lbs)
17139                                                                                                  5.00
17140                                                                                                  1.00
17141                                                                                                 20.00
17142                                                                                                  5.00
17143                                                                          based on weight (51-100 lbs)
17144                                                                                                500.00
17145                                                                                                 16.00
17146                                                                                                136.00
17147                                                                                                100.00
17148                                                                                                 16.00
17149                                                                                                  2.00
17150                                                                                                 25.00
17151                                                                                                 40-60
17152                                                                                                136.00
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17154                                                                                                  1.00
17155                                                                                               1620.00
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17158                                                                                                240.00
17159                                                                                                240.00
17160                                                                                                228.00
17161                                                                                                 80.00
17162                                                                                                  1.00
17163                                                                                                  7.50
17164                                                                                                500.00
17165                                                                                                 75.00
17166                                                                                                  3.00
17167                                                                                                  1.00
17168                                                                                                  2.00
17169                                                                                                 23.00
17170                                                                                                100.00
17171                                                                                                 75.00
17172                                                                                                100.00
17173                                                                                           unspecified
17174                                                                                                375.00
17175                                                                                                 60.00
17176                                                                                                150.00
17177                                                                                           unspecified
17178                                                                                                 29.00
17179                                                                                                 14.00
17180                                                                                           unspecified
17181                                                                                                 75.00
17182                                                                                                  1.40
17183                                                                                                300.00
17184                                                                                                150.00
17185                                                                                                 75.00
17186                                                                                                 60.00
17187                                                                                                225.00
17188                                                                                                100.00
17189                                                                                                300.00
17190                                                                                                140.00
17191                                                                                                 60.00
17192                                                                                                 20.00
17193                                                                                                160.00
17194                                                                                                 25.00
17195                                                                                                272.00
17196                                                                                                 26-50
17197                                                                                                 26-50
17198                                                                                                500.00
17199                                                                                                 20.00
17200                                                                                                 57.00
17201                                                                                                  1.00
17202                                                                                                 45-88
17203                                                                                                200.00
17204                                                                                               1620.00
17205                                                                                                  2.68
17206                                                                                                 20.00
17207                                                                                                 16.08
17208                                                                                                272.00
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17212                                                                                                272.00
17213                                                                                                136.00
17214                                                                                                300.00
17215                                                                                                100.00
17216                                                                                                300.00
17217                                                                                                  1.00
17218                                                                           based on weight (56-95 lbs)
17219                                                                                                272.00
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17222                                                                                                272.00
17223                                                                                                136.00
17224                                                                                                227.00
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17230                                                                                                  1.00
17231                                                                                                  1.00
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17235                                                                                                750.00
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17242                                                                                                 70.00
17243                                                                                                 80.00
17244                                                                                                500.00
17245                                                                                                272.00
17246                                                                                                227.00
17247                                                                                                  1.00
17248                                                                                 1 tablet/pill/capsule
17249                                                                                                 50.00
17250                                                                                                500.00
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17256                                                                                              45293.00
17257                                                                                                  1.00
17258                                                                                                425.00
17259                                                                                                  1.00
17260                                                                                                  1.00
17261                                                                                                 75.00
17262                                                                                                  1.00
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17265                                                                                               1620.00
17266                                                                                 1 tablet/pill/capsule
17267                                                                                                500.00
17268                                                                          based on weight (51-100 lbs)
17269                                                                                                 50.00
17270                                                                                                500.00
17271                                                                                                272.00
17272                                                                                                135.00
17273                                                                                                 75.00
17274                                                                                                136.00
17275                                                                                                272.00
17276                                                                                                 75.00
17277                                                                                                100.00
17278                                                                                                 23.00
17279                                                                                                136.00
17280                                                                                                  0.70
17281                                                                                                  0.08
17282                                                                                                136.00
17283                                                                                                57, 68
17284                                                                                                375.00
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17286                                                                                                136.00
17287                                                                                                  0.70
17288                                                                                                  1.00
17289                                                                                                  1.00
17290                                                                                                  0.70
17291                                                                                                  0.70
17292                                                                                                 75.00
17293                                                                                                  0.70
17294                                                                                                50-100
17295                                                                                                 45-88
17296                                                                                                 40.00
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17299                                                                                                 30.00
17300                                                                                                136.00
17301                                                                                                184.00
17302                                                                                                  5.00
17303                                                                                                 10.00
17304                                                                                                 10.00
17305                                                                                                100.00
17306                                                                                                208.00
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17311                                                                                                272.00
17312                                                                                                  4.70
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17316                                                                                                272.00
17317                                                                                                  0.16
17318                                                                                                110.00
17319                                                                                                272.00
17320                                                                                                200.00
17321                                                                                                 50.00
17322                                                                                                300.00
17323                                                                                                100.00
17324                                                                                                 60.00
17325                                                                                                  0.60
17326                                                                                                 55.00
17327                                                                                           application
17328                                                                                                  0.01
17329                                                                                           application
17330                                                                                           application
17331                                                                                                100.00
17332                                                                                                  0.28
17333                                                                                                  5.50
17334                                                                                                  1.00
17335                                                                                           application
17336                                                                                                  1.00
17337                                                                                                  1.00
17338                                                                                                  1.00
17339                                                                                                300.00
17340                                                                                                  0.25
17341                                                                                                  1.00
17342                                                                                                350.00
17343                                                                                                  0.25
17344                                                                                                  1.00
17345                                                                                                 37.50
17346                                                                                                400.00
17347                                                                                                  1.00
17348                                                                                                240.00
17349                                                                                                 15.00
17350                                                                                                120.00
17351                                                                                                250.00
17352                                                                                           unspecified
17353                                                                                                 60.00
17354                                                                                                100.00
17355                                                                                           unspecified
17356                                                                                                500.00
17357                                                                                                  3.60
17358                                                                                                 80.00
17359                                                                                                272.00
17360                                                                                                500.00
17361                                                                                                 50.00
17362                                                                                                 25.00
17363                                                                                                  1.00
17364                                                                                                  1.00
17365                                                                                                 20.00
17366                                                                                                500.00
17367                                                                                                  1.00
17368                                                                                                 50.00
17369                                                                                                500.00
17370                                                                                                  1.00
17371                                                                                                  1.00
17372                                                                                                  1.00
17373                                                                                                  1.00
17374                                                                                                  6.00
17375                                                                                                500.00
17376                                                                                                500.00
17377                                                                                                 75.00
17378                                                                                                 20.00
17379                                                                                                  1.00
17380                                                                                                500.00
17381                                                                                                 30 ml
17382                                                                                                272.00
17383                                                                                                227.00
17384                                                                                                272.00
17385                                                                                                 22.70
17386                                                                                               272 mcg
17387                                                                                           unspecified
17388                                                                                                222.00
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17392                                                                                                 75.00
17393                                                                                           application
17394                                                                                                500.00
17395                                                                                                 50.00
17396                                                                                                  2.80
17397                                                                                                  2.10
17398                                                                                                 23.00
17399                                                                        based on weight (50.1-100 lbs)
17400                                                                                                 23.00
17401                                                                                                 23.00
17402                                                                                                 23.00
17403                                                                                                460.00
17404                                                                                                136.00
17405                                                                                                 75.00
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17408                                                                                                200.00
17409                                                                                                 75.00
17410                                                                                                 80.00
17411                                                                                                 70.00
17412                                                                                           unspecified
17413                                                                                                 70.00
17414                                                                                                 70.00
17415                                                                                                 68.00
17416                                                                                                272.00
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17421                                                                                                  8.00
17422                                                                                                100.00
17423                                                                                                200.00
17424                                                                                                  0.02
17425                                                                                                250.00
17426                                                                                           unspecified
17427                                                                                           unspecified
17428                                                                                                500.00
17429                                                                                                500.00
17430                                                                                                  4.00
17431                                                                                                 50.00
17432                                                                                                500.00
17433                                                                                                200.00
17434                                                                                                 50.00
17435                                                                                                500.00
17436                                                                                                100.00
17437                                                                                                 23.00
17438                                                                                                272.00
17439                                                                                                272.00
17440                                                                                                500 mg
17441                                                                                                 30.00
17442                                                                                                500.00
17443                                                                                                500.00
17444                                                                                                272.00
17445                                                                                                272.00
17446                                                                                           bottle/vial
17447                                                                                               1000.00
17448                                                                                                272.00
17449                                                                                               1000.00
17450                                                                                                  0.01
17451                                                                                                272.00
17452                                                                                               1000.00
17453                                                                                                500.00
17454                                                                                                500.00
17455                                                                                                 15.00
17456                                                                                                  5.00
17457                                                                                                  1.00
17458                                                                                                210.00
17459                                                                                                  1.00
17460                                                                                                  2.00
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17462                                                                                               1000.00
17463                                                                                        1 pack/package
17464                                                                                                  1.00
17465                                                                                                  2.50
17466                                                                                                 15.00
17467                                                                                                  3.00
17468                                                                                               23, 460
17469                                                                                               1000.00
17470                                                                                        1 pack/package
17471                                                                                                315.00
17472                                                                                                  1.00
17473                                                                                                  1.00
17474                                                                                                  1.00
17475                                                                                                  1.00
17476                                                                                                  2.50
17477                                                                                                  3.20
17478                                                                                                 15.00
17479                                                                                                500.00
17480                                                                                                 15.00
17481                                                                                                500.00
17482                                                                                          small amount
17483                                                                                                 50.00
17484                                                                                                50-100
17485                                                                                                 80.00
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17494                                                                                                 45-88
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17497                                                                                                50-100
17498                                                                                                 45-88
17499                                                                                                500.00
17500                                                                                                120.00
17501                                                                                                 16.00
17502                                                                                                 80.00
17503                                                                                                 37.50
17504                                                                                                500.00
17505                                                                                                625.00
17506                                                                                                 80.00
17507                                                                                                 37.50
17508                                                                                                125.00
17509                                                                                                375.00
17510                                                                                                100.00
17511                                                                                                 50.00
17512                                                                                                  2.00
17513                                                                                                 23.00
17514                                                                                                500.00
17515                                                                                                250.00
17516                                                                                                 50.00
17517                                                                                                 50.00
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17520                                                                                                 75.00
17521                                                                                                100.00
17522                                                                                                100.00
17523                                                                                                200.00
17524                                                                                                875.00
17525                                                                                                250.00
17526                                                                                                100.00
17527                                                                                                 75.00
17528                                                                                                 60.00
17529                                                                                                 15.00
17530                                                                                              45293.00
17531                                                                                                750.00
17532                                                                                                 30.00
17533                                                                                                300.00
17534                                                                                                  1.40
17535                                                                                                 60.00
17536                                                                                                 62.50
17537                                                                                                200.00
17538                                                                                                500.00
17539                                                                                                160.00
17540                                                                                                 50.00
17541                                                                                                  1.40
17542                                                                                                 75.00
17543                                                                                                200.00
17544                                                                                                  3.00
17545                                                                                                  1.40
17546                                                                                                200.00
17547                                                                                                  3.00
17548                                                                                                  1.40
17549                                                                                                  2.00
17550                                                                                                 75.00
17551                                                                                                200.00
17552                                                                                                 15.00
17553                                                                                                750.00
17554                                                                                                 15.00
17555                                                                                               1000.00
17556                                                                                               1000.00
17557                                                                                               1000.00
17558                                                                                                385.00
17559                                                                                                375.00
17560                                                                                                  2.00
17561                                                                                                 75.00
17562                                                                                                 50.00
17563                                                                                                  1.00
17564                                                                                                200.00
17565                                                                                                250.00
17566                                                                                                200.00
17567                                                                                                  6.00
17568                                                                                                  1.00
17569                                                                                                  6.00
17570                                                                                                250.00
17571                                                                                                  5.00
17572                                                                                                375.00
17573                                                                                                 50.00
17574                                                                                                270.00
17575                                                                                                  4.50
17576                                                                                           unspecified
17577                                                                                                 30.00
17578                                                                                                500.00
17579                                                                                                 60.00
17580                                                                                                 60.00
17581                                                                                                500.00
17582                                                                                                  1.00
17583                                                                                           application
17584                                                                                                500.00
17585                                                                                                 1-1.5
17586                                                                                                 75.00
17587                                                                                                 75.00
17588                                                                                                 spray
17589                                                                                                  1.40
17590                                                                                                  1.40
17591                                                                                                  1.00
17592                                                                                                  1.40
17593                                                                                               1200.00
17594                                                                                                 37.50
17595                                                                                                 50.00
17596                                                                                                140.00
17597                                                                                                 50.00
17598                                                                                                200.00
17599                                                                                                  1.40
17600                                                                                                 50.00
17601                                                                                                  1.00
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17604                                                                                                  0.04
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17606                                                                                                  4.00
17607                                                                                                164.00
17608                                                                                                400.00
17609                                                                                                  5.00
17610                                                                                                170.25
17611                                                                           based on weight (44-88 lbs)
17612                                                                                                  1.75
17613                                                                                                 16.00
17614                                                                                                400.00
17615                                                                           based on weight (45-88 lbs)
17616                                                                                               1000.00
17617                                                                                                  1.83
17618                                                                                                 60.00
17619                                                                                                 16.00
17620                                                                                                500.00
17621                                                                                                  1.00
17622                                                                                                  0.30
17623                                                                                                136.00
17624                                                                                                300.00
17625                                                                                                  1.00
17626                                                                                                  1.74
17627                                                                         based on weight (44.1-88 lbs)
17628                                                                                               1000.00
17629                                                                                                  1.74
17630                                                                                                 10.00
17631                                                                                                  1.00
17632                                                                                                300.00
17633                                                                                               1.71 ml
17634                                                                                               1000.00
17635                                                                                                  1.62
17636                                                                                                200.00
17637                                                                                                100.00
17638                                                                                                730.00
17639                                                                                                200.00
17640                                                                                                375.00
17641                                                                                                  1.00
17642                                                                                                  1.00
17643                                                                                                  2.50
17644                                                                                                  3.50
17645                                                                                                300.00
17646                                                                                                  0.25
17647                                                                                                 62.50
17648                                                                                                 20.00
17649                                                                                                  1.00
17650                                                                                                350.00
17651                                                                                                  2.50
17652                                                                                                 30.00
17653                                                                                                 30.00
17654                                                                                                 10.00
17655                                                                                                 30.00
17656                                                                                                 30.00
17657                                                                                                900.00
17658                                                                                               1000.00
17659                                                                          based on weight (50-100 lbs)
17660                                                                                                500.00
17661                                                                                                 75.00
17662                                                                                                  3.40
17663                                                                                                500.00
17664                                                                                                300.00
17665                                                                                                 75.00
17666                                                                                                100.00
17667                                                                                                 75.00
17668                                                                                               1620.00
17669                                                                                                 27.00
17670                                                                                                60-120
17671                                                                                               1620.00
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17674                                                                                                  1.00
17675                                                                                                  2.00
17676                                                                                                  1.00
17677                                                                                                 60.00
17678                                                                                                300.00
17679                                                                                                  1.00
17680                                                                                           unspecified
17681                                                                                                113.50
17682                                                                                                 50.00
17683                                                                                                250.00
17684                                                                                                170.00
17685                                                                                               1693.00
17686                                                                                                400.00
17687                                                                                                500.00
17688                                                                                                  8.00
17689                                                                                                  1.00
17690                                                                                               1650.00
17691                                                                                                150.00
17692                                                                                                250.00
17693                                                                                                  1.00
17694                                                                                                200.00
17695                                                                                                300.00
17696                                                                                                300.00
17697                                                                                              27, 1620
17698                                                                                               1000.00
17699                                                                                                300.00
17700                                                                                                  8.00
17701                                                                                                200.00
17702                                                                                               10, 100
17703                                                                                               23, 460
17704                                                                                                  3.60
17705                                                                                                100.00
17706                                                                                                200.00
17707                                                                                                 50.00
17708                                                                                                750.00
17709                                                                                                100.00
17710                                                                                                  0.14
17711                                                                                                375.00
17712                                                                                                 50.00
17713                                                                                                  0.80
17714                                                                                                 23.00
17715                                                                                                300.00
17716                                                                                                 27.00
17717                                                                                                 19.50
17718                                                                                                150.00
17719                                                                                               23, 460
17720                                                                                          small amount
17721                                                                                                500.00
17722                                                                          based on weight (51-100 lbs)
17723                                                                                                60-120
17724                                                                                                150.00
17725                                                                                                 23.00
17726                                                                                                136.00
17727                                                                                                150.00
17728                                                                                                200.00
17729                                                                                                150.00
17730                                                                                                  1.60
17731                                                                                                 60.00
17732                                                                                                  1.60
17733                                                                                                 60.00
17734                                                                                               1000.00
17735                                                                                                  1.00
17736                                                                                                500.00
17737                                                                                                375.00
17738                                                                                                100.00
17739                                                                                               1000.00
17740                                                                                                  1.00
17741                                                                                                  1.00
17742                                                                                           application
17743                                                                                                1 drop
17744                                                                                                  1.00
17745                                                                                                 36.00
17746                                                                                               1000.00
17747                                                                                                500.00
17748                                                                                                500.00
17749                                                                                                 37.50
17750                                                                                                  2.50
17751                                                                                                136.00
17752                                                                                                  5.00
17753                                                                                                  5.00
17754                                                                                                227.00
17755                                                                           based on weight (45-88 lbs)
17756                                                                                                136.00
17757                                                                                                272.00
17758                                                                                                272.00
17759                                                                                                136.00
17760                                                                                                 68.00
17761                                                                                                136.00
17762                                                                                                150.00
17763                                                                                                272.00
17764                                                                                                136.00
17765                                                                                                100.00
17766                                                                                                  0.60
17767                                                                                                400.00
17768                                                                                                136.00
17769                                                                                                 10.00
17770                                                                                                 10.00
17771                                                                                                  0.40
17772                                                                                                 20.00
17773                                                                                                136.00
17774                                                                                                 32.00
17775                                                                                                272.00
17776                                                                                                  2.50
17777                                                                                                250.00
17778                                                                                                 75.00
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17783                                                                                                300.00
17784                                                                                                  5.00
17785                                                                                                 16.00
17786                                                                                                750.00
17787                                                                                                 16.00
17788                                                                                               1000.00
17789                                                                                                 16.00
17790                                                                                                 16.00
17791                                                                                               1000.00
17792                                                                                                200.00
17793                                                                                                 16.00
17794                                                                                                  8.00
17795                                                                                               1000.00
17796                                                                                                200.00
17797                                                                                                 16.00
17798                                                                                             6-8 drops
17799                                                                                                200.00
17800                                                                                                200.00
17801                                                                                                750.00
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17805                                                                                                  1.00
17806                                                                                                 90.00
17807                                                                                                300.00
17808                                                                                                  1.00
17809                                                                                                 16.00
17810                                                                                                 75.00
17811                                                                                                  1.00
17812                                                                                                300.00
17813                                                                                                 40.00
17814                                                                                                272.00
17815                                                                                                  2.68
17816                                                                                                300.00
17817                                                                                                272.00
17818                                                                          based on weight (60-120 lbs)
17819                                                                                                300.00
17820                                                                                                180.00
17821                                                                                                  3.50
17822                                                                                                  1.00
17823                                                                                                 30.00
17824                                                                                                500.00
17825                                                                                                272.00
17826                                                                                                136.00
17827                                                                                                272.00
17828                                                                                                136.00
17829                                                                                                 90.00
17830                                                                                               1000.00
17831                                                                                                300.00
17832                                                                                           unspecified
17833                                                                                                  1.00
17834                                                                                                  1.00
17835                                                                                                150.00
17836                                                                                                 80.00
17837                                                                                                100.00
17838                                                                                                  4.00
17839                                                                                                  2.50
17840                                                                                                  1.00
17841                                                                                                  1.00
17842                                                                                                 75.00
17843                                                                                                200.00
17844                                                                                                500.00
17845                                                                                           unspecified
17846                                                                                                  4.00
17847                                                                                                 80.00
17848                                                                                                  2.00
17849                                                                                                425.00
17850                                                                                                300.00
17851                                                                                                100.00
17852                                                                                                 40.00
17853                                                                                           unspecified
17854                                                                                                500.00
17855                                                                                           unspecified
17856                                                                                           unspecified
17857                                                                                                 75.00
17858                                                                                                100.00
17859                                                                                                400.00
17860                                                                                           unspecified
17861                                                                                                160.00
17862                                                                                                 50.00
17863                                                                                           unspecified
17864                                                                                                500.00
17865                                                                                           unspecified
17866                                                                                                  1.00
17867                                                                                                  1.00
17868                                                                                                 75.00
17869                                                                                                 68.00
17870                                                                                                136.00
17871                                                                                                  0.02
17872                                                                                                  0.05
17873                                                                                                  0.09
17874                                                                                                250.00
17875                                                                                                125.00
17876                                                                                                250.00
17877                                                                                                500.00
17878                                                                                                  8.00
17879                                                                                                250.00
17880                                                                                                150.00
17881                                                                                                 20.00
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17883                                                                                                  1.32
17884                                                                                                200.00
17885                                                                                                  3.50
17886                                                                                                 15.00
17887                                                                                                136.00
17888                                                                                                  0.09
17889                                                                                                150.00
17890                                                                                                 40.00
17891                                                                                                 50.00
17892                                                                                                 50.00
17893                                                                                                500.00
17894                                                                                                  8.00
17895                                                                                                150.00
17896                                                                                                  2.68
17897                                                                                                272.00
17898                                                                                                200.00
17899                                                                                                136.00
17900                                                                                                  2.68
17901                                                                                                200.00
17902                                                                                                250.00
17903                                                                                                102.00
17904                                                                                                136.00
17905                                                                                                  2.68
17906                                                                                                200.00
17907                                                                                                250.00
17908                                                                                                  1.00
17909                                                                                                102.00
17910                                                                                                  0.40
17911                                                                                                  8.00
17912                                                                                                  3.50
17913                                                                                                150.00
17914                                                                                                  8.00
17915                                                                                                 50.00
17916                                                                                                150.00
17917                                                                                                 40.00
17918                                                                                                136.00
17919                                                                                                  2.68
17920                                                                                                150.00
17921                                                                                                 40.00
17922                                                                                                 21.00
17923                                                                                                 50.00
17924                                                                                                250.00
17925                                                                                                150.00
17926                                                                                                 50.00
17927                                                                                                325.00
17928                                                                                                100.00
17929                                                                                                136.00
17930                                                                                                  8.00
17931                                                                                                500.00
17932                                                                                                 24.00
17933                                                                                                 25.00
17934                                                                                                  0.40
17935                                                                                                 20.00
17936                                                                                                  1.50
17937                                                                                                425.00
17938                                                                                                 20.00
17939                                                                                                  1.00
17940                                                                                                  1.00
17941                                                                                                100.00
17942                                                                                                  1.00
17943                                                                                                  7.00
17944                                                                                                200.00
17945                                                                                                 50.00
17946                                                                                                500.00
17947                                                                                                  1.00
17948                                                                                                 15.00
17949                                                                                                  3.20
17950                                                                                                 23.00
17951                                                                                                136.00
17952                                                                                                 60.00
17953                                                                                                136.00
17954                                                                                                 23.00
17955                                                                                                 23 mg
17956                                                                                                136.00
17957                                                                                               4 drops
17958                                                                                                136.00
17959                                                                                                 23.00
17960                                                                                                300.00
17961                                                                                                 75.00
17962                                                                                                200.00
17963                                                                                                 75.00
17964                                                                                               1000.00
17965                                                                                                136.00
17966                                                                                                 10.00
17967                                                                                                200.00
17968                                                                                                150.00
17969                                                                                                 15.00
17970                                                                                                136.00
17971                                                                                                136.00
17972                                                                                                 10.00
17973                                                                                                 50.00
17974                                                                                                  2.00
17975                                                                                                200.00
17976                                                                                                  1.00
17977                                                                                                  1.00
17978                                                                                                136.00
17979                                                                                                272.00
17980                                                                                                 50.00
17981                                                                                                 36.00
17982                                                                                                272.00
17983                                                                                                227.00
17984                                                                                                500.00
17985                                                                                                500.00
17986                                                                                                 50.00
17987                                                                                                272.00
17988                                                                                                125.00
17989                                                                                                125.00
17990                                                                                                500.00
17991                                                                                                  1.00
17992                                                                                                 15.00
17993                                                                                                500.00
17994                                                                                                120.00
17995                                                                                                 20.00
17996                                                                                                375.00
17997                                                                                                  8.00
17998                                                                                                 11.50
17999                                                                                                 62.50
18000                                                                                                200.00
18001                                                                                                 26-50
18002                                                                                                 50.00
18003                                                                                                50-100
18004                                                                                                  8.00
18005                                                                                                 50.00
18006                                                                                                  5.00
18007                                                                                                 50.00
18008                                                                                                  4.00
18009                                                                                                 44-88
18010                                                                                                50-100
18011                                                                                                 45-88
18012                                                                                                  1.50
18013                                                                                                  5.40
18014                                                                                                 45-88
18015                                                                                                50-100
18016                                                                                                  1.50
18017                                                                                                100.00
18018                                                                                                  5.40
18019                                                                                                 10.80
18020                                                                                                100.00
18021                                                                                                50-100
18022                                                                                                  5.40
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18025                                                                                                  1.00
18026                                                                                                  1.00
18027                                                                                                  5.40
18028                                                                                                 10.80
18029                                                                                                 60.00
18030                                                                                                  1.00
18031                                                                                                  5.40
18032                                                                                                500.00
18033                                                                                                  5.40
18034                                                                                                375.00
18035                                                                                                 50.00
18036                                                                                                200.00
18037                                                                                              45355.00
18038                                                                                                 10.00
18039                                                                                                500.00
18040                                                                                                500.00
18041                                                                                                  1.00
18042                                                                                                  9.00
18043                                                                                                  2.50
18044                                                                                              45355.00
18045                                                                                                500.00
18046                                                                                                272.00
18047                                                                                                136.00
18048                                                                                                500.00
18049                                                                                                272.00
18050                                                                                                136.00
18051                                                                                                200.00
18052                                                                                                 15.00
18053                                                                                                  2.50
18054                                                                                                500.00
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18059                                                                                                 50.00
18060                                                                                                 75.00
18061                                                                                                201.00
18062                                                                                                500.00
18063                                                                                                200.00
18064                                                                                                  3.00
18065                                                                                                300.00
18066                                                                                                300.00
18067                                                                                                 20.00
18068                                                                                                  3.00
18069                                                                                                  1.00
18070                                                                                                 50.00
18071                                                                                                  6.00
18072                                                                         based on weight (40.1-60 lbs)
18073                                                                                                 44-88
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18076                                                                                                 44-88
18077                                                                                                 10.00
18078                                                                                                 10.00
18079                                                                                                  1.00
18080                                                                                                  1.00
18081                                                                                                  1.00
18082                                                                                                272.00
18083                                                                                                  0.36
18084                                                                                                 50.00
18085                                                                                                300.00
18086                                                                                                500.00
18087                                                                                                200.00
18088                                                                                                250.00
18089                                                                                                500.00
18090                                                                                                 60.00
18091                                                                                                 10.00
18092                                                                                                 10.00
18093                                                                                                250.00
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18097                                                                                                750.00
18098                                                                                           unspecified
18099                                                                                                  1.00
18100                                                                                                 60.00
18101                                                                                                125.00
18102                                                                                                500.00
18103                                                                                               1000.00
18104                                                                                                200.00
18105                                                                                                562.50
18106                                                                                                300.00
18107                                                                                               1500.00
18108                                                                                                300.00
18109                                                                                                100.00
18110                                                                                                100.00
18111                                                                                                375.00
18112                                                                                                  0.70
18113                                                                                                150.00
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18117                                                                                                50-100
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18120                                                                                                  4.00
18121                                                                                                 23.00
18122                                                                                                125.00
18123                                                                                                  1.00
18124                                                                             based on weight (50+ lbs)
18125                                                                                                 21-55
18126                                                                                                 23.00
18127                                                                                                  3.00
18128                                                                                                200.00
18129                                                                                                  5.00
18130                                                                                                100.00
18131                                                                                                  8.00
18132                                                                                                  3.00
18133                                                                                                  5.00
18134                                                                                           unspecified
18135                                                                                                  2.40
18136                                                                                                  1.20
18137                                                                                                  0.50
18138                                                                                                  8.00
18139                                                                                                100.00
18140                                                                                                 50.00
18141                                                                                           unspecified
18142                                                                                                  0.36
18143                                                                                                  0.10
18144                                                                                                  6.00
18145                                                                                                  2.10
18146                                                                                                  0.10
18147                                                                                           unspecified
18148                                                                                                 23.00
18149                                                                                                  2.68
18150                                                                                                  1.99
18151                                                                                                  6.00
18152                                                                                                150.00
18153                                                                                                500.00
18154                                                                                                  0.30
18155                                                                                                 48.00
18156                                                                                                100.00
18157                                                                                                 56.75
18158                                                                                                 34.05
18159                                                                                               6 drops
18160                                                                                                 23.00
18161                                                                                                136.00
18162                                                                                                 37.50
18163                                                                                               1000.00
18164                                                                                               6 drops
18165                                                                                          small amount
18166                                                                                                 23.00
18167                                                                                                136.00
18168                                                                                               1000.00
18169                                                                                                  2.00
18170                                                                                                200.00
18171                                                                                                 37.50
18172                                                                                                 20.00
18173                                                                                               1000.00
18174                                                                                                120.00
18175                                                                                                200.00
18176                                                                                                 20.00
18177                                                                                                  3.70
18178                                                                                                120.00
18179                                                                                                  2.90
18180                                                                                                 15.00
18181                                                                                                  9.00
18182                                                                                                136.00
18183                                                                                                 41.47
18184                                                                                                  3.00
18185                                                                                                201.60
18186                                                                                                 20.00
18187                                                                                                200.00
18188                                                                                 1 tablet/pill/capsule
18189                                                                                                100.00
18190                                                                                                272.00
18191                                                                                                100.00
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18194                                                                                                 10.00
18195                                                                                           unspecified
18196                                                                                                375.00
18197                                                                                                 50.00
18198                                                                                                250.00
18199                                                                                                  5, 2
18200                                                                                               1000.00
18201                                                                                                 16.00
18202                                                                          based on weight (51-100 lbs)
18203                                                                                                 16.00
18204                                                                                                 16.00
18205                                                                          based on weight (51-100 lbs)
18206                                                                                                 16.00
18207                                                                                                 16.00
18208                                                                                                100.00
18209                                                                                                 16.00
18210                                                                                                500.00
18211                                                                                                100.00
18212                                                                                                 50.00
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18219                                                                                                 10.00
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18223                                                                                                 60.00
18224                                                                                                 50.00
18225                                                                                                200.00
18226                                                                                                 75.00
18227                                                                                                  2.00
18228                                                                                                125.00
18229                                                                                               1620.00
18230                                                                                                 27.00
18231                                                                                                  9.80
18232                                                                                                  8.80
18233                                                                                                 22.10
18234                                                                                                  1.60
18235                                                                                                  1.60
18236                                                                                                  1.50
18237                                                                                                  2.00
18238                                                                                           unspecified
18239                                                                                               1620.00
18240                                                                                                 27.00
18241                                                                                                  4.95
18242                                                                                                  0.44
18243                                                                                                 36.08
18244                                                                                                 16.00
18245                                                                                                  0.08
18246                                                                                                  1.70
18247                                                                                                  1.70
18248                                                                                                  3.00
18249                                                                                                150 mg
18250                                                                                                300.00
18251                                                                                                powder
18252                                                                                                150 mg
18253                                                                                                 50.00
18254                                                                                                100.00
18255                                                                                               1620.00
18256                                                                                                 27.00
18257                                                                                                  1.00
18258                                                                                     0.44, 4.95, 36.08
18259                                                                                                 10.00
18260                                                                                              27, 1620
18261                                                                                                 80.00
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18265                                                                                                 80.00
18266                                                                                              27, 1620
18267                                                                                                 80.00
18268                                                                                                 16.00
18269                                                                                                 75.00
18270                                                                                                100.00
18271                                                                                                    iu
18272                                                                                                 80.00
18273                                                                                                 27.00
18274                                                                                                  1.00
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18278                                                                                                  1.00
18279                                                                                                  1.00
18280                                                                                                250.00
18281                                                                                                  1.00
18282                                                                                               1000.00
18283                                                                                                  1.00
18284                                                                                                50-100
18285                                                                                                  1.00
18286                                                                                                900.00
18287                                                                                                200.00
18288                                                                                                300.00
18289                                                                                                100.00
18290                                                                                                325.00
18291                                                                                                 50.00
18292                                                                                                500.00
18293                                                                                                 10.00
18294                                                                                                100.00
18295                                                                                                 60.00
18296                                                                                                  2.00
18297                                                                                                250.00
18298                                                                                                 50.00
18299                                                                                                 45.40
18300                                                                                                  1.00
18301                                                                                                  1.00
18302                                                                                                 50.00
18303                                                                                                 37.50
18304                                                                                                 50.00
18305                                                                                                500.00
18306                                                                                                 50.00
18307                                                                                                 12.50
18308                                                                                                 10.00
18309                                                                                                  1.00
18310                                                                                                  5.00
18311                                                                                               1000.00
18312                                                                                                750.00
18313                                                                                                  2.50
18314                                                                                                  1.00
18315                                                                                                 10.00
18316                                                                                                  1.00
18317                                                                                                200.00
18318                                                                                                  1.00
18319                                                                                                  1.00
18320                                                                                                  1.00
18321                                                                                                  1.00
18322                                                                                                  1.00
18323                                                                                          small amount
18324                                                                                                 20.00
18325                                                                                           unspecified
18326                                                                                           unspecified
18327                                                                                                 15.00
18328                                                                                                 50.00
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18331                                                                                                  7.00
18332                                                                                                250.00
18333                                                                                                720.00
18334                                                                                                500.00
18335                                                                                                  1.00
18336                                                                                                 20.00
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18346                                                                                                100.00
18347                                                                                                  3.75
18348                                                                                                300.00
18349                                                                                                272.00
18350                                                                                                500.00
18351                                                                                               1000.00
18352                                                                                                 64.80
18353                                                                                                 75.00
18354                                                                                                  3.75
18355                                                                                               2500.00
18356                                                                                                500.00
18357                                                                                                300.00
18358                                                                                                 75.00
18359                                                                                                  1.00
18360                                                                                               2500.00
18361                                                                                                 97.20
18362                                                                                                 30.00
18363                                                                                                150.00
18364                                                                                                300.00
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18367                                                                                                  1.00
18368                                                                                                150.00
18369                                                                                                500.00
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18372                                                                                                  1.50
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18375                                                                                                50-100
18376                                                                                                  7.50
18377                                                                                                 15.00
18378                                                                                               1500.00
18379                                                                                               2000.00
18380                                                                                                  7.50
18381                                                                                                 15.00
18382                                                                                                 40.00
18383                                                                                                  7.50
18384                                                                                                 50.00
18385                                                                                                500.00
18386                                                                                                 40.00
18387                                                                                                  7.50
18388                                                                                                 15.00
18389                                                                                                 50.00
18390                                                                                                272.00
18391                                                                                                272.00
18392                                                                                                500.00
18393                                                                                                  8.00
18394                                                                                               1000.00
18395                                                                                                  2.70
18396                                                                                                272.00
18397                                                                                                  5.00
18398                                                                                                272.00
18399                                                                                                136.00
18400                                                                                                 16.00
18401                                                                                                272.00
18402                                                                                                136.00
18403                                                                                                 16.00
18404                                                                                                 drops
18405                                                                                                 70.00
18406                                                                                                272.00
18407                                                                                                136.00
18408                                                                                                 70.00
18409                                                                                                 16.00
18410                                                                                                200.00
18411                                                                                                375.00
18412                                                                                                 50.00
18413                                                                                               1000.00
18414                                                                                                272.00
18415                                                                          based on weight (51-100 lbs)
18416                                                                                                 44-88
18417                                                                                                 70.00
18418                                                                                                272.00
18419                                                                                                900.00
18420                                                                                                 16.00
18421                                                                                               1000.00
18422                                                                                                 50.00
18423                                                                                                150.00
18424                                                                                                  0.10
18425                                                                                                  0.30
18426                                                                                                  8.00
18427                                                                                          small amount
18428                                                                                               1000.00
18429                                                                                                 16.00
18430                                                                                                 70.00
18431                                                                                                200.00
18432                                                                                               1000.00
18433                                                                                                 80.00
18434                                                                                                 16.00
18435                                                                                                500.00
18436                                                                                                  1.00
18437                                                                                                  5.00
18438                                                                                                 70.00
18439                                                                                                 16.00
18440                                                                                                  1.00
18441                                                                              2 tablets/pills/capsules
18442                                                                                                 50.00
18443                                                                                                500.00
18444                                                                                                  1.00
18445                                                                                                  1.00
18446                                                                                                  1.00
18447                                                                                                 50.00
18448                                                                                                 50.00
18449                                                                                                 25.00
18450                                                                                                 50.00
18451                                                                                                200.00
18452                                                                                                 20.00
18453                                                                                                  1.00
18454                                                                                                  1.00
18455                                                                                                200.00
18456                                                                                                 50.00
18457                                                                                                  1.00
18458                                                                                                  1.00
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18462                                                                                                400.00
18463                                                                                                500.00
18464                                                                                                500 mg
18465                                                                                                 50.00
18466                                                                                                1 drop
18467                                                                                               272 mcg
18468                                                                                                 60.00
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18473                                                                                                60-120
18474                                                                                                450.00
18475                                                                                                200.00
18476                                                                                                150.00
18477                                                                                                  1.00
18478                                                                                                750.00
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18481                                                                                                500.00
18482                                                                                               1620.00
18483                                                                                              27, 1610
18484                                                                                                 80.00
18485                                                                                                300.00
18486                                                                                                 50.00
18487                                                                                                500.00
18488                                                                                                 20.00
18489                                                                                       based on weight
18490                                                                                       based on weight
18491                                                                                                 50.00
18492                                                                                                 50.00
18493                                                                                                 20.00
18494                                                                                       based on weight
18495                                                                                       based on weight
18496                                                                                                 50.00
18497                                                                                                227.00
18498                                                                                                  4.70
18499                                                                                                 50.00
18500                                                                                       based on weight
18501                                                                                                 50.00
18502                                                                          based on weight (50-100 lbs)
18503                                                                                                 50.00
18504                                                                                                  1.00
18505                                                                                                130.00
18506                                                                                                100.00
18507                                                                                                 75.00
18508                                                                                                300.00
18509                                                                                                 75.00
18510                                                                                                300.00
18511                                                                                                 75.00
18512                                                                                               272 mcg
18513                                                                                                272.00
18514                                                                           based on weight (21-55 lbs)
18515                                                                                                100.00
18516                                                                                                250.00
18517                                                                                                272.00
18518                                                                                                200.00
18519                                                                                                 24-60
18520                                                                              based on weight (60 lbs)
18521                                                                                                113.00
18522                                                                                                500.00
18523                                                                                                 16.00
18524                                                                                                272.00
18525                                                                           based on weight (44-88 lbs)
18526                                                                                               1000.00
18527                                                                                               1000.00
18528                                                                                                  1.00
18529                                                                                                  1.00
18530                                                                                                  1.00
18531                                                                                                  1.00
18532                                                                                               1000.00
18533                                                                                               1000.00
18534                                                                                           unspecified
18535                                                                                                  2.00
18536                                                                                                  1.00
18537                                                                                                113.50
18538                                                                                                272.00
18539                                                                                                 45-88
18540                                                                                                 10.00
18541                                                                                                272.00
18542                                                                                                 45-88
18543                                                                                               6 drops
18544                                                                                                  4.00
18545                                                                                                 16.00
18546                                                                                                227.00
18547                                                                                                  3.00
18548                                                                                                200.00
18549                                                                                                 30.00
18550                                                                                                  1.00
18551                                                                                                  3.60
18552                                                                                                  3.60
18553                                                                                                400.00
18554                                                                                                  2.00
18555                                                                                                 70.00
18556                                                                                                  4.00
18557                                                                                                  3.20
18558                                                                                                  1.00
18559                                                                                                120.00
18560                                                                                                400.00
18561                                                                                                272.00
18562                                                                                                  1 ml
18563                                                                                                200.00
18564                                                                                                272.00
18565                                                                             based on weight (55+ lbs)
18566                                                                                                150.00
18567                                                                                                562.50
18568                                                                                                300.00
18569                                                                                                204.00
18570                                                                                                  1.00
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18573                                                                                                  1.00
18574                                                                                                  1.00
18575                                                                                                272.00
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18578                                                                                                250.00
18579                                                                                                 60.00
18580                                                                          based on weight (50-100 lbs)
18581                                                                                                  1.00
18582                                                                                                960.00
18583                                                                                                 68.00
18584                                                                                                500.00
18585                                                                                                375.00
18586                                                                                                 60.00
18587                                                                                                  2.00
18588                                                                                           unspecified
18589                                                                                                272.00
18590                                                                                                227.00
18591                                                                                                 spray
18592                                                                                                460.00
18593                                                                                                460.00
18594                                                                                                460.00
18595                                                                                           as directed
18596                                                                                                 23.00
18597                                                                                                136.00
18598                                                                                                 23.00
18599                                                                                                136.00
18600                                                                                                 23.00
18601                                                                                                136.00
18602                                                                                                500.00
18603                                                                                                100.00
18604                                                                                                 75.00
18605                                                                                                500.00
18606                                                                                                200.00
18607                                                                                                  1.00
18608                                                                                                500.00
18609                                                                                           unspecified
18610                                                                                                  1.00
18611                                                                                                 75.00
18612                                                                                           unspecified
18613                                                                                                  3.00
18614                                                                                                 40-60
18615                                                                                                 23.00
18616                                                                                                136.00
18617                                                                                                 23.00
18618                                                                                                136.00
18619                                                                                                300.00
18620                                                                                                 75.00
18621                                                                                           unspecified
18622                                                                                                 30.00
18623                                                                                                200.00
18624                                                                                                200.00
18625                                                                                                 70.00
18626                                                                                                  5.00
18627                                                                                                 75.00
18628                                                                                                200.00
18629                                                                                                  4.00
18630                                                                                                  2.00
18631                                                                                                 15.00
18632                                                                                                 20.00
18633                                                                                                 15.00
18634                                                                                                125.00
18635                                                                                                  1.00
18636                                                                                                 50.00
18637                                                                                                750.00
18638                                                                                                500.00
18639                                                                                                  6.00
18640                                                                                                 75.00
18641                                                                                                750.00
18642                                                                                                750.00
18643                                                                                                 75.00
18644                                                                                               1000.00
18645                                                                                                 16.00
18646                                                                                                 16.00
18647                                                                                                272.00
18648                                                                                                  1.00
18649                                                                             based on weight (25+ lbs)
18650                                                                                                 75.00
18651                                                                                                 50.00
18652                                                                                                 16.00
18653                                                                                               1000.00
18654                                                                                                 90.00
18655                                                                                               1000.00
18656                                                                                                  8.00
18657                                                                                                 90.00
18658                                                                                                 16.00
18659                                                                                               1000.00
18660                                                                                                 16.00
18661                                                                                                136.00
18662                                                                                                272.00
18663                                                                                                 16.00
18664                                                                                               1000.00
18665                                                                                                150.00
18666                                                                                                  4.00
18667                                                                                                 16.00
18668                                                                                                 16.00
18669                                                                                                  1.00
18670                                                                                               1000.00
18671                                                                                                 16.00
18672                                                                                                150.00
18673                                                                                                  8.00
18674                                                                                                  1.00
18675                                                                                                 75.00
18676                                                                                                 30.00
18677                                                                                                300.00
18678                                                                                               1000.00
18679                                                                                                500.00
18680                                                                                                 16.00
18681                                                                                                 75.00
18682                                                                                                 20.00
18683                                                                                                560.00
18684                                                                                                  9.30
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18691                                                                                                200.00
18692                                                                                                 65.00
18693                                                                                                 60.00
18694                                                                                             11.5, 230
18695                                                                                                  2.68
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18698                                                                                                  1.25
18699                                                                                                 15.00
18700                                                                                                 14.00
18701                                                                                                500.00
18702                                                                                                500.00
18703                                                                          based on weight (51-100 lbs)
18704                                                                                                 24-60
18705                                                                                                 26-50
18706                                                                                                272.00
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18708                                                                                                 68.00
18709                                                                                                 24.00
18710                                                                                                500.00
18711                                                                                                375.00
18712                                                                                                136.00
18713                                                                                                100.00
18714                                                                                                500.00
18715                                                                                                375.00
18716                                                                                           unspecified
18717                                                                                                250.00
18718                                                                                           unspecified
18719                                                                                                 24.00
18720                                                                                                 10.00
18721                                                                                                100.00
18722                                                                                                100.00
18723                                                                                                 24.00
18724                                                                                                500.00
18725                                                                                                 24.00
18726                                                                                                100.00
18727                                                                                                  1.00
18728                                                                                                  1.00
18729                                                                                           unspecified
18730                                                                                                 24.00
18731                                                                                                100.00
18732                                                                                                  1.00
18733                                                                                                  1.00
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18737                                                                                                  4.50
18738                                                                                                100.00
18739                                                                                                250.00
18740                                                                                                  2.00
18741                                                                                                 50.00
18742                                                                                                100.00
18743                                                                           based on weight (26-50 lbs)
18744                                                                                                  1.00
18745                                                                                                  1.00
18746                                                                                                227.00
18747                                                                                                 68.00
18748                                                                                                  1.00
18749                                                                                                272.00
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18751                                                                                                136.00
18752                                                                                                100.00
18753                                                                                                 75 mg
18754                                                                                                500.00
18755                                                                                                150.00
18756                                                                                                 75.00
18757                                                                                                500.00
18758                                                                                                 40.00
18759                                                                                                100.00
18760                                                                                                 16.00
18761                                                                                                150.00
18762                                                                                                300.00
18763                                                                                                112.50
18764                                                                                                 16.00
18765                                                                                                200.00
18766                                                                                                300.00
18767                                                                                                  2.00
18768                                                                                                810.00
18769                                                                                                 13.50
18770                                                                                                250.00
18771                                                                                               1000.00
18772                                                                                                500.00
18773                                                                                                  1.00
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18776                                                                                                150.00
18777                                                                                                  5.00
18778                                                                                                  1.00
18779                                                                                                 20.00
18780                                                                                                 50.00
18781                                                                                                 10.00
18782                                                                                                 20.00
18783                                                                                                 30.00
18784                                                                                                 75.00
18785                                                                                                 20.00
18786                                                                                                 25.00
18787                                                                                                 20.00
18788                                                                                                  1.00
18789                                                                                                 25.00
18790                                                                                                 10.00
18791                                                                                                 30.00
18792                                                                                                 50.00
18793                                                                                                 75.00
18794                                                                                                 20.00
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18801                                                                                                272.00
18802                                                                                                  4.00
18803                                                                                                  1.00
18804                                                                                                272.00
18805                                                                                                227.00
18806                                                                                                 23.00
18807                                                                                                272.00
18808                                                                                                300.00
18809                                                                                                500.00
18810                                                                                                 60.00
18811                                                                                                  1.00
18812                                                                                                 60.00
18813                                                                                                 50.00
18814                                                                                                113.50
18815                                                                                                113.50
18816                                                                                                 37.50
18817                                                                                                 50.00
18818                                                                                                200.00
18819                                                                                                 83.30
18820                                                                                          small amount
18821                                                                                               5 drops
18822                                                                                                 50.00
18823                                                                                                 75.00
18824                                                                                                500.00
18825                                                                                                500.00
18826                                                                                                  1.00
18827                                                                                                 16.00
18828                                                                                                  3.20
18829                                                                                           unspecified
18830                                                                                                  0.40
18831                                                                                                100.00
18832                                                                                                  0.40
18833                                                                                                200.00
18834                                                                                                 16.00
18835                                                                                                 75.00
18836                                                                                               1620.00
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18840                                                                                                  3.60
18841                                                                                                500.00
18842                                                                                                  1.00
18843                                                                                                200.00
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18846                                                                                                 44-88
18847                                                                                       based on weight
18848                                                                                                 16.00
18849                                                                                                 10.00
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18855                                                                                                50-100
18856                                                                                                 44-88
18857                                                                                                 16.00
18858                                                                                                 75.00
18859                                                                                                750.00
18860                                                                                                500.00
18861                                                                                                  5.00
18862                                                                                                 16.00
18863                                                                                                 75.00
18864                                                                                                  1.00
18865                                                                                                  1.00
18866                                                                                                500.00
18867                                                                                                 16.00
18868                                                                                                 80.00
18869                                                                                                  1.00
18870                                                                                                  2.00
18871                                                                                                170.00
18872                                                                                                300.00
18873                                                                                                 75.00
18874                                                                                               1620.00
18875                                                                                                  1.00
18876                                                                                                  1.00
18877                                                                                                  1.00
18878                                                                                                  1.00
18879                                                                                                  1.00
18880                                                                                                  1.00
18881                                                                                                  1.00
18882                                                                                           application
18883                                                                                                500.00
18884                                                                                                  3.00
18885                                                                                                300.00
18886                                                                                                272.00
18887                                                                                                136.00
18888                                                                                                  0.75
18889                                                                                                  1.60
18890                                                                                                  0.70
18891                                                                                                  1.30
18892                                                                                                150.00
18893                                                                                                  1.00
18894                                                                                                272.00
18895                                                                                                136.00
18896                                                                                                  7.00
18897                                                                                                  2.00
18898                                                                                                  1.00
18899                                                                                                  2.00
18900                                                                                                900.00
18901                                                                                               1500.00
18902                                                                                                272.00
18903                                                                                                136.00
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18906                                                                                                500.00
18907                                                                                                300.00
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18910                                                                                                272.00
18911                                                                                                300.00
18912                                                                                                 75.00
18913                                                                                                  4.00
18914                                                                                                272.00
18915                                                                                                272.00
18916                                                                                                136.00
18917                                                                                                272.00
18918                                                                                                136.00
18919                                                                                                collar
18920                                                                                                272.00
18921                                                                             based on weight (18+ lbs)
18922                                                                                                  2.00
18923                                                                                               1000.00
18924                                                                                           unspecified
18925                                                                                                125.00
18926                                                                                                750.00
18927                                                                                                100.00
18928                                                                                                125.00
18929                                                                                                 15.00
18930                                                                                                272.00
18931                                                                                                 45-88
18932                                                                                                55-100
18933                                                                                           unspecified
18934                                                                                                55-100
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18938                                                                                                500.00
18939                                                                                                272.00
18940                                                                                                272.00
18941                                                                                                200.00
18942                                                                                                 60.00
18943                                                                                                600.00
18944                                                                                                 60.00
18945                                                                                                204.00
18946                                                                                                 15.00
18947                                                                                                 60.00
18948                                                                                                  2.00
18949                                                                                                750.00
18950                                                                                                240.00
18951                                                                                                272.00
18952                                                                                                227.00
18953                                                                                                  8.80
18954                                                                                                 44.00
18955                                                                                               1000.00
18956                                                                                                 16.00
18957                                                                                                200.00
18958                                                                                                  8.00
18959                                                                                                136.00
18960                                                                                                272.00
18961                                                                              2 tablets/pills/capsules
18962                                                                                                272.00
18963                                                                                                136.00
18964                                                                                           unspecified
18965                                                                                                  8.00
18966                                                                                                  7.50
18967                                                                                                272.00
18968                                                                                                136.00
18969                                                                                                  7.50
18970                                                                                 1 tablet/pill/capsule
18971                                                                                                  1.00
18972                                                                                                272.00
18973                                                                                                 68.00
18974                                                                                                  7.50
18975                                                                                                272.00
18976                                                                                                136.00
18977                                                                                                  7.50
18978                                                                                                200.00
18979                                                                                                  7.50
18980                                                                                                272.00
18981                                                                                                200.00
18982                                                                                                272.00
18983                                                                                                500.00
18984                                                                                                200.00
18985                                                                                                170.00
18986                                                                                                500.00
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18990                                                                                                272.00
18991                                                                          based on weight (51-100 lbs)
18992                                                                                                325.00
18993                                                                                              2 scoops
18994                                                                                                200.00
18995                                                                                                  3.00
18996                                                                                                200.00
18997                                                                                           unspecified
18998                                                                                           unspecified
18999                                                                                                  1.00
19000                                                                                                 16.00
19001                                                                                                150.00
19002                                                                                                200.00
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19007                                                                                                  3.00
19008                                                                                           unspecified
19009                                                                                           unspecified
19010                                                                                                  1.00
19011                                                                                                  1.00
19012                                                                                                  1.00
19013                                                                                                  1.00
19014                                                                                                500.00
19015                                                                                           unspecified
19016                                                                                                  1.00
19017                                                                                                  1.00
19018                                                                                                200.00
19019                                                                                           unspecified
19020                                                                                                 10.00
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19024                                                                                                  1.00
19025                                                                                 1 tablet/pill/capsule
19026                                                                                                 37.50
19027                                                                                                300.00
19028                                                                                                 25.00
19029                                                                                                300.00
19030                                                                                                 20.00
19031                                                                                                125.00
19032                                                                                                  9.30
19033                                                                                                 23.00
19034                                                                                                460.00
19035                                                                                                228.00
19036                                                                                                272.00
19037                                                                                                 68.00
19038                                                                                                272.00
19039                                                                                                136.00
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19042                                                                                                272.00
19043                                                                                                 45-88
19044                                                                                                625.00
19045                                                                                                  1.00
19046                                                                                                480.00
19047                                                                                                  1.00
19048                                                                                                500.00
19049                                                                                                  0.01
19050                                                                                                272.00
19051                                                                                                 45-88
19052                                                                                                200.00
19053                                                                                                 20.00
19054                                                                                                272.00
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19058                                                                                                  8.00
19059                                                                                                  0.40
19060                                                                                                  0.40
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19063                                                                                                500.00
19064                                                                                                300.00
19065                                                                                                 50.00
19066                                                                                                 50.00
19067                                                                                                 60.00
19068                                                                              based on weight (50 lbs)
19069                                                                                                  0.20
19070                                                                             based on weight (50+ lbs)
19071                                                                                                227.00
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19074                                                                                                500.00
19075                                                                                                136.00
19076                                                                                                100.00
19077                                                                                                 45-88
19078                                                                          based on weight (51-100 lbs)
19079                                                                                                  2.50
19080                                                                                                  2.50
19081                                                                                                  2.50
19082                                                                           based on weight (45-88 lbs)
19083                                                                                                272.00
19084                                                                                                100.00
19085                                                                                                272.00
19086                                                                                                  5.30
19087                                                                                                  0.55
19088                                                                                                272.00
19089                                                                                                 16.08
19090                                                                                                  6.00
19091                                                                                                  0.50
19092                                                                                                100.00
19093                                                                                                750.00
19094                                                                                                  0.43
19095                                                                                                  5.00
19096                                                                                                190.00
19097                                                                                                 19.00
19098                                                                                                  0.45
19099                                                                                                 95.00
19100                                                                                                100.00
19101                                                                                                  8.00
19102                                                                                               55.1-88
19103                                                                                                  0.10
19104                                                                                                600.00
19105                                                                                                  1.00
19106                                                                                                500.00
19107                                                                                                  3.00
19108                                                                                                 15.00
19109                                                                                                  4.00
19110                                                                                                  0.15
19111                                                                                                  4.00
19112                                                                                                375.00
19113                                                                                                136.00
19114                                                                                                  0.16
19115                                                                                                 10.00
19116                                                                                                  1.00
19117                                                                                                 20.00
19118                                                                                                 20.00
19119                                                                                                 15.00
19120                                                                                                 10.00
19121                                                                                                900.00
19122                                                                             based on weight (55+ lbs)
19123                                                                                                  1.30
19124                                                                                                  3.20
19125                                                                                                  2.30
19126                                                                                                  1.60
19127                                                                                                  1.60
19128                                                                                                  0.30
19129                                                                                                  0.10
19130                                                                           based on weight (44-88 lbs)
19131                                                                                                 15.00
19132                                                                                                 20.00
19133                                                                                                600.00
19134                                                                                                  0.13
19135                                                                                                 15.00
19136                                                                                                 20.00
19137                                                                                                  4.80
19138                                                                                                 15.00
19139                                                                                                 20.00
19140                                                                                                  1.00
19141                                                                                                  1.50
19142                                                                                                  1.00
19143                                                                                                 15.00
19144                                                                                                 20.00
19145                                                                                                  1.50
19146                                                                                                  1.00
19147                                                                                                 20.00
19148                                                                                                 10.00
19149                                                                                                 15.00
19150                                                                                                 20.00
19151                                                                                                  1.00
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19155                                                                                                  1.00
19156                                                                                                  1.00
19157                                                                                                  1.00
19158                                                                                                  1.00
19159                                                                                           unspecified
19160                                                                                                 10.00
19161                                                                                                113.50
19162                                                                                                  6.00
19163                                                                                                 10.00
19164                                                                                                  1.00
19165                                                                          based on weight (51-100 lbs)
19166                                                                                                  1.00
19167                                                                                                  1.00
19168                                                                                                 20.00
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19171                                                                                                 16.00
19172                                                                                                 16.00
19173                                                                                                100.00
19174                                                                                                100.00
19175                                                                                                300.00
19176                                                                                                 34.00
19177                                                                                                  7.00
19178                                                                                                  0.10
19179                                                                                                  8.00
19180                                                                                                200.00
19181                                                                                                  5.00
19182                                                                                                  1.00
19183                                                                                                collar
19184                                                                                           unspecified
19185                                                                                                170.00
19186                                                                                               1000.00
19187                                                                                                  8.00
19188                                                                                                  8.00
19189                                                                                                 75.00
19190                                                                                                100.00
19191                                                                                                750.00
19192                                                                                                300.00
19193                                                                                                  1.00
19194                                                                                                 62.50
19195                                                                                                 30.00
19196                                                                                                200.00
19197                                                                                                  3.00
19198                                                                                                 30.00
19199                                                                                                 75.00
19200                                                                                                 60.00
19201                                                                                                 30.00
19202                                                                                                 50.00
19203                                                                                                124.00
19204                                                                                                  5.00
19205                                                                                                375.00
19206                                                                                                  5.00
19207                                                                                                  6.00
19208                                                                                                  4.00
19209                                                                                                150.00
19210                                                                                                 50.00
19211                                                                                                 50.00
19212                                                                                                125.00
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19218                                                                                                  2.00
19219                                                                                                150.00
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19225                                                                                                500.00
19226                                                                                                  1.00
19227                                                                                                375.00
19228                                                                                                  1.00
19229                                                                                                 50.00
19230                                                                                                150.00
19231                                                                                                  1.00
19232                                                                                                 60.00
19233                                                                                                 20.00
19234                                                                                                  1.00
19235                                                                                                500.00
19236                                                                                               1000.00
19237                                                                                                 10.00
19238                                                                                                 50.00
19239                                                                                               1000.00
19240                                                                                                 50.00
19241                                                                                                300 mg
19242                                                                                                 75 mg
19243                                                                                                272.00
19244                                                                                                227.00
19245                                                                                                  1.00
19246                                                                                           as directed
19247                                                                                                500.00
19248                                                                                                  0.20
19249                                                                                                  1.00
19250                                                                                                250.00
19251                                                                                                125.00
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19260                                                                                                  3.25
19261                                                                                                480.00
19262                                                                                                250.00
19263                                                                                                 60.00
19264                                                                                                  1.00
19265                                                                                                  3.25
19266                                                                                                270.00
19267                                                                                                150.00
19268                                                                                                  3.25
19269                                                                                                125.00
19270                                                                                                  6.00
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19274                                                                                               1000.00
19275                                                                                                200.00
19276                                                                                                1 tube
19277                                                                                                200.00
19278                                                                          based on weight (51-100 lbs)
19279                                                                                               1000.00
19280                                                                                                 10.00
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19283                                                                                                500.00
19284                                                                                                500.00
19285                                                                                                 16.00
19286                                                                                                 16.00
19287                                                                                                 10.00
19288                                                                                           unspecified
19289                                                                                                 50.00
19290                                                                                                 10.00
19291                                                                                                500.00
19292                                                                                                525.00
19293                                                                                                136.00
19294                                                                                                 50.00
19295                                                                                                136.00
19296                                                                                                 16.00
19297                                                                                                 50.00
19298                                                                                           unspecified
19299                                                                                           unspecified
19300                                                                                                 16.00
19301                                                                                                 50.00
19302                                                                                                272.00
19303                                                                                                  0.09
19304                                                                                                 15.00
19305                                                                                                272.00
19306                                                                                                  0.09
19307                                                                                               1000.00
19308                                                                                                  5.00
19309                                                                                                100.00
19310                                                                                                  1.70
19311                                                                                                 75.00
19312                                                                                                 23.00
19313                                                                                                  2.68
19314                                                                                                 23.00
19315                                                                                                 44-88
19316                                                                                                  5.00
19317                                                                                                 23.00
19318                                                                           based on weight (44-88 lbs)
19319                                                                                                  1.00
19320                                                                                                 16.00
19321                                                                                                  1.00
19322                                                                                                100.00
19323                                                                                                  1.00
19324                                                                                                100.00
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19328                                                                                                125.00
19329                                                                                                480.00
19330                                                                                                250.00
19331                                                                                                500 mg
19332                                                                                                500.00
19333                                                                                                 23.00
19334                                                                                                200.00
19335                                                                                                200 mg
19336                                                                                                100 mg
19337                                                                                                375.00
19338                                                                                           unspecified
19339                                                                                                250.00
19340                                                                                                 50.00
19341                                                                                                  1.00
19342                                                                                                102.00
19343                                                                                                750.00
19344                                                                                                  1.00
19345                                                                                                  1.00
19346                                                                                                  1.00
19347                                                                                                  1.00
19348                                                                                                100.00
19349                                                                                                500.00
19350                                                                                       0.25 inch strip
19351                                                                                                 50.00
19352                                                                                                 50.00
19353                                                                                           unspecified
19354                                                                                           unspecified
19355                                                                                                 50.00
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19358                                                                                                 16.00
19359                                                                                                272.00
19360                                                                                                 16.00
19361                                                                                                 16.00
19362                                                                                                 16.00
19363                                                                                                500.00
19364                                                                                                 16.00
19365                                                                                                272.00
19366                                                                                                272.00
19367                                                                                                272.00
19368                                                                                                272.00
19369                                                                                                 68.00
19370                                                                                                100.00
19371                                                                                                900.00
19372                                                                                                 50.00
19373                                                                          based on weight (51-100 lbs)
19374                                                                                                 44-88
19375                                                                                                  1.00
19376                                                                                                272.00
19377                                                                                                 80.00
19378                                                                                                100.00
19379                                                                                               2655.00
19380                                                                                                272.00
19381                                                                                                 80.00
19382                                                                                                100.00
19383                                                                                                375.00
19384                                                                                                  1.00
19385                                                                                                100.00
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19388                                                                                                375.00
19389                                                                                                 50.00
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19392                                                                                                  8.00
19393                                                                                                375.00
19394                                                                                                 50.00
19395                                                                                                  4.00
19396                                                                                                750.00
19397                                                                                                  0.25
19398                                                                                                 10.00
19399                                                                                                 23.00
19400                                                                                                 25.00
19401                                                                                                272.00
19402                                                                                                136.00
19403                                                                                                102.00
19404                                                                                                375.00
19405                                                                                                 23.00
19406                                                                                                500.00
19407                                                                                                 23.00
19408                                                                                                 23.00
19409                                                                                                 23.00
19410                                                                                                480.00
19411                                                                                                200.00
19412                                                                                                 60.00
19413                                                                                                200.00
19414                                                                                                 60.00
19415                                                                                                272.00
19416                                                                                                272.00
19417                                                                                                  0.30
19418                                                                                                  0.60
19419                                                                                                  8.00
19420                                                                                                  3.70
19421                                                                                                300.00
19422                                                                                                  4.02
19423                                                                          based on weight (51-100 lbs)
19424                                                                                                 44-88
19425                                                                                                  2.68
19426                                                                                                  1.00
19427                                                                                       based on weight
19428                                                                                                150.00
19429                                                                                                 20.00
19430                                                                                                250.00
19431                                                                                                272.00
19432                                                                                                272.00
19433                                                                                                272.00
19434                                                                                               1000.00
19435                                                                                                500.00
19436                                                                                                 50.00
19437                                                                                                  8.00
19438                                                                                                 15.00
19439                                                                                                  5.00
19440                                                                                                 10.00
19441                                                                                                375.00
19442                                                                                                 60.00
19443                                                                                                 25.00
19444                                                                                                 50.00
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19455                                                                                                 20.00
19456                                                                                                 50.00
19457                                                                          based on weight (51-100 lbs)
19458                                                                                                 15.00
19459                                                                                                500.00
19460                                                                                                200.00
19461                                                                                                 44-88
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19466                                                                                                 80.00
19467                                                                                                100.00
19468                                                                                                 37.50
19469                                                                                                136.00
19470                                                                                                  8.00
19471                                                                                                500.00
19472                                                                                                 70.00
19473                                                                                                 50.00
19474                                                                                                100.00
19475                                                                                                 50.00
19476                                                                              based on weight (35 lbs)
19477                                                                                                 50.00
19478                                                                                                200.00
19479                                                                                                500.00
19480                                                                                                250.00
19481                                                                                                500.00
19482                                                                          based on weight (51-100 lbs)
19483                                                                                                  8.00
19484                                                                                                  8.00
19485                                                                                                300.00
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19488                                                                                                 25.00
19489                                                                                                 10.00
19490                                                                                                  2.00
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19494                                                                                                  0.02
19495                                                                             based on weight (50+ lbs)
19496                                                                                                 70.00
19497                                                                                                272.00
19498                                                                                                136.00
19499                                                                                                 15.00
19500                                                                                               0.57 mg
19501                                                                                                  1.00
19502                                                                                                 70.00
19503                                                                                                272.00
19504                                                                                                136.00
19505                                                                                                 10.00
19506                                                                                                 16.00
19507                                                                                                  2.00
19508                                                                                                272.00
19509                                                                                                136.00
19510                                                                                                 15.00
19511                                                                                                  7.50
19512                                                                                                 16.00
19513                                                                                                 70.00
19514                                                                                                 16.60
19515                                                                                                  3.00
19516                                                                                                  1.00
19517                                                                                                  1.00
19518                                                                                                 70.00
19519                                                                                                 80.00
19520                                                                                                 15.00
19521                                                                                                  7.50
19522                                                                                                  3.00
19523                                                                                                 15.00
19524                                                                                                  2.00
19525                                                                                                 55.00
19526                                                                                                 30.00
19527                                                                                                204.00
19528                                                                                                600.00
19529                                                                                                 15.00
19530                                                                                                  7.50
19531                                                                                                 35.00
19532                                                                                                325.00
19533                                                                                                 20.00
19534                                                                                                  3.00
19535                                                                                                 50.00
19536                                                                                                 20.00
19537                                                                                       based on weight
19538                                                                                                 10.00
19539                                                                                                  5.00
19540                                                                                                500.00
19541                                                                                                  1.00
19542                                                                                                  1.00
19543                                                                                                  1.00
19544                                                                                                  1.00
19545                                                                                                 16.00
19546                                                                                                500.00
19547                                                                                                  7.00
19548                                                                                                  1.00
19549                                                                                                 10.00
19550                                                                                                  1.00
19551                                                                                                  1.00
19552                                                                                                 10.00
19553                                                                                                200.00
19554                                                                                                 10.00
19555                                                                                                500.00
19556                                                                                                250.00
19557                                                                                                 10.00
19558                                                                                                250.00
19559                                                                                                500.00
19560                                                                                                 20.00
19561                                                                                               1000.00
19562                                                                                                  1.00
19563                                                                                                250.00
19564                                                                                                 20.00
19565                                                                                                  1.00
19566                                                                                                500.00
19567                                                                                                150 mg
19568                                                                                                1 pump
19569                                                                                                  2.20
19570                                                                                                 48.00
19571                                                                                                250.00
19572                                                                                                250.00
19573                                                                                                 88.00
19574                                                                                                750.00
19575                                                                                                500.00
19576                                                                                                500.00
19577                                                                                                 10.00
19578                                                                                                150.00
19579                                                                                                 48.00
19580                                                                                                250.00
19581                                                                                                 88.00
19582                                                                                                  1.00
19583                                                                                                500.00
19584                                                                                                 10.00
19585                                                                                                200.00
19586                                                                                                 20.00
19587                                                                                                200.00
19588                                                                                                 60.00
19589                                                                                                 25.00
19590                                                                                                 23.00
19591                                                                                                  3.60
19592                                                                                                  1.00
19593                                                                                                200.00
19594                                                                                                200.00
19595                                                                                                 10.00
19596                                                                          based on weight (51-100 lbs)
19597                                                                                                 56-95
19598                                                                                                200.00
19599                                                                                                200.00
19600                                                                                                 10.00
19601                                                                                                  1.00
19602                                                                                                  3.00
19603                                                                           based on weight (40-60 lbs)
19604                                                                                                50-100
19605                                                                                                 50.00
19606                                                                                                 10.00
19607                                                                                                 10.00
19608                                                                                                 75.00
19609                                                                                                 10.00
19610                                                                                                272.00
19611                                                                                                272.00
19612                                                                                                  2.68
19613                                                                                                272.00
19614                                                                                                 50.00
19615                                                                                                  8.00
19616                                                                                                272.00
19617                                                                                       2.68 ml of 9.8%
19618                                                                                                 50-75
19619                                                                                                200.00
19620                                                                                                 16.00
19621                                                                                                272.00
19622                                                                                                  2.68
19623                                                                                                 16.00
19624                                                                                                272.00
19625                                                                                                 16.00
19626                                                                                                272.00
19627                                                                                                  2.68
19628                                                                                                 16.00
19629                                                                                                200.00
19630                                                                                                 16.00
19631                                                                                                200.00
19632                                                                                                 16.00
19633                                                                                                 16.00
19634                                                                                                 75.00
19635                                                                                                  2.00
19636                                                                                                 16.00
19637                                                                                                 15.00
19638                                                                                                200.00
19639                                                                                                 90.00
19640                                                                                                 75.00
19641                                                                                           unspecified
19642                                                                                                500.00
19643                                                                                                  1.20
19644                                                                                                250.00
19645                                                                                                250.00
19646                                                                                                  1.00
19647                                                                                                 23.00
19648                                                                                                460.00
19649                                                                                                136.00
19650                                                                                                500.00
19651                                                                                                1 drop
19652                                                                                                 23.00
19653                                                                                                136.00
19654                                                                                                 70.00
19655                                                                                                 60.00
19656                                                                                                 30.00
19657                                                                                                500.00
19658                                                                                                500.00
19659                                                                                                  1.00
19660                                                                                                 23.00
19661                                                                                                136.00
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19664                                                                                                500.00
19665                                                                                                 40.00
19666                                                                                                250.00
19667                                                                                                 23.00
19668                                                                                                 80.00
19669                                                                                                50-100
19670                                                                                                 80.00
19671                                                                                                 16.00
19672                                                                                                200.00
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19675                                                                                                250.00
19676                                                                                                200.00
19677                                                                                                  3.50
19678                                                                                                 75.00
19679                                                                                                250.00
19680                                                                                                300.00
19681                                                                                                 75.00
19682                                                                                                 80.00
19683                                                                                                460.00
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19687                                                                                                 37.50
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19691                                                                                                 23.00
19692                                                                                                 50.00
19693                                                                                                 23.00
19694                                                                                                460.00
19695                                                                                                 23.00
19696                                                                                                 23.00
19697                                                                                                 23.00
19698                                                                                                 23.00
19699                                                                                                 16.00
19700                                                                                                 23.00
19701                                                                                                 16.00
19702                                                                                                 23.00
19703                                                                                                 16.00
19704                                                                                                272.00
19705                                                                                                227.00
19706                                                                                                  4.00
19707                                                                                                136.00
19708                                                                                               272 mcg
19709                                                                                                227.00
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19719                                                                                                  1.00
19720                                                                                                150.00
19721                                                                                                 50.00
19722                                                                                           unspecified
19723                                                                                                136.00
19724                                                                                                  1.00
19725                                                                                                250.00
19726                                                                                                500.00
19727                                                                                                 50.00
19728                                                                                                  2.00
19729                                                                                                  1.00
19730                                                                                                  5.00
19731                                                                                                136.00
19732                                                                                                 50.00
19733                                                                                                 50.00
19734                                                                                                500.00
19735                                                                                          small amount
19736                                                                                                 16.00
19737                                                                                          small amount
19738                                                                                                 16.00
19739                                                                                                 16.00
19740                                                                                                 11.50
19741                                                                          based on weight (51-100 lbs)
19742                                                                                                100.00
19743                                                                                                 75.00
19744                                                                                                200.00
19745                                                                                                 23.00
19746                                                                                                  2.68
19747                                                                                                 10.00
19748                                                                                                 50.00
19749                                                                                               1000.00
19750                                                                                                 23.00
19751                                                                                                200.00
19752                                                                                                 16.00
19753                                                                                                  1.00
19754                                                                                               23, 228
19755                                                                                               1000.00
19756                                                                                                 10.00
19757                                                                                                 75.00
19758                                                                                                200.00
19759                                                                                                 10.00
19760                                                                                                 60.00
19761                                                                                                 10.00
19762                                                                                                 20.00
19763                                                                                                 20.00
19764                                                                                                200.00
19765                                                                                                200.00
19766                                                                                                  3.00
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19769                                                                                                810.00
19770                                                                                                200.00
19771                                                                                             13.5, 810
19772                                                                                                125.00
19773                                                                                                200.00
19774                                                                                                810.00
19775                                                                                                250.00
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19779                                                                                                  6.00
19780                                                                                                  1.00
19781                                                                                                  1.00
19782                                                                                                  2.00
19783                                                                                                810.00
19784                                                                                                 16.00
19785                                                                                                150.00
19786                                                                                                  4.00
19787                                                                                                200.00
19788                                                                                           unspecified
19789                                                                                                  2.80
19790                                                                                           unspecified
19791                                                                                                 80.00
19792                                                                                           unspecified
19793                                                                                                  1.00
19794                                                                                                 23.00
19795                                                                                               1000.00
19796                                                                                                 80.00
19797                                                                                                600.00
19798                                                                                                 80.00
19799                                                                                                600.00
19800                                                                                                50-100
19801                                                                           based on weight (44-88 lbs)
19802                                                                                                  1.00
19803                                                                          based on weight (51-100 lbs)
19804                                                                                                  1.00
19805                                                                                                  1.00
19806                                                                                                  1.00
19807                                                                                                  1.00
19808                                                                                                 70.00
19809                                                                                                  1.00
19810                                                                                                  3.00
19811                                                                                                200.00
19812                                                                                                  1.00
19813                                                                                                  1.00
19814                                                                                                200.00
19815                                                                                                 10.00
19816                                                                                                  1.00
19817                                                                                                  1.00
19818                                                                                                  0.10
19819                                                                                                 16.00
19820                                                                                                 23.00
19821                                                                                                  1.00
19822                                                                                                 75.00
19823                                                                                          small amount
19824                                                                                                200.00
19825                                                                                                  1.00
19826                                                                                                 23.00
19827                                                                                                 80.00
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19830                                                                                                 80.00
19831                                                                                                200.00
19832                                                                                                251.00
19833                                                                                                  4.70
19834                                                                                                 30.00
19835                                                                                                200.00
19836                                                                                                120.00
19837                                                                                                 15.00
19838                                                                                           unspecified
19839                                                                                                 60.00
19840                                                                                                 16.00
19841                                                                                                 15.00
19842                                                                                                 60.00
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19846                                                                                                  1.00
19847                                                                                                  1.00
19848                                                                                                600.00
19849                                                                                                 40.00
19850                                                                                                 60.00
19851                                                                          based on weight (60-100 lbs)
19852                                                                                                  6.00
19853                                                                                                50-100
19854                                                                                                89-132
19855                                                                                                500.00
19856                                                                        based on weight (50.1-100 lbs)
19857                                                                                                89-132
19858                                                                                                  9.80
19859                                                                                                  8.00
19860                                                                                               1 mg/lb
19861                                                                                                  8.00
19862                                                                                                  2.68
19863                                                                                                 23.00
19864                                                                                                960.00
19865                                                                                                125.00
19866                                                                                              2 sprays
19867                                                                                                 23.00
19868                                                                                                  8.00
19869                                                                                                136.00
19870                                                                                                 23.00
19871                                                                                                228.00
19872                                                                                                  8.00
19873                                                                                                 23.00
19874                                                                                                136.00
19875                                                                                                  8.00
19876                                                                                           unspecified
19877                                                                                               1000.00
19878                                                                                                480.00
19879                                                                                                  8.00
19880                                                                                                204.00
19881                                                                                           unspecified
19882                                                                                                100.00
19883                                                                                                300.00
19884                                                                                                  1.00
19885                                                                                                  8.00
19886                                                                                                  8.00
19887                                                                                                  1.00
19888                                                                          based on weight (50-100 lbs)
19889                                                                                                500.00
19890                                                                                                300.00
19891                                                                                                  9.30
19892                                                                                                 62.50
19893                                                                                                  4.50
19894                                                                                                 23.00
19895                                                                                                460.00
19896                                                                                                228.00
19897                                                                                                150.00
19898                                                                                                200.00
19899                                                                                                 15.00
19900                                                                                                  6.00
19901                                                                                                136.00
19902                                                                                                272.00
19903                                                                                                136.00
19904                                                                                                272.00
19905                                                                                                136.00
19906                                                                                                 16.00
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19908                                                                                                200.00
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19910                                                                                                200.00
19911                                                                                       based on weight
19912                                                                                           unspecified
19913                                                                                                  4.00
19914                                                                                           unspecified
19915                                                                                                  0.40
19916                                                                                                  0.50
19917                                                                                           application
19918                                                                                                  0.40
19919                                                                                                  0.50
19920                                                                                                  0.50
19921                                                                                                  0.50
19922                                                                                                  0.50
19923                                                                                                  2.00
19924                                                                                                300.00
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19929                                                                                                  0.50
19930                                                                                             13.5, 810
19931                                                                                                500.00
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19934                                                                                                136.00
19935                                                                                                750.00
19936                                                                                                 40-60
19937                                                                                                 20.00
19938                                                                                                  2.00
19939                                                                                                200.00
19940                                                                                                  3.00
19941                                                                                                500.00
19942                                                                                                 75.00
19943                                                                                                60-120
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19951                                                                                                200.00
19952                                                                                           unspecified
19953                                                                                                 34.00
19954                                                                                                272.00
19955                                                                                                272.00
19956                                                                                                272.00
19957                                                                                                272.00
19958                                                                                                collar
19959                                                                                                  1.00
19960                                                                                                  1.00
19961                                                                                                 75.00
19962                                                                                                  1.00
19963                                                                                                 75.00
19964                                                                                                  1.00
19965                                                                                                 75.00
19966                                                                                                 50.00
19967                                                                                                 50.00
19968                                                                                                 50.00
19969                                                                                               2 drops
19970                                                                                                  2.00
19971                                                                                                  1.00
19972                                                                                                272.00
19973                                                                                                200.00
19974                                                                                                113.50
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19976                                                                                                 50.00
19977                                                                                                  0.40
19978                                                                                                272.00
19979                                                                                                272.00
19980                                                                                                  0.40
19981                                                                                                 75.00
19982                                                                                                 80.00
19983                                                                                                  0.40
19984                                                                                           unspecified
19985                                                                                                  0.40
19986                                                                                                  0.40
19987                                                                                                  0.30
19988                                                                                                 75.00
19989                                                                                                250.00
19990                                                                                                  5.00
19991                                                                                                  1.00
19992                                                                                                  1.00
19993                                                                                                 75.00
19994                                                                                                200.00
19995                                                                                                272.00
19996                                                                                                272.00
19997                                                                                                136.00
19998                                                                                                272.00
19999                                                                                                500.00
 [ reached 'max' / getOption("max.print") -- omitted 30213 rows ]
#now apply same for those that done have 'other specify' for dose unit
unit_pattern <- "\\b(mg|mcg|ug)\\s*/?\\s*(kg|ml|lb)?\\b|\\b(mg|mcg)\\b"
# Identify rows where the `unit_pattern` is matched in `dose`
matches <- grepl(unit_pattern, dose$dose, ignore.case = TRUE)

# For rows that match the unit pattern, update `dose_unit` and clean up `dose`
dose$dose_unit[matches] <- regmatches(dose$dose[matches], regexpr(unit_pattern, dose$dose[matches], ignore.case = TRUE))



# Remove the matched units from the `dose` column for the same rows
dose$dose[matches] <- gsub(unit_pattern, "", dose$dose[matches], ignore.case = TRUE)

# Trim any extra whitespace in both columns
dose$dose <- trimws(dose$dose)
dose$dose_unit <- trimws(dose$dose_unit)



non_numeric_dose3 <- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

# View the result
print(non_numeric_dose3)
                                                                                                        medication_ingredients
22                                                                                                                   meloxicam
40                                                                                              polysulfated glycosaminoglycan
41                                                                                      joint supplement (glucosamine hcl/msm)
42                                                                                                                   meloxicam
46                                                                                                                    spinosad
48                                                                                                    imidacloprid, moxidectin
49                                                                                                                imidacloprid
51                                                                      joint supplement (chondroitin sulfate/glucosamine hcl)
59                                                                                                                  ivermectin
60                                                                                                  imidacloprid, pyriproxyfen
62                                                                                                  imidacloprid, pyriproxyfen
63                                                                                                                  ivermectin
67                                                                                                                   mupirocin
70                                                                                                                   mupirocin
74                                                                                                  imidacloprid, pyriproxyfen
84                                                                                           betamethasone, gentamicin sulfate
87                                                                                                               dexamethasone
91                                                                             betamethasone, clotrimazole, gentamicin sulfate
111                                                                            betamethasone, clotrimazole, gentamicin sulfate
112                                                                                          enrofloxacin, silver sulfadiazine
113                                                                               florfenicol, mometasone furoate, terbinafine
114                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
149                                                                                chlorhexidine gluconate, miconazole nitrate
150                                                                                                                  tris-edta
151                                                                                                    chlorhexidine gluconate
152                                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                               multivitamin
155                                                                                                  immune support supplement
167                                                                                                   joint supplement (other)
188                                                                                                                 fluralaner
192                                                                                                                 fluralaner
220                                                                                                                 fluralaner
230                                                                                               ivermectin, pyrantel pamoate
233                                                                                        ear cleaner (zymox), hydrocortisone
235                                                                                               ivermectin, pyrantel pamoate
236                                                                                    betamethasone, florfenicol, terbinafine
237                                                                                    betamethasone, florfenicol, terbinafine
238                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
242                                                                                    betamethasone, florfenicol, terbinafine
243                                                                                    betamethasone, florfenicol, terbinafine
248                                                                               florfenicol, mometasone furoate, terbinafine
257                                                                                                 milbemycin oxime, spinosad
275                                                                                               ivermectin, pyrantel pamoate
276                                                                                                                 ivermectin
277                                                                                                                 afoxolaner
279                                                                    chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                    triamcinolone acetonide
310                                                                                               ivermectin, pyrantel pamoate
317                                                                                                 imidacloprid, pyriproxyfen
318                                                                                               ivermectin, pyrantel pamoate
324                                                                                                 imidacloprid, pyriproxyfen
328                                                                                                   imidacloprid, permethrin
329                                                                                               ivermectin, pyrantel pamoate
332                                                                                                 imidacloprid, pyriproxyfen
333                                                                                               ivermectin, pyrantel pamoate
347                                                                                                lufenuron, milbemycin oxime
348                                                                                                lufenuron, milbemycin oxime
350                                                                                                lufenuron, milbemycin oxime
351                                                                                                lufenuron, milbemycin oxime
353                                                                                                lufenuron, milbemycin oxime
355                                                                                                lufenuron, milbemycin oxime
366                                                                                                               coenzyme q10
368                                                                                                                 afoxolaner
375                                                                                               ivermectin, pyrantel pamoate
376                                                                                                                 fluralaner
383                                                                                                lufenuron, milbemycin oxime
384                                                                                                lufenuron, milbemycin oxime
385                                                                                                lufenuron, milbemycin oxime
386                                                                                                lufenuron, milbemycin oxime
403                                                                                                                 ivermectin
404                                                                                                                 ivermectin
414                                                                                                lufenuron, milbemycin oxime
447                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
449                                                                  activated charcoal, bismuth subsalicylate, kaolin, pectin
453                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
480                                                                               florfenicol, mometasone furoate, terbinafine
496                                                                                                                 ivermectin
498                                                                                               ivermectin, pyrantel pamoate
519                                                                                                                 isoflurane
537                                                                               dexamethasone, neomycin sulfate, polymyxin b
597                                                                                                   fipronil, (s)-methoprene
598                                                                                                                 afoxolaner
603                                                                                               ivermectin, pyrantel pamoate
604                                                                                                                 afoxolaner
610                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
619                                                                                                       cognitive supplement
637                                                                                                                  omega 3-6
642                                                              bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
686                                                                                                                 afoxolaner
688                                                                                         amoxicillin, clavulanate potassium
703                                                                                               ivermectin, pyrantel pamoate
704                                                                                                                  sarolaner
709                                                                                                           liver supplement
710                                                                                                                  lomustine
712                                                                                                       prednisolone acetate
725                                                                                                 milbemycin oxime, spinosad
728                                                                                               ivermectin, pyrantel pamoate
729                                                                                                                 afoxolaner
730                                                                                               ivermectin, pyrantel pamoate
733                                                                                                                  ketorolac
734                                                                               dexamethasone, neomycin sulfate, polymyxin b
737                                                                                                       dorzolamide, timolol
738                                                                                               ivermectin, pyrantel pamoate
739                                                                                                                 afoxolaner
754                                                                                               ivermectin, pyrantel pamoate
755                                                                                                   fipronil, (s)-methoprene
757                                                                                  lufenuron, milbemycin oxime, praziquantel
760                                                                                                                tropicamide
778                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
785                                                                                                 milbemycin oxime, spinosad
790                                                                                                 milbemycin oxime, spinosad
792                                                                                                lufenuron, milbemycin oxime
797                                                                                                           liver supplement
798                                                                                                         maropitant citrate
799                                                                                                                bedinvetmab
800                                                                                                                mirtazapine
801                                                                                                                 furosemide
802                                                                                                                  carprofen
803                                                                                                                 fluralaner
804                                                                                                                 fluralaner
810                                                                                                                 selamectin
816                                                                                                     rx diet - renal health
819                                                                                               ivermectin, pyrantel pamoate
820                                                                                               ivermectin, pyrantel pamoate
823                                                                                                   fipronil, (s)-methoprene
824                                                                                               ivermectin, pyrantel pamoate
832                                                                                                                    omega 3
850                                                                                     fipronil, pyriproxyfen, (s)-methoprene
851                                                                                               ivermectin, pyrantel pamoate
862                                                                                                                 ivermectin
871                                                                                                 milbemycin oxime, spinosad
874                                                                                                 milbemycin oxime, spinosad
877                                                                                                         miconazole nitrate
878                                                                                                 milbemycin oxime, spinosad
879                                                                                                 milbemycin oxime, spinosad
880                                                                                                 milbemycin oxime, spinosad
884                                                                                                 milbemycin oxime, spinosad
887                                                                                                 milbemycin oxime, spinosad
891                                                                                                 milbemycin oxime, spinosad
893                                                                                                 milbemycin oxime, spinosad
899                                                                                                 milbemycin oxime, spinosad
901                                                                                                    chlorhexidine gluconate
905                                                                                          allergy immunotherapy - injection
913                                                                                                 imidacloprid, pyriproxyfen
921                                                                                               ivermectin, pyrantel pamoate
929                                                                                                                  ketorolac
930                                                                                                                dorzolamide
950                                                                                                                 ivermectin
955                                                                                                   flumethrin, imidacloprid
958                                                                                               ivermectin, pyrantel pamoate
969                                                                                                    acetic acid, boric acid
970                                                                     hydrocortisone, gentamicin sulfate, miconazole nitrate
977                                                                                                                  ophytrium
982                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                  probiotic
989                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
1001                                                                                                             yunnan baiyao
1017                                                                                                                ivermectin
1018                                                                                                                afoxolaner
1019                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
1020                                                                                                          neomycin sulfate
1021                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
1027                                                                                        chlorhexidine gluconate, ophytrium
1028                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1029                                                                                        chlorhexidine gluconate, ophytrium
1030                                                                                                unspecified shampoo/mousse
1031                                                                                                   enrofloxacin, tris-edta
1033                                                                              florfenicol, mometasone furoate, terbinafine
1036                                                                       enrofloxacin, ketoconazole, triamcinolone acetonide
1037                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
1039                                                                              florfenicol, mometasone furoate, terbinafine
1042                                                                                                   chlorhexidine gluconate
1050                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1072                                                                                          burow's solution, hydrocortisone
1073                                                                                        chlorhexidine gluconate, tris-edta
1074                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1087                                                                                                milbemycin oxime, spinosad
1091                                                                                           ear cleaner (epi-otic advanced)
1097                                                                                                milbemycin oxime, spinosad
1098                                                                                                  imidacloprid, permethrin
1099                                                                                              ivermectin, pyrantel pamoate
1100                                                                                               lufenuron, milbemycin oxime
1101                                                                                                                fluralaner
1108                                                                                        chlorhexidine gluconate, ophytrium
1111                                                                                               lufenuron, milbemycin oxime
1112                                                                                        chlorhexidine gluconate, ophytrium
1116                                                                                ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                              imidacloprid
1131                                                                                                       ear cleaner (zymox)
1150                                                                                                   ketoconazole, tris-edta
1152                                                                                                          milbemycin oxime
1153                                                                                                                ivermectin
1154                                                                                               lufenuron, milbemycin oxime
1155                                                                                               lufenuron, milbemycin oxime
1159                                                                                               lufenuron, milbemycin oxime
1160                                                                                               lufenuron, milbemycin oxime
1161                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1168                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                              ivermectin, pyrantel pamoate
1170                                                                                                  fipronil, (s)-methoprene
1173                                                                                                  fipronil, (s)-methoprene
1174                                                                                              ivermectin, pyrantel pamoate
1175                                                                                                  fipronil, (s)-methoprene
1176                                                                                              ivermectin, pyrantel pamoate
1177                                                                                                  fipronil, (s)-methoprene
1179                                                                           betamethasone, clotrimazole, gentamicin sulfate
1185                                                                                                                ivermectin
1186                                                                                              ivermectin, pyrantel pamoate
1187                                                                                                         megestrol acetate
1189                                                                                              ivermectin, pyrantel pamoate
1190                                                                                              ivermectin, pyrantel pamoate
1193                                                                                                                ivermectin
1194                                                                                              ivermectin, pyrantel pamoate
1195                                                                                                          milbemycin oxime
1208                                                                                                  imidacloprid, permethrin
1217                                                                                              ivermectin, pyrantel pamoate
1226                                                                                                imidacloprid, pyriproxyfen
1233                                                                                                       silver sulfadiazine
1247                                                                                               lufenuron, milbemycin oxime
1285                                                                                            sulfamethoxazole, trimethoprim
1336                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1344                                                                                ivermectin, praziquantel, pyrantel pamoate
1345                                                                            dexamethasone, neomycin sulfate, thiabendazole
1346                                                                                           ear cleaner (epi-otic advanced)
1348                                                                                                   triamcinolone acetonide
1355                                                                                                  fipronil, (s)-methoprene
1371                                                                                              ivermectin, pyrantel pamoate
1377                                                                                                             levothyroxine
1378                                                                                                      cefpodoxime proxetil
1379                                                                                                                 carprofen
1380                                                                                                             metronidazole
1398                                                                                         dexamethasone, miconazole nitrate
1404                                                                                         betamethasone, gentamicin sulfate
1405                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1415                                                                                         dexamethasone, miconazole nitrate
1417                                                                                   betamethasone, florfenicol, terbinafine
1419                                                                                               lufenuron, milbemycin oxime
1420                                                                                                                   omega 3
1422                                                                                               lufenuron, milbemycin oxime
1434                                                                                                  fipronil, (s)-methoprene
1435                                                                                               lufenuron, milbemycin oxime
1438                                                                                               lufenuron, milbemycin oxime
1441                                                                                               lufenuron, milbemycin oxime
1442                                                                                ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                  fipronil, (s)-methoprene
1450                                                                                    fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                          milbemycin oxime
1459                                                                                     dinotefuran, permethrin, pyriproxyfen
1462                                                                                     dinotefuran, permethrin, pyriproxyfen
1464                                                                                               lufenuron, milbemycin oxime
1473                                                                                                    unspecified medication
1475                                                                                                  imidacloprid, permethrin
1491                                                                                              ivermectin, pyrantel pamoate
1499                                                                                                milbemycin oxime, spinosad
1500                                                                                                milbemycin oxime, spinosad
1501                                                                                              ivermectin, pyrantel pamoate
1504                                                                                                                 vitamin c
1511                                                                                                                afoxolaner
1512                                                                                     dinotefuran, permethrin, pyriproxyfen
1514                                                                                                                afoxolaner
1528                                                                                                  imidacloprid, permethrin
1529                                                                                                                ivermectin
1532                                                                                                imidacloprid, pyriproxyfen
1534                                                                                                imidacloprid, pyriproxyfen
1535                                                                                                          milbemycin oxime
1536                                                                                                imidacloprid, pyriproxyfen
1537                                                                                                          milbemycin oxime
1538                                                                                                          milbemycin oxime
1539                                                                                                imidacloprid, pyriproxyfen
1541                                                                                                imidacloprid, pyriproxyfen
1542                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1556                                                                                                               sevoflurane
1572                                                                                            milbemycin oxime, praziquantel
1586                                                                                                              ketoconazole
1587                                                                                              ivermectin, pyrantel pamoate
1598                                                                                              ivermectin, pyrantel pamoate
1599                                                                                              ivermectin, pyrantel pamoate
1633                                                                                                          milbemycin oxime
1634                                                                                                  fipronil, (s)-methoprene
1635                                                                                    joint supplement (glucosamine hcl/msm)
1636                                                                                                                   omega 3
1650                                                                                                  fipronil, (s)-methoprene
1663                                                                                                milbemycin oxime, spinosad
1668                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1683                                                                                                  flumethrin, imidacloprid
1684                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                         betamethasone, gentamicin sulfate
1689                                                                                     chlorhexidine gluconate, ketoconazole
1690                                                                                         betamethasone, gentamicin sulfate
1692                                                                           betamethasone, clotrimazole, gentamicin sulfate
1695                                                                              dexamethasone, neomycin sulfate, polymyxin b
1697                                                                                                  flumethrin, imidacloprid
1708                                                                                               lufenuron, milbemycin oxime
1710                                                                                               lufenuron, milbemycin oxime
1712                                                                                               lufenuron, milbemycin oxime
1715                                                                                               lufenuron, milbemycin oxime
1718                                                                                               lufenuron, milbemycin oxime
1720                                                                                               lufenuron, milbemycin oxime
1729                                                                                                              imidacloprid
1730                                                                                                                ivermectin
1743                                                                                                              imidacloprid
1747                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                            hydrocortisone
1749                                                                                                milbemycin oxime, spinosad
1756                                                                                                                 probiotic
1757                                                                                                    coprophagia supplement
1758                                                                                              ivermectin, pyrantel pamoate
1759                                                                                                                afoxolaner
1760                                                                                                                 cefovecin
1761                                                                                         betamethasone, gentamicin sulfate
1769                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
1773                                                                                         trimeprazine tartrate, prednisone
1774                                                                                               lufenuron, milbemycin oxime
1789                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1791                                                                                                                 mupirocin
1794                                                                                     chlorhexidine gluconate, ketoconazole
1795                                                                                                unspecified shampoo/mousse
1796                                                                                        joint supplement (glucosamine hcl)
1798                                                                                                                 meloxicam
1805                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1809                                                                                                  joint supplement (other)
1812                                                                                                                      kelp
1813                                                                                                                   omega 3
1819                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                             unspecified herbal thyroid support supplement
1823                                                                            mometasone furoate, orbifloxacin, posaconazole
1845                                                                                                  imidacloprid, permethrin
1846                                                                                              ivermectin, pyrantel pamoate
1847                                                                                                imidacloprid, pyriproxyfen
1848                                                                                              ivermectin, pyrantel pamoate
1849                                                                                              ivermectin, pyrantel pamoate
1850                                                                              dexamethasone, neomycin sulfate, polymyxin b
1851                                                                              dexamethasone, neomycin sulfate, polymyxin b
1867                                                                                              ivermectin, pyrantel pamoate
1872                                                                                              ivermectin, pyrantel pamoate
1877                                                                                 unspecified herbal flea/tick preventative
1887                                                                                       cedarwood oil, rosemary oil, sesame
1888                                                                                 unspecified herbal flea/tick preventative
1917                                                                                              ivermectin, pyrantel pamoate
1922                                                                                         betamethasone, gentamicin sulfate
1925                                                                                                          benzoyl peroxide
1926                                                                                     chlorhexidine gluconate, ketoconazole
1928                                                                                                                ivermectin
1929                                                                                     dinotefuran, permethrin, pyriproxyfen
1931                                                                                                          benzoyl peroxide
1939                                                                                 unspecified herbal flea/tick preventative
1941                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1945                                                                                       cedarwood oil, rosemary oil, sesame
1948                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1962                                                                                                                ivermectin
1965                                                                                           ear cleaner (epi-otic advanced)
1980                                                                                                imidacloprid, pyriproxyfen
1981                                                                                              ivermectin, pyrantel pamoate
1982                                                                                              ivermectin, pyrantel pamoate
1983                                                                                                imidacloprid, pyriproxyfen
1984                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                   omega 3
1994                                                                                                               doxorubicin
1998                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2006                                                                                              ivermectin, pyrantel pamoate
2012                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                   omega 3
2016                                                                                               lufenuron, milbemycin oxime
2022                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2025                                                                                                imidacloprid, pyriproxyfen
2026                                                                                              ivermectin, pyrantel pamoate
2029                                                                                              ivermectin, pyrantel pamoate
2030                                                                                                                 sarolaner
2032                                                                                                          pyrantel pamoate
2033                                                                                                          milbemycin oxime
2034                                                                                                              fenbendazole
2041                                                                                                                ivermectin
2042                                                                                                                ivermectin
2043                                                                                                              fenbendazole
2050                                                                                              ivermectin, pyrantel pamoate
2075                                                                                                                ivermectin
2083                                                                                                                selamectin
2084                                                                                                                ivermectin
2085                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2087                                                                                               lufenuron, milbemycin oxime
2088                                                                                                                fluralaner
2089                                                                                                  joint supplement (other)
2091                                                                                                                ivermectin
2093                                                                                                  joint supplement (other)
2107                                                                                              ivermectin, pyrantel pamoate
2108                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                              ivermectin, pyrantel pamoate
2110                                                                                              ivermectin, pyrantel pamoate
2113                                                                                         trimeprazine tartrate, prednisone
2115                                                                                                 unspecified otic ointment
2116                                                                                                    unspecified otic flush
2123                                                                                                                 probiotic
2126                                                                                               lufenuron, milbemycin oxime
2127                                                                                ivermectin, praziquantel, pyrantel pamoate
2149                                                                                               lufenuron, milbemycin oxime
2151                                                                                               lufenuron, milbemycin oxime
2161                                                                                               lufenuron, milbemycin oxime
2165                                                                           betamethasone, clotrimazole, gentamicin sulfate
2166                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2195                                                                                digestive supplement, prebiotic, probiotic
2199                                                                                              ivermectin, pyrantel pamoate
2200                                                                                                                afoxolaner
2201                                                                                              ivermectin, pyrantel pamoate
2202                                                                                                                afoxolaner
2203                                                                                                  urinary tract supplement
2204                                                                                              ivermectin, pyrantel pamoate
2205                                                                                                                afoxolaner
2206                                                                                                  urinary tract supplement
2207                                                                                    joint supplement (glucosamine hcl/msm)
2211                                                                              dexamethasone, neomycin sulfate, polymyxin b
2219                                                                                                                    arnica
2220                                                                                                                 hypericum
2224                                                                                                 spinal support supplement
2226                                                                                                                 probiotic
2228                                                                                                        mangosteen extract
2229                                                                                                                 shu jin i
2233                                                                                ivermectin, praziquantel, pyrantel pamoate
2241                                                                                     dinotefuran, permethrin, pyriproxyfen
2243                                                                                                          milbemycin oxime
2244                                                                                     dinotefuran, permethrin, pyriproxyfen
2250                                                                                                                ivermectin
2255                                                                                     dinotefuran, permethrin, pyriproxyfen
2258                                                                                                                 probiotic
2259                                                                                                                 vitamin d
2260                                                                                                                 vitamin a
2261                                                                                                                 vitamin c
2262                                                                                                              multivitamin
2263                                                                                                  kidney health supplement
2264                                                                                             unspecified herbal supplement
2265                                                                                                                  turmeric
2266                                                                                toothpaste/dental health solution or chews
2269                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                  turmeric
2272                                                                            mometasone furoate, orbifloxacin, posaconazole
2278                                                                                ivermectin, praziquantel, pyrantel pamoate
2279                                                                                              ivermectin, pyrantel pamoate
2280                                                                                              ivermectin, pyrantel pamoate
2283                                                                                              ivermectin, pyrantel pamoate
2301                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                     butorphanol tartrate, dexmedetomidine
2339                                                                                                             dexamethasone
2342                                                                              dexamethasone, neomycin sulfate, polymyxin b
2390                                                                                         betamethasone, gentamicin sulfate
2398                                                                                         betamethasone, gentamicin sulfate
2404                                                                                              ivermectin, pyrantel pamoate
2405                                                                                                  fipronil, (s)-methoprene
2406                                                                                                                   omega 3
2409                                                                                              ivermectin, pyrantel pamoate
2418                                                                                              ivermectin, pyrantel pamoate
2428                                                                                                               oclacitinib
2463                                                                                         rx diet - selected protein (duck)
2464                                                                                              ivermectin, pyrantel pamoate
2467                                                                                         trimeprazine tartrate, prednisone
2473                                                                            dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                   ketoconazole, tris-edta
2477                                                                                                             buprenorphine
2478                                                                                                                ampicillin
2479                                                                                                                 probiotic
2481                                                                                                                  fipronil
2482                                                                                              ivermectin, pyrantel pamoate
2486                                                                                                   acetic acid, boric acid
2487                                                                                                   ketoconazole, tris-edta
2490                                                                                                           dexmedetomidine
2491                                                                                                        miconazole nitrate
2492                                                                                                   acetic acid, boric acid
2499                                                                                         rx diet - selected protein (duck)
2500                                                                                              ivermectin, pyrantel pamoate
2501                                                                                                                 carprofen
2502                                                                                                                alprazolam
2503                                                                                                               oclacitinib
2504                                                                                                                afoxolaner
2505                                                                                                                ivermectin
2506                                                                                                                afoxolaner
2508                                                                                                                 probiotic
2517                                                                                               lufenuron, milbemycin oxime
2518                                                                                                  joint supplement (other)
2534                                                                                            unspecified eye dilation drops
2539                                                                                 lufenuron, milbemycin oxime, praziquantel
2540                                                                                               lufenuron, milbemycin oxime
2542                                                                                            milbemycin oxime, praziquantel
2543                                                                                                  flumethrin, imidacloprid
2545                                                                                            milbemycin oxime, praziquantel
2546                                                                                                  flumethrin, imidacloprid
2547                                                                                                          milbemycin oxime
2548                                                                                                  flumethrin, imidacloprid
2549                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                   omega 3
2558                                                                                              ivermectin, pyrantel pamoate
2559                                                                                              ivermectin, pyrantel pamoate
2560                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2562                                                                                              ivermectin, pyrantel pamoate
2566                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2575                                                                                         betamethasone, gentamicin sulfate
2578                                                                                         betamethasone, gentamicin sulfate
2580                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2583                                                                                                                ivermectin
2599                                                                                                       polyethylene glycol
2600                                                                                                         vision supplement
2642                                                                                         betamethasone, gentamicin sulfate
2651                                                        ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                       ear cleaner (zymox)
2655                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2659                                                                                                  skin and coat supplement
2660                                                                                                   unspecified ear cleaner
2661                                                                                                          colloidal silver
2699                                                                                         betamethasone, gentamicin sulfate
2710                                                                                                  imidacloprid, moxidectin
2721                                                                           betamethasone, clotrimazole, gentamicin sulfate
2726                                                                                              ivermectin, pyrantel pamoate
2731                                                                                                milbemycin oxime, spinosad
2735                                                                                                milbemycin oxime, spinosad
2737                                                                                               lufenuron, milbemycin oxime
2738                                                                                                          milbemycin oxime
2739                                                                                                                afoxolaner
2742                                                                                               lufenuron, milbemycin oxime
2743                                                                                                                fluralaner
2745                                                                                               lufenuron, milbemycin oxime
2746                                                                                                                fluralaner
2748                                                                                               lufenuron, milbemycin oxime
2749                                                                                                                fluralaner
2753                                                                                 lufenuron, milbemycin oxime, praziquantel
2756                                                                                                                lokivetmab
2805                                                                                                  fipronil, (s)-methoprene
2815                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2818                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2825                                                                                                          milbemycin oxime
2827                                                                                              ivermectin, pyrantel pamoate
2828                                                                                              ivermectin, pyrantel pamoate
2833                                                                                               lufenuron, milbemycin oxime
2838                                                                                                          milbemycin oxime
2839                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
2842                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2844                                                                              dexamethasone, neomycin sulfate, polymyxin b
2846                                                                                                          milbemycin oxime
2855                                                                                                             yunnan baiyao
2869                                                                                        unspecified heartworm preventative
2897                                                                                     chlorhexidine gluconate, ketoconazole
2900                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2903                                                                                     chlorhexidine gluconate, ketoconazole
2904                                                                                     chlorhexidine gluconate, ketoconazole
2905                                                                                     chlorhexidine gluconate, ketoconazole
2907                                                                                                                 probiotic
2911                                                                                               lufenuron, milbemycin oxime
2912                                                                                                                afoxolaner
2913                                                                                                                 probiotic
2919                                                                                            milbemycin oxime, praziquantel
2920                                                                                                                afoxolaner
2921                                                                                                                 probiotic
2922                                                                                                          milbemycin oxime
2923                                                                                                                afoxolaner
2925                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2941                                                                                               lufenuron, milbemycin oxime
2942                                                                                                  imidacloprid, permethrin
2943                                                                                               lufenuron, milbemycin oxime
2944                                                                                                imidacloprid, pyriproxyfen
2946                                                                                                imidacloprid, pyriproxyfen
2951                                                                                                imidacloprid, pyriproxyfen
2958                                                                                                                ivermectin
2959                                                                                                                ivermectin
2960                                                                                              ivermectin, pyrantel pamoate
2961                                                                                              ivermectin, pyrantel pamoate
2962                                                                                              ivermectin, pyrantel pamoate
2963                                                                                              ivermectin, pyrantel pamoate
2964                                                                                              ivermectin, pyrantel pamoate
2974                                                                                               lufenuron, milbemycin oxime
2975                                                                                                  fipronil, (s)-methoprene
2978                                                                                 lufenuron, milbemycin oxime, praziquantel
2980                                                                                                      prednisolone acetate
2981                                                                                 lufenuron, milbemycin oxime, praziquantel
2988                                                                                                              fenbendazole
2993                                                                                                              fenbendazole
2997                                                                                                             metronidazole
3002                                                                                                      prednisolone acetate
3003                                                                                           ear cleaner (epi-otic advanced)
3007                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3028                                                                                                  fipronil, (s)-methoprene
3031                                                                                                          liver supplement
3055                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
3058                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3060                                                                                                                ivermectin
3095                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3110                                                                            mometasone furoate, orbifloxacin, posaconazole
3119                                                                                dimethyl sulfoxide, fluocinolone acetonide
3140                                                                                             allergy immunotherapy - drops
3147                                                                                             allergy immunotherapy - drops
3179                                                                                              ivermectin, pyrantel pamoate
3180                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3208                                                                                              ivermectin, pyrantel pamoate
3209                                                                                                                fluralaner
3212                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
3246                                                                                ivermectin, praziquantel, pyrantel pamoate
3247                                                                                ivermectin, praziquantel, pyrantel pamoate
3250                                                                                ivermectin, praziquantel, pyrantel pamoate
3251                                                                                            milbemycin oxime, praziquantel
3253                                                                                ivermectin, praziquantel, pyrantel pamoate
3257                                                                                ivermectin, praziquantel, pyrantel pamoate
3271                                                                                ivermectin, praziquantel, pyrantel pamoate
3278                                                                              dexamethasone, neomycin sulfate, polymyxin b
3280                                                                                ivermectin, praziquantel, pyrantel pamoate
3284                                                                                                          milbemycin oxime
3287                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3291                                                                                                                 mupirocin
3293                                                                           betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                          milbemycin oxime
3300                                                                                                          milbemycin oxime
3305                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3312                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                 mupirocin
3339                                                                                            milbemycin oxime, praziquantel
3342                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3345                                                                                               lufenuron, milbemycin oxime
3346                                                                                               lufenuron, milbemycin oxime
3350                                                                                                                ivermectin
3360                                                                                                  joint supplement (other)
3366                                                                                                              enrofloxacin
3372                                                                                                                ivermectin
3375                                                                                  febantel, praziquantel, pyrantel pamoate
3376                                                                                                                 mupirocin
3394                                                                                                   triamcinolone acetonide
3399                                                                                                milbemycin oxime, spinosad
3403                                                                                                milbemycin oxime, spinosad
3404                                                                                                                afoxolaner
3405                                                                                              ivermectin, pyrantel pamoate
3406                                                                              florfenicol, mometasone furoate, terbinafine
3421                                                                                             allergy immunotherapy - drops
3422                                                                                             allergy immunotherapy - drops
3423                                                                                                                selamectin
3425                                                                                                                selamectin
3426                                                                                             allergy immunotherapy - drops
3429                                                                                                milbemycin oxime, spinosad
3437                                                                           betamethasone, clotrimazole, gentamicin sulfate
3439                                                                              florfenicol, mometasone furoate, terbinafine
3445                                                                                                                cephalexin
3446                                                                                                                lokivetmab
3447                                                                           betamethasone, clotrimazole, gentamicin sulfate
3448                                                                              florfenicol, mometasone furoate, terbinafine
3449                                                                                                                 carprofen
3451                                                                                               lufenuron, milbemycin oxime
3455                                                                                               lufenuron, milbemycin oxime
3456                                                                                                  fipronil, (s)-methoprene
3457                                                                                               lufenuron, milbemycin oxime
3458                                                                                                imidacloprid, pyriproxyfen
3459                                                                                               lufenuron, milbemycin oxime
3488                                                                                                                nitenpyram
3490                                                                                                                 sarolaner
3491                                                                                               lufenuron, milbemycin oxime
3492                                                                                                                 sarolaner
3495                                                                                 lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                 sarolaner
3497                                                                                 lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                 sarolaner
3512                                                                                              ivermectin, pyrantel pamoate
3513                                                                                              ivermectin, pyrantel pamoate
3514                                                                                              ivermectin, pyrantel pamoate
3515                                                                                              ivermectin, pyrantel pamoate
3516                                                                                              ivermectin, pyrantel pamoate
3517                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3519                                                                                                                ivermectin
3520                                                                                ivermectin, praziquantel, pyrantel pamoate
3522                                                                                              ivermectin, pyrantel pamoate
3525                                                                                              ivermectin, pyrantel pamoate
3530                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3535                                                                              dexamethasone, neomycin sulfate, polymyxin b
3581                                                                                                              multivitamin
3619                                                                                            milbemycin oxime, praziquantel
3622                                                                                                                 probiotic
3631                                                                                                                ivermectin
3632                                                                                                                ivermectin
3635                                                                                                                fluralaner
3636                                                                                            polysulfated glycosaminoglycan
3639                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                   acetic acid, boric acid
3641                                                                                         betamethasone, gentamicin sulfate
3649                                                                                                  imidacloprid, moxidectin
3650                                                                                                  imidacloprid, moxidectin
3652                                                                                                      prebiotic, probiotic
3666                                                                                         betamethasone, gentamicin sulfate
3667                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
3675                                                                                         betamethasone, gentamicin sulfate
3684                                                                                                          milbemycin oxime
3685                                                                                                  fipronil, (s)-methoprene
3691                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                          milbemycin oxime
3693                                                                                         betamethasone, gentamicin sulfate
3698                                                                                                                selamectin
3699                                                                                                                selamectin
3701                                                                                                          milbemycin oxime
3704                                                                                                          milbemycin oxime
3705                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                lokivetmab
3710                                                                                                           cbd or hemp oil
3718                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                              ivermectin, pyrantel pamoate
3725                                                                                              ivermectin, pyrantel pamoate
3726                                                                                              ivermectin, pyrantel pamoate
3735                                                                                                                 ketotifen
3741                                                                                                               amoxicillin
3742                                                                                                              azathioprine
3743                                                                                                                cetirizine
3744                                                                                                                 lactulose
3745                                                                                                                 carprofen
3750                                                                                                          milbemycin oxime
3760                                                                                                milbemycin oxime, spinosad
3773                                                                              dexamethasone, neomycin sulfate, polymyxin b
3781                                                                                                                 ketorolac
3782                                                                                                                 ofloxacin
3783                                                                                                               tropicamide
3784                                                                                                     mycophenolate mofetil
3785                                                                                                                prednisone
3786                                                                                                                famotidine
3789                                                                                         betamethasone, gentamicin sulfate
3797                                                                                                   triamcinolone acetonide
3798                                                                           betamethasone, clotrimazole, gentamicin sulfate
3800                                                                           betamethasone, clotrimazole, gentamicin sulfate
3815                                                                                              ivermectin, pyrantel pamoate
3829                                                                           betamethasone, clotrimazole, gentamicin sulfate
3830                                                                                                                 meloxicam
3835                                                                                              ivermectin, pyrantel pamoate
3836                                                                                                                afoxolaner
3838                                                                                                                afoxolaner
3840                                                                           betamethasone, clotrimazole, gentamicin sulfate
3848                                                                              dexamethasone, neomycin sulfate, polymyxin b
3857                                                                                              ivermectin, pyrantel pamoate
3858                                                                                                  fipronil, (s)-methoprene
3859                                                                                                          milbemycin oxime
3860                                                                                                                afoxolaner
3861                                                                                                        gentamicin sulfate
3867                                                                           betamethasone, clotrimazole, gentamicin sulfate
3870                                                                                              ivermectin, pyrantel pamoate
3871                                                                                                                afoxolaner
3872                                                                                                                afoxolaner
3874                                                                           betamethasone, clotrimazole, gentamicin sulfate
3881                                                                                                                ivermectin
3886                                                                                              ivermectin, pyrantel pamoate
3889                                                                                              ivermectin, pyrantel pamoate
3897                                                                                              ivermectin, pyrantel pamoate
3898                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
3900                                                                                                                ivermectin
3903                                                                                              ivermectin, pyrantel pamoate
3906                                                                                              ivermectin, pyrantel pamoate
3911                                                                                              ivermectin, pyrantel pamoate
3938                                                                                              ivermectin, pyrantel pamoate
3943                                                                                              ivermectin, pyrantel pamoate
3944                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3945                                                                                          propylene glycol, salicylic acid
3946                                                                                                                afoxolaner
3952                                                                                              ivermectin, pyrantel pamoate
3972                                                                                                milbemycin oxime, spinosad
3980                                                                                              ivermectin, pyrantel pamoate
3984                                                                                              ivermectin, pyrantel pamoate
3989                                                                                              ivermectin, pyrantel pamoate
3990                                                                                                                afoxolaner
4000                                                                                                                 meloxicam
4017                                                                                              ivermectin, pyrantel pamoate
4030                                                                                                milbemycin oxime, spinosad
4031                                                                                                milbemycin oxime, spinosad
4042                                                                                                    unspecified medication
4044                                                                                                                moxidectin
4045                                                                                                                 sarolaner
4058                                                                                                                ivermectin
4059                                                                                         trimeprazine tartrate, prednisone
4060                                                                                              ivermectin, pyrantel pamoate
4063                                                                                              ivermectin, pyrantel pamoate
4064                                                                                                                fluralaner
4066                                                                                                                ivermectin
4067                                                                                                                fluralaner
4068                                                                                toothpaste/dental health solution or chews
4069                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                               oclacitinib
4071                                                                                toothpaste/dental health solution or chews
4072                                                                                                                afoxolaner
4073                                                                                              ivermectin, pyrantel pamoate
4074                                                                                                  fipronil, (s)-methoprene
4075                                                                                              ivermectin, pyrantel pamoate
4077                                                                                                                afoxolaner
4087                                                                                                                 cefazolin
4088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                 ofloxacin
4092                                                                                                              imidacloprid
4095                                                                                                                 sarolaner
4096                                                                                                                moxidectin
4097                                                                                                                 sarolaner
4111                                                                                                milbemycin oxime, spinosad
4112                                                                                ivermectin, praziquantel, pyrantel pamoate
4113                                                                                           ear cleaner (epi-otic advanced)
4114                                                                                                   ketoconazole, tris-edta
4116                                                                                         trimeprazine tartrate, prednisone
4117                                                                                                  fipronil, (s)-methoprene
4118                                                                                                milbemycin oxime, spinosad
4119                                                                                                   ketoconazole, tris-edta
4120                                                                                                milbemycin oxime, spinosad
4125                                                                                                milbemycin oxime, spinosad
4127                                                                                            milbemycin oxime, praziquantel
4128                                                                                                                afoxolaner
4131                                                                                         betamethasone, gentamicin sulfate
4132                                                                                         betamethasone, gentamicin sulfate
4133                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4159                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4160                                                                                 clotrimazole, dexamethasone, enrofloxacin
4162                                                                                        fipronil, permethrin, pyriproxyfen
4172                                                                                                  fipronil, (s)-methoprene
4183                                                                                                                selamectin
4184                                                                                                                selamectin
4189                                                                                                      cefpodoxime proxetil
4190                                                                                                                 carprofen
4191                                                                                                milbemycin oxime, spinosad
4193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4198                                                                                                                afoxolaner
4199                                                                                                          milbemycin oxime
4204                                                                                                                lokivetmab
4209                                                                                                milbemycin oxime, spinosad
4210                                                                                                milbemycin oxime, spinosad
4212                                                                                                milbemycin oxime, spinosad
4213                                                                                 lufenuron, milbemycin oxime, praziquantel
4215                                                                                               lufenuron, milbemycin oxime
4216                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4218                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4229                                                                                                              fenbendazole
4244                                                                                                          pyrantel pamoate
4245                                                                           betamethasone, clotrimazole, gentamicin sulfate
4247                                                                                              ivermectin, pyrantel pamoate
4265                                                                                                                tobramycin
4266                                                                                                   ketoconazole, tris-edta
4274                                                                                                                isoflurane
4298                                                                                        fipronil, permethrin, pyriproxyfen
4299                                                                                                                ivermectin
4302                                                                                               lufenuron, milbemycin oxime
4304                                                                                               lufenuron, milbemycin oxime
4305                                                                                                  fipronil, (s)-methoprene
4306                                                                                                                   omega 3
4307                                                                                               lufenuron, milbemycin oxime
4308                                                                                               lufenuron, milbemycin oxime
4309                                                                                                  fipronil, (s)-methoprene
4311                                                                                        joint supplement (glucosamine hcl)
4313                                                                                               lufenuron, milbemycin oxime
4314                                                                                                  fipronil, (s)-methoprene
4323                                                                                                                selamectin
4324                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                          milbemycin oxime
4326                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4334                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4336                                                                                                                fluralaner
4338                                                                                 lufenuron, milbemycin oxime, praziquantel
4348                                                                              dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                milbemycin oxime, spinosad
4350                                                                                                milbemycin oxime, spinosad
4353                                                                                                milbemycin oxime, spinosad
4354                                                                                                milbemycin oxime, spinosad
4360                                                                                         betamethasone, gentamicin sulfate
4368                                                                                                        calming supplement
4371                                                                                                                   omega 3
4384                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                               lufenuron, milbemycin oxime
4390                                                                                                                fluralaner
4395                                                                                              ivermectin, pyrantel pamoate
4405                                                                                                milbemycin oxime, spinosad
4409                                                                                                  enrofloxacin, tobramycin
4426                                                                                              ivermectin, pyrantel pamoate
4427                                                                                                imidacloprid, pyriproxyfen
4428                                                                                                                  spinosad
4430                                                                                                         hypochlorous acid
4431                                                                                   over-the-counter antipruritic/astrigent
4444                                                                                                  fipronil, (s)-methoprene
4445                                                                                                milbemycin oxime, spinosad
4446                                                                                                                 probiotic
4454                                                                                                                isoflurane
4469                                                                                                   ketoconazole, tris-edta
4470                                                                                                   ketoconazole, tris-edta
4471                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4480                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4483                                                                                               lufenuron, milbemycin oxime
4486                                                                                                                   omega 3
4488                                                                                   betamethasone, florfenicol, terbinafine
4491                                                                                   betamethasone, florfenicol, terbinafine
4497                                                                                               lufenuron, milbemycin oxime
4499                                                                                            milbemycin oxime, praziquantel
4500                                                                                                                afoxolaner
4501                                                                                       rx diet - skin and food sensitivity
4502                                                                                                                afoxolaner
4504                                                                                       rx diet - skin and food sensitivity
4505                                                                                                          milbemycin oxime
4509                                                                                                          milbemycin oxime
4510                                                                                                                afoxolaner
4511                                                                                                                   omega 3
4515                                                                                                          milbemycin oxime
4516                                                                                                                afoxolaner
4517                                                                                                                 probiotic
4524                                                                                ivermectin, praziquantel, pyrantel pamoate
4532                                                                                                          milbemycin oxime
4533                                                                                                      prebiotic, probiotic
4534                                                                                                               coconut oil
4536                                                                                                          milbemycin oxime
4544                                                                                                                   omega 3
4545                                                                                ivermectin, praziquantel, pyrantel pamoate
4547                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4558                                                                                              ivermectin, pyrantel pamoate
4559                                                                                        fipronil, permethrin, pyriproxyfen
4560                                                                                              ivermectin, pyrantel pamoate
4561                                                                                         betamethasone, gentamicin sulfate
4562                                                                                                                fluralaner
4564                                                                                              ivermectin, pyrantel pamoate
4565                                                                                                                fluralaner
4566                                                                                              ivermectin, pyrantel pamoate
4567                                                                                                                fluralaner
4568                                                                                                                fluralaner
4569                                                                                                          milbemycin oxime
4587                                                                                              ivermectin, pyrantel pamoate
4597                                                                                clinical trial - cancer prevention vaccine
4599                                                                                                                ivermectin
4611                                                                                                milbemycin oxime, spinosad
4627                                                                                                                  fipronil
4628                                                                                                            (s)-methoprene
4629                                                                                               lufenuron, milbemycin oxime
4631                                                                                                  fipronil, (s)-methoprene
4634                                                                                               rx diet - digestive support
4638                                                                                                  fipronil, (s)-methoprene
4640                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4642                                                                                            milbemycin oxime, praziquantel
4643                                                                                                              cyclosporine
4644                                                                                                                      edta
4645                                                                                                                      edta
4646                                                                                                              flurbiprofen
4647                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4648                                                                                            milbemycin oxime, praziquantel
4649                                                                                                  fipronil, (s)-methoprene
4651                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4654                                                                                                  fipronil, (s)-methoprene
4655                                                                                            milbemycin oxime, praziquantel
4695                                                                                                          milbemycin oxime
4711                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
4717                                                                                                                  spinosad
4719                                                                            mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                   ketoconazole, tris-edta
4726                                                                                                          milbemycin oxime
4738                                                                                                milbemycin oxime, spinosad
4739                                                                                                milbemycin oxime, spinosad
4743                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                         betamethasone, gentamicin sulfate
4745                                                                                                milbemycin oxime, spinosad
4748                                                                                                milbemycin oxime, spinosad
4757                                                                                                imidacloprid, pyriproxyfen
4760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4761                                                                                                 immune support supplement
4763                                                                                                imidacloprid, pyriproxyfen
4764                                                                                                imidacloprid, pyriproxyfen
4766                                                                                                imidacloprid, pyriproxyfen
4777                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
4780                                                                                                  joint supplement (other)
4782                                                                                                                 probiotic
4801                                                                                                                prednisone
4802                                                                                              ivermectin, pyrantel pamoate
4803                                                                              dexamethasone, neomycin sulfate, polymyxin b
4805                                                                              dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                afoxolaner
4813                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4824                                                                                                  imidacloprid, moxidectin
4826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4828                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4832                                                                                     enrofloxacin, triamcinolone acetonide
4850                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4853                                                                                                   ketoconazole, tris-edta
4855                                                                                                milbemycin oxime, spinosad
4858                                                                                                milbemycin oxime, spinosad
4859                                                                                              ivermectin, pyrantel pamoate
4861                                                                                              ivermectin, pyrantel pamoate
4862                                                                                              ivermectin, pyrantel pamoate
4881                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4902                                                                                                  fipronil, (s)-methoprene
4904                                                                                                milbemycin oxime, spinosad
4905                                                                                                milbemycin oxime, spinosad
4910                                                                                                  flumethrin, imidacloprid
4912                                                                                            milbemycin oxime, praziquantel
4913                                                                                                  flumethrin, imidacloprid
4914                                                                                            milbemycin oxime, praziquantel
4917                                                                                            milbemycin oxime, praziquantel
4935                                                                                                                ivermectin
4956                                                                                                   ketoconazole, tris-edta
4960                                                                                                   ketoconazole, tris-edta
4968                                                                                                milbemycin oxime, spinosad
4969                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
4980                                                                                                                 probiotic
4981                                                                                            milbemycin oxime, praziquantel
4996                                                                                         betamethasone, gentamicin sulfate
4998                                                                                                             oxymetazoline
5043                                                                                                  fipronil, (s)-methoprene
5046                                                                                         betamethasone, gentamicin sulfate
5078                                                                                                milbemycin oxime, spinosad
5122                                                                                              ivermectin, pyrantel pamoate
5123                                                                                                                afoxolaner
5125                                                                                         allergy immunotherapy - injection
5127                                                                                            polysulfated glycosaminoglycan
5134                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5140                                                                                        amoxicillin, clavulanate potassium
5159                                                                                        joint supplement (glucosamine hcl)
5160                                                                                                                   omega 3
5161                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5173                                                                                              ivermectin, pyrantel pamoate
5174                                                                                                                afoxolaner
5191                                                                                                milbemycin oxime, spinosad
5193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5195                                                                                                  flumethrin, imidacloprid
5203                                                                                                                ivermectin
5210                                                                                                              ketoconazole
5211                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                               chlorhexidine gluconate, miconazole nitrate
5213                                                                                                    ear cleaner (otirinse)
5214                                                                                               lufenuron, milbemycin oxime
5220                                                                                         betamethasone, gentamicin sulfate
5221                                                                               chlorhexidine gluconate, miconazole nitrate
5222                                                                                                  imidacloprid, permethrin
5223                                                                                               lufenuron, milbemycin oxime
5225                                                                                               lufenuron, milbemycin oxime
5234                                                                                  febantel, praziquantel, pyrantel pamoate
5235                                                                                               lufenuron, milbemycin oxime
5243                                                                                               lufenuron, milbemycin oxime
5244                                                                                                imidacloprid, pyriproxyfen
5247                                                                                            milbemycin oxime, praziquantel
5248                                                                                                  imidacloprid, permethrin
5253                                                                                              ivermectin, pyrantel pamoate
5255                                                                                               lufenuron, milbemycin oxime
5256                                                                                               lufenuron, milbemycin oxime
5257                                                                                               lufenuron, milbemycin oxime
5258                                                                                               lufenuron, milbemycin oxime
5261                                                                                               lufenuron, milbemycin oxime
5262                                                                                  febantel, praziquantel, pyrantel pamoate
5264                                                                                                imidacloprid, pyriproxyfen
5265                                                                                                          milbemycin oxime
5270                                                                                            milbemycin oxime, praziquantel
5271                                                                                                  imidacloprid, permethrin
5289                                                                                                          milbemycin oxime
5332                                                                                                                   amitraz
5333                                                                                                                   omega 3
5334                                                                                              ivermectin, pyrantel pamoate
5335                                                                                                                   amitraz
5336                                                                                                  urinary tract supplement
5337                                                                                              ivermectin, pyrantel pamoate
5340                                                                                              ivermectin, pyrantel pamoate
5341                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
5354                                                                                                  flumethrin, imidacloprid
5357                                                                              dexamethasone, neomycin sulfate, polymyxin b
5359                                                                                              ivermectin, pyrantel pamoate
5360                                                                                              ivermectin, pyrantel pamoate
5362                                                                            attapulgite, bismuth subcarbonate, kanamycin a
5369                                                                                              ivermectin, pyrantel pamoate
5377                                                                                              ivermectin, pyrantel pamoate
5378                                                                                                  fipronil, (s)-methoprene
5379                                                                                                                ivermectin
5384                                                                                                          milbemycin oxime
5385                                                                                                  fipronil, (s)-methoprene
5386                                                                                              ivermectin, pyrantel pamoate
5387                                                                                                          milbemycin oxime
5388                                                                                     dinotefuran, permethrin, pyriproxyfen
5391                                                                                                                afoxolaner
5392                                                                                              ivermectin, pyrantel pamoate
5403                                                                                                          milbemycin oxime
5424                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5428                                                                                         betamethasone, gentamicin sulfate
5440                                                                                                                   omega 3
5460                                        chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5464                                                                                                milbemycin oxime, spinosad
5469                                                                                                                moxidectin
5483                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                   omega 3
5491                                                                                                  fipronil, (s)-methoprene
5492                                                                                                                ivermectin
5497                                                                                              ivermectin, pyrantel pamoate
5498                                                                                              ivermectin, pyrantel pamoate
5499                                                                                                  fipronil, (s)-methoprene
5500                                                                                              ivermectin, pyrantel pamoate
5501                                                                                                   chlorhexidine gluconate
5502                                                                                                     rattlesnake antivenin
5507                                                                                              ivermectin, pyrantel pamoate
5508                                                                                              ivermectin, pyrantel pamoate
5509                                                                                              ivermectin, pyrantel pamoate
5511                                                                                              ivermectin, pyrantel pamoate
5513                                                                                              ivermectin, pyrantel pamoate
5527                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                    cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                   triamcinolone acetonide
5533                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                              ivermectin, pyrantel pamoate
5535                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5537                                                                                                   triamcinolone acetonide
5541                                                                                              ivermectin, pyrantel pamoate
5542                                                                                    cyphenothrin, fipronil, (s)-methoprene
5545                                                                                              ivermectin, pyrantel pamoate
5546                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5552                                                                                              ivermectin, pyrantel pamoate
5553                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5557                                                                                              ivermectin, pyrantel pamoate
5568                                                                                               lufenuron, milbemycin oxime
5571                                                                                               lufenuron, milbemycin oxime
5576                                                                                               lufenuron, milbemycin oxime
5577                                                                                                              deltamethrin
5578                                                                                               lufenuron, milbemycin oxime
5595                                                                                               lufenuron, milbemycin oxime
5600                                                                                               lufenuron, milbemycin oxime
5602                                                                                               lufenuron, milbemycin oxime
5607                                                                                               lufenuron, milbemycin oxime
5626                                                                                              ivermectin, pyrantel pamoate
5627                                                                                              ivermectin, pyrantel pamoate
5628                                                                                                                afoxolaner
5629                                                                                              ivermectin, pyrantel pamoate
5630                                                                                                                afoxolaner
5631                                                                                                                ivermectin
5632                                                                                                                afoxolaner
5641                                                                                                                moxidectin
5649                                                                                                                 probiotic
5681                                                                                                                afoxolaner
5682                                                                                                          milbemycin oxime
5695                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5721                                                                                                milbemycin oxime, spinosad
5722                                                                                                milbemycin oxime, spinosad
5723                                                                                                milbemycin oxime, spinosad
5724                                                                                                milbemycin oxime, spinosad
5725                                                                                                milbemycin oxime, spinosad
5728                                                                                                milbemycin oxime, spinosad
5729                                                                            mometasone furoate, orbifloxacin, posaconazole
5731                                                                              florfenicol, mometasone furoate, terbinafine
5747                                                                                              ivermectin, pyrantel pamoate
5760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5762                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5768                                                                                                                ivermectin
5771                                                                                                          milbemycin oxime
5777                                                                                                          melanoma vaccine
5804                                                                                                          milbemycin oxime
5814                                                                                                          tylosin tartrate
5834                                                                                              ivermectin, pyrantel pamoate
5839                                                                                               lufenuron, milbemycin oxime
5840                                                                                               lufenuron, milbemycin oxime
5858                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
5869                                                                                              ivermectin, pyrantel pamoate
5877                                                                                  febantel, praziquantel, pyrantel pamoate
5884                                                                                     chlorhexidine gluconate, ketoconazole
5887                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5913                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5917                                                                            dexamethasone, neomycin sulfate, thiabendazole
5930                                                                                              ivermectin, pyrantel pamoate
5932                                                                                                              cyclosporine
5933                                                                                                                fluralaner
5934                                                                                              ivermectin, pyrantel pamoate
5935                                                                                                      prednisolone acetate
5936                                                                                              ivermectin, pyrantel pamoate
5937                                                                                                                fluralaner
5941                                                                                              ivermectin, pyrantel pamoate
5942                                                                                                                fluralaner
5945                                                                               hydroquinone, mometasone furoate, tretinoin
5963                                                                                               lufenuron, milbemycin oxime
5964                                                                                                                afoxolaner
5965                                                                                               lufenuron, milbemycin oxime
5967                                                                                               lufenuron, milbemycin oxime
5976                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5980                                                                                                                  spinosad
5981                                                                                    joint supplement (glucosamine hcl/msm)
5988                                                                                                                  spinosad
5991                                                                                                  fipronil, (s)-methoprene
5992                                                                                              ivermectin, pyrantel pamoate
5993                                                                                              ivermectin, pyrantel pamoate
5994                                                                                    fipronil, pyriproxyfen, (s)-methoprene
6000                                                                                               lufenuron, milbemycin oxime
6002                                                                                                imidacloprid, pyriproxyfen
6003                                                                                               lufenuron, milbemycin oxime
6004                                                                                                imidacloprid, pyriproxyfen
6005                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6014                                                                                               lufenuron, milbemycin oxime
6015                                                                                                                afoxolaner
6016                                                                                                                afoxolaner
6017                                                                                               lufenuron, milbemycin oxime
6036                                                                                                milbemycin oxime, spinosad
6038                                                                                               lufenuron, milbemycin oxime
6039                                                                                              ivermectin, pyrantel pamoate
6059                                                                                              ivermectin, pyrantel pamoate
6063                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6068                                                                                              ivermectin, pyrantel pamoate
6069                                                                                     dinotefuran, permethrin, pyriproxyfen
6071                                                                                                                ivermectin
6072                                                                                                  flumethrin, imidacloprid
6074                                                                                         betamethasone, gentamicin sulfate
6076                                                                                                  flumethrin, imidacloprid
6078                                                                                                  flumethrin, imidacloprid
6088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6090                                                                           betamethasone, clotrimazole, gentamicin sulfate
6093                                                                                 lufenuron, milbemycin oxime, praziquantel
6094                                                                                                                    barium
6095                                                                                         betamethasone, gentamicin sulfate
6101                                                                                               lufenuron, milbemycin oxime
6102                                                                           betamethasone, clotrimazole, gentamicin sulfate
6104                                                                                               lufenuron, milbemycin oxime
6109                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6129                                                                                              ivermectin, pyrantel pamoate
6130                                                                                                                afoxolaner
6132                                                                                              ivermectin, pyrantel pamoate
6133                                                                                                                afoxolaner
6134                                                                                                          milbemycin oxime
6135                                                                                                                 sarolaner
6136                                                                                                          milbemycin oxime
6137                                                                                                                 sarolaner
6139                                                                                                          milbemycin oxime
6140                                                                                                                 sarolaner
6148                                                                                                milbemycin oxime, spinosad
6149                                                                                                milbemycin oxime, spinosad
6150                                                                                                milbemycin oxime, spinosad
6161                                                                                               lufenuron, milbemycin oxime
6164                                                                                                        miconazole nitrate
6200                                                                                                                 sarolaner
6202                                                                                                                afoxolaner
6206                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6208                                                                           betamethasone, clotrimazole, gentamicin sulfate
6215                                                                                                                 pramoxine
6217                                                                              florfenicol, mometasone furoate, terbinafine
6218                                                                                                             laser therapy
6221                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
6224                                                                                                          milbemycin oxime
6225                                                                                                                 sarolaner
6226                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6231                                                                                            milbemycin oxime, praziquantel
6232                                                                                                                 sarolaner
6244                                                                              florfenicol, mometasone furoate, terbinafine
6254                                                                                                                ivermectin
6257                                                                                                                selamectin
6258                                                                                              ivermectin, pyrantel pamoate
6262                                                                                                                ivermectin
6263                                                                                                                afoxolaner
6266                                                                                   betamethasone, florfenicol, terbinafine
6267                                                                                            ketoconazole, phytosphingosine
6275                                                                                                       silver sulfadiazine
6282                                                                                              ivermectin, pyrantel pamoate
6283                                                                                                    indoxacarb, permethrin
6284                                                                                                                   omega 3
6293                                                                                                                afoxolaner
6296                                                                                                          tylosin tartrate
6302                                                                                                                ivermectin
6307                                                                                        amoxicillin, clavulanate potassium
6312                                                                           dexamethasone, enrofloxacin, miconazole nitrate
6319                                                                                     chlorhexidine gluconate, ketoconazole
6320                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6325                                                                                               lufenuron, milbemycin oxime
6326                                                                                     dinotefuran, permethrin, pyriproxyfen
6328                                                                                    joint supplement (glucosamine hcl/msm)
6329                                                                                               lufenuron, milbemycin oxime
6331                                                                                               lufenuron, milbemycin oxime
6341                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6342                                                                                                  fipronil, (s)-methoprene
6343                                                                                                                ivermectin
6358                                                                                                   chlorhexidine gluconate
6388                                                                                                                diclofenac
6390                                                                                                               doxycycline
6395                                                                                        fipronil, permethrin, pyriproxyfen
6399                                                                                                        miconazole nitrate
6405                                                                                                  fipronil, (s)-methoprene
6406                                                                                                  flumethrin, imidacloprid
6411                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
6437                                                                                              ivermectin, pyrantel pamoate
6441                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6443                                                                                                imidacloprid, pyriproxyfen
6444                                                                                              ivermectin, pyrantel pamoate
6451                                                                            mometasone furoate, orbifloxacin, posaconazole
6459                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6461                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6474                                                                                              ivermectin, pyrantel pamoate
6475                                                                                                                fluralaner
6486                                                                                            milbemycin oxime, praziquantel
6495                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6497                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6499                                                                                              ivermectin, pyrantel pamoate
6500                                                                                                                 sarolaner
6522                                                                                               lufenuron, milbemycin oxime
6523                                                                                                                afoxolaner
6527                                                                                               lufenuron, milbemycin oxime
6528                                                                                                                afoxolaner
6555                                                                                               lufenuron, milbemycin oxime
6562                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6565                                                                                              ivermectin, pyrantel pamoate
6569                                                                                                                ivermectin
6570                                                                                                  fipronil, (s)-methoprene
6571                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6573                                                                                                  fipronil, (s)-methoprene
6579                                                                                                                fluralaner
6581                                                                                              ivermectin, pyrantel pamoate
6594                                                                                               lufenuron, milbemycin oxime
6602                                                                                               lufenuron, milbemycin oxime
6606                                                                                              ivermectin, pyrantel pamoate
6612                                                                                                          milbemycin oxime
6625                                                                                                          milbemycin oxime
6636                                                                                               lufenuron, milbemycin oxime
6644                                                                                               lufenuron, milbemycin oxime
6647                                                                                               lufenuron, milbemycin oxime
6648                                                                                                                 sarolaner
6650                                                                                         betamethasone, gentamicin sulfate
6657                                                                                              ivermectin, pyrantel pamoate
6658                                                                                              ivermectin, pyrantel pamoate
6662                                                                                              ivermectin, pyrantel pamoate
6663                                                                                              ivermectin, pyrantel pamoate
6680                                                                                                  imidacloprid, moxidectin
6683                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6687                                                                                                                ivermectin
6688                                                                                                  fipronil, (s)-methoprene
6693                                                                                                                ivermectin
6694                                                                                         trimeprazine tartrate, prednisone
6696                                                                                                                ivermectin
6697                                                                                                  fipronil, (s)-methoprene
6698                                                                                              ivermectin, pyrantel pamoate
6702                                                                                                                ivermectin
6703                                                                                                  fipronil, (s)-methoprene
6714                                                                                                                  diazepam
6715                                                                                               lufenuron, milbemycin oxime
6716                                                                                                        calming supplement
6717                                                                                                               shen calmer
6733                                                                                              ivermectin, pyrantel pamoate
6751                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6759                                                                           betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                              ivermectin, pyrantel pamoate
6763                                                                                              ivermectin, pyrantel pamoate
6764                                                                                                  fipronil, (s)-methoprene
6778                                                                                               lufenuron, milbemycin oxime
6779                                                                                               lufenuron, milbemycin oxime
6781                                                                                               lufenuron, milbemycin oxime
6783                                                                                            milbemycin oxime, praziquantel
6786                                                                                                imidacloprid, pyriproxyfen
6796                                                                                               lufenuron, milbemycin oxime
6797                                                                                                          milbemycin oxime
6815                                                                                                                ivermectin
6816                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6824                                                                                            polysulfated glycosaminoglycan
6826                                                                                                                grapiprant
6828                                                                                               lufenuron, milbemycin oxime
6864                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6868                                                                                                                isoflurane
6880                                                                                                                isoflurane
6886                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6891                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6908                                                                    hydrocortisone, gentamicin sulfate, miconazole nitrate
6909                                                                                                                ivermectin
6910                                                                                ivermectin, praziquantel, pyrantel pamoate
6928                                                                                     chlorhexidine gluconate, ketoconazole
6934                                                                          chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                      burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                           ear cleaner (epi-otic advanced)
6946                                                                                                milbemycin oxime, spinosad
6956                                                                                                                 mupirocin
6957                                                                                                                lokivetmab
6981                                                                                                                fluralaner
6982                                                                                                                ivermectin
6983                                                                                                                ivermectin
6984                                                                                                                 probiotic
6986                                                                                                               clindamycin
6999                                                                              florfenicol, mometasone furoate, terbinafine
7002                                                                                                milbemycin oxime, spinosad
7005                                                                                                              ketoconazole
7006                                                                                                unspecified shampoo/mousse
7017                                                                                                                 sarolaner
7018                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
7021                                                                                                                 sarolaner
7023                                                                                                                moxidectin
7025                                                                            mometasone furoate, orbifloxacin, posaconazole
7027                                                                              dexamethasone, neomycin sulfate, polymyxin b
7030                                                                                                          milbemycin oxime
7042                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7054                                                                                              ivermectin, pyrantel pamoate
7067                                                                                               lufenuron, milbemycin oxime
7071                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7092                                                                                         betamethasone, gentamicin sulfate
7093                                                                                                milbemycin oxime, spinosad
7095                                                                                                milbemycin oxime, spinosad
7096                                                                                                milbemycin oxime, spinosad
7116                                                                           dexamethasone, enrofloxacin, miconazole nitrate
7127                                                                                        chlorhexidine gluconate, tris-edta
7130                                                                                                milbemycin oxime, spinosad
7131                                                                                              ivermectin, pyrantel pamoate
7137                                                 digestive supplement, immune support supplement, skin and coat supplement
7149                                                                                                milbemycin oxime, spinosad
7151                                                                              dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                 probiotic
7153                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                       ear cleaner (zymox), hydrocortisone
7155                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7172                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                   acetic acid, boric acid
7175                                                                                                                 mupirocin
7177                                                                                         betamethasone, gentamicin sulfate
7180                                                                                         betamethasone, gentamicin sulfate
7189                                                                                         betamethasone, gentamicin sulfate
7208                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7218                                                                                                milbemycin oxime, spinosad
7240                                                                                                                diclofenac
7243                                                                                              ivermectin, pyrantel pamoate
7247                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                afoxolaner
7249                                                                                              ivermectin, pyrantel pamoate
7260                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                              ivermectin, pyrantel pamoate
7262                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7291                                                                                                                 sarolaner
7295                                                                                                                 sarolaner
7297                                                                                                  joint supplement (other)
7320                                                                                              ivermectin, pyrantel pamoate
7342                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7344                                                                                                                ivermectin
7345                                                                                                                ivermectin
7346                                                                                                  fipronil, (s)-methoprene
7371                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7413                                                                                              ivermectin, pyrantel pamoate
7499                                                                                              ivermectin, pyrantel pamoate
7503                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7510                                                                                                                ivermectin
7511                                                                                                                afoxolaner
7512                                                                                                              multivitamin
7513                                                                                                               omega 3-6-9
7519                                                                                              ivermectin, pyrantel pamoate
7521                                                                                              ivermectin, pyrantel pamoate
7524                                                                                                               omega 3-6-9
7525                                                                                              ivermectin, pyrantel pamoate
7526                                                                                                                afoxolaner
7551                                                                                                                afoxolaner
7555                                                                                                                fluralaner
7563                                                                                              ivermectin, pyrantel pamoate
7564                                                                                                          phytosphingosine
7565                                                                                              ivermectin, pyrantel pamoate
7566                                                                                              ivermectin, pyrantel pamoate
7576                                                                                                  fipronil, (s)-methoprene
7577                                                                                               lufenuron, milbemycin oxime
7578                                                                                               lufenuron, milbemycin oxime
7579                                                                                                                cephalexin
7580                                                                                                                 carprofen
7583                                                                                               lufenuron, milbemycin oxime
7584                                                                                               lufenuron, milbemycin oxime
7585                                                                                                                 probiotic
7586                                                                                                           cbd or hemp oil
7587                                                                                                 immune support supplement
7588                                                                                                                   omega 3
7589                                                                                toothpaste/dental health solution or chews
7590                                                                                                                     algae
7598                                                                                        chlorhexidine gluconate, ophytrium
7635                                                                                dextromethorphan hydrobromide, guaifenesin
7660                                                                                               lufenuron, milbemycin oxime
7671                                                                                   transcranial magnetic stimulation (tms)
7673                                                                                                          pyrantel pamoate
7674                                                                                                          sulfadimethoxine
7675                                                                                                milbemycin oxime, spinosad
7678                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                   ketoconazole, tris-edta
7681                                                                                                milbemycin oxime, spinosad
7692                                                                                            milbemycin oxime, praziquantel
7696                                                                                            milbemycin oxime, praziquantel
7699                                                                                            milbemycin oxime, praziquantel
7701                                                                                            milbemycin oxime, praziquantel
7705                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7732                                                                                ivermectin, praziquantel, pyrantel pamoate
7742                                                                                              ivermectin, pyrantel pamoate
7743                                                                                                  fipronil, (s)-methoprene
7746                                                                                              ivermectin, pyrantel pamoate
7747                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                   omega 3
7749                                                                                              ivermectin, pyrantel pamoate
7750                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                       ear cleaner (zymox), hydrocortisone
7754                                                                                                                 carvacrol
7759                                                                                     dinotefuran, permethrin, pyriproxyfen
7763                                                                                              ivermectin, pyrantel pamoate
7772                                                                                                                 probiotic
7776                                                                                                                 vitamin d
7783                                                                                                                  fipronil
7784                                                                                               lufenuron, milbemycin oxime
7787                                                                                     dinotefuran, permethrin, pyriproxyfen
7795                                                                                                                   omega 3
7812                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7818                                                                                         trimeprazine tartrate, prednisone
7820                                                                                         betamethasone, gentamicin sulfate
7822                                                                                         betamethasone, gentamicin sulfate
7832                                                                                                  fipronil, (s)-methoprene
7839                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7845                                                                                                       ear cleaner (zymox)
7846                                                                            mometasone furoate, orbifloxacin, posaconazole
7848                                                                                                    unspecified medication
7852                                                                                                               hydrocodone
7853                                                                                                         albuterol sulfate
7854                                                                                                        maropitant citrate
7862                                                                                                                    arnica
7883                                                                                                          milbemycin oxime
7884                                                                                                                afoxolaner
7885                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7887                                                                              florfenicol, mometasone furoate, terbinafine
7889                                                                              florfenicol, mometasone furoate, terbinafine
7895                                                                                dimethyl sulfoxide, fluocinolone acetonide
7926                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7929                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7941                                                                                                 bordetella bronchiseptica
7944                                                                                                   acetic acid, boric acid
7946                                                                                                          phytosphingosine
7961                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7966                                                                                              ivermectin, pyrantel pamoate
7967                                                                                                                afoxolaner
7968                                                                                              ivermectin, pyrantel pamoate
7969                                                                                                                afoxolaner
7970                                                                                        amoxicillin, clavulanate potassium
7973                                                                                              ofloxacin, unspecified nsaid
7987                                                                                                milbemycin oxime, spinosad
7988                                                                                              ivermectin, pyrantel pamoate
7993                                                                                                                selamectin
7995                                                                                            polysulfated glycosaminoglycan
7998                                                                                                                selamectin
8000                                                                                                                selamectin
8009                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8012                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8014                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8017                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8029                                                                                              ivermectin, pyrantel pamoate
8030                                                                                              ivermectin, pyrantel pamoate
8040                                                                                              ivermectin, pyrantel pamoate
8042                                                                                               lufenuron, milbemycin oxime
8043                                                                                            milbemycin oxime, praziquantel
8044                                                                                            milbemycin oxime, praziquantel
8045                                                                                                          milbemycin oxime
8075                                                                                                        calming supplement
8086                                                                           betamethasone, clotrimazole, gentamicin sulfate
8091                                                                                        amoxicillin, clavulanate potassium
8098                                                                                                  fipronil, (s)-methoprene
8099                                                                                            milbemycin oxime, praziquantel
8120                                                                                                                ivermectin
8121                                                                                                                ivermectin
8123                                                                                                                ivermectin
8125                                                                                            joint supplement (unspecified)
8128                                                                                                   ketoconazole, tris-edta
8130                                                                                              ivermectin, pyrantel pamoate
8131                                                                                                                afoxolaner
8136                                                                                            milbemycin oxime, praziquantel
8137                                                                                                                 lotilaner
8138                                                                                                          milbemycin oxime
8139                                                                                                                 lotilaner
8140                                                                                                   ketoconazole, tris-edta
8160                                                                                                                 probiotic
8182                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8184                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                              ivermectin, pyrantel pamoate
8186                                                                                              ivermectin, pyrantel pamoate
8187                                                                                              ivermectin, pyrantel pamoate
8188                                                                                                                afoxolaner
8195                                                                                              ivermectin, pyrantel pamoate
8196                                                                                                                afoxolaner
8205                                                                                                                  fipronil
8206                                                                                 lufenuron, milbemycin oxime, praziquantel
8207                                                                                 lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                  fipronil
8209                                                                                               lufenuron, milbemycin oxime
8210                                                                                               lufenuron, milbemycin oxime
8211                                                                                                      fipronil, permethrin
8212                                                                                               lufenuron, milbemycin oxime
8215                                                                                                      fipronil, permethrin
8221                                                                                                                ivermectin
8222                                                                                                                ivermectin
8223                                                                                                                ivermectin
8224                                                                                              ivermectin, pyrantel pamoate
8234                                                                            dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                   chlorhexidine gluconate
8236                                                                                         betamethasone, gentamicin sulfate
8238                                                                                                   chlorhexidine gluconate
8248                                                                                                                fluralaner
8251                                                                                                             metronidazole
8252                                                                                         betamethasone, gentamicin sulfate
8280                                                                                                                isoflurane
8284                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8293                                                                                         betamethasone, gentamicin sulfate
8296                                                                                              ivermectin, pyrantel pamoate
8297                                                                                                  fipronil, (s)-methoprene
8298                                                                                       ear cleaner (zymox), hydrocortisone
8299                                                                                         allergy immunotherapy - injection
8300                                                                                                                diclofenac
8304                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8305                                                   acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
8311                                                                                                              flurbiprofen
8312                                                                                          burow's solution, hydrocortisone
8313                                                                                                              flurbiprofen
8314                                                                                              ivermectin, pyrantel pamoate
8315                                                                                                imidacloprid, pyriproxyfen
8337                                                                                                             cephalosporin
8338                                                                                                                prednisone
8341                                                                              dexamethasone, neomycin sulfate, polymyxin b
8349                                                                                     dinotefuran, permethrin, pyriproxyfen
8354                                                                                               lufenuron, milbemycin oxime
8355                                                                                        fipronil, permethrin, pyriproxyfen
8358                                                                                               lufenuron, milbemycin oxime
8359                                                                                                                fluralaner
8362                                                                                               chloroxylenol, ketoconazole
8369                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                               lufenuron, milbemycin oxime
8371                                                                                                                 sarolaner
8376                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                               lufenuron, milbemycin oxime
8378                                                                                                                 sarolaner
8389                                                                                              ivermectin, pyrantel pamoate
8405                                                                                                 unspecified otic ear pack
8408                                                                                              ivermectin, pyrantel pamoate
8410                                                                                                                ivermectin
8418                                                                                                                isoflurane
8420                                                                                                                ivermectin
8421                                                                                                                ivermectin
8424                                                                                                imidacloprid, pyriproxyfen
8425                                                                                              ivermectin, pyrantel pamoate
8427                                                                                              ivermectin, pyrantel pamoate
8435                                                                                                                 probiotic
8436                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8440                                                                                                  fipronil, (s)-methoprene
8454                                                                                                          milbemycin oxime
8466                                                                                               lufenuron, milbemycin oxime
8467                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8475                                                                                                   chlorhexidine gluconate
8478                                                                                                   chlorhexidine gluconate
8509                                                                                                                 probiotic
8514                                                                                               lufenuron, milbemycin oxime
8515                                                                                               lufenuron, milbemycin oxime
8528                                                                                            milbemycin oxime, praziquantel
8531                                                                                            milbemycin oxime, praziquantel
8541                                                                                                        miconazole nitrate
8546                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8550                                                                                ivermectin, praziquantel, pyrantel pamoate
8554                                                                                                          milbemycin oxime
8555                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8578                                                                                                   acetic acid, boric acid
8581                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                               lufenuron, milbemycin oxime
8583                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                       ear cleaner (zymox), hydrocortisone
8585                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
8588                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8591                                                                                                milbemycin oxime, spinosad
8607                                                                                                imidacloprid, pyriproxyfen
8609                                                                                               lufenuron, milbemycin oxime
8613                                                                                         betamethasone, gentamicin sulfate
8673                                                                                                milbemycin oxime, spinosad
8674                                                                                                milbemycin oxime, spinosad
8675                                                                                                milbemycin oxime, spinosad
8676                                                                                                milbemycin oxime, spinosad
8677                                                                                                milbemycin oxime, spinosad
8694                                                                                                  fipronil, (s)-methoprene
8697                                                                                       allergy immunotherapy - unspecified
8702                                                                                                  fipronil, (s)-methoprene
8707                                                                                                  fipronil, (s)-methoprene
8731                                                                                                  flumethrin, imidacloprid
8735                                                                                                                 mupirocin
8736                                                                                     chlorhexidine gluconate, ketoconazole
8744                                                                                                                 mupirocin
8745                                                                                     chlorhexidine gluconate, ketoconazole
8756                                                                                                          milbemycin oxime
8757                                                                                                          milbemycin oxime
8759                                                                                                imidacloprid, pyriproxyfen
8760                                                                                               lufenuron, milbemycin oxime
8768                                                                                              ivermectin, pyrantel pamoate
8769                                                                                     dinotefuran, permethrin, pyriproxyfen
8770                                                                                              ivermectin, pyrantel pamoate
8771                                                                                     dinotefuran, permethrin, pyriproxyfen
8777                                                                                              ivermectin, pyrantel pamoate
8778                                                                                              ivermectin, pyrantel pamoate
8779                                                                                     dinotefuran, permethrin, pyriproxyfen
8780                                                                                              ivermectin, pyrantel pamoate
8781                                                                                     dinotefuran, permethrin, pyriproxyfen
8786                                                                                              ivermectin, pyrantel pamoate
8790                                                                                              ivermectin, pyrantel pamoate
8791                                                                                                                fluralaner
8792                                                                                                   ketoconazole, tris-edta
8793                                                                                                                fluralaner
8794                                                                                              ivermectin, pyrantel pamoate
8795                                                                                              ivermectin, pyrantel pamoate
8797                                                                                                                gabapentin
8805                                                                                                                ivermectin
8815                                                                              dexamethasone, neomycin sulfate, polymyxin b
8819                                                                                              ivermectin, pyrantel pamoate
8820                                                                                                                afoxolaner
8825                                                                                        amoxicillin, clavulanate potassium
8826                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
8828                                                                                              ivermectin, pyrantel pamoate
8831                                                                                              ivermectin, pyrantel pamoate
8833                                                                                              ivermectin, pyrantel pamoate
8837                                                                                                                afoxolaner
8843                                                                                                  fipronil, (s)-methoprene
8851                                                                                                                 probiotic
8852                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
8860                                                                           betamethasone, clotrimazole, gentamicin sulfate
8875                                                                                                                lokivetmab
8876                                                                                         betamethasone, gentamicin sulfate
8877                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8879                                                                                              ivermectin, pyrantel pamoate
8885                                                                                              ivermectin, pyrantel pamoate
8908                                                                                                milbemycin oxime, spinosad
8911                                                                                               lufenuron, milbemycin oxime
8929                                                                                ivermectin, praziquantel, pyrantel pamoate
8930                                                                                ivermectin, praziquantel, pyrantel pamoate
8961                                                                                ivermectin, praziquantel, pyrantel pamoate
8962                                                                                ivermectin, praziquantel, pyrantel pamoate
8995                                                                                                        miconazole nitrate
8997                                                                           dexamethasone, enrofloxacin, miconazole nitrate
8998                                                                           dexamethasone, enrofloxacin, miconazole nitrate
9026                                                                                            milbemycin oxime, praziquantel
9046                                                                                               lufenuron, milbemycin oxime
9047                                                                           betamethasone, clotrimazole, gentamicin sulfate
9049                                                                              dexamethasone, neomycin sulfate, polymyxin b
9050                                                                                               lufenuron, milbemycin oxime
9052                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                 probiotic
9054                                                                                                          milbemycin oxime
9055                                                                                              ivermectin, pyrantel pamoate
9056                                                                                            milbemycin oxime, praziquantel
9060                                                                                              ivermectin, pyrantel pamoate
9064                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                sucralfate
9070                                                                                              ivermectin, pyrantel pamoate
9071                                                                                                                fluralaner
9084                                                                                                    unspecified medication
9094                                                                                                milbemycin oxime, spinosad
9095                                                                                              ivermectin, pyrantel pamoate
9098                                                                                              ivermectin, pyrantel pamoate
9099                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                 probiotic
9101                                                                                                                   omega 3
9109                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9118                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9132                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9135                                                                                                             metronidazole
9136                                                                                          burow's solution, hydrocortisone
9137                                                                                                      cefpodoxime proxetil
9156                                                                           betamethasone, clotrimazole, gentamicin sulfate
9160                                                                                                  fipronil, (s)-methoprene
9161                                                                                              ivermectin, pyrantel pamoate
9170                                                                                                          milbemycin oxime
9187                                                                                         betamethasone, gentamicin sulfate
9189                                                                                              ivermectin, pyrantel pamoate
9193                                                                                                                 probiotic
9202                                                                                              ivermectin, pyrantel pamoate
9230                                                                                           ear cleaner (epi-otic advanced)
9236                                                                                              ivermectin, pyrantel pamoate
9239                                                                                       allergy immunotherapy - unspecified
9240                                                                                            unspecified allergy medication
9241                                                                                             allergy immunotherapy - drops
9242                                                                                              ivermectin, pyrantel pamoate
9244                                                                                       allergy immunotherapy - unspecified
9252                                                                                                                ivermectin
9253                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                              ivermectin, pyrantel pamoate
9259                                                                                                                afoxolaner
9267                                                                                                          milbemycin oxime
9269                                                                                              ivermectin, pyrantel pamoate
9271                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9292                                                                                                milbemycin oxime, spinosad
9294                                                                                                milbemycin oxime, spinosad
9295                                                                                                milbemycin oxime, spinosad
9297                                                                                                                   omega 3
9384                                                                                       ear cleaner (zymox), hydrocortisone
9385                                                                                                       ear cleaner (zymox)
9386                                                                                              ivermectin, pyrantel pamoate
9387                                                                                     dinotefuran, permethrin, pyriproxyfen
9416                                                                                                   acetic acid, boric acid
9418                                                                                                          phytosphingosine
9421                                                                                                  flumethrin, imidacloprid
9422                                                                                              ivermectin, pyrantel pamoate
9426                                                                                              ivermectin, pyrantel pamoate
9429                                                       bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9432                                                                                                  flumethrin, imidacloprid
9433                                                                                              ivermectin, pyrantel pamoate
9434                                                                                              ivermectin, pyrantel pamoate
9435                                                                                         allergy immunotherapy - injection
9436                                                                                              ivermectin, pyrantel pamoate
9438                                                                                         allergy immunotherapy - injection
9447                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9452                                                                                              ivermectin, pyrantel pamoate
9453                                                                                                  fipronil, (s)-methoprene
9454                                                                              dexamethasone, neomycin sulfate, polymyxin b
9494                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9511                                                                                        amoxicillin, clavulanate potassium
9516                                                                              dexamethasone, neomycin sulfate, polymyxin b
9524                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9544                                                                                                                afoxolaner
9546                                                                                                                afoxolaner
9548                                                                                                                 sarolaner
9549                                                                                                                afoxolaner
9584                                                                                                          milbemycin oxime
9588                                                                                                                 tris-edta
9592                                                                              dexamethasone, neomycin sulfate, polymyxin b
9596                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9600                                                                                               lufenuron, milbemycin oxime
9601                                                                                                                ivermectin
9602                                                                                                                 carprofen
9603                                                                                                                  tramadol
9604                                                                                               acepromazine, hydromorphone
9609                                                                                               lufenuron, milbemycin oxime
9610                                                                                                                fluralaner
9612                                                                           betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                         betamethasone, gentamicin sulfate
9614                                                                                     chlorhexidine gluconate, ketoconazole
9615                                                                                               lufenuron, milbemycin oxime
9616                                                                                                                fluralaner
9617                                                                                               lufenuron, milbemycin oxime
9618                                                                                                                fluralaner
9619                                                                                               lufenuron, milbemycin oxime
9620                                                                                                                fluralaner
9621                                                                                               lufenuron, milbemycin oxime
9635                                                                                                milbemycin oxime, spinosad
9640                                                                                                milbemycin oxime, spinosad
9641                                                                                                milbemycin oxime, spinosad
9643                                                                                                milbemycin oxime, spinosad
9718                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9723                                                                                              ivermectin, pyrantel pamoate
9759                                                                                              ivermectin, pyrantel pamoate
9760                                                                                                imidacloprid, pyriproxyfen
9761                                                                                              ivermectin, pyrantel pamoate
9763                                                                                                                ivermectin
9764                                                                                                                cetirizine
9765                                                                                                                afoxolaner
9766                                                                                                                ivermectin
9770                                                                                ivermectin, praziquantel, pyrantel pamoate
9785                                                                                              ivermectin, pyrantel pamoate
9791                                                                                                          milbemycin oxime
9800                                                                                                          milbemycin oxime
9807                                                                              dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                               latanoprost
9809                                                                                                               dorzolamide
9821                                                                                                                 probiotic
9823                                                                                                                 tris-edta
9824                                                                                                        miconazole nitrate
9825                                                                                                                 tris-edta
9826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9827                                                                                                        miconazole nitrate
9828                                                                                                               hydrocodone
9833                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9837                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9840                                                                                    dexamethasone, ketoconazole, tris-edta
9843                                                                                                                    arnica
9863                                                                                                        miconazole nitrate
9865                                                                                         betamethasone, gentamicin sulfate
9873                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9877                                                                                                                 carprofen
9884                                                                                                              cyclosporine
9889                                                                                                                ivermectin
9890                                                                                        fipronil, permethrin, pyriproxyfen
9891                                                                                                              cyclosporine
9892                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                afoxolaner
9894                                                                                                          milbemycin oxime
9895                                                                                                                afoxolaner
9896                                                                                                              cyclosporine
9897                                                                                                          milbemycin oxime
9898                                                                                                                afoxolaner
9899                                                                                            milbemycin oxime, praziquantel
9900                                                                                                                   omega 3
9901                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                afoxolaner
9903                                                                                                              cyclosporine
9907                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9917                                                                                                                ivermectin
9928                                                                                                           dexmedetomidine
9931                                                                                                                ivermectin
9935                                                                                                milbemycin oxime, spinosad
9942                                                                                                      rx diet - gi low fat
9943                                                                                                milbemycin oxime, spinosad
9944                                                                                                milbemycin oxime, spinosad
9945                                                                                              ivermectin, pyrantel pamoate
9961                                                                                        fipronil, permethrin, pyriproxyfen
9963                                                                                                  imidacloprid, permethrin
9966                                                                                                imidacloprid, pyriproxyfen
9968                                                                                                imidacloprid, pyriproxyfen
9970                                                                                                   acetic acid, boric acid
9972                                                                                                imidacloprid, pyriproxyfen
10017                                                                                              lufenuron, milbemycin oxime
10026                                                                                              lufenuron, milbemycin oxime
10027                                                                                                 flumethrin, imidacloprid
10037                                                                                              dexamethasone, ketoconazole
10042                                                                             florfenicol, mometasone furoate, terbinafine
10053                                                                                              lufenuron, milbemycin oxime
10061                                                                                          ear cleaner (epi-otic advanced)
10063                                                                                                 flumethrin, imidacloprid
10066                                                                                                 flumethrin, imidacloprid
10074                                                                             dexamethasone, neomycin sulfate, polymyxin b
10075                                                                                                               ivermectin
10092                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                        betamethasone, gentamicin sulfate
10106                                                                                             ivermectin, pyrantel pamoate
10107                                                                                                 fipronil, (s)-methoprene
10108                                                                                             ivermectin, pyrantel pamoate
10109                                                                                                 fipronil, (s)-methoprene
10111                                                                                             ivermectin, pyrantel pamoate
10112                                                                                             ivermectin, pyrantel pamoate
10113                                                                                                 fipronil, (s)-methoprene
10115                                                                                             ivermectin, pyrantel pamoate
10116                                                                                                 fipronil, (s)-methoprene
10119                                                                                             ivermectin, pyrantel pamoate
10120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                probiotic
10130                                                                                                                 propofol
10131                                                                                                            buprenorphine
10132                                                                                                             acepromazine
10133                                                                                                         atropine sulfate
10134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10149                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10160                                                                                                            dexamethasone
10167                                                                                             ivermectin, pyrantel pamoate
10170                                                                                             ivermectin, pyrantel pamoate
10176                                                                          betamethasone, clotrimazole, gentamicin sulfate
10187                                                                          betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                        trimeprazine tartrate, prednisone
10195                                                                                                            metronidazole
10198                                                                                                 imidacloprid, permethrin
10200                                                                                                               fluralaner
10209                                                                                             ivermectin, pyrantel pamoate
10219                                                                                             ivermectin, pyrantel pamoate
10230                                                                                             ivermectin, pyrantel pamoate
10231                                                                                                               afoxolaner
10232                                                                                                               prednisone
10233                                                                                                          diphenhydramine
10234                                                                                                               cetirizine
10235                                                                                             ivermectin, pyrantel pamoate
10245                                                                                             ivermectin, pyrantel pamoate
10249                                                                                                 fipronil, (s)-methoprene
10260                                                                                                 flumethrin, imidacloprid
10264                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10273                                                                                             ivermectin, pyrantel pamoate
10274                                                                                                               afoxolaner
10275                                                                                             ivermectin, pyrantel pamoate
10276                                                                                                               afoxolaner
10301                                                                                              lufenuron, milbemycin oxime
10312                                                                                                               selamectin
10313                                                                                           praziquantel, pyrantel pamoate
10314                                                                                       amoxicillin, clavulanate potassium
10316                                                                                                            ciprofloxacin
10320                                                                                       amoxicillin, clavulanate potassium
10324                                                                                                               selamectin
10334                                                                                               milbemycin oxime, spinosad
10335                                                                                                               fluralaner
10345                                                                                                       calming supplement
10347                                                                                                 urinary tract supplement
10348                                                                                                            magnolia bark
10349                                                                                        betamethasone, gentamicin sulfate
10356                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10365                                                                                             ivermectin, pyrantel pamoate
10366                                                                                       fipronil, permethrin, pyriproxyfen
10370                                                                                             ivermectin, pyrantel pamoate
10372                                                                                                               ivermectin
10374                                                                                             ivermectin, pyrantel pamoate
10379                                                                                           milbemycin oxime, praziquantel
10400                                                                                                               ivermectin
10403                                                                                                 fipronil, (s)-methoprene
10405                                                                                                 fipronil, (s)-methoprene
10408                                                                                                         milbemycin oxime
10409                                                                                                         milbemycin oxime
10410                                                                                           milbemycin oxime, praziquantel
10412                                                                                                         milbemycin oxime
10429                                                                          betamethasone, clotrimazole, gentamicin sulfate
10432                                                                                                               selamectin
10435                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
10441                                                                                       chlorhexidine gluconate, ophytrium
10445                                                                                        betamethasone, gentamicin sulfate
10470                                                                                                                mupirocin
10477                                                                                               imidacloprid, pyriproxyfen
10478                                                                               ivermectin, praziquantel, pyrantel pamoate
10483                                                                                             ivermectin, pyrantel pamoate
10485                                                                                                               ivermectin
10487                                                                                                               ivermectin
10499                                                                                                         milbemycin oxime
10503                                                                                                         milbemycin oxime
10505                                                                                             ivermectin, pyrantel pamoate
10506                                                                               ivermectin, praziquantel, pyrantel pamoate
10525                                                                                       staphylococcus aureus phage lysate
10526                                                                                      allergy immunotherapy - unspecified
10529                                                                                                                mupirocin
10555                                                                                                                mupirocin
10557                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10565                                                                                        betamethasone, gentamicin sulfate
10573                                                      betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10575                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                          diphenhydramine
10577                                                                                                               famotidine
10578                                                                                                       maropitant citrate
10579                                                                                                            metronidazole
10580                                                                                                              vinblastine
10583                                                                                               milbemycin oxime, spinosad
10588                                                                                                               ivermectin
10589                                                                                             ivermectin, pyrantel pamoate
10590                                                                                             ivermectin, pyrantel pamoate
10591                                                                                             ivermectin, pyrantel pamoate
10610                                                                                             ivermectin, pyrantel pamoate
10617                                                                                       fipronil, permethrin, pyriproxyfen
10618                                                                               ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                     cefpodoxime proxetil
10624                                                                                               imidacloprid, pyriproxyfen
10628                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10642                                                                                                  chlorhexidine gluconate
10653                                                                                               milbemycin oxime, spinosad
10655                                                                                             ivermectin, pyrantel pamoate
10667                                                                                              lufenuron, milbemycin oxime
10671                                                                                               imidacloprid, pyriproxyfen
10678                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10682                                                                                                         pyrantel pamoate
10683                                                                                              lufenuron, milbemycin oxime
10684                                                                                              lufenuron, milbemycin oxime
10685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                  omega 3
10687                                                                                                             multivitamin
10688                                                                                                              coconut oil
10689                                                                                              lufenuron, milbemycin oxime
10693                                                                                                               cetirizine
10694                                                                                              lufenuron, milbemycin oxime
10696                                                                                                      ear cleaner (zymox)
10697 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10701                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10706                                                                                                         pyrantel pamoate
10707                                                                                              lufenuron, milbemycin oxime
10711                                                                                              lufenuron, milbemycin oxime
10712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                  omega 3
10714                                                                                                             multivitamin
10715                                                                                                              coconut oil
10717                                                                                              lufenuron, milbemycin oxime
10718                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10725                                                                                              lufenuron, milbemycin oxime
10726 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                   unspecified medication
10740                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10743                                                                                                  chlorhexidine gluconate
10751                                                                                           ketoconazole, phytosphingosine
10755                                                                                             ivermectin, pyrantel pamoate
10756                                                                                                               ivermectin
10769                                                                                             ivermectin, pyrantel pamoate
10780                                                                                             ivermectin, pyrantel pamoate
10781                                                                                                               afoxolaner
10792                                                                                             ivermectin, pyrantel pamoate
10794                                                                                             ivermectin, pyrantel pamoate
10796                                                                                             ivermectin, pyrantel pamoate
10825                                                                                                 flumethrin, imidacloprid
10827                                                                                                 flumethrin, imidacloprid
10830                                                                                             ivermectin, pyrantel pamoate
10837                                                                                       amoxicillin, clavulanate potassium
10841                                                                                        trimeprazine tartrate, prednisone
10842                                                                                             ivermectin, pyrantel pamoate
10843                                                                                                               selamectin
10846                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10849                                                                                             ivermectin, pyrantel pamoate
10853                                                                                                                  amitraz
10863                                                                                        betamethasone, gentamicin sulfate
10865                                                                                             ivermectin, pyrantel pamoate
10866                                                                                       fipronil, permethrin, pyriproxyfen
10870                                                                                              lufenuron, milbemycin oxime
10871                                                                                                 fipronil, (s)-methoprene
10874                                                                                              lufenuron, milbemycin oxime
10877                                                                                             ivermectin, pyrantel pamoate
10878                                                                                                               afoxolaner
10892                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10896                                                                           mometasone furoate, orbifloxacin, posaconazole
10898                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10899                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10901                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10905                                                                                        betamethasone, gentamicin sulfate
10928                                                                                                               afoxolaner
10929                                                                                             ivermectin, pyrantel pamoate
10934                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10938                                                                                                         milbemycin oxime
10953                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10959                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10970                                                                                                         milbemycin oxime
10971                                                                                                               fluralaner
11003                                                                                             afoxolaner, milbemycin oxime
11008                                                                                             ivermectin, pyrantel pamoate
11009                                                                                             ivermectin, pyrantel pamoate
11010                                                                                                               ivermectin
11011                                                                                             ivermectin, pyrantel pamoate
11016                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11021                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
11035                                                                                             ivermectin, pyrantel pamoate
11036                                                                                                               afoxolaner
11037                                                                                             ivermectin, pyrantel pamoate
11038                                                                                                               afoxolaner
11052                                                                             florfenicol, mometasone furoate, terbinafine
11065                                                                                              lufenuron, milbemycin oxime
11069                                                                                   joint supplement (glucosamine hcl/msm)
11070                                                                                              lufenuron, milbemycin oxime
11085                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11088                                                                                                          cbd or hemp oil
11093                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
11134                                                                                                 fipronil, (s)-methoprene
11142                                                                             florfenicol, mometasone furoate, terbinafine
11144                                                                                                  chlorhexidine gluconate
11145                                                                                                  ketoconazole, tris-edta
11152                                                                                              lufenuron, milbemycin oxime
11153                                                                                                 imidacloprid, permethrin
11155                                                                                              lufenuron, milbemycin oxime
11156                                                                                                 imidacloprid, permethrin
11158                                                                                lufenuron, milbemycin oxime, praziquantel
11159                                                                                             ivermectin, pyrantel pamoate
11163                                                                                             ivermectin, pyrantel pamoate
11165                                                                                             ivermectin, pyrantel pamoate
11182                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11186                                                                                             ivermectin, pyrantel pamoate
11189                                                                                             ivermectin, pyrantel pamoate
11208                                                                                              lufenuron, milbemycin oxime
11210                                                                                                                probiotic
11211                                                                                                   unspecified medication
11212                                                                                              lufenuron, milbemycin oxime
11213                                                                                                immune support supplement
11224                                                                                                               ivermectin
11228                                                                                             ivermectin, pyrantel pamoate
11229                                                                                             ivermectin, pyrantel pamoate
11233                                                                                                                probiotic
11241                                                                                               milbemycin oxime, spinosad
11242                                                                                              lufenuron, milbemycin oxime
11276                                                                                              lufenuron, milbemycin oxime
11291                                                                                             ivermectin, pyrantel pamoate
11292                                                                                                                 spinosad
11293                                                                                             ivermectin, pyrantel pamoate
11294                                                                                                               afoxolaner
11295                                                                                             ivermectin, pyrantel pamoate
11296                                                                                                               afoxolaner
11301                                                                                             ivermectin, pyrantel pamoate
11305                                                                                                 skin and coat supplement
11307                                                                                             ivermectin, pyrantel pamoate
11311                                                                                             ivermectin, pyrantel pamoate
11312                                                                                                                sarolaner
11315                                                                                             ivermectin, pyrantel pamoate
11316                                                                                                                sarolaner
11317                                                                                                              clindamycin
11318                                                                                                                firocoxib
11326                                                                                              lufenuron, milbemycin oxime
11327                                                                                               milbemycin oxime, spinosad
11338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11340                                                                               dextromethorphan hydrobromide, guaifenesin
11346                                                                                                      ear cleaner (zymox)
11349                                                                                                      ear cleaner (zymox)
11350                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                             ivermectin, pyrantel pamoate
11352                                                                                                               afoxolaner
11353                                                                                 febantel, praziquantel, pyrantel pamoate
11354                                                                                        betamethasone, gentamicin sulfate
11356                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11360                                                                                                                carprofen
11368                                                                                                         milbemycin oxime
11385                                                                                                               ivermectin
11386                                                                                                               ivermectin
11387                                                                                                             fenbendazole
11388                                                                                                             fenbendazole
11394                                                                                                               benzocaine
11415                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11436                                                                                lufenuron, milbemycin oxime, praziquantel
11437                                                                                              lufenuron, milbemycin oxime
11441                                                                                              lufenuron, milbemycin oxime
11464                                                                                      ear cleaner (zymox), hydrocortisone
11470                                                                                                               isoflurane
11471                                                                                                           dental sealant
11473                                                                                                               ivermectin
11477                                                                                             ivermectin, pyrantel pamoate
11493                                                                                       joint supplement (glucosamine hcl)
11509                                                                               ivermectin, praziquantel, pyrantel pamoate
11536                                                                                              lufenuron, milbemycin oxime
11537                                                                                              lufenuron, milbemycin oxime
11538                                                                                              lufenuron, milbemycin oxime
11545                                                                                              lufenuron, milbemycin oxime
11546                                                                                              lufenuron, milbemycin oxime
11547                                                                                              lufenuron, milbemycin oxime
11551                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11560                                                                                             ivermectin, pyrantel pamoate
11561                                                                                             ivermectin, pyrantel pamoate
11562                                                                                                               afoxolaner
11564                                                                               toothpaste/dental health solution or chews
11567                                                                                             ivermectin, pyrantel pamoate
11568                                                                                                               afoxolaner
11570                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11575                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                  omega 3
11577                                                                                                                probiotic
11578                                                                                            unspecified vision supplement
11589                                                                                                               ivermectin
11593                                                                                             ivermectin, pyrantel pamoate
11596                                                                                             ivermectin, pyrantel pamoate
11599                                                                                                 fipronil, (s)-methoprene
11600                                                                                             ivermectin, pyrantel pamoate
11620                                                                           mometasone furoate, orbifloxacin, posaconazole
11621                                                                             florfenicol, mometasone furoate, terbinafine
11627                                                                                                               ivermectin
11628                                                                                                 fipronil, (s)-methoprene
11630                                                                                                               ivermectin
11633                                                                                             ivermectin, pyrantel pamoate
11637                                                                                                               afoxolaner
11641                                                                                                         milbemycin oxime
11651                                                                                                               ivermectin
11652                                                                                                 imidacloprid, permethrin
11653                                                                                               milbemycin oxime, spinosad
11654                                                                                              lufenuron, milbemycin oxime
11655                                                                                               milbemycin oxime, spinosad
11656                                                                                              lufenuron, milbemycin oxime
11660                                                                                lufenuron, milbemycin oxime, praziquantel
11661                                                                                lufenuron, milbemycin oxime, praziquantel
11662                                                                                                               fluralaner
11664                                                                                                               fluralaner
11666                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                        dexamethasone, miconazole nitrate
11671                                                                                  betamethasone, florfenicol, terbinafine
11673                                                                                                         phytosphingosine
11678                                                                                             ivermectin, pyrantel pamoate
11680                                                                                                 fipronil, (s)-methoprene
11681                                                                                             ivermectin, pyrantel pamoate
11683                                                                                             ivermectin, pyrantel pamoate
11691                                                                                              lufenuron, milbemycin oxime
11692                                                                          betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                          ear cleaner (epi-otic advanced)
11695                                                                                                  acetic acid, boric acid
11701                                                                                                               ivermectin
11702                                                                                             ivermectin, pyrantel pamoate
11709                                                                                       joint supplement (glucosamine hcl)
11710                                                                                                                   garlic
11719                                                                                              lufenuron, milbemycin oxime
11722                                                                                                          cbd or hemp oil
11723                                                                                                                   garlic
11735                                                                                                         milbemycin oxime
11741                                                                                                                  omega 3
11742                                                                                                               selamectin
11790                                                                          betamethasone, clotrimazole, gentamicin sulfate
11802                                                                                lufenuron, milbemycin oxime, praziquantel
11806                                         diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11812                                                                                              lufenuron, milbemycin oxime
11813                                                                                              lufenuron, milbemycin oxime
11814                                                                                               imidacloprid, pyriproxyfen
11817                                                                                              lufenuron, milbemycin oxime
11822                                                                                                               ivermectin
11823                                                                                                               ivermectin
11824                                                                                                 fipronil, (s)-methoprene
11825                                                                                                               afoxolaner
11832                                                                                             ivermectin, pyrantel pamoate
11833                                                                                             ivermectin, pyrantel pamoate
11835                                                                                             ivermectin, pyrantel pamoate
11836                                                                                             ivermectin, pyrantel pamoate
11837                                                                                                               afoxolaner
11840                                                                               dextromethorphan hydrobromide, guaifenesin
11844                                                                               dextromethorphan hydrobromide, guaifenesin
11846                                                                                               acetaminophen, hydrocodone
11847                                                                                             ivermectin, pyrantel pamoate
11848                                                                                             ivermectin, pyrantel pamoate
11850                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
11856                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11861                                                                                             ivermectin, pyrantel pamoate
11862                                                                                             ivermectin, pyrantel pamoate
11873                                                                                             ivermectin, pyrantel pamoate
11874                                                                                             ivermectin, pyrantel pamoate
11875                                                                                                               afoxolaner
11876                                                                                                                carprofen
11879                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
11881                                                                                             ivermectin, pyrantel pamoate
11882                                                                                                               afoxolaner
11889                                                                                                         milbemycin oxime
11898                                                                                             ivermectin, pyrantel pamoate
11911                                                                                                              oclacitinib
11919                                                                                                                probiotic
11930                                                                                                                probiotic
11959                                                                                              lufenuron, milbemycin oxime
11960                                                                               toothpaste/dental health solution or chews
11962                                                                                              lufenuron, milbemycin oxime
11964                                                                                              lufenuron, milbemycin oxime
11978                                                                                                  triamcinolone acetonide
11979                                                                                                 fipronil, (s)-methoprene
11980                                                                                                 fipronil, (s)-methoprene
11983                                                                                                 fipronil, (s)-methoprene
11993                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12009                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                  ketoconazole, tris-edta
12014                                                                                                               ivermectin
12018                                                                                    dinotefuran, permethrin, pyriproxyfen
12019                                                                               ivermectin, praziquantel, pyrantel pamoate
12020                                                                               ivermectin, praziquantel, pyrantel pamoate
12043                                                                                                               gabapentin
12047                                                                                   joint supplement (glucosamine hcl/msm)
12048                                                                                       fipronil, permethrin, pyriproxyfen
12051                                                                                                                probiotic
12054                                                                                   joint supplement (glucosamine hcl/msm)
12090                                                                                                         milbemycin oxime
12108                                                                          betamethasone, clotrimazole, gentamicin sulfate
12111                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12128                                                                                                               fluralaner
12129                                                                                             ivermectin, pyrantel pamoate
12130                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12135                                                                                                               fluralaner
12136                                                                                           milbemycin oxime, praziquantel
12154                                                                                   joint supplement (glucosamine hcl/msm)
12155                                                                                                        vision supplement
12159                                                                                   joint supplement (glucosamine hcl/msm)
12160                                                                                                        vision supplement
12164                                                                                   joint supplement (glucosamine hcl/msm)
12173                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12190                                                                                        betamethasone, gentamicin sulfate
12215                                                                                             ivermectin, pyrantel pamoate
12221                                                                                                              liver happy
12222                                                                                                              shen calmer
12223                                                                                                homeopathic vaccine spray
12261                                                                                               milbemycin oxime, spinosad
12271                                                                                                 fipronil, (s)-methoprene
12273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12283                                                                                           milbemycin oxime, praziquantel
12299                                                                                       amoxicillin, clavulanate potassium
12306                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12309                                                                                       chlorhexidine gluconate, ophytrium
12313                                                                                              lufenuron, milbemycin oxime
12314                                                                                               milbemycin oxime, spinosad
12322                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12324                                                                                               milbemycin oxime, spinosad
12334                                                                                                              vincristine
12336                                                                                                              doxorubicin
12337                                                                                          anti-cd52 monoclonal antibodies
12342                                                                                               milbemycin oxime, spinosad
12343                                                                                          anti-cd52 monoclonal antibodies
12346                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12349                                                                                          anti-cd52 monoclonal antibodies
12351                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12353                                                                                                    ampicillin, sulbactam
12364                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12366                                                                                               milbemycin oxime, spinosad
12376                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12379                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12386                                                                                           polysulfated glycosaminoglycan
12394                                                                                   joint supplement (glucosamine hcl/msm)
12398                                                                                                               ivermectin
12402                                                                                             ivermectin, pyrantel pamoate
12405                                                                                                         tylosin tartrate
12406                                                                                                                probiotic
12409                                                                                                                probiotic
12410                                                                                             ivermectin, pyrantel pamoate
12411                                                                                       fipronil, permethrin, pyriproxyfen
12414                                                                                             ivermectin, pyrantel pamoate
12415                                                                                                               afoxolaner
12417                                                                                             ivermectin, pyrantel pamoate
12418                                                                                                               afoxolaner
12420                                                                          betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                             ivermectin, pyrantel pamoate
12422                                                                                                                sarolaner
12423                                                                          betamethasone, clotrimazole, gentamicin sulfate
12427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12429                                                                                                   indoxacarb, permethrin
12430                                                                                             ivermectin, pyrantel pamoate
12431                                                                                                               afoxolaner
12432                                                                                                               fluralaner
12433                                                                                             ivermectin, pyrantel pamoate
12434                                                                                                                sarolaner
12438                                                                                             ivermectin, pyrantel pamoate
12439                                                                                                                sarolaner
12453                                                                                                               ivermectin
12454                                                                                             ivermectin, pyrantel pamoate
12455                                                                                             ivermectin, pyrantel pamoate
12456                                                                                             ivermectin, pyrantel pamoate
12457                                                                                                               afoxolaner
12461                                                                                       chlorhexidine gluconate, ophytrium
12462                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                  omega 3
12466                                                                               ivermectin, praziquantel, pyrantel pamoate
12473                                                                                                               selamectin
12474                                                                                                               selamectin
12475                                                                                                              oclacitinib
12477                                                                          betamethasone, clotrimazole, gentamicin sulfate
12481                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12485                                                                          betamethasone, clotrimazole, gentamicin sulfate
12487                                                                                                         sulfadimethoxine
12495                                                                                             ivermectin, pyrantel pamoate
12497                                                                                                                probiotic
12498                                                                                             ivermectin, pyrantel pamoate
12500                                                                                                               ivermectin
12506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12511                                                                                             ivermectin, pyrantel pamoate
12512                                                                                                               afoxolaner
12514                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12516                                                                                             ivermectin, pyrantel pamoate
12520                                                                                lufenuron, milbemycin oxime, praziquantel
12521                                                                                               milbemycin oxime, spinosad
12523                                                                                                         milbemycin oxime
12528                                                                                             ivermectin, pyrantel pamoate
12529                                                                                    dinotefuran, permethrin, pyriproxyfen
12530                                                                                             ivermectin, pyrantel pamoate
12535                                                                                                      silver sulfadiazine
12536                                                                                                                mupirocin
12540                                                                                             ivermectin, pyrantel pamoate
12541                                                                                    dinotefuran, permethrin, pyriproxyfen
12542                                                                                             ivermectin, pyrantel pamoate
12543                                                                                    dinotefuran, permethrin, pyriproxyfen
12546                                                                               toothpaste/dental health solution or chews
12547                                                                                   joint supplement (glucosamine hcl/msm)
12548                                                                                             ivermectin, pyrantel pamoate
12549                                                                                    dinotefuran, permethrin, pyriproxyfen
12550                                                                                             ivermectin, pyrantel pamoate
12551                                                                                    dinotefuran, permethrin, pyriproxyfen
12552                                                                                   joint supplement (glucosamine hcl/msm)
12553                                                                                             ivermectin, pyrantel pamoate
12554                                                                                    dinotefuran, permethrin, pyriproxyfen
12567                                                                                        dexamethasone, miconazole nitrate
12569                                                                                               milbemycin oxime, spinosad
12571                                                                                                       miconazole nitrate
12578                                                                                             ivermectin, pyrantel pamoate
12580                                                                                             ivermectin, pyrantel pamoate
12585                                                                                             ivermectin, pyrantel pamoate
12588                                                                           dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                             ivermectin, pyrantel pamoate
12595                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                  omega 3
12605                                                                                                         milbemycin oxime
12608                                                                                           milbemycin oxime, praziquantel
12615                                                                                                               moxidectin
12616                                                                                                               ivermectin
12620                                                                                             ivermectin, pyrantel pamoate
12623                                                                                             ivermectin, pyrantel pamoate
12630                                                                                             ivermectin, pyrantel pamoate
12632                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12636                                                                                             ivermectin, pyrantel pamoate
12638                                                                                                               ivermectin
12639                                                                                             ivermectin, pyrantel pamoate
12642                                                                                             ivermectin, pyrantel pamoate
12645                                                                                                              amoxicillin
12686                                                                                             ivermectin, pyrantel pamoate
12692                                                                                           milbemycin oxime, praziquantel
12693                                                                                                         milbemycin oxime
12712                                                                               dimethyl sulfoxide, fluocinolone acetonide
12714                                                                               ivermectin, praziquantel, pyrantel pamoate
12730                                                                           mometasone furoate, orbifloxacin, posaconazole
12732                                                                           mometasone furoate, orbifloxacin, posaconazole
12735                                                                                              chloroxylenol, ketoconazole
12738                                                                                                               fluralaner
12740                                                                                               milbemycin oxime, spinosad
12744                                                                                               milbemycin oxime, spinosad
12749                                                                                               milbemycin oxime, spinosad
12754                                                                                               milbemycin oxime, spinosad
12755                                                                                               milbemycin oxime, spinosad
12756                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12771                                                                                                               moxidectin
12774                                                                                                               ivermectin
12780                                                                                                               ivermectin
12781                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12784                                                                                                     digestive supplement
12786                                                                                   cyphenothrin, fipronil, (s)-methoprene
12787                                                                                                 flumethrin, imidacloprid
12788                                                                             dexamethasone, neomycin sulfate, polymyxin b
12795                                                                                             ivermectin, pyrantel pamoate
12796                                                                                                 flumethrin, imidacloprid
12797                                                                                                     digestive supplement
12801                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12826                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12828                                                                                                  chlorhexidine gluconate
12836                                                                                               milbemycin oxime, spinosad
12849                                                                          betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                              chloroxylenol, ketoconazole
12861                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12865                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12870                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12873                                                                          betamethasone, clotrimazole, gentamicin sulfate
12879                                                                                             ivermectin, pyrantel pamoate
12880                                                                                                               afoxolaner
12881                                                                             dexamethasone, neomycin sulfate, polymyxin b
12882                                                                          betamethasone, clotrimazole, gentamicin sulfate
12894                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                    chlorhexidine gluconate, ketoconazole
12901                                                                                                               ivermectin
12902                                                                                                               afoxolaner
12903                                                                               toothpaste/dental health solution or chews
12905                                                                                                                midazolam
12906                                                                                                        potassium bromide
12907                                                                                                        potassium bromide
12908                                                                                                              terbinafine
12911                                                                                                   unspecified medication
12916                                                                                             ivermectin, pyrantel pamoate
12920                                                                                             ivermectin, pyrantel pamoate
12929                                                                                             ivermectin, pyrantel pamoate
12942                                                                                             ivermectin, pyrantel pamoate
12943                                                                                             ivermectin, pyrantel pamoate
12945                                                                                             ivermectin, pyrantel pamoate
12948                                                                                             ivermectin, pyrantel pamoate
12949                                                                                             ivermectin, pyrantel pamoate
12952                                                                                             ivermectin, pyrantel pamoate
12953                                                                           dexamethasone, neomycin sulfate, thiabendazole
12955                                                                                                             multivitamin
12956                                                                                                 fipronil, (s)-methoprene
12957                                                                                              lufenuron, milbemycin oxime
12959                                                                          betamethasone, clotrimazole, gentamicin sulfate
12962                                                                                                 fipronil, (s)-methoprene
12963                                                                                                             multivitamin
12966                                                                                                 fipronil, (s)-methoprene
12979                                                                                        betamethasone, gentamicin sulfate
12994                                                                                               imidacloprid, pyriproxyfen
13005                                                                                                               ivermectin
13006                                                                                                               afoxolaner
13008                                                                                                               ivermectin
13010                                                                                                         neomycin sulfate
13013                                                                                                  triamcinolone acetonide
13020                                                                                                             fenbendazole
13041                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                               fluralaner
13062                                                                                           polysulfated glycosaminoglycan
13074                                                                                           polysulfated glycosaminoglycan
13075                                                                                lufenuron, milbemycin oxime, praziquantel
13076                                                                                                 flumethrin, imidacloprid
13081                                                                                                               lokivetmab
13084                                                                                              lufenuron, milbemycin oxime
13086                                                                                              lufenuron, milbemycin oxime
13096                                                                                      ear cleaner (zymox), hydrocortisone
13104                                                                                                              vincristine
13108                                                                                               milbemycin oxime, spinosad
13109                                                                                               milbemycin oxime, spinosad
13114                                                                                               milbemycin oxime, spinosad
13115                                                                                               milbemycin oxime, spinosad
13116                                                                                               milbemycin oxime, spinosad
13124                                                                          betamethasone, clotrimazole, gentamicin sulfate
13126                                                                                          ear cleaner (epi-otic advanced)
13127                                                                          betamethasone, clotrimazole, gentamicin sulfate
13129                                                                          betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                          ear cleaner (epi-otic advanced)
13133                                                                          betamethasone, clotrimazole, gentamicin sulfate
13136                                                                                             ivermectin, pyrantel pamoate
13137                                                                                                               fluralaner
13138                                                                             dexamethasone, neomycin sulfate, polymyxin b
13139                                                                                             ivermectin, pyrantel pamoate
13142                                                                                             ivermectin, pyrantel pamoate
13143                                                                                                               fluralaner
13148                                                                                       amoxicillin, clavulanate potassium
13149                                                                                             ivermectin, pyrantel pamoate
13150                                                                                                               fluralaner
13151                                                                                                         milbemycin oxime
13152                                                                                                               fluralaner
13154                                                                                       amoxicillin, clavulanate potassium
13157                                                                                             ivermectin, pyrantel pamoate
13159                                                                                       joint supplement (glucosamine hcl)
13160                                                                                                                 turmeric
13168                                                                                             ivermectin, pyrantel pamoate
13169                                                                                             ivermectin, pyrantel pamoate
13170                                                                                                               afoxolaner
13173                                                                                                               tobramycin
13187                                                                                        betamethasone, gentamicin sulfate
13188                                                                                                 fipronil, (s)-methoprene
13189                                                                                             ivermectin, pyrantel pamoate
13195                                                                                        betamethasone, gentamicin sulfate
13196                                                                                                  chlorhexidine gluconate
13198                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                        trimeprazine tartrate, prednisone
13208                                                                                           milbemycin oxime, praziquantel
13209                                                                                                               afoxolaner
13233                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13246                                                                             dexamethasone, neomycin sulfate, polymyxin b
13248                                                                                             ivermectin, pyrantel pamoate
13249                                                                                                 fipronil, (s)-methoprene
13264                                                                                             ivermectin, pyrantel pamoate
13270                                                                                             ivermectin, pyrantel pamoate
13271                                                                                             ivermectin, pyrantel pamoate
13277                                                                          betamethasone, clotrimazole, gentamicin sulfate
13278                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13286                                                                          betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                 fipronil, (s)-methoprene
13288                                                                                             ivermectin, pyrantel pamoate
13297                                                                                                               ivermectin
13298                                                                                                               afoxolaner
13299                                                                                                               ivermectin
13307                                                                                                               afoxolaner
13308                                                                                             ivermectin, pyrantel pamoate
13309                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13313                                                                                             ivermectin, pyrantel pamoate
13314                                                                                                               afoxolaner
13315                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13318                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13321                                                                       ceramide iii, chlorhexidine gluconate, microsilver
13331                                                                                               milbemycin oxime, spinosad
13332                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
13334                                                                                               milbemycin oxime, spinosad
13340                                                                          betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                             ivermectin, pyrantel pamoate
13343                                                                                             ivermectin, pyrantel pamoate
13344                                                                                                               afoxolaner
13345                                                                          betamethasone, clotrimazole, gentamicin sulfate
13349                                                                                             ivermectin, pyrantel pamoate
13353                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                               milbemycin oxime, spinosad
13356                                                                                               milbemycin oxime, spinosad
13357                                                                                                 flumethrin, imidacloprid
13376                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13405                                                                                       amoxicillin, clavulanate potassium
13411                                                                                                              doxorubicin
13454                                                                                             ivermectin, pyrantel pamoate
13455                                                                                                               afoxolaner
13456                                                                                                          diphenhydramine
13459                                                                                      ear cleaner (zymox), hydrocortisone
13460                                                                                           lotion or leave in conditioner
13461                                                                                             ivermectin, pyrantel pamoate
13462                                                                                                               afoxolaner
13464                                                                                             ivermectin, pyrantel pamoate
13468                                                                                             ivermectin, pyrantel pamoate
13470                                                                                 febantel, praziquantel, pyrantel pamoate
13471                                                                                             ivermectin, pyrantel pamoate
13475                                                                                              lufenuron, milbemycin oxime
13476                                                                                                     prebiotic, probiotic
13479                                                                                                                meloxicam
13483                                                                                              lufenuron, milbemycin oxime
13484                                                                                                   cyphenothrin, fipronil
13496                                                                                               imidacloprid, pyriproxyfen
13502                                                                                                               ivermectin
13503                                                                                                 imidacloprid, permethrin
13506                                                                                             ivermectin, pyrantel pamoate
13532                                                                                                                probiotic
13537                                                                                              lufenuron, milbemycin oxime
13538                                                                                lufenuron, milbemycin oxime, praziquantel
13562                                                                                               milbemycin oxime, spinosad
13563                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                               milbemycin oxime, spinosad
13575                                                                                                               isoflurane
13576                                                                                               milbemycin oxime, spinosad
13579                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13581                                                                                               milbemycin oxime, spinosad
13585                                                                                               milbemycin oxime, spinosad
13590                                                                                                  chlorhexidine gluconate
13594                                                                                        betamethasone, gentamicin sulfate
13595                                                                          betamethasone, clotrimazole, gentamicin sulfate
13601                                                                             dexamethasone, neomycin sulfate, polymyxin b
13603                                                                                                             enrofloxacin
13605                                                                                                                carprofen
13609                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13615                                                                          betamethasone, clotrimazole, gentamicin sulfate
13623                                                                                               imidacloprid, pyriproxyfen
13624                                                                                               imidacloprid, pyriproxyfen
13625                                                                                               imidacloprid, pyriproxyfen
13628                                                                                               imidacloprid, pyriproxyfen
13631                                                                          betamethasone, clotrimazole, gentamicin sulfate
13654                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13657                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13659                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13660                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13666                                                                             florfenicol, mometasone furoate, terbinafine
13688                                                                                                    clorsulon, ivermectin
13693                                                                                               milbemycin oxime, spinosad
13723                                                                                                 fipronil, (s)-methoprene
13724                                                                                                 flumethrin, imidacloprid
13730                                                                                                                probiotic
13737                                                                                             ivermectin, pyrantel pamoate
13740                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                        trimeprazine tartrate, prednisone
13747                                                                                              lufenuron, milbemycin oxime
13756                                                                          betamethasone, clotrimazole, gentamicin sulfate
13768                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                        betamethasone, gentamicin sulfate
13776                                                                                                         milbemycin oxime
13782                                                                                                                meloxicam
13783                                                                                                         milbemycin oxime
13786                                                                                  betamethasone, florfenicol, terbinafine
13796                                                                                       chlorhexidine gluconate, ophytrium
13881                                                                                                         sulfadimethoxine
13884                                                                                        betamethasone, gentamicin sulfate
13893                                                                                                         milbemycin oxime
13894                                                                                    dinotefuran, permethrin, pyriproxyfen
13896                                                                                                         milbemycin oxime
13902                                                                                                         pyrantel pamoate
13905                                                                                                         milbemycin oxime
13906                                                                                    dinotefuran, permethrin, pyriproxyfen
13910                                                                                                         milbemycin oxime
13912                                                                                                               lokivetmab
13913                                                                                                              bedinvetmab
13925                                                                                               milbemycin oxime, spinosad
13943                                                                                             ivermectin, pyrantel pamoate
13946                                                                                        betamethasone, gentamicin sulfate
13994                                                                                             ivermectin, pyrantel pamoate
13995                                                                                                                sarolaner
13996                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13998                                                                                             ivermectin, pyrantel pamoate
14006                                                                                        betamethasone, gentamicin sulfate
14007                                                                                                         milbemycin oxime
14008                                                                                        enrofloxacin, silver sulfadiazine
14050                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                         milbemycin oxime
14055                                                                                                         milbemycin oxime
14059                                                                                                               selamectin
14060                                                                                                               ivermectin
14061                                                                                             ivermectin, pyrantel pamoate
14062                                                                                             ivermectin, pyrantel pamoate
14063                                                                                                 fipronil, (s)-methoprene
14064                                                                                             ivermectin, pyrantel pamoate
14106                                                                                              lufenuron, milbemycin oxime
14114                                                                                               milbemycin oxime, spinosad
14118                                                                                               milbemycin oxime, spinosad
14120                                                                                                     butorphanol tartrate
14121                                                                                                          dexmedetomidine
14122                                                                                                              atipamezole
14123                                                                                               lactated ringer's solution
14124                                                                                                       maropitant citrate
14128                                                                                               milbemycin oxime, spinosad
14129                                                                                               milbemycin oxime, spinosad
14131                                                                                                  ketoconazole, tris-edta
14147                                                                                                               ivermectin
14148                                                                                                 fipronil, (s)-methoprene
14151                                                                                             ivermectin, pyrantel pamoate
14154                                                                                             ivermectin, pyrantel pamoate
14162                                                                                              lufenuron, milbemycin oxime
14163                                                                                              lufenuron, milbemycin oxime
14164                                                                                             ivermectin, pyrantel pamoate
14165                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                       miconazole nitrate
14170                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14171                                                                             florfenicol, mometasone furoate, terbinafine
14172                                                                                             ivermectin, pyrantel pamoate
14173                                                                                             ivermectin, pyrantel pamoate
14174                                                                                                 fipronil, (s)-methoprene
14175                                                                             florfenicol, mometasone furoate, terbinafine
14177                                                                                                         milbemycin oxime
14178                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14179                                                                             florfenicol, mometasone furoate, terbinafine
14180                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                         milbemycin oxime
14190                                                                             dexamethasone, neomycin sulfate, polymyxin b
14219                                                                                                         milbemycin oxime
14221                                                                                                   unspecified astringent
14228                                                                                                   unspecified medication
14238                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14241                                                                                                 fipronil, (s)-methoprene
14242                                                                                             ivermectin, pyrantel pamoate
14245                                                                                                 fipronil, (s)-methoprene
14282                                                                                                               ivermectin
14284                                                                                                               ivermectin
14291                                                                              chlorhexidine gluconate, miconazole nitrate
14297                                                                               ivermectin, praziquantel, pyrantel pamoate
14301                                                                                                               ivermectin
14302                                                                                                               nitenpyram
14319                                                                                             ivermectin, pyrantel pamoate
14323                                                                          betamethasone, clotrimazole, gentamicin sulfate
14324                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14330                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14334                                                                                                 imidacloprid, moxidectin
14336                                                                             dexamethasone, neomycin sulfate, polymyxin b
14365                                                                                             ivermectin, pyrantel pamoate
14366                                                                                             ivermectin, pyrantel pamoate
14367                                                                                 febantel, praziquantel, pyrantel pamoate
14373                                                                                                 flumethrin, imidacloprid
14376                                                                                                 flumethrin, imidacloprid
14378                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14380                                                                                                 flumethrin, imidacloprid
14385                                                                                              lufenuron, milbemycin oxime
14386                                                                                                               afoxolaner
14387                                                                                              lufenuron, milbemycin oxime
14388                                                                                                               afoxolaner
14404                                                                                              lufenuron, milbemycin oxime
14406                                                                                             ivermectin, pyrantel pamoate
14407                                                                                                 fipronil, (s)-methoprene
14408                                                                                             ivermectin, pyrantel pamoate
14412                                                                                               milbemycin oxime, spinosad
14413                                                                                                 fipronil, (s)-methoprene
14414                                                                                   cyphenothrin, fipronil, (s)-methoprene
14420                                                                                             ivermectin, pyrantel pamoate
14421                                                                                                                thyroxine
14426                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14428                                                                                                         pyrantel pamoate
14429                                                                                              lufenuron, milbemycin oxime
14431                                                                                              lufenuron, milbemycin oxime
14432                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                  omega 3
14434                                                                                                             multivitamin
14443                                                                                              lufenuron, milbemycin oxime
14444                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                               toothpaste/dental health solution or chews
14446 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                 urinary tract supplement
14448                                                                                              lufenuron, milbemycin oxime
14449                                                                                              lufenuron, milbemycin oxime
14451                                                                                              lufenuron, milbemycin oxime
14455                                                                             dexamethasone, neomycin sulfate, polymyxin b
14471                                                                                              lufenuron, milbemycin oxime
14473                                                                                              lufenuron, milbemycin oxime
14477                                                                                              lufenuron, milbemycin oxime
14479                                                                                                 flumethrin, imidacloprid
14488                                                                                             ivermectin, pyrantel pamoate
14489                                                                                             ivermectin, pyrantel pamoate
14490                                                                                             ivermectin, pyrantel pamoate
14495                                                                                             ivermectin, pyrantel pamoate
14498                                                                                             ivermectin, pyrantel pamoate
14499                                                                                             ivermectin, pyrantel pamoate
14512                                                                                                         milbemycin oxime
14513                                                                                                               lokivetmab
14528                                                                                   cyphenothrin, fipronil, (s)-methoprene
14529                                                                                             ivermectin, pyrantel pamoate
14547                                                                                                               ivermectin
14563                                                                                                               ivermectin
14576                                                                                              lufenuron, milbemycin oxime
14578                                                                                                               nitenpyram
14582                                                                                                                sarolaner
14583                                                                                              lufenuron, milbemycin oxime
14584                                                                                                                sarolaner
14585                                                                                lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                sarolaner
14587                                                                                lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                sarolaner
14601                                                                                       unspecified flea/tick preventative
14605                                                                                           milbemycin oxime, praziquantel
14608                                                                                                         milbemycin oxime
14637                                                                                       fipronil, permethrin, pyriproxyfen
14645                                                                                               milbemycin oxime, spinosad
14650                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14654                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14656                                                                                           milbemycin oxime, praziquantel
14658                                                                                             ivermectin, pyrantel pamoate
14664                                                                                           milbemycin oxime, praziquantel
14665                                                                                                               afoxolaner
14697                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14699                                                                                                 fipronil, (s)-methoprene
14700                                                                                             ivermectin, pyrantel pamoate
14701                                                                                               imidacloprid, pyriproxyfen
14702                                                                                             ivermectin, pyrantel pamoate
14711                                                                                              lufenuron, milbemycin oxime
14712                                                                                    dinotefuran, permethrin, pyriproxyfen
14713                                                                                                             fenbendazole
14720                                                                                              lufenuron, milbemycin oxime
14721                                                                                    dinotefuran, permethrin, pyriproxyfen
14722                                                                                                         milbemycin oxime
14723                                                                                           milbemycin oxime, praziquantel
14726                                                                                                               fluralaner
14728                                                                                  milbemycin oxime, oxantel, praziquantel
14730                                                                                           milbemycin oxime, praziquantel
14733                                                                                                         milbemycin oxime
14737                                                                                              lufenuron, milbemycin oxime
14738                                                                                                                 fipronil
14744                                                                                                 flumethrin, imidacloprid
14748                                                                          betamethasone, clotrimazole, gentamicin sulfate
14754                                                                                                 flumethrin, imidacloprid
14755                                                                                           milbemycin oxime, praziquantel
14756                                                                          betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                         burow's solution, hydrocortisone
14760                                                                                           milbemycin oxime, praziquantel
14763                                                                                           milbemycin oxime, praziquantel
14764                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14775                                                                                      allergy immunotherapy - unspecified
14777                                                                          betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                  betamethasone, florfenicol, terbinafine
14833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                               milbemycin oxime, spinosad
14838                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                              lufenuron, milbemycin oxime
14857                                                                                                             multivitamin
14858                                                                                              lufenuron, milbemycin oxime
14862                                                                                                             multivitamin
14863                                                                                                             multivitamin
14864                                                                                              lufenuron, milbemycin oxime
14867                                                                                           milbemycin oxime, praziquantel
14870                                                                                                         milbemycin oxime
14871                                                                                                                lotilaner
14878                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14883                                                                                  milbemycin oxime, oxantel, praziquantel
14884                                                                                                               fluralaner
14899                                                                                                              bedinvetmab
14911                                                                                               milbemycin oxime, spinosad
14913                                                                                               milbemycin oxime, spinosad
14914                                                                                             ivermectin, pyrantel pamoate
14934                                                                                                               afoxolaner
14943                                                                                                               fluralaner
14944                                                                                      allergy immunotherapy - unspecified
14949                                                                                                               lokivetmab
14972                                                                                               milbemycin oxime, spinosad
14973                                                                                                             multivitamin
14974                                                                                               milbemycin oxime, spinosad
14975                                                                                               milbemycin oxime, spinosad
14977                                                                                           polysulfated glycosaminoglycan
14978                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14981                                                                                               milbemycin oxime, spinosad
14982                                                                                                                  omega 3
14983                                                                                                                probiotic
15001                                                                               ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                 fipronil, (s)-methoprene
15004                                                                                               imidacloprid, pyriproxyfen
15005                                                                                                 fipronil, (s)-methoprene
15006                                                                                                         milbemycin oxime
15007                                                                                                         milbemycin oxime
15008                                                                                               imidacloprid, pyriproxyfen
15009                                                                                                 fipronil, (s)-methoprene
15010                                                                                                 fipronil, (s)-methoprene
15011                                                                                           milbemycin oxime, praziquantel
15017                                                                               ivermectin, praziquantel, pyrantel pamoate
15021                                                                               ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                 fipronil, (s)-methoprene
15023                                                                                                 fipronil, (s)-methoprene
15025                                                                                               imidacloprid, pyriproxyfen
15026                                                                                                 fipronil, (s)-methoprene
15027                                                                                                 fipronil, (s)-methoprene
15028                                                                                                         milbemycin oxime
15029                                                                                           milbemycin oxime, praziquantel
15030                                                                                                 fipronil, (s)-methoprene
15035                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                           milbemycin oxime, praziquantel
15045                                                                                             ivermectin, pyrantel pamoate
15048                                                                                              lufenuron, milbemycin oxime
15055                                                                                                   acetaminophen, codeine
15059                                                                                             ivermectin, pyrantel pamoate
15061                                                                                             ivermectin, pyrantel pamoate
15077                                                                                                 flumethrin, imidacloprid
15102                                                                                                  acetic acid, boric acid
15129                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                             ivermectin, pyrantel pamoate
15131                                                                                              sulfadimidine, trimethoprim
15132                                                                                                               afoxolaner
15137                                                                                        betamethasone, gentamicin sulfate
15139                                                                                             ivermectin, pyrantel pamoate
15140                                                                                                 fipronil, (s)-methoprene
15144                                                                                             ivermectin, pyrantel pamoate
15145                                                                                                 fipronil, (s)-methoprene
15150                                                                                                         milbemycin oxime
15151                                                                                                               fluralaner
15155                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15170                                                                                              lufenuron, milbemycin oxime
15179                                                                                                                 tramadol
15196                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                             clomipramine
15209                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15213                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
15244                                                                                                 homatropine, hydrocodone
15250                                                                                                 imidacloprid, permethrin
15252                                                                          betamethasone, clotrimazole, gentamicin sulfate
15256                                                                                                                meloxicam
15259                                                                                                              shen calmer
15268                                                                                             ivermectin, pyrantel pamoate
15269                                                                                                               afoxolaner
15274                                                                                            unspecified herbal supplement
15308                                                                                                               ivermectin
15309                                                                                                               afoxolaner
15310                                                                                             ivermectin, pyrantel pamoate
15311                                                                                                 flumethrin, imidacloprid
15314                                                                                             ivermectin, pyrantel pamoate
15315                                                                                                 flumethrin, imidacloprid
15317                                                                                             ivermectin, pyrantel pamoate
15319                                                                                           milbemycin oxime, praziquantel
15321                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                 flumethrin, imidacloprid
15323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15332                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                probiotic
15334                                                                                        betamethasone, gentamicin sulfate
15339                                                                                               milbemycin oxime, spinosad
15345                                                                                               milbemycin oxime, spinosad
15348                                                                                               milbemycin oxime, spinosad
15361                                                                                                               ivermectin
15362                                                                                                               ivermectin
15363                                                                          betamethasone, clotrimazole, gentamicin sulfate
15365                                                                                                               ivermectin
15366                                                                                             ivermectin, pyrantel pamoate
15367                                                                                              lufenuron, milbemycin oxime
15373                                                                                lufenuron, milbemycin oxime, praziquantel
15374                                                                                                 fipronil, (s)-methoprene
15375                                                                                lufenuron, milbemycin oxime, praziquantel
15376                                                                                                 fipronil, (s)-methoprene
15377                                                                                lufenuron, milbemycin oxime, praziquantel
15378                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15383                                                                                                              doxycycline
15384                                                                                                                carprofen
15402                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15412                                                                                             ivermectin, pyrantel pamoate
15441                                                                                                              guaifenesin
15445                                                                                                        hypochlorous acid
15448                                                                                             ivermectin, pyrantel pamoate
15451                                                                                             ivermectin, pyrantel pamoate
15453                                                                                      ear cleaner (zymox), hydrocortisone
15454                                                                                                           (s)-methoprene
15512                                                                                                               fluralaner
15513                                                                                                                  omega 3
15515                                                                                                               fluralaner
15524                                                                                             ivermectin, pyrantel pamoate
15528                                                                                           milbemycin oxime, praziquantel
15530                                                                                    dinotefuran, permethrin, pyriproxyfen
15531                                                                                           milbemycin oxime, praziquantel
15533                                                                                                 urinary tract supplement
15551                                                                                                                meloxicam
15552                                                                                                               fluralaner
15554                                                                                                               fluralaner
15555                                                                                                         milbemycin oxime
15556                                                                                             ivermectin, pyrantel pamoate
15563                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15581                                                                                                         pyrantel pamoate
15584                                                                           dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                             ivermectin, pyrantel pamoate
15586                                                                                       fipronil, permethrin, pyriproxyfen
15589                                                                                             ivermectin, pyrantel pamoate
15590                                                                                             ivermectin, pyrantel pamoate
15591                                                                                                               afoxolaner
15592                                                                                                 fipronil, (s)-methoprene
15593                                                                                             ivermectin, pyrantel pamoate
15594                                                                                                               afoxolaner
15597                                                                                             ivermectin, pyrantel pamoate
15598                                                                                                               afoxolaner
15599                                                                          betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                             ivermectin, pyrantel pamoate
15601                                                                                                                sarolaner
15603                                                                                                                mupirocin
15604                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15613                                                                                             ivermectin, pyrantel pamoate
15614                                                                                      ear cleaner (zymox), hydrocortisone
15618                                                                                             ivermectin, pyrantel pamoate
15633                                                                                                               prednisone
15636                                                                                              lufenuron, milbemycin oxime
15649                                                                                             ivermectin, pyrantel pamoate
15650                                                                                                 fipronil, (s)-methoprene
15661                                                                                                               ivermectin
15662                                                                             dexamethasone, neomycin sulfate, polymyxin b
15663                                                                                                 fipronil, (s)-methoprene
15667                                                                                                  ketoconazole, tris-edta
15669                                                                                             ivermectin, pyrantel pamoate
15672                                                                                             ivermectin, pyrantel pamoate
15673                                                                                             ivermectin, pyrantel pamoate
15674                                                                                                                sarolaner
15675                                                                             florfenicol, mometasone furoate, terbinafine
15689                                                                                               milbemycin oxime, spinosad
15690                                                                                               milbemycin oxime, spinosad
15691                                                                                               milbemycin oxime, spinosad
15692                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                               milbemycin oxime, spinosad
15699                                                                                             ivermectin, pyrantel pamoate
15701                                                                                               milbemycin oxime, spinosad
15705                                                                                      ear cleaner (zymox), hydrocortisone
15706                                                                                                      ear cleaner (zymox)
15707                                                                                               milbemycin oxime, spinosad
15712                                                                                               milbemycin oxime, spinosad
15715                                                                                               milbemycin oxime, spinosad
15733                                                                                             ivermectin, pyrantel pamoate
15750                                                             butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15757                                                                                             ivermectin, pyrantel pamoate
15758                                                                                                 fipronil, (s)-methoprene
15767                                                                             dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                       gentamicin sulfate
15769                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                     dorzolamide, timolol
15778                                                                                                  triamcinolone acetonide
15781                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                  triamcinolone acetonide
15790                                                                                                 kidney health supplement
15796                                                                                       amoxicillin, clavulanate potassium
15799                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15811                                                                                                   cyphenothrin, fipronil
15815                                                                                                         milbemycin oxime
15818                                                                                                         milbemycin oxime
15829                                                                                             ivermectin, pyrantel pamoate
15839                                                                                                         pyrantel pamoate
15840                                                                                       joint supplement (glucosamine hcl)
15841                                                                                             ivermectin, pyrantel pamoate
15842                                                                                              lufenuron, milbemycin oxime
15844                                                                                              lufenuron, milbemycin oxime
15848                                                                                                                probiotic
15849                                                                                              lufenuron, milbemycin oxime
15850                                                                                           milbemycin oxime, praziquantel
15856                                                                                                 imidacloprid, permethrin
15857                                                                                                               fluralaner
15858                                                                                                                deracoxib
15859                                                                                              lufenuron, milbemycin oxime
15860                                                                                                     cefpodoxime proxetil
15861                                                                                        betamethasone, gentamicin sulfate
15862                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                         atropine sulfate
15864                                                                                                             flurbiprofen
15867                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                        vision supplement
15869                                                                                              lufenuron, milbemycin oxime
15870                                                                                                               fluralaner
15871                                                                             florfenicol, mometasone furoate, terbinafine
15886                                                                                                        vision supplement
15888                                                                                                               fluralaner
15889                                                                                        enrofloxacin, silver sulfadiazine
15890                                                                                            dextromethorphan, guaifenesin
15891                                                                                              lufenuron, milbemycin oxime
15892                                                                                              lufenuron, milbemycin oxime
15907                                                                                                         phytosphingosine
15911                                                                                                             fenbendazole
15917                                                                                                               ivermectin
15918                                                                                                     digestive supplement
15920                                                                                                         tylosin tartrate
15921                                                                                                                probiotic
15922                                                                                                               ivermectin
15923                                                                                                         tylosin tartrate
15927                                                                                                                vitamin a
15928                                                                                                                probiotic
15929                                                                                                             multivitamin
15930                                                                                             ivermectin, pyrantel pamoate
15931                                                                                                         tylosin tartrate
15932                                                                                                                vitamin b
15933                                                                                                                vitamin a
15935                                                                                                                probiotic
15937                                                                                                               ivermectin
15944                                                                                                               ivermectin
15945                                                                                                                probiotic
15981                                                                                              lufenuron, milbemycin oxime
15983                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15986                                                                                    dinotefuran, permethrin, pyriproxyfen
15992                                                                                              lufenuron, milbemycin oxime
15993                                                                                    dinotefuran, permethrin, pyriproxyfen
15995                                                                                              lufenuron, milbemycin oxime
15996                                                                                    dinotefuran, permethrin, pyriproxyfen
15997                                                                                                               fluralaner
15998                                                                                             hydrocortisone, ketoconazole
15999                                                                                           milbemycin oxime, praziquantel
16000                                                                                                               fluralaner
16005                                                                                                         milbemycin oxime
16007                                                                                                         milbemycin oxime
16009                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
16016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
16026                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16033                                                                                                 fipronil, (s)-methoprene
16036                                                                                lufenuron, milbemycin oxime, praziquantel
16038                                                                                             ivermectin, pyrantel pamoate
16039                                                                                                 fipronil, (s)-methoprene
16052                                                                                lufenuron, milbemycin oxime, praziquantel
16053                                                                                               imidacloprid, pyriproxyfen
16094                                                                                             ivermectin, pyrantel pamoate
16097                                                                                             ivermectin, pyrantel pamoate
16098                                                                                                               afoxolaner
16105                                                                                              lufenuron, milbemycin oxime
16107                                                                                   gentamicin sulfate, miconazole nitrate
16108                                                                                              lufenuron, milbemycin oxime
16109                                                                                              lufenuron, milbemycin oxime
16110                                                                             florfenicol, mometasone furoate, terbinafine
16111                                                                                                            dexamethasone
16112                                                                                                              terbinafine
16113                                                                                                  chlorhexidine gluconate
16114                                                                                              chloroxylenol, ketoconazole
16115                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16116                                                                                                              terbinafine
16117                                                                                                              clindamycin
16118                                                                                                               prednisone
16150                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
16152                                                                                               imidacloprid, pyriproxyfen
16153                                                                                             ivermectin, pyrantel pamoate
16154                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16155                                                                                          ear cleaner (epi-otic advanced)
16156                                                                                                                probiotic
16157                                                                                             ivermectin, pyrantel pamoate
16158                                                                                                               fluralaner
16159                                                                                                         milbemycin oxime
16160                                                                                                               fluralaner
16161                                                                                             ivermectin, pyrantel pamoate
16162                                                                                                               fluralaner
16163                                                                                             ivermectin, pyrantel pamoate
16164                                                                                                               fluralaner
16165                                                                                           milbemycin oxime, praziquantel
16177                                                                              chlorhexidine gluconate, miconazole nitrate
16179                                                                                    chlorhexidine gluconate, ketoconazole
16199                                                                                           sulfamethoxazole, trimethoprim
16229                                                                                             ivermectin, pyrantel pamoate
16230                                                                                             ivermectin, pyrantel pamoate
16239                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                  omega 3
16241                                                                               toothpaste/dental health solution or chews
16242                                                                               toothpaste/dental health solution or chews
16251                                                                          betamethasone, clotrimazole, gentamicin sulfate
16253                                                                           mometasone furoate, orbifloxacin, posaconazole
16285                                                                                                               fluralaner
16286                                                                                               unspecified eye medication
16287                                                                                             ivermectin, pyrantel pamoate
16288                                                                                                 fipronil, (s)-methoprene
16289                                                                                             ivermectin, pyrantel pamoate
16290                                                                                                 fipronil, (s)-methoprene
16292                                                                                                         milbemycin oxime
16293                                                                                                 fipronil, (s)-methoprene
16294                                                                                             ivermectin, pyrantel pamoate
16295                                                                                                 fipronil, (s)-methoprene
16296                                                                                                               ivermectin
16312                                                                                             ivermectin, pyrantel pamoate
16313                                                                                                               afoxolaner
16315                                                                                             ivermectin, pyrantel pamoate
16316                                                                                                               afoxolaner
16318                                                                                             ivermectin, pyrantel pamoate
16319                                                                                                               afoxolaner
16321                                                                                             ivermectin, pyrantel pamoate
16322                                                                                                               afoxolaner
16324                                                                                             ivermectin, pyrantel pamoate
16325                                                                                                               afoxolaner
16326                                                                                                         milbemycin oxime
16340                                                                                             ivermectin, pyrantel pamoate
16347                                                                                    dinotefuran, permethrin, pyriproxyfen
16352                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16355                                                                                                                mupirocin
16356                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16374                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16376                                                                                                                  omega 3
16378                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16382                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16387                                                                                                                ophytrium
16388                                                                                                         phytosphingosine
16389                                                                                             ivermectin, pyrantel pamoate
16400                                                                                             ivermectin, pyrantel pamoate
16401                                                                                                                 spinosad
16403                                                                                             ivermectin, pyrantel pamoate
16404                                                                                                                 spinosad
16408                                                                                             ivermectin, pyrantel pamoate
16413                                                                                                         milbemycin oxime
16414                                                                                                               fluralaner
16418                                                                                                 fipronil, (s)-methoprene
16419                                                                                                   unspecified antibiotic
16420                                                                                                    unspecified analgesic
16425                                                                                                 fipronil, (s)-methoprene
16426                                                                                                 fipronil, (s)-methoprene
16434                                                                                                             multivitamin
16435                                                                                                                  omega 3
16436                                                                                                                 spinosad
16437                                                                                                         sulfadimethoxine
16440                                                                                              lufenuron, milbemycin oxime
16441                                                                                              lufenuron, milbemycin oxime
16442                                                                                                             multivitamin
16443                                                                                                                  omega 3
16447                                                                                              lufenuron, milbemycin oxime
16448                                                                                                             multivitamin
16450                                                                                           milbemycin oxime, praziquantel
16452                                                                                                       maropitant citrate
16453                                                                                                               famotidine
16462                                                                                                                lactulose
16472                                                                                              lufenuron, milbemycin oxime
16474                                                                                                 fipronil, (s)-methoprene
16477                                                                                              lufenuron, milbemycin oxime
16478                                                                                                 fipronil, (s)-methoprene
16479                                                                                                 fipronil, (s)-methoprene
16497                                                                                                 fipronil, (s)-methoprene
16522                                                                                             ivermectin, pyrantel pamoate
16523                                                                                                               ivermectin
16524                                                                                                   cyphenothrin, fipronil
16525                                                                                                         milbemycin oxime
16526                                                                                    dinotefuran, permethrin, pyriproxyfen
16544                                                                                                   cyphenothrin, fipronil
16546                                                                                           milbemycin oxime, praziquantel
16553                                                                                           milbemycin oxime, praziquantel
16579                                                                                             ivermectin, pyrantel pamoate
16580                                                                                                  ketoconazole, tris-edta
16595                                                                                                               ivermectin
16596                                                                                             ivermectin, pyrantel pamoate
16597                                                                                                               ivermectin
16598                                                                                       fipronil, permethrin, pyriproxyfen
16599                                                                                                               ivermectin
16601                                                                                                 fipronil, (s)-methoprene
16605                                                                                 febantel, praziquantel, pyrantel pamoate
16606                                                                                                         milbemycin oxime
16608                                                                                                         milbemycin oxime
16617                                                                                                               sucralfate
16624                                                                                               milbemycin oxime, spinosad
16630                                                                                                         milbemycin oxime
16631                                                                                                                lotilaner
16635                                                                             dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                             ivermectin, pyrantel pamoate
16639                                                                                           milbemycin oxime, praziquantel
16646                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16657                                                                           mometasone furoate, orbifloxacin, posaconazole
16684                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16687                                                                                             ivermectin, pyrantel pamoate
16694                                                                                             ivermectin, pyrantel pamoate
16702                                                                          betamethasone, clotrimazole, gentamicin sulfate
16703                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                             ivermectin, pyrantel pamoate
16705                                                                                                               afoxolaner
16711                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
16714                                                                                                                mupirocin
16717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16721                                                                                             ivermectin, pyrantel pamoate
16723                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16726                                                                                        betamethasone, gentamicin sulfate
16749                                                                                              lufenuron, milbemycin oxime
16751                                                                                              lufenuron, milbemycin oxime
16774                                                                                                                vitamin b
16777                                                                                             ivermectin, pyrantel pamoate
16778                                                                                                   cyphenothrin, fipronil
16779                                                                                                               cetirizine
16783                                                                                                               cetirizine
16784                                                                                                     digestive supplement
16785                                                                                                  ketoconazole, tris-edta
16787                                                                                                               moxidectin
16789                                                                                                               moxidectin
16791                                                                                    dinotefuran, permethrin, pyriproxyfen
16793                                                                                                               afoxolaner
16798                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16805                                                                                             ivermectin, pyrantel pamoate
16807                                                                                                 imidacloprid, permethrin
16809                                                                                               imidacloprid, pyriproxyfen
16810                                                                                             ivermectin, pyrantel pamoate
16811                                                                                                 flumethrin, imidacloprid
16814                                                                                                        vision supplement
16815                                                                                                              ashwagandha
16816                                                                                                 betamethasone, ofloxacin
16821                                                                                                        vision supplement
16823                                                                                                 betamethasone, ofloxacin
16834                                                                                                 fipronil, (s)-methoprene
16838                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
16840                                                                                                 fipronil, (s)-methoprene
16841                                                                                                              bedinvetmab
16847                                                                                                 urinary tract supplement
16849                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
16869                                                                                                         milbemycin oxime
16877                                                                                               milbemycin oxime, spinosad
16882                                                                                                 flumethrin, imidacloprid
16918                                                                                                                  omega 3
16929                                                                                               milbemycin oxime, spinosad
16931                                                                                               milbemycin oxime, spinosad
16933                                                                                               milbemycin oxime, spinosad
16935                                                                                               milbemycin oxime, spinosad
16936                                                                                             ivermectin, pyrantel pamoate
16937                                                                                                 fipronil, (s)-methoprene
16939                                                                                                      ear cleaner (zymox)
16970                                                                                                               ivermectin
16983                                                                                             ivermectin, pyrantel pamoate
16993                                                                                                  ketoconazole, tris-edta
16994                                                                          betamethasone, clotrimazole, gentamicin sulfate
16998                                                                                    dinotefuran, permethrin, pyriproxyfen
16999                                                                                             ivermectin, pyrantel pamoate
17000                                                                                    dinotefuran, permethrin, pyriproxyfen
17010                                                                                             ivermectin, pyrantel pamoate
17012                                                                                                           (s)-methoprene
17013                                                                                             ivermectin, pyrantel pamoate
17014                                                                                             ivermectin, pyrantel pamoate
17018                                                      chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                             ivermectin, pyrantel pamoate
17020                                                                                                               fluralaner
17022                                                                           dexamethasone, neomycin sulfate, thiabendazole
17042                                                                                                                lotilaner
17053                                                                                             ivermectin, pyrantel pamoate
17062                                                                           dexamethasone, neomycin sulfate, thiabendazole
17088                                                                                             ivermectin, pyrantel pamoate
17090                                                                                             ivermectin, pyrantel pamoate
17091                                                                                                               afoxolaner
17094                                                                                             ivermectin, pyrantel pamoate
17095                                                                                                               afoxolaner
17098                                                                                             ivermectin, pyrantel pamoate
17099                                                                                                               afoxolaner
17120                                                                                                                 squalane
17121                                                                                          ear cleaner (epi-otic advanced)
17126                                                                                    chlorhexidine gluconate, ketoconazole
17127                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17138                                                                                             ivermectin, pyrantel pamoate
17143                                                                                             ivermectin, pyrantel pamoate
17153                                                                               ivermectin, praziquantel, pyrantel pamoate
17156                                                                               ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                               afoxolaner
17173                                                                               dimethyl sulfoxide, fluocinolone acetonide
17177                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17180                                                                                                                probiotic
17209                                                                                             ivermectin, pyrantel pamoate
17218                                                                                    dinotefuran, permethrin, pyriproxyfen
17220                                                                                                               ivermectin
17221                                                                                                               afoxolaner
17225                                                                                             ivermectin, pyrantel pamoate
17226                                                                                                               afoxolaner
17227                                                                                             ivermectin, pyrantel pamoate
17228                                                                                                               afoxolaner
17229                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17232                                                                               ivermectin, praziquantel, pyrantel pamoate
17233                                                                                               imidacloprid, pyriproxyfen
17234                                                                                                         milbemycin oxime
17236                                                                                               imidacloprid, pyriproxyfen
17237                                                                                                         milbemycin oxime
17238                                                                                               imidacloprid, pyriproxyfen
17239                                                                                                         milbemycin oxime
17248                                                                                             ivermectin, pyrantel pamoate
17251                                                                                             ivermectin, pyrantel pamoate
17252                                                                                                 fipronil, (s)-methoprene
17254                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                               milbemycin oxime, spinosad
17264                                                                                               milbemycin oxime, spinosad
17266                                                                                               milbemycin oxime, spinosad
17268                                                                                                               ivermectin
17283                                                                                             ivermectin, pyrantel pamoate
17285                                                                                             ivermectin, pyrantel pamoate
17297                                                                                           sulfamethoxazole, trimethoprim
17298                                                                                             ivermectin, pyrantel pamoate
17307                                                                                        trimeprazine tartrate, prednisone
17308                                                                                        trimeprazine tartrate, prednisone
17309                                                                                        trimeprazine tartrate, prednisone
17310                                                                                        trimeprazine tartrate, prednisone
17313                                                                                             ivermectin, pyrantel pamoate
17314                                                                                    dinotefuran, permethrin, pyriproxyfen
17315                                                                                                            metronidazole
17327                                                                                             oxytetracycline, polymyxin b
17329                                                                                                           corneal repair
17330                                                                                                                ofloxacin
17335                                                                                                           corneal repair
17352                                                                                        betamethasone, gentamicin sulfate
17355                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17381                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17387                                                                                             ivermectin, pyrantel pamoate
17389                                                                                             ivermectin, pyrantel pamoate
17390                                                                                             ivermectin, pyrantel pamoate
17391                                                                                             ivermectin, pyrantel pamoate
17393                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17399                                                                                              lufenuron, milbemycin oxime
17406                                                                                              lufenuron, milbemycin oxime
17407                                                                                        betamethasone, gentamicin sulfate
17412                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17417                                                                                                 flumethrin, imidacloprid
17418                                                                                                                  omega 3
17419                                                                                                                sarolaner
17420                                                                                             ivermectin, pyrantel pamoate
17426                                                                                                               gabapentin
17427                                                                                                   unspecified medication
17446                                                                                  betamethasone, florfenicol, terbinafine
17461                                                                                              lufenuron, milbemycin oxime
17463                                                                                                                probiotic
17468                                                                                              lufenuron, milbemycin oxime
17470                                                                                                                probiotic
17482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17486                                                                                             ivermectin, pyrantel pamoate
17487                                                                                                 fipronil, (s)-methoprene
17488                                                                                lufenuron, milbemycin oxime, praziquantel
17489                                                                                                 fipronil, (s)-methoprene
17490                                                                                                 fipronil, (s)-methoprene
17491                                                                                           milbemycin oxime, praziquantel
17492                                                                                lufenuron, milbemycin oxime, praziquantel
17493                                                                                           milbemycin oxime, praziquantel
17495                                                                                           milbemycin oxime, praziquantel
17496                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17518                                                                                              lufenuron, milbemycin oxime
17519                                                                                              lufenuron, milbemycin oxime
17576                                                                             dexamethasone, neomycin sulfate, polymyxin b
17583                                                                                        betamethasone, gentamicin sulfate
17588                                                                                        betamethasone, gentamicin sulfate
17602                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                              lufenuron, milbemycin oxime
17605                                                                                lufenuron, milbemycin oxime, praziquantel
17611                                                                                                               fluralaner
17615                                                                                                                 fipronil
17627                                                                                                               fluralaner
17633                                                                                                               moxidectin
17659                                                                                                         milbemycin oxime
17672                                                                                               milbemycin oxime, spinosad
17673                                                                                               milbemycin oxime, spinosad
17680                                                                                                               prednisone
17697                                                                                               milbemycin oxime, spinosad
17702                                                                               dextromethorphan hydrobromide, guaifenesin
17703                                                                                              lufenuron, milbemycin oxime
17719                                                                                              lufenuron, milbemycin oxime
17720                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
17722                                                                                              lufenuron, milbemycin oxime
17742                                                                             dexamethasone, neomycin sulfate, polymyxin b
17743                                                                             dexamethasone, neomycin sulfate, polymyxin b
17755                                                                                                 fipronil, (s)-methoprene
17779                                                                                   cyphenothrin, fipronil, (s)-methoprene
17780                                                                                        trimeprazine tartrate, prednisone
17781                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                   cyphenothrin, fipronil, (s)-methoprene
17798                                                                           mometasone furoate, orbifloxacin, posaconazole
17802                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                        betamethasone, gentamicin sulfate
17804                                                                                        trimeprazine tartrate, prednisone
17818                                                                                                               afoxolaner
17832                                                                                                                meloxicam
17845                                                                                                               afoxolaner
17853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17855                                                                                                               diclofenac
17856                                                                                                     prednisolone acetate
17860                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17863                                                                                                                  omega 3
17865                                                                                                 urinary tract supplement
17882                                                                                        betamethasone, gentamicin sulfate
17957                                                                          betamethasone, clotrimazole, gentamicin sulfate
18023                                                                                                         milbemycin oxime
18024                                                                                                               afoxolaner
18055                                                                           dexamethasone, neomycin sulfate, thiabendazole
18057                                                                                                               afoxolaner
18058                                                                                             ivermectin, pyrantel pamoate
18072                                                                                               milbemycin oxime, spinosad
18074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                lufenuron, milbemycin oxime, praziquantel
18094                                                                                             ivermectin, pyrantel pamoate
18095                                                                                                               afoxolaner
18096                                                                           mometasone furoate, orbifloxacin, posaconazole
18098                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18114                                                                                                                vitamin e
18115                                                                                              lufenuron, milbemycin oxime
18116                                                                                                 imidacloprid, permethrin
18118                                                                                               imidacloprid, pyriproxyfen
18119                                                                                              lufenuron, milbemycin oxime
18124                                                                                              lufenuron, milbemycin oxime
18134                                                                                        betamethasone, gentamicin sulfate
18141                                                                                           polysulfated glycosaminoglycan
18147                                                                                                               isoflurane
18159                                                                           mometasone furoate, orbifloxacin, posaconazole
18164                                                                           mometasone furoate, orbifloxacin, posaconazole
18165                                                                                                 ear cleaner (oti-soothe)
18188                                                                               dextromethorphan hydrobromide, guaifenesin
18192                                                                                             ivermectin, pyrantel pamoate
18193                                                                                                               ivermectin
18195                                                                                                               grapiprant
18199                                                                                        trimeprazine tartrate, prednisone
18202                                                                                                               ivermectin
18205                                                                                                               ivermectin
18213                                                                                                 imidacloprid, permethrin
18214                                                                                             ivermectin, pyrantel pamoate
18217                                                                                                               fluralaner
18218                                                                                                         milbemycin oxime
18220                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18221                                                                                                               lokivetmab
18222                                                                                                         milbemycin oxime
18238                                                                                                           dental sealant
18251                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
18258                                                                                    dinotefuran, permethrin, pyriproxyfen
18260                                                                                               milbemycin oxime, spinosad
18262                                                                                    dinotefuran, permethrin, pyriproxyfen
18263                                                                                      allergy immunotherapy - unspecified
18264                                                                                               milbemycin oxime, spinosad
18266                                                                                               milbemycin oxime, spinosad
18271                                                                                      allergy immunotherapy - unspecified
18275                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                         phytosphingosine
18323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18325                                                                                         burow's solution, hydrocortisone
18326                                                                                                  ketoconazole, tris-edta
18329                                                                                                         pyrantel pamoate
18330                                                                                                                ponazuril
18337                                                                                             ivermectin, pyrantel pamoate
18338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                             ivermectin, pyrantel pamoate
18340                                                                                                               afoxolaner
18341                                                                                                                  omega 3
18342                                                                                             ivermectin, pyrantel pamoate
18343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18344                                                                                             ivermectin, pyrantel pamoate
18365                                                                                             ivermectin, pyrantel pamoate
18366                                                                                                               afoxolaner
18370                                                                                             ivermectin, pyrantel pamoate
18371                                                                                                               afoxolaner
18373                                                                                             ivermectin, pyrantel pamoate
18374                                                                                                               afoxolaner
18404                                                                                                  ketoconazole, tris-edta
18415                                                                                             ivermectin, pyrantel pamoate
18427                                                                                                                     edta
18441                                                                                        trimeprazine tartrate, prednisone
18459                                                                                              lufenuron, milbemycin oxime
18460                                                                                              lufenuron, milbemycin oxime
18461                                                                                                               fluralaner
18466                                                                                neomycin sulfate, polymyxin b, gramicidin
18469                                                                                                             cyclosporine
18471                                                                                                             cyclosporine
18479                                                                                               milbemycin oxime, spinosad
18480                                                                                               milbemycin oxime, spinosad
18483                                                                                               milbemycin oxime, spinosad
18489                                                                                             ivermectin, pyrantel pamoate
18490                                                                                              lufenuron, milbemycin oxime
18494                                                                                              lufenuron, milbemycin oxime
18495                                                                                             ivermectin, pyrantel pamoate
18500                                                                                             ivermectin, pyrantel pamoate
18502                                                                                           milbemycin oxime, praziquantel
18514                                                                                               imidacloprid, pyriproxyfen
18520                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18525                                                                                                               afoxolaner
18534                                                                                                                probiotic
18543                                                                          betamethasone, clotrimazole, gentamicin sulfate
18562                                                                                                        ferrum metallicum
18565                                                                                               imidacloprid, pyriproxyfen
18571                                                                                             ivermectin, pyrantel pamoate
18572                                                                                                               afoxolaner
18576                                                                                             ivermectin, pyrantel pamoate
18577                                                                                                               afoxolaner
18580                                                                                             ivermectin, pyrantel pamoate
18588                                                                                                               prednisone
18591                                                                                        betamethasone, gentamicin sulfate
18595                                                                                               imidacloprid, pyriproxyfen
18609                                                                                                                trazodone
18612                                                                                                            levetiracetam
18621                                                                             florfenicol, mometasone furoate, terbinafine
18649                                                                                                               nitenpyram
18686                                                                                             ivermectin, pyrantel pamoate
18687                                                                          betamethasone, clotrimazole, gentamicin sulfate
18689                                                                                                           chlorphenamine
18690                                                                                                               ivermectin
18694                                                                                              lufenuron, milbemycin oxime
18696                                                                                                   cyphenothrin, fipronil
18697                                                                                              lufenuron, milbemycin oxime
18703                                                                                             ivermectin, pyrantel pamoate
18707                                                                                             ivermectin, pyrantel pamoate
18716                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18718                                                                                        betamethasone, gentamicin sulfate
18729                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
18734                                                                                               milbemycin oxime, spinosad
18735                                                                                                               nitenpyram
18736                                                                                               milbemycin oxime, spinosad
18743                                                                                                               ivermectin
18750                                                                                             ivermectin, pyrantel pamoate
18774                                                                                               milbemycin oxime, spinosad
18775                                                                                               milbemycin oxime, spinosad
18795                                                                                             ivermectin, pyrantel pamoate
18796                                                                                                   cyphenothrin, fipronil
18797                                                                                             ivermectin, pyrantel pamoate
18798                                                                                                   cyphenothrin, fipronil
18799                                                                                             ivermectin, pyrantel pamoate
18800                                                                                             ivermectin, pyrantel pamoate
18820                                                                                                      ear cleaner (zymox)
18821                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18829                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18837                                                                                               milbemycin oxime, spinosad
18838                                                                                                                  omega 3
18839                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18844                                                                                                 skin and coat supplement
18845                                                                                                         milbemycin oxime
18847                                                                                                                  omega 3
18850                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18852                                                                                                               fluralaner
18853                                                                                                         milbemycin oxime
18854                                                                                                                  omega 3
18882                                                               dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18908                                                                                                               ivermectin
18909                                                                                                 imidacloprid, permethrin
18919                                                                                                 flumethrin, imidacloprid
18921                                                                                                 flumethrin, imidacloprid
18924                                                                                              lufenuron, milbemycin oxime
18933                                                                                                               fluralaner
18935                                                                                             ivermectin, pyrantel pamoate
18936                                                                                                 flumethrin, imidacloprid
18937                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18961                                                                                                                probiotic
18964                                                                                                                probiotic
18970                                                                                                                probiotic
18987                                                                                             ivermectin, pyrantel pamoate
18988                                                                                                                probiotic
18989                                                                                                 joint supplement (other)
18991                                                                                             ivermectin, pyrantel pamoate
18993                                                                                                                probiotic
18997                                                                                                   acetaminophen, codeine
18998                                                                                                       maropitant citrate
19003                                                                                                 fipronil, (s)-methoprene
19004                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                        betamethasone, gentamicin sulfate
19006                                                                                                        hypochlorous acid
19008                                                                                                               wind toxin
19009                                                                                                            stomach happy
19015                                                                                                               cetirizine
19019                                                                                                   acetaminophen, codeine
19021                                                                                           polysulfated glycosaminoglycan
19022                                                                                               milbemycin oxime, spinosad
19023                                                                          betamethasone, clotrimazole, gentamicin sulfate
19025                                                                                              lufenuron, milbemycin oxime
19040                                                                                               milbemycin oxime, spinosad
19041                                                                                                         milbemycin oxime
19055                                                                                                 fipronil, (s)-methoprene
19056                                                                                                             multivitamin
19057                                                                          dexamethasone, enrofloxacin, miconazole nitrate
19061                                                                                                 fipronil, (s)-methoprene
19062                                                                                             ivermectin, pyrantel pamoate
19068                                                                                             ivermectin, pyrantel pamoate
19070                                                                                              lufenuron, milbemycin oxime
19072                                                                                                 fipronil, (s)-methoprene
19073                                                                                              lufenuron, milbemycin oxime
19078                                                                                              lufenuron, milbemycin oxime
19082                                                                                                 fipronil, (s)-methoprene
19122                                                                                                 imidacloprid, permethrin
19130                                                                                                               fluralaner
19152                                                                               dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                               afoxolaner
19154                                                                                                         milbemycin oxime
19159                                                                                                                lomustine
19165                                                                                             ivermectin, pyrantel pamoate
19169                                                                                                               ivermectin
19170                                                                                                 fipronil, (s)-methoprene
19183                                                                                                 flumethrin, imidacloprid
19184                                                                                                               ivermectin
19213                                                                                                         pyrantel pamoate
19214                                                                                                              toltrazuril
19215                                                                                              lufenuron, milbemycin oxime
19216                                                                                    dinotefuran, permethrin, pyriproxyfen
19217                                                                                    dinotefuran, permethrin, pyriproxyfen
19220                                                                                             ivermectin, pyrantel pamoate
19221                                                                                             ivermectin, pyrantel pamoate
19222                                                                                                               fluralaner
19223                                                                                             ivermectin, pyrantel pamoate
19224                                                                                                 flumethrin, imidacloprid
19246                                                                                                 joint supplement (other)
19252                                                                                                            ciprofloxacin
19253                                                                                                     cefpodoxime proxetil
19254                                                                                                               prednisone
19271                                                                                              lufenuron, milbemycin oxime
19272                                                                                                               fluralaner
19273                                                                                              lufenuron, milbemycin oxime
19276                                                                             florfenicol, mometasone furoate, terbinafine
19278                                                                                              lufenuron, milbemycin oxime
19281                                                                                              lufenuron, milbemycin oxime
19282                                                                                                               fluralaner
19288                                                                             florfenicol, mometasone furoate, terbinafine
19298                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                             florfenicol, mometasone furoate, terbinafine
19318                                                                                                 fipronil, (s)-methoprene
19325                                                                                                     prednisolone acetate
19326                                                                                              lufenuron, milbemycin oxime
19327                                                                                                 imidacloprid, permethrin
19338                                                                                                         liver supplement
19350                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
19353                                                                                           polysulfated glycosaminoglycan
19354                                                                                                             chlorambucil
19356                                                                                                               ivermectin
19357                                                                                                         milbemycin oxime
19373                                                                                             ivermectin, pyrantel pamoate
19386                                                                                              lufenuron, milbemycin oxime
19387                                                                                              lufenuron, milbemycin oxime
19390                                                                                        betamethasone, gentamicin sulfate
19391                                                                                              lufenuron, milbemycin oxime
19423                                                                               ivermectin, praziquantel, pyrantel pamoate
19427                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19445                                                                                              lufenuron, milbemycin oxime
19446                                                                                                   cyphenothrin, fipronil
19447                                                                                              lufenuron, milbemycin oxime
19448                                                                                                               fluralaner
19449                                                                               joint supplement (chondroitin sulfate/msm)
19450                                                                                                                  omega 3
19452                                                                                    chlorhexidine gluconate, ketoconazole
19453                                                                          betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                  ketoconazole, tris-edta
19457                                                                                              lufenuron, milbemycin oxime
19462                                                                                              lufenuron, milbemycin oxime
19463                                                                                                               fluralaner
19464                                                                                                             enrofloxacin
19465                                                                                           ketoconazole, phytosphingosine
19476                                                                                                                meloxicam
19482                                                                                             ivermectin, pyrantel pamoate
19486                                                                                             ivermectin, pyrantel pamoate
19487                                                                                                               afoxolaner
19492                                                                                             ivermectin, pyrantel pamoate
19493                                                                                                               afoxolaner
19495                                                                               toothpaste/dental health solution or chews
19537                                                                                                               ivermectin
19568                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
19596                                                                                lufenuron, milbemycin oxime, praziquantel
19603                                                                                               milbemycin oxime, spinosad
19617                                                                                                 fipronil, (s)-methoprene
19641                                                                                                            yunnan baiyao
19651                                                                             dexamethasone, neomycin sulfate, polymyxin b
19662                                                                                                                probiotic
19663                                                                                       amoxicillin, clavulanate potassium
19673                                                                                             ivermectin, pyrantel pamoate
19674                                                                                                                sarolaner
19685                                                                                              lufenuron, milbemycin oxime
19686                                                                                              lufenuron, milbemycin oxime
19688                                                                                              lufenuron, milbemycin oxime
19689                                                                                              lufenuron, milbemycin oxime
19690                                                                          betamethasone, clotrimazole, gentamicin sulfate
19710                                                                                             ivermectin, pyrantel pamoate
19711                                                                                lufenuron, milbemycin oxime, praziquantel
19712                                                                                                 flumethrin, imidacloprid
19713                                                                                lufenuron, milbemycin oxime, praziquantel
19714                                                                                                 flumethrin, imidacloprid
19715                                                                                              lufenuron, milbemycin oxime
19716                                                                                                 flumethrin, imidacloprid
19717                                                                                              lufenuron, milbemycin oxime
19718                                                                                                 flumethrin, imidacloprid
19722                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19735                                                                          betamethasone, clotrimazole, gentamicin sulfate
19737                                                                          betamethasone, clotrimazole, gentamicin sulfate
19741                                                                                              lufenuron, milbemycin oxime
19754                                                                                                         milbemycin oxime
19767                                                                                         naphazoline, pheniramine maleate
19768                                                                                                               selamectin
19771                                                                                               milbemycin oxime, spinosad
19776                                                                                               milbemycin oxime, spinosad
19777                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                          dexmedetomidine
19788                                                                              chlorhexidine gluconate, miconazole nitrate
19790                                                                                                                mupirocin
19792                                                                                       chlorhexidine gluconate, ophytrium
19801                                                                                                               fluralaner
19803                                                                                              lufenuron, milbemycin oxime
19823                                                                                                       gentamicin sulfate
19828                                                                                           milbemycin oxime, praziquantel
19829                                                                                    dinotefuran, permethrin, pyriproxyfen
19838                                                                                                              omega 3-6-9
19843                                                                           mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                               lokivetmab
19845                                                                           mometasone furoate, orbifloxacin, posaconazole
19851                                                                                                               ivermectin
19856                                                                                                         milbemycin oxime
19866                                                                                        betamethasone, gentamicin sulfate
19876                                                                                                            marbofloxacin
19881                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19888                                                                               ivermectin, praziquantel, pyrantel pamoate
19907                                                                                               milbemycin oxime, spinosad
19909                                                                                                         milbemycin oxime
19911                                                                               toothpaste/dental health solution or chews
19912                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19914                                                                                                     prebiotic, probiotic
19917                                                                                     diatomaceous earth, neem oil, yarrow
19925                                                                                                             enrofloxacin
19926                                                                                                              florfenicol
19927                                                                                                       gentamicin sulfate
19928                                                                                                              polymyxin b
19930                                                                                               milbemycin oxime, spinosad
19932                                                                                               milbemycin oxime, spinosad
19933                                                                                               milbemycin oxime, spinosad
19944                                                                                       joint supplement (glucosamine hcl)
19945                                                                                                                  omega 3
19946                                                                                               milbemycin oxime, spinosad
19947                                                                                       joint supplement (glucosamine hcl)
19948                                                                                                                  omega 3
19949                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                  omega 3
19952                                                                                                         pyrantel pamoate
19958                                                                                                 flumethrin, imidacloprid
19969                                                                                        betamethasone, gentamicin sulfate
19975                                                                                             ivermectin, pyrantel pamoate
19984                                                                                                               fluralaner
20003                                                                                             ivermectin, pyrantel pamoate
20006                                                                                       amoxicillin, clavulanate potassium
20007                                                                                        betamethasone, gentamicin sulfate
20019                                                                                             ivermectin, pyrantel pamoate
20020                                                                                                               afoxolaner
20024                                                                                                                probiotic
20025                                                                                                     digestive supplement
20026                                                                                                             multivitamin
20027                                                                                                               afoxolaner
20028                                                                                             ivermectin, pyrantel pamoate
20038                                                                                                               afoxolaner
20039                                                                                                               ivermectin
20065                                                                                                             imidacloprid
20068                                                                                                               nitenpyram
20069                                                                                    chlorhexidine gluconate, ketoconazole
20070                                                                                                 imidacloprid, moxidectin
20072                                                                                                               ivermectin
20074                                                                                               milbemycin oxime, spinosad
20096                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20099                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20105                                                                                                         atropine sulfate
20106                                                                                                                 xylazine
20125                                                                                                  triamcinolone acetonide
20126                                                                                                               ivermectin
20127                                                                                                               afoxolaner
20130                                                                                                  acetic acid, boric acid
20131                                                                                                         milbemycin oxime
20135                                                                                           milbemycin oxime, praziquantel
20144                                                                                                         milbemycin oxime
20145                                                                                                               lokivetmab
20149                                                                                                         burow's solution
20150                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20164                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20173                                                                                                 imidacloprid, permethrin
20174                                                                                              lufenuron, milbemycin oxime
20175                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20182                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20218                                                                                                               ivermectin
20219                                                                                                               ivermectin
20220                                                                                                               ivermectin
20221                                                                                                               afoxolaner
20222                                                                                                               afoxolaner
20224                                                                                                               afoxolaner
20231                                                                                                                ketotifen
20232                                                                                               imidacloprid, pyriproxyfen
20233                                                                                              lufenuron, milbemycin oxime
20234                                                                             dexamethasone, neomycin sulfate, polymyxin b
20240                                                                                                 imidacloprid, permethrin
20241                                                                                               imidacloprid, pyriproxyfen
20243                                                                                       fipronil, permethrin, pyriproxyfen
20244                                                                                                               ivermectin
20245                                                                                             ivermectin, pyrantel pamoate
20251                                                                                                                probiotic
20272                                                                               toothpaste/dental health solution or chews
20275                                                                                              lufenuron, milbemycin oxime
20282                                                                                              lufenuron, milbemycin oxime
20292                                                                                                               ivermectin
20293                                                                                    dinotefuran, permethrin, pyriproxyfen
20295                                                                                    dinotefuran, permethrin, pyriproxyfen
20297                                                                                                 imidacloprid, moxidectin
20298                                                                                                               tobramycin
20299                                                                             florfenicol, mometasone furoate, terbinafine
20300                                                                                                 imidacloprid, moxidectin
20301                                                                                                 flumethrin, imidacloprid
20302                                                                                                 imidacloprid, moxidectin
20303                                                                                                 flumethrin, imidacloprid
20306                                                                                              lufenuron, milbemycin oxime
20315                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20337                                                                                                  ketoconazole, tris-edta
20339                                                                                                  acetic acid, boric acid
20340                                                                                                      silver sulfadiazine
20342                                                                                                                pramoxine
20343                                                                                        trimeprazine tartrate, prednisone
20344                                                                                               milbemycin oxime, spinosad
20348                                                                                             ivermectin, pyrantel pamoate
20356                                                                                           milbemycin oxime, praziquantel
20374                                                                                                             fenbendazole
20376                                                                                                                probiotic
20377                                                                                              lufenuron, milbemycin oxime
20380                                                                                                                probiotic
20382                                                                                 febantel, praziquantel, pyrantel pamoate
20387                                                                                              lufenuron, milbemycin oxime
20388                                                                                              lufenuron, milbemycin oxime
20390                                                                                              lufenuron, milbemycin oxime
20392                                                                               dimethyl sulfoxide, fluocinolone acetonide
20393                                                                                                                mupirocin
20402                                                                                              lufenuron, milbemycin oxime
20405                                                                                           milbemycin oxime, praziquantel
20406                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
20409                                                                                           milbemycin oxime, praziquantel
20411                                                                                           milbemycin oxime, praziquantel
20413                                                                                                         milbemycin oxime
20425                                                                                              lufenuron, milbemycin oxime
20426                                                                                lufenuron, milbemycin oxime, praziquantel
20441                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20444                                                                                                                meloxicam
20446                                                                                                                meloxicam
20453                                                                                              lufenuron, milbemycin oxime
20460                                                                                              lufenuron, milbemycin oxime
20485                                                                                                                mupirocin
20490                                                                                             ivermectin, pyrantel pamoate
20491                                                                                                               afoxolaner
20510                                                                                               sulfadiazine, trimethoprim
20511                                                                                             ivermectin, pyrantel pamoate
20512                                                                                                               afoxolaner
20516                                                                                             ivermectin, pyrantel pamoate
20517                                                                                                               afoxolaner
20518                                                                                                                  omega 3
20554                                                                                               milbemycin oxime, spinosad
20555                                                                                               milbemycin oxime, spinosad
20561                                                                                               milbemycin oxime, spinosad
20565                                                                                               milbemycin oxime, spinosad
20568                                                                                               milbemycin oxime, spinosad
20574                                                                                                  ketoconazole, tris-edta
20577                                                                                       chlorhexidine gluconate, tris-edta
20579                                                                                               milbemycin oxime, spinosad
20582                                                                                               milbemycin oxime, spinosad
20585                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20615                                                                                               imidacloprid, pyriproxyfen
20623                                                                                                                probiotic
20636                                                                                                 fipronil, (s)-methoprene
20638                                                                                       fipronil, permethrin, pyriproxyfen
20641                                                                 citronella, geranium oil, lemongrass oil, peppermint oil
20642                                                                                                 fipronil, (s)-methoprene
20645                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20648                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20651                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20659                                                                                                  jing tang max's formula
20666                                                                                                immune support supplement
20667                                                                                                                probiotic
20678                                                                                                              finasteride
20698                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20701                                                                                               imidacloprid, pyriproxyfen
20702                                                                                             ivermectin, pyrantel pamoate
20704                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20705                                                                                                  chlorhexidine gluconate
20707                                                                                               milbemycin oxime, spinosad
20708                                                                                                  chlorhexidine gluconate
20709                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20712                                                                                                        unspecified wipes
20717                                                                                                         milbemycin oxime
20718                                                                                                         milbemycin oxime
20728                                                                                                              amoxicillin
20738                                                                                                               prednisone
20745                                                                                        betamethasone, gentamicin sulfate
20748                                                                                             ivermectin, pyrantel pamoate
20750                                                                          betamethasone, clotrimazole, gentamicin sulfate
20761                                                                                               milbemycin oxime, spinosad
20762                                                                                               milbemycin oxime, spinosad
20763                                                                                               milbemycin oxime, spinosad
20766                                                                                               milbemycin oxime, spinosad
20767                                                                                               milbemycin oxime, spinosad
20771                                                                                       amoxicillin, clavulanate potassium
20783                                                                                               milbemycin oxime, spinosad
20791                                                                                   joint supplement (glucosamine hcl/msm)
20796                                                                                   joint supplement (glucosamine hcl/msm)
20800                                                                                                         milbemycin oxime
20808                                                                                             ivermectin, pyrantel pamoate
20809                                                                                                               afoxolaner
20814                                                                                        betamethasone, gentamicin sulfate
20817                                                                                               milbemycin oxime, spinosad
20819                                                                                               milbemycin oxime, spinosad
20849                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20852                                                                                        trimeprazine tartrate, prednisone
20854                                                                                             ivermectin, pyrantel pamoate
20855                                                                                                               afoxolaner
20858                                                                                             ivermectin, pyrantel pamoate
20861                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20862                                                                                             ivermectin, pyrantel pamoate
20863                                                                                                               afoxolaner
20872                                                                                                               selamectin
20897                                                                                                                mupirocin
20918                                                                                        trimeprazine tartrate, prednisone
20939                                                                                                 flumethrin, imidacloprid
20940                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20941                                                                                                             multivitamin
20947                                                                                                 flumethrin, imidacloprid
20949                                                                                                 flumethrin, imidacloprid
20962                                                                                             ivermectin, pyrantel pamoate
20963                                                                                                 fipronil, (s)-methoprene
20964                                                                                             ivermectin, pyrantel pamoate
20965                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20966                                                                                             ivermectin, pyrantel pamoate
20972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21003                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21013                                                                             dexamethasone, neomycin sulfate, polymyxin b
21017                                                                                chlorhexidine gluconate, phytosphingosine
21022                                                                                               milbemycin oxime, spinosad
21025                                                                                        trimeprazine tartrate, prednisone
21029                                                                                               milbemycin oxime, spinosad
21074                                                                                               milbemycin oxime, spinosad
21078                                                                                               milbemycin oxime, spinosad
21080                                                                                               milbemycin oxime, spinosad
21088                                                                                                                 niosomes
21102                                                                                                               selamectin
21109                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21110                                                                                              lufenuron, milbemycin oxime
21111                                                                          betamethasone, clotrimazole, gentamicin sulfate
21112                                                                                                  ketoconazole, tris-edta
21114                                                                                                         milbemycin oxime
21115                                                                                                                 fipronil
21119                                                                               dextromethorphan hydrobromide, guaifenesin
21122                                                                                                         milbemycin oxime
21123                                                                                                                 fipronil
21124                                                                           dexamethasone, neomycin sulfate, thiabendazole
21125                                                                           mometasone furoate, orbifloxacin, posaconazole
21126                                                                                                     cefpodoxime proxetil
21127                                                                                              lufenuron, milbemycin oxime
21128                                                                                                               prednisone
21129                                                                                                     cefpodoxime proxetil
21130                                                                                                                  omega 3
21131                                                                                       chlorhexidine gluconate, ophytrium
21132                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21133                                                                                              lufenuron, milbemycin oxime
21168                                                                                             ivermectin, pyrantel pamoate
21169                                                                                                 fipronil, (s)-methoprene
21178                                                                             dexamethasone, neomycin sulfate, polymyxin b
21179                                                                                              lufenuron, milbemycin oxime
21180                                                                                               milbemycin oxime, spinosad
21181                                                                                              lufenuron, milbemycin oxime
21182                                                                                              lufenuron, milbemycin oxime
21183                                                                                              lufenuron, milbemycin oxime
21189                                                                                               milbemycin oxime, spinosad
21190                                                                                               milbemycin oxime, spinosad
21192                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
21201                                                                                           milbemycin oxime, praziquantel
21224                                                                                                             erythromycin
21253                                                                                               milbemycin oxime, spinosad
21254                                                                                              lufenuron, milbemycin oxime
21256                                                                                              lufenuron, milbemycin oxime
21267                                                                                               milbemycin oxime, spinosad
21268                                                                          betamethasone, clotrimazole, gentamicin sulfate
21269                                                                                               milbemycin oxime, spinosad
21273                                                                                              lufenuron, milbemycin oxime
21278                                                                          betamethasone, clotrimazole, gentamicin sulfate
21282                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21287                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21309                                                                                        trimeprazine tartrate, prednisone
21326                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21331                                                                                       joint supplement (glucosamine hcl)
21338                                                                                               imidacloprid, pyriproxyfen
21359                                                                                              lufenuron, milbemycin oxime
21361                                                                                              lufenuron, milbemycin oxime
21367                                                                                                                meloxicam
21369                                                                                              lufenuron, milbemycin oxime
21384                                                                                             ivermectin, pyrantel pamoate
21385                                                                                                               afoxolaner
21386                                                                          betamethasone, clotrimazole, gentamicin sulfate
21387                                                                                                             enrofloxacin
21388                                                                                                             ketoconazole
21389                                                                                                  triamcinolone acetonide
21403                                                                                                         milbemycin oxime
21413                                                                                                   unspecified medication
21416                                                                             florfenicol, mometasone furoate, terbinafine
21442                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21445                                                                                             ivermectin, pyrantel pamoate
21448                                                                                             ivermectin, pyrantel pamoate
21449                                                                                                               afoxolaner
21465                                                                                                               gabapentin
21472                                                                                       amoxicillin, clavulanate potassium
21481                                                                                               imidacloprid, pyriproxyfen
21491                                                                                                       gentamicin sulfate
21492                                                                                             ivermectin, pyrantel pamoate
21493                                                                                                               afoxolaner
21495                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21504                                                                                                             fenbendazole
21507                                                                                                             fenbendazole
21508                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21509                                                                                                         pyrantel pamoate
21522                                                                                  betamethasone, florfenicol, terbinafine
21527                                                                                                 imidacloprid, moxidectin
21528                                                                                                             imidacloprid
21531                                                                                             ivermectin, pyrantel pamoate
21532                                                                                             ivermectin, pyrantel pamoate
21533                                                                                                               afoxolaner
21534                                                                                           polysulfated glycosaminoglycan
21545                                                                                                               fluralaner
21546                                                                             florfenicol, mometasone furoate, terbinafine
21549                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21552                                                                                           ketoconazole, phytosphingosine
21553                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21555                                                                                                            dexamethasone
21558                                                                                              lufenuron, milbemycin oxime
21562                                                                                               imidacloprid, pyriproxyfen
21563                                                                                              lufenuron, milbemycin oxime
21564                                                                                               imidacloprid, pyriproxyfen
21585                                                                                               milbemycin oxime, spinosad
21586                                                                                                         milbemycin oxime
21587                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21593                                                                                                                  omega 3
21600                                                                                                                meloxicam
21602                                                                                              lufenuron, milbemycin oxime
21605                                                                                                                meloxicam
21607                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21608                                                                                              lufenuron, milbemycin oxime
21609                                                                                                               fluralaner
21612                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21614                                                                                                               fluralaner
21615                                                                                              lufenuron, milbemycin oxime
21616                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21617                                                                                              lufenuron, milbemycin oxime
21618                                                                                                               fluralaner
21619                                                                                              lufenuron, milbemycin oxime
21620                                                                                                               fluralaner
21621                                                                                              lufenuron, milbemycin oxime
21622                                                                                                               fluralaner
21625                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21632                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21637                                                                             dexamethasone, neomycin sulfate, polymyxin b
21642                                                                                              lufenuron, milbemycin oxime
21643                                                                                              lufenuron, milbemycin oxime
21644                                                                                              lufenuron, milbemycin oxime
21645                                                                                              lufenuron, milbemycin oxime
21646                                                                                              lufenuron, milbemycin oxime
21648                                                                                               imidacloprid, pyriproxyfen
21649                                                                                              lufenuron, milbemycin oxime
21650                                                                                                                probiotic
21651                                                                                              lufenuron, milbemycin oxime
21652                                                                                                 flumethrin, imidacloprid
21653                                                                                                      ear cleaner (zymox)
21654                                                                                              lufenuron, milbemycin oxime
21655                                                                                                 flumethrin, imidacloprid
21658                                                                                                 flumethrin, imidacloprid
21659                                                                                                      ear cleaner (zymox)
21660                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21661                                                                                        betamethasone, gentamicin sulfate
21666                                                                                                 flumethrin, imidacloprid
21673                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21677                                                                                                                probiotic
21678                                                                                        betamethasone, gentamicin sulfate
21680                                                                             florfenicol, mometasone furoate, terbinafine
21685                                                                                                                mupirocin
21701                                                                                                 flumethrin, imidacloprid
21705                                                                                                 flumethrin, imidacloprid
21707                                                                                                 flumethrin, imidacloprid
21708                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21723                                                                                               milbemycin oxime, spinosad
21725                                                                                                         milbemycin oxime
21727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21739                                                                                              lufenuron, milbemycin oxime
21748                                                                                              lufenuron, milbemycin oxime
21749                                                                                                 imidacloprid, permethrin
21753                                                                                                         milbemycin oxime
21754                                                                                                         milbemycin oxime
21755                                                                                                               fluralaner
21757                                                                                                         milbemycin oxime
21767                                                                                                                trazodone
21783                                                                                   fipronil, pyriproxyfen, (s)-methoprene
21796                                                                                                               ivermectin
21809                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21810                                                                                               cardiac support supplement
21814                                                                                             ivermectin, pyrantel pamoate
21815                                                                                                 fipronil, (s)-methoprene
21833                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21851                                                                                                         milbemycin oxime
21865                                                                                             ivermectin, pyrantel pamoate
21866                                                                                               imidacloprid, pyriproxyfen
21869                                                                                                               ivermectin
21872                                                                                               imidacloprid, pyriproxyfen
21873                                                                                             ivermectin, pyrantel pamoate
21875                                                                                             ivermectin, pyrantel pamoate
21876                                                                                               imidacloprid, pyriproxyfen
21877                                                                                                              oclacitinib
21878                                                                                                           hydrocortisone
21886                                                                                               imidacloprid, pyriproxyfen
21894                                                                                              lufenuron, milbemycin oxime
21897                                                                                              lufenuron, milbemycin oxime
21898                                                                                                               afoxolaner
21912                                                                                             ivermectin, pyrantel pamoate
21914                                                                                                               ivermectin
21915                                                                                                 fipronil, (s)-methoprene
21918                                                                                                                probiotic
21921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21925                                                                              rx diet - hypoallergenic hydrolyzed protein
21949                                                                             florfenicol, mometasone furoate, terbinafine
21955                                                                                                               fluralaner
21956                                                                                                               ivermectin
21957                                                                                                                  omega 3
21959                                                                                           sulfamethoxazole, trimethoprim
21982                                                                                       fipronil, permethrin, pyriproxyfen
21993                                                                                                         milbemycin oxime
22020                                                                                         phytosphingosine, salicylic acid
22022                                                                                                               sucralfate
22023                                                                                              lufenuron, milbemycin oxime
22025                                                                                              lufenuron, milbemycin oxime
22026                                                                                              lufenuron, milbemycin oxime
22037                                                                                             ivermectin, pyrantel pamoate
22038                                                                                                               afoxolaner
22041                                                                                             ivermectin, pyrantel pamoate
22042                                                                                                               afoxolaner
22043                                                                                                                meloxicam
22045                                                                                             ivermectin, pyrantel pamoate
22046                                                                                                               afoxolaner
22048                                                                                        betamethasone, gentamicin sulfate
22050                                                                                                                probiotic
22051                                                                                               milbemycin oxime, spinosad
22060                                                                                               milbemycin oxime, spinosad
22062                                                                                                         milbemycin oxime
22064                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22088                                                                                             ivermectin, pyrantel pamoate
22089                                                                                                               afoxolaner
22092                                                                                             ivermectin, pyrantel pamoate
22093                                                                                                               afoxolaner
22118                                                                                                               ivermectin
22120                                                                             dexamethasone, neomycin sulfate, polymyxin b
22121                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22125                                                                                             ivermectin, pyrantel pamoate
22128                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22136                                                                                             ivermectin, pyrantel pamoate
22140                                                                                                         milbemycin oxime
22141                                                                                                               fluralaner
22151                                                                                                              vincristine
22160                                                                                             ivermectin, pyrantel pamoate
22161                                                                                             ivermectin, pyrantel pamoate
22163                                                                                             ivermectin, pyrantel pamoate
22173                                                                                             ivermectin, pyrantel pamoate
22175                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22176                                                                                             ivermectin, pyrantel pamoate
22177                                                                                                               afoxolaner
22179                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22189                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22190                                                                                          ear cleaner (epi-otic advanced)
22191                                                                             florfenicol, mometasone furoate, terbinafine
22196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22197                                                                             florfenicol, mometasone furoate, terbinafine
22199                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22201                                                                             florfenicol, mometasone furoate, terbinafine
22216                                                                                             ivermectin, pyrantel pamoate
22217                                                                                                               afoxolaner
22218                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
22219                                                                          betamethasone, clotrimazole, gentamicin sulfate
22222                                                                                              lufenuron, milbemycin oxime
22223                                                                                              lufenuron, milbemycin oxime
22224                                                                                                                 fipronil
22225                                                                                              lufenuron, milbemycin oxime
22226                                                                                                               afoxolaner
22227                                                                                              lufenuron, milbemycin oxime
22228                                                                                                               afoxolaner
22229                                                                                                         milbemycin oxime
22230                                                                                                                lotilaner
22237                                                                                               milbemycin oxime, spinosad
22238                                                                                               milbemycin oxime, spinosad
22239                                                                                               milbemycin oxime, spinosad
22240                                                                                                                carprofen
22241                                                                                                          dexmedetomidine
22243                                                                                                   unspecified medication
22245                                                                                                               cephalexin
22253                                                                                               milbemycin oxime, spinosad
22261                                                                                             ivermectin, pyrantel pamoate
22262                                                                                                               afoxolaner
22265                                                                                             ivermectin, pyrantel pamoate
22267                                                                                             ivermectin, pyrantel pamoate
22268                                                                                                               afoxolaner
22270                                                                                                                  omega 3
22272                                                                                                                mupirocin
22289                                                                                                         milbemycin oxime
22299                                                                                               milbemycin oxime, spinosad
22306                                                                                              lufenuron, milbemycin oxime
22308                                                                                              lufenuron, milbemycin oxime
22311                                                                                              lufenuron, milbemycin oxime
22313                                                                                                          dexmedetomidine
22314                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22315                                                                                                                probiotic
22316                                                                                              lufenuron, milbemycin oxime
22319                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22321                                                                                              lufenuron, milbemycin oxime
22323                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22341                                                                                  betamethasone, florfenicol, terbinafine
22342                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22343                                                                                  betamethasone, florfenicol, terbinafine
22345                                                                                                             enrofloxacin
22346                                                                                                       miconazole nitrate
22347                                                                                                            dexamethasone
22349                                                                                                                meloxicam
22351                                                                                               milbemycin oxime, spinosad
22352                                                                                               milbemycin oxime, spinosad
22353                                                                                               milbemycin oxime, spinosad
22367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22404                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22407                                                                                                     cefpodoxime proxetil
22408                                                                                                  chlorhexidine gluconate
22410                                                                                                  chlorhexidine gluconate
22413                                                                                             ivermectin, pyrantel pamoate
22417                                                                                             ivermectin, pyrantel pamoate
22430                                                                                                                meloxicam
22439                                                                                               milbemycin oxime, spinosad
22440                                                                                               milbemycin oxime, spinosad
22441                                                                                              lufenuron, milbemycin oxime
22459                                                                                                  triamcinolone acetonide
22463                                                                                                  triamcinolone acetonide
22520                                                                                                               sucralfate
22530                                                                                             ivermectin, pyrantel pamoate
22531                                                                                              lufenuron, milbemycin oxime
22532                                                                                              lufenuron, milbemycin oxime
22533                                                                                                 flumethrin, imidacloprid
22534                                                                                              lufenuron, milbemycin oxime
22537                                                                                                                ophytrium
22540                                                                                                            yunnan baiyao
22541                                                                                              lufenuron, milbemycin oxime
22545                                                                                              lufenuron, milbemycin oxime
22546                                                                                              lufenuron, milbemycin oxime
22547                                                                                               imidacloprid, pyriproxyfen
22548                                                                                              lufenuron, milbemycin oxime
22549                                                                                              lufenuron, milbemycin oxime
22552                                                                                                                  omega 3
22556                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
22557                                                                                             ivermectin, pyrantel pamoate
22558                                                                                             ivermectin, pyrantel pamoate
22574                                                                                                  triamcinolone acetonide
22575                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
22577                                                                                             ivermectin, pyrantel pamoate
22578                                                                                             ivermectin, pyrantel pamoate
22579                                                                                             ivermectin, pyrantel pamoate
22583                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22585                                                                                                                probiotic
22598                                                                                                 fipronil, (s)-methoprene
22601                                                                                                 fipronil, (s)-methoprene
22606                                                                                             ivermectin, pyrantel pamoate
22607                                                                                                 fipronil, (s)-methoprene
22610                                                                                               milbemycin oxime, spinosad
22611                                                                                               milbemycin oxime, spinosad
22625                                                                                             ivermectin, pyrantel pamoate
22653                                                                                              lufenuron, milbemycin oxime
22655                                                                                                 fipronil, (s)-methoprene
22656                                                                                              lufenuron, milbemycin oxime
22662                                                                          betamethasone, clotrimazole, gentamicin sulfate
22667                                                                          betamethasone, clotrimazole, gentamicin sulfate
22669                                                                          betamethasone, clotrimazole, gentamicin sulfate
22670                                                                                  betamethasone, florfenicol, terbinafine
22672                                                                          betamethasone, clotrimazole, gentamicin sulfate
22673                                                                                        trimeprazine tartrate, prednisone
22681                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22682                                                                                             ivermectin, pyrantel pamoate
22683                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22690                                                                                                 flumethrin, imidacloprid
22691                                                                                              lufenuron, milbemycin oxime
22692                                                                                              lufenuron, milbemycin oxime
22693                                                                                                         milbemycin oxime
22704                                                                                             ivermectin, pyrantel pamoate
22705                                                                                                 fipronil, (s)-methoprene
22707                                                                                             ivermectin, pyrantel pamoate
22708                                                                                                 fipronil, (s)-methoprene
22709                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22710                                                                                                       miconazole nitrate
22711                                                                                             ivermectin, pyrantel pamoate
22713                                                                                             ivermectin, pyrantel pamoate
22714                                                                                                                sarolaner
22715                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22716                                                                                             ivermectin, pyrantel pamoate
22717                                                                                                                sarolaner
22718                                                                                             ivermectin, pyrantel pamoate
22719                                                                                             ivermectin, pyrantel pamoate
22721                                                                                                       miconazole nitrate
22733                                                                                                 flumethrin, imidacloprid
22748                                                                                              lufenuron, milbemycin oxime
22749                                                                                              lufenuron, milbemycin oxime
22750                                                                                               imidacloprid, pyriproxyfen
22751                                                                                              lufenuron, milbemycin oxime
22752                                                                                               imidacloprid, pyriproxyfen
22754                                                                                              lufenuron, milbemycin oxime
22763                                                                                             ivermectin, pyrantel pamoate
22764                                                                                               imidacloprid, pyriproxyfen
22765                                                                                          ear cleaner (epi-otic advanced)
22766                                                                                                         milbemycin oxime
22770                                                                                                         milbemycin oxime
22777                                                                                               milbemycin oxime, spinosad
22778                                                                                               milbemycin oxime, spinosad
22779                                                                                               milbemycin oxime, spinosad
22780                                                                                               milbemycin oxime, spinosad
22795                                                                                             ivermectin, pyrantel pamoate
22796                                                                                               imidacloprid, pyriproxyfen
22797                                                                                              lufenuron, milbemycin oxime
22798                                                                                       fipronil, permethrin, pyriproxyfen
22799                                                                                              lufenuron, milbemycin oxime
22800                                                                                                               afoxolaner
22801                                                                                              lufenuron, milbemycin oxime
22802                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22803                                                                                             ivermectin, pyrantel pamoate
22804                                                                                                               afoxolaner
22830                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22840                                                                                             ivermectin, pyrantel pamoate
22848                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22858                                                                                                  chlorhexidine gluconate
22875                                                                                               imidacloprid, pyriproxyfen
22886                                                                                                  ketoconazole, tris-edta
22909                                                                                             ivermectin, pyrantel pamoate
22919                                                                                                               afoxolaner
22920                                                                                                             fenbendazole
22922                                                                                                  ketoconazole, tris-edta
22923                                                                                                     prebiotic, probiotic
22926                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22929                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22936                                                                                       chlorhexidine gluconate, tris-edta
22938                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22939                                                                          betamethasone, clotrimazole, gentamicin sulfate
22954                                                                                               imidacloprid, pyriproxyfen
22955                                                                                             ivermectin, pyrantel pamoate
22963                                                                                                 fipronil, (s)-methoprene
22965                                                                                             ivermectin, pyrantel pamoate
22966                                                                                                 flumethrin, imidacloprid
22967                                                                                                                probiotic
22971                                                                                             ivermectin, pyrantel pamoate
22990                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22991                                                                                                         milbemycin oxime
22992                                                                                                             imidacloprid
22994                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23005                                                                                                            dexamethasone
23006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23007                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23008                                                                                                            dexamethasone
23009                                                                                                         pyrantel pamoate
23018                                                                                                            metronidazole
23019                                                                                                                carprofen
23024                                                                                                                probiotic
23025                                                                                                     digestive supplement
23043                                                                                                 joint supplement (other)
23049                                                                                                               ivermectin
23051                                                                                                               ivermectin
23053                                                                                             ivermectin, pyrantel pamoate
23055                                                                                                               fluralaner
23059                                                                                                         milbemycin oxime
23060                                                                                                         milbemycin oxime
23061                                                                                                               fluralaner
23064                                                                                              lufenuron, milbemycin oxime
23066                                                                                              lufenuron, milbemycin oxime
23083                                                                                               milbemycin oxime, spinosad
23095                                                                                               milbemycin oxime, spinosad
23096                                                                                                               fluralaner
23100                                                                             florfenicol, mometasone furoate, terbinafine
23102                                                                                       amoxicillin, clavulanate potassium
23103                                                                             florfenicol, mometasone furoate, terbinafine
23108                                                                                                  chlorhexidine gluconate
23122                                                                                             ivermectin, pyrantel pamoate
23123                                                                                               imidacloprid, pyriproxyfen
23124                                                                                               imidacloprid, pyriproxyfen
23125                                                                                             ivermectin, pyrantel pamoate
23134                                                                                              lufenuron, milbemycin oxime
23137                                                                                              lufenuron, milbemycin oxime
23138                                                                                              lufenuron, milbemycin oxime
23143                                                                                              lufenuron, milbemycin oxime
23144                                                                                                                sarolaner
23153                                                                                                                mupirocin
23154                                                                             dexamethasone, neomycin sulfate, polymyxin b
23163                                                                           dexamethasone, neomycin sulfate, thiabendazole
23169                                                                                       unspecified heartworm preventative
23173                                                                                        unspecified parasite preventative
23175                                                                                             ivermectin, pyrantel pamoate
23202                                                                                                               ivermectin
23237                                                                                           praziquantel, pyrantel pamoate
23249                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23250                                                                                                               afoxolaner
23251                                                                                             ivermectin, pyrantel pamoate
23257                                                                                               lactated ringer's solution
23258                                                                                             ivermectin, pyrantel pamoate
23259                                                                                    dinotefuran, permethrin, pyriproxyfen
23266                                                                                                               isoflurane
23267                                                                                             ivermectin, pyrantel pamoate
23268                                                                                    dinotefuran, permethrin, pyriproxyfen
23276                                                                                                               isoflurane
23278                                                                                                         phytosphingosine
23279                                                                                             ivermectin, pyrantel pamoate
23280                                                                                                               afoxolaner
23283                                                                                       chlorhexidine gluconate, ophytrium
23284                                                                                       amoxicillin, clavulanate potassium
23286                                                                                             ivermectin, pyrantel pamoate
23288                                                                                                         phytosphingosine
23294                                                                                             ivermectin, pyrantel pamoate
23299                                                                                       amoxicillin, clavulanate potassium
23304                                                                                                         phytosphingosine
23305                                                                                chlorhexidine gluconate, phytosphingosine
23306                                                                                                  triamcinolone acetonide
23308                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23321                                                                                 febantel, praziquantel, pyrantel pamoate
23322                                                                                                                mupirocin
23325                                                                                                               lokivetmab
23333                                                                                             ivermectin, pyrantel pamoate
23336                                                                                             ivermectin, pyrantel pamoate
23337                                                                                                 fipronil, (s)-methoprene
23338                                                                                    dinotefuran, permethrin, pyriproxyfen
23340                                                                                          ear cleaner (epi-otic advanced)
23341                                                                                             ivermectin, pyrantel pamoate
23342                                                                                    dinotefuran, permethrin, pyriproxyfen
23344                                                                                             ivermectin, pyrantel pamoate
23345                                                                                    dinotefuran, permethrin, pyriproxyfen
23349                                                                                                         phytosphingosine
23350                                                                                             ivermectin, pyrantel pamoate
23353                                                                                       amoxicillin, clavulanate potassium
23355                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23356                                                                                             ivermectin, pyrantel pamoate
23360                                                                                             ivermectin, pyrantel pamoate
23364                                                                                                         phytosphingosine
23366                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23384                                                                                                 fipronil, (s)-methoprene
23388                                                                                                               ivermectin
23403                                                                                                         milbemycin oxime
23404                                                                                                               fluralaner
23413                                                                                                               ivermectin
23414                                                                                             ivermectin, pyrantel pamoate
23419                                                                                              dexamethasone, enrofloxacin
23422                                                                             florfenicol, mometasone furoate, terbinafine
23423                                                                             florfenicol, mometasone furoate, terbinafine
23427                                                                                              lufenuron, milbemycin oxime
23428                                                                                              lufenuron, milbemycin oxime
23437                                                                                               milbemycin oxime, spinosad
23450                                                                                       fipronil, permethrin, pyriproxyfen
23452                                                                                        betamethasone, gentamicin sulfate
23456                                                                                        betamethasone, gentamicin sulfate
23472                                                                                    dinotefuran, permethrin, pyriproxyfen
23482                                                                                    dinotefuran, permethrin, pyriproxyfen
23484                                                                                                         milbemycin oxime
23485                                                                                    dinotefuran, permethrin, pyriproxyfen
23487                                                                                    dinotefuran, permethrin, pyriproxyfen
23491                                                                                       amoxicillin, clavulanate potassium
23507                                                                                              lufenuron, milbemycin oxime
23520                                                                                    dinotefuran, permethrin, pyriproxyfen
23533                                                                             dexamethasone, neomycin sulfate, polymyxin b
23534                                                                                        betamethasone, gentamicin sulfate
23540                                                                                             ivermectin, pyrantel pamoate
23541                                                                                                               afoxolaner
23552                                                                                             ivermectin, pyrantel pamoate
23553                                                                                             ivermectin, pyrantel pamoate
23557                                                                                                               ivermectin
23565                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23566                                                                                      ear cleaner (zymox), hydrocortisone
23568                                                                                                 flumethrin, imidacloprid
23571                                                                                             ivermectin, pyrantel pamoate
23572                                                                                                 fipronil, (s)-methoprene
23588                                                                                               milbemycin oxime, spinosad
23589                                                                                  betamethasone, florfenicol, terbinafine
23590                                                                                                                vitamin c
23610                                                                                              lufenuron, milbemycin oxime
23617                                                                                              lufenuron, milbemycin oxime
23618                                                                                              lufenuron, milbemycin oxime
23619                                                                                              lufenuron, milbemycin oxime
23620                                                                                              lufenuron, milbemycin oxime
23622                                                                                              lufenuron, milbemycin oxime
23646                                                                                               milbemycin oxime, spinosad
23647                                                                                               milbemycin oxime, spinosad
23651                                                                                           milbemycin oxime, praziquantel
23657                                                                                                         milbemycin oxime
23659                                                                                                               fluralaner
23685                                                                                              lufenuron, milbemycin oxime
23686                                                                                                               fluralaner
23688                                                                                                               fluralaner
23707                                                                                        betamethasone, gentamicin sulfate
23718                                                                                             ivermectin, pyrantel pamoate
23721                                                                                             ivermectin, pyrantel pamoate
23722                                                                                                               afoxolaner
23724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23730                                                                                              lufenuron, milbemycin oxime
23732                                                                                              lufenuron, milbemycin oxime
23733                                                                          betamethasone, clotrimazole, gentamicin sulfate
23740                                                                                                         milbemycin oxime
23747                                                                                              lufenuron, milbemycin oxime
23749                                                                                                   unspecified medication
23757                                                                                              lufenuron, milbemycin oxime
23804                                                                                              lufenuron, milbemycin oxime
23805                                                                                              lufenuron, milbemycin oxime
23808                                                                                              lufenuron, milbemycin oxime
23809                                                                                                 flumethrin, imidacloprid
23819                                                                                              lufenuron, milbemycin oxime
23861                                                                                                         milbemycin oxime
23862                                                                                                               afoxolaner
23865                                                                                             ivermectin, pyrantel pamoate
23866                                                                                               imidacloprid, pyriproxyfen
23868                                                                                               imidacloprid, pyriproxyfen
23871                                                                                               imidacloprid, pyriproxyfen
23872                                                                                                  chlorhexidine gluconate
23873                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
23898                                                                                                 flumethrin, imidacloprid
23899                                                                              over-the-counter unmedicated shampoo/mousse
23900                                                                                              lufenuron, milbemycin oxime
23901                                                                                              lufenuron, milbemycin oxime
23902                                                                                                 flumethrin, imidacloprid
23905                                                                                lufenuron, milbemycin oxime, praziquantel
23906                                                                                                 flumethrin, imidacloprid
23909                                                                                                  chlorhexidine gluconate
23910                                                                                                         milbemycin oxime
23914                                                                             florfenicol, mometasone furoate, terbinafine
23917                                                                                                                mupirocin
23924                                                                                             ivermectin, pyrantel pamoate
23925                                                                                                               afoxolaner
23933                                                                                  betamethasone, florfenicol, terbinafine
23942                                                                                                                mupirocin
23955                                                                                                         milbemycin oxime
23956                                                                                                 fipronil, (s)-methoprene
23957                                                                                                            metronidazole
23958                                                                          betamethasone, clotrimazole, gentamicin sulfate
23959                                                                                                  ketoconazole, tris-edta
23965                                                                          betamethasone, clotrimazole, gentamicin sulfate
23969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23974                                                                                               imidacloprid, pyriproxyfen
23976                                                                                               imidacloprid, pyriproxyfen
23980                                                                                                             multivitamin
24010                                                                                               milbemycin oxime, spinosad
24012                                                                             dexamethasone, neomycin sulfate, polymyxin b
24017                                                                                               milbemycin oxime, spinosad
24018                                                                                               milbemycin oxime, spinosad
24019                                                                                               milbemycin oxime, spinosad
24020                                                                                               milbemycin oxime, spinosad
24022                                                                                               milbemycin oxime, spinosad
24029                                                                                               milbemycin oxime, spinosad
24045                                                                                             ivermectin, pyrantel pamoate
24046                                                                                                              oclacitinib
24062                                                                                              lufenuron, milbemycin oxime
24068                                                                                                                probiotic
24072                                                                                              lufenuron, milbemycin oxime
24075                                                                                              lufenuron, milbemycin oxime
24076                                                                                              lufenuron, milbemycin oxime
24077                                                                                              lufenuron, milbemycin oxime
24079                                                                                              lufenuron, milbemycin oxime
24104                                                                                                                carprofen
24106                                                                                                                 tramadol
24116                                                                                                               afoxolaner
24117                                                                                             ivermectin, pyrantel pamoate
24139                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24142                                                                               ivermectin, praziquantel, pyrantel pamoate
24144                                                                                                         milbemycin oxime
24145                                                                                       joint supplement (glucosamine hcl)
24146                                                                                    dinotefuran, permethrin, pyriproxyfen
24149                                                                                                         milbemycin oxime
24154                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24155                                                                                                                  omega 3
24157                                                                                                                sarolaner
24162                                                                               ivermectin, praziquantel, pyrantel pamoate
24165                                                                                                         milbemycin oxime
24166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24172                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24174                                                                                             ivermectin, pyrantel pamoate
24185                                                                                                 homatropine, hydrocodone
24189                                                                                        betamethasone, gentamicin sulfate
24192                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24193                                                                                                                  omega 3
24194                                                                                             ivermectin, pyrantel pamoate
24195                                                                                                                probiotic
24201                                                                          betamethasone, clotrimazole, gentamicin sulfate
24202                                                                          betamethasone, clotrimazole, gentamicin sulfate
24203                                                                                                  acetic acid, boric acid
24205                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24206                                                                                                                probiotic
24207                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
24208                                                                          betamethasone, clotrimazole, gentamicin sulfate
24209                                                                                        betamethasone, gentamicin sulfate
24215                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24217                                                                                                  chlorhexidine gluconate
24221                                                                                                      silver sulfadiazine
24222                                                                                                      silver sulfadiazine
24246                                                                                        trimeprazine tartrate, prednisone
24250                                                                                             ivermectin, pyrantel pamoate
24251                                                                             dexamethasone, neomycin sulfate, polymyxin b
24253                                                                                             ivermectin, pyrantel pamoate
24257                                                                                                         milbemycin oxime
24258                                                                                                         milbemycin oxime
24259                                                                                                               afoxolaner
24261                                                                                           milbemycin oxime, praziquantel
24262                                                                                                               famotidine
24263                                                                                                               ampicillin
24265                                                                                          atropine sulfate, diphenoxylate
24267                                                                                               lactated ringer's solution
24268                                                                                               lactated ringer's solution
24269                                                                                                              oclacitinib
24276                                                                                              lufenuron, milbemycin oxime
24282                                                                                                                probiotic
24312                                                                                        betamethasone, gentamicin sulfate
24313                                                                                         burow's solution, hydrocortisone
24314                                                                                                                probiotic
24319                                                                                                                firocoxib
24322                                                                                        betamethasone, gentamicin sulfate
24328                                                                                                              doxycycline
24343                                                                                               milbemycin oxime, spinosad
24375                                                                                                               ivermectin
24393                                                                                              lufenuron, milbemycin oxime
24394                                                                                lufenuron, milbemycin oxime, praziquantel
24395                                                                                                               afoxolaner
24397                                                                                                               sucralfate
24400                                                                                              lufenuron, milbemycin oxime
24402                                                                                                               afoxolaner
24403                                                                                lufenuron, milbemycin oxime, praziquantel
24405                                                                                                                  omega 3
24406                                                                                                               prednisone
24407                                                                                                              clindamycin
24408                                                                           dexamethasone, neomycin sulfate, thiabendazole
24409                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24410                                                                                                               afoxolaner
24413                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24416                                                                           mometasone furoate, orbifloxacin, posaconazole
24417                                                                                                         tylosin tartrate
24420                                                                                                         tylosin tartrate
24421                                                                                                               ivermectin
24422                                                                                                 fipronil, (s)-methoprene
24424                                                                                                                probiotic
24425                                                                                             ivermectin, pyrantel pamoate
24426                                                                                                               afoxolaner
24429                                                                                                         tylosin tartrate
24431                                                                                             ivermectin, pyrantel pamoate
24432                                                                                                               afoxolaner
24434                                                                             dexamethasone, neomycin sulfate, polymyxin b
24435                                                                                                               ivermectin
24436                                                                             dexamethasone, neomycin sulfate, polymyxin b
24437                                                                                                               afoxolaner
24451                                                                           mometasone furoate, orbifloxacin, posaconazole
24452                                                                             dexamethasone, neomycin sulfate, polymyxin b
24453                                                                                                     prednisolone acetate
24455                                                                                                                probiotic
24459                                                                                       joint supplement (glucosamine hcl)
24460                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24468                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24473                                                                                               milbemycin oxime, spinosad
24475                                                                                               milbemycin oxime, spinosad
24476                                                                                                               ivermectin
24477                                                                               ivermectin, praziquantel, pyrantel pamoate
24478                                                                                                                probiotic
24479                                                                          betamethasone, clotrimazole, gentamicin sulfate
24480                                                                                                         milbemycin oxime
24481                                                                                                         milbemycin oxime
24484                                                                                                         milbemycin oxime
24486                                                                                             ivermectin, pyrantel pamoate
24503                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24514                                                                                                                probiotic
24520                                                                                       fipronil, permethrin, pyriproxyfen
24521                                                                                             ivermectin, pyrantel pamoate
24526                                                                                        betamethasone, gentamicin sulfate
24534                                                                                       fipronil, permethrin, pyriproxyfen
24536                                                                                             ivermectin, pyrantel pamoate
24593                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24597                                                                                               milbemycin oxime, spinosad
24598                                                                                                         liver supplement
24599                                                                                               milbemycin oxime, spinosad
24601                                                                                               milbemycin oxime, spinosad
24602                                                                                               milbemycin oxime, spinosad
24605                                                                                               milbemycin oxime, spinosad
24610                                                                                                  acetic acid, boric acid
24647                                                                                          ear cleaner (epi-otic advanced)
24648                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24652                                                                             florfenicol, mometasone furoate, terbinafine
24653                                                                                      ear cleaner (zymox), hydrocortisone
24654                                                                             florfenicol, mometasone furoate, terbinafine
24660                                                                                                               afoxolaner
24669                                                                                                               afoxolaner
24688                                                                             dexamethasone, neomycin sulfate, polymyxin b
24707                                                                                                                mupirocin
24733                                                                                                               ivermectin
24734                                                                                                               afoxolaner
24758                                                                             dexamethasone, neomycin sulfate, polymyxin b
24762                                                                                              lufenuron, milbemycin oxime
24768                                                                                             ivermectin, pyrantel pamoate
24769                                                                                                               afoxolaner
24776                                                                           mometasone furoate, orbifloxacin, posaconazole
24782                                                                           mometasone furoate, orbifloxacin, posaconazole
24802                                                                                                               selamectin
24804                                                                                                                cefovecin
24805                                                                                                              oclacitinib
24806                                                                                                              oclacitinib
24817                                                                                                                tris-edta
24819                                                                                                               benzocaine
24824                                                                                             ivermectin, pyrantel pamoate
24825                                                                                                               fluralaner
24827                                                                               toothpaste/dental health solution or chews
24828                                                                                   joint supplement (glucosamine hcl/msm)
24829                                                                                             ivermectin, pyrantel pamoate
24830                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24839                                                                                             ivermectin, pyrantel pamoate
24840                                                                                                               afoxolaner
24850                                                                                                         milbemycin oxime
24867                                                                                              lufenuron, milbemycin oxime
24878                                                                                        betamethasone, gentamicin sulfate
24880                                                                                        betamethasone, gentamicin sulfate
24898                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24902                                                                                              lufenuron, milbemycin oxime
24917                                                                                        betamethasone, gentamicin sulfate
24918                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24919                                                                                  moxidectin, pyrantel pamoate, sarolaner
24935                                                                                              lufenuron, milbemycin oxime
24937                                                                                              lufenuron, milbemycin oxime
24938                                                                                              lufenuron, milbemycin oxime
24940                                                                                              lufenuron, milbemycin oxime
24942                                                                                              lufenuron, milbemycin oxime
24948                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24949                                                                                              lufenuron, milbemycin oxime
24950                                                                                                   cyphenothrin, fipronil
24963                                                                                              lufenuron, milbemycin oxime
24964                                                                                           milbemycin oxime, praziquantel
24967                                                                                chlorhexidine gluconate, phytosphingosine
24968                                                                                             ivermectin, pyrantel pamoate
24969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24971                                                                                             ivermectin, pyrantel pamoate
24973                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24974                                                                                                 flumethrin, imidacloprid
24975                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24982                                                                                                 fipronil, (s)-methoprene
24984                                                                                              lufenuron, milbemycin oxime
24985                                                                                                 fipronil, (s)-methoprene
24987                                                                                              lufenuron, milbemycin oxime
24988                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24989                                                                                                            dexamethasone
24993                                                                                                                 geraniol
25003                                                                                                               tobramycin
25004                                                                                                               afoxolaner
25020                                                                                              lufenuron, milbemycin oxime
25021                                                                                                               fluralaner
25022                                                                                              lufenuron, milbemycin oxime
25041                                                                                                 fipronil, (s)-methoprene
25059                                                                                             ivermectin, pyrantel pamoate
25079                                                                                             ivermectin, pyrantel pamoate
25087                                                                                                 flumethrin, imidacloprid
25094                                                                                               milbemycin oxime, spinosad
25099                                                                                             ivermectin, pyrantel pamoate
25100                                                                                                               fluralaner
25101                                                                                                               fluralaner
25102                                                                                             ivermectin, pyrantel pamoate
25118                                                                                                         milbemycin oxime
25119                                                                                              lufenuron, milbemycin oxime
25120                                                                                    dinotefuran, permethrin, pyriproxyfen
25124                                                                                          ear cleaner (epi-otic advanced)
25129                                                                                                                probiotic
25191                                                                                                         milbemycin oxime
25196                                                                                              lufenuron, milbemycin oxime
25198                                                                                                  ketoconazole, tris-edta
25233                                                                                                               ivermectin
25234                                                                                             ivermectin, pyrantel pamoate
25241                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25255                                                                                         phytosphingosine, salicylic acid
25258                                                                                                       paw protection wax
25262                                                                          betamethasone, clotrimazole, gentamicin sulfate
25269                                                                                                               gabapentin
25270                                                                                                                trazodone
25296                                                                                             ivermectin, pyrantel pamoate
25299                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25300                                                                                                               afoxolaner
25309                                                                                lufenuron, milbemycin oxime, praziquantel
25310                                                                                                 fipronil, (s)-methoprene
25311                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25315                                                                                              lufenuron, milbemycin oxime
25316                                                                                             ivermectin, pyrantel pamoate
25317                                                                                                               afoxolaner
25331                                                                                              lufenuron, milbemycin oxime
25337                                                                                               milbemycin oxime, spinosad
25342                                                                                                               afoxolaner
25343                                                                                                         milbemycin oxime
25345                                                                                  betamethasone, florfenicol, terbinafine
25346                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
25347                                                                                       joint supplement (glucosamine hcl)
25358                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25367                                                                                        trimeprazine tartrate, prednisone
25369                                                                                                bordetella bronchiseptica
25370                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25378                                                                                                         tylosin tartrate
25390                                                                                                               prednisone
25391                                                                                                     cefpodoxime proxetil
25405                                                                                                               selamectin
25409                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
25410                                                                                    chlorhexidine gluconate, ketoconazole
25417                                                                                                  chlorhexidine gluconate
25421                                                                                                               selamectin
25424                                                                                                                probiotic
25425                                                                                                               loratadine
25437                                                                                              lufenuron, milbemycin oxime
25444                                                                                              lufenuron, milbemycin oxime
25473                                                                                             ivermectin, pyrantel pamoate
25482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25493                                                                                             ivermectin, pyrantel pamoate
25494                                                                                             ivermectin, pyrantel pamoate
25501                                                                                             ivermectin, pyrantel pamoate
25514                                                                                       joint supplement (glucosamine hcl)
25515                                                                                                                  omega 3
25516                                                                                             ivermectin, pyrantel pamoate
25520                                                                                             ivermectin, pyrantel pamoate
25521                                                                                                               afoxolaner
25523                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25547                                                                                                             acepromazine
25554                                                                                               milbemycin oxime, spinosad
25555                                                                                               milbemycin oxime, spinosad
25556                                                                                               milbemycin oxime, spinosad
25557                                                                                               milbemycin oxime, spinosad
25575                                                                                             ivermectin, pyrantel pamoate
25576                                                                                                               ivermectin
25577                                                                                                               ivermectin
25579                                                                                                               ivermectin
25589                                                                                                         milbemycin oxime
25591                                                                                                         milbemycin oxime
25612                                                                                               milbemycin oxime, spinosad
25617                                                                                                           liquid bandage
25619                                                                          betamethasone, clotrimazole, gentamicin sulfate
25622                                                                             florfenicol, mometasone furoate, terbinafine
25660                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25663                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25666                                                                                        trimeprazine tartrate, prednisone
25670                                                                                                 imidacloprid, moxidectin
25671                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25672                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25674                                                                                                 imidacloprid, moxidectin
25683                                                                                             ivermectin, pyrantel pamoate
25706                                                                                               imidacloprid, pyriproxyfen
25707                                                                                                             fenbendazole
25708                                                                                              lufenuron, milbemycin oxime
25711                                                                                               imidacloprid, pyriproxyfen
25725                                                                                                                probiotic
25726                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25727                                                                                             ivermectin, pyrantel pamoate
25730                                                                                                         benzoyl peroxide
25737                                                                                                     digestive supplement
25740                                                                                                               afoxolaner
25741                                                                                              lufenuron, milbemycin oxime
25743                                                                                    dinotefuran, permethrin, pyriproxyfen
25744                                                                                                  ketoconazole, tris-edta
25748                                                                                                         milbemycin oxime
25749                                                                                             ivermectin, pyrantel pamoate
25750                                                                                                 fipronil, (s)-methoprene
25751                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
25753                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25754                                                                                              lufenuron, milbemycin oxime
25755                                                                                                               fluralaner
25756                                                                                    dinotefuran, permethrin, pyriproxyfen
25757                                                                                                               afoxolaner
25765                                                                                                  ketoconazole, tris-edta
25795                                                                                                             fenbendazole
25804                                                                                              lufenuron, milbemycin oxime
25806                                                                                              lufenuron, milbemycin oxime
25807                                                                                              lufenuron, milbemycin oxime
25817                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25819                                                                                               milbemycin oxime, spinosad
25820                                                                                               milbemycin oxime, spinosad
25826                                                                                                         milbemycin oxime
25827                                                                                                         milbemycin oxime
25828                                                                                                         milbemycin oxime
25830                                                                                                         milbemycin oxime
25837                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
25846                                                                                                               fluralaner
25884                                                                                             ivermectin, pyrantel pamoate
25887                                                                                             ivermectin, pyrantel pamoate
25888                                                                                                               afoxolaner
25919                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25936                                                                                                               gabapentin
25937                                                                                                               prednisone
25939                                                                                           milbemycin oxime, praziquantel
25940                                                                                                               fluralaner
25941                                                                                             ivermectin, pyrantel pamoate
25943                                                                                                               selamectin
25948                                                                                                               ivermectin
25949                                                                                           milbemycin oxime, praziquantel
25950                                                                                                               fluralaner
25951                                                                                             ivermectin, pyrantel pamoate
25952                                                                           dexamethasone, neomycin sulfate, thiabendazole
25953                                                                                             ivermectin, pyrantel pamoate
25954                                                                                                               selamectin
25964                                                                                             ivermectin, pyrantel pamoate
25965                                                                                                               afoxolaner
25966                                                                                                               ivermectin
25967                                                                                   joint supplement (glucosamine hcl/msm)
25981                                                                           mometasone furoate, orbifloxacin, posaconazole
25983                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25985                                                                                               imidacloprid, pyriproxyfen
25986                                                                                                 imidacloprid, moxidectin
25998                                                                                                                toceranib
26004                                                                                             ivermectin, pyrantel pamoate
26022                                                                                       amoxicillin, clavulanate potassium
26024                                                                                                               fluralaner
26027                                                                                       amoxicillin, clavulanate potassium
26031                                                                                                         milbemycin oxime
26033                                                                                                               fluralaner
26037                                                                                                               fluralaner
26039                                                                                                               fluralaner
26047                                                                                                               fluralaner
26048                                                                                                         milbemycin oxime
26050                                                                                                               fluralaner
26054                                                                                                               fluralaner
26056                                                                                                               fluralaner
26064                                                                                                                probiotic
26075                                                                                                                  amforal
26078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26084                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
26085                                                                             florfenicol, mometasone furoate, terbinafine
26093                                                                                        betamethasone, gentamicin sulfate
26094                                                                                        betamethasone, gentamicin sulfate
26114                                                                                             ivermectin, pyrantel pamoate
26115                                                                           dexamethasone, neomycin sulfate, thiabendazole
26127                                                                                                         phytosphingosine
26128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
26129                                                                          betamethasone, clotrimazole, gentamicin sulfate
26133                                                                          betamethasone, clotrimazole, gentamicin sulfate
26134                                                                          betamethasone, clotrimazole, gentamicin sulfate
26138                                                                                    dinotefuran, permethrin, pyriproxyfen
26139                                                                                    chlorhexidine gluconate, ketoconazole
26141                                                                                    dinotefuran, permethrin, pyriproxyfen
26148                                                                                    dinotefuran, permethrin, pyriproxyfen
26151                                                                                           milbemycin oxime, praziquantel
26152                                                                                    dinotefuran, permethrin, pyriproxyfen
26153                                                                                                     prednisolone acetate
26154                                                                                                             fenbendazole
26156                                                                                           milbemycin oxime, praziquantel
26157                                                                                    dinotefuran, permethrin, pyriproxyfen
26158                                                                                           milbemycin oxime, praziquantel
26159                                                                                    dinotefuran, permethrin, pyriproxyfen
26165                                                                                           milbemycin oxime, praziquantel
26166                                                                                    dinotefuran, permethrin, pyriproxyfen
26184                                                                             dexamethasone, neomycin sulfate, polymyxin b
26187                                                                             dexamethasone, neomycin sulfate, polymyxin b
26189                                                                                    dinotefuran, permethrin, pyriproxyfen
26190                                                                                    chlorhexidine gluconate, ketoconazole
26192                                                                                    dinotefuran, permethrin, pyriproxyfen
26197                                                                             dexamethasone, neomycin sulfate, polymyxin b
26199                                                                                    dinotefuran, permethrin, pyriproxyfen
26203                                                                                           milbemycin oxime, praziquantel
26204                                                                                    dinotefuran, permethrin, pyriproxyfen
26205                                                                                                             fenbendazole
26207                                                                                           milbemycin oxime, praziquantel
26208                                                                                    dinotefuran, permethrin, pyriproxyfen
26211                                                                                           milbemycin oxime, praziquantel
26212                                                                                    dinotefuran, permethrin, pyriproxyfen
26214                                                                                           milbemycin oxime, praziquantel
26215                                                                                    dinotefuran, permethrin, pyriproxyfen
26227                                                                                                                 tramadol
26229                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26238                                                                                                         milbemycin oxime
26239                                                                                                 kidney health supplement
26258                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26264                                                                                                                trazodone
26265                                                                               dextromethorphan hydrobromide, guaifenesin
26278                                                                               dimethyl sulfoxide, fluocinolone acetonide
26279                                                                                               milbemycin oxime, spinosad
26280                                                                                    dinotefuran, permethrin, pyriproxyfen
26281                                                                                                               afoxolaner
26282                                                                               ivermectin, praziquantel, pyrantel pamoate
26287                                                                               ivermectin, praziquantel, pyrantel pamoate
26295                                                                                                               afoxolaner
26300                                                                               ivermectin, praziquantel, pyrantel pamoate
26307                                                                                                            metronidazole
26315                                                                                                         milbemycin oxime
26336                                                                                       chlorhexidine gluconate, ophytrium
26337                                                                                                        hypochlorous acid
26355                                                                                                  chlorhexidine gluconate
26373                                                                             dexamethasone, neomycin sulfate, polymyxin b
26375                                                                                              lufenuron, milbemycin oxime
26380                                                                             florfenicol, mometasone furoate, terbinafine
26386                                                                                             ivermectin, pyrantel pamoate
26387                                                                                                               fluralaner
26391                                                                                                               lokivetmab
26393                                                                                        betamethasone, gentamicin sulfate
26395                                                                                               milbemycin oxime, spinosad
26399                                                                                               milbemycin oxime, spinosad
26400                                                                                               milbemycin oxime, spinosad
26401                                                                                               milbemycin oxime, spinosad
26433                                                                                        betamethasone, gentamicin sulfate
26454                                                                                   joint supplement (glucosamine hcl/msm)
26464                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26471                                                                                             ivermectin, pyrantel pamoate
26473                                                                                                               afoxolaner
26474                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26475                                                                                             ivermectin, pyrantel pamoate
26476                                                                                                               afoxolaner
26488                                                                                                               afoxolaner
26489                                                                                              lufenuron, milbemycin oxime
26490                                                                                              lufenuron, milbemycin oxime
26502                                                                                                  ketoconazole, tris-edta
26505                                                                                         propylene glycol, salicylic acid
26508                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
26517                                                                                             ivermectin, pyrantel pamoate
26518                                                                                                 fipronil, (s)-methoprene
26519                                                                                             ivermectin, pyrantel pamoate
26520                                                                                                               ivermectin
26521                                                                                                               ivermectin
26522                                                                                                               ivermectin
26534                                                                                        trimeprazine tartrate, prednisone
26540                                                                                       chlorhexidine gluconate, ophytrium
26543                                                                                             ivermectin, pyrantel pamoate
26544                                                                                               imidacloprid, pyriproxyfen
26546                                                                                             ivermectin, pyrantel pamoate
26551                                                                                                         milbemycin oxime
26553                                                                                                         milbemycin oxime
26568                                                                                                         milbemycin oxime
26574                                                                                                         milbemycin oxime
26583                                                                                            allergy immunotherapy - drops
26590                                                                                             ivermectin, pyrantel pamoate
26591                                                                                             ivermectin, pyrantel pamoate
26592                                                                                                               fluralaner
26594                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26610                                                                             dexamethasone, neomycin sulfate, polymyxin b
26611                                                                                             ivermectin, pyrantel pamoate
26615                                                                                             ivermectin, pyrantel pamoate
26629                                                                                                                 fipronil
26631                                                                                             ivermectin, pyrantel pamoate
26637                                                                                                 fipronil, (s)-methoprene
26638                                                                                             ivermectin, pyrantel pamoate
26643                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26644                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
26645                                                                                                 fipronil, (s)-methoprene
26647                                                                                                 fipronil, (s)-methoprene
26650                                                                                              lufenuron, milbemycin oxime
26651                                                                                              lufenuron, milbemycin oxime
26652                                                                                                               fluralaner
26654                                                                                             ivermectin, pyrantel pamoate
26655                                                                                               milbemycin oxime, spinosad
26662                                                                                             ivermectin, pyrantel pamoate
26663                                                                                                               afoxolaner
26668                                                                                                 imidacloprid, permethrin
26669                                                                                               imidacloprid, pyriproxyfen
26670                                                                                                 flumethrin, imidacloprid
26673                                                                                             ivermectin, pyrantel pamoate
26674                                                                           mometasone furoate, orbifloxacin, posaconazole
26675                                                                                                     cefpodoxime proxetil
26676                                                                                                 fipronil, (s)-methoprene
26677                                                                                             ivermectin, pyrantel pamoate
26680                                                                                             ivermectin, pyrantel pamoate
26681                                                                                                               afoxolaner
26682                                                                                             ivermectin, pyrantel pamoate
26683                                                                                                               afoxolaner
26684                                                                                             ivermectin, pyrantel pamoate
26685                                                                                                               afoxolaner
26694                                                                                       amoxicillin, clavulanate potassium
26720                                                                                        trimeprazine tartrate, prednisone
26721                                                                                              lufenuron, milbemycin oxime
26722                                                                                              lufenuron, milbemycin oxime
26723                                                                                              lufenuron, milbemycin oxime
26724                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26726                                                                                              lufenuron, milbemycin oxime
26734                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26735                                                                                               milbemycin oxime, spinosad
26736                                                                                             ivermectin, pyrantel pamoate
26738                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26740                                                                                           milbemycin oxime, praziquantel
26742                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26744                                                                                                         milbemycin oxime
26745                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26747                                                                                                unspecified otic ear pack
26749                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26750                                                                                             ivermectin, pyrantel pamoate
26760                                                                                             ivermectin, pyrantel pamoate
26764                                                                                                                lidocaine
26765                                                                                                          diphenhydramine
26766                                                                                 aluminium hydroxide, magnesium hydroxide
26769                                                                                                         milbemycin oxime
26772                                                                                                                lidocaine
26773                                                                                                          diphenhydramine
26774                                                                                 aluminium hydroxide, magnesium hydroxide
26780                                                                                                         milbemycin oxime
26803                                                                          betamethasone, clotrimazole, gentamicin sulfate
26819                                                                          betamethasone, clotrimazole, gentamicin sulfate
26823                                                                                                                meloxicam
26825                                                                          betamethasone, clotrimazole, gentamicin sulfate
26826                                                                                                         liver supplement
26827                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26828                                                                                                                carprofen
26829                                                                                                               cephalexin
26830                                                                                                              clindamycin
26831                                                                                                       maropitant citrate
26833                                                                                                         pyrantel pamoate
26836                                                                                                       miconazole nitrate
26837                                                                                                                probiotic
26839                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26840                                                                                              lufenuron, milbemycin oxime
26841                                                                                       fipronil, permethrin, pyriproxyfen
26842                                                                                             ivermectin, pyrantel pamoate
26843                                                                                                                probiotic
26844                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
26846                                                                                             ivermectin, pyrantel pamoate
26847                                                                                                 fipronil, (s)-methoprene
26848                                                                                                                probiotic
26849                                                                                             ivermectin, pyrantel pamoate
26850                                                                                                 fipronil, (s)-methoprene
26851                                                                                                                probiotic
26852                                                                                             ivermectin, pyrantel pamoate
26853                                                                                                               afoxolaner
26861                                                                               ivermectin, praziquantel, pyrantel pamoate
26862                                                                                                 fipronil, (s)-methoprene
26863                                                                               ivermectin, praziquantel, pyrantel pamoate
26864                                                                                                               nitenpyram
26865                                                                                               imidacloprid, pyriproxyfen
26867                                                                                               imidacloprid, pyriproxyfen
26868                                                                                                         milbemycin oxime
26869                                                                                           milbemycin oxime, praziquantel
26870                                                                                               imidacloprid, pyriproxyfen
26871                                                                           mometasone furoate, orbifloxacin, posaconazole
26872                                                                                          ear cleaner (epi-otic advanced)
26905                                                                                          ear cleaner (epi-otic advanced)
26926                                                                                              lufenuron, milbemycin oxime
26930                                                                                              lufenuron, milbemycin oxime
26931                                                                                    dinotefuran, permethrin, pyriproxyfen
26932                                                                                              lufenuron, milbemycin oxime
26944                                                                                    dinotefuran, permethrin, pyriproxyfen
26948                                                                                    dinotefuran, permethrin, pyriproxyfen
26972                                                                                              lufenuron, milbemycin oxime
26974                                                                                                   unspecified supplement
26975                                                                                             ivermectin, pyrantel pamoate
26976                                                                                                                probiotic
26977                                                                                              lufenuron, milbemycin oxime
26978                                                                                 febantel, praziquantel, pyrantel pamoate
26979                                                                                              lufenuron, milbemycin oxime
26980                                                                                              lufenuron, milbemycin oxime
26981                                                                                              lufenuron, milbemycin oxime
26983                                                                                                                probiotic
26984                                                                                                               fluralaner
26986                                                                                                               fluralaner
26987                                                                             betamethasone, chloramphenicol, ketoconazole
26988                                                                                                         milbemycin oxime
26990                                                                                                         milbemycin oxime
26992                                                                                                         milbemycin oxime
27012                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
27021                                                                                                               tobramycin
27022                                                                                                                ofloxacin
27030                                                                                                         milbemycin oxime
27047                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27058                                                                                        betamethasone, gentamicin sulfate
27062                                                                                                               grapiprant
27063                                                                                                   unspecified medication
27065                                                                                             ivermectin, pyrantel pamoate
27080                                                                           mometasone furoate, orbifloxacin, posaconazole
27081                                                                           mometasone furoate, orbifloxacin, posaconazole
27082                                                                                              lufenuron, milbemycin oxime
27085                                                                                              lufenuron, milbemycin oxime
27092                                                                                                             fenbendazole
27095                                                                                                            ciprofloxacin
27096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27100                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27117                                                                                                                mupirocin
27118                                                                                        betamethasone, gentamicin sulfate
27124                                                                                                                probiotic
27128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27134                                                                             florfenicol, mometasone furoate, terbinafine
27136                                                                                                         milbemycin oxime
27137                                                                             florfenicol, mometasone furoate, terbinafine
27140                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27158                                                                          betamethasone, clotrimazole, gentamicin sulfate
27163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27170                                                                                              lufenuron, milbemycin oxime
27172                                                                                                 joint supplement (other)
27173                                                                                                                  omega 3
27174                                                                                              lufenuron, milbemycin oxime
27203                                                                                             ivermectin, pyrantel pamoate
27212                                                                                        betamethasone, gentamicin sulfate
27213                                                                               ivermectin, praziquantel, pyrantel pamoate
27214                                                                                                             deltamethrin
27217                                                                                        betamethasone, gentamicin sulfate
27219                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27220                                                                                                 flumethrin, imidacloprid
27222                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27223                                                                                        betamethasone, gentamicin sulfate
27224                                                                                              phytosphingosine, pramoxine
27226                                                                                                 flumethrin, imidacloprid
27228                                                                                                 flumethrin, imidacloprid
27229                                                                                           milbemycin oxime, praziquantel
27231                                                                                                               afoxolaner
27232                                                                                              lufenuron, milbemycin oxime
27247                                                                                              lufenuron, milbemycin oxime
27256                                                                                        betamethasone, gentamicin sulfate
27257                                                                                                 flumethrin, imidacloprid
27258                                                                                             ivermectin, pyrantel pamoate
27262                                                                                                               tobramycin
27265                                                                                             ivermectin, pyrantel pamoate
27268                                                                                                               tobramycin
27270                                                                                                 flumethrin, imidacloprid
27273                                                                                             ivermectin, pyrantel pamoate
27274                                                                                                               afoxolaner
27275                                                                                               imidacloprid, pyriproxyfen
27280                                                                                                               fluralaner
27281                                                                                             ivermectin, pyrantel pamoate
27282                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27285                                                                                             ivermectin, pyrantel pamoate
27306                                                                                             ivermectin, pyrantel pamoate
27309                                                                                                               fluralaner
27311                                                                                             ivermectin, pyrantel pamoate
27315                                                                                             ivermectin, pyrantel pamoate
27322                                                                                                                pramoxine
27333                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27348                                                                                                             imidacloprid
27349                                                                                             ivermectin, pyrantel pamoate
27350                                                                                               imidacloprid, pyriproxyfen
27358                                                                                              lufenuron, milbemycin oxime
27360                                                                                              lufenuron, milbemycin oxime
27361                                                                                              lufenuron, milbemycin oxime
27364                                                                                              lufenuron, milbemycin oxime
27368                                                                                              lufenuron, milbemycin oxime
27370                                                                             florfenicol, mometasone furoate, terbinafine
27384                                                                                           milbemycin oxime, praziquantel
27407                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27413                                                                                                                vitamin b
27414                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27421                                                                                               imidacloprid, pyriproxyfen
27422                                                                                             ivermectin, pyrantel pamoate
27423                                                                                             ivermectin, pyrantel pamoate
27425                                                                                                  chlorhexidine gluconate
27427                                                                                                  chlorhexidine gluconate
27431                                                                               toothpaste/dental health solution or chews
27432                                                                                                                meloxicam
27434                                                                                    dinotefuran, permethrin, pyriproxyfen
27445                                                                                               imidacloprid, pyriproxyfen
27446                                                                                                 imidacloprid, permethrin
27447                                                                                                                probiotic
27459                                                                                               milbemycin oxime, spinosad
27465                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
27474                                                                                             ivermectin, pyrantel pamoate
27481                                                                                             ivermectin, pyrantel pamoate
27492                                                                                        trimeprazine tartrate, prednisone
27494                                                                                                     prednisolone acetate
27500                                                                 dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
27501                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
27502                                                                                                               ivermectin
27506                                                                                                               ivermectin
27507                                                                                       fipronil, permethrin, pyriproxyfen
27511                                                                                                               ivermectin
27512                                                                                                 fipronil, (s)-methoprene
27523                                                                                             ivermectin, pyrantel pamoate
27529                                                                                                               ivermectin
27589                                                                                               milbemycin oxime, spinosad
27594                                                                                               milbemycin oxime, spinosad
27596                                                                                               milbemycin oxime, spinosad
27598                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27620                                                                                                               fluralaner
27640                                                                                             ivermectin, pyrantel pamoate
27646                                                                                                                mupirocin
27654                                                                                               milbemycin oxime, spinosad
27657                                                                                               milbemycin oxime, spinosad
27659                                                                                                                mupirocin
27674                                                                                                     digestive supplement
27697                                                                                                                mupirocin
27699                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27700                                                                                             ivermectin, pyrantel pamoate
27701                                                                                                 fipronil, (s)-methoprene
27704                                                                                             ivermectin, pyrantel pamoate
27710                                                                                                 fipronil, (s)-methoprene
27713                                                                                       amoxicillin, clavulanate potassium
27714                                                                                                 fipronil, (s)-methoprene
27715                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27722                                                                                                               selamectin
27736                                                                                                               lokivetmab
27745                                                                                             ivermectin, pyrantel pamoate
27747                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27748                                                                               ivermectin, praziquantel, pyrantel pamoate
27750                                                                                             ivermectin, pyrantel pamoate
27769                                                                                             ivermectin, pyrantel pamoate
27770                                                                                              lufenuron, milbemycin oxime
27772                                                                                              lufenuron, milbemycin oxime
27776                                                                                                       maropitant citrate
27791                                                                               ivermectin, praziquantel, pyrantel pamoate
27794                                                                                             ivermectin, pyrantel pamoate
27802                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27824                                                                                             ivermectin, pyrantel pamoate
27826                                                                               ivermectin, praziquantel, pyrantel pamoate
27828                                                                                             ivermectin, pyrantel pamoate
27833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27834                                                                                                                  omega 3
27836                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27878                                                                                                 flumethrin, imidacloprid
27880                                                                                                             multivitamin
27884                                                                                   cyphenothrin, fipronil, (s)-methoprene
27886                                                                                              lufenuron, milbemycin oxime
27895                                                                                                               moxidectin
27896                                                                                                               afoxolaner
27897                                                                                                               moxidectin
27898                                                                                                               afoxolaner
27899                                                                             dexamethasone, neomycin sulfate, polymyxin b
27900                                                                                                               moxidectin
27901                                                                                                               moxidectin
27904                                                                                                               moxidectin
27910                                                                                              lufenuron, milbemycin oxime
27913                                                                                              lufenuron, milbemycin oxime
27917                                                                                              lufenuron, milbemycin oxime
27921                                                                                              lufenuron, milbemycin oxime
27922                                                                                              lufenuron, milbemycin oxime
27923                                                                                              lufenuron, milbemycin oxime
27927                                                                                                   unspecified medication
27929                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27939                                                                                                 imidacloprid, permethrin
27940                                                                                              lufenuron, milbemycin oxime
27941                                                                           mometasone furoate, orbifloxacin, posaconazole
27942                                                                                                               cephalexin
27954                                                                                    dinotefuran, permethrin, pyriproxyfen
27957                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27958                                                                                       amoxicillin, clavulanate potassium
27959                                                                                                                 tramadol
27961                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27962                                                                                                 fipronil, (s)-methoprene
27973                                                                                                  ketoconazole, tris-edta
27974                                                                                       chlorhexidine gluconate, ophytrium
27981                                                                                               imidacloprid, pyriproxyfen
27982                                                                                                               ivermectin
27992                                                                                      allergy immunotherapy - unspecified
27999                                                                                               imidacloprid, pyriproxyfen
28000                                                                                                               ivermectin
28006                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
28008                                                                                                                probiotic
28009                                                                                              pramoxine, phytosphingosine
28010                                                                                                 fipronil, (s)-methoprene
28011                                                                           mometasone furoate, orbifloxacin, posaconazole
28014                                                                                               imidacloprid, pyriproxyfen
28015                                                                                                         liver supplement
28016                                                                                             ivermectin, pyrantel pamoate
28018                                                                                             ivermectin, pyrantel pamoate
28020                                                                           mometasone furoate, orbifloxacin, posaconazole
28023                                                                                             ivermectin, pyrantel pamoate
28024                                                                                                               afoxolaner
28025                                                                                                                probiotic
28029                                                                                                               ivermectin
28040                                                                                             ivermectin, pyrantel pamoate
28045                                                                                             ivermectin, pyrantel pamoate
28046                                                                                                              doxorubicin
28047                                                                                                              vincristine
28048                                                                                             ivermectin, pyrantel pamoate
28049                                                                                             ivermectin, pyrantel pamoate
28071                                                                                                               selamectin
28087                                                                                                         milbemycin oxime
28088                                                                                                               fluralaner
28090                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28094                                                                               dimethyl sulfoxide, fluocinolone acetonide
28096                                                                                                         tylosin tartrate
28098                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28100                                                                                                               fluralaner
28101                                                                                lufenuron, milbemycin oxime, praziquantel
28102                                                                                           milbemycin oxime, praziquantel
28103                                                                                                               fluralaner
28104                                                                                                               fluralaner
28105                                                                                           milbemycin oxime, praziquantel
28106                                                                                           milbemycin oxime, praziquantel
28108                                                                                                               fluralaner
28109                                                                                           milbemycin oxime, praziquantel
28116                                                                                                                probiotic
28119                                                                                              lufenuron, milbemycin oxime
28120                                                                                              lufenuron, milbemycin oxime
28128                                                                                              lufenuron, milbemycin oxime
28130                                                                                             ivermectin, pyrantel pamoate
28134                                                                                             ivermectin, pyrantel pamoate
28135                                                                                             ivermectin, pyrantel pamoate
28137                                                                               ivermectin, praziquantel, pyrantel pamoate
28138                                                                                                                vitamin d
28141                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28144                                                                                                               ivermectin
28154                                                                                                 fipronil, (s)-methoprene
28155                                                                                             ivermectin, pyrantel pamoate
28158                                                                                                 flumethrin, imidacloprid
28162                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28163                                                                                                 flumethrin, imidacloprid
28164                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28165                                                                                                                  omega 3
28166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28167                                                                                                                  omega 3
28168                                                                                                               tobramycin
28174                                                                             dexamethasone, neomycin sulfate, polymyxin b
28176                                                                             dexamethasone, neomycin sulfate, polymyxin b
28246                                                                                        trimeprazine tartrate, prednisone
28260                                                                                                            dexamethasone
28261                                                                                             ivermectin, pyrantel pamoate
28263                                                                                                               fluralaner
28264                                                                                             ivermectin, pyrantel pamoate
28269                                                                                             ivermectin, pyrantel pamoate
28277                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28279                                                                                       chlorhexidine gluconate, ophytrium
28307                                                                                        trimeprazine tartrate, prednisone
28309                                                                                               milbemycin oxime, spinosad
28311                                                                                              lufenuron, milbemycin oxime
28316                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
28332                                                                                      ear cleaner (zymox), hydrocortisone
28333                                                                                      ear cleaner (zymox), hydrocortisone
28371                                                                                                                probiotic
28375                                                                                                               fluralaner
28390                                                                          betamethasone, clotrimazole, gentamicin sulfate
28392                                                                                                               afoxolaner
28396                                                                                           praziquantel, pyrantel pamoate
28397                                                                                              lufenuron, milbemycin oxime
28398                                                                                                               fluralaner
28399                                                                                           milbemycin oxime, praziquantel
28400                                                                                                               fluralaner
28401                                                                                           milbemycin oxime, praziquantel
28404                                                                                               milbemycin oxime, spinosad
28407                                                                                               milbemycin oxime, spinosad
28425                                                                                                             enrofloxacin
28427                                                                                                            dexamethasone
28437                                                                                              lufenuron, milbemycin oxime
28448                                                                                              lufenuron, milbemycin oxime
28449                                                                                               imidacloprid, pyriproxyfen
28453                                                                                                               ivermectin
28483                                                                                             ivermectin, pyrantel pamoate
28484                                                                                      ear cleaner (zymox), hydrocortisone
28486                                                                                        betamethasone, gentamicin sulfate
28488                                                                                                         milbemycin oxime
28505                                                                                                                probiotic
28507                                                                                                       miconazole nitrate
28508                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28516                                                                                lufenuron, milbemycin oxime, praziquantel
28517                                                                                                 fipronil, (s)-methoprene
28518                                                                                              lufenuron, milbemycin oxime
28519                                                                                             ivermectin, pyrantel pamoate
28520                                                                                                 fipronil, (s)-methoprene
28528                                                                                              lufenuron, milbemycin oxime
28531                                                                                                                probiotic
28533                                                                                              chloroxylenol, ketoconazole
28534                                                                                              lufenuron, milbemycin oxime
28535                                                                                                               afoxolaner
28536                                                                                                 fipronil, (s)-methoprene
28538                                                                                                                probiotic
28545                                                                                             ivermectin, pyrantel pamoate
28549                                                                                                               ivermectin
28552                                                                                                 imidacloprid, permethrin
28553                                                                                                               fluralaner
28554                                                                                                               ivermectin
28556                                                                                                               lokivetmab
28557                                                                                                               fluralaner
28571                                                                                             ivermectin, pyrantel pamoate
28572                                                                                                 flumethrin, imidacloprid
28573                                                                                             ivermectin, pyrantel pamoate
28574                                                                                                 flumethrin, imidacloprid
28576                                                                               dextromethorphan hydrobromide, guaifenesin
28577                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28580                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
28582                                                                                             ivermectin, pyrantel pamoate
28583                                                                                                 flumethrin, imidacloprid
28590                                                                                       joint supplement (glucosamine hcl)
28601                                                                                               imidacloprid, pyriproxyfen
28602                                                                                              lufenuron, milbemycin oxime
28604                                                                                               imidacloprid, pyriproxyfen
28605                                                                                                   unspecified medication
28606                                                                                              lufenuron, milbemycin oxime
28610                                                                                           praziquantel, pyrantel pamoate
28611                                                                                                             multivitamin
28612                                                                                                             multivitamin
28614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28616                                                                                        betamethasone, gentamicin sulfate
28621                                                                                               imidacloprid, pyriproxyfen
28624                                                                                                                meloxicam
28626                                                                                                               ivermectin
28630                                                                                              lufenuron, milbemycin oxime
28631                                                                                                               afoxolaner
28660                                                                                        betamethasone, gentamicin sulfate
28668                                                                                             ivermectin, pyrantel pamoate
28673                                                                          betamethasone, clotrimazole, gentamicin sulfate
28674                                                                                             ivermectin, pyrantel pamoate
28675                                                                                                 fipronil, (s)-methoprene
28681                                                                                             ivermectin, pyrantel pamoate
28685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28686                                                                                                                probiotic
28687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28693                                                                                              lufenuron, milbemycin oxime
28694                                                                                                         milbemycin oxime
28696                                                                                              lufenuron, milbemycin oxime
28710                                                                                                 imidacloprid, moxidectin
28714                                                                          betamethasone, clotrimazole, gentamicin sulfate
28716                                                                          betamethasone, clotrimazole, gentamicin sulfate
28718                                                                                                               wind toxin
28719                                                                                                     long dan xie gan wan
28723                                                                                                               selamectin
28726                                                                                               milbemycin oxime, spinosad
28727                                                                          betamethasone, clotrimazole, gentamicin sulfate
28730                                                                                               milbemycin oxime, spinosad
28731                                                                          betamethasone, clotrimazole, gentamicin sulfate
28735                                                                                                         milbemycin oxime
28736                                                                                                                lotilaner
28750                                                                                                                   arnica
28751                                                                                                                vitamin b
28762                                                                                                  ketoconazole, tris-edta
28764                                                                                                                ofloxacin
28772                                                                                                                  omega 3
28773                                                                                                              di tan tang
28780                                                                                             ivermectin, pyrantel pamoate
28806                                                                                                 fipronil, (s)-methoprene
28809                                                                                             ivermectin, pyrantel pamoate
28819                                                                           dexamethasone, neomycin sulfate, thiabendazole
28826                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
28829                                                                                                                mupirocin
28831                                                                             dexamethasone, neomycin sulfate, polymyxin b
28833                                                                             florfenicol, mometasone furoate, terbinafine
28855                                                                                                             fenbendazole
28873                                                                                                 fipronil, (s)-methoprene
28874                                                                                                               ivermectin
28882                                                                                                               afoxolaner
28883                                                                                                               afoxolaner
28884                                                                                                               afoxolaner
28888                                                                                                               afoxolaner
28897                                                                               ivermectin, praziquantel, pyrantel pamoate
28899                                                                                             ivermectin, pyrantel pamoate
28904                                                                                             ivermectin, pyrantel pamoate
28906                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
28907                                                                                                               afoxolaner
28934                                                                                                               afoxolaner
28939                                                                                              lufenuron, milbemycin oxime
28940                                                                                                 homatropine, hydrocodone
28941                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
28946                                                                                         phytosphingosine, salicylic acid
28979                                                                                              lufenuron, milbemycin oxime
28980                                                                                       fipronil, permethrin, pyriproxyfen
28982                                                                                              lufenuron, milbemycin oxime
28983                                                                                               milbemycin oxime, spinosad
28986                                                                                             ivermectin, pyrantel pamoate
28987                                                                                                 fipronil, (s)-methoprene
28999                                                                                                      phenylpropanolamine
29000                                                                                                               selamectin
29007                                                                                                 fipronil, (s)-methoprene
29015                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29022                                                                               dextromethorphan hydrobromide, guaifenesin
29023                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
29036                                                                             dexamethasone, neomycin sulfate, polymyxin b
29037                                                                                              lufenuron, milbemycin oxime
29039                                                                                                                  taurine
29040                                                                                                                  taurine
29043                                                                                                                  taurine
29050                                                                                        betamethasone, gentamicin sulfate
29053                                                                                                           hydrocortisone
29056                                                                                               milbemycin oxime, spinosad
29060                                                                                                               benzocaine
29064                                                                                               milbemycin oxime, spinosad
29067                                                                                             ivermectin, pyrantel pamoate
29069                                                                                             ivermectin, pyrantel pamoate
29070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29071                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29072                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29073                                                                                                         atropine sulfate
29075                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29078                                                                                                     fipronil, permethrin
29079                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29080                                                                                              lufenuron, milbemycin oxime
29081                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29082                                                                                               milbemycin oxime, spinosad
29083                                                                                                                probiotic
29086                                                                                               milbemycin oxime, spinosad
29087                                                                                               milbemycin oxime, spinosad
29091                                                                                               milbemycin oxime, spinosad
29092                                                                             florfenicol, mometasone furoate, terbinafine
29095                                                                                               milbemycin oxime, spinosad
29096                                                                                                               afoxolaner
29097                                                                             florfenicol, mometasone furoate, terbinafine
29098                                                                                                  ketoconazole, tris-edta
29099                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
29103                                                                                                                 fentanyl
29104                                                                                                                 ketamine
29108                                                                                        betamethasone, gentamicin sulfate
29136                                                                                                         milbemycin oxime
29139                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29143                                                                                             ivermectin, pyrantel pamoate
29151                                                                                                               selamectin
29153                                                                                                unspecified otic ear pack
29161                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29166                                                                                                               indoxacarb
29184                                                                                              lufenuron, milbemycin oxime
29196                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29197                                                                                                          cbd or hemp oil
29220                                                                                                                mupirocin
29232                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29234                                                                                                  chlorhexidine gluconate
29235                                                                                                               penicillin
29244                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
29245                                                                                                                  omega 3
29248                                                                                                            dexamethasone
29283                                                                                                               lokivetmab
29285                                                                           dexamethasone, neomycin sulfate, thiabendazole
29291                                                                                       chlorhexidine gluconate, tris-edta
29293                                                                                                               ivermectin
29298                                                                                              lufenuron, milbemycin oxime
29313                                                                                                                ketorolac
29315                                                                                             ivermectin, pyrantel pamoate
29321                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29324                                                                                               imidacloprid, pyriproxyfen
29327                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29328                                                                                             ivermectin, pyrantel pamoate
29340                                                                                                               benzocaine
29342                                                                                                      ear cleaner (zymox)
29374                                                                                              lufenuron, milbemycin oxime
29375                                                                                                 imidacloprid, permethrin
29376                                                                                              lufenuron, milbemycin oxime
29377                                                                                               imidacloprid, pyriproxyfen
29378                                                                                              lufenuron, milbemycin oxime
29379                                                                                              lufenuron, milbemycin oxime
29380                                                                                              lufenuron, milbemycin oxime
29381                                                                                              lufenuron, milbemycin oxime
29382                                                                                              lufenuron, milbemycin oxime
29383                                                                                               imidacloprid, pyriproxyfen
29395                                                                                               acetaminophen, hydrocodone
29404                                                                                                               prednisone
29405                                                                                                              doxycycline
29406                                                                                                                 tramadol
29428                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
29438                                                                                                               isoflurane
29446                                                                                                               benzocaine
29447                                                                                              phytosphingosine, pramoxine
29453                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29469                                                                                                               ivermectin
29470                                                                                                 flumethrin, imidacloprid
29471                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29479                                                                                              lufenuron, milbemycin oxime
29480                                                                                              lufenuron, milbemycin oxime
29481                                                                                              lufenuron, milbemycin oxime
29482                                                                                              lufenuron, milbemycin oxime
29483                                                                                                               fluralaner
29490                                                                                              lufenuron, milbemycin oxime
29499                                                                                             ivermectin, pyrantel pamoate
29500                                                                                                 fipronil, (s)-methoprene
29501                                                                                             ivermectin, pyrantel pamoate
29502                                                                                                         milbemycin oxime
29504                                                                                                         milbemycin oxime
29505                                                                                   fipronil, pyriproxyfen, (s)-methoprene
29511                                                                                                         milbemycin oxime
29525                                                                                              lufenuron, milbemycin oxime
29526                                                                                                   cyphenothrin, fipronil
29531                                                                                              lufenuron, milbemycin oxime
29532                                                                                                                 fipronil
29533                                                                                                         milbemycin oxime
29534                                                                                               imidacloprid, pyriproxyfen
29535                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29536                                                                                                         milbemycin oxime
29537                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29538                                                                                                         milbemycin oxime
29539                                                                                                 imidacloprid, permethrin
29540                                                                                                         milbemycin oxime
29567                                                                                             ivermectin, pyrantel pamoate
29568                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29572                                                                                    dinotefuran, permethrin, pyriproxyfen
29573                                                                                             ivermectin, pyrantel pamoate
29574                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29575                                                                                                     cefpodoxime proxetil
29579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29580                                                                                             ivermectin, pyrantel pamoate
29588                                                                                             ivermectin, pyrantel pamoate
29608                                                                                                 fipronil, (s)-methoprene
29617                                                                                                               afoxolaner
29633                                                                               ivermectin, praziquantel, pyrantel pamoate
29662                                                                                                                  omega 3
29666                                                                                                             multivitamin
29669                                                                                                                probiotic
29670                                                                                                 skin and coat supplement
29678                                                                                       amoxicillin, clavulanate potassium
29696                                                                                                     digestive supplement
29700                                                                                                             imidacloprid
29705                                                                                               imidacloprid, pyriproxyfen
29707                                                                                               imidacloprid, pyriproxyfen
29709                                                                                               imidacloprid, pyriproxyfen
29715                                                                                                 flumethrin, imidacloprid
29716                                                                                                 flumethrin, imidacloprid
29719                                                                                                 flumethrin, imidacloprid
29720                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
29722                                                                                                 flumethrin, imidacloprid
29724                                                                                                 flumethrin, imidacloprid
29726                                                                                                 flumethrin, imidacloprid
29729                                                                                                            phenobarbital
29730                                                                                                            phenobarbital
29734                                                                                              lufenuron, milbemycin oxime
29736                                                                                lufenuron, milbemycin oxime, praziquantel
29744                                                                                              lufenuron, milbemycin oxime
29749                                                                                        trimeprazine tartrate, prednisone
29753                                                                                             ivermectin, pyrantel pamoate
29764                                                                                                               moxidectin
29765                                                                                                               fluralaner
29767                                                                                                         milbemycin oxime
29770                                                                                             ivermectin, pyrantel pamoate
29794                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29798                                                                                             ivermectin, pyrantel pamoate
29799                                                                                             ivermectin, pyrantel pamoate
29800                                                                                                               afoxolaner
29801                                                                                                  chlorhexidine gluconate
29802                                                                                             ivermectin, pyrantel pamoate
29803                                                                                                               afoxolaner
29822                                                                                             ivermectin, pyrantel pamoate
29823                                                                                                               afoxolaner
29824                                                                                             ivermectin, pyrantel pamoate
29825                                                                                                               afoxolaner
29827                                                                           mometasone furoate, orbifloxacin, posaconazole
29829                                                                                        betamethasone, gentamicin sulfate
29831                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29832                                                                                                  ketoconazole, tris-edta
29838                                                                                   joint supplement (glucosamine hcl/msm)
29839                                                                                                 joint supplement (other)
29840                                                                                                           wei qi booster
29847                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29848                                                                                                  ketoconazole, tris-edta
29858                                                                                                               ivermectin
29859                                                                                                               ivermectin
29860                                                                                                               ivermectin
29861                                                                                                               ivermectin
29862                                                                                               milbemycin oxime, spinosad
29865                                                                                               milbemycin oxime, spinosad
29880                                                                                                               ivermectin
29882                                                                                             ivermectin, pyrantel pamoate
29883                                                                                                               afoxolaner
29933                                                                               ivermectin, praziquantel, pyrantel pamoate
29940                                                                               ivermectin, praziquantel, pyrantel pamoate
29941                                                                               ivermectin, praziquantel, pyrantel pamoate
29948                                                                             florfenicol, mometasone furoate, terbinafine
29954                                                                                                               ivermectin
29955                                                                                               imidacloprid, pyriproxyfen
29956                                                                                                               ivermectin
29957                                                                                                 imidacloprid, permethrin
29963                                                                                               imidacloprid, pyriproxyfen
29964                                                                                             ivermectin, pyrantel pamoate
29966                                                                                        betamethasone, gentamicin sulfate
29969                                                                                               imidacloprid, pyriproxyfen
29970                                                                                             ivermectin, pyrantel pamoate
29978                                                                                              lufenuron, milbemycin oxime
29990                                                                                               imidacloprid, pyriproxyfen
29991                                                                                              lufenuron, milbemycin oxime
29993                                                                                              lufenuron, milbemycin oxime
30001                                                                                       amoxicillin, clavulanate potassium
30048                                                                                                         pyrantel pamoate
30070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30075                                                                                                 fipronil, (s)-methoprene
30076                                                                                                               ivermectin
30081                                                                                                               ivermectin
30082                                                                                                 fipronil, (s)-methoprene
30083                                                                                             ivermectin, pyrantel pamoate
30099                                                                                              lufenuron, milbemycin oxime
30104                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30105                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30131                                                                                                                  omega 3
30132                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30138                                                                                             ivermectin, pyrantel pamoate
30142                                                                                               milbemycin oxime, spinosad
30143                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
30162                                                                                                   unspecified medication
30164                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
30165                                                                                               milbemycin oxime, spinosad
30166                                                                                              lufenuron, milbemycin oxime
30169                                                                                                         tylosin tartrate
30172                                                                                              lufenuron, milbemycin oxime
30174                                                                                              lufenuron, milbemycin oxime
30178                                                                                                         neomycin sulfate
30179                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30185                                                                                             ivermectin, pyrantel pamoate
30191                                                                                               milbemycin oxime, spinosad
30192                                                                                               milbemycin oxime, spinosad
30193                                                                                               milbemycin oxime, spinosad
30198                                                                                                     prednisolone acetate
30211                                                                                              lufenuron, milbemycin oxime
30212                                                                                                               fluralaner
30213                                                                                                             fenbendazole
30214                                                                                    dinotefuran, permethrin, pyriproxyfen
30218                                                                                                               fluralaner
30221                                                                                              lufenuron, milbemycin oxime
30239                                                                                              lufenuron, milbemycin oxime
30241                                                                                              lufenuron, milbemycin oxime
30242                                                                                              lufenuron, milbemycin oxime
30246                                                                                                            yunnan baiyao
30263                                                                                                               ivermectin
30264                                                                                       fipronil, permethrin, pyriproxyfen
30268                                                                                                               ivermectin
30269                                                                                       fipronil, permethrin, pyriproxyfen
30270                                                                                                               ivermectin
30274                                                                                             ivermectin, pyrantel pamoate
30277                                                                                             ivermectin, pyrantel pamoate
30286                                                                                             ivermectin, pyrantel pamoate
30298                                                                                              lufenuron, milbemycin oxime
30299                                                                                              lufenuron, milbemycin oxime
30300                                                                                                 fipronil, (s)-methoprene
30310                                                                                              lufenuron, milbemycin oxime
30311                                                                             dexamethasone, neomycin sulfate, polymyxin b
30312                                                                                        betamethasone, gentamicin sulfate
30313                                                                                              lufenuron, milbemycin oxime
30317                                                                                                                mupirocin
30319                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30327                                                                                                               tobramycin
30329                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30337                                                                                        betamethasone, gentamicin sulfate
30338                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30344                                                                                                               ivermectin
30347                                                                                               milbemycin oxime, spinosad
30351                                                                                                               fluralaner
30352                                                                                             ivermectin, pyrantel pamoate
30353                                                                             dexamethasone, neomycin sulfate, polymyxin b
30354                                                                          betamethasone, clotrimazole, gentamicin sulfate
30355                                                                                                  chlorhexidine gluconate
30357                                                                                        betamethasone, gentamicin sulfate
30360                                                                                                                probiotic
30361                                                                                   joint supplement (glucosamine hcl/msm)
30366                                                                                                               fluralaner
30367                                                                                             ivermectin, pyrantel pamoate
30371                                                                                              lufenuron, milbemycin oxime
30372                                                                                                 flumethrin, imidacloprid
30373                                                                                                         milbemycin oxime
30374                                                                                                               fluralaner
30375                                                                                                 flumethrin, imidacloprid
30376                                                                                              lufenuron, milbemycin oxime
30377                                                                                                            metronidazole
30378                                                                                                   unspecified medication
30385                                                                                                         milbemycin oxime
30387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30388                                                                                                                  omega 3
30389                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30395                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30396                                                                                                                  omega 3
30404                                                                                                         milbemycin oxime
30405                                                                                                         milbemycin oxime
30406                                                                                                 fipronil, (s)-methoprene
30418                                                                               ivermectin, praziquantel, pyrantel pamoate
30450                                                                             florfenicol, mometasone furoate, terbinafine
30464                                                                          betamethasone, clotrimazole, gentamicin sulfate
30471                                                                                              lufenuron, milbemycin oxime
30479                                                                                                 imidacloprid, permethrin
30480                                                                                             ivermectin, pyrantel pamoate
30483                                                                                               imidacloprid, pyriproxyfen
30484                                                                                               imidacloprid, pyriproxyfen
30485                                                                                        betamethasone, gentamicin sulfate
30492                                                                                              lufenuron, milbemycin oxime
30496                                                                                                             pantoprazole
30515                                                                                              lufenuron, milbemycin oxime
30528                                                                                              lufenuron, milbemycin oxime
30529                                                                                                       miconazole nitrate
30536                                                                                                      ear cleaner (zymox)
30541                                                                                  betamethasone, florfenicol, terbinafine
30555                                                                                              lufenuron, milbemycin oxime
30556                                                                                              lufenuron, milbemycin oxime
30590                                                                                               milbemycin oxime, spinosad
30604                                                                                               milbemycin oxime, spinosad
30623                                                                           dexamethasone, neomycin sulfate, thiabendazole
30644                                                                          betamethasone, clotrimazole, gentamicin sulfate
30685                                                                                                     digestive supplement
30689                                                                                                            yunnan baiyao
30692                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30701                                                                                                               fluralaner
30702                                                                                              lufenuron, milbemycin oxime
30707                                                                                                               fluralaner
30708                                                                                              lufenuron, milbemycin oxime
30709                                                                                              lufenuron, milbemycin oxime
30710                                                                                                               fluralaner
30713                                                                                                  chlorhexidine gluconate
30714                                                                             dexamethasone, neomycin sulfate, polymyxin b
30717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
30753                                                                                                         milbemycin oxime
30754                                                                                               imidacloprid, pyriproxyfen
30756                                                                                               imidacloprid, pyriproxyfen
30757                                                                                               imidacloprid, pyriproxyfen
30764                                                                                               milbemycin oxime, spinosad
30765                                                                                                         milbemycin oxime
30766                                                                                                                sarolaner
30768                                                                                             ivermectin, pyrantel pamoate
30769                                                                                               bacitracin, hydrocortisone
30779                                                                                             ivermectin, pyrantel pamoate
30792                                                                                               imidacloprid, pyriproxyfen
30793                                                                                             ivermectin, pyrantel pamoate
30796                                                                                             ivermectin, pyrantel pamoate
30797                                                                                                                sarolaner
30799                                                                                             ivermectin, pyrantel pamoate
30803                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30811                                                                                    dinotefuran, permethrin, pyriproxyfen
30813                                                                                             ivermectin, pyrantel pamoate
30814                                                                          betamethasone, clotrimazole, gentamicin sulfate
30815                                                                                                       calming supplement
30816                                                                                                                 tramadol
30817                                                                                                       calming supplement
30819                                                                                    dinotefuran, permethrin, pyriproxyfen
30820                                                                                             ivermectin, pyrantel pamoate
30821                                                                                                            metronidazole
30822                                                                                                              amoxicillin
30823                                                                                                                carvacrol
30824                                                                                                   unspecified medication
30826                                                                                             ivermectin, pyrantel pamoate
30833                                                                                                               fluralaner
30834                                                                                  betamethasone, florfenicol, terbinafine
30840                                                                               dextromethorphan hydrobromide, guaifenesin
30844                                                                                             ivermectin, pyrantel pamoate
30876                                                                                                         pyrantel pamoate
30877                                                                                             ivermectin, pyrantel pamoate
30893                                                                                                             praziquantel
30901                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30909                                                                               ivermectin, praziquantel, pyrantel pamoate
30917                                                                                        betamethasone, gentamicin sulfate
30920                                                                                       fipronil, permethrin, pyriproxyfen
30936                                                                                                            yunnan baiyao
30943                                                                                lufenuron, milbemycin oxime, praziquantel
30945                                                                                              lufenuron, milbemycin oxime
30947                                                                                              lufenuron, milbemycin oxime
30948                                                                                                               fluralaner
30949                                                                                              lufenuron, milbemycin oxime
30953                                                                                                                probiotic
30960                                                                                                                  omega 3
30961                                                                                                             multivitamin
30962                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30963                                                                                                                carprofen
30998                                                                                                 imidacloprid, permethrin
31000                                                                                                 imidacloprid, permethrin
31001                                                                                             ivermectin, pyrantel pamoate
31003                                                                                                               selamectin
31004                                                                                               imidacloprid, pyriproxyfen
31010                                                                                             ivermectin, pyrantel pamoate
31011                                                                                               imidacloprid, pyriproxyfen
31016                                                                                                immune support supplement
31022                                                                                             ivermectin, pyrantel pamoate
31023                                                                                                               fluralaner
31034                                                                                                         milbemycin oxime
31043                                                                                               imidacloprid, pyriproxyfen
31046                                                                                lufenuron, milbemycin oxime, praziquantel
31089                                                                                             ivermectin, pyrantel pamoate
31094                                                                                           milbemycin oxime, praziquantel
31095                                                                                                                carprofen
31096                                                                                           milbemycin oxime, praziquantel
31105                                                                                             ivermectin, pyrantel pamoate
31132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31133                                                                                              lufenuron, milbemycin oxime
31134                                                                                                               afoxolaner
31135                                                                                              lufenuron, milbemycin oxime
31139                                                                                                               afoxolaner
31148                                                                                             ivermectin, pyrantel pamoate
31149                                                                                             ivermectin, pyrantel pamoate
31152                                                                                                               ivermectin
31154                                                                                             ivermectin, pyrantel pamoate
31183                                                                                                               fluralaner
31186                                                                                                     dorzolamide, timolol
31195                                                                                lufenuron, milbemycin oxime, praziquantel
31196                                                                                                                deracoxib
31197                                                                                                                probiotic
31198                                                                                                               alprazolam
31199                                                                                             ivermectin, pyrantel pamoate
31203                                                                                                                probiotic
31209                                                                                                               gabapentin
31228                                                                                                               isoflurane
31232                                                                                                               isoflurane
31234                                                                                                 fipronil, (s)-methoprene
31245                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31247                                                                                                         milbemycin oxime
31248                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31249                                                                                                         milbemycin oxime
31250                                                                                                 fipronil, (s)-methoprene
31260                                                                                                         milbemycin oxime
31263                                                                                              lufenuron, milbemycin oxime
31265                                                                                    dinotefuran, permethrin, pyriproxyfen
31268                                                                                                              sevoflurane
31297                                                                                                               selamectin
31299                                                                                                               selamectin
31300                                                                                                               ivermectin
31301                                                                                                               fluralaner
31303                                                                                                               selamectin
31307                                                                                               imidacloprid, pyriproxyfen
31308                                                                                                         milbemycin oxime
31309                                                                                                               selamectin
31317                                                                                              rx diet - digestive support
31322                                                                                               milbemycin oxime, spinosad
31328                                                                                                               afoxolaner
31330                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31350                                                                           mometasone furoate, orbifloxacin, posaconazole
31353                                                                                                               prednisone
31356                                                                                                  ketoconazole, tris-edta
31357                                                                                             ivermectin, pyrantel pamoate
31358                                                                                                               afoxolaner
31359                                                                                   joint supplement (glucosamine hcl/msm)
31360                                                                                                                  omega 3
31361                                                                                             ivermectin, pyrantel pamoate
31365                                                                                                         milbemycin oxime
31366                                                                                                               afoxolaner
31367                                                                                                              robenacoxib
31369                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
31370                                                                                  betamethasone, florfenicol, terbinafine
31371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31373                                                                                              lufenuron, milbemycin oxime
31374                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31375                                                                                              lufenuron, milbemycin oxime
31381                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31383                                                                                              lufenuron, milbemycin oxime
31384                                                                                               milbemycin oxime, spinosad
31385                                                                                                               afoxolaner
31386                                                                                             ivermectin, pyrantel pamoate
31389                                                                                                         pyrantel pamoate
31408                                                                                                               ivermectin
31423                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31434                                                                                                  ketoconazole, tris-edta
31437                                                                                        trimeprazine tartrate, prednisone
31438                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31439                                                                          betamethasone, clotrimazole, gentamicin sulfate
31440                                                                                             ivermectin, pyrantel pamoate
31441                                                                                             ivermectin, pyrantel pamoate
31446                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31447                                                                                         phytosphingosine, salicylic acid
31449                                                                                             ivermectin, pyrantel pamoate
31450                                                                                                               afoxolaner
31452                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31457                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31463                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31471                                                                                                               ivermectin
31502                                                                                                               ivermectin
31503                                                                                                               afoxolaner
31504                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31506                                                                                                               afoxolaner
31508                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31528                                                                                                               afoxolaner
31529                                                                                             ivermectin, pyrantel pamoate
31531                                                                                                               afoxolaner
31539                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31542                                                                                                 urinary tract supplement
31548                                                                                                               lokivetmab
31551                                                                                                  ketoconazole, tris-edta
31552                                                                                                 fipronil, (s)-methoprene
31553                                                                                                 fipronil, (s)-methoprene
31602                                                                                             ivermectin, pyrantel pamoate
31611                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31612                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
31616                                                                                                                  omega 3
31617                                                                                                               ivermectin
31618                                                                                                               afoxolaner
31619                                                                                                                  omega 3
31637                                                                                             ivermectin, pyrantel pamoate
31640                                                                                                         phytosphingosine
31643                                                                                             ivermectin, pyrantel pamoate
31644                                                                                                                meloxicam
31645                                                                                                         phytosphingosine
31646                                                                                             ivermectin, pyrantel pamoate
31647                                                                                                               afoxolaner
31652                                                                                                  ketoconazole, tris-edta
31653                                                                                             ivermectin, pyrantel pamoate
31655                                                                                                               gabapentin
31656                                                                                                  ketoconazole, tris-edta
31657                                                                                                                meloxicam
31665                                                                                             ivermectin, pyrantel pamoate
31666                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31678                                                                                             ivermectin, pyrantel pamoate
31680                                                                                             ivermectin, pyrantel pamoate
31688                                                                                             ivermectin, pyrantel pamoate
31689                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31696                                                                                                 fipronil, (s)-methoprene
31707                                                                                             ivermectin, pyrantel pamoate
31713                                                                                             ivermectin, pyrantel pamoate
31716                                                                                              lufenuron, milbemycin oxime
31725                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31726                                                                                               imidacloprid, pyriproxyfen
31730                                                                                              lufenuron, milbemycin oxime
31731                                                                                               imidacloprid, pyriproxyfen
31734                                                                                              lufenuron, milbemycin oxime
31735                                                                                               imidacloprid, pyriproxyfen
31736                                                                                                                probiotic
31737                                                                                                             fenbendazole
31742                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
31747                                                                                                         milbemycin oxime
31748                                                                                                               gabapentin
31760                                                                                             ivermectin, pyrantel pamoate
31761                                                                                                             fenbendazole
31762                                                                                             ivermectin, pyrantel pamoate
31765                                                                                             ivermectin, pyrantel pamoate
31766                                                                                                               fluralaner
31768                                                                                               milbemycin oxime, spinosad
31769                                                                                             ivermectin, pyrantel pamoate
31771                                                                                             ivermectin, pyrantel pamoate
31773                                                                                             ivermectin, pyrantel pamoate
31774                                                                                        betamethasone, gentamicin sulfate
31777                                                                                                               ivermectin
31780                                                                                              lufenuron, milbemycin oxime
31781                                                                                           milbemycin oxime, praziquantel
31798                                                                                             ivermectin, pyrantel pamoate
31803                                                                                           praziquantel, pyrantel pamoate
31804                                                                                                               afoxolaner
31807                                                                                                 fipronil, (s)-methoprene
31808                                                                                             ivermectin, pyrantel pamoate
31810                                                                                             ivermectin, pyrantel pamoate
31811                                                                                                 fipronil, (s)-methoprene
31818                                                                                                 fipronil, (s)-methoprene
31819                                                                                             ivermectin, pyrantel pamoate
31824                                                                                                               ivermectin
31825                                                                                                 fipronil, (s)-methoprene
31826                                                                                        betamethasone, gentamicin sulfate
31833                                                                                                 urinary tract supplement
31834                                                                                        betamethasone, gentamicin sulfate
31836                                                                                                 urinary tract supplement
31837                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
31840                                                                                              lufenuron, milbemycin oxime
31841                                                                                                                meloxicam
31842                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
31843                                                                                                             fenbendazole
31844                                                                                              lufenuron, milbemycin oxime
31845                                                                          betamethasone, clotrimazole, gentamicin sulfate
31846                                                                                                 flumethrin, imidacloprid
31847                                                                                              lufenuron, milbemycin oxime
31849                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31850                                                                                    enrofloxacin, ketoconazole, tris-edta
31853                                                                                                 fipronil, (s)-methoprene
31861                                                                                           milbemycin oxime, praziquantel
31864                                                                                                         milbemycin oxime
31866                                                                                                         milbemycin oxime
31868                                                                                              lufenuron, milbemycin oxime
31869                                                                                                         milbemycin oxime
31874                                                                                                         milbemycin oxime
31876                                                                                                      ear cleaner (zymox)
31880                                                                                  transcranial magnetic stimulation (tms)
31888                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31891                                                                               ivermectin, praziquantel, pyrantel pamoate
31892                                                                                                               afoxolaner
31895                                                                                                         milbemycin oxime
31896                                                                                                               afoxolaner
31898                                                                                                               afoxolaner
31906                                                                                                 skin and coat supplement
31907                                                                                                               fluralaner
31908                                                                                                               ivermectin
31909                                                                                                               ivermectin
31911                                                                                              lufenuron, milbemycin oxime
31916                                                                                              lufenuron, milbemycin oxime
31937                                                                                               milbemycin oxime, spinosad
31938                                                                                              lufenuron, milbemycin oxime
31939                                                                                              lufenuron, milbemycin oxime
31940                                                                                              lufenuron, milbemycin oxime
31941                                                                                              lufenuron, milbemycin oxime
31942                                                                                              lufenuron, milbemycin oxime
31945                                                                                             ivermectin, pyrantel pamoate
31946                                                                                             ivermectin, pyrantel pamoate
31947                                                                                             ivermectin, pyrantel pamoate
31948                                                                                                               fluralaner
31953                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31954                                                                                                               fluralaner
31955                                                                                             ivermectin, pyrantel pamoate
31968                                                                                             ivermectin, pyrantel pamoate
31985                                                                                                               isoflurane
31990                                                                                              lufenuron, milbemycin oxime
32002                                                                                             ivermectin, pyrantel pamoate
32006                                                                               dextromethorphan hydrobromide, guaifenesin
32015                                                                                                 fipronil, (s)-methoprene
32016                                                                                             ivermectin, pyrantel pamoate
32020                                                                                                               ivermectin
32025                                                                                                                cisapride
32032                                                                                lufenuron, milbemycin oxime, praziquantel
32035                                                                                              lufenuron, milbemycin oxime
32040                                                                                              lufenuron, milbemycin oxime
32046                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32053                                                                                             ivermectin, pyrantel pamoate
32054                                                                                                 fipronil, (s)-methoprene
32055                                                                                                 fipronil, (s)-methoprene
32056                                                                                             ivermectin, pyrantel pamoate
32057                                                                                                               afoxolaner
32058                                                                                             ivermectin, pyrantel pamoate
32059                                                                                             ivermectin, pyrantel pamoate
32060                                                                                                               afoxolaner
32074                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32076                                                                                             ivermectin, pyrantel pamoate
32079                                                                                                               afoxolaner
32080                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32084                                                                             dexamethasone, neomycin sulfate, polymyxin b
32095                                                                                                               fluralaner
32097                                                                                                         milbemycin oxime
32098                                                                                           milbemycin oxime, praziquantel
32099                                                                                                               fluralaner
32100                                                                                           milbemycin oxime, praziquantel
32101                                                                                                               fluralaner
32102                                                                                                               fluralaner
32103                                                                                           milbemycin oxime, praziquantel
32104                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32105                                                                                           milbemycin oxime, praziquantel
32106                                                                                                               fluralaner
32108                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32114                                                                                                 flumethrin, imidacloprid
32116                                                                                                 flumethrin, imidacloprid
32119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32121                                                                                                               ivermectin
32122                                                                                                               afoxolaner
32123                                                                                                         tylosin tartrate
32128                                                                                                               ivermectin
32129                                                                                                               afoxolaner
32132                                                                                                               ivermectin
32133                                                                                                               ivermectin
32134                                                                                                         milbemycin oxime
32168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32171                                                                                      ear cleaner (zymox), hydrocortisone
32175                                                                                      ear cleaner (zymox), hydrocortisone
32179                                                                                             ivermectin, pyrantel pamoate
32180                                                                                                               afoxolaner
32183                                                                                      ear cleaner (zymox), hydrocortisone
32184                                                                                                         phytosphingosine
32187                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32222                                                                                                         milbemycin oxime
32231                                                                                             ivermectin, pyrantel pamoate
32232                                                                                                               fluralaner
32233                                                                               ivermectin, praziquantel, pyrantel pamoate
32234                                                                                                               fluralaner
32236                                                                                             ivermectin, pyrantel pamoate
32237                                                                                                               afoxolaner
32266                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32276                                                                                        betamethasone, gentamicin sulfate
32290                                                                                                               isoflurane
32295                                                                                               milbemycin oxime, spinosad
32296                                                                                                               ivermectin
32297                                                                                   cyphenothrin, fipronil, (s)-methoprene
32310                                                                                        betamethasone, gentamicin sulfate
32312                                                                                             ivermectin, pyrantel pamoate
32313                                                                                                               fluralaner
32315                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32320                                                                                                               isoflurane
32343                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32358                                                                                        betamethasone, gentamicin sulfate
32359                                                                                                 fipronil, (s)-methoprene
32360                                                                                              lufenuron, milbemycin oxime
32362                                                                                              lufenuron, milbemycin oxime
32363                                                                                                   unspecified medication
32364                                                                                                               lokivetmab
32365                                                                                                               lokivetmab
32370                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32390                                                                                                               moxidectin
32393                                                                                                               moxidectin
32394                                                                                                               fluralaner
32417                                                                                              lufenuron, milbemycin oxime
32425                                                                                                 fipronil, (s)-methoprene
32426                                                                                             ivermectin, pyrantel pamoate
32427                                                                                                         milbemycin oxime
32445                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32447                                                                                              lufenuron, milbemycin oxime
32448                                                                                                         milbemycin oxime
32449                                                                                                               afoxolaner
32460                                                                                                               prednisone
32463                                                                                                         milbemycin oxime
32464                                                                                                               fluralaner
32466                                                                                             ivermectin, pyrantel pamoate
32467                                                                                                               fluralaner
32477                                                                                             ivermectin, pyrantel pamoate
32478                                                                                                               fluralaner
32504                                                                                              lufenuron, milbemycin oxime
32505                                                                                               imidacloprid, pyriproxyfen
32507                                                                                                                mupirocin
32509                                                                                              lufenuron, milbemycin oxime
32510                                                                                               imidacloprid, pyriproxyfen
32511                                                                                              lufenuron, milbemycin oxime
32512                                                                                               imidacloprid, pyriproxyfen
32513                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32520                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32521                                                                                                                ofloxacin
32529                                                                                              lufenuron, milbemycin oxime
32530                                                                                              lufenuron, milbemycin oxime
32535                                                                                              lufenuron, milbemycin oxime
32536                                                                                                               fluralaner
32538                                                                          betamethasone, clotrimazole, gentamicin sulfate
32542                                                                          betamethasone, clotrimazole, gentamicin sulfate
32557                                                                                             ivermectin, pyrantel pamoate
32558                                                                                                 fipronil, (s)-methoprene
32561                                                                                             ivermectin, pyrantel pamoate
32562                                                                                               imidacloprid, pyriproxyfen
32575                                                                                       chlorhexidine gluconate, ophytrium
32576                                                                                       joint supplement (glucosamine hcl)
32629                                                                                                             multivitamin
32631                                                                                           milbemycin oxime, praziquantel
32633                                                                                                             multivitamin
32635                                                                                    dinotefuran, permethrin, pyriproxyfen
32637                                                                                        betamethasone, gentamicin sulfate
32642                                                                                              lufenuron, milbemycin oxime
32643                                                                                                         milbemycin oxime
32652                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32654                                                                                                         pyrantel pamoate
32664                                                                                             ivermectin, pyrantel pamoate
32670                                                                                              lufenuron, milbemycin oxime
32672                                                                                                  chlorhexidine gluconate
32673                                                                                             ivermectin, pyrantel pamoate
32678                                                                                              lufenuron, milbemycin oxime
32680                                                                                              lufenuron, milbemycin oxime
32682                                                                                              lufenuron, milbemycin oxime
32685                                                                                              lufenuron, milbemycin oxime
32694                                                                                        betamethasone, gentamicin sulfate
32698                                                                                                                 spinosad
32703                                                                                                                 spinosad
32726                                                                                                                ketorolac
32737                                                                             dexamethasone, neomycin sulfate, polymyxin b
32739                                                                               ivermectin, praziquantel, pyrantel pamoate
32742                                                                                                         milbemycin oxime
32743                                                                                                                lotilaner
32750                                                                                             ivermectin, pyrantel pamoate
32751                                                                                                               afoxolaner
32767                                                                                        allergy immunotherapy - injection
32768                                                                                                               afoxolaner
32769                                                                                                               moxidectin
32770                                                                                                              oclacitinib
32777                                                                                                                probiotic
32798                                                                             florfenicol, mometasone furoate, terbinafine
32815                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32829                                                                                                 fipronil, (s)-methoprene
32841                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
32844                                                                                       amoxicillin, clavulanate potassium
32849                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
32850                                                                                                                trazodone
32856                                                                                                 fipronil, (s)-methoprene
32857                                                                                             ivermectin, pyrantel pamoate
32858                                                                                                 fipronil, (s)-methoprene
32859                                                                                             ivermectin, pyrantel pamoate
32862                                                                                                 fipronil, (s)-methoprene
32863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32869                                                                                                               fluralaner
32870                                                                                             ivermectin, pyrantel pamoate
32871                                                                                                               lokivetmab
32879                                                                                                                  omega 3
32883                                                                                                               ivermectin
32884                                                                            attapulgite, bismuth subsalicylate, kanamycin
32887                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32888                                                                                                  ketoconazole, tris-edta
32903                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32912                                                                             dexamethasone, neomycin sulfate, polymyxin b
32923                                                                                             ivermectin, pyrantel pamoate
32930                                                                                              lufenuron, milbemycin oxime
32937                                                                                                 imidacloprid, permethrin
32938                                                                                             ivermectin, pyrantel pamoate
32940                                                                                                                ophytrium
32942                                                                                             ivermectin, pyrantel pamoate
32943                                                                                                               fluralaner
32944                                                                                                               afoxolaner
32949                                                                                                                ophytrium
32950                                                                                                                  omega 3
32951                                                                                             ivermectin, pyrantel pamoate
32952                                                                                                               afoxolaner
32954                                                                                       amoxicillin, clavulanate potassium
32955                                                                                             ivermectin, pyrantel pamoate
32956                                                                                                               afoxolaner
32964                                                                                    chlorhexidine gluconate, ketoconazole
32965                                                                           dexamethasone, neomycin sulfate, thiabendazole
32999                                                                                              lufenuron, milbemycin oxime
33004                                                                                              lufenuron, milbemycin oxime
33008                                                                                               imidacloprid, pyriproxyfen
33009                                                                                              lufenuron, milbemycin oxime
33010                                                                                              lufenuron, milbemycin oxime
33011                                                                                                               afoxolaner
33014                                                                             florfenicol, mometasone furoate, terbinafine
33015                                                                                                             fenbendazole
33023                                                                                                 fipronil, (s)-methoprene
33043                                                                                             ivermectin, pyrantel pamoate
33047                                                                                       amoxicillin, clavulanate potassium
33066                                                                                                               selamectin
33067                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33068                                                                                                               selamectin
33073                                                                                                         pyrantel pamoate
33078                                                                                                               ivermectin
33081                                                                                                         milbemycin oxime
33085                                                                                    dinotefuran, permethrin, pyriproxyfen
33086                                                                                                         milbemycin oxime
33087                                                                                    dinotefuran, permethrin, pyriproxyfen
33088                                                                                                         milbemycin oxime
33089                                                                                    dinotefuran, permethrin, pyriproxyfen
33090                                                                                                         milbemycin oxime
33091                                                                                    dinotefuran, permethrin, pyriproxyfen
33092                                                                                                         milbemycin oxime
33096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33107                                                                                             ivermectin, pyrantel pamoate
33110                                                                                                         milbemycin oxime
33113                                                                                             ivermectin, pyrantel pamoate
33124                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
33126                                                                                        betamethasone, gentamicin sulfate
33128                                                                             florfenicol, mometasone furoate, terbinafine
33132                                                                                                               afoxolaner
33133                                                                                                               ivermectin
33138                                                                                             ivermectin, pyrantel pamoate
33157                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33159                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33166                                                                                                   cyphenothrin, fipronil
33187                                                                                             ivermectin, pyrantel pamoate
33190                                                                                               milbemycin oxime, spinosad
33191                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33209                                                                               chloroxylenol, lactic acid, salicylic acid
33211                                                                                              lufenuron, milbemycin oxime
33220                                                                                 febantel, praziquantel, pyrantel pamoate
33222                                                                                              lufenuron, milbemycin oxime
33226                                                                                                                  omega 3
33227                                                                                                                probiotic
33229                                                                                    dinotefuran, permethrin, pyriproxyfen
33230                                                                                              lufenuron, milbemycin oxime
33233                                                                                                                probiotic
33235                                                                                              lufenuron, milbemycin oxime
33236                                                                                    dinotefuran, permethrin, pyriproxyfen
33239                                                                                                                probiotic
33242                                                                                              lufenuron, milbemycin oxime
33271                                                                                                   unspecified medication
33286                                                                                             ivermectin, pyrantel pamoate
33289                                                                               ivermectin, praziquantel, pyrantel pamoate
33292                                                                                             ivermectin, pyrantel pamoate
33293                                                                                                 fipronil, (s)-methoprene
33318                                                                                                 fipronil, (s)-methoprene
33333                                                                                              lufenuron, milbemycin oxime
33335                                                                                              lufenuron, milbemycin oxime
33336                                                                                              lufenuron, milbemycin oxime
33347                                                                                                               lokivetmab
33354                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33355                                                                                        betamethasone, gentamicin sulfate
33358                                                                                             ivermectin, pyrantel pamoate
33363                                                                                             ivermectin, pyrantel pamoate
33364                                                                                                               fluralaner
33370                                                                                             ivermectin, pyrantel pamoate
33374                                                                                    chlorhexidine gluconate, ketoconazole
33375                                                                               coal tar solution, menthol, salicylic acid
33376                                                                                                 joint supplement (other)
33377                                                                                                                  omega 3
33385                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33387                                                                                                       gentamicin sulfate
33389                                                                                               neomycin sulfate, nystatin
33410                                                                                             ivermectin, pyrantel pamoate
33411                                                                                                 flumethrin, imidacloprid
33412                                                                                             ivermectin, pyrantel pamoate
33414                                                                                                 flumethrin, imidacloprid
33456                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33468                                                                                                  ketoconazole, tris-edta
33471                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33479                                                                                                               afoxolaner
33480                                                                                             ivermectin, pyrantel pamoate
33482                                                                             dexamethasone, neomycin sulfate, polymyxin b
33489                                                                                                         pyrantel pamoate
33490                                                                                              lufenuron, milbemycin oxime
33491                                                                                              lufenuron, milbemycin oxime
33492                                                                                              lufenuron, milbemycin oxime
33493                                                                                              lufenuron, milbemycin oxime
33497                                                                                              lufenuron, milbemycin oxime
33499                                                                                                 skin and coat supplement
33500                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33539                                                                                                             deltamethrin
33541                                                                                                             deltamethrin
33542                                                                           dexamethasone, neomycin sulfate, thiabendazole
33543                                                                                                             deltamethrin
33544                                                                                                             deltamethrin
33576                                                                                             ivermectin, pyrantel pamoate
33580                                                                                              lufenuron, milbemycin oxime
33581                                                                                                               indoxacarb
33582                                                                                                              doxycycline
33583                                                                                        trimeprazine tartrate, prednisone
33590                                                                                              lufenuron, milbemycin oxime
33591                                                                                              lufenuron, milbemycin oxime
33592                                                                                                         milbemycin oxime
33614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33641                                                                                lufenuron, milbemycin oxime, praziquantel
33644                                                                                lufenuron, milbemycin oxime, praziquantel
33645                                                                                              lufenuron, milbemycin oxime
33647                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33649                                                                                              lufenuron, milbemycin oxime
33651                                                                                lufenuron, milbemycin oxime, praziquantel
33655                                                                                              lufenuron, milbemycin oxime
33683                                                                                                         milbemycin oxime
33684                                                                                                 unspecified chemotherapy
33690                                                                                             ivermectin, pyrantel pamoate
33696                                                                                             ivermectin, pyrantel pamoate
33702                                                                                                                  omega 3
33706                                                                                              lufenuron, milbemycin oxime
33714                                                                                              lufenuron, milbemycin oxime
33717                                                                                                                probiotic
33722                                                                                       chlorhexidine gluconate, ophytrium
33723                                                                                              lufenuron, milbemycin oxime
33724                                                                                              lufenuron, milbemycin oxime
33725                                                                                                                sarolaner
33737                                                                                                                probiotic
33739                                                                                               milbemycin oxime, spinosad
33740                                                                                               milbemycin oxime, spinosad
33756                                                                                neomycin sulfate, polymyxin b, gramicidin
33767                                                                                                         milbemycin oxime
33797                                                                                               imidacloprid, pyriproxyfen
33798                                                                                             ivermectin, pyrantel pamoate
33804                                                                                             ivermectin, pyrantel pamoate
33805                                                                                               imidacloprid, pyriproxyfen
33815                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33824                                                                                             ivermectin, pyrantel pamoate
33828                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33844                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33868                                                                                                               ivermectin
33869                                                                                             ivermectin, pyrantel pamoate
33870                                                                                             ivermectin, pyrantel pamoate
33890                                                                                                               amantadine
33894                                                                                                  ketoconazole, tris-edta
33901                                                                                             testicular health supplement
33905                                                                                        betamethasone, gentamicin sulfate
33907                                                                                        betamethasone, gentamicin sulfate
33909                                                                                        betamethasone, gentamicin sulfate
33911                                                                                                 fipronil, (s)-methoprene
33913                                                                                                  triamcinolone acetonide
33914                                                                                        betamethasone, gentamicin sulfate
33916                                                                                        allergy immunotherapy - injection
33919                                                                                                                mupirocin
33927                                                                                                 skin and coat supplement
33929                                                                                                 imidacloprid, moxidectin
33939                                                                                                                mupirocin
33940                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33987                                                                                                             multivitamin
33991                                                                                          ear cleaner (epi-otic advanced)
33992                                                                                             ivermectin, pyrantel pamoate
33993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33994                                                                                                  ketoconazole, tris-edta
33995                                                                                                               fluralaner
33998                                                                                                  ketoconazole, tris-edta
34000                                                                                                             multivitamin
34002                                                                                   joint supplement (glucosamine hcl/msm)
34003                                                                                                  ketoconazole, tris-edta
34005                                                                                                       calming supplement
34011                                                                          betamethasone, clotrimazole, gentamicin sulfate
34012                                                                                                  ketoconazole, tris-edta
34014                                                                                 ceramide complex, coconut oil, safflower
34016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34022                                                                                          ear cleaner (epi-otic advanced)
34024                                                                               dextromethorphan hydrobromide, guaifenesin
34029                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34030                                                                                              lufenuron, milbemycin oxime
34043                                                                                              lufenuron, milbemycin oxime
34046                                                                                                 fipronil, (s)-methoprene
34048                                                                                              lufenuron, milbemycin oxime
34049                                                                                                 flumethrin, imidacloprid
34051                                                                                              lufenuron, milbemycin oxime
34053                                                                                              lufenuron, milbemycin oxime
34054                                                                                                 flumethrin, imidacloprid
34069                                                                                             ivermectin, pyrantel pamoate
34073                                                                                                               diclofenac
34074                                                                                             ivermectin, pyrantel pamoate
34075                                                                                   imidacloprid, permethrin, pyriproxyfen
34077                                                                                              lufenuron, milbemycin oxime
34087                                                                                               milbemycin oxime, spinosad
34090                                                                                                      ear cleaner (zymox)
34091                                                                                             ivermectin, pyrantel pamoate
34092                                                                                                 fipronil, (s)-methoprene
34093                                                                                                 flumethrin, imidacloprid
34094                                                                                                  acetic acid, boric acid
34095                                                                                                         milbemycin oxime
34096                                                                                           milbemycin oxime, praziquantel
34105                                                                                                hydrocortisone, pramoxine
34107                                                                                                 fipronil, (s)-methoprene
34108                                                                               ivermectin, praziquantel, pyrantel pamoate
34109                                                                                                             fenbendazole
34111                                                                                             ivermectin, pyrantel pamoate
34113                                                                                                 fipronil, (s)-methoprene
34125                                                                                    dinotefuran, permethrin, pyriproxyfen
34126                                                                                             ivermectin, pyrantel pamoate
34128                                                                                        betamethasone, gentamicin sulfate
34132                                                                                             ivermectin, pyrantel pamoate
34134                                                                                             ivermectin, pyrantel pamoate
34135                                                                                    dinotefuran, permethrin, pyriproxyfen
34138                                                                                                                probiotic
34140                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34147                                                                                             ivermectin, pyrantel pamoate
34148                                                                                                               afoxolaner
34152                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34155                                                                                                                probiotic
34156                                                                                                               loratadine
34157                                                                                                               famotidine
34161                                                                                             ivermectin, pyrantel pamoate
34227                                                                                                                  rx clay
34230                                                                                                                cisapride
34231                                                                                                              ondansetron
34232                                                                                                                probiotic
34233                                                                                                               famotidine
34234                                                                                                       maropitant citrate
34235                                                                                                              mirtazapine
34238                                                                                             ivermectin, pyrantel pamoate
34239                                                                                                 imidacloprid, permethrin
34240                                                                                               imidacloprid, pyriproxyfen
34241                                                                                             ivermectin, pyrantel pamoate
34242                                                                                                         milbemycin oxime
34243                                                                                               imidacloprid, pyriproxyfen
34246                                                                                               imidacloprid, pyriproxyfen
34247                                                                                                         milbemycin oxime
34249                                                                                                             fenbendazole
34254                                                                                              lufenuron, milbemycin oxime
34260                                                                                       amoxicillin, clavulanate potassium
34262                                                                                              lufenuron, milbemycin oxime
34264                                                                                       amoxicillin, clavulanate potassium
34267                                                                                              lufenuron, milbemycin oxime
34268                                                                                              lufenuron, milbemycin oxime
34269                                                                                                             multivitamin
34282                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
34287                                                                             dexamethasone, neomycin sulfate, polymyxin b
34289                                                                             florfenicol, mometasone furoate, terbinafine
34290                                                                             florfenicol, mometasone furoate, terbinafine
34293                                                                             florfenicol, mometasone furoate, terbinafine
34304                                                                             florfenicol, mometasone furoate, terbinafine
34327                                                                                                                vitamin b
34332                                                                                                               ivermectin
34333                                                                          betamethasone, clotrimazole, gentamicin sulfate
34334                                                                                               imidacloprid, pyriproxyfen
34336                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34340                                                                                                               afoxolaner
34342                                                                                                                 geraniol
34343                                                                                      cedarwood oil, rosemary oil, sesame
34345                                                                                                 fipronil, (s)-methoprene
34348                                                                           dexamethasone, neomycin sulfate, thiabendazole
34359                                                                                                                 spinosad
34360                                                                                                               ivermectin
34361                                                                                             ivermectin, pyrantel pamoate
34362                                                                                                                 spinosad
34367                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34374                                                                                                         milbemycin oxime
34375                                                                                                               fluralaner
34378                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34379                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34388                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34401                                                                                             ivermectin, pyrantel pamoate
34403                                                                                                               afoxolaner
34409                                                                                                               ivermectin
34410                                                                                                               afoxolaner
34418                                                                                              lufenuron, milbemycin oxime
34419                                                                                              lufenuron, milbemycin oxime
34430                                                                                                               moxidectin
34434                                                                                                               fluralaner
34435                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34436                                                                                                 endocrine system support
34456                                                                                        betamethasone, gentamicin sulfate
34457                                                                                                               sucralfate
34463                                                                                                               sucralfate
34467                                                                                lufenuron, milbemycin oxime, praziquantel
34474                                                                                lufenuron, milbemycin oxime, praziquantel
34493                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
34513                                                                                                 fipronil, (s)-methoprene
34536                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34545                                                                                                                vitamin b
34548                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34579                                                                                                            yunnan baiyao
34583                                                                                                               ivermectin
34584                                                                                             ivermectin, pyrantel pamoate
34587                                                                                        betamethasone, gentamicin sulfate
34588                                                                                                  ketoconazole, tris-edta
34593                                                                                                               ivermectin
34606                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34608                                                                                        trimeprazine tartrate, prednisone
34609                                                                           dexamethasone, neomycin sulfate, thiabendazole
34614                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
34617                                                                                                 fipronil, (s)-methoprene
34624                                                                      neomycin sulfate, nystatin, triamcinolone acetonide
34629                                                                                               milbemycin oxime, spinosad
34630                                                                                                  ketoconazole, tris-edta
34635                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
34636                                                                                               milbemycin oxime, spinosad
34637                                                                                        trimeprazine tartrate, prednisone
34638                                                                                       chlorhexidine gluconate, ophytrium
34640                                                                                               milbemycin oxime, spinosad
34642                                                                                                               afoxolaner
34648                                                                                                               ivermectin
34669                                                                                             ivermectin, pyrantel pamoate
34671                                                                                   joint supplement (glucosamine hcl/msm)
34672                                                                                        betamethasone, gentamicin sulfate
34673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34674                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34675                                                                                                               lokivetmab
34676                                                                                           milbemycin oxime, praziquantel
34677                                                                                            allergy immunotherapy - drops
34678                                                                       chlorhexidine gluconate, hydrocortisone, tris-edta
34680                                                                                  betamethasone, florfenicol, terbinafine
34697                                                                                               milbemycin oxime, spinosad
34704                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34705                                                                                               milbemycin oxime, spinosad
34706                                                                                               milbemycin oxime, spinosad
34708                                                                                                    bismuth subsalicylate
34709                                                                                                             multivitamin
34710                                                                                                                probiotic
34727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34728                                                                                                                  omega 3
34729                                                                                                      unspecified vitamin
34730                                                                                             ivermectin, pyrantel pamoate
34733                                                                                             ivermectin, pyrantel pamoate
34734                                                                                                               fluralaner
34741                                                                                    chlorhexidine gluconate, ketoconazole
34744                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34747                                                                                                               fluralaner
34750                                                                                             ivermectin, pyrantel pamoate
34763                                                                                             ivermectin, pyrantel pamoate
34764                                                                                                               afoxolaner
34766                                                                                             ivermectin, pyrantel pamoate
34787                                                                                       joint supplement (glucosamine hcl)
34788                                                                                                                mupirocin
34789                                                                                             ivermectin, pyrantel pamoate
34791                                                                                             ivermectin, pyrantel pamoate
34797                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34798                                                                                                                  omega 3
34799                                                                                                               ivermectin
34811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34813                                                                                                     prebiotic, probiotic
34828                                                                                               milbemycin oxime, spinosad
34832                                                                                               milbemycin oxime, spinosad
34833                                                                                              lufenuron, milbemycin oxime
34845                                                                                                     prebiotic, probiotic
34874                                                                                                               sucralfate
34875                                                                                                               omeprazole
34887                                                                                                               ivermectin
34888                                                                                       fipronil, permethrin, pyriproxyfen
34889                                                                                             ivermectin, pyrantel pamoate
34890                                                                                                 fipronil, (s)-methoprene
34891                                                                                             ivermectin, pyrantel pamoate
34892                                                                                                 fipronil, (s)-methoprene
34900                                                                                                         milbemycin oxime
34901                                                                                                               fluralaner
34902                                                                                                               lokivetmab
34903                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34904                                                                                                                  omega 3
34905                                                                                                         milbemycin oxime
34906                                                                                                               fluralaner
34907                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34908                                                                                                               lokivetmab
34917                                                                                                  triamcinolone acetonide
34918                                                                                                            difluprednate
34920                                                                               ivermectin, praziquantel, pyrantel pamoate
34922                                                                                                         milbemycin oxime
34923                                                                                                         milbemycin oxime
34924                                                                                                               fluralaner
34953                                                                                                   gut restore supplement
34955                                                                                                     digestive supplement
34956                                                                                                                  omega 3
34966                                                                                                         milbemycin oxime
34979                                                                                                               fluralaner
34981                                                                                                         milbemycin oxime
34982                                                                               ivermectin, praziquantel, pyrantel pamoate
34983                                                                               ivermectin, praziquantel, pyrantel pamoate
34991                                                                                             ivermectin, pyrantel pamoate
34992                                                                                                               ivermectin
34996                                                                                             ivermectin, pyrantel pamoate
35002                                                                                               imidacloprid, pyriproxyfen
35004                                                                                             ivermectin, pyrantel pamoate
35014                                                                                              lufenuron, milbemycin oxime
35025                                                                                lufenuron, milbemycin oxime, praziquantel
35026                                                                                                         tylosin tartrate
35027                                                                                              rx diet - digestive support
35034                                                                                                         milbemycin oxime
35049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35069                                                                                              lufenuron, milbemycin oxime
35074                                                                                        betamethasone, gentamicin sulfate
35094                                                                                           milbemycin oxime, praziquantel
35103                                                                                                 fipronil, (s)-methoprene
35109                                                                                                                  calcium
35110                                                                                                         milbemycin oxime
35122                                                                                                               moxidectin
35124                                                                                                               moxidectin
35125                                                                                                               afoxolaner
35126                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35132                                                                                                               fluralaner
35134                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35143                                                                                              lufenuron, milbemycin oxime
35144                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35145                                                                                             ivermectin, pyrantel pamoate
35146                                                                                               milbemycin oxime, spinosad
35147                                                                                                         milbemycin oxime
35148                                                                                       joint supplement (glucosamine hcl)
35149                                                                                                         milbemycin oxime
35150                                                                                               milbemycin oxime, spinosad
35152                                                                                                         milbemycin oxime
35153                                                                                                               fluralaner
35154                                                                                                         milbemycin oxime
35160                                                                           mometasone furoate, orbifloxacin, posaconazole
35176                                                                                        trimeprazine tartrate, prednisone
35181                                                                                                               ivermectin
35182                                                                                             ivermectin, pyrantel pamoate
35183                                                                                                                  omega 3
35189                                                                                             ivermectin, pyrantel pamoate
35203                                                                                                               ivermectin
35204                                                                                       fipronil, permethrin, pyriproxyfen
35205                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35207                                                                                             ivermectin, pyrantel pamoate
35212                                                                                                               ivermectin
35214                                                                                             ivermectin, pyrantel pamoate
35232                                                                                             ivermectin, pyrantel pamoate
35245                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35252                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35258                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35262                                                                                             ivermectin, pyrantel pamoate
35264                                                                                             ivermectin, pyrantel pamoate
35278                                                                                             ivermectin, pyrantel pamoate
35279                                                                                                               afoxolaner
35283                                                                                             ivermectin, pyrantel pamoate
35284                                                                                                               afoxolaner
35291                                                                                              lufenuron, milbemycin oxime
35299                                                                                                 fipronil, (s)-methoprene
35300                                                                                             ivermectin, pyrantel pamoate
35314                                                                             dexamethasone, neomycin sulfate, polymyxin b
35315                                                                                                         milbemycin oxime
35354                                                                                              lufenuron, milbemycin oxime
35382                                                                                             ivermectin, pyrantel pamoate
35388                                                                                                                  menthol
35393                                                                                             ivermectin, pyrantel pamoate
35399                                                                                                               ivermectin
35400                                                                                             ivermectin, pyrantel pamoate
35401                                                                                             ivermectin, pyrantel pamoate
35404                                                                                             ivermectin, pyrantel pamoate
35405                                                                                             ivermectin, pyrantel pamoate
35406                                                                                             ivermectin, pyrantel pamoate
35414                                                                                              lufenuron, milbemycin oxime
35417                                                                                               milbemycin oxime, spinosad
35420                                                                                              lufenuron, milbemycin oxime
35421                                                                                                               fluralaner
35422                                                                                              lufenuron, milbemycin oxime
35423                                                                                              lufenuron, milbemycin oxime
35424                                                                                                               fluralaner
35425                                                                                              lufenuron, milbemycin oxime
35432                                                                                              lufenuron, milbemycin oxime
35434                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35443                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35450                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35453                                                                                                 joint supplement (other)
35454                                                                                                                  omega 3
35495                                                                                             ivermectin, pyrantel pamoate
35496                                                                                             ivermectin, pyrantel pamoate
35497                                                                                             ivermectin, pyrantel pamoate
35499                                                                                                                probiotic
35501                                                                                                               ivermectin
35504                                                                                                                probiotic
35506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35507                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
35509                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35513                                                                               dextromethorphan hydrobromide, guaifenesin
35525                                                                                                 fipronil, (s)-methoprene
35526                                                                                                         milbemycin oxime
35528                                                                                                         milbemycin oxime
35539                                                                                           milbemycin oxime, praziquantel
35560                                                                                                               ivermectin
35561                                                                                                               afoxolaner
35562                                                                                                               afoxolaner
35563                                                                                             ivermectin, pyrantel pamoate
35565                                                                                             ivermectin, pyrantel pamoate
35566                                                                                                               afoxolaner
35569                                                                                             ivermectin, pyrantel pamoate
35571                                                                               ivermectin, praziquantel, pyrantel pamoate
35572                                                                                               imidacloprid, pyriproxyfen
35573                                                                                                                meloxicam
35574                                                                                                                firocoxib
35575                                                                                              lufenuron, milbemycin oxime
35576                                                                                                         milbemycin oxime
35577                                                                                                               fluralaner
35578                                                                                                               fluralaner
35579                                                                                              lufenuron, milbemycin oxime
35580                                                                                                               prednisone
35581                                                                                                               ivermectin
35582                                                                                              lufenuron, milbemycin oxime
35592                                                                           dexamethasone, neomycin sulfate, thiabendazole
35593                                                                                             ivermectin, pyrantel pamoate
35598                                                                                                         milbemycin oxime
35605                                                                              over-the-counter unmedicated shampoo/mousse
35620                                                                                                   cyphenothrin, fipronil
35621                                                                                                   cyphenothrin, fipronil
35624                                                                                                               selamectin
35626                                                                                                         tylosin tartrate
35628                                                                                                               selamectin
35633                                                                                                 joint supplement (other)
35639                                                                                             ivermectin, pyrantel pamoate
35641                                                                                                               afoxolaner
35642                                                                                          ear cleaner (epi-otic advanced)
35643                                                                          betamethasone, clotrimazole, gentamicin sulfate
35645                                                                                                         pyrantel pamoate
35656                                                                                         propylene glycol, salicylic acid
35659                                                                                                         milbemycin oxime
35662                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
35664                                                                                                         milbemycin oxime
35665                                                                                                                sarolaner
35668                                                                                        betamethasone, gentamicin sulfate
35673                                                                                        betamethasone, gentamicin sulfate
35674                                                                          betamethasone, clotrimazole, gentamicin sulfate
35696                                                                                                                probiotic
35697                                                                                                               afoxolaner
35699                                                                                                               afoxolaner
35700                                                                                        betamethasone, gentamicin sulfate
35721                                                                                                 fipronil, (s)-methoprene
35722                                                                                                             multivitamin
35725                                                                                             ivermectin, pyrantel pamoate
35727                                                                                             ivermectin, pyrantel pamoate
35740                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35743                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35748                                                                                             ivermectin, pyrantel pamoate
35756                                                                                             ivermectin, pyrantel pamoate
35757                                                                                             ivermectin, pyrantel pamoate
35758                                                                                                               afoxolaner
35762                                                                                                  triamcinolone acetonide
35768                                                                                                 imidacloprid, permethrin
35770                                                                                               imidacloprid, pyriproxyfen
35771                                                                                             ivermectin, pyrantel pamoate
35772                                                                                                                  omega 3
35773                                                                                                 imidacloprid, permethrin
35774                                                                                             ivermectin, pyrantel pamoate
35775                                                                                                               ivermectin
35777                                                                                               imidacloprid, pyriproxyfen
35778                                                                                             ivermectin, pyrantel pamoate
35784                                                                                             ivermectin, pyrantel pamoate
35786                                                                                       fipronil, permethrin, pyriproxyfen
35791                                                                                                 fipronil, (s)-methoprene
35792                                                                                             ivermectin, pyrantel pamoate
35793                                                                                                                probiotic
35808                                                                                                                  rx clay
35809                                                                                       chlorhexidine gluconate, ophytrium
35810                                                                                                                probiotic
35812                                                                                               milbemycin oxime, spinosad
35820                                                                                                               ivermectin
35821                                                                                       fipronil, permethrin, pyriproxyfen
35831                                                                                                         milbemycin oxime
35835                                                                                                         milbemycin oxime
35850                                                                                             ivermectin, pyrantel pamoate
35853                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
35855                                                                                             ivermectin, pyrantel pamoate
35858                                                                                                     cefpodoxime proxetil
35859                                                                                        trimeprazine tartrate, prednisone
35903                                                                                                               epsom salt
35905                                                                                                             orbifloxacin
35907                                                                                                                firocoxib
35908                                                                                              lufenuron, milbemycin oxime
35931                                                                                             ivermectin, pyrantel pamoate
35954                                                                                             ivermectin, pyrantel pamoate
35955                                                                                             ivermectin, pyrantel pamoate
35963                                                                          betamethasone, clotrimazole, gentamicin sulfate
35965                                                                                        enrofloxacin, silver sulfadiazine
35969                                                                                                         phytosphingosine
35973                                                                                               milbemycin oxime, spinosad
35982                                                                                             ivermectin, pyrantel pamoate
35983                                                                                                               afoxolaner
36019                                                                                                               afoxolaner
36021                                                                                                               afoxolaner
36023                                                                                        betamethasone, gentamicin sulfate
36030                                                                                        betamethasone, gentamicin sulfate
36042                                                                                               milbemycin oxime, spinosad
36043                                                                                               milbemycin oxime, spinosad
36044                                                                                               milbemycin oxime, spinosad
36065                                                                                             ivermectin, pyrantel pamoate
36069                                                                                             ivermectin, pyrantel pamoate
36078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36081                                                                                                  ketoconazole, tris-edta
36082                                                                                                               ivermectin
36084                                                                                                               cetirizine
36108                                                                                                         milbemycin oxime
36110                                                                                               milbemycin oxime, spinosad
36112                                                                                                 joint supplement (other)
36113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36115                                                                                                 joint supplement (other)
36134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36137                                                                                                   unspecified antiseptic
36144                                                                                                 fipronil, (s)-methoprene
36145                                                                                                               ivermectin
36150                                                                                             ivermectin, pyrantel pamoate
36153                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36155                                                                                   fipronil, pyriproxyfen, (s)-methoprene
36156                                                                                             ivermectin, pyrantel pamoate
36159                                                                                                               afoxolaner
36171                                                                                                            metronidazole
36191                                                                                             ivermectin, pyrantel pamoate
36192                                                                                                               fluralaner
36198                                                                                                unspecified otic ear pack
36200                                                                                               unspecified ear medication
36201                                                                                                             ketoconazole
36202                                                                                            allergy immunotherapy - drops
36203                                                                                            allergy immunotherapy - drops
36205                                                                                            allergy immunotherapy - drops
36218                                                                                                         milbemycin oxime
36220                                                                                             ivermectin, pyrantel pamoate
36221                                                                                                               fluralaner
36222                                                                                            silver oxide, type i collagen
36223                                                                                                                probiotic
36225                                                                                             ivermectin, pyrantel pamoate
36227                                                                                                               afoxolaner
36228                                                                                                               afoxolaner
36229                                                                                             ivermectin, pyrantel pamoate
36231                                                                             florfenicol, mometasone furoate, terbinafine
36232                                                                                                               afoxolaner
36233                                                                                                               ivermectin
36235                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
36237                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36238                                                                                                                carprofen
36240                                                                                                         milbemycin oxime
36254                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36256                                                                          betamethasone, clotrimazole, gentamicin sulfate
36264                                                                                                         milbemycin oxime
36268                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36271                                                                                               milbemycin oxime, spinosad
36272                                                                                               milbemycin oxime, spinosad
36273                                                                                               milbemycin oxime, spinosad
36275                                                                                                               selamectin
36276                                                                              chlorhexidine gluconate, miconazole nitrate
36280                                                                                                               selamectin
36283                                                                                                         milbemycin oxime
36288                                                                                                         milbemycin oxime
36292                                                                                                 fipronil, (s)-methoprene
36293                                                                                                 fipronil, (s)-methoprene
36294                                                                                                         pyrantel pamoate
36295                                                                                                             fenbendazole
36296                                                                                                 fipronil, (s)-methoprene
36297                                                                                                         pyrantel pamoate
36298                                                                                                             fenbendazole
36299                                                                                                               ivermectin
36300                                                                                                 fipronil, (s)-methoprene
36301                                                                                                             fenbendazole
36302                                                                                                             fenbendazole
36303                                                                                                         pyrantel pamoate
36304                                                                                                               ivermectin
36305                                                                                                 fipronil, (s)-methoprene
36306                                                                                                             fenbendazole
36307                                                                                                         pyrantel pamoate
36308                                                                                                             fenbendazole
36309                                                                                                         pyrantel pamoate
36310                                                                                                         pyrantel pamoate
36311                                                                                                             fenbendazole
36322                                                                                                 fipronil, (s)-methoprene
36323                                                                                                         pyrantel pamoate
36324                                                                                                             fenbendazole
36325                                                                                                 fipronil, (s)-methoprene
36326                                                                                                         pyrantel pamoate
36327                                                                                                             fenbendazole
36328                                                                                                               ivermectin
36329                                                                                                 fipronil, (s)-methoprene
36330                                                                                                             fenbendazole
36331                                                                                                             fenbendazole
36332                                                                                                         pyrantel pamoate
36333                                                                                                 fipronil, (s)-methoprene
36334                                                                                                               ivermectin
36335                                                                                                             fenbendazole
36336                                                                                                         pyrantel pamoate
36337                                                                                                             fenbendazole
36338                                                                                                         pyrantel pamoate
36339                                                                                                             fenbendazole
36340                                                                                                         pyrantel pamoate
36357                                                                                                               cephalexin
36358                                                                                                 fipronil, (s)-methoprene
36359                                                                                                         pyrantel pamoate
36360                                                                                                             fenbendazole
36361                                                                                                 fipronil, (s)-methoprene
36362                                                                                                         pyrantel pamoate
36363                                                                                                             fenbendazole
36364                                                                                                               ivermectin
36365                                                                                                 fipronil, (s)-methoprene
36366                                                                                                             fenbendazole
36367                                                                                                             fenbendazole
36368                                                                                                         pyrantel pamoate
36369                                                                                                               ivermectin
36370                                                                                                 fipronil, (s)-methoprene
36371                                                                                                             fenbendazole
36372                                                                                                         pyrantel pamoate
36373                                                                                                             fenbendazole
36374                                                                                                         pyrantel pamoate
36376                                                                                                                 oxytocin
36377                                                                                                 fipronil, (s)-methoprene
36378                                                                                                         pyrantel pamoate
36379                                                                                                             fenbendazole
36380                                                                                                 fipronil, (s)-methoprene
36381                                                                                                             fenbendazole
36382                                                                                                         pyrantel pamoate
36383                                                                                                               ivermectin
36384                                                                                                 fipronil, (s)-methoprene
36385                                                                                                             fenbendazole
36397                                                                                                               prednisone
36398                                                                                                 fipronil, (s)-methoprene
36399                                                                                             ivermectin, pyrantel pamoate
36403                                                                                                 fipronil, (s)-methoprene
36404                                                                                                             fenbendazole
36405                                                                                             ivermectin, pyrantel pamoate
36406                                                                                                 fipronil, (s)-methoprene
36410                                                                                                                vitamin b
36427                                                                                               imidacloprid, pyriproxyfen
36429                                                                                             ivermectin, pyrantel pamoate
36430                                                                                               imidacloprid, pyriproxyfen
36438                                                                                               imidacloprid, pyriproxyfen
36439                                                                                             ivermectin, pyrantel pamoate
36440                                                                                        trimeprazine tartrate, prednisone
36443                                                                                             ivermectin, pyrantel pamoate
36444                                                                                               imidacloprid, pyriproxyfen
36448                                                                                               imidacloprid, pyriproxyfen
36451                                                                                           praziquantel, pyrantel pamoate
36460                                                                                              lufenuron, milbemycin oxime
36461                                                                                                               fluralaner
36464                                                                                        betamethasone, gentamicin sulfate
36474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36491                                                                                             ivermectin, pyrantel pamoate
36497                                                                                             ivermectin, pyrantel pamoate
36513                                                                                                             ketoconazole
36520                                                                                                             fenbendazole
36533                                                                              chlorhexidine gluconate, miconazole nitrate
36535                                                                                       chlorhexidine gluconate, ophytrium
36559                                                                                             ivermectin, pyrantel pamoate
36560                                                                                                 fipronil, (s)-methoprene
36562                                                                                             ivermectin, pyrantel pamoate
36568                                                                                              lufenuron, milbemycin oxime
36571                                                                             dexamethasone, neomycin sulfate, polymyxin b
36574                                                                           mometasone furoate, orbifloxacin, posaconazole
36579                                                                                                               selamectin
36595                                                                               ivermectin, praziquantel, pyrantel pamoate
36597                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36600                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36601                                                                               ivermectin, praziquantel, pyrantel pamoate
36602                                                                                                         milbemycin oxime
36605                                                                                                         milbemycin oxime
36606                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36607                                                                                                         milbemycin oxime
36608                                                                                                         milbemycin oxime
36616                                                                               ivermectin, praziquantel, pyrantel pamoate
36623                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36624                                                                                                  acetic acid, boric acid
36626                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36630                                                                                                         milbemycin oxime
36631                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36632                                                                                                         milbemycin oxime
36633                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36635                                                                                                         milbemycin oxime
36637                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36657                                                                                               milbemycin oxime, spinosad
36670                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36698                                                                                             ivermectin, pyrantel pamoate
36699                                                                                             ivermectin, pyrantel pamoate
36705                                                                                        betamethasone, gentamicin sulfate
36708                                                                                             ivermectin, pyrantel pamoate
36709                                                                              chlorhexidine gluconate, miconazole nitrate
36735                                                                                                                carprofen
36751                                                                                             ivermectin, pyrantel pamoate
36752                                                                                                 fipronil, (s)-methoprene
36753                                                                                                             fenbendazole
36772                                                                                        betamethasone, gentamicin sulfate
36778                                                                                                         milbemycin oxime
36816                                                                              rx diet - hypoallergenic hydrolyzed protein
36817                                                                               ivermectin, praziquantel, pyrantel pamoate
36818                                                                                  betamethasone, florfenicol, terbinafine
36819                                                                                                  ketoconazole, tris-edta
36824                                                                                             ivermectin, pyrantel pamoate
36833                                                                                              lufenuron, milbemycin oxime
36834                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36835                                                                                       chlorhexidine gluconate, ophytrium
36840                                                                                              lufenuron, milbemycin oxime
36842                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36846                                                                                              lufenuron, milbemycin oxime
36847                                                                                                               fluralaner
36848                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36849                                                                                                               afoxolaner
36850                                                                                              lufenuron, milbemycin oxime
36851                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36855                                                                                                                probiotic
36859                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36875                                                                                                             acepromazine
36876                                                                                                                 tramadol
36877                                                                                                                firocoxib
36878                                                                                    dinotefuran, permethrin, pyriproxyfen
36880                                                                                                             acepromazine
36881                                                                                             ivermectin, pyrantel pamoate
36882                                                                                                              clindamycin
36883                                                                                                               afoxolaner
36884                                                                                        betamethasone, gentamicin sulfate
36892                                                                                          ear cleaner (epi-otic advanced)
36893                                                                                                               afoxolaner
36894                                                                                             ivermectin, pyrantel pamoate
36900                                                                                             ivermectin, pyrantel pamoate
36901                                                                                                               afoxolaner
36911                                                                                              lufenuron, milbemycin oxime
36919                                                                                              lufenuron, milbemycin oxime
36920                                                                                                   cyphenothrin, fipronil
36921                                                                                                                probiotic
36925                                                                                              lufenuron, milbemycin oxime
36945                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36969                                                                                             ivermectin, pyrantel pamoate
36970                                                                                    dinotefuran, permethrin, pyriproxyfen
36982                                                                                               imidacloprid, pyriproxyfen
36983                                                                                                               ivermectin
36984                                                                                                                 spinosad
36985                                                                                                         milbemycin oxime
36994                                                                                                        hypochlorous acid
37007                                                                                              lufenuron, milbemycin oxime
37015                                                                               ivermectin, praziquantel, pyrantel pamoate
37017                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
37018                                                                                                         milbemycin oxime
37019                                                                                                 fipronil, (s)-methoprene
37020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
37021                                                                               ivermectin, praziquantel, pyrantel pamoate
37036                                                                                   dexamethasone, ketoconazole, tris-edta
37038                                                                                       amoxicillin, clavulanate potassium
37046                                                                                                               afoxolaner
37054                                                                                              lufenuron, milbemycin oxime
37055                                                                                             ivermectin, pyrantel pamoate
37056                                                                                             ivermectin, pyrantel pamoate
37057                                                                                             ivermectin, pyrantel pamoate
37061                                                                                                 flumethrin, imidacloprid
37063                                                                                                 flumethrin, imidacloprid
37069                                                                                             ivermectin, pyrantel pamoate
37070                                                                                               imidacloprid, pyriproxyfen
37071                                                                                              lufenuron, milbemycin oxime
37073                                                                           beclomethasone, clotrimazole, neomycin sulfate
37074                                                                                              lufenuron, milbemycin oxime
37075                                                                          betamethasone, clotrimazole, gentamicin sulfate
37076                                                                                               imidacloprid, pyriproxyfen
37077                                                                                               imidacloprid, pyriproxyfen
37078                                                                                              lufenuron, milbemycin oxime
37080                                                                                               imidacloprid, pyriproxyfen
37087                                                                                               imidacloprid, pyriproxyfen
37088                                                                                                         milbemycin oxime
37098                                                                                               imidacloprid, pyriproxyfen
37099                                                                                                         milbemycin oxime
37104                                                                                                                ofloxacin
37115                                                                           dexamethasone, neomycin sulfate, thiabendazole
37116                                                                                                 fipronil, (s)-methoprene
37117                                                                                                         liver supplement
37135                                                                              chlorhexidine gluconate, miconazole nitrate
37157                                                                                        betamethasone, gentamicin sulfate
37164                                                                          betamethasone, clotrimazole, gentamicin sulfate
37165                                                                               ivermectin, praziquantel, pyrantel pamoate
37168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37169                                                                                                  chlorhexidine gluconate
37179                                                                                             ivermectin, pyrantel pamoate
37193                                                                                             ivermectin, pyrantel pamoate
37194                                                                                                                 geraniol
37195                                                                                                               ivermectin
37197                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37200                                                                                             ivermectin, pyrantel pamoate
37201                                                                                                               afoxolaner
37202                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37219                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37221                                                                                                                trazodone
37259                                                                                                               cephalexin
37260                                                                           dexamethasone, neomycin sulfate, thiabendazole
37262                                                                                               imidacloprid, pyriproxyfen
37266                                                                                                         milbemycin oxime
37267                                                                                    dinotefuran, permethrin, pyriproxyfen
37270                                                                                    dinotefuran, permethrin, pyriproxyfen
37271                                                                                               imidacloprid, pyriproxyfen
37272                                                                                        trimeprazine tartrate, prednisone
37273                                                                           dexamethasone, neomycin sulfate, thiabendazole
37277                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
37278                                                                                                  chlorhexidine gluconate
37279                                                                              rx diet - hypoallergenic hydrolyzed protein
37302                                                                                             ivermectin, pyrantel pamoate
37303                                                                          betamethasone, clotrimazole, gentamicin sulfate
37309                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37316                                                                                                               ivermectin
37324                                                                                                                sarolaner
37325                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37326                                                                                                               moxidectin
37332                                                                                                          dexmedetomidine
37337                                                                                                               lokivetmab
37344                                                                                                 joint supplement (other)
37349                                                                                             ivermectin, pyrantel pamoate
37359                                                                                                         milbemycin oxime
37373                                                                                              lufenuron, milbemycin oxime
37374                                                                                                               afoxolaner
37375                                                                                             ivermectin, pyrantel pamoate
37376                                                                                                               afoxolaner
37377                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37385                                                                                             ivermectin, pyrantel pamoate
37386                                                                                                               afoxolaner
37387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37392                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
37396                                                                                                               ivermectin
37397                                                                                                               fluralaner
37434                                                                                   joint supplement (glucosamine hcl/msm)
37435                                                                                           polysulfated glycosaminoglycan
37439                                                                                                               ivermectin
37446                                                                                             ivermectin, pyrantel pamoate
37448                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
37449                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37451                                                                                                                mupirocin
37453                                                                                        betamethasone, gentamicin sulfate
37454                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37457                                                                              rx diet - hypoallergenic hydrolyzed protein
37463                                                                                    chlorhexidine gluconate, ketoconazole
37464                                                                                                  chlorhexidine gluconate
37465                                                                                        betamethasone, gentamicin sulfate
37467                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37468                                                                                lufenuron, milbemycin oxime, praziquantel
37469                                                                                                               fluralaner
37477                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37478                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37485                                                                                lufenuron, milbemycin oxime, praziquantel
37491                                                                                        betamethasone, gentamicin sulfate
37493                                                                                lufenuron, milbemycin oxime, praziquantel
37495                                                                                        betamethasone, gentamicin sulfate
37496                                                                                                       miconazole nitrate
37510                                                                                                               alprazolam
37526                                                                                                              minocycline
37527                                                                             dexamethasone, neomycin sulfate, polymyxin b
37533                                                                                                         phytosphingosine
37536                                                                                                  chlorhexidine gluconate
37540                                                                                             ivermectin, pyrantel pamoate
37545                                                                                             ivermectin, pyrantel pamoate
37546                                                                                                               fluralaner
37547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37552                                                                                             ivermectin, pyrantel pamoate
37568                                                                                              lufenuron, milbemycin oxime
37569                                                                                                 imidacloprid, permethrin
37571                                                                                              lufenuron, milbemycin oxime
37576                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37577                                                                                              lufenuron, milbemycin oxime
37578                                                                                               imidacloprid, pyriproxyfen
37579                                                                                               imidacloprid, pyriproxyfen
37580                                                                                                               ivermectin
37584                                                                                                                  omega 3
37585                                                                                                                probiotic
37586                                                                                       joint supplement (glucosamine hcl)
37597                                                                                               imidacloprid, pyriproxyfen
37598                                                                                                               ivermectin
37601                                                                                             ivermectin, pyrantel pamoate
37602                                                                                                               afoxolaner
37603                                                                                                               afoxolaner
37608                                                                                                               selamectin
37621                                                                                              lufenuron, milbemycin oxime
37622                                                                                              lufenuron, milbemycin oxime
37624                                                                                              lufenuron, milbemycin oxime
37627                                                                                             ivermectin, pyrantel pamoate
37628                                                                                             ivermectin, pyrantel pamoate
37629                                                                                             ivermectin, pyrantel pamoate
37630                                                                                             ivermectin, pyrantel pamoate
37639                                                                                                                probiotic
37648                                                                                    dinotefuran, permethrin, pyriproxyfen
37649                                                                                                                meloxicam
37651                                                                                                 flumethrin, imidacloprid
37655                                                                                                 flumethrin, imidacloprid
37657                                                                                                 flumethrin, imidacloprid
37662                                                                                                 flumethrin, imidacloprid
37664                                                                                                 flumethrin, imidacloprid
37669                                                                                       chlorhexidine gluconate, ophytrium
37670                                                                                         burow's solution, hydrocortisone
37675                                                                                       chlorhexidine gluconate, ophytrium
37691                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37696                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
37697                                                                                                                carprofen
37698                                                                                                              amoxicillin
37699                                                                                                               tobramycin
37704                                                                                              lufenuron, milbemycin oxime
37705                                                                                    dinotefuran, permethrin, pyriproxyfen
37709                                                                                                                  omega 3
37710                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37713                                                                                                                  omega 3
37714                                                                                                                probiotic
37717                                                                                                                  omega 3
37718                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37731                                                                                              lufenuron, milbemycin oxime
37738                                                                                              lufenuron, milbemycin oxime
37739                                                                                              lufenuron, milbemycin oxime
37740                                                                                                                 fipronil
37742                                                                                              lufenuron, milbemycin oxime
37771                                                                             dexamethasone, neomycin sulfate, polymyxin b
37785                                                                                                               afoxolaner
37786                                                                                             ivermectin, pyrantel pamoate
37797                                                                               ivermectin, praziquantel, pyrantel pamoate
37798                                                                               ivermectin, praziquantel, pyrantel pamoate
37805                                                                                           milbemycin oxime, praziquantel
37806                                                                                                               afoxolaner
37809                                                                                                              sevoflurane
37816                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37817                                                                                                                  omega 3
37820                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37821                                                                                    dinotefuran, permethrin, pyriproxyfen
37822                                                                                                                probiotic
37834                                                                                             ivermectin, pyrantel pamoate
37835                                                                                       fipronil, permethrin, pyriproxyfen
37837                                                                                             ivermectin, pyrantel pamoate
37838                                                                                             ivermectin, pyrantel pamoate
37839                                                                                                               fluralaner
37845                                                                                             ivermectin, pyrantel pamoate
37846                                                                                       fipronil, permethrin, pyriproxyfen
37847                                                                                             ivermectin, pyrantel pamoate
37848                                                                                                               fluralaner
37849                                                                                             ivermectin, pyrantel pamoate
37850                                                                                                               fluralaner
37851                                                                                                               fluralaner
37852                                                                                             ivermectin, pyrantel pamoate
37855                                                                                              lufenuron, milbemycin oxime
37858                                                                                lufenuron, milbemycin oxime, praziquantel
37865                                                                                                                 fipronil
37885                                                                                             ivermectin, pyrantel pamoate
37894                                                                                                               ivermectin
37895                                                                                                                sarolaner
37907                                                                                               milbemycin oxime, spinosad
37916                                                                                               milbemycin oxime, spinosad
37920                                                                                                 imidacloprid, permethrin
37929                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37930                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37933                                                                                             ivermectin, pyrantel pamoate
37934                                                                                                               afoxolaner
37935                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37936                                                                                             ivermectin, pyrantel pamoate
37937                                                                          betamethasone, clotrimazole, gentamicin sulfate
37941                                                                          betamethasone, clotrimazole, gentamicin sulfate
37942                                                                                                  ketoconazole, tris-edta
37944                                                                                                    mycophenolate mofetil
37976                                                                                              lufenuron, milbemycin oxime
37977                                                                                                   cyphenothrin, fipronil
37978                                                                                              lufenuron, milbemycin oxime
37979                                                                                        betamethasone, gentamicin sulfate
37980                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37984                                                                                              lufenuron, milbemycin oxime
37989                                                                                              lufenuron, milbemycin oxime
37990                                                                                        betamethasone, gentamicin sulfate
37992                                                                                              lufenuron, milbemycin oxime
37993                                                                                                               fluralaner
38018                                                                                               milbemycin oxime, spinosad
38036                                                                                                         milbemycin oxime
38041                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38046                                                                                                         milbemycin oxime
38048                                                                                       amoxicillin, clavulanate potassium
38050                                                                                                                lotilaner
38051                                                                                                         milbemycin oxime
38052                                                                                                                lotilaner
38056                                                                                                         tylosin tartrate
38070                                                                                             ivermectin, pyrantel pamoate
38071                                                                                               imidacloprid, pyriproxyfen
38072                                                                                                 flumethrin, imidacloprid
38074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38075                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38102                                                                               dextromethorphan hydrobromide, guaifenesin
38123                                                                                             ivermectin, pyrantel pamoate
38126                                                                                             ivermectin, pyrantel pamoate
38132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38134                                                                                                               cetirizine
38135                                                                                                       maropitant citrate
38136                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38141                                                                                                         milbemycin oxime
38142                                                                                                               afoxolaner
38151                                                                                                               afoxolaner
38152                                                                                                               afoxolaner
38156                                                                                                               afoxolaner
38165                                                                                             ivermectin, pyrantel pamoate
38166                                                                                                               afoxolaner
38177                                                                                               unspecified shampoo/mousse
38179                                                                                          ear cleaner (epi-otic advanced)
38181                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38182                                                                                                                  omega 3
38184                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38185                                                                             dexamethasone, neomycin sulfate, polymyxin b
38193                                                                                       fipronil, permethrin, pyriproxyfen
38204                                                                                                     digestive supplement
38211                                                                                      ear cleaner (zymox), hydrocortisone
38216                                                                                                                   arnica
38217                                                                                             ivermectin, pyrantel pamoate
38219                                                                                                                  omega 3
38220                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38240                                                                                    dinotefuran, permethrin, pyriproxyfen
38256                                                                                                         milbemycin oxime
38257                                                                                           milbemycin oxime, praziquantel
38259                                                                                                         milbemycin oxime
38262                                                                                                               afoxolaner
38268                                                                          betamethasone, clotrimazole, gentamicin sulfate
38273                                                                          betamethasone, clotrimazole, gentamicin sulfate
38284                                                                                             ivermectin, pyrantel pamoate
38287                                                                                                                probiotic
38288                                                                                           milbemycin oxime, praziquantel
38289                                                                                                               fluralaner
38293                                                                                              lufenuron, milbemycin oxime
38294                                                                           dexamethasone, neomycin sulfate, thiabendazole
38301                                                                                               imidacloprid, pyriproxyfen
38305                                                                                               imidacloprid, pyriproxyfen
38306                                                                                             ivermectin, pyrantel pamoate
38324                                                                                                  ketoconazole, tris-edta
38326                                                                                                         phytosphingosine
38330                                                                                             ivermectin, pyrantel pamoate
38339                                                                                                               fluralaner
38341                                                                                        betamethasone, gentamicin sulfate
38342                                                                                              lufenuron, milbemycin oxime
38350                                                                                  betamethasone, florfenicol, terbinafine
38351                                                                                                                sarolaner
38352                                                                                             ivermectin, pyrantel pamoate
38353                                                                                             ivermectin, pyrantel pamoate
38361                                                                             dexamethasone, neomycin sulfate, polymyxin b
38365                                                                                             ivermectin, pyrantel pamoate
38366                                                                                                 fipronil, (s)-methoprene
38367                                                                                               imidacloprid, pyriproxyfen
38369                                                                                               imidacloprid, pyriproxyfen
38370                                                                                                               ivermectin
38371                                                                                                             fenbendazole
38372                                                                          betamethasone, clotrimazole, gentamicin sulfate
38373                                                                                                               lokivetmab
38377                                                                             florfenicol, mometasone furoate, terbinafine
38378                                                                           mometasone furoate, orbifloxacin, posaconazole
38386                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38387                                                                                     burow's solution, miconazole nitrate
38388                                                                                                               lokivetmab
38396                                                                                             ivermectin, pyrantel pamoate
38397                                                                                                               afoxolaner
38399                                                                                             ivermectin, pyrantel pamoate
38406                                                                                                                probiotic
38420                                                                                              lufenuron, milbemycin oxime
38422                                                                                              lufenuron, milbemycin oxime
38423                                                                                              lufenuron, milbemycin oxime
38427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38431                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38438                                                                                           milbemycin oxime, praziquantel
38439                                                                                                               fluralaner
38442                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38461                                                                                    dinotefuran, permethrin, pyriproxyfen
38462                                                                                             ivermectin, pyrantel pamoate
38464                                                                                                         milbemycin oxime
38465                                                                                    dinotefuran, permethrin, pyriproxyfen
38466                                                                                                                sarolaner
38470                                                                                                                sarolaner
38471                                                                                                         milbemycin oxime
38472                                                                                           milbemycin oxime, praziquantel
38473                                                                                                                sarolaner
38499                                                                               dextromethorphan hydrobromide, guaifenesin
38504                                                                                    dinotefuran, permethrin, pyriproxyfen
38505                                                                                             ivermectin, pyrantel pamoate
38507                                                                                                         milbemycin oxime
38508                                                                                    dinotefuran, permethrin, pyriproxyfen
38509                                                                                                                sarolaner
38510                                                                                                         milbemycin oxime
38511                                                                                           milbemycin oxime, praziquantel
38512                                                                                                                sarolaner
38522                                                                                 febantel, praziquantel, pyrantel pamoate
38527                                                                                             ivermectin, pyrantel pamoate
38528                                                                                   fipronil, pyriproxyfen, (s)-methoprene
38529                                                                           dexamethasone, neomycin sulfate, thiabendazole
38531                                                                                                  ketoconazole, tris-edta
38532                                                                                             ivermectin, pyrantel pamoate
38533                                                                                                 fipronil, (s)-methoprene
38534                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
38535                                                                                                                olive oil
38536                                                                               toothpaste/dental health solution or chews
38544                                                                           dexamethasone, neomycin sulfate, thiabendazole
38550                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38551                                                                                                                  omega 3
38557                                                                                        betamethasone, gentamicin sulfate
38567                                                                                                               ivermectin
38568                                                                                             ivermectin, pyrantel pamoate
38569                                                                                                               ivermectin
38570                                                                                                   unspecified medication
38588                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38602                                                                                              lufenuron, milbemycin oxime
38605                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38606                                                                                              lufenuron, milbemycin oxime
38607                                                                                       chlorhexidine gluconate, tris-edta
38610                                                                                              lufenuron, milbemycin oxime
38611                                                                                        betamethasone, gentamicin sulfate
38618                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38626                                                                                              lufenuron, milbemycin oxime
38630                                                                                                     digestive supplement
38636                                                                                                               ivermectin
38637                                                                                                 fipronil, (s)-methoprene
38638                                                                           mometasone furoate, orbifloxacin, posaconazole
38643                                                                                             ivermectin, pyrantel pamoate
38647                                                                                                       maropitant citrate
38655                                                                                                      unspecified rx diet
38656                                                                                                 fipronil, (s)-methoprene
38665                                                                                                                vitamin b
38691                                                                                                                probiotic
38716                                                                          betamethasone, clotrimazole, gentamicin sulfate
38722                                                                          betamethasone, clotrimazole, gentamicin sulfate
38723                                                                                       chlorhexidine gluconate, ophytrium
38754                                                                                                            metronidazole
38772                                                                                                             ketoconazole
38773                                                                                                               fluralaner
38775                                                                                                  unspecified ear cleaner
38776                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38779                                                                                                               fluralaner
38780                                                                                        betamethasone, gentamicin sulfate
38787                                                                                                                probiotic
38789                                                                                                             multivitamin
38796                                                                                                                probiotic
38802                                                                                                                probiotic
38809                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38810                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
38816                                                                                                                probiotic
38820                                                                                              lufenuron, milbemycin oxime
38821                                                                                                               fluralaner
38828                                                                                   chlorhexidine gluconate, dexamethasone
38839                                                                                                       miconazole nitrate
38841                                                                                                         phytosphingosine
38843                                                                             florfenicol, mometasone furoate, terbinafine
38845                                                                                                         tylosin tartrate
38847                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38850                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
38851                                                                                                                  taurine
38854                                                                             florfenicol, mometasone furoate, terbinafine
38855                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38861                                                                             florfenicol, mometasone furoate, terbinafine
38864                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38865                                                                                                  ketoconazole, tris-edta
38868                                                                     vitamin b, vitamin b complex, vitamin b12, vitamin e
38871                                                                                                         tylosin tartrate
38890                                                                                             ivermectin, pyrantel pamoate
38891                                                                                                               afoxolaner
38892                                                                                             ivermectin, pyrantel pamoate
38896                                                                                             ivermectin, pyrantel pamoate
38902                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38924                                                                               dextromethorphan hydrobromide, guaifenesin
38925                                                                                               imidacloprid, pyriproxyfen
38926                                                                                lufenuron, milbemycin oxime, praziquantel
38930                                                                                              lufenuron, milbemycin oxime
38931                                                                                                 flumethrin, imidacloprid
38940                                                                                               milbemycin oxime, spinosad
38941                                                                                                               afoxolaner
38945                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38946                                                                                lufenuron, milbemycin oxime, praziquantel
38950                                                                                lufenuron, milbemycin oxime, praziquantel
38951                                                                                                               afoxolaner
38952                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38956                                                                                       chlorhexidine gluconate, ophytrium
38963                                                                                                         milbemycin oxime
38964                                                                                                                sarolaner
38970                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38971                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38974                                                                            ear cleaner (epi-otic advanced), ketoconazole
38976                                                                                                            yunnan baiyao
38978                                                                                                 fipronil, (s)-methoprene
38997                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39004                                                                                                               fluralaner
39005                                                                                                         milbemycin oxime
39006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39035                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39073                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
39083                                                                                lufenuron, milbemycin oxime, praziquantel
39099                                                                                             ivermectin, pyrantel pamoate
39117                                                                                               milbemycin oxime, spinosad
39120                                                                                             ivermectin, pyrantel pamoate
39121                                                                                                               ivermectin
39122                                                                                               imidacloprid, pyriproxyfen
39123                                                                                                               ivermectin
39125                                                                                           polysulfated glycosaminoglycan
39127                                                                             florfenicol, mometasone furoate, terbinafine
39128                                                                                        enrofloxacin, silver sulfadiazine
39158                                                                                           milbemycin oxime, praziquantel
39165                                                                                       amoxicillin, clavulanate potassium
39167                                                                                   joint supplement (glucosamine hcl/msm)
39171                                                                                    chlorhexidine gluconate, ketoconazole
39176                                                                                                               ivermectin
39181                                                                                    chlorhexidine gluconate, ketoconazole
39182                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
39188                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39198                                                                                        betamethasone, gentamicin sulfate
39201                                                                             florfenicol, mometasone furoate, terbinafine
39202                                                                                                  ketoconazole, tris-edta
39207                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39209                                                                                                 fipronil, (s)-methoprene
39210                                                                                                 fipronil, (s)-methoprene
39211                                                                                                 fipronil, (s)-methoprene
39212                                                                                                 fipronil, (s)-methoprene
39218                                                                                                 fipronil, (s)-methoprene
39258                                                                                                                probiotic
39259                                                                                                               ivermectin
39260                                                                                                               fluralaner
39261                                                                                                         tylosin tartrate
39262                                                                                             ivermectin, pyrantel pamoate
39273                                                                                             ivermectin, pyrantel pamoate
39316                                                                                               imidacloprid, pyriproxyfen
39325                                                                                                         milbemycin oxime
39326                                                                                                 fipronil, (s)-methoprene
39329                                                                                                         milbemycin oxime
39330                                                                                                                sarolaner
39331                                                                                                         milbemycin oxime
39332                                                                                                                sarolaner
39338                                                                                             ivermectin, pyrantel pamoate
39339                                                                                                 flumethrin, imidacloprid
39340                                                                                             ivermectin, pyrantel pamoate
39388                                                                                             ivermectin, pyrantel pamoate
39392                                                                             dexamethasone, neomycin sulfate, polymyxin b
39415                                                                                      ear cleaner (zymox), hydrocortisone
39423                                                                                                                probiotic
39425                                                                                             silver sulfadiazine, insulin
39433                                                                                                  acetic acid, boric acid
39434                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39435                                                                                                                carvacrol
39438                                                                                             ivermectin, pyrantel pamoate
39440                                                                                             ivermectin, pyrantel pamoate
39443                                                                                             ivermectin, pyrantel pamoate
39444                                                                                             ivermectin, pyrantel pamoate
39445                                                                                                 fipronil, (s)-methoprene
39446                                                                                                 fipronil, (s)-methoprene
39447                                                                                             ivermectin, pyrantel pamoate
39450                                                                                                 fipronil, (s)-methoprene
39451                                                                                             ivermectin, pyrantel pamoate
39453                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39486                                                                                               imidacloprid, pyriproxyfen
39495                                                                                                 fipronil, (s)-methoprene
39496                                                                                             ivermectin, pyrantel pamoate
39511                                                                                                   cyphenothrin, fipronil
39513                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39516                                                                                                               ivermectin
39519                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39525                                                                                                               selamectin
39526                                                                                              lufenuron, milbemycin oxime
39528                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39531                                                                                 febantel, praziquantel, pyrantel pamoate
39534                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39536                                                                                                                probiotic
39539                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39541                                                                                                                  menthol
39542                                                                                                                mupirocin
39543                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39546                                                                                                               selamectin
39548                                                                                                                sarolaner
39566                                                                                                                probiotic
39567                                                                                                 joint supplement (other)
39573                                                                                        betamethasone, gentamicin sulfate
39579                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39581                                                                                                               ivermectin
39582                                                                                                               ivermectin
39586                                                                                             ivermectin, pyrantel pamoate
39591                                                                                                   unspecified medication
39599                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39607                                                                               dextromethorphan hydrobromide, guaifenesin
39609                                                                                             ivermectin, pyrantel pamoate
39617                                                                                                         pyrantel pamoate
39618                                                                                                               moxidectin
39635                                                                                               milbemycin oxime, spinosad
39637                                                                                               milbemycin oxime, spinosad
39639                                                                                         phytosphingosine, salicylic acid
39651                                                                                        betamethasone, gentamicin sulfate
39705                                                                                                               fluralaner
39706                                                                                             ivermectin, pyrantel pamoate
39707                                                                                                              oclacitinib
39714                                                                                                     digestive supplement
39715                                                                                                                probiotic
39737                                                                                       joint supplement (glucosamine hcl)
39744                                                                                               milbemycin oxime, spinosad
39745                                                                                       fipronil, permethrin, pyriproxyfen
39750                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39754                                                                                              lufenuron, milbemycin oxime
39755                                                                                  betamethasone, florfenicol, terbinafine
39756                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39759                                                                                              lufenuron, milbemycin oxime
39760                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39763                                                                                              lufenuron, milbemycin oxime
39764                                                                                              lufenuron, milbemycin oxime
39776                                                                                                                  omega 3
39777                                                                                       joint supplement (glucosamine hcl)
39778                                                                                                                     kelp
39786                                                                                                             multivitamin
39787                                                                                    dinotefuran, permethrin, pyriproxyfen
39788                                                                                               milbemycin oxime, spinosad
39795                                                                                                               afoxolaner
39796                                                                                             ivermectin, pyrantel pamoate
39833                                                                                              lufenuron, milbemycin oxime
39849                                                                                              lufenuron, milbemycin oxime
39856                                                                                              lufenuron, milbemycin oxime
39860                                                                                             ivermectin, pyrantel pamoate
39871                                                                                             ivermectin, pyrantel pamoate
39875                                                                                             ivermectin, pyrantel pamoate
39877                                                                                             ivermectin, pyrantel pamoate
39881                                                                                                             fenbendazole
39909                                                                                               milbemycin oxime, spinosad
39916                                                                             dexamethasone, neomycin sulfate, polymyxin b
39917                                                                                                               tobramycin
39918                                                                                                         atropine sulfate
39919                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39948                                                                                             ivermectin, pyrantel pamoate
39949                                                                                                               afoxolaner
39958                                                                                                               fluralaner
39973                                                                                           milbemycin oxime, praziquantel
39974                                                                                                   benzocaine, resorcinol
39975                                                                                         phytosphingosine, salicylic acid
39980                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39981                                                                                       chlorhexidine gluconate, ophytrium
39982                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39987                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39988                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
40013                                                                                                             imidacloprid
40021                                                                                                   indoxacarb, permethrin
40023                                                                                                               afoxolaner
40024                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40038                                                                                                               ampicillin
40043                                                                                    dinotefuran, permethrin, pyriproxyfen
40052                                                                                             ivermectin, pyrantel pamoate
40092                                                                                                                 fipronil
40093                                                                                           milbemycin oxime, praziquantel
40102                                                                                                                probiotic
40108                                                                                             ivermectin, pyrantel pamoate
40109                                                                                                 fipronil, (s)-methoprene
40115                                                                                                             fenbendazole
40117                                                                                              lufenuron, milbemycin oxime
40121                                                                                             ivermectin, pyrantel pamoate
40123                                                                                                                probiotic
40124                                                                                             ivermectin, pyrantel pamoate
40125                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40133                                                                                lufenuron, milbemycin oxime, praziquantel
40134                                                                                lufenuron, milbemycin oxime, praziquantel
40138                                                                                                         viola clear fire
40141                                                                        grapefruit seed extract, lavender oil, noni fruit
40142                                                                                             ivermectin, pyrantel pamoate
40143                                                                             castor oil, cinnamon, lemongrass oil, sesame
40144                                                                                             ivermectin, pyrantel pamoate
40149                                                                                             ivermectin, pyrantel pamoate
40154                                                                                             ivermectin, pyrantel pamoate
40164                                                                                          ear cleaner (epi-otic advanced)
40165                                                                                             ivermectin, pyrantel pamoate
40180                                                                                                               ivermectin
40186                                                                                                         milbemycin oxime
40194                                                                                                               ivermectin
40196                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40206                                                                                               milbemycin oxime, spinosad
40209                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40214                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40216                                                                                                         milbemycin oxime
40217                                                                                                               afoxolaner
40218                                                                                                                sarolaner
40221                                                                                                         milbemycin oxime
40222                                                                                                               afoxolaner
40223                                                                                                                sarolaner
40224                                                                                                               fluralaner
40244                                                                                                 fipronil, (s)-methoprene
40290                                                                                             ivermectin, pyrantel pamoate
40296                                                                                                                probiotic
40297                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
40298                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40299                                                                                   dexamethasone, ketoconazole, tris-edta
40302                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40312                                                                                                                meloxicam
40317                                                                                  betamethasone, florfenicol, terbinafine
40331                                                                                                         milbemycin oxime
40343                                                                                                  acetic acid, boric acid
40390                                                                                                         milbemycin oxime
40391                                                                                                         milbemycin oxime
40392                                                                                                         milbemycin oxime
40394                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40403                                                                                                  ketoconazole, tris-edta
40406                                                                                                 homatropine, hydrocodone
40407                                                                                             ivermectin, pyrantel pamoate
40417                                                                                                               afoxolaner
40418                                                                                                               ivermectin
40422                                                                                                               afoxolaner
40425                                                                                                                sarolaner
40446                                                                                       amoxicillin, clavulanate potassium
40447                                                                          betamethasone, clotrimazole, gentamicin sulfate
40451                                                                                                               ivermectin
40454                                                                                       amoxicillin, clavulanate potassium
40464                                                                               dextromethorphan hydrobromide, guaifenesin
40468                                                                                                               afoxolaner
40472                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40483                                                                                             ivermectin, pyrantel pamoate
40484                                                                                                               afoxolaner
40486                                                                                             ivermectin, pyrantel pamoate
40487                                                                                                               afoxolaner
40488                                                                                                 imidacloprid, permethrin
40489                                                                                               imidacloprid, pyriproxyfen
40494                                                                                                                carprofen
40503                                                                                                         milbemycin oxime
40504                                                                                                     fipronil, permethrin
40508                                                                                                               selamectin
40511                                                                                                             praziquantel
40519                                                                                              lufenuron, milbemycin oxime
40521                                                                                                                 fipronil
40535                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40541                                                                                                               ivermectin
40542                                                                                                 fipronil, (s)-methoprene
40568                                                                                             ivermectin, pyrantel pamoate
40571                                                                             dexamethasone, neomycin sulfate, polymyxin b
40572                                                                                                     prebiotic, probiotic
40573                                                                                             ivermectin, pyrantel pamoate
40574                                                                                                               afoxolaner
40579                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40580                                                                                                              amoxicillin
40581                                                                                           sulfamethoxazole, trimethoprim
40582                                                                             dexamethasone, neomycin sulfate, polymyxin b
40583                                                                                                         pyrantel pamoate
40595                                                                                        betamethasone, gentamicin sulfate
40600                                                                                              lufenuron, milbemycin oxime
40601                                                                                    dinotefuran, permethrin, pyriproxyfen
40603                                                                                                  chlorhexidine gluconate
40604                                                                                                     digestive supplement
40606                                                                                                  ketoconazole, tris-edta
40607                                                                                               unspecified shampoo/mousse
40611                                                                                              lufenuron, milbemycin oxime
40615                                                                                                               lokivetmab
40616                                                                                    dinotefuran, permethrin, pyriproxyfen
40617                                                                                              lufenuron, milbemycin oxime
40618                                                                                               unspecified shampoo/mousse
40619                                                                                                      ear cleaner (zymox)
40620                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40634                                                                             dexamethasone, neomycin sulfate, polymyxin b
40636                                                                                                             fenbendazole
40637                                                                                                                probiotic
40644                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40653                                                                                                                 fipronil
40654                                                                               ivermectin, praziquantel, pyrantel pamoate
40655                                                                                           milbemycin oxime, praziquantel
40656                                                                                                         milbemycin oxime
40684                                                                                lufenuron, milbemycin oxime, praziquantel
40686                                                                                             ivermectin, pyrantel pamoate
40687                                                                                                   indoxacarb, permethrin
40688                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40689                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40690                                                                                             ivermectin, pyrantel pamoate
40691                                                                                                               indoxacarb
40693                                                                                        trimeprazine tartrate, prednisone
40695                                                                                             ivermectin, pyrantel pamoate
40696                                                                                                               afoxolaner
40699                                                                                                              doxycycline
40700                                                                                             ivermectin, pyrantel pamoate
40701                                                                                                                sarolaner
40718                                                                          betamethasone, clotrimazole, gentamicin sulfate
40719                                                                                             ivermectin, pyrantel pamoate
40721                                                                                             ivermectin, pyrantel pamoate
40722                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40723                                                                          betamethasone, clotrimazole, gentamicin sulfate
40724                                                                                        enrofloxacin, silver sulfadiazine
40725                                                                                             ivermectin, pyrantel pamoate
40726                                                                                                       gentamicin sulfate
40727                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40744                                                                                              lufenuron, milbemycin oxime
40745                                                                                                  triamcinolone acetonide
40747                                                                                        trimeprazine tartrate, prednisone
40748                                                                                       chlorhexidine gluconate, ophytrium
40749                                                                                                               fluralaner
40750                                                                                              lufenuron, milbemycin oxime
40751                                                                                              lufenuron, milbemycin oxime
40754                                                                                              lufenuron, milbemycin oxime
40755                                                                                                               fluralaner
40756                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40758                                                                           mometasone furoate, orbifloxacin, posaconazole
40760                                                                                              lufenuron, milbemycin oxime
40775                                                                                             ivermectin, pyrantel pamoate
40776                                                                                                         milbemycin oxime
40781                                                                                                         milbemycin oxime
40783                                                                                                         milbemycin oxime
40794                                                                             dexamethasone, neomycin sulfate, polymyxin b
40796                                                                                               milbemycin oxime, spinosad
40799                                                                                             ivermectin, pyrantel pamoate
40800                                                                                             ivermectin, pyrantel pamoate
40801                                                                                                                sarolaner
40810                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40823                                                                                             ivermectin, pyrantel pamoate
40824                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40825                                                                                    dinotefuran, permethrin, pyriproxyfen
40827                                                                                                               fluralaner
40828                                                                                             ivermectin, pyrantel pamoate
40829                                                                                                               fluralaner
40833                                                                                             ivermectin, pyrantel pamoate
40834                                                                                                                  omega 3
40838                                                                                        betamethasone, gentamicin sulfate
40839                                                                                                               lokivetmab
40840                                                                                                               lokivetmab
40843                                                                                        betamethasone, gentamicin sulfate
40846                                                                                                               fluralaner
40848                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
40866                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40868                                                                                             ivermectin, pyrantel pamoate
40870                                                                                             ivermectin, pyrantel pamoate
40873                                                                                                                probiotic
40875                                                                                                                probiotic
40879                                                                                             ivermectin, pyrantel pamoate
40895                                                                                                            yunnan baiyao
40897                                                                                              lufenuron, milbemycin oxime
40899                                                                                              lufenuron, milbemycin oxime
40900                                                                                              lufenuron, milbemycin oxime
40902                                                                                              lufenuron, milbemycin oxime
40905                                                                                                         milbemycin oxime
40919                                                                                                                  omega 3
40943                                                                                                        vision supplement
40958                                                                                                             fenbendazole
40959                                                                                                         sulfadimethoxine
40960                                                                                                            metronidazole
40961                                                                                                               sucralfate
40962                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40965                                                                                                         milbemycin oxime
40966                                                                                                               afoxolaner
40967                                                                                                         milbemycin oxime
40968                                                                                                               afoxolaner
40969                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40970                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
40971                                                                                                         milbemycin oxime
40972                                                                                                               afoxolaner
40974                                                                                           milbemycin oxime, praziquantel
40984                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40987                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40990                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40992                                                                                                               ivermectin
40993                                                                                    dinotefuran, permethrin, pyriproxyfen
40994                                                                                          ear cleaner (epi-otic advanced)
40997                                                                                                         milbemycin oxime
40998                                                                                    dinotefuran, permethrin, pyriproxyfen
41003                                                                                                         tylosin tartrate
41004                                                                                                         milbemycin oxime
41005                                                                                    dinotefuran, permethrin, pyriproxyfen
41006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41007                                                                                                         tylosin tartrate
41009                                                                                 febantel, praziquantel, pyrantel pamoate
41010                                                                                    dinotefuran, permethrin, pyriproxyfen
41011                                                                                                         milbemycin oxime
41014                                                                                                         tylosin tartrate
41015                                                                                                         milbemycin oxime
41016                                                                                    dinotefuran, permethrin, pyriproxyfen
41018                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
41020                                                                                                  acetic acid, boric acid
41021                                                                                                         milbemycin oxime
41022                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41023                                                                                    dinotefuran, permethrin, pyriproxyfen
41024                                                                                                                  omega 3
41025                                                                                                   bupivacaine, lidocaine
41057                                                                               dimethyl sulfoxide, fluocinolone acetonide
41068                                                                                    dinotefuran, permethrin, pyriproxyfen
41069                                                                                             ivermectin, pyrantel pamoate
41084                                                                                                                meloxicam
41087                                                                                                         milbemycin oxime
41088                                                                                    dinotefuran, permethrin, pyriproxyfen
41089                                                                                                               fluralaner
41090                                                                                                 skin and coat supplement
41091                                                                          betamethasone, clotrimazole, gentamicin sulfate
41094                                                                                                         milbemycin oxime
41095                                                                                                               fluralaner
41096                                                                                    dinotefuran, permethrin, pyriproxyfen
41097                                                                          betamethasone, clotrimazole, gentamicin sulfate
41098                                                                                    dinotefuran, permethrin, pyriproxyfen
41099                                                                                                               fluralaner
41101                                                                          betamethasone, clotrimazole, gentamicin sulfate
41102                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41103                                                                                                                meloxicam
41104                                                                                                               omeprazole
41121                                                                                               milbemycin oxime, spinosad
41125                                                                                             ivermectin, pyrantel pamoate
41129                                                                                                               ivermectin
41130                                                                                                               afoxolaner
41131                                                                                                         milbemycin oxime
41132                                                                                                               afoxolaner
41133                                                                                                         milbemycin oxime
41134                                                                                                               afoxolaner
41137                                                                                        betamethasone, gentamicin sulfate
41139                                                                                        enrofloxacin, silver sulfadiazine
41147                                                                                        enrofloxacin, silver sulfadiazine
41151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41152                                                                                      ear cleaner (zymox), hydrocortisone
41170                                                                             dexamethasone, neomycin sulfate, polymyxin b
41198                                                                                             ivermectin, pyrantel pamoate
41199                                                                                             ivermectin, pyrantel pamoate
41200                                                                                             ivermectin, pyrantel pamoate
41201                                                                                             ivermectin, pyrantel pamoate
41203                                                                                             ivermectin, pyrantel pamoate
41204                                                                                               imidacloprid, pyriproxyfen
41206                                                                                                 fipronil, (s)-methoprene
41207                                                                                             ivermectin, pyrantel pamoate
41208                                                                                                               afoxolaner
41209                                                                                             ivermectin, pyrantel pamoate
41210                                                                                                               afoxolaner
41216                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41217                                                                                               milbemycin oxime, spinosad
41219                                                                                              lufenuron, milbemycin oxime
41220                                                                                              lufenuron, milbemycin oxime
41221                                                                                              lufenuron, milbemycin oxime
41222                                                                                                         milbemycin oxime
41223                                                                                                         milbemycin oxime
41224                                                                                                               fluralaner
41240                                                                                               imidacloprid, pyriproxyfen
41241                                                                                             ivermectin, pyrantel pamoate
41242                                                                                                 imidacloprid, permethrin
41246                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41250                                                                                                 imidacloprid, permethrin
41254                                                                                             ivermectin, pyrantel pamoate
41260                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
41267                                                                                             ivermectin, pyrantel pamoate
41278                                                                                        betamethasone, gentamicin sulfate
41279                                                                                                               afoxolaner
41281                                                                                                 fipronil, (s)-methoprene
41283                                                                                              lufenuron, milbemycin oxime
41313                                                                                    dinotefuran, permethrin, pyriproxyfen
41314                                                                                             ivermectin, pyrantel pamoate
41315                                                                                               imidacloprid, pyriproxyfen
41316                                                                                             ivermectin, pyrantel pamoate
41318                                                                                               imidacloprid, pyriproxyfen
41319                                                                                                         milbemycin oxime
41320                                                                                           milbemycin oxime, praziquantel
41325                                                                                              lufenuron, milbemycin oxime
41332                                                                                              lufenuron, milbemycin oxime
41335                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41336                                                                                        betamethasone, gentamicin sulfate
41340                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41360                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41371                                                                                                                 fipronil
41373                                                                                lufenuron, milbemycin oxime, praziquantel
41374                                                                                                               fluralaner
41376                                                                                lufenuron, milbemycin oxime, praziquantel
41377                                                                                lufenuron, milbemycin oxime, praziquantel
41378                                                                                                               fluralaner
41381                                                                                                                meloxicam
41384                                                                                              lufenuron, milbemycin oxime
41385                                                                                                               fluralaner
41386                                                                                              lufenuron, milbemycin oxime
41387                                                                                                               fluralaner
41388                                                                                          ear cleaner (epi-otic advanced)
41396                                                                           dexamethasone, neomycin sulfate, thiabendazole
41398                                                                                                   unspecified medication
41399                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41400                                                                                                  triamcinolone acetonide
41407                                                                                                               afoxolaner
41413                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41417                                                                                             ivermectin, pyrantel pamoate
41418                                                                                   cyphenothrin, fipronil, (s)-methoprene
41420                                                                                                               ivermectin
41421                                                                                                               ivermectin
41422                                                                                                               ivermectin
41424                                                                                                               fluralaner
41425                                                                                                               fluralaner
41430                                                                                               milbemycin oxime, spinosad
41431                                                                                               milbemycin oxime, spinosad
41432                                                                                               milbemycin oxime, spinosad
41433                                                                           mometasone furoate, orbifloxacin, posaconazole
41435                                                                                               milbemycin oxime, spinosad
41442                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41443                                                                                               milbemycin oxime, spinosad
41444                                                                                               milbemycin oxime, spinosad
41446                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41447                                                                                               milbemycin oxime, spinosad
41451                                                                                               milbemycin oxime, spinosad
41464                                                                                                       miconazole nitrate
41466                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41470                                                                                        allergy immunotherapy - injection
41497                                                                                                               isoflurane
41500                                                                             florfenicol, mometasone furoate, terbinafine
41502                                                                             florfenicol, mometasone furoate, terbinafine
41505                                                                                                               isoflurane
41525                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41531                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41533                                                                                                               gabapentin
41557                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41572                                                                                             ivermectin, pyrantel pamoate
41573                                                                                                               afoxolaner
41581                                                                                             ivermectin, pyrantel pamoate
41612                                                                                                               cephalexin
41615                                                                                             ivermectin, pyrantel pamoate
41617                                                                                                         milbemycin oxime
41621                                                                                                               ampicillin
41629                                                                                                               isoflurane
41632                                                                                                 imidacloprid, moxidectin
41633                                                                                             ivermectin, pyrantel pamoate
41636                                                                                             ivermectin, pyrantel pamoate
41637                                                                                                               afoxolaner
41638                                                                                             ivermectin, pyrantel pamoate
41639                                                                                 febantel, praziquantel, pyrantel pamoate
41640                                                                                             ivermectin, pyrantel pamoate
41641                                                                                             ivermectin, pyrantel pamoate
41653                                                                                              lufenuron, milbemycin oxime
41655                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41674                                                                                             ivermectin, pyrantel pamoate
41724                                                                                                   unspecified medication
41725                                                                                                 fipronil, (s)-methoprene
41726                                                                                                               ivermectin
41727                                                                                                         milbemycin oxime
41728                                                                                   joint supplement (glucosamine hcl/msm)
41729                                                                                                             multivitamin
41731                                                                                                 fipronil, (s)-methoprene
41737                                                                                                 fipronil, (s)-methoprene
41738                                                                                                               ivermectin
41739                                                                                   joint supplement (glucosamine hcl/msm)
41740                                                                                                             multivitamin
41743                                                                                           sulfamethoxazole, trimethoprim
41746                                                                                             ivermectin, pyrantel pamoate
41747                                                                                                                  omega 3
41748                                                                                                                vitamin c
41749                                                                                       joint supplement (glucosamine hcl)
41750                                                                                                                vitamin e
41751                                                                                                 urinary tract supplement
41752                                                                                   joint supplement (glucosamine hcl/msm)
41753                                                                                   joint supplement (glucosamine hcl/msm)
41754                                                                                                 skin and coat supplement
41756                                                                                       amoxicillin, clavulanate potassium
41759                                                                                                         milbemycin oxime
41774                                                                                              lufenuron, milbemycin oxime
41778                                                                                                               fluralaner
41779                                                                                             ivermectin, pyrantel pamoate
41781                                                                                             ivermectin, pyrantel pamoate
41803                                                                                                               ivermectin
41811                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41816                                                                           mometasone furoate, orbifloxacin, posaconazole
41819                                                                                              lufenuron, milbemycin oxime
41830                                                                                        trimeprazine tartrate, prednisone
41835                                                                                              lufenuron, milbemycin oxime
41837                                                                                              lufenuron, milbemycin oxime
41838                                                                                                                 fipronil
41840                                                                                              lufenuron, milbemycin oxime
41842                                                                             dexamethasone, neomycin sulfate, polymyxin b
41846                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41849                                                                                              lufenuron, milbemycin oxime
41850                                                                                              lufenuron, milbemycin oxime
41851                                                                                              lufenuron, milbemycin oxime
41853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41854                                                                                             ivermectin, pyrantel pamoate
41862                                                                             dexamethasone, neomycin sulfate, polymyxin b
41863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41870                                                                                                         milbemycin oxime
41872                                                                                                                trazodone
41888                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
41891                                                                                             ivermectin, pyrantel pamoate
41893                                                                          betamethasone, clotrimazole, gentamicin sulfate
41894                                                                                                                    algae
41895                                                                                                 kidney health supplement
41896                                                                                                 urinary tract supplement
41897                                                                                                                  omega 3
41898                                                                                                                    algae
41899                                                                                                               walnut oil
41900                                                                                                 kidney health supplement
41901                                                                                                                 curcumin
41902                                                                                                                probiotic
41903                                                                                                                  omega 3
41904                                                                                                                    algae
41905                                                                                                 kidney health supplement
41906                                                                                                                probiotic
41907                                                                                                         tylosin tartrate
41921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41929                                                                                                               ivermectin
41930                                                                                             ivermectin, pyrantel pamoate
41937                                                                                             ivermectin, pyrantel pamoate
41938                                                                                                 fipronil, (s)-methoprene
41939                                                                                        betamethasone, gentamicin sulfate
41946                                                                                             ivermectin, pyrantel pamoate
41947                                                                                                 fipronil, (s)-methoprene
41950                                                                                             ivermectin, pyrantel pamoate
41973                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41975                                                                                                            metronidazole
41976                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41988                                                                                              lufenuron, milbemycin oxime
42004                                                                                             ivermectin, pyrantel pamoate
42005                                                                                                 fipronil, (s)-methoprene
42011                                                                                             ivermectin, pyrantel pamoate
42012                                                                                                 fipronil, (s)-methoprene
42030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42032                                                                                                         milbemycin oxime
42036                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
42037                                                                                                         milbemycin oxime
42039                                                                                                         milbemycin oxime
42040                                                                             florfenicol, mometasone furoate, terbinafine
42043                                                                                                         milbemycin oxime
42044                                                                                                         milbemycin oxime
42053                                                                                                               afoxolaner
42055                                                                                                               sucralfate
42057                                                                                                              doxycycline
42061                                                                                             ivermectin, pyrantel pamoate
42063                                                                                                               ivermectin
42066                                                                                             ivermectin, pyrantel pamoate
42100                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42101                                                                                        betamethasone, gentamicin sulfate
42112                                                                                             ivermectin, pyrantel pamoate
42116                                                                                                                 tramadol
42119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42122                                                                             florfenicol, mometasone furoate, terbinafine
42147                                                                                              lufenuron, milbemycin oxime
42148                                                                                                               fluralaner
42149                                                                                              lufenuron, milbemycin oxime
42150                                                                                                               fluralaner
42151                                                                                                               fluralaner
42152                                                                                              lufenuron, milbemycin oxime
42154                                                                                                               fluralaner
42171                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42174                                                                                                         milbemycin oxime
42198                                                                                                 flumethrin, imidacloprid
42201                                                                                                 flumethrin, imidacloprid
42215                                                                                            unspecified herbal supplement
42218                                                                                             ivermectin, pyrantel pamoate
42219                                                                                               imidacloprid, pyriproxyfen
42221                                                                                                 imidacloprid, moxidectin
42227                                                                                                 imidacloprid, moxidectin
42229                                                                                                 imidacloprid, moxidectin
42240                                                                                                         liver supplement
42241                                                                                                                  omega 3
42242                                                                                                                vitamin b
42243                                                                                                             multivitamin
42256                                                                                   dexamethasone, enrofloxacin, tris-edta
42257                                                                                                                mupirocin
42259                                                                                                                mupirocin
42267                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
42272                                                                                              lufenuron, milbemycin oxime
42273                                                                                                               fluralaner
42278                                                                                                 urinary tract supplement
42284                                                                                             ivermectin, pyrantel pamoate
42286                                                                                                 imidacloprid, permethrin
42287                                                                                             ivermectin, pyrantel pamoate
42289                                                                                             ivermectin, pyrantel pamoate
42291                                                                                                       calming supplement
42313                                                                                                 fipronil, (s)-methoprene
42314                                                                                             ivermectin, pyrantel pamoate
42345                                                                                                         milbemycin oxime
42346                                                                                                                sarolaner
42348                                                                                                         milbemycin oxime
42349                                                                                                                sarolaner
42353                                                                                              lufenuron, milbemycin oxime
42354                                                                                                               afoxolaner
42355                                                                                                                  omega 3
42356                                                                                                               afoxolaner
42357                                                                                              lufenuron, milbemycin oxime
42358                                                                                                               afoxolaner
42361                                                                                                                probiotic
42365                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
42366                                                                                                               ivermectin
42367                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
42368                                                                                             ivermectin, pyrantel pamoate
42378                                                                                             ivermectin, pyrantel pamoate
42379                                                                                             ivermectin, pyrantel pamoate
42384                                                                                             ivermectin, pyrantel pamoate
42386                                                                                             ivermectin, pyrantel pamoate
42387                                                                                             ivermectin, pyrantel pamoate
42399                                                                                                 flumethrin, imidacloprid
42402                                                                                             ivermectin, pyrantel pamoate
42403                                                                                                 fipronil, (s)-methoprene
42404                                                                                             ivermectin, pyrantel pamoate
42412                                                                                             ivermectin, pyrantel pamoate
42413                                                                                                               afoxolaner
42417                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42425                                                                                                           hydrocortisone
42426                                                                                                           hydrocortisone
42433                                                                                             ivermectin, pyrantel pamoate
42451                                                                                              lufenuron, milbemycin oxime
42455                                                                                              lufenuron, milbemycin oxime
42463                                                                               ivermectin, praziquantel, pyrantel pamoate
42464                                                                                                    ear cleaner (aurocin)
42465                                                                               ivermectin, praziquantel, pyrantel pamoate
42466                                                                                                                carprofen
42468                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
42474                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42475                                                                                                                  omega 3
42476                                                                                              lufenuron, milbemycin oxime
42477                                                                                               imidacloprid, pyriproxyfen
42478                                                                                              lufenuron, milbemycin oxime
42479                                                                                               imidacloprid, pyriproxyfen
42480                                                                                          ear cleaner (epi-otic advanced)
42481                                                                                             ormetoprim, sulfadimethoxine
42482                                                                                               imidacloprid, pyriproxyfen
42483                                                                                              lufenuron, milbemycin oxime
42486                                                                                                                probiotic
42488                                                                                               imidacloprid, pyriproxyfen
42489                                                                                              lufenuron, milbemycin oxime
42502                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42506                                                                                                                probiotic
42512                                                                                           milbemycin oxime, praziquantel
42513                                                                                                 fipronil, (s)-methoprene
42522                                                                                                         liver supplement
42537                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42551                                                                                              lufenuron, milbemycin oxime
42552                                                                                              lufenuron, milbemycin oxime
42553                                                                                              lufenuron, milbemycin oxime
42566                                                                                               unspecified shampoo/mousse
42570                                                                                                                 spinosad
42572                                                                                             ivermectin, pyrantel pamoate
42573                                                                                             ivermectin, pyrantel pamoate
42574                                                                                             ivermectin, pyrantel pamoate
42578                                                                                             ivermectin, pyrantel pamoate
42579                                                                                                               fluralaner
42593                                                                                             ivermectin, pyrantel pamoate
42594                                                                                                               fluralaner
42624                                                                                              lufenuron, milbemycin oxime
42626                                                                          betamethasone, clotrimazole, gentamicin sulfate
42627                                                                                              lufenuron, milbemycin oxime
42628                                                                                                               fluralaner
42632                                                                                                               fluralaner
42633                                                                                              lufenuron, milbemycin oxime
42634                                                                                                 flumethrin, imidacloprid
42637                                                                                              lufenuron, milbemycin oxime
42638                                                                                              lufenuron, milbemycin oxime
42640                                                                                                 flumethrin, imidacloprid
42646                                                                                                         pyrantel pamoate
42647                                                                                                                ponazuril
42648                                                                                                             fenbendazole
42651                                                                                              lufenuron, milbemycin oxime
42652                                                                                                                 fipronil
42655                                                                                             ivermectin, pyrantel pamoate
42656                                                                                                                sarolaner
42666                                                                                             ivermectin, pyrantel pamoate
42668                                                                                             ivermectin, pyrantel pamoate
42675                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42678                                                                             dexamethasone, neomycin sulfate, polymyxin b
42679                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42694                                                                                   cyphenothrin, fipronil, (s)-methoprene
42695                                                                                             ivermectin, pyrantel pamoate
42696                                                                                                 fipronil, (s)-methoprene
42697                                                                                                               ivermectin
42700                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42704                                                                                             ivermectin, pyrantel pamoate
42712                                                                                                               ivermectin
42716                                                                                             ivermectin, pyrantel pamoate
42721                                                                                             ivermectin, pyrantel pamoate
42725                                                                                                 fipronil, (s)-methoprene
42726                                                                                             ivermectin, pyrantel pamoate
42727                                                                                             ivermectin, pyrantel pamoate
42728                                                                                             ivermectin, pyrantel pamoate
42729                                                                                                         milbemycin oxime
42740                                                                                             ivermectin, pyrantel pamoate
42752                                                                                              lufenuron, milbemycin oxime
42753                                                                                              lufenuron, milbemycin oxime
42758                                                                                              lufenuron, milbemycin oxime
42760                                                                                                         milbemycin oxime
42761                                                                                                 fipronil, (s)-methoprene
42764                                                                                           milbemycin oxime, praziquantel
42766                                                                                           milbemycin oxime, praziquantel
42768                                                                                           milbemycin oxime, praziquantel
42785                                                                                                               afoxolaner
42786                                                                                                         milbemycin oxime
42787                                                                                       joint supplement (glucosamine hcl)
42791                                                                                                         milbemycin oxime
42792                                                                                                         milbemycin oxime
42799                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42821                                                                               ivermectin, praziquantel, pyrantel pamoate
42829                                                                          betamethasone, clotrimazole, gentamicin sulfate
42833                                                                                                         milbemycin oxime
42860                                                                                                     rx diet - aging care
42876                                                                                                                  omega 3
42879                                                                                    dinotefuran, permethrin, pyriproxyfen
42887                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42890                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42891                                                                                                                probiotic
42892                                                                                                                  omega 3
42893                                                                                                                  omega 3
42894                                                                                                 urinary tract supplement
42913                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42915                                                                                                 imidacloprid, permethrin
42920                                                                                             ivermectin, pyrantel pamoate
42923                                                                                                               selamectin
42926                                                                                                 fipronil, (s)-methoprene
42930                                                                                             ivermectin, pyrantel pamoate
42931                                                                                              lufenuron, milbemycin oxime
42932                                                                                                                sarolaner
42935                                                                                                                sarolaner
42936                                                                                              lufenuron, milbemycin oxime
42939                                                                                           milbemycin oxime, praziquantel
42940                                                                                                                sarolaner
42946                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42952                                                                                               milbemycin oxime, spinosad
42956                                                                                              lufenuron, milbemycin oxime
42959                                                                                             ivermectin, pyrantel pamoate
42960                                                                                             ivermectin, pyrantel pamoate
42967                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42994                                                                                               imidacloprid, pyriproxyfen
43013                                                                                             ivermectin, pyrantel pamoate
43045                                                                                             ivermectin, pyrantel pamoate
43064                                                                                             ivermectin, pyrantel pamoate
43065                                                                                               imidacloprid, pyriproxyfen
43069                                                                                               imidacloprid, pyriproxyfen
43072                                                                                               imidacloprid, pyriproxyfen
43081                                                                                                               selamectin
43086                                                                                        betamethasone, gentamicin sulfate
43105                                                                                    chlorhexidine gluconate, ketoconazole
43116                                                                                              lufenuron, milbemycin oxime
43119                                                                                           milbemycin oxime, praziquantel
43123                                                                                                         milbemycin oxime
43134                                                                                       amoxicillin, clavulanate potassium
43135                                                                                                               cephalexin
43136                                                                                                                carprofen
43137                                                                                                         milbemycin oxime
43138                                                                                                               fluralaner
43151                                                                                           milbemycin oxime, praziquantel
43153                                                                           mometasone furoate, orbifloxacin, posaconazole
43169                                                                                                          dexmedetomidine
43173                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
43183                                                                                              lufenuron, milbemycin oxime
43184                                                                                              lufenuron, milbemycin oxime
43191                                                                                                              sevoflurane
43200                                                                                               milbemycin oxime, spinosad
43202                                                                                               imidacloprid, pyriproxyfen
43204                                                                                                               selamectin
43224                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43228                                                                                                 flumethrin, imidacloprid
43236                                                                                              lufenuron, milbemycin oxime
43238                                                                                           milbemycin oxime, praziquantel
43239                                                                                                 flumethrin, imidacloprid
43241                                                                                           milbemycin oxime, praziquantel
43242                                                                                                 flumethrin, imidacloprid
43243                                                                                           milbemycin oxime, praziquantel
43244                                                                                                 flumethrin, imidacloprid
43246                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43247                                                                                                                 curcumin
43258                                                                                              lufenuron, milbemycin oxime
43259                                                                                    dinotefuran, permethrin, pyriproxyfen
43270                                                                                                            metronidazole
43286                                                                                                            levetiracetam
43291                                                                                                 imidacloprid, moxidectin
43292                                                                                                  chlorhexidine gluconate
43293                                                                                                 imidacloprid, moxidectin
43310                                                                                              lufenuron, milbemycin oxime
43334                                                                                                         milbemycin oxime
43366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43388                                                                                                               fluralaner
43396                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43397                                                                             dexamethasone, neomycin sulfate, polymyxin b
43405                                                                                                  ketoconazole, tris-edta
43412                                                                          betamethasone, clotrimazole, gentamicin sulfate
43416                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43423                                                                                                               afoxolaner
43424                                                                                                                  omega 3
43430                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43465                                                                                                             multivitamin
43467                                                                                                  ketoconazole, tris-edta
43469                                                                                       joint supplement (glucosamine hcl)
43470                                                                                                                  omega 3
43471                                                                                                      unspecified vitamin
43482                                                                                lufenuron, milbemycin oxime, praziquantel
43491                                                                                              lufenuron, milbemycin oxime
43493                                                                                                         milbemycin oxime
43494                                                                                                         milbemycin oxime
43496                                                                                                         milbemycin oxime
43497                                                                                                         milbemycin oxime
43510                                                                                              lufenuron, milbemycin oxime
43511                                                                                                               fluralaner
43512                                                                                                     fipronil, permethrin
43522                                                                                                               fluralaner
43527                                                                                             ivermectin, pyrantel pamoate
43531                                                                                           milbemycin oxime, praziquantel
43532                                                                                                               afoxolaner
43535                                                                                           milbemycin oxime, praziquantel
43538                                                                                           milbemycin oxime, praziquantel
43539                                                                                                               afoxolaner
43540                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43545                                                                                             ivermectin, pyrantel pamoate
43546                                                                                                 fipronil, (s)-methoprene
43547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43548                                                                                                               ivermectin
43549                                                                                                 fipronil, (s)-methoprene
43550                                                                                                               ivermectin
43563                                                                                                               afoxolaner
43570                                                                                                 fipronil, (s)-methoprene
43601                                                                                                            ciprofloxacin
43610                                                                                             oxytetracycline, polymyxin b
43620                                                                                                                sarolaner
43621                                                                                                 flumethrin, imidacloprid
43636                                                                                                               selamectin
43637                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43639                                                                                                                mupirocin
43640                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43642                                                                                          ear cleaner (epi-otic advanced)
43643                                                                                                   unspecified antiseptic
43644                                                                                             ivermectin, pyrantel pamoate
43645                                                                                                               afoxolaner
43646                                                                                                             fenbendazole
43650                                                                             dexamethasone, neomycin sulfate, polymyxin b
43652                                                                                                 fipronil, (s)-methoprene
43653                                                                                             ivermectin, pyrantel pamoate
43669                                                                                       chlorhexidine gluconate, ophytrium
43678                                                                                        betamethasone, gentamicin sulfate
43683                                                                                             ivermectin, pyrantel pamoate
43684                                                                             dexamethasone, neomycin sulfate, polymyxin b
43685                                                                                                             ketoconazole
43686                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43697                                                                                lufenuron, milbemycin oxime, praziquantel
43698                                                                                                               afoxolaner
43701                                                                                              lufenuron, milbemycin oxime
43702                                                                                                               fluralaner
43706                                                                                              lufenuron, milbemycin oxime
43707                                                                                                               fluralaner
43709                                                                                    dinotefuran, permethrin, pyriproxyfen
43712                                                                                                  triamcinolone acetonide
43714                                                                                       chlorhexidine gluconate, ophytrium
43715                                                                                                         phytosphingosine
43738                                                                                        betamethasone, gentamicin sulfate
43743                                                                                             ivermectin, pyrantel pamoate
43744                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43745                                                                                                                probiotic
43746                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43747                                                                                             ivermectin, pyrantel pamoate
43751                                                                                                                probiotic
43765                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
43783                                                                                             ivermectin, pyrantel pamoate
43784                                                                                                               afoxolaner
43785                                                                                   joint supplement (glucosamine hcl/msm)
43790                                                                                   joint supplement (glucosamine hcl/msm)
43806                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
43807                                                                              chlorhexidine gluconate, miconazole nitrate
43829                                                                                               lactated ringer's solution
43838                                                                                                             capromorelin
43843                                                                                                         milbemycin oxime
43844                                                                                                               afoxolaner
43851                                                                                                 flumethrin, imidacloprid
43853                                                                                                               lokivetmab
43854                                                                                                                carprofen
43878                                                                               ivermectin, praziquantel, pyrantel pamoate
43884                                                                                  betamethasone, florfenicol, terbinafine
43887                                                                                  betamethasone, florfenicol, terbinafine
43893                                                                                             ivermectin, pyrantel pamoate
43894                                                                                                 flumethrin, imidacloprid
43896                                                                                             ivermectin, pyrantel pamoate
43897                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43919                                                                                                               ivermectin
43920                                                                                                               afoxolaner
43938                                                                                                         milbemycin oxime
43939                                                                                                               afoxolaner
43949                                                                                                         milbemycin oxime
43950                                                                                                               afoxolaner
43958                                                                                                         milbemycin oxime
43959                                                                                                         milbemycin oxime
43960                                                                                                               afoxolaner
43963                                                                                              lufenuron, milbemycin oxime
43965                                                                          betamethasone, clotrimazole, gentamicin sulfate
43975                                                                                                                probiotic
43976                                                                                             ivermectin, pyrantel pamoate
43977                                                                                             ivermectin, pyrantel pamoate
43980                                                                                             ivermectin, pyrantel pamoate
43997                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
44031                                                                                             ivermectin, pyrantel pamoate
44037                                                                                             ivermectin, pyrantel pamoate
44050                                                                                    chlorhexidine gluconate, ketoconazole
44051                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44055                                                                           dexamethasone, neomycin sulfate, thiabendazole
44084                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44087                                                                                            cedarwood oil, peppermint oil
44090                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44119                                                                                                                ofloxacin
44123                                                                                                  triamcinolone acetonide
44126                                                                                                               ivermectin
44127                                                                                                               afoxolaner
44129                                                                                             ivermectin, pyrantel pamoate
44131                                                                                              lufenuron, milbemycin oxime
44154                                                  fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
44155                                                                                lufenuron, milbemycin oxime, praziquantel
44157                                                                                lufenuron, milbemycin oxime, praziquantel
44158                                                                                                               fluralaner
44207                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44209                                                                             florfenicol, mometasone furoate, terbinafine
44211                                                                                               milbemycin oxime, spinosad
44212                                                                                                       calming supplement
44214                                                                                               milbemycin oxime, spinosad
44216                                                                                               milbemycin oxime, spinosad
44218                                                                                               milbemycin oxime, spinosad
44219                                                                                               milbemycin oxime, spinosad
44220                                                                             florfenicol, mometasone furoate, terbinafine
44222                                                                                        betamethasone, gentamicin sulfate
44223                                                                                                              latanoprost
44224                                                                                                              dorzolamide
44225                                                                                                                  timolol
44226                                                                                                                probiotic
44227                                                                                                               diclofenac
44234                                                                                               imidacloprid, pyriproxyfen
44235                                                                                                               ivermectin
44240                                                                                              ear cleaner (well and good)
44241                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44242                                                                                                                  omega 3
44243                                                                                                                 turmeric
44244                                                                                                                  aspirin
44246                                                                                                               ivermectin
44247                                                                                                                 spinosad
44249                                                                                                               afoxolaner
44250                                                                                                               ivermectin
44251                                                                                                               ivermectin
44252                                                                                                               afoxolaner
44253                                                                               ivermectin, praziquantel, pyrantel pamoate
44268                                                                               ivermectin, praziquantel, pyrantel pamoate
44280                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44282                                                                                                  ketoconazole, tris-edta
44309                                                                                                        tigilanol tiglate
44330                                                                                              lufenuron, milbemycin oxime
44334                                                                                             ivermectin, pyrantel pamoate
44335                                                                                                               afoxolaner
44336                                                                                             ivermectin, pyrantel pamoate
44337                                                                                                               afoxolaner
44347                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
44350                                                                                       amoxicillin, clavulanate potassium
44363                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44372                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
44385                                                                                               milbemycin oxime, spinosad
44386                                                                                               milbemycin oxime, spinosad
44390                                                                                                         milbemycin oxime
44391                                                                                                         milbemycin oxime
44392                                                                                                         milbemycin oxime
44395                                                                                                         milbemycin oxime
44398                                                                                                                probiotic
44421                                                                               ivermectin, praziquantel, pyrantel pamoate
44428                                                                                               milbemycin oxime, spinosad
44429                                                                                               milbemycin oxime, spinosad
44431                                                                                                               fluralaner
44434                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44452                                                                                               milbemycin oxime, spinosad
44473                                                                                               imidacloprid, pyriproxyfen
44501                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44507                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44520                                                                                                                tris-edta
44524                                                                                             ivermectin, pyrantel pamoate
44531                                                                                                                meloxicam
44542                                                                                                 fipronil, (s)-methoprene
44543                                                                                                               ivermectin
44544                                                                                             ivermectin, pyrantel pamoate
44545                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44546                                                                                             ivermectin, pyrantel pamoate
44547                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44552                                                                                                                  omega 3
44558                                                                                             ivermectin, pyrantel pamoate
44559                                                                                                 fipronil, (s)-methoprene
44570                                                                                             ivermectin, pyrantel pamoate
44571                                                                                                 fipronil, (s)-methoprene
44576                                                                                             ivermectin, pyrantel pamoate
44577                                                                                                 fipronil, (s)-methoprene
44595                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44607                                                                                    chlorhexidine gluconate, ketoconazole
44608                                                                                               milbemycin oxime, spinosad
44609                                                                                    chlorhexidine gluconate, ketoconazole
44614                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44616                                                                                              lufenuron, milbemycin oxime
44618                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44646                                                                                                               selamectin
44649                                                                                                               selamectin
44652                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44653                                                                                        betamethasone, gentamicin sulfate
44654                                                                                                 fipronil, (s)-methoprene
44655                                                                                                 flumethrin, imidacloprid
44658                                                                                                       calming supplement
44660                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44663                                                                                                     cefpodoxime proxetil
44671                                                                                               milbemycin oxime, spinosad
44672                                                                                               milbemycin oxime, spinosad
44677                                                                                               milbemycin oxime, spinosad
44679                                                                                                   acetaminophen, codeine
44683                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44684                                                                                       joint supplement (glucosamine hcl)
44706                                                                                             oxytetracycline, polymyxin b
44732                                                                                              lufenuron, milbemycin oxime
44742                                                                                              lufenuron, milbemycin oxime
44743                                                                                                 fipronil, (s)-methoprene
44745                                                                                              lufenuron, milbemycin oxime
44746                                                                                              lufenuron, milbemycin oxime
44747                                                                                                 flumethrin, imidacloprid
44755                                                                                                                probiotic
44757                                                                                                                probiotic
44769                                                                                                 fipronil, (s)-methoprene
44771                                                                                                 fipronil, (s)-methoprene
44782                                                                                                         liver supplement
44795                                                                                             oxytetracycline, polymyxin b
44796                                                                                                unspecified eye lubricant
44797                                                                                                                ofloxacin
44799                                                                                                                carprofen
44804                                                                                                                carprofen
44820                                                                                              lufenuron, milbemycin oxime
44827                                                                                                               ivermectin
44828                                                                                                               afoxolaner
44829                                                                                             ivermectin, pyrantel pamoate
44830                                                                                             ivermectin, pyrantel pamoate
44831                                                                                                     prednisolone acetate
44834                                                                             florfenicol, mometasone furoate, terbinafine
44843                                                                                             ivermectin, pyrantel pamoate
44844                                                                                                               afoxolaner
44857                                                                                        trimeprazine tartrate, prednisone
44858                                                                                        trimeprazine tartrate, prednisone
44862                                                                                                                  omega 3
44863                                                                                             ivermectin, pyrantel pamoate
44864                                                                                             ivermectin, pyrantel pamoate
44866                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44867                                                                                                 imidacloprid, moxidectin
44868                                                                                                 imidacloprid, moxidectin
44869                                                                                                               afoxolaner
44875                                                                                              lufenuron, milbemycin oxime
44877                                                                                                         milbemycin oxime
44879                                                                                                         milbemycin oxime
44899                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44905                                                                                                            metronidazole
44915                                                                                                 fipronil, (s)-methoprene
44916                                                                                             ivermectin, pyrantel pamoate
44917                                                                                               imidacloprid, pyriproxyfen
44918                                                                                             ivermectin, pyrantel pamoate
44920                                                                                               imidacloprid, pyriproxyfen
44922                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44924                                                                                             ivermectin, pyrantel pamoate
44925                                                                                                 imidacloprid, permethrin
44933                                                                                           polysulfated glycosaminoglycan
44936                                                                                                               selamectin
44937                                                                                                               selamectin
44938                                                                                                               selamectin
44939                                                                                                               selamectin
44946                                                                                             ivermectin, pyrantel pamoate
44947                                                                                                               fluralaner
44948                                                                                                       diethylstilbestrol
44949                                                                                             ivermectin, pyrantel pamoate
44950                                                                                                               fluralaner
44957                                                                                                               fluralaner
44958                                                                                             ivermectin, pyrantel pamoate
44990                                                                                                      aluminium hydroxide
44997                                                                                                   rx diet - renal health
45005                                                                                                            levetiracetam
45007                                                                                                               afoxolaner
45014                                                                                               milbemycin oxime, spinosad
45015                                                                                                               loratadine
45016                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45017                                                                                                               lokivetmab
45023                                                                                                     prednisolone acetate
45027                                                                                   cyphenothrin, fipronil, (s)-methoprene
45034                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
45045                                                                                                               selamectin
45047                                                                                                 fipronil, (s)-methoprene
45053                                                                                                               ivermectin
45054                                                                                                               afoxolaner
45055                                                                                                               afoxolaner
45059                                                                                                               ivermectin
45061                                                                                             ivermectin, pyrantel pamoate
45062                                                                                                                 spinosad
45063                                                                                               milbemycin oxime, spinosad
45064                                                                                               milbemycin oxime, spinosad
45066                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45072                                                                                               milbemycin oxime, spinosad
45073                                                                                               milbemycin oxime, spinosad
45076                                                                                                                probiotic
45109                                                                                               milbemycin oxime, spinosad
45112                                                                                                          dexmedetomidine
45116                                                                                                                carprofen
45117                                                                                                       calming supplement
45123                                                                                             ivermectin, pyrantel pamoate
45134                                                                                           sulfamethoxazole, trimethoprim
45139                                                                                             ivermectin, pyrantel pamoate
45149                                                                                              lufenuron, milbemycin oxime
45150                                                                                              lufenuron, milbemycin oxime
45154                                                                                              lufenuron, milbemycin oxime
45172                                                                               dimethyl sulfoxide, fluocinolone acetonide
45173                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45174                                                                                                              bedinvetmab
45175                                                                                                               lokivetmab
45178                                                                                             ivermectin, pyrantel pamoate
45179                                                                                                 fipronil, (s)-methoprene
45180                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
45181                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
45182                                                                                             ivermectin, pyrantel pamoate
45184                                                                                                         milbemycin oxime
45185                                                                                                 fipronil, (s)-methoprene
45186                                                                                                         milbemycin oxime
45187                                                                                                                sarolaner
45188                                                                                                         milbemycin oxime
45189                                                                                                                sarolaner
45195                                                                                                               gabapentin
45199                                                                                                                trazodone
45208                                                                                        betamethasone, gentamicin sulfate
45209                                                                                           ketoconazole, phytosphingosine
45210                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45212                                                                                                         milbemycin oxime
45216                                                                                             ivermectin, pyrantel pamoate
45224                                                                                                  chlorhexidine gluconate
45225                                                                                             ivermectin, pyrantel pamoate
45236                                                                                             ivermectin, pyrantel pamoate
45255                                                                                               imidacloprid, pyriproxyfen
45257                                                                             florfenicol, mometasone furoate, terbinafine
45263                                                                                                               afoxolaner
45268                                                                                                         milbemycin oxime
45273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45274                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45280                                                                                             ivermectin, pyrantel pamoate
45283                                                                                             ivermectin, pyrantel pamoate
45286                                                                                             ivermectin, pyrantel pamoate
45294                                                                                               milbemycin oxime, spinosad
45295                                                                                                     digestive supplement
45297                                                                                                                meloxicam
45298                                                                                                               afoxolaner
45299                                                                                             ivermectin, pyrantel pamoate
45302                                                                                             ivermectin, pyrantel pamoate
45305                                                                                                                  taurine
45307                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
45309                                                                                                                  taurine
45310                                                                                             ivermectin, pyrantel pamoate
45311                                                                                                               afoxolaner
45312                                                                                                               afoxolaner
45313                                                                                             ivermectin, pyrantel pamoate
45322                                                                                       amoxicillin, clavulanate potassium
45327                                                                                                                carprofen
45335                                                                                              lufenuron, milbemycin oxime
45344                                                                                                                body sore
45345                                                                                                              liver happy
45358                                                                                                              liver happy
45359                                                                                                                body sore
45372                                                                          betamethasone, clotrimazole, gentamicin sulfate
45383                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45403                                                                                                                ophytrium
45406                                                                                              lufenuron, milbemycin oxime
45411                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
45425                                                                                             ivermectin, pyrantel pamoate
45426                                                                                            unspecified flea preventative
45434                                                                                                     cefpodoxime proxetil
45435                                                                                                     cefpodoxime proxetil
45443                                                                                             ivermectin, pyrantel pamoate
45445                                                                                             ivermectin, pyrantel pamoate
45451                                                                                                               ivermectin
45452                                                                                                               afoxolaner
45463                                                                                               milbemycin oxime, spinosad
45468                                                                                              lufenuron, milbemycin oxime
45470                                                                                               milbemycin oxime, spinosad
45471                                                                             dexamethasone, neomycin sulfate, polymyxin b
45476                                                                                               milbemycin oxime, spinosad
45479                                                                             dexamethasone, neomycin sulfate, polymyxin b
45480                                                                                               milbemycin oxime, spinosad
45484                                                                                               milbemycin oxime, spinosad
45499                                                                                             ivermectin, pyrantel pamoate
45500                                                                                                               afoxolaner
45503                                                                                        trimeprazine tartrate, prednisone
45504                                                                                              lufenuron, milbemycin oxime
45508                                                                                                                 fipronil
45531                                                                                                 imidacloprid, moxidectin
45534                                                                                               milbemycin oxime, spinosad
45555                                                                                                              coconut oil
45556                                                                                                               selamectin
45572                                                                                       fipronil, permethrin, pyriproxyfen
45582                                                                                                 fipronil, (s)-methoprene
45585                                                                                             ivermectin, pyrantel pamoate
45591                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45626                                                                                                         milbemycin oxime
45629                                                                                  betamethasone, florfenicol, terbinafine
45642                                                                                             ivermectin, pyrantel pamoate
45650                                                                                                               afoxolaner
45651                                                                                             ivermectin, pyrantel pamoate
45655                                                                                             ivermectin, pyrantel pamoate
45656                                                                                                               afoxolaner
45663                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45664                                                                                lufenuron, milbemycin oxime, praziquantel
45665                                                                                                   cyphenothrin, fipronil
45667                                                                                                   cyphenothrin, fipronil
45670                                                                                                         milbemycin oxime
45671                                                                                                                lotilaner
45674                                                                                        betamethasone, gentamicin sulfate
45675                                                                         dexamethasone, enrofloxacin, silver sulfadiazine
45676                                                                           mometasone furoate, orbifloxacin, posaconazole
45683                                                                                              lufenuron, milbemycin oxime
45699                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45700                                                                                                  acetic acid, boric acid
45703                                                                enrofloxacin, miconazole nitrate, triamcinolone acetonide
45704                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45725                                                                                                                probiotic
45726                                                                                                   joint supplement (msm)
45727                                                                                                                  omega 3
45728                                                                                                 joint supplement (other)
45729                                                                                                               cetirizine
45735                                                                                             ivermectin, pyrantel pamoate
45736                                                                                                 fipronil, (s)-methoprene
45751                                                                                                 fipronil, (s)-methoprene
45764                                                                                             ivermectin, pyrantel pamoate
45775                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45776                                                                             florfenicol, mometasone furoate, terbinafine
45787                                                                                                 fipronil, (s)-methoprene
45791                                                                                              lufenuron, milbemycin oxime
45798                                                                                                         milbemycin oxime
45799                                                                                                         milbemycin oxime
45800                                                                                                                lotilaner
45816                                                                                                 flumethrin, imidacloprid
45820                                                                                             ivermectin, pyrantel pamoate
45843                                                                                                          povidone-iodine
45853                                                                                                               isoflurane
45862                                                                                                         milbemycin oxime
45863                                                                                                               afoxolaner
45864                                                                                                               fluralaner
45869                                                                                           milbemycin oxime, praziquantel
45870                                                                                        betamethasone, gentamicin sulfate
45871                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45872                                                                                                               fluralaner
45876                                                                                               milbemycin oxime, spinosad
45886                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45898                                                                                                         milbemycin oxime
45899                                                                                               imidacloprid, pyriproxyfen
45901                                                                                           milbemycin oxime, praziquantel
45908                                                                                                         milbemycin oxime
45909                                                                                                 imidacloprid, permethrin
45914                                                                                           milbemycin oxime, praziquantel
45924                                                                                             ivermectin, pyrantel pamoate
45968                                                                                              lufenuron, milbemycin oxime
45969                                                                                              lufenuron, milbemycin oxime
45970                                                                                                               afoxolaner
45971                                                                                              lufenuron, milbemycin oxime
45972                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45990                                                                                               milbemycin oxime, spinosad
45994                                                                                                 imidacloprid, permethrin
45995                                                                                                                probiotic
45996                                                                                              chloroxylenol, ketoconazole
45997                                                                                                         milbemycin oxime
46014                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46018                                                                                             ivermectin, pyrantel pamoate
46019                                                                                                               afoxolaner
46020                                                                             florfenicol, mometasone furoate, terbinafine
46021                                                                                             ivermectin, pyrantel pamoate
46022                                                                                                               afoxolaner
46025                                                                                             ivermectin, pyrantel pamoate
46043                                                                                                               ivermectin
46044                                                                                                               afoxolaner
46071                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46075                                                                                             ivermectin, pyrantel pamoate
46076                                                                                                         milbemycin oxime
46078                                                                                                         milbemycin oxime
46085                                                                                        betamethasone, gentamicin sulfate
46091                                                                                             ivermectin, pyrantel pamoate
46092                                                                               ivermectin, praziquantel, pyrantel pamoate
46094                                                                                                         milbemycin oxime
46095                                                                                           milbemycin oxime, praziquantel
46100                                                                                                               ivermectin
46101                                                                           dexamethasone, neomycin sulfate, thiabendazole
46102                                                                               dimethyl sulfoxide, fluocinolone acetonide
46107                                                                                             ivermectin, pyrantel pamoate
46108                                                                                                               lokivetmab
46110                                                                                             ivermectin, pyrantel pamoate
46116                                                                               ivermectin, praziquantel, pyrantel pamoate
46119                                                                               ivermectin, praziquantel, pyrantel pamoate
46122                                                                               ivermectin, praziquantel, pyrantel pamoate
46131                                                                           mometasone furoate, orbifloxacin, posaconazole
46132                                                                                                                ofloxacin
46134                                                                                                                probiotic
46170                                                                                    dinotefuran, permethrin, pyriproxyfen
46171                                                                                                  ketoconazole, tris-edta
46173                                                                                    dinotefuran, permethrin, pyriproxyfen
46174                                                                                                         milbemycin oxime
46177                                                                                                         milbemycin oxime
46186                                                                                                                probiotic
46198                                                                                             ivermectin, pyrantel pamoate
46200                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46201                                                                               toothpaste/dental health solution or chews
46202                                                                                             ivermectin, pyrantel pamoate
46213                                                                                                 imidacloprid, permethrin
46218                                                                                                         milbemycin oxime
46219                                                                                                               afoxolaner
46227                                                                                                               afoxolaner
46255                                                                                           ketoconazole, phytosphingosine
46265                                                                                                              hydrocodone
46277                                                                                             ivermectin, pyrantel pamoate
46278                                                                                                               afoxolaner
46287                                                                                             ivermectin, pyrantel pamoate
46288                                                                                                               afoxolaner
46291                                                                                             ivermectin, pyrantel pamoate
46292                                                                                             ivermectin, pyrantel pamoate
46293                                                                                                               afoxolaner
46295                                                                                             ivermectin, pyrantel pamoate
46296                                                                                                               afoxolaner
46302                                                                                              lufenuron, milbemycin oxime
46303                                                                                              lufenuron, milbemycin oxime
46305                                                                                              lufenuron, milbemycin oxime
46308                                                                                              lufenuron, milbemycin oxime
46311                                                                                           polysulfated glycosaminoglycan
46312                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46313                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46314                                                                                                                  omega 3
46319                                                                                      ear cleaner (zymox), hydrocortisone
46320                                                                                                         milbemycin oxime
46324                                                                                                      ear cleaner (zymox)
46325                                                                                                         milbemycin oxime
46345                                                                                             ivermectin, pyrantel pamoate
46350                                                                                           milbemycin oxime, praziquantel
46355                                                                                           milbemycin oxime, praziquantel
46358                                                                               dextromethorphan hydrobromide, guaifenesin
46360                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
46377                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
46379                                                                                               milbemycin oxime, spinosad
46399                                                                                               milbemycin oxime, spinosad
46406                                                                                                unspecified otic ear pack
46410                                                                                                               ivermectin
46411                                                                                                 imidacloprid, permethrin
46413                                                                                                 flumethrin, imidacloprid
46418                                                                                                 flumethrin, imidacloprid
46424                                                                                                 flumethrin, imidacloprid
46431                                                                                                 flumethrin, imidacloprid
46432                                                                                                                  omega 3
46435                                                                                             ivermectin, pyrantel pamoate
46436                                                                                                 flumethrin, imidacloprid
46474                                                                                                               ivermectin
46475                                                                                    dinotefuran, permethrin, pyriproxyfen
46476                                                                                                         milbemycin oxime
46478                                                                                             ivermectin, pyrantel pamoate
46479                                                                               ivermectin, praziquantel, pyrantel pamoate
46482                                                                                             ivermectin, pyrantel pamoate
46483                                                                                    dinotefuran, permethrin, pyriproxyfen
46486                                                                                                               afoxolaner
46487                                                                                             ivermectin, pyrantel pamoate
46488                                                                                                               ivermectin
46489                                                                                             ivermectin, pyrantel pamoate
46490                                                                                             ivermectin, pyrantel pamoate
46493                                                                                              lufenuron, milbemycin oxime
46494                                                                                           milbemycin oxime, praziquantel
46499                                                                                                         milbemycin oxime
46502                                                                                                                  omega 3
46504                                                                                                  chlorhexidine gluconate
46505                                                                               chloroxylenol, lactic acid, salicylic acid
46506                                                                           dexamethasone, neomycin sulfate, thiabendazole
46512                                                                                                               ivermectin
46517                                                                                                                probiotic
46521                                                                                        dexamethasone, miconazole nitrate
46524                                                                          betamethasone, clotrimazole, gentamicin sulfate
46526                                                                             dexamethasone, neomycin sulfate, polymyxin b
46527                                                                          betamethasone, clotrimazole, gentamicin sulfate
46528                                                                                                 fipronil, (s)-methoprene
46529                                                                                                               sucralfate
46530                                                                                                  ketoconazole, tris-edta
46532                                                                                                         milbemycin oxime
46533                                                                             dexamethasone, neomycin sulfate, polymyxin b
46534                                                                           dexamethasone, neomycin sulfate, thiabendazole
46544                                                                                                         milbemycin oxime
46547                                                                                                 fipronil, (s)-methoprene
46551                                                                          betamethasone, clotrimazole, gentamicin sulfate
46553                                                                             florfenicol, mometasone furoate, terbinafine
46555                                                                                                                pramoxine
46568                                                                                             ivermectin, pyrantel pamoate
46569                                                                                               imidacloprid, pyriproxyfen
46570                                                                                 febantel, praziquantel, pyrantel pamoate
46571                                                                                               imidacloprid, pyriproxyfen
46572                                                                                             ivermectin, pyrantel pamoate
46573                                                                                             ivermectin, pyrantel pamoate
46574                                                                                               imidacloprid, pyriproxyfen
46575                                                                                             ivermectin, pyrantel pamoate
46579                                                                                                 imidacloprid, permethrin
46588                                                                                                               selamectin
46590                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46591                                                                                             ivermectin, pyrantel pamoate
46593                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46606                    dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
46607                                                                                                               gabapentin
46615                                                                                                               fluralaner
46616                                                                                              lufenuron, milbemycin oxime
46617                                                                                              lufenuron, milbemycin oxime
46618                                                                                              lufenuron, milbemycin oxime
46664                                                                                  betamethasone, florfenicol, terbinafine
46665                                                                                                               afoxolaner
46676                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
46680                                                                                               imidacloprid, pyriproxyfen
46687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46690                                                                                        betamethasone, gentamicin sulfate
46694                                                                                                               selamectin
46702                                                                                        betamethasone, gentamicin sulfate
46703                                                                                       chlorhexidine gluconate, ophytrium
46716                                                                                               milbemycin oxime, spinosad
46717                                                                                               milbemycin oxime, spinosad
46729                                                                                             ivermectin, pyrantel pamoate
46730                                                                                             ivermectin, pyrantel pamoate
46732                                                                                      allergy immunotherapy - unspecified
46737                                                                                                       calming supplement
46747                                                                                                                ophytrium
46753                                                                                        betamethasone, gentamicin sulfate
46763                                                                                                                carprofen
46766                                                                                                                deracoxib
46767                                                                                              lufenuron, milbemycin oxime
46775                                                                                             ivermectin, pyrantel pamoate
46776                                                                                                               afoxolaner
46777                                                                                           praziquantel, pyrantel pamoate
46781                                                                                             ivermectin, pyrantel pamoate
46782                                                                                                               afoxolaner
46783                                                                                                         phytosphingosine
46784                                                                                             ivermectin, pyrantel pamoate
46785                                                                                                               afoxolaner
46786                                                                                             ivermectin, pyrantel pamoate
46788                                                                                             ivermectin, pyrantel pamoate
46789                                                                                                               afoxolaner
46804                                                                                             ivermectin, pyrantel pamoate
46811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46812                                                                                             ivermectin, pyrantel pamoate
46816                                                                                             ivermectin, pyrantel pamoate
46827                                                                             dexamethasone, neomycin sulfate, polymyxin b
46849                                                                                             ivermectin, pyrantel pamoate
46853                                                                                             ivermectin, pyrantel pamoate
46874                                                                                             oxytetracycline, polymyxin b
46880                                                                                                            oxymetazoline
46883                                                                                                         milbemycin oxime
46884                                                                                                         milbemycin oxime
46885                                                                                                                lotilaner
46889                                                                                           sulfamethoxazole, trimethoprim
46891                                                                                           sulfamethoxazole, trimethoprim
46902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46903                                                                                               imidacloprid, pyriproxyfen
46904                                                                                             ivermectin, pyrantel pamoate
46905                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46908                                                                                        betamethasone, gentamicin sulfate
46915                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
46931                                                                                                                probiotic
46938                                                                                                                probiotic
46944                                                                                                                probiotic
46961                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46962                                          carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
46972                                                                                             ivermectin, pyrantel pamoate
46973                                                                                             ivermectin, pyrantel pamoate
46976                                                                                             ivermectin, pyrantel pamoate
46977                                                                                                 fipronil, (s)-methoprene
46978                                                                             dexamethasone, neomycin sulfate, polymyxin b
46981                                                                          betamethasone, clotrimazole, gentamicin sulfate
46982                                                                                                  ketoconazole, tris-edta
46983                                                                                                 fipronil, (s)-methoprene
46984                                                                                                 fipronil, (s)-methoprene
46985                                                                                             ivermectin, pyrantel pamoate
46986                                                                                             ivermectin, pyrantel pamoate
47000                                                                                                                sarolaner
47004                                                                                              lufenuron, milbemycin oxime
47010                                                                                              lufenuron, milbemycin oxime
47011                                                                                                               afoxolaner
47018                                                                                                         milbemycin oxime
47024                                                                                                         milbemycin oxime
47025                                                                                                                sarolaner
47041                                                                                              lufenuron, milbemycin oxime
47043                                                                                              lufenuron, milbemycin oxime
47049                                                                                                               selamectin
47060                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47069                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47076                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
47080                                                                                                                  omega 3
47081                                                                                                immune support supplement
47085                                                                                             ivermectin, pyrantel pamoate
47086                                                                                                               afoxolaner
47090                                                                                        betamethasone, gentamicin sulfate
47095                                                                                               milbemycin oxime, spinosad
47096                                                                                             ivermectin, pyrantel pamoate
47097                                                                                                               afoxolaner
47098                                                               benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
47104                                                                          betamethasone, clotrimazole, gentamicin sulfate
47105                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47106                                                                                    dinotefuran, permethrin, pyriproxyfen
47108                                                                                    dinotefuran, permethrin, pyriproxyfen
47125                                                                                             ivermectin, pyrantel pamoate
47126                                                                                                               fluralaner
47128                                                                                        trimeprazine tartrate, prednisone
47137                                                                           mometasone furoate, orbifloxacin, posaconazole
47140                                                                                                               selamectin
47143                                                                                                               selamectin
47146                                                                                                               selamectin
47152                                                                          betamethasone, clotrimazole, gentamicin sulfate
47154                                                                                             ivermectin, pyrantel pamoate
47155                                                                                             ivermectin, pyrantel pamoate
47156                                                                                                               fluralaner
47162                                                                                                               indoxacarb
47164                                                                                                               indoxacarb
47178                                                                                             ivermectin, pyrantel pamoate
47180                                                                          betamethasone, clotrimazole, gentamicin sulfate
47181                                                                             florfenicol, mometasone furoate, terbinafine
47183                                                                                                               fluralaner
47184                                                                                              lufenuron, milbemycin oxime
47187                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47193                                                                                             ivermectin, pyrantel pamoate
47194                                                                                                 fipronil, (s)-methoprene
47196                                                                                                 fipronil, (s)-methoprene
47197                                                                                             ivermectin, pyrantel pamoate
47204                                                                                                   unspecified medication
47208                                                                                                            yunnan baiyao
47209                                                                                              lufenuron, milbemycin oxime
47210                                                                                                         milbemycin oxime
47220                                                                                                 flumethrin, imidacloprid
47221                                                                                                     cefpodoxime proxetil
47222                                                                                        betamethasone, gentamicin sulfate
47240                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47248                                                                                                         pyrantel pamoate
47251                                                                                                             fenbendazole
47253                                                                                                         milbemycin oxime
47260                                                                                                         milbemycin oxime
47302                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47323                                                                                                         milbemycin oxime
47325                                                                                           milbemycin oxime, praziquantel
47334                                                                                           milbemycin oxime, praziquantel
47343                                                                                                         milbemycin oxime
47345                                                                                           milbemycin oxime, praziquantel
47350                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47355                                                                                                      silver sulfadiazine
47360                                                                                                                probiotic
47390                                                                                             ivermectin, pyrantel pamoate
47407                                                                                                               prednisone
47409                                                                                                         milbemycin oxime
47411                                                                                                               afoxolaner
47412                                                                                           milbemycin oxime, praziquantel
47415                                                                                                                sarolaner
47416                                                                                                         milbemycin oxime
47417                                                                                                                sarolaner
47420                                                                                                         milbemycin oxime
47421                                                                                                                sarolaner
47433                                                                                             ivermectin, pyrantel pamoate
47439                                                                                        trimeprazine tartrate, prednisone
47451                                                                                             ivermectin, pyrantel pamoate
47478                                                                                lufenuron, milbemycin oxime, praziquantel
47479                                                                                              lufenuron, milbemycin oxime
47483                                                                                          ear cleaner (epi-otic advanced)
47484                                                                                                 flumethrin, imidacloprid
47486                                                                                                 flumethrin, imidacloprid
47493                                                                                                 flumethrin, imidacloprid
47496                                                                                                   unspecified medication
47497                                                                                                               ivermectin
47498                                                                                                 flumethrin, imidacloprid
47513                                                                           mometasone furoate, orbifloxacin, posaconazole
47539                                                                                                 imidacloprid, permethrin
47540                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47544                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47547                                                                                              betamethasone, enrofloxacin
47557                                                                                                 flumethrin, imidacloprid
47559                                                                                                     prednisolone acetate
47561                                                                                                               sucralfate
47562                                                                                                         milbemycin oxime
47563                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47576                                                                                    dinotefuran, permethrin, pyriproxyfen
47577                                                                                             ivermectin, pyrantel pamoate
47578                                                                                             ivermectin, pyrantel pamoate
47586                                                                                             ivermectin, pyrantel pamoate
47587                                                                                    dinotefuran, permethrin, pyriproxyfen
47588                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
47589                                                                                                         milbemycin oxime
47590                                                                                    dinotefuran, permethrin, pyriproxyfen
47592                                                                                                         milbemycin oxime
47593                                                                                    dinotefuran, permethrin, pyriproxyfen
47594                                                                                                               ivermectin
47595                                                                                    dinotefuran, permethrin, pyriproxyfen
47597                                                                                                 imidacloprid, moxidectin
47600                                                                                                 imidacloprid, moxidectin
47628                                                                                                 fipronil, (s)-methoprene
47629                                                                                             ivermectin, pyrantel pamoate
47630                                                                                               imidacloprid, pyriproxyfen
47635                                                                                                 imidacloprid, permethrin
47636                                                                                                               ivermectin
47658                                                                             florfenicol, mometasone furoate, terbinafine
47681                                                                                             ivermectin, pyrantel pamoate
47684                                                                                        betamethasone, gentamicin sulfate
47693                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47694                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47696                                                                                             ivermectin, pyrantel pamoate
47698                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47699                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47702                                                                                                       miconazole nitrate
47706                                                                                               milbemycin oxime, spinosad
47715                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47716                                                                                                  ketoconazole, tris-edta
47720                                                                                                  ketoconazole, tris-edta
47721                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47733                                                                                               milbemycin oxime, spinosad
47734                                                                             dexamethasone, neomycin sulfate, polymyxin b
47739                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47743                                                                                              lufenuron, milbemycin oxime
47744                                                                                              lufenuron, milbemycin oxime
47745                                                                                              lufenuron, milbemycin oxime
47746                                                                                              lufenuron, milbemycin oxime
47752                                                                             florfenicol, mometasone furoate, terbinafine
47755                                                                                                 fipronil, (s)-methoprene
47760                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47800                                                                                             ivermectin, pyrantel pamoate
47801                                                                                                 fipronil, (s)-methoprene
47802                                                                                             ivermectin, pyrantel pamoate
47803                                                                                                 fipronil, (s)-methoprene
47808                                                                                             ivermectin, pyrantel pamoate
47810                                                                                                               afoxolaner
47811                                                                                             ivermectin, pyrantel pamoate
47812                                                                                                               afoxolaner
47815                                                                                             ivermectin, pyrantel pamoate
47816                                                                                                               afoxolaner
47817                                                                               clinical trial - cancer prevention vaccine
47825                                                                                                            yunnan baiyao
47835                                                                                lufenuron, milbemycin oxime, praziquantel
47836                                                                                lufenuron, milbemycin oxime, praziquantel
47840                                                                                lufenuron, milbemycin oxime, praziquantel
47847                                                                                                         tylosin tartrate
47860                                                                                                               fluralaner
47861                                                                                                    clorsulon, ivermectin
47862                                                                                                    clorsulon, ivermectin
47863                                                                                                               fluralaner
47877                                                                                                  triamcinolone acetonide
47887                                                                                                               fluralaner
47888                                                                                             ivermectin, pyrantel pamoate
47889                                                                                                                  omega 3
47890                                                                                       joint supplement (glucosamine hcl)
47891                                                                                                                probiotic
47894                                                                                        trimeprazine tartrate, prednisone
47900                                                                                        betamethasone, gentamicin sulfate
47909                                                                                             ivermectin, pyrantel pamoate
47910                                                                             florfenicol, mometasone furoate, terbinafine
47951                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47952                                                                                                     cefpodoxime proxetil
47953                                                                                        betamethasone, gentamicin sulfate
47969                                                                                lufenuron, milbemycin oxime, praziquantel
47970                                                                                                               afoxolaner
47971                                                                                              lufenuron, milbemycin oxime
47975                                                                                lufenuron, milbemycin oxime, praziquantel
47976                                                                                              lufenuron, milbemycin oxime
47981                                                                                                         milbemycin oxime
47983                                                                                           milbemycin oxime, praziquantel
47984                                                                                       fipronil, permethrin, pyriproxyfen
47985                                                                                              lufenuron, milbemycin oxime
47989                                                                                              lufenuron, milbemycin oxime
47990                                                                                               imidacloprid, pyriproxyfen
47995                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47996                                                                                              lufenuron, milbemycin oxime
47997                                                                                                               afoxolaner
47998                                                                                                       maropitant citrate
47999                                                                                                       maropitant citrate
48000                                                                                                                carprofen
48001                                                                                                             enrofloxacin
48002                                                                                                         liver supplement
48003                                                                                                              ondansetron
48004                                                                                                            metronidazole
48005                                                                                                         cyclophosphamide
48007                                                                                                                  sotalol
48013                                                                                                               afoxolaner
48014                                                                                                               afoxolaner
48016                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
48020                                                                                             ivermectin, pyrantel pamoate
48021                                                                                                               afoxolaner
48028                                                                                             ivermectin, pyrantel pamoate
48029                                                                                                               afoxolaner
48030                                                                                                             multivitamin
48031                                                                                                                  omega 3
48034                                                                                                     digestive supplement
48035                                                                                                                probiotic
48040                                                                                             ivermectin, pyrantel pamoate
48041                                                                                                               afoxolaner
48046                                                                                             ivermectin, pyrantel pamoate
48047                                                                                                               afoxolaner
48048                                                                                                             multivitamin
48049                                                                                                                  omega 3
48069                                                                                                         tylosin tartrate
48072                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48087                                                                                             ivermectin, pyrantel pamoate
48088                                                                                                               fluralaner
48089                                                                                                                probiotic
48090                                                                                                                  omega 3
48094                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
48100                                                                             dexamethasone, neomycin sulfate, polymyxin b
48101                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48102                                                                                             ivermectin, pyrantel pamoate
48103                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48105                                                                                             ivermectin, pyrantel pamoate
48106                                                                                                 flumethrin, imidacloprid
48107                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
48108                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48109                                                                                           milbemycin oxime, praziquantel
48110                                                                                                 flumethrin, imidacloprid
48114                                                                                      ear cleaner (zymox), hydrocortisone
48120                                                                                              lufenuron, milbemycin oxime
48121                                                                                               imidacloprid, pyriproxyfen
48127                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48131                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48132                                                                                              lufenuron, milbemycin oxime
48133                                                                                                               fluralaner
48142                                                                                              lufenuron, milbemycin oxime
48143                                                                                               imidacloprid, pyriproxyfen
48147                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48148                                                                                              lufenuron, milbemycin oxime
48151                                                                                              lufenuron, milbemycin oxime
48152                                                                                                               fluralaner
48155                                                                                              lufenuron, milbemycin oxime
48157                                                                                             ivermectin, pyrantel pamoate
48158                                                                                                               fluralaner
48159                                                                                             ivermectin, pyrantel pamoate
48160                                                                                                               fluralaner
48163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48167                                                                                                               ivermectin
48169                                                                                                                trazodone
48178                                                                          betamethasone, clotrimazole, gentamicin sulfate
48182                                                                                             ivermectin, pyrantel pamoate
48185                                                                                                         sulfadimethoxine
48188                                                                          betamethasone, clotrimazole, gentamicin sulfate
48201                                                                          betamethasone, clotrimazole, gentamicin sulfate
48213                                                                                                         phytosphingosine
48214                                                                                                               afoxolaner
48215                                                                                             ivermectin, pyrantel pamoate
48217                                                                                             ivermectin, pyrantel pamoate
48220                                                                                                               ampicillin
48221                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48222                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48223                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48231                                                                                              lufenuron, milbemycin oxime
48237                                                                             dexamethasone, neomycin sulfate, polymyxin b
48238                                                                                              lufenuron, milbemycin oxime
48240                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48248                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48251                                                                                                         milbemycin oxime
48252                                                                                                               afoxolaner
48258                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48265                                                                          betamethasone, clotrimazole, gentamicin sulfate
48266                                                                                                      sodium hypochlorite
48267                                                                          betamethasone, clotrimazole, gentamicin sulfate
48271                                                                                              lufenuron, milbemycin oxime
48274                                                                                                 imidacloprid, permethrin
48277                                                                                                 fipronil, (s)-methoprene
48285                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48287                                                                                                          interferon alfa
48288                                                                                      ear cleaner (zymox), hydrocortisone
48289                                                                                             ivermectin, pyrantel pamoate
48291                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48292                                                                                             ivermectin, pyrantel pamoate
48294                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48297                                                                                             ivermectin, pyrantel pamoate
48298                                                                                                               afoxolaner
48299                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48300                                                                                             ivermectin, pyrantel pamoate
48306                                                                                              lufenuron, milbemycin oxime
48307                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48310                                                                                              lufenuron, milbemycin oxime
48311                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48314                                                                                                              omega 3-6-9
48322                                                                                                                probiotic
48327                                                                                                 fipronil, (s)-methoprene
48328                                                                                lufenuron, milbemycin oxime, praziquantel
48334                                                                                                  triamcinolone acetonide
48336                                                                                        betamethasone, gentamicin sulfate
48337                                                                                                            dexamethasone
48338                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48339                                                                           dexamethasone, neomycin sulfate, thiabendazole
48342                                                                                                            dexamethasone
48343                                                                                        betamethasone, gentamicin sulfate
48344                                                                                              lufenuron, milbemycin oxime
48345                                                                             dexamethasone, neomycin sulfate, polymyxin b
48350                                                                                                                 ketamine
48351                                                                                                                 diazepam
48352                                                                                                             acepromazine
48353                                                                                                         atropine sulfate
48354                                                                                                            buprenorphine
48355                                                                                                               isoflurane
48374                                                                                                     prednisolone acetate
48376                                                                                                            dexamethasone
48378                                                                                                     prednisolone acetate
48380                                                                                             ivermectin, pyrantel pamoate
48381                                                                                                               afoxolaner
48383                                                                                                               afoxolaner
48384                                                                                             ivermectin, pyrantel pamoate
48394                                                                           mometasone furoate, orbifloxacin, posaconazole
48406                                                                                                                probiotic
48420                                                                                           sulfamethoxazole, trimethoprim
48438                                                                               ivermectin, praziquantel, pyrantel pamoate
48439                                                                                           milbemycin oxime, praziquantel
48441                                                                                             ivermectin, pyrantel pamoate
48442                                                                                                               fluralaner
48444                                                                                             ivermectin, pyrantel pamoate
48447                                                                                             ivermectin, pyrantel pamoate
48448                                                                                                               afoxolaner
48481                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48483                                                                                                      silver sulfadiazine
48494                                                                                             ivermectin, pyrantel pamoate
48495                                                                                                               fluralaner
48496                                                                                                               fluralaner
48497                                                                                                          dexmedetomidine
48498                                                                                                         milbemycin oxime
48499                                                                                                          dexmedetomidine
48500                                                                                                         milbemycin oxime
48502                                                                                                            metronidazole
48503                                                                                                          dexmedetomidine
48504                                                                                                         milbemycin oxime
48505                                                                                                               fluralaner
48513                                                                                              lufenuron, milbemycin oxime
48520                                                                                                   ear cleaner (otirinse)
48521                                                                          betamethasone, clotrimazole, gentamicin sulfate
48540                                                                                              lufenuron, milbemycin oxime
48541                                                                                              lufenuron, milbemycin oxime
48542                                                                                                               fluralaner
48560                                                                                  betamethasone, florfenicol, terbinafine
48598                                                                                              lufenuron, milbemycin oxime
48602                                                                                                     prednisolone acetate
48610                                                                                                               ivermectin
48611                                                                                             ivermectin, pyrantel pamoate
48615                                                                                             ivermectin, pyrantel pamoate
48621                                                                                        betamethasone, gentamicin sulfate
48624                                                                                        betamethasone, gentamicin sulfate
48633                                                                                        betamethasone, gentamicin sulfate
48636                                                                                                                mupirocin
48643                                                                                              lufenuron, milbemycin oxime
48661                                                                                                               ivermectin
48662                                                                                                 fipronil, (s)-methoprene
48664                                                                                             ivermectin, pyrantel pamoate
48667                                                                                             ivermectin, pyrantel pamoate
48668                                                                                                 fipronil, (s)-methoprene
48673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48680                                                                                                               afoxolaner
48683                                                                                                 imidacloprid, permethrin
48684                                                                                             ivermectin, pyrantel pamoate
48692                                                                                                     cefpodoxime proxetil
48693                                                                                                                carprofen
48694                                                                           dexamethasone, neomycin sulfate, thiabendazole
48696                                                                                             ivermectin, pyrantel pamoate
48697                                                                                                               afoxolaner
48698                                                                                                 fipronil, (s)-methoprene
48712                                                                                             ivermectin, pyrantel pamoate
48713                                                                                                               afoxolaner
48718                                                                               ivermectin, praziquantel, pyrantel pamoate
48719                                                                             dexamethasone, neomycin sulfate, polymyxin b
48720                                                                                                         milbemycin oxime
48721                                                                                                         milbemycin oxime
48722                                                                                                 flumethrin, imidacloprid
48724                                                                                           milbemycin oxime, praziquantel
48725                                                                                                 flumethrin, imidacloprid
48729                                                                                           milbemycin oxime, praziquantel
48733                                                                                                               fluralaner
48734                                                                                           milbemycin oxime, praziquantel
48735                                                                                                               afoxolaner
48736                                                                                                 flumethrin, imidacloprid
48770                                                                             dexamethasone, neomycin sulfate, polymyxin b
48782                                                                                                 flumethrin, imidacloprid
48802                                                                             dexamethasone, neomycin sulfate, polymyxin b
48806                                                                          betamethasone, clotrimazole, gentamicin sulfate
48808                                                                          betamethasone, clotrimazole, gentamicin sulfate
48812                                                                                                 fipronil, (s)-methoprene
48819                                                                                              lufenuron, milbemycin oxime
48821                                                                                              lufenuron, milbemycin oxime
48835                                                                           dexamethasone, neomycin sulfate, thiabendazole
48845                                                                                             ivermectin, pyrantel pamoate
48855                                                                                               milbemycin oxime, spinosad
48859                                                                                          atropine sulfate, diphenoxylate
48862                                                                               dextromethorphan hydrobromide, guaifenesin
48889                                                                                                                probiotic
48890                                                                                             ivermectin, pyrantel pamoate
48891                                                                                                               fluralaner
48892                                                                          betamethasone, clotrimazole, gentamicin sulfate
48893                                                                             dexamethasone, neomycin sulfate, polymyxin b
48894                                                                                           milbemycin oxime, praziquantel
48902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48906                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48918                                                                                                 fipronil, (s)-methoprene
48921                                                                                        betamethasone, gentamicin sulfate
48935                                                                                                               ivermectin
48946                                                                                 febantel, praziquantel, pyrantel pamoate
48994                                                                                                 imidacloprid, moxidectin
48997                                                                                                 joint supplement (other)
49002                                                                                             ivermectin, pyrantel pamoate
49005                                                                                        betamethasone, gentamicin sulfate
49012                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
49015                                                                                                 fipronil, (s)-methoprene
49016                                                                                   cyphenothrin, fipronil, (s)-methoprene
49017                                                                                             ivermectin, pyrantel pamoate
49018                                                                                                               nitenpyram
49025                                                                                             ivermectin, pyrantel pamoate
49026                                                                                   fipronil, pyriproxyfen, (s)-methoprene
49027                                                                                        betamethasone, gentamicin sulfate
49030                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49033                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49034                                                                                             ivermectin, pyrantel pamoate
49035                                                                                                               fluralaner
49036                                                                                                                  omega 3
49042                                                                                    chlorhexidine gluconate, ketoconazole
49044                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
49046                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49051                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49052                                                                             dexamethasone, neomycin sulfate, polymyxin b
49082                                                                                             ivermectin, pyrantel pamoate
49084                                                                                             ivermectin, pyrantel pamoate
49096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49105                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49117                                                                                             ivermectin, pyrantel pamoate
49120                                                                                           sulfamethoxazole, trimethoprim
49123                                                                                               milbemycin oxime, spinosad
49127                                                                              mebendazole, praziquantel, pyrantel pamoate
49128                                                                                                               ivermectin
49129                                                                                                               afoxolaner
49130                                                                           beclomethasone, clotrimazole, neomycin sulfate
49163                                                                                        allergy immunotherapy - injection
49164                                                                                             ivermectin, pyrantel pamoate
49167                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49168                                                                                                   unspecified medication
49169                                                                                             ivermectin, pyrantel pamoate
49170                                                                                                 flumethrin, imidacloprid
49184                                                                                                                 fipronil
49193                                                                                                         liver supplement
49196                                                                                 febantel, praziquantel, pyrantel pamoate
49208                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49209                                                                                                          cbd or hemp oil
49216                                                                                               milbemycin oxime, spinosad
49217                                                                                               milbemycin oxime, spinosad
49218                                                                                               milbemycin oxime, spinosad
49219                                                                                               milbemycin oxime, spinosad
49220                                                                                               milbemycin oxime, spinosad
49227                                                                                                               benzocaine
49229                                                                                                               benzocaine
49231                                                                                         burow's solution, hydrocortisone
49232                                                                             dexamethasone, neomycin sulfate, polymyxin b
49248                                                                               ivermectin, praziquantel, pyrantel pamoate
49252                                                                                              lufenuron, milbemycin oxime
49253                                                                                                                sarolaner
49304                                                                          betamethasone, clotrimazole, gentamicin sulfate
49316                                                                                             ivermectin, pyrantel pamoate
49323                                                                                                 fipronil, (s)-methoprene
49324                                                                                             ivermectin, pyrantel pamoate
49343                                                                                              lufenuron, milbemycin oxime
49345                                                                                        betamethasone, gentamicin sulfate
49346                                                                                              lufenuron, milbemycin oxime
49348                                                                                              lufenuron, milbemycin oxime
49350                                                                                              lufenuron, milbemycin oxime
49351                                                                                                               afoxolaner
49352                                                                                              lufenuron, milbemycin oxime
49371                                                                                                     natural wart remover
49372                                                                                             ivermectin, pyrantel pamoate
49376                                                                                              lufenuron, milbemycin oxime
49377                                                                                                 fipronil, (s)-methoprene
49378                                                                                              lufenuron, milbemycin oxime
49379                                                                                               imidacloprid, pyriproxyfen
49388                                                                                              lufenuron, milbemycin oxime
49393                                                                             florfenicol, mometasone furoate, terbinafine
49394                                                                             florfenicol, mometasone furoate, terbinafine
49395                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
49398                                                                                                    gabapentin, trazodone
49403                                                                                           milbemycin oxime, praziquantel
49404                                                                                                               fluralaner
49408                                                                                             ivermectin, pyrantel pamoate
49409                                                                                                               afoxolaner
49437                                                                                                               afoxolaner
49438                                                                                             ivermectin, pyrantel pamoate
49442                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49460                                                                                    dinotefuran, permethrin, pyriproxyfen
49461                                                                                             ivermectin, pyrantel pamoate
49462                                                                                   joint supplement (glucosamine hcl/msm)
49463                                                                                             ivermectin, pyrantel pamoate
49473                                                                                                         milbemycin oxime
49509                                                                                               imidacloprid, pyriproxyfen
49510                                                                                             ivermectin, pyrantel pamoate
49518                                                                                             ivermectin, pyrantel pamoate
49520                                                                             florfenicol, mometasone furoate, terbinafine
49523                                                                                             ivermectin, pyrantel pamoate
49526                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49531                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49549                                                                                             ivermectin, pyrantel pamoate
49550                                                                                                               afoxolaner
49553                                                                                             ivermectin, pyrantel pamoate
49554                                                                                                               afoxolaner
49567                                                                                             ivermectin, pyrantel pamoate
49568                                                                                                               isoflurane
49569                                                                                             ivermectin, pyrantel pamoate
49572                                                                                             ivermectin, pyrantel pamoate
49588                                                                                             ivermectin, pyrantel pamoate
49590                                                                                               imidacloprid, pyriproxyfen
49591                                                                                             ivermectin, pyrantel pamoate
49592                                                                                   joint supplement (glucosamine hcl/msm)
49593                                                                                              lufenuron, milbemycin oxime
49596                                                                                                               selamectin
49601                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49605                                                                                   joint supplement (glucosamine hcl/msm)
49607                                                                                               milbemycin oxime, spinosad
49608                                                                                   joint supplement (glucosamine hcl/msm)
49645                                                                                             ivermectin, pyrantel pamoate
49649                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49654                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49659                                                                             dexamethasone, neomycin sulfate, polymyxin b
49698                                                                                               milbemycin oxime, spinosad
49699                                                                                               imidacloprid, pyriproxyfen
49705                                                                              joint supplement (glucosamine hcl), omega 3
49715                                                                             florfenicol, mometasone furoate, terbinafine
49731                                                                                             ivermectin, pyrantel pamoate
49748                                                                                                 imidacloprid, permethrin
49753                                                                                               imidacloprid, pyriproxyfen
49754                                                                                                 fipronil, (s)-methoprene
49755                                                                                                         milbemycin oxime
49756                                                                                                 fipronil, (s)-methoprene
49757                                                                                                         milbemycin oxime
49758                                                                                                         milbemycin oxime
49764                                                                                        enrofloxacin, silver sulfadiazine
49766                                                                                                  chlorhexidine gluconate
49767                                                                                                 fipronil, (s)-methoprene
49768                                                                                                               ivermectin
49769                                                                                                  chlorhexidine gluconate
49773                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
49792                                                                                             ivermectin, pyrantel pamoate
49793                                                                                                               afoxolaner
49799                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49812                                                                             florfenicol, mometasone furoate, terbinafine
49820                                                                                             ivermectin, pyrantel pamoate
49821                                                                                                               afoxolaner
49845                                                                                                             enrofloxacin
49846                                                                                       amoxicillin, clavulanate potassium
49849                                                                                    dinotefuran, permethrin, pyriproxyfen
49852                                                                                                                probiotic
49854                                                                                    dinotefuran, permethrin, pyriproxyfen
49855                                                                                                                probiotic
49856                                                                                                                meloxicam
49857                                                                                    dinotefuran, permethrin, pyriproxyfen
49861                                                                                    dinotefuran, permethrin, pyriproxyfen
49862                                                                                    dinotefuran, permethrin, pyriproxyfen
49871                                                                                                             fenbendazole
49878                                                                                                               ivermectin
49883                                                                                                                probiotic
49886                                                                                             ivermectin, pyrantel pamoate
49889                                                                                             ivermectin, pyrantel pamoate
49890                                                                                    dinotefuran, permethrin, pyriproxyfen
49898                                                                                                             fenbendazole
49905                                                                                                               ivermectin
49906                                                                                                  acetic acid, boric acid
49907                                                                                           milbemycin oxime, praziquantel
49908                                                                                             ivermectin, pyrantel pamoate
49911                                                                                             ivermectin, pyrantel pamoate
49912                                                                                    dinotefuran, permethrin, pyriproxyfen
49963                                                                                             ivermectin, pyrantel pamoate
49966                                                                             dexamethasone, neomycin sulfate, polymyxin b
49978                                                                                              lufenuron, milbemycin oxime
49985                                                                                              lufenuron, milbemycin oxime
49986                                                                                                 fipronil, (s)-methoprene
49987                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49990                                                                                                                probiotic
49991                                                                                              lufenuron, milbemycin oxime
49992                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49996                                                                                                                 propofol
50000                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50001                                                                                              lufenuron, milbemycin oxime
50002                                                                                                                  omega 3
50004                                                                                              lufenuron, milbemycin oxime
50006                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50007                                                                                                                  omega 3
50008                                                                                              lufenuron, milbemycin oxime
50009                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50011                                                                                                 fipronil, (s)-methoprene
50012                                                                                                                  omega 3
50014                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50029                                                                                              lufenuron, milbemycin oxime
50030                                                                                                 fipronil, (s)-methoprene
50033                                                                                              lufenuron, milbemycin oxime
50034                                                                                                 fipronil, (s)-methoprene
50048                                                                                              lufenuron, milbemycin oxime
50050                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
50073                                                                             florfenicol, mometasone furoate, terbinafine
50077                                                                                                               ivermectin
50107                                                                                             ivermectin, pyrantel pamoate
50108                                                                                                               fluralaner
50115                                                                                                               ivermectin
50116                                                                                                               afoxolaner
50117                                                                                             ivermectin, pyrantel pamoate
50118                                                                                                               ivermectin
50154                                                                                                         milbemycin oxime
50159                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
50161                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
50187                                                                                lufenuron, milbemycin oxime, praziquantel
50189                                                                                               imidacloprid, pyriproxyfen
50190                                                                                              lufenuron, milbemycin oxime
50194                                                                                              lufenuron, milbemycin oxime
50195                                                                                               imidacloprid, pyriproxyfen
50196                                                                                              lufenuron, milbemycin oxime
50198                                                                                              lufenuron, milbemycin oxime
50199                                                                                               imidacloprid, pyriproxyfen
                                                                                                 dose
22                                                                                        unspecified
40                                                                                        unspecified
41                                                                                        unspecified
42                                                                                        unspecified
46                                                                        based on weight (40-60 lbs)
48                                                                       based on weight (51-100 lbs)
49                                                                       based on weight (51-100 lbs)
51                                                                        based on weight (21-40 lbs)
59                                                                       based on weight (51-100 lbs)
60                                                                          based on weight (55+ lbs)
62                                                                       based on weight (51-100 lbs)
63                                                                       based on weight (51-100 lbs)
67                                                                                        application
70                                                                                        application
74                                                                                        bottle/vial
84                                                                                        application
87                                                                                        application
91                                                                                        application
111                                                                                       unspecified
112                                                                                       unspecified
113                                                                                       unspecified
114                                                                                       unspecified
149                                                                                       unspecified
150                                                                                       unspecified
151                                                                                       unspecified
152                                                                                       unspecified
153                                                                                       unspecified
155                                                                                       unspecified
167                                                                                       unspecified
188                                                                       based on weight (44-88 lbs)
192                                                                       based on weight (44-88 lbs)
220                                                                       based on weight (44-88 lbs)
230                                                              272 ivermectin, 227 pyrantel pamoate
233                                                                                         4-6 drops
235                                                              272 ivermectin, 227 pyrantel pamoate
236                                                                                       unspecified
237                                                                                       unspecified
238                                                                                      small amount
242                                                                                     1 tube - 1 ml
243                                                                                            1 tube
248                                                                                            1 tube
257                                                                       based on weight (40-60 lbs)
275                                                                      based on weight (51-100 lbs)
276                                                                      based on weight (51-100 lbs)
277                                                                    based on weight (60.1-121 lbs)
279                                                                                      small amount
280                                                                                             spray
310                                                                                       unspecified
317                                                                                       as directed
318                                                                      based on weight (51-100 lbs)
324                                                                                       as directed
328                                                                                   based on weight
329                                                                                   based on weight
332                                                                                   based on weight
333                                                                                   based on weight
347                                                                                           23, 460
348                                                                                          23 , 460
350                                                                                           23, 460
351                                                                                           23, 460
353                                                                                           23, 460
355                                                                                           23, 460
366                                                                                       unspecified
368                                                                      based on weight (60-121 lbs)
375                                                                      based on weight (51-100 lbs)
376                                                                       based on weight (44-88 lbs)
383                                                                      based on weight (51-100 lbs)
384                                                                      based on weight (51-100 lbs)
385                                                                             1 tablet/pill/capsule
386                                                                      based on weight (51-100 lbs)
403                                                                                       unspecified
404                                                                                       unspecified
414                                                                                          23 , 460
447                                                                                       unspecified
449                                                                                       unspecified
453                                                                                       unspecified
480                                                                                            1 tube
496                                                              272 ivermectin, 227 pyrantel pamoate
498                                                                      based on weight (51-100 lbs)
519                                                                                          inhalant
537                                                                                             drops
597                                                                         based on weight (60+ lbs)
598                                                                         based on weight (60+ lbs)
603                                                                             1 tablet/pill/capsule
604                                                                             1 tablet/pill/capsule
610                                                                                      small amount
619                                                                                       unspecified
637                                                                                   based on weight
642                                                                                      small amount
686                                                                                       unspecified
688                                                                                       unspecified
703                                                                      based on weight (51-100 lbs)
704                                                                     based on weight (44.1-88 lbs)
709                                                                                       unspecified
710                                                                                       unspecified
712                                                                                       unspecified
725                                                                27 milbemycin oxime, 1620 spinosad
728                                                                      based on weight (50-100 lbs)
729                                                                         based on weight (60+ lbs)
730                                                              272 ivermectin, 227 pyrantel pamoate
733                                                                                            1 drop
734                                                                                   0.25 inch strip
737                                                                                            1 drop
738                                                                                       unspecified
739                                                                                       unspecified
754                                                                      based on weight (51-100 lbs)
755                                                                         based on weight (45+ lbs)
757                                                                      based on weight (51-100 lbs)
760                                                                                            1 drop
778                                                                                       unspecified
785                                                                      based on weight (60-120 lbs)
790                                                                      based on weight (60-120 lbs)
792                                                                      based on weight (51-100 lbs)
797                                                                                       unspecified
798                                                                                       unspecified
799                                                                                       unspecified
800                                                                                       unspecified
801                                                                                       unspecified
802                                                                                       unspecified
803                                                                       based on weight (45-88 lbs)
804                                                                     based on weight (44.1-88 lbs)
810                                                                       based on weight (40-85 lbs)
816                                                                                       unspecified
819                                                                       based on weight (26-50 lbs)
820                                                                       based on weight (26-50 lbs)
823                                                                       based on weight (45-88 lbs)
824                                                                      based on weight (51-100 lbs)
832                                                                                       unspecified
850                                                                                           2.68 ml
851                                                                based on weight (50-100 lbs) - 272
862                                                                                   based on weight
871                                                                                         13.5, 810
874                                                                                          27, 1620
877                                                                                       application
878                                                                                          27, 1620
879                                                                                          27, 1620
880                                                                                          27, 1620
884                                                                                         13.5, 810
887                                                                                          27, 1620
891                                                                                          27, 1620
893                                                                                          27, 1620
899                                                                                          27, 1620
901                                                                                       unspecified
905                                                                                       unspecified
913                                                                         based on weight (55+ lbs)
921                                                                      based on weight (51-100 lbs)
929                                                                                            1 drop
930                                                                                            1 drop
950                                                                             1 tablet/pill/capsule
955                                                                                            collar
958                                                              272 ivermectin, 227 pyrantel pamoate
969                                                                                       unspecified
970                                                                                            1 pump
977                                                                                       application
982                                                                                       unspecified
983                                                                                       unspecified
989                                                                                   based on weight
1001                                                                                      unspecified
1017                                                                     based on weight (50-100 lbs)
1018                                                                     based on weight (60-121 lbs)
1019                                                                                           1 pump
1020                                                                                     small amount
1021                                                                                         wipe/pad
1027                                                                                      unspecified
1028                                                                                           1 pump
1029                                                                                       1 wipe/pad
1030                                                                                     small amount
1031                                                                                     small amount
1033                                                                                  syringe/pipette
1036                                                                                     small amount
1037                                                                                           1 pump
1039                                                                                    1 bottle/vial
1042                                                                                      unspecified
1050                                                                                  based on weight
1072                                                                                      unspecified
1073                                                                                      unspecified
1074                                                                                      unspecified
1087                                                                     based on weight (60-120 lbs)
1091                                                                                     small amount
1097                                                               27 milbemycin oxime, 1620 spinosad
1098                                                                                             4 ml
1099                                                                     based on weight (51-100 lbs)
1100                                                                     based on weight (51-100 lbs)
1101                                                                        based on weight (55+ lbs)
1108                                                                                       1 wipe/pad
1111                                                               460 lufenuron, 23 milbemycin oxime
1112                                                                                         wipe/pad
1116                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
1129                                                                     based on weight (21-100 lbs)
1131                                                                                          5 drops
1150                                                                                     small amount
1152                                                                                      unspecified
1153                                                                     based on weight (51-100 lbs)
1154                                                                     based on weight (51-100 lbs)
1155                                                                     based on weight (51-100 lbs)
1159                                                                   based on weight (50.1-100 lbs)
1160                                                                     based on weight (51-100 lbs)
1161                                                                        based on weight (60+ lbs)
1168                                                                                  based on weight
1169                                                                      based on weight (26-50 lbs)
1170                                                                      based on weight (44-88 lbs)
1173                                                                      based on weight (45-88 lbs)
1174                                                                                         272, 228
1175                                                                                       8.8%, 9.8%
1176                                                                                         272, 228
1177                                                                                         8.8, 9.8
1179                                                                                      unspecified
1185                                                                                      unspecified
1186                                                                                      unspecified
1187                                                                                      unspecified
1189                                                                                      unspecified
1190                                                                                      unspecified
1193                                                                     based on weight (51-100 lbs)
1194                                                                     based on weight (51-100 lbs)
1195                                                                   based on weight (50.1-100 lbs)
1208                                                                        based on weight (55+ lbs)
1217                                                             272 ivermectin, 227 pyrantel pamoate
1226                                                                        based on weight (55+ lbs)
1233                                                                                      unspecified
1247                                                                     based on weight (51-100 lbs)
1285                                                                                      unspecified
1336                                                                                      unspecified
1344                                                                   based on weight (50.1-100 lbs)
1345                                                                                          6 drops
1346                                                                                  moderate amount
1348                                                                                         2 sprays
1355                                                                     based on weight (89-132 lbs)
1371                                                                     based on weight (51-100 lbs)
1377                                                                            1 tablet/pill/capsule
1378                                                                            1 tablet/pill/capsule
1379                                                                            1 tablet/pill/capsule
1380                                                                            1 tablet/pill/capsule
1398                                                                                        1-2 drops
1404                                                                                      unspecified
1405                                                                                      unspecified
1415                                                                                      unspecified
1417                                                                                           1 tube
1419                                                                            1 tablet/pill/capsule
1420                                                                                676 dha, 1030 epa
1422                                                                     based on weight (51-100 lbs)
1434                                                                      based on weight (45-88 lbs)
1435                                                                   based on weight (50.1-100 lbs)
1438                                                                     based on weight (51-100 lbs)
1441                                                                     based on weight (51-100 lbs)
1442                                                                   based on weight (50.1-100 lbs)
1443                                                                      based on weight (44-88 lbs)
1450                                                                      based on weight (45-88 lbs)
1451                                                                     based on weight (51-100 lbs)
1459                                                                       based on weight (2-55 lbs)
1462                                                                      based on weight (56-95 lbs)
1464                                                                     based on weight (51-100 lbs)
1473                                                                                      unspecified
1475                                                                                      unspecified
1491                                                                            1 tablet/pill/capsule
1499                                                                                        27 , 1620
1500                                                             27mg milbemycin oxime, 1620 spinosad
1501                                                                                      unspecified
1504                                                                                         0.25 tsp
1511                                                                    based on weight (24.1-60 lbs)
1512                                                                        based on weight (55+ lbs)
1514                                                                    based on weight (24.1-60 lbs)
1528                                                                        based on weight (55+ lbs)
1529                                                                     based on weight (51-100 lbs)
1532                                                                        based on weight (55+ lbs)
1534                                                                        based on weight (55+ lbs)
1535                                                                     based on weight (51-100 lbs)
1536                                                                        based on weight (55+ lbs)
1537                                                            23 milbemycin oxime, 228 praziquantel
1538                                                            23 milbemycin oxime, 228 praziquantel
1539                                                                        based on weight (55+ lbs)
1541                                                                                      unspecified
1542                                                                                      unspecified
1556                                                                                         inhalant
1572                                                            23 milbemycin oxime, 228 praziquantel
1586                                                                                     small amount
1587                                                                                      unspecified
1598                                                                     based on weight (51-100 lbs)
1599                                                             272 ivermectin, 227 pyrantel pamoate
1633                                                                            1 tablet/pill/capsule
1634                                                                      based on weight (45-88 lbs)
1635                                                                              tablet/pill/capsule
1636                                                                            1 tablet/pill/capsule
1650                                                                                      unspecified
1663                                                                     based on weight (60-120 lbs)
1668                                                                                      unspecified
1683                                                                                           collar
1684                                                                                      unspecified
1685                                                                                            spray
1689                                                                                  moderate amount
1690                                                                                          1 spray
1692                                                                                  moderate amount
1695                                                                                           1 drop
1697                                                                                  based on weight
1708                                                                                          23, 460
1710                                                               460 lufenuron, 26 milbemycin oxime
1712                                                                     based on weight (50-100 lbs)
1715                                                                     based on weight (51-100 lbs)
1718                                                               460 lufenuron, 23 milbemycin oxime
1720                                                                     based on weight (51-100 lbs)
1729                                                                                           1 tube
1730                                                                            1 tablet/pill/capsule
1743                                                                                  based on weight
1747                                                                                           1 bath
1748                                                                                      application
1749                                                                     based on weight (60-120 lbs)
1756                                                                                      unspecified
1757                                                                                      unspecified
1758                                                                     based on weight (51-100 lbs)
1759                                                                     based on weight (60-121 lbs)
1760                                                                                     80  - 4.1 ml
1761                                                                                     0.284 , 0.57
1769                                                                                      application
1773                                                                         3 tablets/pills/capsules
1774                                                                                         23 , 460
1789                                                                                      unspecified
1791                                                                                      unspecified
1794                                                                                      unspecified
1795                                                                                      unspecified
1796                                                                                      unspecified
1798                                                                         based on weight (75 lbs)
1805                                                                                     small amount
1809                                                                                      unspecified
1812                                                                                            1 tsp
1813                                                                                           1 tbsp
1819                                                                                      unspecified
1820                                                                                      unspecified
1823                                                                                      unspecified
1845                                                                        based on weight (55+ lbs)
1846                                                                     based on weight (51-100 lbs)
1847                                                                        based on weight (55+ lbs)
1848                                                                     based on weight (51-100 lbs)
1849                                                                     based on weight (51-100 lbs)
1850                                                                                  0.25 inch strip
1851                                                                                     small amount
1867                                                                     based on weight (51-100 lbs)
1872                                                                     based on weight (51-100 lbs)
1877                                                                                      unspecified
1887                                                                                            spray
1888                                                                                       continuous
1917                                                                     based on weight (51-100 lbs)
1922                                                                                            spray
1925                                                                                      unspecified
1926                                                                                     small amount
1928                                                                     based on weight (51-100 lbs)
1929                                                                                      unspecified
1931                                                                                     small amount
1939                                                                                      unspecified
1941                                                                                      application
1945                                                                                            spray
1948                                                                                  based on weight
1962                                                                     based on weight (51-100 lbs)
1965                                                                                     small amount
1980                                                                                      application
1981                                                                            1 tablet/pill/capsule
1982                                                                     based on weight (51-100 lbs)
1983                                                                        based on weight (55+ lbs)
1984                                                                                  based on weight
1985                                                                            1 tablet/pill/capsule
1994                                                                                      unspecified
1998                                                                                     small amount
2006                                                             272 ivermectin, 227 pyrantel pamoate
2012                                                                                      unspecified
2013                                                                                      unspecified
2016                                                                     based on weight (51-100 lbs)
2022                                                                                      application
2025                                                                        based on weight (55+ lbs)
2026                                                                     based on weight (50-100 lbs)
2029                                                                     based on weight (51-100 lbs)
2030                                                                                  based on weight
2032                                                                                      unspecified
2033                                                                                      unspecified
2034                                                                                      unspecified
2041                                                                     based on weight (51-100 lbs)
2042                                                                      based on weight (26-50 lbs)
2043                                                                                            11 ml
2050                                                                     based on weight (51-100 lbs)
2075                                                                     based on weight (51-100 lbs)
2083                                                                      based on weight (40-85 lbs)
2084                                                                     based on weight (51-100 lbs)
2085                                                                                  based on weight
2087                                                                     based on weight (51-100 lbs)
2088                                                                      based on weight (44-88 lbs)
2089                                                                        based on weight (80+ lbs)
2091                                                                     based on weight (51-100 lbs)
2093                                                                        based on weight (80+ lbs)
2107                                                                     based on weight (51-100 lbs)
2108                                                                                  based on weight
2109                                                                     based on weight (51-100 lbs)
2110                                                                     based on weight (51-100 lbs)
2113                                                                                         tapering
2115                                                                                      unspecified
2116                                                                                      unspecified
2123                                                                            1 tablet/pill/capsule
2126                                                                     based on weight (51-100 lbs)
2127                                                                     based on weight (51-100 lbs)
2149                                                                     based on weight (51-100 lbs)
2151                                                                     based on weight (51-100 lbs)
2161                                                                     based on weight (51-100 lbs)
2165                                                                                     small amount
2166                                                                                      as directed
2195                                                                                      unspecified
2199                                                                     based on weight (51-100 lbs)
2200                                                                    based on weight (24.1-60 lbs)
2201                                                                                  based on weight
2202                                                                                  based on weight
2203                                                                                  based on weight
2204                                                                     based on weight (51-100 lbs)
2205                                                                    based on weight (24.1-60 lbs)
2206                                                                         2 tablets/pills/capsules
2207                                                                            1 tablet/pill/capsule
2211                                                                                      unspecified
2219                                                                                         1 pellet
2220                                                                                         1 pellet
2224                                                                                      unspecified
2226                                                                                      unspecified
2228                                                                                           1 tbsp
2229                                                                                      unspecified
2233                                                                     based on weight (50-100 lbs)
2241                                                                                      application
2243                                                                     based on weight (50-100 lbs)
2244                                                                      based on weight (44-88 lbs)
2250                                                                                      unspecified
2255                                                                      based on weight (21-55 lbs)
2258                                                                                      unspecified
2259                                                                                      unspecified
2260                                                                                      unspecified
2261                                                                                      unspecified
2262                                                                                      unspecified
2263                                                                                      unspecified
2264                                                                                      unspecified
2265                                                                                      unspecified
2266                                                                                      unspecified
2269                                                                                      unspecified
2270                                                                                      unspecified
2272                                                                                      unspecified
2278                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
2279                                                                     based on weight (51-100 lbs)
2280                                                                     based on weight (51-100 lbs)
2283                                                                     based on weight (51-100 lbs)
2301                                                                                  moderate amount
2302                                                                                       0.75, 0.75
2339                                                                                           1 drop
2342                                                                                           1 drop
2390                                                                                            spray
2398                                                                                            spray
2404                                                                     based on weight (51-100 lbs)
2405                                                                      based on weight (44-88 lbs)
2406                                                                                            1 tsp
2409                                                                     based on weight (51-100 lbs)
2418                                                             272 ivermectin, 227 pyrantel pamoate
2428                                                                   0.5-1 tablet/pill/capsule - 16
2463                                                                                          0.5 cup
2464                                                                              tablet/pill/capsule
2467                                                                              tablet/pill/capsule
2473                                                                                     small amount
2474                                                                                     small amount
2477                                                                                        injection
2478                                                                                        injection
2479                                                                              tablet/pill/capsule
2481                                                                                            spray
2482                                                                     based on weight (51-100 lbs)
2486                                                                                      as directed
2487                                                                                      as directed
2490                                                                                          5 drops
2491                                                                                      application
2492                                                                                      application
2499                                                                                      unspecified
2500                                                                     based on weight (51-100 lbs)
2501                                                                       1 tablet/pill/capsule - 75
2502                                                                     2 tablets/pills/capsules - 1
2503                                                                       1 tablet/pill/capsule - 16
2504                                                                   based on weight (60.1-120 lbs)
2505                                                                            1 tablet/pill/capsule
2506                                                                            1 tablet/pill/capsule
2508                                                                              tablet/pill/capsule
2517                                                                     based on weight (51-100 lbs)
2518                                                                         2 tablets/pills/capsules
2534                                                                                      unspecified
2539                                                                     based on weight (51-100 lbs)
2540                                                                            1 tablet/pill/capsule
2542                                                                     based on weight (51-100 lbs)
2543                                                                        based on weight (18+ lbs)
2545                                                                     based on weight (50-100 lbs)
2546                                                                        based on weight (18+ lbs)
2547                                                                     based on weight (51-100 lbs)
2548                                                                        based on weight (18+ lbs)
2549                                                                                      unspecified
2550                                                                                      unspecified
2558                                                                     based on weight (50-100 lbs)
2559                                                                     based on weight (50-100 lbs)
2560                                                                                  based on weight
2562                                                                     based on weight (50-100 lbs)
2566                                                                              tablet/pill/capsule
2575                                                                                      unspecified
2578                                                                                            spray
2580                                                                                      application
2583                                                                                      unspecified
2599                                                                                      unspecified
2600                                                                                      unspecified
2642                                                                                      unspecified
2651                                                                                  based on weight
2652                                                                                      unspecified
2653                                                                                      unspecified
2655                                                                                      unspecified
2659                                                                                          1 scoop
2660                                                                                      unspecified
2661                                                                                      unspecified
2699                                                                                         2 sprays
2710                                                                     based on weight (51-100 lbs)
2721                                                                                      application
2726                                                                     based on weight (50-100 lbs)
2731                                                                                        13.5, 810
2735                                                                                        13.5, 810
2737                                                                                     23, 228, 460
2738                                                                     based on weight (51-100 lbs)
2739                                                                     based on weight (60-120 lbs)
2742                                                                     based on weight (51-100 lbs)
2743                                                                      based on weight (44-88 lbs)
2745                                                                     based on weight (50-100 lbs)
2746                                                                      based on weight (44-88 lbs)
2748                                                                     based on weight (51-100 lbs)
2749                                                                      based on weight (44-88 lbs)
2753                                                                     based on weight (50-100 lbs)
2756                                                                         based on weight (80 lbs)
2805                                                               based on weight (45-88 lbs) - 2.68
2815                                                                                         300, 600
2818                                                                                  0.25 inch strip
2825                                                                     based on weight (51-100 lbs)
2827                                                                     based on weight (51-100 lbs)
2828                                                                     based on weight (51-100 lbs)
2833                                                                     based on weight (51-100 lbs)
2838                                                                     based on weight (50-100 lbs)
2839                                                                                     small amount
2842                                                                                     small amount
2844                                                                                  0.25 inch strip
2846                                                                     based on weight (50-100 lbs)
2855                                                                                      unspecified
2869                                                                            1 tablet/pill/capsule
2897                                                                            lather and then rinse
2900                                                                                      application
2903                                                                                      unspecified
2904                                                                                  moderate amount
2905                                                                                             bath
2907                                                                                   1 pack/package
2911                                                                            1 tablet/pill/capsule
2912                                                                            1 tablet/pill/capsule
2913                                                                                   1 pack/package
2919                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
2920                                                    based on weight (60-120 lbs) - 136 afoxolaner
2921                                                                                   1 pack/package
2922                                                                     based on weight (50-100 lbs)
2923                                                                     based on weight (60-121 lbs)
2925                                                                                      unspecified
2941                                                               460 lufenuron, 23 milbemycin oxime
2942                                               8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                     based on weight (51-100 lbs)
2944                                                                        based on weight (55+ lbs)
2946                                                                                    1 bottle/vial
2951                                                                                           1 tube
2958                                                                     based on weight (51-100 lbs)
2959                                                                     based on weight (51-100 lbs)
2960                                                                            1 tablet/pill/capsule
2961                                                                                      unspecified
2962                                                                                      unspecified
2963                                                                                      unspecified
2964                                                                                      unspecified
2974                                                                     based on weight (51-100 lbs)
2975                                                                      based on weight (45-88 lbs)
2978                                                                   based on weight (50.1-100 lbs)
2980                                                                                           1 drop
2981                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
2988                                                                                  based on weight
2993                                                                                      unspecified
2997                                                                       1.5 tablets/pills/capsules
3002                                                                  1.5 tablets/pills/capsules - 20
3003                                                                                     small amount
3007                                                                      based on weight (45-88 lbs)
3028                                                                      based on weight (45-88 lbs)
3031                                                                                      unspecified
3055                                                                                      application
3058                                                                                      application
3060                                                                                      unspecified
3095                                                                         2 tablets/pills/capsules
3110                                                                                     small amount
3119                                                                                      as directed
3140                                                                                          2 pumps
3147                                                                                      unspecified
3179                                                                            1 tablet/pill/capsule
3180                                                                                      unspecified
3208                                                                            1 tablet/pill/capsule
3209                                                                            1 tablet/pill/capsule
3212                                                                                           1 pump
3246                                                                     based on weight (50-100 lbs)
3247                                                                     based on weight (50-100 lbs)
3250                                                                     based on weight (50-100 lbs)
3251                                                                     based on weight (50-100 lbs)
3253                                                                     based on weight (50-100 lbs)
3257                                                                     based on weight (50-100 lbs)
3271                                                                     based on weight (51-100 lbs)
3278                                                                                  0.25 inch strip
3280                                                                     based on weight (50-100 lbs)
3284                                                                     based on weight (51-100 lbs)
3287                                                                                      application
3291                                                                                      application
3293                                                                                      application
3294                                                                     based on weight (51-100 lbs)
3300                                                                     based on weight (51-100 lbs)
3305                                                                                     small amount
3312                                                                                     small amount
3313                                                                                     small amount
3339                                                                     based on weight (51-100 lbs)
3342                                                                                      unspecified
3345                                                                                          23, 460
3346                                                               460 lufenuron, 23 milbemycin oxime
3350                                                                                      unspecified
3360                                                                                  based on weight
3366                                                                                      unspecified
3372                                                                                      unspecified
3375                                                                            based on weight - 1.5
3376                                                                                      application
3394                                                                                      unspecified
3399                                                              13.5 milbemycin oxime, 810 spinosad
3403                                                                                        13.5, 810
3404                                                                            1 tablet/pill/capsule
3405                                                                            1 tablet/pill/capsule
3406                                                                                           1 tube
3421                                                                                      unspecified
3422                                                                                            drops
3423                                                                                           1 tube
3425                                                                                      unspecified
3426                                                                                      unspecified
3429                                                                       based on weight (4-60 lbs)
3437                                                                                     small amount
3439                                                                                           1 tube
3445                                                                                      unspecified
3446                                                                                      unspecified
3447                                                                                      unspecified
3448                                                                                      unspecified
3449                                                                                      unspecified
3451                                                                                          23, 460
3455                                                                                          23, 460
3456                                                                      based on weight (45-88 lbs)
3457                                                                     based on weight (51-100 lbs)
3458                                                                      based on weight (45-88 lbs)
3459                                                                                          23, 460
3488                                                                        based on weight (25+ lbs)
3490                                                                    based on weight (44.1-88 lbs)
3491                                                                     based on weight (51-100 lbs)
3492                                                                    based on weight (44.1-88 lbs)
3495                                                                     based on weight (51-100 lbs)
3496                                                                    based on weight (44.1-88 lbs)
3497                                                                     based on weight (51-100 lbs)
3498                                                                    based on weight (44.1-88 lbs)
3512                                                                     based on weight (50-100 lbs)
3513                                                                     based on weight (50-100 lbs)
3514                                                                     based on weight (50-100 lbs)
3515                                                                     based on weight (50-100 lbs)
3516                                                                     based on weight (50-100 lbs)
3517                                                                                      unspecified
3519                                                                     based on weight (51-100 lbs)
3520                                                                                  based on weight
3522                                                                     based on weight (51-100 lbs)
3525                                                             272 ivermectin, 227 pyrantel pamoate
3530                                                                                         0.5%, 3%
3531                                                                                      unspecified
3535                                                                                      unspecified
3581                                                                              tablet/pill/capsule
3619                                                                                          23, 228
3622                                                                                     pack/package
3631                                                                            1 tablet/pill/capsule
3632                                                                            1 tablet/pill/capsule
3635                                                                      based on weight (44-88 lbs)
3636                                                                                             2 ml
3639                                                                                      application
3640                                                                                      application
3641                                                                                      application
3649                                                                                        100 , 400
3650                                                                        based on weight (<80 lbs)
3652                                                                              tablet/pill/capsule
3666                                                                                            spray
3667                                                                                     small amount
3675                                                                                     small amount
3684                                                                                      unspecified
3685                                                                                      unspecified
3691                                                                                      unspecified
3692                                                                                      unspecified
3693                                                                                            spray
3698                                                                      based on weight (40-85 lbs)
3699                                                                      based on weight (40-85 lbs)
3701                                                                     based on weight (51-100 lbs)
3704                                                                     based on weight (50-100 lbs)
3705                                                                                  based on weight
3706                                                                     based on weight (50-100 lbs)
3710                                                                                      unspecified
3718                                                                                     small amount
3719                                                                     based on weight (51-100 lbs)
3725                                                                     based on weight (51-100 lbs)
3726                                                                     based on weight (51-100 lbs)
3735                                                                                             gtts
3741                                                                                      unspecified
3742                                                                                      unspecified
3743                                                                                      unspecified
3744                                                                                      unspecified
3745                                                                                      unspecified
3750                                                                                         23 , 460
3760                                                               27 milbemycin oxime, 1620 spinosad
3773                                                                                      application
3781                                                                                           1 drop
3782                                                                                           1 drop
3783                                                                                           1 drop
3784                                                                      1 tablet/pill/capsule - 250
3785                                                                        1 tablet/pill/capsule - 5
3786                                                                       1 tablet/pill/capsule - 20
3789                                                                                      unspecified
3797                                                                                            spray
3798                                                                                      as directed
3800                                                                                      application
3815                                                                                  based on weight
3829                                                                                     small amount
3830                                                                                           2.5 ml
3835                                                                     based on weight (50-100 lbs)
3836                                                                     based on weight (60-120 lbs)
3838                                                                     based on weight (60-120 lbs)
3840                                                                                     small amount
3848                                                                                  0.25 inch strip
3857                                                                     based on weight (51-100 lbs)
3858                                                                      based on weight (23-44 lbs)
3859                                                                      based on weight (26-50 lbs)
3860                                                                    based on weight (24.1-60 lbs)
3861                                                                                      unspecified
3867                                                                                     small amount
3870                                                                     based on weight (50-100 lbs)
3871                                                                     based on weight (60-120 lbs)
3872                                                                     based on weight (60-120 lbs)
3874                                                                                     small amount
3881                                                                     based on weight (51-100 lbs)
3886                                                                     based on weight (51-100 lbs)
3889                                                                     based on weight (51-100 lbs)
3897                                                                     based on weight (51-100 lbs)
3898                                                                                      unspecified
3900                                                                     based on weight (51-100 lbs)
3903                                                                     based on weight (51-100 lbs)
3906                                                                     based on weight (51-100 lbs)
3911                                                                     based on weight (51-100 lbs)
3938                                                                     based on weight (51-100 lbs)
3943                                                                     based on weight (51-100 lbs)
3944                                                                                           7.5 ml
3945                                                                                             8 oz
3946                                                                    based on weight (24.1-60 lbs)
3952                                                                     based on weight (51-100 lbs)
3972                                                                    based on weight (40.1-60 lbs)
3980                                                                     based on weight (51-100 lbs)
3984                                                                     based on weight (51-100 lbs)
3989                                                                     based on weight (51-100 lbs)
3990                                                                     based on weight (51-100 lbs)
4000                                                                                      unspecified
4017                                                                     based on weight (51-100 lbs)
4030                                                                                        27 , 1620
4031                                                                   based on weight (60.1-120 lbs)
4042                                                                                      unspecified
4044                                                                                           1.1 ml
4045                                                                            1 tablet/pill/capsule
4058                                                                     based on weight (51-100 lbs)
4059                                                  2 prednisolone acetate, 5 trimeprazine tartrate
4060                                                             272 ivermectin, 227 pyrantel pamoate
4063                                                                     based on weight (51-100 lbs)
4064                                                                      based on weight (44-88 lbs)
4066                                                                                      unspecified
4067                                                                                      unspecified
4068                                                                                      unspecified
4069  2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
4070                                                                       1 tablet/pill/capsule - 16
4071                                                                                     small amount
4072                                                                            1 tablet/pill/capsule
4073                                                                            1 tablet/pill/capsule
4074                                                                                  based on weight
4075                                                                                  based on weight
4077                                                                                  based on weight
4087                                                                                      unspecified
4088                                                                                      unspecified
4089                                                                                      unspecified
4092                                                                                1 syringe/pipette
4095                                                                            1 tablet/pill/capsule
4096                                                                                           1.6 ml
4097                                                                       1 tablet/pill/capsule - 80
4111                                                                     based on weight (60-120 lbs)
4112                                                                     based on weight (50-100 lbs)
4113                                                                                     small amount
4114                                                                                     small amount
4116                                                                                         tapering
4117                                                                      based on weight (45-88 lbs)
4118                                                                     based on weight (60-120 lbs)
4119                                                                                     small amount
4120                                                                     based on weight (60-120 lbs)
4125                                                                                         27, 1620
4127                                                                     based on weight (51-100 lbs)
4128                                                                   based on weight (60.1-121 lbs)
4131                                                                                            spray
4132                                                                                      unspecified
4133                                                                                      unspecified
4134                                                                                      unspecified
4159                                                                                           0.5 ml
4160                                                                                             1 ml
4162                                                                     based on weight (50-100 lbs)
4172                                                                      based on weight (45-88 lbs)
4183                                                                      based on weight (40-85 lbs)
4184                                                                      based on weight (40-85 lbs)
4189                                                                            1 tablet/pill/capsule
4190                                                                            1 tablet/pill/capsule
4191                                                                     based on weight (60-120 lbs)
4193                                                                                      application
4198                                                                     based on weight (60-120 lbs)
4199                                                                     based on weight (50-100 lbs)
4204                                                                                             1 ml
4209                                                                            1 tablet/pill/capsule
4210                                                                     based on weight (60-120 lbs)
4212                                                                                        13.5, 810
4213                                                                                     23, 228, 460
4215                                                                                          23, 460
4216                                                                                      unspecified
4218                                                                                      unspecified
4229                                                                                          15.7 ml
4244                                                                                            14 ml
4245                                                                                        4-5 drops
4247                                                                                      unspecified
4265                                                                                           1 drop
4266                                                                                      as directed
4274                                                                                      unspecified
4298                                                                      based on weight (45-88 lbs)
4299                                                                     based on weight (51-100 lbs)
4302                                                                     based on weight (51-100 lbs)
4304                                                                     based on weight (51-100 lbs)
4305                                                                      based on weight (45-88 lbs)
4306                                                                                      unspecified
4307                                                                     based on weight (51-100 lbs)
4308                                                                     based on weight (51-100 lbs)
4309                                                                      based on weight (45-88 lbs)
4311                                                                                      unspecified
4313                                                                     based on weight (50-100 lbs)
4314                                                                      based on weight (44-88 lbs)
4323                                                                      based on weight (40-85 lbs)
4324                                                                                     small amount
4325                                                                     based on weight (50-100 lbs)
4326                                                                                           powder
4334                                                                                             1 ml
4336                                                                                      unspecified
4338                                                                   based on weight (50.1-100 lbs)
4348                                                                                  0.25 inch strip
4349                                                                      based on weight (40-60 lbs)
4350                                                                     based on weight (60-120 lbs)
4353                                                                      based on weight (40-60 lbs)
4354                                                                      based on weight (41-60 lbs)
4360                                                                                          1 spray
4368                                                                                  based on weight
4371                                                                                  based on weight
4384                                                                                         350, 900
4389                                                                     based on weight (51-100 lbs)
4390                                                                     based on weight (88-123 lbs)
4395                                                             272 ivermectin, 227 pyrantel pamoate
4405                                                                                        13.5, 810
4409                                                                                   1 pack/package
4426                                                                     based on weight (51-100 lbs)
4427                                                                        based on weight (55+ lbs)
4428                                                                         based on weight (60 lbs)
4430                                                                                            spray
4431                                                                                            spray
4444                                                                        based on weight (<88 lbs)
4445                                                                            1 tablet/pill/capsule
4446                                                                                   1 pack/package
4454                                                                                         inhalant
4469                                                                                     small amount
4470                                                                                      application
4471                                                                                         wipe/pad
4472                                                                                     small amount
4480                                                                                     small amount
4481                                                                                       1 wipe/pad
4483                                                                                  based on weight
4486                                                                         3 tablets/pills/capsules
4488                                                                                             1 ml
4491                                                                                             1 ml
4497                                                                     based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
4500                                                    based on weight (60-120 lbs) - 136 afoxolaner
4501                                                                                      as directed
4502                                                                     based on weight (60-120 lbs)
4504                                                                                      as directed
4505                                                                     based on weight (50-100 lbs)
4509                                                                            1 tablet/pill/capsule
4510                                                                            1 tablet/pill/capsule
4511                                                                         3 tablets/pills/capsules
4515                                                                            1 tablet/pill/capsule
4516                                                                            1 tablet/pill/capsule
4517                                                                                   1 pack/package
4524                                                                     based on weight (50-100 lbs)
4532                                                                     based on weight (50-100 lbs)
4533                                                                                              tsp
4534                                                                                           1 tbsp
4536                                                                     based on weight (50-100 lbs)
4544                                                                                      unspecified
4545                                                                     based on weight (51-100 lbs)
4547                                                                                     small amount
4558                                                                     based on weight (51-100 lbs)
4559                                                                        based on weight (50+ lbs)
4560                                                                        based on weight (50+ lbs)
4561                                                                                       1-2 sprays
4562                                                                      based on weight (45-88 lbs)
4564                                                                     based on weight (51-100 lbs)
4565                                                                      based on weight (44-88 lbs)
4566                                                                     based on weight (50-100 lbs)
4567                                                                      based on weight (44-88 lbs)
4568                                                                      based on weight (44-88 lbs)
4569                                                                        based on weight (50+ lbs)
4587                                                                     based on weight (51-100 lbs)
4597                                                                                      unspecified
4599                                                             272 ivermectin, 227 pyrantel pamoate
4611                                                                                         27, 1620
4627                                                                                  2.68 ml of 9.7%
4628                                                                                  2.68 ml of 8.8%
4629                                                               460 lufenuron, 23 milbemycin oxime
4631                                                                                  2.68 ml of 9.8%
4634                                                                                      unspecified
4638                                                                                  2.68 ml of 9.8%
4640                                                                                            15 au
4642                                                            23 milbemycin oxime, 228 praziquantel
4643                                                                                     small amount
4644                                                                                           1 drop
4645                                                                                           1 drop
4646                                                                                           1 drop
4647                                                                                           1 drop
4648                                                            23 milbemycin oxime, 228 praziquantel
4649                                                                                  2.68 ml of 9.8%
4651                                                                                     small amount
4652                                                                                  moderate amount
4654                                                                      based on weight (44-88 lbs)
4655                                                            23 milbemycin oxime, 228 praziquantel
4695                                                                     based on weight (50-110 lbs)
4711                                                                                           1 drop
4717                                                                     based on weight (60-120 lbs)
4719                                                                                            drops
4720                                                                                            drops
4726                                                                     based on weight (51-100 lbs)
4738                                                                     based on weight (60-120 lbs)
4739                                                                     based on weight (60-120 lbs)
4743                                                                                      application
4744                                                                                      application
4745                                                               27 milbemycin oxime, 1620 spinosad
4748                                                                                           1 unit
4757                                                                                  based on weight
4760                                                                            1 tablet/pill/capsule
4761                                                                                            1 tsp
4763                                                                        based on weight (55+ lbs)
4764                                                                      based on weight (21-55 lbs)
4766                                                                        based on weight (55+ lbs)
4777                                                                                      unspecified
4780                                                                                      unspecified
4782                                                                                      unspecified
4801                                                                                         tapering
4802                                                                     based on weight (51-110 lbs)
4803                                                                                           1 drop
4805                                                                                             drop
4806                                                                   based on weight (60.1-121 lbs)
4813                                                                                      unspecified
4824                                                                      based on weight (20-55 lbs)
4826                                                                                      unspecified
4828                                                                                      unspecified
4832                                                                                           0.1, 1
4850                                                                                           1 drop
4853                                                                                     small amount
4855                                                                                         27, 1620
4858                                                                                         27, 1620
4859                                                             272 ivermectin, 227 pyrantel pamoate
4861                                                             272 ivermectin, 227 pyrantel pamoate
4862                                                             272 ivermectin, 227 pyrantel pamoate
4881                                                                                     small amount
4902                                                    5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                         27, 1620
4905                                                                                         27, 1620
4910                                                                                           collar
4912                                                                                          23, 228
4913                                                                                           collar
4914                                                                                          23, 228
4917                                                                                         23 , 228
4935                                                                     based on weight (51-100 lbs)
4956                                                                                      unspecified
4960                                                                                     small amount
4968                                                                                         27, 1620
4969                                                            2-3 tablets/pills/capsules - 400, 500
4980                                                                                     pack/package
4981                                                                                          23, 228
4996                                                                                      unspecified
4998                                                                                      unspecified
5043                                                                                            spray
5046                                                                                            spray
5078                                                                      based on weight (40-60 lbs)
5122                                                                     based on weight (51-100 lbs)
5123                                                                     based on weight (60-121 lbs)
5125                                                                                             1 ml
5127                                                                                        injection
5134                                                                                  based on weight
5140                                                                                      750, 187, 5
5159                                                                                      unspecified
5160                                                                                      unspecified
5161                                                                                      unspecified
5173                                                                     based on weight (51-100 lbs)
5174                                                                     based on weight (60-120 lbs)
5191                                                                                         27, 1620
5193                                                                                      application
5195                                                                        based on weight (18+ lbs)
5203                                                                     based on weight (50-100 lbs)
5210                                                                                  moderate amount
5211                                                                                  moderate amount
5212                                                                                  moderate amount
5213                                                                                  moderate amount
5214                                                                     based on weight (51-100 lbs)
5220                                                                                            spray
5221                                                                                            spray
5222                                                                        based on weight (55+ lbs)
5223                                                                     based on weight (51-100 lbs)
5225                                                                     based on weight (51-100 lbs)
5234                                                                                  based on weight
5235                                                                     based on weight (51-100 lbs)
5243                                                                     based on weight (51-100 lbs)
5244                                                                        based on weight (55+ lbs)
5247                                                                     based on weight (51-100 lbs)
5248                                                                     based on weight (51-100 lbs)
5253                                                                     based on weight (51-100 lbs)
5255                                                                     based on weight (51-100 lbs)
5256                                                                     based on weight (51-100 lbs)
5257                                                                     based on weight (51-100 lbs)
5258                                                                     based on weight (51-100 lbs)
5261                                                                     based on weight (51-100 lbs)
5262                                                                                  based on weight
5264                                                                        based on weight (55+ lbs)
5265                                                                     based on weight (51-100 lbs)
5270                                                                     based on weight (51-100 lbs)
5271                                                                     based on weight (51-100 lbs)
5289                                                                     based on weight (50-100 lbs)
5332                                                                                         1 collar
5333                                                                                      unspecified
5334                                                                                  based on weight
5335                                                                                           collar
5336                                                                         2 tablets/pills/capsules
5337                                                                                      unspecified
5340                                                                     based on weight (51-100 lbs)
5341                                                                                           1 pump
5354                                                                                           collar
5357                                                                                            drops
5359                                                             272 ivermectin, 227 pyrantel pamoate
5360                                                             272 ivermectin, 227 pyrantel pamoate
5362                                                                         3 tablets/pills/capsules
5369                                                                     based on weight (50-100 lbs)
5377                                                             272 ivermectin, 227 pyrantel pamoate
5378                                                               8.8% (s)-methoprene, 9.8% fipronil
5379                                                                     based on weight (51-100 lbs)
5384                                                            23 milbemycin oxime, 228 praziquantel
5385                                                                                      unspecified
5386                                                                                      unspecified
5387                                                                                      unspecified
5388                                                                                      unspecified
5391                                                                     based on weight (60-121 lbs)
5392                                                                     based on weight (51-100 lbs)
5403                                                                        based on weight (100 lbs)
5424                                                                                     small amount
5428                                                                                            spray
5440                                                                                      unspecified
5460                                                                                     small amount
5464                                                                                         27, 1620
5469                                                                                             2 ml
5483                                                                            1 tablet/pill/capsule
5484                                                                  2 tablets/pills/capsules - 1200
5491                                                                      based on weight (45-88 lbs)
5492                                                                     based on weight (51-100 lbs)
5497                                                                     based on weight (51-100 lbs)
5498                                                                     based on weight (51-100 lbs)
5499                                                                      based on weight (45-88 lbs)
5500                                                                     based on weight (51-100 lbs)
5501                                                                                     small amount
5502                                                                                    1 bottle/vial
5507                                                                     based on weight (51-100 lbs)
5508                                                                     based on weight (51-100 lbs)
5509                                                                     based on weight (51-100 lbs)
5511                                                                     based on weight (51-100 lbs)
5513                                                                     based on weight (51-100 lbs)
5527                                                                                     small amount
5528                                                                                      application
5529                                                                                            spray
5533                                                                                     small amount
5534                                                                                  based on weight
5535                                                                                     small amount
5537                                                                                     small amount
5541                                                                     based on weight (51-100 lbs)
5542                                                                      based on weight (45-88 lbs)
5545                                                                                  based on weight
5546                                                                                  based on weight
5552                                                                     based on weight (51-100 lbs)
5553                                                                                  based on weight
5557                                                                     based on weight (51-100 lbs)
5568                                                                     based on weight (51-100 lbs)
5571                                                                     based on weight (51-100 lbs)
5576                                                                     based on weight (51-100 lbs)
5577                                                                                      unspecified
5578                                                                     based on weight (51-100 lbs)
5595                                                                     based on weight (51-100 lbs)
5600                                                                     based on weight (51-100 lbs)
5602                                                                     based on weight (51-100 lbs)
5607                                                               460 lufenuron, 23 milbemycin oxime
5626                                                                     based on weight (51-100 lbs)
5627                                                                     based on weight (51-100 lbs)
5628                                                                     based on weight (61-120 lbs)
5629                                                                     based on weight (51-100 lbs)
5630                                                                     based on weight (60-120 lbs)
5631                                                                     based on weight (51-100 lbs)
5632                                                                      based on weight (24-60 lbs)
5641                                                                                           1.7 ml
5649                                                                                    5 billion cfu
5681                                                                     based on weight (60-120 lbs)
5682                                                                     based on weight (51-100 lbs)
5695                                                                                      unspecified
5721                                                               27 milbemycin oxime, 1620 spinosad
5722                                                                                        27 , 1620
5723                                                               27 milbemycin oxime, 1620 spinosad
5724                                                               27 milbemycin oxime, 1620 spinosad
5725                                                                                         27, 1620
5728                                                               27 milbemycin oxime, 1620 spinosad
5729                                                                                      unspecified
5731                                                                                      unspecified
5747                                                                                  based on weight
5760                                                                                      unspecified
5762                                                                                  based on weight
5768                                                                     based on weight (51-100 lbs)
5771                                                            23 milbemycin oxime, 228 praziquantel
5777                                                                                      unspecified
5804                                                                                          13, 228
5814                                                                                      unspecified
5834                                                             272 ivermectin, 227 pyrantel pamoate
5839                                                                     based on weight (51-100 lbs)
5840                                                                                          23, 460
5858                                                                                  0.25 inch strip
5869                                                                     based on weight (51-100 lbs)
5877                                                                                  based on weight
5884                                                                                      unspecified
5887                                                                                     small amount
5913                                                                                  based on weight
5917                                                                                        6-8 drops
5930                                                                     based on weight (51-100 lbs)
5932                                                                                      unspecified
5933                                                                      based on weight (44-88 lbs)
5934                                                                     based on weight (51-100 lbs)
5935                                                                                            drops
5936                                                                     based on weight (51-100 lbs)
5937                                                                      based on weight (44-88 lbs)
5941                                                                     based on weight (51-100 lbs)
5942                                                                      based on weight (44-88 lbs)
5945                                                                                       1 wipe/pad
5963                                                                     based on weight (51-100 lbs)
5964                                                                   based on weight (60.1-121 lbs)
5965                                                               460 lufenuron, 23 milbemycin oxime
5967                                                                                    460 lufenuron
5976                                                                                      as directed
5980                                                                            1 tablet/pill/capsule
5981                                                                              tablet/pill/capsule
5988                                                                                  based on weight
5991                                                                                  based on weight
5992                                                                                  based on weight
5993                                                             272 ivermectin, 227 pyrantel pamoate
5994                                                                      based on weight (44-88 lbs)
6000                                                               460 lufenuron, 23 milbemycin oxime
6002                                                                        based on weight (55+ lbs)
6003                                                               460 lufenuron, 23 milbemycin oxime
6004                                                          8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                            15 gm
6014                                                                                      unspecified
6015                                                                                      unspecified
6016                                                                                      unspecified
6017                                                                                      unspecified
6036                                                                                         27, 1620
6038                                                                     based on weight (51-100 lbs)
6039                                                                            1 tablet/pill/capsule
6059                                                                     based on weight (51-100 lbs)
6063                                                                                     small amount
6068                                                                     based on weight (50-100 lbs)
6069                                                                      based on weight (55-95 lbs)
6071                                                                                      unspecified
6072                                                                                  based on weight
6074                                                                                          1 spray
6076                                                                                           collar
6078                                                                                           collar
6088                                                                                  0.25 inch strip
6090                                                                                  0.25 inch strip
6093                                                                                      unspecified
6094                                                                                            60 ml
6095                                                                                       1-2 sprays
6101                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
6102                                           1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
6104                                                                                     23, 228, 460
6109                                                                                90, 350, 800, 900
6129                                                                            1 tablet/pill/capsule
6130                                                                            1 tablet/pill/capsule
6132                                                                     based on weight (51-100 lbs)
6133                                                                     based on weight (60-120 lbs)
6134                                                                     based on weight (51-100 lbs)
6135                                                                      based on weight (44-88 lbs)
6136                                                                     based on weight (51-100 lbs)
6137                                                                      based on weight (44-88 lbs)
6139                                                                     based on weight (51-100 lbs)
6140                                                                      based on weight (44-88 lbs)
6148                                                                   based on weight (60.1-120 lbs)
6149                                                                            1 tablet/pill/capsule
6150                                                                            1 tablet/pill/capsule
6161                                                                                          23, 460
6164                                                                                     small amount
6200                                                                     based on weight (88-132 lbs)
6202                                                                     based on weight (60-120 lbs)
6206                                                                                      application
6208                                                                                      application
6215                                                                                           1 pump
6217                                                                                       14.8, 16.6
6218                                                                                           varies
6221                                                                                          5-10 ml
6224                                                                     based on weight (50-100 lbs)
6225                                                                   based on weight (88.1-132 lbs)
6226                                                                        based on weight (60+ lbs)
6231                                                                     based on weight (50-100 lbs)
6232                                                                   based on weight (88.1-132 lbs)
6244                                                                                      unspecified
6254                                                                            1 tablet/pill/capsule
6257                                                                      based on weight (40-85 lbs)
6258                                                                     based on weight (50-100 lbs)
6262                                                                            1 tablet/pill/capsule
6263                                                                            1 tablet/pill/capsule
6266                                                                                      application
6267                                                                                     small amount
6275                                                                                      unspecified
6282                                                             272 ivermectin, 227 pyrantel pamoate
6283                                                                      based on weight (44-88 lbs)
6284                                                                                          410 epa
6293                                                                      based on weight (24-60 lbs)
6296                                                                                        0.125 tsp
6302                                                             272 ivermectin, 227 pyrantel pamoate
6307                                                                                        62.5, 437
6312                                                                                      unspecified
6319                                                                                      unspecified
6320                                                                                      unspecified
6325                                                                            1 tablet/pill/capsule
6326                                                                                      application
6328                                                                         2 tablets/pills/capsules
6329                                                                            1 tablet/pill/capsule
6331                                                                     based on weight (51-100 lbs)
6341                                                                            1 tablet/pill/capsule
6342                                                                                           1 tube
6343                                                                            1 tablet/pill/capsule
6358                                                                                      unspecified
6388                                                                                           1 drop
6390                                                                                      unspecified
6395                                                                      based on weight (45-88 lbs)
6399                                                                                          8 drops
6405                                                                      based on weight (44-88 lbs)
6406                                                                                  based on weight
6411                                                                                     small amount
6437                                                             272 ivermectin, 227 pyrantel pamoate
6441                                                                                       1200, 1500
6443                                                                                         0.5 tube
6444                                                                     based on weight (51-100 lbs)
6451                                                                                      unspecified
6459                                                                                       1200, 1500
6461                                                                                      unspecified
6474                                                                     based on weight (51-100 lbs)
6475                                                                      based on weight (44-88 lbs)
6486                                                         28.75 milbemycin oxime, 285 praziquantel
6495                                                                                            drops
6497                                                                                           1 drop
6499                                                                     based on weight (51-100 lbs)
6500                                                                      based on weight (44-88 lbs)
6522                                                                     based on weight (51-100 lbs)
6523                                                                    based on weight (24.1-60 lbs)
6527                                                                     based on weight (51-100 lbs)
6528                                                                    based on weight (24.1-60 lbs)
6555                                                                     based on weight (51-100 lbs)
6562                                                                                  moderate amount
6565                                                                            1 tablet/pill/capsule
6569                                                                     based on weight (51-100 lbs)
6570                                                                      based on weight (44-88 lbs)
6571                                                                                      unspecified
6573                                                                      based on weight (45-88 lbs)
6579                                                                                  based on weight
6581                                                             272 ivermectin, 227 pyrantel pamoate
6594                                                                     based on weight (51-100 lbs)
6602                                                                     based on weight (51-100 lbs)
6606                                                             272 ivermectin, 227 pyrantel pamoate
6612                                                                   based on weight (50.1-100 lbs)
6625                                                                     based on weight (51-100 lbs)
6636                                                                     based on weight (50-100 lbs)
6644                                                                     based on weight (51-100 lbs)
6647                                                                     based on weight (51-100 lbs)
6648                                                                      based on weight (44-88 lbs)
6650                                                                                      application
6657                                                                            1 tablet/pill/capsule
6658                                                                                  based on weight
6662                                                                                      unspecified
6663                                                                     based on weight (51-100 lbs)
6680                                                                                      unspecified
6683                                                                                     small amount
6687                                                                                      unspecified
6688                                                                                      unspecified
6693                                                                            1 tablet/pill/capsule
6694                                                                         2 tablets/pills/capsules
6696                                                                                  based on weight
6697                                                                         based on weight (58 lbs)
6698                                                                                      unspecified
6702                                                                                      unspecified
6703                                                                                  based on weight
6714                                                                                             5-10
6715                                                                      based on weight (26-50 lbs)
6716                                                                                      unspecified
6717                                                                                      unspecified
6733                                                             272 ivermectin, 227 pyrantel pamoate
6751                                                                                      unspecified
6759                                                                                      application
6760                                                                                      unspecified
6763                                                                     based on weight (51-100 lbs)
6764                                                                      based on weight (44-88 lbs)
6778                                                                     based on weight (51-100 lbs)
6779                                                                     based on weight (51-100 lbs)
6781                                                                     based on weight (51-100 lbs)
6783                                                                   based on weight (50.1-100 lbs)
6786                                                                        based on weight (55+ lbs)
6796                                                                     based on weight (51-100 lbs)
6797                                                                                          23, 228
6815                                                                     based on weight (51-100 lbs)
6816                                                                                  0.25 inch strip
6817                                                                                  0.25 inch strip
6818                                                                                        5-8 drops
6824                                                                                      unspecified
6826                                                                                      unspecified
6828                                                                     based on weight (51-100 lbs)
6864                                                                                             1 ml
6868                                                                                      as directed
6880                                                                                      as directed
6886                                                                                      application
6891                                                                                      application
6892                                                                                     small amount
6908                                                                                           1 pump
6909                                                                            1 tablet/pill/capsule
6910                                                                     based on weight (50-100 lbs)
6928                                                                                      application
6934                                                                                     small amount
6935                                                                                      unspecified
6936                                                                                     small amount
6946                                                                                         27, 1620
6956                                                                                      unspecified
6957                                                                                      unspecified
6981                                                                      based on weight (44-88 lbs)
6982                                                                     based on weight (51-100 lbs)
6983                                                                     based on weight (55-100 lbs)
6984                                                                            1 tablet/pill/capsule
6986                                                                                      unspecified
6999                                                                                           1 tube
7002                                                               27 milbemycin oxime, 1620 spinosad
7005                                                                                      unspecified
7006                                                                                      unspecified
7017                                                                      based on weight (44-88 lbs)
7018                                                                                            30 ml
7021                                                                      based on weight (44-88 lbs)
7023                                                                                           1.6 ml
7025                                                                                      unspecified
7027                                                                                  0.25 inch strip
7030                                                                            1 tablet/pill/capsule
7042                                                                                     small amount
7054                                                             272 ivermectin, 227 pyrantel pamoate
7067                                                                            1 tablet/pill/capsule
7071                                                                                      unspecified
7092                                                                                            spray
7093                                                                     based on weight (60-120 lbs)
7095                                                                                         27, 1620
7096                                                                                         27, 1620
7116                                                                                      unspecified
7127                                                                                      unspecified
7130                                                                                         27, 1620
7131                                                                                         272, 228
7137                                                                                  based on weight
7149                                                                     based on weight (60-120 lbs)
7151                                                                                     small amount
7152                                                                                   1 pack/package
7153                                                                                     small amount
7154                                                                                     small amount
7155                                                                                     small amount
7172                                                                                           powder
7173                                                                                         wipe/pad
7175                                                                                      application
7177                                                                                            spray
7180                                                                                            spray
7189                                                                                      unspecified
7208                                                                                  0.25 inch strip
7218                                                               27 milbemycin oxime, 1620 spinosad
7240                                                                                          2 drops
7243                                                             272 ivermectin, 227 pyrantel pamoate
7247                                                                                  based on weight
7248                                                                    based on weight (21.1-60 lbs)
7249                                                                     based on weight (50-110 lbs)
7260                                                        64000 amylase, 9000 lipase, 5700 protease
7261                                                                            1 tablet/pill/capsule
7262                                                                         5 tablets/pills/capsules
7291                                                                      based on weight (44-88 lbs)
7295                                                                      based on weight (44-88 lbs)
7297                                                                                      unspecified
7320                                                                     based on weight (51-100 lbs)
7342                                                                      based on weight (45-88 lbs)
7344                                                                                      unspecified
7345                                                                                      unspecified
7346                                                                      based on weight (45-88 lbs)
7371                                                                                     small amount
7413                                                                     based on weight (51-100 lbs)
7499                                                             272 ivermectin, 227 pyrantel pamoate
7503                                                                                  based on weight
7510                                                                            1 tablet/pill/capsule
7511                                                                            1 tablet/pill/capsule
7512                                                                            1 tablet/pill/capsule
7513                                                                              tablet/pill/capsule
7519                                                             272 ivermectin, 227 pyrantel pamoate
7521                                                             272 ivermectin, 227 pyrantel pamoate
7524                                                                                      unspecified
7525                                                             272 ivermectin, 227 pyrantel pamoate
7526                                                                      1 tablet/pill/capsule - 136
7551                                                                            1 tablet/pill/capsule
7555                                                                     based on weight (88-123 lbs)
7563                                                                     based on weight (51-100 lbs)
7564                                                                                      unspecified
7565                                                                     based on weight (51-100 lbs)
7566                                                                     based on weight (51-100 lbs)
7576                                                                                    1 bottle/vial
7577                                                               460 lufenuron, 23 milbemycin oxime
7578                                                                            1 tablet/pill/capsule
7579                                                                            1 tablet/pill/capsule
7580                                                                          0.5 tablet/pill/capsule
7583                                                                     based on weight (51-100 lbs)
7584                                                                                  based on weight
7585                                                                                      unspecified
7586                                                                                      unspecified
7587                                                                                      unspecified
7588                                                                                      unspecified
7589                                                                                      unspecified
7590                                                                                      unspecified
7598                                                                                       1 wipe/pad
7635                                                                                         10 , 100
7660                                                                     based on weight (51-100 lbs)
7671                                                                                          40, 200
7673                                                                                      unspecified
7674                                                                                      unspecified
7675                                                              13.5 milbemycin oxime, 810 spinosad
7678                                                                                  0.25 inch strip
7679                                                                                     small amount
7681                                                                      based on weight (40-60 lbs)
7692                                                                                         23 , 228
7696                                                                                          23, 228
7699                                                                                          23, 228
7701                                                                                          23, 228
7705                                                                                     small amount
7732                                                                                  based on weight
7742                                                                                      unspecified
7743                                                                      based on weight (44-88 lbs)
7746                                                                                  based on weight
7747                                                                      based on weight (44-88 lbs)
7748                                                                                      unspecified
7749                                                                     based on weight (51-100 lbs)
7750                                                                     based on weight (89-132 lbs)
7751                                                                                            drops
7754                                                                 based on weight (61+ lbs) - 5 ml
7759                                                                      based on weight (56-95 lbs)
7763                                                                     based on weight (51-100 lbs)
7772                                                                                      unspecified
7776                                                                                      unspecified
7783                                                                         based on weight (54 lbs)
7784                                                                         based on weight (54 lbs)
7787                                                                                           1 tube
7795                                                                      based on weight (60-90 lbs)
7812                                                                                      unspecified
7818                                                                                      unspecified
7820                                                                                      unspecified
7822                                                                                      unspecified
7832                                                                                  2.68 ml of 9.7%
7839                                                                                      application
7845                                                                                      unspecified
7846                                                                                      unspecified
7848                                                                                      unspecified
7852                                                                                      unspecified
7853                                                                                      unspecified
7854                                                                                      unspecified
7862                                                                       2-3 tablets/pills/capsules
7883                                                                                      unspecified
7884                                                                                      unspecified
7885                                                                                             1 ml
7887                                                                                      unspecified
7889                                                                                      unspecified
7895                                                                                      unspecified
7926                                                                                     small amount
7929                                                                                     small amount
7941                                                                                             1 ml
7944                                                                                     small amount
7946                                                                                     small amount
7961                                                                                  0.25 inch strip
7966                                                                     based on weight (51-100 lbs)
7967                                                                     based on weight (60-121 lbs)
7968                                                                                  based on weight
7969                                                                                  based on weight
7970                                                                                        62.5, 250
7973                                                                                      unspecified
7987                                                                                         27, 1620
7988                                                                     based on weight (51-100 lbs)
7993                                                                      based on weight (40-85 lbs)
7995                                                                                       500 , 5 ml
7998                                                                     based on weight (85-130 lbs)
8000                                                                     based on weight (85-130 lbs)
8009                                                                                     small amount
8012                                                                                     small amount
8014                                                                                     small amount
8017                                                                                     small amount
8029                                                             272 ivermectin, 227 pyrantel pamoate
8030                                                                     based on weight (51-100 lbs)
8040                                                             272 ivermectin, 227 pyrantel pamoate
8042                                                                                          23, 460
8043                                                                                          23, 228
8044                                                                                          23, 228
8045                                                                                          23, 228
8075                                                                                      unspecified
8086                                                                                     small amount
8091                                                                                         125, 375
8098                                                                      based on weight (45-88 lbs)
8099                                                                   based on weight (50.1-100 lbs)
8120                                                                     based on weight (51-100 lbs)
8121                                                                     based on weight (51-100 lbs)
8123                                                                     based on weight (50-100 lbs)
8125                                                                                      unspecified
8128                                                                                     small amount
8130                                                                     based on weight (51-100 lbs)
8131                                                                   based on weight (60.1-121 lbs)
8136                                                                     based on weight (50-100 lbs)
8137                                                                     based on weight (50-100 lbs)
8138                                                                     based on weight (51-100 lbs)
8139                                                                     based on weight (51-100 lbs)
8140                                                                                     small amount
8160                                                                         2 tablets/pills/capsules
8182                                                                                     small amount
8184                                                                                           powder
8185                                                                     based on weight (51-100 lbs)
8186                                                                     based on weight (51-100 lbs)
8187                                                                     based on weight (51-100 lbs)
8188                                                                     based on weight (61-120 lbs)
8195                                                                     based on weight (51-100 lbs)
8196                                                                    based on weight (24.1-60 lbs)
8205                                                                     based on weight (89-132 lbs)
8206                                                                     based on weight (51-100 lbs)
8207                                                                     based on weight (51-100 lbs)
8208                                                                     based on weight (89-132 lbs)
8209                                                                                     23, 228, 460
8210                                                                     based on weight (51-100 lbs)
8211                                                                    based on weight (45-88.9 lbs)
8212                                                                   based on weight (50.1-100 lbs)
8215                                                                     based on weight (89-132 lbs)
8221                                                                     based on weight (51-100 lbs)
8222                                                                            1 tablet/pill/capsule
8223                                                                     based on weight (51-100 lbs)
8224                                                                     based on weight (51-100 lbs)
8234                                                                                      application
8235                                                                                      application
8236                                                                                          1 spray
8238                                                                                     small amount
8248                                                                      based on weight (44-88 lbs)
8251                                                                                         500, 750
8252                                                                                            spray
8280                                                                                      unspecified
8284                                                                                      unspecified
8293                                                                                      unspecified
8296                                                                     based on weight (51-100 lbs)
8297                                                                      based on weight (44-88 lbs)
8298                                                                                     small amount
8299                                                                                             1 ml
8300                                                                                           1 drop
8304                                                                                            30 ml
8305                                                                                         2 sprays
8311                                                                                           1 drop
8312                                                                                          4 drops
8313                                                                                           1 drop
8314                                                                     based on weight (50-100 lbs)
8315                                                                        based on weight (55+ lbs)
8337                                                                                      unspecified
8338                                                                                      unspecified
8341                                                                                           1 drop
8349                                                                                      unspecified
8354                                                                     based on weight (50-100 lbs)
8355                                                                      based on weight (45-88 lbs)
8358                                                                     based on weight (51-100 lbs)
8359                                                                      based on weight (44-88 lbs)
8362                                                                                     small amount
8369                                                                                  moderate amount
8370                                                                     based on weight (51-100 lbs)
8371                                                                      based on weight (44-88 lbs)
8376                                                                                     small amount
8377                                                                     based on weight (51-100 lbs)
8378                                                                      based on weight (44-88 lbs)
8389                                                             272 ivermectin, 227 pyrantel pamoate
8405                                                                                           1 tube
8408                                                                     based on weight (50-100 lbs)
8410                                                                     based on weight (51-100 lbs)
8418                                                                                      unspecified
8420                                                                     based on weight (51-100 lbs)
8421                                                                                      unspecified
8424                                                                        based on weight (55+ lbs)
8425                                                                     based on weight (51-100 lbs)
8427                                                                     based on weight (51-100 lbs)
8435                                                                                   1 pack/package
8436                                                                                     small amount
8440                                                                                            45-60
8454                                                                     based on weight (50-100 lbs)
8466                                                                     based on weight (51-100 lbs)
8467                                                                                      application
8475                                                                                             bath
8478                                                                                             bath
8509                                                                              tablet/pill/capsule
8514                                                                     based on weight (51-100 lbs)
8515                                                                     based on weight (51-100 lbs)
8528                                                                   based on weight (50.1-100 lbs)
8531                                                                   based on weight (50.1-100 lbs)
8541                                                                                            spray
8546                                                                                          8 drops
8550                                                                     based on weight (50-100 lbs)
8554                                                                     based on weight (50-100 lbs)
8555                                                                        based on weight (<50 lbs)
8578                                                                                     small amount
8581                                                                                     small amount
8582                                                                     based on weight (50-100 lbs)
8583                                                                                     small amount
8584                                                                                     small amount
8585                                                                                  moderate amount
8586                                                                                       1 wipe/pad
8588                                                                                     small amount
8591                                                                     based on weight (60-120 lbs)
8607                                                                        based on weight (55+ lbs)
8609                                                                     based on weight (51-100 lbs)
8613                                                     0.284 betamethasone, 0.57 gentamicin sulfate
8673                                                               27 milbemycin oxime, 1620 spinosad
8674                                                                     based on weight (60-120 lbs)
8675                                                                     based on weight (60-120 lbs)
8676                                                                     based on weight (60-120 lbs)
8677                                                                     based on weight (60-120 lbs)
8694                                                                      based on weight (45-88 lbs)
8697                                                                                           varies
8702                                                                      based on weight (45-88 lbs)
8707                                                                      based on weight (45-88 lbs)
8731                                                                                  based on weight
8735                                                                                  moderate amount
8736                                                                                       1 wipe/pad
8744                                                                                      unspecified
8745                                                                                      unspecified
8756                                                                     based on weight (51-100 lbs)
8757                                                            23 milbemycin oxime, 228 praziquantel
8759                                                                        based on weight (55+ lbs)
8760                                                                     based on weight (51-100 lbs)
8768                                                                         based on weight (51 lbs)
8769                                                                                      unspecified
8770                                                                     based on weight (50-100 lbs)
8771                                                                                      unspecified
8777                                                                     based on weight (51-100 lbs)
8778                                                                     based on weight (51-100 lbs)
8779                                                                      based on weight (56-95 lbs)
8780                                                                     based on weight (51-100 lbs)
8781                                                                      based on weight (56-95 lbs)
8786                                                                     based on weight (51-100 lbs)
8790                                                                     based on weight (51-100 lbs)
8791                                                                      based on weight (44-88 lbs)
8792                                                                                     small amount
8793                                                                      based on weight (44-88 lbs)
8794                                                                     based on weight (51-100 lbs)
8795                                                                     based on weight (51-100 lbs)
8797                                                                                      unspecified
8805                                                                     based on weight (51-100 lbs)
8815                                                                                  0.25 inch strip
8819                                                                     based on weight (51-100 lbs)
8820                                                                     based on weight (60-121 lbs)
8825                                                                                         125, 500
8826                                                                                  0.25 inch strip
8828                                                                     based on weight (51-100 lbs)
8831                                                             272 ivermectin, 227 pyrantel pamoate
8833                                                                     based on weight (51-100 lbs)
8837                                                                                      unspecified
8843                                                                      based on weight (45-88 lbs)
8851                                                                                      unspecified
8852                                                                                      unspecified
8853                                                                                      unspecified
8860                                                                                     small amount
8875                                                                                      unspecified
8876                                                                                      unspecified
8877                                                                                      unspecified
8879                                                                     based on weight (51-100 lbs)
8885                                                             272 ivermectin, 227 pyrantel pamoate
8908                                                                                        13.5, 810
8911                                                                     based on weight (51-100 lbs)
8929                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8930                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8961                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8962                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8995                                                                                           0.5 ml
8997                                                                                           0.5 ml
8998                                                                                           0.5 ml
9026                                                                     based on weight (50-100 lbs)
9046                                                                     based on weight (51-100 lbs)
9047                                                                                     small amount
9049                                                                                          2 drops
9050                                                                                      as directed
9052                                                                                 0.125 inch strip
9053                                                                            1 tablet/pill/capsule
9054                                                                      based on weight (26-50 lbs)
9055                                                                     based on weight (51-100 lbs)
9056                                                                            1 tablet/pill/capsule
9060                                                                                      unspecified
9064                                                                                      as directed
9065                                                                            1 tablet/pill/capsule
9070                                                                                      unspecified
9071                                                                                      unspecified
9084                                                                                      unspecified
9094                                                                        based on weight (50+ lbs)
9095                                                                     based on weight (51-100 lbs)
9098                                                                     based on weight (51-100 lbs)
9099                                                                                      unspecified
9100                                                                                      unspecified
9101                                                                                      unspecified
9109                                                                                  0.25 inch strip
9118                                                                                  0.25 inch strip
9132                                                                        based on weight (60+ lbs)
9135                                                                            1 tablet/pill/capsule
9136                                                                                      application
9137                                                                            1 tablet/pill/capsule
9156                                                                                      unspecified
9160                                                                     based on weight (89-132 lbs)
9161                                         based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                     based on weight (51-100 lbs)
9187                                                                                      application
9189                                                                            1 tablet/pill/capsule
9193                                                                                   1 pack/package
9202                                                                     based on weight (51-100 lbs)
9230                                                                                     small amount
9236                                                                     based on weight (51-100 lbs)
9239                                                                                         tapering
9240                                                                                         tapering
9241                                                                                           varies
9242                                                                     based on weight (51-100 lbs)
9244                                                                                      unspecified
9252                                                                                      unspecified
9253                                                                                      application
9254                                                                     based on weight (50-100 lbs)
9259                                                                     based on weight (60-120 lbs)
9267                                                                     based on weight (51-100 lbs)
9269                                                             272 ivermectin, 227 pyrantel pamoate
9271                                                                                      unspecified
9292                                                                                         27, 1620
9294                                                                                         27, 1620
9295                                                                                         27, 1620
9297                                                                                      unspecified
9384                                                                                          7 drops
9385                                                                                          7 drops
9386                                                                     based on weight (51-100 lbs)
9387                                                                      based on weight (56-95 lbs)
9416                                                                                     small amount
9418                                                                                     small amount
9421                                                                                           collar
9422                                                                                  based on weight
9426                                                                     based on weight (50-100 lbs)
9429                                                                                      application
9432                                                                        based on weight (25+ lbs)
9433                                                                     based on weight (50-100 lbs)
9434                                                                     based on weight (51-100 lbs)
9435                                                                                        injection
9436                                                                     based on weight (51-100 lbs)
9438                                                                                        injection
9447                                                                                      unspecified
9452                                                             272 ivermectin, 227 pyrantel pamoate
9453                                                                                         8.8, 9.8
9454                                                                                  0.25 inch strip
9494                                                                                     small amount
9495                                                                                     small amount
9511                                                                                      unspecified
9516                                                                                 0.125 inch strip
9524                                                                                     small amount
9544                                                                    based on weight (24.1-60 lbs)
9546                                                                   based on weight (60.1-121 lbs)
9548                                                                    based on weight (44.1-88 lbs)
9549                                                                   based on weight (60.1-121 lbs)
9584                                                                     based on weight (51-100 lbs)
9588                                                                                     small amount
9592                                                                                      unspecified
9596                                                                                      unspecified
9600                                                                                      unspecified
9601                                                                                      unspecified
9602                                                                                  based on weight
9603                                                                                  based on weight
9604                                                                                  based on weight
9609                                                                     based on weight (51-100 lbs)
9610                                                                      based on weight (44-88 lbs)
9612                                                                                            spray
9613                                                                                            spray
9614                                                                                         wipe/pad
9615                                                                     based on weight (50-100 lbs)
9616                                                                      based on weight (44-88 lbs)
9617                                                                     based on weight (51-100 lbs)
9618                                                                      based on weight (44-80 lbs)
9619                                                                     based on weight (51-100 lbs)
9620                                                                      based on weight (44-88 lbs)
9621                                                                     based on weight (50-100 lbs)
9635                                                                                         27, 1620
9640                                                                                         27, 1620
9641                                                                     based on weight (60-120 lbs)
9643                                                                     based on weight (60-120 lbs)
9718                                                                                      unspecified
9723                                                                     based on weight (51-100 lbs)
9759                                                                     based on weight (51-100 lbs)
9760                                                                        based on weight (55+ lbs)
9761                                                                     based on weight (51-100 lbs)
9763                                                                            1 tablet/pill/capsule
9764                                                                            1 tablet/pill/capsule
9765                                                                            1 tablet/pill/capsule
9766                                                                     based on weight (51-100 lbs)
9770                                                                   based on weight (50.1-100 lbs)
9785                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9791                                                                     based on weight (50-100 lbs)
9800                                                                            1 tablet/pill/capsule
9807                                                                                      unspecified
9808                                                                                      unspecified
9809                                                                                      unspecified
9821                                                                                   1 pack/package
9823                                                                                             1 ml
9824                                                                                         10 drops
9825                                                                                             3 ml
9826                                                                                     1 inch strip
9827                                                                                          7 drops
9828                                                                                            5-7.5
9833                                                                                      application
9837                                                                                      unspecified
9840                                                                                      unspecified
9843                                                                                      unspecified
9863                                                                                         wipe/pad
9865                                                                                            spray
9873                                                                                      unspecified
9877                                                                                      unspecified
9884                                                                                  0.25 inch strip
9889                                                                     based on weight (51-100 lbs)
9890                                                                      based on weight (45-88 lbs)
9891                                                                                  0.25 inch strip
9892                                                                                     small amount
9893                                                                            1 tablet/pill/capsule
9894                                                                   based on weight (50.1-100 lbs)
9895                                                                   based on weight (60.1-121 lbs)
9896                                                                                  0.25 inch strip
9897                                                                                      unspecified
9898                                                                                  based on weight
9899                                                                            1 tablet/pill/capsule
9900                                                                            1 tablet/pill/capsule
9901                                                                                  based on weight
9902                                                                            1 tablet/pill/capsule
9903                                                                                  0.25 inch strip
9907                                                                                      unspecified
9917                                                                     based on weight (51-100 lbs)
9928                                                                                      unspecified
9931                                                                     based on weight (50-100 lbs)
9935                                                                      based on weight (40-60 lbs)
9942                                                                                       4.125 cups
9943                                                                    based on weight (40.1-60 lbs)
9944                                                                      based on weight (40-60 lbs)
9945                                                                     based on weight (50-100 lbs)
9961                                                                                           1 tube
9963                                                                        based on weight (55+ lbs)
9966                                                                        based on weight (55+ lbs)
9968                                                                        based on weight (55+ lbs)
9970                                                                                     small amount
9972                                                                        based on weight (55+ lbs)
10017                                                                    based on weight (51-100 lbs)
10026                                                                    based on weight (51-100 lbs)
10027                                                                       based on weight (18+ lbs)
10037                                                                                     unspecified
10042                                                                                     unspecified
10053                                                                    based on weight (50-100 lbs)
10061                                                                                     application
10063                                                                       based on weight (18+ lbs)
10066                                                                       based on weight (18+ lbs)
10074                                                                                          1 drop
10075                                                            272 ivermectin, 227 pyrantel pamoate
10092                                                                                     unspecified
10093                                                                                     unspecified
10106                                                            272 ivermectin, 227 pyrantel pamoate
10107                                                              8.8% (s)-methoprene, 9.8% fipronil
10108                                                            272 ivermectin, 227 pyrantel pamoate
10109                                                              8.8% (s)-methoprene, 9.8% fipronil
10111                                                            272 ivermectin, 227 pyrantel pamoate
10112                                                                           1 tablet/pill/capsule
10113                                                                                   1 bottle/vial
10115                                                                                     unspecified
10116                                                                     based on weight (45-88 lbs)
10119                                                                                       272 , 228
10120                                                                                    small amount
10121                                                                             tablet/pill/capsule
10130                                                                                     unspecified
10131                                                                                     unspecified
10132                                                                                     unspecified
10133                                                                                     unspecified
10134                                                                                     unspecified
10149                                                                                        10 drops
10151                                                                                     unspecified
10160                                                                                          1.5 ml
10167                                                                    based on weight (51-100 lbs)
10170                                                                    based on weight (51-100 lbs)
10176                                                                                    small amount
10187                                                                                           drops
10188                                                                        2 tablets/pills/capsules
10195                                                                                     unspecified
10198                                                                       based on weight (55+ lbs)
10200                                                                        based on weight (60 lbs)
10209                                                                    based on weight (51-100 lbs)
10219                                                                    based on weight (51-100 lbs)
10230                                                                           1 tablet/pill/capsule
10231                                                                           1 tablet/pill/capsule
10232                                                                      1 tablet/pill/capsule - 10
10233                                                                        2 tablets/pills/capsules
10234                                                                      1 tablet/pill/capsule - 10
10235                                                                    based on weight (51-100 lbs)
10245                                                                    based on weight (50-100 lbs)
10249                                                                                     unspecified
10260                                                                                          collar
10264                                                                                    small amount
10273                                                                    based on weight (51-100 lbs)
10274                                                                     based on weight (40-60 lbs)
10275                                                                    based on weight (51-100 lbs)
10276                                                                     based on weight (41-60 lbs)
10301                                                                                         23, 460
10312                                                                     based on weight (40-85 lbs)
10313                                                                1.5 tablets/pills/capsules - 136
10314                                                                   0.5 tablet/pill/capsule - 250
10316                                                                           1 tablet/pill/capsule
10320                                                                     1 tablet/pill/capsule - 375
10324                                                                    based on weight (85-130 lbs)
10334                                                                    based on weight (60-120 lbs)
10335                                                                    based on weight (88-123 lbs)
10345                                                                             tablet/pill/capsule
10347                                                                                     unspecified
10348                                                                                     unspecified
10349                                                                                    small amount
10356                                                                                 based on weight
10365                                                                    based on weight (51-100 lbs)
10366                                                                     based on weight (44-88 lbs)
10370                                                            272 ivermectin, 227 pyrantel pamoate
10372                                                            272 ivermectin, 227 pyrantel pamoate
10374                                                            272 ivermectin, 227 pyrantel pamoate
10379                                                                                         23, 228
10400                                                                                     unspecified
10403                                                                     based on weight (45-88 lbs)
10405                                                                     based on weight (45-88 lbs)
10408                                                                    based on weight (50-100 lbs)
10409                                                           23 milbemycin oxime, 228 praziquantel
10410                                                                                         23, 228
10412                                                                                         23, 228
10429                                                                                           drops
10432                                                                                          1 tube
10435                                                                                     unspecified
10436                                                                                     unspecified
10441                                                                                     unspecified
10445                                                                                     unspecified
10470                                                                                    small amount
10477                                                                                   1 bottle/vial
10478                                                                                 based on weight
10483                                                            272 ivermectin, 227 pyrantel pamoate
10485                                                                    based on weight (51-100 lbs)
10487                                                                    based on weight (51-100 lbs)
10499                                                                                         23, 228
10503                                                                    based on weight (50-100 lbs)
10505                                                                    based on weight (51-100 lbs)
10506                                                                    based on weight (51-100 lbs)
10525                                                                                            1 ml
10526                                                                                          0.5 ml
10529                                                                                     unspecified
10555                                                                                     unspecified
10557                                                                                     unspecified
10565                                                                                     unspecified
10573                                                                                     unspecified
10575                                                                                    small amount
10576                                                                   3 tablets/pills/capsules - 25
10577                                                                      1 tablet/pill/capsule - 20
10578                                                                     1 tablet/pill/capsule - 160
10579                                                                     1 tablet/pill/capsule - 500
10580                                                                                    1.9 , 1.9 ml
10583                                                                    based on weight (60-120 lbs)
10588                                                                    based on weight (50-100 lbs)
10589                                                                           1 tablet/pill/capsule
10590                                                                    based on weight (51-100 lbs)
10591                                                                    based on weight (50-100 lbs)
10610                                                            272 ivermectin, 227 pyrantel pamoate
10617                                                                                         2.68 ml
10618                                                                           1 tablet/pill/capsule
10619                                                                      1.5 tablets/pills/capsules
10624                                                                                 based on weight
10628                                                                                 0.25 inch strip
10642                                                                                     unspecified
10653                                                                           1 tablet/pill/capsule
10655                                                                    based on weight (51-100 lbs)
10667                                                                    based on weight (51-100 lbs)
10671                                                                       based on weight (55+ lbs)
10678                                                                                     unspecified
10682                                                                                     unspecified
10683                                                                    based on weight (51-100 lbs)
10684                                                                    based on weight (51-100 lbs)
10685                                                                                 based on weight
10686                                                                                     unspecified
10687                                                                                      1-2 scoops
10688                                                                                          1 tbsp
10689                                                                    based on weight (51-100 lbs)
10693                                                                                     unspecified
10694                                                                    based on weight (51-100 lbs)
10696                                                                                     unspecified
10697                                                                                     unspecified
10701                                                                                     unspecified
10706                                                                                     unspecified
10707                                                                    based on weight (51-100 lbs)
10711                                                                    based on weight (51-100 lbs)
10712                                                                                 based on weight
10713                                                                                     unspecified
10714                                                                                      1-2 scoops
10715                                                                                          1 tbsp
10717                                                                    based on weight (51-100 lbs)
10718                                                                                    small amount
10725                                                                    based on weight (51-100 lbs)
10726                                                                                          powder
10727                                                                                     unspecified
10740                                                                                     unspecified
10743                                                                                     unspecified
10751                                                                                     unspecified
10755                                                            272 ivermectin, 227 pyrantel pamoate
10756                                                                           1 tablet/pill/capsule
10769                                                                                 based on weight
10780                                                                    based on weight (51-100 lbs)
10781                                                                  based on weight (60.1-121 lbs)
10792                                                            272 ivermectin, 227 pyrantel pamoate
10794                                                                    based on weight (51-100 lbs)
10796                                                            272 ivermectin, 227 pyrantel pamoate
10825                                                                                     unspecified
10827                                                                                          collar
10830                                                                    based on weight (51-100 lbs)
10837                                                                                     unspecified
10841                                                                           1 tablet/pill/capsule
10842                                                                           1 tablet/pill/capsule
10843                                                                                          1 dose
10846                                                                       based on weight (60+ lbs)
10849                                                                    based on weight (51-100 lbs)
10853                                                                                    small amount
10863                                                                                      1-2 sprays
10865                                                                    based on weight (51-100 lbs)
10866                                                                     based on weight (44-88 lbs)
10870                                                                    based on weight (51-100 lbs)
10871                                                                     based on weight (45-88 lbs)
10874                                                                    based on weight (51-100 lbs)
10877                                                                    based on weight (51-100 lbs)
10878                                                                   based on weight (24.1-60 lbs)
10892                                                                     based on weight (45-88 lbs)
10896                                                                                       6-8 drops
10898                                                                     based on weight (45-88 lbs)
10899                                                                                           drops
10901                                                                                     application
10905                                                                                     application
10928                                                                    based on weight (60-120 lbs)
10929                                                                    based on weight (50-100 lbs)
10934                                                                                 based on weight
10938                                                                    based on weight (50-100 lbs)
10953                                                                    based on weight (89-132 lbs)
10959                                                                    based on weight (89-132 lbs)
10970                                                                    based on weight (50-100 lbs)
10971                                                                     based on weight (44-88 lbs)
11003                                                                    based on weight (60-121 lbs)
11008                                                                                     unspecified
11009                                                                    based on weight (50-100 lbs)
11010                                                                    based on weight (51-100 lbs)
11011                                                                    based on weight (51-100 lbs)
11016                                                                                     unspecified
11021                                                                                     unspecified
11035                                                                    based on weight (51-100 lbs)
11036                                                                  based on weight (60.1-121 lbs)
11037                                                                    based on weight (51-100 lbs)
11038                                                                  based on weight (60.1-120 lbs)
11052                                                                                          1 tube
11065                                                              460 lufenuron, 23 milbemycin oxime
11069                                                                           1 tablet/pill/capsule
11070                                                                           1 tablet/pill/capsule
11085                                                                                     unspecified
11088                                                                                     unspecified
11093                                                               8 dexamethasone, 400 enrofloxacin
11134                                                                     based on weight (45-88 lbs)
11142                                                                                     unspecified
11144                                                                                     unspecified
11145                                                                                     unspecified
11152                                                                                     unspecified
11153                                                                                     unspecified
11155                                                                                     unspecified
11156                                                                                     unspecified
11158                                                                                     unspecified
11159                                                                                     unspecified
11163                                                                                     unspecified
11165                                                                                     unspecified
11182                                                                                     unspecified
11186                                                                    based on weight (50-100 lbs)
11189                                                                                     unspecified
11208                                                                  based on weight (50.1-100 lbs)
11210                                                                                     unspecified
11211                                                                                     unspecified
11212                                                                    based on weight (51-100 lbs)
11213                                                                                     unspecified
11224                                                                                     unspecified
11228                                                                                     unspecified
11229                                                                    based on weight (51-100 lbs)
11233                                                                           1 tablet/pill/capsule
11241                                                              27 milbemycin oxime, 1620 spinosad
11242                                                                    based on weight (51-100 lbs)
11276                                                                                        23 , 460
11291                                                                    based on weight (51-100 lbs)
11292                                                                    based on weight (60-120 lbs)
11293                                                                    based on weight (51-100 lbs)
11294                                                                     based on weight (24-60 lbs)
11295                                                                    based on weight (51-100 lbs)
11296                                                                    based on weight (60-120 lbs)
11301                                                                           1 tablet/pill/capsule
11305                                                                           1 tablet/pill/capsule
11307                                                                    based on weight (50-100 lbs)
11311                                                                    based on weight (50-100 lbs)
11312                                                                     based on weight (44-88 lbs)
11315                                                                             tablet/pill/capsule
11316                                                                             tablet/pill/capsule
11317                                                                             tablet/pill/capsule
11318                                                                             tablet/pill/capsule
11326                                                                    based on weight (51-100 lbs)
11327                                                                    based on weight (60-120 lbs)
11338                                                                                    small amount
11340                                                                                         10, 100
11346                                                                                 moderate amount
11349                                                                                 moderate amount
11350                                                                                    small amount
11351                                                                           1 tablet/pill/capsule
11352                                                                           1 tablet/pill/capsule
11353                                                                                 136, 136, 680.4
11354                                                                                         2 pumps
11356                                                                                     unspecified
11360                                                                                     unspecified
11368                                                                    based on weight (50-100 lbs)
11385                                                                                 based on weight
11386                                                                                 based on weight
11387                                                                                    pack/package
11388                                                                        based on weight (40 lbs)
11394                                                                                    small amount
11415                                                                                     unspecified
11436                                                                    based on weight (51-100 lbs)
11437                                                                    based on weight (51-100 lbs)
11441                                                              460 lufenuron, 23 milbemycin oxime
11464                                                                                     unspecified
11470                                                                                     unspecified
11471                                                                                     unspecified
11473                                                                       based on weight (50+ lbs)
11477                                                                    based on weight (51-100 lbs)
11493                                                                                     unspecified
11509                                                                    based on weight (50-100 lbs)
11536                                                                                         23, 460
11537                                                                    based on weight (51-100 lbs)
11538                                                                    based on weight (51-100 lbs)
11545                                                                    based on weight (50-100 lbs)
11546                                                                                     unspecified
11547                                                                                         23, 460
11551                                                                                     unspecified
11560                                                                    based on weight (51-100 lbs)
11561                                                                    based on weight (51-100 lbs)
11562                                                                    based on weight (60-121 lbs)
11564                                                                           1 tablet/pill/capsule
11567                                                                    based on weight (51-100 lbs)
11568                                                                    based on weight (60-121 lbs)
11570                                                                                     unspecified
11575                                                                                     unspecified
11576                                                                                     unspecified
11577                                                                                     unspecified
11578                                                                                     unspecified
11589                                                                       based on weight (50+ lbs)
11593                                                                    based on weight (51-100 lbs)
11596                                                                    based on weight (51-100 lbs)
11599                                                                     based on weight (43-88 lbs)
11600                                                                    based on weight (51-100 lbs)
11620                                                                                     unspecified
11621                                                                                     unspecified
11627                                                                           1 tablet/pill/capsule
11628                                                                                          1 tube
11630                                                                           1 tablet/pill/capsule
11633                                                            272 ivermectin, 227 pyrantel pamoate
11637                                                                                     unspecified
11641                                                           23 milbemycin oxime, 228 praziquantel
11651                                                                    based on weight (51-100 lbs)
11652                                                                    based on weight (51-100 lbs)
11653                                                                    based on weight (60-120 lbs)
11654                                                                    based on weight (51-100 lbs)
11655                                                                    based on weight (60-120 lbs)
11656                                                                    based on weight (51-100 lbs)
11660                                                                    based on weight (50-100 lbs)
11661                                                                    based on weight (51-100 lbs)
11662                                                                     based on weight (44-88 lbs)
11664                                                                    based on weight (88-123 lbs)
11666                                                                                     application
11667                                                                                     application
11671                                                                                     application
11673                                                                                           spray
11678                                                                    based on weight (51-100 lbs)
11680                                                                                 based on weight
11681                                                                    based on weight (51-100 lbs)
11683                                                                    based on weight (51-100 lbs)
11691                                                                                     unspecified
11692                                                                                     unspecified
11693                                                                                     as directed
11695                                                                                    small amount
11701                                                                                     unspecified
11702                                                            272 ivermectin, 227 pyrantel pamoate
11709                                                                                     unspecified
11710                                                                                     unspecified
11719                                                                                     as directed
11722                                                                                     unspecified
11723                                                                                     unspecified
11735                                                                    based on weight (51-100 lbs)
11741                                                                           1 tablet/pill/capsule
11742                                                                                   1 bottle/vial
11790                                                                                           15 gm
11802                                                                                         23, 460
11806                                                                                     unspecified
11812                                                                           1 tablet/pill/capsule
11813                                                                                         23, 460
11814                                                                       based on weight (55+ lbs)
11817                                                              460 lufenuron, 23 milbemycin oxime
11822                                                                    based on weight (51-100 lbs)
11823                                                                                          25 lbs
11824                                                                    based on weight (89-132 lbs)
11825                                                                  based on weight (60.1-121 lbs)
11832                                                            272 ivermectin, 227 pyrantel pamoate
11833                                                                                          57, 68
11835                                                                    based on weight (51-100 lbs)
11836                                                                      based on weight (0-25 lbs)
11837                                                                  based on weight (60.1-121 lbs)
11840                                                                                         20, 200
11844                                                                                         20, 200
11846                                                                                         10, 325
11847                                                                    based on weight (51-100 lbs)
11848                                                                       based on weight (<25 lbs)
11850                                                                                      1200, 1500
11856                                                                                         8 drops
11861                                                            272 ivermectin, 227 pyrantel pamoate
11862                                                              68 ivermectin, 57 pyrantel pamoate
11873                                                                    based on weight (50-100 lbs)
11874                                                                       based on weight (<25 lbs)
11875                                                                    based on weight (60-121 lbs)
11876                                                                           1 tablet/pill/capsule
11879                                                                                        10 drops
11881                                                                       based on weight (125 lbs)
11882                                                                    based on weight (60-121 lbs)
11889                                                                    based on weight (51-100 lbs)
11898                                                                    based on weight (51-100 lbs)
11911                                                                                    small amount
11919                                                                                     unspecified
11930                                                                                   5 billion cfu
11959                                                              460 lufenuron, 23 milbemycin oxime
11960                                                                                     as directed
11962                                                              460 lufenuron, 23 milbemycin oxime
11964                                                                    based on weight (51-100 lbs)
11978                                                                                     application
11979                                                                    based on weight (89-132 lbs)
11980                                                                    based on weight (89-132 lbs)
11983                                                                    based on weight (89-132 lbs)
11993                                                                                     unspecified
12009                                                                                     unspecified
12010                                                                                     unspecified
12014                                                                    based on weight (51-100 lbs)
12018                                                                                     unspecified
12019                                                                                     unspecified
12020                                                                    based on weight (51-100 lbs)
12043                                                                                     unspecified
12047                                                                                     unspecified
12048                                                           based on weight (45-88 lbs) - 2.68 ml
12051                                                                                  1 pack/package
12054                                                                                     unspecified
12090                                                                    based on weight (51-100 lbs)
12108                                                                                 moderate amount
12111                                                                                     unspecified
12120                                                                                     unspecified
12128                                                                     based on weight (44-88 lbs)
12129                                                                    based on weight (51-100 lbs)
12130                                                                                     application
12135                                                                     based on weight (44-88 lbs)
12136                                                                    based on weight (51-100 lbs)
12154                                                                                     unspecified
12155                                                                                     unspecified
12159                                                                                     unspecified
12160                                                                                     unspecified
12164                                                                                     unspecified
12173                                                                                     unspecified
12190                                                                                          1 pump
12215                                                            272 ivermectin, 227 pyrantel pamoate
12221                                                                                        0.75 tsp
12222                                                                                         0.5 tsp
12223                                                                                           drops
12261                                                                  based on weight (60.1-120 lbs)
12271                                                                     based on weight (45-88 lbs)
12273                                                                                    small amount
12279                                                                                    small amount
12283                                                                                         23, 228
12299                                                                                     unspecified
12306                                                                                     unspecified
12309                                                                                     unspecified
12313                                                                                         23, 460
12314                                                                                        27, 1620
12322                                                                                      1200, 1500
12324                                                                    based on weight (60-120 lbs)
12334                                                                                       injection
12336                                                                                       injection
12337                                                                                     unspecified
12342                                                                    based on weight (60-120 lbs)
12343                                                                                     unspecified
12346                                                                                       155, 1200
12349                                                                                 2 bottles/vials
12351                                                                                       150, 1200
12353                                                                                     unspecified
12364                                                                                      1200, 1500
12366                                                                    based on weight (60-120 lbs)
12376                                                                                       155, 1200
12379                                                                                       200, 1500
12386                                                                                          1.4 ml
12394                                                                                     unspecified
12398                                                            272 ivermectin, 227 pyrantel pamoate
12402                                                                    based on weight (51-100 lbs)
12405                                                                                        0.25 tsp
12406                                                                           1 tablet/pill/capsule
12409                                                                                  1 pack/package
12410                                                                    based on weight (51-100 lbs)
12411                                                                     based on weight (41-88 lbs)
12414                                                                    based on weight (51-100 lbs)
12415                                                                  based on weight (60.1-121 lbs)
12417                                                                    based on weight (51-100 lbs)
12418                                                                    based on weight (60-121 lbs)
12420                                                                                     application
12421                                                                    based on weight (51-100 lbs)
12422                                                                   based on weight (44.1-88 lbs)
12423                                                                                     application
12427                                                                                     unspecified
12429                                                                                          1 tube
12430                                                                           1 tablet/pill/capsule
12431                                                                           1 tablet/pill/capsule
12432                                                                           1 tablet/pill/capsule
12433                                                                           1 tablet/pill/capsule
12434                                                                           1 tablet/pill/capsule
12438                                                                           1 tablet/pill/capsule
12439                                                                           1 tablet/pill/capsule
12453                                                            272 ivermectin, 227 pyrantel pamoate
12454                                                                    based on weight (51-100 lbs)
12455                                                                                 based on weight
12456                                                                    based on weight (51-100 lbs)
12457                                                                    based on weight (60-120 lbs)
12461                                                                                     unspecified
12462                                                                                     unspecified
12463                                                                                     unspecified
12466                                                                           1 tablet/pill/capsule
12473                                                                   based on weight (40.1-85 lbs)
12474                                                                   based on weight (40.1-85 lbs)
12475                                                                                        5.4 , 16
12477                                                                                     unspecified
12481                                                                                     unspecified
12485                                                                                     unspecified
12487                                                                                     unspecified
12495                                                                    based on weight (51-100 lbs)
12497                                                                                  10 billion cfu
12498                                                                    based on weight (51-100 lbs)
12500                                                                    based on weight (50-100 lbs)
12506                                                                                     unspecified
12511                                                                           1 tablet/pill/capsule
12512                                                                           1 tablet/pill/capsule
12514                                                                                       6-8 drops
12516                                                                    based on weight (51-100 lbs)
12520                                                                    based on weight (51-100 lbs)
12521                                                                    based on weight (60-120 lbs)
12523                                                                    based on weight (51-100 lbs)
12528                                                                           1 tablet/pill/capsule
12529                                                                                   1 bottle/vial
12530                                                                    based on weight (51-100 lbs)
12535                                                                                     unspecified
12536                                                                                    small amount
12540                                                                    based on weight (51-100 lbs)
12541                                                                     based on weight (21-55 lbs)
12542                                                                           1 tablet/pill/capsule
12543                                                                                   1 bottle/vial
12546                                                                                     as directed
12547                                                                           1 tablet/pill/capsule
12548                                                                           1 tablet/pill/capsule
12549                                                                                     application
12550                                                                    based on weight (50-100 lbs)
12551                                                                                 based on weight
12552                                                                                 based on weight
12553                                                                                 based on weight
12554                                                                                 based on weight
12567                                                                                         8 drops
12569                                                                                        27, 1610
12571                                                                                      7-10 drops
12578                                                            272 ivermectin, 227 pyrantel pamoate
12580                                                            272 ivermectin, 227 pyrantel pamoate
12585                                                            272 ivermectin, 227 pyrantel pamoate
12588                                                                                       1, 32, 40
12589                                                            272 ivermectin, 227 pyrantel pamoate
12595                                                                                     unspecified
12596                                                                                     unspecified
12605                                                                                       11.5, 114
12608                                                                                        23 , 228
12615                                                                                     unspecified
12616                                                                    based on weight (51-100 lbs)
12620                                                                                     unspecified
12623                                                                    based on weight (51-100 lbs)
12630                                                                                     unspecified
12632                                                                                     unspecified
12636                                                                    based on weight (50-100 lbs)
12638                                                                    based on weight (51-100 lbs)
12639                                                                    based on weight (50-100 lbs)
12642                                                                    based on weight (50-100 lbs)
12645                                                                                        125, 500
12686                                                                    based on weight (51-100 lbs)
12692                                                           23 milbemycin oxime, 228 praziquantel
12693                                                                    based on weight (51-100 lbs)
12712                                                                                          1 drop
12714                                                                    based on weight (51-100 lbs)
12730                                                                                     unspecified
12732                                                                                     application
12735                                                                                     as directed
12738                                                                    1 tablet/pill/capsule - 1000
12740                                                                                       13.5, 810
12744                                                                                      13.5 , 810
12749                                                                                       13.5, 810
12754                                                                                      13.5 , 810
12755                                                                    based on weight (60-120 lbs)
12756                                                                                    small amount
12771                                                                                 based on weight
12774                                                                                 based on weight
12780                                                                    based on weight (51-100 lbs)
12781                                                                                         6 drops
12784                                                                                  1 pack/package
12786                                                                                          1 tube
12787                                                                                        1 collar
12788                                                                                 0.25 inch strip
12795                                                                                     unspecified
12796                                                                                          collar
12797                                                                                  1 pack/package
12801                                                                                     application
12826                                                                                     unspecified
12828                                                                                     unspecified
12836                                                                    based on weight (60-120 lbs)
12849                                                                                           drops
12850                                                                                           drops
12861                                                                                    small amount
12865                                                                                    small amount
12866                                                                                    small amount
12870                                                                                     application
12873                                                                                 moderate amount
12879                                                                    based on weight (51-100 lbs)
12880                                                                  based on weight (60.1-120 lbs)
12881                                                                                    small amount
12882                                                                                    small amount
12894                                                                                    small amount
12895                                                                                            bath
12901                                                                                     unspecified
12902                                                                                     unspecified
12903                                                                                     as directed
12905                                                                                       injection
12906                                                                                     unspecified
12907                                                                                     unspecified
12908                                                                                     unspecified
12911                                                                                     unspecified
12916                                                                    based on weight (51-100 lbs)
12920                                                                    based on weight (51-100 lbs)
12929                                                                    based on weight (51-100 lbs)
12942                                                                    based on weight (50-100 lbs)
12943                                                                    based on weight (51-100 lbs)
12945                                                                    based on weight (51-100 lbs)
12948                                                                    based on weight (51-100 lbs)
12949                                                                    based on weight (51-100 lbs)
12952                                                                    based on weight (51-100 lbs)
12953                                                                                           15 ml
12955                                                                                     unspecified
12956                                                                     based on weight (44-88 lbs)
12957                                                                    based on weight (51-100 lbs)
12959                                                                                         8 drops
12962                                                                     based on weight (45-88 lbs)
12963                                                                             tablet/pill/capsule
12966                                                                     based on weight (45-88 lbs)
12979                                                                                         1 spray
12994                                                                       based on weight (55+ lbs)
13005                                                                                     unspecified
13006                                                                                     unspecified
13008                                                                                     unspecified
13010                                                                                     unspecified
13013                                                                                     unspecified
13020                                                                                     unspecified
13041                                                                                    small amount
13049                                                                                     application
13061                                                                     based on weight (44-80 lbs)
13062                                                                                     as directed
13074                                                                                     unspecified
13075                                                                    based on weight (51-100 lbs)
13076                                                                       based on weight (19+ lbs)
13081                                                                                     unspecified
13084                                                                                         23, 460
13086                                                                    based on weight (51-100 lbs)
13096                                                                                    small amount
13104                                                                                     unspecified
13108                                                                                       13.5, 810
13109                                                                                      13.5, 1620
13114                                                                    based on weight (60-120 lbs)
13115                                                                    based on weight (60-120 lbs)
13116                                                               27 milbemycin oxime, 620 spinosad
13124                                                                                    small amount
13126                                                                                    small amount
13127                                                                                    small amount
13129                                                                                    small amount
13130                                                                                    small amount
13133                                                                                    small amount
13136                                                                    based on weight (50-100 lbs)
13137                                                                     based on weight (45-88 lbs)
13138                                                                                         2 drops
13139                                                            272 ivermectin, 227 pyrantel pamoate
13142                                                                    based on weight (51-100 lbs)
13143                                                                     based on weight (45-88 lbs)
13148                                                                                        125, 875
13149                                                                    based on weight (51-100 lbs)
13150                                                                     based on weight (45-88 lbs)
13151                                                                    based on weight (51-100 lbs)
13152                                                                     based on weight (44-88 lbs)
13154                                                                                        125, 875
13157                                                                    based on weight (50-100 lbs)
13159                                                                                     unspecified
13160                                                                                     unspecified
13168                                                                    based on weight (51-100 lbs)
13169                                                                    based on weight (51-100 lbs)
13170                                                                    based on weight (60-120 lbs)
13173                                                                                          1 drop
13187                                                                                     application
13188                                                                     based on weight (45-88 lbs)
13189                                                                    based on weight (51-100 lbs)
13195                                                                                           spray
13196                                                                                            bath
13198                                                                                 moderate amount
13199                                                                                        tapering
13208                                                                           1 tablet/pill/capsule
13209                                                                           1 tablet/pill/capsule
13233                                                                                     unspecified
13246                                                                                 0.25 inch strip
13248                                                                    based on weight (51-100 lbs)
13249                                                                     based on weight (45-88 lbs)
13264                                                            272 ivermectin, 227 pyrantel pamoate
13270                                                                           1 tablet/pill/capsule
13271                                                                           1 tablet/pill/capsule
13277                                                                                 moderate amount
13278                                                                                    small amount
13279                                                                                     application
13286                                                                                    small amount
13287                                                                                     application
13288                                                                           1 tablet/pill/capsule
13297                                                                    based on weight (51-100 lbs)
13298                                                                  based on weight (60.1-120 lbs)
13299                                                            272 ivermectin, 227 pyrantel pamoate
13307                                                                  based on weight (60.1-120 lbs)
13308                                                                    based on weight (51-100 lbs)
13309                                                                           1 tablet/pill/capsule
13313                                                                    based on weight (50-100 lbs)
13314                                                                    based on weight (60-120 lbs)
13315                                                                                         8 drops
13318                                                                                         8 drops
13321                                                                                            bath
13331                                                                    based on weight (60-120 lbs)
13332                                                                                       2-3 drops
13334                                                              27 milbemycin oxime, 1620 spinosad
13340                                                                                    small amount
13341                                                                                     unspecified
13343                                                                                     unspecified
13344                                                                    based on weight (60-120 lbs)
13345                                                                                         5 drops
13349                                                                    based on weight (51-100 lbs)
13353                                                                                       5-6 drops
13354                                                                                 based on weight
13355                                                                     based on weight (60-80 lbs)
13356                                                                                       27 , 1620
13357                                                                                     unspecified
13376                                                                                     unspecified
13405                                                                                     unspecified
13411                                                                                     unspecified
13454                                                                    based on weight (51-100 lbs)
13455                                                                  based on weight (60.1-121 lbs)
13456                                                                     based on weight (25-75 lbs)
13459                                                                                 moderate amount
13460                                                                                     application
13461                                                                    based on weight (51-100 lbs)
13462                                                                  based on weight (60.1-121 lbs)
13464                                                            272 ivermectin, 227 pyrantel pamoate
13468                                                                                     unspecified
13470                                                                                 based on weight
13471                                                                    based on weight (51-100 lbs)
13475                                                                    based on weight (51-100 lbs)
13476                                                                             tablet/pill/capsule
13479                                                                        based on weight (70 lbs)
13483                                                                    based on weight (51-100 lbs)
13484                                                                     based on weight (44-88 lbs)
13496                                                                                 based on weight
13502                                                                                     unspecified
13503                                                                       based on weight (55+ lbs)
13506                                                                    based on weight (50-100 lbs)
13532                                                                                  1 pack/package
13537                                                                    based on weight (50-100 lbs)
13538                                                                    based on weight (51-100 lbs)
13562                                                                                        27, 1620
13563                                                                                     as directed
13564                                                                                        27, 1620
13575                                                                                     unspecified
13576                                                                    based on weight (60-120 lbs)
13579                                                                                    small amount
13581                                                                                       27 , 1620
13585                                                                                        27, 1620
13590                                                                                            bath
13594                                                                                     unspecified
13595                                                                                     unspecified
13601                                                                                     unspecified
13603                                                                                     unspecified
13605                                                                                     unspecified
13609                                                                                 0.25 inch strip
13615                                                                                    small amount
13623                                                                     based on weight (21-55 lbs)
13624                                                                     based on weight (21-55 lbs)
13625                                                                     based on weight (21-55 lbs)
13628                                                                     based on weight (21-55 lbs)
13631                                                                                    small amount
13654                                                                                    small amount
13657                                                                                    small amount
13659                                                                                           15 gm
13660                                                                                           15 gm
13666                                                                                     application
13688                                                                                          0.5 ml
13693                                                                    based on weight (60-120 lbs)
13723                                                                     based on weight (44-88 lbs)
13724                                                                                 based on weight
13730                                                                             tablet/pill/capsule
13737                                                                    based on weight (50-100 lbs)
13740                                                                                     unspecified
13741                                                                                     unspecified
13747                                                                                         23, 460
13756                                                                                     unspecified
13768                                                                                     application
13769                                                                                           spray
13776                                                                       based on weight (50+ lbs)
13782                                                                        based on weight (50 lbs)
13783                                                                    based on weight (50-100 lbs)
13786                                                                                          1 tube
13796                                                                                      1 wipe/pad
13881                                                                                            7 ml
13884                                                                                        2 sprays
13893                                                                    based on weight (51-100 lbs)
13894                                                                    based on weight (51-100 lbs)
13896                                                                  based on weight (50.1-100 lbs)
13902                                                                                     unspecified
13905                                                                    based on weight (51-100 lbs)
13906                                                                    based on weight (51-100 lbs)
13910                                                                  based on weight (50.1-100 lbs)
13912                                                                                     unspecified
13913                                                                                     unspecified
13925                                                                                        27, 1620
13943                                                                    based on weight (51-100 lbs)
13946                                                                                           spray
13994                                                                           1 tablet/pill/capsule
13995                                                                           1 tablet/pill/capsule
13996                                                                                 0.25 inch strip
13998                                                                                     unspecified
14006                                                                                           spray
14007                                                                    based on weight (50-100 lbs)
14008                                                                                         8 drops
14050                                                                                     unspecified
14051                                                                    based on weight (50-100 lbs)
14055                                                                    based on weight (50-100 lbs)
14059                                                                     based on weight (40-85 lbs)
14060                                                                    based on weight (51-100 lbs)
14061                                                                    based on weight (51-100 lbs)
14062                                                                    based on weight (50-100 lbs)
14063                                                                     based on weight (44-88 lbs)
14064                                                                    based on weight (51-100 lbs)
14106                                                                    based on weight (51-100 lbs)
14114                                                                    based on weight (60-120 lbs)
14118                                                              27 milbemycin oxime, 1620 spinosad
14120                                                                                          0.4 ml
14121                                                                                          0.4 ml
14122                                                                                          0.4 ml
14123                                                                                             1 l
14124                                                                                            4 ml
14128                                                                                        27, 1620
14129                                                                    based on weight (60-120 lbs)
14131                                                                                    small amount
14147                                                                    based on weight (51-100 lbs)
14148                                                                     based on weight (44-88 lbs)
14151                                                                    based on weight (50-100 lbs)
14154                                                                    based on weight (50-100 lbs)
14162                                                                    based on weight (50-100 lbs)
14163                                                                                     unspecified
14164                                                                    based on weight (51-100 lbs)
14165                                                                                    small amount
14166                                                                           1 tablet/pill/capsule
14170                                                                                    small amount
14171                                                                                          1 tube
14172                                                                    based on weight (51-100 lbs)
14173                                                                      based on weight (0-25 lbs)
14174                                                                    based on weight (89-132 lbs)
14175                                                                                     as directed
14177                                                                    based on weight (50-100 lbs)
14178                                                                    based on weight (89-132 lbs)
14179                                                                                          1 tube
14180                                                                    based on weight (88-120 lbs)
14181                                                                    based on weight (51-100 lbs)
14190                                  1 dexamethasone, 3.5 neomycin sulfate, 10000 units polymyxin b
14219                                                                    based on weight (51-100 lbs)
14221                                                                                     unspecified
14228                                                                                     unspecified
14238                                                                                     unspecified
14241                                                                     based on weight (44-88 lbs)
14242                                                                     based on weight (26-50 lbs)
14245                                                                     based on weight (22-44 lbs)
14282                                                                    based on weight (50-100 lbs)
14284                                                                    based on weight (50-100 lbs)
14291                                                                                     unspecified
14297                                                                           1 tablet/pill/capsule
14301                                                                    based on weight (50-100 lbs)
14302                                                                       based on weight (25+ lbs)
14319                                                            272 ivermectin, 227 pyrantel pamoate
14323                                                                                     application
14324                                                                                       3-4 drops
14330                                                                                     unspecified
14334                                                                   based on weight (20.1-55 lbs)
14336                                                                                       2-3 drops
14365                                                            272 ivermectin, 227 pyrantel pamoate
14366                                                                           1 tablet/pill/capsule
14367                                                                           1 tablet/pill/capsule
14373                                                                                 based on weight
14376                                                                                 based on weight
14378                                                                       based on weight (60+ lbs)
14380                                                                                 based on weight
14385                                                                    based on weight (51-100 lbs)
14386                                                                    based on weight (60-120 lbs)
14387                                                                    based on weight (51-100 lbs)
14388                                                                     based on weight (24-60 lbs)
14404                                                              460 lufenuron, 23 milbemycin oxime
14406                                                                           1 tablet/pill/capsule
14407                                                                                          1 tube
14408                                                                    based on weight (51-100 lbs)
14412                                                                    based on weight (60-120 lbs)
14413                                                                     based on weight (44-88 lbs)
14414                                                                        based on weight (60 lbs)
14420                                                                           1 tablet/pill/capsule
14421                                                                           1 tablet/pill/capsule
14426                                                                                     unspecified
14428                                                                                     unspecified
14429                                                                    based on weight (51-100 lbs)
14431                                                                    based on weight (51-100 lbs)
14432                                                                                 based on weight
14433                                                                                     unspecified
14434                                                                                         1 scoop
14443                                                                    based on weight (51-100 lbs)
14444                                                                                     unspecified
14445                                                                                     unspecified
14446                                                                                     unspecified
14447                                                                                     unspecified
14448                                                                    based on weight (51-100 lbs)
14449                                                                    based on weight (51-100 lbs)
14451                                                                    based on weight (51-100 lbs)
14455                                                                                 0.25 inch strip
14471                                                                                     unspecified
14473                                                                                     unspecified
14477                                                                                     unspecified
14479                                                                                 based on weight
14488                                                                    based on weight (51-100 lbs)
14489                                                                    based on weight (51-100 lbs)
14490                                                                    based on weight (51-100 lbs)
14495                                                                    based on weight (51-100 lbs)
14498                                                                    based on weight (51-100 lbs)
14499                                                                    based on weight (50-100 lbs)
14512                                                                    based on weight (51-100 lbs)
14513                                                                     based on weight (60-70 lbs)
14528                                                                                   1 bottle/vial
14529                                                                           1 tablet/pill/capsule
14547                                                                           1 tablet/pill/capsule
14563                                                                                     unspecified
14576                                                                    based on weight (51-100 lbs)
14578                                                                       based on weight (25+ lbs)
14582                                                                   based on weight (44.1-88 lbs)
14583                                                                    based on weight (51-100 lbs)
14584                                                                   based on weight (44.1-88 lbs)
14585                                                                    based on weight (51-100 lbs)
14586                                                                   based on weight (44.1-88 lbs)
14587                                                                    based on weight (51-100 lbs)
14588                                                                   based on weight (44.1-88 lbs)
14601                                                                                     unspecified
14605                                                           25 milbemycin oxime, 228 praziquantel
14608                                                           23 milbemycin oxime, 228 praziquantel
14637                                                                     based on weight (44-88 lbs)
14645                                                                                        27, 1620
14650                                                                                            1 ml
14654                                                                                    0.1%, 1%, 2%
14656                                                           23 milbemycin oxime, 228 praziquantel
14658                                                            272 ivermectin, 227 pyrantel pamoate
14664                                                                    based on weight (50-100 lbs)
14665                                                                    based on weight (60-121 lbs)
14697                                                                                    small amount
14699                                                                                 based on weight
14700                                                                    based on weight (50-100 lbs)
14701                                                                                 based on weight
14702                                                            272 ivermectin, 227 pyrantel pamoate
14711                                                                    based on weight (51-100 lbs)
14712                                                                     based on weight (56-95 lbs)
14713                                                                        based on weight (85 lbs)
14720                                                                    based on weight (51-100 lbs)
14721                                                                     based on weight (56-95 lbs)
14722                                                                    based on weight (51-100 lbs)
14723                                                                    based on weight (51-100 lbs)
14726                                                                     based on weight (45-88 lbs)
14728                                                                                         23, 228
14730                                                           23 milbemycin oxime, 228 praziquantel
14733                                                           23 milbemycin oxime, 228 praziquantel
14737                                                                    based on weight (51-100 lbs)
14738                                                                     based on weight (45-88 lbs)
14744                                                                                 based on weight
14748                                                                                      5-10 drops
14754                                                                       based on weight (22+ lbs)
14755                                                                    based on weight (51-100 lbs)
14756                                                                                      5-10 drops
14757                                                                                      5-10 drops
14760                                                                    based on weight (51-100 lbs)
14763                                                                           1 tablet/pill/capsule
14764                                                                                    small amount
14775                                                                                     unspecified
14777                                                                                     unspecified
14778                                                                                     unspecified
14833                                                                                        350, 900
14834                                                                                        27, 1620
14838                                                                                        350, 900
14839                                                                                         23, 228
14857                                                                                     unspecified
14858                                                                                         23, 460
14862                                                                                     unspecified
14863                                                                                     unspecified
14864                                                                  based on weight (50.1-100 lbs)
14867                                                                                        23 , 228
14870                                                                    based on weight (50-100 lbs)
14871                                                                    based on weight (50-100 lbs)
14878                                                                                     unspecified
14883                                                                           1 tablet/pill/capsule
14884                                                                           1 tablet/pill/capsule
14899                                                                                     unspecified
14911                                                                                        27, 1620
14913                                                              27 milbemycin oxime, 1620 spinosad
14914                                                            272 ivermectin, 227 pyrantel pamoate
14934                                                                    based on weight (60-120 lbs)
14943                                                                     based on weight (44-88 lbs)
14944                                                                                     unspecified
14949                                                                                     unspecified
14972                                                                     based on weight (41-60 lbs)
14973                                                                                     unspecified
14974                                                                     based on weight (41-60 lbs)
14975                                                                     based on weight (41-60 lbs)
14977                                                                                            1 ml
14978                                                                           1 tablet/pill/capsule
14981                                                                     based on weight (40-60 lbs)
14982                                                                                     unspecified
14983                                                                                  1 pack/package
15001                                                                    based on weight (50-100 lbs)
15002                                                                     based on weight (45-88 lbs)
15004                                                                       based on weight (55+ lbs)
15005                                                                     based on weight (45-88 lbs)
15006                                                                    based on weight (51-100 lbs)
15007                                                                    based on weight (50-100 lbs)
15008                                                                       based on weight (55+ lbs)
15009                                                                     based on weight (45-88 lbs)
15010                                                                     based on weight (45-88 lbs)
15011                                                                  based on weight (50.1-100 lbs)
15017                                                                    based on weight (50-100 lbs)
15021                                                                    based on weight (50-100 lbs)
15022                                                                     based on weight (44-88 lbs)
15023                                                                     based on weight (45-88 lbs)
15025                                                                                          1 tube
15026                                                                                          1 tube
15027                                                                     based on weight (45-88 lbs)
15028                                                                  based on weight (50.1-100 lbs)
15029                                                                  based on weight (50.1-100 lbs)
15030                                                                     based on weight (44-88 lbs)
15035                                                                                     unspecified
15036                                                                                     unspecified
15045                                                                                 based on weight
15048                                                                    based on weight (50-100 lbs)
15055                                                                                     unspecified
15059                                                                    based on weight (51-100 lbs)
15061                                                                    based on weight (51-100 lbs)
15077                                                                                     unspecified
15102                                                                                    small amount
15129                                                                                       6-8 drops
15130                                                                           1 tablet/pill/capsule
15131                                                                           1 tablet/pill/capsule
15132                                                                           1 tablet/pill/capsule
15137                                                                                        2 sprays
15139                                                                    based on weight (51-100 lbs)
15140                                                                     based on weight (45-88 lbs)
15144                                                                     based on weight (26-50 lbs)
15145                                                                     based on weight (45-88 lbs)
15150                                                                                 based on weight
15151                                                                                 based on weight
15155                                                                                     unspecified
15170                                                                           1 tablet/pill/capsule
15179                                                                     based on weight (25-75 lbs)
15196                                                                                     application
15197                                                                                    small amount
15209                                                                     based on weight (44-88 lbs)
15213                                                                                     unspecified
15244                                                                                          0.3, 1
15250                                                                                 based on weight
15252                                                                                         4 drops
15256                                                                                 based on weight
15259                                                                        1.25 tablet/pill/capsule
15268                                                                    based on weight (50-100 lbs)
15269                                                                     based on weight (24-60 lbs)
15274                                                                                     unspecified
15308                                                                    based on weight (50-100 lbs)
15309                                                                  based on weight (60.1-121 lbs)
15310                                                                    based on weight (50-100 lbs)
15311                                                                                 based on weight
15314                                                                    based on weight (50-100 lbs)
15315                                                                                 based on weight
15317                                                                    based on weight (50-100 lbs)
15319                                                                           1 tablet/pill/capsule
15321                                                                                 based on weight
15322                                                                                 based on weight
15323                                                                                     unspecified
15332                                                                                     unspecified
15333                                                                                  1 pack/package
15334                                                                                         1 spray
15339                                                                                        27, 1620
15345                                                                                        27, 1620
15348                                                                                        27, 1620
15361                                                                    based on weight (50-100 lbs)
15362                                                                                     unspecified
15363                                                                                       3-5 drops
15365                                                                                     unspecified
15366                                                                    based on weight (50-100 lbs)
15367                                                                                     unspecified
15373                                                                    based on weight (51-100 lbs)
15374                                                                     based on weight (44-88 lbs)
15375                                                                    based on weight (51-100 lbs)
15376                                                                     based on weight (44-88 lbs)
15377                                                                    based on weight (51-100 lbs)
15378                                                                     based on weight (45-88 lbs)
15383                                                                                     unspecified
15384                                                                                     unspecified
15402                                                                                    small amount
15412                                                                                       22.7, 272
15441                                                                                     unspecified
15445                                                                                     unspecified
15448                                                                           1 tablet/pill/capsule
15451                                                                    based on weight (51-100 lbs)
15453                                                                                     unspecified
15454                                                                                     unspecified
15512                                                                   based on weight (44.1-88 lbs)
15513                                                                                     unspecified
15515                                                                   based on weight (44.1-88 lbs)
15524                                                                           1 tablet/pill/capsule
15528                                                                                         23, 228
15530                                                                     based on weight (56-95 lbs)
15531                                                                                         23, 228
15533                                                                        based on weight (25 lbs)
15551                                                                        based on weight (50 lbs)
15552                                                                     based on weight (44-88 lbs)
15554                                                                                 based on weight
15555                                                                                 based on weight
15556                                                                                 based on weight
15563                                                                                 0.25 inch strip
15581                                                                                     unspecified
15584                                                                                       4-6 drops
15585                                                                    based on weight (51-100 lbs)
15586                                                                     based on weight (45-88 lbs)
15589                                                                    based on weight (51-100 lbs)
15590                                                                    based on weight (51-100 lbs)
15591                                                                        based on weight (77 lbs)
15592                                                                        based on weight (77 lbs)
15593                                                                    based on weight (51-100 lbs)
15594                                                                  based on weight (60.1-121 lbs)
15597                                                                    based on weight (51-100 lbs)
15598                                                                    based on weight (60-121 lbs)
15599                                                                                     application
15600                                                                    based on weight (51-100 lbs)
15601                                                                   based on weight (44.1-88 lbs)
15603                                                                                     unspecified
15604                                                                                     unspecified
15613                                                            272 ivermectin, 227 pyrantel pamoate
15614                                                                                         3 drops
15618                                                            272 ivermectin, 227 pyrantel pamoate
15633                                                                                        tapering
15636                                                                    based on weight (51-100 lbs)
15649                                                                    based on weight (51-100 lbs)
15650                                                                    based on weight (89-132 lbs)
15661                                                                    based on weight (51-100 lbs)
15662                                                                                          1 drop
15663                                                                    based on weight (89-132 lbs)
15667                                                                                    small amount
15669                                                            272 ivermectin, 227 pyrantel pamoate
15672                                                                    based on weight (51-100 lbs)
15673                                                                      based on weight (1-25 lbs)
15674                                                                    based on weight (88-132 lbs)
15675                                                                                          1 tube
15689                                                                    based on weight (60-120 lbs)
15690                                                                    based on weight (60-120 lbs)
15691                                                                           1 tablet/pill/capsule
15692                                                                           1 tablet/pill/capsule
15693                                                                    based on weight (60-120 lbs)
15699                                                                           1 tablet/pill/capsule
15701                                                                                     unspecified
15705                                                                                         4 drops
15706                                                                                    small amount
15707                                                                                        27, 1620
15712                                                                                     unspecified
15715                                                                                        27, 1620
15733                                                            272 ivermectin, 227 pyrantel pamoate
15750                                                                                     unspecified
15757                                                                    based on weight (51-100 lbs)
15758                                                                     based on weight (45-88 lbs)
15767                                                                                     unspecified
15768                                                                                     unspecified
15769                                                                                     unspecified
15770                                                                                     unspecified
15778                                                                                     unspecified
15781                                                                                     unspecified
15782                                                                                     unspecified
15790                                                                                     unspecified
15796                                                                                        125, 500
15799                                                                                     unspecified
15811                                                                     based on weight (44-88 lbs)
15815                                                                  based on weight (50.1-100 lbs)
15818                                                                    based on weight (51-100 lbs)
15829                                                            272 ivermectin, 227 pyrantel pamoate
15839                                                                                     unspecified
15840                                                                                     unspecified
15841                                                                    based on weight (51-100 lbs)
15842                                                                    based on weight (51-100 lbs)
15844                                                                    based on weight (51-100 lbs)
15848                                                                           1 tablet/pill/capsule
15849                                                                    based on weight (51-100 lbs)
15850                                                                    based on weight (51-100 lbs)
15856                                                                       based on weight (55+ lbs)
15857                                                                           1 tablet/pill/capsule
15858                                                                    0.5 tablet/pill/capsule - 75
15859                                                                    based on weight (55-100 lbs)
15860                                                                           1 tablet/pill/capsule
15861                                                                                         1 spray
15862                                                                                 0.25 inch strip
15863                                                                                 0.25 inch strip
15864                                                                                          1 drop
15867                                                                           1 tablet/pill/capsule
15868                                                                             tablet/pill/capsule
15869                                                                    based on weight (51-100 lbs)
15870                                                                                     unspecified
15871                                                                                          1 tube
15886                                                                                     unspecified
15888                                                                                     unspecified
15889                                                                                     unspecified
15890                                                                                     unspecified
15891                                                                     based on weight (26-50 lbs)
15892                                                                    based on weight (51-100 lbs)
15907                                                                                    small amount
15911                                                                        based on weight (40 lbs)
15917                                                                                     unspecified
15918                                                                                         0.5 tsp
15920                                                                                       0.125 tsp
15921                                                                                     unspecified
15922                                                                    based on weight (51-100 lbs)
15923                                                                                       0.125 tsp
15927                                                                                         2000 iu
15928                                                                                0.5 pack/package
15929                                                                           1 tablet/pill/capsule
15930                                                                    based on weight (51-100 lbs)
15931                                                                                       0.125 tsp
15932                                                                                            1 ml
15933                                                                                         2000 iu
15935                                                                                0.5 pack/package
15937                                                                    based on weight (51-100 lbs)
15944                                                                    based on weight (51-100 lbs)
15945                                                                                    pack/package
15981                                                                    based on weight (51-100 lbs)
15983                                                                                    small amount
15986                                                                     based on weight (56-95 lbs)
15992                                                                    based on weight (51-100 lbs)
15993                                                                     based on weight (56-95 lbs)
15995                                                                    based on weight (51-100 lbs)
15996                                                                     based on weight (56-95 lbs)
15997                                                                     based on weight (45-88 lbs)
15998                                                                                   1 bottle/vial
15999                                                                    based on weight (51-100 lbs)
16000                                                                     based on weight (45-88 lbs)
16005                                                           23 milbemycin oxime, 228 praziquantel
16007                                                           23 milbemycin oxime, 228 praziquantel
16009                               0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                     application
16026                                                                                    small amount
16033                                                                                 based on weight
16036                                                                    based on weight (51-100 lbs)
16038                                                                    based on weight (51-100 lbs)
16039                                                                     based on weight (44-88 lbs)
16052                                                                                 based on weight
16053                                                                                 based on weight
16094                                                            272 ivermectin, 227 pyrantel pamoate
16097                                                                    based on weight (50-100 lbs)
16098                                                                    based on weight (60-120 lbs)
16105                                                                                         23, 460
16107                                                                                     application
16108                                                                    based on weight (51-100 lbs)
16109                                                                    based on weight (50-100 lbs)
16110                                                                                   1 bottle/vial
16111                                                                                          2.7 ml
16112                                                                   2 tablets/pills/capsules - 20
16113                                                                                    small amount
16114                                                                                     application
16115                                                                                         8 drops
16116                                                                        2 tablets/pills/capsules
16117                                                                        2 tablets/pills/capsules
16118                                                                                        tapering
16150                                                                                     unspecified
16152                                                                                          1 tube
16153                                                                           1 tablet/pill/capsule
16154                                                                                           10 ml
16155                                                                                            8 oz
16156                                                                                  1 pack/package
16157                                                                    based on weight (51-100 lbs)
16158                                                                     based on weight (44-88 lbs)
16159                                                                    based on weight (51-100 lbs)
16160                                                                     based on weight (44-88 lbs)
16161                                                                           1 tablet/pill/capsule
16162                                                                           1 tablet/pill/capsule
16163                                                                    based on weight (51-100 lbs)
16164                                                                     based on weight (44-88 lbs)
16165                                                                    based on weight (51-100 lbs)
16177                                                                                     unspecified
16179                                                                                     unspecified
16199                                                                                     unspecified
16229                                                                    based on weight (51-100 lbs)
16230                                                                    based on weight (51-100 lbs)
16239                                                                                     unspecified
16240                                                                                     unspecified
16241                                                                                     unspecified
16242                                                                                     unspecified
16251                                                                                    small amount
16253                                                                                     unspecified
16285                                                                           1 tablet/pill/capsule
16286                                                                                     unspecified
16287                                                                             tablet/pill/capsule
16288                                                                                     application
16289                                                                     based on weight (26-50 lbs)
16290                                                                     based on weight (44-88 lbs)
16292                                                                             tablet/pill/capsule
16293                                                                                     application
16294                                                                    based on weight (51-100 lbs)
16295                                                                     based on weight (45-88 lbs)
16296                                                                    based on weight (51-100 lbs)
16312                                                                    based on weight (51-100 lbs)
16313                                                                   based on weight (24.1-60 lbs)
16315                                                                    based on weight (51-100 lbs)
16316                                                                   based on weight (24.1-60 lbs)
16318                                                                    based on weight (50-100 lbs)
16319                                                                     based on weight (24-60 lbs)
16321                                                                  based on weight (50.1-100 lbs)
16322                                                                  based on weight (60.1-120 lbs)
16324                                                                    based on weight (51-100 lbs)
16325                                                                    based on weight (60-121 lbs)
16326                                                                           1 tablet/pill/capsule
16340                                                                    based on weight (51-100 lbs)
16347                                           4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                           350 chondroitin sulfate, 900 glucosamine hcl, 800 msm
16355                                                                                     unspecified
16356                                                                                     unspecified
16367                                                                                     unspecified
16371                                                                                     unspecified
16374                                                                                     unspecified
16376                                                                                     unspecified
16378                                                                                     unspecified
16382                                                                                     unspecified
16387                                                                                     as directed
16388                                                                                     as directed
16389                                                            272 ivermectin, 227 pyrantel pamoate
16400                                                                    based on weight (51-100 lbs)
16401                                                                    based on weight (60-120 lbs)
16403                                                                    based on weight (51-100 lbs)
16404                                                                    based on weight (60-120 lbs)
16408                                                            272 ivermectin, 227 pyrantel pamoate
16413                                                                    based on weight (50-100 lbs)
16414                                                                     based on weight (44-88 lbs)
16418                                                                                     unspecified
16419                                                                                     unspecified
16420                                                                                     unspecified
16425                                                                     based on weight (45-88 lbs)
16426                                                                     based on weight (45-88 lbs)
16434                                                                                     unspecified
16435                                                                                     unspecified
16436                                                                                     unspecified
16437                                                                                     unspecified
16440                                                                    based on weight (51-100 lbs)
16441                                                                    based on weight (51-100 lbs)
16442                                                                                     unspecified
16443                                                                                     unspecified
16447                                                                    based on weight (51-100 lbs)
16448                                                                                     unspecified
16450                                                                    based on weight (51-100 lbs)
16452                                                                                          3.2 ml
16453                                                                                          3.2 ml
16462                                                                                       0.5 ml/kg
16472                                                              460 lufenuron, 23 milbemycin oxime
16474                                                                               1 syringe/pipette
16477                                                                                         23, 460
16478                                                              8.8% (s)-methoprene, 9.8% fipronil
16479                                                                               1 syringe/pipette
16497                                                                                     bottle/vial
16522                                                                    based on weight (51-100 lbs)
16523                                                                    based on weight (51-100 lbs)
16524                                                                     based on weight (44-88 lbs)
16525                                                                    based on weight (51-100 lbs)
16526                                                                     based on weight (56-95 lbs)
16544                                                                     based on weight (44-88 lbs)
16546                                                                  based on weight (50.1-100 lbs)
16553                                                                  based on weight (50.1-100 lbs)
16579         based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                           drops
16595                                                                           1 tablet/pill/capsule
16596                                                                    based on weight (51-100 lbs)
16597                                                                    based on weight (51-100 lbs)
16598                                                                    based on weight (88-132 lbs)
16599                                                                    based on weight (51-100 lbs)
16601                                                                    based on weight (89-132 lbs)
16605                                                                       based on weight (45+ lbs)
16606                                                                    based on weight (51-100 lbs)
16608                                                                    based on weight (51-100 lbs)
16617                                                                                            1 gm
16624                                                              27 milbemycin oxime, 1620 spinosad
16630                                                                           1 tablet/pill/capsule
16631                                                                           1 tablet/pill/capsule
16635                                                                                 0.25 inch strip
16636                                                                    based on weight (51-100 lbs)
16639                                                                    based on weight (51-100 lbs)
16646                                                                                        10 drops
16657                                                                                       6-8 drops
16684                                                                                    small amount
16685                                                                                        wipe/pad
16687                                                            272 ivermectin, 227 pyrantel pamoate
16694                                                            272 ivermectin, 227 pyrantel pamoate
16702                                                                                 0.25 inch strip
16703                                                                                          powder
16704                                                                    based on weight (51-100 lbs)
16705                                                                    based on weight (60-120 lbs)
16711                                                                                    small amount
16712                                                                                    small amount
16714                                                                                    small amount
16717                                                                                    small amount
16718                                                                                    small amount
16721                                                                    based on weight (51-100 lbs)
16723                                                                                     application
16724                                                                                     application
16726                                                                                           spray
16749                                                              460 lufenuron, 23 milbemycin oxime
16751                                                                                        23 , 460
16774                                                                                     unspecified
16777                                                                                     as directed
16778                                                                                     as directed
16779                                                                                     as directed
16783                                                                                     unspecified
16784                                                                                     unspecified
16785                                                                                     unspecified
16787                                                                                            1 ml
16789                                                                                          1.1 ml
16791                                                                     based on weight (44-88 lbs)
16793                                                                     based on weight (24-60 lbs)
16798                                                                                     unspecified
16805                                                                    based on weight (50-100 lbs)
16807                                                                       based on weight (55+ lbs)
16809                                                                                            tube
16810                                                            272 ivermectin, 227 pyrantel pamoate
16811                                                               4.5% flumethrin, 10% imidacloprid
16814                                                                                     unspecified
16815                                                                                     unspecified
16816                                                                                     unspecified
16821                                                                                     unspecified
16823                                                                                     unspecified
16834                                                                                     unspecified
16838                                                                                     unspecified
16840                                                                                     unspecified
16841                                                                                     unspecified
16847                                                                                     unspecified
16849                                                                                          1 pump
16869                                                                    based on weight (50-100 lbs)
16877                                                                                       13.5, 810
16882                                                                                 based on weight
16918                                                                                     unspecified
16929                                                                           1 tablet/pill/capsule
16931                                                                                       13.5, 810
16933                                                                                       13.5, 810
16935                                                                           1 tablet/pill/capsule
16936                                                                           1 tablet/pill/capsule
16937                                                                                          1 tube
16939                                                                                    small amount
16970                                                                    based on weight (51-100 lbs)
16983                                                                                        6 months
16993                                                                                     as directed
16994                                                                                     application
16998                                                                     based on weight (56-95 lbs)
16999                                                            272 ivermectin, 227 pyrantel pamoate
17000                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                            272 ivermectin, 227 pyrantel pamoate
17012                                                                     based on weight (56-80 lbs)
17013                                                                    based on weight (51-100 lbs)
17014                                                                    based on weight (51-100 lbs)
17018                                                                                     as directed
17019                                                                                     unspecified
17020                                                                                     unspecified
17022                                                                                     unspecified
17042                                                                  based on weight (50.1-100 lbs)
17053                                                                           1 tablet/pill/capsule
17062                                                                                     unspecified
17088                                                            272 ivermectin, 227 pyrantel pamoate
17090                                                                    based on weight (51-100 lbs)
17091                                                                    based on weight (60-120 lbs)
17094                                                                           1 tablet/pill/capsule
17095                                                                           1 tablet/pill/capsule
17098                                                                                     unspecified
17099                                                                                 based on weight
17120                                                                                    small amount
17121                                                                                    small amount
17126                                                                                    small amount
17127                                                                                     as directed
17138                                                                    based on weight (51-100 lbs)
17143                                                                    based on weight (51-100 lbs)
17153                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
17156                                                                    based on weight (50-100 lbs)
17157                                                                    based on weight (60-121 lbs)
17173                                                                                     unspecified
17177                                                                                     unspecified
17180                                                                                     unspecified
17209                                                                                     unspecified
17218                                                                     based on weight (56-95 lbs)
17220                                                                    based on weight (50-100 lbs)
17221                                                                    based on weight (60-120 lbs)
17225                                                                    based on weight (51-100 lbs)
17226                                                                    based on weight (60-120 lbs)
17227                                                                    based on weight (50-100 lbs)
17228                                                                    based on weight (60-100 lbs)
17229                                                                                     unspecified
17232                                                                    based on weight (50-100 lbs)
17233                                                                       based on weight (55+ lbs)
17234                                                                    based on weight (51-100 lbs)
17236                                                                       based on weight (55+ lbs)
17237                                                                    based on weight (50-100 lbs)
17238                                                                                          1 tube
17239                                                                    based on weight (50-100 lbs)
17248                                                                           1 tablet/pill/capsule
17251                                                                           1 tablet/pill/capsule
17252                                                                                 based on weight
17254                                                                                     application
17255                                                                                 based on weight
17263                                                                                       13.5, 810
17264                                                                                        27, 1620
17266                                                                           1 tablet/pill/capsule
17268                                                                    based on weight (51-100 lbs)
17283                                                                                          57, 68
17285                                                              68 ivermectin, 57 pyrantel pamoate
17297                                                                      1.5 tablets/pills/capsules
17298                                                                    based on weight (51-100 lbs)
17307                                                                                           6, 15
17308                                                                                           6, 15
17309                                                                                          3, 7.5
17310                                                                                          3, 7.5
17313                                                                           1 tablet/pill/capsule
17314                                                                                     application
17315                                                                           1 tablet/pill/capsule
17327                                                                                     application
17329                                                                                     application
17330                                                                                     application
17335                                                                                     application
17352                                                                                     unspecified
17355                                                                                     unspecified
17381                                                                                           30 ml
17387                                                                                     unspecified
17389                                                            272 ivermectin, 227 pyrantel pamoate
17390                                                                                     unspecified
17391                                                            272 ivermectin, 227 pyrantel pamoate
17393                                                                                     application
17399                                                                  based on weight (50.1-100 lbs)
17406                                                                    based on weight (51-100 lbs)
17407                                                                                      1-2 sprays
17412                                                                                     unspecified
17417                                                                                          collar
17418                                                                        3 tablets/pills/capsules
17419                                                                           1 tablet/pill/capsule
17420                                                                           1 tablet/pill/capsule
17426                                                                                     unspecified
17427                                                                                     unspecified
17446                                                                                     bottle/vial
17461                                                              460 lufenuron, 23 milbemycin oxime
17463                                                                                  1 pack/package
17468                                                                                         23, 460
17470                                                                                  1 pack/package
17482                                                                                    small amount
17486                                                                    based on weight (51-100 lbs)
17487                                                                     based on weight (45-88 lbs)
17488                                                                    based on weight (51-100 lbs)
17489                                                                     based on weight (45-88 lbs)
17490                                                                     based on weight (45-88 lbs)
17491                                                                    based on weight (50-100 lbs)
17492                                                                    based on weight (50-100 lbs)
17493                                                                    based on weight (51-100 lbs)
17495                                                                    based on weight (50-100 lbs)
17496                                                                     based on weight (45-88 lbs)
17518                                                                    based on weight (50-100 lbs)
17519                                                                    based on weight (51-100 lbs)
17576                                                                                     unspecified
17583                                                                                     application
17588                                                                                           spray
17602                                                                                    small amount
17603                                                                           1 tablet/pill/capsule
17605                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
17611                                                                     based on weight (44-88 lbs)
17615                                                                     based on weight (45-88 lbs)
17627                                                                   based on weight (44.1-88 lbs)
17633                                                                                         1.71 ml
17659                                                                    based on weight (50-100 lbs)
17672                                                              27 milbemycin oxime, 1620 spinosad
17673                                                              27 milbemycin oxime, 1620 spinosad
17680                                                                                     unspecified
17697                                                                                        27, 1620
17702                                                                                         10, 100
17703                                                                                         23, 460
17719                                                                                         23, 460
17720                                                                                    small amount
17722                                                                    based on weight (51-100 lbs)
17742                                                                                     application
17743                                                                                          1 drop
17755                                                                     based on weight (45-88 lbs)
17779                                                                                     unspecified
17780                                                           2 prednisone, 5 trimeprazine tartrate
17781                                                                                       4-6 drops
17782                                                                     based on weight (44-88 lbs)
17798                                                                                       6-8 drops
17802                                                                                     unspecified
17803                                                                                     unspecified
17804                                                                                     unspecified
17818                                                                    based on weight (60-120 lbs)
17832                                                                                     unspecified
17845                                                                                     unspecified
17853                                                                                     unspecified
17855                                                                                     unspecified
17856                                                                                     unspecified
17860                                                                                     unspecified
17863                                                                                     unspecified
17865                                                                                     unspecified
17882                                                    0.284 betamethasone, 0.57 gentamicin sulfate
17957                                                                                         4 drops
18023                                                                    based on weight (50-100 lbs)
18024                                                                    based on weight (60-121 lbs)
18055                                                                                         3 drops
18057                                                                  based on weight (60.1-121 lbs)
18058                                                                    based on weight (51-100 lbs)
18072                                                                   based on weight (40.1-60 lbs)
18074                                                                                 moderate amount
18075                                                                    based on weight (51-100 lbs)
18094                                                                                     unspecified
18095                                                                                 based on weight
18096                                                                                     application
18098                                                                                     unspecified
18114                                                                                     unspecified
18115                                                                                         23, 460
18116                                                                       based on weight (55+ lbs)
18118                                                                                   1 bottle/vial
18119                                                                           1 tablet/pill/capsule
18124                                                                       based on weight (50+ lbs)
18134                                                                                     unspecified
18141                                                                                     unspecified
18147                                                                                     unspecified
18159                                                                                         6 drops
18164                                                                                         6 drops
18165                                                                                    small amount
18188                                                                           1 tablet/pill/capsule
18192                                                                    based on weight (51-100 lbs)
18193                                                                    based on weight (51-100 lbs)
18195                                                                                     unspecified
18199                                                                                            5, 2
18202                                                                    based on weight (51-100 lbs)
18205                                                                    based on weight (51-100 lbs)
18213                                                                                     unspecified
18214                                                                                     unspecified
18217                                                                    based on weight (50-100 lbs)
18218                                                                    based on weight (50-100 lbs)
18220                                                                           1 tablet/pill/capsule
18221                                                                                            2 ml
18222                                                                           1 tablet/pill/capsule
18238                                                                                     unspecified
18251                                                                                          powder
18258                                                                               0.44, 4.95, 36.08
18260                                                                                        27, 1620
18262                                                                               0.44, 4.95, 36.08
18263                                                                                     unspecified
18264                                                                                        27, 1620
18266                                                                                        27, 1620
18271                                                                                              iu
18275                                                                                     unspecified
18276                                                                                     unspecified
18323                                                                                    small amount
18325                                                                                     unspecified
18326                                                                                     unspecified
18329                                                                                          0.1 ml
18330                                                                                          0.1 ml
18337                                                                    based on weight (51-100 lbs)
18338                                                                                        compound
18339                                                                                 based on weight
18340                                                                                 based on weight
18341                                                                                     unspecified
18342                                                                                 based on weight
18343                                                                                         5 drops
18344                                                                    based on weight (51-100 lbs)
18365                                                                    based on weight (51-100 lbs)
18366                                                                    based on weight (60-120 lbs)
18370                                                                    based on weight (51-100 lbs)
18371                                                                     based on weight (24-60 lbs)
18373                                                                    based on weight (51-100 lbs)
18374                                                                    based on weight (60-121 lbs)
18404                                                                                           drops
18415                                                                    based on weight (51-100 lbs)
18427                                                                                    small amount
18441                                                                        2 tablets/pills/capsules
18459                                                                    based on weight (51-100 lbs)
18460                                                                    based on weight (51-100 lbs)
18461                                                                     based on weight (44-88 lbs)
18466                                                                                          1 drop
18469                                                                                 0.25 inch strip
18471                                                                                     application
18479                                                                                        27, 1610
18480                                                                                        27, 1610
18483                                                                                        27, 1610
18489                                                                                 based on weight
18490                                                                                 based on weight
18494                                                                                 based on weight
18495                                                                                 based on weight
18500                                                                                 based on weight
18502                                                                    based on weight (50-100 lbs)
18514                                                                     based on weight (21-55 lbs)
18520                                                                        based on weight (60 lbs)
18525                                                                     based on weight (44-88 lbs)
18534                                                                                     unspecified
18543                                                                                         6 drops
18562                                                                                            1 ml
18565                                                                       based on weight (55+ lbs)
18571                                                                    based on weight (51-100 lbs)
18572                                                                    based on weight (60-120 lbs)
18576                                                                    based on weight (51-100 lbs)
18577                                                                  based on weight (60.1-121 lbs)
18580                                                                    based on weight (50-100 lbs)
18588                                                                                     unspecified
18591                                                                                           spray
18595                                                                                     as directed
18609                                                                                     unspecified
18612                                                                                     unspecified
18621                                                                                     unspecified
18649                                                                       based on weight (25+ lbs)
18686                                                                           1 tablet/pill/capsule
18687                                                                                       5-8 drops
18689                                                                2-3 tablets/pills/capsules - 4mg
18690                                                                                     unspecified
18694                                                                                       11.5, 230
18696                                                                     based on weight (45-88 lbs)
18697                                                                    based on weight (50-100 lbs)
18703                                                                    based on weight (51-100 lbs)
18707                                                            132 ivermectin, 114 pyrantel pamoate
18716                                                                                     unspecified
18718                                                                                     unspecified
18729                                                                                     unspecified
18734                                                                      based on weight (5-10 lbs)
18735                                                                      based on weight (0-25 lbs)
18736                                                                   based on weight (20.1-40 lbs)
18743                                                                     based on weight (26-50 lbs)
18750                                                            272 ivermectin, 227 pyrantel pamoate
18774                                                                                       13.5, 810
18775                                                             13.5 milbemycin oxime, 810 spinosad
18795                                                                                     as directed
18796                                                                                     as directed
18797                                                                                     as directed
18798                                                                                     as directed
18799                                                                                        114, 136
18800                                                                    based on weight (51-100 lbs)
18820                                                                                    small amount
18821                                                                                         5 drops
18829                                                                                     unspecified
18837                                                                    based on weight (60-120 lbs)
18838                                                                                 based on weight
18839                                                                     based on weight (45-90 lbs)
18844                                                                     based on weight (45-90 lbs)
18845                                                                  based on weight (50.1-100 lbs)
18847                                                                                 based on weight
18850                                                                                 based on weight
18852                                                                           1 tablet/pill/capsule
18853                                                                           1 tablet/pill/capsule
18854                                                                           1 tablet/pill/capsule
18882                                                                                     application
18908                                                                    based on weight (51-100 lbs)
18909                                                                       based on weight (55+ lbs)
18919                                                                                          collar
18921                                                                       based on weight (18+ lbs)
18924                                                                                     unspecified
18933                                                                                     unspecified
18935                                                                  based on weight (50.1-100 lbs)
18936                                                                                 based on weight
18937                                                                                 based on weight
18961                                                                        2 tablets/pills/capsules
18964                                                                                     unspecified
18970                                                                           1 tablet/pill/capsule
18987                                                                           1 tablet/pill/capsule
18988                                                                           1 tablet/pill/capsule
18989                                                                                         0.5 tsp
18991                                                                    based on weight (51-100 lbs)
18993                                                                                        2 scoops
18997                                                                                     unspecified
18998                                                                                     unspecified
19003                                                                                     unspecified
19004                                                                                     unspecified
19005                                                                                     unspecified
19006                                                                                     unspecified
19008                                                                                     unspecified
19009                                                                                     unspecified
19015                                                                                     unspecified
19019                                                                                     unspecified
19021                                                                                     unspecified
19022                                                                    based on weight (60-120 lbs)
19023                                                                                    small amount
19025                                                                           1 tablet/pill/capsule
19040                                                              27 milbemycin oxime, 1620 spinosad
19041                                                           23 milbemycin oxime, 228 praziquantel
19055                                                                     based on weight (45-88 lbs)
19056                                                                                     unspecified
19057                                                                                    2 , 1%, 22.7
19061                                                                                 based on weight
19062                                                                    based on weight (50-100 lbs)
19068                                                                        based on weight (50 lbs)
19070                                                                       based on weight (50+ lbs)
19072                                                                     based on weight (45-88 lbs)
19073                                                                    based on weight (51-100 lbs)
19078                                                                    based on weight (51-100 lbs)
19082                                                                     based on weight (45-88 lbs)
19122                                                                       based on weight (55+ lbs)
19130                                                                     based on weight (44-88 lbs)
19152                                                                                     application
19153                                                                   based on weight (24.1-60 lbs)
19154                                                                  based on weight (50.1-100 lbs)
19159                                                                                     unspecified
19165                                                                    based on weight (51-100 lbs)
19169                                                                    based on weight (51-100 lbs)
19170                                                                     based on weight (45-88 lbs)
19183                                                                                          collar
19184                                                                                     unspecified
19213                                                                                     unspecified
19214                                                                                     unspecified
19215                                                                    based on weight (51-100 lbs)
19216                                                                    based on weight (51-100 lbs)
19217                                                                                          1 tube
19220                                                                                 based on weight
19221                                                                    based on weight (51-100 lbs)
19222                                                                     based on weight (44-88 lbs)
19223                                                                    based on weight (51-100 lbs)
19224                                                                                          collar
19246                                                                                     as directed
19252                                                                         0.5 tablet/pill/capsule
19253                                                                         1.5 tablet/pill/capsule
19254                                                                         1-2 tablet/pill/capsule
19271                                                                    based on weight (51-100 lbs)
19272                                                                   based on weight (44.1-88 lbs)
19273                                                                    based on weight (50-100 lbs)
19276                                                                                          1 tube
19278                                                                    based on weight (51-100 lbs)
19281                                                                     based on weight (44-88 lbs)
19282                                                                     based on weight (44-88 lbs)
19288                                                                                     unspecified
19298                                                                                     unspecified
19299                                                                                     unspecified
19318                                                                     based on weight (44-88 lbs)
19325                                                                                     unspecified
19326                                                                        based on weight (50 lbs)
19327                                                                        based on weight (50 lbs)
19338                                                                                     unspecified
19350                                                                                 0.25 inch strip
19353                                                                                     unspecified
19354                                                                                     unspecified
19356                                                                    based on weight (50-100 lbs)
19357                                                                       based on weight (55+ lbs)
19373                                                                    based on weight (51-100 lbs)
19386                                                                    based on weight (51-100 lbs)
19387                                                                    based on weight (51-100 lbs)
19390                                                                                     application
19391                                                                    based on weight (51-100 lbs)
19423                                                                    based on weight (51-100 lbs)
19427                                                                                 based on weight
19445                                                                    based on weight (51-100 lbs)
19446                                                                     based on weight (45-88 lbs)
19447                                                                    based on weight (51-100 lbs)
19448                                                                     based on weight (44-88 lbs)
19449                                                                                 based on weight
19450                                                                     based on weight (61-80 lbs)
19452                                                                                     unspecified
19453                                                                                     unspecified
19454                                                                                     unspecified
19457                                                                    based on weight (51-100 lbs)
19462                                                                    based on weight (51-100 lbs)
19463                                                                     based on weight (44-88 lbs)
19464                                                                                     unspecified
19465                                                                                     unspecified
19476                                                                        based on weight (35 lbs)
19482                                                                    based on weight (51-100 lbs)
19486                                                                    based on weight (50-100 lbs)
19487                                                                    based on weight (60-120 lbs)
19492                                                                    based on weight (50-100 lbs)
19493                                                                    based on weight (60-121 lbs)
19495                                                                       based on weight (50+ lbs)
19537                                                                                 based on weight
19568                                                                                          1 pump
19596                                                                    based on weight (51-100 lbs)
19603                                                                     based on weight (40-60 lbs)
19617                                                                                 2.68 ml of 9.8%
19641                                                                                     unspecified
19651                                                                                          1 drop
19662                                                                                  1 pack/package
19663                                                                                        125, 500
19673                                                                    based on weight (51-100 lbs)
19674                                                                     based on weight (44-88 lbs)
19685                                                                    based on weight (51-100 lbs)
19686                                                              460 lufenuron, 25 milbemycin oxime
19688                                                                    based on weight (51-100 lbs)
19689                                                              460 lufenuron, 23 milbemycin oxime
19690                                                                                           15 gm
19710                                                                    based on weight (51-100 lbs)
19711                                                                    based on weight (50-100 lbs)
19712                                                                                 based on weight
19713                                                                    based on weight (50-100 lbs)
19714                                                                                 based on weight
19715                                                                    based on weight (51-100 lbs)
19716                                                                                 based on weight
19717                                                                    based on weight (51-100 lbs)
19718                                                                                 based on weight
19722                                                                                     unspecified
19735                                                                                    small amount
19737                                                                                    small amount
19741                                                                    based on weight (51-100 lbs)
19754                                                                                         23, 228
19767                                                                                          1 drop
19768                                                                     based on weight (40-80 lbs)
19771                                                                                       13.5, 810
19776                                                                     based on weight (40-60 lbs)
19777                                                                             tablet/pill/capsule
19778                                                                                    small amount
19788                                                                                     unspecified
19790                                                                                     unspecified
19792                                                                                     unspecified
19801                                                                     based on weight (44-88 lbs)
19803                                                                    based on weight (51-100 lbs)
19823                                                                                    small amount
19828                                                                    based on weight (50-100 lbs)
19829                                                                     based on weight (56-95 lbs)
19838                                                                                     unspecified
19843                                                                                     unspecified
19844                                                                                     unspecified
19845                                                                                     unspecified
19851                                                                    based on weight (60-100 lbs)
19856                                                                  based on weight (50.1-100 lbs)
19866                                                                                        2 sprays
19876                                                                                     unspecified
19881                                                                                     unspecified
19888                                                                    based on weight (50-100 lbs)
19907                                                              27 milbemycin oxime, 1620 spinosad
19909                                                           23 milbemycin oxime, 228 praziquantel
19911                                                                                 based on weight
19912                                                                                     unspecified
19914                                                                                     unspecified
19917                                                                                     application
19925                                                                                     unspecified
19926                                                                                     unspecified
19927                                                                                     unspecified
19928                                                                                     unspecified
19930                                                                                       13.5, 810
19932                                                                    based on weight (60-120 lbs)
19933                                                                    based on weight (60-120 lbs)
19944                                                                                     unspecified
19945                                                                                     unspecified
19946                                                                    based on weight (60-120 lbs)
19947                                                                                     unspecified
19948                                                                                     unspecified
19949                                                                                     unspecified
19950                                                                                     unspecified
19952                                                                                     unspecified
19958                                                                                          collar
19969                                                                                         2 drops
19975                                                            272 ivermectin, 227 pyrantel pamoate
19984                                                                                     unspecified
20003                                                                                 based on weight
20006                                                                                     unspecified
20007                                                                                     unspecified
20019                                                                    based on weight (51-100 lbs)
20020                                                                    based on weight (60-121 lbs)
20024                                                                           1 tablet/pill/capsule
20025                                                                           1 tablet/pill/capsule
20026                                                                           1 tablet/pill/capsule
20027                                                                    based on weight (60-121 lbs)
20028                                                                    based on weight (51-100 lbs)
20038                                                                           1 tablet/pill/capsule
20039                                                                           1 tablet/pill/capsule
20065                                                                                     unspecified
20068                                                                                     unspecified
20069                                                                                     unspecified
20070                                                                                     unspecified
20072                                                                                     unspecified
20074                                                                                     unspecified
20096                                                                                     unspecified
20099                                                                                     unspecified
20105                                                                                     unspecified
20106                                                                                     unspecified
20125                                                                                   0.3 (10mg/ml)
20126                                                                    based on weight (50-100 lbs)
20127                                                                  based on weight (60.1-121 lbs)
20130                                                                                    small amount
20131                                                                       based on weight (50+ lbs)
20135                                                                                         23, 228
20144                                                                    based on weight (50-100 lbs)
20145                                                                                         30 , 40
20149                                                                                     unspecified
20150                                                                                     unspecified
20164                                                                                       5-6 drops
20173                                                                       based on weight (55+ lbs)
20174                                                                    based on weight (51-100 lbs)
20175                                                                                    small amount
20182                                                                                    small amount
20218                                                                                 based on weight
20219                                                                    based on weight (51-100 lbs)
20220                                                                     based on weight (51-60 lbs)
20221                                                                    based on weight (60-120 lbs)
20222                                                                    based on weight (60-120 lbs)
20224                                                                    based on weight (60-120 lbs)
20231                                                                                          1 drop
20232                                                                                     as directed
20233                                                                    based on weight (51-100 lbs)
20234                                                                                    small amount
20240                                                                       based on weight (55+ lbs)
20241                                                                       based on weight (55+ lbs)
20243                                                                     based on weight (44-88 lbs)
20244                                                                    based on weight (51-100 lbs)
20245                                                                    based on weight (51-100 lbs)
20251                                                                                    pack/package
20272                                                                                          1 tbsp
20275                                                                                        23 , 460
20282                                                                                         23, 460
20292                                                            272 ivermectin, 227 pyrantel pamoate
20293                                                                                     unspecified
20295                                                                     based on weight (56-90 lbs)
20297                                                                    based on weight (88-110 lbs)
20298                                                                                 0.25 inch strip
20299                                                                                          1 tube
20300                                                                    based on weight (88-110 lbs)
20301                                                                       based on weight (18+ lbs)
20302                                                                400 imidacloprid, 100 moxidectin
20303                                                               4.5% flumethrin, 10% imidacloprid
20306                                                                                 based on weight
20315                                                                                     unspecified
20337                                                                                     unspecified
20339                                                                                     unspecified
20340                                                                                     unspecified
20342                                                                                     unspecified
20343                                                                                     unspecified
20344                                                                                        27, 1620
20348                                                                    based on weight (51-100 lbs)
20356                                                           23 milbemycin oxime, 228 praziquantel
20374                                                                        based on weight (55 lbs)
20376                                                                                     as directed
20377                                                                    based on weight (51-100 lbs)
20380                                                                                     as directed
20382                                                                                     unspecified
20387                                                                    based on weight (51-100 lbs)
20388                                                                    based on weight (51-100 lbs)
20390                                                                    based on weight (51-100 lbs)
20392                                                                                    small amount
20393                                                                                    small amount
20402                                                                    based on weight (51-100 lbs)
20405                                                                    based on weight (51-100 lbs)
20406                                                                                            3 ml
20409                                                                                         23, 228
20411                                                           23 milbemycin oxime, 228 praziquantel
20413                                                           23 milbemycin oxime, 228 praziquantel
20425                                                                    based on weight (51-100 lbs)
20426                                                                    based on weight (51-100 lbs)
20441                                                                                     application
20444                                                                                     unspecified
20446                                                                                     unspecified
20453                                                                                       5.75, 115
20460                                                                                       11.5, 230
20485                                                                                    small amount
20490                                                                     based on weight (26-50 lbs)
20491                                                                     based on weight (24-60 lbs)
20510                                                                                     unspecified
20511                                                                    based on weight (51-100 lbs)
20512                                                                     based on weight (24-60 lbs)
20516                                                                    based on weight (51-100 lbs)
20517                                                                     based on weight (24-60 lbs)
20518                                                                                     unspecified
20554                                                                    based on weight (60-120 lbs)
20555                                                                    based on weight (60-120 lbs)
20561                                                                    based on weight (60-120 lbs)
20565                                                                    based on weight (60-120 lbs)
20568                                                                    based on weight (60-120 lbs)
20574                                                                                     unspecified
20577                                                                                     unspecified
20579                                                                   based on weight (40.1-60 lbs)
20582                                                                           1 tablet/pill/capsule
20585                                                                                    small amount
20615                                                                                     unspecified
20623                                                                                     unspecified
20636                                                                     based on weight (44-88 lbs)
20638                                                                                 2.68 ml of 9.8%
20641                                                                                     unspecified
20642                                                                     based on weight (45-88 lbs)
20645                                                                     based on weight (45-88 lbs)
20648                                                                     based on weight (45-88 lbs)
20651                                                                     based on weight (45-88 lbs)
20659                                                                                     unspecified
20666                                                                                     unspecified
20667                                                                                     unspecified
20678                                                                                     unspecified
20698                                                                                 0.25 inch strip
20701                                                                                     unspecified
20702                                                                                     unspecified
20704                                                                                     application
20705                                                                                        wipe/pad
20707                                                                    based on weight (60-120 lbs)
20708                                                                                     unspecified
20709                                                                                     unspecified
20712                                                                                        wipe/pad
20717                                                                  based on weight (50.1-100 lbs)
20718                                                           23 milbemycin oxime, 228 praziquantel
20728                                                                                     unspecified
20738                                                                                        tapering
20745                                                                                          1 pump
20748                                                            272 ivermectin, 227 pyrantel pamoate
20750                                                                                         6 drops
20761                                                                                       13.5, 810
20762                                                                                        27, 1620
20763                                                                                        27, 1610
20766                                                                                        27, 1620
20767                                                                                        27, 1620
20771                                                                                        125, 500
20783                                                                                        27, 1620
20791                                                                                     unspecified
20796                                                                                     unspecified
20800                                                                  based on weight (50.1-100 lbs)
20808                                                                    based on weight (51-100 lbs)
20809                                                                  based on weight (60.1-120 lbs)
20814                                                                                     unspecified
20817                                                                                       13.5, 810
20819                                                             13.5 milbemycin oxime, 810 spinosad
20849                                                                                           drops
20852                                                                                        tapering
20854                                                                    based on weight (51-100 lbs)
20855                                                                    based on weight (60-121 lbs)
20858                                                            272 ivermectin, 227 pyrantel pamoate
20861                                                                                     application
20862                                                                    based on weight (51-100 lbs)
20863                                                                    based on weight (60-120 lbs)
20872                                                                     based on weight (40-85 lbs)
20897                                                                                    small amount
20918                                                                                          2.5, 5
20939                                                                       based on weight (18+ lbs)
20940                                                                                 based on weight
20941                                                                           1 tablet/pill/capsule
20947                                                                                 based on weight
20949                                                                                 based on weight
20962                                                                    based on weight (50-100 lbs)
20963                                                                     based on weight (45-88 lbs)
20964                                                                    based on weight (50-100 lbs)
20965                                                                    based on weight (88-132 lbs)
20966                                                                    based on weight (50-100 lbs)
20972                                                                                           15 ml
21003                                                                                     unspecified
21013                                                                                 0.25 inch strip
21017                                                                                         1 spray
21022                                                              27 milbemycin oxime, 1620 spinosad
21025                                                           2 prednisone, 5 trimeprazine tartrate
21029                                                                                       13.5, 810
21074                                                                    based on weight (60-120 lbs)
21078                                                                  based on weight (60.1-120 lbs)
21080                                                                                        27, 1620
21088                                                                                     unspecified
21102                                                                     based on weight (40-80 lbs)
21109                                                                                    small amount
21110                                                                    based on weight (51-100 lbs)
21111                                                                                    small amount
21112                                                                                    small amount
21114                                                                    based on weight (51-100 lbs)
21115                                                                     based on weight (44-88 lbs)
21119                                                             10 dextromethorphan, 10 guaifenesin
21122                                                                    based on weight (51-100 lbs)
21123                                                                     based on weight (44-88 lbs)
21124                                                                                         3 drops
21125                                                                                    small amount
21126                                                                           1 tablet/pill/capsule
21127                                                                    based on weight (51-100 lbs)
21128                                                                           1 tablet/pill/capsule
21129                                                                           1 tablet/pill/capsule
21130                                                                        3 tablets/pills/capsules
21131                                                                                 moderate amount
21132                                                                                            3 ml
21133                                                                    based on weight (51-100 lbs)
21168                                                                    based on weight (51-100 lbs)
21169                                                                     based on weight (45-88 lbs)
21178                                                                                     unspecified
21179                                                                                         23, 460
21180                                                                                       27 , 1620
21181                                                                    based on weight (51-100 lbs)
21182                                                                                        23 , 460
21183                                                                           1 tablet/pill/capsule
21189                                                                           1 tablet/pill/capsule
21190                                                                    based on weight (60-120 lbs)
21192                                                                                          1 pump
21201                                                                                         23, 228
21224                                                                                 0.25 inch strip
21253                                                              27 milbemycin oxime, 1620 spinosad
21254                                                                    based on weight (51-100 lbs)
21256                                                                                         23, 460
21267                                                              27 milbemycin oxime, 1620 spinosad
21268                                                                                     bottle/vial
21269                                                                    based on weight (60-120 lbs)
21273                                                                                         23, 460
21278                                                                                    small amount
21282                                                                                    small amount
21287                                                                                    small amount
21309                                                                                          2.5, 5
21326                                                                                       6-8 drops
21331                                                                                     unspecified
21338                                                                       based on weight (55+ lbs)
21359                                                                                         23, 460
21361                                                                                         23, 460
21367                                                                                            2 ml
21369                                                                    based on weight (51-100 lbs)
21384                                                                    based on weight (51-100 lbs)
21385                                                                  based on weight (60.1-121 lbs)
21386                                                                                       7-8 drops
21387                                                                                     unspecified
21388                                                                                     unspecified
21389                                                                                     unspecified
21403                                                                                         23, 228
21413                                                                                     unspecified
21416                                                                                     unspecified
21442                                                                                      1200, 1500
21445                                                                    based on weight (51-100 lbs)
21448                                                                    based on weight (51-100 lbs)
21449                                                                   based on weight (24.1-60 lbs)
21465                                                                                     unspecified
21472                                                      500 amoxicillin, 125 clavulanate potassium
21481                                                                                     unspecified
21491                                                                                          1 drop
21492                                                                                     unspecified
21493                                                                                     unspecified
21495                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21504                                                                        based on weight (45 lbs)
21507                                                                        based on weight (50 lbs)
21508                                                                                     application
21509                                                                                     unspecified
21522                                                                                          1 tube
21527                                                                     based on weight (20-55 lbs)
21528                                                                                 based on weight
21531                                                            272 ivermectin, 227 pyrantel pamoate
21532                                                                    based on weight (51-100 lbs)
21533                                                                    based on weight (60-120 lbs)
21534                                                                                          1.5 ml
21545                                                                           1 tablet/pill/capsule
21546                                                                                          1 tube
21549 2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
21552                                                                                     unspecified
21553                                                                                     unspecified
21555                                                                                     unspecified
21558                                                                                         23, 460
21562                                                                       based on weight (55+ lbs)
21563                                                                    based on weight (50-100 lbs)
21564                                                                       based on weight (55+ lbs)
21585                                                                    based on weight (60-120 lbs)
21586                                                                    based on weight (50-100 lbs)
21587                                                                                         8 drops
21593                                                                                     unspecified
21600                                                                        based on weight (55 lbs)
21602                                                              460 lufenuron, 23 milbemycin oxime
21605                                                                       based on weight (55+ lbs)
21607                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21608                                                                    based on weight (51-100 lbs)
21609                                                                     based on weight (44-88 lbs)
21612                                                                                     unspecified
21614                                                                     based on weight (44-88 lbs)
21615                                                                    based on weight (51-100 lbs)
21616                                                                                    small amount
21617                                                                    based on weight (51-100 lbs)
21618                                                                     based on weight (44-88 lbs)
21619                                                                    based on weight (51-100 lbs)
21620                                                                     based on weight (44-88 lbs)
21621                                                                    based on weight (51-100 lbs)
21622                                                                     based on weight (44-88 lbs)
21625                                                                                    small amount
21632                                                                                     unspecified
21637                                                                                          1 drop
21642                                                                    based on weight (51-100 lbs)
21643                                                                                         23, 460
21644                                                                    based on weight (51-100 lbs)
21645                                                                    based on weight (51-100 lbs)
21646                                                                    based on weight (51-100 lbs)
21648                                                                     based on weight (44-88 lbs)
21649                                                                    based on weight (51-100 lbs)
21650                                                                                     unspecified
21651                                                              460 lufenuron, 23 milbemycin oxime
21652                                                               4.5% flumethrin, 10% imidacloprid
21653                                                                                    small amount
21654                                                                                        23 , 460
21655                                                                       based on weight (18+ lbs)
21658                                                                                          collar
21659                                                                                    small amount
21660                                                                                    small amount
21661                                                                                           spray
21666                                                                       based on weight (18+ lbs)
21673                                                                                     unspecified
21677                                                                                     unspecified
21678                                                                                     unspecified
21680                                                                                     unspecified
21685                                                                                     unspecified
21701                                                                                 based on weight
21705                                                                                 based on weight
21707                                                                                          collar
21708                                                                                     unspecified
21723                                                                                        27, 1620
21725                                                                    based on weight (51-100 lbs)
21727                                                                                     unspecified
21739                                                              460 lufenuron, 23 milbemycin oxime
21748                                                                                     unspecified
21749                                                                                     unspecified
21753                                                           23 milbemycin oxime, 228 praziquantel
21754                                                                    based on weight (50-100 lbs)
21755                                                                     based on weight (44-88 lbs)
21757                                                                    based on weight (51-100 lbs)
21767                                                                                     unspecified
21783                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                            272 ivermectin, 227 pyrantel pamoate
21809                                                                                     unspecified
21810                                                                                     unspecified
21814                                                                    based on weight (51-100 lbs)
21815                                                                     based on weight (45-88 lbs)
21833                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
21851                                                                                         23, 228
21865                                                            272 ivermectin, 227 pyrantel pamoate
21866                                                                                            4 ml
21869                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
21872                                                                                     as directed
21873                                                                                     as directed
21875                                                                                     unspecified
21876                                                                                     unspecified
21877                                                                                     unspecified
21878                                                                                     unspecified
21886                                                                                     unspecified
21894                                                                    based on weight (51-100 lbs)
21897                                                                    based on weight (51-100 lbs)
21898                                                                    based on weight (60-121 lbs)
21912                                                            272 ivermectin, 227 pyrantel pamoate
21914                                                                           1 tablet/pill/capsule
21915                                                                                          1 tube
21918                                                                                    pack/package
21921                                                                                    small amount
21925                                                                                     as directed
21949                                                                                     unspecified
21955                                                                     based on weight (44-88 lbs)
21956                                                                    based on weight (51-100 lbs)
21957                                                                           1 tablet/pill/capsule
21959                                                                                        160, 800
21982                                                                     based on weight (45-88 lbs)
21993                                                                    based on weight (50-100 lbs)
22020                                                                                     as directed
22022                                                                                            1 gm
22023                                                                    based on weight (51-100 lbs)
22025                                                                    based on weight (51-100 lbs)
22026                                                                    based on weight (51-100 lbs)
22037                                                                    based on weight (51-100 lbs)
22038                                                                  based on weight (60.1-121 lbs)
22041                                                                    based on weight (51-100 lbs)
22042                                                                    based on weight (60-120 lbs)
22043                                                                        based on weight (65 lbs)
22045                                                                    based on weight (51-100 lbs)
22046                                                                    based on weight (60-120 lbs)
22048                                                                                           spray
22050                                                                                   2 billion cfu
22051                                                              27 milbemycin oxime, 1620 spinosad
22060                                                                                        27, 1620
22062                                                                    based on weight (51-100 lbs)
22064                                                                                     unspecified
22088                                                                    based on weight (51-100 lbs)
22089                                                                  based on weight (60.1-121 lbs)
22092                                                                    based on weight (51-100 lbs)
22093                                                                  based on weight (60.1-121 lbs)
22118                                                                    based on weight (51-100 lbs)
22120                                                                                     application
22121                                                                                           drops
22125                                                                    based on weight (51-100 lbs)
22128                                                                                           drops
22136                                                                    based on weight (51-100 lbs)
22140                                                                    based on weight (51-100 lbs)
22141                                                                     based on weight (44-88 lbs)
22151                                                                                     unspecified
22160                                                                    based on weight (50-100 lbs)
22161                                                                    based on weight (51-100 lbs)
22163                                                                    based on weight (51-100 lbs)
22173                                                                    based on weight (51-100 lbs)
22175                                                                                    small amount
22176                                                                    based on weight (51-100 lbs)
22177                                                                  based on weight (60.1-121 lbs)
22179                                                                                     application
22189                                                                                    small amount
22190                                                                                    small amount
22191                                                                                          1 tube
22196                                                                                    small amount
22197                                                                                          1 tube
22199                                                                                 based on weight
22201                                                                                     unspecified
22216                                                                    based on weight (51-100 lbs)
22217                                                                  based on weight (60.1-121 lbs)
22218                                                                                    small amount
22219                                                                                     unspecified
22222                                                                    based on weight (51-100 lbs)
22223                                                                    based on weight (51-100 lbs)
22224                                                                    based on weight (89-132 lbs)
22225                                                                    based on weight (51-100 lbs)
22226                                                                  based on weight (60.1-121 lbs)
22227                                                                    based on weight (51-100 lbs)
22228                                                                  based on weight (60.1-121 lbs)
22229                                                                    based on weight (51-100 lbs)
22230                                                            based on weight (50.1-100 lbs) - 900
22237                                                                                       13.5, 810
22238                                                                                         13, 810
22239                                                                                     unspecified
22240                                                                                     unspecified
22241                                                                                     unspecified
22243                                                                                     unspecified
22245                                                                                     unspecified
22253                                                                    based on weight (60-120 lbs)
22261                                                                    based on weight (50-100 lbs)
22262                                                                    based on weight (60-120 lbs)
22265                                                                    based on weight (51-100 lbs)
22267                                                                    based on weight (51-100 lbs)
22268                                                                    based on weight (60-120 lbs)
22270                                                                                     unspecified
22272                                                                                     unspecified
22289                                                                                         23, 228
22299                                                                                        27, 1620
22306                                                                    based on weight (51-100 lbs)
22308                                                                                         23, 460
22311                                                                                         23, 460
22313                                                                                     unspecified
22314                                                                           1 tablet/pill/capsule
22315                                                                                    pack/package
22316                                                                                         23, 460
22319                                                                           1 tablet/pill/capsule
22321                                                                    based on weight (51-100 lbs)
22323                                                                                 based on weight
22341                                                                                          1 dose
22342                                                                                   30 wipes/pads
22343                                                                                     application
22345                                                                                     unspecified
22346                                                                                     unspecified
22347                                                                                     unspecified
22349                                                                                     unspecified
22351                                                                                        4.5, 270
22352                                                                                        9.3, 560
22353                                                                                       13.5, 810
22367                                                                            100000, 2.5, 2500, 1
22404                                                                                     application
22407                                                                1.5 tablets/pills/capsules - 100
22408                                                                                    small amount
22410                                                                                    small amount
22413                                                                    based on weight (51-100 lbs)
22417                                                                    based on weight (51-100 lbs)
22430                                                                        based on weight (64 lbs)
22439                                                                    based on weight (60-120 lbs)
22440                                                                                        27, 1620
22441                                                                    based on weight (51-100 lbs)
22459                                                                                     unspecified
22463                                                                                     unspecified
22520                                                                                            1 gm
22530                                                                                     unspecified
22531                                                                    based on weight (51-100 lbs)
22532                                                                    based on weight (51-100 lbs)
22533                                                                                          collar
22534                                                              460 lufenuron, 23 milbemycin oxime
22537                                                                                     unspecified
22540                                                                                     unspecified
22541                                                                    based on weight (51-100 lbs)
22545                                                                    based on weight (51-100 lbs)
22546                                                                    based on weight (51-100 lbs)
22547                                                                       based on weight (55+ lbs)
22548                                                                             tablet/pill/capsule
22549                                                                                     unspecified
22552                                                                                     unspecified
22556                                                                                          1 pump
22557                                                                    based on weight (51-100 lbs)
22558                                                                      based on weight (0-25 lbs)
22574                                                                                     application
22575                                                                                 0.25 inch strip
22577                                                            272 ivermectin, 227 pyrantel pamoate
22578                                                                    based on weight (51-100 lbs)
22579                                                            272 ivermectin, 227 pyrantel pamoate
22583                                                                                     unspecified
22585                                                                                     unspecified
22598                                                                     based on weight (44-88 lbs)
22601                                                                     based on weight (44-88 lbs)
22606                                                                    based on weight (51-100 lbs)
22607                                                                     based on weight (45-88 lbs)
22610                                                                                        2.3, 140
22611                                                                                        9.3, 560
22625                                                                    based on weight (51-100 lbs)
22653                                                                    based on weight (50-100 lbs)
22655                                                                     based on weight (45-88 lbs)
22656                                                                    based on weight (51-100 lbs)
22662                                                                                    small amount
22667                                                                                     application
22669                                                                                    small amount
22670                                                                                          1 tube
22672                                                                                            tube
22673                                                                             tablet/pill/capsule
22681                                                                                    small amount
22682                                                                    based on weight (50-100 lbs)
22683                                                                     based on weight (45-88 lbs)
22690                                                                       based on weight (18+ lbs)
22691                                                                       based on weight (18+ lbs)
22692                                                                    based on weight (51-100 lbs)
22693                                                                    based on weight (51-100 lbs)
22704                                                                                     unspecified
22705                                                                                     unspecified
22707                                                                                     unspecified
22708                                                                                     unspecified
22709                                                                                           15 gm
22710                                                                                           60 ml
22711                                                                                     unspecified
22713                                                                                     unspecified
22714                                                                                     unspecified
22715                                                                                           15 gm
22716                                                                                     unspecified
22717                                                                                     unspecified
22718                                                                    based on weight (51-100 lbs)
22719                                                                    based on weight (51-100 lbs)
22721                                                                                          0.2 ml
22733                                                                                          collar
22748                                                                    based on weight (51-100 lbs)
22749                                                                                         23, 460
22750                                                                                   0.44, 8.8, 44
22751                                                                                         23, 460
22752                                                                                   0.44, 8.8, 44
22754                                                                    based on weight (51-100 lbs)
22763                                                                    based on weight (51-100 lbs)
22764                                                                       based on weight (55+ lbs)
22765                                                                                    small amount
22766                                                                    based on weight (50-100 lbs)
22770                                                                                         23, 228
22777                                                                                        27, 1620
22778                                                                                        27, 1620
22779                                                                                        27, 1620
22780                                                                                        27, 1620
22795                                                                    based on weight (51-100 lbs)
22796                                                                       based on weight (55+ lbs)
22797                                                                                     unspecified
22798                                                                                     unspecified
22799                                                                    based on weight (51-100 lbs)
22800                                                                    based on weight (60-121 lbs)
22801                                                                    based on weight (51-100 lbs)
22802                                                                                     application
22803                                                                    based on weight (51-100 lbs)
22804                                                                    based on weight (60-121 lbs)
22830                                                                                 0.25 inch strip
22840                                                                    based on weight (51-100 lbs)
22848                                                                                    small amount
22853                                                                                    small amount
22858                                                                                            bath
22875                                                                       based on weight (55+ lbs)
22886                                                                                    small amount
22909                                                            272 ivermectin, 227 pyrantel pamoate
22919                                                                    based on weight (60-121 lbs)
22920                                                                        based on weight (90 lbs)
22922                                                                                     application
22923                                                                        2 tablets/pills/capsules
22926                                                                                    small amount
22929                                                                                    small amount
22936                                                                                     unspecified
22938                                                                                     unspecified
22939                                                                                     unspecified
22954                                                                                   1 bottle/vial
22955                                                                           1 tablet/pill/capsule
22963                                                                    based on weight (51-100 lbs)
22965                                                                                     unspecified
22966                                                                                 based on weight
22967                                                                           1 tablet/pill/capsule
22971                                                                    based on weight (51-100 lbs)
22990                                                                                        wipe/pad
22991                                                                           1 tablet/pill/capsule
22992                                                                    based on weight (88-110 lbs)
22994                                                                       based on weight (60+ lbs)
23005                                                                                          1 drop
23006                                                                                 moderate amount
23007                                                                                 moderate amount
23008                                                                                          1 drop
23009                                                                                           12 ml
23018                                                                   0.5 tablet/pill/capsule - 250
23019                                                                   0.75 tablet/pill/capsule - 75
23024                                                                                  1 pack/package
23025                                                                           1 tablet/pill/capsule
23043                                                                                     unspecified
23049                                                            272 ivermectin, 227 pyrantel pamoate
23051                                                            272 ivermectin, 227 pyrantel pamoate
23053                                                                                     unspecified
23055                                                                    based on weight (88-123 lbs)
23059                                                                    based on weight (50-100 lbs)
23060                                                                    based on weight (50-100 lbs)
23061                                                                    based on weight (88-123 lbs)
23064                                                                    based on weight (51-100 lbs)
23066                                                                    based on weight (51-100 lbs)
23083                                                                                        27, 1620
23095                                                                  based on weight (60.1-120 lbs)
23096                                                                   based on weight (44.1-88 lbs)
23100                                                                                     unspecified
23102                                                                                     unspecified
23103                                                                                     unspecified
23108                                                                                     unspecified
23122                                                                    based on weight (51-100 lbs)
23123                                                                       based on weight (55+ lbs)
23124                                                                    based on weight (51-100 lbs)
23125                                                                    based on weight (51-100 lbs)
23134                                                                    based on weight (51-100 lbs)
23137                                                                    based on weight (51-100 lbs)
23138                                                                    based on weight (51-100 lbs)
23143                                                                    based on weight (50-100 lbs)
23144                                                                     based on weight (44-88 lbs)
23153                                                                                     unspecified
23154                                                                                     unspecified
23163                                                                                     unspecified
23169                                                                        based on weight (62 lbs)
23173                                                                      based on weight (68.5 lbs)
23175                                                            272 ivermectin, 227 pyrantel pamoate
23202                                                                    based on weight (51-100 lbs)
23237                                                                                     unspecified
23249                                                                                 moderate amount
23250                                                                    based on weight (60-120 lbs)
23251                                                                    based on weight (51-100 lbs)
23257                                                                                         1000 ml
23258                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23259                                                                     based on weight (56-95 lbs)
23266                                                                   0.5-1.0% (50 minute duration)
23267                                                            272 ivermectin, 227 pyrantel pamoate
23268                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                     unspecified
23278                                                                                    small amount
23279                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23280                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
23283                                                                                     as directed
23284                                                     250 amoxicillin, 62.5 clavulanate potassium
23286                                                            272 ivermectin, 227 pyrantel pamoate
23288                                                                                          0.5 oz
23294                                                            272 ivermectin, 227 pyrantel pamoate
23299                                                       375 amoxicillin, 94 clavulanate potassium
23304                                                                                    small amount
23305                                                                                          1 pump
23306                                                                                          1 pump
23308                                                                                     unspecified
23321                                                                                     unspecified
23322                                                                                     unspecified
23325                                                                                     unspecified
23333                                                                    based on weight (51-100 lbs)
23336                                                                    based on weight (51-100 lbs)
23337                                                                     based on weight (44-88 lbs)
23338                                                                     based on weight (56-95 lbs)
23340                                                                                    small amount
23341                                                            272 ivermectin, 227 pyrantel pamoate
23342                                                                     based on weight (56-95 lbs)
23344                                                            272 ivermectin, 227 pyrantel pamoate
23345                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                    small amount
23350                           based on weight (50.1-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23353                                                     250 amoxicillin, 62.5 clavulanate potassium
23355                                                                                 moderate amount
23356                                                            172 ivermectin, 227 pyrantel pamoate
23360                                                            272 ivermectin, 227 pyrantel pamoate
23364                                                                                    small amount
23366                                                                                     unspecified
23384                                                                     based on weight (45-88 lbs)
23388                                                                    based on weight (51-100 lbs)
23403                                                                    based on weight (51-100 lbs)
23404                                                                     based on weight (44-88 lbs)
23413                                                                    based on weight (51-100 lbs)
23414                                                                    based on weight (51-100 lbs)
23419                                                                                    small amount
23422                                                                                          1 tube
23423                                                                                          1 tube
23427                                                                    based on weight (51-100 lbs)
23428                                                                    based on weight (51-100 lbs)
23437                                                                    based on weight (60-120 lbs)
23450                                                                     based on weight (45-88 lbs)
23452                                                                                        2 sprays
23456                                                                                           spray
23472                                                                     based on weight (21-55 lbs)
23482                                                                     based on weight (55-90 lbs)
23484                                                                    based on weight (50-100 lbs)
23485                                                                     based on weight (21-55 lbs)
23487                                                                     based on weight (56-95 lbs)
23491                                                                                         57, 400
23507                                                                    based on weight (51-100 lbs)
23520                                                                     based on weight (56-95 lbs)
23533                                                                                     unspecified
23534                                                                                     unspecified
23540                                                                    based on weight (51-100 lbs)
23541                                                                  based on weight (60.1-121 lbs)
23552                                                                    based on weight (51-100 lbs)
23553                                                                    based on weight (51-100 lbs)
23557                                                                    based on weight (51-100 lbs)
23565                                                                                    small amount
23566                                                                                    small amount
23568                                                                                 based on weight
23571                                                                    based on weight (51-100 lbs)
23572                                                                     based on weight (45-88 lbs)
23588                                                                    based on weight (60-120 lbs)
23589                                                                                          1 tube
23590                                                                                     unspecified
23610                                                                                        23 , 460
23617                                                                    based on weight (51-100 lbs)
23618                                                                    based on weight (51-100 lbs)
23619                                                                                         23, 460
23620                                                                    based on weight (51-100 lbs)
23622                                                                    based on weight (51-100 lbs)
23646                                                                    based on weight (60-120 lbs)
23647                                                                    based on weight (60-120 lbs)
23651                                                                    based on weight (50-100 lbs)
23657                                                                  based on weight (50.1-100 lbs)
23659                                                                    based on weight (88-123 lbs)
23685                                                                    based on weight (51-100 lbs)
23686                                                                     based on weight (44-88 lbs)
23688                                                                   based on weight (44.1-88 lbs)
23707                                                                                     unspecified
23718                                                                                     unspecified
23721                                                                    based on weight (50-100 lbs)
23722                                                                  based on weight (60.1-120 lbs)
23724                                                                                     unspecified
23730                                                                    based on weight (51-100 lbs)
23732                                                                    based on weight (51-100 lbs)
23733                                                                                         5 drops
23740                                                                    based on weight (51-100 lbs)
23747                                                                                       11.5, 230
23749                                                                                     unspecified
23757                                                                    based on weight (51-100 lbs)
23804                                                                                         23, 460
23805                                                                    based on weight (51-100 lbs)
23808                                                                    based on weight (51-100 lbs)
23809                                                                                          collar
23819                                                                    based on weight (51-100 lbs)
23861                                                                    based on weight (51-100 lbs)
23862                                                                     based on weight (24-60 lbs)
23865                                                                           1 tablet/pill/capsule
23866                                                                       based on weight (55+ lbs)
23868                                                                                     as directed
23871                                                                       based on weight (55+ lbs)
23872                                                                                     unspecified
23873                                                                                     unspecified
23898                                                                                 based on weight
23899                                                                                        0.25 cup
23900                                                                                     unspecified
23901                                                                    based on weight (50-100 lbs)
23902                                                                                 based on weight
23905                                                                    based on weight (50-100 lbs)
23906                                                                                          collar
23909                                                                                     application
23910                                                                    based on weight (50-100 lbs)
23914                                                                                            tube
23917                                                                                     unspecified
23924                                                                           1 tablet/pill/capsule
23925                                                                           1 tablet/pill/capsule
23933                                                                                   1 bottle/vial
23942                                                                                     unspecified
23955                                                                    based on weight (50-100 lbs)
23956                                                                    based on weight (50-100 lbs)
23957                                                                                     unspecified
23958                                                                                     unspecified
23959                                                                                     unspecified
23965                                                                                    small amount
23969                                                                                 based on weight
23974                                                                        based on weight (55 lbs)
23976                                                                based on weight (55+ lbs) - 4 ml
23980                                                                                     unspecified
24010                                                                                       13.5, 810
24012                                                                                    small amount
24017                                                                                       13.5, 810
24018                                                             13.5 milbemycin oxime, 810 spinosad
24019                                                             13.5 milbemycin oxime, 810 spinosad
24020                                                                                        27, 1620
24022                                                                                        27, 1620
24029                                                                                        27, 1620
24045                                                                                     unspecified
24046                                                                                     unspecified
24062                                                                    based on weight (51-100 lbs)
24068                                                                                     unspecified
24072                                                                                         23, 460
24075                                                                    based on weight (51-100 lbs)
24076                                                                    based on weight (51-100 lbs)
24077                                                                    based on weight (51-100 lbs)
24079                                                                     based on weight (45-88 lbs)
24104                                                                         0.5 tablet/pill/capsule
24106                                                                        2 tablets/pills/capsules
24116                                                                                 based on weight
24117                                                                                     unspecified
24139                                                                                 0.25 inch strip
24142                                                                    based on weight (51-100 lbs)
24144                                                                    based on weight (51-100 lbs)
24145                                                                                     unspecified
24146                                                                                          4.7 ml
24149                                                           23 milbemycin oxime, 228 praziquantel
24154                                                                                     unspecified
24155                                                                                     unspecified
24157                                                                                     unspecified
24162                                                                  based on weight (50.1-100 lbs)
24165                                                                    based on weight (51-100 lbs)
24166                                                                       based on weight (64+ lbs)
24172                                                                                 0.25 inch strip
24174                                                                    based on weight (50-100 lbs)
24185                                                                                1.5-7.5, 2.25, 5
24189                                                                                     0.284, 0.57
24192                                                                                     unspecified
24193                                                                                     unspecified
24194                                                                                     unspecified
24195                                                                                     unspecified
24201                                                                                         8 drops
24202                                                                                         8 drops
24203                                                                                     application
24205                                                                                     unspecified
24206                                                                                     unspecified
24207                                                                                     unspecified
24208                                                                                     unspecified
24209                                                                                     application
24215                                                                                    small amount
24217                                                                                     application
24221                                                                                    small amount
24222                                                                                     unspecified
24246                                                                        2 tablets/pills/capsules
24250                                                                           1 tablet/pill/capsule
24251                                                                                          1 drop
24253                                                                                     unspecified
24257                                                                    based on weight (51-100 lbs)
24258                                                                    based on weight (51-100 lbs)
24259                                                                                     unspecified
24261                                                                           1 tablet/pill/capsule
24262                                                                                          1.4 ml
24263                                                                                          4.8 ml
24265                                                                           1 tablet/pill/capsule
24267                                                                                       150 ml/hr
24268                                                                                        75 ml/hr
24269                                                                                          16-116
24276                                                                    based on weight (51-100 lbs)
24282                                                                                     unspecified
24312                                                                                     unspecified
24313                                                                                     unspecified
24314                                                                                     unspecified
24319                                                                   0.5 tablet/pill/capsule - 227
24322                                                                                 moderate amount
24328                                                                        2 tablets/pills/capsules
24343                                                                                       13.5, 810
24375                                                                                        114, 136
24393                                                                    based on weight (51-100 lbs)
24394                                                                           1 tablet/pill/capsule
24395                                                                           1 tablet/pill/capsule
24397                                                                                            1 gm
24400                                                                    based on weight (50-100 lbs)
24402                                                                    based on weight (51-100 lbs)
24403                                                                    based on weight (51-100 lbs)
24405                                                                 2 tablets/pills/capsules - 2000
24406                                                                  1.5 tablets/pills/capsules - 5
24407                                                                  2 tablets/pills/capsules - 300
24408                                                                                           15 ml
24409                                                                                            bath
24410                                                                           1 tablet/pill/capsule
24413                                                                                     unspecified
24416                                                                                     unspecified
24417                                                                                        3 gm/tsp
24420                                                                                          powder
24421                                                                    based on weight (50-100 lbs)
24422                                                                                 based on weight
24424                                                                                     unspecified
24425                                                                                 based on weight
24426                                                                    based on weight (60-121 lbs)
24429                                                                                       0.125 tsp
24431                                                                    based on weight (50-100 lbs)
24432                                                                     based on weight (24-60 lbs)
24434                                                                                          1 drop
24435                                                                    based on weight (50-100 lbs)
24436                                                                                          1 drop
24437                                                                    based on weight (60-120 lbs)
24451                                                                                     unspecified
24452                                                                                     unspecified
24453                                                                                     unspecified
24455                                                                                     unspecified
24459                                                                                     unspecified
24460                                                                                     unspecified
24468                                                                                     unspecified
24473                                                              27 milbemycin oxime, 1620 spinosad
24475                                                              27 milbemycin oxime, 1620 spinosad
24476                                                                    based on weight (50-100 lbs)
24477                                                                    based on weight (50-100 lbs)
24478                                                                                  1 pack/package
24479                                                                                         5 drops
24480                                                                    based on weight (50-100 lbs)
24481                                                                    based on weight (51-100 lbs)
24484                                                                           1 tablet/pill/capsule
24486                                                                                     unspecified
24503                                                                                         2 drops
24514                                                                                     unspecified
24520                                                                     based on weight (45-88 lbs)
24521                                                                     based on weight (25-50 lbs)
24526                                                                                           spray
24534                                                                     based on weight (45-88 lbs)
24536                                                                                 based on weight
24593                                                                                    small amount
24597                                                                                        27, 1620
24598                                                                                         35, 425
24599                                                                                        27, 1620
24601                                                                                        27, 1610
24602                                                                                        27, 1610
24605                                                                  based on weight (60.1-120 lbs)
24610                                                                                    small amount
24647                                                                                     unspecified
24648                                                                                     application
24652                                                                                          1 tube
24653                                                                                 moderate amount
24654                                                                                          1 tube
24660                                                                                 based on weight
24669                                                                    based on weight (60-121 lbs)
24688                                                                                 0.25 inch strip
24707                                                                                     unspecified
24733                                                                    based on weight (51-100 lbs)
24734                                                                    based on weight (60-120 lbs)
24758                                                                                 0.25 inch strip
24762                                                                    based on weight (51-100 lbs)
24768                                                                    based on weight (50-100 lbs)
24769                                                                     based on weight (24-60 lbs)
24776                                                                                         4 drops
24782                                                                                         4 drops
24802                                                                     based on weight (40-80 lbs)
24804                                                                                     unspecified
24805                                                                                     unspecified
24806                                                                                     unspecified
24817                                                                                    small amount
24819                                                                                     application
24824                                                                    based on weight (51-100 lbs)
24825                                                                                 based on weight
24827                                                                                     as directed
24828                                                                                 based on weight
24829                                                                    based on weight (51-100 lbs)
24830                                                                                     unspecified
24839                                                                           1 tablet/pill/capsule
24840                                                                           1 tablet/pill/capsule
24850                                                                    based on weight (50-100 lbs)
24867                                                                    based on weight (51-100 lbs)
24878                                                                                     application
24880                                                                                         6 drops
24898                                                                                          powder
24902                                                                    based on weight (51-100 lbs)
24917                                                                                     unspecified
24918                                                                                     unspecified
24919                                                                                     unspecified
24935                                                              460 lufenuron, 23 milbemycin oxime
24937                                                              460 lufenuron, 23 milbemycin oxime
24938                                                              460 lufenuron, 23 milbemycin oxime
24940                                                              460 lufenuron, 23 milbemycin oxime
24942                                                              460 lufenuron, 23 milbemycin oxime
24948                                                                                    small amount
24949                                                              460 lufenuron, 23 milbemycin oxime
24950                                                                     based on weight (45-88 lbs)
24963                                                                                         23, 460
24964                                                                                         23, 228
24967                                                                                        2 sprays
24968                                                                    based on weight (51-100 lbs)
24969                                                                                 based on weight
24971                                                                    based on weight (51-100 lbs)
24973                                                                             tablet/pill/capsule
24974                                                                                        1 collar
24975                                                                                    small amount
24982                                                                     based on weight (45-88 lbs)
24984                                                              460 lufenuron, 23 milbemycin oxime
24985                                                                                     unspecified
24987                                                                    based on weight (51-100 lbs)
24988                                                                                      8-10 drops
24989                                                                                    small amount
24993                                                                                 based on weight
25003                                                                                          1 drop
25004                                                                           1 tablet/pill/capsule
25020                                                                                         23, 460
25021                                                                     based on weight (44-88 lbs)
25022                                                                                         23, 460
25041                                                                                         2.68 ml
25059                                                            272 ivermectin, 227 pyrantel pamoate
25079                                                                    based on weight (51-100 lbs)
25087                                                                                          collar
25094                                                                                        27, 1620
25099                                                                                     unspecified
25100                                                                                     unspecified
25101                                                                           1 tablet/pill/capsule
25102                                                                           1 tablet/pill/capsule
25118                                                                    based on weight (51-100 lbs)
25119                                                                    based on weight (51-100 lbs)
25120                                                                    based on weight (51-100 lbs)
25124                                                                                 moderate amount
25129                                                                             tablet/pill/capsule
25191                                                                    based on weight (51-100 lbs)
25196                                                                    based on weight (51-100 lbs)
25198                                                                                             10+
25233                                                                    based on weight (51-100 lbs)
25234                                                                    based on weight (51-100 lbs)
25241                                                                                    small amount
25255                                                                                    small amount
25258                                                                                    small amount
25262                                                                                     unspecified
25269                                                                                     unspecified
25270                                                                                     unspecified
25296                                                            272 ivermectin, 227 pyrantel pamoate
25299                                                                                 based on weight
25300                                                                   based on weight (24.1-60 lbs)
25309                                                                           1 tablet/pill/capsule
25310                                                                                          1 dose
25311                                                                                     application
25315                                                                    based on weight (51-100 lbs)
25316                                                                    based on weight (51-100 lbs)
25317                                                                    based on weight (60-120 lbs)
25331                                                                           1 tablet/pill/capsule
25337                                                                           1 tablet/pill/capsule
25342                                                                    based on weight (61-120 lbs)
25343                                                                    based on weight (51-100 lbs)
25345                                                                                    small amount
25346                                                                                    small amount
25347                                                                                     unspecified
25358                                                                                         8 drops
25366                                                                                         8 drops
25367                                                                                     unspecified
25369                                                                                            1 ml
25370                                                                                         6 drops
25378                                                                                       0.125 tsp
25390                                                                           1 tablet/pill/capsule
25391                                                                           1 tablet/pill/capsule
25405                                                                   based on weight (40.1-85 lbs)
25409                                                                                 0.25 inch strip
25410                                                                                     as directed
25417                                                                                            8 oz
25421                                                                   based on weight (40.1-85 lbs)
25424                                                                                     as directed
25425                                                                                     as directed
25437                                                                                        23 , 460
25444                                                                                         23, 460
25473                                                                    based on weight (51-100 lbs)
25482                                                                                     unspecified
25493                                                                    based on weight (51-100 lbs)
25494                                                                    based on weight (51-100 lbs)
25501                                                                    based on weight (51-100 lbs)
25514                                                                                     unspecified
25515                                                                                     unspecified
25516                                                                    based on weight (51-100 lbs)
25520                                                                    based on weight (51-100 lbs)
25521                                                                    based on weight (60-120 lbs)
25523                                                                       based on weight (59+ lbs)
25547                                                                                    small amount
25554                                                                                       27 , 1620
25555                                                                                        27, 1620
25556                                                                                        4.5, 270
25557                                                                                        27, 1620
25575                                                                    based on weight (50-100 lbs)
25576                                                                    based on weight (51-100 lbs)
25577                                                                    based on weight (51-100 lbs)
25579                                                                                          272 gm
25589                                                           23 milbemycin oxime, 228 praziquantel
25591                                                           23 milbemycin oxime, 228 praziquantel
25612                                                                                        27, 1620
25617                                                                                   1 application
25619                                                                                     unspecified
25622                                                                                     unspecified
25660                                                                                 moderate amount
25663                                                                                    small amount
25666                                                                             tablet/pill/capsule
25670                                                                    based on weight (88-110 lbs)
25671                                                                                    small amount
25672                                                                                          0.5 ml
25674                                                                    based on weight (88-110 lbs)
25683                                                              based on weight (51-100 lbs) - 7.7
25706                                                                       based on weight (55+ lbs)
25707                                                                                     unspecified
25708                                                                    based on weight (51-100 lbs)
25711                                                                                          1 tube
25725                                                                                        5 x 10^7
25726                                                                                         8 drops
25727                                                                    based on weight (51-100 lbs)
25730                                                                                            bath
25737                                                                                     unspecified
25740                                                                   based on weight (24.1-60 lbs)
25741                                                                    based on weight (51-100 lbs)
25743                                                                     based on weight (21-55 lbs)
25744                                                                                     unspecified
25748                                                                     based on weight (26-50 lbs)
25749                                                                      based on weight (0-25 lbs)
25750                                                                      based on weight (0-22 lbs)
25751                                                                                 0.25 inch strip
25753                                                                                    small amount
25754                                                                    based on weight (51-100 lbs)
25755                                                                     based on weight (44-88 lbs)
25756                                                                     based on weight (56-95 lbs)
25757                                                                   based on weight (24.1-60 lbs)
25765                                                                                    small amount
25795                                                                        based on weight (60 lbs)
25804                                                              460 lufenuron, 23 milbemycin oxime
25806                                                                    based on weight (51-100 lbs)
25807                                                                    based on weight (51-100 lbs)
25817                                                                                            2 ml
25819                                                                     based on weight (40-60 lbs)
25820                                                                   based on weight (40.1-60 lbs)
25826                                                                           1 tablet/pill/capsule
25827                                                                    based on weight (51-100 lbs)
25828                                                           23 milbemycin oxime, 228 praziquantel
25830                                                                                        23 , 228
25837                                                                                    small amount
25846                                                                    based on weight (88-123 lbs)
25884                                                                    based on weight (51-100 lbs)
25887                                                                    based on weight (51-100 lbs)
25888                                                                  based on weight (60.1-121 lbs)
25919                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
25936                                                                                     unspecified
25937                                                                                     unspecified
25939                                                                    based on weight (51-100 lbs)
25940                                                                     based on weight (44-88 lbs)
25941                                                                    based on weight (50-100 lbs)
25943                                                                     based on weight (40-85 lbs)
25948                                                                                         57, 227
25949                                         based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                    based on weight (88-123 lbs)
25951                                        based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                         5 drops
25953                                                                                     unspecified
25954                                                                    based on weight (85-130 lbs)
25964                                                                    based on weight (51-100 lbs)
25965                                                                  based on weight (60.1-121 lbs)
25966                                                                    based on weight (51-100 lbs)
25967                                                                           1 tablet/pill/capsule
25981                                                                                       3-5 drops
25983                                                                                       4-5 drops
25985                                                                       based on weight (55+ lbs)
25986                                                                     based on weight (55-88 lbs)
25998                                                                                     unspecified
26004                                                            272 ivermectin, 227 pyrantel pamoate
26022                                                                                       62.5, 437
26024                                                                     based on weight (44-88 lbs)
26027                                                                                       62.5, 437
26031                                                                    based on weight (50-100 lbs)
26033                                                                     based on weight (44-88 lbs)
26037                                                                     based on weight (44-88 lbs)
26039                                                                     based on weight (44-88 lbs)
26047                                                                     based on weight (44-88 lbs)
26048                                                                    based on weight (51-100 lbs)
26050                                                                     based on weight (44-88 lbs)
26054                                                                     based on weight (44-88 lbs)
26056                                                                     based on weight (44-88 lbs)
26064                                                                                  1 pack/package
26075                                                                                    50, 125, 250
26078                                                                                     unspecified
26084                                                                                     unspecified
26085                                                                                     unspecified
26093                                                                                     application
26094                                                                                         1 spray
26114                                                                    based on weight (51-100 lbs)
26115                                                                                           drops
26127                                                                                     unspecified
26128                                                                                     unspecified
26129                                                                                     unspecified
26133                                                                                     unspecified
26134                                                                                     unspecified
26138                                                                     based on weight (56-95 lbs)
26139                                                                                            bath
26141                                                                     based on weight (21-55 lbs)
26148                                                                     based on weight (56-95 lbs)
26151                                                                    based on weight (50-100 lbs)
26152                                                                     based on weight (56-95 lbs)
26153                                                                                          1 drop
26154                                                                                           13 ml
26156                                                                                 based on weight
26157                                                                                 based on weight
26158                                                                                     unspecified
26159                                                                                     unspecified
26165                                                                                 based on weight
26166                                                                                 based on weight
26184                                                                                     unspecified
26187                                                                                  0.5 inch strip
26189                                                                                          1 tube
26190                                                                                            bath
26192                                                                     based on weight (21-55 lbs)
26197                                                                                  0.5 inch strip
26199                                                                     based on weight (54-95 lbs)
26203                                                                    based on weight (50-100 lbs)
26204                                                                     based on weight (21-55 lbs)
26205                                                                                           13 ml
26207                                                                                 based on weight
26208                                                                                 based on weight
26211                                                                     based on weight (25-50 lbs)
26212                                                                     based on weight (21-55 lbs)
26214                                                                                 based on weight
26215                                                                                 based on weight
26227                                                                                     unspecified
26229                                                                                     unspecified
26238                                                                           1 tablet/pill/capsule
26239                                                                           1 tablet/pill/capsule
26258                                                                                     application
26264                                                                           1 tablet/pill/capsule
26265                                                                                     unspecified
26278                                                                                       2-3 drops
26279                                                                    based on weight (60-120 lbs)
26280                                                                     based on weight (56-95 lbs)
26281                                                                    based on weight (60-120 lbs)
26282                                                                    based on weight (50-100 lbs)
26287                                                                    based on weight (50-100 lbs)
26295                                                                    based on weight (60-121 lbs)
26300                                                                    based on weight (50-100 lbs)
26307                                                                      based on weight (7.5+ lbs)
26315                                                                    based on weight (51-100 lbs)
26336                                                                                     unspecified
26337                                                                                     unspecified
26355                                                                                     unspecified
26373                                                                                         2 drops
26375                                                                    based on weight (51-100 lbs)
26380                                                                                     unspecified
26386                                                                     based on weight (26-50 lbs)
26387                                                                     based on weight (44-88 lbs)
26391                                                                                     unspecified
26393                                                                                      2-3 sprays
26395                                                                                        27, 1620
26399                                                                                        27, 1620
26400                                                                                       27 , 1620
26401                                                                                        27, 1620
26433                                                                                     unspecified
26454                                                                             tablet/pill/capsule
26464                                                                                 based on weight
26471                                                                    based on weight (51-100 lbs)
26473                                                                    based on weight (60-121 lbs)
26474                                                                                           30 gm
26475                                                                    based on weight (51-100 lbs)
26476                                                                    based on weight (60-121 lbs)
26488                                                                   based on weight (24.1-60 lbs)
26489                                                                     based on weight (25-50 lbs)
26490                                                                    based on weight (51-100 lbs)
26502                                                                                    small amount
26505                                                                                     as directed
26508                                                                                          1 pump
26517                                                                    based on weight (51-100 lbs)
26518                                                                     based on weight (45-88 lbs)
26519                                                                    based on weight (51-100 lbs)
26520                                                                    based on weight (51-100 lbs)
26521                                                                                     unspecified
26522                                                                    based on weight (51-100 lbs)
26534                                                                                     unspecified
26540                                                                                          1 pump
26543                                                                    based on weight (51-100 lbs)
26544                                                                        based on weight (58 lbs)
26546                                                                    based on weight (51-100 lbs)
26551                                                           23 milbemycin oxime, 228 praziquantel
26553                                                           23 milbemycin oxime, 228 praziquantel
26568                                                                  based on weight (50.1-100 lbs)
26574                                                                  based on weight (50.1-100 lbs)
26583                                                                                     unspecified
26590                                                                    based on weight (51-100 lbs)
26591                                                                    based on weight (51-100 lbs)
26592                                                                     based on weight (44-88 lbs)
26594                                                                           1 tablet/pill/capsule
26610                                                                                    small amount
26611                                                                    based on weight (51-100 lbs)
26615                                                                    based on weight (51-100 lbs)
26629                                                                     based on weight (44-88 lbs)
26631                                                                    based on weight (51-100 lbs)
26637                                                              based on weight (50-100 lbs) - 272
26638                                                                    based on weight (51-100 lbs)
26643                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
26644                             2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                     unspecified
26647                                                                                     unspecified
26650                                                                     based on weight (11-25 lbs)
26651                                                                     based on weight (11-25 lbs)
26652                                                                           1 tablet/pill/capsule
26654                                                                           1 tablet/pill/capsule
26655                                                             13.5 milbemycin oxime, 810 spinosad
26662                                                                    based on weight (51-100 lbs)
26663                                                                     based on weight (24-60 lbs)
26668                                                                                     bottle/vial
26669                                                                                     unspecified
26670                                                                                          collar
26673                                                                           1 tablet/pill/capsule
26674                                                                                         8 drops
26675                                                                     1 tablet/pill/capsule - 200
26676                                                                     based on weight (44-88 lbs)
26677                                                                    based on weight (50-100 lbs)
26680                                                                           1 tablet/pill/capsule
26681                                                                           1 tablet/pill/capsule
26682                                                                           1 tablet/pill/capsule
26683                                                                           1 tablet/pill/capsule
26684                                                                           1 tablet/pill/capsule
26685                                                                           1 tablet/pill/capsule
26694                                                                                     unspecified
26720                      2 tablets/pills/capsules - 2 prednisolone acetate, 5 trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 lufenuron, 23 milbemycin oxime
26722                                                                    based on weight (51-100 lbs)
26723                                                                    based on weight (51-100 lbs)
26724                                                                                      1200, 1500
26726                                                                                     unspecified
26734                                                                                 based on weight
26735                                                                    based on weight (60-120 lbs)
26736                                                            272 ivermectin, 227 pyrantel pamoate
26738                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26740                                                           23 milbemycin oxime, 228 praziquantel
26742                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26744                                                           23 milbemycin oxime, 228 praziquantel
26745                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26747   1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26750                                                            272 ivermectin, 227 pyrantel pamoate
26760                                                                    based on weight (51-100 lbs)
26764                                                                                          100 ml
26765                                                                                          100 ml
26766                                                                                          100 ml
26769                                                                    based on weight (50-100 lbs)
26772                                                                                          100 ml
26773                                                                                          100 ml
26774                                                                                          100 ml
26780                                                         11.5 milbemycin oxime, 114 praziquantel
26803                                                                                            1 oz
26819                                                                                           15 gm
26823                                                                        based on weight (60 lbs)
26825                                                                                     application
26826                                                                           1 tablet/pill/capsule
26827                                                                                    small amount
26828                                                                           1 tablet/pill/capsule
26829                                                                           1 tablet/pill/capsule
26830                                                                                     1 injection
26831                                                                                     1 injection
26833                                                                                        17 ml/lb
26836                                                                                         5 drops
26837                                                                                    pack/package
26839                                                                                     application
26840                                                                           1 tablet/pill/capsule
26841                                                                                     application
26842                                                                             tablet/pill/capsule
26843                                                                                  1 pack/package
26844                                                                                    small amount
26846                                                                    based on weight (51-100 lbs)
26847                                                                     based on weight (45-88 lbs)
26848                                                                                    pack/package
26849                                                                    based on weight (51-100 lbs)
26850                                                                     based on weight (45-88 lbs)
26851                                                                                    pack/package
26852                                                                                     unspecified
26853                                                                    based on weight (60-120 lbs)
26861                                                                    based on weight (51-100 lbs)
26862                                                                                 based on weight
26863                                                                                     unspecified
26864                                                                           1 tablet/pill/capsule
26865                                                                                 based on weight
26867                                                                                 based on weight
26868                                                                                     unspecified
26869                                                                  based on weight (50.1-100 lbs)
26870                                                                       based on weight (55+ lbs)
26871                                                                                     unspecified
26872                                                                                     unspecified
26905                                                                                    small amount
26926                                                                    based on weight (51-100 lbs)
26930                                                                    based on weight (51-100 lbs)
26931                                                                     based on weight (51-95 lbs)
26932                                                                                         23, 460
26944                                                                    based on weight (56-110 lbs)
26948                                                                    based on weight (55-100 lbs)
26972                                                                                         23, 460
26974                                                                                     unspecified
26975                                                                     based on weight (26-50 lbs)
26976                                                                                    small amount
26977                                                                     based on weight (11-25 lbs)
26978                                                                                     unspecified
26979                                                                    based on weight (51-100 lbs)
26980                                                                    based on weight (51-100 lbs)
26981                                                                    based on weight (51-100 lbs)
26983                                                                                     unspecified
26984                                                                     based on weight (45-88 lbs)
26986                                                                     based on weight (44-88 lbs)
26987                                                                                            3 ml
26988                                                           23 milbemycin oxime, 228 praziquantel
26990                                                           23 milbemycin oxime, 228 praziquantel
26992                                                           23 milbemycin oxime, 228 praziquantel
27012                                                                                        0.25 tsp
27020                                                                                     unspecified
27021                                                                                     unspecified
27022                                                                                     unspecified
27030                                                           23 milbemycin oxime, 228 praziquantel
27047                                                                                     unspecified
27058                                                                                     unspecified
27062                                                                                     unspecified
27063                                                                                     unspecified
27065                                                                    based on weight (51-100 lbs)
27080                                                                                          0.3 ml
27081                                                                                         8 drops
27082                                                                                     as directed
27085                                                                           1 tablet/pill/capsule
27092                                                                                  1 pack/package
27095                                                                                           drops
27096                                                                           1 tablet/pill/capsule
27100                                                                                     unspecified
27117                                                                                     application
27118                                                                                     application
27124                                                                                  1 pack/package
27128                                                                                    small amount
27134                                                                                     application
27136                                                                    based on weight (51-100 lbs)
27137                                                                                          1 tube
27140                                                                                    small amount
27158                                                                                    small amount
27163                                                                           1 tablet/pill/capsule
27170                                                                    based on weight (51-100 lbs)
27172                                                                                 based on weight
27173                                                                                     unspecified
27174                                                                    based on weight (51-100 lbs)
27203                                                            272 ivermectin, 227 pyrantel pamoate
27212                                                                                     unspecified
27213                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27214                                                                                          collar
27217                                                                                           spray
27219                                                                                          powder
27220                                                                                          collar
27222                                                                                          powder
27223                                                                                           spray
27224                                                                                     unspecified
27226                                                                                 based on weight
27228                                                                                          collar
27229                                                                             tablet/pill/capsule
27231                                                                    based on weight (60-121 lbs)
27232                                                                  based on weight (50.1-100 lbs)
27247                                                                                         23, 460
27256                                                                                         1 spray
27257                                                                       based on weight (18+ lbs)
27258                                                                    based on weight (51-100 lbs)
27262                                                                                           drops
27265                                                                    based on weight (55-100 lbs)
27268                                                                                     application
27270                                                                                          collar
27273                                                                    based on weight (51-100 lbs)
27274                                                                    based on weight (51-100 lbs)
27275                                                                    based on weight (51-100 lbs)
27280                                                                                 based on weight
27281                                                                    based on weight (51-100 lbs)
27282                                                                                          powder
27285                                                                    based on weight (51-100 lbs)
27306                                                                    based on weight (51-100 lbs)
27309                                                                     based on weight (44-88 lbs)
27311                                                                    based on weight (51-100 lbs)
27315                                                            272 ivermectin, 227 pyrantel pamoate
27322                                                                                           spray
27333                                                                5 neomycin sulfate, 1 tetracaine
27348                                                                        based on weight (70 lbs)
27349                                                                        based on weight (70 lbs)
27350                                                                       based on weight (55+ lbs)
27358                                                                    based on weight (51-100 lbs)
27360                                                                                     unspecified
27361                                                                    based on weight (51-100 lbs)
27364                                                                    based on weight (51-100 lbs)
27368                                                                    based on weight (51-100 lbs)
27370                                                                                          1 tube
27384                                                                                       11.5, 114
27407                                                                                     unspecified
27413                                                                                     unspecified
27414                                                                                     unspecified
27421                                                                                 based on weight
27422                                                                    based on weight (50-100 lbs)
27423                                                            272 ivermectin, 227 pyrantel pamoate
27425                                                                                    small amount
27427                                                                                    small amount
27431                                                                                    small amount
27432                                                                        based on weight (50 lbs)
27434                                                                                 based on weight
27445                                                                        based on weight (46 lbs)
27446                                                                                 based on weight
27447                                                                                     as directed
27459                                                                                        27, 1620
27465                                                                                 0.25 inch strip
27474                                                            272 ivermectin, 227 pyrantel pamoate
27481                                                            272 ivermectin, 227 pyrantel pamoate
27492                                                                                     unspecified
27494                                                                                     unspecified
27500                                                                                    small amount
27501                                                                                    small amount
27502                                                                    based on weight (51-100 lbs)
27506                                                                    based on weight (51-100 lbs)
27507                                                                     based on weight (45-88 lbs)
27511                                                                    based on weight (51-100 lbs)
27512                                                                     based on weight (45-88 lbs)
27523                                                                    based on weight (51-100 lbs)
27529                                                                    based on weight (51-100 lbs)
27589                                                                                        27, 1620
27594                                                                    based on weight (60-120 lbs)
27596                                                                                        27, 1620
27598                                                                                     unspecified
27620                                                                     based on weight (44-88 lbs)
27640                                                                     based on weight (26-50 lbs)
27646                                                                                     unspecified
27654                                                                           1 tablet/pill/capsule
27657                                                                           1 tablet/pill/capsule
27659                                                                                     as directed
27674                                                                                     unspecified
27697                                                                                    small amount
27699                                                                                 350 , 800 , 900
27700                                                                    based on weight (50-100 lbs)
27701                                                                     based on weight (44-85 lbs)
27704                                                                    based on weight (51-100 lbs)
27710                                                                     based on weight (45-88 lbs)
27713                                                                                     unspecified
27714                                                                                     unspecified
27715                                                                                     unspecified
27722                                                                                     unspecified
27736                                                                                     unspecified
27745                                                            272 ivermectin, 227 pyrantel pamoate
27747                                     1 isoflupredone acetate, 3.5 neomycin sulfate, 1 tetracaine
27748                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27750                                                            272 ivermectin, 227 pyrantel pamoate
27769                                                            272 ivermectin, 227 pyrantel pamoate
27770                                                                                         23, 460
27772                                                                                         23, 460
27776                                                                                     unspecified
27791                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27794                                                            272 ivermectin, 227 pyrantel pamoate
27802                                                                                     unspecified
27824                                                            272 ivermectin, 227 pyrantel pamoate
27826                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27828                                                            272 ivermectin, 227 pyrantel pamoate
27833                                                                                     unspecified
27834                                                                                          varies
27836                                                                                     unspecified
27878                                                                                     unspecified
27880                                                                                     unspecified
27884                                                                                         2.68 ml
27886                                                                    based on weight (51-100 lbs)
27895                                                                                          varies
27896                                                                                          varies
27897                                                                                     unspecified
27898                                                                                 based on weight
27899                                                                                    small amount
27900                                                                                          1.4 ml
27901                                                                                          1.5 ml
27904                                                                                         1.59 ml
27910                                                                                         23, 460
27913                                                                                         23, 460
27917                                                                    based on weight (51-100 lbs)
27921                                                                    based on weight (51-100 lbs)
27922                                                                    based on weight (50-100 lbs)
27923                                                                    based on weight (51-100 lbs)
27927                                                                                     unspecified
27929                                                                                     unspecified
27939                                                                                       8.8%, 44%
27940                                                                                        23 , 460
27941                                                                                       4-6 drops
27942                                                                        2 tablets/pills/capsules
27954                                                                     based on weight (56-95 lbs)
27957                                                                     based on weight (45-88 lbs)
27958                                                               1.25 tablets/pills/capsules - 375
27959                                                                 1.5 tablets/pills/capsules - 50
27961                                                                                 based on weight
27962                                                                    based on weight (50-100 lbs)
27973                                                                                    small amount
27974                                                                                     application
27981                                                                       based on weight (55+ lbs)
27982                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                     unspecified
27999                                                                       based on weight (55+ lbs)
28000                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
28006                                                                                          1 pump
28008                                                                                  1 pack/package
28009                                                                                          1 pump
28010                                                                                  1 pack/package
28011                                                                                         8 drops
28014                                                                                            tube
28015                                                                  2 tablets/pills/capsules - 425
28016                                                                    based on weight (50-100 lbs)
28018                                                                                 based on weight
28020                                                                                         5 drops
28023                                                                                     unspecified
28024                                                                    based on weight (60-121 lbs)
28025                                                                                     unspecified
28029                                                                    based on weight (51-100 lbs)
28040                                                                    based on weight (51-100 lbs)
28045                                                                                         68, 272
28046                                                                                     unspecified
28047                                                                                     unspecified
28048                                                                    based on weight (51-100 lbs)
28049                                                                    based on weight (51-100 lbs)
28071                                                                                          1 tube
28087                                                                    based on weight (50-100 lbs)
28088                                                                     based on weight (44-88 lbs)
28090                                                                                    small amount
28094                                                                                     unspecified
28096                                                                                     unspecified
28098                                                                                     unspecified
28100                                                                     based on weight (44-88 lbs)
28101                                                                  based on weight (50.1-100 lbs)
28102                                                                  based on weight (50.1-100 lbs)
28103                                                                     based on weight (44-88 lbs)
28104                                                                     based on weight (44-88 lbs)
28105                                                                  based on weight (50.1-100 lbs)
28106                                                           23 milbemycin oxime, 228 praziquantel
28108                                                                     based on weight (44-88 lbs)
28109                                                                    based on weight (50-100 lbs)
28116                                                                                  1 pack/package
28119                                                                    based on weight (51-100 lbs)
28120                                                                    based on weight (50-100 lbs)
28128                                                              460 lufenuron, 23 milbemycin oxime
28130                                                            272 ivermectin, 227 pyrantel pamoate
28134                                                                    based on weight (51-100 lbs)
28135                                                                    based on weight (51-100 lbs)
28137                                                                    based on weight (51-100 lbs)
28138                                                                                         7000 iu
28141                                                                                         4 drops
28144                                                                    based on weight (51-100 lbs)
28154                                                                     based on weight (45-88 lbs)
28155                                                                    based on weight (51-100 lbs)
28158                                                                                 based on weight
28162                                                                       based on weight (60+ lbs)
28163                                                                                 based on weight
28164                                                                                 based on weight
28165                                                                                     as directed
28166                                                                                     unspecified
28167                                                                                     unspecified
28168                                                                                     unspecified
28174                                                                                 0.25 inch strip
28176                                                                                 0.25 inch strip
28246                                                           2 prednisone, 5 trimeprazine tartrate
28260                                                                                    1 inch strip
28261                                                            272 ivermectin, 227 pyrantel pamoate
28263                                                                   based on weight (44.1-88 lbs)
28264                                                            272 ivermectin, 227 pyrantel pamoate
28269                                                                    based on weight (51-100 lbs)
28277                                                                                     unspecified
28279                                                                                     unspecified
28307                                                                                     unspecified
28309                                                                    based on weight (61-120 lbs)
28311                                                                    based on weight (50-100 lbs)
28316                                                                                    small amount
28332                                                                                     application
28333                                                                                    small amount
28371                                                                                    pack/package
28375                                                                     based on weight (44-88 lbs)
28390                                                                                    small amount
28392                                                                    based on weight (60-121 lbs)
28396                                                                        2 tablets/pills/capsules
28397                                                                  based on weight (50.1-100 lbs)
28398                                                                     based on weight (44-88 lbs)
28399                                                                    based on weight (50-100 lbs)
28400                                                                     based on weight (44-88 lbs)
28401                                                                  based on weight (50.1-100 lbs)
28404                                                                     based on weight (40-60 lbs)
28407                                                                     based on weight (40-60 lbs)
28425                                                                                     unspecified
28427                                                                                     unspecified
28437                                                                    based on weight (51-100 lbs)
28448                                                                    based on weight (51-100 lbs)
28449                                                                       based on weight (55+ lbs)
28453                                                            272 ivermectin, 227 pyrantel pamoate
28483                                                                           1 tablet/pill/capsule
28484                                                                                 moderate amount
28486                                                                                    small amount
28488                                                                           1 tablet/pill/capsule
28505                                                                                     unspecified
28507                                                                                     unspecified
28508                                                                                     unspecified
28516                                                                                     unspecified
28517                                                                                     unspecified
28518                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28519                                                            272 ivermectin, 227 pyrantel pamoate
28520                                                              8.8% (s)-methoprene, 9.8% fipronil
28528                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28531                                                                                   5 billion cfu
28533                                                               3% chloroxylenol, 3% ketoconazole
28534                                                   based on weight (50-100 lbs) - 23 , 228 , 460
28535                                                              based on weight (60-121 lbs) - 136
28536                                based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                   5 billion cfu
28545                                                            272 ivermectin, 227 pyrantel pamoate
28549                                                                    based on weight (51-100 lbs)
28552                                                                                 based on weight
28553                                                                     based on weight (44-88 lbs)
28554                                                                       based on weight (50+ lbs)
28556                                                                                 based on weight
28557                                                                                 based on weight
28571                                                                    based on weight (51-100 lbs)
28572                                                                                     unspecified
28573                                                                                 based on weight
28574                                                                                        1 collar
28576                                               10 dextromethorphan hydrobromide, 100 guaifenesin
28577                                                                                    small amount
28580                                                                                 0.25 inch strip
28582                                                                    based on weight (51-100 lbs)
28583                                                                                 based on weight
28590                                                                                     unspecified
28601                                                                                 based on weight
28602                                                                    based on weight (50-100 lbs)
28604                                                                                          1 tube
28605                                                                                          collar
28606                                                                           1 tablet/pill/capsule
28610                                                                1.5 tablets/pills/capsules - 136
28611                                                                           1 tablet/pill/capsule
28612                                                                           1 tablet/pill/capsule
28614                                                                           1 tablet/pill/capsule
28616                                                                                         1 spray
28621                                                                                 based on weight
28624                                                                        based on weight (80 lbs)
28626                                                                                         0.35 ml
28630                                                                           1 tablet/pill/capsule
28631                                                                           1 tablet/pill/capsule
28660                                                                                     unspecified
28668                                                            272 ivermectin, 227 pyrantel pamoate
28673                                                                                       5-8 drops
28674                                                                    based on weight (51-100 lbs)
28675                                                                     based on weight (44-88 lbs)
28681                                                                           1 tablet/pill/capsule
28685                                                                                     unspecified
28686                                                                                     unspecified
28687                                                                                     unspecified
28693                                                                    based on weight (50-100 lbs)
28694                                                                                   1 bottle/vial
28696                                                                    based on weight (50-100 lbs)
28710                                                                                     unspecified
28714                                                                                    small amount
28716                                                                                           15 gm
28718                                                               4 tablets/pills/capsules - 0.5 gm
28719                                                               4 tablets/pills/capsules - 0.5 gm
28723                                                                     based on weight (45-80 lbs)
28726                                                                    based on weight (60-120 lbs)
28727                                                                                     application
28730                                                                    based on weight (60-120 lbs)
28731                                                                                     application
28735                                                                    based on weight (50-100 lbs)
28736                                                                    based on weight (50-100 lbs)
28750                                                                                     unspecified
28751                                                                                     unspecified
28762                                                                                            1 ml
28764                                                                                          1 drop
28772                                                                                     unspecified
28773                                                                                     unspecified
28780                                                                                        114, 136
28806                                                                     based on weight (45-88 lbs)
28809                                                                    based on weight (51-100 lbs)
28819                                                                                     unspecified
28826                                                                                           spray
28829                                                                                     application
28831                                                                                          1 drop
28833                                                                                          1 tube
28855                                                                                     unspecified
28873                                                                     based on weight (44-88 lbs)
28874                                                                    based on weight (51-100 lbs)
28882                                                                     based on weight (24-60 lbs)
28883                                                                     based on weight (20-60 lbs)
28884                                                                                 based on weight
28888                                                                     based on weight (24-60 lbs)
28897                                                                    based on weight (51-100 lbs)
28899                                                                    based on weight (50-100 lbs)
28904                                                                    based on weight (51-100 lbs)
28906                                                                                            3 ml
28907                                                                   based on weight (24.1-60 lbs)
28934                                                                                     unspecified
28939                                                                                         23, 460
28940                                                                      1.5 tablets/pills/capsules
28941                                                                                    small amount
28946                                                                                    small amount
28979                                                                                 based on weight
28980                                                                                 based on weight
28982                                                                    based on weight (51-100 lbs)
28983                                                                           1 tablet/pill/capsule
28986                                                                     based on weight (40-60 lbs)
28987                                                                     based on weight (40-60 lbs)
28999                                                                           1 tablet/pill/capsule
29000                                                                     based on weight (40-85 lbs)
29007                                                                     based on weight (44-88 lbs)
29015                                                                                 moderate amount
29022                                                                                     unspecified
29023                                                                                     unspecified
29036                                                                                           drops
29037                                                                           1 tablet/pill/capsule
29039                                                                                     unspecified
29040                                                                                     unspecified
29043                                                                                     unspecified
29050                                                                                           spray
29053                                                                                    small amount
29056                                                                    based on weight (60-120 lbs)
29060                                                                                     unspecified
29064                                                                    based on weight (60-120 lbs)
29067                                                            272 ivermectin, 227 pyrantel pamoate
29069                                                            272 ivermectin, 227 pyrantel pamoate
29070                                                                                0.125 inch strip
29071                                                                                    small amount
29072                                                                                 0.25 inch strip
29073                                                                                    small amount
29075                                                                                    small amount
29078                                                                                   1 tube - 4 ml
29079                                                                                    1 inch strip
29080                                                                           1 tablet/pill/capsule
29081                                                                                 0.25 inch strip
29082                                                                           1 tablet/pill/capsule
29083                                                                                  1 pack/package
29086                                                              27 milbemycin oxime, 1620 spinosad
29087                                                              27 milbemycin oxime, 1620 spinosad
29091                                                              27 milbemycin oxime, 1620 spinosad
29092                                                                                            1 ml
29095                                                                  based on weight (60.1-120 lbs)
29096                                                                  based on weight (60.1-121 lbs)
29097                                                                                            1 ml
29098                                                                                              ml
29099                                                                                              ml
29103                                                                                    10 ucg/kg/hr
29104                                                                                        1021 /hr
29108                                                                                     unspecified
29136                                                                    based on weight (50-100 lbs)
29139                                                                                    small amount
29143                                                            272 ivermectin, 227 pyrantel pamoate
29151                                                                     based on weight (40-88 lbs)
29153                                                                                     unspecified
29161                                                                                     application
29166                                                                      based on weight (74.1 lbs)
29184                                                                        based on weight (64 lbs)
29196                                                                                 0.25 inch strip
29197                                                                                     unspecified
29220                                                                                    small amount
29232                                                                                     unspecified
29234                                                                                     unspecified
29235                                                                                     unspecified
29244                                                                                     unspecified
29245                                                                                     unspecified
29248                                                                                     unspecified
29283                                                                                     unspecified
29285                                                                                     unspecified
29291                                                                                           spray
29293                                                                           1 tablet/pill/capsule
29298                                                              460 lufenuron, 23 milbemycin oxime
29313                                                                                     unspecified
29315                                                                    based on weight (51-100 lbs)
29321                                                                                    small amount
29324                                                                                     unspecified
29327                                                                                     unspecified
29328                                                                    based on weight (51-100 lbs)
29340                                                                                     application
29342                                                                                 moderate amount
29374                                                                                         23, 460
29375                                                                                     unspecified
29376                                                                                     unspecified
29377                                                                                 based on weight
29378                                                                                     unspecified
29379                                                                                     unspecified
29380                                                                                     unspecified
29381                                                                                     unspecified
29382                                                                    based on weight (51-100 lbs)
29383                                                                     based on weight (21-55 lbs)
29395                                                                                        5, 162.5
29404                                                                                     unspecified
29405                                                                                     unspecified
29406                                                                                     unspecified
29428                                                                                            1 au
29438                                                                                    small amount
29446                                                                                     unspecified
29447                                                                                     unspecified
29453                                                                                     unspecified
29469                                                                    based on weight (51-100 lbs)
29470                                                                                 based on weight
29471                                                                                     application
29479                                                                    based on weight (51-100 lbs)
29480                                                                    based on weight (51-100 lbs)
29481                                                                    based on weight (51-100 lbs)
29482                                                                    based on weight (51-100 lbs)
29483                                                                   based on weight (44.1-88 lbs)
29490                                                                    based on weight (51-100 lbs)
29499                                                                           1 tablet/pill/capsule
29500                                                                                  1 pack/package
29501                                                                    based on weight (51-100 lbs)
29502                                                                  based on weight (50.1-100 lbs)
29504                                                                    based on weight (50-100 lbs)
29505                                                                     based on weight (45-88 lbs)
29511                                                                     based on weight (45-88 lbs)
29525                                                                             tablet/pill/capsule
29526                                                                                     application
29531                                                                    based on weight (51-100 lbs)
29532                                                                     based on weight (45-88 lbs)
29533                                                                    based on weight (51-100 lbs)
29534                                                                       based on weight (55+ lbs)
29535                                                                                            tube
29536                                                                    based on weight (51-100 lbs)
29537                                                                                     unspecified
29538                                                                    based on weight (51-100 lbs)
29539                                                                       based on weight (55+ lbs)
29540                                                                    based on weight (51-100 lbs)
29567                                                                    based on weight (51-100 lbs)
29568                                                                                     unspecified
29572                                                                                     unspecified
29573                                                                                     unspecified
29574                                                                                     as directed
29575                                                                                     unspecified
29579                                                                                           15 gm
29580                                                                    based on weight (51-100 lbs)
29588                                                                    based on weight (51-100 lbs)
29608                                                                     based on weight (44-88 lbs)
29617                                                                                     unspecified
29633                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
29662                                                                                     unspecified
29666                                                                                     unspecified
29669                                                                                     unspecified
29670                                                                                     unspecified
29678                                                              0.5 tablet/pill/capsule - 125, 500
29696                                                                                          1.5 gm
29700                                                                       based on weight (55+ lbs)
29705                                                                       based on weight (55+ lbs)
29707                                                                       based on weight (55+ lbs)
29709                                                                       based on weight (55+ lbs)
29715                                                                                 based on weight
29716                                                                                 based on weight
29719                                                                                 based on weight
29720                                                                                 based on weight
29722                                                                                 based on weight
29724                                                                                 based on weight
29726                                                                                 based on weight
29729                                                                                            1 gm
29730                                                                                          1.5 gm
29734                                                                                         23, 460
29736                                                                    based on weight (51-100 lbs)
29744                                                                    based on weight (51-100 lbs)
29749                                                                                          6 , 15
29753                                                                    based on weight (51-100 lbs)
29764                                                                                     unspecified
29765                                                                                     unspecified
29767                                                                    based on weight (51-100 lbs)
29770                                                                    based on weight (51-100 lbs)
29794                                                                                     unspecified
29798                                                              based on weight (51-100 lbs) - 272
29799                                                              based on weight (51-100 lbs) - 272
29800                                                            based on weight (60.1-121 lbs) - 136
29801                                                                                        wipe/pad
29802                                                              based on weight (51-100 lbs) - 272
29803                                                            based on weight (60.1-121 lbs) - 136
29822                                                                    based on weight (51-100 lbs)
29823                                                                    based on weight (60-120 lbs)
29824                                                                    based on weight (51-100 lbs)
29825                                                                  based on weight (60.1-121 lbs)
29827                                                                                       3-4 drops
29829                                                                                       1-2 pumps
29831                                                                                           drops
29832                                                                                          1.5 ml
29838                                                                                     unspecified
29839                                                                                     unspecified
29840                                                                                     unspecified
29847                                                                                           drops
29848                                                                                          1.5 ml
29858                                                                                     unspecified
29859                                                                                          7.4 ml
29860                                                                                          7.4 ml
29861                                                                                          7.4 ml
29862                                                                                        27, 1620
29865                                                                                        37, 1620
29880                                                                    based on weight (51-100 lbs)
29882                                                                    based on weight (51-100 lbs)
29883                                                                    based on weight (60-121 lbs)
29933                                                                           1 tablet/pill/capsule
29940                                                                    based on weight (50-100 lbs)
29941                                                                    based on weight (50-100 lbs)
29948                                                                                     unspecified
29954                                                                    based on weight (51-100 lbs)
29955                                                                       based on weight (55+ lbs)
29956                                                                    based on weight (51-100 lbs)
29957                                                                       based on weight (55+ lbs)
29963                                                                       based on weight (55+ lbs)
29964                                                                    based on weight (51-100 lbs)
29966                                                                                     unspecified
29969                                                                       based on weight (55+ lbs)
29970                                                                    based on weight (51-100 lbs)
29978                                                                    based on weight (51-100 lbs)
29990                                                                                 based on weight
29991                                                                                         23, 460
29993                                                                                         23, 460
30001                                                                                     unspecified
30048                                                                                     unspecified
30070                                                                                 0.25 inch strip
30075                                                                     based on weight (45-88 lbs)
30076                                                                     based on weight (26-50 lbs)
30081                                                                    based on weight (50-100 lbs)
30082                                                                    based on weight (50-100 lbs)
30083                                                                    based on weight (51-100 lbs)
30099                                                                    based on weight (51-100 lbs)
30104                                                                                     unspecified
30105                                                                                     unspecified
30131                                                                                     unspecified
30132                                                                                     unspecified
30138                                                            272 ivermectin, 227 pyrantel pamoate
30142                                                                    based on weight (60-120 lbs)
30143                                                                                    small amount
30162                                                                                     unspecified
30164                                                                                          2.5 ml
30165                                                                                        27, 1620
30166                                                                                         23, 460
30169                                                                                    small amount
30172                                                                                         23, 460
30174                                                                                         23, 460
30178                                                                                 0.25 inch strip
30179                                                                                     unspecified
30185                                                                    based on weight (50-100 lbs)
30191                                                                1 tablet/pill/capsule - 27, 1620
30192                                                                                        27, 1620
30193                                                                                        27, 1620
30198                                                                                     unspecified
30211                                                                    based on weight (51-100 lbs)
30212                                                                   based on weight (44.1-88 lbs)
30213                                                                                            4 gm
30214                                                                     based on weight (56-95 lbs)
30218                                                                     based on weight (44-88 lbs)
30221                                                                    based on weight (51-100 lbs)
30239                                                            230 lufenuron, 11.5 milbemycin oxime
30241                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30242                                                                    based on weight (50-100 lbs)
30246                                                                                     unspecified
30263                                                                    based on weight (51-100 lbs)
30264                                                                     based on weight (44-88 lbs)
30268                                                                    based on weight (51-100 lbs)
30269                                                                     based on weight (45-88 lbs)
30270                                                                    based on weight (51-100 lbs)
30274                                                                    based on weight (51-100 lbs)
30277                                                                    based on weight (51-100 lbs)
30286                                                                    based on weight (51-100 lbs)
30298                                                                    based on weight (51-100 lbs)
30299                                                                    based on weight (51-100 lbs)
30300                                                                                   1 bottle/vial
30310                                                                    based on weight (51-100 lbs)
30311                                                                                 0.25 inch strip
30312                                                                                           spray
30313                                                                    based on weight (51-100 lbs)
30317                                                                                     application
30319                                                                                     application
30327                                                                                     unspecified
30329                                                                                     unspecified
30337                                                                                     unspecified
30338                                                                                     unspecified
30344                                                                    based on weight (51-100 lbs)
30347                                                                    based on weight (60-120 lbs)
30351                                                                     based on weight (44-88 lbs)
30352                                                                    based on weight (51-100 lbs)
30353                                                                                          1 drop
30354                                                                                        10 drops
30355                                                                                    small amount
30357                                                                                           spray
30360                                                                                  1 pack/package
30361                                                                        2 tablets/pills/capsules
30366                                                                           1 tablet/pill/capsule
30367                                                                           1 tablet/pill/capsule
30371                                                                    based on weight (51-100 lbs)
30372                                                                                 based on weight
30373                                                                                 based on weight
30374                                                                                 based on weight
30375                                                                                 based on weight
30376                                                                    based on weight (51-100 lbs)
30377                                                                                     unspecified
30378                                                                                     unspecified
30385                                                                    based on weight (51-100 lbs)
30387                                                                       based on weight (60+ lbs)
30388                                                                        2 tablets/pills/capsules
30389                                                                                     application
30395                                                                       based on weight (60+ lbs)
30396                                                                       based on weight (<60 lbs)
30404                                                                    based on weight (51-100 lbs)
30405                                                                       based on weight (55+ lbs)
30406                                                                    based on weight (51-100 lbs)
30418                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
30450                                                                                     unspecified
30464                                                                                     unspecified
30471                                                                                         23, 228
30479                                                                       based on weight (55+ lbs)
30480                                                                    based on weight (51-100 lbs)
30483                                                                       based on weight (55+ lbs)
30484                                                                                     unspecified
30485                                                                                     unspecified
30492                                                              460 lufenuron, 23 milbemycin oxime
30496                                                                                     unspecified
30515                                                                    based on weight (51-100 lbs)
30528                                                                                         23, 460
30529                                                                                       4-5 drops
30536                                                                                       4-5 drops
30541                                                                                          1 tube
30555                                                                           1 tablet/pill/capsule
30556                                                                           1 tablet/pill/capsule
30590                                                                     based on weight (40-60 lbs)
30604                                                                   based on weight (40-60.1 lbs)
30623                                                                                           drops
30644                                          1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
30685                                                                                     unspecified
30689                                                                                     unspecified
30692                                                                                    small amount
30701                                                                     based on weight (44-88 lbs)
30702                                                                                         23, 460
30707                                                                     based on weight (44-88 lbs)
30708                                                                    based on weight (51-100 lbs)
30709                                                                    based on weight (51-100 lbs)
30710                                                                     based on weight (44-88 lbs)
30713                                                                                     unspecified
30714                                                                                     unspecified
30717                                                                                     unspecified
30753                                                                    based on weight (50-100 lbs)
30754                                                                     based on weight (20-50 lbs)
30756                                                                     based on weight (21-55 lbs)
30757                                                                     based on weight (22-55 lbs)
30764                                                              27 milbemycin oxime, 1620 spinosad
30765                                                                           1 tablet/pill/capsule
30766                                                                           1 tablet/pill/capsule
30768                                                                    based on weight (51-100 lbs)
30769                                                                                     unspecified
30779                                                                    based on weight (51-100 lbs)
30792                                                                                          1 tube
30793                                                                           1 tablet/pill/capsule
30796                                                                       based on weight (50+ lbs)
30797                                                                       based on weight (60+ lbs)
30799                                                                    based on weight (51-100 lbs)
30803                                                                                     unspecified
30811                                                                                          1 tube
30813                                                                    based on weight (51-100 lbs)
30814                                                                                          1 tube
30815                                                                           1 tablet/pill/capsule
30816                                                                           1 tablet/pill/capsule
30817                                                                                        1 collar
30819                                                                     based on weight (56-95 lbs)
30820                                                                    based on weight (51-100 lbs)
30821                                                                        2 tablets/pills/capsules
30822                                                                        2 tablets/pills/capsules
30823                                                                       based on weight (61+ lbs)
30824                                                                                     unspecified
30826                                                                    based on weight (55-100 lbs)
30833                                                                    based on weight (55-100 lbs)
30834                                                                                            tube
30840                                                                                    100/10 gm/dm
30844                                                            272 ivermectin, 227 pyrantel pamoate
30876                                                                                 based on weight
30877                                                                                 based on weight
30893                                                                                          1.9 ml
30901                                                                                0.125 inch strip
30909                                                                    based on weight (50-100 lbs)
30917                                                                                     unspecified
30920                                                                    based on weight (50-100 lbs)
30936                                                                                     unspecified
30943                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30945                                                                                         23, 460
30947                                                                    based on weight (51-100 lbs)
30948                                                                    based on weight (88-123 lbs)
30949                                                                                         23, 460
30953                                                                                     unspecified
30960                                                                                           1 tsp
30961                                                                           1 tablet/pill/capsule
30962                                                                           1 tablet/pill/capsule
30963                                                                      1 tablet/pill/capsule - 75
30998                                                                       based on weight (55+ lbs)
31000                                                                        based on weight (59 lbs)
31001                                                                        based on weight (59 lbs)
31003                                                                        based on weight (59 lbs)
31004                                                                       based on weight (55+ lbs)
31010                                                                    based on weight (50-100 lbs)
31011                                                                       based on weight (55+ lbs)
31016                                                                                        0.75 tsp
31022                                                                    based on weight (51-100 lbs)
31023                                                                     based on weight (44-88 lbs)
31034                                                                    based on weight (50-100 lbs)
31043                                                                               1 syringe/pipette
31046                                                                  based on weight (50.1-100 lbs)
31089                                                                                 based on weight
31094                                                           23 milbemycin oxime, 228 praziquantel
31095                                                                         0.5 tablet/pill/capsule
31096                                                                    based on weight (51-100 lbs)
31105                                                                    based on weight (51-100 lbs)
31132                                                                                     application
31133                                                                    based on weight (51-100 lbs)
31134                                                                    based on weight (60-120 lbs)
31135                                                                    based on weight (51-100 lbs)
31139                                                                  based on weight (60.1-121 lbs)
31148                                                            272 ivermectin, 227 pyrantel pamoate
31149                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31152                                                            272 ivermectin, 227 pyrantel pamoate
31154                                                            272 ivermectin, 227 pyrantel pamoate
31183                                                                     based on weight (44-88 lbs)
31186                                                                                     unspecified
31195                                                                                    23, 228, 460
31196                                                                                     unspecified
31197                                                                                  1 pack/package
31198                                                                                           1.5-2
31199                                                                           1 tablet/pill/capsule
31203                                                                             tablet/pill/capsule
31209                                                                                     unspecified
31228                                                                                     as directed
31232                                                                                          varies
31234                                                              8.8% (s)-methoprene, 9.8% fipronil
31245                                                                                         6 drops
31247                                                           23 milbemycin oxime, 228 praziquantel
31248                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 milbemycin oxime, 228 praziquantel
31250                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                    based on weight (51-100 lbs)
31263                                                                    based on weight (51-100 lbs)
31265                                                                                 based on weight
31268                                                                                     as directed
31297                                                                     based on weight (40-85 lbs)
31299                                                                    based on weight (85-130 lbs)
31300                                                                    based on weight (50-100 lbs)
31301                                                                     based on weight (44-88 lbs)
31303                                                                                       120 , 360
31307                                                                       based on weight (55+ lbs)
31308                                                                    based on weight (51-100 lbs)
31309                                                                  based on weight (85.1-130 lbs)
31317                                                                                     unspecified
31322                                                              27 milbemycin oxime, 1620 spinosad
31328                                                                                     unspecified
31330                                                                                          1 pump
31350                                                                                     unspecified
31353                                                                                           10-20
31356                                                                                    small amount
31357                                                                    based on weight (51-100 lbs)
31358                                                                    based on weight (60-121 lbs)
31359                                                                    based on weight (61-100 lbs)
31360                                                                     based on weight (60-80 lbs)
31361                                                                    based on weight (51-100 lbs)
31365                                                                    based on weight (50-100 lbs)
31366                                                                    based on weight (60-121 lbs)
31367                                                                                    small amount
31369                                               2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                     application
31371                                                                                    small amount
31373                                                                    based on weight (51-100 lbs)
31374                                                                                     as directed
31375                                                                    based on weight (51-100 lbs)
31381                                                                                           15 gm
31383                                                                     based on weight (26-50 lbs)
31384                                                                     based on weight (40-60 lbs)
31385                                                                     based on weight (24-60 lbs)
31386                                                                     based on weight (26-50 lbs)
31389                                                                           1 tablet/pill/capsule
31408                                                            272 ivermectin, 227 pyrantel pamoate
31423                                                                                     unspecified
31434                                                                                     unspecified
31437                                                                                     unspecified
31438                                                                                     unspecified
31439                                                                                      8-10 drops
31440                                                                       based on weight (50+ lbs)
31441                                                                    based on weight (51-100 lbs)
31446                                                                                     application
31447                                                                                    small amount
31449                                                                    based on weight (51-100 lbs)
31450                                                                   based on weight (24.1-60 lbs)
31452                                                                                     application
31457                                                                                     unspecified
31463                                                                                     unspecified
31471                                                                                     unspecified
31502                                                                     based on weight (26-50 lbs)
31503                                                                    based on weight (60-120 lbs)
31504                                                                     based on weight (45-88 lbs)
31506                                                                    based on weight (60-121 lbs)
31508                                                                     based on weight (45-88 lbs)
31528                                                                    based on weight (60-121 lbs)
31529                                                                     based on weight (26-50 lbs)
31531                                                                    based on weight (60-121 lbs)
31539                                                                                 syringe/pipette
31542                                                                                     unspecified
31548                                                                                     unspecified
31551                                                                                     unspecified
31552                                                                     based on weight (45-88 lbs)
31553                                                                     based on weight (45-88 lbs)
31602                                                                    based on weight (51-100 lbs)
31611                                                                                    small amount
31612                                                       100 flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 dha, 75 epa
31617                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31618                                                                  based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 dha, 155 epa
31637                                                            272 ivermectin, 227 pyrantel pamoate
31640                                                                                    small amount
31643                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31644                                                                  based on weight (60 lbs) - 2.7
31645                                                                                    small amount
31646                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31647                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
31652                                                                                            5 ml
31653                                                            272 ivermectin, 227 pyrantel pamoate
31655                                                                                     unspecified
31656                                                                                     unspecified
31657                                                                                     unspecified
31665                                                                    based on weight (51-100 lbs)
31666                                                                       based on weight (60+ lbs)
31678                                                                    based on weight (51-100 lbs)
31680                                                                    based on weight (51-100 lbs)
31688                                                                    based on weight (51-100 lbs)
31689                                                                       based on weight (60+ lbs)
31696                                                                                     unspecified
31707                                                                    based on weight (51-100 lbs)
31713                                                            272 ivermectin, 227 pyrantel pamoate
31716                                                                                         23, 460
31725                                                                                    small amount
31726                                                                                 based on weight
31730                                                                                     unspecified
31731                                                                                     unspecified
31734                                                                    based on weight (51-100 lbs)
31735                                                                       based on weight (55+ lbs)
31736                                                                                  1 pack/package
31737                                                                     based on weight (41-70 lbs)
31742                                                                                     unspecified
31747                                                                    based on weight (51-100 lbs)
31748                                                                                     unspecified
31760                                                                    based on weight (51-100 lbs)
31761                                                                       based on weight (10+ lbs)
31762                                                                    based on weight (51-100 lbs)
31765                                                                           1 tablet/pill/capsule
31766                                                                           1 tablet/pill/capsule
31768                                                                                 based on weight
31769                                                            272 ivermectin, 227 pyrantel pamoate
31771                                                            272 ivermectin, 227 pyrantel pamoate
31773                                                            272 ivermectin, 227 pyrantel pamoate
31774                                                                                     application
31777                                                                    based on weight (51-100 lbs)
31780                                                                                        23 , 469
31781                                                                                         23, 228
31798                                                                    based on weight (51-100 lbs)
31803                                                                                 based on weight
31804                                                                    based on weight (60-121 lbs)
31807                                                                     based on weight (45-88 lbs)
31808                                                                    based on weight (51-100 lbs)
31810                                                                           1 tablet/pill/capsule
31811                                                                                          1 tube
31818                                                                                          1 tube
31819                                                                           1 tablet/pill/capsule
31824                                                                           1 tablet/pill/capsule
31825                                                                                          1 tube
31826                                                                                           spray
31833                                                                                     unspecified
31834                                                                                     unspecified
31836                                                                                     unspecified
31837                                                                                     unspecified
31840                                                                    based on weight (51-100 lbs)
31841                                                                        based on weight (40 lbs)
31842                                                                                          1 pump
31843                                                                                 based on weight
31844                                                                                 based on weight
31845                                                                                            1 ml
31846                                                                                          collar
31847                                                                    based on weight (51-100 lbs)
31849                                                                                 moderate amount
31850                                                                                     unspecified
31853                                                                     based on weight (45-88 lbs)
31861                                                           23 milbemycin oxime, 228 praziquantel
31864                                                           25 milbemycin oxime, 228 praziquantel
31866                                                           25 milbemycin oxime, 228 praziquantel
31868                                                                    based on weight (51-100 lbs)
31869                                                                    based on weight (51-100 lbs)
31874                                                                    based on weight (50-100 lbs)
31876                                                                                    small amount
31880                                                                                        160, 800
31888                                                                                     application
31891                                                                    based on weight (51-100 lbs)
31892                                                                    based on weight (60-121 lbs)
31895                                                                    based on weight (50-100 lbs)
31896                                                                    based on weight (60-121 lbs)
31898                                                                    based on weight (60-121 lbs)
31906                                                                                          1 tbsp
31907                                                                     based on weight (44-88 lbs)
31908                                                                    based on weight (51-100 lbs)
31909                                                                    based on weight (51-100 lbs)
31911                                                                    based on weight (51-100 lbs)
31916                                                                    based on weight (51-100 lbs)
31937                                                                                       13.5, 810
31938                                                                                         23, 460
31939                                                                                         23, 460
31940                                                                                         23, 460
31941                                                                                         23, 460
31942                                                                                     unspecified
31945                                                                           1 tablet/pill/capsule
31946                                                                       based on weight (50+ lbs)
31947                                                                    based on weight (51-100 lbs)
31948                                                                     based on weight (44-88 lbs)
31953                                                                                     unspecified
31954                                                                     based on weight (44-88 lbs)
31955                                                                    based on weight (51-100 lbs)
31968                                                            272 ivermectin, 227 pyrantel pamoate
31985                                                                                     unspecified
31990                                                                    based on weight (51-100 lbs)
32002                                                                    based on weight (51-100 lbs)
32006                                                                                         10, 100
32015                                                                                            tube
32016                                                                             tablet/pill/capsule
32020                                                                    based on weight (51-100 lbs)
32025                                                                                     unspecified
32032                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32035                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32040                                                                       based on weight (100 lbs)
32046                                                                                     unspecified
32053                                                                    based on weight (51-100 lbs)
32054                                                                     based on weight (45-88 lbs)
32055                                                                     based on weight (45-88 lbs)
32056                                                                    based on weight (50-100 lbs)
32057                                                                    based on weight (60-121 lbs)
32058                                                                    based on weight (51-100 lbs)
32059                                                                           1 tablet/pill/capsule
32060                                                                           1 tablet/pill/capsule
32074                                                                                    small amount
32076                                                                    based on weight (51-100 lbs)
32079                                                                  based on weight (60.1-121 lbs)
32080                                                                                 based on weight
32084                                                                                 0.25 inch strip
32095                                                                     based on weight (44-88 lbs)
32097                                                                    based on weight (51-100 lbs)
32098                                                                    based on weight (50-100 lbs)
32099                                                                     based on weight (44-88 lbs)
32100                                                                    based on weight (50-100 lbs)
32101                                                                   based on weight (44.1-88 lbs)
32102                                                                     based on weight (44-88 lbs)
32103                                                                    based on weight (50-100 lbs)
32104                                                                           1 tablet/pill/capsule
32105                                                                    based on weight (50-100 lbs)
32106                                                                     based on weight (44-88 lbs)
32108                                                                                 based on weight
32114                                                               4.5% flumethrin, 10% imidacloprid
32116                                                               4.5% flumethrin, 10% imidacloprid
32119                                                                                     unspecified
32121                                                                                 based on weight
32122                                                                                 based on weight
32123                                                                                     unspecified
32128                                                                                 based on weight
32129                                                                                 based on weight
32132                                                                           1 tablet/pill/capsule
32133                                                                           1 tablet/pill/capsule
32134                                                                           1 tablet/pill/capsule
32168                                                                                    small amount
32171                                                                                    small amount
32175                                                                                    small amount
32179                                                                    based on weight (51-100 lbs)
32180                                                                    based on weight (60-120 lbs)
32183                                                                                     unspecified
32184                                                                                     unspecified
32187                                                                                     unspecified
32196                                                                                     unspecified
32222                                                                  based on weight (50.1-100 lbs)
32231                                                                           1 tablet/pill/capsule
32232                                                                           1 tablet/pill/capsule
32233                                                                  based on weight (50.1-100 lbs)
32234                                                                     based on weight (44-88 lbs)
32236                                                                    based on weight (51-100 lbs)
32237                                                                     based on weight (24-60 lbs)
32266                                                                                    small amount
32276                                                                                     unspecified
32290                                                                                        inhalant
32295                                                                           1 tablet/pill/capsule
32296                                                                           1 tablet/pill/capsule
32297                                                                     based on weight (45-88 lbs)
32310                                                                                           spray
32312                                                                    based on weight (51-100 lbs)
32313                                                                     based on weight (44-88 lbs)
32315                                                                                    1 inch strip
32320                                                                                        inhalant
32343                                                                                     unspecified
32358                                                    0.284 betamethasone, 0.57 gentamicin sulfate
32359                                                                     based on weight (45-88 lbs)
32360                                                                    based on weight (51-100 lbs)
32362                                                                    based on weight (50-100 lbs)
32363                                                                                     unspecified
32364                                                                                         1.75 ml
32365                                                                                         1.75 ml
32370                                                                                     unspecified
32390                                                                                 based on weight
32393                                                                                                
32394                                                                     based on weight (44-88 lbs)
32417                                                                           1 tablet/pill/capsule
32425                                                                     based on weight (45-88 lbs)
32426                                                                    based on weight (51-100 lbs)
32427                                                                  based on weight (50.1-100 lbs)
32445                                                                                     unspecified
32447                                                                                     unspecified
32448                                                                                     unspecified
32449                                                                                     unspecified
32460                                                                                            5-10
32463                                                                                     unspecified
32464                                                                                     unspecified
32466                                                                    based on weight (51-100 lbs)
32467                                                                   based on weight (44.1-88 lbs)
32477                                                                    based on weight (51-100 lbs)
32478                                                                   based on weight (44.1-88 lbs)
32504                                                                    based on weight (50-100 lbs)
32505                                                                       based on weight (56+ lbs)
32507                                                                                     application
32509                                                                    based on weight (50-100 lbs)
32510                                                                       based on weight (56+ lbs)
32511                                                                           1 tablet/pill/capsule
32512                                                                                     bottle/vial
32513                                                                                     unspecified
32520                                                                                     10-15 drops
32521                                                                                          1 drop
32529                                                                    based on weight (51-100 lbs)
32530                                                                    based on weight (51-100 lbs)
32535                                                                    based on weight (51-100 lbs)
32536                                                                     based on weight (44-88 lbs)
32538                                                                                 moderate amount
32542                                                                                     unspecified
32557                                                                                       136 , 114
32558                                                                     based on weight (45-88 lbs)
32561                                                                    based on weight (50-100 lbs)
32562                                                                                 based on weight
32575                                                                                     unspecified
32576                                                                                     unspecified
32629                                                                                     unspecified
32631                                                                    based on weight (51-100 lbs)
32633                                                                                     unspecified
32635                                                                                     application
32637                                                                                          1 pump
32642                                                                  based on weight (50.1-100 lbs)
32643                                                                    based on weight (50-100 lbs)
32652                                                                                     unspecified
32654                                                                                     unspecified
32664                                                                    based on weight (51-100 lbs)
32670                                                                                         57, 460
32672                                                                                 moderate amount
32673                                                                                        272, 228
32678                                                                                       25.3, 506
32680                                                                                        23 , 460
32682                                                                                         23, 460
32685                                                                                         23, 460
32694                                                                                           spray
32698                                                                    based on weight (60-120 lbs)
32703                                                                           1 tablet/pill/capsule
32726                                                                                     unspecified
32737                                                                                     unspecified
32739                                                                                     unspecified
32742                                                                    based on weight (50-100 lbs)
32743                                                                    based on weight (50-100 lbs)
32750                                                                       based on weight (50+ lbs)
32751                                                                     based on weight (24-60 lbs)
32767                                                                                     unspecified
32768                                                                           1 tablet/pill/capsule
32769                                                                        based on weight (54 lbs)
32770                                                                           1 tablet/pill/capsule
32777                                                                                     unspecified
32798                                                                                   1 bottle/vial
32815                                                                                    small amount
32829                                                                    based on weight (89-132 lbs)
32841                                                                                           spray
32844                                                                                        125, 500
32849                                                                                     unspecified
32850                                                                                     unspecified
32856                                                              8.8% (s)-methoprene, 9.8% fipronil
32857                                                            272 ivermectin, 227 pyrantel pamoate
32858                                                                     based on weight (60-80 lbs)
32859                                                                     based on weight (60-80 lbs)
32862                                                                     based on weight (44-88 lbs)
32863                                                                                           drops
32869                                                                     based on weight (44-88 lbs)
32870                                                                     based on weight (44-88 lbs)
32871                                                                                     unspecified
32879                                                                                     unspecified
32883                                                                    based on weight (50-100 lbs)
32884                                                                                 500, 1250, 2500
32887                                                                                     unspecified
32888                                                                                     unspecified
32903                                                                                            3 au
32912                                                                                          1 drop
32923                                                            272 ivermectin, 227 pyrantel pamoate
32930                                                                  based on weight (50.1-100 lbs)
32937                                                                        based on weight (66 lbs)
32938                                                                    based on weight (51-100 lbs)
32940                                                                                     application
32942                                                                    based on weight (51-100 lbs)
32943                                                                     based on weight (44-88 lbs)
32944                                                                  based on weight (60.1-121 lbs)
32949                                                                                    small amount
32950                                                                                     as directed
32951                                                                    based on weight (51-100 lbs)
32952                                                                    based on weight (60-121 lbs)
32954                                                                                        125, 500
32955                                                                    based on weight (51-100 lbs)
32956                                                                  based on weight (60.1-121 lbs)
32964                                                                                     unspecified
32965                                                                                     unspecified
32999                                                                    based on weight (51-100 lbs)
33004                                                                    based on weight (51-100 lbs)
33008                                                                       based on weight (55+ lbs)
33009                                                                    based on weight (51-100 lbs)
33010                                                                    based on weight (50-100 lbs)
33011                                                                     based on weight (24-60 lbs)
33014                                                                                          1 tube
33015                                                                        based on weight (30 lbs)
33023                                                                                 based on weight
33043                                                            272 ivermectin, 227 pyrantel pamoate
33047                                                                                        125, 875
33066                                                                     based on weight (40-85 lbs)
33067                                                                                         5 drops
33068                                                                   based on weight (40.1-85 lbs)
33073                                                                                     unspecified
33078                                                                    based on weight (51-100 lbs)
33081                                                                    based on weight (51-100 lbs)
33085                                                                     based on weight (56-95 lbs)
33086                                                                    based on weight (51-100 lbs)
33087                                                                     based on weight (56-95 lbs)
33088                                                                    based on weight (51-100 lbs)
33089                                                                     based on weight (56-95 lbs)
33090                                                                    based on weight (50-100 lbs)
33091                                                                     based on weight (56-95 lbs)
33092                                                                    based on weight (50-100 lbs)
33096                                                                                     unspecified
33107                                                                    based on weight (51-100 lbs)
33110                                                                    based on weight (51-100 lbs)
33113                                                                    based on weight (51-100 lbs)
33124                                                                                    small amount
33126                                                                                    small amount
33128                                                                                     unspecified
33132                                                                    based on weight (60-120 lbs)
33133                                                                    based on weight (51-100 lbs)
33138                                                                    based on weight (51-100 lbs)
33157                                                                                     unspecified
33159                                                                                     unspecified
33166                                                                     based on weight (45-80 lbs)
33187                                                            272 ivermectin, 227 pyrantel pamoate
33190                                                             13.5 milbemycin oxime, 810 spinosad
33191                                                                                     unspecified
33209                                                                                           spray
33211                                                                    based on weight (51-100 lbs)
33220                                                                    based on weight (45-120 lbs)
33222                                                                    based on weight (51-100 lbs)
33226                                                                             tablet/pill/capsule
33227                                                                                  1 pack/package
33229                                                                     based on weight (56-95 lbs)
33230                                                                    based on weight (51-100 lbs)
33233                                                                                  1 pack/package
33235                                                                     based on weight (56-95 lbs)
33236                                                                                   1 bottle/vial
33239                                                                                  1 pack/package
33242                                                                    based on weight (51-100 lbs)
33271                                                                                     unspecified
33286                                                                                 based on weight
33289                                                                                 based on weight
33292                                                                             tablet/pill/capsule
33293                                                                                     bottle/vial
33318                                                              8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                        23 , 460
33335                                                                                        23 , 460
33336                                                                    based on weight (51-100 lbs)
33347                                                                                     unspecified
33354                                                                                            tube
33355                                                                                     bottle/vial
33358                                                                                     unspecified
33363                                                                    based on weight (51-100 lbs)
33364                                                                     based on weight (44-88 lbs)
33370                                                                                     unspecified
33374                                                                                     unspecified
33375                                                                                     unspecified
33376                                                                                     unspecified
33377                                                                                     unspecified
33385                                                                                     unspecified
33387                                                                                     unspecified
33389                                                                                     unspecified
33410                                                                    based on weight (51-100 lbs)
33411                                                                       based on weight (30+ lbs)
33412                                                                    based on weight (51-100 lbs)
33414                                                                       based on weight (18+ lbs)
33456                                                                                     unspecified
33468                                                                                     unspecified
33471                                                                                     unspecified
33479                                                                    based on weight (60-120 lbs)
33480                                                                    based on weight (50-100 lbs)
33482                                                                                     unspecified
33489                                                                                     unspecified
33490                                                                                         23, 460
33491                                                                                         23, 460
33492                                                                                         23, 460
33493                                                                                         23, 460
33497                                                                           1 tablet/pill/capsule
33499                                                                                     unspecified
33500                                                                           1 tablet/pill/capsule
33539                                                                                     unspecified
33541                                                                                          collar
33542                                                                                       6-8 drops
33543                                                                                          collar
33544                                                                                          collar
33576                                                            272 ivermectin, 227 pyrantel pamoate
33580                                                                             tablet/pill/capsule
33581                                                                                            tube
33582                                                                  2 tablets/pills/capsules - 100
33583                                                                        3 tablets/pills/capsules
33590                                                                                     unspecified
33591                                                                    based on weight (51-100 lbs)
33592                                                                    based on weight (51-100 lbs)
33614                                                                                     unspecified
33641                                                                           1 tablet/pill/capsule
33644                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                       6-8 drops
33649                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                           1 tablet/pill/capsule
33684                                                                                     unspecified
33690                                                            272 ivermectin, 227 pyrantel pamoate
33696                                                            272 ivermectin, 227 pyrantel pamoate
33702                                                                                     unspecified
33706                                                                                         23, 460
33714                                                                    based on weight (50-100 lbs)
33717                                                                                     as directed
33722                                                                                     application
33723                                                                    based on weight (50-100 lbs)
33724                                                                    based on weight (50-100 lbs)
33725                                                                     based on weight (44-88 lbs)
33737                                                                                     unspecified
33739                                                                           1 tablet/pill/capsule
33740                                                                    based on weight (60-120 lbs)
33756                                                                                       1-2 drops
33767                                                                                         23, 228
33797                                                                       based on weight (55+ lbs)
33798                                                                    based on weight (51-100 lbs)
33804                                                                    based on weight (51-100 lbs)
33805                                                                       based on weight (55+ lbs)
33815                                                                                     unspecified
33824                                                            272 ivermectin, 227 pyrantel pamoate
33828                             1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                     unspecified
33868                                                                    based on weight (51-100 lbs)
33869                                                            272 ivermectin, 227 pyrantel pamoate
33870                                                                    based on weight (51-100 lbs)
33890                                                                                     unspecified
33894                                                                                    small amount
33901                                                                                     unspecified
33905                                                                                         1 spray
33907                                                                                           spray
33909                                                                                         1 spray
33911                                                                     based on weight (44-88 lbs)
33913                                                                                         1 spray
33914                                                                                         1 spray
33916                                                                                       injection
33919                                                                                    small amount
33927                                                                                   1 application
33929                                                                                          1 tube
33939                                                                                    small amount
33940                                                                                    small amount
33987                                                                           1 tablet/pill/capsule
33991                                                                                    small amount
33992                                                                           1 tablet/pill/capsule
33993                                                                           1 tablet/pill/capsule
33994                                                                                     application
33995                                                                           1 tablet/pill/capsule
33998                                                                                    small amount
34000                                                                           1 tablet/pill/capsule
34002                                                                           1 tablet/pill/capsule
34003                                                                                     application
34005                                                                                     unspecified
34011                                                                                     unspecified
34012                                                                                     unspecified
34014                                                                                     unspecified
34016                                                                                     unspecified
34022                                                                                     unspecified
34024                                                                                     unspecified
34029                                                                                     unspecified
34030                                                                    based on weight (51-100 lbs)
34043                                                                    based on weight (50-100 lbs)
34046                                                                     based on weight (44-88 lbs)
34048                                                                    based on weight (51-100 lbs)
34049                                                                       based on weight (50+ lbs)
34051                                                                    based on weight (51-100 lbs)
34053                                                                    based on weight (51-100 lbs)
34054                                                                                 based on weight
34069                                                            272 ivermectin, 227 pyrantel pamoate
34073                                                                                       1-2 drops
34074                                                                                        114, 136
34075                                                                                 0.22, 1.1, 0.01
34077                                                                    based on weight (51-100 lbs)
34087                                                                  based on weight (60.1-120 lbs)
34090                                                                                 moderate amount
34091                                                                    based on weight (51-100 lbs)
34092                                                                                          1 tube
34093                                                                                        1 collar
34094                                                                                 moderate amount
34095                                                                  based on weight (60.1-120 lbs)
34096                                                                    based on weight (50-100 lbs)
34105                                                                                         1 spray
34107                                                                     based on weight (45-88 lbs)
34108                                                                    based on weight (51-100 lbs)
34109                                                                                    pack/package
34111                                                                    based on weight (51-100 lbs)
34113                                                                                            tube
34125                                                                    based on weight (55-100 lbs)
34126                                                                    based on weight (51-100 lbs)
34128                                                                                      1-2 sprays
34132                                                                    based on weight (51-100 lbs)
34134                                                                    based on weight (51-100 lbs)
34135                                                                     based on weight (56-95 lbs)
34138                                                                                  1 pack/package
34140                                                    350 chondroitin sulfate, 900 glucosamine hcl
34147                                                                    based on weight (51-100 lbs)
34148                                                                    based on weight (60-121 lbs)
34152                                                                                    small amount
34155                                                                                     unspecified
34156                                                                                     unspecified
34157                                                                                     unspecified
34161                                                            272 ivermectin, 227 pyrantel pamoate
34227                                                                                     unspecified
34230                                                                                     unspecified
34231                                                                                     unspecified
34232                                                                                     unspecified
34233                                                                                     unspecified
34234                                                                                     unspecified
34235                                                                                     unspecified
34238                                                                                 based on weight
34239                                                                        based on weight (66 lbs)
34240                                                                                 based on weight
34241                                                                                 based on weight
34242                                                                    based on weight (50-100 lbs)
34243                                                                                 based on weight
34246                                                                        based on weight (70 lbs)
34247                                                                        based on weight (70 lbs)
34249                                                                        based on weight (50 lbs)
34254                                                                    based on weight (51-100 lbs)
34260                                                                                       62.5, 437
34262                                                                                         23, 460
34264                                                                                       62.5, 437
34267                                                                    based on weight (51-100 lbs)
34268                                                                    based on weight (51-100 lbs)
34269                                                                                     unspecified
34282                                                                                          1 pump
34287                                                                                          1 drop
34289                                                                                          1 tube
34290                                                                                            1 ml
34293                                                                                          1 tube
34304                                                                                          1 tube
34327                                                                                     unspecified
34332                                                            272 ivermectin, 227 pyrantel pamoate
34333                                                                                    small amount
34334                                                                                     unspecified
34336                                                                                    small amount
34340                                                                   based on weight (24.1-60 lbs)
34342                                                                                     unspecified
34343                                                                                     unspecified
34345                                                                     based on weight (45-88 lbs)
34348                                                                                         5 drops
34359                                                                                 based on weight
34360                                                                                 based on weight
34361                                                                                 based on weight
34362                                                                                 based on weight
34367                                                                                    small amount
34374                                                                    based on weight (50-100 lbs)
34375                                                                    based on weight (88-123 lbs)
34378                                                                                     unspecified
34379                                                                                     unspecified
34388                                                                                    small amount
34401                                                                    based on weight (51-100 lbs)
34403                                                                     based on weight (24-60 lbs)
34409                                                                                     unspecified
34410                                                                                     unspecified
34418                                                                    based on weight (51-100 lbs)
34419                                                                    based on weight (51-100 lbs)
34430                                                                                 based on weight
34434                                                                     based on weight (44-88 lbs)
34435                                                                           1 tablet/pill/capsule
34436                                                                                         1 scoop
34456                                                                                         2 pumps
34457                                                                                            1 gm
34463                                                                                            1 gm
34467                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
34474                                                                    based on weight (50-100 lbs)
34493                                                                                   0.5293, 5, 23
34513                                                                     based on weight (45-88 lbs)
34536                                                                                     unspecified
34545                                                                                     unspecified
34548                                                                                     unspecified
34579                                                                                     unspecified
34583                                                                    based on weight (51-100 lbs)
34584                                                                    based on weight (51-100 lbs)
34587                                                                                           spray
34588                                                                                    small amount
34593                                                                    based on weight (51-100 lbs)
34606                                                                                     unspecified
34608                                                                                        tapering
34609                                                                                    small amount
34614                                                                                            1 ml
34617                                                                                   1 bottle/vial
34624                                                                                     unspecified
34629                                                                     based on weight (40-60 lbs)
34630                                                                                     as directed
34635                                                                                     application
34636                                                                     based on weight (41-60 lbs)
34637                                                                                        tapering
34638                                                                                      1 wipe/pad
34640                                                                     based on weight (41-60 lbs)
34642                                                                    based on weight (60-120 lbs)
34648                                                                    based on weight (50-100 lbs)
34669                                                                    based on weight (51-100 lbs)
34671                                                                           1 tablet/pill/capsule
34672                                                                                     application
34673                                                                                     application
34674                                                                                     application
34675                                                                                           drops
34676                                                           23 milbemycin oxime, 228 praziquantel
34677                                                                                     unspecified
34678                                                                                     unspecified
34680                                                                                     unspecified
34697                                                                  based on weight (60.1-120 lbs)
34704                                                                                 based on weight
34705                                                              27 milbemycin oxime, 1620 spinosad
34706                                                                           1 tablet/pill/capsule
34708                                                                        2 tablets/pills/capsules
34709                                                                        2 tablets/pills/capsules
34710                                                                                     unspecified
34727                                                                                     unspecified
34728                                                                                     unspecified
34729                                                                                     unspecified
34730                                                                    based on weight (51-100 lbs)
34733                                                                    based on weight (51-100 lbs)
34734                                                                     based on weight (44-88 lbs)
34741                                                                                    small amount
34744                                                                                    small amount
34747                                                                     based on weight (44-88 lbs)
34750                                                            272 ivermectin, 227 pyrantel pamoate
34763                                                                    based on weight (51-100 lbs)
34764                                                                  based on weight (60.1-120 lbs)
34766                                                            272 ivermectin, 227 pyrantel pamoate
34787                                                                                     unspecified
34788                                                                                    small amount
34789                                                            272 ivermectin, 227 pyrantel pamoate
34791                                                                    based on weight (50-100 lbs)
34797                                                                                     unspecified
34798                                                                                     unspecified
34799                                                                    based on weight (50-100 lbs)
34811                                                                       based on weight (60+ lbs)
34813                                                                             tablet/pill/capsule
34828                                                                   based on weight (40.1-60 lbs)
34832                                                                                        27, 1610
34833                                                                    based on weight (51-100 lbs)
34845                                                                             tablet/pill/capsule
34874                                                                           1 tablet/pill/capsule
34875                                                                           1 tablet/pill/capsule
34887                                                                                 based on weight
34888                                                                                     unspecified
34889                                                                           1 tablet/pill/capsule
34890                                                                               1 syringe/pipette
34891                                                                                 based on weight
34892                                                                     based on weight (44-88 lbs)
34900                                                                    based on weight (50-100 lbs)
34901                                                                     based on weight (44-88 lbs)
34902                                                                based on weight (70-80 lbs) - 80
34903                                                                                    small amount
34904                                                                                 based on weight
34905                                                                  based on weight (50.1-100 lbs)
34906                                                                   based on weight (44.1-88 lbs)
34907                                                                                    small amount
34908                                                                                 based on weight
34917                                                                                     unspecified
34918                                                                                     unspecified
34920                                                                  based on weight (50.1-100 lbs)
34922                                                                                         23, 228
34923                                                                      1 tablet/pill/capsule - 23
34924                                                                    1 tablet/pill/capsule - 1000
34953                                                                                     unspecified
34955                                                                                     unspecified
34956                                                                                     unspecified
34966                                                                    based on weight (51-100 lbs)
34979                                                                     based on weight (44-88 lbs)
34981                                                                  based on weight (50.1-100 lbs)
34982                                                                  based on weight (50.1-100 lbs)
34983                                                                    based on weight (51-100 lbs)
34991                                                                    based on weight (51-100 lbs)
34992                                                                    based on weight (51-100 lbs)
34996                                                                    based on weight (51-100 lbs)
35002                                                                       based on weight (55+ lbs)
35004                                                                    based on weight (51-100 lbs)
35014                                                                    based on weight (51-100 lbs)
35025                                                                    based on weight (50-100 lbs)
35026                                                                                       0.125 tsp
35027                                                                                        2.5 cups
35034                                                                                         23, 228
35049                                                                                        ointment
35069                                                                    based on weight (51-100 lbs)
35074                                                                                     unspecified
35094                                                                    based on weight (51-100 lbs)
35103                                                                                 based on weight
35109                                                                                     unspecified
35110                                                                    based on weight (50-100 lbs)
35122                                                                                         2.25 ml
35124                                                                                          2.2 ml
35125                                                                    based on weight (60-121 lbs)
35126                                                                                          7.5 gm
35132                                                                    based on weight (88-123 lbs)
35134                                                                                    small amount
35143                                                                    based on weight (51-100 lbs)
35144                                                                                    small amount
35145                                                                    based on weight (51-100 lbs)
35146                                                                     based on weight (40-60 lbs)
35147                                                                    based on weight (51-100 lbs)
35148                                                                                     unspecified
35149                                                                     based on weight (25-50 lbs)
35150                                                                     based on weight (40-60 lbs)
35152                                                                                 based on weight
35153                                                                                 based on weight
35154                                                                    based on weight (51-100 lbs)
35160                                                                                     unspecified
35176                                                                                          1, 2.5
35181                                                                    based on weight (51-100 lbs)
35182                                                                    based on weight (51-100 lbs)
35183                                                                                     unspecified
35189                                                                    based on weight (51-100 lbs)
35203                                                                    based on weight (51-100 lbs)
35204                                                                    based on weight (51-100 lbs)
35205                                                                                    small amount
35207                                                            272 ivermectin, 227 pyrantel pamoate
35212                                                                    based on weight (51-100 lbs)
35214                                                                    based on weight (51-100 lbs)
35232                                                                                     unspecified
35245                                                                                           drops
35252                                                                                     unspecified
35258                                                                                         4 drops
35262                                                            272 ivermectin, 227 pyrantel pamoate
35264                                                            272 ivermectin, 227 pyrantel pamoate
35278                                                                    based on weight (50-100 lbs)
35279                                                                    based on weight (60-120 lbs)
35283                                                                    based on weight (51-100 lbs)
35284                                                                  based on weight (60.1-121 lbs)
35291                                                                    based on weight (51-100 lbs)
35299                                                                     based on weight (45-88 lbs)
35300                                                                    based on weight (51-100 lbs)
35314                                                                                    small amount
35315                                                                                        23 , 228
35354                                                                                         23, 460
35382                                                                           1 tablet/pill/capsule
35388                                                                                           spray
35393                                                                                     unspecified
35399                                                                    based on weight (51-100 lbs)
35400                                                                                     unspecified
35401                                                                                     unspecified
35404                                                                                     unspecified
35405                                                                                     unspecified
35406                                                                                     unspecified
35414                                                                                         23, 460
35417                                                                                        4.5, 270
35420                                                                    based on weight (51-100 lbs)
35421                                                                     based on weight (44-88 lbs)
35422                                                                    based on weight (51-100 lbs)
35423                                                                    based on weight (51-100 lbs)
35424                                                                    based on weight (88-123 lbs)
35425                                                                                         23, 460
35432                                                              460 lufenuron, 23 milbemycin oxime
35434                                                                                     unspecified
35443                                                                                     unspecified
35450                                                                                     unspecified
35453                                                                                     unspecified
35454                                                                                     unspecified
35495                                                                                 based on weight
35496                                                                    based on weight (51-100 lbs)
35497                                                            272 ivermectin, 227 pyrantel pamoate
35499                                                                                  1 pack/package
35501                                                            272 ivermectin, 227 pyrantel pamoate
35504                                                                                    pack/package
35506                                                                                    small amount
35507                                                                                          1 drop
35509                                                                                     unspecified
35513                                                                                     unspecified
35525                                                                     based on weight (41-88 lbs)
35526                                                                    based on weight (51-100 lbs)
35528                                                                                         23, 228
35539                                                                                         23, 228
35560                                                                    based on weight (51-100 lbs)
35561                                                                     based on weight (24-60 lbs)
35562                                                                           1 tablet/pill/capsule
35563                                                                           1 tablet/pill/capsule
35565                                                                    based on weight (51-100 lbs)
35566                                                                  based on weight (60.1-121 lbs)
35569                                                                    based on weight (51-100 lbs)
35571                                                                    based on weight (51-100 lbs)
35572                                                                       based on weight (55+ lbs)
35573                                                                        based on weight (45 lbs)
35574                                                                         0.5 tablet/pill/capsule
35575                                                                    based on weight (51-100 lbs)
35576                                                                    based on weight (51-100 lbs)
35577                                                                     based on weight (44-88 lbs)
35578                                                                     based on weight (44-88 lbs)
35579                                                                    based on weight (51-100 lbs)
35580                                                                                          varies
35581                                                                                          varies
35582                                                                                          varies
35592                                                                                         3 drops
35593                                                                    based on weight (51-100 lbs)
35598                                                                    based on weight (51-100 lbs)
35605                                                                                     unspecified
35620                                                                     based on weight (45-88 lbs)
35621                                                                    based on weight (89-132 lbs)
35624                                                                    based on weight (89-132 lbs)
35626                                                                                    small amount
35628                                                                                 based on weight
35633                                                                                     unspecified
35639                                                                                 based on weight
35641                                                                    based on weight (60-121 lbs)
35642                                                                                     application
35643                                                                                          7.5 ml
35645                                                                                              ml
35656                                                                                     application
35659                                                                                         23, 228
35662                                                                                     unspecified
35664                                                                    based on weight (50-100 lbs)
35665                                                                     based on weight (44-88 lbs)
35668                                                                                     unspecified
35673                                                                                     unspecified
35674                                                                                     unspecified
35696                                                                                    pack/package
35697                                                                       based on weight (60+ lbs)
35699                                                                  based on weight (60.1-121 lbs)
35700                                                                                         1 spray
35721                                                                     based on weight (45-88 lbs)
35722                                                                                     unspecified
35725                                                            272 ivermectin, 227 pyrantel pamoate
35727                                                            272 ivermectin, 227 pyrantel pamoate
35740                                                                                     application
35743                                                                                     unspecified
35748                                                            272 ivermectin, 227 pyrantel pamoate
35756                                                                    based on weight (51-100 lbs)
35757                                                                    based on weight (51-100 lbs)
35758                                                                  based on weight (60.1-121 lbs)
35762                                                                                     unspecified
35768                                                                       based on weight (55+ lbs)
35770                                                                     based on weight (21-55 lbs)
35771                                                                    based on weight (51-100 lbs)
35772                                                                                     unspecified
35773                                                                     based on weight (21-55 lbs)
35774                                                                    based on weight (50-100 lbs)
35775                                                                    based on weight (51-100 lbs)
35777                                                                     based on weight (20-55 lbs)
35778                                                                     based on weight (25-50 lbs)
35784                                                                           1 tablet/pill/capsule
35786                                                                                     application
35791                                                           based on weight (44-88 lbs) - 2.68 ml
35792                                                              based on weight (50-100 lbs) - 227
35793                                                                    based on weight (50-100 lbs)
35808                                                                                     unspecified
35809                                                                                     unspecified
35810                                                                                     unspecified
35812                                                                    based on weight (60-120 lbs)
35820                                                                           1 tablet/pill/capsule
35821                                                                                          1 dose
35831                                                           23 milbemycin oxime, 228 praziquantel
35835                                                           23 milbemycin oxime, 228 praziquantel
35850                                                                           1 tablet/pill/capsule
35853                                                                                          200 ml
35855                                                                    based on weight (50-100 lbs)
35858                                                                           1 tablet/pill/capsule
35859                                                                        3 tablets/pills/capsules
35903                                                                                   5 minute soak
35905                                                                           1 tablet/pill/capsule
35907                                                                           1 tablet/pill/capsule
35908                                                                    based on weight (50-100 lbs)
35931                                                                           1 tablet/pill/capsule
35954                                                                    based on weight (51-100 lbs)
35955                                                                    based on weight (51-100 lbs)
35963                                                                                    small amount
35965                                                                                    small amount
35969                                                                                    small amount
35973                                                                    based on weight (60-120 lbs)
35982                                                                    based on weight (51-100 lbs)
35983                                                                  based on weight (60.1-121 lbs)
36019                                                                   based on weight (24.1-60 lbs)
36021                                                                  based on weight (60.1-121 lbs)
36023                                                                                    small amount
36030                                                                                     unspecified
36042                                                                                     unspecified
36043                                                              27 milbemycin oxime, 1620 spinosad
36044                                                                    based on weight (60-120 lbs)
36065                                                                    based on weight (51-100 lbs)
36069                                                                    based on weight (51-100 lbs)
36078                                                                                    small amount
36081                                                                                    small amount
36082                                                                                        68 , 272
36084                                                                                     unspecified
36108                                                           23 milbemycin oxime, 228 praziquantel
36110                                                            13. 5 milbemycin oxime, 810 spinosad
36112                                                                                     unspecified
36113                                                                                     unspecified
36115                                                                                     unspecified
36134                                                                                     unspecified
36137                                                                                     unspecified
36144                                                                     based on weight (45-88 lbs)
36145                                                                    based on weight (51-100 lbs)
36150                                                                    based on weight (51-100 lbs)
36153                                                                                    small amount
36155                                                                                          1 tube
36156                                                                    based on weight (51-100 lbs)
36159                                                                    based on weight (60-121 lbs)
36171                                                                                     unspecified
36191                                                                    based on weight (50-100 lbs)
36192                                                                     based on weight (44-88 lbs)
36198                                                                                          1.5 ml
36200                                                                                     unspecified
36201                                                                                     unspecified
36202                                                                                           drops
36203                                                                                     unspecified
36205                                                                                     unspecified
36218                                                                    based on weight (50-100 lbs)
36220                                                                    based on weight (51-100 lbs)
36221                                                                                 based on weight
36222                                                                                    small amount
36223                                                                                  1 pack/package
36225                                                                    based on weight (51-100 lbs)
36227                                                                                 based on weight
36228                                                                                 based on weight
36229                                                                    based on weight (51-100 lbs)
36231                                                                                   1 bottle/vial
36232                                                                                 based on weight
36233                                                                                 based on weight
36235                                                                                    small amount
36237                                                                                     unspecified
36238                                                                                     unspecified
36240                                                                                         23, 228
36254                                                                                     unspecified
36256                                                                                     unspecified
36264                                                                  based on weight (50.1-100 lbs)
36268                                                                                     unspecified
36271                                                              27 milbemycin oxime, 1620 spinosad
36272                                                             13.5 milbemycin oxime, 810 spinosad
36273                                                                     based on weight (40-60 lbs)
36275                                                                    based on weight (80-135 lbs)
36276                                                                                     as directed
36280                                                                    based on weight (85-130 lbs)
36283                                                                                 based on weight
36288                                                                                 based on weight
36292                                                                                         2.68 ml
36293                                                                                     as directed
36294                                                                                     as directed
36295                                                                                     as directed
36296                                                                                 based on weight
36297                                                                                 based on weight
36298                                                                                 based on weight
36299                                                                                 based on weight
36300                                                                                 based on weight
36301                                                                                 based on weight
36302                                                                                 based on weight
36303                                                                                 based on weight
36304                                                                                 based on weight
36305                                                                                 based on weight
36306                                                                                     unspecified
36307                                                                                     unspecified
36308                                                                                     unspecified
36309                                                                                     unspecified
36310                                                                                     unspecified
36311                                                                                     unspecified
36322                                                                                     as directed
36323                                                                                     as directed
36324                                                                                          varies
36325                                                                                 based on weight
36326                                                                                 based on weight
36327                                                                                 based on weight
36328                                                                                 based on weight
36329                                                                                 based on weight
36330                                                                                 based on weight
36331                                                                                 based on weight
36332                                                                                 based on weight
36333                                                                                 based on weight
36334                                                                                 based on weight
36335                                                                                     unspecified
36336                                                                                     unspecified
36337                                                                                     unspecified
36338                                                                                     unspecified
36339                                                                                     unspecified
36340                                                                                     unspecified
36357                                                                           1 tablet/pill/capsule
36358                                                                                     as directed
36359                                                                                          varies
36360                                                                                          varies
36361                                                                                 based on weight
36362                                                                                 based on weight
36363                                                                                 based on weight
36364                                                                                 based on weight
36365                                                                                 based on weight
36366                                                                                 based on weight
36367                                                                                 based on weight
36368                                                                                 based on weight
36369                                                                                 based on weight
36370                                                                                 based on weight
36371                                                                                     unspecified
36372                                                                                     unspecified
36373                                                                                     unspecified
36374                                                                                     unspecified
36376                                                                                         0.25 ml
36377                                                                                     as directed
36378                                                                                     as directed
36379                                                                                          varies
36380                                                                                 based on weight
36381                                                                                 based on weight
36382                                                                                 based on weight
36383                                                                                 based on weight
36384                                                                                 based on weight
36385                                                                                 based on weight
36397                                                                           1 tablet/pill/capsule
36398                                                                                 based on weight
36399                                                                                 based on weight
36403                                                                                 based on weight
36404                                                                                 based on weight
36405                                                                    based on weight (51-100 lbs)
36406                                                                                 based on weight
36410                                                                                     unspecified
36427                                                                       based on weight (55+ lbs)
36429                                                                                 based on weight
36430                                                                                     as directed
36438                                                                                     as directed
36439                                                                    based on weight (51-100 lbs)
36440                                                                       based on weight (40+ lbs)
36443                                                                                 based on weight
36444                                                                                 based on weight
36448                                                                                     as directed
36451                                                                                     unspecified
36460                                                                           1 tablet/pill/capsule
36461                                                                           1 tablet/pill/capsule
36464                                                                                     as directed
36474                                                                                     unspecified
36491                                                            272 ivermectin, 227 pyrantel pamoate
36497                                                            272 ivermectin, 227 pyrantel pamoate
36513                                                                                     unspecified
36520                                                                                           2 tsp
36533                                                                                    small amount
36535                                                                                        wipe/pad
36559                                                                    based on weight (51-100 lbs)
36560                                                                     based on weight (45-88 lbs)
36562                                                                    based on weight (51-100 lbs)
36568                                                                    based on weight (51-100 lbs)
36571                                                                                 0.25 inch strip
36574                                                                                     unspecified
36579                                                                                          1 tube
36595                                                                    based on weight (50-100 lbs)
36597                                                                                           15 gm
36600                                                                                    small amount
36601                                                                    based on weight (50-100 lbs)
36602                                                                                     unspecified
36605                                                                    based on weight (50-100 lbs)
36606                                                                                           15 gm
36607                                                                    based on weight (50-100 lbs)
36608                                                                    based on weight (50-100 lbs)
36616                                                                    based on weight (50-100 lbs)
36623                                                                                           15 gm
36624                                                                                     application
36626                                                                                    small amount
36630                                                                    based on weight (50-100 lbs)
36631                                                                                           15 gm
36632                                                                    based on weight (50-100 lbs)
36633                                                                                           15 gm
36635                                                                    based on weight (50-100 lbs)
36637                                                                                           15 gm
36657                                                            27mg milbemycin oxime, 1620 spinosad
36670                                                                       based on weight (<60 lbs)
36698                                                                    based on weight (51-100 lbs)
36699                                                                    based on weight (51-100 lbs)
36705                                                                                     0.284, 0.57
36708                                                            272 ivermectin, 227 pyrantel pamoate
36709                                                                                     unspecified
36735                                                                                     unspecified
36751                                                                    based on weight (51-100 lbs)
36752                                                                     based on weight (45-88 lbs)
36753                                                                        based on weight (75 lbs)
36772                                                                                     application
36778                                                                           1 tablet/pill/capsule
36816                                                                                        1.5 cups
36817                                                                    based on weight (51-100 lbs)
36818                                                                                     application
36819                                                                                     application
36824                                                                    based on weight (51-100 lbs)
36833                                        based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                 0.25 inch strip
36835                                                                                        wipe/pad
36840                                                                    based on weight (51-100 lbs)
36842                                                                                    small amount
36846                                                                    based on weight (51-100 lbs)
36847                                                                       based on weight (50+ lbs)
36848                                                                                 based on weight
36849                                                                    based on weight (60-120 lbs)
36850                                                                    based on weight (51-100 lbs)
36851                                                                                    small amount
36853                                                                                     unspecified
36855                                                                                     unspecified
36859                                                                                     unspecified
36875                                                                 2.5 tablets/pills/capsules - 10
36876                                                                 1.5 tablets/pills/capsules - 50
36877                                                                                        0.5, 227
36878                                                                     based on weight (56-95 lbs)
36880                                                                 2.5 tablets/pills/capsules - 10
36881                                                                    based on weight (51-100 lbs)
36882                                                                  2 tablets/pills/capsules - 150
36883                                                                  based on weight (60.1-121 lbs)
36884                                                                                          1 pump
36892                                                                                    small amount
36893                                                                  based on weight (60.1-121 lbs)
36894                                                                    based on weight (51-100 lbs)
36900                                                                    based on weight (51-100 lbs)
36901                                                                  based on weight (60.1-121 lbs)
36911                                                                    based on weight (51-100 lbs)
36919                                                                                         23, 460
36920                                                                     based on weight (45-88 lbs)
36921                                                                                     application
36925                                                                                         23, 460
36945                                                                                    small amount
36969                                                                    based on weight (51-100 lbs)
36970                                                                     based on weight (56-95 lbs)
36982                                                                     based on weight (21-55 lbs)
36983                                                                    based on weight (51-100 lbs)
36984                                                                        based on weight (60 lbs)
36985                                                                    based on weight (51-100 lbs)
36994                                                                                     unspecified
37007                                                                                         23, 460
37015                                                                    based on weight (50-100 lbs)
37017                                                     2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                    based on weight (50-100 lbs)
37019                                                                     based on weight (45-88 lbs)
37020                                                                                0.125 inch strip
37021                                                                    based on weight (50-100 lbs)
37036                                                                                     application
37038                                                                                       125 , 500
37046                                                                                     unspecified
37054                                                                    based on weight (50-100 lbs)
37055                                                                    based on weight (51-100 lbs)
37056                                                                                     unspecified
37057                                                            136 ivermectin, 114 pyrantel pamoate
37061                                                                       based on weight (18+ lbs)
37063                                                               4.5% flumethrin, 10% imidacloprid
37069                                                            272 ivermectin, 227 pyrantel pamoate
37070                                                                                     unspecified
37071                                                                                     unspecified
37073                                                                                    small amount
37074                                                                                        23 , 460
37075                                                                                    small amount
37076                                                                                          1 tube
37077                                                                       based on weight (55+ lbs)
37078                                                                    based on weight (51-100 lbs)
37080                                                                                          1 tube
37087                                                                    based on weight (51-100 lbs)
37088                                                                    based on weight (51-100 lbs)
37098                                                                       based on weight (55+ lbs)
37099                                                                    based on weight (51-100 lbs)
37104                                                                                       1-2 drops
37115                                                                                         7 drops
37116                                                                                 based on weight
37117                                                                                     unspecified
37135                                                                                 moderate amount
37157                                                                                     unspecified
37164                                                                                    small amount
37165                                                                    based on weight (50-100 lbs)
37168                                                                                     application
37169                                                                                     application
37179                                                                           1 tablet/pill/capsule
37193                                                                    based on weight (51-100 lbs)
37194                                                                                          collar
37195                                                                     based on weight (26-50 lbs)
37197                                                                       based on weight (60+ lbs)
37200                                                                    based on weight (51-100 lbs)
37201                                                                    based on weight (60-121 lbs)
37202                                                                       based on weight (60+ lbs)
37219                                                                                     unspecified
37221                                                                                     unspecified
37259                                                                             tablet/pill/capsule
37260                                                                                           drops
37262                                                                       based on weight (55+ lbs)
37266                                                                    based on weight (50-100 lbs)
37267                                                                     based on weight (55-95 lbs)
37270                                                                     based on weight (56-95 lbs)
37271                                                                       based on weight (55+ lbs)
37272                                                                        3 tablets/pills/capsules
37273                                                                                         8 drops
37277                                                                                     unspecified
37278                                                                                     unspecified
37279                                                                                     unspecified
37302                                                            272 ivermectin, 227 pyrantel pamoate
37303                                                                                    small amount
37309                                                                                    small amount
37316                                                                    based on weight (50-100 lbs)
37324                                                                           1 tablet/pill/capsule
37325                                                                                     application
37326                                                                                     unspecified
37332                                                                                     unspecified
37337                                                                                     unspecified
37344                                                                                     unspecified
37349                                                                    based on weight (51-100 lbs)
37359                                                                                         23, 228
37373                                                                    based on weight (51-100 lbs)
37374                                                                  based on weight (60.1-121 lbs)
37375                                                                    based on weight (51-100 lbs)
37376                                                                  based on weight (60.1-120 lbs)
37377                                                                           1 tablet/pill/capsule
37385                                                                    based on weight (51-100 lbs)
37386                                                                  based on weight (60.1-121 lbs)
37387                                                                                 based on weight
37392                                                                                     unspecified
37396                                                                                     unspecified
37397                                                                     based on weight (44-88 lbs)
37434                                                                                     unspecified
37435                                                                                     unspecified
37439                                                                    based on weight (51-100 lbs)
37446                                                                    based on weight (51-100 lbs)
37448                                                                                          1 pump
37449                                                                                 moderate amount
37451                                                                                     application
37453                                                                                          1 pump
37454                                                                                 moderate amount
37457                                                                                     as directed
37463                                                                                     unspecified
37464                                                                                           spray
37465                                                                                           spray
37467                                                                                 moderate amount
37468                                                                           1 tablet/pill/capsule
37469                                                                           1 tablet/pill/capsule
37477                                                                                 moderate amount
37478                                                                                 moderate amount
37485                                                                    based on weight (51-100 lbs)
37491                                                                                           spray
37493                                                                    based on weight (51-100 lbs)
37495                                                                                           spray
37496                                                                                         5 drops
37510                                                                                     unspecified
37526                                                                                         100-200
37527                                                                                 0.25 inch strip
37533                                                                                    small amount
37536                                                                           1:10 part water ratio
37540                                                                    based on weight (51-100 lbs)
37545                                                                    based on weight (51-100 lbs)
37546                                                                     based on weight (44-88 lbs)
37547                                                                    based on weight (60-120 lbs)
37552                                                                    based on weight (51-100 lbs)
37568                                                                                         23, 460
37569                                                                       based on weight (55+ lbs)
37571                                                                                         23, 460
37576                                                                                    small amount
37577                                                                                         23, 460
37578                                                                                     0.135 fl oz
37579                                                                                     unspecified
37580                                                                                     unspecified
37584                                                                                     unspecified
37585                                                                                     unspecified
37586                                                                                     unspecified
37597                                                                                     unspecified
37598                                                                                     unspecified
37601                                                                    based on weight (51-100 lbs)
37602                                                                    based on weight (60-121 lbs)
37603                                                                    based on weight (60-121 lbs)
37608                                                                                     unspecified
37621                                                                           1 tablet/pill/capsule
37622                                                                           1 tablet/pill/capsule
37624                                                                    based on weight (50-100 lbs)
37627                                                                                 based on weight
37628                                                                                 based on weight
37629                                                                    based on weight (50-100 lbs)
37630                                                                    based on weight (50-100 lbs)
37639                                                                                     unspecified
37648                                                                     based on weight (56-95 lbs)
37649                                                                                          1.8 ml
37651                                                                                          collar
37655                                                                                          collar
37657                                                                                          collar
37662                                                                                 based on weight
37664                                                                                 based on weight
37669                                                                                     unspecified
37670                                                                                     unspecified
37675                                                                                     unspecified
37691                                                                                     application
37696                                                                                 1.11, 1.5, 15.1
37697                                                                         0.5 tablet/pill/capsule
37698                                                                        2 tablets/pills/capsules
37699                                                                                          1 drop
37704                                                                    based on weight (51-100 lbs)
37705                                                                                 based on weight
37709                                                                        2 tablets/pills/capsules
37710                                                                             tablet/pill/capsule
37712                                                                                     unspecified
37713                                                                                     unspecified
37714                                                                                     unspecified
37717                                                                                     unspecified
37718                                                                                     unspecified
37731                                                                    based on weight (51-100 lbs)
37738                                                                    based on weight (51-100 lbs)
37739                                                                    based on weight (51-100 lbs)
37740                                                                    based on weight (89-132 lbs)
37742                                                                    based on weight (51-100 lbs)
37771                                                                                           drops
37785                                                                    based on weight (60-121 lbs)
37786                                                                    based on weight (50-100 lbs)
37797                                                                    based on weight (50-100 lbs)
37798                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
37805                                                                     based on weight (26-50 lbs)
37806                                                                    based on weight (60-120 lbs)
37809                                                                                        inhalant
37816                                                                                     unspecified
37817                                                                                     unspecified
37820                                                                                     unspecified
37821                                                                                     unspecified
37822                                                                                     unspecified
37834                                                                                 based on weight
37835                                                                                 based on weight
37837                                                                                 based on weight
37838                                                                    based on weight (50-100 lbs)
37839                                                                     based on weight (44-88 lbs)
37845                                                                                 based on weight
37846                                                                                 based on weight
37847                                                                                 based on weight
37848                                                                                 based on weight
37849                                                                    based on weight (50-100 lbs)
37850                                                                     based on weight (44-88 lbs)
37851                                                                     based on weight (44-88 lbs)
37852                                                                       based on weight (50+ lbs)
37855                                                                    based on weight (51-100 lbs)
37858                                                                    based on weight (51-100 lbs)
37865                                                                      based on weight (0-22 lbs)
37885                                                                                 based on weight
37894                                                                                 based on weight
37895                                                                     based on weight (44-88 lbs)
37907                                                              27 milbemycin oxime, 1620 spinosad
37916                                                                    based on weight (60-120 lbs)
37920                                                                                 based on weight
37929                                                                                       3-5 drops
37930                                                                                     application
37933                                                                           1 tablet/pill/capsule
37934                                                                           1 tablet/pill/capsule
37935                                                                                     application
37936                                                                           1 tablet/pill/capsule
37937                                                                                       3-5 drops
37941                                                                                         5 drops
37942                                                                                    small amount
37944                                                                                     1000 to 250
37976                                                                    based on weight (51-100 lbs)
37977                                                                     based on weight (45-88 lbs)
37978                                                                    based on weight (51-100 lbs)
37979                                                                                     unspecified
37980                                                                                     unspecified
37984                                                                    based on weight (51-100 lbs)
37989                                                                    based on weight (51-100 lbs)
37990                                                                                    small amount
37992                                                                    based on weight (51-100 lbs)
37993                                                                     based on weight (44-88 lbs)
38018                                                                                       13.5, 810
38036                                                                    based on weight (51-100 lbs)
38041                                                                                 based on weight
38046                                                                    based on weight (50-100 lbs)
38048                                                                                       62.5, 375
38050                                                                                  12.5-25, 25-50
38051                                                                    based on weight (51-100 lbs)
38052                                                                                     unspecified
38056                                                                                     unspecified
38070                                                                    based on weight (51-100 lbs)
38071                                                                       based on weight (55+ lbs)
38072                                                                                     unspecified
38074                                                                                     unspecified
38075                                                                                     unspecified
38102                                                                                           5, 50
38123                                                                    based on weight (51-100 lbs)
38126                                                                    based on weight (51-100 lbs)
38132                                                                                     unspecified
38134                                                                                     unspecified
38135                                                                                     unspecified
38136                                                                                     unspecified
38141                                                                  based on weight (51.1-100 lbs)
38142                                                                   based on weight (24.1-60 lbs)
38151                                                                   based on weight (24.1-60 lbs)
38152                                                                           1 tablet/pill/capsule
38156                                                                   based on weight (24.1-60 lbs)
38165                                                                    based on weight (51-100 lbs)
38166                                                                    based on weight (60-120 lbs)
38177                                                                                     unspecified
38179                                                                                     unspecified
38181                                                                                     unspecified
38182                                                                                     unspecified
38184                                                                                     unspecified
38185                                                                                     unspecified
38193                                                                     based on weight (44-88 lbs)
38204                                                                                           scoop
38211                                                                                    small amount
38216                                                                           1 tablet/pill/capsule
38217                                                                    based on weight (50-100 lbs)
38219                                                                                270 dha, 425 epa
38220                                                                                           15 gm
38240                                                                     based on weight (22-55 lbs)
38256                                                                    based on weight (50-100 lbs)
38257                                                           23 milbemycin oxime, 228 praziquantel
38259                                                           23 milbemycin oxime, 228 praziquantel
38262                                                                      based on weight (60.1 lbs)
38268                                                                                     unspecified
38273                                                                                 moderate amount
38284                                                            272 ivermectin, 227 pyrantel pamoate
38287                                                                                     as directed
38288                                                                    based on weight (50-100 lbs)
38289                                                                     based on weight (44-88 lbs)
38293                                                                                         23, 460
38294                                                                                       3-4 drops
38301                                                                       based on weight (55+ lbs)
38305                                                                       based on weight (55+ lbs)
38306                                                                    based on weight (51-100 lbs)
38324                                                                                     unspecified
38326                                                                                     unspecified
38330                                                                    based on weight (51-100 lbs)
38339                                                                     based on weight (44-88 lbs)
38341                                                                                         1 spray
38342                                                                    based on weight (51-100 lbs)
38350                                                                                          1 tube
38351                                                                    based on weight (88-132 lbs)
38352                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                    based on weight (51-100 lbs)
38361                                                                                 0.25 inch strip
38365                                                                                     unspecified
38366                                                                                     unspecified
38367                                                                                     unspecified
38369                                                                                 based on weight
38370                                                                                         0.65 ml
38371                                                                                           13 ml
38372                                                                                           drops
38373                                                                                     unspecified
38377                                                                                     unspecified
38378                                                                                     unspecified
38386                                                                                     unspecified
38387                                                                                     unspecified
38388                                                                                     unspecified
38396                                                                    based on weight (50-100 lbs)
38397                                                                    based on weight (60-121 lbs)
38399                                                                    based on weight (51-100 lbs)
38406                                                                                     unspecified
38420                                                                    based on weight (51-100 lbs)
38422                                                                    based on weight (51-100 lbs)
38423                                                                    based on weight (51-100 lbs)
38427                                                                                     unspecified
38431                                                                                    small amount
38436                                                                                     as directed
38438                                                                    based on weight (50-100 lbs)
38439                                                                    based on weight (88-123 lbs)
38442                                                                                    small amount
38461                                                                                 based on weight
38462                                                                                 based on weight
38464                                                                    based on weight (50-100 lbs)
38465                                                                     based on weight (56-95 lbs)
38466                                                                    based on weight (88-132 lbs)
38470                                                                        based on weight (92 lbs)
38471                                                                        based on weight (92 lbs)
38472                                                                  based on weight (50.1-100 lbs)
38473                                                                  based on weight (88.1-132 lbs)
38499                                                                                         10, 100
38504                                                                                 based on weight
38505                                                                                 based on weight
38507                                                                    based on weight (50-100 lbs)
38508                                                                     based on weight (56-95 lbs)
38509                                                                        based on weight (86 lbs)
38510                                                                        based on weight (86 lbs)
38511                                                                  based on weight (50.1-100 lbs)
38512                                                                  based on weight (88.1-132 lbs)
38522                                                                                     unspecified
38527                                                                    based on weight (50-100 lbs)
38528                                                                     based on weight (45-88 lbs)
38529                                                                                     bottle/vial
38531                                                                                     bottle/vial
38532                                                                           1 tablet/pill/capsule
38533                                                                                     unspecified
38534                                                                        2 tablets/pills/capsules
38535                                                                                          1 tbsp
38536                                                                                     as directed
38544                                                                                     unspecified
38550                                                                                     unspecified
38551                                                                                     unspecified
38557                                                                                     unspecified
38567                                                                    based on weight (50-100 lbs)
38568                                                                    based on weight (50-100 lbs)
38569                                                                                 based on weight
38570                                                                                     unspecified
38588                                                                                 moderate amount
38602                                                                    based on weight (51-100 lbs)
38605                                                                                    small amount
38606                                                                                         23, 460
38607                                                                                            bath
38610                                                                    based on weight (51-100 lbs)
38611                                                                                       1-2 pumps
38618                                                                                 moderate amount
38626                                                                    based on weight (51-100 lbs)
38630                                                                                     unspecified
38636                                                                    based on weight (51-100 lbs)
38637                                                                     based on weight (44-88 lbs)
38638                                                                                           15 gm
38643                                                                    based on weight (51-100 lbs)
38647                                                                                            2, 4
38655                                                                                     unspecified
38656                                                                     based on weight (44-88 lbs)
38665                                                                                       100, 1000
38691                                                                                     unspecified
38716                                                                                           15 gm
38722                                                                                    small amount
38723                                                                                        wipe/pad
38754                                                                                     unspecified
38772                                                                                    small amount
38773                                                                           1 tablet/pill/capsule
38775                                                                                    small amount
38776                                                                                         8 drops
38779                                                                     based on weight (44-88 lbs)
38780                                                                                     unspecified
38787                                                                                     unspecified
38789                                                                                     unspecified
38796                                                                                     unspecified
38802                                                                                     unspecified
38809                                                                                     unspecified
38810                                                                                            3 ml
38816                                                                                  1 pack/package
38820                                                                    based on weight (51-100 lbs)
38821                                                                     based on weight (44-88 lbs)
38828                                                                                     unspecified
38839                                                                                     unspecified
38841                                                                                     unspecified
38843                                                                                     unspecified
38845                                                                                     unspecified
38847                                                                                     unspecified
38850                                                                                     unspecified
38851                                                                                     unspecified
38854                                                                                     unspecified
38855                                                                                     unspecified
38861                                                                                     unspecified
38864                                                                                     unspecified
38865                                                                                     unspecified
38868                                                                                     unspecified
38871                                                                                     unspecified
38890                                                                    based on weight (51-100 lbs)
38891                                                                     based on weight (24-60 lbs)
38892                                                                    based on weight (51-100 lbs)
38896                                                                    based on weight (51-100 lbs)
38902                                                                                 based on weight
38924                                                                                         10, 100
38925                                                                     based on weight (21-55 lbs)
38926                                                                    based on weight (50-100 lbs)
38930                                                                    based on weight (50-100 lbs)
38931                                                                       based on weight (18+ lbs)
38940                                                                  based on weight (60.1-121 lbs)
38941                                                                  based on weight (60.1-121 lbs)
38945                                                                       based on weight (60+ lbs)
38946                                                                  based on weight (50.1-100 lbs)
38950                                                                  based on weight (50.1-100 lbs)
38951                                                                  based on weight (60.1-121 lbs)
38952                                                                                 based on weight
38956                                                                                        wipe/pad
38963                                                                  based on weight (50.1-100 lbs)
38964                                                                   based on weight (44.1-88 lbs)
38970                                                                                     unspecified
38971                                                                                     unspecified
38974                                                                                     unspecified
38976                                                                                     unspecified
38978                                                                                          1 tube
38997                                                                                     unspecified
39004                                                                     based on weight (41-88 lbs)
39005                                                                    based on weight (51-100 lbs)
39006                                                                                       5-7 drops
39035                                                                                     unspecified
39073                                                                           1 tablet/pill/capsule
39083                                                                                    23, 228, 460
39099                                                                    based on weight (51-100 lbs)
39117                                                                                        27, 1620
39120                                                            272 ivermectin, 227 pyrantel pamoate
39121                                                                    based on weight (51-100 lbs)
39122                                                                       based on weight (55+ lbs)
39123                                                                    based on weight (51-100 lbs)
39125                                                                                          1.25 l
39127                                                                                     unspecified
39128                                                                                     unspecified
39158                                                                                         23, 228
39165                                                                                     unspecified
39167                                                                                     unspecified
39171                                                                                            8 oz
39176                                                                    based on weight (51-100 lbs)
39181                                                                                            bath
39182                                                                                           spray
39188                                                                                           15 gm
39198                                                                                     unspecified
39201                                                                                            tube
39202                                                                                    small amount
39207                                                                                     unspecified
39209                                                                     based on weight (44-88 lbs)
39210                                                                     based on weight (45-88 lbs)
39211                                                                  based on weight (50.1-100 lbs)
39212                                                                    based on weight (51-100 lbs)
39218                                                                     based on weight (45-88 lbs)
39258                                                                           1 tablet/pill/capsule
39259                                                                                     unspecified
39260                                                                   based on weight (44.1-88 lbs)
39261                                                                                        0.25 tsp
39262                                                                                        227, 277
39273                             based on weight (50-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
39316                                                                                 based on weight
39325                                                                  based on weight (50.1-100 lbs)
39326                                                                     based on weight (45-88 lbs)
39329                                                                  based on weight (50.1-100 lbs)
39330                                                                   based on weight (44.1-88 lbs)
39331                                                                  based on weight (50.1-100 lbs)
39332                                                                     based on weight (44-88 lbs)
39338                                                                    based on weight (51-100 lbs)
39339                                                                                      continuous
39340                                                                    based on weight (51-100 lbs)
39388                                                                    based on weight (51-100 lbs)
39392                                                                                     unspecified
39415                                                                                          1 pump
39423                                                                                     unspecified
39425                                                                                     unspecified
39433                                                                                     unspecified
39434                                                                                    small amount
39435                                                                                 based on weight
39438                                                                    based on weight (51-100 lbs)
39440                                                                    based on weight (51-100 lbs)
39443                                                                    based on weight (51-100 lbs)
39444                                                                    based on weight (51-100 lbs)
39445                                                                     based on weight (44-88 lbs)
39446                                                                     based on weight (44-88 lbs)
39447                                                                    based on weight (51-100 lbs)
39450                                                                     based on weight (44-88 lbs)
39451                                                                    based on weight (51-100 lbs)
39453                                                                                     unspecified
39486                                                                       based on weight (55+ lbs)
39495                                                                     based on weight (45-88 lbs)
39496                                                                    based on weight (50-100 lbs)
39511                                                                     based on weight (44-88 lbs)
39513                                                                                    small amount
39516                                                                                     unspecified
39519                                                                                     unspecified
39525                                                                   based on weight (40.1-85 lbs)
39526                                                                  based on weight (50.1-100 lbs)
39528                                                                                     application
39531                                                                      1.5 tablets/pills/capsules
39534                                                                                     application
39536                                                                                    pack/package
39539                                                                                     application
39541                                                                                           spray
39542                                                                                     application
39543                                                                                     application
39546                                                                     based on weight (44-88 lbs)
39548                                                                     based on weight (44-88 lbs)
39566                                                                                     unspecified
39567                                                                                     unspecified
39573                                                                                     unspecified
39579                                                                                           15 gm
39581                                                                    based on weight (51-100 lbs)
39582                                                                    based on weight (51-100 lbs)
39586                                                                    based on weight (51-100 lbs)
39591                                                                                     unspecified
39599                                                                                     unspecified
39607                                                                                         10, 100
39609                                                                    based on weight (50-100 lbs)
39617                                                                                     as directed
39618                                                                                     unspecified
39635                                                                    based on weight (60-120 lbs)
39637                                                              27 milbemycin oxime, 1620 spinosad
39639                                                                                     unspecified
39651                                                                                     unspecified
39705                                                                           1 tablet/pill/capsule
39706                                                                           1 tablet/pill/capsule
39707                                                                           1 tablet/pill/capsule
39714                                                                                     unspecified
39715                                                                                     unspecified
39737                                                                                     unspecified
39744                                                                           1 tablet/pill/capsule
39745                                                                                          1 tube
39750                                                                                         4 drops
39754                                                                    based on weight (51-100 lbs)
39755                                                                                          1 tube
39756                                                                                     application
39759                                                              460 lufenuron, 23 milbemycin oxime
39760                                                              100000 nystatin, 2500 thiostrepton
39763                                                              460 lufenuron, 23 milbemycin oxime
39764                                                                    based on weight (51-100 lbs)
39776                                                                                     unspecified
39777                                                                                     unspecified
39778                                                                                     unspecified
39786                                                                                                
39787                                                                                                
39788                                                                                                
39795                                                                    based on weight (60-120 lbs)
39796                                                                    based on weight (50-100 lbs)
39833                                                                                         23, 460
39849                                                                                         23, 460
39856                                                                                         23, 460
39860                                                            272 ivermectin, 227 pyrantel pamoate
39871                                                            272 ivermectin, 227 pyrantel pamoate
39875                                                            272 ivermectin, 227 pyrantel pamoate
39877                                                            272 ivermectin, 227 pyrantel pamoate
39881                                                                        based on weight (60 lbs)
39909                                                                     based on weight (41-60 lbs)
39916                                                                                         3 drops
39917                                                                                         3 drops
39918                                                                                         2 drops
39919                                                                                 0.25 inch strip
39948                                                                           1 tablet/pill/capsule
39949                                                                           1 tablet/pill/capsule
39958                                                                                     unspecified
39973                                                                    based on weight (50-100 lbs)
39974                                                                                    small amount
39975                                                                                    small amount
39980                                                                                          powder
39981                                                                                        wipe/pad
39982                                                                                     application
39987                                                                                     unspecified
39988                                                                                     unspecified
40013                                                                      based on weight (0-10 lbs)
40021                                                                                      0.14 fl oz
40023                                                                           1 tablet/pill/capsule
40024                                                                                        10 drops
40038                                                                                        250, 500
40043                                                                       based on weight (95+ lbs)
40052                                                                           1 tablet/pill/capsule
40092                                                                     based on weight (45-88 lbs)
40093                                                                    based on weight (51-100 lbs)
40102                                                                                     unspecified
40108                                                                                     unspecified
40109                                                                                     unspecified
40115                                                                                  1 pack/package
40117                                                                    based on weight (51-100 lbs)
40121                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
40123                                                                                     unspecified
40124                                                                    based on weight (51-100 lbs)
40125                                                                                     unspecified
40133                                                                                    23, 228, 460
40134                                                                                    23, 228, 460
40138                                                                        2 tablets/pills/capsules
40141                                                                                     unspecified
40142                                                            272 ivermectin, 227 pyrantel pamoate
40143                                                                                           spray
40144                                                                    based on weight (51-100 lbs)
40149                                                                    based on weight (51-100 lbs)
40154                                                                    based on weight (51-100 lbs)
40164                                                                                 moderate amount
40165                                                                    based on weight (51-100 lbs)
40180                                                                    based on weight (51-100 lbs)
40186                                                                    based on weight (51-100 lbs)
40194                                                            272 ivermectin, 227 pyrantel pamoate
40196                                                                                     unspecified
40206                                                                   based on weight (40.1-60 lbs)
40209                                                                                     unspecified
40214                                                                                    small amount
40216                                                                    based on weight (50-100 lbs)
40217                                                                     based on weight (24-60 lbs)
40218                                                                     based on weight (44-88 lbs)
40221                                                                    based on weight (50-100 lbs)
40222                                                                     based on weight (24-60 lbs)
40223                                                                                 based on weight
40224                                                                                 based on weight
40244                                                                     based on weight (45-88 lbs)
40290                                                            272 ivermectin, 227 pyrantel pamoate
40296                                                                                     unspecified
40297                                                                                     unspecified
40298                                                                                     unspecified
40299                                                                                     unspecified
40302                                                                                     unspecified
40312                                                                        based on weight (70 lbs)
40317                                                                                    small amount
40331                                                                                         23, 228
40343                                                                                 moderate amount
40390                                                                    based on weight (51-100 lbs)
40391                                                                    based on weight (50-100 lbs)
40392                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                     unspecified
40403                                                                                     as directed
40406                                                                  1.5 homatropine, 5 hydrocodone
40407                                                                    based on weight (51-100 lbs)
40417                                                                  based on weight (60.1-121 lbs)
40418                                                                    based on weight (51-100 lbs)
40422                                                                  based on weight (60.1-121 lbs)
40425                                                                           1 tablet/pill/capsule
40446                                                                           1 tablet/pill/capsule
40447                                                                                         4 drops
40451                                                                                 based on weight
40454                                                                                     unspecified
40464                                                                                          10/100
40468                                                                    based on weight (60-120 lbs)
40472                                                                                     unspecified
40474                                                                                     unspecified
40483                                                                    based on weight (50-100 lbs)
40484                                                                    based on weight (60-120 lbs)
40486                                                                    based on weight (50-100 lbs)
40487                                                                    based on weight (60-120 lbs)
40488                                                                        based on weight (55 lbs)
40489                                                                       based on weight (55+ lbs)
40494                                                                                     unspecified
40503                                                                    based on weight (50-100 lbs)
40504                                                                     based on weight (45-89 lbs)
40508                                                                     based on weight (40-80 lbs)
40511                                                                        5 tablets/pills/capsules
40519                                                                    based on weight (51-100 lbs)
40521                                                                    based on weight (50-100 lbs)
40535                                                                                        800, 900
40541                                                                    based on weight (51-100 lbs)
40542                                                                                            8 ml
40568                                                                    based on weight (51-100 lbs)
40571                                                                                       1-2 drops
40572                                                                      3.5 tablets/pills/capsules
40573                                                                    based on weight (51-100 lbs)
40574                                                                   based on weight (24.1-60 lbs)
40579                                                                                 based on weight
40580                                                                                     unspecified
40581                                                                                         80, 400
40582                                                                                 0.25 inch strip
40583                                                                                     unspecified
40595                                                                                           spray
40600                                                                    based on weight (51-100 lbs)
40601                                                                     based on weight (56-95 lbs)
40603                                                                                     concentrate
40604                                                                                  1 pack/package
40606                                                                                    small amount
40607                                                                                    small amount
40611                                                                    based on weight (51-100 lbs)
40615                                                                                      10, 40, 40
40616                                                                     based on weight (56-95 lbs)
40617                                                                    based on weight (51-100 lbs)
40618                                                                                     unspecified
40619                                                                                     unspecified
40620                                                                                     unspecified
40634                                                                                 0.25 inch strip
40636                                                                                    pack/package
40637                                                                                    pack/package
40644                                                                                     unspecified
40653                                                                     based on weight (45-88 lbs)
40654                                                                    based on weight (51-100 lbs)
40655                                                                    based on weight (50-100 lbs)
40656                                                                    based on weight (50-100 lbs)
40684                                                                    based on weight (51-100 lbs)
40686                                                                    based on weight (51-100 lbs)
40687                                                                                 based on weight
40688                                                                                        wipe/pad
40689                                                                                     application
40690                                                                    based on weight (51-100 lbs)
40691                                                                                 based on weight
40693                                                                                        tapering
40695                                                                           1 tablet/pill/capsule
40696                                                                           1 tablet/pill/capsule
40699                                                                                     unspecified
40700                                                                    based on weight (51-100 lbs)
40701                                                                     based on weight (44-88 lbs)
40718                                                                                            8 au
40719                                                                    based on weight (51-100 lbs)
40721                                                                                 based on weight
40722                                                                                     application
40723                                                                                       7-9 drops
40724                                                                                      8-10 drops
40725                                       based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                     unspecified
40727                                                                                     unspecified
40744                                                                    based on weight (51-100 lbs)
40745                                                                                           spray
40747                                                                                           6, 15
40748                                                                                        wipe/pad
40749                                                                   based on weight (44.1-88 lbs)
40750                                                                    based on weight (51-100 lbs)
40751                                                                    based on weight (51-100 lbs)
40754                                                                    based on weight (51-100 lbs)
40755                                                                   based on weight (44.1-88 lbs)
40756                                                                                 0.25 inch strip
40758                                                                                       3-4 drops
40760                                                                    based on weight (51-100 lbs)
40775                                                                    based on weight (51-100 lbs)
40776                                                                    based on weight (51-100 lbs)
40781                                                                    based on weight (50-100 lbs)
40783                                                                    based on weight (50-100 lbs)
40794                                                                                  0.5 inch strip
40796                                                                    based on weight (60-120 lbs)
40799                                                                    based on weight (50-100 lbs)
40800                                                                    based on weight (50-100 lbs)
40801                                                                     based on weight (44-88 lbs)
40810                                                                                     unspecified
40823                                                                    based on weight (51-100 lbs)
40824                                                                                       2-3 drops
40825                                                                     based on weight (56-95 lbs)
40827                                                                     based on weight (44-88 lbs)
40828                                                                    based on weight (51-100 lbs)
40829                                                                     based on weight (44-88 lbs)
40833                                                                                     unspecified
40834                                                                                        epa, dha
40838                                                                                     unspecified
40839                                                                                     unspecified
40840                                                                                     unspecified
40843                                                                                     unspecified
40846                                                                                 based on weight
40848                                                                                 0.25 inch strip
40866                                                                                     unspecified
40868                                                                                 based on weight
40870                                                                                 based on weight
40873                                                                           1 tablet/pill/capsule
40875                                                                             tablet/pill/capsule
40879                                                                    based on weight (51-100 lbs)
40895                                                                                     unspecified
40897                                                                    based on weight (51-100 lbs)
40899                                                                                         57, 460
40900                                                                                         23, 460
40902                                                                                         23, 460
40905                                                                                         23, 460
40919                                                                                     unspecified
40943                                                                                     unspecified
40958                                                                                     unspecified
40959                                                                                     unspecified
40960                                                                                     unspecified
40961                                                                                     unspecified
40962                                                                                 0.25 inch strip
40965                                                                    based on weight (51-100 lbs)
40966                                                                    based on weight (60-121 lbs)
40967                                                                    based on weight (50-100 lbs)
40968                                                                    based on weight (60-121 lbs)
40969                                                                                    small amount
40970                                                                                    small amount
40971                                                                    based on weight (51-100 lbs)
40972                                                                    based on weight (60-120 lbs)
40974                                                                    based on weight (51-100 lbs)
40984                                                                                     unspecified
40987                                                                                     unspecified
40990                                                                                     unspecified
40992                                                                      based on weight (0-25 lbs)
40993                                                                     based on weight (11-20 lbs)
40994                                                                                     as directed
40997                                                                    based on weight (51-100 lbs)
40998                                                                     based on weight (56-95 lbs)
41003                                                                                    small amount
41004                                                                    based on weight (51-100 lbs)
41005                                                                     based on weight (56-95 lbs)
41006                                                                                      8-10 drops
41007                                                                                    small amount
41009                                                                 1.5 tablets/pills/capsules - 68
41010                                                                     based on weight (56-95 lbs)
41011                                                                    based on weight (51-100 lbs)
41014                                                                                    small amount
41015                                                                  based on weight (50.1-100 lbs)
41016                                                                     based on weight (56-95 lbs)
41018                                                                                 based on weight
41020                                                                                     unspecified
41021                                                                             tablet/pill/capsule
41022                                                                                     unspecified
41023                                                                                     unspecified
41024                                                                                     unspecified
41025                                                                                  1.4 ml, 2.8 ml
41057                                                                                     unspecified
41068                                                                     based on weight (21-55 lbs)
41069                                                                     based on weight (26-50 lbs)
41084                                                                        based on weight (70 lbs)
41087                                                                    based on weight (51-100 lbs)
41088                                                                     based on weight (56-95 lbs)
41089                                                                     based on weight (44-88 lbs)
41090                                                                                     unspecified
41091                                                                                     application
41094                                                                    based on weight (51-100 lbs)
41095                                                                     based on weight (44-88 lbs)
41096                                                                     based on weight (56-95 lbs)
41097                                                                                           drops
41098                                                                     based on weight (56-95 lbs)
41099                                                                     based on weight (44-88 lbs)
41101                                                                                    small amount
41102                                                                      1.5 tablets/pills/capsules
41103                                                                        based on weight (75 lbs)
41104                                                                           1 tablet/pill/capsule
41121                                                                                        27, 1620
41125                                                                    based on weight (51-100 lbs)
41129                                                                           1 tablet/pill/capsule
41130                                                                           1 tablet/pill/capsule
41131                                                                  based on weight (50.1-100 lbs)
41132                                                                  based on weight (60.1-121 lbs)
41133                                                                  based on weight (50.1-100 lbs)
41134                                                                  based on weight (60.1-120 lbs)
41137                                                                                           spray
41139                                                                                     unspecified
41147                                                                                     unspecified
41151                                                                                     unspecified
41152                                                                                     unspecified
41170                                                                                    small amount
41198                                                            272 ivermectin, 227 pyrantel pamoate
41199                                                            272 ivermectin, 227 pyrantel pamoate
41200                                                            272 ivermectin, 227 pyrantel pamoate
41201                                                            272 ivermectin, 227 pyrantel pamoate
41203                                                                    based on weight (51-100 lbs)
41204                                                                     based on weight (21-55 lbs)
41206                                                                     based on weight (45-88 lbs)
41207                                                                    based on weight (51-100 lbs)
41208                                                                     based on weight (24-60 lbs)
41209                                                                    based on weight (51-100 lbs)
41210                                                                     based on weight (24-60 lbs)
41216                                                                                      1000 units
41217                                                                     based on weight (40-60 lbs)
41219                                                                    based on weight (51-100 lbs)
41220                                                                           1 tablet/pill/capsule
41221                                                                     based on weight (40-60 lbs)
41222                                                                    based on weight (50-100 lbs)
41223                                                                    based on weight (50-100 lbs)
41224                                                                    based on weight (50-100 lbs)
41240                                                                                     application
41241                                                                           1 tablet/pill/capsule
41242                                                                                     unspecified
41246                                                                                     application
41250                                                                                          1 tube
41254                                                                           1 tablet/pill/capsule
41260                                                                                     unspecified
41267                                                                    based on weight (51-100 lbs)
41278                                                                                           spray
41279                                                                                     unspecified
41281                                                                                     unspecified
41283                                                                                         23, 460
41313                                                                     based on weight (56-95 lbs)
41314                                                                    based on weight (50-100 lbs)
41315                                                                       based on weight (55+ lbs)
41316                                                                    based on weight (55-100 lbs)
41318                                                                    based on weight (51-100 lbs)
41319                                                                    based on weight (51-100 lbs)
41320                                                                    based on weight (50-100 lbs)
41325                                                                                        23 , 460
41332                                                               based on weight (51-100 lbs) - 23
41335                                                                                    small amount
41336                                                                                          1 pump
41340                                                                                    small amount
41343                                                                                     unspecified
41360                                                                                     unspecified
41371                                                                                     application
41373                                                                    based on weight (51-100 lbs)
41374                                                                     based on weight (44-88 lbs)
41376                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41377                                                                    based on weight (51-100 lbs)
41378                                                                   based on weight (44.1-88 lbs)
41381                                                                        based on weight (80 lbs)
41384                                                                  based on weight (50.1-100 lbs)
41385                                                                     based on weight (44-88 lbs)
41386                                                                    based on weight (51-100 lbs)
41387                                                                       based on weight (44+ lbs)
41388                                                                                     as directed
41396                                                                                     unspecified
41398                                                                                     application
41399                                                                                         8 drops
41400                                                                                         0.75 ml
41407                                                                    based on weight (60-121 lbs)
41413                                                                                     unspecified
41417                                                                                       136 , 114
41418                                                                                         1.34 ml
41420                                                                    based on weight (51-100 lbs)
41421                                                                    based on weight (51-100 lbs)
41422                                                                    based on weight (50-100 lbs)
41424                                                                       based on weight (50+ lbs)
41425                                                                                     as directed
41430                                                                                        27, 1620
41431                                                                                        27, 1620
41432                                                                    based on weight (60-120 lbs)
41433                                                                                       6-8 drops
41435                                                              27 milbemycin oxime, 1620 spinosad
41442                                                                                     unspecified
41443                                                                                        27, 1620
41444                                                                                        27, 1620
41446                                                                                     application
41447                                                                    based on weight (60-120 lbs)
41451                                                              27 milbemycin oxime, 1620 spinosad
41464                                                                                     unspecified
41466                                                                                     unspecified
41470                                                                                     unspecified
41497                                                                                     unspecified
41500                                                                                            tube
41502                                                                                          1 tube
41505                                                                                        inhalant
41525                                                                                     as directed
41531                                                                                     as directed
41533                                                                                        100, 200
41557                                                                                     unspecified
41572                                                                    based on weight (50-100 lbs)
41573                                                                    based on weight (60-120 lbs)
41581                                                                           1 tablet/pill/capsule
41612                                                                     1 tablet/pill/capsule - 500
41615                                                                    based on weight (51-100 lbs)
41617                                                           23 milbemycin oxime, 228 praziquantel
41621                                                                                     unspecified
41629                                                                                          0.5 hr
41632                                                                     based on weight (55-88 lbs)
41633                                                                    based on weight (50-100 lbs)
41636                                                                           1 tablet/pill/capsule
41637                                                                           1 tablet/pill/capsule
41638                                                                    based on weight (51-100 lbs)
41639                                                                        based on weight (86 lbs)
41640                                                                    based on weight (50-100 lbs)
41641                                                            272 ivermectin, 227 pyrantel pamoate
41653                                                                                         23, 460
41655                                                                                     unspecified
41674                                                                                        114, 136
41724                                                                                     unspecified
41725                                                                     based on weight (45-88 lbs)
41726                                                                    based on weight (51-100 lbs)
41727                                                                    based on weight (51-100 lbs)
41728                                                                             tablet/pill/capsule
41729                                                                                     unspecified
41731                                                                    based on weight (51-100 lbs)
41737                                                                     based on weight (45-88 lbs)
41738                                                                    based on weight (51-100 lbs)
41739                                                                                     unspecified
41740                                                                                     unspecified
41743                                                                                         80, 400
41746                                                                    based on weight (51-100 lbs)
41747                                                                                     unspecified
41748                                                                                     unspecified
41749                                                                                     unspecified
41750                                                                                     unspecified
41751                                                                                     unspecified
41752                                                                                     unspecified
41753                                                                                     unspecified
41754                                                                                     unspecified
41756                                                                                     62.5, 312.5
41759                                                                    based on weight (51-100 lbs)
41774                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41778                                                                           1 tablet/pill/capsule
41779                                                                           1 tablet/pill/capsule
41781                                                                    based on weight (51-100 lbs)
41803                                                                                     unspecified
41811                                                                                     unspecified
41816                                                                                     unspecified
41819                                                                                        23 , 460
41830                                                                        3 tablets/pills/capsules
41835                                                                    based on weight (51-100 lbs)
41837                                                                    based on weight (51-100 lbs)
41838                                                                    based on weight (89-132 lbs)
41840                                                                    based on weight (51-100 lbs)
41842                                                                                          1 drop
41846                                                                                     unspecified
41849                                                                    based on weight (51-100 lbs)
41850                                                                    based on weight (51-100 lbs)
41851                                                                                         23, 460
41853                                                                                        400, 500
41854                                                                    based on weight (51-100 lbs)
41862                                                                                         2 drops
41863                                                                                 moderate amount
41870                                                                                         23, 228
41872                                                                                     unspecified
41888                                                                                 0.25 inch strip
41891                                                                                       136 , 114
41893                                                                                     application
41894                                                                        2 tablets/pills/capsules
41895                                                                                        25 drops
41896                                                                                          powder
41897                                                                                     unspecified
41898                                                                                     unspecified
41899                                                                                     unspecified
41900                                                                                     unspecified
41901                                                                                     unspecified
41902                                                                                     unspecified
41903                                                                                     unspecified
41904                                                                        2 tablets/pills/capsules
41905                                                                                     unspecified
41906                                                                                     unspecified
41907                                                                                          100 gm
41921                                                                                     unspecified
41929                                                                                 based on weight
41930                                                                                 based on weight
41937                                                                                 based on weight
41938                                                                                 based on weight
41939                                                                                     bottle/vial
41946                                                                                 based on weight
41947                                                                                 based on weight
41950                                                                                 based on weight
41973                                                                                     application
41975                                                                    based on weight (51-100 lbs)
41976                                                                                           15 ml
41988                                                                    based on weight (51-100 lbs)
42004                                                                    based on weight (51-100 lbs)
42005                                                                     based on weight (48-88 lbs)
42011                                                                    based on weight (50-100 lbs)
42012                                                                     based on weight (45-88 lbs)
42030                                                                                         5 drops
42032                                                                    based on weight (51-100 lbs)
42036                                                                                         3 drops
42037                                                                    based on weight (51-100 lbs)
42039                                                                    based on weight (51-100 lbs)
42040                                                                                          1 tube
42043                                                                    based on weight (51-100 lbs)
42044                                                                    based on weight (51-100 lbs)
42053                                                                    based on weight (60-121 lbs)
42055                                                                           1 tablet/pill/capsule
42057                                                                                     unspecified
42061                                                                    based on weight (50-100 lbs)
42063                                                                    based on weight (50-100 lbs)
42066                                                                    based on weight (50-100 lbs)
42100                                                                                     application
42101                                                                                     application
42112                                                            272 ivermectin, 227 pyrantel pamoate
42116                                                                   2 tablets/pills/capsules - 50
42119                                                                                     unspecified
42122                                                                                     unspecified
42147                                                                    based on weight (50-100 lbs)
42148                                                                     based on weight (44-88 lbs)
42149                                                                    based on weight (51-100 lbs)
42150                                                                    based on weight (51-100 lbs)
42151                                                                     based on weight (44-88 lbs)
42152                                                                    based on weight (51-100 lbs)
42154                                                                     based on weight (44-88 lbs)
42171                                                                                         8 drops
42174                                                                    based on weight (51-100 lbs)
42198                                                                                 based on weight
42201                                                                       based on weight (18+ lbs)
42215                                                                                     unspecified
42218                                                                    based on weight (51-100 lbs)
42219                                                                     based on weight (21-55 lbs)
42221                                                                     based on weight (55-88 lbs)
42227                                                                     based on weight (55-89 lbs)
42229                                                                     based on weight (55-88 lbs)
42240                                                                                     unspecified
42241                                                                                     unspecified
42242                                                                                     unspecified
42243                                                                                     unspecified
42256                                                                                    small amount
42257                                                                                    small amount
42259                                                                                    small amount
42267                                                                                    small amount
42272                                                                    based on weight (51-100 lbs)
42273                                                                     based on weight (44-88 lbs)
42278                                                                                     unspecified
42284                                                            272 ivermectin, 227 pyrantel pamoate
42286                                                                     based on weight (55.1+ lbs)
42287                                                                    based on weight (51-100 lbs)
42289                                                                    based on weight (51-100 lbs)
42291                                                                                     unspecified
42313                                                                     based on weight (22-44 lbs)
42314                                                                     based on weight (26-50 lbs)
42345                                                                                 based on weight
42346                                                                                 based on weight
42348                                                                                 based on weight
42349                                                                                 based on weight
42353                                                                    based on weight (50-100 lbs)
42354                                                                       based on weight (60+ lbs)
42355                                                                                         1.5 tsp
42356                                                                    based on weight (60-121 lbs)
42357                                                                    based on weight (51-100 lbs)
42358                                                                    based on weight (60-120 lbs)
42361                                                                                     unspecified
42365                                                                                          1 pump
42366                                                                           1 tablet/pill/capsule
42367                                                                                     as directed
42368                                                                    based on weight (51-100 lbs)
42378                                                                    based on weight (51-100 lbs)
42379                                                                    based on weight (51-100 lbs)
42384                                                                    based on weight (51-100 lbs)
42386                                                                    based on weight (51-100 lbs)
42387                                                                    based on weight (51-100 lbs)
42399                                                                                          collar
42402                                                                    based on weight (51-100 lbs)
42403                                                                                          1 tube
42404                                                                           1 tablet/pill/capsule
42412                                                                           1 tablet/pill/capsule
42413                                                                           1 tablet/pill/capsule
42417                                                                                    small amount
42425                                                                                           spray
42426                                                                                           spray
42433                                                                                     unspecified
42451                                                                    based on weight (50-100 lbs)
42455                                                                                         23, 460
42463                                                                    based on weight (51-100 lbs)
42464                                                                                    small amount
42465                                                                           1 tablet/pill/capsule
42466                                                                           1 tablet/pill/capsule
42468                                                                                     unspecified
42474                                                100000 units nystatin, 1 triamcinolone acetonide
42475                                                                                338 dha, 515 epa
42476                                                                    based on weight (50-100 lbs)
42477                                                                       based on weight (56+ lbs)
42478                                                                           1 tablet/pill/capsule
42479                                                                                          1 tube
42480                                                                                 moderate amount
42481                                                                       0.5-1 tablet/pill/capsule
42482                                                                                     bottle/vial
42483                                                                             tablet/pill/capsule
42486                                                                             tablet/pill/capsule
42488                                                                                         8.8, 44
42489                                                              460 lufenuron, 23 milbemycin oxime
42502                                                                                     unspecified
42506                                                                                     unspecified
42512                                                                    based on weight (51-100 lbs)
42513                                                                     based on weight (45-88 lbs)
42522                                                                                 based on weight
42537                                                                                     unspecified
42551                                                                    based on weight (51-100 lbs)
42552                                                                    based on weight (51-100 lbs)
42553                                                                    based on weight (51-100 lbs)
42566                                                                                          5 tbsp
42570                                                                   based on weight (40.1-60 lbs)
42572                                                            272 ivermectin, 227 pyrantel pamoate
42573                                                                    based on weight (51-100 lbs)
42574                                                                    based on weight (51-100 lbs)
42578                                                                    based on weight (51-100 lbs)
42579                                                                    based on weight (88-123 lbs)
42593                                                                   based on weight (100-125 lbs)
42594                                                                    based on weight (88-123 lbs)
42624                                                                    based on weight (51-100 lbs)
42626                                                                                       6-8 drops
42627                                                                    based on weight (51-100 lbs)
42628                                                                     based on weight (44-88 lbs)
42632                                                                     based on weight (44-88 lbs)
42633                                                                    based on weight (51-100 lbs)
42634                                                                                 based on weight
42637                                                                       based on weight (100 lbs)
42638                                                                                        23 , 460
42640                                                                                     unspecified
42646                                                                                     unspecified
42647                                                                                     unspecified
42648                                                                                     unspecified
42651                                                                           1 tablet/pill/capsule
42652                                                                                          1 dose
42655                                                                    based on weight (51-100 lbs)
42656                                                                     based on weight (44-88 lbs)
42666                                                                    based on weight (51-100 lbs)
42668                                                            272 ivermectin, 227 pyrantel pamoate
42675                                                                                     unspecified
42678                                                                                     unspecified
42679                                                                                     unspecified
42694                                                                     based on weight (44-88 lbs)
42695                                                                    based on weight (51-100 lbs)
42696                                                                     based on weight (44-88 lbs)
42697                                                                    based on weight (51-100 lbs)
42700                                                                     based on weight (45-88 lbs)
42704                                                                    based on weight (51-100 lbs)
42712                                                                    based on weight (51-100 lbs)
42716                                                                    based on weight (51-100 lbs)
42721                                                                    based on weight (51-100 lbs)
42725                                                                     based on weight (44-88 lbs)
42726                                                                     based on weight (25-50 lbs)
42727                                                                    based on weight (51-100 lbs)
42728                                                                    based on weight (51-100 lbs)
42729                                                                    based on weight (51-100 lbs)
42740                                                                    based on weight (51-100 lbs)
42752                                                                           1 tablet/pill/capsule
42753                                                                           1 tablet/pill/capsule
42758                                                                                         23, 460
42760                                                                    based on weight (50-100 lbs)
42761                                                                     based on weight (44-88 lbs)
42764                                                                                       11.5, 114
42766                                                           23 milbemycin oxime, 228 praziquantel
42768                                                           23 milbemycin oxime, 228 praziquantel
42785                                                                       based on weight (50+ lbs)
42786                                                                       based on weight (50+ lbs)
42787                                                                                     unspecified
42791                                                                                         23, 228
42792                                                                                         23, 228
42799                                                                                     unspecified
42821                                                                    based on weight (50-100 lbs)
42829                                                                                         4 drops
42833                                                                                         23, 228
42860                                                                                     as directed
42876                                                                                     unspecified
42879                                                                                     unspecified
42887                                                                                     unspecified
42890                                                                                     unspecified
42891                                                                                     unspecified
42892                                                                                     unspecified
42893                                                                                     unspecified
42894                                                                                     unspecified
42913                                                                                 based on weight
42915                                                                                     unspecified
42920                                                            272 ivermectin, 227 pyrantel pamoate
42923                                                                   based on weight (40.1-85 lbs)
42926                                                                     based on weight (45-88 lbs)
42930                                                                    based on weight (51-100 lbs)
42931                                                                    based on weight (51-100 lbs)
42932                                                                   based on weight (44.1-88 lbs)
42935                                                                   based on weight (44.1-88 lbs)
42936                                                                    based on weight (51-100 lbs)
42939                                                                    based on weight (50-100 lbs)
42940                                                                   based on weight (44.1-88 lbs)
42946                                                                                     unspecified
42952                                                                                        27, 1620
42956                                                                    based on weight (51-100 lbs)
42959                                                                    based on weight (51-100 lbs)
42960                                                                    based on weight (51-100 lbs)
42967                                                                                     unspecified
42994                                                                                     application
43013                                                            272 ivermectin, 227 pyrantel pamoate
43045                                                                    based on weight (51-100 lbs)
43064                                                                    based on weight (51-100 lbs)
43065                                                                       based on weight (55+ lbs)
43069                                                                                 based on weight
43072                                                                                 based on weight
43081                                                                     based on weight (40-85 lbs)
43086                                                                                       1-2 pumps
43105                                                                                     unspecified
43116                                                                                     unspecified
43119                                                                    based on weight (50-100 lbs)
43123                                                                                         23, 228
43134                                                                           1 tablet/pill/capsule
43135                                                                        2 tablets/pills/capsules
43136                                                                     1.25 tablets/pills/capsules
43137                                                                           1 tablet/pill/capsule
43138                                                                           1 tablet/pill/capsule
43151                                                           23 milbemycin oxime, 228 praziquantel
43153                                           1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                     unspecified
43173                                                                                     unspecified
43183                                                                                         23, 460
43184                                                                                         23, 460
43191                                                                                          varies
43200                                                                                        27, 1620
43202                                                                        based on weight (55 lbs)
43204                                                                   based on weight (40.1-85 lbs)
43224                                                                                     unspecified
43228                                                                                 based on weight
43236                                                                    based on weight (51-100 lbs)
43238                                                                    based on weight (51-100 lbs)
43239                                                                                          collar
43241                                                                    based on weight (51-100 lbs)
43242                                                                       based on weight (18+ lbs)
43243                                                                    based on weight (51-100 lbs)
43244                                                                                          collar
43246                                                                                     unspecified
43247                                                                                     unspecified
43258                                                                    based on weight (51-100 lbs)
43259                                                                    based on weight (51-100 lbs)
43270                                                                                     unspecified
43286                                                                                     unspecified
43291                                                                400 imidacloprid, 100 moxidectin
43292                                                                                     as directed
43293                                                                     based on weight (55-88 lbs)
43310                                                                    based on weight (50-100 lbs)
43334                                                                                         23, 228
43366                                                                                    small amount
43388                                                                                     unspecified
43396                                                                                           15 gm
43397                                                                                          3.5 gm
43405                                                                                    small amount
43412                                                                                    small amount
43416                                                                                           15 gm
43423                                                                                 based on weight
43424                                                                                 based on weight
43430                                                                                          powder
43465                                                                           1 tablet/pill/capsule
43467                                                                                     unspecified
43469                                                                                     unspecified
43470                                                                                     unspecified
43471                                                                                     unspecified
43482                                                                    based on weight (50-100 lbs)
43491                                                                    based on weight (51-100 lbs)
43493                                                           23 milbemycin oxime, 228 praziquantel
43494                                                                                         23, 228
43496                                                           23 milbemycin oxime, 228 praziquantel
43497                                                           23 milbemycin oxime, 228 praziquantel
43510                                                                  based on weight (50.1-100 lbs)
43511                                                                    based on weight (88-123 lbs)
43512                                                                    based on weight (89-132 lbs)
43522                                                                    based on weight (88-123 lbs)
43527                                                            272 ivermectin, 227 pyrantel pamoate
43531                                                                  based on weight (50.1-100 lbs)
43532                                                                  based on weight (60.1-121 lbs)
43535                                                                    based on weight (51-100 lbs)
43538                                                                    based on weight (51-100 lbs)
43539                                                                    based on weight (60-121 lbs)
43540                                                                                            8 au
43545                                                                                 based on weight
43546                                                                     based on weight (44-88 lbs)
43547                                                                                 250 , 300 , 600
43548                                                                                 based on weight
43549                                                                     based on weight (44-88 lbs)
43550                                                                                 based on weight
43563                                                                    based on weight (51-100 lbs)
43570                                                                    based on weight (51-100 lbs)
43601                                                                                          1 drop
43610                                                                                0.125 inch strip
43620                                                                                     unspecified
43621                                                                                     unspecified
43636                                                                                     unspecified
43637                                                                                 based on weight
43639                                                                                    small amount
43640                                                                                       2-4 drops
43642                                                                                    small amount
43643                                                                                      1 wipe/pad
43644                                                                    based on weight (51-100 lbs)
43645                                                                    based on weight (60-120 lbs)
43646                                                                        based on weight (60 lbs)
43650                                                                                 0.25 inch strip
43652                                                                     based on weight (45-88 lbs)
43653                                                                    based on weight (51-100 lbs)
43669                                                                                      1 wipe/pad
43678                                                                                    small amount
43683                                                                     based on weight (26-50 lbs)
43684                                                                                 0.25 inch strip
43685                                                                                    small amount
43686                                                                                    small amount
43697                                                                           1 tablet/pill/capsule
43698                                                                           1 tablet/pill/capsule
43701                                                                           1 tablet/pill/capsule
43702                                                                           1 tablet/pill/capsule
43706                                                                    based on weight (51-100 lbs)
43707                                                                     based on weight (44-88 lbs)
43709                                                                     based on weight (56-95 lbs)
43712                                                                                         1 spray
43714                                                                                 moderate amount
43715                                                                                    small amount
43738                                                                                     unspecified
43743                                                                    based on weight (51-100 lbs)
43744                                                                     based on weight (45-88 lbs)
43745                                                                                  1 pack/package
43746                                                                     based on weight (45-88 lbs)
43747                                                                    based on weight (51-100 lbs)
43751                                                                                     unspecified
43765                                                                                          1 pump
43783                                                                    based on weight (50-100 lbs)
43784                                                                    based on weight (60-120 lbs)
43785                                                                                 based on weight
43790                                                                           1 tablet/pill/capsule
43806                                                                                           spray
43807                                                                                     unspecified
43829                                                                                          600 ml
43838                                                                                     unspecified
43843                                                                    based on weight (51-100 lbs)
43844                                                                  based on weight (60.1-120 lbs)
43851                                                                                     unspecified
43853                                                                                     unspecified
43854                                                                                     unspecified
43878                                                                    based on weight (50-100 lbs)
43884                                                                                            tube
43887                                                                                            tube
43893                                                                    based on weight (50-100 lbs)
43894                                                                                          collar
43896                                                                    based on weight (50-100 lbs)
43897                                                                                           15 gm
43919                                                                    based on weight (51-100 lbs)
43920                                                                  based on weight (60.1-121 lbs)
43938                                                                    based on weight (50-100 lbs)
43939                                                                     based on weight (24-60 lbs)
43949                                                                    based on weight (50-100 lbs)
43950                                                                     based on weight (24-60 lbs)
43958                                                                    based on weight (50-100 lbs)
43959                                                                    based on weight (50-100 lbs)
43960                                                                    based on weight (60-100 lbs)
43963                                                                    based on weight (51-100 lbs)
43965                                                                                    small amount
43975                                                                                     unspecified
43976                                                            222 ivermectin, 227 pyrantel pamoate
43977                                                            222 ivermectin, 227 pyrantel pamoate
43980                                                            222 ivermectin, 227 pyrantel pamoate
43997                                                                                     unspecified
44031                                                            272 ivermectin, 227 pyrantel pamoate
44037                                                            272 ivermectin, 227 pyrantel pamoate
44050                                                                                        wipe/pad
44051                                                                                         5 drops
44055                                                                                       2-3 drops
44084                                                                                  0.5 inch strip
44087                                                                                     unspecified
44090                                                                                     unspecified
44119                                                                                     unspecified
44123                                                                                     unspecified
44126                                                                    based on weight (51-100 lbs)
44127                                                                    based on weight (60-121 lbs)
44129                                                                    based on weight (51-100 lbs)
44131                                                                    based on weight (51-100 lbs)
44154                                                                                     unspecified
44155                                                                  based on weight (50.1-100 lbs)
44157                                                                  based on weight (50.1-100 lbs)
44158                                                                     based on weight (44-88 lbs)
44207                                                                                     unspecified
44209                                                                                     unspecified
44211                                                                    based on weight (60-120 lbs)
44212                                                                        2 tablets/pills/capsules
44214                                                                    based on weight (60-120 lbs)
44216                                                                    based on weight (60-120 lbs)
44218                                                                    based on weight (60-120 lbs)
44219                                                                    based on weight (60-120 lbs)
44220                                                                                          1 tube
44222                                                                                     unspecified
44223                                                                                     unspecified
44224                                                                                     unspecified
44225                                                                                     unspecified
44226                                                                                     unspecified
44227                                                                                     unspecified
44234                                                                       based on weight (55+ lbs)
44235                                                                    based on weight (51-100 lbs)
44240                                                                                    small amount
44241                                                                        3 tablets/pills/capsules
44242                                                                                           3 tsp
44243                                                                                     unspecified
44244                                                                                     unspecified
44246                                                                    based on weight (51-100 lbs)
44247                                                                    based on weight (60-120 lbs)
44249                                                                    based on weight (60-120 lbs)
44250                                                                    based on weight (51-100 lbs)
44251                                                                    based on weight (50-100 lbs)
44252                                                                    based on weight (60-120 lbs)
44253                                                                  based on weight (50.1-100 lbs)
44268                                                                  based on weight (50.1-100 lbs)
44280                                                                                     unspecified
44282                                                                                     unspecified
44309                                                                                     unspecified
44330                                                                    based on weight (51-100 lbs)
44334                                                                    based on weight (50-100 lbs)
44335                                                                    based on weight (60-121 lbs)
44336                                                                    based on weight (50-100 lbs)
44337                                                                    based on weight (60-121 lbs)
44347                                                                                     unspecified
44350                                                                                        125, 500
44363                                                                                    small amount
44372                                                                                    small amount
44385                                                                                        27, 1620
44386                                                                                        27, 1620
44390                                                                    based on weight (50-100 lbs)
44391                                                                                         23, 228
44392                                                                    based on weight (50-100 lbs)
44395                                                                    based on weight (50-100 lbs)
44398                                                                                     unspecified
44421                                                                  based on weight (50.1-100 lbs)
44428                                                                  based on weight (60.1-120 lbs)
44429                                                              27 milbemycin oxime, 1620 spinosad
44431                                                                     based on weight (44-88 lbs)
44434                                                                                    small amount
44452                                                                  based on weight (60.1-120 lbs)
44473                                                                       based on weight (55+ lbs)
44501                                                                                         8 drops
44507                                                                                    small amount
44520                                                                                     unspecified
44524                                                                     based on weight (26-50 lbs)
44531                                                                        based on weight (70 lbs)
44542                                                                     based on weight (45-88 lbs)
44543                                                                    based on weight (51-100 lbs)
44544                                                                           1 tablet/pill/capsule
44545                                                           based on weight (45-88 lbs) - 2.68 ml
44546                                                                    based on weight (51-100 lbs)
44547                                                                     based on weight (45-88 lbs)
44552                                                                                            1 ml
44558                                                                                     unspecified
44559                                                                     based on weight (45-88 lbs)
44570                                                                                     unspecified
44571                                                                                     unspecified
44576                                                                                     unspecified
44577                                                                                     unspecified
44595                                                                                     unspecified
44607                                                                                      1 wipe/pad
44608                                                                    based on weight (60-120 lbs)
44609                                                                                       1-2 wipes
44614                                                                           1 tablet/pill/capsule
44616                                                                    based on weight (51-100 lbs)
44618                                                                                 based on weight
44646                                                                     based on weight (45-80 lbs)
44649                                                                    based on weight (85-130 lbs)
44652                                                                                     unspecified
44653                                                                                     unspecified
44654                                                                                     unspecified
44655                                                                                     unspecified
44658                                                                                     unspecified
44660                                                                                     unspecified
44663                                                                                     unspecified
44671                                                                    based on weight (60-120 lbs)
44672                                                              27 milbemycin oxime, 1620 spinosad
44677                                                                                        27, 1610
44679                                                                                         45, 450
44683                                                                                     unspecified
44684                                                                                     unspecified
44706                                                                                 0.25 inch strip
44732                                                                                         23, 460
44742                                                                    based on weight (51-100 lbs)
44743                                                                     based on weight (44-88 lbs)
44745                                                                    based on weight (50-100 lbs)
44746                                                                                     unspecified
44747                                                                                          collar
44755                                                                                     unspecified
44757                                                                                     unspecified
44769                                                                     based on weight (44-88 lbs)
44771                                                                     based on weight (44-88 lbs)
44782                                                                                     unspecified
44795                                                                                 0.25 inch strip
44796                                                                                          1 drop
44797                                                                                          1 drop
44799                                                                                     unspecified
44804                                                                                     unspecified
44820                                                                    based on weight (51-100 lbs)
44827                                                                    based on weight (51-100 lbs)
44828                                                                    based on weight (60-120 lbs)
44829                                                                     based on weight (51-99 lbs)
44830                                                                    based on weight (51-100 lbs)
44831                                                                                          1 drop
44834                                                                                     unspecified
44843                                                                    based on weight (51-100 lbs)
44844                                                                  based on weight (60.1-121 lbs)
44857                                                                                           6, 15
44858                                                                                           6, 15
44862                                                                                     unspecified
44863                                                                       based on weight (50+ lbs)
44864                                                                                     unspecified
44866                                                                                     unspecified
44867                                                                   based on weight (55.1-88 lbs)
44868                                                                   based on weight (55.1-88 lbs)
44869                                                                    based on weight (60-121 lbs)
44875                                                                                         23, 460
44877                                                                    based on weight (50-100 lbs)
44879                                                                    based on weight (50-100 lbs)
44899                                                                                     unspecified
44905                                                                                     unspecified
44915                                                                     based on weight (45-88 lbs)
44916                                                            272 ivermectin, 227 pyrantel pamoate
44917                                                                       based on weight (55+ lbs)
44918                                                            272 ivermectin, 227 pyrantel pamoate
44920                                                                       based on weight (55+ lbs)
44922                                                                                     unspecified
44924                                                                    based on weight (51-100 lbs)
44925                                                                       based on weight (55+ lbs)
44933                                                                                     unspecified
44936                                                                     based on weight (40-85 lbs)
44937                                                                     based on weight (40-85 lbs)
44938                                                                   based on weight (40.1-85 lbs)
44939                                                                   based on weight (40.1-65 lbs)
44946                                                                    based on weight (51-100 lbs)
44947                                                                     based on weight (44-88 lbs)
44948                                                                           1 tablet/pill/capsule
44949                                                                    based on weight (51-100 lbs)
44950                                                                     based on weight (44-88 lbs)
44957                                                                     based on weight (44-88 lbs)
44958                                                                    based on weight (51-100 lbs)
44990                                                                                          0.5 gm
44997                                                                                     as directed
45005                                                                                     unspecified
45007                                                                                     unspecified
45014                                                                    based on weight (60-120 lbs)
45015                                                                           1 tablet/pill/capsule
45016                                                                           1 tablet/pill/capsule
45017                                                                      based on weight (81.1 lbs)
45023                                                                                     unspecified
45027                                                                     based on weight (45-88 lbs)
45034                                                                                     unspecified
45045                                                                    based on weight (50-100 lbs)
45047                                                                                          1 tube
45053                                                                      based on weight (0-25 lbs)
45054                                                                     based on weight (10-24 lbs)
45055                                                                     based on weight (25-60 lbs)
45059                                                                    based on weight (51-100 lbs)
45061                                                                    based on weight (51-100 lbs)
45062                                                                  based on weight (60.1-120 lbs)
45063                                                                                        27, 1620
45064                                                                  based on weight (60.1-120 lbs)
45066                                                                                    small amount
45072                                                                    based on weight (60-120 lbs)
45073                                                                                        27, 1620
45076                                                                             tablet/pill/capsule
45109                                                                           1 tablet/pill/capsule
45112                                                                                         6 drops
45116                                                                   0.5 tablet/pill/capsule - 100
45117                                                                                  1 pack/package
45123                                                                    based on weight (50-100 lbs)
45134                                                                                     unspecified
45139                                                            272 ivermectin, 227 pyrantel pamoate
45149                                                                    based on weight (51-100 lbs)
45150                                                                    based on weight (51-100 lbs)
45154                                                                    based on weight (51-100 lbs)
45172                                                                                     unspecified
45173                                                                                     unspecified
45174                                                                                     unspecified
45175                                                                                     unspecified
45178                                                                    based on weight (51-100 lbs)
45179                                                                     based on weight (45-88 lbs)
45180                                                                                 moderate amount
45181                                                                                    small amount
45182                                                                    based on weight (51-100 lbs)
45184                                                                           1 tablet/pill/capsule
45185                                                                                   1 bottle/vial
45186                                                                    based on weight (51-100 lbs)
45187                                                                     based on weight (44-88 lbs)
45188                                                                    based on weight (51-100 lbs)
45189                                                                     based on weight (44-88 lbs)
45195                                                                                     unspecified
45199                                                                                     unspecified
45208                                                                                     unspecified
45209                                                                                     unspecified
45210                                                                                     unspecified
45212                                                                    based on weight (51-100 lbs)
45216                                                                    based on weight (51-100 lbs)
45224                                                                                     unspecified
45225                                                                    based on weight (51-100 lbs)
45236                                                                    based on weight (51-100 lbs)
45255                                                                                 based on weight
45257                                                                                            1 ml
45263                                                                                 based on weight
45268                                                                                     unspecified
45273                                                                                     application
45274                                                                                         5 drops
45280                                                                                     unspecified
45283                                                                    based on weight (51-100 lbs)
45286                                                                    based on weight (51-100 lbs)
45294                                                                     based on weight (40-60 lbs)
45295                                                                        2 tablets/pills/capsules
45297                                                                        based on weight (50 lbs)
45298                                                                    based on weight (51-100 lbs)
45299                                                                    based on weight (51-100 lbs)
45302                                                                    based on weight (51-100 lbs)
45305                                                                                     unspecified
45307                                                                                          varies
45309                                                                                     unspecified
45310                                                                    based on weight (51-100 lbs)
45311                                                                                 based on weight
45312                                                                   based on weight (24.1-60 lbs)
45313                                                                    based on weight (51-100 lbs)
45322                                                                                     unspecified
45327                                                                                     unspecified
45335                                                              460 lufenuron, 23 milbemycin oxime
45344                                                                                     unspecified
45345                                                                                     unspecified
45358                                                                                     unspecified
45359                                                                                     unspecified
45372                                                                                     application
45383                                                                                     unspecified
45403                                                                                     unspecified
45406                                                                    based on weight (51-100 lbs)
45411                                                                                    small amount
45425                                                                    based on weight (51-100 lbs)
45426                                                                                          collar
45434                                                                                     unspecified
45435                                                                                     unspecified
45443                                                            272 ivermectin, 227 pyrantel pamoate
45445                                                                    based on weight (51-100 lbs)
45451                                                                    based on weight (51-100 lbs)
45452                                                                   based on weight (24.1-60 lbs)
45463                                                                  based on weight (60.1-120 lbs)
45468                                                                    based on weight (51-100 lbs)
45470                                                                    based on weight (60-120 lbs)
45471                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 milbemycin oxime, 1620 spinosad
45479                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 milbemycin oxime, 1620 spinosad
45484                                                                    based on weight (51-100 lbs)
45499                                                                           1 tablet/pill/capsule
45500                                                                           1 tablet/pill/capsule
45503                                                                        2 tablets/pills/capsules
45504                                                                    based on weight (50-100 lbs)
45508                                                                     based on weight (45-88 lbs)
45531                                                               250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 milbemycin oxime, 810 spinosad
45555                                                                                     unspecified
45556                                                                     based on weight (40-85 lbs)
45572                                                                     based on weight (44-88 lbs)
45582                                                                                     unspecified
45585                                                                    based on weight (50-100 lbs)
45591                                                                                         8 drops
45626                                                                  based on weight (50.1-100 lbs)
45629                                                                                          1 tube
45642                                                            272 ivermectin, 227 pyrantel pamoate
45650                                                                    based on weight (60-120 lbs)
45651                                                                    based on weight (51-100 lbs)
45655                                                                    based on weight (51-100 lbs)
45656                                                                  based on weight (60.1-121 lbs)
45663                                                                                    small amount
45664                                                                    based on weight (51-100 lbs)
45665                                                                     based on weight (45-88 lbs)
45667                                                                                     unspecified
45670                                                                    based on weight (50-100 lbs)
45671                                                                    based on weight (50-100 lbs)
45674                                                                                         2 drops
45675                                                                                       4-6 drops
45676                                                                                       4-6 drops
45683                                                                        based on weight (51 lbs)
45699                                                                                 moderate amount
45700                                                                                 moderate amount
45703                                                                                            3 ml
45704                                                                                    small amount
45724                                                                                     unspecified
45725                                                                                     unspecified
45726                                                                                     unspecified
45727                                                                                     unspecified
45728                                                                                     unspecified
45729                                                                                     unspecified
45735                                                                                     unspecified
45736                                                                                     unspecified
45751                                                                                     unspecified
45764                                                                    based on weight (51-100 lbs)
45775                                                                                     unspecified
45776                                                                                     unspecified
45787                                                                     based on weight (45-88 lbs)
45791                                                                    based on weight (51-100 lbs)
45798                                                                                         23, 228
45799                                                                    based on weight (50-100 lbs)
45800                                                                    based on weight (50-100 lbs)
45816                                                                                        1 collar
45820                                                                    based on weight (51-100 lbs)
45843                                                                                     as directed
45853                                                                                        inhalant
45862                                                                  based on weight (50.1-100 lbs)
45863                                                                  based on weight (60.1-121 lbs)
45864                                                                    based on weight (88-123 lbs)
45869                                                                  based on weight (50.1-100 lbs)
45870                                                                                           60 ml
45871                                                                                          7.5 ml
45872                                                                    based on weight (88-123 lbs)
45876                                                                                       13.5, 810
45886                                                                                         5 drops
45898                                                                    based on weight (51-100 lbs)
45899                                                                       based on weight (55+ lbs)
45901                                                                    based on weight (51-100 lbs)
45908                                                                    based on weight (51-100 lbs)
45909                                                                       based on weight (55+ lbs)
45914                                                                    based on weight (51-100 lbs)
45924                                                                             tablet/pill/capsule
45968                                                                                         11, 230
45969                                                                    based on weight (50-100 lbs)
45970                                                                  based on weight (60.1-121 lbs)
45971                                                                                        23 , 460
45972                                                                                         8 drops
45990                                                                     based on weight (40-60 lbs)
45994                                                                       based on weight (55+ lbs)
45995                                                                                  1 pack/package
45996                                                                                     application
45997                                                                  based on weight (50.1-100 lbs)
46014                                                                                 0.25 inch strip
46018                                                                    based on weight (51-100 lbs)
46019                                                                  based on weight (50.1-121 lbs)
46020                                                                                            1 ml
46021                                                                    based on weight (51-100 lbs)
46022                                                                    based on weight (60-121 lbs)
46025                                                                    based on weight (51-100 lbs)
46043                                                                    based on weight (51-100 lbs)
46044                                                                  based on weight (60.1-120 lbs)
46071                                                                           1 tablet/pill/capsule
46075                                                                    based on weight (51-100 lbs)
46076                                                                    based on weight (50-100 lbs)
46078                                                           23 milbemycin oxime, 228 praziquantel
46085                                                                                     unspecified
46091                                                                    based on weight (51-100 lbs)
46092                                                                    based on weight (51-100 lbs)
46094                                                                    based on weight (50-100 lbs)
46095                                                                    based on weight (50-100 lbs)
46100                                                                    based on weight (50-100 lbs)
46101                                                                                         3 drops
46102                                                                                         3 drops
46107                                                                    based on weight (51-100 lbs)
46108                                                                        based on weight (60 lbs)
46110                                                                    based on weight (51-100 lbs)
46116                                                                    based on weight (51-100 lbs)
46119                                                                    based on weight (51-100 lbs)
46122                                                                    based on weight (51-100 lbs)
46131                                                                                     unspecified
46132                                                                                     unspecified
46134                                                                                     unspecified
46170                                                                     based on weight (21-55 lbs)
46171                                                                                    small amount
46173                                                                     based on weight (21-55 lbs)
46174                                                                    based on weight (51-100 lbs)
46177                                                                           1 tablet/pill/capsule
46186                                                                                     unspecified
46198                                                                    based on weight (51-100 lbs)
46200                                                                                 based on weight
46201                                                                       based on weight (50+ lbs)
46202                                                                    based on weight (51-100 lbs)
46213                                                                       based on weight (55+ lbs)
46218                                                                    based on weight (50-100 lbs)
46219                                                                   based on weight (24.1-60 lbs)
46227                                                                    based on weight (60-120 lbs)
46255                                                                                    small amount
46265                                                                                     unspecified
46277                                                                     based on weight (26-50 lbs)
46278                                                                     based on weight (24-60 lbs)
46287                                                                     based on weight (26-50 lbs)
46288                                                                     based on weight (24-60 lbs)
46291                                                                     based on weight (26-50 lbs)
46292                                                                    based on weight (50-110 lbs)
46293                                                                     based on weight (24-60 lbs)
46295                                                                    based on weight (51-100 lbs)
46296                                                                     based on weight (24-60 lbs)
46302                                                                           1 tablet/pill/capsule
46303                                                                                       11.5, 230
46305                                                                                       11.5, 230
46308                                                                                       11.5, 235
46311                                                                                     unspecified
46312                                                                                     unspecified
46313                                                                                     unspecified
46314                                                                                     unspecified
46319                                                                                    small amount
46320                                                           23 milbemycin oxime, 228 praziquantel
46324                                                                                     unspecified
46325                                                           23 milbemycin oxime, 228 praziquantel
46345                                                            272 ivermectin, 227 pyrantel pamoate
46350                                                                                         23, 228
46355                                                                                         23, 228
46358                                                                                         10, 100
46360                                                                                     unspecified
46377                                                                                     unspecified
46379                                                                                        27, 1620
46399                                                                    based on weight (60-120 lbs)
46406                                                                                     unspecified
46410                                                                        based on weight (70 lbs)
46411                                                                        based on weight (70 lbs)
46413                                                                                 based on weight
46418                                                                                 based on weight
46424                                                                                          collar
46431                                                                                          collar
46432                                                                                          1 pump
46435                                                            272 ivermectin, 227 pyrantel pamoate
46436                                                                                          collar
46474                                                                    based on weight (51-100 lbs)
46475                                                                     based on weight (21-55 lbs)
46476                                                                  based on weight (50.1-100 lbs)
46478                                                                    based on weight (51-100 lbs)
46479                                                                    based on weight (51-100 lbs)
46482                                                                    based on weight (50-100 lbs)
46483                                                                     based on weight (56-95 lbs)
46486                                                                                 based on weight
46487                                                                    based on weight (51-100 lbs)
46488                                                                    based on weight (51-100 lbs)
46489                                                                     based on weight (26-50 lbs)
46490                                                                     based on weight (26-50 lbs)
46493                                                                    based on weight (51-100 lbs)
46494                                                                    based on weight (50-100 lbs)
46499                                                           23 milbemycin oxime, 228 praziquantel
46502                                                                                         3 pumps
46504                                                                                     application
46505                                                                                     application
46506                                                                                     application
46512                                                                    based on weight (51-100 lbs)
46517                                                                                        8 cfu/gm
46521                                                                                       10 100 ml
46524                                                                                         5 drops
46526                                                                                 0.25 inch strip
46527                                                                                         5 drops
46528                                                                     based on weight (45-88 lbs)
46529                                                                                            1 gm
46530                                                                                     as directed
46532                                                                    based on weight (51-100 lbs)
46533                                                                                 0.25 inch strip
46534                                                                                         5 drops
46544                                                                    based on weight (51-100 lbs)
46547                                                                                        0.8, 9.8
46551                                                                                     unspecified
46553                                                                                     unspecified
46555                                                                                     unspecified
46568                                                                                       227 , 227
46569                                                         8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                1.5 tablets/pills/capsules - 204
46571                                                                                               %
46572                                                            272 ivermectin, 227 pyrantel pamoate
46573                                                                                     as directed
46574                                                                                     unspecified
46575                                                                                     unspecified
46579                                                                                     unspecified
46588                                                                                            tube
46590                                                                                         8 drops
46591                                                            272 ivermectin, 227 pyrantel pamoate
46593                                                                                     bottle/vial
46606                                                                                     unspecified
46607                                                                                     unspecified
46615                                                                     based on weight (44-88 lbs)
46616                                                                    based on weight (51-100 lbs)
46617                                                                    based on weight (51-100 lbs)
46618                                                                                         23, 460
46664                                                                                          1 tube
46665                                                                           1 tablet/pill/capsule
46676                                                                                     as directed
46680                                                                                 based on weight
46687                                                                                     unspecified
46690                                                                                           spray
46694                                                                     based on weight (10-20 lbs)
46702                                                                                           spray
46703                                                                                     as directed
46716                                                                                        27, 1620
46717                                                                                        27, 1620
46729                                                            272 ivermectin, 227 pyrantel pamoate
46730                                                            272 ivermectin, 227 pyrantel pamoate
46732                                                                                          varies
46737                                                                                     unspecified
46747                                                                                     unspecified
46753                                                                                     unspecified
46763                                                                                     unspecified
46766                                                                                     unspecified
46767                                                                    based on weight (51-100 lbs)
46775                                                                    based on weight (51-100 lbs)
46776                                                                     based on weight (24-60 lbs)
46777                                                                                 based on weight
46781                                                                           1 tablet/pill/capsule
46782                                                                           1 tablet/pill/capsule
46783                                                                                    small amount
46784                                                                           1 tablet/pill/capsule
46785                                                                           1 tablet/pill/capsule
46786                                                                    based on weight (51-100 lbs)
46788                                                                    based on weight (51-100 lbs)
46789                                                                    based on weight (60-121 lbs)
46804                                                                           1 tablet/pill/capsule
46811                                                                                 based on weight
46812                                                                    based on weight (51-100 lbs)
46816                                                                    based on weight (51-100 lbs)
46827                                                                                       1-2 drops
46849                                                                                        112, 272
46853                                                            272 ivermectin, 227 pyrantel pamoate
46874                                                                                    small amount
46880                                                                                    small amount
46883                                                                                         23, 228
46884                                                                    based on weight (50-100 lbs)
46885                                                                    based on weight (50-100 lbs)
46889                                                                                        160, 800
46891                                                                                     unspecified
46902                                                                                    small amount
46903                                                                       based on weight (55+ lbs)
46904                                                                    based on weight (51-100 lbs)
46905                                                                                    small amount
46908                                                                                           spray
46915                                                                                    small amount
46931                                                                                  1 pack/package
46938                                                                                  1 pack/package
46944                                                                                  1 pack/package
46961                                                                                     unspecified
46962                                                                                     unspecified
46972                                                                    based on weight (51-100 lbs)
46973                                                                    based on weight (51-100 lbs)
46976                                                                           1 tablet/pill/capsule
46977                                                                                   1 application
46978                                                                                          1 drop
46981                                                                                       3-5 drops
46982                                                                                    small amount
46983                                                                     based on weight (45-88 lbs)
46984                                                                    based on weight (89-132 lbs)
46985                                                                    based on weight (51-100 lbs)
46986                                                                    based on weight (51-100 lbs)
47000                                                              based on weight (44.1-88 lbs) - 80
47004                                                                    based on weight (51-100 lbs)
47010                                                                    based on weight (51-100 lbs)
47011                                                                    based on weight (60-121 lbs)
47018                                                                    based on weight (51-100 lbs)
47024                                                                    based on weight (51-100 lbs)
47025                                                                     based on weight (44-88 lbs)
47041                                                              460 lufenuron, 23 milbemycin oxime
47043                                                                    based on weight (51-100 lbs)
47049                                                                     based on weight (40-85 lbs)
47060                                                                                     unspecified
47069                                                                                           15 gm
47076                                                                                     unspecified
47080                                                                                     unspecified
47081                                                                                     unspecified
47085                                                                    based on weight (51-100 lbs)
47086                                                                   based on weight (24.1-60 lbs)
47090                                                                                    0.285 , 0.57
47095                                                                     based on weight (41-60 lbs)
47096                                                                    based on weight (51-100 lbs)
47097                                                                   based on weight (24.1-60 lbs)
47098                                                                                 moderate amount
47104                                                                                    small amount
47105                                                                                     application
47106                                                                                     application
47108                                                                                          1 tube
47125                                                                                     unspecified
47126                                                                                     unspecified
47128                                                                        3 tablets/pills/capsules
47137                                                                                       4-5 drops
47140                                                                     based on weight (60-85 lbs)
47143                                                                     based on weight (40-85 lbs)
47146                                                                                     unspecified
47152                                                                                 moderate amount
47154                                                                    based on weight (51-100 lbs)
47155                                                                    based on weight (50-100 lbs)
47156                                                                     based on weight (44-88 lbs)
47162                                                                     based on weight (44-88 lbs)
47164                                                                     based on weight (44-88 lbs)
47178                                                                    based on weight (50-100 lbs)
47180                                                                                 moderate amount
47181                                                                                          1 tube
47183                                                                     based on weight (44-88 lbs)
47184                                                                    based on weight (51-100 lbs)
47187                                                                           1 tablet/pill/capsule
47193                                                                    based on weight (51-100 lbs)
47194                                                                     based on weight (45-88 lbs)
47196                                                                     based on weight (44-88 lbs)
47197                                                                    based on weight (50-100 lbs)
47204                                                                                     unspecified
47208                                                                                     unspecified
47209                                                                    based on weight (51-100 lbs)
47210                                                                    based on weight (51-100 lbs)
47220                                                                                          collar
47221                                                                                     unspecified
47222                                                                                     unspecified
47240                                                                                     unspecified
47248                                                                                     unspecified
47251                                                                                     unspecified
47253                                                                    based on weight (50-100 lbs)
47260                                                                    based on weight (50-100 lbs)
47302                                                                                    small amount
47323                                                                                         23, 228
47325                                                                                         23, 228
47334                                                                     based on weight (26-50 lbs)
47343                                                         11.5 milbemycin oxime, 114 praziquantel
47345                                                                                       11.5, 114
47350                                                                                     unspecified
47355                                                                                     application
47360                                                                                     unspecified
47390                                                            222 ivermectin, 227 pyrantel pamoate
47407                                                                                     unspecified
47409                                                           23 milbemycin oxime, 228 praziquantel
47411                                                                  based on weight (60.1-121 lbs)
47412                                                                    based on weight (51-100 lbs)
47415                                                                   based on weight (44.1-88 lbs)
47416                                                                  based on weight (50.1-100 lbs)
47417                                                                   based on weight (44.1-88 lbs)
47420                                                                  based on weight (50.1-100 lbs)
47421                                                                   based on weight (44.1-88 lbs)
47433                                                                                        114, 136
47439                                                                                           6, 15
47451                                                            272 ivermectin, 227 pyrantel pamoate
47478                                                                    based on weight (50-100 lbs)
47479                                                                    based on weight (51-100 lbs)
47483                                                                                    small amount
47484                                                                                 based on weight
47486                                                                                 based on weight
47493                                                                                 based on weight
47496                                                                                     unspecified
47497                                                                    based on weight (51-100 lbs)
47498                                                                                 based on weight
47513                                                                                        10 drops
47539                                                                                     as directed
47540                                                                                     unspecified
47544                                                                                     unspecified
47547                                                                                     application
47557                                                                                     unspecified
47559                                                                                          1 drop
47561                                                                                            1 gm
47562                                                                    based on weight (50-100 lbs)
47563                                                                       based on weight (60+ lbs)
47576                                                                    based on weight (2.5-20 lbs)
47577                                                                       based on weight (<25 lbs)
47578                                                                       based on weight (<25 lbs)
47586                                                                     based on weight (26-50 lbs)
47587                                                                     based on weight (21-55 lbs)
47588                                                                                 3.5, 400, 10000
47589                                                                    based on weight (51-100 lbs)
47590                                                                     based on weight (21-55 lbs)
47592                                                                    based on weight (51-100 lbs)
47593                                                                     based on weight (21-55 lbs)
47594                                                                    based on weight (51-100 lbs)
47595                                                                     based on weight (21-55 lbs)
47597                                                                                        100, 400
47600                                                                                        100, 400
47628                                                                     based on weight (45-88 lbs)
47629                                                            272 ivermectin, 227 pyrantel pamoate
47630                                                                     based on weight (22-55 lbs)
47635                                                                       based on weight (55+ lbs)
47636                                                                     based on weight (25-50 lbs)
47658                                                                                     unspecified
47681                                                            272 ivermectin, 227 pyrantel pamoate
47684                                                                                           spray
47693                                                                                        wipe/pad
47694                                                                                          powder
47696                                                                    based on weight (50-100 lbs)
47698                                                                                        wipe/pad
47699                                                                                          powder
47702                                                                                     application
47706                                                              27 milbemycin oxime, 1620 spinosad
47715                                                                                     unspecified
47716                                                                                     unspecified
47720                                                                                     unspecified
47721                                                                                     unspecified
47733                                                                                     unspecified
47734                                                                                     application
47739                                                                                     unspecified
47743                               based on weight (51-100 lbs) - 460 lufenuron, 23 milbemycin oxime
47744                                                                    based on weight (51-100 lbs)
47745                                                              460 lufenuron, 23 milbemycin oxime
47746                                                                    based on weight (51-100 lbs)
47752                                                                                     unspecified
47755                                                                     based on weight (45-88 lbs)
47760                                                                                 based on weight
47800                                                                    based on weight (51-100 lbs)
47801                                                                     based on weight (45-88 lbs)
47802                                                                    based on weight (51-100 lbs)
47803                                                                     based on weight (45-88 lbs)
47808                                                                    based on weight (51-100 lbs)
47810                                                                  based on weight (60.1-121 lbs)
47811                                                                    based on weight (51-100 lbs)
47812                                                                  based on weight (60.1-121 lbs)
47815                                                                    based on weight (51-100 lbs)
47816                                                                  based on weight (60.1-121 lbs)
47817                                                                                     unspecified
47825                                                                                     unspecified
47835                                                                    based on weight (51-100 lbs)
47836                                                                    based on weight (51-100 lbs)
47840                                                                    based on weight (50-100 lbs)
47847                                                                                       0.125 tsp
47860                                                                     based on weight (44-88 lbs)
47861                                                                                    10  - 0.1 ml
47862                                                                                          0.1 ml
47863                                                                           1 tablet/pill/capsule
47877                                                                                     unspecified
47887                                                                     based on weight (44-88 lbs)
47888                                                                    based on weight (51-100 lbs)
47889                                                                                     unspecified
47890                                                                                     unspecified
47891                                                                                     unspecified
47894                                                                                           2 , 5
47900                                                                                     unspecified
47909                                                                           1 tablet/pill/capsule
47910                                                                                     unspecified
47951                                                                                     unspecified
47952                                                                                     unspecified
47953                                                                                     unspecified
47969                                                                           1 tablet/pill/capsule
47970                                                                           1 tablet/pill/capsule
47971                                                                    based on weight (50-100 lbs)
47975                                                                    based on weight (50-100 lbs)
47976                                                                    based on weight (50-100 lbs)
47981                                                                  based on weight (50.1-100 lbs)
47983                                                                                         23, 228
47984                                                                                 based on weight
47985                                                                                 based on weight
47989                                                                    based on weight (51-100 lbs)
47990                                                                       based on weight (55+ lbs)
47995                                                                                          powder
47996                                                                           1 tablet/pill/capsule
47997                                                                           1 tablet/pill/capsule
47998                                                                        2 tablets/pills/capsules
47999                                                                                            4 ml
48000                                                                           1 tablet/pill/capsule
48001                                                                      1.5 tablets/pills/capsules
48002                                                                           1 tablet/pill/capsule
48003                                                                           1 tablet/pill/capsule
48004                                                                           1 tablet/pill/capsule
48005                                                                           1 tablet/pill/capsule
48007                                                                        0.75 tablet/pill/capsule
48013                                                                  based on weight (60.1-121 lbs)
48014                                                                  based on weight (60.1-121 lbs)
48016                                                                                     unspecified
48020                                                                    based on weight (51-100 lbs)
48021                                                                    based on weight (60-120 lbs)
48028                                                                    based on weight (51-100 lbs)
48029                                                                  based on weight (60.1-120 lbs)
48030                                                                           1 tablet/pill/capsule
48031                                                                        3 tablets/pills/capsules
48034                                                                                          powder
48035                                                                                          powder
48040                                                                    based on weight (51-100 lbs)
48041                                                                    based on weight (60-120 lbs)
48046                                                                    based on weight (51-100 lbs)
48047                                                                  based on weight (60.1-120 lbs)
48048                                                                           1 tablet/pill/capsule
48049                                                                        2 tablets/pills/capsules
48069                                                                                     unspecified
48072                                                                                 0.25 inch strip
48087                                                                    based on weight (51-100 lbs)
48088                                                                     based on weight (44-88 lbs)
48089                                                                                  1 pack/package
48090                                                                                      1.5 scoops
48094                                                                                     as directed
48100                                                                                 0.25 inch strip
48101                                                                                    small amount
48102                                                                    based on weight (51-100 lbs)
48103                                                                                    small amount
48105                                                                    based on weight (51-100 lbs)
48106                                                                                        1 collar
48107                                                                                    small amount
48108                                                                                    small amount
48109                                                                    based on weight (51-100 lbs)
48110                                                                                        1 collar
48114                                                                                    small amount
48120                                                                    based on weight (51-100 lbs)
48121                                                                       based on weight (55+ lbs)
48127                                                                             tablet/pill/capsule
48131                                                                             tablet/pill/capsule
48132                                                                           1 tablet/pill/capsule
48133                                                                           1 tablet/pill/capsule
48142                                                                    based on weight (50-100 lbs)
48143                                                                       based on weight (55+ lbs)
48147                                                                             tablet/pill/capsule
48148                                                                    based on weight (51-100 lbs)
48151                                                                           1 tablet/pill/capsule
48152                                                                           1 tablet/pill/capsule
48155                                                                                         23, 460
48157                                                                    based on weight (51-100 lbs)
48158                                                                   based on weight (44.1-88 lbs)
48159                                                                    based on weight (51-100 lbs)
48160                                                                    based on weight (88-123 lbs)
48163                                                                                     unspecified
48167                                                                    based on weight (51-100 lbs)
48169                                                                                     unspecified
48178                                                                                           15 gm
48182                                                                                       136 , 114
48185                                                                                        tapering
48188                                                                                    small amount
48201                                                                                     unspecified
48213                                                                                    small amount
48214                                                                    based on weight (60-121 lbs)
48215                                                                    based on weight (51-100 lbs)
48217                                                            272 ivermectin, 227 pyrantel pamoate
48220                                                                                     unspecified
48221                                                                                     unspecified
48222                                                                                     unspecified
48223                                                                                          0.5 ml
48231                                                              460 lufenuron, 23 milbemycin oxime
48237                                                                                    small amount
48238                                                              460 lufenuron, 23 milbemycin oxime
48240                                                                                         60, 500
48248                                                                                         60, 500
48251                                                                  based on weight (50.1-100 lbs)
48252                                                                  based on weight (60.1-121 lbs)
48258                                                                                     unspecified
48265                                                                                    small amount
48266                                                                                    small amount
48267                                                                                    small amount
48271                                                              460 lufenuron, 23 milbemycin oxime
48274                                                                                     unspecified
48277                                                                                     unspecified
48285                                                                                     unspecified
48287                                                                                       3000 u/ml
48288                                                                                           drops
48289                                                            272 ivermectin, 227 pyrantel pamoate
48291                                                                                     application
48292                                                            272 ivermectin, 227 pyrantel pamoate
48294                                                                                 0.25 inch strip
48297                                                                    based on weight (51-100 lbs)
48298                                                                    based on weight (60-120 lbs)
48299                                                                                 0.25 inch strip
48300                                                                    based on weight (51-100 lbs)
48306                                                                    based on weight (51-100 lbs)
48307                                                                                       5-6 drops
48310                                                                    based on weight (51-100 lbs)
48311                                                                                         5 drops
48314                                                                                     unspecified
48322                                                                           1 tablet/pill/capsule
48327                                                                                     application
48328                                                                           1 tablet/pill/capsule
48334                                                                                     unspecified
48336                                                                                     unspecified
48337                                                                                     unspecified
48338                                                                                     unspecified
48339                                                                                     unspecified
48342                                                                                     unspecified
48343                                                                                     unspecified
48344                                                                                         23, 460
48345                                                                                       1-2 drops
48350                                                                                     unspecified
48351                                                                                     unspecified
48352                                                                                     unspecified
48353                                                                                     unspecified
48354                                                                                     unspecified
48355                                                                                     unspecified
48374                                                                                           10 ml
48376                                                                                           drops
48378                                                                                          1 drop
48380                                                                           1 tablet/pill/capsule
48381                                                                           1 tablet/pill/capsule
48383                                                                                 based on weight
48384                                                                    based on weight (51-100 lbs)
48394                                                                                     unspecified
48406                                                                                     unspecified
48420                                                                                         80, 400
48438                                                                    based on weight (50-100 lbs)
48439                                                           23 milbemycin oxime, 228 praziquantel
48441                                                                    based on weight (51-100 lbs)
48442                                                                     based on weight (44-88 lbs)
48444                                                            272 ivermectin, 227 pyrantel pamoate
48447                                                                                 based on weight
48448                                                                    based on weight (60-120 lbs)
48481                                                                                    small amount
48483                                                                                    small amount
48494                                                                           1 tablet/pill/capsule
48495                                                                           1 tablet/pill/capsule
48496                                                                                 based on weight
48497                                                                                 based on weight
48498                                                                                 based on weight
48499                                                                                         5 drops
48500                                                                  based on weight (50.1-100 lbs)
48502                                                                1.5 tablets/pills/capsules - 500
48503                                                                                          1 tube
48504                                                                                 based on weight
48505                                                                                 based on weight
48513                                                                    based on weight (51-100 lbs)
48520                                                                                           1 tsp
48521                                                                                            2 ml
48540                                                                                         23, 460
48541                                                                    based on weight (51-100 lbs)
48542                                                                     based on weight (44-88 lbs)
48560                                                                                          1 tube
48598                                                                                     unspecified
48602                                                                                        tapering
48610                                                                                        114, 136
48611                                                            272 ivermectin, 227 pyrantel pamoate
48615                                                            272 ivermectin, 227 pyrantel pamoate
48621                                                                                     application
48624                                                                                     as directed
48633                                                                                     unspecified
48636                                                                                     unspecified
48643                                                                           1 tablet/pill/capsule
48661                                                                    based on weight (51-100 lbs)
48662                                                                                         2.68 ml
48664                                                                    based on weight (51-100 lbs)
48667                                                                    based on weight (51-100 lbs)
48668                                                                     based on weight (45-88 lbs)
48673                                                                                     unspecified
48680                                                                                 based on weight
48683                                                                       based on weight (55+ lbs)
48684                                                                       based on weight (50+ lbs)
48692                                                                                     unspecified
48693                                                                                     unspecified
48694                                                                                     unspecified
48696                                                                    based on weight (50-100 lbs)
48697                                                                   based on weight (24.1-60 lbs)
48698                                                                     based on weight (45-88 lbs)
48712                                                                    based on weight (50-100 lbs)
48713                                                                   based on weight (24.1-60 lbs)
48718                                                                    based on weight (51-100 lbs)
48719                                                                                       1-2 drops
48720                                                                           1 tablet/pill/capsule
48721                                                                    based on weight (50-100 lbs)
48722                                                                                 based on weight
48724                                                                    based on weight (50-100 lbs)
48725                                                                                          collar
48729                                                                                     unspecified
48733                                                                                 based on weight
48734                                                                    based on weight (50-100 lbs)
48735                                                                    based on weight (50-100 lbs)
48736                                                                                          collar
48770                                                                                0.125 inch strip
48782                                                                                     unspecified
48802                                                                                     unspecified
48806                                                                                    small amount
48808                                                                                      8-10 drops
48812                                                                                 2.68 ml of 9.8%
48819                                                                                         23, 460
48821                                                                                         23, 460
48835                                                                                         5 drops
48845                                                                    based on weight (51-100 lbs)
48855                                                                                        27, 1620
48859                                                                                      0.025, 2.5
48862                                                                                         10, 100
48889                                                                                  1 pack/package
48890                                                                    based on weight (51-100 lbs)
48891                                                                                 based on weight
48892                                                                                     application
48893                                                                                          1 drop
48894                                                           23 milbemycin oxime, 228 praziquantel
48902                                                                                     unspecified
48906                                                                                     unspecified
48918                                                                                     unspecified
48921                                                                                           60 ml
48935                                                                                     unspecified
48946                                                                      1.5 tablets/pills/capsules
48994                                                                                        100, 400
48997                                                                                     unspecified
49002                                                            272 ivermectin, 227 pyrantel pamoate
49005                                                                                     unspecified
49012                                                                                     application
49015                                                                                         4.02 ml
49016                                                                     based on weight (44-88 lbs)
49017                                                                    based on weight (50-100 lbs)
49018                                                                       based on weight (25+ lbs)
49025                                                                    based on weight (50-100 lbs)
49026                                                                     based on weight (44-88 lbs)
49027                                                                                           60 ml
49030                                                                                           30 gm
49033                                                                                     as directed
49034                                                                                     as directed
49035                                                                                     as directed
49036                                                                                     unspecified
49042                                                                                     unspecified
49044                                                                                     unspecified
49046                                                                                     unspecified
49051                                                                                     unspecified
49052                                                                                     unspecified
49082                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                    based on weight (51-100 lbs)
49096                                                                                     unspecified
49105                                                                                     unspecified
49113                                                                                     application
49117                                                            272 ivermectin, 227 pyrantel pamoate
49120                                                                                        160, 800
49123                                                                    based on weight (60-120 lbs)
49127                                                                                     unspecified
49128                                                                    based on weight (51-100 lbs)
49129                                                                  based on weight (60.1-121 lbs)
49130                                                                                    small amount
49163                                                                                     unspecified
49164                                                                    based on weight (51-100 lbs)
49167                                                                                     unspecified
49168                                                                                     unspecified
49169                                                                    based on weight (51-100 lbs)
49170                                                                                 based on weight
49184                                                                                     unspecified
49193                                             425 s-adenosylmethionine, 35 silybin a + b, 120 spc
49196                                          680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                     unspecified
49209                                                                                     unspecified
49216                                                                     based on weight (20-40 lbs)
49217                                                                    based on weight (60-120 lbs)
49218                                                                    based on weight (60-120 lbs)
49219                                                              27 milbemycin oxime, 1620 spinosad
49220                                                                                        27, 1620
49227                                                                                    small amount
49229                                                                                    small amount
49231                                                                                    small amount
49232                                                                                  0.5 inch strip
49248                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
49252                                                                    based on weight (51-100 lbs)
49253                                                                     based on weight (44-88 lbs)
49304                                                                                        10 drops
49316                                                                                     unspecified
49323                                                                     based on weight (45-88 lbs)
49324                                                                    based on weight (51-100 lbs)
49343                                                                    based on weight (51-100 lbs)
49345                                                                                          1 pump
49346                                                                    based on weight (51-100 lbs)
49348                                                                    based on weight (51-100 lbs)
49350                                                                    based on weight (51-100 lbs)
49351                                                                    based on weight (60-120 lbs)
49352                                                                    based on weight (51-100 lbs)
49371                                                                                           30 ml
49372                                                                           1 tablet/pill/capsule
49376                                                                    based on weight (51-100 lbs)
49377                                                                     based on weight (45-88 lbs)
49378                                                                    based on weight (51-100 lbs)
49379                                                                       based on weight (55+ lbs)
49388                                                                    based on weight (51-100 lbs)
49393                                                                                     unspecified
49394                                                                                     unspecified
49395                                                                                     unspecified
49398                                                                                     unspecified
49403                                                                                     unspecified
49404                                                                                     unspecified
49408                                                                       based on weight (50+ lbs)
49409                                                                       based on weight (50+ lbs)
49437                                                                    based on weight (61-100 lbs)
49438                                                                    based on weight (50-100 lbs)
49442                                                                                 based on weight
49460                                                                     based on weight (56-95 lbs)
49461                                                                    based on weight (50-100 lbs)
49462                                                                        2 tablets/pills/capsules
49463                                                                    based on weight (51-100 lbs)
49473                                                                    based on weight (51-100 lbs)
49509                                                                      based on weight (100+ lbs)
49510                                                                    based on weight (50-100 lbs)
49518                                                            272 ivermectin, 227 pyrantel pamoate
49520                                                                                 2.2, 14.8, 16.6
49523                                                            272 ivermectin, 227 pyrantel pamoate
49526                                                                                 0.05%, 0.5%, 3%
49531                                                                                     unspecified
49549                                                                    based on weight (50-100 lbs)
49550                                                                    based on weight (60-121 lbs)
49553                                                                    based on weight (50-100 lbs)
49554                                                                  based on weight (60.1-121 lbs)
49567                                                                    based on weight (51-100 lbs)
49568                                                                                        inhalant
49569                                                                           1 tablet/pill/capsule
49572                                                                    based on weight (51-100 lbs)
49588                                                            272 ivermectin, 227 pyrantel pamoate
49590                                                                   based on weight (55.1-88 lbs)
49591                                                                    based on weight (51-100 lbs)
49592                                                                           1 tablet/pill/capsule
49593                                                                                     unspecified
49596                                                                                     unspecified
49601                                                                                     unspecified
49605                                                                           1 tablet/pill/capsule
49607                                                                                       27 , 1620
49608                                                                           1 tablet/pill/capsule
49645                                                                    based on weight (51-100 lbs)
49649                                                                                     application
49654                                                                                     unspecified
49659                                                                                 0.25 inch strip
49698                                                                    based on weight (60-120 lbs)
49699                                                                       based on weight (55+ lbs)
49705                                                                                     unspecified
49715                                                                                          1 tube
49731                                                                           1 tablet/pill/capsule
49748                                                                                            tube
49753                                                                       based on weight (55+ lbs)
49754                                                                     based on weight (45-88 lbs)
49755                                                                    based on weight (51-100 lbs)
49756                                                                     based on weight (45-88 lbs)
49757                                                                  based on weight (50.1-100 lbs)
49758                                                                    based on weight (50-100 lbs)
49764                                                                                           15 ml
49766                                                                                     unspecified
49767                                                                     based on weight (45-88 lbs)
49768                                                                                 based on weight
49769                                                                                     unspecified
49773                                                                                     unspecified
49792                                                                    based on weight (51-100 lbs)
49793                                                                  based on weight (60.1-121 lbs)
49799                                                                                     unspecified
49812                                                                                     unspecified
49820                                                                           1 tablet/pill/capsule
49821                                                                           1 tablet/pill/capsule
49845                                                                           1 tablet/pill/capsule
49846                                                                           1 tablet/pill/capsule
49849                                                                                     application
49852                                                                           1 tablet/pill/capsule
49854                                                                                  1 pack/package
49855                                                                        2 tablets/pills/capsules
49856                                                                                          1.7 ml
49857                                                                                 based on weight
49861                                                                     based on weight (56-90 lbs)
49862                                                                     based on weight (56-90 lbs)
49871                                                                        based on weight (20 lbs)
49878                                                                    based on weight (51-100 lbs)
49883                                                                                  1 pack/package
49886                                                                    based on weight (51-100 lbs)
49889                                                                    based on weight (51-100 lbs)
49890                                                                     based on weight (56-95 lbs)
49898                                                                        based on weight (20 lbs)
49905                                                                    based on weight (51-100 lbs)
49906                                                                                    small amount
49907                                                                    based on weight (51-100 lbs)
49908                                                                    based on weight (51-100 lbs)
49911                                                                    based on weight (51-100 lbs)
49912                                                                     based on weight (56-95 lbs)
49963                                                              based on weight (51-100 lbs) - 272
49966                                                                                     application
49978                                                                    based on weight (51-100 lbs)
49985                                                                    based on weight (51-100 lbs)
49986                                                                                 based on weight
49987                                                                                 based on weight
49990                                                                                  1 pack/package
49991                                                                    based on weight (51-100 lbs)
49992                                                                                       4-6 drops
49993                                                                                 based on weight
49996                                                                                     as directed
50000                                                                           1 tablet/pill/capsule
50001                                                                    based on weight (51-100 lbs)
50002                                                                                         3 pumps
50004                                                                    based on weight (51-100 lbs)
50006                                                                                 based on weight
50007                                                                                     unspecified
50008                                                                    based on weight (51-100 lbs)
50009                                                                                 based on weight
50011                                                                                     unspecified
50012                                                                                     unspecified
50014                                                                                     unspecified
50029                                                                           1 tablet/pill/capsule
50030                                                                                          1 tube
50033                                                                           1 tablet/pill/capsule
50034                                                                                          1 tube
50048                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
50050                                                                                     unspecified
50073                                                                                          1 tube
50077                                                                                 based on weight
50107                                                                    based on weight (51-100 lbs)
50108                                                                     based on weight (44-88 lbs)
50115                                                                                     unspecified
50116                                                                     based on weight (20-60 lbs)
50117                                                                    based on weight (50-100 lbs)
50118                                                                    based on weight (50-100 lbs)
50154                                                           23 milbemycin oxime, 228 praziquantel
50159                                                                                     unspecified
50161                                                                                     unspecified
50187                                                                    based on weight (51-100 lbs)
50189                                                                    based on weight (51-100 lbs)
50190                                                                    based on weight (51-100 lbs)
50194                                                                    based on weight (51-100 lbs)
50195                                                                       based on weight (55+ lbs)
50196                                                                    based on weight (51-100 lbs)
50198                                                                    based on weight (51-100 lbs)
50199                                                                       based on weight (55+ lbs)
          dose_unit
22      unspecified
40    other specify
41      unspecified
42    other specify
46    other specify
48    other specify
49    other specify
51    other specify
59    other specify
60    other specify
62    other specify
63    other specify
67    other specify
70    other specify
74    other specify
84    other specify
87    other specify
91            drops
111           drops
112           drops
113           drops
114           drops
149   other specify
150   other specify
151   other specify
152   other specify
153   other specify
155   other specify
167     unspecified
188   other specify
192   other specify
220   other specify
230             mcg
233   other specify
235             mcg
236   other specify
237   other specify
238   other specify
242              ml
243   other specify
248   other specify
257           units
275   other specify
276   other specify
277   other specify
279   other specify
280   other specify
310             mcg
317           units
318           units
324   other specify
328   other specify
329   other specify
332   other specify
333   other specify
347              mg
348              mg
350              mg
351              mg
353              mg
355              mg
366     unspecified
368              mg
375   other specify
376   other specify
383   other specify
384   other specify
385   other specify
386   other specify
403             mcg
404              mg
414              mg
447           drops
449     unspecified
453           drops
480   other specify
496             mcg
498   other specify
519   other specify
537           drops
597   other specify
598   other specify
603   other specify
604   other specify
610           drops
619   other specify
637   other specify
642              ml
686     unspecified
688              mg
703   other specify
704   other specify
709     unspecified
710     unspecified
712     unspecified
725              mg
728   other specify
729   other specify
730             mcg
733           drops
734   other specify
737           drops
738   other specify
739   other specify
754   other specify
755   other specify
757   other specify
760           drops
778     unspecified
785   other specify
790   other specify
792   other specify
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803   other specify
804   other specify
810   other specify
816   other specify
819             mcg
820             mcg
823              ml
824   other specify
832     unspecified
850              ml
851             mcg
862   other specify
871              mg
874              mg
877           drops
878              mg
879              mg
880              mg
884              mg
887              mg
891              mg
893              mg
899              mg
901           drops
905              ml
913   other specify
921   other specify
929           drops
930           drops
950           units
955   other specify
958             mcg
969           drops
970   other specify
977           drops
982   other specify
983   other specify
989   other specify
1001    unspecified
1017  other specify
1018  other specify
1019  other specify
1020  other specify
1021  other specify
1027  other specify
1028          drops
1029  other specify
1030  other specify
1031          drops
1033          drops
1036  other specify
1037  other specify
1039  other specify
1042  other specify
1050  other specify
1072          drops
1073  other specify
1074  other specify
1087  other specify
1091          drops
1097             mg
1098             ml
1099  other specify
1100  other specify
1101  other specify
1108  other specify
1111             mg
1112  other specify
1116            mcg
1129  other specify
1131          drops
1150  other specify
1152  other specify
1153  other specify
1154  other specify
1155  other specify
1159  other specify
1160  other specify
1161  other specify
1168          units
1169          units
1170  other specify
1173  other specify
1174             mg
1175  other specify
1176            mcg
1177  other specify
1179  other specify
1185  other specify
1186  other specify
1187             mg
1189  other specify
1190  other specify
1193             mg
1194          units
1195  other specify
1208  other specify
1217            mcg
1226  other specify
1233    unspecified
1247  other specify
1285             mg
1336    unspecified
1344  other specify
1345          drops
1346  other specify
1348  other specify
1355  other specify
1371  other specify
1377             mg
1378             mg
1379             mg
1380             mg
1398          drops
1404  other specify
1405          drops
1415  other specify
1417  other specify
1419  other specify
1420             mg
1422  other specify
1434  other specify
1435  other specify
1438  other specify
1441  other specify
1442  other specify
1443  other specify
1450  other specify
1451  other specify
1459  other specify
1462  other specify
1464  other specify
1473    unspecified
1475    unspecified
1491          units
1499             mg
1500             mg
1501  other specify
1504            tsp
1511  other specify
1512  other specify
1514  other specify
1528  other specify
1529  other specify
1532  other specify
1534          units
1535          units
1536  other specify
1537             mg
1538             mg
1539  other specify
1541    unspecified
1542    unspecified
1556  other specify
1572             mg
1586             oz
1587  other specify
1598  other specify
1599            mcg
1633  other specify
1634          drops
1635  other specify
1636          units
1650    unspecified
1663  other specify
1668  other specify
1683  other specify
1684  other specify
1685  other specify
1689  other specify
1690  other specify
1692  other specify
1695          drops
1697  other specify
1708             mg
1710             mg
1712  other specify
1715  other specify
1718             mg
1720  other specify
1729             ml
1730            mcg
1743            mcg
1747  other specify
1748  other specify
1749  other specify
1756  other specify
1757  other specify
1758  other specify
1759  other specify
1760          mg/ml
1761             mg
1769             mg
1773  other specify
1774             mg
1789          drops
1791    unspecified
1794    unspecified
1795    unspecified
1796  other specify
1798             ml
1805          drops
1809             mg
1812            tsp
1813            tbs
1819          drops
1820  other specify
1823          drops
1845  other specify
1846  other specify
1847  other specify
1848  other specify
1849  other specify
1850  other specify
1851  other specify
1867  other specify
1872  other specify
1877  other specify
1887  other specify
1888  other specify
1917  other specify
1922  other specify
1925  other specify
1926  other specify
1928  other specify
1929  other specify
1931  other specify
1939  other specify
1941  other specify
1945  other specify
1948  other specify
1962  other specify
1965             ml
1980  other specify
1981  other specify
1982  other specify
1983  other specify
1984  other specify
1985  other specify
1994    unspecified
1998  other specify
2006            mcg
2012    unspecified
2013    unspecified
2016  other specify
2022  other specify
2025  other specify
2026  other specify
2029            mcg
2030             mg
2032  other specify
2033  other specify
2034  other specify
2041  other specify
2042  other specify
2043             ml
2050  other specify
2075  other specify
2083  other specify
2084  other specify
2085  other specify
2087  other specify
2088  other specify
2089  other specify
2091  other specify
2093  other specify
2107  other specify
2108  other specify
2109  other specify
2110  other specify
2113  other specify
2115          drops
2116  other specify
2123  other specify
2126  other specify
2127  other specify
2149  other specify
2151  other specify
2161  other specify
2165  other specify
2166          drops
2195  other specify
2199  other specify
2200  other specify
2201  other specify
2202  other specify
2203  other specify
2204  other specify
2205  other specify
2206  other specify
2207  other specify
2211          drops
2219  other specify
2220  other specify
2224  other specify
2226  other specify
2228            tbs
2229  other specify
2233             mg
2241  other specify
2243  other specify
2244  other specify
2250  other specify
2255  other specify
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2269    unspecified
2270    unspecified
2272             ml
2278            mcg
2279          units
2280  other specify
2283  other specify
2301  other specify
2302             ml
2339          drops
2342          drops
2390  other specify
2398  other specify
2404  other specify
2405  other specify
2406            tsp
2409             mg
2418            mcg
2428             mg
2463  other specify
2464          units
2467            tbs
2473          drops
2474          drops
2477             mg
2478             mg
2479  other specify
2481  other specify
2482  other specify
2486  other specify
2487  other specify
2490  other specify
2491  other specify
2492  other specify
2499  other specify
2500  other specify
2501             mg
2502             mg
2503             mg
2504  other specify
2505  other specify
2506  other specify
2508  other specify
2517             mg
2518  other specify
2534          drops
2539  other specify
2540  other specify
2542  other specify
2543  other specify
2545  other specify
2546  other specify
2547  other specify
2548  other specify
2549    unspecified
2550    unspecified
2558  other specify
2559  other specify
2560  other specify
2562             mg
2566             mg
2575    unspecified
2578  other specify
2580  other specify
2583             ml
2599          drops
2600  other specify
2642  other specify
2651  other specify
2652          drops
2653          drops
2655    unspecified
2659  other specify
2660  other specify
2661  other specify
2699  other specify
2710  other specify
2721          drops
2726  other specify
2731             mg
2735             mg
2737             mg
2738             mg
2739             mg
2742  other specify
2743  other specify
2745  other specify
2746  other specify
2748  other specify
2749  other specify
2753  other specify
2756  other specify
2805             mg
2815             mg
2818  other specify
2825  other specify
2827  other specify
2828  other specify
2833          units
2838  other specify
2839             ml
2842             oz
2844             mg
2846  other specify
2855  other specify
2869          units
2897  other specify
2900  other specify
2903  other specify
2904  other specify
2905  other specify
2907  other specify
2911  other specify
2912  other specify
2913             gm
2919             mg
2920             mg
2921  other specify
2922  other specify
2923  other specify
2925  other specify
2941             mg
2942  other specify
2943  other specify
2944          drops
2946          drops
2951          drops
2958  other specify
2959  other specify
2960  other specify
2961  other specify
2962  other specify
2963  other specify
2964  other specify
2974  other specify
2975  other specify
2978  other specify
2980          drops
2981             mg
2988          drops
2993    unspecified
2997             mg
3002             mg
3003  other specify
3007          drops
3028          drops
3031    unspecified
3055  other specify
3058  other specify
3060  other specify
3095  other specify
3110          drops
3119          drops
3140  other specify
3147          drops
3179             mg
3180             mg
3208             mg
3209             mg
3212             ml
3246  other specify
3247  other specify
3250  other specify
3251  other specify
3253  other specify
3257            mcg
3271  other specify
3278  other specify
3280  other specify
3284  other specify
3287  other specify
3291  other specify
3293  other specify
3294  other specify
3300  other specify
3305  other specify
3312  other specify
3313  other specify
3339  other specify
3342  other specify
3345             mg
3346             mg
3350          units
3360  other specify
3366          drops
3372          units
3375          units
3376  other specify
3394    unspecified
3399             mg
3403             mg
3404  other specify
3405  other specify
3406  other specify
3421          drops
3422          drops
3423             ml
3425  other specify
3426  other specify
3429          units
3437          drops
3439          drops
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3451             mg
3455             mg
3456  other specify
3457  other specify
3458  other specify
3459             mg
3488  other specify
3490  other specify
3491  other specify
3492  other specify
3495  other specify
3496  other specify
3497  other specify
3498  other specify
3512  other specify
3513  other specify
3514  other specify
3515          units
3516  other specify
3517    unspecified
3519  other specify
3520             mg
3522             mg
3525            mcg
3530  other specify
3531          drops
3535          drops
3581  other specify
3619             mg
3622  other specify
3631  other specify
3632  other specify
3635             mg
3636             ml
3639          drops
3640          drops
3641  other specify
3649             mg
3650          units
3652             mg
3666  other specify
3667  other specify
3675  other specify
3684  other specify
3685  other specify
3691  other specify
3692  other specify
3693  other specify
3698  other specify
3699  other specify
3701  other specify
3704  other specify
3705  other specify
3706             mg
3710    unspecified
3718          drops
3719  other specify
3725            mcg
3726  other specify
3735          drops
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3750             mg
3760             mg
3773          drops
3781          drops
3782          drops
3783          drops
3784             mg
3785             mg
3786             mg
3789    unspecified
3797  other specify
3798  other specify
3800  other specify
3815          units
3829          drops
3830             ml
3835            tbs
3836            tbs
3838          units
3840  other specify
3848  other specify
3857  other specify
3858  other specify
3859  other specify
3860  other specify
3861             gm
3867          drops
3870             mg
3871             mg
3872          units
3874  other specify
3881            mcg
3886  other specify
3889  other specify
3897  other specify
3898    unspecified
3900            mcg
3903  other specify
3906  other specify
3911  other specify
3938  other specify
3943  other specify
3944  other specify
3945          drops
3946  other specify
3952  other specify
3972  other specify
3980  other specify
3984  other specify
3989  other specify
3990  other specify
4000    unspecified
4017  other specify
4030             mg
4031  other specify
4042    unspecified
4044             ml
4045  other specify
4058  other specify
4059             mg
4060            mcg
4063            mcg
4064             mg
4066  other specify
4067  other specify
4068             ml
4069             mg
4070             mg
4071  other specify
4072  other specify
4073  other specify
4074             ml
4075             mg
4077             mg
4087          drops
4088  other specify
4089          drops
4092  other specify
4095  other specify
4096             mg
4097             mg
4111  other specify
4112  other specify
4113          drops
4114          drops
4116             mg
4117  other specify
4118  other specify
4119          drops
4120  other specify
4125             mg
4127  other specify
4128  other specify
4131  other specify
4132    unspecified
4133    unspecified
4134          drops
4159             ml
4160             ml
4162             ml
4172  other specify
4183  other specify
4184          units
4189  other specify
4190  other specify
4191  other specify
4193          drops
4198  other specify
4199  other specify
4204  other specify
4209  other specify
4210  other specify
4212             mg
4213             mg
4215             mg
4216          drops
4218          drops
4229  other specify
4244             ml
4245          drops
4247            mcg
4265          drops
4266          drops
4274    unspecified
4298  other specify
4299  other specify
4302  other specify
4304  other specify
4305  other specify
4306  other specify
4307  other specify
4308             mg
4309             mg
4311             mg
4313  other specify
4314  other specify
4323  other specify
4324  other specify
4325  other specify
4326  other specify
4334             ml
4336  other specify
4338  other specify
4348  other specify
4349  other specify
4350  other specify
4353  other specify
4354  other specify
4360  other specify
4368             mg
4371             mg
4384             mg
4389  other specify
4390  other specify
4395            mcg
4405             mg
4409  other specify
4426  other specify
4427  other specify
4428  other specify
4430  other specify
4431  other specify
4444  other specify
4445  other specify
4446  other specify
4454  other specify
4469  other specify
4470  other specify
4471  other specify
4472  other specify
4480  other specify
4481  other specify
4483  other specify
4486  other specify
4488             ml
4491             ml
4497  other specify
4499             mg
4500             mg
4501  other specify
4502  other specify
4504  other specify
4505  other specify
4509  other specify
4510  other specify
4511  other specify
4515  other specify
4516  other specify
4517             gm
4524  other specify
4532  other specify
4533            tsp
4534  other specify
4536  other specify
4544          units
4545  other specify
4547          drops
4558  other specify
4559  other specify
4560  other specify
4561  other specify
4562  other specify
4564  other specify
4565  other specify
4566  other specify
4567  other specify
4568  other specify
4569  other specify
4587          units
4597  other specify
4599            mcg
4611             mg
4627             ml
4628             ml
4629             mg
4631             ml
4634  other specify
4638             ml
4640             gm
4642             mg
4643  other specify
4644          drops
4645          drops
4646  other specify
4647          drops
4648             mg
4649             ml
4651  other specify
4652  other specify
4654             ml
4655             mg
4695  other specify
4711          drops
4717             mg
4719          drops
4720          drops
4726  other specify
4738  other specify
4739  other specify
4743          drops
4744          drops
4745             mg
4748          units
4757          drops
4760  other specify
4761            tsp
4763  other specify
4764             oz
4766  other specify
4777  other specify
4780  other specify
4782  other specify
4801             mg
4802  other specify
4803          drops
4805          drops
4806  other specify
4813    unspecified
4824             ml
4826  other specify
4828  other specify
4832  other specify
4850  other specify
4853  other specify
4855             mg
4858             mg
4859            mcg
4861            mcg
4862            mcg
4881  other specify
4902  other specify
4904  other specify
4905             mg
4910  other specify
4912             mg
4913  other specify
4914             mg
4917            mcg
4935  other specify
4956  other specify
4960  other specify
4968             mg
4969             mg
4980  other specify
4981             mg
4996  other specify
4998          drops
5043          units
5046          units
5078  other specify
5122          units
5123          units
5125             ml
5127  other specify
5134          units
5140             mg
5159    unspecified
5160    unspecified
5161    unspecified
5173  other specify
5174  other specify
5191             mg
5193          drops
5195  other specify
5203  other specify
5210  other specify
5211  other specify
5212  other specify
5213  other specify
5214  other specify
5220  other specify
5221  other specify
5222  other specify
5223  other specify
5225  other specify
5234  other specify
5235  other specify
5243  other specify
5244  other specify
5247  other specify
5248  other specify
5253  other specify
5255  other specify
5256  other specify
5257  other specify
5258  other specify
5261  other specify
5262  other specify
5264  other specify
5265  other specify
5270  other specify
5271  other specify
5289  other specify
5332  other specify
5333  other specify
5334  other specify
5335  other specify
5336  other specify
5337            mcg
5340  other specify
5341  other specify
5354  other specify
5357          drops
5359            mcg
5360            mcg
5362  other specify
5369  other specify
5377            mcg
5378  other specify
5379  other specify
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5391  other specify
5392  other specify
5403  other specify
5424  other specify
5428  other specify
5440             mg
5460          drops
5464             mg
5469             ml
5483  other specify
5484             mg
5491          drops
5492  other specify
5497  other specify
5498  other specify
5499  other specify
5500  other specify
5501  other specify
5502  other specify
5507  other specify
5508  other specify
5509  other specify
5511  other specify
5513  other specify
5527  other specify
5528  other specify
5529  other specify
5533  other specify
5534  other specify
5535          drops
5537  other specify
5541  other specify
5542  other specify
5545  other specify
5546  other specify
5552            tbs
5553            tbs
5557  other specify
5568  other specify
5571  other specify
5576  other specify
5577  other specify
5578  other specify
5595  other specify
5600  other specify
5602  other specify
5607             mg
5626  other specify
5627          units
5628          units
5629             mg
5630             mg
5631  other specify
5632  other specify
5641             ml
5649  other specify
5681  other specify
5682  other specify
5695             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5728             mg
5729          drops
5731          drops
5747  other specify
5760  other specify
5762             mg
5768  other specify
5771             mg
5777  other specify
5804             mg
5814            tsp
5834            mcg
5839             mg
5840             mg
5858  other specify
5869            mcg
5877  other specify
5884  other specify
5887          drops
5913  other specify
5917          drops
5930  other specify
5932    unspecified
5933  other specify
5934  other specify
5935          drops
5936  other specify
5937  other specify
5941  other specify
5942  other specify
5945  other specify
5963  other specify
5964  other specify
5965             mg
5967             mg
5976          drops
5980  other specify
5981  other specify
5988             mg
5991  other specify
5992  other specify
5993            mcg
5994          drops
6000             mg
6002  other specify
6003             mg
6004             ml
6005             gm
6014            mcg
6015            mcg
6016             mg
6017             mg
6036             mg
6038  other specify
6039  other specify
6059  other specify
6063  other specify
6068          units
6069  other specify
6071  other specify
6072  other specify
6074  other specify
6076  other specify
6078  other specify
6088  other specify
6090  other specify
6093  other specify
6094             ml
6095  other specify
6101             mg
6102             mg
6104             mg
6109             mg
6129  other specify
6130  other specify
6132  other specify
6133  other specify
6134          units
6135          units
6136  other specify
6137  other specify
6139  other specify
6140  other specify
6148             mg
6149             mg
6150             mg
6161             mg
6164  other specify
6200  other specify
6202  other specify
6206  other specify
6208  other specify
6215  other specify
6217             mg
6218  other specify
6221          drops
6224  other specify
6225  other specify
6226  other specify
6231  other specify
6232  other specify
6244          drops
6254  other specify
6257  other specify
6258  other specify
6262  other specify
6263  other specify
6266          drops
6267          drops
6275  other specify
6282            mcg
6283  other specify
6284             mg
6293  other specify
6296            tsp
6302            mcg
6307             mg
6312    unspecified
6319    unspecified
6320    unspecified
6325             mg
6326  other specify
6328             mg
6329  other specify
6331  other specify
6341  other specify
6342             oz
6343             mg
6358  other specify
6388          drops
6390    unspecified
6395  other specify
6399          drops
6405  other specify
6406  other specify
6411          units
6437            mcg
6441             mg
6443          drops
6444  other specify
6451  other specify
6459             mg
6461          drops
6474  other specify
6475  other specify
6486             mg
6495  other specify
6497  other specify
6499  other specify
6500  other specify
6522  other specify
6523  other specify
6527  other specify
6528  other specify
6555  other specify
6562  other specify
6565  other specify
6569  other specify
6570  other specify
6571  other specify
6573  other specify
6579  other specify
6581            mcg
6594  other specify
6602  other specify
6606            mcg
6612  other specify
6625  other specify
6636  other specify
6644  other specify
6647  other specify
6648  other specify
6650             ml
6657  other specify
6658  other specify
6662  other specify
6663  other specify
6680  other specify
6683  other specify
6687  other specify
6688  other specify
6693  other specify
6694             mg
6696  other specify
6697          drops
6698  other specify
6702  other specify
6703          drops
6714             mg
6715  other specify
6716  other specify
6717  other specify
6733            mcg
6751    unspecified
6759          drops
6760  other specify
6763            mcg
6764  other specify
6778  other specify
6779  other specify
6781  other specify
6783  other specify
6786          drops
6796  other specify
6797             mg
6815             mg
6816  other specify
6817  other specify
6818          drops
6824    unspecified
6826             mg
6828  other specify
6864             ml
6868  other specify
6880  other specify
6886  other specify
6891  other specify
6892  other specify
6908  other specify
6909  other specify
6910  other specify
6928  other specify
6934          drops
6935          drops
6936          drops
6946             mg
6956    unspecified
6957  other specify
6981  other specify
6982  other specify
6983  other specify
6984  other specify
6986             mg
6999  other specify
7002             mg
7005    unspecified
7006    unspecified
7017  other specify
7018          drops
7021  other specify
7023             ml
7025          drops
7027             gm
7030             mg
7042          drops
7054            mcg
7067  other specify
7071          drops
7092  other specify
7093  other specify
7095             mg
7096             mg
7116          drops
7127    unspecified
7130             mg
7131            mcg
7137  other specify
7149  other specify
7151  other specify
7152  other specify
7153  other specify
7154  other specify
7155  other specify
7172  other specify
7173  other specify
7175             oz
7177             oz
7180  other specify
7189  other specify
7208  other specify
7218             mg
7240          drops
7243            mcg
7247  other specify
7248  other specify
7249  other specify
7260  other specify
7261  other specify
7262  other specify
7291  other specify
7295  other specify
7297  other specify
7320  other specify
7342  other specify
7344  other specify
7345  other specify
7346          drops
7371  other specify
7413  other specify
7499            mcg
7503  other specify
7510  other specify
7511  other specify
7512  other specify
7513  other specify
7519            mcg
7521            mcg
7524  other specify
7525            mcg
7526             mg
7551  other specify
7555  other specify
7563  other specify
7564    unspecified
7565            mcg
7566  other specify
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7583  other specify
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7598  other specify
7635             mg
7660  other specify
7671             mg
7673  other specify
7674  other specify
7675             mg
7678  other specify
7679  other specify
7681             mg
7692             mg
7696             mg
7699             mg
7701             mg
7705  other specify
7732  other specify
7742          units
7743          units
7746  other specify
7747  other specify
7748          units
7749          units
7750          units
7751          drops
7754             ml
7759  other specify
7763  other specify
7772    unspecified
7776    unspecified
7783  other specify
7784  other specify
7787          drops
7795  other specify
7812  other specify
7818    unspecified
7820    unspecified
7822    unspecified
7832             ml
7839  other specify
7845          drops
7846          drops
7848             ml
7852    unspecified
7853  other specify
7854    unspecified
7862             mg
7883  other specify
7884  other specify
7885             ml
7887          units
7889          units
7895          drops
7926  other specify
7929  other specify
7941             ml
7944          drops
7946          drops
7961  other specify
7966  other specify
7967  other specify
7968  other specify
7969  other specify
7970             mg
7973          drops
7987             mg
7988  other specify
7993  other specify
7995             mg
7998  other specify
8000  other specify
8009  other specify
8012  other specify
8014  other specify
8017  other specify
8029            mcg
8030  other specify
8040            mcg
8042             mg
8043             mg
8044             mg
8045             mg
8075    unspecified
8086  other specify
8091             mg
8098             oz
8099             oz
8120  other specify
8121  other specify
8123  other specify
8125          units
8128  other specify
8130  other specify
8131  other specify
8136  other specify
8137  other specify
8138  other specify
8139  other specify
8140  other specify
8160  other specify
8182  other specify
8184  other specify
8185  other specify
8186  other specify
8187  other specify
8188  other specify
8195  other specify
8196  other specify
8205  other specify
8206  other specify
8207  other specify
8208  other specify
8209             mg
8210          units
8211          units
8212  other specify
8215  other specify
8221  other specify
8222  other specify
8223          units
8224            mcg
8234  other specify
8235  other specify
8236  other specify
8238          units
8248  other specify
8251             mg
8252  other specify
8280    unspecified
8284  other specify
8293  other specify
8296  other specify
8297  other specify
8298          drops
8299  other specify
8300          drops
8304             ml
8305  other specify
8311          drops
8312          drops
8313          drops
8314             mg
8315             mg
8337             mg
8338             mg
8341          drops
8349  other specify
8354  other specify
8355  other specify
8358  other specify
8359  other specify
8362  other specify
8369  other specify
8370  other specify
8371  other specify
8376  other specify
8377  other specify
8378  other specify
8389            mcg
8405  other specify
8408  other specify
8410  other specify
8418  other specify
8420  other specify
8421  other specify
8424  other specify
8425  other specify
8427  other specify
8435  other specify
8436  other specify
8440            mcg
8454  other specify
8466  other specify
8467  other specify
8475  other specify
8478  other specify
8509  other specify
8514  other specify
8515  other specify
8528  other specify
8531  other specify
8541             oz
8546          drops
8550             mg
8554  other specify
8555  other specify
8578  other specify
8581  other specify
8582  other specify
8583          drops
8584          drops
8585  other specify
8586  other specify
8588          drops
8591  other specify
8607  other specify
8609  other specify
8613             mg
8673             mg
8674  other specify
8675  other specify
8676  other specify
8677  other specify
8694  other specify
8697             ml
8702  other specify
8707  other specify
8731  other specify
8735  other specify
8736  other specify
8744    unspecified
8745    unspecified
8756  other specify
8757             mg
8759  other specify
8760  other specify
8768  other specify
8769  other specify
8770  other specify
8771  other specify
8777  other specify
8778  other specify
8779  other specify
8780  other specify
8781  other specify
8786  other specify
8790  other specify
8791  other specify
8792    unspecified
8793  other specify
8794  other specify
8795  other specify
8797             mg
8805  other specify
8815  other specify
8819  other specify
8820  other specify
8825             mg
8826  other specify
8828  other specify
8831            mcg
8833  other specify
8837             mg
8843             ml
8851    unspecified
8852    unspecified
8853    unspecified
8860          drops
8875    unspecified
8876    unspecified
8877          drops
8879  other specify
8885            mcg
8908             mg
8911  other specify
8929            mcg
8930            mcg
8961            mcg
8962            mcg
8995             ml
8997             ml
8998             ml
9026  other specify
9046  other specify
9047          drops
9049          drops
9050  other specify
9052             oz
9053  other specify
9054  other specify
9055  other specify
9056             mg
9060  other specify
9064          drops
9065             gm
9070  other specify
9071  other specify
9084    unspecified
9094  other specify
9095  other specify
9098  other specify
9099             mg
9100  other specify
9101  other specify
9109  other specify
9118  other specify
9132  other specify
9135             mg
9136  other specify
9137             mg
9156          drops
9160  other specify
9161  other specify
9170  other specify
9187          drops
9189  other specify
9193  other specify
9202  other specify
9230  other specify
9236  other specify
9239             ml
9240  other specify
9241  other specify
9242  other specify
9244          drops
9252  other specify
9253  other specify
9254  other specify
9259          units
9267  other specify
9269            mcg
9271             mg
9292             mg
9294             mg
9295             mg
9297             mg
9384          drops
9385          drops
9386  other specify
9387  other specify
9416             ml
9418          drops
9421  other specify
9422  other specify
9426  other specify
9429  other specify
9432  other specify
9433            tbs
9434  other specify
9435  other specify
9436  other specify
9438  other specify
9447          drops
9452            mcg
9453  other specify
9454  other specify
9494  other specify
9495  other specify
9511             mg
9516  other specify
9524             ml
9544  other specify
9546  other specify
9548  other specify
9549  other specify
9584  other specify
9588          drops
9592    unspecified
9596          drops
9600  other specify
9601  other specify
9602             mg
9603             mg
9604             mg
9609  other specify
9610  other specify
9612  other specify
9613  other specify
9614  other specify
9615  other specify
9616  other specify
9617  other specify
9618  other specify
9619  other specify
9620  other specify
9621  other specify
9635             mg
9640  other specify
9641  other specify
9643  other specify
9718  other specify
9723          units
9759  other specify
9760             ml
9761  other specify
9763             mg
9764             mg
9765             mg
9766  other specify
9770  other specify
9785            mcg
9791             mg
9800  other specify
9807          drops
9808          drops
9809          drops
9821  other specify
9823             ml
9824          drops
9825             ml
9826  other specify
9827          drops
9828             mg
9833  other specify
9837    unspecified
9840    unspecified
9843    unspecified
9863  other specify
9865  other specify
9873    unspecified
9877    unspecified
9884  other specify
9889  other specify
9890  other specify
9891  other specify
9892  other specify
9893  other specify
9894          units
9895          units
9896          units
9897  other specify
9898  other specify
9899  other specify
9900  other specify
9901  other specify
9902  other specify
9903  other specify
9907    unspecified
9917  other specify
9928    unspecified
9931  other specify
9935  other specify
9942  other specify
9943             mg
9944  other specify
9945  other specify
9961  other specify
9963  other specify
9966  other specify
9968  other specify
9970  other specify
9972          units
10017 other specify
10026            mg
10027 other specify
10037         drops
10042   unspecified
10053 other specify
10061 other specify
10063 other specify
10066 other specify
10074         drops
10075           mcg
10092         drops
10093   unspecified
10106           mcg
10107            ml
10108           mcg
10109            ml
10111           mcg
10112           mcg
10113            ml
10115 other specify
10116         drops
10119           mcg
10120         drops
10121 other specify
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134 other specify
10149         drops
10151         drops
10160            mg
10167 other specify
10170 other specify
10176 other specify
10187 other specify
10188 other specify
10195            mg
10198            ml
10200 other specify
10209 other specify
10219 other specify
10230 other specify
10231 other specify
10232            mg
10233            mg
10234            mg
10235           mcg
10245 other specify
10249 other specify
10260   unspecified
10264 other specify
10273 other specify
10274 other specify
10275 other specify
10276 other specify
10301            mg
10312         drops
10313            mg
10314            mg
10316            mg
10320            mg
10324            ml
10334 other specify
10335 other specify
10345 other specify
10347 other specify
10348 other specify
10349 other specify
10356 other specify
10365 other specify
10366 other specify
10370           mcg
10372           mcg
10374           mcg
10379            mg
10400            ml
10403 other specify
10405 other specify
10408 other specify
10409            mg
10410            mg
10412            mg
10429         drops
10432           mcg
10435            ml
10436 other specify
10441   unspecified
10445 other specify
10470            gm
10477 other specify
10478 other specify
10483           mcg
10485           mcg
10487           mcg
10499            mg
10503 other specify
10505 other specify
10506           mcg
10525            ml
10526 other specify
10529 other specify
10555 other specify
10557   unspecified
10565   unspecified
10573   unspecified
10575 other specify
10576            mg
10577            mg
10578            mg
10579            mg
10580            mg
10583 other specify
10588 other specify
10589 other specify
10590 other specify
10591 other specify
10610           mcg
10617            ml
10618 other specify
10619 other specify
10624 other specify
10628 other specify
10642            oz
10653 other specify
10655 other specify
10667            mg
10671            mg
10678            mg
10682            mg
10683 other specify
10684 other specify
10685 other specify
10686 other specify
10687 other specify
10688           tbs
10689 other specify
10693            mg
10694 other specify
10696         drops
10697           tbs
10701            mg
10706            mg
10707 other specify
10711 other specify
10712 other specify
10713 other specify
10714 other specify
10715           tbs
10717 other specify
10718         drops
10725 other specify
10726 other specify
10727 other specify
10740   unspecified
10743 other specify
10751   unspecified
10755           mcg
10756 other specify
10769           mcg
10780 other specify
10781 other specify
10792           mcg
10794 other specify
10796           mcg
10825 other specify
10827 other specify
10830 other specify
10837 other specify
10841 other specify
10842 other specify
10843 other specify
10846 other specify
10849 other specify
10853 other specify
10863 other specify
10865         units
10866         units
10870 other specify
10871 other specify
10874 other specify
10877 other specify
10878 other specify
10892         drops
10896         drops
10898            ml
10899         drops
10901         drops
10905 other specify
10928 other specify
10929 other specify
10934 other specify
10938 other specify
10953         drops
10959         drops
10970 other specify
10971 other specify
11003 other specify
11008 other specify
11009 other specify
11010 other specify
11011 other specify
11016 other specify
11021   unspecified
11035 other specify
11036 other specify
11037 other specify
11038 other specify
11052 other specify
11065            mg
11069 other specify
11070 other specify
11085   unspecified
11088   unspecified
11093            mg
11134 other specify
11142   unspecified
11144            oz
11145            oz
11152 other specify
11153 other specify
11155         units
11156         units
11158 other specify
11159         units
11163         units
11165 other specify
11182   unspecified
11186 other specify
11189            mg
11208            mg
11210 other specify
11211 other specify
11212 other specify
11213   unspecified
11224 other specify
11228 other specify
11229           mcg
11233 other specify
11241            mg
11242 other specify
11276            mg
11291 other specify
11292 other specify
11293 other specify
11294 other specify
11295 other specify
11296 other specify
11301            mg
11305            mg
11307 other specify
11311           mcg
11312           mcg
11315            mg
11316            mg
11317            mg
11318            mg
11326 other specify
11327 other specify
11338 other specify
11340            mg
11346 other specify
11349 other specify
11350         units
11351         units
11352         units
11353            mg
11354         units
11356 other specify
11360   unspecified
11368 other specify
11385 other specify
11386 other specify
11387 other specify
11388 other specify
11394 other specify
11415 other specify
11436 other specify
11437 other specify
11441            mg
11464 other specify
11470   unspecified
11471   unspecified
11473 other specify
11477 other specify
11493   unspecified
11509 other specify
11536            mg
11537         units
11538         units
11545            mg
11546 other specify
11547            mg
11551   unspecified
11560 other specify
11561 other specify
11562 other specify
11564         units
11567 other specify
11568 other specify
11570 other specify
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11589 other specify
11593 other specify
11596 other specify
11599 other specify
11600 other specify
11620         drops
11621         drops
11627         units
11628         units
11630         units
11633           mcg
11637 other specify
11641            mg
11651 other specify
11652 other specify
11653 other specify
11654 other specify
11655 other specify
11656 other specify
11660 other specify
11661 other specify
11662 other specify
11664 other specify
11666         drops
11667         drops
11671         drops
11673         drops
11678 other specify
11680 other specify
11681 other specify
11683 other specify
11691 other specify
11692         drops
11693           tbs
11695 other specify
11701 other specify
11702           mcg
11709 other specify
11710 other specify
11719         units
11722         drops
11723            mg
11735 other specify
11741 other specify
11742            ml
11790         drops
11802            mg
11806 other specify
11812 other specify
11813            mg
11814 other specify
11817            mg
11822 other specify
11823 other specify
11824 other specify
11825 other specify
11832           mcg
11833 other specify
11835 other specify
11836 other specify
11837 other specify
11840            mg
11844            mg
11846            mg
11847 other specify
11848 other specify
11850            mg
11856         drops
11861           mcg
11862           mcg
11873 other specify
11874 other specify
11875 other specify
11876            mg
11879         drops
11881 other specify
11882 other specify
11889 other specify
11898           mcg
11911            mg
11919 other specify
11930 other specify
11959            mg
11960 other specify
11962            mg
11964 other specify
11978 other specify
11979            ml
11980 other specify
11983         units
11993         drops
12009         drops
12010         drops
12014 other specify
12018 other specify
12019 other specify
12020 other specify
12043            mg
12047            mg
12048            ml
12051 other specify
12054 other specify
12090 other specify
12108         drops
12111 other specify
12120   unspecified
12128 other specify
12129 other specify
12130         drops
12135 other specify
12136 other specify
12154 other specify
12155 other specify
12159 other specify
12160 other specify
12164 other specify
12173 other specify
12190 other specify
12215           mcg
12221           tsp
12222           tsp
12223 other specify
12261 other specify
12271 other specify
12273 other specify
12279         drops
12283            mg
12299            mg
12306 other specify
12309 other specify
12313            mg
12314            mg
12322            mg
12324 other specify
12334            mg
12336            mg
12337 other specify
12342 other specify
12343 other specify
12346            mg
12349 other specify
12351            mg
12353            mg
12364            mg
12366 other specify
12376            mg
12379            mg
12386            ml
12394   unspecified
12398           mcg
12402 other specify
12405           tsp
12406 other specify
12409 other specify
12410 other specify
12411 other specify
12414 other specify
12415 other specify
12417 other specify
12418 other specify
12420 other specify
12421         units
12422         units
12423 other specify
12427   unspecified
12429         drops
12430 other specify
12431 other specify
12432 other specify
12433           mcg
12434            mg
12438           mcg
12439            mg
12453           mcg
12454 other specify
12455           mcg
12456 other specify
12457 other specify
12461 other specify
12462 other specify
12463           tbs
12466            mg
12473 other specify
12474 other specify
12475            mg
12477   unspecified
12481 other specify
12485         drops
12487            mg
12495 other specify
12497 other specify
12498 other specify
12500 other specify
12506         drops
12511 other specify
12512 other specify
12514         drops
12516         units
12520 other specify
12521 other specify
12523 other specify
12528 other specify
12529 other specify
12530 other specify
12535 other specify
12536         units
12540 other specify
12541 other specify
12542 other specify
12543 other specify
12546 other specify
12547         units
12548         units
12549         units
12550 other specify
12551 other specify
12552 other specify
12553 other specify
12554 other specify
12567         drops
12569            mg
12571 other specify
12578           mcg
12580           mcg
12585           mcg
12588            mg
12589           mcg
12595            mg
12596            mg
12605            mg
12608            mg
12615            ml
12616 other specify
12620 other specify
12623 other specify
12630         units
12632         drops
12636   unspecified
12638 other specify
12639 other specify
12642           mcg
12645            mg
12686 other specify
12692            mg
12693 other specify
12712         drops
12714 other specify
12730         drops
12732         drops
12735 other specify
12738            mg
12740            mg
12744            mg
12749            mg
12754            mg
12755            mg
12756         drops
12771 other specify
12774 other specify
12780 other specify
12781         drops
12784 other specify
12786 other specify
12787 other specify
12788 other specify
12795 other specify
12796 other specify
12797 other specify
12801 other specify
12826 other specify
12828 other specify
12836            mg
12849         drops
12850         drops
12861         drops
12865         drops
12866 other specify
12870 other specify
12873         drops
12879 other specify
12880 other specify
12881 other specify
12882 other specify
12894         drops
12895 other specify
12901           mcg
12902            mg
12903            mg
12905            ml
12906 other specify
12907 other specify
12908 other specify
12911   unspecified
12916 other specify
12920 other specify
12929 other specify
12942 other specify
12943 other specify
12945 other specify
12948 other specify
12949           mcg
12952 other specify
12953         drops
12955 other specify
12956 other specify
12957 other specify
12959 other specify
12962         drops
12963 other specify
12966 other specify
12979            oz
12994 other specify
13005 other specify
13006 other specify
13008 other specify
13010   unspecified
13013   unspecified
13020   unspecified
13041         drops
13049 other specify
13061 other specify
13062            ml
13074   unspecified
13075         units
13076         units
13081   unspecified
13084            mg
13086            mg
13096 other specify
13104   unspecified
13108            mg
13109            mg
13114            mg
13115            mg
13116            mg
13124 other specify
13126         drops
13127            ml
13129 other specify
13130 other specify
13133         drops
13136 other specify
13137 other specify
13138         drops
13139           mcg
13142 other specify
13143 other specify
13148            mg
13149 other specify
13150 other specify
13151 other specify
13152 other specify
13154            mg
13157 other specify
13159   unspecified
13160   unspecified
13168 other specify
13169 other specify
13170 other specify
13173         drops
13187 other specify
13188            ml
13189           mcg
13195 other specify
13196 other specify
13198 other specify
13199 other specify
13208 other specify
13209 other specify
13233 other specify
13246 other specify
13248         units
13249         units
13264           mcg
13270            mg
13271 other specify
13277         drops
13278 other specify
13279 other specify
13286            gm
13287            oz
13288           mcg
13297 other specify
13298 other specify
13299           mcg
13307 other specify
13308 other specify
13309 other specify
13313 other specify
13314 other specify
13315         drops
13318         drops
13321 other specify
13331 other specify
13332 other specify
13334            mg
13340         drops
13341 other specify
13343 other specify
13344 other specify
13345         drops
13349            mg
13353         drops
13354 other specify
13355 other specify
13356            mg
13357 other specify
13376         units
13405            mg
13411   unspecified
13454 other specify
13455 other specify
13456            mg
13459 other specify
13460 other specify
13461 other specify
13462 other specify
13464           mcg
13468 other specify
13470 other specify
13471 other specify
13475 other specify
13476 other specify
13479 other specify
13483 other specify
13484 other specify
13496         drops
13502         units
13503         units
13506 other specify
13532 other specify
13537            mg
13538 other specify
13562            mg
13563 other specify
13564            mg
13575 other specify
13576 other specify
13579         drops
13581            mg
13585            mg
13590 other specify
13594         drops
13595         drops
13601 other specify
13603            mg
13605            mg
13609 other specify
13615         drops
13623 other specify
13624 other specify
13625 other specify
13628 other specify
13631 other specify
13654 other specify
13657 other specify
13659         drops
13660 other specify
13666 other specify
13688            ml
13693 other specify
13723 other specify
13724 other specify
13730 other specify
13737 other specify
13740   unspecified
13741   unspecified
13747            mg
13756         drops
13768         drops
13769 other specify
13776 other specify
13782 other specify
13783 other specify
13786 other specify
13796 other specify
13881            ml
13884            ml
13893            mg
13894            mg
13896 other specify
13902            mg
13905            mg
13906            mg
13910 other specify
13912   unspecified
13913   unspecified
13925            mg
13943         units
13946 other specify
13994         units
13995         units
13996         drops
13998 other specify
14006 other specify
14007 other specify
14008         drops
14050 other specify
14051 other specify
14055            mg
14059         drops
14060 other specify
14061            mg
14062            mg
14063         drops
14064 other specify
14106 other specify
14114 other specify
14118            mg
14120            ml
14121            ml
14122            ml
14123            ml
14124            ml
14128            mg
14129 other specify
14131 other specify
14147 other specify
14148 other specify
14151 other specify
14154 other specify
14162 other specify
14163 other specify
14164 other specify
14165         units
14166         units
14170 other specify
14171 other specify
14172 other specify
14173 other specify
14174 other specify
14175         drops
14177 other specify
14178 other specify
14179 other specify
14180         drops
14181 other specify
14190            mg
14219 other specify
14221         drops
14228   unspecified
14238 other specify
14241            ml
14242           mcg
14245            ml
14282            mg
14284         units
14291 other specify
14297           mcg
14301 other specify
14302 other specify
14319           mcg
14323 other specify
14324         drops
14330         drops
14334 other specify
14336         drops
14365           mcg
14366 other specify
14367 other specify
14373 other specify
14376 other specify
14378 other specify
14380 other specify
14385            mg
14386            mg
14387            mg
14388            mg
14404            mg
14406 other specify
14407         drops
14408 other specify
14412            mg
14413            ml
14414 other specify
14420           mcg
14421            mg
14426            mg
14428            mg
14429 other specify
14431 other specify
14432 other specify
14433 other specify
14434 other specify
14443 other specify
14444 other specify
14445 other specify
14446 other specify
14447 other specify
14448 other specify
14449 other specify
14451 other specify
14455 other specify
14471 other specify
14473 other specify
14477         units
14479 other specify
14488 other specify
14489 other specify
14490 other specify
14495 other specify
14498 other specify
14499 other specify
14512         units
14513         units
14528 other specify
14529 other specify
14547 other specify
14563            mg
14576 other specify
14578 other specify
14582 other specify
14583 other specify
14584 other specify
14585 other specify
14586 other specify
14587 other specify
14588 other specify
14601 other specify
14605            mg
14608            mg
14637         drops
14645            mg
14650 other specify
14654 other specify
14656            mg
14658           mcg
14664 other specify
14665 other specify
14697 other specify
14699 other specify
14700 other specify
14701 other specify
14702           mcg
14711 other specify
14712 other specify
14713 other specify
14720 other specify
14721 other specify
14722 other specify
14723 other specify
14726 other specify
14728            mg
14730            mg
14733            mg
14737 other specify
14738 other specify
14744 other specify
14748 other specify
14754 other specify
14755 other specify
14756         drops
14757         drops
14760 other specify
14763 other specify
14764         drops
14775   unspecified
14777   unspecified
14778   unspecified
14833            mg
14834            mg
14838            mg
14839            mg
14857         units
14858            mg
14862            mg
14863            mg
14864         units
14867            mg
14870         units
14871         units
14878   unspecified
14883            mg
14884            mg
14899            ml
14911            mg
14913            mg
14914           mcg
14934         units
14943         units
14944            ml
14949            mg
14972 other specify
14973 other specify
14974 other specify
14975 other specify
14977            ml
14978 other specify
14981 other specify
14982 other specify
14983 other specify
15001           mcg
15002            oz
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15017 other specify
15021           mcg
15022            oz
15023 other specify
15025            oz
15026            oz
15027            oz
15028            mg
15029            mg
15030            ml
15035         units
15036         units
15045            mg
15048 other specify
15055            mg
15059 other specify
15061 other specify
15077 other specify
15102         drops
15129 other specify
15130           mcg
15131            mg
15132            mg
15137 other specify
15139 other specify
15140 other specify
15144         units
15145         units
15150 other specify
15151         units
15155   unspecified
15170            mg
15179            mg
15196 other specify
15197 other specify
15209 other specify
15213 other specify
15244            mg
15250 other specify
15252         drops
15256         units
15259           tsp
15268 other specify
15269 other specify
15274   unspecified
15308 other specify
15309 other specify
15310 other specify
15311 other specify
15314         units
15315 other specify
15317 other specify
15319            mg
15321 other specify
15322 other specify
15323            oz
15332 other specify
15333            gm
15334 other specify
15339            mg
15345            mg
15348            mg
15361 other specify
15362 other specify
15363         drops
15365 other specify
15366 other specify
15367 other specify
15373 other specify
15374 other specify
15375 other specify
15376 other specify
15377 other specify
15378 other specify
15383            mg
15384            mg
15402            oz
15412           mcg
15441            mg
15445         drops
15448           mcg
15451 other specify
15453 other specify
15454   unspecified
15512         units
15513         units
15515 other specify
15524 other specify
15528            mg
15530 other specify
15531            mg
15533 other specify
15551 other specify
15552 other specify
15554 other specify
15555 other specify
15556 other specify
15563 other specify
15581 other specify
15584         drops
15585 other specify
15586 other specify
15589 other specify
15590 other specify
15591 other specify
15592         drops
15593 other specify
15594 other specify
15597 other specify
15598 other specify
15599 other specify
15600 other specify
15601 other specify
15603   unspecified
15604   unspecified
15613           mcg
15614         drops
15618           mcg
15633            mg
15636         units
15649 other specify
15650 other specify
15661 other specify
15662         drops
15663 other specify
15667         drops
15669           mcg
15672           mcg
15673           mcg
15674            mg
15675 other specify
15689 other specify
15690         units
15691         units
15692         units
15693         units
15699           mcg
15701 other specify
15705         drops
15706 other specify
15707            mg
15712 other specify
15715            mg
15733           mcg
15750   unspecified
15757 other specify
15758 other specify
15767         drops
15768         drops
15769         drops
15770         drops
15778 other specify
15781 other specify
15782 other specify
15790 other specify
15796            mg
15799   unspecified
15811 other specify
15815 other specify
15818         units
15829           mcg
15839 other specify
15840 other specify
15841 other specify
15842 other specify
15844 other specify
15848 other specify
15849 other specify
15850 other specify
15856 other specify
15857 other specify
15858            mg
15859 other specify
15860            mg
15861 other specify
15862 other specify
15863 other specify
15864 other specify
15867 other specify
15868 other specify
15869 other specify
15870 other specify
15871            mg
15886 other specify
15888   unspecified
15889         drops
15890            mg
15891 other specify
15892            mg
15907         drops
15911         units
15917 other specify
15918           tsp
15920           tsp
15921 other specify
15922 other specify
15923            gm
15927            iu
15928 other specify
15929 other specify
15930         units
15931            mg
15932           mcg
15933            iu
15935         units
15937 other specify
15944            mg
15945         units
15981 other specify
15983 other specify
15986 other specify
15992 other specify
15993 other specify
15995 other specify
15996 other specify
15997 other specify
15998 other specify
15999 other specify
16000 other specify
16005            mg
16007            mg
16009            ml
16016 other specify
16026 other specify
16033           mcg
16036 other specify
16038 other specify
16039 other specify
16052 other specify
16053 other specify
16094           mcg
16097 other specify
16098 other specify
16105            mg
16107 other specify
16108            mg
16109            mg
16110         units
16111            ml
16112         mg/kg
16113 other specify
16114         drops
16115         drops
16116            mg
16117            mg
16118            mg
16150 other specify
16152 other specify
16153 other specify
16154 other specify
16155 other specify
16156 other specify
16157 other specify
16158 other specify
16159 other specify
16160 other specify
16161 other specify
16162 other specify
16163 other specify
16164 other specify
16165 other specify
16177 other specify
16179 other specify
16199            mg
16229 other specify
16230 other specify
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16251         drops
16253            gm
16285            mg
16286   unspecified
16287 other specify
16288 other specify
16289 other specify
16290         drops
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16312 other specify
16313 other specify
16315 other specify
16316 other specify
16318 other specify
16319 other specify
16321 other specify
16322 other specify
16324 other specify
16325 other specify
16326 other specify
16340 other specify
16347 other specify
16352            mg
16355 other specify
16356 other specify
16367         drops
16371         drops
16374         drops
16376   unspecified
16378         drops
16382         drops
16387 other specify
16388 other specify
16389           mcg
16400 other specify
16401 other specify
16403 other specify
16404 other specify
16408           mcg
16413 other specify
16414 other specify
16418 other specify
16419 other specify
16420 other specify
16425 other specify
16426 other specify
16434            mg
16435            mg
16436            mg
16437            mg
16440 other specify
16441 other specify
16442 other specify
16443 other specify
16447 other specify
16448 other specify
16450 other specify
16452            ml
16453            ml
16462            ml
16472            mg
16474 other specify
16477            mg
16478         drops
16479 other specify
16497         drops
16522 other specify
16523 other specify
16524 other specify
16525            mg
16526            ml
16544 other specify
16546         units
16553 other specify
16579 other specify
16580 other specify
16595 other specify
16596 other specify
16597 other specify
16598 other specify
16599 other specify
16601 other specify
16605           tbs
16606 other specify
16608 other specify
16617            gm
16624            mg
16630 other specify
16631 other specify
16635 other specify
16636 other specify
16639 other specify
16646         drops
16657         drops
16684 other specify
16685 other specify
16687           mcg
16694           mcg
16702 other specify
16703 other specify
16704 other specify
16705 other specify
16711 other specify
16712 other specify
16714 other specify
16717 other specify
16718 other specify
16721 other specify
16723 other specify
16724           tbs
16726 other specify
16749            mg
16751            mg
16774 other specify
16777 other specify
16778 other specify
16779 other specify
16783   unspecified
16784   unspecified
16785   unspecified
16787            mg
16789 other specify
16791            ml
16793            mg
16798         drops
16805 other specify
16807 other specify
16809 other specify
16810           mcg
16811 other specify
16814            ml
16815 other specify
16816         drops
16821 other specify
16823         drops
16834   unspecified
16838   unspecified
16840   unspecified
16841   unspecified
16847   unspecified
16849 other specify
16869 other specify
16877            mg
16882 other specify
16918 other specify
16929 other specify
16931            mg
16933            mg
16935         units
16936 other specify
16937 other specify
16939         drops
16970           mcg
16983 other specify
16993 other specify
16994 other specify
16998 other specify
16999           mcg
17000            ml
17010           mcg
17012 other specify
17013 other specify
17014 other specify
17018 other specify
17019 other specify
17020   unspecified
17022         drops
17042 other specify
17053         units
17062         drops
17088           mcg
17090 other specify
17091 other specify
17094 other specify
17095 other specify
17098           mcg
17099            mg
17120 other specify
17121 other specify
17126 other specify
17127 other specify
17138 other specify
17143 other specify
17153           mcg
17156 other specify
17157 other specify
17173         drops
17177 other specify
17180 other specify
17209 other specify
17218           mcg
17220           mcg
17221           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17232 other specify
17233 other specify
17234 other specify
17236 other specify
17237 other specify
17238 other specify
17239 other specify
17248 other specify
17251 other specify
17252 other specify
17254 other specify
17255 other specify
17263            mg
17264            mg
17266         units
17268 other specify
17283           mcg
17285           mcg
17297            mg
17298 other specify
17307            mg
17308            mg
17309            mg
17310            mg
17313           mcg
17314            mg
17315            mg
17327 other specify
17329 other specify
17330 other specify
17335 other specify
17352 other specify
17355 other specify
17381 other specify
17387           mcg
17389           mcg
17390 other specify
17391           mcg
17393 other specify
17399 other specify
17406 other specify
17407 other specify
17412   unspecified
17417 other specify
17418 other specify
17419 other specify
17420 other specify
17426   unspecified
17427   unspecified
17446         drops
17461            mg
17463 other specify
17468            mg
17470            gm
17482            oz
17486 other specify
17487 other specify
17488 other specify
17489 other specify
17490 other specify
17491 other specify
17492 other specify
17493 other specify
17495 other specify
17496 other specify
17518 other specify
17519 other specify
17576 other specify
17583            ml
17588 other specify
17602 other specify
17603 other specify
17605            mg
17611 other specify
17615 other specify
17627 other specify
17633            ml
17659 other specify
17672            mg
17673            mg
17680   unspecified
17697            mg
17702            mg
17703            mg
17719            mg
17720 other specify
17722 other specify
17742         drops
17743         drops
17755 other specify
17779 other specify
17780            mg
17781         drops
17782 other specify
17798         drops
17802 other specify
17803   unspecified
17804   unspecified
17818 other specify
17832 other specify
17845 other specify
17853   unspecified
17855         drops
17856         drops
17860   unspecified
17863 other specify
17865   unspecified
17882            mg
17957            gm
18023 other specify
18024 other specify
18055         drops
18057 other specify
18058 other specify
18072 other specify
18074         drops
18075 other specify
18094 other specify
18095 other specify
18096            ml
18098         drops
18114            mg
18115            mg
18116            mg
18118 other specify
18119 other specify
18124 other specify
18134   unspecified
18141   unspecified
18147 other specify
18159         drops
18164         drops
18165 other specify
18188 other specify
18192            iu
18193            mg
18195            mg
18199            mg
18202 other specify
18205 other specify
18213         units
18214 other specify
18217           mcg
18218           mcg
18220            mg
18221            ml
18222 other specify
18238 other specify
18251 other specify
18258 other specify
18260            mg
18262 other specify
18263            iu
18264            mg
18266            mg
18271            ml
18275 other specify
18276         drops
18323   unspecified
18325   unspecified
18326   unspecified
18329            ml
18330            ml
18337 other specify
18338         drops
18339 other specify
18340 other specify
18341 other specify
18342         units
18343         drops
18344 other specify
18365 other specify
18366 other specify
18370 other specify
18371 other specify
18373 other specify
18374 other specify
18404         drops
18415 other specify
18427 other specify
18441            mg
18459 other specify
18460 other specify
18461 other specify
18466         drops
18469 other specify
18471 other specify
18479            mg
18480            mg
18483            mg
18489 other specify
18490 other specify
18494 other specify
18495 other specify
18500 other specify
18502 other specify
18514 other specify
18520 other specify
18525            mg
18534 other specify
18543 other specify
18562 other specify
18565 other specify
18571 other specify
18572 other specify
18576 other specify
18577 other specify
18580 other specify
18588   unspecified
18591 other specify
18595 other specify
18609            mg
18612 other specify
18621         drops
18649 other specify
18686           mcg
18687         drops
18689            mg
18690           mcg
18694            mg
18696 other specify
18697 other specify
18703 other specify
18707           mcg
18716 other specify
18718 other specify
18729 other specify
18734 other specify
18735 other specify
18736 other specify
18743 other specify
18750           mcg
18774            mg
18775            mg
18795 other specify
18796 other specify
18797 other specify
18798 other specify
18799           mcg
18800           mcg
18820         drops
18821         drops
18829            mg
18837 other specify
18838 other specify
18839 other specify
18844 other specify
18845 other specify
18847 other specify
18850 other specify
18852 other specify
18853 other specify
18854 other specify
18882 other specify
18908 other specify
18909 other specify
18919 other specify
18921 other specify
18924 other specify
18933            mg
18935 other specify
18936 other specify
18937 other specify
18961 other specify
18964 other specify
18970 other specify
18987           mcg
18988 other specify
18989 other specify
18991 other specify
18993           tbs
18997            mg
18998   unspecified
19003   unspecified
19004         drops
19005 other specify
19006 other specify
19008 other specify
19009 other specify
19015            mg
19019            mg
19021   unspecified
19022 other specify
19023 other specify
19025 other specify
19040            mg
19041            mg
19055 other specify
19056 other specify
19057         mg/ml
19061 other specify
19062            mg
19068            mg
19070 other specify
19072 other specify
19073 other specify
19078 other specify
19082 other specify
19122 other specify
19130 other specify
19152         drops
19153 other specify
19154 other specify
19159   unspecified
19165 other specify
19169 other specify
19170 other specify
19183 other specify
19184 other specify
19213 other specify
19214 other specify
19215 other specify
19216 other specify
19217 other specify
19220           mcg
19221 other specify
19222 other specify
19223 other specify
19224 other specify
19246 other specify
19252            mg
19253            mg
19254            mg
19271 other specify
19272 other specify
19273 other specify
19276         drops
19278 other specify
19281 other specify
19282 other specify
19288         drops
19298         drops
19299 other specify
19318 other specify
19325         drops
19326 other specify
19327 other specify
19338 other specify
19350 other specify
19353   unspecified
19354   unspecified
19356           mcg
19357 other specify
19373 other specify
19386 other specify
19387 other specify
19390 other specify
19391 other specify
19423 other specify
19427 other specify
19445 other specify
19446 other specify
19447 other specify
19448 other specify
19449 other specify
19450 other specify
19452   unspecified
19453   unspecified
19454   unspecified
19457 other specify
19462 other specify
19463 other specify
19464         drops
19465         drops
19476 other specify
19482 other specify
19486         units
19487 other specify
19492 other specify
19493 other specify
19495 other specify
19537 other specify
19568 other specify
19596            mg
19603 other specify
19617            ml
19641   unspecified
19651         drops
19662 other specify
19663            mg
19673 other specify
19674 other specify
19685 other specify
19686            mg
19688 other specify
19689            mg
19690            gm
19710 other specify
19711 other specify
19712 other specify
19713 other specify
19714 other specify
19715 other specify
19716 other specify
19717 other specify
19718 other specify
19722 other specify
19735 other specify
19737         drops
19741         units
19754            mg
19767         drops
19768 other specify
19771            mg
19776 other specify
19777 other specify
19778 other specify
19788 other specify
19790            oz
19792   unspecified
19801 other specify
19803 other specify
19823 other specify
19828 other specify
19829 other specify
19838   unspecified
19843         drops
19844            ml
19845         drops
19851         units
19856 other specify
19866 other specify
19876            mg
19881   unspecified
19888 other specify
19907            mg
19909            mg
19911 other specify
19912         drops
19914 other specify
19917 other specify
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19930            mg
19932         units
19933 other specify
19944            mg
19945            mg
19946 other specify
19947            mg
19948            mg
19949            mg
19950            mg
19952 other specify
19958 other specify
19969         drops
19975           mcg
19984   unspecified
20003           mcg
20006            mg
20007 other specify
20019 other specify
20020 other specify
20024 other specify
20025 other specify
20026 other specify
20027 other specify
20028 other specify
20038 other specify
20039 other specify
20065            ml
20068            mg
20069 other specify
20070            ml
20072           mcg
20074            mg
20096 other specify
20099 other specify
20105            ml
20106            ml
20125            ml
20126 other specify
20127 other specify
20130         drops
20131            mg
20135            mg
20144 other specify
20145            mg
20149         drops
20150 other specify
20164         drops
20173 other specify
20174 other specify
20175            gm
20182 other specify
20218 other specify
20219 other specify
20220            mg
20221 other specify
20222 other specify
20224 other specify
20231         drops
20232         drops
20233 other specify
20234 other specify
20240 other specify
20241 other specify
20243         drops
20244 other specify
20245 other specify
20251 other specify
20272 other specify
20275            mg
20282            mg
20292           mcg
20293 other specify
20295 other specify
20297         units
20298         drops
20299         drops
20300 other specify
20301 other specify
20302            mg
20303 other specify
20306         units
20315   unspecified
20337 other specify
20339 other specify
20340 other specify
20342 other specify
20343 other specify
20344            mg
20348 other specify
20356            mg
20374 other specify
20376 other specify
20377 other specify
20380 other specify
20382            mg
20387 other specify
20388 other specify
20390 other specify
20392         drops
20393         drops
20402 other specify
20405 other specify
20406            ml
20409            mg
20411            mg
20413            mg
20425 other specify
20426 other specify
20441 other specify
20444 other specify
20446            ml
20453            mg
20460            mg
20485 other specify
20490 other specify
20491 other specify
20510 other specify
20511 other specify
20512 other specify
20516 other specify
20517 other specify
20518 other specify
20554 other specify
20555 other specify
20561 other specify
20565 other specify
20568 other specify
20574         drops
20577   unspecified
20579 other specify
20582 other specify
20585 other specify
20615   unspecified
20623 other specify
20636            ml
20638            ml
20641 other specify
20642            ml
20645 other specify
20648            ml
20651            ml
20659   unspecified
20666   unspecified
20667   unspecified
20678   unspecified
20698 other specify
20701 other specify
20702 other specify
20704 other specify
20705 other specify
20707 other specify
20708 other specify
20709 other specify
20712 other specify
20717 other specify
20718            mg
20728            mg
20738            mg
20745 other specify
20748           mcg
20750         drops
20761            mg
20762            mg
20763            mg
20766            mg
20767            mg
20771            mg
20783           mcg
20791   unspecified
20796   unspecified
20800 other specify
20808 other specify
20809 other specify
20814 other specify
20817            mg
20819            mg
20849         drops
20852            mg
20854            mg
20855            mg
20858           mcg
20861         drops
20862 other specify
20863 other specify
20872 other specify
20897            oz
20918            mg
20939 other specify
20940 other specify
20941 other specify
20947 other specify
20949 other specify
20962         units
20963         units
20964 other specify
20965         units
20966         units
20972            ml
21003 other specify
21013 other specify
21017 other specify
21022            mg
21025            mg
21029            mg
21074 other specify
21078 other specify
21080            mg
21088 other specify
21102         units
21109 other specify
21110 other specify
21111            gm
21112         drops
21114 other specify
21115 other specify
21119            mg
21122 other specify
21123 other specify
21124         drops
21125            mg
21126            mg
21127 other specify
21128            mg
21129            mg
21130            mg
21131 other specify
21132            ml
21133 other specify
21168            mg
21169            ml
21178 other specify
21179            mg
21180            mg
21181 other specify
21182            mg
21183            mg
21189 other specify
21190 other specify
21192 other specify
21201            mg
21224 other specify
21253            mg
21254 other specify
21256            mg
21267            mg
21268         drops
21269 other specify
21273            mg
21278         drops
21282         drops
21287         drops
21309            mg
21326         drops
21331   unspecified
21338 other specify
21359            mg
21361            mg
21367            ml
21369 other specify
21384           mcg
21385            mg
21386         drops
21387            gm
21388            gm
21389            gm
21403            mg
21413   unspecified
21416 other specify
21442            mg
21445 other specify
21448 other specify
21449 other specify
21465            mg
21472            mg
21481         drops
21491         drops
21492 other specify
21493 other specify
21495            mg
21504 other specify
21507 other specify
21508         drops
21509 other specify
21522 other specify
21527         drops
21528 other specify
21531           mcg
21532 other specify
21533 other specify
21534 other specify
21545 other specify
21546 other specify
21549            mg
21552 other specify
21553         drops
21555            ml
21558            mg
21562 other specify
21563 other specify
21564 other specify
21585 other specify
21586 other specify
21587         drops
21593   unspecified
21600 other specify
21602            mg
21605         units
21607            mg
21608            mg
21609            mg
21612            mg
21614 other specify
21615 other specify
21616 other specify
21617            mg
21618            mg
21619 other specify
21620 other specify
21621 other specify
21622 other specify
21625           tsp
21632   unspecified
21637         drops
21642 other specify
21643            mg
21644 other specify
21645 other specify
21646 other specify
21648 other specify
21649 other specify
21650 other specify
21651            mg
21652 other specify
21653 other specify
21654            mg
21655 other specify
21658 other specify
21659 other specify
21660 other specify
21661 other specify
21666 other specify
21673   unspecified
21677   unspecified
21678 other specify
21680         drops
21685 other specify
21701 other specify
21705 other specify
21707 other specify
21708 other specify
21723            mg
21725 other specify
21727 other specify
21739            mg
21748 other specify
21749 other specify
21753            mg
21754            mg
21755            mg
21757            mg
21767            mg
21783 other specify
21796           mcg
21809   unspecified
21810   unspecified
21814 other specify
21815         drops
21833            mg
21851            mg
21865           mcg
21866 other specify
21869           mcg
21872            ml
21873            mg
21875           mcg
21876           mcg
21877            ml
21878   unspecified
21886   unspecified
21894           tbs
21897 other specify
21898 other specify
21912           mcg
21914 other specify
21915 other specify
21918 other specify
21921         drops
21925 other specify
21949         drops
21955           tbs
21956           tbs
21957           tbs
21959            mg
21982 other specify
21993 other specify
22020 other specify
22022            gm
22023 other specify
22025 other specify
22026 other specify
22037 other specify
22038 other specify
22041 other specify
22042 other specify
22043            ml
22045 other specify
22046 other specify
22048 other specify
22050         units
22051            mg
22060            mg
22062 other specify
22064 other specify
22088 other specify
22089 other specify
22092 other specify
22093 other specify
22118 other specify
22120 other specify
22121         drops
22125         units
22128            ml
22136 other specify
22140 other specify
22141 other specify
22151   unspecified
22160         units
22161 other specify
22163         units
22173 other specify
22175 other specify
22176           mcg
22177            mg
22179 other specify
22189 other specify
22190 other specify
22191 other specify
22196 other specify
22197 other specify
22199 other specify
22201   unspecified
22216 other specify
22217 other specify
22218         drops
22219         drops
22222 other specify
22223 other specify
22224 other specify
22225            mg
22226            mg
22227            mg
22228            mg
22229 other specify
22230            mg
22237            mg
22238            mg
22239            mg
22240            ml
22241            ml
22243   unspecified
22245            mg
22253 other specify
22261 other specify
22262 other specify
22265 other specify
22267 other specify
22268 other specify
22270 other specify
22272 other specify
22289            mg
22299            mg
22306 other specify
22308            mg
22311            mg
22313 other specify
22314 other specify
22315 other specify
22316            mg
22319            mg
22321 other specify
22323 other specify
22341 other specify
22342 other specify
22343 other specify
22345   unspecified
22346   unspecified
22347   unspecified
22349   unspecified
22351            mg
22352            mg
22353            mg
22367         units
22404 other specify
22407            mg
22408 other specify
22410 other specify
22413 other specify
22417 other specify
22430 other specify
22439 other specify
22440            mg
22441 other specify
22459   unspecified
22463   unspecified
22520            gm
22530            mg
22531 other specify
22532 other specify
22533 other specify
22534            mg
22537 other specify
22540   unspecified
22541 other specify
22545 other specify
22546 other specify
22547         drops
22548            mg
22549 other specify
22552   unspecified
22556            ml
22557 other specify
22558 other specify
22574         units
22575 other specify
22577           mcg
22578 other specify
22579           mcg
22583 other specify
22585   unspecified
22598 other specify
22601         units
22606 other specify
22607 other specify
22610            mg
22611            mg
22625 other specify
22653 other specify
22655 other specify
22656 other specify
22662 other specify
22667 other specify
22669         drops
22670 other specify
22672         drops
22673            mg
22681 other specify
22682 other specify
22683 other specify
22690 other specify
22691            mg
22692 other specify
22693 other specify
22704 other specify
22705 other specify
22707 other specify
22708 other specify
22709            gm
22710            ml
22711 other specify
22713 other specify
22714 other specify
22715            gm
22716 other specify
22717 other specify
22718 other specify
22719 other specify
22721            ml
22733 other specify
22748 other specify
22749            mg
22750 other specify
22751            mg
22752            mg
22754 other specify
22763 other specify
22764 other specify
22765 other specify
22766            mg
22770            mg
22777            mg
22778            mg
22779            mg
22780            mg
22795 other specify
22796         drops
22797 other specify
22798 other specify
22799 other specify
22800 other specify
22801 other specify
22802 other specify
22803 other specify
22804 other specify
22830            mg
22840           mcg
22848 other specify
22853 other specify
22858 other specify
22875 other specify
22886 other specify
22909           mcg
22919 other specify
22920 other specify
22922         drops
22923 other specify
22926 other specify
22929 other specify
22936 other specify
22938            ml
22939         drops
22954            ml
22955           mcg
22963 other specify
22965 other specify
22966 other specify
22967 other specify
22971 other specify
22990 other specify
22991            mg
22992         drops
22994 other specify
23005         drops
23006         drops
23007         drops
23008         drops
23009            ml
23018            mg
23019            mg
23024 other specify
23025 other specify
23043 other specify
23049           mcg
23051           mcg
23053 other specify
23055         units
23059 other specify
23060 other specify
23061 other specify
23064            mg
23066 other specify
23083            mg
23095 other specify
23096 other specify
23100         drops
23102            mg
23103         drops
23108   unspecified
23122 other specify
23123 other specify
23124 other specify
23125 other specify
23134            mg
23137            mg
23138 other specify
23143            mg
23144            mg
23153   unspecified
23154         drops
23163   unspecified
23169            mg
23173 other specify
23175           mcg
23202 other specify
23237            mg
23249         drops
23250 other specify
23251         units
23257            ml
23258           mcg
23259 other specify
23266 other specify
23267           mcg
23268 other specify
23276 other specify
23278 other specify
23279           mcg
23280            mg
23283            ml
23284            mg
23286           mcg
23288 other specify
23294           mcg
23299            mg
23304         drops
23305 other specify
23306 other specify
23308 other specify
23321            mg
23322 other specify
23325 other specify
23333         units
23336 other specify
23337 other specify
23338 other specify
23340 other specify
23341           mcg
23342 other specify
23344           mcg
23345 other specify
23349 other specify
23350           mcg
23353            mg
23355            ml
23356           mcg
23360           mcg
23364         drops
23366   unspecified
23384            ml
23388 other specify
23403 other specify
23404 other specify
23413 other specify
23414 other specify
23419 other specify
23422 other specify
23423 other specify
23427 other specify
23428            mg
23437 other specify
23450 other specify
23452 other specify
23456 other specify
23472 other specify
23482 other specify
23484 other specify
23485 other specify
23487 other specify
23491            mg
23507 other specify
23520 other specify
23533         drops
23534 other specify
23540 other specify
23541 other specify
23552         units
23553 other specify
23557 other specify
23565         drops
23566         drops
23568 other specify
23571 other specify
23572 other specify
23588 other specify
23589 other specify
23590 other specify
23610            mg
23617 other specify
23618 other specify
23619            mg
23620 other specify
23622 other specify
23646 other specify
23647 other specify
23651 other specify
23657 other specify
23659 other specify
23685 other specify
23686 other specify
23688 other specify
23707 other specify
23718           mcg
23721 other specify
23722 other specify
23724 other specify
23730 other specify
23732 other specify
23733            gm
23740 other specify
23747            mg
23749           mcg
23757           mcg
23804            mg
23805 other specify
23808 other specify
23809 other specify
23819 other specify
23861 other specify
23862 other specify
23865            mg
23866 other specify
23868         drops
23871         drops
23872 other specify
23873 other specify
23898 other specify
23899 other specify
23900 other specify
23901 other specify
23902 other specify
23905 other specify
23906 other specify
23909 other specify
23910 other specify
23914 other specify
23917 other specify
23924            mg
23925            mg
23933         drops
23942            gm
23955 other specify
23956 other specify
23957   unspecified
23958   unspecified
23959   unspecified
23965         drops
23969           tbs
23974 other specify
23976            ml
23980         units
24010            mg
24012 other specify
24017            mg
24018            mg
24019            mg
24020            mg
24022            mg
24029            mg
24045           mcg
24046            mg
24062 other specify
24068 other specify
24072            mg
24075 other specify
24076 other specify
24077 other specify
24079 other specify
24104            mg
24106            mg
24116 other specify
24117 other specify
24139            mg
24142 other specify
24144            mg
24145 other specify
24146            ml
24149            mg
24154   unspecified
24155   unspecified
24157 other specify
24162 other specify
24165 other specify
24166 other specify
24172 other specify
24174 other specify
24185            mg
24189            mg
24192            mg
24193            mg
24194            mg
24195            mg
24201         drops
24202         drops
24203 other specify
24205   unspecified
24206   unspecified
24207   unspecified
24208   unspecified
24209 other specify
24215 other specify
24217 other specify
24221 other specify
24222 other specify
24246            mg
24250 other specify
24251         drops
24253 other specify
24257 other specify
24258 other specify
24259 other specify
24261 other specify
24262            ml
24263            ml
24265 other specify
24267            ml
24268            ml
24269            mg
24276         units
24282 other specify
24312 other specify
24313         drops
24314 other specify
24319            mg
24322 other specify
24328            mg
24343            mg
24375            mg
24393 other specify
24394 other specify
24395 other specify
24397            gm
24400            mg
24402 other specify
24403 other specify
24405            mg
24406            mg
24407            mg
24408            ml
24409            oz
24410 other specify
24413 other specify
24416 other specify
24417 other specify
24420           tsp
24421 other specify
24422 other specify
24424 other specify
24425 other specify
24426 other specify
24429           tsp
24431         units
24432         units
24434         drops
24435 other specify
24436 other specify
24437 other specify
24451 other specify
24452 other specify
24453 other specify
24455 other specify
24459            mg
24460            mg
24468            mg
24473            mg
24475            mg
24476 other specify
24477 other specify
24478 other specify
24479         drops
24480 other specify
24481 other specify
24484 other specify
24486 other specify
24503         drops
24514 other specify
24520 other specify
24521 other specify
24526 other specify
24534            ml
24536           mcg
24593         drops
24597            mg
24598            mg
24599            mg
24601            mg
24602            mg
24605 other specify
24610 other specify
24647 other specify
24648            ml
24652         drops
24653         drops
24654 other specify
24660 other specify
24669 other specify
24688 other specify
24707 other specify
24733           mcg
24734            mg
24758 other specify
24762           mcg
24768 other specify
24769 other specify
24776         drops
24782         drops
24802            ml
24804            mg
24805            mg
24806            mg
24817 other specify
24819 other specify
24824 other specify
24825 other specify
24827         units
24828 other specify
24829 other specify
24830 other specify
24839 other specify
24840 other specify
24850            mg
24867 other specify
24878 other specify
24880         drops
24898 other specify
24902            mg
24917 other specify
24918 other specify
24919            mg
24935            mg
24937            mg
24938            mg
24940            mg
24942            mg
24948 other specify
24949            mg
24950 other specify
24963            mg
24964            mg
24967 other specify
24968 other specify
24969 other specify
24971 other specify
24973 other specify
24974 other specify
24975 other specify
24982 other specify
24984            mg
24985 other specify
24987 other specify
24988         drops
24989 other specify
24993         drops
25003         drops
25004 other specify
25020            mg
25021 other specify
25022            mg
25041            ml
25059           mcg
25079 other specify
25087 other specify
25094            mg
25099           mcg
25100            mg
25101            mg
25102            mg
25118 other specify
25119 other specify
25120 other specify
25124         drops
25129 other specify
25191 other specify
25196 other specify
25198         drops
25233 other specify
25234 other specify
25241 other specify
25255 other specify
25258 other specify
25262   unspecified
25269            mg
25270            mg
25296           mcg
25299 other specify
25300 other specify
25309         units
25310         units
25311         drops
25315         units
25316         units
25317         units
25331            mg
25337 other specify
25342 other specify
25343 other specify
25345 other specify
25346 other specify
25347   unspecified
25358         drops
25366         drops
25367 other specify
25369            ml
25370         drops
25378           tsp
25390            mg
25391            mg
25405 other specify
25409 other specify
25410 other specify
25417 other specify
25421 other specify
25424            mg
25425            mg
25437            mg
25444            mg
25473 other specify
25482   unspecified
25493 other specify
25494 other specify
25501 other specify
25514            mg
25515            mg
25516            mg
25520 other specify
25521 other specify
25523 other specify
25547            ml
25554            mg
25555            mg
25556            mg
25557            mg
25575            mg
25576 other specify
25577 other specify
25579           mcg
25589            mg
25591            mg
25612            mg
25617 other specify
25619 other specify
25622   unspecified
25660 other specify
25663 other specify
25666 other specify
25670 other specify
25671 other specify
25672            ml
25674         drops
25683        mcg/kg
25706 other specify
25707 other specify
25708 other specify
25711         units
25725 other specify
25726         drops
25727 other specify
25730 other specify
25737   unspecified
25740 other specify
25741 other specify
25743 other specify
25744 other specify
25748 other specify
25749 other specify
25750 other specify
25751 other specify
25753         drops
25754 other specify
25755 other specify
25756 other specify
25757 other specify
25765            ml
25795 other specify
25804            mg
25806 other specify
25807 other specify
25817            ml
25819            mg
25820 other specify
25826            mg
25827 other specify
25828            mg
25830            mg
25837 other specify
25846 other specify
25884 other specify
25887 other specify
25888 other specify
25919            mg
25936   unspecified
25937   unspecified
25939 other specify
25940 other specify
25941           mcg
25943         drops
25948            mg
25949 other specify
25950 other specify
25951           mcg
25952         drops
25953           mcg
25954         drops
25964           mcg
25965            mg
25966           mcg
25967            mg
25981         drops
25983         drops
25985 other specify
25986 other specify
25998   unspecified
26004           mcg
26022            mg
26024 other specify
26027            mg
26031 other specify
26033 other specify
26037 other specify
26039 other specify
26047 other specify
26048 other specify
26050 other specify
26054 other specify
26056 other specify
26064 other specify
26075            mg
26078            mg
26084   unspecified
26085   unspecified
26093 other specify
26094 other specify
26114 other specify
26115 other specify
26127 other specify
26128 other specify
26129 other specify
26133 other specify
26134 other specify
26138         units
26139 other specify
26141 other specify
26148 other specify
26151 other specify
26152 other specify
26153         drops
26154            ml
26156 other specify
26157 other specify
26158         units
26159         units
26165 other specify
26166 other specify
26184 other specify
26187 other specify
26189         units
26190 other specify
26192 other specify
26197         drops
26199 other specify
26203 other specify
26204 other specify
26205            ml
26207 other specify
26208 other specify
26211         units
26212         units
26214 other specify
26215 other specify
26227            mg
26229   unspecified
26238 other specify
26239 other specify
26258            oz
26264            mg
26265            mg
26278         drops
26279 other specify
26280         drops
26281 other specify
26282 other specify
26287 other specify
26295 other specify
26300         units
26307 other specify
26315 other specify
26336   unspecified
26337   unspecified
26355 other specify
26373         drops
26375 other specify
26380 other specify
26386 other specify
26387            mg
26391   unspecified
26393 other specify
26395            mg
26399            mg
26400            mg
26401            mg
26433   unspecified
26454            mg
26464 other specify
26471            mg
26473            mg
26474         drops
26475 other specify
26476 other specify
26488 other specify
26489 other specify
26490 other specify
26502 other specify
26505 other specify
26508 other specify
26517 other specify
26518 other specify
26519 other specify
26520 other specify
26521            mg
26522 other specify
26534   unspecified
26540 other specify
26543 other specify
26544 other specify
26546 other specify
26551            mg
26553            mg
26568 other specify
26574 other specify
26583         drops
26590 other specify
26591 other specify
26592 other specify
26594 other specify
26610         drops
26611 other specify
26615 other specify
26629 other specify
26631 other specify
26637           mcg
26638 other specify
26643            mg
26644 other specify
26645 other specify
26647   unspecified
26650 other specify
26651 other specify
26652 other specify
26654           mcg
26655            mg
26662 other specify
26663 other specify
26668 other specify
26669 other specify
26670 other specify
26673           mcg
26674            gm
26675            mg
26676 other specify
26677           mcg
26680           mcg
26681            mg
26682 other specify
26683 other specify
26684 other specify
26685 other specify
26694            mg
26720            mg
26721            mg
26722 other specify
26723            mg
26724            mg
26726 other specify
26734 other specify
26735 other specify
26736           mcg
26738            mg
26740            mg
26742            mg
26744            mg
26745            mg
26747            ml
26749            mg
26750           mcg
26760 other specify
26764 other specify
26765 other specify
26766 other specify
26769 other specify
26772 other specify
26773 other specify
26774 other specify
26780            mg
26803            oz
26819            gm
26823            ml
26825            gm
26826            gm
26827            mg
26828            mg
26829            mg
26830            mg
26831            mg
26833            ml
26836         drops
26837 other specify
26839 other specify
26840 other specify
26841         drops
26842 other specify
26843 other specify
26844         drops
26846 other specify
26847         drops
26848 other specify
26849 other specify
26850 other specify
26851 other specify
26852           mcg
26853            mg
26861 other specify
26862         units
26863         units
26864         units
26865         units
26867 other specify
26868 other specify
26869 other specify
26870            ml
26871         drops
26872            oz
26905            ml
26926 other specify
26930 other specify
26931 other specify
26932            mg
26944 other specify
26948 other specify
26972            mg
26974 other specify
26975 other specify
26976 other specify
26977 other specify
26978            mg
26979 other specify
26980 other specify
26981 other specify
26983            mg
26984 other specify
26986            mg
26987            ml
26988            mg
26990            mg
26992            mg
27012 other specify
27020 other specify
27021         drops
27022         drops
27030            mg
27047         drops
27058 other specify
27062   unspecified
27063   unspecified
27065 other specify
27080         drops
27081         drops
27082 other specify
27085 other specify
27092 other specify
27095         drops
27096           mcg
27100 other specify
27117 other specify
27118 other specify
27124 other specify
27128         drops
27134 other specify
27136 other specify
27137            ml
27140 other specify
27158 other specify
27163 other specify
27170 other specify
27172 other specify
27173 other specify
27174 other specify
27203           mcg
27212         units
27213           mcg
27214 other specify
27217 other specify
27219 other specify
27220 other specify
27222 other specify
27223 other specify
27224 other specify
27226 other specify
27228         units
27229 other specify
27231 other specify
27232         units
27247            mg
27256 other specify
27257 other specify
27258 other specify
27262         drops
27265         units
27268         drops
27270         units
27273 other specify
27274 other specify
27275 other specify
27280 other specify
27281         units
27282         units
27285 other specify
27306 other specify
27309 other specify
27311 other specify
27315           mcg
27322 other specify
27333            mg
27348 other specify
27349 other specify
27350         drops
27358 other specify
27360 other specify
27361            mg
27364            mg
27368 other specify
27370 other specify
27384            mg
27407         drops
27413 other specify
27414 other specify
27421 other specify
27422 other specify
27423           mcg
27425 other specify
27427         drops
27431 other specify
27432 other specify
27434         drops
27445         drops
27446            ml
27447 other specify
27459            mg
27465 other specify
27474           mcg
27481           mcg
27492 other specify
27494         drops
27500         drops
27501         drops
27502 other specify
27506 other specify
27507 other specify
27511 other specify
27512 other specify
27523 other specify
27529 other specify
27589 other specify
27594            mg
27596            mg
27598         drops
27620 other specify
27640 other specify
27646 other specify
27654 other specify
27657 other specify
27659            mg
27674   unspecified
27697 other specify
27699            mg
27700 other specify
27701 other specify
27704 other specify
27710 other specify
27713            mg
27714   unspecified
27715   unspecified
27722         drops
27736 other specify
27745           mcg
27747            mg
27748           mcg
27750           mcg
27769           mcg
27770            mg
27772            mg
27776   unspecified
27791           mcg
27794           mcg
27802   unspecified
27824           mcg
27826           mcg
27828           mcg
27833 other specify
27834 other specify
27836   unspecified
27878 other specify
27880 other specify
27884            ml
27886 other specify
27895 other specify
27896 other specify
27897            ml
27898 other specify
27899         drops
27900            ml
27901            ml
27904            ml
27910            mg
27913            mg
27917         units
27921         units
27922         units
27923         units
27927   unspecified
27929 other specify
27939            mg
27940            mg
27941         drops
27942            mg
27954 other specify
27957            mg
27958            mg
27959            mg
27961 other specify
27962 other specify
27973         drops
27974 other specify
27981 other specify
27982 other specify
27992 other specify
27999 other specify
28000 other specify
28006 other specify
28008 other specify
28009 other specify
28010 other specify
28011         drops
28014         drops
28015            mg
28016 other specify
28018 other specify
28020         drops
28023 other specify
28024 other specify
28025 other specify
28029 other specify
28040 other specify
28045           mcg
28046 other specify
28047 other specify
28048 other specify
28049 other specify
28071         drops
28087 other specify
28088 other specify
28090         drops
28094         drops
28096   unspecified
28098            mg
28100 other specify
28101 other specify
28102 other specify
28103 other specify
28104 other specify
28105 other specify
28106            mg
28108 other specify
28109 other specify
28116 other specify
28119 other specify
28120 other specify
28128            mg
28130           mcg
28134 other specify
28135 other specify
28137 other specify
28138            iu
28141         drops
28144 other specify
28154            ml
28155            ml
28158 other specify
28162 other specify
28163 other specify
28164 other specify
28165            mg
28166 other specify
28167   unspecified
28168         drops
28174 other specify
28176 other specify
28246            mg
28260 other specify
28261           mcg
28263 other specify
28264           mcg
28269 other specify
28277 other specify
28279 other specify
28307 other specify
28309 other specify
28311 other specify
28316 other specify
28332 other specify
28333 other specify
28371 other specify
28375 other specify
28390         units
28392 other specify
28396            mg
28397 other specify
28398 other specify
28399 other specify
28400 other specify
28401 other specify
28404 other specify
28407            mg
28425   unspecified
28427         drops
28437            mg
28448            mg
28449            mg
28453           mcg
28483 other specify
28484         drops
28486 other specify
28488 other specify
28505 other specify
28507 other specify
28508 other specify
28516 other specify
28517 other specify
28518            mg
28519           mcg
28520            ml
28528            mg
28531 other specify
28533 other specify
28534            mg
28535            mg
28536 other specify
28538 other specify
28545           mcg
28549 other specify
28552 other specify
28553 other specify
28554 other specify
28556 other specify
28557 other specify
28571 other specify
28572   unspecified
28573 other specify
28574 other specify
28576            mg
28577         drops
28580 other specify
28582 other specify
28583 other specify
28590   unspecified
28601 other specify
28602 other specify
28604            ml
28605 other specify
28606            mg
28610            mg
28611            mg
28612            mg
28614            mg
28616            ml
28621            ml
28624 other specify
28626            ml
28630 other specify
28631 other specify
28660 other specify
28668           mcg
28673         drops
28674 other specify
28675 other specify
28681 other specify
28685   unspecified
28686   unspecified
28687   unspecified
28693 other specify
28694 other specify
28696 other specify
28710         drops
28714         drops
28716         drops
28718            gm
28719            gm
28723 other specify
28726 other specify
28727 other specify
28730         units
28731         units
28735            mg
28736            mg
28750 other specify
28751 other specify
28762            ml
28764         drops
28772   unspecified
28773   unspecified
28780 other specify
28806 other specify
28809 other specify
28819 other specify
28826 other specify
28829           tsp
28831         drops
28833 other specify
28855 other specify
28873         drops
28874            mg
28882 other specify
28883 other specify
28884         units
28888 other specify
28897 other specify
28899 other specify
28904 other specify
28906         drops
28907 other specify
28934 other specify
28939            mg
28940            mg
28941 other specify
28946            ml
28979 other specify
28980 other specify
28982 other specify
28983 other specify
28986 other specify
28987 other specify
28999            mg
29000 other specify
29007            ml
29015 other specify
29022   unspecified
29023   unspecified
29036 other specify
29037            mg
29039 other specify
29040   unspecified
29043   unspecified
29050 other specify
29053 other specify
29056 other specify
29060 other specify
29064 other specify
29067           mcg
29069           mcg
29070 other specify
29071 other specify
29072 other specify
29073 other specify
29075 other specify
29078            ml
29079 other specify
29080 other specify
29081 other specify
29082 other specify
29083 other specify
29086            mg
29087            mg
29091            mg
29092            ml
29095 other specify
29096 other specify
29097            ml
29098            ml
29099            ml
29103           mcg
29104        mcg/kg
29108 other specify
29136 other specify
29139 other specify
29143           mcg
29151 other specify
29153            ml
29161 other specify
29166 other specify
29184 other specify
29196 other specify
29197 other specify
29220 other specify
29232   unspecified
29234   unspecified
29235   unspecified
29244   unspecified
29245   unspecified
29248   unspecified
29283            mg
29285         drops
29291 other specify
29293 other specify
29298            mg
29313         drops
29315 other specify
29321 other specify
29324 other specify
29327 other specify
29328 other specify
29340            oz
29342         drops
29374            mg
29375         units
29376 other specify
29377         units
29378         units
29379         units
29380 other specify
29381 other specify
29382 other specify
29383 other specify
29395            mg
29404            mg
29405            mg
29406            mg
29428 other specify
29438 other specify
29446 other specify
29447 other specify
29453 other specify
29469 other specify
29470 other specify
29471         drops
29479 other specify
29480 other specify
29481 other specify
29482 other specify
29483 other specify
29490 other specify
29499         units
29500         units
29501 other specify
29502 other specify
29504 other specify
29505 other specify
29511 other specify
29525 other specify
29526 other specify
29531 other specify
29532         drops
29533           tbs
29534         drops
29535         drops
29536 other specify
29537         drops
29538            mg
29539            oz
29540 other specify
29567 other specify
29568         drops
29572 other specify
29573 other specify
29574            oz
29575            mg
29579 other specify
29580 other specify
29588 other specify
29608 other specify
29617 other specify
29633           mcg
29662   unspecified
29666           tsp
29669   unspecified
29670   unspecified
29678            mg
29696            gm
29700         drops
29705         drops
29707         drops
29709 other specify
29715 other specify
29716 other specify
29719 other specify
29720            mg
29722 other specify
29724            ml
29726 other specify
29729            gm
29730            mg
29734            mg
29736 other specify
29744 other specify
29749            mg
29753            mg
29764 other specify
29765 other specify
29767 other specify
29770 other specify
29794         drops
29798           mcg
29799           mcg
29800            mg
29801 other specify
29802           mcg
29803            mg
29822 other specify
29823 other specify
29824           mcg
29825            mg
29827            mg
29829         units
29831         drops
29832            ml
29838   unspecified
29839   unspecified
29840   unspecified
29847            ml
29848            ml
29858            ml
29859            ml
29860            ml
29861            mg
29862            mg
29865            mg
29880         units
29882 other specify
29883 other specify
29933 other specify
29940 other specify
29941 other specify
29948 other specify
29954 other specify
29955 other specify
29956 other specify
29957 other specify
29963 other specify
29964 other specify
29966   unspecified
29969 other specify
29970 other specify
29978            mg
29990 other specify
29991            mg
29993            mg
30001            mg
30048            ml
30070 other specify
30075 other specify
30076 other specify
30081 other specify
30082 other specify
30083 other specify
30099 other specify
30104   unspecified
30105   unspecified
30131            mg
30132   unspecified
30138           mcg
30142         units
30143 other specify
30162   unspecified
30164            ml
30165            mg
30166            mg
30169 other specify
30172            mg
30174            mg
30178 other specify
30179         drops
30185 other specify
30191            mg
30192            mg
30193            mg
30198         drops
30211 other specify
30212 other specify
30213 other specify
30214 other specify
30218 other specify
30221 other specify
30239            mg
30241            mg
30242            mg
30246   unspecified
30263 other specify
30264 other specify
30268 other specify
30269 other specify
30270 other specify
30274 other specify
30277 other specify
30286 other specify
30298 other specify
30299         units
30300         drops
30310 other specify
30311 other specify
30312 other specify
30313 other specify
30317 other specify
30319 other specify
30327 other specify
30329         drops
30337 other specify
30338         drops
30344 other specify
30347 other specify
30351 other specify
30352 other specify
30353 other specify
30354 other specify
30355 other specify
30357 other specify
30360 other specify
30361 other specify
30366            mg
30367            mg
30371            mg
30372 other specify
30373 other specify
30374 other specify
30375 other specify
30376 other specify
30377            mg
30378           tsp
30385 other specify
30387 other specify
30388   unspecified
30389 other specify
30395 other specify
30396 other specify
30404 other specify
30405            mg
30406            ml
30418           mcg
30450   unspecified
30464         drops
30471            mg
30479 other specify
30480 other specify
30483 other specify
30484   unspecified
30485   unspecified
30492            mg
30496 other specify
30515            mg
30528            mg
30529         drops
30536 other specify
30541            mg
30555 other specify
30556            mg
30590 other specify
30604 other specify
30623         drops
30644            mg
30685 other specify
30689 other specify
30692 other specify
30701 other specify
30702            mg
30707 other specify
30708 other specify
30709 other specify
30710 other specify
30713            ml
30714         drops
30717   unspecified
30753 other specify
30754         drops
30756         units
30757         units
30764            mg
30765            mg
30766            mg
30768           mcg
30769         drops
30779 other specify
30792         drops
30793 other specify
30796 other specify
30797 other specify
30799 other specify
30803 other specify
30811 other specify
30813         units
30814         units
30815         units
30816         units
30817         units
30819 other specify
30820 other specify
30821 other specify
30822 other specify
30823 other specify
30824 other specify
30826 other specify
30833 other specify
30834 other specify
30840            mg
30844           mcg
30876            ml
30877           mcg
30893            ml
30901 other specify
30909           mcg
30917 other specify
30920         drops
30936   unspecified
30943            mg
30945            mg
30947 other specify
30948 other specify
30949            mg
30953   unspecified
30960           tsp
30961            mg
30962 other specify
30963            mg
30998 other specify
31000 other specify
31001 other specify
31003 other specify
31004 other specify
31010 other specify
31011 other specify
31016           tsp
31022 other specify
31023 other specify
31034            mg
31043 other specify
31046 other specify
31089            mg
31094            mg
31095 other specify
31096 other specify
31105 other specify
31132 other specify
31133 other specify
31134 other specify
31135 other specify
31139            mg
31148           mcg
31149           mcg
31152           mcg
31154           mcg
31183         units
31186         drops
31195            mg
31196   unspecified
31197 other specify
31198            mg
31199 other specify
31203         units
31209            mg
31228 other specify
31232 other specify
31234 other specify
31245         drops
31247            mg
31248 other specify
31249            mg
31250 other specify
31260 other specify
31263 other specify
31265         drops
31268 other specify
31297         units
31299         units
31300         units
31301         units
31303         mg/ml
31307 other specify
31308 other specify
31309 other specify
31317 other specify
31322            mg
31328   unspecified
31330         drops
31350   unspecified
31353            mg
31356 other specify
31357 other specify
31358 other specify
31359 other specify
31360 other specify
31361 other specify
31365 other specify
31366 other specify
31367 other specify
31369 other specify
31370 other specify
31371           tsp
31373            mg
31374            gm
31375 other specify
31381         drops
31383 other specify
31384 other specify
31385 other specify
31386 other specify
31389 other specify
31408           mcg
31423         drops
31434         drops
31437 other specify
31438 other specify
31439         drops
31440         units
31441 other specify
31446 other specify
31447 other specify
31449 other specify
31450 other specify
31452         units
31457   unspecified
31463   unspecified
31471 other specify
31502 other specify
31503 other specify
31504 other specify
31506 other specify
31508 other specify
31528 other specify
31529 other specify
31531 other specify
31539 other specify
31542   unspecified
31548         units
31551            ml
31552         drops
31553         drops
31602 other specify
31611 other specify
31612            mg
31616            mg
31617           mcg
31618 other specify
31619            mg
31637           mcg
31640 other specify
31643           mcg
31644            mg
31645            ml
31646           mcg
31647            mg
31652 other specify
31653           mcg
31655            mg
31656            ml
31657         units
31665 other specify
31666 other specify
31678 other specify
31680 other specify
31688 other specify
31689 other specify
31696 other specify
31707 other specify
31713           mcg
31716            mg
31725         drops
31726 other specify
31730            mg
31731         drops
31734 other specify
31735         drops
31736 other specify
31737 other specify
31742         drops
31747 other specify
31748            mg
31760 other specify
31761            ml
31762 other specify
31765 other specify
31766 other specify
31768            mg
31769           mcg
31771           mcg
31773           mcg
31774            ml
31777 other specify
31780            mg
31781            mg
31798 other specify
31803 other specify
31804 other specify
31807 other specify
31808 other specify
31810 other specify
31811 other specify
31818 other specify
31819 other specify
31824 other specify
31825 other specify
31826 other specify
31833   unspecified
31834 other specify
31836   unspecified
31837 other specify
31840 other specify
31841         units
31842 other specify
31843            ml
31844            mg
31845            ml
31846 other specify
31847 other specify
31849 other specify
31850         drops
31853         drops
31861            mg
31864            mg
31866            mg
31868 other specify
31869 other specify
31874 other specify
31876 other specify
31880            mg
31888 other specify
31891 other specify
31892 other specify
31895 other specify
31896 other specify
31898 other specify
31906 other specify
31907         units
31908         units
31909 other specify
31911 other specify
31916 other specify
31937            mg
31938            mg
31939            mg
31940            mg
31941            mg
31942 other specify
31945         units
31946         units
31947         units
31948         units
31953         drops
31954 other specify
31955 other specify
31968           mcg
31985   unspecified
31990 other specify
32002            mg
32006            mg
32015         drops
32016 other specify
32020            mg
32025 other specify
32032            mg
32035            mg
32040 other specify
32046         drops
32053 other specify
32054 other specify
32055         drops
32056 other specify
32057 other specify
32058 other specify
32059 other specify
32060 other specify
32074 other specify
32076 other specify
32079 other specify
32080 other specify
32084 other specify
32095 other specify
32097 other specify
32098 other specify
32099 other specify
32100 other specify
32101 other specify
32102 other specify
32103 other specify
32104 other specify
32105 other specify
32106 other specify
32108 other specify
32114 other specify
32116 other specify
32119         drops
32121 other specify
32122 other specify
32123            mg
32128            mg
32129            mg
32132            mg
32133 other specify
32134 other specify
32168 other specify
32171         drops
32175         drops
32179 other specify
32180 other specify
32183         drops
32184         drops
32187   unspecified
32196 other specify
32222 other specify
32231 other specify
32232 other specify
32233 other specify
32234 other specify
32236 other specify
32237 other specify
32266 other specify
32276   unspecified
32290 other specify
32295 other specify
32296 other specify
32297         drops
32310 other specify
32312 other specify
32313 other specify
32315 other specify
32320            ml
32343 other specify
32358            mg
32359         drops
32360            mg
32362            oz
32363 other specify
32364            mg
32365            ml
32370 other specify
32390            ml
32393         mg/kg
32394            mg
32417 other specify
32425            ml
32426            mg
32427            mg
32445   unspecified
32447            mg
32448            mg
32449            mg
32460            mg
32463 other specify
32464 other specify
32466 other specify
32467 other specify
32477 other specify
32478 other specify
32504 other specify
32505 other specify
32507            oz
32509 other specify
32510 other specify
32511 other specify
32512 other specify
32513 other specify
32520         drops
32521         drops
32529 other specify
32530 other specify
32535 other specify
32536 other specify
32538 other specify
32542   unspecified
32557           mcg
32558 other specify
32561 other specify
32562 other specify
32575   unspecified
32576   unspecified
32629 other specify
32631 other specify
32633 other specify
32635 other specify
32637 other specify
32642 other specify
32643 other specify
32652   unspecified
32654 other specify
32664 other specify
32670            mg
32672 other specify
32673 other specify
32678            mg
32680            mg
32682            mg
32685            mg
32694 other specify
32698 other specify
32703 other specify
32726         drops
32737         drops
32739 other specify
32742 other specify
32743 other specify
32750 other specify
32751 other specify
32767 other specify
32768 other specify
32769            ml
32770 other specify
32777            mg
32798 other specify
32815 other specify
32829 other specify
32841         drops
32844            mg
32849 other specify
32850 other specify
32856 other specify
32857           mcg
32858            ml
32859           mcg
32862         drops
32863         drops
32869 other specify
32870            mg
32871            ml
32879 other specify
32883 other specify
32884            mg
32887 other specify
32888 other specify
32903         drops
32912         drops
32923           mcg
32930 other specify
32937         drops
32938 other specify
32940 other specify
32942 other specify
32943 other specify
32944 other specify
32949 other specify
32950            ml
32951 other specify
32952 other specify
32954            mg
32955         units
32956         units
32964   unspecified
32965         drops
32999 other specify
33004 other specify
33008 other specify
33009 other specify
33010   unspecified
33011   unspecified
33014   unspecified
33015 other specify
33023 other specify
33043           mcg
33047            mg
33066 other specify
33067 other specify
33068         units
33073            ml
33078 other specify
33081 other specify
33085 other specify
33086            mg
33087            ml
33088            mg
33089            ml
33090            mg
33091            ml
33092 other specify
33096 other specify
33107            mg
33110 other specify
33113 other specify
33124 other specify
33126 other specify
33128 other specify
33132 other specify
33133 other specify
33138 other specify
33157   unspecified
33159   unspecified
33166 other specify
33187           mcg
33190            mg
33191 other specify
33209 other specify
33211 other specify
33220 other specify
33222 other specify
33226         units
33227 other specify
33229 other specify
33230 other specify
33233 other specify
33235 other specify
33236         units
33239         units
33242 other specify
33271   unspecified
33286         units
33289 other specify
33292 other specify
33293         drops
33318 other specify
33333            mg
33335            mg
33336 other specify
33347 other specify
33354            oz
33355            oz
33358 other specify
33363 other specify
33364 other specify
33370         units
33374         units
33375         units
33376         units
33377         units
33385         drops
33387   unspecified
33389   unspecified
33410 other specify
33411 other specify
33412 other specify
33414 other specify
33456   unspecified
33468 other specify
33471         drops
33479 other specify
33480 other specify
33482   unspecified
33489 other specify
33490            mg
33491            mg
33492            mg
33493            mg
33497 other specify
33499           mcg
33500 other specify
33539 other specify
33541 other specify
33542         drops
33543 other specify
33544 other specify
33576           mcg
33580 other specify
33581 other specify
33582            mg
33583            mg
33590 other specify
33591 other specify
33592 other specify
33614   unspecified
33641 other specify
33644 other specify
33645 other specify
33647         drops
33649 other specify
33651 other specify
33655 other specify
33683 other specify
33684 other specify
33690           mcg
33696           mcg
33702 other specify
33706            mg
33714 other specify
33717 other specify
33722 other specify
33723 other specify
33724 other specify
33725 other specify
33737 other specify
33739 other specify
33740 other specify
33756         drops
33767            mg
33797 other specify
33798 other specify
33804 other specify
33805 other specify
33815   unspecified
33824           mcg
33828            mg
33844         drops
33868 other specify
33869           mcg
33870 other specify
33890            mg
33894 other specify
33901 other specify
33905 other specify
33907 other specify
33909 other specify
33911 other specify
33913 other specify
33914 other specify
33916            ml
33919 other specify
33927 other specify
33929         drops
33939 other specify
33940 other specify
33987 other specify
33991 other specify
33992 other specify
33993 other specify
33994            ml
33995 other specify
33998 other specify
34000 other specify
34002 other specify
34003         drops
34005 other specify
34011   unspecified
34012            ml
34014 other specify
34016 other specify
34022 other specify
34024 other specify
34029 other specify
34030 other specify
34043 other specify
34046         drops
34048 other specify
34049 other specify
34051         units
34053 other specify
34054 other specify
34069           mcg
34073         drops
34074           mcg
34075            ml
34077 other specify
34087 other specify
34090 other specify
34091 other specify
34092         units
34093 other specify
34094            oz
34095         units
34096 other specify
34105 other specify
34107         drops
34108           mcg
34109 other specify
34111            mg
34113         drops
34125 other specify
34126 other specify
34128 other specify
34132 other specify
34134 other specify
34135 other specify
34138 other specify
34140            mg
34147 other specify
34148 other specify
34152 other specify
34155 other specify
34156            mg
34157            mg
34161           mcg
34227 other specify
34230            mg
34231            mg
34232           tsp
34233            mg
34234            mg
34235            mg
34238 other specify
34239            ml
34240            ml
34241            mg
34242            mg
34243            ml
34246            ml
34247            mg
34249 other specify
34254 other specify
34260            mg
34262            mg
34264            mg
34267            mg
34268 other specify
34269 other specify
34282 other specify
34287         drops
34289            ml
34290            ml
34293            ml
34304            ml
34327           mcg
34332           mcg
34333 other specify
34334 other specify
34336 other specify
34340 other specify
34342 other specify
34343 other specify
34345 other specify
34348         drops
34359 other specify
34360 other specify
34361            mg
34362            mg
34367 other specify
34374 other specify
34375 other specify
34378   unspecified
34379   unspecified
34388 other specify
34401 other specify
34403 other specify
34409            mg
34410            mg
34418 other specify
34419 other specify
34430            ml
34434 other specify
34435            mg
34436           tbs
34456 other specify
34457            gm
34463            gm
34467            mg
34474            mg
34493            mg
34513 other specify
34536 other specify
34545   unspecified
34548   unspecified
34579   unspecified
34583 other specify
34584           tbs
34587 other specify
34588         drops
34593            mg
34606   unspecified
34608 other specify
34609 other specify
34614 other specify
34617 other specify
34624            gm
34629 other specify
34630 other specify
34635 other specify
34636 other specify
34637 other specify
34638 other specify
34640 other specify
34642 other specify
34648         units
34669 other specify
34671 other specify
34672 other specify
34673 other specify
34674 other specify
34675         drops
34676            mg
34677         drops
34678 other specify
34680         drops
34697 other specify
34704 other specify
34705            mg
34706         units
34708 other specify
34709 other specify
34710 other specify
34727   unspecified
34728   unspecified
34729   unspecified
34730 other specify
34733 other specify
34734 other specify
34741         drops
34744         drops
34747 other specify
34750           mcg
34763 other specify
34764 other specify
34766           mcg
34787 other specify
34788 other specify
34789           mcg
34791 other specify
34797 other specify
34798 other specify
34799 other specify
34811 other specify
34813 other specify
34828 other specify
34832            mg
34833 other specify
34845 other specify
34874            gm
34875            mg
34887 other specify
34888 other specify
34889 other specify
34890 other specify
34891 other specify
34892 other specify
34900            mg
34901            mg
34902            mg
34903         drops
34904            mg
34905 other specify
34906 other specify
34907         drops
34908            ml
34917   unspecified
34918         drops
34920           mcg
34922            mg
34923            mg
34924            mg
34953   unspecified
34955   unspecified
34956   unspecified
34966 other specify
34979 other specify
34981 other specify
34982 other specify
34983 other specify
34991           mcg
34992 other specify
34996 other specify
35002         units
35004         units
35014 other specify
35025 other specify
35026           tsp
35027 other specify
35034            mg
35049 other specify
35069 other specify
35074   unspecified
35094 other specify
35103 other specify
35109   unspecified
35110 other specify
35122            ml
35124            ml
35125 other specify
35126            gm
35132 other specify
35134 other specify
35143 other specify
35144 other specify
35145 other specify
35146 other specify
35147 other specify
35148 other specify
35149   unspecified
35150 other specify
35152 other specify
35153 other specify
35154 other specify
35160   unspecified
35176            mg
35181 other specify
35182           mcg
35183            mg
35189 other specify
35203 other specify
35204 other specify
35205 other specify
35207           mcg
35212 other specify
35214 other specify
35232            mg
35245 other specify
35252         drops
35258            mg
35262           mcg
35264           mcg
35278 other specify
35279 other specify
35283 other specify
35284 other specify
35291 other specify
35299 other specify
35300 other specify
35314 other specify
35315            mg
35354            mg
35382 other specify
35388            ml
35393 other specify
35399 other specify
35400            mg
35401 other specify
35404 other specify
35405 other specify
35406 other specify
35414            mg
35417            mg
35420            mg
35421            mg
35422 other specify
35423 other specify
35424 other specify
35425            mg
35432            mg
35434         drops
35443         drops
35450         drops
35453 other specify
35454 other specify
35495 other specify
35496 other specify
35497           mcg
35499         units
35501           mcg
35504         units
35506         drops
35507         drops
35509 other specify
35513            mg
35525 other specify
35526 other specify
35528            mg
35539            mg
35560 other specify
35561 other specify
35562 other specify
35563 other specify
35565         units
35566         units
35569           mcg
35571 other specify
35572 other specify
35573 other specify
35574            mg
35575 other specify
35576         units
35577         units
35578 other specify
35579 other specify
35580            mg
35581 other specify
35582 other specify
35592         drops
35593 other specify
35598 other specify
35605 other specify
35620         drops
35621 other specify
35624         drops
35626 other specify
35628         drops
35633 other specify
35639 other specify
35641 other specify
35642 other specify
35643         drops
35645            ml
35656 other specify
35659            mg
35662 other specify
35664 other specify
35665 other specify
35668   unspecified
35673 other specify
35674         drops
35696            oz
35697 other specify
35699 other specify
35700 other specify
35721 other specify
35722 other specify
35725           mcg
35727           mcg
35740            ml
35743         drops
35748           mcg
35756         units
35757            mg
35758            mg
35762 other specify
35768 other specify
35770 other specify
35771 other specify
35772 other specify
35773 other specify
35774 other specify
35775 other specify
35777 other specify
35778 other specify
35784 other specify
35786 other specify
35791            ml
35792           mcg
35793         units
35808   unspecified
35809   unspecified
35810   unspecified
35812 other specify
35820 other specify
35821 other specify
35831            mg
35835            mg
35850 other specify
35853 other specify
35855 other specify
35858            mg
35859            mg
35903           tbs
35905            mg
35907            mg
35908            mg
35931         units
35954 other specify
35955 other specify
35963 other specify
35965         drops
35969 other specify
35973 other specify
35982 other specify
35983 other specify
36019 other specify
36021 other specify
36023 other specify
36030            oz
36042 other specify
36043            mg
36044 other specify
36065 other specify
36069 other specify
36078         drops
36081         drops
36082            mg
36084 other specify
36108            mg
36110            mg
36112 other specify
36113   unspecified
36115 other specify
36134            mg
36137 other specify
36144 other specify
36145 other specify
36150 other specify
36153            mg
36155 other specify
36156 other specify
36159 other specify
36171   unspecified
36191 other specify
36192            oz
36198 other specify
36200            ml
36201 other specify
36202         drops
36203         drops
36205         drops
36218 other specify
36220 other specify
36221 other specify
36222 other specify
36223 other specify
36225 other specify
36227 other specify
36228 other specify
36229 other specify
36231 other specify
36232 other specify
36233 other specify
36235 other specify
36237 other specify
36238            mg
36240            mg
36254   unspecified
36256         drops
36264         units
36268   unspecified
36271            mg
36272            mg
36273 other specify
36275 other specify
36276 other specify
36280 other specify
36283            mg
36288         units
36292            ml
36293         drops
36294            ml
36295           tbs
36296            ml
36297            ml
36298            ml
36299            ml
36300         drops
36301           tsp
36302            ml
36303            ml
36304            ml
36305            ml
36306 other specify
36307 other specify
36308            ml
36309            ml
36310            ml
36311   unspecified
36322         drops
36323            ml
36324            ml
36325            ml
36326            ml
36327            ml
36328            ml
36329         drops
36330           tsp
36331            ml
36332            ml
36333         drops
36334            ml
36335 other specify
36336 other specify
36337            ml
36338            ml
36339   unspecified
36340   unspecified
36357            mg
36358         drops
36359            ml
36360            ml
36361            ml
36362            ml
36363            ml
36364            ml
36365         drops
36366           tsp
36367            ml
36368            ml
36369            ml
36370         drops
36371 other specify
36372 other specify
36373   unspecified
36374   unspecified
36376            ml
36377         drops
36378            ml
36379            ml
36380         drops
36381            ml
36382            ml
36383            ml
36384         drops
36385           tsp
36397            mg
36398            ml
36399            mg
36403         drops
36404           tsp
36405         units
36406         units
36410   unspecified
36427 other specify
36429           mcg
36430 other specify
36438         units
36439 other specify
36440 other specify
36443            mg
36444 other specify
36448 other specify
36451 other specify
36460 other specify
36461 other specify
36464         units
36474   unspecified
36491           mcg
36497           mcg
36513   unspecified
36520           tsp
36533 other specify
36535 other specify
36559 other specify
36560 other specify
36562 other specify
36568 other specify
36571 other specify
36574   unspecified
36579 other specify
36595 other specify
36597         drops
36600 other specify
36601 other specify
36602 other specify
36605 other specify
36606         drops
36607 other specify
36608 other specify
36616 other specify
36623         drops
36624 other specify
36626 other specify
36630 other specify
36631         drops
36632 other specify
36633         drops
36635 other specify
36637         drops
36657            mg
36670 other specify
36698 other specify
36699 other specify
36705            mg
36708           mcg
36709 other specify
36735            mg
36751 other specify
36752 other specify
36753 other specify
36772 other specify
36778           tbs
36816 other specify
36817 other specify
36818         drops
36819         drops
36824 other specify
36833 other specify
36834 other specify
36835 other specify
36840            mg
36842            gm
36846            mg
36847            mg
36848            mg
36849 other specify
36850 other specify
36851            gm
36853         drops
36855   unspecified
36859   unspecified
36875            mg
36876            mg
36877            mg
36878 other specify
36880            mg
36881 other specify
36882            mg
36883 other specify
36884 other specify
36892         drops
36893 other specify
36894 other specify
36900 other specify
36901 other specify
36911 other specify
36919            mg
36920 other specify
36921 other specify
36925           mcg
36945            gm
36969         units
36970         units
36982 other specify
36983 other specify
36984 other specify
36985 other specify
36994 other specify
37007            mg
37015 other specify
37017 other specify
37018 other specify
37019 other specify
37020         drops
37021 other specify
37036 other specify
37038            mg
37046         units
37054 other specify
37055 other specify
37056 other specify
37057           mcg
37061 other specify
37063 other specify
37069           mcg
37070 other specify
37071 other specify
37073 other specify
37074            mg
37075 other specify
37076 other specify
37077 other specify
37078 other specify
37080 other specify
37087 other specify
37088 other specify
37098 other specify
37099 other specify
37104         drops
37115 other specify
37116            mg
37117 other specify
37135 other specify
37157   unspecified
37164         drops
37165 other specify
37168 other specify
37169 other specify
37179         units
37193           tbs
37194 other specify
37195            mg
37197            mg
37200 other specify
37201 other specify
37202 other specify
37219 other specify
37221            mg
37259            mg
37260            ml
37262 other specify
37266 other specify
37267         drops
37270 other specify
37271 other specify
37272            mg
37273         drops
37277 other specify
37278   unspecified
37279   unspecified
37302           mcg
37303         drops
37309 other specify
37316 other specify
37324            mg
37325            gm
37326            ml
37332 other specify
37337 other specify
37344 other specify
37349 other specify
37359            mg
37373 other specify
37374 other specify
37375         units
37376         units
37377           tsp
37385 other specify
37386 other specify
37387 other specify
37392 other specify
37396 other specify
37397 other specify
37434   unspecified
37435   unspecified
37439 other specify
37446 other specify
37448 other specify
37449 other specify
37451 other specify
37453 other specify
37454 other specify
37457 other specify
37463 other specify
37464 other specify
37465 other specify
37467 other specify
37468 other specify
37469 other specify
37477         drops
37478         drops
37485 other specify
37491 other specify
37493 other specify
37495 other specify
37496         drops
37510            mg
37526            mg
37527 other specify
37533 other specify
37536 other specify
37540 other specify
37545 other specify
37546 other specify
37547 other specify
37552 other specify
37568            mg
37569 other specify
37571            mg
37576 other specify
37577            mg
37578            oz
37579           mcg
37580            mg
37584   unspecified
37585   unspecified
37586   unspecified
37597   unspecified
37598   unspecified
37601 other specify
37602 other specify
37603 other specify
37608 other specify
37621 other specify
37622 other specify
37624 other specify
37627 other specify
37628 other specify
37629 other specify
37630 other specify
37639   unspecified
37648 other specify
37649            ml
37651 other specify
37655 other specify
37657 other specify
37662 other specify
37664 other specify
37669 other specify
37670 other specify
37675 other specify
37691 other specify
37696            mg
37697            mg
37698            mg
37699         drops
37704 other specify
37705 other specify
37709            mg
37710            mg
37712   unspecified
37713   unspecified
37714   unspecified
37717   unspecified
37718   unspecified
37731 other specify
37738 other specify
37739 other specify
37740 other specify
37742 other specify
37771         drops
37785 other specify
37786 other specify
37797 other specify
37798           mcg
37805            mg
37806            mg
37809 other specify
37816   unspecified
37817   unspecified
37820            iu
37821   unspecified
37822 other specify
37834 other specify
37835 other specify
37837            mg
37838 other specify
37839 other specify
37845 other specify
37846 other specify
37847 other specify
37848 other specify
37849 other specify
37850 other specify
37851 other specify
37852 other specify
37855 other specify
37858 other specify
37865 other specify
37885 other specify
37894 other specify
37895 other specify
37907            mg
37916 other specify
37920 other specify
37929         drops
37930         drops
37933 other specify
37934 other specify
37935         drops
37936 other specify
37937         drops
37941         drops
37942         drops
37944            mg
37976 other specify
37977 other specify
37978 other specify
37979 other specify
37980 other specify
37984 other specify
37989 other specify
37990 other specify
37992 other specify
37993 other specify
38018            mg
38036 other specify
38041 other specify
38046 other specify
38048            mg
38050 other specify
38051 other specify
38052   unspecified
38056           tsp
38070 other specify
38071         drops
38072 other specify
38074         drops
38075         drops
38102            mg
38123 other specify
38126 other specify
38132   unspecified
38134 other specify
38135 other specify
38136 other specify
38141 other specify
38142 other specify
38151 other specify
38152         units
38156            mg
38165            mg
38166            mg
38177 other specify
38179         drops
38181   unspecified
38182   unspecified
38184   unspecified
38185         drops
38193 other specify
38204           tsp
38211         drops
38216 other specify
38217 other specify
38219            mg
38220 other specify
38240 other specify
38256           tbs
38257            mg
38259            mg
38262 other specify
38268         drops
38273         units
38284           mcg
38287 other specify
38288 other specify
38289 other specify
38293            mg
38294 other specify
38301 other specify
38305         drops
38306 other specify
38324            ml
38326 other specify
38330 other specify
38339 other specify
38341 other specify
38342 other specify
38350         units
38351 other specify
38352 other specify
38353 other specify
38361 other specify
38365 other specify
38366 other specify
38367 other specify
38369         drops
38370            ml
38371            ml
38372 other specify
38373 other specify
38377   unspecified
38378         drops
38386   unspecified
38387   unspecified
38388 other specify
38396 other specify
38397 other specify
38399 other specify
38406 other specify
38420 other specify
38422 other specify
38423 other specify
38427            gm
38431 other specify
38436 other specify
38438 other specify
38439 other specify
38442            ml
38461            ml
38462            mg
38464            mg
38465            ml
38466            mg
38470            mg
38471            mg
38472            mg
38473            mg
38499            mg
38504            ml
38505            mg
38507            mg
38508            ml
38509            mg
38510            mg
38511            mg
38512            mg
38522            mg
38527 other specify
38528 other specify
38529 other specify
38531 other specify
38532 other specify
38533         drops
38534 other specify
38535           tbs
38536 other specify
38544 other specify
38550   unspecified
38551   unspecified
38557   unspecified
38567 other specify
38568 other specify
38569 other specify
38570   unspecified
38588 other specify
38602 other specify
38605         drops
38606            mg
38607            oz
38610 other specify
38611 other specify
38618           tsp
38626 other specify
38630 other specify
38636 other specify
38637 other specify
38638         drops
38643 other specify
38647            ml
38655 other specify
38656 other specify
38665            mg
38691 other specify
38716            gm
38722         drops
38723 other specify
38754   unspecified
38772 other specify
38773         units
38775            ml
38776         drops
38779            gm
38780            oz
38787 other specify
38789   unspecified
38796 other specify
38802   unspecified
38809         drops
38810            ml
38816 other specify
38820            mg
38821            mg
38828 other specify
38839         drops
38841         drops
38843         drops
38845           tsp
38847 other specify
38850 other specify
38851   unspecified
38854         drops
38855 other specify
38861            ml
38864         drops
38865         drops
38868           mcg
38871   unspecified
38890 other specify
38891 other specify
38892 other specify
38896 other specify
38902 other specify
38924            mg
38925 other specify
38926 other specify
38930 other specify
38931 other specify
38940 other specify
38941 other specify
38945 other specify
38946 other specify
38950 other specify
38951 other specify
38952 other specify
38956   unspecified
38963 other specify
38964 other specify
38970   unspecified
38971   unspecified
38974   unspecified
38976   unspecified
38978         units
38997   unspecified
39004 other specify
39005 other specify
39006         drops
39035   unspecified
39073 other specify
39083            mg
39099 other specify
39117            mg
39120           mcg
39121 other specify
39122 other specify
39123 other specify
39125            ml
39127         drops
39128         drops
39158            mg
39165            mg
39167 other specify
39171 other specify
39176 other specify
39181 other specify
39182 other specify
39188         drops
39198 other specify
39201         drops
39202 other specify
39207         drops
39209         drops
39210         drops
39211 other specify
39212         drops
39218         drops
39258 other specify
39259 other specify
39260 other specify
39261           tsp
39262            mg
39273           mcg
39316 other specify
39325            mg
39326            oz
39329            mg
39330            mg
39331            mg
39332            mg
39338 other specify
39339 other specify
39340 other specify
39388 other specify
39392         drops
39415 other specify
39423   unspecified
39425 other specify
39433            oz
39434         drops
39435 other specify
39438 other specify
39440         units
39443         units
39444         units
39445         units
39446         units
39447         units
39450         units
39451         units
39453 other specify
39486 other specify
39495         drops
39496           mcg
39511         units
39513         drops
39516 other specify
39519         drops
39525 other specify
39526 other specify
39528         drops
39531 other specify
39534         drops
39536 other specify
39539         drops
39541 other specify
39542 other specify
39543 other specify
39546 other specify
39548            mg
39566   unspecified
39567   unspecified
39573   unspecified
39579         drops
39581 other specify
39582 other specify
39586 other specify
39591   unspecified
39599   unspecified
39607            mg
39609 other specify
39617            mg
39618            mg
39635 other specify
39637            mg
39639 other specify
39651 other specify
39705            mg
39706            mg
39707            mg
39714 other specify
39715 other specify
39737   unspecified
39744 other specify
39745 other specify
39750         drops
39754 other specify
39755 other specify
39756            mg
39759            mg
39760         units
39763            mg
39764 other specify
39776            mg
39777            mg
39778            mg
39786           mcg
39787           mcg
39788            mg
39795            mg
39796           mcg
39833            mg
39849            mg
39856            mg
39860           mcg
39871           mcg
39875           mcg
39877           mcg
39881 other specify
39909 other specify
39916         drops
39917         drops
39918         drops
39919 other specify
39948 other specify
39949 other specify
39958 other specify
39973 other specify
39974 other specify
39975 other specify
39980 other specify
39981 other specify
39982 other specify
39987         drops
39988         drops
40013 other specify
40021         drops
40023 other specify
40024         drops
40038            mg
40043            ml
40052 other specify
40092 other specify
40093 other specify
40102   unspecified
40108           mcg
40109            mg
40115 other specify
40117 other specify
40121           mcg
40123 other specify
40124 other specify
40125 other specify
40133            mg
40134            mg
40138 other specify
40141         drops
40142           mcg
40143 other specify
40144 other specify
40149 other specify
40154 other specify
40164 other specify
40165 other specify
40180 other specify
40186 other specify
40194           mcg
40196 other specify
40206 other specify
40209 other specify
40214 other specify
40216 other specify
40217 other specify
40218 other specify
40221 other specify
40222 other specify
40223 other specify
40224 other specify
40244 other specify
40290           mcg
40296            mg
40297            ml
40298            ml
40299 other specify
40302         drops
40312 other specify
40317 other specify
40331            mg
40343         drops
40390 other specify
40391 other specify
40392            mg
40394   unspecified
40403 other specify
40406            mg
40407           mcg
40417 other specify
40418 other specify
40422 other specify
40425 other specify
40446            mg
40447         drops
40451            mg
40454            mg
40464            mg
40468         units
40472 other specify
40474 other specify
40483 other specify
40484 other specify
40486         units
40487         units
40488 other specify
40489         drops
40494            mg
40503 other specify
40504 other specify
40508         drops
40511            mg
40519 other specify
40521         drops
40535            mg
40541         units
40542            ml
40568 other specify
40571         drops
40572         units
40573 other specify
40574 other specify
40579 other specify
40580            mg
40581            mg
40582 other specify
40583            ml
40595 other specify
40600 other specify
40601 other specify
40603 other specify
40604 other specify
40606 other specify
40607 other specify
40611 other specify
40615            mg
40616 other specify
40617 other specify
40618   unspecified
40619   unspecified
40620   unspecified
40634 other specify
40636         units
40637         units
40644   unspecified
40653 other specify
40654 other specify
40655 other specify
40656            mg
40684 other specify
40686 other specify
40687 other specify
40688 other specify
40689 other specify
40690 other specify
40691 other specify
40693 other specify
40695 other specify
40696 other specify
40699            mg
40700 other specify
40701 other specify
40718         drops
40719 other specify
40721 other specify
40722 other specify
40723         drops
40724         drops
40725 other specify
40726         drops
40727         drops
40744 other specify
40745 other specify
40747            mg
40748 other specify
40749 other specify
40750           tbs
40751 other specify
40754 other specify
40755 other specify
40756 other specify
40758         drops
40760 other specify
40775 other specify
40776 other specify
40781 other specify
40783         units
40794         drops
40796 other specify
40799 other specify
40800 other specify
40801 other specify
40810 other specify
40823 other specify
40824 other specify
40825 other specify
40827 other specify
40828 other specify
40829 other specify
40833 other specify
40834 other specify
40838 other specify
40839 other specify
40840 other specify
40843 other specify
40846            mg
40848 other specify
40866 other specify
40868 other specify
40870 other specify
40873 other specify
40875 other specify
40879 other specify
40895   unspecified
40897            mg
40899            mg
40900            mg
40902           mcg
40905           mcg
40919   unspecified
40943            ml
40958 other specify
40959 other specify
40960 other specify
40961 other specify
40962 other specify
40965 other specify
40966 other specify
40967 other specify
40968 other specify
40969 other specify
40970 other specify
40971 other specify
40972 other specify
40974 other specify
40984   unspecified
40987   unspecified
40990   unspecified
40992         units
40993         units
40994         units
40997 other specify
40998            ml
41003            mg
41004            mg
41005            oz
41006            gm
41007            gm
41009            mg
41010            ml
41011            mg
41014            gm
41015            mg
41016            ml
41018 other specify
41020   unspecified
41021 other specify
41022         drops
41023 other specify
41024 other specify
41025            ml
41057         drops
41068 other specify
41069 other specify
41084            ml
41087            mg
41088            ml
41089            mg
41090           tsp
41091         drops
41094            mg
41095            mg
41096            ml
41097         drops
41098            ml
41099            mg
41101            gm
41102            mg
41103            ml
41104            mg
41121 other specify
41125 other specify
41129            mg
41130            mg
41131 other specify
41132 other specify
41133 other specify
41134 other specify
41137 other specify
41139         drops
41147         drops
41151         drops
41152   unspecified
41170 other specify
41198           mcg
41199           mcg
41200           mcg
41201           mcg
41203 other specify
41204 other specify
41206 other specify
41207 other specify
41208 other specify
41209 other specify
41210 other specify
41216         drops
41217 other specify
41219 other specify
41220            mg
41221 other specify
41222           mcg
41223         units
41224         units
41240 other specify
41241 other specify
41242 other specify
41246 other specify
41250 other specify
41254 other specify
41260   unspecified
41267 other specify
41278 other specify
41279 other specify
41281 other specify
41283            mg
41313         drops
41314            mg
41315         drops
41316            mg
41318         drops
41319           mcg
41320 other specify
41325            mg
41332            mg
41335 other specify
41336 other specify
41340 other specify
41343         drops
41360   unspecified
41371         units
41373 other specify
41374 other specify
41376            mg
41377 other specify
41378 other specify
41381            ml
41384 other specify
41385 other specify
41386 other specify
41387 other specify
41388         drops
41396         drops
41398         units
41399         drops
41400            ml
41407            mg
41413         drops
41417           mcg
41418            ml
41420            mg
41421 other specify
41422 other specify
41424 other specify
41425 other specify
41430            mg
41431            mg
41432 other specify
41433         drops
41435            mg
41442 other specify
41443            mg
41444            mg
41446 other specify
41447            mg
41451            mg
41464 other specify
41466 other specify
41470   unspecified
41497 other specify
41500         units
41502 other specify
41505 other specify
41525 other specify
41531 other specify
41533            mg
41557 other specify
41572 other specify
41573 other specify
41581 other specify
41612            mg
41615 other specify
41617            mg
41621            mg
41629 other specify
41632            mg
41633            mg
41636 other specify
41637 other specify
41638 other specify
41639 other specify
41640 other specify
41641           mcg
41653            mg
41655         drops
41674            mg
41724   unspecified
41725 other specify
41726 other specify
41727 other specify
41728 other specify
41729 other specify
41731         units
41737 other specify
41738 other specify
41739 other specify
41740 other specify
41743            mg
41746 other specify
41747 other specify
41748 other specify
41749 other specify
41750 other specify
41751 other specify
41752 other specify
41753 other specify
41754 other specify
41756           mcg
41759 other specify
41774            mg
41778 other specify
41779 other specify
41781         units
41803 other specify
41811         drops
41816         drops
41819            mg
41830            mg
41835 other specify
41837 other specify
41838 other specify
41840 other specify
41842         drops
41846            gm
41849 other specify
41850 other specify
41851            mg
41853            mg
41854 other specify
41862         drops
41863         drops
41870            mg
41872            mg
41888 other specify
41891           mcg
41893         drops
41894            mg
41895            mg
41896            mg
41897            mg
41898            mg
41899            mg
41900            mg
41901            mg
41902            mg
41903            mg
41904            mg
41905            mg
41906            mg
41907           tsp
41921   unspecified
41929 other specify
41930 other specify
41937 other specify
41938 other specify
41939 other specify
41946           mcg
41947           mcg
41950           mcg
41973 other specify
41975            mg
41976 other specify
41988 other specify
42004         units
42005         units
42011 other specify
42012 other specify
42030 other specify
42032 other specify
42036         drops
42037 other specify
42039 other specify
42040 other specify
42043 other specify
42044 other specify
42053 other specify
42055            gm
42057            mg
42061 other specify
42063 other specify
42066 other specify
42100 other specify
42101 other specify
42112           mcg
42116            mg
42119   unspecified
42122   unspecified
42147 other specify
42148 other specify
42149 other specify
42150 other specify
42151 other specify
42152 other specify
42154 other specify
42171         drops
42174 other specify
42198 other specify
42201 other specify
42215   unspecified
42218         units
42219         units
42221 other specify
42227 other specify
42229 other specify
42240   unspecified
42241   unspecified
42242   unspecified
42243   unspecified
42256 other specify
42257 other specify
42259 other specify
42267         drops
42272            mg
42273            mg
42278 other specify
42284           mcg
42286 other specify
42287 other specify
42289 other specify
42291 other specify
42313 other specify
42314 other specify
42345 other specify
42346 other specify
42348 other specify
42349 other specify
42353 other specify
42354 other specify
42355           tsp
42356 other specify
42357 other specify
42358 other specify
42361 other specify
42365 other specify
42366 other specify
42367 other specify
42368         units
42378 other specify
42379 other specify
42384 other specify
42386 other specify
42387 other specify
42399 other specify
42402 other specify
42403 other specify
42404 other specify
42412 other specify
42413 other specify
42417 other specify
42425 other specify
42426 other specify
42433 other specify
42451 other specify
42455            mg
42463 other specify
42464 other specify
42465 other specify
42466            mg
42468   unspecified
42474            mg
42475            mg
42476 other specify
42477 other specify
42478            mg
42479            oz
42480            oz
42481            mg
42482 other specify
42483 other specify
42486 other specify
42488 other specify
42489            mg
42502            mg
42506 other specify
42512 other specify
42513         units
42522 other specify
42537 other specify
42551 other specify
42552 other specify
42553 other specify
42566 other specify
42570 other specify
42572           mcg
42573 other specify
42574 other specify
42578            mg
42579            mg
42593           mcg
42594           mcg
42624 other specify
42626         drops
42627 other specify
42628 other specify
42632 other specify
42633 other specify
42634 other specify
42637 other specify
42638            mg
42640 other specify
42646            ml
42647            ml
42648            ml
42651 other specify
42652 other specify
42655 other specify
42656 other specify
42666 other specify
42668           mcg
42675   unspecified
42678         drops
42679         drops
42694 other specify
42695 other specify
42696 other specify
42697 other specify
42700         drops
42704 other specify
42712 other specify
42716 other specify
42721         units
42725 other specify
42726 other specify
42727         units
42728 other specify
42729 other specify
42740 other specify
42752         units
42753         units
42758            mg
42760 other specify
42761 other specify
42764            mg
42766            mg
42768            mg
42785            mg
42786            mg
42787            mg
42791            mg
42792            mg
42799   unspecified
42821 other specify
42829         drops
42833            mg
42860 other specify
42876            mg
42879         drops
42887   unspecified
42890 other specify
42891 other specify
42892   unspecified
42893   unspecified
42894   unspecified
42913 other specify
42915 other specify
42920           mcg
42923 other specify
42926 other specify
42930 other specify
42931 other specify
42932 other specify
42935 other specify
42936 other specify
42939 other specify
42940 other specify
42946   unspecified
42952            mg
42956 other specify
42959 other specify
42960           mcg
42967 other specify
42994 other specify
43013           mcg
43045 other specify
43064 other specify
43065 other specify
43069 other specify
43072 other specify
43081 other specify
43086 other specify
43105 other specify
43116 other specify
43119 other specify
43123            mg
43134            mg
43135            mg
43136            mg
43137            mg
43138            mg
43151            mg
43153            mg
43169 other specify
43173 other specify
43183            mg
43184            mg
43191 other specify
43200            mg
43202            ml
43204 other specify
43224         drops
43228 other specify
43236            mg
43238 other specify
43239 other specify
43241 other specify
43242 other specify
43243 other specify
43244 other specify
43246 other specify
43247   unspecified
43258            mg
43259            mg
43270            mg
43286            mg
43291            mg
43292            oz
43293 other specify
43310 other specify
43334            mg
43366         drops
43388 other specify
43396            gm
43397            gm
43405 other specify
43412 other specify
43416 other specify
43423           mcg
43424            mg
43430 other specify
43465 other specify
43467 other specify
43469 other specify
43470 other specify
43471 other specify
43482 other specify
43491 other specify
43493            mg
43494            mg
43496            mg
43497            mg
43510 other specify
43511 other specify
43512 other specify
43522 other specify
43527           mcg
43531 other specify
43532 other specify
43535 other specify
43538 other specify
43539 other specify
43540         drops
43545 other specify
43546 other specify
43547            mg
43548 other specify
43549 other specify
43550 other specify
43563 other specify
43570         drops
43601         drops
43610 other specify
43620            mg
43621 other specify
43636 other specify
43637 other specify
43639            gm
43640         drops
43642         drops
43643 other specify
43644         units
43645         units
43646         units
43650            oz
43652 other specify
43653 other specify
43669 other specify
43678 other specify
43683 other specify
43684 other specify
43685 other specify
43686 other specify
43697 other specify
43698 other specify
43701 other specify
43702 other specify
43706 other specify
43707 other specify
43709 other specify
43712 other specify
43714 other specify
43715 other specify
43738   unspecified
43743 other specify
43744 other specify
43745 other specify
43746 other specify
43747 other specify
43751 other specify
43765 other specify
43783 other specify
43784 other specify
43785 other specify
43790         units
43806 other specify
43807 other specify
43829            ml
43838   unspecified
43843            mg
43844            mg
43851            mg
43853   unspecified
43854   unspecified
43878 other specify
43884         units
43887         drops
43893 other specify
43894 other specify
43896 other specify
43897         drops
43919 other specify
43920 other specify
43938 other specify
43939 other specify
43949 other specify
43950 other specify
43958 other specify
43959 other specify
43960 other specify
43963            mg
43965         drops
43975 other specify
43976           mcg
43977           mcg
43980           mcg
43997 other specify
44031           mcg
44037           mcg
44050 other specify
44051         drops
44055         drops
44084 other specify
44087 other specify
44090 other specify
44119         drops
44123 other specify
44126 other specify
44127 other specify
44129 other specify
44131 other specify
44154 other specify
44155 other specify
44157 other specify
44158 other specify
44207 other specify
44209 other specify
44211 other specify
44212 other specify
44214            mg
44216 other specify
44218 other specify
44219            mg
44220            ml
44222   unspecified
44223         drops
44224         drops
44225         drops
44226         units
44227         drops
44234         units
44235         units
44240         drops
44241            mg
44242           tsp
44243   unspecified
44244   unspecified
44246         units
44247         units
44249 other specify
44250 other specify
44251 other specify
44252 other specify
44253 other specify
44268 other specify
44280 other specify
44282 other specify
44309   unspecified
44330 other specify
44334 other specify
44335 other specify
44336 other specify
44337 other specify
44347   unspecified
44350            mg
44363            mg
44372 other specify
44385            mg
44386            mg
44390 other specify
44391            mg
44392            mg
44395 other specify
44398 other specify
44421 other specify
44428 other specify
44429            mg
44431 other specify
44434            gm
44452 other specify
44473 other specify
44501         drops
44507         drops
44520         drops
44524         units
44531         units
44542 other specify
44543 other specify
44544 other specify
44545            ml
44546 other specify
44547 other specify
44552            ml
44558 other specify
44559 other specify
44570 other specify
44571 other specify
44576 other specify
44577 other specify
44595 other specify
44607 other specify
44608 other specify
44609 other specify
44614 other specify
44616 other specify
44618 other specify
44646            ml
44649 other specify
44652   unspecified
44653   unspecified
44654   unspecified
44655   unspecified
44658   unspecified
44660            mg
44663            mg
44671 other specify
44672            mg
44677            mg
44679            mg
44683         drops
44684 other specify
44706 other specify
44732            mg
44742 other specify
44743 other specify
44745 other specify
44746            mg
44747 other specify
44755   unspecified
44757   unspecified
44769         drops
44771 other specify
44782   unspecified
44795 other specify
44796         drops
44797         drops
44799            mg
44804            mg
44820 other specify
44827 other specify
44828 other specify
44829 other specify
44830         units
44831         drops
44834 other specify
44843 other specify
44844 other specify
44857            mg
44858            mg
44862 other specify
44863           mcg
44864           mcg
44866   unspecified
44867 other specify
44868 other specify
44869 other specify
44875            mg
44877           mcg
44879 other specify
44899   unspecified
44905   unspecified
44915         drops
44916           mcg
44917 other specify
44918           mcg
44920         drops
44922            mg
44924 other specify
44925         drops
44933            ml
44936            mg
44937            ml
44938            ml
44939            oz
44946 other specify
44947 other specify
44948 other specify
44949 other specify
44950 other specify
44957 other specify
44958 other specify
44990            gm
44997 other specify
45005            mg
45007 other specify
45014 other specify
45015            mg
45016 other specify
45017            mg
45023         drops
45027         drops
45034 other specify
45045 other specify
45047         units
45053 other specify
45054 other specify
45055 other specify
45059 other specify
45061 other specify
45062 other specify
45063            mg
45064 other specify
45066         drops
45072            mg
45073            mg
45076 other specify
45109 other specify
45112 other specify
45116            mg
45117 other specify
45123         units
45134            mg
45139           mcg
45149 other specify
45150 other specify
45154 other specify
45172         drops
45173         drops
45174            ml
45175            ml
45178 other specify
45179 other specify
45180 other specify
45181 other specify
45182 other specify
45184 other specify
45185 other specify
45186 other specify
45187 other specify
45188 other specify
45189 other specify
45195            mg
45199            mg
45208 other specify
45209         drops
45210 other specify
45212 other specify
45216 other specify
45224   unspecified
45225 other specify
45236 other specify
45255            mg
45257         drops
45263 other specify
45268 other specify
45273         drops
45274         drops
45280           mcg
45283 other specify
45286           mcg
45294           mcg
45295            gm
45297         drops
45298 other specify
45299 other specify
45302 other specify
45305            mg
45307 other specify
45309            mg
45310 other specify
45311 other specify
45312 other specify
45313 other specify
45322            mg
45327            mg
45335            mg
45344 other specify
45345 other specify
45358   unspecified
45359   unspecified
45372 other specify
45383            ml
45403   unspecified
45406 other specify
45411 other specify
45425 other specify
45426 other specify
45434   unspecified
45435         drops
45443           mcg
45445 other specify
45451 other specify
45452 other specify
45463            mg
45468            mg
45470 other specify
45471         mg/ml
45476            mg
45479         mg/ml
45480            mg
45484 other specify
45499 other specify
45500 other specify
45503            mg
45504 other specify
45508 other specify
45531            mg
45534            mg
45555 other specify
45556 other specify
45572         drops
45582 other specify
45585 other specify
45591         drops
45626            mg
45629            ml
45642           mcg
45650 other specify
45651 other specify
45655 other specify
45656 other specify
45663         drops
45664 other specify
45665 other specify
45667 other specify
45670            mg
45671            mg
45674 other specify
45675 other specify
45676 other specify
45683 other specify
45699         drops
45700         drops
45703            ml
45704         drops
45724         units
45725         units
45726         units
45727            oz
45728         units
45729            mg
45735 other specify
45736 other specify
45751   unspecified
45764         units
45775         drops
45776         drops
45787 other specify
45791 other specify
45798            mg
45799 other specify
45800 other specify
45816 other specify
45820 other specify
45843 other specify
45853 other specify
45862 other specify
45863 other specify
45864 other specify
45869 other specify
45870 other specify
45871         drops
45872 other specify
45876            mg
45886         drops
45898 other specify
45899 other specify
45901 other specify
45908 other specify
45909 other specify
45914 other specify
45924            mg
45968            mg
45969 other specify
45970 other specify
45971            mg
45972            gm
45990 other specify
45994         units
45995 other specify
45996         drops
45997 other specify
46014 other specify
46018 other specify
46019 other specify
46020            ml
46021 other specify
46022 other specify
46025 other specify
46043 other specify
46044 other specify
46071 other specify
46075            mg
46076 other specify
46078            mg
46085   unspecified
46091 other specify
46092 other specify
46094            mg
46095         units
46100 other specify
46101         drops
46102         drops
46107 other specify
46108 other specify
46110 other specify
46116 other specify
46119 other specify
46122 other specify
46131         drops
46132         drops
46134 other specify
46170 other specify
46171 other specify
46173 other specify
46174 other specify
46177           mcg
46186   unspecified
46198 other specify
46200 other specify
46201 other specify
46202            mg
46213 other specify
46218 other specify
46219 other specify
46227 other specify
46255 other specify
46265            mg
46277 other specify
46278 other specify
46287 other specify
46288 other specify
46291 other specify
46292 other specify
46293 other specify
46295 other specify
46296 other specify
46302 other specify
46303            mg
46305            mg
46308            mg
46311   unspecified
46312 other specify
46313   unspecified
46314   unspecified
46319 other specify
46320            mg
46324         drops
46325            mg
46345           mcg
46350            mg
46355            mg
46358            mg
46360 other specify
46377 other specify
46379            mg
46399 other specify
46406 other specify
46410            mg
46411         drops
46413 other specify
46418 other specify
46424 other specify
46431 other specify
46432 other specify
46435           mcg
46436 other specify
46474 other specify
46475 other specify
46476 other specify
46478 other specify
46479 other specify
46482 other specify
46483 other specify
46486 other specify
46487 other specify
46488 other specify
46489 other specify
46490            mg
46493 other specify
46494 other specify
46499            mg
46502            ml
46504            ml
46505         drops
46506         drops
46512            mg
46517         units
46521           mg/
46524         drops
46526            mg
46527            ml
46528         drops
46529            gm
46530         drops
46532            mg
46533            mg
46534         drops
46544            mg
46547            ml
46551         drops
46553         drops
46555 other specify
46568           mcg
46569            ml
46570            mg
46571         drops
46572           mcg
46573            mg
46574           mcg
46575           mcg
46579   unspecified
46588            ml
46590         drops
46591           mcg
46593         drops
46606         drops
46607            mg
46615 other specify
46616 other specify
46617 other specify
46618            mg
46664 other specify
46665            mg
46676 other specify
46680         units
46687         drops
46690 other specify
46694 other specify
46702 other specify
46703 other specify
46716            mg
46717            mg
46729           mcg
46730           mcg
46732            ml
46737   unspecified
46747   unspecified
46753 other specify
46763            mg
46766            mg
46767 other specify
46775 other specify
46776 other specify
46777 other specify
46781 other specify
46782 other specify
46783 other specify
46784 other specify
46785 other specify
46786 other specify
46788 other specify
46789 other specify
46804           mcg
46811 other specify
46812 other specify
46816 other specify
46827         drops
46849           mcg
46853           mcg
46874 other specify
46880 other specify
46883            mg
46884 other specify
46885 other specify
46889            mg
46891 other specify
46902         drops
46903 other specify
46904 other specify
46905         drops
46908 other specify
46915 other specify
46931 other specify
46938 other specify
46944 other specify
46961 other specify
46962         drops
46972 other specify
46973 other specify
46976           mcg
46977 other specify
46978         drops
46981         drops
46982 other specify
46983            ml
46984 other specify
46985 other specify
46986 other specify
47000            mg
47004 other specify
47010 other specify
47011 other specify
47018 other specify
47024 other specify
47025 other specify
47041            mg
47043 other specify
47049         drops
47060   unspecified
47069         drops
47076         drops
47080            oz
47081           tsp
47085 other specify
47086 other specify
47090         mg/ml
47095 other specify
47096 other specify
47097 other specify
47098 other specify
47104 other specify
47105 other specify
47106 other specify
47108            ml
47125           mcg
47126            mg
47128            mg
47137         drops
47140            ml
47143 other specify
47146            mg
47152         drops
47154 other specify
47155 other specify
47156 other specify
47162 other specify
47164 other specify
47178 other specify
47180         drops
47181 other specify
47183 other specify
47184 other specify
47187 other specify
47193 other specify
47194 other specify
47196 other specify
47197 other specify
47204   unspecified
47208 other specify
47209 other specify
47210 other specify
47220 other specify
47221            mg
47222 other specify
47240         drops
47248 other specify
47251 other specify
47253 other specify
47260 other specify
47302         drops
47323            mg
47325            mg
47334 other specify
47343            mg
47345            mg
47350 other specify
47355 other specify
47360   unspecified
47390           mcg
47407            mg
47409            mg
47411 other specify
47412 other specify
47415 other specify
47416 other specify
47417 other specify
47420 other specify
47421 other specify
47433            mg
47439            mg
47451           mcg
47478 other specify
47479 other specify
47483 other specify
47484 other specify
47486 other specify
47493 other specify
47496 other specify
47497 other specify
47498 other specify
47513            iu
47539         drops
47540 other specify
47544   unspecified
47547         drops
47557 other specify
47559            ml
47561            gm
47562 other specify
47563 other specify
47576 other specify
47577 other specify
47578 other specify
47586 other specify
47587 other specify
47588 other specify
47589            mg
47590            ml
47592            mg
47593            ml
47594            mg
47595            ml
47597            mg
47600            mg
47628 other specify
47629           mcg
47630         drops
47635         units
47636            mg
47658         drops
47681           mcg
47684 other specify
47693 other specify
47694 other specify
47696 other specify
47698 other specify
47699 other specify
47702         drops
47706            mg
47715   unspecified
47716   unspecified
47720 other specify
47721         drops
47733 other specify
47734         drops
47739   unspecified
47743            mg
47744 other specify
47745            mg
47746         units
47752 other specify
47755 other specify
47760 other specify
47800 other specify
47801 other specify
47802 other specify
47803 other specify
47808 other specify
47810 other specify
47811 other specify
47812 other specify
47815 other specify
47816 other specify
47817 other specify
47825   unspecified
47835 other specify
47836 other specify
47840 other specify
47847 other specify
47860            mg
47861         mg/ml
47862            ml
47863         units
47877            mg
47887 other specify
47888 other specify
47889         drops
47890            mg
47891           tsp
47894            mg
47900 other specify
47909         units
47910         drops
47951         drops
47952            mg
47953 other specify
47969 other specify
47970 other specify
47971 other specify
47975 other specify
47976 other specify
47981 other specify
47983            mg
47984 other specify
47985 other specify
47989 other specify
47990 other specify
47995 other specify
47996 other specify
47997 other specify
47998            mg
47999            ml
48000            mg
48001            mg
48002            mg
48003            mg
48004            mg
48005            mg
48007            mg
48013 other specify
48014 other specify
48016         drops
48020 other specify
48021 other specify
48028 other specify
48029 other specify
48030 other specify
48031 other specify
48034 other specify
48035 other specify
48040 other specify
48041            oz
48046 other specify
48047 other specify
48048 other specify
48049 other specify
48069 other specify
48072 other specify
48087 other specify
48088 other specify
48089         units
48090         units
48094         units
48100 other specify
48101         drops
48102 other specify
48103            ml
48105 other specify
48106 other specify
48107 other specify
48108 other specify
48109 other specify
48110 other specify
48114 other specify
48120 other specify
48121         units
48127 other specify
48131         units
48132 other specify
48133 other specify
48142 other specify
48143         units
48147 other specify
48148 other specify
48151 other specify
48152 other specify
48155            mg
48157 other specify
48158 other specify
48159 other specify
48160 other specify
48163   unspecified
48167 other specify
48169            mg
48178         drops
48182           mcg
48185            mg
48188 other specify
48201            mg
48213 other specify
48214 other specify
48215 other specify
48217           mcg
48220 other specify
48221 other specify
48222 other specify
48223            ml
48231            mg
48237 other specify
48238            mg
48240            mg
48248            mg
48251 other specify
48252 other specify
48258 other specify
48265            oz
48266            oz
48267         drops
48271            mg
48274         drops
48277         drops
48285            gm
48287            ml
48288         drops
48289           mcg
48291            gm
48292           mcg
48294 other specify
48297 other specify
48298 other specify
48299 other specify
48300 other specify
48306 other specify
48307         drops
48310 other specify
48311         drops
48314            mg
48322 other specify
48327            ml
48328            mg
48334            ml
48336            mg
48337            mg
48338            mg
48339            mg
48342            mg
48343 other specify
48344            mg
48345 other specify
48350            mg
48351            mg
48352            mg
48353            mg
48354            mg
48355 other specify
48374         drops
48376         drops
48378         drops
48380 other specify
48381 other specify
48383 other specify
48384 other specify
48394         drops
48406 other specify
48420            mg
48438           mcg
48439            mg
48441 other specify
48442 other specify
48444           mcg
48447 other specify
48448 other specify
48481         drops
48483         drops
48494 other specify
48495            mg
48496            mg
48497            mg
48498            mg
48499 other specify
48500            mg
48502            mg
48503 other specify
48504            mg
48505            mg
48513 other specify
48520           tsp
48521            ml
48540            mg
48541 other specify
48542 other specify
48560 other specify
48598 other specify
48602            mg
48610            mg
48611           mcg
48615           mcg
48621 other specify
48624 other specify
48633   unspecified
48636 other specify
48643 other specify
48661 other specify
48662            ml
48664 other specify
48667 other specify
48668 other specify
48673   unspecified
48680 other specify
48683 other specify
48684 other specify
48692            mg
48693            mg
48694         drops
48696 other specify
48697 other specify
48698 other specify
48712 other specify
48713 other specify
48718            mg
48719         drops
48720 other specify
48721 other specify
48722 other specify
48724 other specify
48725 other specify
48729 other specify
48733 other specify
48734 other specify
48735 other specify
48736 other specify
48770         units
48782   unspecified
48802         drops
48806         drops
48808         drops
48812            ml
48819            mg
48821            mg
48835 other specify
48845 other specify
48855            mg
48859            mg
48862            mg
48889 other specify
48890 other specify
48891 other specify
48892 other specify
48893         drops
48894            mg
48902 other specify
48906 other specify
48918 other specify
48921 other specify
48935 other specify
48946            mg
48994            mg
48997   unspecified
49002           mcg
49005         drops
49012 other specify
49015            ml
49016         drops
49017           mcg
49018           mcg
49025           mcg
49026         drops
49027 other specify
49030            gm
49033 other specify
49034 other specify
49035 other specify
49036 other specify
49042 other specify
49044 other specify
49046 other specify
49051   unspecified
49052   unspecified
49082 other specify
49084 other specify
49096 other specify
49105   unspecified
49113 other specify
49117           mcg
49120            mg
49123 other specify
49127            mg
49128 other specify
49129 other specify
49130 other specify
49163            mg
49164 other specify
49167            mg
49168           mcg
49169            mg
49170            mg
49184 other specify
49193            mg
49196            mg
49208 other specify
49209 other specify
49216 other specify
49217 other specify
49218 other specify
49219            mg
49220            mg
49227 other specify
49229 other specify
49231 other specify
49232 other specify
49248           mcg
49252 other specify
49253 other specify
49304 other specify
49316 other specify
49323 other specify
49324 other specify
49343 other specify
49345 other specify
49346 other specify
49348 other specify
49350 other specify
49351 other specify
49352 other specify
49371 other specify
49372            mg
49376 other specify
49377 other specify
49378 other specify
49379 other specify
49388 other specify
49393         units
49394         units
49395         units
49398            mg
49403            mg
49404            mg
49408 other specify
49409 other specify
49437 other specify
49438 other specify
49442 other specify
49460 other specify
49461 other specify
49462         units
49463 other specify
49473 other specify
49509 other specify
49510 other specify
49518           mcg
49520            mg
49523           mcg
49526 other specify
49531   unspecified
49549 other specify
49550 other specify
49553           mcg
49554           mcg
49567 other specify
49568 other specify
49569 other specify
49572 other specify
49588           mcg
49590 other specify
49591 other specify
49592 other specify
49593 other specify
49596 other specify
49601         drops
49605 other specify
49607            mg
49608         units
49645 other specify
49649 other specify
49654 other specify
49659 other specify
49698            mg
49699 other specify
49705   unspecified
49715 other specify
49731 other specify
49748 other specify
49753            oz
49754            oz
49755            mg
49756            ml
49757            mg
49758            mg
49764         drops
49766         drops
49767 other specify
49768 other specify
49769 other specify
49773 other specify
49792 other specify
49793 other specify
49799   unspecified
49812            mg
49820 other specify
49821 other specify
49845            mg
49846            mg
49849 other specify
49852 other specify
49854 other specify
49855 other specify
49856            ml
49857            mg
49861 other specify
49862 other specify
49871 other specify
49878 other specify
49883 other specify
49886 other specify
49889 other specify
49890 other specify
49898 other specify
49905 other specify
49906 other specify
49907 other specify
49908 other specify
49911 other specify
49912 other specify
49963            mg
49966            iu
49978 other specify
49985 other specify
49986 other specify
49987 other specify
49990 other specify
49991 other specify
49992 other specify
49993 other specify
49996 other specify
50000 other specify
50001 other specify
50002 other specify
50004 other specify
50006 other specify
50007 other specify
50008 other specify
50009 other specify
50011         drops
50012   unspecified
50014   unspecified
50029            mg
50030            mg
50033            mg
50034            mg
50048            mg
50050            mg
50073 other specify
50077         units
50107 other specify
50108 other specify
50115 other specify
50116 other specify
50117 other specify
50118           mcg
50154            mg
50159   unspecified
50161   unspecified
50187 other specify
50189 other specify
50190 other specify
50194 other specify
50195 other specify
50196 other specify
50198 other specify
50199 other specify
                                                      dose_unit_specify
22                                                                 <NA>
40                                                      based on weight
41                                                                 <NA>
42                                                      based on weight
46                                                  tablet/pill/capsule
48                                                                 tube
49                                                                 tube
51                                                  tablet/pill/capsule
59                                                1 tablet/pill/capsule
60                                                          bottle/vial
62                                                          application
63                                                  tablet/pill/capsule
67                                                         small amount
70                                                         small amount
74                                                                drops
84                                                                spray
87                                                      0.25 inch strip
91                                                                 <NA>
111                                                                <NA>
112                                                                <NA>
113                                                                <NA>
114                                                                <NA>
149                                                      shampoo/mousse
150                                                        small amount
151                                                         application
152                                                 tablet/pill/capsule
153                                                 tablet/pill/capsule
155                                                 tablet/pill/capsule
167                                                                <NA>
188                                                 tablet/pill/capsule
192                                                 tablet/pill/capsule
220                                                 tablet/pill/capsule
230                         272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                               drops
235                                                                <NA>
236                                                                tube
237                                                                tube
238                                                        small amount
242                                                                <NA>
243                                                                tube
248                                                                tube
257                                                                <NA>
275                                                 tablet/pill/capsule
276                                                 tablet/pill/capsule
277                                                 tablet/pill/capsule
279                                                     moderate amount
280                                                        small amount
310                                                                <NA>
317                                                                <NA>
318                                                                <NA>
324                                                     based on weight
328                                                     based on weight
329                                                     based on weight
332                                                     based on weight
333                                                     based on weight
347                                                                <NA>
348                                                                <NA>
350                                                                <NA>
351                                                                <NA>
353                                                                <NA>
355                                                                <NA>
366                                                                <NA>
368                                                                <NA>
375                                                 tablet/pill/capsule
376                                                 tablet/pill/capsule
383                                                 tablet/pill/capsule
384                                        based on weight (50-100 lbs)
385                                        based on weight (50-100 lbs)
386                                                 tablet/pill/capsule
403                                                                <NA>
404                                                                <NA>
414                                                                <NA>
447                                                                <NA>
449                                                                <NA>
453                                                                <NA>
480                                                              1 tube
496                                                                <NA>
498                                                     based on weight
519                                                         unspecified
537                                                                <NA>
597                                                                   1
598                                                                   1
603                                                 tablet/pill/capsule
604                                                 tablet/pill/capsule
610                                                                <NA>
619                                                 tablet/pill/capsule
637                                                     based on weight
642                                                                <NA>
686                                                                <NA>
688                                                                <NA>
703                                                     based on weight
704                                                     based on weight
709                                                                <NA>
710                                                                <NA>
712                                                                <NA>
725                                                                <NA>
728                                                 tablet/pill/capsule
729                                                 tablet/pill/capsule
730                                                                <NA>
733                                                                <NA>
734                                                          inch strip
737                                                                <NA>
738                                        based on weight (50-100 lbs)
739                                        based on weight (60-120 lbs)
754                                                 tablet/pill/capsule
755                                                     based on weight
757                                                     based on weight
760                                                                <NA>
778                                                                <NA>
785                                                 tablet/pill/capsule
790                                                 tablet/pill/capsule
792                                                 tablet/pill/capsule
797                                                                <NA>
798                                                                <NA>
799                                                                <NA>
800                                                                <NA>
801                                                                <NA>
802                                                                <NA>
803                                                     based on weight
804                                                         unspecified
810                                                         bottle/vial
816                                                        pack/package
819                                                                <NA>
820                                                                <NA>
823                                                                <NA>
824                                                 tablet/pill/capsule
832                                                                <NA>
850                                                                <NA>
851                                                                <NA>
862                                                 tablet/pill/capsule
871                                                                <NA>
874                                                                <NA>
877                                                                <NA>
878                                                                <NA>
879                                                                <NA>
880                                                                <NA>
884                                                                <NA>
887                                                                <NA>
891                                                                <NA>
893                                                                <NA>
899                                                                <NA>
901                                                                <NA>
905                                                                <NA>
913                                                     based on weight
921                                                     based on weight
929                                                                <NA>
930                                                                <NA>
950                                                                <NA>
955                                                              collar
958                                                                <NA>
969                                                                <NA>
970                                                              1 pump
977                                                                <NA>
982                                                 tablet/pill/capsule
983                                                 tablet/pill/capsule
989                                                     based on weight
1001                                                               <NA>
1017                                                tablet/pill/capsule
1018                                                tablet/pill/capsule
1019                                                             1 pump
1020                                                         inch strip
1021                                                           wipe/pad
1027                                                     shampoo/mousse
1028                                                               <NA>
1029                                                           wipe/pad
1030                                                     shampoo/mousse
1031                                                               <NA>
1033                                                               <NA>
1036                                                       small amount
1037                                                       small amount
1039                                                        bottle/vial
1042                                                           wipe/pad
1050                                                    based on weight
1072                                                               <NA>
1073                                                               pump
1074                                                tablet/pill/capsule
1087                           27 mg milbemycin oxime, 1620 mg spinosad
1091                                                               <NA>
1097                                                               <NA>
1098                                                               <NA>
1099                                                tablet/pill/capsule
1100                                                tablet/pill/capsule
1101                                                tablet/pill/capsule
1108                                                           wipe/pad
1111                                                               <NA>
1112                                                        unspecified
1116                                                        unspecified
1129                                                tablet/pill/capsule
1131                                                               <NA>
1150                                                       small amount
1152                                       based on weight (50-100 lbs)
1153                                       based on weight (50-100 lbs)
1154                                       based on weight (50-100 lbs)
1155                                                tablet/pill/capsule
1159      460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                       based on weight (50-100 lbs)
1161                                          based on weight (60+ lbs)
1168                                                               <NA>
1169                                                               <NA>
1170                                                               dose
1173                                                        application
1174                                                               <NA>
1175                                                                  %
1176                                                               <NA>
1177                                                                  %
1179                                                       small amount
1185                                                    based on weight
1186                                                    based on weight
1187                                                               <NA>
1189                                                    based on weight
1190                                                    based on weight
1193                                                               <NA>
1194                                                               <NA>
1195                                                    based on weight
1208                                                     1 pack/package
1217                                                        combination
1226                                                    based on weight
1233                                                               <NA>
1247                                                    based on weight
1285                                                               <NA>
1336                                                               <NA>
1344                                                tablet/pill/capsule
1345                                                               <NA>
1346                                                       small amount
1348                                                              spray
1355                                                    based on weight
1371                                              1 tablet/pill/capsule
1377                                                               <NA>
1378                                                               <NA>
1379                                                               <NA>
1380                                                               <NA>
1398                                                               <NA>
1404                                                              spray
1405                                                               <NA>
1415                                                       small amount
1417                                                               tube
1419                                       based on weight (50-100 lbs)
1420                                                               <NA>
1422                                                tablet/pill/capsule
1434                                                               tube
1435                                                tablet/pill/capsule
1438                                                tablet/pill/capsule
1441                                                tablet/pill/capsule
1442                                                tablet/pill/capsule
1443                                                        bottle/vial
1450                                                               tube
1451                                                tablet/pill/capsule
1459                                                        application
1462                                                        bottle/vial
1464                                                    based on weight
1473                                                               <NA>
1475                                                               <NA>
1491                                                               <NA>
1499                                                               <NA>
1500                                                               <NA>
1501                                              1 tablet/pill/capsule
1504                                                               <NA>
1511                                                    based on weight
1512                                                    based on weight
1514                                                    based on weight
1528                                                    based on weight
1529                                                    based on weight
1532                                                             1 tube
1534                                                               <NA>
1535                                                               <NA>
1536                                                        application
1537                                                tablet/pill/capsule
1538                                                               <NA>
1539                                                               tube
1541                                                               <NA>
1542                                                               <NA>
1556                                                           inhalant
1572                                       based on weight (50-100 lbs)
1586                                                               <NA>
1587                                                        combination
1598                                                    based on weight
1599                                                               <NA>
1633                                       based on weight (50-100 lbs)
1634                                                               <NA>
1635                                           4 tablets/pills/capsules
1636                                                               <NA>
1650                                                               <NA>
1663                                       based on weight (60-120 lbs)
1668                                                    moderate amount
1683                                                             collar
1684                                                     shampoo/mousse
1685                                                              spray
1689                                                    moderate amount
1690                                                              spray
1692                                                    moderate amount
1695                                                               <NA>
1697                                                             collar
1708                                                               <NA>
1710                                                               <NA>
1712                                       based on weight (50-100 lbs)
1715                                       based on weight (50-100 lbs)
1718                                                               <NA>
1720                                       based on weight (50-100 lbs)
1729                                                               <NA>
1730                                                               <NA>
1743                                                               <NA>
1747                                                        bottle/vial
1748                                                      1 bottle/vial
1749                                                    based on weight
1756                                                        unspecified
1757                                                        unspecified
1758                                                    based on weight
1759                                                    based on weight
1760                                                               <NA>
1761                                                              spray
1769                                                               <NA>
1773                                                tablet/pill/capsule
1774                                                               <NA>
1789                                                               <NA>
1791                                                               <NA>
1794                                                               <NA>
1795                                                               <NA>
1796                                                tablet/pill/capsule
1798                                                               <NA>
1805                                                               <NA>
1809                                                               <NA>
1812                                                               <NA>
1813                                                               <NA>
1819                                                               <NA>
1820                                                        unspecified
1823                                                               <NA>
1845                                                               tube
1846                                                tablet/pill/capsule
1847                                                               tube
1848                                                tablet/pill/capsule
1849                                                    based on weight
1850                                                         inch strip
1851                                                    0.25 inch strip
1867                                                    based on weight
1872                                                    based on weight
1877                                                        unspecified
1887                                                              spray
1888                                                             collar
1917                                                    based on weight
1922                                                              spray
1925                                                     shampoo/mousse
1926                                                       small amount
1928                                                    based on weight
1929                                                    based on weight
1931                                                       small amount
1939                                                        unspecified
1941                                                       small amount
1945                                                              daily
1948                                                tablet/pill/capsule
1962                                                    based on weight
1965                                                               <NA>
1980                                                               tube
1981                                                tablet/pill/capsule
1982                                              1 tablet/pill/capsule
1983                                                             1 tube
1984                                            0.5 tablet/pill/capsule
1985                                              1 tablet/pill/capsule
1994                                                               <NA>
1998                                                               puff
2006                                                               <NA>
2012                                                               <NA>
2013                                                               <NA>
2016                                                    based on weight
2022                                                       small amount
2025                                                        bottle/vial
2026                                                tablet/pill/capsule
2029                                                               <NA>
2030                                                               <NA>
2032                                                        unspecified
2033                                                        unspecified
2034                                                        unspecified
2041                                                        as directed
2042                                                        as directed
2043                                                               <NA>
2050                                                    based on weight
2075                                       based on weight (50-100 lbs)
2083                                        based on weight (40-88 lbs)
2084                                       based on weight (50-100 lbs)
2085                                                    based on weight
2087                                       based on weight (50-100 lbs)
2088                                        based on weight (44-88 lbs)
2089                                          based on weight (80+ lbs)
2091                                                    based on weight
2093                                                    based on weight
2107                                                tablet/pill/capsule
2108                                              1 tablet/pill/capsule
2109                                              1 tablet/pill/capsule
2110                                                    based on weight
2113                                                tablet/pill/capsule
2115                                                               <NA>
2116                                                       small amount
2123                                           2 tablets/pills/capsules
2126                                                tablet/pill/capsule
2127                                                tablet/pill/capsule
2149                                                    based on weight
2151                                                    based on weight
2161                                                    based on weight
2165                                                              drops
2166                                                               <NA>
2195                                                        unspecified
2199                                                    based on weight
2200                                                    based on weight
2201                                                tablet/pill/capsule
2202                                                tablet/pill/capsule
2203                                                tablet/pill/capsule
2204                                                tablet/pill/capsule
2205                                                tablet/pill/capsule
2206                                              1 tablet/pill/capsule
2207                                              1 tablet/pill/capsule
2211                                                               <NA>
2219                                              1 tablet/pill/capsule
2220                                              1 tablet/pill/capsule
2224                                              1 tablet/pill/capsule
2226                                              1 tablet/pill/capsule
2228                                                               <NA>
2229                                              1 tablet/pill/capsule
2233                                                               <NA>
2241                                                        application
2243                                                    based on weight
2244                                                    based on weight
2250                                                        unspecified
2255                                                               tube
2258                                                               <NA>
2259                                                               <NA>
2260                                                               <NA>
2261                                                               <NA>
2262                                                               <NA>
2263                                                               <NA>
2264                                                               <NA>
2265                                                               <NA>
2266                                                               <NA>
2269                                                               <NA>
2270                                                               <NA>
2272                                                               <NA>
2278                                                               <NA>
2279                                                               <NA>
2280                                                    based on weight
2283                                                    based on weight
2301                                                             liquid
2302                                                               <NA>
2339                                                               <NA>
2342                                                               <NA>
2390                                                              spray
2398                                                              spray
2404                                                tablet/pill/capsule
2405                                                        application
2406                                                               <NA>
2409                                                               <NA>
2418                                                               <NA>
2428                                                               <NA>
2463                                                       pack/package
2464                                                               <NA>
2467                                                               <NA>
2473                                                               <NA>
2474                                                               <NA>
2477                                                               <NA>
2478                                                               <NA>
2479                                                tablet/pill/capsule
2481                                                              spray
2482                                       based on weight (50-100 lbs)
2486                                                          as needed
2487                                                           biweekly
2490                                                            5 drops
2491                                                       small amount
2492                                                         1 wipe/pad
2499                                                       pack/package
2500                                              1 tablet/pill/capsule
2501                                                               <NA>
2502                                                               <NA>
2503                                                               <NA>
2504                                              1 tablet/pill/capsule
2505                                       based on weight (50-100 lbs)
2506                                       based on weight (60-120 lbs)
2508                                                tablet/pill/capsule
2517                                                               <NA>
2518                                                tablet/pill/capsule
2534                                                               <NA>
2539                                                    based on weight
2540                                       based on weight (50-100 lbs)
2542                                       based on weight (50-100 lbs)
2543                                                             collar
2545                                                tablet/pill/capsule
2546                                                             collar
2547                                              1 tablet/pill/capsule
2548                                          based on weight (18+ lbs)
2549                                                               <NA>
2550                                                               <NA>
2558                                                    based on weight
2559                                                    based on weight
2560                                                    based on weight
2562                                                               <NA>
2566                                                               <NA>
2575                                                               <NA>
2578                                                              spray
2580                                                           ointment
2583                                                               <NA>
2599                                                               <NA>
2600                                                    based on weight
2642                                                              spray
2651                                                        unspecified
2652                                                               <NA>
2653                                                               <NA>
2655                                                               <NA>
2659                                                        unspecified
2660                                                        unspecified
2661                                                        unspecified
2699                                                              spray
2710                                                    based on weight
2721                                                               <NA>
2726                                                               dose
2731                                                               <NA>
2735                                                               <NA>
2737                                                               <NA>
2738                                                               <NA>
2739                                                               <NA>
2742                                                    based on weight
2743                                                    based on weight
2745                                                    based on weight
2746                                                    based on weight
2748                                                    based on weight
2749                                                    based on weight
2753                                                    based on weight
2756                                                    based on weight
2805                                                               <NA>
2815                                                               <NA>
2818                                                       pack/package
2825                                                    based on weight
2827                                                    based on weight
2828                                                tablet/pill/capsule
2833                                                               <NA>
2838                                              1 tablet/pill/capsule
2839                                                               <NA>
2842                                                               <NA>
2844                                                               <NA>
2846                                              1 tablet/pill/capsule
2855                                                tablet/pill/capsule
2869                                                               <NA>
2897                                                     shampoo/mousse
2900                                                       small amount
2903                                                     shampoo/mousse
2904                                                    moderate amount
2905                                                             weekly
2907                                                       pack/package
2911                                       based on weight (50-100 lbs)
2912                                        based on weight (24-60 lbs)
2913                                                               <NA>
2919                                              1 tablet/pill/capsule
2920                                              1 tablet/pill/capsule
2921                                                                 gm
2922                                                tablet/pill/capsule
2923                                                tablet/pill/capsule
2925                                                        unspecified
2941                                                               <NA>
2942                                                                  %
2943                                              1 tablet/pill/capsule
2944                                                               <NA>
2946                                                               <NA>
2951                                                               <NA>
2958                                                tablet/pill/capsule
2959                                                tablet/pill/capsule
2960                                                tablet/pill/capsule
2961                                                tablet/pill/capsule
2962                                                tablet/pill/capsule
2963                                                tablet/pill/capsule
2964                                                tablet/pill/capsule
2974                                                tablet/pill/capsule
2975                                                        application
2978                                                tablet/pill/capsule
2980                                                               <NA>
2981                                                               <NA>
2988                                                               <NA>
2993                                                               <NA>
2997                                                               <NA>
3002                                                               <NA>
3003                                                       small amount
3007                                                               <NA>
3028                                                               <NA>
3031                                                               <NA>
3055                                                           ointment
3058                                                       small amount
3060                                        based on weight (26-50 lbs)
3095                                                        unspecified
3110                                                               <NA>
3119                                                               <NA>
3140                                                        unspecified
3147                                                               <NA>
3179                                                               <NA>
3180                                                               <NA>
3208                                                               <NA>
3209                                                               <NA>
3212                                                               <NA>
3246                                                    based on weight
3247                                                tablet/pill/capsule
3250                                                    based on weight
3251                                                    based on weight
3253                                       based on weight (50-100 lbs)
3257                                                               <NA>
3271                                                tablet/pill/capsule
3278                                                         inch strip
3280                                              1 tablet/pill/capsule
3284                                                    based on weight
3287                                                       small amount
3291                                                       small amount
3293                                                       small amount
3294                                                tablet/pill/capsule
3300                                                tablet/pill/capsule
3305                                                       small amount
3312                                                    moderate amount
3313                                                       small amount
3339                                                tablet/pill/capsule
3342                                                        application
3345                                                               <NA>
3346                                                               <NA>
3350                                                               <NA>
3360                                                    based on weight
3366                                                               <NA>
3372                                                               <NA>
3375                                                               <NA>
3376                                                        application
3394                                                               <NA>
3399                                                               <NA>
3403                                                               <NA>
3404                                        based on weight (24-60 lbs)
3405                                        based on weight (26-50 lbs)
3406                                                               tube
3421                                                               <NA>
3422                                                               <NA>
3423                                                               <NA>
3425                                                    based on weight
3426                                                        as directed
3429                                                               <NA>
3437                                                               <NA>
3439                                                               <NA>
3445                                                               <NA>
3446                                                               <NA>
3447                                                               <NA>
3448                                                               <NA>
3449                                                               <NA>
3451                                                               <NA>
3455                                                               <NA>
3456                                                             1 tube
3457                                                tablet/pill/capsule
3458                                                               tube
3459                                                               <NA>
3488                                          based on weight (25+ lbs)
3490                                                    based on weight
3491                                                    based on weight
3492                                                    based on weight
3495                                                    based on weight
3496                                                    based on weight
3497                                                    based on weight
3498                                                    based on weight
3512                                              1 tablet/pill/capsule
3513                                                    based on weight
3514                                       based on weight (50-100 lbs)
3515                                                               <NA>
3516                                                tablet/pill/capsule
3517                                                               <NA>
3519                                                    based on weight
3520                                                               <NA>
3522                                                               <NA>
3525                                                               <NA>
3530                                                               pump
3531                                                               <NA>
3535                                                               <NA>
3581                                                tablet/pill/capsule
3619                                                               <NA>
3622                                                       pack/package
3631                                              1 tablet/pill/capsule
3632                                              1 tablet/pill/capsule
3635                                                               <NA>
3636                                                               <NA>
3639                                                               <NA>
3640                                                               <NA>
3641                                                              spray
3649                                                               <NA>
3650                                                               <NA>
3652                                                               <NA>
3666                                                              spray
3667                                                       small amount
3675                                                              spray
3684                                                tablet/pill/capsule
3685                                                               tube
3691                                                        bottle/vial
3692                                                tablet/pill/capsule
3693                                                              spray
3698                                                    based on weight
3699                                                    based on weight
3701                                                    based on weight
3704                                                    based on weight
3705                                                tablet/pill/capsule
3706                                                               <NA>
3710                                                               <NA>
3718                                                               <NA>
3719                                              1 tablet/pill/capsule
3725                                                               <NA>
3726                                                tablet/pill/capsule
3735                                                               <NA>
3741                                                               <NA>
3742                                                               <NA>
3743                                                               <NA>
3744                                                               <NA>
3745                                                               <NA>
3750                                                               <NA>
3760                                                               <NA>
3773                                                               <NA>
3781                                                               <NA>
3782                                                               <NA>
3783                                                               <NA>
3784                                                               <NA>
3785                                                               <NA>
3786                                                               <NA>
3789                                                               <NA>
3797                                                              spray
3798                                                       small amount
3800                                                       small amount
3815                                                               <NA>
3829                                                               <NA>
3830                                                               <NA>
3835                                                               <NA>
3836                                                               <NA>
3838                                                               <NA>
3840                                                        application
3848                                                         inch strip
3857                                              1 tablet/pill/capsule
3858                                                             1 tube
3859                                              1 tablet/pill/capsule
3860                                                tablet/pill/capsule
3861                                                               <NA>
3867                                                               <NA>
3870                                                               <NA>
3871                                                               <NA>
3872                                                               <NA>
3874                                                        application
3881                                                               <NA>
3886                                                    based on weight
3889                                                    based on weight
3897                                                    based on weight
3898                                                               <NA>
3900                                                               <NA>
3903                                                    based on weight
3906                                                    based on weight
3911                                                    based on weight
3938                                                    based on weight
3943                                                    based on weight
3944                                                       small amount
3945                                                               <NA>
3946                                                    based on weight
3952                                                    based on weight
3972                                                    based on weight
3980                                                    based on weight
3984                                                    based on weight
3989                                                tablet/pill/capsule
3990                                                tablet/pill/capsule
4000                                                               <NA>
4017                                              1 tablet/pill/capsule
4030                                                               <NA>
4031                                                tablet/pill/capsule
4042                                                               <NA>
4044                                                               <NA>
4045                                                tablet/pill/capsule
4058                                                    based on weight
4059                                                               <NA>
4060                                                               <NA>
4063                                                               <NA>
4064                                                               <NA>
4066                                                    based on weight
4067                                                    based on weight
4068                                                               <NA>
4069                                                               <NA>
4070                                                               <NA>
4071                                                       small amount
4072                                                    based on weight
4073                                       based on weight (50-100 lbs)
4074                                                               <NA>
4075                                                               <NA>
4077                                                               <NA>
4087                                                               <NA>
4088                                                           ointment
4089                                                               <NA>
4092                                                    syringe/pipette
4095                                                tablet/pill/capsule
4096                                                               <NA>
4097                                                               <NA>
4111                                                tablet/pill/capsule
4112                                                tablet/pill/capsule
4113                                                               <NA>
4114                                                               <NA>
4116                                                               <NA>
4117                                                        bottle/vial
4118                                                tablet/pill/capsule
4119                                                               <NA>
4120                                                tablet/pill/capsule
4125                                                               <NA>
4127                                                    based on weight
4128                                                    based on weight
4131                                                              spray
4132                                                               <NA>
4133                                                               <NA>
4134                                                               <NA>
4159                                                               <NA>
4160                                                               <NA>
4162                                                               <NA>
4172                                        based on weight (44-88 lbs)
4183                                                        as directed
4184                                                               <NA>
4189                                                tablet/pill/capsule
4190                                                tablet/pill/capsule
4191                                                    based on weight
4193                                                               <NA>
4198                                                    based on weight
4199                                                    based on weight
4204                                                        unspecified
4209                                                tablet/pill/capsule
4210                                       based on weight (60-120 lbs)
4212                                                               <NA>
4213                                                               <NA>
4215                                                               <NA>
4216                                                               <NA>
4218                                                               <NA>
4229                                                          100 mg/ml
4244                                                               <NA>
4245                                                               <NA>
4247                                                               <NA>
4265                                                               <NA>
4266                                                               <NA>
4274                                                               <NA>
4298                                        based on weight (44-88 lbs)
4299                                       based on weight (50-100 lbs)
4302                                       based on weight (50-100 lbs)
4304                                                        unspecified
4305                                                        unspecified
4306                                                        unspecified
4307                                                tablet/pill/capsule
4308                                                               <NA>
4309                                                               <NA>
4311                                                               <NA>
4313                                                    based on weight
4314                                                    based on weight
4323                                                    based on weight
4324                                                             powder
4325                                                    based on weight
4326                                                             powder
4334                                                               <NA>
4336                                                tablet/pill/capsule
4338                                                tablet/pill/capsule
4348                                                         inch strip
4349                                                    based on weight
4350                                                    based on weight
4353                                                    based on weight
4354                                                tablet/pill/capsule
4360                                                            1 spray
4368                                                               <NA>
4371                                                               <NA>
4384                                                               <NA>
4389                                                tablet/pill/capsule
4390                                                tablet/pill/capsule
4395                                                               <NA>
4405                                                               <NA>
4409                                                       small amount
4426                                                tablet/pill/capsule
4427                                                               tube
4428                                              1 tablet/pill/capsule
4430                                                               pump
4431                                                               pump
4444                                                               tube
4445                           27 mg milbemycin oxime, 1620 mg spinosad
4446                                                        1 gm/sachet
4454                                                           inhalant
4469                                                       small amount
4470                                                       small amount
4471                                                           wipe/pad
4472                                                       small amount
4480                                                       small amount
4481                                                           wipe/pad
4483                                                tablet/pill/capsule
4486                                                tablet/pill/capsule
4488                                                               <NA>
4491                                                               <NA>
4497                                                    based on weight
4499                                                tablet/pill/capsule
4500                                                tablet/pill/capsule
4501                                                        as directed
4502                                                tablet/pill/capsule
4504                                                        unspecified
4505                                              1 tablet/pill/capsule
4509                                       based on weight (50-100 lbs)
4510                                       based on weight (60-120 lbs)
4511                                                tablet/pill/capsule
4515                                       based on weight (50-100 lbs)
4516                                       based on weight (60-120 lbs)
4517                                                               <NA>
4524                                                    based on weight
4532                                                    based on weight
4533                                                               <NA>
4534                                                                tbs
4536                                                    based on weight
4544                                                               <NA>
4545                                                tablet/pill/capsule
4547                                                               <NA>
4558                                                    based on weight
4559                                                    based on weight
4560                                                tablet/pill/capsule
4561                                                              spray
4562                                                tablet/pill/capsule
4564                                                    based on weight
4565                                                    based on weight
4566                                                    based on weight
4567                                                    based on weight
4568                                                        unspecified
4569                                                    based on weight
4587                                                               <NA>
4597                                                        unspecified
4599                                                               <NA>
4611                                                               <NA>
4627                                                               <NA>
4628                                                               <NA>
4629                                                               <NA>
4631                                                               <NA>
4634                                                       pack/package
4638                                                               <NA>
4640                                                               <NA>
4642                                                               <NA>
4643                                                              0.20%
4644                                                               <NA>
4645                                                               <NA>
4646                                                              0.03%
4647                                                               <NA>
4648                                                               <NA>
4649                                                               <NA>
4651                                                           ointment
4652                                                    moderate amount
4654                                                               <NA>
4655                                                               <NA>
4695                                                tablet/pill/capsule
4711                                                               <NA>
4717                                                               <NA>
4719                                                               <NA>
4720                                                               <NA>
4726                                                    based on weight
4738                                       based on weight (60-120 lbs)
4739                                                    based on weight
4743                                                               <NA>
4744                                                               <NA>
4745                                                               <NA>
4748                                                               <NA>
4757                                                               <NA>
4760                                                tablet/pill/capsule
4761                                                               <NA>
4763                                          based on weight (55+ lbs)
4764                                                               <NA>
4766                                                    based on weight
4777                                                     shampoo/mousse
4780                                          based on weight (88+ lbs)
4782                                                tablet/pill/capsule
4801                                                               <NA>
4802                                                tablet/pill/capsule
4803                                                               <NA>
4805                                                               <NA>
4806                                       based on weight (60-120 lbs)
4813                                                               <NA>
4824                                                               <NA>
4826                                                              units
4828                                                             powder
4832                                                                  %
4850                                                     shampoo/mousse
4853                                                       small amount
4855                                                               <NA>
4858                                                               <NA>
4859                                                               <NA>
4861                                                               <NA>
4862                                                               <NA>
4881                                                         inch strip
4902                                                                  %
4904                                                        combination
4905                                                               <NA>
4910                                                             collar
4912                                                               <NA>
4913                                                             collar
4914                                                               <NA>
4917                                                               <NA>
4935                                                    based on weight
4956                                                       small amount
4960                                                       small amount
4968                                                               <NA>
4969                                                               <NA>
4980                                                       pack/package
4981                                                               <NA>
4996                                                        unspecified
4998                                                               <NA>
5043                                                               <NA>
5046                                                               <NA>
5078                                                    based on weight
5122                                                               <NA>
5123                                                               <NA>
5125                                                               <NA>
5127                                                        unspecified
5134                                                               <NA>
5140                                                               <NA>
5159                                                               <NA>
5160                                                               <NA>
5161                                                               <NA>
5173                                                tablet/pill/capsule
5174                                                tablet/pill/capsule
5191                                                               <NA>
5193                                                               <NA>
5195                                                    based on weight
5203                                                tablet/pill/capsule
5210                                                    moderate amount
5211                                                    moderate amount
5212                                                              spray
5213                                                    moderate amount
5214                                                    based on weight
5220                                                              spray
5221                                                              spray
5222                                                    based on weight
5223                                                    based on weight
5225                                                tablet/pill/capsule
5234                                           2 tablets/pills/capsules
5235                                                    based on weight
5243                                                    based on weight
5244                                                    based on weight
5247                                                    based on weight
5248                                                    based on weight
5253                                                    based on weight
5255                                                    based on weight
5256                                                    based on weight
5257                                                    based on weight
5258                                                tablet/pill/capsule
5261                                                    based on weight
5262                                                tablet/pill/capsule
5264                                                    based on weight
5265                                                    based on weight
5270                                                    based on weight
5271                                                    based on weight
5289                                                               dose
5332                                                    based on weight
5333                                                        unspecified
5334                                                tablet/pill/capsule
5335                                                             collar
5336                                                tablet/pill/capsule
5337                                                               <NA>
5340                                                            monthly
5341                                                               pump
5354                                                             collar
5357                                                               <NA>
5359                                                               <NA>
5360                                                               <NA>
5362                                                tablet/pill/capsule
5369                                                tablet/pill/capsule
5377                                                        combination
5378                                                                  %
5379                                                    based on weight
5384                                                               <NA>
5385                                                               <NA>
5386                                                               <NA>
5387                                                               <NA>
5388                                                               <NA>
5391                                              1 tablet/pill/capsule
5392                                              1 tablet/pill/capsule
5403                                                tablet/pill/capsule
5424                                                             3.5 gm
5428                                                        bottle/vial
5440                                                               <NA>
5460                                                               <NA>
5464                                                               <NA>
5469                                                               <NA>
5483                                                tablet/pill/capsule
5484                                                               <NA>
5491                                                               <NA>
5492                                                tablet/pill/capsule
5497                                                tablet/pill/capsule
5498                                                tablet/pill/capsule
5499                                                               dose
5500                                                tablet/pill/capsule
5501                                                       small amount
5502                                                        bottle/vial
5507                                                tablet/pill/capsule
5508                                                tablet/pill/capsule
5509                                                    based on weight
5511                                                    based on weight
5513                                                tablet/pill/capsule
5527                                                       small amount
5528                                                        application
5529                                                        application
5533                                                       small amount
5534                                       based on weight (50-100 lbs)
5535                                                               <NA>
5537                                                              spray
5541                                                tablet/pill/capsule
5542                                                    syringe/pipette
5545                                              1 tablet/pill/capsule
5546                                           2 tablets/pills/capsules
5552                                                               <NA>
5553                                                               <NA>
5557                                                tablet/pill/capsule
5568                                                    based on weight
5571                                                    based on weight
5576                                                tablet/pill/capsule
5577                                                             collar
5578                                                tablet/pill/capsule
5595                                       based on weight (50-100 lbs)
5600                                                    based on weight
5602                                                    based on weight
5607                                                               <NA>
5626                                                    based on weight
5627                                                               <NA>
5628                                                               <NA>
5629                                                               <NA>
5630                                                               <NA>
5631                                                    based on weight
5632                                                    based on weight
5641                                                               <NA>
5649                                                        billion cfu
5681                                                tablet/pill/capsule
5682                                                tablet/pill/capsule
5695                                                               <NA>
5721                                                               <NA>
5722                                                               <NA>
5723                                                               <NA>
5724                                                               <NA>
5725                                                               <NA>
5728                                                               <NA>
5729                                                               <NA>
5731                                                               <NA>
5747                                                tablet/pill/capsule
5760                                                    based on weight
5762                                                               <NA>
5768                                       based on weight (50-100 lbs)
5771                                                               <NA>
5777                                                        unspecified
5804                                                               <NA>
5814                                                               <NA>
5834                                                               <NA>
5839                                                               <NA>
5840                                                               <NA>
5858                                                         inch strip
5869                                                               <NA>
5877                                                    based on weight
5884                                                        unspecified
5887                                                               <NA>
5913                                                tablet/pill/capsule
5917                                                               <NA>
5930                                                    based on weight
5932                                                               <NA>
5933                                                    based on weight
5934                                                    based on weight
5935                                                               <NA>
5936                                                    based on weight
5937                                                    based on weight
5941                                                    based on weight
5942                                                    based on weight
5945                                                           wipe/pad
5963                                                    based on weight
5964                                                    based on weight
5965                                                               <NA>
5967                                                               <NA>
5976                                                               <NA>
5980                                                    based on weight
5981                                                tablet/pill/capsule
5988                                                               <NA>
5991                                                    syringe/pipette
5992                                                tablet/pill/capsule
5993                                                               <NA>
5994                                                               <NA>
6000                                                               <NA>
6002                                                                  %
6003                                                               <NA>
6004                                                               <NA>
6005                                                               <NA>
6014                                                               <NA>
6015                                                               <NA>
6016                                                               <NA>
6017                                                               <NA>
6036                                                               <NA>
6038                                                tablet/pill/capsule
6039                                       based on weight (50-100 lbs)
6059                                                    based on weight
6063                                                        as directed
6068                                                               <NA>
6069                                                        application
6071                                       based on weight (50-100 lbs)
6072                                                        unspecified
6074                                                              spray
6076                                                             collar
6078                                                             collar
6088                                                    0.25 inch strip
6090                                                    0.25 inch strip
6093                                       based on weight (50-100 lbs)
6094                                                               <NA>
6095                                                              spray
6101                                                               <NA>
6102                                                               <NA>
6104                                                               <NA>
6109                                                               <NA>
6129                                       based on weight (50-100 lbs)
6130                                       based on weight (60-120 lbs)
6132                                                tablet/pill/capsule
6133                                                tablet/pill/capsule
6134                                                               <NA>
6135                                                               <NA>
6136                                                tablet/pill/capsule
6137                                                tablet/pill/capsule
6139                                                tablet/pill/capsule
6140                                                tablet/pill/capsule
6148                                                               <NA>
6149                                                               <NA>
6150                                                               <NA>
6161                                                               <NA>
6164                                                          as needed
6200                                                tablet/pill/capsule
6202                                                tablet/pill/capsule
6206                                                             1 tube
6208                                                               tube
6215                                                              spray
6217                                                               <NA>
6218                                                             joules
6221                                                               <NA>
6224                                                    based on weight
6225                                                    based on weight
6226                                                    based on weight
6231                                                    based on weight
6232                                                    based on weight
6244                                                               <NA>
6254                                                tablet/pill/capsule
6257                                                        application
6258                                                tablet/pill/capsule
6262                                       based on weight (50-100 lbs)
6263                                        based on weight (24-60 lbs)
6266                                                               <NA>
6267                                                               <NA>
6275                                                        application
6282                                                               <NA>
6283                                                        application
6284                                                               <NA>
6293                                                tablet/pill/capsule
6296                                                               <NA>
6302                                                               <NA>
6307                                                               <NA>
6312                                                               <NA>
6319                                                               <NA>
6320                                                               <NA>
6325                                                               <NA>
6326                                                        application
6328                                                               <NA>
6329                                       based on weight (50-100 lbs)
6331                                                    based on weight
6341                                                tablet/pill/capsule
6342                                                               <NA>
6343                                                               <NA>
6358                                                     shampoo/mousse
6388                                                               <NA>
6390                                                               <NA>
6395                                                    based on weight
6399                                                               <NA>
6405                                                    based on weight
6406                                                             collar
6411                                                               <NA>
6437                                                               <NA>
6441                                                               <NA>
6443                                                               <NA>
6444                                              1 tablet/pill/capsule
6451                                                        unspecified
6459                                                               <NA>
6461                                                               <NA>
6474                                                tablet/pill/capsule
6475                                              1 tablet/pill/capsule
6486                                                               <NA>
6495                                                              drops
6497                                                              drops
6499                                                tablet/pill/capsule
6500                                                    based on weight
6522                                                    based on weight
6523                                                    based on weight
6527                                                    based on weight
6528                                                    based on weight
6555                                                    based on weight
6562                                                       small amount
6565                                                tablet/pill/capsule
6569                                                tablet/pill/capsule
6570                                                               tube
6571                                                        unspecified
6573                                                        bottle/vial
6579                                                    based on weight
6581                                                        unspecified
6594                                       based on weight (50-100 lbs)
6602                                              1 tablet/pill/capsule
6606                                         1-2 tablets/pills/capsules
6612                                                tablet/pill/capsule
6625                                              1 tablet/pill/capsule
6636                                                tablet/pill/capsule
6644                                                    based on weight
6647                                              1 tablet/pill/capsule
6648                                              1 tablet/pill/capsule
6650                                                               <NA>
6657                                              1 tablet/pill/capsule
6658                                                tablet/pill/capsule
6662                                       based on weight (50-100 lbs)
6663                                                tablet/pill/capsule
6680                                                    based on weight
6683                                                       small amount
6687                                                    based on weight
6688                                                    based on weight
6693                                              1 tablet/pill/capsule
6694                                                               <NA>
6696                                                    based on weight
6697                                                               <NA>
6698                                                tablet/pill/capsule
6702                                                tablet/pill/capsule
6703                                                               <NA>
6714                                                               <NA>
6715                                        based on weight (26-50 lbs)
6716                                                        unspecified
6717                                                        unspecified
6733                                                               <NA>
6751                                                               <NA>
6759                                                               <NA>
6760                                          based on weight (51+ lbs)
6763                                                               <NA>
6764                                                    based on weight
6778                                                tablet/pill/capsule
6779                                                tablet/pill/capsule
6781                                                tablet/pill/capsule
6783                                                tablet/pill/capsule
6786                                                               <NA>
6796                                                    based on weight
6797                                                               <NA>
6815                                                               <NA>
6816                                                         inch strip
6817                                                         inch strip
6818                                                               <NA>
6824                                                               <NA>
6826                                                               <NA>
6828                                                               dose
6864                                                               <NA>
6868                                                           inhalant
6880                                                           inhalant
6886                                                    moderate amount
6891                                                        application
6892                                                       small amount
6908                                                               1 ml
6909                                                tablet/pill/capsule
6910                                                tablet/pill/capsule
6928                                                     shampoo/mousse
6934                                                               <NA>
6935                                                               <NA>
6936                                                               <NA>
6946                                                               <NA>
6956                                                               <NA>
6957                                                    based on weight
6981                                                tablet/pill/capsule
6982                                                tablet/pill/capsule
6983                                                tablet/pill/capsule
6984                                                tablet/pill/capsule
6986                                                               <NA>
6999                                                               tube
7002                                                               <NA>
7005                                                               <NA>
7006                                                               <NA>
7017                                                tablet/pill/capsule
7018                                                               <NA>
7021                                                tablet/pill/capsule
7023                                                               <NA>
7025                                                               <NA>
7027                                                               <NA>
7030                                                               <NA>
7042                                                               <NA>
7054                                                               <NA>
7067                                                    based on weight
7071                                                               <NA>
7092                                                              spray
7093                                                tablet/pill/capsule
7095                                                               <NA>
7096                                                               <NA>
7116                                                               <NA>
7127                                                               <NA>
7130                                                               <NA>
7131                                                               <NA>
7137                                                              scoop
7149                                              1 tablet/pill/capsule
7151                                                           ointment
7152                                                     1 pack/package
7153                                                       small amount
7154                                                             liquid
7155                                                             powder
7172                                                             powder
7173                                                           wipe/pad
7175                                                               <NA>
7177                                                               <NA>
7180                                                               pump
7189                                                              spray
7208                                                    0.25 inch strip
7218                                                               <NA>
7240                                                               <NA>
7243                                                               <NA>
7247                                                tablet/pill/capsule
7248                                                tablet/pill/capsule
7249                                                tablet/pill/capsule
7260                                                tablet/pill/capsule
7261                                                tablet/pill/capsule
7262                                                tablet/pill/capsule
7291                                                tablet/pill/capsule
7295                                                tablet/pill/capsule
7297                                           2 tablets/pills/capsules
7320                                                    based on weight
7342                                                    syringe/pipette
7344                                                        unspecified
7345                                                        unspecified
7346                                                               <NA>
7371                                                       small amount
7413                                                    based on weight
7499                                                               <NA>
7503                                                tablet/pill/capsule
7510                                                tablet/pill/capsule
7511                                                tablet/pill/capsule
7512                                                tablet/pill/capsule
7513                                                tablet/pill/capsule
7519                                                               <NA>
7521                                                        combination
7524                                                        unspecified
7525                                                               <NA>
7526                                                               <NA>
7551                                              1 tablet/pill/capsule
7555                                                tablet/pill/capsule
7563                                                tablet/pill/capsule
7564                                                               <NA>
7565                                                               <NA>
7566                                       based on weight (50-100 lbs)
7576                                                               <NA>
7577                                                               <NA>
7578                                                               <NA>
7579                                                               <NA>
7580                                                               <NA>
7583                                       based on weight (50-100 lbs)
7584                                                               <NA>
7585                                                               <NA>
7586                                                               <NA>
7587                                                               <NA>
7588                                                               <NA>
7589                                                               <NA>
7590                                                               <NA>
7598                                                           wipe/pad
7635                                                               <NA>
7660                                       based on weight (50-100 lbs)
7671                                                               <NA>
7673                                                        unspecified
7674                                                        unspecified
7675                                                               <NA>
7678                                                    0.25 inch strip
7679                                                             1 pump
7681                                                               <NA>
7692                                                               <NA>
7696                                                               <NA>
7699                                                               <NA>
7701                                                               <NA>
7705                                                              daily
7732                                        based on weight (25-50 lbs)
7742                                                               <NA>
7743                                                               <NA>
7746                                                tablet/pill/capsule
7747                                                        application
7748                                                               <NA>
7749                                                               <NA>
7750                                                               <NA>
7751                                                               <NA>
7754                                                               <NA>
7759                                                             1 tube
7763                                              1 tablet/pill/capsule
7772                                                               <NA>
7776                                                               <NA>
7783                                                             1 tube
7784                                              1 tablet/pill/capsule
7787                                                               <NA>
7795                                                tablet/pill/capsule
7812                                                       small amount
7818                                                               <NA>
7820                                                               <NA>
7822                                                               <NA>
7832                                                               <NA>
7839                                                             powder
7845                                                               <NA>
7846                                                               <NA>
7848                                                               <NA>
7852                                                               <NA>
7853                                                               pump
7854                                                               <NA>
7862                                                               <NA>
7883                                              1 tablet/pill/capsule
7884                                              1 tablet/pill/capsule
7885                                                               <NA>
7887                                                               <NA>
7889                                                               <NA>
7895                                                               <NA>
7926                                                             powder
7929                                                       small amount
7941                                                               <NA>
7944                                                               <NA>
7946                                                               <NA>
7961                                                           ointment
7966                                                tablet/pill/capsule
7967                                                tablet/pill/capsule
7968                                                tablet/pill/capsule
7969                                                tablet/pill/capsule
7970                                                               <NA>
7973                                                               <NA>
7987                                                               <NA>
7988                                                    based on weight
7993                                                    based on weight
7995                                                               <NA>
7998                                                       pack/package
8000                                                    based on weight
8009                                                        unspecified
8012                                                           ointment
8014                                                       small amount
8017                                                       small amount
8029                                                        combination
8030                                                    based on weight
8040                                                               <NA>
8042                                                               <NA>
8043                                                               <NA>
8044                                                               <NA>
8045                                                               <NA>
8075                                                               <NA>
8086                                                       small amount
8091                                                               <NA>
8098                                                               <NA>
8099                                                               <NA>
8120                                                    based on weight
8121                                       based on weight (50-100 lbs)
8123                                                tablet/pill/capsule
8125                                                               <NA>
8128                                                       small amount
8130                                                    based on weight
8131                                                    based on weight
8136                                                    based on weight
8137                                                    based on weight
8138                                                    based on weight
8139                                                    based on weight
8140                                                       small amount
8160                                                        unspecified
8182                                                       small amount
8184                                                             powder
8185                                       based on weight (50-100 lbs)
8186                                       based on weight (50-100 lbs)
8187                                       based on weight (50-100 lbs)
8188                                       based on weight (60-120 lbs)
8195                                                    based on weight
8196                                                    based on weight
8205                                                    based on weight
8206                                                    based on weight
8207                                                    based on weight
8208                                                    based on weight
8209                                                               <NA>
8210                                                               <NA>
8211                                                               <NA>
8212                                                    based on weight
8215                                                    based on weight
8221                                              1 tablet/pill/capsule
8222                                              1 tablet/pill/capsule
8223                                                               <NA>
8224                                                               <NA>
8234                                                            8 drops
8235                                                       small amount
8236                                                              spray
8238                                                               <NA>
8248                                                tablet/pill/capsule
8251                                                               <NA>
8252                                                              spray
8280                                                               <NA>
8284                                                       small amount
8293                                                       small amount
8296                                       based on weight (50-100 lbs)
8297                                        based on weight (44-88 lbs)
8298                                                               <NA>
8299                                                               1 ml
8300                                                               <NA>
8304                                                               <NA>
8305                                                              spray
8311                                                               <NA>
8312                                                               <NA>
8313                                                               <NA>
8314                                                               <NA>
8315                                                               <NA>
8337                                                               <NA>
8338                                                               <NA>
8341                                                               <NA>
8349                                                    based on weight
8354                                                tablet/pill/capsule
8355                                                      1 application
8358                                                    based on weight
8359                                                    based on weight
8362                                                       small amount
8369                                                       small amount
8370                                                tablet/pill/capsule
8371                                                tablet/pill/capsule
8376                                                       small amount
8377                                                tablet/pill/capsule
8378                                                tablet/pill/capsule
8389                                                               <NA>
8405                                                               tube
8408                                                                  1
8410                                                    based on weight
8418                                                           inhalant
8420                                                    based on weight
8421                                                tablet/pill/capsule
8424                                                             1 tube
8425                                                tablet/pill/capsule
8427                                                tablet/pill/capsule
8435                                                     1 pack/package
8436                                                       small amount
8440                                                               <NA>
8454                                                tablet/pill/capsule
8466                                              1 tablet/pill/capsule
8467                                                       small amount
8475                                                     shampoo/mousse
8478                                                     shampoo/mousse
8509                                                tablet/pill/capsule
8514                                                tablet/pill/capsule
8515                                                tablet/pill/capsule
8528                                                tablet/pill/capsule
8531                                                tablet/pill/capsule
8541                                                               <NA>
8546                                                               <NA>
8550                                                               <NA>
8554                                                    based on weight
8555                                                    based on weight
8578                                                       small amount
8581                                                       small amount
8582                                              1 tablet/pill/capsule
8583                                                               <NA>
8584                                                               <NA>
8585                                                             powder
8586                                                         1 wipe/pad
8588                                                               <NA>
8591                                                tablet/pill/capsule
8607                                                    based on weight
8609                                                    based on weight
8613                                                               <NA>
8673                                                               <NA>
8674                                                    based on weight
8675                                                tablet/pill/capsule
8676                                                tablet/pill/capsule
8677                                                tablet/pill/capsule
8694                                                      1 bottle/vial
8697                                                               <NA>
8702                                                        bottle/vial
8707                                                      1 bottle/vial
8731                                                             collar
8735                                                       small amount
8736                                                           wipe/pad
8744                                                               <NA>
8745                                                               <NA>
8756                                              1 tablet/pill/capsule
8757                                                               <NA>
8759                                                    based on weight
8760                                                    based on weight
8768                                          based on weight (51+ lbs)
8769                                          based on weight (56+ lbs)
8770                                              1 tablet/pill/capsule
8771                                                             1 tube
8777                                                    based on weight
8778                                              1 tablet/pill/capsule
8779                                                      1 application
8780                                              1 tablet/pill/capsule
8781                                                      1 application
8786                                                    based on weight
8790                                                    based on weight
8791                                                    based on weight
8792                                                               <NA>
8793                                                tablet/pill/capsule
8794                                                tablet/pill/capsule
8795                                                    based on weight
8797                                                               <NA>
8805                                                tablet/pill/capsule
8815                                                         inch strip
8819                                                    based on weight
8820                                                    based on weight
8825                                                               <NA>
8826                                                               dose
8828                                                    based on weight
8831                                                               <NA>
8833                                                    based on weight
8837                                                               <NA>
8843                                                               <NA>
8851                                                               <NA>
8852                                                               <NA>
8853                                                               <NA>
8860                                                               <NA>
8875                                                               <NA>
8876                                                               <NA>
8877                                                               <NA>
8879                                                    based on weight
8885                                                               <NA>
8908                                                               <NA>
8911                                                    based on weight
8929                                                        as directed
8930                                                               <NA>
8961                                                        as directed
8962                                                               <NA>
8995                                                               <NA>
8997                                                               <NA>
8998                                                               <NA>
9026                                       based on weight (50-100 lbs)
9046                                              1 tablet/pill/capsule
9047                                                               <NA>
9049                                                               <NA>
9050                                                tablet/pill/capsule
9052                                                               <NA>
9053                                                tablet/pill/capsule
9054                                                tablet/pill/capsule
9055                                                    based on weight
9056                                                               <NA>
9060                                              1 tablet/pill/capsule
9064                                                               <NA>
9065                                                               <NA>
9070                                                tablet/pill/capsule
9071                                                tablet/pill/capsule
9084                                                               <NA>
9094                                                    based on weight
9095                                                    based on weight
9098                                                    based on weight
9099                                                               <NA>
9100                                                        unspecified
9101                                                        unspecified
9109                                                    0.25 inch strip
9118                                                         inch strip
9132                                                tablet/pill/capsule
9135                                                               <NA>
9136                                                       small amount
9137                                                               <NA>
9156                                                               <NA>
9160                                                    based on weight
9161                                                    based on weight
9170                                                    based on weight
9187                                                               <NA>
9189                                                tablet/pill/capsule
9193                                                       pack/package
9202                                              1 tablet/pill/capsule
9230                                                       small amount
9236                                                    based on weight
9239                                                               <NA>
9240                                                        as directed
9241                                                        unspecified
9242                                                tablet/pill/capsule
9244                                                               <NA>
9252                                                       pack/package
9253                                                          as needed
9254                                                tablet/pill/capsule
9259                                                               <NA>
9267                                                    based on weight
9269                                              1 tablet/pill/capsule
9271                                                               <NA>
9292                                                               <NA>
9294                                                               <NA>
9295                                                               <NA>
9297                                                               <NA>
9384                                                               <NA>
9385                                                               <NA>
9386                                                tablet/pill/capsule
9387                                                        bottle/vial
9416                                                               <NA>
9418                                                               <NA>
9421                                                             collar
9422                                                tablet/pill/capsule
9426                                              1 tablet/pill/capsule
9429                                                        application
9432                                                             collar
9433                                                               <NA>
9434                                                    based on weight
9435                                                        unspecified
9436                                                tablet/pill/capsule
9438                                                       small amount
9447                                                               <NA>
9452                                                               <NA>
9453                                                                  %
9454                                                         inch strip
9494                                                        unspecified
9495                                                        unspecified
9511                                                               <NA>
9516                                                   0.125 inch strip
9524                                                               <NA>
9544                                                    based on weight
9546                                                    based on weight
9548                                                    based on weight
9549                                                    based on weight
9584                                              1 tablet/pill/capsule
9588                                                               <NA>
9592                                                               <NA>
9596                                                               <NA>
9600                                                    based on weight
9601                                                    based on weight
9602                                                               <NA>
9603                                                               <NA>
9604                                                               <NA>
9609                                                tablet/pill/capsule
9610                                                tablet/pill/capsule
9612                                                              spray
9613                                                              spray
9614                                                           wipe/pad
9615                                                tablet/pill/capsule
9616                                                tablet/pill/capsule
9617                                                tablet/pill/capsule
9618                                                tablet/pill/capsule
9619                                                tablet/pill/capsule
9620                                                tablet/pill/capsule
9621                                       based on weight (50-100 lbs)
9635                                                               <NA>
9640                                                tablet/pill/capsule
9641                                                tablet/pill/capsule
9643                                                tablet/pill/capsule
9718                                                        unspecified
9723                                                               <NA>
9759                        272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                               <NA>
9761                                                    based on weight
9763                                                               <NA>
9764                                                               <NA>
9765                                                               <NA>
9766                                                    based on weight
9770                                                    based on weight
9785                                                               <NA>
9791                                                               <NA>
9800                                       based on weight (50-100 lbs)
9807                                                               <NA>
9808                                                               <NA>
9809                                                               <NA>
9821                                                       pack/package
9823                                                               <NA>
9824                                                               <NA>
9825                                                               <NA>
9826                                                         inch strip
9827                                                               <NA>
9828                                                               <NA>
9833                                                    0.25 inch strip
9837                                                               <NA>
9840                                                               <NA>
9843                                                               <NA>
9863                                                           wipe/pad
9865                                                               pump
9873                                                               <NA>
9877                                                               <NA>
9884                                                                 1%
9889                                                tablet/pill/capsule
9890                                                        bottle/vial
9891                                                         inch strip
9892                                                       small amount
9893                                       based on weight (60-120 lbs)
9894                                                               <NA>
9895                                                               <NA>
9896                                                               <NA>
9897                                       based on weight (50-100 lbs)
9898                                       based on weight (60-120 lbs)
9899                                                tablet/pill/capsule
9900                                              1 tablet/pill/capsule
9901                                              1 tablet/pill/capsule
9902                                              1 tablet/pill/capsule
9903                                                    0.25 inch strip
9907                                                               <NA>
9917                                                    based on weight
9928                                                               <NA>
9931                                              1 tablet/pill/capsule
9935                                                tablet/pill/capsule
9942                                                             cup(s)
9943                                                               <NA>
9944                                                        unspecified
9945                                                    based on weight
9961                                                             1 tube
9963                                                    based on weight
9966                                                    based on weight
9968                                                    based on weight
9970                                                       small amount
9972                                                               <NA>
10017                                                   based on weight
10026                                                              <NA>
10027                                                       application
10037                                                              <NA>
10042                                                              <NA>
10053                                                   based on weight
10061                                                      small amount
10063                                                   based on weight
10066                                                   based on weight
10074                                                              <NA>
10075                                                              <NA>
10092                                                              <NA>
10093                                                              <NA>
10106                                                              <NA>
10107                                                              <NA>
10108                                                              <NA>
10109                                                              <NA>
10111                                                              <NA>
10112                                                              <NA>
10113                                                              <NA>
10115                                               tablet/pill/capsule
10116                                                              <NA>
10119                                                       combination
10120                                                              <NA>
10121                                               tablet/pill/capsule
10130                                                              <NA>
10131                                                              <NA>
10132                                                              <NA>
10133                                                              <NA>
10134                                               tablet/pill/capsule
10149                                                              <NA>
10151                                                              <NA>
10160                                                              <NA>
10167                                      based on weight (50-100 lbs)
10170                                      based on weight (50-100 lbs)
10176                                                      small amount
10187                                                      small amount
10188                                               tablet/pill/capsule
10195                                                              <NA>
10198                                                              <NA>
10200                                               tablet/pill/capsule
10209                                                   based on weight
10219                                                   based on weight
10230                                      based on weight (50-100 lbs)
10231                                      based on weight (60-120 lbs)
10232                                                              <NA>
10233                                                              <NA>
10234                                                              <NA>
10235                                                              <NA>
10245                                               tablet/pill/capsule
10249                                       based on weight (44-88 lbs)
10260                                                              <NA>
10264                                                   moderate amount
10273                                                   based on weight
10274                                                   based on weight
10275                                                   based on weight
10276                                                   based on weight
10301                                                              <NA>
10312                                                              <NA>
10313                                                              <NA>
10314                                                              <NA>
10316                                                              <NA>
10320                                                              <NA>
10324                                                              <NA>
10334                                               tablet/pill/capsule
10335                                               tablet/pill/capsule
10345                                                      small amount
10347                                               tablet/pill/capsule
10348                                               tablet/pill/capsule
10349                                                      small amount
10356                                                      small amount
10365                                               tablet/pill/capsule
10366                                                              tube
10370                                                              <NA>
10372                                                       combination
10374                                                       combination
10379                                                              <NA>
10400                                                              <NA>
10403                                                            1 tube
10405                                                   based on weight
10408                                               tablet/pill/capsule
10409                                                              <NA>
10410                                                              <NA>
10412                                                              <NA>
10429                                                              <NA>
10432                                                              <NA>
10435                                                              <NA>
10436                                                          wipe/pad
10441                                                              <NA>
10445                                                             spray
10470                                                              <NA>
10477                                                       bottle/vial
10478                                      based on weight (50-100 lbs)
10483                                                              <NA>
10485                                                              <NA>
10487                                                              <NA>
10499                                                              <NA>
10503                                             1 tablet/pill/capsule
10505                                             1 tablet/pill/capsule
10506                                                              <NA>
10525                                                              <NA>
10526                                                       unspecified
10529                                                      small amount
10555                                                       application
10557                                                              <NA>
10565                                                              <NA>
10573                                                              <NA>
10575                                                      small amount
10576                                                              <NA>
10577                                                              <NA>
10578                                                              <NA>
10579                                                              <NA>
10580                                                              <NA>
10583                                                   based on weight
10588                                               tablet/pill/capsule
10589                                               tablet/pill/capsule
10590                                               tablet/pill/capsule
10591                                             1 tablet/pill/capsule
10610                                                              <NA>
10617                                                              <NA>
10618                                               tablet/pill/capsule
10619                                               tablet/pill/capsule
10624                                                   based on weight
10628                                                        inch strip
10642                                                              <NA>
10653                                               tablet/pill/capsule
10655                                      based on weight (50-100 lbs)
10667                                                              <NA>
10671                                                              <NA>
10678                                                              <NA>
10682                                                              <NA>
10683                                      based on weight (50-100 lbs)
10684                                      based on weight (50-100 lbs)
10685                                                   based on weight
10686                                                       unspecified
10687                                                        1-2 scoops
10688                                                              <NA>
10689                                      based on weight (50-100 lbs)
10693                                                              <NA>
10694                                      based on weight (50-100 lbs)
10696                                                              <NA>
10697                                                              <NA>
10701                                                              <NA>
10706                                                              <NA>
10707                                      based on weight (50-100 lbs)
10711                                      based on weight (50-100 lbs)
10712                                                   based on weight
10713                                                       unspecified
10714                                                        1-2 scoops
10715                                                              <NA>
10717                                      based on weight (50-100 lbs)
10718                                                              <NA>
10725                                      based on weight (50-100 lbs)
10726                                                            powder
10727                                                       unspecified
10740                                                              <NA>
10743                                                          wipe/pad
10751                                                              <NA>
10755                                                              <NA>
10756                                             1 tablet/pill/capsule
10769                                                              <NA>
10780                                                   based on weight
10781                                                   based on weight
10792                                                              <NA>
10794                                                   based on weight
10796                                                       combination
10825                                                            collar
10827                                                            collar
10830                                               tablet/pill/capsule
10837                                                    125 mg, 500 mg
10841                       2 mg prednisone, 5 mg trimeprazine tartrate
10842                                      based on weight (50-100 lbs)
10843                                      based on weight (85-130 lbs)
10846                                               tablet/pill/capsule
10849                                                   based on weight
10853                                                      small amount
10863                                                              pump
10865                                                              <NA>
10866                                                              <NA>
10870                                               tablet/pill/capsule
10871                                                       bottle/vial
10874                                               tablet/pill/capsule
10877                                               tablet/pill/capsule
10878                                               tablet/pill/capsule
10892                                                              <NA>
10896                                                              <NA>
10898                                                              <NA>
10899                                                              <NA>
10901                                                              <NA>
10905                                                             spray
10928                                                              tube
10929                                                              tube
10934                                                   based on weight
10938                                               tablet/pill/capsule
10953                                                              <NA>
10959                                                              <NA>
10970                                               tablet/pill/capsule
10971                                               tablet/pill/capsule
11003                                               tablet/pill/capsule
11008                                             1 tablet/pill/capsule
11009                                             1 tablet/pill/capsule
11010                                                   based on weight
11011                                                   based on weight
11016                                                      small amount
11021                                                              <NA>
11035                                               tablet/pill/capsule
11036                                               tablet/pill/capsule
11037                                               tablet/pill/capsule
11038                                               tablet/pill/capsule
11052                                                              tube
11065                                                              <NA>
11069                                               tablet/pill/capsule
11070                                      based on weight (50-100 lbs)
11085                                                              <NA>
11088                                                              <NA>
11093                                                              <NA>
11134                                                   based on weight
11142                                                              <NA>
11144                                                              <NA>
11145                                                              <NA>
11152                                                   based on weight
11153                                                   based on weight
11155                                                              <NA>
11156                                                              <NA>
11158                                                   based on weight
11159                                                              <NA>
11163                                                              <NA>
11165                                                   based on weight
11182                                                              <NA>
11186                                               tablet/pill/capsule
11189                                                              <NA>
11208                                                              <NA>
11210                                                       unspecified
11211                                                       unspecified
11212                                                   based on weight
11213                                                              <NA>
11224                                               tablet/pill/capsule
11228                                               tablet/pill/capsule
11229                                                              <NA>
11233                                               tablet/pill/capsule
11241                                                              <NA>
11242                          460 mg lufenuron, 23 mg milbemycin oxime
11276                                                              <NA>
11291                                                   based on weight
11292                                                   based on weight
11293                                             1 tablet/pill/capsule
11294                                             1 tablet/pill/capsule
11295                                             1 tablet/pill/capsule
11296                                             1 tablet/pill/capsule
11301                                                              <NA>
11305                                                              <NA>
11307                                               tablet/pill/capsule
11311                                                              <NA>
11312                                                              <NA>
11315                                                              <NA>
11316                                                              <NA>
11317                                                              <NA>
11318                                                              <NA>
11326                                               tablet/pill/capsule
11327                                               tablet/pill/capsule
11338                                                      small amount
11340                                                              <NA>
11346                                                            liquid
11349                                                            liquid
11350                                                              <NA>
11351                                                              <NA>
11352                                                              <NA>
11353                                                              <NA>
11354                                                              <NA>
11356                                                      small amount
11360                                                              <NA>
11368                                               tablet/pill/capsule
11385                                               tablet/pill/capsule
11386                                               tablet/pill/capsule
11387                                                      pack/package
11388                                                      pack/package
11394                                                      small amount
11415                                                      small amount
11436                                                   based on weight
11437                                                   based on weight
11441                                                              <NA>
11464                                                      small amount
11470                                                              <NA>
11471                                                              <NA>
11473                                                   based on weight
11477                                               tablet/pill/capsule
11493                                                              <NA>
11509                                      based on weight (50-100 lbs)
11536                                                              <NA>
11537                                                              <NA>
11538                                                              <NA>
11545                                                              <NA>
11546                                                   based on weight
11547                                                              <NA>
11551                                                              <NA>
11560                                             1 tablet/pill/capsule
11561                                                   based on weight
11562                                                   based on weight
11564                                                              <NA>
11567                                               tablet/pill/capsule
11568                                               tablet/pill/capsule
11570                                               tablet/pill/capsule
11575                                                              <NA>
11576                                                              <NA>
11577                                                              <NA>
11578                                                              <NA>
11589                                                   based on weight
11593                                               tablet/pill/capsule
11596                                                   based on weight
11599                                                              tube
11600                                               tablet/pill/capsule
11620                                                              <NA>
11621                                                              <NA>
11627                                                              <NA>
11628                                                              <NA>
11630                                                              <NA>
11633                                                              <NA>
11637                                       based on weight (25-60 lbs)
11641                                                              <NA>
11651                                               tablet/pill/capsule
11652                                                              tube
11653                                      based on weight (60-120 lbs)
11654                                             1 tablet/pill/capsule
11655                                               tablet/pill/capsule
11656                                                   based on weight
11660                                                   based on weight
11661                                             1 tablet/pill/capsule
11662                                             1 tablet/pill/capsule
11664                                                   based on weight
11666                                                              <NA>
11667                                                              <NA>
11671                                                              <NA>
11673                                                              <NA>
11678                                                   based on weight
11680                                                   based on weight
11681                                                   based on weight
11683                                                   based on weight
11691                                         based on weight (51+ lbs)
11692                                                              <NA>
11693                                                              <NA>
11695                                                      small amount
11701                                               tablet/pill/capsule
11702                                                              <NA>
11709                                               tablet/pill/capsule
11710                                               tablet/pill/capsule
11719                                                              <NA>
11722                                                              <NA>
11723                                                              <NA>
11735                                                   based on weight
11741                                               tablet/pill/capsule
11742                                                              <NA>
11790                                                              <NA>
11802                                                              <NA>
11806                                                       unspecified
11812                                               tablet/pill/capsule
11813                                                              <NA>
11814                                                   based on weight
11817                                                              <NA>
11822                                               tablet/pill/capsule
11823                                               tablet/pill/capsule
11824                                                       application
11825                                               tablet/pill/capsule
11832                                                       combination
11833                                                       combination
11835                                               tablet/pill/capsule
11836                                               tablet/pill/capsule
11837                                               tablet/pill/capsule
11840                                                              <NA>
11844                                                              <NA>
11846                                                              <NA>
11847                                               tablet/pill/capsule
11848                                               tablet/pill/capsule
11850                                                              <NA>
11856                                                              <NA>
11861                                                       combination
11862                                                       combination
11873                                               tablet/pill/capsule
11874                                               tablet/pill/capsule
11875                                               tablet/pill/capsule
11876                                                              <NA>
11879                                                              <NA>
11881                                                   based on weight
11882                                                   based on weight
11889                                                   based on weight
11898                                                              <NA>
11911                                                              <NA>
11919                                               tablet/pill/capsule
11930                                                       billion cfu
11959                                                              <NA>
11960                                                       as directed
11962                                                              <NA>
11964                                                   based on weight
11978                                                             spray
11979                                                              <NA>
11980                                                            1 tube
11983                                                              <NA>
11993                                                              <NA>
12009                                                              <NA>
12010                                                              <NA>
12014                                                   based on weight
12018                                                              tube
12019                                               tablet/pill/capsule
12020                                      based on weight (50-100 lbs)
12043                                                              <NA>
12047                                                              <NA>
12048                                                              <NA>
12051                                                      pack/package
12054                                                       unspecified
12090                                                   based on weight
12108                                                              <NA>
12111                                                   moderate amount
12120                                                              <NA>
12128                                                   based on weight
12129                                                   based on weight
12130                                                              <NA>
12135                                               tablet/pill/capsule
12136                                               tablet/pill/capsule
12154                                             1 tablet/pill/capsule
12155                                             1 tablet/pill/capsule
12159                                                       unspecified
12160                                                       unspecified
12164                                                       unspecified
12173                                             1 tablet/pill/capsule
12190                                                             spray
12215                                                              <NA>
12221                                                              <NA>
12222                                                              <NA>
12223                                                         0.5 drops
12261                                               tablet/pill/capsule
12271                                                   based on weight
12273                                                          ointment
12279                                                              <NA>
12283                                                              <NA>
12299                                                              <NA>
12306                                                      small amount
12309                                                              pump
12313                                                              <NA>
12314                                                              <NA>
12322                                                              <NA>
12324                                               tablet/pill/capsule
12334                                                              <NA>
12336                                                              <NA>
12337                                                       unspecified
12342                                               tablet/pill/capsule
12343                                                       unspecified
12346                                                              <NA>
12349                                                       bottle/vial
12351                                                              <NA>
12353                                                              <NA>
12364                                                              <NA>
12366                                               tablet/pill/capsule
12376                                                              <NA>
12379                                                              <NA>
12386                                                              <NA>
12394                                                              <NA>
12398                                                              <NA>
12402                                                   based on weight
12405                                                              <NA>
12406                                               tablet/pill/capsule
12409                                                    1 pack/package
12410                                             1 tablet/pill/capsule
12411                                                             drops
12414                                                   based on weight
12415                                                   based on weight
12417                                               tablet/pill/capsule
12418                                               tablet/pill/capsule
12420                                                          ointment
12421                                                              <NA>
12422                                                              <NA>
12423                                                      small amount
12427                                                              <NA>
12429                                                              <NA>
12430                                               tablet/pill/capsule
12431                                               tablet/pill/capsule
12432                                               tablet/pill/capsule
12433                                                              <NA>
12434                                                              <NA>
12438                                                              <NA>
12439                                                              <NA>
12453                                                       combination
12454                                      based on weight (50-100 lbs)
12455                                                              <NA>
12456                                                   based on weight
12457                                                   based on weight
12461                                                          wipe/pad
12462                                               tablet/pill/capsule
12463                                                              <NA>
12466                                                              <NA>
12473                                                   based on weight
12474                                                   based on weight
12475                                                              <NA>
12477                                                              <NA>
12481                                                   based on weight
12485                                                              <NA>
12487                                                              <NA>
12495                                                   based on weight
12497                                                       billion cfu
12498                                                   based on weight
12500                                               tablet/pill/capsule
12506                                                              <NA>
12511                                               tablet/pill/capsule
12512                                               tablet/pill/capsule
12514                                                              <NA>
12516                                                              <NA>
12520                                                   based on weight
12521                                             1 tablet/pill/capsule
12523                                                   based on weight
12528                                                      small amount
12529                                                      small amount
12530                                                   based on weight
12535                                                      small amount
12536                                                              <NA>
12540                                                              dose
12541                                                              dose
12542                                               tablet/pill/capsule
12543                                                       bottle/vial
12546                                                             scoop
12547                                                              <NA>
12548                                                              <NA>
12549                                                              <NA>
12550                                               tablet/pill/capsule
12551                                                              tube
12552                                               tablet/pill/capsule
12553                                                      small amount
12554                                                      small amount
12567                                                              <NA>
12569                                                              <NA>
12571                                                                1%
12578                                                              <NA>
12580                                                              <NA>
12585                                                              <NA>
12588                                                              <NA>
12589                                                              <NA>
12595                                                              <NA>
12596                                                              <NA>
12605                                                              <NA>
12608                                                              <NA>
12615                                                              <NA>
12616                                      based on weight (50-100 lbs)
12620                                             1 tablet/pill/capsule
12623                                             1 tablet/pill/capsule
12630                                                              <NA>
12632                                                              <NA>
12636                                                              <NA>
12638                                                   based on weight
12639                                             1 tablet/pill/capsule
12642                                                              <NA>
12645                                                              <NA>
12686                                             1 tablet/pill/capsule
12692                                                              <NA>
12693                                               tablet/pill/capsule
12712                                                              <NA>
12714                                                   based on weight
12730                                                              <NA>
12732                                                              <NA>
12735                                                      small amount
12738                                                              <NA>
12740                                                              <NA>
12744                                                              <NA>
12749                                                              <NA>
12754                                                              <NA>
12755                                                              <NA>
12756                                                              <NA>
12771                                                         injection
12774                                               tablet/pill/capsule
12780                                                      pack/package
12781                                                              <NA>
12784                                                      pack/package
12786                                                              tube
12787                                                            collar
12788                                                   0.25 inch strip
12795                                             1 tablet/pill/capsule
12796                                                            collar
12797                                                    1 pack/package
12801                                                            powder
12826                                                       application
12828                                                       application
12836                                                              <NA>
12849                                                              <NA>
12850                                                              <NA>
12861                                                              <NA>
12865                                                              <NA>
12866                                                       unspecified
12870                                                            powder
12873                                                              <NA>
12879                                      based on weight (50-100 lbs)
12880                                      based on weight (60-120 lbs)
12881                                                      small amount
12882                                                      small amount
12894                                                              <NA>
12895                                                       unspecified
12901                                                              <NA>
12902                                                              <NA>
12903                                                              <NA>
12905                                                              <NA>
12906                                                                ml
12907                                                       unspecified
12908                                                       unspecified
12911                                                              <NA>
12916                                                   based on weight
12920                                                   based on weight
12929                                                   based on weight
12942                                               tablet/pill/capsule
12943                                                   based on weight
12945                                               tablet/pill/capsule
12948                                               tablet/pill/capsule
12949                                                              <NA>
12952                                               tablet/pill/capsule
12953                                                              <NA>
12955                                               tablet/pill/capsule
12956                                                       as directed
12957                                      based on weight (50-100 lbs)
12959                                                             drops
12962                                                              <NA>
12963                                          2 tablets/pills/capsules
12966                                                   based on weight
12979                                                              <NA>
12994                                                              tube
13005                                      based on weight (50-100 lbs)
13006                                      based on weight (60-120 lbs)
13008                                             1 tablet/pill/capsule
13010                                                              <NA>
13013                                                              <NA>
13020                                                              <NA>
13041                                                              <NA>
13049                                                      small amount
13061                                               tablet/pill/capsule
13062                                                              <NA>
13074                                                              <NA>
13075                                                              <NA>
13076                                                              <NA>
13081                                                              <NA>
13084                                                              <NA>
13086                                                              <NA>
13096                                                      small amount
13104                                                              <NA>
13108                                                              <NA>
13109                                                              <NA>
13114                                                              <NA>
13115                                                              <NA>
13116                                                              <NA>
13124                                                      small amount
13126                                                              <NA>
13127                                                              <NA>
13129                                                      small amount
13130                                                      small amount
13133                                                              <NA>
13136                                                   based on weight
13137                                       based on weight (44-88 lbs)
13138                                                              <NA>
13139                                                              <NA>
13142                                                   based on weight
13143                                                   based on weight
13148                                                              <NA>
13149                                             1 tablet/pill/capsule
13150                                             1 tablet/pill/capsule
13151                                             1 tablet/pill/capsule
13152                                             1 tablet/pill/capsule
13154                                                              <NA>
13157                                             1 tablet/pill/capsule
13159                                                              <NA>
13160                                                              <NA>
13168                                               tablet/pill/capsule
13169                                               tablet/pill/capsule
13170                                               tablet/pill/capsule
13173                                                              <NA>
13187                                                             spray
13188                                                              <NA>
13189                                                              <NA>
13195                                                             spray
13196                                                    shampoo/mousse
13198                                                      small amount
13199                                               tablet/pill/capsule
13208                                               tablet/pill/capsule
13209                                               tablet/pill/capsule
13233                                                       application
13246                                                        inch strip
13248                                                              <NA>
13249                                                              <NA>
13264                                                              <NA>
13270                                                              <NA>
13271                                               tablet/pill/capsule
13277                                                              <NA>
13278                                                          ointment
13279                                                          ointment
13286                                                              <NA>
13287                                                              <NA>
13288                                                              <NA>
13297                                               tablet/pill/capsule
13298                                               tablet/pill/capsule
13299                                                              <NA>
13307                                               tablet/pill/capsule
13308                                                   based on weight
13309                                                   based on weight
13313                                                   based on weight
13314                                                   based on weight
13315                                                              <NA>
13318                                                              <NA>
13321                                                   moderate amount
13331                                                   based on weight
13332                                                         2-3 drops
13334                                                              <NA>
13340                                                              <NA>
13341                                               tablet/pill/capsule
13343                                               tablet/pill/capsule
13344                                               tablet/pill/capsule
13345                                                              <NA>
13349                                                              <NA>
13353                                                              <NA>
13354                                               tablet/pill/capsule
13355                                               tablet/pill/capsule
13356                                                              <NA>
13357                                                       unspecified
13376                                                              <NA>
13405                                                              <NA>
13411                                                              <NA>
13454                                                   based on weight
13455                                                   based on weight
13456                                                              <NA>
13459                                                   based on weight
13460                                                      small amount
13461                                               tablet/pill/capsule
13462                                               tablet/pill/capsule
13464                                                              <NA>
13468                                                       unspecified
13470                                               tablet/pill/capsule
13471                                                   based on weight
13475                                                   based on weight
13476                                               tablet/pill/capsule
13479                                                   based on weight
13483                                                   based on weight
13484                                                   based on weight
13496                                                              <NA>
13502                                                              <NA>
13503                                                              <NA>
13506                                               tablet/pill/capsule
13532                                                      pack/package
13537                                                              <NA>
13538                                               tablet/pill/capsule
13562                                                              <NA>
13563                                                    shampoo/mousse
13564                                                              <NA>
13575                                                          titrated
13576                                             1 tablet/pill/capsule
13579                                                              <NA>
13581                                                              <NA>
13585                                                              <NA>
13590                                                         as needed
13594                                                              <NA>
13595                                                              <NA>
13601                                                        inch strip
13603                                                              <NA>
13605                                                              <NA>
13609                                                   0.25 inch strip
13615                                                              <NA>
13623                                                       bottle/vial
13624                                                   based on weight
13625                                                              tube
13628                                                   based on weight
13631                                                      small amount
13654                                                      small amount
13657                                                      small amount
13659                                                              <NA>
13660                                                            powder
13666                                                     1 bottle/vial
13688                                                              <NA>
13693                                               tablet/pill/capsule
13723                                       based on weight (44-88 lbs)
13724                                                   based on weight
13730                                               tablet/pill/capsule
13737                                               tablet/pill/capsule
13740                                                              <NA>
13741                                                              <NA>
13747                                                              <NA>
13756                                                              <NA>
13768                                                              <NA>
13769                                                             spray
13776                                                   based on weight
13782                                                   syringe/pipette
13783                                                   based on weight
13786                                                              tube
13796                                                          wipe/pad
13881                                                              <NA>
13884                                                              <NA>
13893                                                              <NA>
13894                                                              <NA>
13896                                                   based on weight
13902                                                              <NA>
13905                                                              <NA>
13906                                                              <NA>
13910                                                   based on weight
13912                                                              <NA>
13913                                                              <NA>
13925                                                              <NA>
13943                                                              <NA>
13946                                                             spray
13994                                                              <NA>
13995                                                              <NA>
13996                                                              <NA>
13998                                             1 tablet/pill/capsule
14006                                                             spray
14007                                               tablet/pill/capsule
14008                                                              <NA>
14050                                                   0.25 inch strip
14051                                               tablet/pill/capsule
14055                                                              <NA>
14059                                                              <NA>
14060                                               tablet/pill/capsule
14061                                                              <NA>
14062                                                              <NA>
14063                                                              <NA>
14064                                                   based on weight
14106                                                   based on weight
14114                                               tablet/pill/capsule
14118                                                              <NA>
14120                                                              <NA>
14121                                                              <NA>
14122                                                              <NA>
14123                                                              <NA>
14124                                                              <NA>
14128                                                              <NA>
14129                                                   based on weight
14131                                                      small amount
14147                                               tablet/pill/capsule
14148                                                       bottle/vial
14151                                               tablet/pill/capsule
14154                                               tablet/pill/capsule
14162                                               tablet/pill/capsule
14163                                               tablet/pill/capsule
14164                                               tablet/pill/capsule
14165                                                              <NA>
14166                                                              <NA>
14170                                                      small amount
14171                                                              tube
14172                                                   based on weight
14173                                                   based on weight
14174                                                              tube
14175                                                              <NA>
14177                                             1 tablet/pill/capsule
14178                                                              tube
14179                                                              tube
14180                                                              <NA>
14181                                               tablet/pill/capsule
14190                                                              <NA>
14219                                                   based on weight
14221                                                              <NA>
14228                                                              <NA>
14238                                                      small amount
14241                                                              <NA>
14242                                                              <NA>
14245                                                              <NA>
14282                                                              <NA>
14284                                                              <NA>
14291                                                              pump
14297                                                              <NA>
14301                                      based on weight (50-100 lbs)
14302                                         based on weight (25+ lbs)
14319                                                              <NA>
14323                                                        inch strip
14324                                                              <NA>
14330                                                              <NA>
14334                                                              tube
14336                                                              <NA>
14365                                                       combination
14366                       272 mcg ivermectin, 227 mg pyrantel pamoate
14367   680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14373                                         based on weight (18+ lbs)
14376                                                            collar
14378                                               tablet/pill/capsule
14380                                                            collar
14385                                                              <NA>
14386                                                              <NA>
14387                                                              <NA>
14388                                                              <NA>
14404                                                              <NA>
14406                                      based on weight (50-100 lbs)
14407                                                              <NA>
14408                                               tablet/pill/capsule
14412                                                              <NA>
14413                                                              <NA>
14414                                                       unspecified
14420                                                              <NA>
14421                                                              <NA>
14426                                                              <NA>
14428                                                              <NA>
14429                                      based on weight (50-100 lbs)
14431                                      based on weight (50-100 lbs)
14432                                                   based on weight
14433                                                       unspecified
14434                                                             scoop
14443                                      based on weight (50-100 lbs)
14444                                                       unspecified
14445                                                       unspecified
14446                                                       unspecified
14447                                                       unspecified
14448                                      based on weight (50-100 lbs)
14449                                      based on weight (50-100 lbs)
14451                                               tablet/pill/capsule
14455                                                   0.25 inch strip
14471                                                       unspecified
14473                                                       unspecified
14477                                                              <NA>
14479                                                   based on weight
14488                                             1 tablet/pill/capsule
14489                                               tablet/pill/capsule
14490                                      based on weight (50-100 lbs)
14495                                             1 tablet/pill/capsule
14498                                               tablet/pill/capsule
14499                                      based on weight (50-100 lbs)
14512                                                              <NA>
14513                                                              <NA>
14528                                       based on weight (44-88 lbs)
14529                                      based on weight (50-100 lbs)
14547                                      based on weight (50-100 lbs)
14563                                                              <NA>
14576                                                   based on weight
14578                                         based on weight (25+ lbs)
14582                                                   based on weight
14583                                                   based on weight
14584                                                   based on weight
14585                                                   based on weight
14586                                                   based on weight
14587                                                   based on weight
14588                                                   based on weight
14601                                                       unspecified
14605                                                              <NA>
14608                                                              <NA>
14637                                                              <NA>
14645                                                              <NA>
14650                                                      small amount
14654                                                                 %
14656                                                              <NA>
14658                       272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                      based on weight (50-100 lbs)
14665                                      based on weight (60-120 lbs)
14697                                                          ointment
14699                                                       application
14700                                                   based on weight
14701                                                   based on weight
14702                                                              <NA>
14711                                      based on weight (50-100 lbs)
14712                                       based on weight (56-95 lbs)
14713                                          based on weight (85 lbs)
14720                                      based on weight (50-100 lbs)
14721                                       based on weight (56-95 lbs)
14722                                      based on weight (50-100 lbs)
14723                                      based on weight (50-100 lbs)
14726                                       based on weight (44-88 lbs)
14728                                                              <NA>
14730                                                              <NA>
14733                                                              <NA>
14737                                      based on weight (50-100 lbs)
14738                                       based on weight (44-88 lbs)
14744                                                   based on weight
14748                                                             drops
14754                                         based on weight (22+ lbs)
14755                                      based on weight (50-100 lbs)
14756                                                              <NA>
14757                                                              <NA>
14760                                                   based on weight
14763                                      based on weight (50-100 lbs)
14764                                                              <NA>
14775                                                              <NA>
14777                                                              <NA>
14778                                                              <NA>
14833                                                              <NA>
14834                                                              <NA>
14838                                                              <NA>
14839                                                              <NA>
14857                                                              <NA>
14858                                                              <NA>
14862                                                              <NA>
14863                                                              <NA>
14864                                                              <NA>
14867                                                              <NA>
14870                                                              <NA>
14871                                                              <NA>
14878                                                              <NA>
14883                                                              <NA>
14884                                                              <NA>
14899                                                              <NA>
14911                                                              <NA>
14913                                                              <NA>
14914                                                              <NA>
14934                                                              <NA>
14943                                                              <NA>
14944                                                              <NA>
14949                                                              <NA>
14972                                               tablet/pill/capsule
14973                                                       unspecified
14974                                               tablet/pill/capsule
14975                                               tablet/pill/capsule
14977                                                              <NA>
14978                                               tablet/pill/capsule
14981                                                   based on weight
14982                                               tablet/pill/capsule
14983                                                       as directed
15001                                                              <NA>
15002                                                              <NA>
15004                                                              <NA>
15005                                                              <NA>
15006                                                              <NA>
15007                                                              <NA>
15008                                                              <NA>
15009                                                              <NA>
15010                                                              <NA>
15011                                                              <NA>
15017                                      based on weight (50-100 lbs)
15021                                                              <NA>
15022                                                              <NA>
15023                                                     1 bottle/vial
15025                                                              <NA>
15026                                                              <NA>
15027                                                              <NA>
15028                                                              <NA>
15029                                                              <NA>
15030                                                              <NA>
15035                                                              <NA>
15036                                                              <NA>
15045                                                              <NA>
15048                                                   based on weight
15055                                                              <NA>
15059                                             1 tablet/pill/capsule
15061                                               tablet/pill/capsule
15077                                                            collar
15102                                                              <NA>
15129                                                             drops
15130                                                              <NA>
15131                                                              <NA>
15132                                                              <NA>
15137                                                             spray
15139                                                       combination
15140                                                       combination
15144                                                              <NA>
15145                                                              <NA>
15150                                                   based on weight
15151                                                              <NA>
15155                                                              <NA>
15170                                                              <NA>
15179                                                              <NA>
15196                                                       unspecified
15197                                                      small amount
15209                                                       bottle/vial
15213                                                              pump
15244                                                              <NA>
15250                                                              tube
15252                                                              <NA>
15256                                                              <NA>
15259                                                              <NA>
15268                                      based on weight (50-100 lbs)
15269                                       based on weight (24-60 lbs)
15274                                                              <NA>
15308                                               tablet/pill/capsule
15309                                               tablet/pill/capsule
15310                                             1 tablet/pill/capsule
15311                                                            collar
15314                                                              <NA>
15315                                                            collar
15317                                               tablet/pill/capsule
15319                                                              <NA>
15321                                             1 tablet/pill/capsule
15322                                                            collar
15323                                                              <NA>
15332                                                       as directed
15333                                                              <NA>
15334                                                             spray
15339                                                              <NA>
15345                                                              <NA>
15348                                                              <NA>
15361                                               tablet/pill/capsule
15362                                               tablet/pill/capsule
15363                                                              <NA>
15365                                               tablet/pill/capsule
15366                                               tablet/pill/capsule
15367                                             1 tablet/pill/capsule
15373                                                   based on weight
15374                                                   based on weight
15375                                             1 tablet/pill/capsule
15376                                                            1 tube
15377                                             1 tablet/pill/capsule
15378                                                       bottle/vial
15383                                                              <NA>
15384                                                              <NA>
15402                                                              <NA>
15412                                                              <NA>
15441                                                              <NA>
15445                                                              <NA>
15448                                                              <NA>
15451                                               tablet/pill/capsule
15453                                                   moderate amount
15454                                                              <NA>
15512                                                              <NA>
15513                                                              <NA>
15515                                             1 tablet/pill/capsule
15524                                               tablet/pill/capsule
15528                                                              <NA>
15530                                                   based on weight
15531                                                              <NA>
15533                                               tablet/pill/capsule
15551                                                   based on weight
15552                                               tablet/pill/capsule
15554                                                   based on weight
15555                                                   based on weight
15556                                                   based on weight
15563                                                          ointment
15581                                                            liquid
15584                                                              <NA>
15585                                             1 tablet/pill/capsule
15586                                                       application
15589                                                   based on weight
15590                                               tablet/pill/capsule
15591                                               tablet/pill/capsule
15592                                                              <NA>
15593                                               tablet/pill/capsule
15594                                               tablet/pill/capsule
15597                                               tablet/pill/capsule
15598                                               tablet/pill/capsule
15599                                                          ointment
15600                                             1 tablet/pill/capsule
15601                                             1 tablet/pill/capsule
15603                                                              <NA>
15604                                                              <NA>
15613                                                              <NA>
15614                                                              <NA>
15618                                                              <NA>
15633                                                              <NA>
15636                                                              <NA>
15649                                                   based on weight
15650                                                   based on weight
15661                                               tablet/pill/capsule
15662                                                              <NA>
15663                                                       bottle/vial
15667                                                              <NA>
15669                                                              <NA>
15672                                                              <NA>
15673                                                              <NA>
15674                                                              <NA>
15675                                                            1 tube
15689                                               tablet/pill/capsule
15690                                                              <NA>
15691                                                              <NA>
15692                                                              <NA>
15693                                                              <NA>
15699                                                              <NA>
15701                                                   13.5 mg, 810 mg
15705                                                              <NA>
15706                                                      small amount
15707                                                              <NA>
15712                                               tablet/pill/capsule
15715                                                              <NA>
15733                                                              <NA>
15750                                                              <NA>
15757                                               tablet/pill/capsule
15758                                                       bottle/vial
15767                                                              <NA>
15768                                                              <NA>
15769                                                              <NA>
15770                                                              <NA>
15778                                                             spray
15781                                                   0.25 inch strip
15782                                                             spray
15790                                                       unspecified
15796                                                              <NA>
15799                                                              <NA>
15811                                                      pack/package
15815                                                   based on weight
15818                                                              <NA>
15829                                                              <NA>
15839                                                       unspecified
15840                                                       unspecified
15841                                      based on weight (50-100 lbs)
15842                                      based on weight (50-100 lbs)
15844                                      based on weight (50-100 lbs)
15848                                                   based on weight
15849                                      based on weight (50-100 lbs)
15850                                      based on weight (50-100 lbs)
15856                                                            1 tube
15857                                               tablet/pill/capsule
15858                                                              <NA>
15859                                             1 tablet/pill/capsule
15860                                                              <NA>
15861                                                             spray
15862                                                        inch strip
15863                                                        inch strip
15864                                                             drops
15867                                               tablet/pill/capsule
15868                                             1 tablet/pill/capsule
15869                                                   based on weight
15870                                                   based on weight
15871                                                              <NA>
15886                                               tablet/pill/capsule
15888                                                              <NA>
15889                                                              <NA>
15890                                                              <NA>
15891                                                   based on weight
15892                                                              <NA>
15907                                                              <NA>
15911                                                              <NA>
15917                                               tablet/pill/capsule
15918                                                              <NA>
15920                                                              <NA>
15921                                               tablet/pill/capsule
15922                                                   based on weight
15923                                                              <NA>
15927                                                              <NA>
15928                                                      pack/package
15929                                               tablet/pill/capsule
15930                                                              <NA>
15931                                                              <NA>
15932                                                              <NA>
15933                                                              <NA>
15935                                                              <NA>
15937                                                   based on weight
15944                                                              <NA>
15945                                                              <NA>
15981                                      based on weight (50-100 lbs)
15983                                                      small amount
15986                                       based on weight (56-95 lbs)
15992                                      based on weight (50-100 lbs)
15993                                       based on weight (56-95 lbs)
15995                                      based on weight (50-100 lbs)
15996                                       based on weight (56-95 lbs)
15997                                       based on weight (44-88 lbs)
15998                                                     1 bottle/vial
15999                                      based on weight (50-100 lbs)
16000                                       based on weight (44-88 lbs)
16005                                                              <NA>
16007                                                              <NA>
16009                                                              <NA>
16016                                                          ointment
16026                                                      small amount
16033                                                              <NA>
16036                                                   based on weight
16038                                                   based on weight
16039                                                       application
16052                                               tablet/pill/capsule
16053                                                              tube
16094                       272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                               tablet/pill/capsule
16098                                               tablet/pill/capsule
16105                                                              <NA>
16107                                                         6-8 drops
16108                                                              <NA>
16109                                                              <NA>
16110                                                              <NA>
16111                                                              <NA>
16112                                                              <NA>
16113                                                       unspecified
16114                                                              <NA>
16115                                                              <NA>
16116                                                              <NA>
16117                                                              <NA>
16118                                                              <NA>
16150                                                       bottle/vial
16152                                                              tube
16153                                               tablet/pill/capsule
16154                                                       bottle/vial
16155                                                       bottle/vial
16156                                                      pack/package
16157                                               tablet/pill/capsule
16158                                               tablet/pill/capsule
16159                                               tablet/pill/capsule
16160                                               tablet/pill/capsule
16161                                               tablet/pill/capsule
16162                                               tablet/pill/capsule
16163                                               tablet/pill/capsule
16164                                               tablet/pill/capsule
16165                                               tablet/pill/capsule
16177                                                      small amount
16179                                                          wipe/pad
16199                                                              <NA>
16229                                               tablet/pill/capsule
16230                                      based on weight (50-100 lbs)
16239                                                              <NA>
16240                                                              <NA>
16241                                                              <NA>
16242                                                              <NA>
16251                                                              <NA>
16253                                                              <NA>
16285                                                              <NA>
16286                                                              <NA>
16287                                       based on weight (26-50 lbs)
16288                                       based on weight (44-88 lbs)
16289                                               tablet/pill/capsule
16290                                                              <NA>
16292                                                              <NA>
16293                                                              <NA>
16294                                                              <NA>
16295                                                              <NA>
16296                                                              <NA>
16312                                               tablet/pill/capsule
16313                                               tablet/pill/capsule
16315                                               tablet/pill/capsule
16316                                               tablet/pill/capsule
16318                                             1 tablet/pill/capsule
16319                                             1 tablet/pill/capsule
16321                                             1 tablet/pill/capsule
16322                                             1 tablet/pill/capsule
16324                                             1 tablet/pill/capsule
16325                                             1 tablet/pill/capsule
16326                                      based on weight (50-100 lbs)
16340                                                   based on weight
16347                                                                 %
16352                                                              <NA>
16355                                                      small amount
16356                                                       as directed
16367                                                              <NA>
16371                                                              <NA>
16374                                                              <NA>
16376                                                              <NA>
16378                                                              <NA>
16382                                                              <NA>
16387                                                    shampoo/mousse
16388                                                             spray
16389                                                              <NA>
16400                                               tablet/pill/capsule
16401                                               tablet/pill/capsule
16403                                                   based on weight
16404                                                   based on weight
16408                                                              <NA>
16413                                               tablet/pill/capsule
16414                                               tablet/pill/capsule
16418                                                       unspecified
16419                                                       unspecified
16420                                                       unspecified
16425                                       based on weight (44-88 lbs)
16426                                       based on weight (44-88 lbs)
16434                                                              <NA>
16435                                                              <NA>
16436                                                              <NA>
16437                                                              <NA>
16440                                      based on weight (50-100 lbs)
16441                                      based on weight (50-100 lbs)
16442                                                       unspecified
16443                                                       unspecified
16447                                      based on weight (50-100 lbs)
16448                                                       unspecified
16450                                      based on weight (50-100 lbs)
16452                                                              <NA>
16453                                                              <NA>
16462                                                              <NA>
16472                                                              <NA>
16474                                                   syringe/pipette
16477                                                              <NA>
16478                                                              <NA>
16479                                                   syringe/pipette
16497                                                              <NA>
16522                                               tablet/pill/capsule
16523                                               tablet/pill/capsule
16524                                                       bottle/vial
16525                                                              <NA>
16526                                                              <NA>
16544                                                       bottle/vial
16546                                                              <NA>
16553                                                   based on weight
16579                                                   based on weight
16580                                                      small amount
16595                                      based on weight (50-100 lbs)
16596                                                   based on weight
16597                                                   based on weight
16598                                                   based on weight
16599                                                   based on weight
16601                                                   based on weight
16605                                                              <NA>
16606                                                   based on weight
16608                                                   based on weight
16617                                                              <NA>
16624                                                              <NA>
16630                                      based on weight (50-100 lbs)
16631                                      based on weight (50-100 lbs)
16635                                                          ointment
16636                                               tablet/pill/capsule
16639                                               tablet/pill/capsule
16646                                                              <NA>
16657                                                              <NA>
16684                                                            powder
16685                                                          wipe/pad
16687                                                              dose
16694                                               tablet/pill/capsule
16702                                                   0.25 inch strip
16703                                                            powder
16704                                               tablet/pill/capsule
16705                                               tablet/pill/capsule
16711                                                      small amount
16712                                                    shampoo/mousse
16714                                                      small amount
16717                                                      small amount
16718                                                      small amount
16721                                               tablet/pill/capsule
16723                                                            powder
16724                                                              <NA>
16726                                                             spray
16749                                                              <NA>
16751                                                              <NA>
16774                                               tablet/pill/capsule
16777                                               tablet/pill/capsule
16778                                                       bottle/vial
16779                                                             mg/kg
16783                                                              <NA>
16784                                                              <NA>
16785                                                              <NA>
16787                                                              <NA>
16789                                                               10%
16791                                                              <NA>
16793                                                              <NA>
16798                                                              <NA>
16805                                                   based on weight
16807                                                       application
16809                                                              tube
16810                                                       combination
16811                                                   based on weight
16814                                                              <NA>
16815                                                       unspecified
16816                                                              <NA>
16821                                               tablet/pill/capsule
16823                                                              <NA>
16834                                                              <NA>
16838                                                              <NA>
16840                                                              <NA>
16841                                                              <NA>
16847                                                              <NA>
16849                                                              pump
16869                                                   based on weight
16877                                                              <NA>
16882                                                            collar
16918                                                       unspecified
16929                                                       as directed
16931                                                              <NA>
16933                                                              <NA>
16935                                                              <NA>
16936                                       based on weight (26-50 lbs)
16937                                       based on weight (44-88 lbs)
16939                                                              <NA>
16970                                                              <NA>
16983                                               tablet/pill/capsule
16993                                                      small amount
16994                                                      small amount
16998                                                             tubes
16999                                                              <NA>
17000                                                              <NA>
17010                                                       combination
17012                                                       bottle/vial
17013                                               tablet/pill/capsule
17014                                                   based on weight
17018                                                       unspecified
17019                                               tablet/pill/capsule
17020                                                              <NA>
17022                                                              <NA>
17042                                                   based on weight
17053                                                              <NA>
17062                                                              <NA>
17088                                                       combination
17090                                             1 tablet/pill/capsule
17091                                             1 tablet/pill/capsule
17094                                      based on weight (50-100 lbs)
17095                                      based on weight (60-120 lbs)
17098                                                              <NA>
17099                                                              <NA>
17120                                                      small amount
17121                                                      small amount
17126                                                         as needed
17127                                                         as needed
17138                                               tablet/pill/capsule
17143                                                   based on weight
17153                                                              <NA>
17156                                               tablet/pill/capsule
17157                                               tablet/pill/capsule
17173                                                              <NA>
17177                                               tablet/pill/capsule
17180                                               tablet/pill/capsule
17209                                               tablet/pill/capsule
17218                                                              <NA>
17220                                                              <NA>
17221                                                              <NA>
17225                                                              <NA>
17226                                                              <NA>
17227                                                              <NA>
17228                                                              <NA>
17229                                                              <NA>
17232                                               tablet/pill/capsule
17233                                                              tube
17234                                               tablet/pill/capsule
17236                                                            1 tube
17237                                               tablet/pill/capsule
17238                                                              tube
17239                                               tablet/pill/capsule
17248                                      based on weight (50-100 lbs)
17251                                      based on weight (50-100 lbs)
17252                                                   syringe/pipette
17254                                                      small amount
17255                                             1 tablet/pill/capsule
17263                                                              <NA>
17264                                                              <NA>
17266                                                              <NA>
17268                                                   based on weight
17283                                                              <NA>
17285                                                              <NA>
17297                                                              <NA>
17298                                                   based on weight
17307                                                              <NA>
17308                                                              <NA>
17309                                                              <NA>
17310                                                              <NA>
17313                                                              <NA>
17314                                                              <NA>
17315                                                              <NA>
17327                                                       application
17329                                                       application
17330                                                       application
17335                                                       application
17352                                                             spray
17355                                                      small amount
17381                                                         2-3 drops
17387                                                              <NA>
17389                                                              <NA>
17390                                               tablet/pill/capsule
17391                                                              <NA>
17393                                                          ointment
17399                                               tablet/pill/capsule
17406                                                   based on weight
17407                                                             spray
17412                                                              <NA>
17417                                                            collar
17418                                               tablet/pill/capsule
17419                                               tablet/pill/capsule
17420                                               tablet/pill/capsule
17426                                                              <NA>
17427                                                              <NA>
17446                                                              <NA>
17461                                                              <NA>
17463                                                      pack/package
17468                                                              <NA>
17470                                                              <NA>
17482                                                              <NA>
17486                                                   based on weight
17487                                                   based on weight
17488                                                   based on weight
17489                                                   based on weight
17490                                                   based on weight
17491                                                   based on weight
17492                                                   based on weight
17493                                                   based on weight
17495                                                   based on weight
17496                                                   based on weight
17518                                                   based on weight
17519                                             1 tablet/pill/capsule
17576                                                   0.25 inch strip
17583                                                              <NA>
17588                                                             spray
17602                                                      small amount
17603                                                             23 mg
17605                                                              <NA>
17611                                                   based on weight
17615                                                   based on weight
17627                                                   based on weight
17633                                                              <NA>
17659                                               tablet/pill/capsule
17672                                                              <NA>
17673                                                              <NA>
17680                                                              <NA>
17697                                                              <NA>
17702                                                              <NA>
17703                                                              <NA>
17719                                                              <NA>
17720                                                      small amount
17722                                                   based on weight
17742                                                              <NA>
17743                                                              <NA>
17755                                                   syringe/pipette
17779                                                       application
17780                                                              <NA>
17781                                                              <NA>
17782                                                       application
17798                                                              <NA>
17802                                                             paste
17803                                                              <NA>
17804                                                              <NA>
17818                                                   based on weight
17832                                          based on weight (80 lbs)
17845                                                   based on weight
17853                                                              <NA>
17855                                                              <NA>
17856                                                              <NA>
17860                                                              <NA>
17863                                               tablet/pill/capsule
17865                                                              <NA>
17882                                                              <NA>
17957                                                              <NA>
18023                                                   based on weight
18024                                                   based on weight
18055                                                              <NA>
18057                                                   based on weight
18058                                                   based on weight
18072                                               tablet/pill/capsule
18074                                                              <NA>
18075                                                              dose
18094                                               tablet/pill/capsule
18095                                               tablet/pill/capsule
18096                                                              <NA>
18098                                                              <NA>
18114                                                              <NA>
18115                                                              <NA>
18116                                                              <NA>
18118                                         based on weight (55+ lbs)
18119                                      based on weight (50-100 lbs)
18124                                                   based on weight
18134                                                              <NA>
18141                                                              <NA>
18147                                                              hour
18159                                                              <NA>
18164                                                              <NA>
18165                                                      small amount
18188                                               tablet/pill/capsule
18192                                                              <NA>
18193                                                              <NA>
18195                                                              <NA>
18199                                                              <NA>
18202                                                   based on weight
18205                                                   based on weight
18213                                                              <NA>
18214                                                   based on weight
18217                                                              <NA>
18218                                                              <NA>
18220                                                              <NA>
18221                                                              <NA>
18222                                               tablet/pill/capsule
18238                                                       unspecified
18251                                                            powder
18258                                                                 %
18260                                                              <NA>
18262                                                                 %
18263                                                              <NA>
18264                                                              <NA>
18266                                                              <NA>
18271                                                              <NA>
18275                                                      small amount
18276                                                              <NA>
18323                                                              <NA>
18325                                                              <NA>
18326                                                              <NA>
18329                                                              <NA>
18330                                                              <NA>
18337                                               tablet/pill/capsule
18338                                                              <NA>
18339                                               tablet/pill/capsule
18340                                               tablet/pill/capsule
18341                                                       unspecified
18342                                                              <NA>
18343                                                              <NA>
18344                                             1 tablet/pill/capsule
18365                                               tablet/pill/capsule
18366                                               tablet/pill/capsule
18370                                               tablet/pill/capsule
18371                                               tablet/pill/capsule
18373                                             1 tablet/pill/capsule
18374                                             1 tablet/pill/capsule
18404                                                              <NA>
18415                                                   based on weight
18427                                                        inch strip
18441                                                              <NA>
18459                                                   based on weight
18460                                                              dose
18461                                                              dose
18466                                                              <NA>
18469                                                   0.25 inch strip
18471                                                   0.25 inch strip
18479                                                              <NA>
18480                                                              <NA>
18483                                                              <NA>
18489                                               tablet/pill/capsule
18490                                               tablet/pill/capsule
18494                                               tablet/pill/capsule
18495                                               tablet/pill/capsule
18500                                               tablet/pill/capsule
18502                                               tablet/pill/capsule
18514                                       based on weight (21-55 lbs)
18520                                          based on weight (60 lbs)
18525                                                              <NA>
18534                                                             daily
18543                                                             drops
18562                                                            powder
18565                                                            1 tube
18571                                               tablet/pill/capsule
18572                                               tablet/pill/capsule
18576                                               tablet/pill/capsule
18577                                               tablet/pill/capsule
18580                                               tablet/pill/capsule
18588                                                              <NA>
18591                                                             spray
18595                                                   based on weight
18609                                                              <NA>
18612                                                       unspecified
18621                                                              <NA>
18649                                                   based on weight
18686                                                              <NA>
18687                                                              <NA>
18689                                                              <NA>
18690                                                              <NA>
18694                                                              <NA>
18696                                                       combination
18697                                                       combination
18703                       272 mcg ivermectin, 227 mg pyrantel pamoate
18707                                                              <NA>
18716                                                          ointment
18718                                                             spray
18729                                                          ointment
18734                                               tablet/pill/capsule
18735                                               tablet/pill/capsule
18736                                               tablet/pill/capsule
18743                                               tablet/pill/capsule
18750                                                              <NA>
18774                                                              <NA>
18775                                                              <NA>
18795                                               tablet/pill/capsule
18796                                                       bottle/vial
18797                                               tablet/pill/capsule
18798                                                       bottle/vial
18799                                                              <NA>
18800                                                              <NA>
18820                                                              <NA>
18821                                                              <NA>
18829                                                              <NA>
18837                                               tablet/pill/capsule
18838                                          2 tablets/pills/capsules
18839                                             1 tablet/pill/capsule
18844                                                   syringe/pipette
18845                                               tablet/pill/capsule
18847                                          2 tablets/pills/capsules
18850                                             1 tablet/pill/capsule
18852                                               tablet/pill/capsule
18853                                             1 tablet/pill/capsule
18854                                             1 tablet/pill/capsule
18882                                                              dose
18908                                                   based on weight
18909                                                   based on weight
18919                                                            collar
18921                                                            collar
18924                                                   based on weight
18933                                                              <NA>
18935                                      based on weight (50-100 lbs)
18936                                                            collar
18937                                               tablet/pill/capsule
18961                                          2 tablets/pills/capsules
18964                                               tablet/pill/capsule
18970                                               tablet/pill/capsule
18987                                                              <NA>
18988                                                       unspecified
18989                                                       unspecified
18991                                                      small amount
18993                                                              <NA>
18997                                                              <NA>
18998                                                              <NA>
19003                                                              <NA>
19004                                                              <NA>
19005                                                             spray
19006                                                             spray
19008                                        1-2 tablets/pills/capsules
19009                                        1-2 tablets/pills/capsules
19015                                                              <NA>
19019                                                              <NA>
19021                                                              <NA>
19022                                               tablet/pill/capsule
19023                                                      small amount
19025                                      based on weight (50-100 lbs)
19040                                                              <NA>
19041                                                              <NA>
19055                                                   based on weight
19056                                                       unspecified
19057                                                              <NA>
19061                                                   based on weight
19062                                                              <NA>
19068                                                              <NA>
19070                                               tablet/pill/capsule
19072                                                              tube
19073                                               tablet/pill/capsule
19078                                                   based on weight
19082                                                            1 tube
19122                                                   based on weight
19130                                               tablet/pill/capsule
19152                                                              <NA>
19153                                               tablet/pill/capsule
19154                                               tablet/pill/capsule
19159                                                              <NA>
19165                                               tablet/pill/capsule
19169                                             1 tablet/pill/capsule
19170                                                            1 tube
19183                                                                 1
19184                                                       unspecified
19213                                                       unspecified
19214                                                       unspecified
19215                                                       as directed
19216                                                       as directed
19217                                                              tube
19220                                                              <NA>
19221                                             1 tablet/pill/capsule
19222                                             1 tablet/pill/capsule
19223                                             1 tablet/pill/capsule
19224                                                            collar
19246                                                       as directed
19252                                                              <NA>
19253                                                              <NA>
19254                                                              <NA>
19271                                                   based on weight
19272                                                   based on weight
19273                                                   based on weight
19276                                                              <NA>
19278                                                       combination
19281                                                   based on weight
19282                                                   based on weight
19288                                                              <NA>
19298                                                              <NA>
19299                                                              dose
19318                                                   based on weight
19325                                                              <NA>
19326                                                   based on weight
19327                                                   based on weight
19338                                                   based on weight
19350                                                        inch strip
19353                                                              <NA>
19354                                                              <NA>
19356                                                              <NA>
19357                                         based on weight (55+ lbs)
19373                                               tablet/pill/capsule
19386                                                   based on weight
19387                                                   based on weight
19390                                                      small amount
19391                                                   based on weight
19423                                                   based on weight
19427                                               tablet/pill/capsule
19445                                               tablet/pill/capsule
19446                                                       application
19447                                                   based on weight
19448                                                   based on weight
19449                                                   based on weight
19450                                                   based on weight
19452                                                              <NA>
19453                                                              <NA>
19454                                                              <NA>
19457                                                   based on weight
19462                                             1 tablet/pill/capsule
19463                                             1 tablet/pill/capsule
19464                                                              <NA>
19465                                                              <NA>
19476                                                   syringe/pipette
19482                       272 mcg ivermectin, 227 mg pyrantel pamoate
19486                                                              <NA>
19487                                               tablet/pill/capsule
19492                                               tablet/pill/capsule
19493                                               tablet/pill/capsule
19495                                               tablet/pill/capsule
19537                                               tablet/pill/capsule
19568                                                            1 pump
19596                                                              <NA>
19603                                               tablet/pill/capsule
19617                                                              <NA>
19641                                                              <NA>
19651                                                              <NA>
19662                                                      pack/package
19663                                                              <NA>
19673                                                   based on weight
19674                                                   based on weight
19685                                                   based on weight
19686                                                              <NA>
19688                                               tablet/pill/capsule
19689                                                              <NA>
19690                                                              <NA>
19710                                                   based on weight
19711                                                   based on weight
19712                                                   based on weight
19713                                             1 tablet/pill/capsule
19714                                                            collar
19715                                               tablet/pill/capsule
19716                                                            collar
19717                                                   based on weight
19718                                                   based on weight
19722                                               tablet/pill/capsule
19735                                                      small amount
19737                                                              <NA>
19741                                                              <NA>
19754                                                              <NA>
19767                                                              <NA>
19768                                                              dose
19771                                                              <NA>
19776                                       based on weight (40-60 lbs)
19777                                             1 tablet/pill/capsule
19778                                                   based on weight
19788                                                          wipe/pad
19790                                                              <NA>
19792                                                              <NA>
19801                                                   based on weight
19803                                               tablet/pill/capsule
19823                                                          ointment
19828                                                   based on weight
19829                                                   based on weight
19838                                                              <NA>
19843                                                              <NA>
19844                                                              <NA>
19845                                                              <NA>
19851                                                              <NA>
19856                                                   based on weight
19866                                                             spray
19876                                                              <NA>
19881                                                              <NA>
19888                                               tablet/pill/capsule
19907                                                              <NA>
19909                                                              <NA>
19911                                                   based on weight
19912                                                              <NA>
19914                                                       unspecified
19917                                                      small amount
19925                                                              <NA>
19926                                                              <NA>
19927                                                              <NA>
19928                                                              <NA>
19930                                                              <NA>
19932                                                              <NA>
19933                                                   based on weight
19944                                                              <NA>
19945                                                              <NA>
19946                                                   based on weight
19947                                                              <NA>
19948                                                              <NA>
19949                                                              <NA>
19950                                                              <NA>
19952                                                       unspecified
19958                                                            collar
19969                                                              <NA>
19975                                                       combination
19984                                                              <NA>
20003                                                              <NA>
20006                                                              <NA>
20007                                                             spray
20019                                             1 tablet/pill/capsule
20020                                             1 tablet/pill/capsule
20024                                               tablet/pill/capsule
20025                                               tablet/pill/capsule
20026                                               tablet/pill/capsule
20027                                               tablet/pill/capsule
20028                                               tablet/pill/capsule
20038                                               tablet/pill/capsule
20039                                               tablet/pill/capsule
20065                                                              <NA>
20068                                                              <NA>
20069                                                   moderate amount
20070                                                              <NA>
20072                                                              <NA>
20074                                                              <NA>
20096                                                            powder
20099                                                       combination
20105                                                              <NA>
20106                                                              <NA>
20125                                                              <NA>
20126                                             1 tablet/pill/capsule
20127                                             1 tablet/pill/capsule
20130                                                              <NA>
20131                                                              <NA>
20135                                                              <NA>
20144                                               tablet/pill/capsule
20145                                                         injection
20149                                                              <NA>
20150                                                      small amount
20164                                                              <NA>
20173                                                              tube
20174                                             1 tablet/pill/capsule
20175                                                              <NA>
20182                                                   moderate amount
20218                                                   based on weight
20219                                               tablet/pill/capsule
20220                                                              <NA>
20221                                               tablet/pill/capsule
20222                                                   based on weight
20224                                                       unspecified
20231                                                              <NA>
20232                                                              <NA>
20233                                               tablet/pill/capsule
20234                                                          ointment
20240                                                     1 bottle/vial
20241                                         based on weight (55+ lbs)
20243                                                              <NA>
20244                                                   based on weight
20245                                                   based on weight
20251                                                      pack/package
20272                                                               tbs
20275                                                              <NA>
20282                                                              <NA>
20292                                                              <NA>
20293                                                                 %
20295                                                              tube
20297                                                              <NA>
20298                                                              <NA>
20299                                                              <NA>
20300                                                      pack/package
20301                                                            collar
20302                                                              <NA>
20303                                                                 %
20306                                                              <NA>
20315                                                              <NA>
20337                                                         as needed
20339                                                          wipe/pad
20340                                                      small amount
20342                                                    shampoo/mousse
20343                                                     tapering dose
20344                                                              <NA>
20348                       272 mcg ivermectin, 227 mg pyrantel pamoate
20356                                                              <NA>
20374                                                   based on weight
20376                                                       as directed
20377                                                   based on weight
20380                                                       as directed
20382                                                              <NA>
20387                                      based on weight (50-100 lbs)
20388                                      based on weight (50-100 lbs)
20390                                      based on weight (50-100 lbs)
20392                                                              <NA>
20393                                                              <NA>
20402                                      based on weight (50-100 lbs)
20405                                      based on weight (50-100 lbs)
20406                                                              <NA>
20409                                                              <NA>
20411                                                              <NA>
20413                                                              <NA>
20425                                                   based on weight
20426                                                   based on weight
20441                                                      small amount
20444                                          based on weight (90 lbs)
20446                                                              <NA>
20453                                                              <NA>
20460                                                              <NA>
20485                                                       application
20490                                             1 tablet/pill/capsule
20491                                             1 tablet/pill/capsule
20510                                               tablet/pill/capsule
20511                                             1 tablet/pill/capsule
20512                                             1 tablet/pill/capsule
20516                                             1 tablet/pill/capsule
20517                                             1 tablet/pill/capsule
20518                                                              pump
20554                                                   based on weight
20555                                                   based on weight
20561                                                   based on weight
20565                                      based on weight (60-120 lbs)
20568                                      based on weight (60-120 lbs)
20574                                                              <NA>
20577                                                              <NA>
20579                                             1 tablet/pill/capsule
20582                                      based on weight (60-120 lbs)
20585                                                      small amount
20615                                                              <NA>
20623                                                      pack/package
20636                                                              <NA>
20638                                                              <NA>
20641                                                            collar
20642                                                              <NA>
20645                                                       unspecified
20648                                                              <NA>
20651                                                              <NA>
20659                                                              <NA>
20666                                                              <NA>
20667                                                              <NA>
20678                                                              <NA>
20698                                                        inch strip
20701                                                   based on weight
20702                                      based on weight (50-100 lbs)
20704                                                      small amount
20705                                                       application
20707                                               tablet/pill/capsule
20708                                                          wipe/pad
20709                                                            powder
20712                                                          wipe/pad
20717                                                   based on weight
20718                                                              <NA>
20728                                                              <NA>
20738                                                              <NA>
20745                                                             spray
20748                                                              <NA>
20750                                                              <NA>
20761                                                              <NA>
20762                                                              <NA>
20763                                                              <NA>
20766                                                              <NA>
20767                                                              <NA>
20771                                                              <NA>
20783                                                              <NA>
20791                                                              <NA>
20796                                                              <NA>
20800                                               tablet/pill/capsule
20808                                               tablet/pill/capsule
20809                                               tablet/pill/capsule
20814                                                             spray
20817                                                              <NA>
20819                                                              <NA>
20849                                                              <NA>
20852                                                              <NA>
20854                                                              <NA>
20855                                                              <NA>
20858                                                              <NA>
20861                                                              <NA>
20862                                                                 l
20863                                                   based on weight
20872                                                   based on weight
20897                                                              <NA>
20918                                                              <NA>
20939                                                   based on weight
20940                                                   based on weight
20941                                               tablet/pill/capsule
20947                                                            collar
20949                                                   based on weight
20962                                                              <NA>
20963                                                              <NA>
20964                                               tablet/pill/capsule
20965                                                              <NA>
20966                                                              <NA>
20972                                                              <NA>
21003                                                          ointment
21013                                                        inch strip
21017                                                           1 spray
21022                                                              <NA>
21025                                                              <NA>
21029                                                              <NA>
21074                                                   based on weight
21078                                               tablet/pill/capsule
21080                                                              <NA>
21088                                                       unspecified
21102                                                              <NA>
21109                                                       as directed
21110                                                   based on weight
21111                                                              <NA>
21112                                                              <NA>
21114                                               tablet/pill/capsule
21115                                                       application
21119                                                              <NA>
21122                                               tablet/pill/capsule
21123                                                              tube
21124                                                              <NA>
21125                                                              <NA>
21126                                                              <NA>
21127                                               tablet/pill/capsule
21128                                                              <NA>
21129                                                              <NA>
21130                                                              <NA>
21131                                                    shampoo/mousse
21132                                                              <NA>
21133                                                   based on weight
21168                                                              <NA>
21169                                                              <NA>
21178                                                   0.25 inch strip
21179                                                              <NA>
21180                                                              <NA>
21181                                               tablet/pill/capsule
21182                                                              <NA>
21183                                                              <NA>
21189                                      based on weight (60-120 lbs)
21190                                               tablet/pill/capsule
21192                                                            1 pump
21201                                                              <NA>
21224                                                          ointment
21253                                                              <NA>
21254                                               tablet/pill/capsule
21256                                                              <NA>
21267                                                              <NA>
21268                                                              <NA>
21269                                             1 tablet/pill/capsule
21273                                                              <NA>
21278                                                              <NA>
21282                                                              <NA>
21287                                                              <NA>
21309                                                              <NA>
21326                                                              <NA>
21331                                                              <NA>
21338                                                   based on weight
21359                                                              <NA>
21361                                                              <NA>
21367                                                              <NA>
21369                                                   based on weight
21384                                                              <NA>
21385                                                              <NA>
21386                                                              <NA>
21387                                                              <NA>
21388                                                              <NA>
21389                                                              <NA>
21403                                                              <NA>
21413                                                              <NA>
21416                                                              tube
21442                                                              <NA>
21445                                                   based on weight
21448                                                   based on weight
21449                                                   based on weight
21465                                                              <NA>
21472                                                              <NA>
21481                                                              <NA>
21491                                                              <NA>
21492                                             1 tablet/pill/capsule
21493                                             1 tablet/pill/capsule
21495                                                              <NA>
21504                                                      pack/package
21507                                                      pack/package
21508                                                              <NA>
21509                                                       unspecified
21522                                                              tube
21527                                                              <NA>
21528                                                   based on weight
21531                                                              <NA>
21532                                             1 tablet/pill/capsule
21533                                             1 tablet/pill/capsule
21534                                                            1.5 ml
21545                                                           1000 mg
21546 16 mg florfenicol, 2.2 mg mometasone furoate, 14.8 mg terbinafine
21549                                                              <NA>
21552                                                              3 ml
21553                                                              <NA>
21555                                                              <NA>
21558                                                              <NA>
21562                                                   based on weight
21563                                                   based on weight
21564                                                   based on weight
21585                                               tablet/pill/capsule
21586                                               tablet/pill/capsule
21587                                                              <NA>
21593                                                              <NA>
21600                                          based on weight (55 lbs)
21602                                                              <NA>
21605                                                              <NA>
21607                                                              <NA>
21608                                                              <NA>
21609                                                              <NA>
21612                                                              <NA>
21614                                       based on weight (44-88 lbs)
21615                                      based on weight (50-100 lbs)
21616                                                        inch strip
21617                                                              <NA>
21618                                                              <NA>
21619                                      based on weight (50-100 lbs)
21620                                       based on weight (44-88 lbs)
21621                                      based on weight (50-100 lbs)
21622                                       based on weight (44-88 lbs)
21625                                                              <NA>
21632                                                              <NA>
21637                                                              <NA>
21642                                                   based on weight
21643                                                              <NA>
21644                                                   based on weight
21645                       272 mcg ivermectin, 227 mg pyrantel pamoate
21646                                               tablet/pill/capsule
21648                                                   based on weight
21649                                                   based on weight
21650                                                       as directed
21651                                                              <NA>
21652                                                   based on weight
21653                                                      small amount
21654                                                              <NA>
21655                                                   based on weight
21658                                                            collar
21659                                                      small amount
21660                                                   0.25 inch strip
21661                                                             spray
21666                                                            collar
21673                                                              <NA>
21677                                                              <NA>
21678                                                             spray
21680                                                              <NA>
21685                                                       application
21701                                                            collar
21705                                                            collar
21707                                                            collar
21708                                                       unspecified
21723                                                              <NA>
21725                                                   based on weight
21727                                               tablet/pill/capsule
21739                                                              <NA>
21748                                                             23 mg
21749                                                          0.135 ml
21753                                                              <NA>
21754                                                              <NA>
21755                                                              <NA>
21757                                                              <NA>
21767                                                              <NA>
21783                                                                 %
21796                                                              <NA>
21809                                                              <NA>
21810                                                              <NA>
21814                                               tablet/pill/capsule
21815                                                              <NA>
21833                                                              <NA>
21851                                                              <NA>
21865                                                       combination
21866             8.8% imidacloprid, 44% permethrin, 0.44% pyriproxyfen
21869                                                              <NA>
21872                                                              <NA>
21873                                                              <NA>
21875                                                              <NA>
21876                                                              <NA>
21877                                                              <NA>
21878                                                              <NA>
21886                                                              <NA>
21894                                                              <NA>
21897                                               tablet/pill/capsule
21898                                               tablet/pill/capsule
21912                                                              <NA>
21914                                               tablet/pill/capsule
21915                                                              tube
21918                                                      pack/package
21921                                                              <NA>
21925                                                      pack/package
21949                                                              <NA>
21955                                                              <NA>
21956                                                              <NA>
21957                                                              <NA>
21959                                                              <NA>
21982                                                      pack/package
21993                                               tablet/pill/capsule
22020                                                      small amount
22022                                                              <NA>
22023                                               tablet/pill/capsule
22025                                      based on weight (50-100 lbs)
22026                                                   based on weight
22037                                                   based on weight
22038                                                   based on weight
22041                                               tablet/pill/capsule
22042                                               tablet/pill/capsule
22043                                                              <NA>
22045                                                   based on weight
22046                                                   based on weight
22048                                                             spray
22050                                                              <NA>
22051                                                              <NA>
22060                                                              <NA>
22062                                                   based on weight
22064                                               tablet/pill/capsule
22088                                               tablet/pill/capsule
22089                                             1 tablet/pill/capsule
22092                                             1 tablet/pill/capsule
22093                                             1 tablet/pill/capsule
22118                                                   based on weight
22120                                                          ointment
22121                                                              <NA>
22125                                                              <NA>
22128                                                              <NA>
22136                                                   based on weight
22140                                                   based on weight
22141                                                   based on weight
22151                                                              <NA>
22160                                                              <NA>
22161                                                   based on weight
22163                                                              <NA>
22173                                             1 tablet/pill/capsule
22175                                                       application
22176                                                              <NA>
22177                                                              <NA>
22179                                                          ointment
22189                                                      small amount
22190                                                            liquid
22191                                                            1 tube
22196                                                                ml
22197                                                              tube
22199                                               tablet/pill/capsule
22201                                                              <NA>
22216                                                   based on weight
22217                                                   based on weight
22218                                                              <NA>
22219                                                              <NA>
22222                                             1 tablet/pill/capsule
22223                                               tablet/pill/capsule
22224                                                              tube
22225                                                              <NA>
22226                                                              <NA>
22227                                                              <NA>
22228                                                              <NA>
22229                                      based on weight (50-100 lbs)
22230                                                              <NA>
22237                                                              <NA>
22238                                                              <NA>
22239                                                              <NA>
22240                                                              <NA>
22241                                                              <NA>
22243                                                              <NA>
22245                                                              <NA>
22253                                               tablet/pill/capsule
22261                                               tablet/pill/capsule
22262                                               tablet/pill/capsule
22265                                               tablet/pill/capsule
22267                                                   based on weight
22268                                                   based on weight
22270                                                       unspecified
22272                                                      small amount
22289                                                              <NA>
22299                                                              <NA>
22306                          460 mg lufenuron, 23 mg milbemycin oxime
22308                                                              <NA>
22311                                                              <NA>
22313                                                      small amount
22314                                               tablet/pill/capsule
22315                                                    1 pack/package
22316                                                              <NA>
22319                                                              <NA>
22321                                                   based on weight
22323                                               tablet/pill/capsule
22341                                                              tube
22342                                                          wipe/pad
22343                                                              dose
22345                                                              <NA>
22346                                                              <NA>
22347                                                              <NA>
22349                                                              <NA>
22351                                                              <NA>
22352                                                              <NA>
22353                                                              <NA>
22367                                                              <NA>
22404                                                      small amount
22407                                                              <NA>
22408                                                      small amount
22410                                                      small amount
22413                                                   based on weight
22417                                                   based on weight
22430                                                   based on weight
22439                                               tablet/pill/capsule
22440                                                              <NA>
22441                                                   based on weight
22459                                                              <NA>
22463                                                              <NA>
22520                                                              <NA>
22530                                                              <NA>
22531                                               tablet/pill/capsule
22532                                               tablet/pill/capsule
22533                                                            collar
22534                                                              <NA>
22537                                                    shampoo/mousse
22540                                                              <NA>
22541                                               tablet/pill/capsule
22545                                               tablet/pill/capsule
22546                                               tablet/pill/capsule
22547                                                              <NA>
22548                                                              <NA>
22549                                               tablet/pill/capsule
22552                                                              <NA>
22556                                                              <NA>
22557                                                   based on weight
22558                                                   based on weight
22574                                                              <NA>
22575                                                   0.25 inch strip
22577                       272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                             1 tablet/pill/capsule
22579                                                              <NA>
22583                                          2 tablets/pills/capsules
22585                                                              <NA>
22598                                                            1 tube
22601                                                              <NA>
22606                                                       as directed
22607                                                       as directed
22610                                                              <NA>
22611                                                              <NA>
22625                                                   based on weight
22653                                                       unspecified
22655                                       based on weight (44-88 lbs)
22656                                                   based on weight
22662                                                      small amount
22667                                                      small amount
22669                                                              <NA>
22670                                                              tube
22672                                                              <NA>
22673                                                              <NA>
22681                                                      small amount
22682                                               tablet/pill/capsule
22683                                                              tube
22690                                                            collar
22691                                                              <NA>
22692                                                   based on weight
22693                                                   based on weight
22704                                             1 tablet/pill/capsule
22705                                                              tube
22707                                               tablet/pill/capsule
22708                                                              tube
22709                                                              <NA>
22710                                                              <NA>
22711                                               tablet/pill/capsule
22713                                               tablet/pill/capsule
22714                                               tablet/pill/capsule
22715                                                              <NA>
22716                                               tablet/pill/capsule
22717                                               tablet/pill/capsule
22718                                      based on weight (50-100 lbs)
22719                                               tablet/pill/capsule
22721                                                              <NA>
22733                                                            collar
22748                                               tablet/pill/capsule
22749                                                              <NA>
22750                                                   based on weight
22751                                                              <NA>
22752                                                              <NA>
22754                                                   based on weight
22763                                                   based on weight
22764                                                              tube
22765                                                      small amount
22766                                                              <NA>
22770                                                              <NA>
22777                                                              <NA>
22778                                                              <NA>
22779                                                              <NA>
22780                                                              <NA>
22795                                               tablet/pill/capsule
22796                                                              <NA>
22797                                                           monthly
22798                                                           monthly
22799                                                   based on weight
22800                                                   based on weight
22801                                                   based on weight
22802                                                      small amount
22803                                                   based on weight
22804                                                   based on weight
22830                                                              <NA>
22840                                                              <NA>
22848                                                      small amount
22853                                                          ointment
22858                                                    shampoo/mousse
22875                                                                 %
22886                                                      small amount
22909                                                              <NA>
22919                                      based on weight (60-120 lbs)
22920                                      based on weight (50-100 lbs)
22922                                                              <NA>
22923                                               tablet/pill/capsule
22926                                                      small amount
22929                                                      small amount
22936                                                              pump
22938                                                              <NA>
22939                                                              <NA>
22954                                                              <NA>
22955                                                              <NA>
22963                                                              tube
22965                                      based on weight (50-100 lbs)
22966                                                   based on weight
22967                                               tablet/pill/capsule
22971                                                   based on weight
22990                                                          wipe/pad
22991                                                              <NA>
22992                                                              <NA>
22994                                               tablet/pill/capsule
23005                                                              <NA>
23006                                                              <NA>
23007                                                              <NA>
23008                                                              <NA>
23009                                                              <NA>
23018                                                              <NA>
23019                                                              <NA>
23024                                                      pack/package
23025                                               tablet/pill/capsule
23043                                               tablet/pill/capsule
23049                                                              <NA>
23051                                                              <NA>
23053                                               tablet/pill/capsule
23055                                                              <NA>
23059                                               tablet/pill/capsule
23060                                                   based on weight
23061                                                   based on weight
23064                                                              <NA>
23066                                                   based on weight
23083                                                              <NA>
23095                                               tablet/pill/capsule
23096                                               tablet/pill/capsule
23100                                                              <NA>
23102                                                              <NA>
23103                                                              <NA>
23108                                                              <NA>
23122                                                   based on weight
23123                                                   based on weight
23124                                                   based on weight
23125                                                   based on weight
23134                                                              <NA>
23137                                                              <NA>
23138                                               tablet/pill/capsule
23143                                                              <NA>
23144                                                              <NA>
23153                                                              <NA>
23154                                                              <NA>
23163                                                              <NA>
23169                                                              <NA>
23173                                                   based on weight
23175                                                              <NA>
23202                                               tablet/pill/capsule
23237                                                              <NA>
23249                                                              <NA>
23250                                                   based on weight
23251                                                              <NA>
23257                                                              <NA>
23258                                             1 tablet/pill/capsule
23259                                                            1 tube
23266                                                          inhalant
23267                                                              <NA>
23268                                       based on weight (56-95 lbs)
23276                                                          inhalant
23278                                                      small amount
23279                                             1 tablet/pill/capsule
23280                                             1 tablet/pill/capsule
23283                                                              <NA>
23284                                                              <NA>
23286                                                              <NA>
23288                                                      small amount
23294                                                              <NA>
23299                                                              <NA>
23304                                                              <NA>
23305                                                             spray
23306                                                             spray
23308                                                    shampoo/mousse
23321                                                              <NA>
23322                                                      small amount
23325                                          based on weight (80 lbs)
23333                                                              <NA>
23336                                                              dose
23337                                                     1 bottle/vial
23338                                                     1 bottle/vial
23340                                                      small amount
23341                                             1 tablet/pill/capsule
23342                                                            1 tube
23344                                                              <NA>
23345                                       based on weight (56-95 lbs)
23349                                                      small amount
23350                                                              <NA>
23353                                                              <NA>
23355                                                              <NA>
23356                                                              <NA>
23360                                                              <NA>
23364                                                              <NA>
23366                                                              <NA>
23384                                                              <NA>
23388                                               tablet/pill/capsule
23403                                                   based on weight
23404                                                   based on weight
23413                                                   based on weight
23414                                                   based on weight
23419                                                       unspecified
23422                                                              tube
23423                                                              tube
23427                                                   based on weight
23428                                                              <NA>
23437                                                   based on weight
23450                                                              dose
23452                                                             spray
23456                                                             spray
23472                                                              dose
23482                                                              tube
23484                                                       as directed
23485                                                       as directed
23487                                                       0.159 fl oz
23491                                                              <NA>
23507                                                      pack/package
23520                                                       0.159 fl oz
23533                                                              <NA>
23534                                                             spray
23540                                                   based on weight
23541                                                   based on weight
23552                                                              <NA>
23553                                                   based on weight
23557                                                   based on weight
23565                                                              <NA>
23566                                                              <NA>
23568                                                   based on weight
23571                       272 mcg ivermectin, 227 mg pyrantel pamoate
23572          9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen
23588                                               tablet/pill/capsule
23589                                                              tube
23590                                               tablet/pill/capsule
23610                                                              <NA>
23617                                                   based on weight
23618                                             1 tablet/pill/capsule
23619                                                              <NA>
23620                                                   based on weight
23622                                      based on weight (50-100 lbs)
23646                                                   based on weight
23647                                                   based on weight
23651                                                   based on weight
23657                                                   based on weight
23659                                                   based on weight
23685                                               tablet/pill/capsule
23686                                               tablet/pill/capsule
23688                                               tablet/pill/capsule
23707                                                             spray
23718                                                              <NA>
23721                                               tablet/pill/capsule
23722                                               tablet/pill/capsule
23724                                                                60
23730                                                   based on weight
23732                                             1 tablet/pill/capsule
23733                                                              <NA>
23740                                                   based on weight
23747                                                              <NA>
23749                                                              <NA>
23757                                                              <NA>
23804                                                              <NA>
23805                                                   based on weight
23808                                               tablet/pill/capsule
23809                                                            collar
23819                                                   based on weight
23861                                                   based on weight
23862                                                   based on weight
23865                                                              <NA>
23866                                                              tube
23868                                                              <NA>
23871                                                              <NA>
23872                                                    shampoo/mousse
23873                                                          wipe/pad
23898                                                            collar
23899                                                    shampoo/mousse
23900                                               tablet/pill/capsule
23901                                                           monthly
23902                                                   based on weight
23905                                             1 tablet/pill/capsule
23906                                                            collar
23909                                                         as needed
23910                                               tablet/pill/capsule
23914                                                       application
23917                                                          ointment
23924                                                              <NA>
23925                                                              <NA>
23933                                                              <NA>
23942                                                              <NA>
23955                                                   based on weight
23956                                                   based on weight
23957                                                              <NA>
23958                                                              <NA>
23959                                                              <NA>
23965                                                              <NA>
23969                                                              <NA>
23974                                         based on weight (55+ lbs)
23976                                                              <NA>
23980                                                              <NA>
24010                                                              <NA>
24012                                                      small amount
24017                                                              <NA>
24018                                                              <NA>
24019                                                              <NA>
24020                                                              <NA>
24022                                                              <NA>
24029                                                              <NA>
24045                                                              <NA>
24046                                                              <NA>
24062                                               tablet/pill/capsule
24068                                                       unspecified
24072                                                              <NA>
24075                                                   based on weight
24076                                                   based on weight
24077                                               tablet/pill/capsule
24079                                                              dose
24104                                                              <NA>
24106                                                              <NA>
24116                                               tablet/pill/capsule
24117                                               tablet/pill/capsule
24139                                                              <NA>
24142                                               tablet/pill/capsule
24144                                                              <NA>
24145                                                       unspecified
24146                                                              <NA>
24149                                                              <NA>
24154                                                              <NA>
24155                                                              <NA>
24157                                                   based on weight
24162                                                   based on weight
24165                                                   based on weight
24166                                                   based on weight
24172                                                   0.25 inch strip
24174                                               tablet/pill/capsule
24185                                                              <NA>
24189                                                              <NA>
24192                                                              <NA>
24193                                                              <NA>
24194                                                              <NA>
24195                                                              <NA>
24201                                                              <NA>
24202                                                              <NA>
24203                                                      small amount
24205                                                              <NA>
24206                                                              <NA>
24207                                                              <NA>
24208                                                              <NA>
24209                                                             spray
24215                                                      small amount
24217                                                         as needed
24221                                                   moderate amount
24222                                                      small amount
24246                                                              <NA>
24250                                             1 tablet/pill/capsule
24251                                                              <NA>
24253                                               tablet/pill/capsule
24257                                                   based on weight
24258                                               tablet/pill/capsule
24259                                               tablet/pill/capsule
24261                                               tablet/pill/capsule
24262                                                              <NA>
24263                                                              <NA>
24265                                               tablet/pill/capsule
24267                                                              <NA>
24268                                                              <NA>
24269                                                              <NA>
24276                                                              <NA>
24282                                               tablet/pill/capsule
24312                                                             spray
24313                                                              <NA>
24314                                               tablet/pill/capsule
24319                                                              <NA>
24322                                                             spray
24328                                                              <NA>
24343                                                              <NA>
24375                                                              <NA>
24393                                               tablet/pill/capsule
24394                                               tablet/pill/capsule
24395                                               tablet/pill/capsule
24397                                                              <NA>
24400                                                              <NA>
24402                                             1 tablet/pill/capsule
24403                                             1 tablet/pill/capsule
24405                                                              <NA>
24406                                                              <NA>
24407                                                              <NA>
24408                                                              <NA>
24409                                                              <NA>
24410                                               tablet/pill/capsule
24413                                             1 tablet/pill/capsule
24416                                                             drops
24417                                                          0.25 tsp
24420                                                              <NA>
24421                                               tablet/pill/capsule
24422                                                              tube
24424                                                       unspecified
24425                                                   based on weight
24426                                                   based on weight
24429                                                              <NA>
24431                                                              <NA>
24432                                                              <NA>
24434                                                              <NA>
24435                                               tablet/pill/capsule
24436                                                             drops
24437                                               tablet/pill/capsule
24451                                                      small amount
24452                                                            1 drop
24453                                                            1 drop
24455                                                    1 pack/package
24459                                                              <NA>
24460                                                              <NA>
24468                                                              <NA>
24473                                                              <NA>
24475                                                              <NA>
24476                                               tablet/pill/capsule
24477                                               tablet/pill/capsule
24478                                                      pack/package
24479                                                              <NA>
24480                                               tablet/pill/capsule
24481                                               tablet/pill/capsule
24484                                      based on weight (50-100 lbs)
24486                                               tablet/pill/capsule
24503                                                              <NA>
24514                                                      pack/package
24520                                                       bottle/vial
24521                                                   based on weight
24526                                                             spray
24534                                                              <NA>
24536                                                              <NA>
24593                                                              <NA>
24597                                                              <NA>
24598                                                              <NA>
24599                                                              <NA>
24601                                                              <NA>
24602                                                              <NA>
24605                                                   based on weight
24610                                                      small amount
24647                                                      small amount
24648                                                              <NA>
24652                                                              <NA>
24653                                                              <NA>
24654                                                              dose
24660                                               tablet/pill/capsule
24669                                                   based on weight
24688                                                        inch strip
24707                                                   0.25 inch strip
24733                                                              <NA>
24734                                                              <NA>
24758                                                   0.25 inch strip
24762                                                              <NA>
24768                                                   based on weight
24769                                                   based on weight
24776                                                              <NA>
24782                                                              <NA>
24802                                                              <NA>
24804                                                              <NA>
24805                                                              <NA>
24806                                                              <NA>
24817                                                      small amount
24819                                                       application
24824                                               tablet/pill/capsule
24825                                               tablet/pill/capsule
24827                                                              <NA>
24828                                           0.5 tablet/pill/capsule
24829                                                   based on weight
24830                                                          wipe/pad
24839                                               tablet/pill/capsule
24840                                               tablet/pill/capsule
24850                                                              <NA>
24867                                                   based on weight
24878                                                   moderate amount
24880                                                              <NA>
24898                                                              puff
24902                                                              <NA>
24917                                                             spray
24918                                                          wipe/pad
24919                                                              <NA>
24935                                                              <NA>
24937                                                              <NA>
24938                                                              <NA>
24940                                                              <NA>
24942                                                              <NA>
24948                                                      small amount
24949                                                              <NA>
24950                                       based on weight (44-88 lbs)
24963                                                              <NA>
24964                                                              <NA>
24967                                                              pump
24968                                                   based on weight
24969                                                   based on weight
24971                                                   based on weight
24973                                               tablet/pill/capsule
24974                                                            collar
24975                                                      small amount
24982                                       based on weight (44-88 lbs)
24984                                                              <NA>
24985                                       based on weight (44-88 lbs)
24987                                      based on weight (50-100 lbs)
24988                                                              <NA>
24989                                                      small amount
24993                                                              <NA>
25003                                                              <NA>
25004                                               tablet/pill/capsule
25020                                                              <NA>
25021                                                   based on weight
25022                                                              <NA>
25041                                                              <NA>
25059                       272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                                   based on weight
25087                                                            collar
25094                                                              <NA>
25099                                                              <NA>
25100                                                              <NA>
25101                                                              <NA>
25102                                                              <NA>
25118                                                   based on weight
25119                                                   based on weight
25120                                                   based on weight
25124                                                              <NA>
25129                                               tablet/pill/capsule
25191                                                   based on weight
25196                                                   based on weight
25198                                                              <NA>
25233                                                   based on weight
25234                                                   based on weight
25241                                                      small amount
25255                                                                ml
25258                                                      small amount
25262                                                              <NA>
25269                                                              <NA>
25270                                                              <NA>
25296                                                              <NA>
25299                                               tablet/pill/capsule
25300                                               tablet/pill/capsule
25309                                                              <NA>
25310                                                              <NA>
25311                                                              <NA>
25315                                                              <NA>
25316                                                              <NA>
25317                                                              <NA>
25331                                                              <NA>
25337                                      based on weight (60-120 lbs)
25342                                                   based on weight
25343                                                   based on weight
25345                                                                 2
25346                                                                 1
25347                                                              <NA>
25358                                                              <NA>
25366                                                              <NA>
25367                                               tablet/pill/capsule
25369                                                              <NA>
25370                                                              <NA>
25378                                                              <NA>
25390                                                              <NA>
25391                                                              <NA>
25405                                                   based on weight
25409                                                        inch strip
25410                                                        1 wipe/pad
25417                                                       bottle/vial
25421                                                   based on weight
25424                                                              <NA>
25425                                                              <NA>
25437                                                              <NA>
25444                                                              <NA>
25473                                                   based on weight
25482                                                              <NA>
25493                                                   based on weight
25494                                                   based on weight
25501                                                   based on weight
25514                                                              <NA>
25515                                                              <NA>
25516                                                              <NA>
25520                                             1 tablet/pill/capsule
25521                                             1 tablet/pill/capsule
25523                                             1 tablet/pill/capsule
25547                                                              <NA>
25554                                                              <NA>
25555                                                              <NA>
25556                                                              <NA>
25557                                                              <NA>
25575                                                              <NA>
25576                                               tablet/pill/capsule
25577                                                   based on weight
25579                                                              <NA>
25589                                                              <NA>
25591                                                              <NA>
25612                                                              <NA>
25617                                                      small amount
25619                                                             drops
25622                                                              <NA>
25660                                                      small amount
25663                                                      small amount
25666                                          3 tablets/pills/capsules
25670                                                              tube
25671                                                            liquid
25672                                                              <NA>
25674                                                              <NA>
25683                                                              <NA>
25706                                                            1 tube
25707                                                       unspecified
25708                                             1 tablet/pill/capsule
25711                                                              <NA>
25725                                                       billion cfu
25726                                                              <NA>
25727                                               tablet/pill/capsule
25730                                                    shampoo/mousse
25737                                                              <NA>
25740                                               tablet/pill/capsule
25741                                               tablet/pill/capsule
25743                                                              tube
25744                                                         as needed
25748                                               tablet/pill/capsule
25749                                               tablet/pill/capsule
25750                                                            1 tube
25751                                                        inch strip
25753                                                              <NA>
25754                                             1 tablet/pill/capsule
25755                                             1 tablet/pill/capsule
25756                                                            1 tube
25757                                             1 tablet/pill/capsule
25765                                                              <NA>
25795                                          based on weight (60 lbs)
25804                                                              <NA>
25806                                               tablet/pill/capsule
25807                                             1 tablet/pill/capsule
25817                                                              <NA>
25819                                                              <NA>
25820                                               tablet/pill/capsule
25826                                                              <NA>
25827                                             1 tablet/pill/capsule
25828                                                              <NA>
25830                                                              <NA>
25837                                                              puff
25846                                                              dose
25884                                               tablet/pill/capsule
25887                                               tablet/pill/capsule
25888                                               tablet/pill/capsule
25919                                                              <NA>
25936                                                              <NA>
25937                                                              <NA>
25939                                               tablet/pill/capsule
25940                                               tablet/pill/capsule
25941                                                              <NA>
25943                                                              <NA>
25948                                                              <NA>
25949                                               tablet/pill/capsule
25950                                               tablet/pill/capsule
25951                                                              <NA>
25952                                                              <NA>
25953                                                              <NA>
25954                                                              <NA>
25964                                                              <NA>
25965                                                              <NA>
25966                                                              <NA>
25967                                                              <NA>
25981                                                              <NA>
25983                                                              <NA>
25985                                                   based on weight
25986                                                   based on weight
25998                                                              <NA>
26004                                                              <NA>
26022                                                              <NA>
26024                                               tablet/pill/capsule
26027                                                              <NA>
26031                                               tablet/pill/capsule
26033                                               tablet/pill/capsule
26037                                               tablet/pill/capsule
26039                                               tablet/pill/capsule
26047                                               tablet/pill/capsule
26048                                               tablet/pill/capsule
26050                                               tablet/pill/capsule
26054                                               tablet/pill/capsule
26056                                               tablet/pill/capsule
26064                                                    1 pack/package
26075                                                              <NA>
26078                                                              <NA>
26084                                                              <NA>
26085                                                              <NA>
26093                                                             spray
26094                                                             spray
26114                                                   based on weight
26115                                                           5 drops
26127                                                      small amount
26128                                                      small amount
26129                                                      small amount
26133                                                      small amount
26134                                                      small amount
26138                                                              <NA>
26139                                                    shampoo/mousse
26141                                                              dose
26148                                                   based on weight
26151                                                      small amount
26152                                                      small amount
26153                                                              <NA>
26154                                                              <NA>
26156                                               tablet/pill/capsule
26157                                                       bottle/vial
26158                                                              <NA>
26159                                                              <NA>
26165                                                      small amount
26166                                                      small amount
26184                                                   0.25 inch strip
26187                                                    0.5 inch strip
26189                                                              <NA>
26190                                                    shampoo/mousse
26192                                                              dose
26197                                                              <NA>
26199                                                   based on weight
26203                                               tablet/pill/capsule
26204                                                      small amount
26205                                                              <NA>
26207                                                      small amount
26208                                                       bottle/vial
26211                                                              <NA>
26212                                                              <NA>
26214                                                      small amount
26215                                                       bottle/vial
26227                                                              <NA>
26229                                                              <NA>
26238                                          based on weight (60 lbs)
26239                                               tablet/pill/capsule
26258                                                              <NA>
26264                                                              <NA>
26265                                                              <NA>
26278                                                              <NA>
26279                                               tablet/pill/capsule
26280                                                              <NA>
26281                                               tablet/pill/capsule
26282                                               tablet/pill/capsule
26287                                                              dose
26295                                               tablet/pill/capsule
26300                                                              <NA>
26307                                                             mg/kg
26315                                                   based on weight
26336                                                              <NA>
26337                                                              <NA>
26355                                                    shampoo/mousse
26373                                                              <NA>
26375                                                   based on weight
26380                                                            1 tube
26386                                                    114 mg, 136 mg
26387                                                              <NA>
26391                                                              <NA>
26393                                                             spray
26395                                                              <NA>
26399                                                              <NA>
26400                                                              <NA>
26401                                                              <NA>
26433                                                              <NA>
26454                                                              <NA>
26464                                                              dose
26471                                                              <NA>
26473                                                              <NA>
26474                                                              <NA>
26475                                               tablet/pill/capsule
26476                                               tablet/pill/capsule
26488                                               tablet/pill/capsule
26489                                               tablet/pill/capsule
26490                                               tablet/pill/capsule
26502                                                      small amount
26505                                                         as needed
26508                                                              pump
26517                                                   based on weight
26518                                                   based on weight
26519                                                   based on weight
26520                                               tablet/pill/capsule
26521                                                              <NA>
26522                                               tablet/pill/capsule
26534                                                              <NA>
26540                                                              pump
26543                                                   based on weight
26544                                                   based on weight
26546                                                   based on weight
26551                                                              <NA>
26553                                                              <NA>
26568                                                   based on weight
26574                                                   based on weight
26583                                                              <NA>
26590                                                       as directed
26591                                                              dose
26592                                                              dose
26594                                               tablet/pill/capsule
26610                                                              <NA>
26611                                               tablet/pill/capsule
26615                                               tablet/pill/capsule
26629                                                   based on weight
26631                                                   based on weight
26637                                                       application
26638                                      based on weight (50-100 lbs)
26643                                                              <NA>
26644                                                                 %
26645                                                   based on weight
26647                                                              <NA>
26650                                                   based on weight
26651                                                   based on weight
26652                                             1 tablet/pill/capsule
26654                                                              <NA>
26655                                                              <NA>
26662                                               tablet/pill/capsule
26663                                               tablet/pill/capsule
26668                                                       bottle/vial
26669                                                   based on weight
26670                                                            collar
26673                                                              <NA>
26674                                                              <NA>
26675                                                              <NA>
26676                                                              dose
26677                                                              <NA>
26680                                                              <NA>
26681                                                              <NA>
26682                                               tablet/pill/capsule
26683                                               tablet/pill/capsule
26684                                             1 tablet/pill/capsule
26685                                             1 tablet/pill/capsule
26694                                                              <NA>
26720                                                              <NA>
26721                                                              <NA>
26722                                                   based on weight
26723                                                              <NA>
26724                                                              <NA>
26726                                               tablet/pill/capsule
26734                                               tablet/pill/capsule
26735                                               tablet/pill/capsule
26736                                                              <NA>
26738                                                              <NA>
26740                                                              <NA>
26742                                                              <NA>
26744                                                              <NA>
26745                                                              <NA>
26747                                                              <NA>
26749                                                              <NA>
26750                                                       combination
26760                                             1 tablet/pill/capsule
26764                                                      small amount
26765                                                      small amount
26766                                                      small amount
26769                                               tablet/pill/capsule
26772                                                      small amount
26773                                                      small amount
26774                                                      small amount
26780                                             1 tablet/pill/capsule
26803                                                              <NA>
26819                                                              <NA>
26823                                                              <NA>
26825                                                              <NA>
26826                                                              <NA>
26827                                                              <NA>
26828                                                              <NA>
26829                                                              <NA>
26830                                                              <NA>
26831                                                              <NA>
26833                                                              <NA>
26836                                                              <NA>
26837                                                    1 pack/package
26839                                                            powder
26840                                               tablet/pill/capsule
26841                                                              <NA>
26842                                               tablet/pill/capsule
26843                                                      pack/package
26844                                                              <NA>
26846                                               tablet/pill/capsule
26847                                                              <NA>
26848                                                            powder
26849                                               tablet/pill/capsule
26850                                                           monthly
26851                                                            powder
26852                                                              <NA>
26853                                                              <NA>
26861                                                   based on weight
26862                                                              <NA>
26863                                                              <NA>
26864                                                              <NA>
26865                                                              <NA>
26867                                                       application
26868                                               tablet/pill/capsule
26869                                               tablet/pill/capsule
26870                                                              <NA>
26871                                                              <NA>
26872                                                              <NA>
26905                                                              <NA>
26926                                                   based on weight
26930                                                   based on weight
26931                                                   based on weight
26932                                                              <NA>
26944                                                              dose
26948                                                   based on weight
26972                                                              <NA>
26974                                                       unspecified
26975                                                   based on weight
26976                                               tablet/pill/capsule
26977                                                   based on weight
26978                                                              <NA>
26979                                      based on weight (50-100 lbs)
26980                                      based on weight (50-100 lbs)
26981                                      based on weight (50-100 lbs)
26983                                                              <NA>
26984                                       based on weight (44-88 lbs)
26986                                                              <NA>
26987                                                              <NA>
26988                                                              <NA>
26990                                                              <NA>
26992                                                              <NA>
27012                                                      small amount
27020                                                       as directed
27021                                                              <NA>
27022                                                              <NA>
27030                                                              <NA>
27047                                                              <NA>
27058                                                              pump
27062                                                              <NA>
27063                                                              <NA>
27065                                               tablet/pill/capsule
27080                                                              <NA>
27081                                                              <NA>
27082                                                           monthly
27085                                               tablet/pill/capsule
27092                                                      pack/package
27095                                                              <NA>
27096                                                              <NA>
27100                                               tablet/pill/capsule
27117                                                       application
27118                                                       application
27124                                                      pack/package
27128                                                              <NA>
27134                                                      small amount
27136                                                   based on weight
27137                                                              <NA>
27140                                                      small amount
27158                                                      small amount
27163                                               tablet/pill/capsule
27170                                               tablet/pill/capsule
27172                                               tablet/pill/capsule
27173                                                        1.5 scoops
27174                                               tablet/pill/capsule
27203                                                              <NA>
27212                                                              <NA>
27213                                                              <NA>
27214                                                            collar
27217                                                             spray
27219                                                      small amount
27220                                                            collar
27222                                                            powder
27223                                                             spray
27224                                                      small amount
27226                                                            collar
27228                                                              <NA>
27229                                                   based on weight
27231                                               tablet/pill/capsule
27232                                                              <NA>
27247                                                              <NA>
27256                                                             spray
27257                                                   based on weight
27258                                                   based on weight
27262                                                              <NA>
27265                                                              <NA>
27268                                                              <NA>
27270                                                              <NA>
27273                                                   based on weight
27274                                                   based on weight
27275                                                   based on weight
27280                                               tablet/pill/capsule
27281                                                              <NA>
27282                                                              <NA>
27285                                                   based on weight
27306                                                   based on weight
27309                                                   based on weight
27311                                                   based on weight
27315                                                              <NA>
27322                                                              pump
27333                                                              <NA>
27348                                                   based on weight
27349                                                   based on weight
27350                                                              <NA>
27358                                               tablet/pill/capsule
27360                                               tablet/pill/capsule
27361                                                              <NA>
27364                                                              <NA>
27368                                               tablet/pill/capsule
27370                                                              tube
27384                                                              <NA>
27407                                                              <NA>
27413                                               tablet/pill/capsule
27414                                               tablet/pill/capsule
27421                                                              tube
27422                                               tablet/pill/capsule
27423                                                              <NA>
27425                                                      small amount
27427                                                              <NA>
27431                                                      small amount
27432                                          based on weight (50 lbs)
27434                                                              <NA>
27445                                                              <NA>
27446                                                              <NA>
27447                                               tablet/pill/capsule
27459                                                              <NA>
27465                                                        inch strip
27474                                                              <NA>
27481                                                              <NA>
27492                                               tablet/pill/capsule
27494                                                              <NA>
27500                                                              <NA>
27501                                                              <NA>
27502                                                   based on weight
27506                                             1 tablet/pill/capsule
27507                                                            1 tube
27511                                                   based on weight
27512                                                   based on weight
27523                                                   based on weight
27529                                                   based on weight
27589                                               tablet/pill/capsule
27594                                                              <NA>
27596                                                              <NA>
27598                                                              <NA>
27620                                               tablet/pill/capsule
27640                                                           monthly
27646                                                          ointment
27654                                      based on weight (60-120 lbs)
27657                          27 mg milbemycin oxime, 1620 mg spinosad
27659                                                              <NA>
27674                                                              <NA>
27697                                                      small amount
27699                                                              <NA>
27700                                                   based on weight
27701                                                   based on weight
27704                                                   based on weight
27710                                       based on weight (44-88 lbs)
27713                                                              <NA>
27714                                                              <NA>
27715                                                              <NA>
27722                                                              <NA>
27736                                                                90
27745                                                       combination
27747                                                              puff
27748                                                       combination
27750                                                       combination
27769                                                       combination
27770                                                              <NA>
27772                                                              <NA>
27776                                                              <NA>
27791                                                       combination
27794                                                       combination
27802                                                              <NA>
27824                                                       combination
27826                                                       combination
27828                                                       combination
27833                                               tablet/pill/capsule
27834                                               tablet/pill/capsule
27836                                                              <NA>
27878                                                   based on weight
27880                                                       unspecified
27884                                                              <NA>
27886                                               tablet/pill/capsule
27895                                                   based on weight
27896                                                   based on weight
27897                                                              <NA>
27898                                                   based on weight
27899                                                              <NA>
27900                                                              <NA>
27901                                                              <NA>
27904                                                              <NA>
27910                                                              <NA>
27913                                                              <NA>
27917                                                              <NA>
27921                                                              <NA>
27922                                                              <NA>
27923                                                              <NA>
27927                                                              <NA>
27929                                                      small amount
27939                                                              <NA>
27940                                                              <NA>
27941                                                              <NA>
27942                                                              <NA>
27954                                                   based on weight
27957                                                              <NA>
27958                                                              <NA>
27959                                                              <NA>
27961                                                   based on weight
27962                                                              tube
27973                                                              <NA>
27974                                                      small amount
27981                                                     1 bottle/vial
27982                                             1 tablet/pill/capsule
27992                                                              dose
27999                                                     1 bottle/vial
28000                                             1 tablet/pill/capsule
28006                                                              pump
28008                                                    1 pack/package
28009                                                              pump
28010                                                      pack/package
28011                                                              <NA>
28014                                                              <NA>
28015                                                              <NA>
28016                                               tablet/pill/capsule
28018                                               tablet/pill/capsule
28020                                                              <NA>
28023                                               tablet/pill/capsule
28024                                               tablet/pill/capsule
28025                                                      pack/package
28029                                                   based on weight
28040                                                   based on weight
28045                                                              <NA>
28046                                                       unspecified
28047                                                       unspecified
28048                                                   based on weight
28049                                                   based on weight
28071                                                              <NA>
28087                                                              dose
28088                                                              dose
28090                                                              <NA>
28094                                                              <NA>
28096                                                              <NA>
28098                                                              <NA>
28100                                                   based on weight
28101                                                   based on weight
28102                                               tablet/pill/capsule
28103                                               tablet/pill/capsule
28104                                               tablet/pill/capsule
28105                                               tablet/pill/capsule
28106                                                              <NA>
28108                                                   based on weight
28109                                                   based on weight
28116                                                    1 pack/package
28119                                                   based on weight
28120                                               tablet/pill/capsule
28128                                                              <NA>
28130                                                       combination
28134                                               tablet/pill/capsule
28135                                             1 tablet/pill/capsule
28137                                                   based on weight
28138                                                              <NA>
28141                                                              <NA>
28144                                                   based on weight
28154                                                              <NA>
28155                                                              <NA>
28158                                                            collar
28162                                                   based on weight
28163                                                       as directed
28164                                          based on weight (60 lbs)
28165                                                              <NA>
28166                                             1 tablet/pill/capsule
28167                                                              <NA>
28168                                                              <NA>
28174                                                          ointment
28176                                                          ointment
28246                                               tablet/pill/capsule
28260                                                          ointment
28261                       272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                               tablet/pill/capsule
28264                                                       combination
28269                                               tablet/pill/capsule
28277                                               tablet/pill/capsule
28279                                                      small amount
28307                       2 mg prednisone, 5 mg trimeprazine tartrate
28309                          27 mg milbemycin oxime, 1620 mg spinosad
28311                          460 mg lufenuron, 23 mg milbemycin oxime
28316                                                            powder
28332                                                      small amount
28333                                                       unspecified
28371                                                      pack/package
28375                                               tablet/pill/capsule
28390                                                              <NA>
28392                                               tablet/pill/capsule
28396                                                              <NA>
28397                                               tablet/pill/capsule
28398                                               tablet/pill/capsule
28399                                               tablet/pill/capsule
28400                                               tablet/pill/capsule
28401                                               tablet/pill/capsule
28404                                               tablet/pill/capsule
28407                                                              <NA>
28425                                                              <NA>
28427                                                              <NA>
28437                                                              <NA>
28448                                                              <NA>
28449                                                              <NA>
28453                                                              <NA>
28483                                             1 tablet/pill/capsule
28484                                                              <NA>
28486                                                             spray
28488                                               tablet/pill/capsule
28505                                                     5 billion cfu
28507                                                                1%
28508                                                      small amount
28516     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28517                                                       application
28518                                                              <NA>
28519                                                              <NA>
28520                                                              <NA>
28528                                                              <NA>
28531                                                       billion cfu
28533                                                                 %
28534                                                              <NA>
28535                                                              <NA>
28536                                                                 %
28538                                                       billion cfu
28545                                                              <NA>
28549                                             1 tablet/pill/capsule
28552                                                   based on weight
28553                                                   based on weight
28554                                                   based on weight
28556                                                   based on weight
28557                                         based on weight (50+ lbs)
28571                                                   based on weight
28572                                                              <NA>
28573                                               tablet/pill/capsule
28574                                                            collar
28576                                               tablet/pill/capsule
28577                                                              <NA>
28580                                                        inch strip
28582                                                   based on weight
28583                                                            collar
28590                                                              <NA>
28601                                                       unspecified
28602                                                   based on weight
28604                                                              <NA>
28605                                                            collar
28606                                                              <NA>
28610                                                              <NA>
28611                                                              <NA>
28612                                                              <NA>
28614                                                              <NA>
28616                                                              <NA>
28621                                                              <NA>
28624                                                   syringe/pipette
28626                                                              <NA>
28630                                      based on weight (50-100 lbs)
28631                                      based on weight (60-120 lbs)
28660                                                           2 pumps
28668                                                       combination
28673                                                              <NA>
28674                                               tablet/pill/capsule
28675                                                              tube
28681                                      based on weight (50-100 lbs)
28685                                                              <NA>
28686                                                              <NA>
28687                                                              <NA>
28693                                               tablet/pill/capsule
28694                                                     1 bottle/vial
28696                                               tablet/pill/capsule
28710                                                              <NA>
28714                                                              <NA>
28716                                                              <NA>
28718                                                              <NA>
28719                                                              <NA>
28723                                                   based on weight
28726                                                   based on weight
28727                                                          ointment
28730                                                              <NA>
28731                                                              <NA>
28735                                                              <NA>
28736                                                              <NA>
28750                                                       unspecified
28751                                                       unspecified
28762                                                              <NA>
28764                                                              <NA>
28772                                                              <NA>
28773                                                              <NA>
28780                                                       combination
28806                                                   based on weight
28809                                                   based on weight
28819                                                             drops
28826                                                             spray
28829                                                              <NA>
28831                                                              <NA>
28833                                                              tube
28855                                                   based on weight
28873                                                              <NA>
28874                                                              <NA>
28882                                               tablet/pill/capsule
28883                                               tablet/pill/capsule
28884                                                              <NA>
28888                                                   based on weight
28897                                                   based on weight
28899                                                   based on weight
28904                                                   based on weight
28906                                                              <NA>
28907                                                   based on weight
28934                                               tablet/pill/capsule
28939                                                              <NA>
28940                                                              <NA>
28941                                                          ointment
28946                                                              <NA>
28979                                                   based on weight
28980                                                   based on weight
28982                                                   based on weight
28983                                             1 tablet/pill/capsule
28986                                             1 tablet/pill/capsule
28987                                                     1 application
28999                                                              <NA>
29000                                                              tube
29007                                                              <NA>
29015                                                          ointment
29022                                                              <NA>
29023                                                              <NA>
29036                                                       application
29037                                                              <NA>
29039                                               tablet/pill/capsule
29040                                                              <NA>
29043                                                              <NA>
29050                                                             spray
29053                                                       application
29056                                      based on weight (60-120 lbs)
29060                                                       unspecified
29064                                                   based on weight
29067                                                              <NA>
29069                                                              <NA>
29070                                                        inch strip
29071                                                      small amount
29072                                                        inch strip
29073                                                        inch strip
29075                                                        inch strip
29078                                                              <NA>
29079                                                   0.25 inch strip
29080                                               tablet/pill/capsule
29081                                                        inch strip
29082                                               tablet/pill/capsule
29083                                                      pack/package
29086                                                              <NA>
29087                                                              <NA>
29091                                                              <NA>
29092                                                              <NA>
29095                                                   based on weight
29096                                                   based on weight
29097                                                              <NA>
29098                                                              <NA>
29099                                                              <NA>
29103                                                              <NA>
29104                                                              <NA>
29108                                                             spray
29136                                                   based on weight
29139                                                      small amount
29143                                                              <NA>
29151                                                       bottle/vial
29153                                                              <NA>
29161                                                      small amount
29166                                                       application
29184                                      based on weight (50-100 lbs)
29196                                                        inch strip
29197                                               tablet/pill/capsule
29220                                                      small amount
29232                                                              <NA>
29234                                                              <NA>
29235                                                              <NA>
29244                                                              <NA>
29245                                                              <NA>
29248                                                              <NA>
29283                                                              <NA>
29285                                                              <NA>
29291                                                             spray
29293                                               tablet/pill/capsule
29298                                                              <NA>
29313                                                              <NA>
29315                                               tablet/pill/capsule
29321                                                        inch strip
29324                                                       unspecified
29327                                                       unspecified
29328                                                   based on weight
29340                                                              <NA>
29342                                                              <NA>
29374                                                              <NA>
29375                                                              <NA>
29376                                                   based on weight
29377                                                              <NA>
29378                                                              <NA>
29379                                                              <NA>
29380                                                       unspecified
29381                                                   based on weight
29382                                                   based on weight
29383                                                   based on weight
29395                                                              <NA>
29404                                                              <NA>
29405                                                              <NA>
29406                                                              <NA>
29428                                                              pump
29438                                                      small amount
29446                                                      small amount
29447                                                      small amount
29453                                                      small amount
29469                                               tablet/pill/capsule
29470                                                            collar
29471                                                              <NA>
29479                                                   based on weight
29480                                                   based on weight
29481                                                   based on weight
29482                                                   based on weight
29483                                                   based on weight
29490                                                   based on weight
29499                                                              <NA>
29500                                                              <NA>
29501                                             1 tablet/pill/capsule
29502                                             1 tablet/pill/capsule
29504                                               tablet/pill/capsule
29505                                                              tube
29511                                             1 tablet/pill/capsule
29525                                                   based on weight
29526                                                   based on weight
29531                                               tablet/pill/capsule
29532                                                              <NA>
29533                                                              <NA>
29534                                                              <NA>
29535                                                              <NA>
29536                                               tablet/pill/capsule
29537                                                              <NA>
29538                                                              <NA>
29539                                                              <NA>
29540                                               tablet/pill/capsule
29567                                                   based on weight
29568                                                              <NA>
29572                                                              dose
29573                                               tablet/pill/capsule
29574                                                              <NA>
29575                                                              <NA>
29579                                                                gm
29580                                             1 tablet/pill/capsule
29588                                                   based on weight
29608                                       based on weight (44-88 lbs)
29617                                             1 tablet/pill/capsule
29633                                                              <NA>
29662                                                              <NA>
29666                                                              <NA>
29669                                                              <NA>
29670                                                              <NA>
29678                                                              <NA>
29696                                                              <NA>
29700                                                              <NA>
29705                                                              <NA>
29707                                                              <NA>
29709                                                              tube
29715                                                            collar
29716                                                            collar
29719                                                            collar
29720                                                              <NA>
29722                                                            collar
29724                                                              <NA>
29726                                                            collar
29729                                                              <NA>
29730                                                              <NA>
29734                                                              <NA>
29736                                                   based on weight
29744                                                   based on weight
29749                                                                mg
29753                                                              <NA>
29764                                                       unspecified
29765                                                       unspecified
29767                                                   based on weight
29770                                                   based on weight
29794                                                              <NA>
29798                                                              <NA>
29799                                                              <NA>
29800                                                              <NA>
29801                                                          wipe/pad
29802                                                              <NA>
29803                                                              <NA>
29822                                               tablet/pill/capsule
29823                                               tablet/pill/capsule
29824                                                              <NA>
29825                                                              <NA>
29827                                                              <NA>
29829                                                              <NA>
29831                                                              <NA>
29832                                                              <NA>
29838                                                              <NA>
29839                                                              <NA>
29840                                                              <NA>
29847                                                              <NA>
29848                                                              <NA>
29858                                                              <NA>
29859                                                              <NA>
29860                                                              <NA>
29861                                                              <NA>
29862                                                              <NA>
29865                                                              <NA>
29880                                                              <NA>
29882                                                   based on weight
29883                                                   based on weight
29933                                       based on weight (25-50 lbs)
29940                                      based on weight (50-100 lbs)
29941                                                   based on weight
29948                                                           2 tubes
29954                                             1 tablet/pill/capsule
29955                                                            1 tube
29956                                      based on weight (50-100 lbs)
29957                                                   based on weight
29963                                                   based on weight
29964                                                   based on weight
29966                                                              <NA>
29969                                                   based on weight
29970                                                   based on weight
29978                                                              <NA>
29990                                         based on weight (55+ lbs)
29991                                                              <NA>
29993                                                              <NA>
30001                                                              <NA>
30048                                                              <NA>
30070                                                        inch strip
30075                                                      pack/package
30076                                               tablet/pill/capsule
30081                                                   based on weight
30082                                                   based on weight
30083                                                   based on weight
30099                                                   based on weight
30104                                                              <NA>
30105                                                              <NA>
30131                                                              <NA>
30132                                                              <NA>
30138                                                              <NA>
30142                                                              <NA>
30143                                                      small amount
30162                                                              <NA>
30164                                                              <NA>
30165                                                              <NA>
30166                                                              <NA>
30169                                                      pack/package
30172                                                              <NA>
30174                                                              <NA>
30178                                                          ointment
30179                                                              <NA>
30185                       272 mcg ivermectin, 227 mg pyrantel pamoate
30191                                                              <NA>
30192                                                              <NA>
30193                                                              <NA>
30198                                                              <NA>
30211                                               tablet/pill/capsule
30212                                               tablet/pill/capsule
30213                                                  2 packs/packages
30214                                                              tube
30218                                             1 tablet/pill/capsule
30221                                             1 tablet/pill/capsule
30239                                                              <NA>
30241                                                              <NA>
30242                                                              <NA>
30246                                                              <NA>
30263                                             1 tablet/pill/capsule
30264                                             1 tablet/pill/capsule
30268                                             1 tablet/pill/capsule
30269                                                            1 tube
30270                                                   based on weight
30274                                                   based on weight
30277                                                   based on weight
30286                                                   based on weight
30298                                                   based on weight
30299                                                              <NA>
30300                                                              <NA>
30310                                                   based on weight
30311                                                        inch strip
30312                                                         1-2 pumps
30313                                                   based on weight
30317                                                      small amount
30319                                                      small amount
30327                                                   0.25 inch strip
30329                                                              <NA>
30337                                                             spray
30338                                                              <NA>
30344                                                   based on weight
30347                          27 mg milbemycin oxime, 1620 mg spinosad
30351                                                   based on weight
30352                                                   based on weight
30353                                                             drops
30354                                                             drops
30355                                                      small amount
30357                                                             spray
30360                                                      pack/package
30361                                               tablet/pill/capsule
30366                                                              <NA>
30367                                                              <NA>
30371                                                              <NA>
30372                                                   based on weight
30373                                                                 1
30374                                                                 1
30375                                                                 1
30376                                               tablet/pill/capsule
30377                                                              <NA>
30378                                                              <NA>
30385                                                   based on weight
30387                                                       unspecified
30388                                                              <NA>
30389                                                       unspecified
30395                                                   based on weight
30396                                                   based on weight
30404                                                   based on weight
30405                                                              <NA>
30406                                                              <NA>
30418                                                              <NA>
30450                                                              <NA>
30464                                                              <NA>
30471                                                              <NA>
30479                                         based on weight (55+ lbs)
30480                       272 mcg ivermectin, 227 mg pyrantel pamoate
30483                                         based on weight (55+ lbs)
30484                                                              <NA>
30485                                                              <NA>
30492                                                              <NA>
30496                                                               50%
30515                                                              <NA>
30528                                                              <NA>
30529                                                              <NA>
30536                                                             drops
30541                                                              <NA>
30555                                      based on weight (50-100 lbs)
30556                                                              <NA>
30590                                                   based on weight
30604                                                   based on weight
30623                                                              <NA>
30644                                                              <NA>
30685                                               tablet/pill/capsule
30689                                               tablet/pill/capsule
30692                                                      small amount
30701                                               tablet/pill/capsule
30702                                                              <NA>
30707                                                   based on weight
30708                                                   based on weight
30709                                               tablet/pill/capsule
30710                                               tablet/pill/capsule
30713                                                              <NA>
30714                                                              <NA>
30717                                                              <NA>
30753                                                   based on weight
30754                                                              <NA>
30756                                                              <NA>
30757                                                              <NA>
30764                                                              <NA>
30765                                                              <NA>
30766                                                              <NA>
30768                                                              <NA>
30769                                                              <NA>
30779                                                   based on weight
30792                                                              <NA>
30793                                               tablet/pill/capsule
30796                                               tablet/pill/capsule
30797                                               tablet/pill/capsule
30799                                                   based on weight
30803                                                             scoop
30811                                                              tube
30813                                                              <NA>
30814                                                              <NA>
30815                                                              <NA>
30816                                                              <NA>
30817                                                              <NA>
30819                                                              tube
30820                                               tablet/pill/capsule
30821                                                            250 mg
30822                                               tablet/pill/capsule
30823                                                   syringe/pipette
30824                                                   syringe/pipette
30826                                               tablet/pill/capsule
30833                                               tablet/pill/capsule
30834                                                              tube
30840                                                              <NA>
30844                                                       combination
30876                                                              <NA>
30877                                                              <NA>
30893                                                              <NA>
30901                                                        inch strip
30909                                                              <NA>
30917                                                             spray
30920                                                              <NA>
30936                                                              <NA>
30943                                                              <NA>
30945                                                              <NA>
30947                                               tablet/pill/capsule
30948                                               tablet/pill/capsule
30949                                                              <NA>
30953                                                              <NA>
30960                                                              <NA>
30961                                                              <NA>
30962                                               tablet/pill/capsule
30963                                                              <NA>
30998                                                   based on weight
31000                                                            1 tube
31001                                               tablet/pill/capsule
31003                                                            1 tube
31004                                                   based on weight
31010                                      based on weight (50-100 lbs)
31011                                         based on weight (55+ lbs)
31016                                                              <NA>
31022                                                   based on weight
31023                                                   based on weight
31034                                                              <NA>
31043                                                   based on weight
31046                                             1 tablet/pill/capsule
31089                                                              <NA>
31094                                               tablet/pill/capsule
31095                                               tablet/pill/capsule
31096                                               tablet/pill/capsule
31105                                                   based on weight
31132                                                      small amount
31133                                               tablet/pill/capsule
31134                                               tablet/pill/capsule
31135                                               tablet/pill/capsule
31139                                                              <NA>
31148                                                              <NA>
31149                                                              <NA>
31152                                                              <NA>
31154                                                              <NA>
31183                                                              <NA>
31186                                                              <NA>
31195                                                              <NA>
31196                                                              <NA>
31197                                                      pack/package
31198                                                              <NA>
31199                                               tablet/pill/capsule
31203                                                              <NA>
31209                                                              <NA>
31228                                                                 %
31232                                                                 %
31234                                                                 %
31245                                                              <NA>
31247                                                              <NA>
31248                                                                 %
31249                                                              <NA>
31250                                                                 %
31260                                                   based on weight
31263                                                   based on weight
31265                                                              <NA>
31268                                                          inhalant
31297                                                              <NA>
31299                                                              <NA>
31300                                                              <NA>
31301                                                              <NA>
31303                                                              <NA>
31307                                                              tube
31308                                               tablet/pill/capsule
31309                                                         2.6 mg/lb
31317                                                            cup(s)
31322                                                              <NA>
31328                                                              <NA>
31330                                                              <NA>
31350                                                              <NA>
31353                                                              <NA>
31356                                                      small amount
31357                                             1 tablet/pill/capsule
31358                                             1 tablet/pill/capsule
31359                                             1 tablet/pill/capsule
31360                                             1 tablet/pill/capsule
31361                                                   based on weight
31365                                             1 tablet/pill/capsule
31366                                             1 tablet/pill/capsule
31367                                                              tube
31369                                                          wipe/pad
31370                                                       application
31371                                                              <NA>
31373                                                              <NA>
31374                                                              <NA>
31375                                                   based on weight
31381                                                              <NA>
31383                                             1 tablet/pill/capsule
31384                                             1 tablet/pill/capsule
31385                                             1 tablet/pill/capsule
31386                                             1 tablet/pill/capsule
31389                                             1 tablet/pill/capsule
31408                       272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                              <NA>
31434                                                              <NA>
31437                                          2 tablets/pills/capsules
31438                                                      small amount
31439                                                              <NA>
31440                                                              <NA>
31441                                                              dose
31446                                                      small amount
31447                                                      small amount
31449                                               tablet/pill/capsule
31450                                               tablet/pill/capsule
31452                                                              <NA>
31457                                                              <NA>
31463                                                              <NA>
31471                                               tablet/pill/capsule
31502                                                   based on weight
31503                                                   based on weight
31504                                                   based on weight
31506                                               tablet/pill/capsule
31508                                                              dose
31528                                                   based on weight
31529                                                   based on weight
31531                                               tablet/pill/capsule
31539                                                                 %
31542                                                              <NA>
31548                                                              <NA>
31551                                                              <NA>
31552                                                              <NA>
31553                                                              <NA>
31602                                      based on weight (50-100 lbs)
31611                                                      small amount
31612                                                      small amount
31616                                             1 tablet/pill/capsule
31617                                                              dose
31618                                                              dose
31619                                             1 tablet/pill/capsule
31637                                             1 tablet/pill/capsule
31640                                                      small amount
31643                                               tablet/pill/capsule
31644                                                              <NA>
31645                                                              <NA>
31646                                             1 tablet/pill/capsule
31647                                             1 tablet/pill/capsule
31652                                                      small amount
31653                                                              <NA>
31655                                                              <NA>
31656                                                              <NA>
31657                                                              <NA>
31665                                               tablet/pill/capsule
31666                                               tablet/pill/capsule
31678                                                   based on weight
31680                                               tablet/pill/capsule
31688                                                   based on weight
31689                                                   based on weight
31696                                       based on weight (44-88 lbs)
31707                                               tablet/pill/capsule
31713                       272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                              <NA>
31725                                                              <NA>
31726                                                            1 tube
31730                                                              <NA>
31731                                                              <NA>
31734                                               tablet/pill/capsule
31735                                                              <NA>
31736                                                      pack/package
31737                                                            powder
31742                                                              <NA>
31747                                               tablet/pill/capsule
31748                                                              <NA>
31760                                               tablet/pill/capsule
31761                                                              <NA>
31762                                                   based on weight
31765                                      based on weight (50-100 lbs)
31766                                       based on weight (44-88 lbs)
31768                                                              <NA>
31769                                                              <NA>
31771                                                              <NA>
31773                                                              <NA>
31774                                                              <NA>
31777                                               tablet/pill/capsule
31780                                                              <NA>
31781                                                              <NA>
31798                                                   based on weight
31803                                                   based on weight
31804                                             1 tablet/pill/capsule
31807                                                            1 tube
31808                                             1 tablet/pill/capsule
31810                                      based on weight (50-100 lbs)
31811                                       based on weight (44-88 lbs)
31818                                       based on weight (44-88 lbs)
31819                                      based on weight (50-100 lbs)
31824                                      based on weight (50-100 lbs)
31825                                       based on weight (44-88 lbs)
31826                                                      small amount
31833                                                              <NA>
31834                                                             spray
31836                                                              <NA>
31837                                                   0.25 inch strip
31840                                                   based on weight
31841                                                              <NA>
31842                                                            1 pump
31843                                                              <NA>
31844                                                              <NA>
31845                                                              <NA>
31846                                                            collar
31847                          460 mg lufenuron, 23 mg milbemycin oxime
31849                                                              1 ml
31850                                                              <NA>
31853                                                              <NA>
31861                                                              <NA>
31864                                                              <NA>
31866                                                              <NA>
31868                                                   based on weight
31869                                             1 tablet/pill/capsule
31874                                                   based on weight
31876                                                      small amount
31880                                                              <NA>
31888                                                       unspecified
31891                                                   based on weight
31892                                                   based on weight
31895                                                         per month
31896                                                         per month
31898                                             1 tablet/pill/capsule
31906                                                            powder
31907                                                              <NA>
31908                                                              <NA>
31909                                             1 tablet/pill/capsule
31911                                               tablet/pill/capsule
31916                                                   based on weight
31937                                                              <NA>
31938                                                              <NA>
31939                                                              <NA>
31940                                                              <NA>
31941                                                              <NA>
31942                                             1 tablet/pill/capsule
31945                                                              <NA>
31946                                                              <NA>
31947                                                              <NA>
31948                                                              <NA>
31953                                                              <NA>
31954                                               tablet/pill/capsule
31955                                               tablet/pill/capsule
31968                                                              <NA>
31985                                                              <NA>
31990                                                   based on weight
32002                                                              <NA>
32006                                                              <NA>
32015                                                              <NA>
32016                                               tablet/pill/capsule
32020                                                              <NA>
32025                                                       unspecified
32032                                                              <NA>
32035                                                              <NA>
32040                                               tablet/pill/capsule
32046                                                              <NA>
32053                                             1 tablet/pill/capsule
32054                                                     1 application
32055                                                              <NA>
32056                                             1 tablet/pill/capsule
32057                                             1 tablet/pill/capsule
32058                                             1 tablet/pill/capsule
32059                                               tablet/pill/capsule
32060                                               tablet/pill/capsule
32074                                                      small amount
32076                                                   based on weight
32079                                                   based on weight
32080                                                   based on weight
32084                                                        inch strip
32095                                               tablet/pill/capsule
32097                                               tablet/pill/capsule
32098                                               tablet/pill/capsule
32099                                               tablet/pill/capsule
32100                                                   based on weight
32101                                                   based on weight
32102                                               tablet/pill/capsule
32103                                               tablet/pill/capsule
32104                                               tablet/pill/capsule
32105                                                   based on weight
32106                                                   based on weight
32108                                                   based on weight
32114                                                                 %
32116                                                                 %
32119                                                              <NA>
32121                                                           monthly
32122                                                           monthly
32123                                                              <NA>
32128                                                              <NA>
32129                                                              <NA>
32132                                                              <NA>
32133                                          based on weight (74 lbs)
32134                                          based on weight (74 lbs)
32168                                                            powder
32171                                                              <NA>
32175                                                              <NA>
32179                                             1 tablet/pill/capsule
32180                                             1 tablet/pill/capsule
32183                                                              <NA>
32184                                                              <NA>
32187                                                              <NA>
32196                                                            powder
32222                                                   based on weight
32231                                      based on weight (50-100 lbs)
32232                                       based on weight (44-88 lbs)
32233                                             1 tablet/pill/capsule
32234                                             1 tablet/pill/capsule
32236                                      based on weight (50-100 lbs)
32237                                       based on weight (24-60 lbs)
32266                                                              puff
32276                                                              <NA>
32290                                                          inhalant
32295                                               tablet/pill/capsule
32296                                               tablet/pill/capsule
32297                                                              <NA>
32310                                                             spray
32312                                               tablet/pill/capsule
32313                                               tablet/pill/capsule
32315                                                        inch strip
32320                                                              <NA>
32343                                                        inch strip
32358                                                              <NA>
32359                                                              <NA>
32360                                                              <NA>
32362                                                              <NA>
32363                                                       unspecified
32364                                                              <NA>
32365                                                              <NA>
32370                                                          ointment
32390                                                              <NA>
32393                                                   based on weight
32394                                                              <NA>
32417                                      based on weight (50-100 lbs)
32425                                                              <NA>
32426                                                              <NA>
32427                                                              <NA>
32445                                                              <NA>
32447                                                              <NA>
32448                                                              <NA>
32449                                                              <NA>
32460                                                              <NA>
32463                                               tablet/pill/capsule
32464                                               tablet/pill/capsule
32466                                             1 tablet/pill/capsule
32467                                             1 tablet/pill/capsule
32477                                               tablet/pill/capsule
32478                                               tablet/pill/capsule
32504                                               tablet/pill/capsule
32505                                                       application
32507                                                              <NA>
32509                                               tablet/pill/capsule
32510                                                      small amount
32511                                      based on weight (50-100 lbs)
32512                                         based on weight (56+ lbs)
32513                                                      small amount
32520                                                              <NA>
32521                                                              <NA>
32529                                                              dose
32530                                      based on weight (50-100 lbs)
32535                                                   based on weight
32536                                                   based on weight
32538                                                   moderate amount
32542                                                              <NA>
32557                       272 mcg ivermectin, 227 mg pyrantel pamoate
32558                                                   based on weight
32561                                                       as directed
32562                                                       as directed
32575                                                              <NA>
32576                                                              <NA>
32629                                                       unspecified
32631                                                   based on weight
32633                                                       unspecified
32635                                                   based on weight
32637                                                             spray
32642                                      based on weight (50-100 lbs)
32643                                      based on weight (50-100 lbs)
32652                                                              <NA>
32654                                                       unspecified
32664                                                   based on weight
32670                                                              <NA>
32672                                                    shampoo/mousse
32673                                                       combination
32678                                                              <NA>
32680                                                              <NA>
32682                                                              <NA>
32685                                                              <NA>
32694                                                             spray
32698                                               tablet/pill/capsule
32703                                      based on weight (60-120 lbs)
32726                                                              <NA>
32737                                                              <NA>
32739                                               tablet/pill/capsule
32742                                               tablet/pill/capsule
32743                                               tablet/pill/capsule
32750                                             1 tablet/pill/capsule
32751                                             1 tablet/pill/capsule
32767                                                       unspecified
32768                                               tablet/pill/capsule
32769                                                              <NA>
32770                                               tablet/pill/capsule
32777                                                              <NA>
32798                                                       bottle/vial
32815                                                            powder
32829                                                   syringe/pipette
32841                                                              <NA>
32844                                                              <NA>
32849                                               tablet/pill/capsule
32850                                               tablet/pill/capsule
32856                                       based on weight (44-88 lbs)
32857                                                              <NA>
32858                                                              <NA>
32859                                                              <NA>
32862                                                              <NA>
32863                                                              <NA>
32869                                                       unspecified
32870                                                              <NA>
32871                                                              <NA>
32879                                               tablet/pill/capsule
32883                                               tablet/pill/capsule
32884                                                              <NA>
32887                                                   0.25 inch strip
32888                                                      small amount
32903                                                              <NA>
32912                                                              <NA>
32923                                                       unspecified
32930     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32937                                                              <NA>
32938                                               tablet/pill/capsule
32940                                                       application
32942                                               tablet/pill/capsule
32943                                               tablet/pill/capsule
32944                                               tablet/pill/capsule
32949                                                       application
32950                                                              <NA>
32951                                             1 tablet/pill/capsule
32952                                             1 tablet/pill/capsule
32954                                                              <NA>
32955                                                              <NA>
32956                                                              <NA>
32964                                                              <NA>
32965                                                              <NA>
32999                                                   based on weight
33004                                                   based on weight
33008                                                       bottle/vial
33009                                               tablet/pill/capsule
33010                                                              <NA>
33011                                                              <NA>
33014                                                              <NA>
33015                                                   based on weight
33023                                                      pack/package
33043                                                              <NA>
33047                                                              <NA>
33066                                                       bottle/vial
33067                                                       bottle/vial
33068                                                              <NA>
33073                                                              <NA>
33078                                                   based on weight
33081                                               tablet/pill/capsule
33085                                                       bottle/vial
33086                                                              <NA>
33087                                                              <NA>
33088                                                              <NA>
33089                                                              <NA>
33090                                                              <NA>
33091                                                              <NA>
33092                                               tablet/pill/capsule
33096                                               tablet/pill/capsule
33107                                                              <NA>
33110                                                   based on weight
33113                                                   based on weight
33124                                                             spray
33126                                                             spray
33128                                                              dose
33132                                      based on weight (60-120 lbs)
33133                                      based on weight (50-100 lbs)
33138                                             1 tablet/pill/capsule
33157                                                              <NA>
33159                                                              <NA>
33166                                                   based on weight
33187                                                              <NA>
33190                                                              <NA>
33191                                                      small amount
33209                                                             spray
33211                                                   based on weight
33220                                               tablet/pill/capsule
33222                                                   based on weight
33226                                                              <NA>
33227                                                      pack/package
33229                                                            1 tube
33230                                               tablet/pill/capsule
33233                                                      pack/package
33235                                             1 tablet/pill/capsule
33236                                                              <NA>
33239                                                              <NA>
33242                                                   based on weight
33271                                                              <NA>
33286                                                              <NA>
33289                                               tablet/pill/capsule
33292                                               tablet/pill/capsule
33293                                                              <NA>
33318                                                           2.68 ml
33333                                                              <NA>
33335                                                              <NA>
33336                                               tablet/pill/capsule
33347                                       based on weight (70-80 lbs)
33354                                                              <NA>
33355                                                              <NA>
33358                                      based on weight (50-100 lbs)
33363                                               tablet/pill/capsule
33364                                               tablet/pill/capsule
33370                                                              <NA>
33374                                                              <NA>
33375                                                              <NA>
33376                                                              <NA>
33377                                                              <NA>
33385                                                              <NA>
33387                                                              <NA>
33389                                                              <NA>
33410                                               tablet/pill/capsule
33411                                                            collar
33412                                               tablet/pill/capsule
33414                                                            collar
33456                                                              <NA>
33468                                                       bottle/vial
33471                                                              <NA>
33479                                      based on weight (60-120 lbs)
33480                                                           monthly
33482                                                              <NA>
33489                                                       unspecified
33490                                                              <NA>
33491                                                              <NA>
33492                                                              <NA>
33493                                                              <NA>
33497                                             1 tablet/pill/capsule
33499                                                              <NA>
33500                                             1 tablet/pill/capsule
33539                                                            collar
33541                                                            collar
33542                                                              <NA>
33543                                                            collar
33544                                                            collar
33576                                                              <NA>
33580                                               tablet/pill/capsule
33581                                                       application
33582                                                              <NA>
33583                                                              <NA>
33590                                      based on weight (50-100 lbs)
33591                                               tablet/pill/capsule
33592                       23 mg milbemycin oxime, 228 mg praziquantel
33614                                                              <NA>
33641                                      based on weight (50-100 lbs)
33644                                                   based on weight
33645                                                   based on weight
33647                                                              <NA>
33649                                               tablet/pill/capsule
33651                                               tablet/pill/capsule
33655                                               tablet/pill/capsule
33683                                               tablet/pill/capsule
33684                                                       unspecified
33690                                                              <NA>
33696                                                       combination
33702                                                          3 scoops
33706                                                              <NA>
33714                                                              dose
33717                                               tablet/pill/capsule
33722                                                       application
33723                                                              dose
33724                                                   based on weight
33725                                                   based on weight
33737                                                       as directed
33739                                      based on weight (60-120 lbs)
33740                                      based on weight (60-120 lbs)
33756                                                              <NA>
33767                                                              <NA>
33797                                                   based on weight
33798                                                   based on weight
33804                                                              dose
33805                                                              dose
33815                                                              <NA>
33824                                                              <NA>
33828                                                              <NA>
33844                                                              <NA>
33868                                                   based on weight
33869                                                              <NA>
33870                                                   based on weight
33890                                                              <NA>
33894                                                      small amount
33901                                                       unspecified
33905                                                             spray
33907                                                             spray
33909                                                      small amount
33911                                                       application
33913                                                             spray
33914                                                             spray
33916                                                              <NA>
33919                                                      small amount
33927                                                              tube
33929                                                              <NA>
33939                                                          ointment
33940                                                            powder
33987                                               tablet/pill/capsule
33991                                                      small amount
33992                                               tablet/pill/capsule
33993                                               tablet/pill/capsule
33994                                                              <NA>
33995                                               tablet/pill/capsule
33998                                                         as needed
34000                                               tablet/pill/capsule
34002                                               tablet/pill/capsule
34003                                                              <NA>
34005                                               tablet/pill/capsule
34011                                                              <NA>
34012                                                              <NA>
34014                                                       unspecified
34016                                                       unspecified
34022                                                       unspecified
34024                                                       unspecified
34029                                                       unspecified
34030                                                   based on weight
34043                                                   based on weight
34046                                                              <NA>
34048                                               tablet/pill/capsule
34049                                                            collar
34051                                                              <NA>
34053                                               tablet/pill/capsule
34054                                                            collar
34069                                                              <NA>
34073                                                              <NA>
34074                                                              <NA>
34075                                                              <NA>
34077                                                   based on weight
34087                                             1 tablet/pill/capsule
34090                                                      small amount
34091                                             1 tablet/pill/capsule
34092                                                              <NA>
34093                                                            collar
34094                                                              <NA>
34095                                                              <NA>
34096                                                   based on weight
34105                                                              pump
34107                                                              <NA>
34108                                                              <NA>
34109                                                      pack/package
34111                                                              <NA>
34113                                                              <NA>
34125                                                            1 tube
34126                                             1 tablet/pill/capsule
34128                                                  1-2 applications
34132                                      based on weight (50-100 lbs)
34134                                               tablet/pill/capsule
34135                                                     1 application
34138                                                      pack/package
34140                                                              <NA>
34147                                               tablet/pill/capsule
34148                                               tablet/pill/capsule
34152                                                            powder
34155                                                       unspecified
34156                                                              <NA>
34157                                                              <NA>
34161                                                              <NA>
34227                                                             scoop
34230                                                              <NA>
34231                                                              <NA>
34232                                                              <NA>
34233                                                              <NA>
34234                                                              <NA>
34235                                                              <NA>
34238                                               tablet/pill/capsule
34239                                                              <NA>
34240                                                              <NA>
34241                                                              <NA>
34242                                                              <NA>
34243                                                              <NA>
34246                                                              <NA>
34247                                                              <NA>
34249                                                   based on weight
34254                                             1 tablet/pill/capsule
34260                                                              <NA>
34262                                                              <NA>
34264                                                              <NA>
34267                                                              <NA>
34268                                                      small amount
34269                                                      small amount
34282                                                              pump
34287                                                              <NA>
34289                                                              <NA>
34290                                                              <NA>
34293                                                              <NA>
34304                                                              <NA>
34327                                                              <NA>
34332                                                              <NA>
34333                                                      small amount
34334                                                            1 tube
34336                                                      small amount
34340                                                              dose
34342                                                            collar
34343                                                             spray
34345                                                   based on weight
34348                                                              <NA>
34359                                                   based on weight
34360                                                   based on weight
34361                                                              <NA>
34362                                                              <NA>
34367                                                            powder
34374                                               tablet/pill/capsule
34375                                               tablet/pill/capsule
34378                                                              <NA>
34379                                                              <NA>
34388                                                      small amount
34401                                                   based on weight
34403                                                   based on weight
34409                                                              <NA>
34410                                                              <NA>
34418                                                   based on weight
34419                                                   based on weight
34430                                                              <NA>
34434                                                   based on weight
34435                                                              <NA>
34436                                                              <NA>
34456                                                             spray
34457                                                              <NA>
34463                                                              <NA>
34467                                                              <NA>
34474                                                              <NA>
34493                                                              <NA>
34513                                                   based on weight
34536                                             1 tablet/pill/capsule
34545                                                              <NA>
34548                                                              <NA>
34579                                                              <NA>
34583                                             1 tablet/pill/capsule
34584                                                              <NA>
34587                                                         as needed
34588                                                              <NA>
34593                                                              <NA>
34606                                                              <NA>
34608                                               tablet/pill/capsule
34609                                                              1 ml
34614                                                            1 pump
34617                                                       bottle/vial
34624                                                              <NA>
34629                                       based on weight (40-60 lbs)
34630                                                         as needed
34635                                                          wipe/pad
34636                                                   based on weight
34637                                                       unspecified
34638                                                          wipe/pad
34640                                                   based on weight
34642                                               tablet/pill/capsule
34648                                                              <NA>
34669                                               tablet/pill/capsule
34671                                             1 tablet/pill/capsule
34672                                                             spray
34673                                                          ointment
34674                                                          ointment
34675                                                              <NA>
34676                                                              <NA>
34677                                                              <NA>
34678                                                             spray
34680                                                              <NA>
34697                                                   based on weight
34704                                                       unspecified
34705                                                              <NA>
34706                                                              <NA>
34708                                                       unspecified
34709                                                       unspecified
34710                                                          biweekly
34727                                                              <NA>
34728                                                              <NA>
34729                                                              <NA>
34730                                                   based on weight
34733                                               tablet/pill/capsule
34734                                               tablet/pill/capsule
34741                                                              <NA>
34744                                                              <NA>
34747                                               tablet/pill/capsule
34750                                                              <NA>
34763                                                   based on weight
34764                                                   based on weight
34766                                                              <NA>
34787                                               tablet/pill/capsule
34788                                                      small amount
34789                                                              <NA>
34791                                                   based on weight
34797                                                                mg
34798                                                                mg
34799                                                   based on weight
34811                                               tablet/pill/capsule
34813                                                       unspecified
34828                                                   based on weight
34832                                                              <NA>
34833                                               tablet/pill/capsule
34845                                               tablet/pill/capsule
34874                                                              <NA>
34875                                                              <NA>
34887                                               tablet/pill/capsule
34888                                                            1 tube
34889                                                   based on weight
34890                                                   based on weight
34891                                             1 tablet/pill/capsule
34892                                                 1 syringe/pipette
34900                                                              <NA>
34901                                                              <NA>
34902                                                              <NA>
34903                                                              <NA>
34904                                                              <NA>
34905                                                   based on weight
34906                                                   based on weight
34907                                                              <NA>
34908                                                              <NA>
34917                                                              <NA>
34918                                                              <NA>
34920                                                              <NA>
34922                                                              <NA>
34923                                                              <NA>
34924                                                              <NA>
34953                                                              <NA>
34955                                                              <NA>
34956                                                              <NA>
34966                                                   based on weight
34979                                                                 1
34981                                               tablet/pill/capsule
34982                                               tablet/pill/capsule
34983                                               tablet/pill/capsule
34991                                                              <NA>
34992                                                   based on weight
34996                                                   based on weight
35002                                                              <NA>
35004                                                              <NA>
35014                                               tablet/pill/capsule
35025                                                   based on weight
35026                                                              <NA>
35027                                                            cup(s)
35034                                                              <NA>
35049                                                      small amount
35069                                               tablet/pill/capsule
35074                                                              <NA>
35094                                                   based on weight
35103                                                     1 application
35109                                                              <NA>
35110                                                   based on weight
35122                                                              <NA>
35124                                                              <NA>
35125                                               tablet/pill/capsule
35126                                                              <NA>
35132                                               tablet/pill/capsule
35134                                                          ointment
35143     460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
35144                                                      small amount
35145                                                       unspecified
35146                                               tablet/pill/capsule
35147                                                   based on weight
35148                                                       unspecified
35149                                                              <NA>
35150                                                   based on weight
35152                                                   based on weight
35153                                                   based on weight
35154                                               tablet/pill/capsule
35160                                                              <NA>
35176                                                              <NA>
35181                                               tablet/pill/capsule
35182                                                              <NA>
35183                                                              <NA>
35189                                                   based on weight
35203                                               tablet/pill/capsule
35204                                                       bottle/vial
35205                                                      small amount
35207                                                              <NA>
35212                                                   based on weight
35214                                                   based on weight
35232                                                              <NA>
35245                                                             drops
35252                                                              <NA>
35258                                                              <NA>
35262                                                              <NA>
35264                                                              <NA>
35278                                               tablet/pill/capsule
35279                                               tablet/pill/capsule
35283                                               tablet/pill/capsule
35284                                               tablet/pill/capsule
35291                                             1 tablet/pill/capsule
35299                                                       bottle/vial
35300                                               tablet/pill/capsule
35314                                                   0.25 inch strip
35315                                                              <NA>
35354                                                              <NA>
35382                                               tablet/pill/capsule
35388                                                              <NA>
35393                                                       unspecified
35399                                               tablet/pill/capsule
35400                                                              <NA>
35401                                               tablet/pill/capsule
35404                                               tablet/pill/capsule
35405                                               tablet/pill/capsule
35406                                             1 tablet/pill/capsule
35414                                                              <NA>
35417                                                              <NA>
35420                                                              <NA>
35421                                                              <NA>
35422                          460 mg lufenuron, 23 mg milbemycin oxime
35423                                      based on weight (50-100 lbs)
35424                                      based on weight (88-123 lbs)
35425                                                              <NA>
35432                                                              <NA>
35434                                                              <NA>
35443                                                              <NA>
35450                                                              <NA>
35453                                               tablet/pill/capsule
35454                                               tablet/pill/capsule
35495                                      based on weight (55-100 lbs)
35496                                                272 mcg ivermectin
35497                                                              <NA>
35499                                                              <NA>
35501                                                              <NA>
35504                                                              <NA>
35506                                                              <NA>
35507                                                              <NA>
35509                                                   0.25 inch strip
35513                                                              <NA>
35525                                                   based on weight
35526                                                   based on weight
35528                                                              <NA>
35539                                                              <NA>
35560                                               tablet/pill/capsule
35561                                               tablet/pill/capsule
35562                                               tablet/pill/capsule
35563                                               tablet/pill/capsule
35565                                                              <NA>
35566                                                              <NA>
35569                                                              <NA>
35571                                                   based on weight
35572                                                   based on weight
35573                                                   based on weight
35574                                                              <NA>
35575                                                   based on weight
35576                                                              <NA>
35577                                                              <NA>
35578                                                   based on weight
35579                                                   based on weight
35580                                                              <NA>
35581                                                   based on weight
35582                                                   based on weight
35592                                                              <NA>
35593                                                   based on weight
35598                                                   based on weight
35605                                                             spray
35620                                                              <NA>
35621                                                     1 bottle/vial
35624                                                              <NA>
35626                                                            powder
35628                                                              <NA>
35633                                               tablet/pill/capsule
35639                                               tablet/pill/capsule
35641                                               tablet/pill/capsule
35642                                                       application
35643                                                              <NA>
35645                                                              <NA>
35656                                                       unspecified
35659                                                              <NA>
35662                                               tablet/pill/capsule
35664                                                   based on weight
35665                                                   based on weight
35668                                                              <NA>
35673                                                             spray
35674                                                              <NA>
35696                                                              <NA>
35697                                               tablet/pill/capsule
35699                                             1 tablet/pill/capsule
35700                                                             spray
35721                                                   based on weight
35722                                                       unspecified
35725                                                              <NA>
35727                                                              <NA>
35740                                                              <NA>
35743                                                              <NA>
35748                                                              <NA>
35756                                                              <NA>
35757                                                              <NA>
35758                                                              <NA>
35762                                                             daily
35768                                                              tube
35770                                                              tube
35771                                               tablet/pill/capsule
35772                                                       unspecified
35773                                                      pack/package
35774                                               tablet/pill/capsule
35775                                                   based on weight
35777                                                       unspecified
35778                                                       unspecified
35784                       272 mcg ivermectin, 227 mg pyrantel pamoate
35786                                                       application
35791                                                              <NA>
35792                                                              <NA>
35793                                                              <NA>
35808                                                              <NA>
35809                                                              <NA>
35810                                                              <NA>
35812                                      based on weight (60-120 lbs)
35820                                               tablet/pill/capsule
35821                                                       application
35831                                                              <NA>
35835                                                              <NA>
35850                                             1 tablet/pill/capsule
35853                                                       unspecified
35855                                               tablet/pill/capsule
35858                                                              <NA>
35859                                                              <NA>
35903                                                              <NA>
35905                                                              <NA>
35907                                                              <NA>
35908                                                              <NA>
35931                                                              <NA>
35954                                                   based on weight
35955                                               tablet/pill/capsule
35963                                                      small amount
35965                                                              <NA>
35969                                                         as needed
35973                                                       combination
35982                                                   based on weight
35983                                                   based on weight
36019                                                   based on weight
36021                                                   based on weight
36023                                                      small amount
36030                                                              <NA>
36042                                               tablet/pill/capsule
36043                                                              <NA>
36044                                               tablet/pill/capsule
36065                                             1 tablet/pill/capsule
36069                                                   based on weight
36078                                                              <NA>
36081                                                              <NA>
36082                                                              <NA>
36084                                                       unspecified
36108                                                              <NA>
36110                                                              <NA>
36112                                                   based on weight
36113                                                              <NA>
36115                                                   based on weight
36134                                                              <NA>
36137                                                              pump
36144                                                     1 bottle/vial
36145                                             1 tablet/pill/capsule
36150                                                   based on weight
36153                                                              <NA>
36155                                                              tube
36156                                               tablet/pill/capsule
36159                                                   based on weight
36171                                                              <NA>
36191                                               tablet/pill/capsule
36192                                                              <NA>
36198                                                       unspecified
36200                                                              <NA>
36201                                                                ml
36202                                                              <NA>
36203                                                              <NA>
36205                                                              <NA>
36218                                               tablet/pill/capsule
36220                                                   based on weight
36221                                               tablet/pill/capsule
36222                                                      small amount
36223                                                    1 pack/package
36225                                                   based on weight
36227                                               tablet/pill/capsule
36228                                               tablet/pill/capsule
36229                                               tablet/pill/capsule
36231                                                       bottle/vial
36232                                               tablet/pill/capsule
36233                                               tablet/pill/capsule
36235                                                          ointment
36237                                                        inch strip
36238                                                              <NA>
36240                                                              <NA>
36254                                                              <NA>
36256                                                              <NA>
36264                                                              <NA>
36268                                                              <NA>
36271                                                              <NA>
36272                                                              <NA>
36273                                       based on weight (40-60 lbs)
36275                                                   based on weight
36276                                                       unspecified
36280                                      based on weight (85-130 lbs)
36283                                                              <NA>
36288                                                              <NA>
36292                                                              <NA>
36293                                                              <NA>
36294                                                              <NA>
36295                                                              <NA>
36296                                                              <NA>
36297                                                              <NA>
36298                                                              <NA>
36299                                                              <NA>
36300                                                              <NA>
36301                                                              <NA>
36302                                                              <NA>
36303                                                              <NA>
36304                                                              <NA>
36305                                                              <NA>
36306                                                   based on weight
36307                                                   based on weight
36308                                                              <NA>
36309                                                              <NA>
36310                                                              <NA>
36311                                                              <NA>
36322                                                              <NA>
36323                                                              <NA>
36324                                                              <NA>
36325                                                              <NA>
36326                                                              <NA>
36327                                                              <NA>
36328                                                              <NA>
36329                                                              <NA>
36330                                                              <NA>
36331                                                              <NA>
36332                                                              <NA>
36333                                                              <NA>
36334                                                              <NA>
36335                                                   based on weight
36336                                                   based on weight
36337                                                              <NA>
36338                                                              <NA>
36339                                                              <NA>
36340                                                              <NA>
36357                                                              <NA>
36358                                                              <NA>
36359                                                              <NA>
36360                                                              <NA>
36361                                                              <NA>
36362                                                              <NA>
36363                                                              <NA>
36364                                                              <NA>
36365                                                              <NA>
36366                                                              <NA>
36367                                                              <NA>
36368                                                              <NA>
36369                                                              <NA>
36370                                                              <NA>
36371                                                   based on weight
36372                                                   based on weight
36373                                                              <NA>
36374                                                              <NA>
36376                                                              <NA>
36377                                                              <NA>
36378                                                              <NA>
36379                                                              <NA>
36380                                                              <NA>
36381                                                              <NA>
36382                                                              <NA>
36383                                                              <NA>
36384                                                              <NA>
36385                                                              <NA>
36397                                                              <NA>
36398                                                              <NA>
36399                                                              <NA>
36403                                                              <NA>
36404                                                              <NA>
36405                                                              <NA>
36406                                                              <NA>
36410                                                              <NA>
36427                                                   based on weight
36429                                                              <NA>
36430                                                                 %
36438                                                              <NA>
36439                                                   based on weight
36440                                                   based on weight
36443                                                              <NA>
36444                                                   based on weight
36448                                                   based on weight
36451                                                       unspecified
36460                                               tablet/pill/capsule
36461                                               tablet/pill/capsule
36464                                                              <NA>
36474                                                              <NA>
36491                                                       unspecified
36497                                                              <NA>
36513                                                              <NA>
36520                                                              <NA>
36533                                                      small amount
36535                                                          wipe/pad
36559                                                   based on weight
36560                                                   based on weight
36562                                                   based on weight
36568                                               tablet/pill/capsule
36571                                                        inch strip
36574                                                              <NA>
36579                                                            1 tube
36595                                               tablet/pill/capsule
36597                                                              <NA>
36600                                                              pump
36601                                               tablet/pill/capsule
36602                                               tablet/pill/capsule
36605                                               tablet/pill/capsule
36606                                                              <NA>
36607                                               tablet/pill/capsule
36608                                               tablet/pill/capsule
36616                                               tablet/pill/capsule
36623                                                              <NA>
36624                                                                25
36626                                                              pump
36630                                               tablet/pill/capsule
36631                                                              <NA>
36632                                               tablet/pill/capsule
36633                                                              <NA>
36635                                               tablet/pill/capsule
36637                                                              <NA>
36657                                                              <NA>
36670                                               tablet/pill/capsule
36698                                                   based on weight
36699                                                   based on weight
36705                                                              <NA>
36708                                                       unspecified
36709                                                          wipe/pad
36735                                                              <NA>
36751                                               tablet/pill/capsule
36752                                                       application
36753                                                            powder
36772                                                             spray
36778                                                              <NA>
36816                                                      pack/package
36817                                                   based on weight
36818                                                              <NA>
36819                                                              <NA>
36824                                               tablet/pill/capsule
36833                                                   based on weight
36834                                                   0.25 inch strip
36835                                                          wipe/pad
36840                                                              <NA>
36842                                                              <NA>
36846                                                              <NA>
36847                                                              <NA>
36848                                                              <NA>
36849                                                   based on weight
36850                                                   based on weight
36851                                                              <NA>
36853                                                              <NA>
36855                                                              <NA>
36859                                                              <NA>
36875                                                              <NA>
36876                                                              <NA>
36877                                                              <NA>
36878                                                            1 tube
36880                                                              <NA>
36881                                               tablet/pill/capsule
36882                                                              <NA>
36883                                               tablet/pill/capsule
36884                                                           1 spray
36892                                                              <NA>
36893                                             1 tablet/pill/capsule
36894                                             1 tablet/pill/capsule
36900                                               tablet/pill/capsule
36901                                               tablet/pill/capsule
36911                                                   based on weight
36919                                                              <NA>
36920                                                   based on weight
36921                                                       unspecified
36925                                                              <NA>
36945                                                              <NA>
36969                                                              <NA>
36970                                                              <NA>
36982                                                     1 bottle/vial
36983                                             1 tablet/pill/capsule
36984                                             1 tablet/pill/capsule
36985                                             1 tablet/pill/capsule
36994                                                             spray
37007                                                              <NA>
37015                                               tablet/pill/capsule
37017                                                          wipe/pad
37018                                                   based on weight
37019                                                   based on weight
37020                                                              <NA>
37021                                               tablet/pill/capsule
37036                                                              1 ml
37038                                                              <NA>
37046                                                              <NA>
37054                                               tablet/pill/capsule
37055                                             1 tablet/pill/capsule
37056                                                       unspecified
37057                                                              <NA>
37061                                                            collar
37063                                                                 %
37069                                                              <NA>
37070                                         based on weight (55+ lbs)
37071                                      based on weight (50-100 lbs)
37073                                                      small amount
37074                                                              <NA>
37075                                                      small amount
37076                                                            1 tube
37077                                                   based on weight
37078                                                   based on weight
37080                                                              tube
37087                                                   based on weight
37088                                                   based on weight
37098                                                              tube
37099                                               tablet/pill/capsule
37104                                                              <NA>
37115                                                           7 drops
37116                                                              <NA>
37117                                                   based on weight
37135                                                   moderate amount
37157                                                              <NA>
37164                                                              <NA>
37165                                               tablet/pill/capsule
37168                                                            powder
37169                                                      small amount
37179                                                              <NA>
37193                                                              <NA>
37194                                                            collar
37195                                                              <NA>
37197                                                              <NA>
37200                                                   based on weight
37201                                                   based on weight
37202                                                   based on weight
37219                                               tablet/pill/capsule
37221                                                              <NA>
37259                                                              <NA>
37260                                                              <NA>
37262                                                       application
37266                                               tablet/pill/capsule
37267                                                              <NA>
37270                                                       application
37271                                                       application
37272                                                              <NA>
37273                                                              <NA>
37277                                                    shampoo/mousse
37278                                                              <NA>
37279                                                              <NA>
37302                                                              <NA>
37303                                                              <NA>
37309                                                      small amount
37316                                                   based on weight
37324                                                              <NA>
37325                                                              <NA>
37326                                                              <NA>
37332                                                      small amount
37337                                                   based on weight
37344                                               tablet/pill/capsule
37349                       272 mcg ivermectin, 227 mg pyrantel pamoate
37359                                                              <NA>
37373                                               tablet/pill/capsule
37374                                               tablet/pill/capsule
37375                                                              <NA>
37376                                                              <NA>
37377                                                              <NA>
37385                                               tablet/pill/capsule
37386                                               tablet/pill/capsule
37387                                               tablet/pill/capsule
37392                                                             spray
37396                                                   based on weight
37397                                       based on weight (44-88 lbs)
37434                                                              <NA>
37435                                                              <NA>
37439                                                   based on weight
37446                                                              dose
37448                                                              pump
37449                                                   moderate amount
37451                                                      small amount
37453                                                            1 pump
37454                                                   moderate amount
37457                                                       as directed
37463                                                       application
37464                                                             spray
37465                                                             spray
37467                                                   moderate amount
37468                                      based on weight (50-100 lbs)
37469                                       based on weight (44-88 lbs)
37477                                                              <NA>
37478                                                              <NA>
37485                                                   based on weight
37491                                                            1 pump
37493                                               tablet/pill/capsule
37495                                                             spray
37496                                                              <NA>
37510                                                              <NA>
37526                                                              <NA>
37527                                                        inch strip
37533                                                      small amount
37536                                             1:10 part water ratio
37540                                                   based on weight
37545                                               tablet/pill/capsule
37546                                               tablet/pill/capsule
37547                                               tablet/pill/capsule
37552                                               tablet/pill/capsule
37568                                                              <NA>
37569                                                           monthly
37571                                                              <NA>
37576                                                      small amount
37577                                                              <NA>
37578                                                              <NA>
37579                                                              <NA>
37580                                                              <NA>
37584                                                              <NA>
37585                                                              <NA>
37586                                                              <NA>
37597                                                              <NA>
37598                                                              <NA>
37601                                                   based on weight
37602                                                   based on weight
37603                                               tablet/pill/capsule
37608                                                       unspecified
37621                                               tablet/pill/capsule
37622                                               tablet/pill/capsule
37624                                                   based on weight
37627                                                   based on weight
37628                                                   based on weight
37629                                                       unspecified
37630                                               tablet/pill/capsule
37639                                                              <NA>
37648                                                   based on weight
37649                                                              <NA>
37651                                                            collar
37655                                                            collar
37657                                                            collar
37662                                                            collar
37664                                                            collar
37669                                                          wipe/pad
37670                                                       application
37675                                                       application
37691                                                          ointment
37696                                                              <NA>
37697                                                              <NA>
37698                                                              <NA>
37699                                                              <NA>
37704                                             1 tablet/pill/capsule
37705                                                            1 tube
37709                                                              <NA>
37710                                                              <NA>
37712                                                              <NA>
37713                                                              <NA>
37714                                                              <NA>
37717                                                              <NA>
37718                                                              <NA>
37731                                                   based on weight
37738                                                   based on weight
37739                                             1 tablet/pill/capsule
37740                                                            1 tube
37742                                             1 tablet/pill/capsule
37771                                                              <NA>
37785                                                   based on weight
37786                                                   based on weight
37797                                                   based on weight
37798                                                              <NA>
37805                                                              <NA>
37806                                                              <NA>
37809                                                          inhalant
37816                                                              <NA>
37817                                                              <NA>
37820                                                              <NA>
37821                                                              <NA>
37822                                             1 tablet/pill/capsule
37834                                                   based on weight
37835                                                   based on weight
37837                                                              <NA>
37838                                               tablet/pill/capsule
37839                                               tablet/pill/capsule
37845                                                   based on weight
37846                                                   based on weight
37847                                               tablet/pill/capsule
37848                                               tablet/pill/capsule
37849                                               tablet/pill/capsule
37850                                               tablet/pill/capsule
37851                                               tablet/pill/capsule
37852                                               tablet/pill/capsule
37855                                                   based on weight
37858                                                   based on weight
37865                                                   based on weight
37885                                               tablet/pill/capsule
37894                                               tablet/pill/capsule
37895                                               tablet/pill/capsule
37907                                                              <NA>
37916                                                   based on weight
37920                                                     1 bottle/vial
37929                                                              <NA>
37930                                                              <NA>
37933                                               tablet/pill/capsule
37934                                               tablet/pill/capsule
37935                                                              <NA>
37936                                               tablet/pill/capsule
37937                                                              <NA>
37941                                                              <NA>
37942                                                              <NA>
37944                                                              <NA>
37976                                               tablet/pill/capsule
37977                                                             drops
37978                                               tablet/pill/capsule
37979                                                             spray
37980                                                      small amount
37984                                               tablet/pill/capsule
37989                                             1 tablet/pill/capsule
37990                                                      small amount
37992                                               tablet/pill/capsule
37993                                               tablet/pill/capsule
38018                                                              <NA>
38036                                               tablet/pill/capsule
38041                                               tablet/pill/capsule
38046                                                   based on weight
38048                                                              <NA>
38050                                                   based on weight
38051                                                   based on weight
38052                                                              <NA>
38056                                                              <NA>
38070                                               tablet/pill/capsule
38071                                                              <NA>
38072                                                                 %
38074                                                              <NA>
38075                                                              <NA>
38102                                                              <NA>
38123                                               tablet/pill/capsule
38126                                               tablet/pill/capsule
38132                                                              <NA>
38134                                               tablet/pill/capsule
38135                                               tablet/pill/capsule
38136                                                       application
38141                                               tablet/pill/capsule
38142                                               tablet/pill/capsule
38151                                                              dose
38152                                                              <NA>
38156                                                              <NA>
38165                                                              <NA>
38166                                                              <NA>
38177                                                              pump
38179                                                              <NA>
38181                                                              <NA>
38182                                                              <NA>
38184                                                              <NA>
38185                                                              <NA>
38193                                                              tube
38204                                                              <NA>
38211                                                              <NA>
38216                                               tablet/pill/capsule
38217                                             1 tablet/pill/capsule
38219                                                              <NA>
38220                                                            1 pump
38240                                                              dose
38256                                                              <NA>
38257                                                              <NA>
38259                                                              <NA>
38262                                                   based on weight
38268                                                              <NA>
38273                                                              <NA>
38284                                                       combination
38287                                                              pump
38288                                               tablet/pill/capsule
38289                                               tablet/pill/capsule
38293                                                              <NA>
38294                                                             drops
38301                                                              tube
38305                                                              <NA>
38306                                               tablet/pill/capsule
38324                                                              <NA>
38326                                                             spray
38330                                               tablet/pill/capsule
38339                                             1 tablet/pill/capsule
38341                                                      small amount
38342                                             1 tablet/pill/capsule
38350                                                              <NA>
38351                                               tablet/pill/capsule
38352                                               tablet/pill/capsule
38353                                               tablet/pill/capsule
38361                                                   0.25 inch strip
38365                                                   based on weight
38366                                                   based on weight
38367                                                   based on weight
38369                                                              <NA>
38370                                                              <NA>
38371                                                              <NA>
38372                                                             drops
38373                                                   based on weight
38377                                                              <NA>
38378                                                              <NA>
38386                                                              <NA>
38387                                                              <NA>
38388                                                   based on weight
38396                                               tablet/pill/capsule
38397                                               tablet/pill/capsule
38399                                               tablet/pill/capsule
38406                                                      pack/package
38420                                               tablet/pill/capsule
38422                                                   based on weight
38423                                                   based on weight
38427                                                              <NA>
38431                                                      small amount
38436                                                              pump
38438                                               tablet/pill/capsule
38439                                               tablet/pill/capsule
38442                                                              <NA>
38461                                                              <NA>
38462                                                              <NA>
38464                                                              <NA>
38465                                                              <NA>
38466                                                              <NA>
38470                                                              <NA>
38471                                                              <NA>
38472                                                              <NA>
38473                                                              <NA>
38499                                                              <NA>
38504                                                              <NA>
38505                                                              <NA>
38507                                                              <NA>
38508                                                              <NA>
38509                                                              <NA>
38510                                                              <NA>
38511                                                              <NA>
38512                                                              <NA>
38522                                                              <NA>
38527                                                   based on weight
38528                                                   based on weight
38529                                                         as needed
38531                                                      small amount
38532                                             1 tablet/pill/capsule
38533                                                              <NA>
38534                                          2 tablets/pills/capsules
38535                                                              <NA>
38536                                             1 tablet/pill/capsule
38544                                                      small amount
38550                                                              <NA>
38551                                                              <NA>
38557                                                              <NA>
38567                                               tablet/pill/capsule
38568                                                   based on weight
38569                                                   based on weight
38570                                                              <NA>
38588                                                   moderate amount
38602                                               tablet/pill/capsule
38605                                                              <NA>
38606                                                              <NA>
38607                                                              <NA>
38610                                               tablet/pill/capsule
38611                                                              pump
38618                                                              <NA>
38626                                             1 tablet/pill/capsule
38630                                               tablet/pill/capsule
38636                                                   based on weight
38637                                                   based on weight
38638                                                              <NA>
38643                                                   based on weight
38647                                                              <NA>
38655                                                      pack/package
38656                                                     1 application
38665                                                              <NA>
38691                                                   based on weight
38716                                                              <NA>
38722                                                              <NA>
38723                                                          wipe/pad
38754                                                              <NA>
38772                                                      small amount
38773                                                              <NA>
38775                                                              <NA>
38776                                                              <NA>
38779                                                              <NA>
38780                                                              <NA>
38787                                               tablet/pill/capsule
38789                                                              <NA>
38796                                               tablet/pill/capsule
38802                                                              <NA>
38809                                                              <NA>
38810                                                              <NA>
38816                                                      pack/package
38820                                                              <NA>
38821                                                              <NA>
38828                                                             spray
38839                                                              <NA>
38841                                                              <NA>
38843                                                              <NA>
38845                                                              <NA>
38847                                                       application
38850                                                          ointment
38851                                                              <NA>
38854                                                              <NA>
38855                                                       application
38861                                                              <NA>
38864                                                              <NA>
38865                                                              <NA>
38868                                                              <NA>
38871                                                              <NA>
38890                                               tablet/pill/capsule
38891                                               tablet/pill/capsule
38892                                                   based on weight
38896                                                   based on weight
38902                                                      small amount
38924                                                              <NA>
38925                                       based on weight (21-55 lbs)
38926                                      based on weight (50-100 lbs)
38930                                                   based on weight
38931                                                   based on weight
38940                                                   based on weight
38941                                                   based on weight
38945                                                   based on weight
38946                                                   based on weight
38950                                             1 tablet/pill/capsule
38951                                             1 tablet/pill/capsule
38952                                             1 tablet/pill/capsule
38956                                                              <NA>
38963                                                   based on weight
38964                                                   based on weight
38970                                                              <NA>
38971                                                              <NA>
38974                                                              <NA>
38976                                                              <NA>
38978                                                              <NA>
38997                                                              <NA>
39004                                               tablet/pill/capsule
39005                                               tablet/pill/capsule
39006                                                              <NA>
39035                                                              <NA>
39073                                               tablet/pill/capsule
39083                                                              <NA>
39099                                             1 tablet/pill/capsule
39117                                                              <NA>
39120                                                       combination
39121                                                   based on weight
39122                                                     1 application
39123                                               tablet/pill/capsule
39125                                                              <NA>
39127                                                              <NA>
39128                                                              <NA>
39158                                                              <NA>
39165                                                              <NA>
39167                                               tablet/pill/capsule
39171                                                      small amount
39176                                      based on weight (50-100 lbs)
39181                                                    shampoo/mousse
39182                                                             spray
39188                                                              <NA>
39198                                                             spray
39201                                                              <NA>
39202                                                            liquid
39207                                                              <NA>
39209                                                              <NA>
39210                                                              <NA>
39211                                                      pack/package
39212                                                              <NA>
39218                                                              <NA>
39258                                               tablet/pill/capsule
39259                                               tablet/pill/capsule
39260                                               tablet/pill/capsule
39261                                                              <NA>
39262                                                              <NA>
39273                                                              <NA>
39316                                                       unspecified
39325                                                              <NA>
39326                                                              <NA>
39329                                                              <NA>
39330                                                              <NA>
39331                                                              <NA>
39332                                                              <NA>
39338                                                   based on weight
39339                                                            collar
39340                                                   based on weight
39388                                                   based on weight
39392                                                              <NA>
39415                                                             spray
39423                                                              <NA>
39425                                                          ointment
39433                                                              <NA>
39434                                                              <NA>
39435                                                   syringe/pipette
39438                                                   based on weight
39440                                                              <NA>
39443                                                              <NA>
39444                                                              <NA>
39445                                                              <NA>
39446                                                              <NA>
39447                                                              <NA>
39450                                                              <NA>
39451                                                              <NA>
39453                                                       application
39486                                                            1 tube
39495                                                              <NA>
39496                                                              <NA>
39511                                                              <NA>
39513                                                              <NA>
39516                                                       unspecified
39519                                                              <NA>
39525                                                       bottle/vial
39526                                                       unspecified
39528                                                              <NA>
39531                                                       combination
39534                                                              <NA>
39536                                                      pack/package
39539                                                              <NA>
39541                                                             spray
39542                                                       application
39543                                                        inch strip
39546                                                       bottle/vial
39548                                                              <NA>
39566                                                              <NA>
39567                                                              <NA>
39573                                                              <NA>
39579                                                              <NA>
39581                                                   based on weight
39582                                                   based on weight
39586                                             1 tablet/pill/capsule
39591                                                              <NA>
39599                                                              <NA>
39607                                                              <NA>
39609                                             1 tablet/pill/capsule
39617                                                              <NA>
39618                                                              <NA>
39635                                               tablet/pill/capsule
39637                                                              <NA>
39639                                                      small amount
39651                                                             spray
39705                                                              <NA>
39706                                                              <NA>
39707                                                              <NA>
39714                                             1 tablet/pill/capsule
39715                                             1 tablet/pill/capsule
39737                                                              <NA>
39744                                                       unspecified
39745                                                       unspecified
39750                                                              <NA>
39754                                                   based on weight
39755                                                              tube
39756                                                              <NA>
39759                                                              <NA>
39760                                                              <NA>
39763                                                              <NA>
39764                                      based on weight (50-100 lbs)
39776                                                              <NA>
39777                                                              <NA>
39778                                                              <NA>
39786                                               tablet/pill/capsule
39787                                                       application
39788                                                   based on weight
39795                                                              <NA>
39796                                                              <NA>
39833                                                              <NA>
39849                                                              <NA>
39856                                                              <NA>
39860                                                              <NA>
39871                                                              <NA>
39875                                                              <NA>
39877                                                              <NA>
39881                                          based on weight (60 lbs)
39909                                       based on weight (40-60 lbs)
39916                                                              <NA>
39917                                                              <NA>
39918                                                              <NA>
39919                                                        inch strip
39948                                      based on weight (50-100 lbs)
39949                                       based on weight (24-60 lbs)
39958                                                   based on weight
39973                                             1 tablet/pill/capsule
39974                                                      small amount
39975                                                      small amount
39980                                                            powder
39981                                                          wipe/pad
39982                                                   0.25 inch strip
39987                                                              <NA>
39988                                                              <NA>
40013                                                   based on weight
40021                                                              <NA>
40023                                      based on weight (60-120 lbs)
40024                                                              <NA>
40038                                                              <NA>
40043                                                              <NA>
40052                                                           monthly
40092                                       based on weight (44-88 lbs)
40093                                      based on weight (50-100 lbs)
40102                                                              <NA>
40108                                                              <NA>
40109                                                              <NA>
40115                                                   based on weight
40117                                               tablet/pill/capsule
40121                                                              <NA>
40123                                                       unspecified
40124                                               tablet/pill/capsule
40125                                                       unspecified
40133                                                              <NA>
40134                                                              <NA>
40138                                               tablet/pill/capsule
40141                                                              <NA>
40142                                                              <NA>
40143                                                             spray
40144                                               tablet/pill/capsule
40149                                      based on weight (50-100 lbs)
40154                                                   based on weight
40164                                                      small amount
40165                                                   based on weight
40180                                                   based on weight
40186                                                   based on weight
40194                                                       combination
40196                                                       as directed
40206                                                   based on weight
40209                                                      small amount
40214                                                       application
40216                                               tablet/pill/capsule
40217                                               tablet/pill/capsule
40218                                               tablet/pill/capsule
40221                                                   based on weight
40222                                                   based on weight
40223                                                   based on weight
40224                                                   based on weight
40244                                                       application
40290                                                              <NA>
40296                                                              <NA>
40297                                                              <NA>
40298                                                              <NA>
40299                                                      small amount
40302                                                              <NA>
40312                                          based on weight (70 lbs)
40317                                                      small amount
40331                                                              <NA>
40343                                                              <NA>
40390                                               tablet/pill/capsule
40391                                                   based on weight
40392                                                              <NA>
40394                                                              <NA>
40403                                                      small amount
40406                                                              <NA>
40407                                                              <NA>
40417                                               tablet/pill/capsule
40418                                               tablet/pill/capsule
40422                                                   based on weight
40425                                       based on weight (44-88 lbs)
40446                                                              <NA>
40447                                                              <NA>
40451                                                              <NA>
40454                                                              <NA>
40464                                                              <NA>
40468                                                              <NA>
40472                                               tablet/pill/capsule
40474                                                   based on weight
40483                                               tablet/pill/capsule
40484                                               tablet/pill/capsule
40486                                                              <NA>
40487                                                              <NA>
40488                                                            1 tube
40489                                                              <NA>
40494                                                              <NA>
40503                                               tablet/pill/capsule
40504                                               tablet/pill/capsule
40508                                                              <NA>
40511                                                              <NA>
40519                                               tablet/pill/capsule
40521                                                              <NA>
40535                                                              <NA>
40541                                                              <NA>
40542                                                              <NA>
40568                                                   based on weight
40571                                                              <NA>
40572                                                              <NA>
40573                                                   based on weight
40574                                                   based on weight
40579                                             1 tablet/pill/capsule
40580                                                              <NA>
40581                                                              <NA>
40582                                                        inch strip
40583                                                              <NA>
40595                                                          2 sprays
40600                                                   based on weight
40601                                                   based on weight
40603                                                       bottle/vial
40604                                                            powder
40606                                                      small amount
40607                                                   moderate amount
40611                                                   based on weight
40615                                                              <NA>
40616                                                   based on weight
40617                                                   based on weight
40618                                                              <NA>
40619                                                              <NA>
40620                                                              <NA>
40634                                                        inch strip
40636                                                              <NA>
40637                                                              <NA>
40644                                                              <NA>
40653                                                       bottle/vial
40654                                               tablet/pill/capsule
40655                                               tablet/pill/capsule
40656                                                              <NA>
40684                                                   based on weight
40686                                                   based on weight
40687                                                   based on weight
40688                                                          wipe/pad
40689                                                          ointment
40690                                                   based on weight
40691                                                   based on weight
40693                                                     tapering dose
40695                                      based on weight (50-100 lbs)
40696                                      based on weight (60-100 lbs)
40699                                                              <NA>
40700                                               tablet/pill/capsule
40701                                               tablet/pill/capsule
40718                                                              <NA>
40719                                             1 tablet/pill/capsule
40721                                               tablet/pill/capsule
40722                                                          ointment
40723                                                              <NA>
40724                                                              <NA>
40725                                               tablet/pill/capsule
40726                                                              <NA>
40727                                                              <NA>
40744                                                   based on weight
40745                                                             spray
40747                                                              <NA>
40748                                                          wipe/pad
40749                                               tablet/pill/capsule
40750                                                              <NA>
40751                                                   based on weight
40754                                                   based on weight
40755                                                   based on weight
40756                                                        inch strip
40758                                                              <NA>
40760                                                   based on weight
40775                                               tablet/pill/capsule
40776                                               tablet/pill/capsule
40781                                               tablet/pill/capsule
40783                                                              <NA>
40794                                                              <NA>
40796                                               tablet/pill/capsule
40799                                               tablet/pill/capsule
40800                                               tablet/pill/capsule
40801                                               tablet/pill/capsule
40810                                                      small amount
40823                                                   based on weight
40824                                                             drops
40825                                                              dose
40827                                                   based on weight
40828                                                   based on weight
40829                                                   based on weight
40833                       272 mcg ivermectin, 227 mg pyrantel pamoate
40834                                                    240 mg, 360 mg
40838                                                             spray
40839                                                       bottle/vial
40840                                                       bottle/vial
40843                                                             spray
40846                                                              <NA>
40848                                                   0.25 inch strip
40866                                                          wipe/pad
40868                                               tablet/pill/capsule
40870                                                   based on weight
40873                                               tablet/pill/capsule
40875                                               tablet/pill/capsule
40879                                               tablet/pill/capsule
40895                                                              <NA>
40897                                                              <NA>
40899                                                              <NA>
40900                                                              <NA>
40902                                                              <NA>
40905                                                              <NA>
40919                                                              <NA>
40943                                                              <NA>
40958                                                       unspecified
40959                                                       unspecified
40960                                                       unspecified
40961                                                       unspecified
40962                                                        inch strip
40965                                               tablet/pill/capsule
40966                                               tablet/pill/capsule
40967                                               tablet/pill/capsule
40968                                               tablet/pill/capsule
40969                                                    shampoo/mousse
40970                                                          ointment
40971                                               tablet/pill/capsule
40972                                               tablet/pill/capsule
40974                                                   based on weight
40984                                                              <NA>
40987                                                              <NA>
40990                                                              <NA>
40992                                                              <NA>
40993                                                              <NA>
40994                                                              <NA>
40997                                               tablet/pill/capsule
40998                                                              <NA>
41003                                                              <NA>
41004                                                              <NA>
41005                                                              <NA>
41006                                                              <NA>
41007                                                              <NA>
41009                                                              <NA>
41010                                                              <NA>
41011                                                              <NA>
41014                                                              <NA>
41015                                                              <NA>
41016                                                              <NA>
41018                                               tablet/pill/capsule
41020                                                              <NA>
41021                                      based on weight (50-100 lbs)
41022                                                              <NA>
41023                                       based on weight (56-95 lbs)
41024                                               tablet/pill/capsule
41025                                                              <NA>
41057                                                              <NA>
41068                                                       bottle/vial
41069                                               tablet/pill/capsule
41084                                                              <NA>
41087                                                              <NA>
41088                                                              <NA>
41089                                                              <NA>
41090                                                              <NA>
41091                                                              <NA>
41094                                                              <NA>
41095                                                              <NA>
41096                                                              <NA>
41097                                                              <NA>
41098                                                              <NA>
41099                                                              <NA>
41101                                                              <NA>
41102                                                              <NA>
41103                                                              <NA>
41104                                                              <NA>
41121                          27 mg milbemycin oxime, 1620 mg spinosad
41125                                                   based on weight
41129                                                              <NA>
41130                                                              <NA>
41131                                                   based on weight
41132                                                   based on weight
41133                                      based on weight (50-100 lbs)
41134                                      based on weight (60-120 lbs)
41137                                                             spray
41139                                                              <NA>
41147                                                              <NA>
41151                                                              <NA>
41152                                                              <NA>
41170                                                        inch strip
41198                                                              <NA>
41199                                                              <NA>
41200                                                              <NA>
41201                                                              <NA>
41203                                               tablet/pill/capsule
41204                                                              tube
41206                                                              tube
41207                                               tablet/pill/capsule
41208                                               tablet/pill/capsule
41209                                               tablet/pill/capsule
41210                                               tablet/pill/capsule
41216                                                              <NA>
41217                                               tablet/pill/capsule
41219                                      based on weight (50-100 lbs)
41220                                                              <NA>
41221                                                   based on weight
41222                                                              <NA>
41223                                                              <NA>
41224                                                              <NA>
41240                                                            1 tube
41241                                             1 tablet/pill/capsule
41242                                                   based on weight
41246                                                          ointment
41250                                                            1 tube
41254                                                           monthly
41260                                                              <NA>
41267                                                   based on weight
41278                                                             spray
41279                                       based on weight (1-121 lbs)
41281                                       based on weight (44-88 lbs)
41283                                                              <NA>
41313                                                              <NA>
41314                                                              <NA>
41315                                                              <NA>
41316                                                              <NA>
41318                                                              <NA>
41319                                                              <NA>
41320                                                   based on weight
41325                                                              <NA>
41332                                                              <NA>
41335                                                      small amount
41336                                                              pump
41340                                                      small amount
41343                                                              <NA>
41360                                                              <NA>
41371                                                              <NA>
41373                                               tablet/pill/capsule
41374                                               tablet/pill/capsule
41376                                                              <NA>
41377                                                   based on weight
41378                                                   based on weight
41381                                                              <NA>
41384                                               tablet/pill/capsule
41385                                               tablet/pill/capsule
41386                                               tablet/pill/capsule
41387                                               tablet/pill/capsule
41388                                                              <NA>
41396                                                              <NA>
41398                                                              <NA>
41399                                                              <NA>
41400                                                              <NA>
41407                                                              <NA>
41413                                                              <NA>
41417                                                              <NA>
41418                                                              <NA>
41420                                                              <NA>
41421                                                   based on weight
41422                                      based on weight (50-100 lbs)
41424                                                       unspecified
41425                                                      small amount
41430                                                              <NA>
41431                                                              <NA>
41432                                                   based on weight
41433                                                              <NA>
41435                                                              <NA>
41442                                                          wipe/pad
41443                                                              <NA>
41444                                                              <NA>
41446                                                            1 pump
41447                                                              <NA>
41451                                                              <NA>
41464                                                      small amount
41466                                                      small amount
41470                                                              <NA>
41497                                                       unspecified
41500                                                              <NA>
41502                                                              tube
41505                                                          inhalant
41525                                                      small amount
41531                                                      small amount
41533                                                              <NA>
41557                                                        inch strip
41572                                               tablet/pill/capsule
41573                                               tablet/pill/capsule
41581                                               tablet/pill/capsule
41612                                                              <NA>
41615                                             1 tablet/pill/capsule
41617                                                              <NA>
41621                                                              <NA>
41629                                                          per hour
41632                                                              <NA>
41633                                                              <NA>
41636                                      based on weight (50-100 lbs)
41637                                      based on weight (60-120 lbs)
41638                                               tablet/pill/capsule
41639                                               tablet/pill/capsule
41640                                             1 tablet/pill/capsule
41641                                                              <NA>
41653                                                              <NA>
41655                                                              <NA>
41674                                                              <NA>
41724                                                              <NA>
41725                                                            1 tube
41726                                             1 tablet/pill/capsule
41727                                             1 tablet/pill/capsule
41728                                             1 tablet/pill/capsule
41729                                                                 1
41731                                                              <NA>
41737                                                            1 tube
41738                                             1 tablet/pill/capsule
41739                                             1 tablet/pill/capsule
41740                                             1 tablet/pill/capsule
41743                                                              <NA>
41746                                             1 tablet/pill/capsule
41747                                                       unspecified
41748                                                       unspecified
41749                                                       unspecified
41750                                                       unspecified
41751                                                       unspecified
41752                                                       unspecified
41753                                                       unspecified
41754                                                       unspecified
41756                                                              <NA>
41759                                               tablet/pill/capsule
41774                                                              <NA>
41778                                       based on weight (44-88 lbs)
41779                                      based on weight (50-100 lbs)
41781                                                              <NA>
41803                                               tablet/pill/capsule
41811                                                              <NA>
41816                                                              <NA>
41819                                                              <NA>
41830                                                              <NA>
41835                                                   based on weight
41837                                      based on weight (50-100 lbs)
41838                                      based on weight (89-132 lbs)
41840                                      based on weight (50-100 lbs)
41842                                                              <NA>
41846                                                              <NA>
41849                                                   based on weight
41850                                                   based on weight
41851                                                              <NA>
41853                                                              <NA>
41854                                                   based on weight
41862                                                              <NA>
41863                                                              <NA>
41870                                                              <NA>
41872                                                              <NA>
41888                                                        inch strip
41891                                                              <NA>
41893                                                              <NA>
41894                                                              <NA>
41895                                                              <NA>
41896                                                              <NA>
41897                                                              <NA>
41898                                                              <NA>
41899                                                              <NA>
41900                                                              <NA>
41901                                                              <NA>
41902                                                              <NA>
41903                                                              <NA>
41904                                                              <NA>
41905                                                              <NA>
41906                                                              <NA>
41907                                                              <NA>
41921                                                              <NA>
41929                                               tablet/pill/capsule
41930                                               tablet/pill/capsule
41937                                               tablet/pill/capsule
41938                                                              tube
41939                                                             spray
41946                                                              <NA>
41947                                                              <NA>
41950                                                              <NA>
41973                                                      small amount
41975                                                              <NA>
41976                                                      small amount
41988                                                   based on weight
42004                                                              <NA>
42005                                                              <NA>
42011                                                   based on weight
42012                                                   based on weight
42030                                                             drops
42032                                                   based on weight
42036                                                              <NA>
42037                                                   based on weight
42039                                             1 tablet/pill/capsule
42040                                                            1 tube
42043                                                   based on weight
42044                                                   based on weight
42053                                                   based on weight
42055                                                              <NA>
42057                                                              <NA>
42061                                                                 %
42063                                                   based on weight
42066                                                   based on weight
42100                                                      small amount
42101                                                             spray
42112                                                       combination
42116                                                              <NA>
42119                                                              <NA>
42122                                                              <NA>
42147                                               tablet/pill/capsule
42148                                               tablet/pill/capsule
42149                                               tablet/pill/capsule
42150                                               tablet/pill/capsule
42151                                               tablet/pill/capsule
42152                                               tablet/pill/capsule
42154                                       based on weight (44-88 lbs)
42171                                                              <NA>
42174                                                   based on weight
42198                                                            collar
42201                                                            collar
42215                                                              <NA>
42218                                                              <NA>
42219                                                              <NA>
42221                                                       application
42227                                                       application
42229                                                       application
42240                                                              <NA>
42241                                                              <NA>
42242                                                              <NA>
42243                                                              <NA>
42256                                                      small amount
42257                                                      small amount
42259                                                      small amount
42267                                                              <NA>
42272                                                              <NA>
42273                                                              <NA>
42278                                               tablet/pill/capsule
42284                                                              <NA>
42286                                                                kg
42287                                                   based on weight
42289                                                   based on weight
42291                                                       unspecified
42313                                                       application
42314                                               tablet/pill/capsule
42345                                                   based on weight
42346                                                   based on weight
42348                                               tablet/pill/capsule
42349                                               tablet/pill/capsule
42353                                               tablet/pill/capsule
42354                                               tablet/pill/capsule
42355                                                              <NA>
42356                                               tablet/pill/capsule
42357                                      based on weight (50-100 lbs)
42358                                      based on weight (60-120 lbs)
42361                                                      pack/package
42365                                                            1 pump
42366                                               tablet/pill/capsule
42367                                                      small amount
42368                                                              <NA>
42378                                                   based on weight
42379                                                   based on weight
42384                                                   based on weight
42386                                                   based on weight
42387                                                   based on weight
42399                                                            collar
42402                                               tablet/pill/capsule
42403                                                              tube
42404                                               tablet/pill/capsule
42412                                               tablet/pill/capsule
42413                                               tablet/pill/capsule
42417                                                          ointment
42425                                                             spray
42426                                                             spray
42433                                               tablet/pill/capsule
42451                                                   based on weight
42455                                                              <NA>
42463                                                       as directed
42464                                                      small amount
42465                                               tablet/pill/capsule
42466                                                              <NA>
42468                                                              <NA>
42474                                                       unspecified
42475                                                              <NA>
42476                                                       unspecified
42477                                                       unspecified
42478                                                              <NA>
42479                                                              <NA>
42480                                                              <NA>
42481                                                              <NA>
42482                                                            1 tube
42483                                               tablet/pill/capsule
42486                                               tablet/pill/capsule
42488                                                       unspecified
42489                                                              <NA>
42502                                                              <NA>
42506                                                    1 pack/package
42512                                               tablet/pill/capsule
42513                                                              <NA>
42522                                               tablet/pill/capsule
42537                                                       application
42551                                               tablet/pill/capsule
42552                                               tablet/pill/capsule
42553                                                   based on weight
42566                                                   moderate amount
42570                                                   based on weight
42572                                                              <NA>
42573                                                   based on weight
42574                                                   based on weight
42578                                                              <NA>
42579                                                              <NA>
42593                                                              <NA>
42594                                                              <NA>
42624                                                   based on weight
42626                                                              <NA>
42627                                               tablet/pill/capsule
42628                                               tablet/pill/capsule
42632                                               tablet/pill/capsule
42633                                               tablet/pill/capsule
42634                                                            collar
42637                                                           monthly
42638                                                              <NA>
42640                                                               10%
42646                                                              <NA>
42647                                                              <NA>
42648                                                              <NA>
42651                                       based on weight (26-50 lbs)
42652                                       based on weight (22-44 lbs)
42655                                               tablet/pill/capsule
42656                                               tablet/pill/capsule
42666                                                   based on weight
42668                                                              <NA>
42675                                                              <NA>
42678                                                              <NA>
42679                                                              <NA>
42694                                                   based on weight
42695                                                   based on weight
42696                                                   based on weight
42697                                                   based on weight
42700                                                              <NA>
42704                                                   based on weight
42712                                               tablet/pill/capsule
42716                                                      small amount
42721                                                              <NA>
42725                                                       bottle/vial
42726                                                              dose
42727                                                              <NA>
42728                                               tablet/pill/capsule
42729                                               tablet/pill/capsule
42740                                                   based on weight
42752                                                              <NA>
42753                                                              <NA>
42758                                                              <NA>
42760                                               tablet/pill/capsule
42761                                                       application
42764                                                              <NA>
42766                                               tablet/pill/capsule
42768                                                              <NA>
42785                                                              <NA>
42786                                                              <NA>
42787                                                              <NA>
42791                                                              <NA>
42792                                                              <NA>
42799                                                              <NA>
42821                                               tablet/pill/capsule
42829                                                              <NA>
42833                                                              <NA>
42860                                                            cup(s)
42876                                                              <NA>
42879                                                              <NA>
42887                                                              <NA>
42890                                               tablet/pill/capsule
42891                                               tablet/pill/capsule
42892                                                              <NA>
42893                                                              <NA>
42894                                                              <NA>
42913                                         based on weight (60+ lbs)
42915                                                       application
42920                                                              <NA>
42923                                                   based on weight
42926                                                   based on weight
42930                                                   based on weight
42931                                                   based on weight
42932                                                   based on weight
42935                                                   based on weight
42936                                                   based on weight
42939                                                   based on weight
42940                                                   based on weight
42946                                                              <NA>
42952                                                              <NA>
42956                                                   based on weight
42959                                               tablet/pill/capsule
42960                                                              <NA>
42967                                                   based on weight
42994                                                   based on weight
43013                                                              <NA>
43045                                                   based on weight
43064                                             1 tablet/pill/capsule
43065                                                              dose
43069                                                       application
43072                                                       unspecified
43081                                                              tube
43086                                                              pump
43105                                                          wipe/pad
43116                                               tablet/pill/capsule
43119                                                   based on weight
43123                                                              <NA>
43134                                                              <NA>
43135                                                              <NA>
43136                                                              <NA>
43137                                                              <NA>
43138                                                              <NA>
43151                                                              <NA>
43153                                                              <NA>
43169                                                      small amount
43173                                                      small amount
43183                                                              <NA>
43184                                                              <NA>
43191                                                         as needed
43200                                                              <NA>
43202                                                              <NA>
43204                                                   based on weight
43224                                                              <NA>
43228                                                            collar
43236                                                              <NA>
43238                                      based on weight (50-100 lbs)
43239                                                            collar
43241                                      based on weight (50-100 lbs)
43242                                         based on weight (18+ lbs)
43243                                               tablet/pill/capsule
43244                                                            collar
43246                                                   based on weight
43247                                                              <NA>
43258                                                              <NA>
43259                                                              <NA>
43270                                                              <NA>
43286                                                              <NA>
43291                                                              <NA>
43292                                                              <NA>
43293                                       based on weight (55-88 lbs)
43310                                               tablet/pill/capsule
43334                                                              <NA>
43366                                                              <NA>
43388                                                   based on weight
43396                                                              <NA>
43397                                                              <NA>
43405                                                      small amount
43412                                                      small amount
43416                                                             spray
43423                                                              <NA>
43424                                                              <NA>
43430                                                            powder
43465                                               tablet/pill/capsule
43467                                                       unspecified
43469                                                       unspecified
43470                                                       unspecified
43471                                                       unspecified
43482                                               tablet/pill/capsule
43491                                                   based on weight
43493                                                              <NA>
43494                                                              <NA>
43496                                                              <NA>
43497                                                              <NA>
43510                                                   based on weight
43511                                                   based on weight
43512                                                   based on weight
43522                                                   based on weight
43527                       272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                               tablet/pill/capsule
43532                                               tablet/pill/capsule
43535                                               tablet/pill/capsule
43538                                               tablet/pill/capsule
43539                                               tablet/pill/capsule
43540                                                              <NA>
43545                                                   based on weight
43546                                       based on weight (44-88 lbs)
43547                                                   based on weight
43548                                               tablet/pill/capsule
43549                                                       bottle/vial
43550                                                      small amount
43563                                               tablet/pill/capsule
43570                                                              <NA>
43601                                                              <NA>
43610                                                  0.125 inch strip
43620                                                              <NA>
43621                                                                 %
43636                                       based on weight (40-85 lbs)
43637                                             1 tablet/pill/capsule
43639                                                              <NA>
43640                                                              <NA>
43642                                                              <NA>
43643                                                          wipe/pad
43644                                                              <NA>
43645                                                              <NA>
43646                                                              <NA>
43650                                                              <NA>
43652                                                              tube
43653                                               tablet/pill/capsule
43669                                                          wipe/pad
43678                                                       application
43683                                               tablet/pill/capsule
43684                                                   0.25 inch strip
43685                                                      small amount
43686                                                      small amount
43697                                      based on weight (50-100 lbs)
43698                                       based on weight (24-60 lbs)
43701                                      based on weight (50-100 lbs)
43702                                       based on weight (44-88 lbs)
43706                                             1 tablet/pill/capsule
43707                                             1 tablet/pill/capsule
43709                                                            1 tube
43712                                                      small amount
43714                                                   moderate amount
43715                                                      small amount
43738                                                              <NA>
43743                                               tablet/pill/capsule
43744                                                            liquid
43745                                                    1 pack/package
43746                                                   based on weight
43747                                                   based on weight
43751                                                      pack/package
43765                                                              pump
43783                                                   based on weight
43784                                                   based on weight
43785                                                   based on weight
43790                                                              <NA>
43806                                                             spray
43807                                                    shampoo/mousse
43829                                                              <NA>
43838                                                              <NA>
43843                                                              <NA>
43844                                                              <NA>
43851                                                              <NA>
43853                                                              <NA>
43854                                                              <NA>
43878                                               tablet/pill/capsule
43884                                                              <NA>
43887                                                              <NA>
43893                                               tablet/pill/capsule
43894                                                            collar
43896                                               tablet/pill/capsule
43897                                                              <NA>
43919                                               tablet/pill/capsule
43920                                                              tube
43938                                                   based on weight
43939                                                   based on weight
43949                                                   based on weight
43950                                                   based on weight
43958                                                   based on weight
43959                                                   based on weight
43960                                                   based on weight
43963                                                              <NA>
43965                                                              <NA>
43975                                                   1.5 billion cfu
43976                                                              <NA>
43977                                                              <NA>
43980                                                              <NA>
43997                                                        inch strip
44031                                                              <NA>
44037                                                              <NA>
44050                                                        1 wipe/pad
44051                                                              <NA>
44055                                                              <NA>
44084                                                        inch strip
44087                                                       unspecified
44090                                                       unspecified
44119                                                              <NA>
44123                                                             spray
44126                                               tablet/pill/capsule
44127                                               tablet/pill/capsule
44129                                             1 tablet/pill/capsule
44131                                                   based on weight
44154                                                       unspecified
44155                                                   based on weight
44157                                                   based on weight
44158                                                   based on weight
44207                                                      small amount
44209                                                              1 ml
44211                                      based on weight (60-120 lbs)
44212                                               tablet/pill/capsule
44214                                                              <NA>
44216                                      based on weight (60-120 lbs)
44218                                      based on weight (60-120 lbs)
44219                                                              <NA>
44220                                                              <NA>
44222                                                              <NA>
44223                                                              <NA>
44224                                                              <NA>
44225                                                              <NA>
44226                                                              <NA>
44227                                                              <NA>
44234                                                              <NA>
44235                                                              <NA>
44240                                                              <NA>
44241                                                              <NA>
44242                                                              <NA>
44243                                                              <NA>
44244                                                              <NA>
44246                                                              <NA>
44247                                                              <NA>
44249                                             1 tablet/pill/capsule
44250                                             1 tablet/pill/capsule
44251                                             1 tablet/pill/capsule
44252                                             1 tablet/pill/capsule
44253                                                   based on weight
44268                                                   based on weight
44280                                                      small amount
44282                                                      small amount
44309                                                              <NA>
44330                                               tablet/pill/capsule
44334                                               tablet/pill/capsule
44335                                               tablet/pill/capsule
44336                                               tablet/pill/capsule
44337                                               tablet/pill/capsule
44347                                                              <NA>
44350                                                              <NA>
44363                                                              <NA>
44372                                                          ointment
44385                                                              <NA>
44386                                                              <NA>
44390                                               tablet/pill/capsule
44391                                                              <NA>
44392                                                              <NA>
44395                                               tablet/pill/capsule
44398                                                      pack/package
44421                                                   based on weight
44428                                               tablet/pill/capsule
44429                                                              <NA>
44431                                                   based on weight
44434                                                              <NA>
44452                                                   based on weight
44473                                                   based on weight
44501                                                              <NA>
44507                                                              <NA>
44520                                                              <NA>
44524                                                              <NA>
44531                                                              <NA>
44542                                                      pack/package
44543                                               tablet/pill/capsule
44544                                      based on weight (50-100 lbs)
44545                                                              <NA>
44546                                                   based on weight
44547                                                   based on weight
44552                                                              <NA>
44558                                               tablet/pill/capsule
44559                                                       bottle/vial
44570                                               tablet/pill/capsule
44571                                                       bottle/vial
44576                                               tablet/pill/capsule
44577                                                       bottle/vial
44595                                                   0.25 inch strip
44607                                                     1 application
44608                                               tablet/pill/capsule
44609                                                       unspecified
44614                                               tablet/pill/capsule
44616                                               tablet/pill/capsule
44618                                               tablet/pill/capsule
44646                                                              <NA>
44649                                      based on weight (85-130 lbs)
44652                                                              <NA>
44653                                                              <NA>
44654                                                              <NA>
44655                                                              <NA>
44658                                                              <NA>
44660                                                              <NA>
44663                                                              <NA>
44671                                                   based on weight
44672                                                              <NA>
44677                                                              <NA>
44679                                                              <NA>
44683                                                              <NA>
44684                                               tablet/pill/capsule
44706                                                          ointment
44732                                                              <NA>
44742                                                   based on weight
44743                                                   based on weight
44745                                                   based on weight
44746                                                              <NA>
44747                                                            collar
44755                                                              <NA>
44757                                                              <NA>
44769                                                              <NA>
44771                                                   based on weight
44782                                                              <NA>
44795                                                        inch strip
44796                                                              <NA>
44797                                                              <NA>
44799                                                              <NA>
44804                                                              <NA>
44820                                               tablet/pill/capsule
44827                                               tablet/pill/capsule
44828                                               tablet/pill/capsule
44829                                               tablet/pill/capsule
44830                                                              <NA>
44831                                                              <NA>
44834                                                              tube
44843                                             1 tablet/pill/capsule
44844                                             1 tablet/pill/capsule
44857                                                              <NA>
44858                                                              <NA>
44862                                               tablet/pill/capsule
44863                                                              <NA>
44864                                                              <NA>
44866                                                              <NA>
44867                                                            1 tube
44868                                                            1 tube
44869                                             1 tablet/pill/capsule
44875                                                              <NA>
44877                                                              <NA>
44879                                               tablet/pill/capsule
44899                                                              <NA>
44905                                                              <NA>
44915                                                              <NA>
44916                                                              <NA>
44917                                                            1 tube
44918                                                       combination
44920                                                              <NA>
44922                                                              <NA>
44924                                               tablet/pill/capsule
44925                                                              <NA>
44933                                                              <NA>
44936                                                              <NA>
44937                                                              <NA>
44938                                                              <NA>
44939                                                              <NA>
44946                                               tablet/pill/capsule
44947                                               tablet/pill/capsule
44948                                               tablet/pill/capsule
44949                                               tablet/pill/capsule
44950                                               tablet/pill/capsule
44957                                             1 tablet/pill/capsule
44958                                             1 tablet/pill/capsule
44990                                                              <NA>
44997                                                      pack/package
45005                                                              <NA>
45007                                                   based on weight
45014                                                   based on weight
45015                                                              <NA>
45016                                             1 tablet/pill/capsule
45017                                                              <NA>
45023                                                              <NA>
45027                                                              <NA>
45034                                                   0.25 inch strip
45045                                                   based on weight
45047                                                              <NA>
45053                                          based on weight (25 lbs)
45054                                       based on weight (10-24 lbs)
45055                                       based on weight (25-60 lbs)
45059                                      based on weight (50-100 lbs)
45061                                                   based on weight
45062                                                   based on weight
45063                                                              <NA>
45064                                                   based on weight
45066                                                              <NA>
45072                                                              <NA>
45073                                                              <NA>
45076                                               tablet/pill/capsule
45109                                               tablet/pill/capsule
45112                                                      small amount
45116                                                              <NA>
45117                                                      pack/package
45123                                                              <NA>
45134                                                              <NA>
45139                                                              <NA>
45149                                               tablet/pill/capsule
45150                                               tablet/pill/capsule
45154                                                   based on weight
45172                                                              <NA>
45173                                                              <NA>
45174                                                              <NA>
45175                                                              <NA>
45178                                             1 tablet/pill/capsule
45179                                                     1 bottle/vial
45180                                                      small amount
45181                                                      small amount
45182                                                   based on weight
45184                                      based on weight (50-100 lbs)
45185                                       based on weight (44-88 lbs)
45186                                                   based on weight
45187                                                   based on weight
45188                                                   based on weight
45189                                                   based on weight
45195                                                              <NA>
45199                                                              <NA>
45208                                                              pump
45209                                                              <NA>
45210                                                      small amount
45212                                                   based on weight
45216                                                   based on weight
45224                                                              <NA>
45225                                                   based on weight
45236                                                   based on weight
45255                                                              <NA>
45257                                                              <NA>
45263                                               tablet/pill/capsule
45268                                                       unspecified
45273                                                              <NA>
45274                                                              <NA>
45280                                                              <NA>
45283                                                   based on weight
45286                                                              <NA>
45294                                                              <NA>
45295                                                              <NA>
45297                                                              <NA>
45298                                                   based on weight
45299                                                   based on weight
45302                                                   based on weight
45305                                                              <NA>
45307                                                       unspecified
45309                                                              <NA>
45310                                                   based on weight
45311                                                   based on weight
45312                                                   based on weight
45313                                                   based on weight
45322                                                              <NA>
45327                                                              <NA>
45335                                                              <NA>
45344                                               tablet/pill/capsule
45345                                               tablet/pill/capsule
45358                                                              <NA>
45359                                                              <NA>
45372                                                      small amount
45383                                                              <NA>
45403                                                              <NA>
45406                                                   based on weight
45411                                                          ointment
45425                       272 mcg ivermectin, 227 mg pyrantel pamoate
45426                                                       unspecified
45434                                                              <NA>
45435                                                              <NA>
45443                                                       combination
45445                                               tablet/pill/capsule
45451                                                   based on weight
45452                                                   based on weight
45463                                                              <NA>
45468                                                              <NA>
45470                                                   based on weight
45471                                                             mg/ml
45476                                                              <NA>
45479                                                              <NA>
45480                                                              <NA>
45484                                                   based on weight
45499                                               tablet/pill/capsule
45500                                               tablet/pill/capsule
45503                                                              <NA>
45504                                               tablet/pill/capsule
45508                                                            1 tube
45531                                                              <NA>
45534                                                              <NA>
45555                                                       unspecified
45556                                                   based on weight
45572                                                              <NA>
45582                                                   based on weight
45585                                               tablet/pill/capsule
45591                                                              <NA>
45626                                                              <NA>
45629                                                              <NA>
45642                                                              <NA>
45650                                                   based on weight
45651                                               tablet/pill/capsule
45655                                                   based on weight
45656                                                   based on weight
45663                                                              <NA>
45664                                                   based on weight
45665                                                   based on weight
45667                                                                 %
45670                                                              <NA>
45671                                                              <NA>
45674                                                             drops
45675                                                             drops
45676                                                             drops
45683                                                   based on weight
45699                                                              <NA>
45700                                                              <NA>
45703                                                              <NA>
45704                                                              <NA>
45724                                                              <NA>
45725                                                              <NA>
45726                                                              <NA>
45727                                                              <NA>
45728                                                              <NA>
45729                                                              <NA>
45735                                               tablet/pill/capsule
45736                                                              tube
45751                                                              <NA>
45764                                                              <NA>
45775                                                              <NA>
45776                                                              <NA>
45787                                                   based on weight
45791                                                   based on weight
45798                                                              <NA>
45799                                             1 tablet/pill/capsule
45800                                             1 tablet/pill/capsule
45816                                                            collar
45820                                                   based on weight
45843                                                         as needed
45853                                                          inhalant
45862                                               tablet/pill/capsule
45863                                               tablet/pill/capsule
45864                                               tablet/pill/capsule
45869                                                   based on weight
45870                                                            1 pump
45871                                                              <NA>
45872                                             1 tablet/pill/capsule
45876                                                              <NA>
45886                                                              <NA>
45898                                               tablet/pill/capsule
45899                                                              tube
45901                                      based on weight (50-100 lbs)
45908                                               tablet/pill/capsule
45909                                                              tube
45914                                      based on weight (50-100 lbs)
45924                                                              <NA>
45968                                                              <NA>
45969                                                   based on weight
45970                                                   based on weight
45971                                                              <NA>
45972                                                              <NA>
45990                                                   based on weight
45994                                                              <NA>
45995                                                      pack/package
45996                                                              <NA>
45997                                                   based on weight
46014                                                        inch strip
46018                                                   based on weight
46019                                                   based on weight
46020                                                              <NA>
46021                                               tablet/pill/capsule
46022                                               tablet/pill/capsule
46025                                               tablet/pill/capsule
46043                                               tablet/pill/capsule
46044                                               tablet/pill/capsule
46071                                               tablet/pill/capsule
46075                                                              <NA>
46076                                               tablet/pill/capsule
46078                                      based on weight (50-100 lbs)
46085                                                              <NA>
46091                                                   based on weight
46092                                                   based on weight
46094                                                              <NA>
46095                                                              <NA>
46100                                      based on weight (50-100 lbs)
46101                                                              <NA>
46102                                                              <NA>
46107                                               tablet/pill/capsule
46108                                                         injection
46110                                                   based on weight
46116                                      based on weight (50-100 lbs)
46119                                                   based on weight
46122                                                   based on weight
46131                                                              <NA>
46132                                                              <NA>
46134                                                      pack/package
46170                                                      small amount
46171                                                      small amount
46173                                                   based on weight
46174                                                   based on weight
46177                                                              <NA>
46186                                                              <NA>
46198                                                   based on weight
46200                                               tablet/pill/capsule
46201                                               tablet/pill/capsule
46202                                                              <NA>
46213                                                            1 tube
46218                                               tablet/pill/capsule
46219                                               tablet/pill/capsule
46227                                                   based on weight
46255                                                      small amount
46265                                                              <NA>
46277                                             1 tablet/pill/capsule
46278                                             1 tablet/pill/capsule
46287                                             1 tablet/pill/capsule
46288                                             1 tablet/pill/capsule
46291                                             1 tablet/pill/capsule
46292                                             1 tablet/pill/capsule
46293                                             1 tablet/pill/capsule
46295                                             1 tablet/pill/capsule
46296                                             1 tablet/pill/capsule
46302                                               tablet/pill/capsule
46303                                                              <NA>
46305                                                              <NA>
46308                                                              <NA>
46311                                                              <NA>
46312                                               tablet/pill/capsule
46313                                                              <NA>
46314                                                              <NA>
46319                                                      small amount
46320                                                              <NA>
46324                                                              <NA>
46325                                                              <NA>
46345                                                              <NA>
46350                                                              <NA>
46355                                                              <NA>
46358                                                              <NA>
46360                                                              pump
46377                                                              pump
46379                                                              <NA>
46399                                               tablet/pill/capsule
46406                                                              3 ml
46410                                                              <NA>
46411                                                              <NA>
46413                                                            collar
46418                                                            collar
46424                                                            collar
46431                                                            collar
46432                                                      small amount
46435                                                              <NA>
46436                                                       application
46474                                                   based on weight
46475                                                   based on weight
46476                                                   based on weight
46478                                                   based on weight
46479                                                   based on weight
46482                                      based on weight (50-100 lbs)
46483                                       based on weight (56-95 lbs)
46486                                                   based on weight
46487                                               tablet/pill/capsule
46488                                               tablet/pill/capsule
46489                                               tablet/pill/capsule
46490                                                              <NA>
46493                                                   based on weight
46494                                               tablet/pill/capsule
46499                                                              <NA>
46502                                                              <NA>
46504                                                              <NA>
46505                                                              <NA>
46506                                                              <NA>
46512                                                              <NA>
46517                                                              <NA>
46521                                                              <NA>
46524                                                              <NA>
46526                                                              <NA>
46527                                                              <NA>
46528                                                              <NA>
46529                                                              <NA>
46530                                                              <NA>
46532                                                              <NA>
46533                                                              <NA>
46534                                                              <NA>
46544                                                              <NA>
46547                                                              <NA>
46551                                                              <NA>
46553                                                              <NA>
46555                                                             spray
46568                                                              <NA>
46569                                                              <NA>
46570                                                              <NA>
46571                                                              <NA>
46572                                                       combination
46573                                                              <NA>
46574                                                              <NA>
46575                                                              <NA>
46579                                                              <NA>
46588                                                              <NA>
46590                                                              <NA>
46591                                                              <NA>
46593                                                              <NA>
46606                                                              <NA>
46607                                                              <NA>
46615                                                   based on weight
46616                                                   based on weight
46617                                               tablet/pill/capsule
46618                                                              <NA>
46664                                                            1 tube
46665                                                              <NA>
46676                                                      small amount
46680                                                              <NA>
46687                                                              <NA>
46690                                                             spray
46694                                                       application
46702                                                             spray
46703                                                          wipe/pad
46716                                                              <NA>
46717                                                              <NA>
46729                                                       combination
46730                                                       combination
46732                                                              <NA>
46737                                                              <NA>
46747                                                              <NA>
46753                                                      small amount
46763                                                              <NA>
46766                                                              <NA>
46767                                                   based on weight
46775                                                   based on weight
46776                                                   based on weight
46777                                                   based on weight
46781                                      based on weight (50-100 lbs)
46782                                      based on weight (60-120 lbs)
46783                                                      small amount
46784                                      based on weight (50-100 lbs)
46785                                      based on weight (60-120 lbs)
46786                                                   based on weight
46788                                             1 tablet/pill/capsule
46789                                             1 tablet/pill/capsule
46804                                                              <NA>
46811                                             1 tablet/pill/capsule
46812                                             1 tablet/pill/capsule
46816                                                   based on weight
46827                                                              <NA>
46849                                                              <NA>
46853                                                              <NA>
46874                                                        inch strip
46880                                                          ointment
46883                                                              <NA>
46884                                             1 tablet/pill/capsule
46885                                             1 tablet/pill/capsule
46889                                                              <NA>
46891                                                    160 mg, 800 mg
46902                                                              <NA>
46903                                                       application
46904                                               tablet/pill/capsule
46905                                                              <NA>
46908                                                             spray
46915                                                          ointment
46931                                                      pack/package
46938                                                      pack/package
46944                                                      pack/package
46961                                                          ointment
46962                                                              <NA>
46972                                             1 tablet/pill/capsule
46973                                             1 tablet/pill/capsule
46976                                                              <NA>
46977                                                                 %
46978                                                              <NA>
46981                                                              <NA>
46982                                                      small amount
46983                                                              <NA>
46984                                                              dose
46985                                                              dose
46986                                                   based on weight
47000                                                              <NA>
47004                                      based on weight (50-100 lbs)
47010                                                   based on weight
47011                                                   based on weight
47018                                                   based on weight
47024                                                   based on weight
47025                                                   based on weight
47041                                                              <NA>
47043                                                   based on weight
47049                                                              <NA>
47060                                                              <NA>
47069                                                              <NA>
47076                                                              <NA>
47080                                                              <NA>
47081                                                              <NA>
47085                                                   based on weight
47086                                                   based on weight
47090                                                              <NA>
47095                                                   based on weight
47096                                                   based on weight
47097                                                   based on weight
47098                                                       unspecified
47104                                                      small amount
47105                                                      small amount
47106                                                              tube
47108                                                              <NA>
47125                                                              <NA>
47126                                                              <NA>
47128                                                              <NA>
47137                                                              <NA>
47140                                                              <NA>
47143                                                   based on weight
47146                                                              <NA>
47152                                                              <NA>
47154                                                   based on weight
47155                                             1 tablet/pill/capsule
47156                                             1 tablet/pill/capsule
47162                                                       application
47164                                                             units
47178                                                   based on weight
47180                                                              <NA>
47181                                                              tube
47183                                               tablet/pill/capsule
47184                                               tablet/pill/capsule
47187                                               tablet/pill/capsule
47193                                                   based on weight
47194                                                   based on weight
47196                                                   based on weight
47197                                               tablet/pill/capsule
47204                                                              <NA>
47208                                               tablet/pill/capsule
47209                                             1 tablet/pill/capsule
47210                                             1 tablet/pill/capsule
47220                                                            collar
47221                                                              <NA>
47222                                                             spray
47240                                                              <NA>
47248                                                       unspecified
47251                                                       unspecified
47253                                                   based on weight
47260                                                   based on weight
47302                                                              <NA>
47323                                                              <NA>
47325                                                              <NA>
47334                                                   based on weight
47343                                                              <NA>
47345                                                              <NA>
47350                                                              puff
47355                                                      small amount
47360                                                              <NA>
47390                                                       combination
47407                                                              <NA>
47409                                                              <NA>
47411                                                   based on weight
47412                                             1 tablet/pill/capsule
47415                                             1 tablet/pill/capsule
47416                                                   based on weight
47417                                                   based on weight
47420                                                   based on weight
47421                                                   based on weight
47433                                                              <NA>
47439                                                              <NA>
47451                                                              <NA>
47478                                                   based on weight
47479                                               tablet/pill/capsule
47483                                                      small amount
47484                                                            collar
47486                                                   based on weight
47493                                                   based on weight
47496                                               tablet/pill/capsule
47497                                             1 tablet/pill/capsule
47498                                                            collar
47513                                                              <NA>
47539                                                              <NA>
47540                                                   moderate amount
47544                                                              <NA>
47547                                                              <NA>
47557                                                            collar
47559                                                              <NA>
47561                                                              <NA>
47562                                                   based on weight
47563                                                   based on weight
47576                                                       bottle/vial
47577                                               tablet/pill/capsule
47578                                               tablet/pill/capsule
47586                                               tablet/pill/capsule
47587                                                       bottle/vial
47588                                                       combination
47589                                                              <NA>
47590                                                              <NA>
47592                                                              <NA>
47593                                                              <NA>
47594                                                              <NA>
47595                                                              <NA>
47597                                                              <NA>
47600                                                              <NA>
47628                                                              tube
47629                                                              <NA>
47630                                                              <NA>
47635                                                              <NA>
47636                                                              <NA>
47658                                                              <NA>
47681                                               tablet/pill/capsule
47684                                                             spray
47693                                                          wipe/pad
47694                                                            powder
47696                                               tablet/pill/capsule
47698                                                          wipe/pad
47699                                                            powder
47702                                                              <NA>
47706                                                              <NA>
47715                                                              <NA>
47716                                                              <NA>
47720                                                      small amount
47721                                                              <NA>
47733                                                   based on weight
47734                                                              <NA>
47739                                                              <NA>
47743                                                              <NA>
47744                                               tablet/pill/capsule
47745                                                              <NA>
47746                                                              <NA>
47752                                                            1 tube
47755                                                            1 tube
47760                                             1 tablet/pill/capsule
47800                                               tablet/pill/capsule
47801                                                       application
47802                                               tablet/pill/capsule
47803                                                      small amount
47808                                                   based on weight
47810                                                   based on weight
47811                                                   based on weight
47812                                                   based on weight
47815                                                   based on weight
47816                                                   based on weight
47817                                                       unspecified
47825                                                              <NA>
47835                                             1 tablet/pill/capsule
47836                                                   based on weight
47840                                             23 mg, 228 mg, 460 mg
47847                                                       unspecified
47860                                                              <NA>
47861                                                              <NA>
47862                                                              <NA>
47863                                                              <NA>
47877                                                              <NA>
47887                                                   based on weight
47888                                                   based on weight
47889                                                              <NA>
47890                                                              <NA>
47891                                                              <NA>
47894                                                              <NA>
47900                                                      small amount
47909                                                              <NA>
47910                                                              <NA>
47951                                                              <NA>
47952                                                              <NA>
47953                                                             spray
47969                                                   based on weight
47970                                                   based on weight
47971                                                   based on weight
47975                                               tablet/pill/capsule
47976                                             1 tablet/pill/capsule
47981                                                   based on weight
47983                                                              <NA>
47984                                                   based on weight
47985                                                   based on weight
47989                                                   based on weight
47990                                                   based on weight
47995                                                      small amount
47996                                      based on weight (50-100 lbs)
47997                                      based on weight (60-120 lbs)
47998                                                              <NA>
47999                                                              <NA>
48000                                                              <NA>
48001                                                              <NA>
48002                                                              <NA>
48003                                                              <NA>
48004                                                              <NA>
48005                                                              <NA>
48007                                                              <NA>
48013                                                   based on weight
48014                                                   based on weight
48016                                                              <NA>
48020                                             1 tablet/pill/capsule
48021                                             1 tablet/pill/capsule
48028                                             1 tablet/pill/capsule
48029                                             1 tablet/pill/capsule
48030                                             1 tablet/pill/capsule
48031                                          2 tablets/pills/capsules
48034                                                          0.25 tsp
48035                                                 0.25 pack/package
48040                                               tablet/pill/capsule
48041                                                              <NA>
48046                                             1 tablet/pill/capsule
48047                                             1 tablet/pill/capsule
48048                                             1 tablet/pill/capsule
48049                                               tablet/pill/capsule
48069                                                       unspecified
48072                                                      small amount
48087                                               tablet/pill/capsule
48088                                               tablet/pill/capsule
48089                                                              <NA>
48090                                                              <NA>
48094                                                              <NA>
48100                                                        inch strip
48101                                                              <NA>
48102                                               tablet/pill/capsule
48103                                                              <NA>
48105                                               tablet/pill/capsule
48106                                                      small amount
48107                                                      small amount
48108                                                      small amount
48109                                               tablet/pill/capsule
48110                                                            collar
48114                                                      small amount
48120                                               tablet/pill/capsule
48121                                                              <NA>
48127                                               tablet/pill/capsule
48131                                                              <NA>
48132                                               tablet/pill/capsule
48133                                               tablet/pill/capsule
48142                                               tablet/pill/capsule
48143                                                              <NA>
48147                                               tablet/pill/capsule
48148                                               tablet/pill/capsule
48151                                               tablet/pill/capsule
48152                                               tablet/pill/capsule
48155                                                              <NA>
48157                                               tablet/pill/capsule
48158                                               tablet/pill/capsule
48159                                             1 tablet/pill/capsule
48160                                             1 tablet/pill/capsule
48163                                                              <NA>
48167                                               tablet/pill/capsule
48169                                                              <NA>
48178                                                              <NA>
48182                                                       combination
48185                                                              <NA>
48188                                                      small amount
48201                                                              <NA>
48213                                                            liquid
48214                                               tablet/pill/capsule
48215                                               tablet/pill/capsule
48217                                                              <NA>
48220                                                       unspecified
48221                                                       unspecified
48222                                                       unspecified
48223                                                              <NA>
48231                                                              <NA>
48237                                                        inch strip
48238                                                              <NA>
48240                                                              <NA>
48248                                                              <NA>
48251                                                   based on weight
48252                                                   based on weight
48258                                             1 tablet/pill/capsule
48265                                                              <NA>
48266                                                              <NA>
48267                                                              <NA>
48271                                                              <NA>
48274                                                              <NA>
48277                                                              <NA>
48285                                                              <NA>
48287                                                              <NA>
48288                                                              <NA>
48289                                                              <NA>
48291                                                              <NA>
48292                                                              <NA>
48294                                                          ointment
48297                                               tablet/pill/capsule
48298                                               tablet/pill/capsule
48299                                                          ointment
48300                                               tablet/pill/capsule
48306                                                   based on weight
48307                                                              <NA>
48310                                                   based on weight
48311                                                              <NA>
48314                                                              <NA>
48322                                                     5 billion cfu
48327                                                              <NA>
48328                                                              <NA>
48334                                                              <NA>
48336                                                              <NA>
48337                                                              <NA>
48338                                                              <NA>
48339                                                              <NA>
48342                                                              <NA>
48343                                                             spray
48344                                                              <NA>
48345                                                       application
48350                                                              <NA>
48351                                                              <NA>
48352                                                              <NA>
48353                                                              <NA>
48354                                                              <NA>
48355                                                                 %
48374                                                              <NA>
48376                                                              <NA>
48378                                                              <NA>
48380                                               tablet/pill/capsule
48381                                               tablet/pill/capsule
48383                                               tablet/pill/capsule
48384                                               tablet/pill/capsule
48394                                                              <NA>
48406                                               tablet/pill/capsule
48420                                                              <NA>
48438                                                              <NA>
48439                                               tablet/pill/capsule
48441                                               tablet/pill/capsule
48442                                               tablet/pill/capsule
48444                                             1 tablet/pill/capsule
48447                                                   based on weight
48448                                                   based on weight
48481                                                              <NA>
48483                                                              <NA>
48494                                               tablet/pill/capsule
48495                                                              <NA>
48496                                                              <NA>
48497                                                              <NA>
48498                                                              <NA>
48499                                                      small amount
48500                                                              <NA>
48502                                                              <NA>
48503                                                              tube
48504                                                              <NA>
48505                                                              <NA>
48513                                               tablet/pill/capsule
48520                                                              <NA>
48521                                                              <NA>
48540                                                              <NA>
48541                                               tablet/pill/capsule
48542                                               tablet/pill/capsule
48560                                                              tube
48598                                               tablet/pill/capsule
48602                                                              <NA>
48610                                                              <NA>
48611                                                              <NA>
48615                                                              <NA>
48621                                                      small amount
48624                                                             spray
48633                                                              <NA>
48636                                                                2%
48643                                               tablet/pill/capsule
48661                                               tablet/pill/capsule
48662                                                              <NA>
48664                                             1 tablet/pill/capsule
48667                                             1 tablet/pill/capsule
48668                                                     1 application
48673                                                              <NA>
48680                                               tablet/pill/capsule
48683                                                   based on weight
48684                                                   based on weight
48692                                                              <NA>
48693                                                              <NA>
48694                                                              <NA>
48696                                                   based on weight
48697                                                   based on weight
48698                                                   based on weight
48712                                             1 tablet/pill/capsule
48713                                             1 tablet/pill/capsule
48718                                                              <NA>
48719                                                              <NA>
48720                                      based on weight (50-100 lbs)
48721                                                   based on weight
48722                                                            collar
48724                                               tablet/pill/capsule
48725                                                            collar
48729                                               tablet/pill/capsule
48733                                               tablet/pill/capsule
48734                                             1 tablet/pill/capsule
48735                                             1 tablet/pill/capsule
48736                                                            collar
48770                                                              <NA>
48782                                                              <NA>
48802                                                              <NA>
48806                                                              <NA>
48808                                                              <NA>
48812                                                              <NA>
48819                                                              <NA>
48821                                                              <NA>
48835                                                             drops
48845                                                   based on weight
48855                                                              <NA>
48859                                                              <NA>
48862                                                              <NA>
48889                                                      pack/package
48890                                               tablet/pill/capsule
48891                                               tablet/pill/capsule
48892                                                          ointment
48893                                                              <NA>
48894                                                              <NA>
48902                                                      small amount
48906                                                      small amount
48918                                      based on weight (50-100 lbs)
48921                                                             spray
48935                                      based on weight (50-100 lbs)
48946                                                              <NA>
48994                                                              <NA>
48997                                                              <NA>
49002                                                              <NA>
49005                                                              <NA>
49012                                                       application
49015                                                              <NA>
49016                                                              <NA>
49017                                                              <NA>
49018                                                              <NA>
49025                                                              <NA>
49026                                                              <NA>
49027                                                             spray
49030                                                              <NA>
49033                                               tablet/pill/capsule
49034                                               tablet/pill/capsule
49035                                               tablet/pill/capsule
49036                                                       unspecified
49042                                                       unspecified
49044                                                       unspecified
49046                                                       unspecified
49051                                                              <NA>
49052                                                              <NA>
49082                                                   based on weight
49084                                                   based on weight
49096                                                   based on weight
49105                                                              <NA>
49113                                                      small amount
49117                                                              <NA>
49120                                                              <NA>
49123                                               tablet/pill/capsule
49127                                                              <NA>
49128                                      based on weight (50-100 lbs)
49129                                      based on weight (60-120 lbs)
49130                                                      small amount
49163                                                              <NA>
49164                                                   based on weight
49167                                                              <NA>
49168                                                              <NA>
49169                                                              <NA>
49170                                                              <NA>
49184                                                       application
49193                                                              <NA>
49196                                                              <NA>
49208                                               tablet/pill/capsule
49209                                               tablet/pill/capsule
49216                                               tablet/pill/capsule
49217                                               tablet/pill/capsule
49218                          27 mg milbemycin oxime, 1620 mg spinosad
49219                                                              <NA>
49220                                                              <NA>
49227                                                      small amount
49229                                                      small amount
49231                                                      small amount
49232                                                    0.5 inch strip
49248                                                              <NA>
49252                                             1 tablet/pill/capsule
49253                                             1 tablet/pill/capsule
49304                                                      small amount
49316                                               tablet/pill/capsule
49323                                                            1 tube
49324                                             1 tablet/pill/capsule
49343                                               tablet/pill/capsule
49345                                                             spray
49346                                                   based on weight
49348                                                   based on weight
49350                                               tablet/pill/capsule
49351                                               tablet/pill/capsule
49352                                                   based on weight
49371                                               tablet/pill/capsule
49372                                                              <NA>
49376                                               tablet/pill/capsule
49377                                                              tube
49378                                               tablet/pill/capsule
49379                                                            1 tube
49388                          460 mg lufenuron, 23 mg milbemycin oxime
49393                                                              <NA>
49394                                                              <NA>
49395                                                              <NA>
49398                                                              <NA>
49403                                                              <NA>
49404                                                              <NA>
49408                                               tablet/pill/capsule
49409                                               tablet/pill/capsule
49437                                               tablet/pill/capsule
49438                                               tablet/pill/capsule
49442                                               tablet/pill/capsule
49460                                                   based on weight
49461                                                   based on weight
49462                                                              <NA>
49463                                                   based on weight
49473                                                   based on weight
49509                                                       bottle/vial
49510                                               tablet/pill/capsule
49518                                                              <NA>
49520                                                              <NA>
49523                                                              <NA>
49526                                                      small amount
49531                                                              <NA>
49549                                                   based on weight
49550                                                   based on weight
49553                                                              <NA>
49554                                                              <NA>
49567                                                   based on weight
49568                                                          inhalant
49569                                      based on weight (50-100 lbs)
49572                                                   based on weight
49588                                                              <NA>
49590                                                   based on weight
49591                                                   based on weight
49592                                               tablet/pill/capsule
49593                                                   based on weight
49596                                                              tube
49601                                                              <NA>
49605                                               tablet/pill/capsule
49607                                                              <NA>
49608                                                              <NA>
49645                                                   based on weight
49649                                                   0.25 inch strip
49654                                                   0.25 inch strip
49659                                                        inch strip
49698                                                              <NA>
49699                                                            1 tube
49705                                                              <NA>
49715                                                              tube
49731                                                       unspecified
49748                                       based on weight (21-55 lbs)
49753                                                              <NA>
49754                                                              <NA>
49755                                                              <NA>
49756                                                              <NA>
49757                                                              <NA>
49758                                                              <NA>
49764                                                              <NA>
49766                                                              <NA>
49767                                                       application
49768                                               tablet/pill/capsule
49769                                                      small amount
49773                                                          ointment
49792                                                   based on weight
49793                                                   based on weight
49799                                                              <NA>
49812                                                              <NA>
49820                                      based on weight (50-100 lbs)
49821                                       based on weight (24-60 lbs)
49845                                                              <NA>
49846                                                              <NA>
49849                                                       application
49852                                                     5 billion cfu
49854                                                      pack/package
49855                                                   based on weight
49856                                                              <NA>
49857                                                              <NA>
49861                                                   based on weight
49862                                                   based on weight
49871                                                          222 mg/g
49878                                                   based on weight
49883                                                      pack/package
49886                                                   based on weight
49889                                               tablet/pill/capsule
49890                                                       application
49898                                                          222 mg/g
49905                                                   based on weight
49906                                                   based on weight
49907                                                   based on weight
49908                                                   based on weight
49911                                               tablet/pill/capsule
49912                                                       application
49963                                                              <NA>
49966                                                              <NA>
49978                                                   based on weight
49985                                             1 tablet/pill/capsule
49986                                                     1 bottle/vial
49987                                             1 tablet/pill/capsule
49990                                                    1 pack/package
49991                                                   based on weight
49992                                                             drops
49993                                             1 tablet/pill/capsule
49996                                                       unspecified
50000                                               tablet/pill/capsule
50001                                      based on weight (50-100 lbs)
50002                                                              pump
50004                                                   based on weight
50006                                                   based on weight
50007                                                           2 pumps
50008                                                   based on weight
50009                                                   based on weight
50011                                                              <NA>
50012                                                              <NA>
50014                                                              <NA>
50029                                                              <NA>
50030                                                              <NA>
50033                                                              <NA>
50034                                                              <NA>
50048                                                              <NA>
50050                                                              <NA>
50073                                                              tube
50077                                                              <NA>
50107                                                   based on weight
50108                                                   based on weight
50115                                               tablet/pill/capsule
50116                                               tablet/pill/capsule
50117                                                   based on weight
50118                                                              <NA>
50154                                                              <NA>
50159                                                              <NA>
50161                                                              <NA>
50187                                                   based on weight
50189                                                   based on weight
50190                                                   based on weight
50194                                                   based on weight
50195                                                   based on weight
50196                                                   based on weight
50198                                             1 tablet/pill/capsule
50199                                                              dose
                                                                                              dose_original
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
248                                                                                                  1 tube
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
480                                                                                                  1 tube
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
637                                                                                         based on weight
642                                                                                            small amount
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
757                                                                            based on weight (51-100 lbs)
760                                                                                                  1 drop
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
921                                                                            based on weight (51-100 lbs)
929                                                                                                  1 drop
930                                                                                                  1 drop
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
970                                                                                                  1 pump
977                                                                                             application
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1037                                                                                                 1 pump
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1091                                                                                           small amount
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1131                                                                                                5 drops
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1285                                                                                            unspecified
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1348                                                                                               2 sprays
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1417                                                                                                 1 tube
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1504                                                                                               0.25 tsp
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1690                                                                                                1 spray
1692                                                                                        moderate amount
1695                                                                                                 1 drop
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1720                                                                           based on weight (51-100 lbs)
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2050                                                                           based on weight (51-100 lbs)
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2224                                                                                            unspecified
2226                                                                                            unspecified
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2250                                                                                            unspecified
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2339                                                                                                 1 drop
2342                                                                                                 1 drop
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2409                                                                           based on weight (51-100 lbs)
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2486                                                                                            as directed
2487                                                                                            as directed
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2599                                                                                            unspecified
2600                                                                                            unspecified
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2699                                                                                               2 sprays
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2815                                                                                               300, 600
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2951                                                                                                 1 tube
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3095                                                                               2 tablets/pills/capsules
3110                                                                                           small amount
3119                                                                                            as directed
3140                                                                                                2 pumps
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3212                                                                                                 1 pump
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3257                                                                           based on weight (50-100 lbs)
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3439                                                                                                 1 tube
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3815                                                                                        based on weight
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3838                                                                           based on weight (60-120 lbs)
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3903                                                                           based on weight (51-100 lbs)
3906                                                                           based on weight (51-100 lbs)
3911                                                                           based on weight (51-100 lbs)
3938                                                                           based on weight (51-100 lbs)
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3984                                                                           based on weight (51-100 lbs)
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4204                                                                                                   1 ml
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4229                                                                                                15.7 ml
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4265                                                                                                 1 drop
4266                                                                                            as directed
4274                                                                                            unspecified
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4334                                                                                                   1 ml
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4360                                                                                                1 spray
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4488                                                                                                   1 ml
4491                                                                                                   1 ml
4497                                                                           based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4611                                                                                               27, 1620
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4695                                                                           based on weight (50-110 lbs)
4711                                                                                                 1 drop
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4850                                                                                                 1 drop
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4996                                                                                            unspecified
4998                                                                                            unspecified
5043                                                                                                  spray
5046                                                                                                  spray
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5125                                                                                                   1 ml
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5191                                                                                               27, 1620
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5469                                                                                                   2 ml
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5641                                                                                                 1.7 ml
5649                                                                                          5 billion cfu
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5747                                                                                        based on weight
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5777                                                                                            unspecified
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5930                                                                           based on weight (51-100 lbs)
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5967                                                                                       460 mg lufenuron
5976                                                                                            as directed
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6071                                                                                            unspecified
6072                                                                                        based on weight
6074                                                                                                1 spray
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6090                                                                                        0.25 inch strip
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6161                                                                                                23, 460
6164                                                                                           small amount
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6215                                                                                                 1 pump
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6296                                                                                              0.125 tsp
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6358                                                                                            unspecified
6388                                                                                                 1 drop
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6399                                                                                                8 drops
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6497                                                                                                 1 drop
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6864                                                                                                   1 ml
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
6999                                                                                                 1 tube
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7021                                                                            based on weight (44-88 lbs)
7023                                                                                                 1.6 ml
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7240                                                                                                2 drops
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7291                                                                            based on weight (44-88 lbs)
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7787                                                                                                 1 tube
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7839                                                                                            application
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7941                                                                                                   1 ml
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8215                                                                           based on weight (89-132 lbs)
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8238                                                                                           small amount
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8337                                                                                            unspecified
8338                                                                                            unspecified
8341                                                                                                 1 drop
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8405                                                                                                 1 tube
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8454                                                                           based on weight (50-100 lbs)
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8509                                                                                    tablet/pill/capsule
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8541                                                                                                  spray
8546                                                                                                8 drops
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8694                                                                            based on weight (45-88 lbs)
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8995                                                                                                 0.5 ml
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9049                                                                                                2 drops
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                           based on weight (51-100 lbs)
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9230                                                                                           small amount
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9244                                                                                            unspecified
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9271                                                                                            unspecified
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9635                                                                                               27, 1620
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9821                                                                                         1 pack/package
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9961                                                                                                 1 tube
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9968                                                                              based on weight (55+ lbs)
9970                                                                                           small amount
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10149                                                                                              10 drops
10151                                                                                           unspecified
10160                                                                                                1.5 ml
10167                                                                          based on weight (51-100 lbs)
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10432                                                                                                1 tube
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10667                                                                          based on weight (51-100 lbs)
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10901                                                                                           application
10905                                                                                           application
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11052                                                                                                1 tube
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11085                                                                                           unspecified
11088                                                                                           unspecified
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11224                                                                                           unspecified
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11356                                                                                           unspecified
11360                                                                                           unspecified
11368                                                                          based on weight (50-100 lbs)
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11477                                                                          based on weight (51-100 lbs)
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11564                                                                                 1 tablet/pill/capsule
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11664                                                                          based on weight (88-123 lbs)
11666                                                                                           application
11667                                                                                           application
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11790                                                                                                 15 gm
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11856                                                                                               8 drops
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11879                                                                                              10 drops
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12190                                                                                                1 pump
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12271                                                                           based on weight (45-88 lbs)
12273                                                                                          small amount
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12386                                                                                                1.4 ml
12394                                                                                           unspecified
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12402                                                                          based on weight (51-100 lbs)
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12514                                                                                             6-8 drops
12516                                                                          based on weight (51-100 lbs)
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12567                                                                                               8 drops
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12608                                                                                         23 mg, 228 mg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12712                                                                                                1 drop
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12784                                                                                        1 pack/package
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12836                                                                          based on weight (60-120 lbs)
12849                                                                                                 drops
12850                                                                                                 drops
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12945                                                                          based on weight (51-100 lbs)
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12959                                                                                               8 drops
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12979                                                                                               1 spray
12994                                                                             based on weight (55+ lbs)
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13173                                                                                                1 drop
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13318                                                                                               8 drops
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13666                                                                                           application
13688                                                                                                0.5 ml
13693                                                                          based on weight (60-120 lbs)
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13768                                                                                           application
13769                                                                                                 spray
13776                                                                             based on weight (50+ lbs)
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13786                                                                                                1 tube
13796                                                                                            1 wipe/pad
13881                                                                                                  7 ml
13884                                                                                              2 sprays
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13902                                                                                           unspecified
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13910                                                                        based on weight (50.1-100 lbs)
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14245                                                                           based on weight (22-44 lbs)
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14291                                                                                           unspecified
14297                                                                                 1 tablet/pill/capsule
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14373                                                                                       based on weight
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14650                                                                                                  1 ml
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15137                                                                                              2 sprays
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15179                                                                           based on weight (25-75 lbs)
15196                                                                                           application
15197                                                                                          small amount
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15252                                                                                               4 drops
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15935                                                                                      0.5 pack/package
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16036                                                                          based on weight (51-100 lbs)
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16553                                                                        based on weight (50.1-100 lbs)
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16617                                                                                                  1 gm
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16639                                                                          based on weight (51-100 lbs)
16646                                                                                              10 drops
16657                                                                                             6-8 drops
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16787                                                                                                  1 ml
16789                                                                                                1.1 ml
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16849                                                                                                1 pump
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16918                                                                                           unspecified
16929                                                                                 1 tablet/pill/capsule
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17042                                                                        based on weight (50.1-100 lbs)
17053                                                                                 1 tablet/pill/capsule
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17209                                                                                           unspecified
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17381                                                                                                 30 ml
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17633                                                                                               1.71 ml
17659                                                                          based on weight (50-100 lbs)
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17742                                                                                           application
17743                                                                                                1 drop
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17957                                                                                               4 drops
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18055                                                                                               3 drops
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18159                                                                                               6 drops
18164                                                                                               6 drops
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18251                                                                                                powder
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18466                                                                                                1 drop
18469                                                                                       0.25 inch strip
18471                                                                                           application
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18514                                                                           based on weight (21-55 lbs)
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18543                                                                                               6 drops
18562                                                                                                  1 ml
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18821                                                                                               5 drops
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18847                                                                                       based on weight
18850                                                                                       based on weight
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18882                                                                                           application
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18933                                                                                           unspecified
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19276                                                                                                1 tube
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19537                                                                                       based on weight
19568                                                                                                1 pump
19596                                                                          based on weight (51-100 lbs)
19603                                                                           based on weight (40-60 lbs)
19617                                                                                       2.68 ml of 9.8%
19641                                                                                           unspecified
19651                                                                                                1 drop
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19856                                                                        based on weight (50.1-100 lbs)
19866                                                                                              2 sprays
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19969                                                                                               2 drops
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20182                                                                                          small amount
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20231                                                                                                1 drop
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20251                                                                                          pack/package
20272                                                                                                1 tbsp
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20299                                                                                                1 tube
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20315                                                                                           unspecified
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20406                                                                                                  3 ml
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20441                                                                                           application
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20638                                                                                       2.68 ml of 9.8%
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20728                                                                                           unspecified
20738                                                                                              tapering
20745                                                                                                1 pump
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20750                                                                                               6 drops
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
20972                                                                                                 15 ml
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21017                                                                                               1 spray
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21088                                                                                           unspecified
21102                                                                           based on weight (40-80 lbs)
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21124                                                                                               3 drops
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21132                                                                                                  3 ml
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21192                                                                                                1 pump
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21331                                                                                           unspecified
21338                                                                             based on weight (55+ lbs)
21359                                                                                               23, 460
21361                                                                                               23, 460
21367                                                                                                  2 ml
21369                                                                          based on weight (51-100 lbs)
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21491                                                                                                1 drop
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21522                                                                                                1 tube
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21534                                                                                                1.5 ml
21545                                                                                 1 tablet/pill/capsule
21546                                                                                                1 tube
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21555                                                                                           unspecified
21558                                                                                               23, 460
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21587                                                                                               8 drops
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21605                                                                             based on weight (55+ lbs)
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21632                                                                                           unspecified
21637                                                                                                1 drop
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21727                                                                                           unspecified
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21767                                                                                           unspecified
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21866                                                                                                  4 ml
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21915                                                                                                1 tube
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22020                                                                                           as directed
22022                                                                                                  1 gm
22023                                                                          based on weight (51-100 lbs)
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22191                                                                                                1 tube
22196                                                                                          small amount
22197                                                                                                1 tube
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22459                                                                                           unspecified
22463                                                                                           unspecified
22520                                                                                                  1 gm
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22556                                                                                                1 pump
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22670                                                                                                1 tube
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22709                                                                                                 15 gm
22710                                                                                                 60 ml
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22715                                                                                                 15 gm
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22721                                                                                                0.2 ml
22733                                                                                                collar
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23005                                                                                                1 drop
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23008                                                                                                1 drop
23009                                                                                                 12 ml
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23066                                                                          based on weight (51-100 lbs)
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23257                                                                                               1000 ml
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23305                                                                                                1 pump
23306                                                                                                1 pump
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23388                                                                          based on weight (51-100 lbs)
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23422                                                                                                1 tube
23423                                                                                                1 tube
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23452                                                                                              2 sprays
23456                                                                                                 spray
23472                                                                           based on weight (21-55 lbs)
23482                                                                           based on weight (55-90 lbs)
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23507                                                                          based on weight (51-100 lbs)
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23557                                                                          based on weight (51-100 lbs)
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23589                                                                                                1 tube
23590                                                                                           unspecified
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23733                                                                                               5 drops
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24068                                                                                           unspecified
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24146                                                                                                4.7 ml
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24201                                                                                               8 drops
24202                                                                                               8 drops
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24251                                                                                                1 drop
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24261                                                                                 1 tablet/pill/capsule
24262                                                                                                1.4 ml
24263                                                                                                4.8 ml
24265                                                                                 1 tablet/pill/capsule
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24397                                                                                                  1 gm
24400                                                                          based on weight (50-100 lbs)
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24408                                                                                                 15 ml
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24429                                                                                             0.125 tsp
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24434                                                                                                1 drop
24435                                                                          based on weight (50-100 lbs)
24436                                                                                                1 drop
24437                                                                          based on weight (60-120 lbs)
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24479                                                                                               5 drops
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24503                                                                                               2 drops
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24647                                                                                           unspecified
24648                                                                                           application
24652                                                                                                1 tube
24653                                                                                       moderate amount
24654                                                                                                1 tube
24660                                                                                       based on weight
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24776                                                                                               4 drops
24782                                                                                               4 drops
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24880                                                                                               6 drops
24898                                                                                                powder
24902                                                                          based on weight (51-100 lbs)
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24967                                                                                              2 sprays
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25003                                                                                                1 drop
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25041                                                                                               2.68 ml
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                                                          based on weight (51-100 lbs)
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25358                                                                                               8 drops
25366                                                                                               8 drops
25367                                                                                           unspecified
25369                                                                                                  1 ml
25370                                                                                               6 drops
25378                                                                                             0.125 tsp
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25501                                                                          based on weight (51-100 lbs)
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25579                                                                                                272 gm
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25672                                                                                                0.5 ml
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25711                                                                                                1 tube
25725                                                                                              5 x 10^7
25726                                                                                               8 drops
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25817                                                                                                  2 ml
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25846                                                                          based on weight (88-123 lbs)
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25952                                                                                               5 drops
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26094                                                                                               1 spray
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26153                                                                                                1 drop
26154                                                                                                 13 ml
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26165                                                                                       based on weight
26166                                                                                       based on weight
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26189                                                                                                1 tube
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26205                                                                                                 13 ml
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26214                                                                                       based on weight
26215                                                                                       based on weight
26227                                                                                           unspecified
26229                                                                                           unspecified
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26287                                                                          based on weight (50-100 lbs)
26295                                                                          based on weight (60-121 lbs)
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26373                                                                                               2 drops
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26474                                                                                                 30 gm
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26505                                                                                           as directed
26508                                                                                                1 pump
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26540                                                                                                1 pump
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26583                                                                                           unspecified
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26674                                                                                               8 drops
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26760                                                                          based on weight (51-100 lbs)
26764                                                                                                100 ml
26765                                                                                                100 ml
26766                                                                                                100 ml
26769                                                                          based on weight (50-100 lbs)
26772                                                                                                100 ml
26773                                                                                                100 ml
26774                                                                                                100 ml
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26819                                                                                                 15 gm
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26833                                                                                              17 ml/lb
26836                                                                                               5 drops
26837                                                                                          pack/package
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26987                                                                                                  3 ml
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
27012                                                                                              0.25 tsp
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27080                                                                                                0.3 ml
27081                                                                                               8 drops
27082                                                                                           as directed
27085                                                                                 1 tablet/pill/capsule
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27137                                                                                                1 tube
27140                                                                                          small amount
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27256                                                                                               1 spray
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27370                                                                                                1 tube
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27529                                                                          based on weight (51-100 lbs)
27589                                                                                              27, 1620
27594                                                                          based on weight (60-120 lbs)
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27878                                                                                           unspecified
27880                                                                                           unspecified
27884                                                                                               2.68 ml
27886                                                                          based on weight (51-100 lbs)
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27900                                                                                                1.4 ml
27901                                                                                                1.5 ml
27904                                                                                               1.59 ml
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28006                                                                                                1 pump
28008                                                                                        1 pack/package
28009                                                                                                1 pump
28010                                                                                        1 pack/package
28011                                                                                               8 drops
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28018                                                                                       based on weight
28020                                                                                               5 drops
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28071                                                                                                1 tube
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28141                                                                                               4 drops
28144                                                                          based on weight (51-100 lbs)
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28404                                                                           based on weight (40-60 lbs)
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28604                                                                                                1 tube
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28616                                                                                               1 spray
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28626                                                                                               0.35 ml
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28710                                                                                           unspecified
28714                                                                                          small amount
28716                                                                                                 15 gm
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28762                                                                                                  1 ml
28764                                                                                                1 drop
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28831                                                                                                1 drop
28833                                                                                                1 tube
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28897                                                                          based on weight (51-100 lbs)
28899                                                                          based on weight (50-100 lbs)
28904                                                                          based on weight (51-100 lbs)
28906                                                                                                  3 ml
28907                                                                         based on weight (24.1-60 lbs)
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29092                                                                                                  1 ml
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29097                                                                                                  1 ml
29098                                                                                                    ml
29099                                                                                                    ml
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29151                                                                           based on weight (40-88 lbs)
29153                                                                                           unspecified
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29579                                                                                                 15 gm
29580                                                                          based on weight (51-100 lbs)
29588                                                                          based on weight (51-100 lbs)
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29696                                                                                                1.5 gm
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29729                                                                                                  1 gm
29730                                                                                                1.5 gm
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29764                                                                                           unspecified
29765                                                                                           unspecified
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29794                                                                                           unspecified
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29832                                                                                                1.5 ml
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29848                                                                                                1.5 ml
29858                                                                                           unspecified
29859                                                                                                7.4 ml
29860                                                                                                7.4 ml
29861                                                                                                7.4 ml
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29933                                                                                 1 tablet/pill/capsule
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30164                                                                                                2.5 ml
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30213                                                                                                  4 gm
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30274                                                                          based on weight (51-100 lbs)
30277                                                                          based on weight (51-100 lbs)
30286                                                                          based on weight (51-100 lbs)
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30353                                                                                                1 drop
30354                                                                                              10 drops
30355                                                                                          small amount
30357                                                                                                 spray
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30385                                                                          based on weight (51-100 lbs)
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30536                                                                                             4-5 drops
30541                                                                                                1 tube
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30590                                                                           based on weight (40-60 lbs)
30604                                                                         based on weight (40-60.1 lbs)
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30792                                                                                                1 tube
30793                                                                                 1 tablet/pill/capsule
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30803                                                                                           unspecified
30811                                                                                                1 tube
30813                                                                          based on weight (51-100 lbs)
30814                                                                                                1 tube
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30893                                                                                                1.9 ml
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30960                                                                                                 1 tsp
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31016                                                                                              0.75 tsp
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31105                                                                          based on weight (51-100 lbs)
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31139                                                                        based on weight (60.1-121 lbs)
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31245                                                                                               6 drops
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31265                                                                                       based on weight
31268                                                                                           as directed
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31330                                                                                                1 pump
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31381                                                                                                 15 gm
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31602                                                                          based on weight (51-100 lbs)
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31640                                                                                          small amount
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31652                                                                                                  5 ml
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31680                                                                          based on weight (51-100 lbs)
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31811                                                                                                1 tube
31818                                                                                                1 tube
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31825                                                                                                1 tube
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31842                                                                                                1 pump
31843                                                                                       based on weight
31844                                                                                       based on weight
31845                                                                                                  1 ml
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31898                                                                          based on weight (60-121 lbs)
31906                                                                                                1 tbsp
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
32002                                                                          based on weight (51-100 lbs)
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32364                                                                                               1.75 ml
32365                                                                                               1.75 ml
32370                                                                                           unspecified
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32521                                                                                                1 drop
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32633                                                                                           unspecified
32635                                                                                           application
32637                                                                                                1 pump
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32694                                                                                                 spray
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32912                                                                                                1 drop
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32999                                                                          based on weight (51-100 lbs)
33004                                                                          based on weight (51-100 lbs)
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33014                                                                                                1 tube
33015                                                                              based on weight (30 lbs)
33023                                                                                       based on weight
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33067                                                                                               5 drops
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33078                                                                          based on weight (51-100 lbs)
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33124                                                                                          small amount
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33702                                                                                           unspecified
33706                                                                                               23, 460
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33905                                                                                               1 spray
33907                                                                                                 spray
33909                                                                                               1 spray
33911                                                                           based on weight (44-88 lbs)
33913                                                                                               1 spray
33914                                                                                               1 spray
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33929                                                                                                1 tube
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34016                                                                                           unspecified
34022                                                                                           unspecified
34024                                                                                           unspecified
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34043                                                                          based on weight (50-100 lbs)
34046                                                                           based on weight (44-88 lbs)
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34092                                                                                                1 tube
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34105                                                                                               1 spray
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34111                                                                          based on weight (51-100 lbs)
34113                                                                                                  tube
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34282                                                                                                1 pump
34287                                                                                                1 drop
34289                                                                                                1 tube
34290                                                                                                  1 ml
34293                                                                                                1 tube
34304                                                                                                1 tube
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34342                                                                                           unspecified
34343                                                                                           unspecified
34345                                                                           based on weight (45-88 lbs)
34348                                                                                               5 drops
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34430                                                                                       based on weight
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34456                                                                                               2 pumps
34457                                                                                                  1 gm
34463                                                                                                  1 gm
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34513                                                                           based on weight (45-88 lbs)
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34614                                                                                                  1 ml
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34791                                                                          based on weight (50-100 lbs)
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34845                                                                                   tablet/pill/capsule
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35026                                                                                             0.125 tsp
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35074                                                                                           unspecified
35094                                                                          based on weight (51-100 lbs)
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35122                                                                                               2.25 ml
35124                                                                                                2.2 ml
35125                                                                          based on weight (60-121 lbs)
35126                                                                                                7.5 gm
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35160                                                                                           unspecified
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35214                                                                          based on weight (51-100 lbs)
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35258                                                                                               4 drops
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35504                                                                                          pack/package
35506                                                                                          small amount
35507                                                                                                1 drop
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35592                                                                                               3 drops
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35628                                                                                       based on weight
35633                                                                                           unspecified
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35643                                                                                                7.5 ml
35645                                                                                                    ml
35656                                                                                           application
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35700                                                                                               1 spray
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35768                                                                             based on weight (55+ lbs)
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35853                                                                                                200 ml
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36153                                                                                          small amount
36155                                                                                                1 tube
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36198                                                                                                1.5 ml
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36288                                                                                       based on weight
36292                                                                                               2.68 ml
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36376                                                                                               0.25 ml
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36520                                                                                                 2 tsp
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36579                                                                                                1 tube
36595                                                                          based on weight (50-100 lbs)
36597                                                                                                 15 gm
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36605                                                                          based on weight (50-100 lbs)
36606                                                                                                 15 gm
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36623                                                                                                 15 gm
36624                                                                                           application
36626                                                                                          small amount
36630                                                                          based on weight (50-100 lbs)
36631                                                                                                 15 gm
36632                                                                          based on weight (50-100 lbs)
36633                                                                                                 15 gm
36635                                                                          based on weight (50-100 lbs)
36637                                                                                                 15 gm
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36884                                                                                                1 pump
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37076                                                                                                1 tube
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37080                                                                                                1 tube
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37104                                                                                             1-2 drops
37115                                                                                               7 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37262                                                                             based on weight (55+ lbs)
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37273                                                                                               8 drops
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37309                                                                                          small amount
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37446                                                                          based on weight (51-100 lbs)
37448                                                                                                1 pump
37449                                                                                       moderate amount
37451                                                                                           application
37453                                                                                                1 pump
37454                                                                                       moderate amount
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37495                                                                                                 spray
37496                                                                                               5 drops
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37649                                                                                                1.8 ml
37651                                                                                                collar
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37691                                                                                           application
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37699                                                                                                1 drop
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37941                                                                                               5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38220                                                                                                 15 gm
38240                                                                           based on weight (22-55 lbs)
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38341                                                                                               1 spray
38342                                                                          based on weight (51-100 lbs)
38350                                                                                                1 tube
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38361                                                                                       0.25 inch strip
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38370                                                                                               0.65 ml
38371                                                                                                 13 ml
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38535                                                                                                1 tbsp
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38638                                                                                                 15 gm
38643                                                                          based on weight (51-100 lbs)
38647                                                                                                  2, 4
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38716                                                                                                 15 gm
38722                                                                                          small amount
38723                                                                                              wipe/pad
38754                                                                                           unspecified
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38776                                                                                               8 drops
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38809                                                                                           unspecified
38810                                                                                                  3 ml
38816                                                                                        1 pack/package
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38896                                                                          based on weight (51-100 lbs)
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38978                                                                                                1 tube
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39176                                                                          based on weight (51-100 lbs)
39181                                                                                                  bath
39182                                                                                                 spray
39188                                                                                                 15 gm
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39261                                                                                              0.25 tsp
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39388                                                                          based on weight (51-100 lbs)
39392                                                                                           unspecified
39415                                                                                                1 pump
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39438                                                                          based on weight (51-100 lbs)
39440                                                                          based on weight (51-100 lbs)
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39579                                                                                                 15 gm
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39651                                                                                           unspecified
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39745                                                                                                1 tube
39750                                                                                               4 drops
39754                                                                          based on weight (51-100 lbs)
39755                                                                                                1 tube
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39909                                                                           based on weight (41-60 lbs)
39916                                                                                               3 drops
39917                                                                                               3 drops
39918                                                                                               2 drops
39919                                                                                       0.25 inch strip
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40013                                                                            based on weight (0-10 lbs)
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40024                                                                                              10 drops
40038                                                                                              250, 500
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40180                                                                          based on weight (51-100 lbs)
40186                                                                          based on weight (51-100 lbs)
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40312                                                                              based on weight (70 lbs)
40317                                                                                          small amount
40331                                                                                               23, 228
40343                                                                                       moderate amount
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40447                                                                                               4 drops
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40542                                                                                                  8 ml
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40634                                                                                       0.25 inch strip
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40684                                                                          based on weight (51-100 lbs)
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40794                                                                                        0.5 inch strip
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41084                                                                              based on weight (70 lbs)
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41246                                                                                           application
41250                                                                                                1 tube
41254                                                                                 1 tablet/pill/capsule
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41336                                                                                                1 pump
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41371                                                                                           application
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41399                                                                                               8 drops
41400                                                                                               0.75 ml
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41418                                                                                               1.34 ml
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41502                                                                                                1 tube
41505                                                                                              inhalant
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41653                                                                                               23, 460
41655                                                                                           unspecified
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41842                                                                                                1 drop
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41862                                                                                               2 drops
41863                                                                                       moderate amount
41870                                                                                               23, 228
41872                                                                                           unspecified
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41895                                                                                              25 drops
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41907                                                                                                100 gm
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41976                                                                                                 15 ml
41988                                                                          based on weight (51-100 lbs)
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42030                                                                                               5 drops
42032                                                                          based on weight (51-100 lbs)
42036                                                                                               3 drops
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42040                                                                                                1 tube
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42053                                                                          based on weight (60-121 lbs)
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42116                                                                      2 tablets/pills/capsules - 50 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42171                                                                                               8 drops
42174                                                                          based on weight (51-100 lbs)
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42355                                                                                               1.5 tsp
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42365                                                                                                1 pump
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42384                                                                          based on weight (51-100 lbs)
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42402                                                                          based on weight (51-100 lbs)
42403                                                                                                1 tube
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42479                                                                                                1 tube
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42566                                                                                                5 tbsp
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42821                                                                          based on weight (50-100 lbs)
42829                                                                                               4 drops
42833                                                                                               23, 228
42860                                                                                           as directed
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43334                                                                                               23, 228
43366                                                                                          small amount
43388                                                                                           unspecified
43396                                                                                                 15 gm
43397                                                                                                3.5 gm
43405                                                                                          small amount
43412                                                                                          small amount
43416                                                                                                 15 gm
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43601                                                                                                1 drop
43610                                                                                      0.125 inch strip
43620                                                                                           unspecified
43621                                                                                           unspecified
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43712                                                                                               1 spray
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43765                                                                                                1 pump
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43829                                                                                                600 ml
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43884                                                                                                  tube
43887                                                                                                  tube
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43897                                                                                                 15 gm
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44051                                                                                               5 drops
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44220                                                                                                1 tube
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44242                                                                                                 3 tsp
44243                                                                                           unspecified
44244                                                                                           unspecified
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44330                                                                          based on weight (51-100 lbs)
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44421                                                                        based on weight (50.1-100 lbs)
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44501                                                                                               8 drops
44507                                                                                          small amount
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44531                                                                              based on weight (70 lbs)
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44552                                                                                                  1 ml
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44796                                                                                                1 drop
44797                                                                                                1 drop
44799                                                                                           unspecified
44804                                                                                           unspecified
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44831                                                                                                1 drop
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44990                                                                                                0.5 gm
44997                                                                                           as directed
45005                                                                                           unspecified
45007                                                                                           unspecified
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45047                                                                                                1 tube
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45112                                                                                               6 drops
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45216                                                                          based on weight (51-100 lbs)
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45236                                                                          based on weight (51-100 lbs)
45255                                                                                       based on weight
45257                                                                                                  1 ml
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45274                                                                                               5 drops
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45286                                                                          based on weight (51-100 lbs)
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45591                                                                                               8 drops
45626                                                                        based on weight (50.1-100 lbs)
45629                                                                                                1 tube
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45674                                                                                               2 drops
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45703                                                                                                  3 ml
45704                                                                                          small amount
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45869                                                                        based on weight (50.1-100 lbs)
45870                                                                                                 60 ml
45871                                                                                                7.5 ml
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45886                                                                                               5 drops
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45972                                                                                               8 drops
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46020                                                                                                  1 ml
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46101                                                                                               3 drops
46102                                                                                               3 drops
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46432                                                                                                1 pump
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46502                                                                                               3 pumps
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46524                                                                                               5 drops
46526                                                                                       0.25 inch strip
46527                                                                                               5 drops
46528                                                                           based on weight (45-88 lbs)
46529                                                                                                  1 gm
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46534                                                                                               5 drops
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46590                                                                                               8 drops
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46664                                                                                                1 tube
46665                                                                                 1 tablet/pill/capsule
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46827                                                                                             1-2 drops
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46874                                                                                          small amount
46880                                                                                          small amount
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46978                                                                                                1 drop
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47043                                                                          based on weight (51-100 lbs)
47049                                                                           based on weight (40-85 lbs)
47060                                                                                           unspecified
47069                                                                                                 15 gm
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47108                                                                                                1 tube
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47181                                                                                                1 tube
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47260                                                                          based on weight (50-100 lbs)
47302                                                                                          small amount
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47513                                                                                              10 drops
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47559                                                                                                1 drop
47561                                                                                                  1 gm
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47847                                                                                             0.125 tsp
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47862                                                                                                0.1 ml
47863                                                                                 1 tablet/pill/capsule
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
47999                                                                                                  4 ml
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48007                                                                              0.75 tablet/pill/capsule
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48178                                                                                                 15 gm
48182                                                                                       136 mcg, 114 mg
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48223                                                                                                0.5 ml
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48311                                                                                               5 drops
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48374                                                                                                 10 ml
48376                                                                                                 drops
48378                                                                                                1 drop
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48499                                                                                               5 drops
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48503                                                                                                1 tube
48504                                                                                       based on weight
48505                                                                                       based on weight
48513                                                                          based on weight (51-100 lbs)
48520                                                                                                 1 tsp
48521                                                                                                  2 ml
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48560                                                                                                1 tube
48598                                                                                           unspecified
48602                                                                                              tapering
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48662                                                                                               2.68 ml
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48835                                                                                               5 drops
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48893                                                                                                1 drop
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48918                                                                                           unspecified
48921                                                                                                 60 ml
48935                                                                                           unspecified
48946                                                                            1.5 tablets/pills/capsules
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49015                                                                                               4.02 ml
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49027                                                                                                 60 ml
49030                                                                                                 30 gm
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                          based on weight (51-100 lbs)
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49304                                                                                              10 drops
49316                                                                                           unspecified
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49345                                                                                                1 pump
49346                                                                          based on weight (51-100 lbs)
49348                                                                          based on weight (51-100 lbs)
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49371                                                                                                 30 ml
49372                                                                                 1 tablet/pill/capsule
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49473                                                                          based on weight (51-100 lbs)
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49605                                                                                 1 tablet/pill/capsule
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49715                                                                                                1 tube
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49764                                                                                                 15 ml
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49856                                                                                                1.7 ml
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49886                                                                          based on weight (51-100 lbs)
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49996                                                                                           as directed
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50002                                                                                               3 pumps
50004                                                                          based on weight (51-100 lbs)
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50029                                                                                 1 tablet/pill/capsule
50030                                                                                                1 tube
50033                                                                                 1 tablet/pill/capsule
50034                                                                                                1 tube
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50073                                                                                                1 tube
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50187                                                                          based on weight (51-100 lbs)
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
print(nrow(non_numeric_dose3))
[1] 9826
#3) # Regex to match units with optional whitespace
#####
unit_pattern <- "\\b(mg|ml| ml|tbs|tbsp|tsp|g|mcg|gm|tube|drop|drops|spray|sprays|pump|pumps)\\b\\s*"

# Identify rows where `dose` is not purely numeric and doesn't contain a comma
no_comma_non_numeric <- grepl("^[^,]*$", dose$dose) & !grepl("^\\d+(\\.\\d+)?$", dose$dose)

# Extract matches using the unit pattern
matches <- regmatches(
  dose$dose[no_comma_non_numeric],
  regexpr(unit_pattern, dose$dose[no_comma_non_numeric], ignore.case = TRUE)
)

# Ensure `matches` has the same length as `no_comma_non_numeric`
matches_full <- rep(NA, nrow(dose)) # Create a vector of NAs the same length as `dose`
matches_full[no_comma_non_numeric] <- matches
Warning in matches_full[no_comma_non_numeric] <- matches: number of items to
replace is not a multiple of replacement length
# Update `dose_unit` for matched rows
dose$dose_unit[no_comma_non_numeric] <- ifelse(
  is.na(dose$dose_unit[no_comma_non_numeric]) | dose$dose_unit[no_comma_non_numeric] == "other specify",
  matches_full[no_comma_non_numeric],
  dose$dose_unit[no_comma_non_numeric]
)

# Replace the numeric part in `dose` for rows with matches
dose$dose[no_comma_non_numeric] <- ifelse(
  matches_full[no_comma_non_numeric] != "",
  trimws(sub(unit_pattern, "", dose$dose[no_comma_non_numeric], ignore.case = TRUE)),
  dose$dose[no_comma_non_numeric]
)



non_numeric_dose4 <- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

# View the result
print(non_numeric_dose4)
                                                                                                        medication_ingredients
22                                                                                                                   meloxicam
40                                                                                              polysulfated glycosaminoglycan
41                                                                                      joint supplement (glucosamine hcl/msm)
42                                                                                                                   meloxicam
46                                                                                                                    spinosad
48                                                                                                    imidacloprid, moxidectin
49                                                                                                                imidacloprid
51                                                                      joint supplement (chondroitin sulfate/glucosamine hcl)
59                                                                                                                  ivermectin
60                                                                                                  imidacloprid, pyriproxyfen
62                                                                                                  imidacloprid, pyriproxyfen
63                                                                                                                  ivermectin
67                                                                                                                   mupirocin
70                                                                                                                   mupirocin
74                                                                                                  imidacloprid, pyriproxyfen
84                                                                                           betamethasone, gentamicin sulfate
87                                                                                                               dexamethasone
91                                                                             betamethasone, clotrimazole, gentamicin sulfate
111                                                                            betamethasone, clotrimazole, gentamicin sulfate
112                                                                                          enrofloxacin, silver sulfadiazine
113                                                                               florfenicol, mometasone furoate, terbinafine
114                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
149                                                                                chlorhexidine gluconate, miconazole nitrate
150                                                                                                                  tris-edta
151                                                                                                    chlorhexidine gluconate
152                                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                               multivitamin
155                                                                                                  immune support supplement
167                                                                                                   joint supplement (other)
188                                                                                                                 fluralaner
192                                                                                                                 fluralaner
220                                                                                                                 fluralaner
230                                                                                               ivermectin, pyrantel pamoate
233                                                                                        ear cleaner (zymox), hydrocortisone
235                                                                                               ivermectin, pyrantel pamoate
236                                                                                    betamethasone, florfenicol, terbinafine
237                                                                                    betamethasone, florfenicol, terbinafine
238                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
242                                                                                    betamethasone, florfenicol, terbinafine
257                                                                                                 milbemycin oxime, spinosad
275                                                                                               ivermectin, pyrantel pamoate
276                                                                                                                 ivermectin
277                                                                                                                 afoxolaner
279                                                                    chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                    triamcinolone acetonide
310                                                                                               ivermectin, pyrantel pamoate
317                                                                                                 imidacloprid, pyriproxyfen
318                                                                                               ivermectin, pyrantel pamoate
324                                                                                                 imidacloprid, pyriproxyfen
328                                                                                                   imidacloprid, permethrin
329                                                                                               ivermectin, pyrantel pamoate
332                                                                                                 imidacloprid, pyriproxyfen
333                                                                                               ivermectin, pyrantel pamoate
347                                                                                                lufenuron, milbemycin oxime
348                                                                                                lufenuron, milbemycin oxime
350                                                                                                lufenuron, milbemycin oxime
351                                                                                                lufenuron, milbemycin oxime
353                                                                                                lufenuron, milbemycin oxime
355                                                                                                lufenuron, milbemycin oxime
366                                                                                                               coenzyme q10
368                                                                                                                 afoxolaner
375                                                                                               ivermectin, pyrantel pamoate
376                                                                                                                 fluralaner
383                                                                                                lufenuron, milbemycin oxime
384                                                                                                lufenuron, milbemycin oxime
385                                                                                                lufenuron, milbemycin oxime
386                                                                                                lufenuron, milbemycin oxime
403                                                                                                                 ivermectin
404                                                                                                                 ivermectin
414                                                                                                lufenuron, milbemycin oxime
447                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
449                                                                  activated charcoal, bismuth subsalicylate, kaolin, pectin
453                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
496                                                                                                                 ivermectin
498                                                                                               ivermectin, pyrantel pamoate
519                                                                                                                 isoflurane
537                                                                               dexamethasone, neomycin sulfate, polymyxin b
597                                                                                                   fipronil, (s)-methoprene
598                                                                                                                 afoxolaner
603                                                                                               ivermectin, pyrantel pamoate
604                                                                                                                 afoxolaner
610                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
619                                                                                                       cognitive supplement
637                                                                                                                  omega 3-6
642                                                              bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
686                                                                                                                 afoxolaner
688                                                                                         amoxicillin, clavulanate potassium
703                                                                                               ivermectin, pyrantel pamoate
704                                                                                                                  sarolaner
709                                                                                                           liver supplement
710                                                                                                                  lomustine
712                                                                                                       prednisolone acetate
725                                                                                                 milbemycin oxime, spinosad
728                                                                                               ivermectin, pyrantel pamoate
729                                                                                                                 afoxolaner
730                                                                                               ivermectin, pyrantel pamoate
734                                                                               dexamethasone, neomycin sulfate, polymyxin b
738                                                                                               ivermectin, pyrantel pamoate
739                                                                                                                 afoxolaner
754                                                                                               ivermectin, pyrantel pamoate
755                                                                                                   fipronil, (s)-methoprene
757                                                                                  lufenuron, milbemycin oxime, praziquantel
778                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
785                                                                                                 milbemycin oxime, spinosad
790                                                                                                 milbemycin oxime, spinosad
792                                                                                                lufenuron, milbemycin oxime
797                                                                                                           liver supplement
798                                                                                                         maropitant citrate
799                                                                                                                bedinvetmab
800                                                                                                                mirtazapine
801                                                                                                                 furosemide
802                                                                                                                  carprofen
803                                                                                                                 fluralaner
804                                                                                                                 fluralaner
810                                                                                                                 selamectin
816                                                                                                     rx diet - renal health
819                                                                                               ivermectin, pyrantel pamoate
820                                                                                               ivermectin, pyrantel pamoate
823                                                                                                   fipronil, (s)-methoprene
824                                                                                               ivermectin, pyrantel pamoate
832                                                                                                                    omega 3
851                                                                                               ivermectin, pyrantel pamoate
862                                                                                                                 ivermectin
871                                                                                                 milbemycin oxime, spinosad
874                                                                                                 milbemycin oxime, spinosad
877                                                                                                         miconazole nitrate
878                                                                                                 milbemycin oxime, spinosad
879                                                                                                 milbemycin oxime, spinosad
880                                                                                                 milbemycin oxime, spinosad
884                                                                                                 milbemycin oxime, spinosad
887                                                                                                 milbemycin oxime, spinosad
891                                                                                                 milbemycin oxime, spinosad
893                                                                                                 milbemycin oxime, spinosad
899                                                                                                 milbemycin oxime, spinosad
901                                                                                                    chlorhexidine gluconate
905                                                                                          allergy immunotherapy - injection
913                                                                                                 imidacloprid, pyriproxyfen
921                                                                                               ivermectin, pyrantel pamoate
950                                                                                                                 ivermectin
955                                                                                                   flumethrin, imidacloprid
958                                                                                               ivermectin, pyrantel pamoate
969                                                                                                    acetic acid, boric acid
977                                                                                                                  ophytrium
982                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                  probiotic
989                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
1001                                                                                                             yunnan baiyao
1017                                                                                                                ivermectin
1018                                                                                                                afoxolaner
1020                                                                                                          neomycin sulfate
1021                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
1027                                                                                        chlorhexidine gluconate, ophytrium
1029                                                                                        chlorhexidine gluconate, ophytrium
1030                                                                                                unspecified shampoo/mousse
1031                                                                                                   enrofloxacin, tris-edta
1033                                                                              florfenicol, mometasone furoate, terbinafine
1036                                                                       enrofloxacin, ketoconazole, triamcinolone acetonide
1039                                                                              florfenicol, mometasone furoate, terbinafine
1042                                                                                                   chlorhexidine gluconate
1050                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1072                                                                                          burow's solution, hydrocortisone
1073                                                                                        chlorhexidine gluconate, tris-edta
1074                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1087                                                                                                milbemycin oxime, spinosad
1091                                                                                           ear cleaner (epi-otic advanced)
1097                                                                                                milbemycin oxime, spinosad
1099                                                                                              ivermectin, pyrantel pamoate
1100                                                                                               lufenuron, milbemycin oxime
1101                                                                                                                fluralaner
1108                                                                                        chlorhexidine gluconate, ophytrium
1111                                                                                               lufenuron, milbemycin oxime
1112                                                                                        chlorhexidine gluconate, ophytrium
1116                                                                                ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                              imidacloprid
1150                                                                                                   ketoconazole, tris-edta
1152                                                                                                          milbemycin oxime
1153                                                                                                                ivermectin
1154                                                                                               lufenuron, milbemycin oxime
1155                                                                                               lufenuron, milbemycin oxime
1159                                                                                               lufenuron, milbemycin oxime
1160                                                                                               lufenuron, milbemycin oxime
1161                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1168                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                              ivermectin, pyrantel pamoate
1170                                                                                                  fipronil, (s)-methoprene
1173                                                                                                  fipronil, (s)-methoprene
1174                                                                                              ivermectin, pyrantel pamoate
1175                                                                                                  fipronil, (s)-methoprene
1176                                                                                              ivermectin, pyrantel pamoate
1177                                                                                                  fipronil, (s)-methoprene
1179                                                                           betamethasone, clotrimazole, gentamicin sulfate
1185                                                                                                                ivermectin
1186                                                                                              ivermectin, pyrantel pamoate
1187                                                                                                         megestrol acetate
1189                                                                                              ivermectin, pyrantel pamoate
1190                                                                                              ivermectin, pyrantel pamoate
1193                                                                                                                ivermectin
1194                                                                                              ivermectin, pyrantel pamoate
1195                                                                                                          milbemycin oxime
1208                                                                                                  imidacloprid, permethrin
1217                                                                                              ivermectin, pyrantel pamoate
1226                                                                                                imidacloprid, pyriproxyfen
1233                                                                                                       silver sulfadiazine
1247                                                                                               lufenuron, milbemycin oxime
1285                                                                                            sulfamethoxazole, trimethoprim
1336                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1344                                                                                ivermectin, praziquantel, pyrantel pamoate
1346                                                                                           ear cleaner (epi-otic advanced)
1355                                                                                                  fipronil, (s)-methoprene
1371                                                                                              ivermectin, pyrantel pamoate
1377                                                                                                             levothyroxine
1378                                                                                                      cefpodoxime proxetil
1379                                                                                                                 carprofen
1380                                                                                                             metronidazole
1398                                                                                         dexamethasone, miconazole nitrate
1404                                                                                         betamethasone, gentamicin sulfate
1405                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1415                                                                                         dexamethasone, miconazole nitrate
1419                                                                                               lufenuron, milbemycin oxime
1420                                                                                                                   omega 3
1422                                                                                               lufenuron, milbemycin oxime
1434                                                                                                  fipronil, (s)-methoprene
1435                                                                                               lufenuron, milbemycin oxime
1438                                                                                               lufenuron, milbemycin oxime
1441                                                                                               lufenuron, milbemycin oxime
1442                                                                                ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                  fipronil, (s)-methoprene
1450                                                                                    fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                          milbemycin oxime
1459                                                                                     dinotefuran, permethrin, pyriproxyfen
1462                                                                                     dinotefuran, permethrin, pyriproxyfen
1464                                                                                               lufenuron, milbemycin oxime
1473                                                                                                    unspecified medication
1475                                                                                                  imidacloprid, permethrin
1491                                                                                              ivermectin, pyrantel pamoate
1499                                                                                                milbemycin oxime, spinosad
1500                                                                                                milbemycin oxime, spinosad
1501                                                                                              ivermectin, pyrantel pamoate
1511                                                                                                                afoxolaner
1512                                                                                     dinotefuran, permethrin, pyriproxyfen
1514                                                                                                                afoxolaner
1528                                                                                                  imidacloprid, permethrin
1529                                                                                                                ivermectin
1532                                                                                                imidacloprid, pyriproxyfen
1534                                                                                                imidacloprid, pyriproxyfen
1535                                                                                                          milbemycin oxime
1536                                                                                                imidacloprid, pyriproxyfen
1537                                                                                                          milbemycin oxime
1538                                                                                                          milbemycin oxime
1539                                                                                                imidacloprid, pyriproxyfen
1541                                                                                                imidacloprid, pyriproxyfen
1542                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1556                                                                                                               sevoflurane
1572                                                                                            milbemycin oxime, praziquantel
1586                                                                                                              ketoconazole
1587                                                                                              ivermectin, pyrantel pamoate
1598                                                                                              ivermectin, pyrantel pamoate
1599                                                                                              ivermectin, pyrantel pamoate
1633                                                                                                          milbemycin oxime
1634                                                                                                  fipronil, (s)-methoprene
1635                                                                                    joint supplement (glucosamine hcl/msm)
1636                                                                                                                   omega 3
1650                                                                                                  fipronil, (s)-methoprene
1663                                                                                                milbemycin oxime, spinosad
1668                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1683                                                                                                  flumethrin, imidacloprid
1684                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                         betamethasone, gentamicin sulfate
1689                                                                                     chlorhexidine gluconate, ketoconazole
1692                                                                           betamethasone, clotrimazole, gentamicin sulfate
1697                                                                                                  flumethrin, imidacloprid
1708                                                                                               lufenuron, milbemycin oxime
1710                                                                                               lufenuron, milbemycin oxime
1712                                                                                               lufenuron, milbemycin oxime
1715                                                                                               lufenuron, milbemycin oxime
1718                                                                                               lufenuron, milbemycin oxime
1720                                                                                               lufenuron, milbemycin oxime
1730                                                                                                                ivermectin
1743                                                                                                              imidacloprid
1747                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                            hydrocortisone
1749                                                                                                milbemycin oxime, spinosad
1756                                                                                                                 probiotic
1757                                                                                                    coprophagia supplement
1758                                                                                              ivermectin, pyrantel pamoate
1759                                                                                                                afoxolaner
1760                                                                                                                 cefovecin
1761                                                                                         betamethasone, gentamicin sulfate
1769                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
1773                                                                                         trimeprazine tartrate, prednisone
1774                                                                                               lufenuron, milbemycin oxime
1789                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1791                                                                                                                 mupirocin
1794                                                                                     chlorhexidine gluconate, ketoconazole
1795                                                                                                unspecified shampoo/mousse
1796                                                                                        joint supplement (glucosamine hcl)
1798                                                                                                                 meloxicam
1805                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1809                                                                                                  joint supplement (other)
1819                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                             unspecified herbal thyroid support supplement
1823                                                                            mometasone furoate, orbifloxacin, posaconazole
1845                                                                                                  imidacloprid, permethrin
1846                                                                                              ivermectin, pyrantel pamoate
1847                                                                                                imidacloprid, pyriproxyfen
1848                                                                                              ivermectin, pyrantel pamoate
1849                                                                                              ivermectin, pyrantel pamoate
1850                                                                              dexamethasone, neomycin sulfate, polymyxin b
1851                                                                              dexamethasone, neomycin sulfate, polymyxin b
1867                                                                                              ivermectin, pyrantel pamoate
1872                                                                                              ivermectin, pyrantel pamoate
1877                                                                                 unspecified herbal flea/tick preventative
1887                                                                                       cedarwood oil, rosemary oil, sesame
1888                                                                                 unspecified herbal flea/tick preventative
1917                                                                                              ivermectin, pyrantel pamoate
1922                                                                                         betamethasone, gentamicin sulfate
1925                                                                                                          benzoyl peroxide
1926                                                                                     chlorhexidine gluconate, ketoconazole
1928                                                                                                                ivermectin
1929                                                                                     dinotefuran, permethrin, pyriproxyfen
1931                                                                                                          benzoyl peroxide
1939                                                                                 unspecified herbal flea/tick preventative
1941                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1945                                                                                       cedarwood oil, rosemary oil, sesame
1948                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1962                                                                                                                ivermectin
1965                                                                                           ear cleaner (epi-otic advanced)
1980                                                                                                imidacloprid, pyriproxyfen
1981                                                                                              ivermectin, pyrantel pamoate
1982                                                                                              ivermectin, pyrantel pamoate
1983                                                                                                imidacloprid, pyriproxyfen
1984                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                   omega 3
1994                                                                                                               doxorubicin
1998                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2006                                                                                              ivermectin, pyrantel pamoate
2012                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                   omega 3
2016                                                                                               lufenuron, milbemycin oxime
2022                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2025                                                                                                imidacloprid, pyriproxyfen
2026                                                                                              ivermectin, pyrantel pamoate
2029                                                                                              ivermectin, pyrantel pamoate
2030                                                                                                                 sarolaner
2032                                                                                                          pyrantel pamoate
2033                                                                                                          milbemycin oxime
2034                                                                                                              fenbendazole
2041                                                                                                                ivermectin
2042                                                                                                                ivermectin
2050                                                                                              ivermectin, pyrantel pamoate
2075                                                                                                                ivermectin
2083                                                                                                                selamectin
2084                                                                                                                ivermectin
2085                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2087                                                                                               lufenuron, milbemycin oxime
2088                                                                                                                fluralaner
2089                                                                                                  joint supplement (other)
2091                                                                                                                ivermectin
2093                                                                                                  joint supplement (other)
2107                                                                                              ivermectin, pyrantel pamoate
2108                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                              ivermectin, pyrantel pamoate
2110                                                                                              ivermectin, pyrantel pamoate
2113                                                                                         trimeprazine tartrate, prednisone
2115                                                                                                 unspecified otic ointment
2116                                                                                                    unspecified otic flush
2123                                                                                                                 probiotic
2126                                                                                               lufenuron, milbemycin oxime
2127                                                                                ivermectin, praziquantel, pyrantel pamoate
2149                                                                                               lufenuron, milbemycin oxime
2151                                                                                               lufenuron, milbemycin oxime
2161                                                                                               lufenuron, milbemycin oxime
2165                                                                           betamethasone, clotrimazole, gentamicin sulfate
2166                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2195                                                                                digestive supplement, prebiotic, probiotic
2199                                                                                              ivermectin, pyrantel pamoate
2200                                                                                                                afoxolaner
2201                                                                                              ivermectin, pyrantel pamoate
2202                                                                                                                afoxolaner
2203                                                                                                  urinary tract supplement
2204                                                                                              ivermectin, pyrantel pamoate
2205                                                                                                                afoxolaner
2206                                                                                                  urinary tract supplement
2207                                                                                    joint supplement (glucosamine hcl/msm)
2211                                                                              dexamethasone, neomycin sulfate, polymyxin b
2219                                                                                                                    arnica
2220                                                                                                                 hypericum
2224                                                                                                 spinal support supplement
2226                                                                                                                 probiotic
2229                                                                                                                 shu jin i
2233                                                                                ivermectin, praziquantel, pyrantel pamoate
2241                                                                                     dinotefuran, permethrin, pyriproxyfen
2243                                                                                                          milbemycin oxime
2244                                                                                     dinotefuran, permethrin, pyriproxyfen
2250                                                                                                                ivermectin
2255                                                                                     dinotefuran, permethrin, pyriproxyfen
2258                                                                                                                 probiotic
2259                                                                                                                 vitamin d
2260                                                                                                                 vitamin a
2261                                                                                                                 vitamin c
2262                                                                                                              multivitamin
2263                                                                                                  kidney health supplement
2264                                                                                             unspecified herbal supplement
2265                                                                                                                  turmeric
2266                                                                                toothpaste/dental health solution or chews
2269                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                  turmeric
2272                                                                            mometasone furoate, orbifloxacin, posaconazole
2278                                                                                ivermectin, praziquantel, pyrantel pamoate
2279                                                                                              ivermectin, pyrantel pamoate
2280                                                                                              ivermectin, pyrantel pamoate
2283                                                                                              ivermectin, pyrantel pamoate
2301                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                     butorphanol tartrate, dexmedetomidine
2390                                                                                         betamethasone, gentamicin sulfate
2398                                                                                         betamethasone, gentamicin sulfate
2404                                                                                              ivermectin, pyrantel pamoate
2405                                                                                                  fipronil, (s)-methoprene
2409                                                                                              ivermectin, pyrantel pamoate
2418                                                                                              ivermectin, pyrantel pamoate
2428                                                                                                               oclacitinib
2463                                                                                         rx diet - selected protein (duck)
2464                                                                                              ivermectin, pyrantel pamoate
2467                                                                                         trimeprazine tartrate, prednisone
2473                                                                            dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                   ketoconazole, tris-edta
2477                                                                                                             buprenorphine
2478                                                                                                                ampicillin
2479                                                                                                                 probiotic
2481                                                                                                                  fipronil
2482                                                                                              ivermectin, pyrantel pamoate
2486                                                                                                   acetic acid, boric acid
2487                                                                                                   ketoconazole, tris-edta
2491                                                                                                        miconazole nitrate
2492                                                                                                   acetic acid, boric acid
2499                                                                                         rx diet - selected protein (duck)
2500                                                                                              ivermectin, pyrantel pamoate
2501                                                                                                                 carprofen
2502                                                                                                                alprazolam
2503                                                                                                               oclacitinib
2504                                                                                                                afoxolaner
2505                                                                                                                ivermectin
2506                                                                                                                afoxolaner
2508                                                                                                                 probiotic
2517                                                                                               lufenuron, milbemycin oxime
2518                                                                                                  joint supplement (other)
2534                                                                                            unspecified eye dilation drops
2539                                                                                 lufenuron, milbemycin oxime, praziquantel
2540                                                                                               lufenuron, milbemycin oxime
2542                                                                                            milbemycin oxime, praziquantel
2543                                                                                                  flumethrin, imidacloprid
2545                                                                                            milbemycin oxime, praziquantel
2546                                                                                                  flumethrin, imidacloprid
2547                                                                                                          milbemycin oxime
2548                                                                                                  flumethrin, imidacloprid
2549                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                   omega 3
2558                                                                                              ivermectin, pyrantel pamoate
2559                                                                                              ivermectin, pyrantel pamoate
2560                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2562                                                                                              ivermectin, pyrantel pamoate
2566                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2575                                                                                         betamethasone, gentamicin sulfate
2578                                                                                         betamethasone, gentamicin sulfate
2580                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2583                                                                                                                ivermectin
2599                                                                                                       polyethylene glycol
2600                                                                                                         vision supplement
2642                                                                                         betamethasone, gentamicin sulfate
2651                                                        ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                       ear cleaner (zymox)
2655                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2659                                                                                                  skin and coat supplement
2660                                                                                                   unspecified ear cleaner
2661                                                                                                          colloidal silver
2710                                                                                                  imidacloprid, moxidectin
2721                                                                           betamethasone, clotrimazole, gentamicin sulfate
2726                                                                                              ivermectin, pyrantel pamoate
2731                                                                                                milbemycin oxime, spinosad
2735                                                                                                milbemycin oxime, spinosad
2737                                                                                               lufenuron, milbemycin oxime
2738                                                                                                          milbemycin oxime
2739                                                                                                                afoxolaner
2742                                                                                               lufenuron, milbemycin oxime
2743                                                                                                                fluralaner
2745                                                                                               lufenuron, milbemycin oxime
2746                                                                                                                fluralaner
2748                                                                                               lufenuron, milbemycin oxime
2749                                                                                                                fluralaner
2753                                                                                 lufenuron, milbemycin oxime, praziquantel
2756                                                                                                                lokivetmab
2805                                                                                                  fipronil, (s)-methoprene
2815                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2818                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2825                                                                                                          milbemycin oxime
2827                                                                                              ivermectin, pyrantel pamoate
2828                                                                                              ivermectin, pyrantel pamoate
2833                                                                                               lufenuron, milbemycin oxime
2838                                                                                                          milbemycin oxime
2839                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
2842                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2844                                                                              dexamethasone, neomycin sulfate, polymyxin b
2846                                                                                                          milbemycin oxime
2855                                                                                                             yunnan baiyao
2869                                                                                        unspecified heartworm preventative
2897                                                                                     chlorhexidine gluconate, ketoconazole
2900                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2903                                                                                     chlorhexidine gluconate, ketoconazole
2904                                                                                     chlorhexidine gluconate, ketoconazole
2905                                                                                     chlorhexidine gluconate, ketoconazole
2907                                                                                                                 probiotic
2911                                                                                               lufenuron, milbemycin oxime
2912                                                                                                                afoxolaner
2913                                                                                                                 probiotic
2919                                                                                            milbemycin oxime, praziquantel
2920                                                                                                                afoxolaner
2921                                                                                                                 probiotic
2922                                                                                                          milbemycin oxime
2923                                                                                                                afoxolaner
2925                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2941                                                                                               lufenuron, milbemycin oxime
2942                                                                                                  imidacloprid, permethrin
2943                                                                                               lufenuron, milbemycin oxime
2944                                                                                                imidacloprid, pyriproxyfen
2946                                                                                                imidacloprid, pyriproxyfen
2958                                                                                                                ivermectin
2959                                                                                                                ivermectin
2960                                                                                              ivermectin, pyrantel pamoate
2961                                                                                              ivermectin, pyrantel pamoate
2962                                                                                              ivermectin, pyrantel pamoate
2963                                                                                              ivermectin, pyrantel pamoate
2964                                                                                              ivermectin, pyrantel pamoate
2974                                                                                               lufenuron, milbemycin oxime
2975                                                                                                  fipronil, (s)-methoprene
2978                                                                                 lufenuron, milbemycin oxime, praziquantel
2981                                                                                 lufenuron, milbemycin oxime, praziquantel
2988                                                                                                              fenbendazole
2993                                                                                                              fenbendazole
2997                                                                                                             metronidazole
3002                                                                                                      prednisolone acetate
3003                                                                                           ear cleaner (epi-otic advanced)
3007                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3028                                                                                                  fipronil, (s)-methoprene
3031                                                                                                          liver supplement
3055                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
3058                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3060                                                                                                                ivermectin
3095                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3110                                                                            mometasone furoate, orbifloxacin, posaconazole
3119                                                                                dimethyl sulfoxide, fluocinolone acetonide
3147                                                                                             allergy immunotherapy - drops
3179                                                                                              ivermectin, pyrantel pamoate
3180                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3208                                                                                              ivermectin, pyrantel pamoate
3209                                                                                                                fluralaner
3246                                                                                ivermectin, praziquantel, pyrantel pamoate
3247                                                                                ivermectin, praziquantel, pyrantel pamoate
3250                                                                                ivermectin, praziquantel, pyrantel pamoate
3251                                                                                            milbemycin oxime, praziquantel
3253                                                                                ivermectin, praziquantel, pyrantel pamoate
3257                                                                                ivermectin, praziquantel, pyrantel pamoate
3271                                                                                ivermectin, praziquantel, pyrantel pamoate
3278                                                                              dexamethasone, neomycin sulfate, polymyxin b
3280                                                                                ivermectin, praziquantel, pyrantel pamoate
3284                                                                                                          milbemycin oxime
3287                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3291                                                                                                                 mupirocin
3293                                                                           betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                          milbemycin oxime
3300                                                                                                          milbemycin oxime
3305                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3312                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                 mupirocin
3339                                                                                            milbemycin oxime, praziquantel
3342                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3345                                                                                               lufenuron, milbemycin oxime
3346                                                                                               lufenuron, milbemycin oxime
3350                                                                                                                ivermectin
3360                                                                                                  joint supplement (other)
3366                                                                                                              enrofloxacin
3372                                                                                                                ivermectin
3375                                                                                  febantel, praziquantel, pyrantel pamoate
3376                                                                                                                 mupirocin
3394                                                                                                   triamcinolone acetonide
3399                                                                                                milbemycin oxime, spinosad
3403                                                                                                milbemycin oxime, spinosad
3404                                                                                                                afoxolaner
3405                                                                                              ivermectin, pyrantel pamoate
3421                                                                                             allergy immunotherapy - drops
3422                                                                                             allergy immunotherapy - drops
3425                                                                                                                selamectin
3426                                                                                             allergy immunotherapy - drops
3429                                                                                                milbemycin oxime, spinosad
3437                                                                           betamethasone, clotrimazole, gentamicin sulfate
3445                                                                                                                cephalexin
3446                                                                                                                lokivetmab
3447                                                                           betamethasone, clotrimazole, gentamicin sulfate
3448                                                                              florfenicol, mometasone furoate, terbinafine
3449                                                                                                                 carprofen
3451                                                                                               lufenuron, milbemycin oxime
3455                                                                                               lufenuron, milbemycin oxime
3456                                                                                                  fipronil, (s)-methoprene
3457                                                                                               lufenuron, milbemycin oxime
3458                                                                                                imidacloprid, pyriproxyfen
3459                                                                                               lufenuron, milbemycin oxime
3488                                                                                                                nitenpyram
3490                                                                                                                 sarolaner
3491                                                                                               lufenuron, milbemycin oxime
3492                                                                                                                 sarolaner
3495                                                                                 lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                 sarolaner
3497                                                                                 lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                 sarolaner
3512                                                                                              ivermectin, pyrantel pamoate
3513                                                                                              ivermectin, pyrantel pamoate
3514                                                                                              ivermectin, pyrantel pamoate
3515                                                                                              ivermectin, pyrantel pamoate
3516                                                                                              ivermectin, pyrantel pamoate
3517                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3519                                                                                                                ivermectin
3520                                                                                ivermectin, praziquantel, pyrantel pamoate
3522                                                                                              ivermectin, pyrantel pamoate
3525                                                                                              ivermectin, pyrantel pamoate
3530                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3535                                                                              dexamethasone, neomycin sulfate, polymyxin b
3581                                                                                                              multivitamin
3619                                                                                            milbemycin oxime, praziquantel
3622                                                                                                                 probiotic
3631                                                                                                                ivermectin
3632                                                                                                                ivermectin
3635                                                                                                                fluralaner
3639                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                   acetic acid, boric acid
3641                                                                                         betamethasone, gentamicin sulfate
3649                                                                                                  imidacloprid, moxidectin
3650                                                                                                  imidacloprid, moxidectin
3652                                                                                                      prebiotic, probiotic
3666                                                                                         betamethasone, gentamicin sulfate
3667                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
3675                                                                                         betamethasone, gentamicin sulfate
3684                                                                                                          milbemycin oxime
3685                                                                                                  fipronil, (s)-methoprene
3691                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                          milbemycin oxime
3693                                                                                         betamethasone, gentamicin sulfate
3698                                                                                                                selamectin
3699                                                                                                                selamectin
3701                                                                                                          milbemycin oxime
3704                                                                                                          milbemycin oxime
3705                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                lokivetmab
3710                                                                                                           cbd or hemp oil
3718                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                              ivermectin, pyrantel pamoate
3725                                                                                              ivermectin, pyrantel pamoate
3726                                                                                              ivermectin, pyrantel pamoate
3735                                                                                                                 ketotifen
3741                                                                                                               amoxicillin
3742                                                                                                              azathioprine
3743                                                                                                                cetirizine
3744                                                                                                                 lactulose
3745                                                                                                                 carprofen
3750                                                                                                          milbemycin oxime
3760                                                                                                milbemycin oxime, spinosad
3773                                                                              dexamethasone, neomycin sulfate, polymyxin b
3784                                                                                                     mycophenolate mofetil
3785                                                                                                                prednisone
3786                                                                                                                famotidine
3789                                                                                         betamethasone, gentamicin sulfate
3797                                                                                                   triamcinolone acetonide
3798                                                                           betamethasone, clotrimazole, gentamicin sulfate
3800                                                                           betamethasone, clotrimazole, gentamicin sulfate
3815                                                                                              ivermectin, pyrantel pamoate
3829                                                                           betamethasone, clotrimazole, gentamicin sulfate
3835                                                                                              ivermectin, pyrantel pamoate
3836                                                                                                                afoxolaner
3838                                                                                                                afoxolaner
3840                                                                           betamethasone, clotrimazole, gentamicin sulfate
3848                                                                              dexamethasone, neomycin sulfate, polymyxin b
3857                                                                                              ivermectin, pyrantel pamoate
3858                                                                                                  fipronil, (s)-methoprene
3859                                                                                                          milbemycin oxime
3860                                                                                                                afoxolaner
3861                                                                                                        gentamicin sulfate
3867                                                                           betamethasone, clotrimazole, gentamicin sulfate
3870                                                                                              ivermectin, pyrantel pamoate
3871                                                                                                                afoxolaner
3872                                                                                                                afoxolaner
3874                                                                           betamethasone, clotrimazole, gentamicin sulfate
3881                                                                                                                ivermectin
3886                                                                                              ivermectin, pyrantel pamoate
3889                                                                                              ivermectin, pyrantel pamoate
3897                                                                                              ivermectin, pyrantel pamoate
3898                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
3900                                                                                                                ivermectin
3903                                                                                              ivermectin, pyrantel pamoate
3906                                                                                              ivermectin, pyrantel pamoate
3911                                                                                              ivermectin, pyrantel pamoate
3938                                                                                              ivermectin, pyrantel pamoate
3943                                                                                              ivermectin, pyrantel pamoate
3945                                                                                          propylene glycol, salicylic acid
3946                                                                                                                afoxolaner
3952                                                                                              ivermectin, pyrantel pamoate
3972                                                                                                milbemycin oxime, spinosad
3980                                                                                              ivermectin, pyrantel pamoate
3984                                                                                              ivermectin, pyrantel pamoate
3989                                                                                              ivermectin, pyrantel pamoate
3990                                                                                                                afoxolaner
4000                                                                                                                 meloxicam
4017                                                                                              ivermectin, pyrantel pamoate
4030                                                                                                milbemycin oxime, spinosad
4031                                                                                                milbemycin oxime, spinosad
4042                                                                                                    unspecified medication
4045                                                                                                                 sarolaner
4058                                                                                                                ivermectin
4059                                                                                         trimeprazine tartrate, prednisone
4060                                                                                              ivermectin, pyrantel pamoate
4063                                                                                              ivermectin, pyrantel pamoate
4064                                                                                                                fluralaner
4066                                                                                                                ivermectin
4067                                                                                                                fluralaner
4068                                                                                toothpaste/dental health solution or chews
4069                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                               oclacitinib
4071                                                                                toothpaste/dental health solution or chews
4072                                                                                                                afoxolaner
4073                                                                                              ivermectin, pyrantel pamoate
4074                                                                                                  fipronil, (s)-methoprene
4075                                                                                              ivermectin, pyrantel pamoate
4077                                                                                                                afoxolaner
4087                                                                                                                 cefazolin
4088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                 ofloxacin
4092                                                                                                              imidacloprid
4095                                                                                                                 sarolaner
4097                                                                                                                 sarolaner
4111                                                                                                milbemycin oxime, spinosad
4112                                                                                ivermectin, praziquantel, pyrantel pamoate
4113                                                                                           ear cleaner (epi-otic advanced)
4114                                                                                                   ketoconazole, tris-edta
4116                                                                                         trimeprazine tartrate, prednisone
4117                                                                                                  fipronil, (s)-methoprene
4118                                                                                                milbemycin oxime, spinosad
4119                                                                                                   ketoconazole, tris-edta
4120                                                                                                milbemycin oxime, spinosad
4125                                                                                                milbemycin oxime, spinosad
4127                                                                                            milbemycin oxime, praziquantel
4128                                                                                                                afoxolaner
4131                                                                                         betamethasone, gentamicin sulfate
4132                                                                                         betamethasone, gentamicin sulfate
4133                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4162                                                                                        fipronil, permethrin, pyriproxyfen
4172                                                                                                  fipronil, (s)-methoprene
4183                                                                                                                selamectin
4184                                                                                                                selamectin
4189                                                                                                      cefpodoxime proxetil
4190                                                                                                                 carprofen
4191                                                                                                milbemycin oxime, spinosad
4193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4198                                                                                                                afoxolaner
4199                                                                                                          milbemycin oxime
4209                                                                                                milbemycin oxime, spinosad
4210                                                                                                milbemycin oxime, spinosad
4212                                                                                                milbemycin oxime, spinosad
4213                                                                                 lufenuron, milbemycin oxime, praziquantel
4215                                                                                               lufenuron, milbemycin oxime
4216                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4218                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4245                                                                           betamethasone, clotrimazole, gentamicin sulfate
4247                                                                                              ivermectin, pyrantel pamoate
4266                                                                                                   ketoconazole, tris-edta
4274                                                                                                                isoflurane
4298                                                                                        fipronil, permethrin, pyriproxyfen
4299                                                                                                                ivermectin
4302                                                                                               lufenuron, milbemycin oxime
4304                                                                                               lufenuron, milbemycin oxime
4305                                                                                                  fipronil, (s)-methoprene
4306                                                                                                                   omega 3
4307                                                                                               lufenuron, milbemycin oxime
4308                                                                                               lufenuron, milbemycin oxime
4309                                                                                                  fipronil, (s)-methoprene
4311                                                                                        joint supplement (glucosamine hcl)
4313                                                                                               lufenuron, milbemycin oxime
4314                                                                                                  fipronil, (s)-methoprene
4323                                                                                                                selamectin
4324                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                          milbemycin oxime
4326                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4336                                                                                                                fluralaner
4338                                                                                 lufenuron, milbemycin oxime, praziquantel
4348                                                                              dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                milbemycin oxime, spinosad
4350                                                                                                milbemycin oxime, spinosad
4353                                                                                                milbemycin oxime, spinosad
4354                                                                                                milbemycin oxime, spinosad
4368                                                                                                        calming supplement
4371                                                                                                                   omega 3
4384                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                               lufenuron, milbemycin oxime
4390                                                                                                                fluralaner
4395                                                                                              ivermectin, pyrantel pamoate
4405                                                                                                milbemycin oxime, spinosad
4409                                                                                                  enrofloxacin, tobramycin
4426                                                                                              ivermectin, pyrantel pamoate
4427                                                                                                imidacloprid, pyriproxyfen
4428                                                                                                                  spinosad
4430                                                                                                         hypochlorous acid
4431                                                                                   over-the-counter antipruritic/astrigent
4444                                                                                                  fipronil, (s)-methoprene
4445                                                                                                milbemycin oxime, spinosad
4446                                                                                                                 probiotic
4454                                                                                                                isoflurane
4469                                                                                                   ketoconazole, tris-edta
4470                                                                                                   ketoconazole, tris-edta
4471                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4480                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4483                                                                                               lufenuron, milbemycin oxime
4486                                                                                                                   omega 3
4497                                                                                               lufenuron, milbemycin oxime
4499                                                                                            milbemycin oxime, praziquantel
4500                                                                                                                afoxolaner
4501                                                                                       rx diet - skin and food sensitivity
4502                                                                                                                afoxolaner
4504                                                                                       rx diet - skin and food sensitivity
4505                                                                                                          milbemycin oxime
4509                                                                                                          milbemycin oxime
4510                                                                                                                afoxolaner
4511                                                                                                                   omega 3
4515                                                                                                          milbemycin oxime
4516                                                                                                                afoxolaner
4517                                                                                                                 probiotic
4524                                                                                ivermectin, praziquantel, pyrantel pamoate
4532                                                                                                          milbemycin oxime
4533                                                                                                      prebiotic, probiotic
4536                                                                                                          milbemycin oxime
4544                                                                                                                   omega 3
4545                                                                                ivermectin, praziquantel, pyrantel pamoate
4547                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4558                                                                                              ivermectin, pyrantel pamoate
4559                                                                                        fipronil, permethrin, pyriproxyfen
4560                                                                                              ivermectin, pyrantel pamoate
4561                                                                                         betamethasone, gentamicin sulfate
4562                                                                                                                fluralaner
4564                                                                                              ivermectin, pyrantel pamoate
4565                                                                                                                fluralaner
4566                                                                                              ivermectin, pyrantel pamoate
4567                                                                                                                fluralaner
4568                                                                                                                fluralaner
4569                                                                                                          milbemycin oxime
4587                                                                                              ivermectin, pyrantel pamoate
4597                                                                                clinical trial - cancer prevention vaccine
4599                                                                                                                ivermectin
4611                                                                                                milbemycin oxime, spinosad
4627                                                                                                                  fipronil
4628                                                                                                            (s)-methoprene
4629                                                                                               lufenuron, milbemycin oxime
4631                                                                                                  fipronil, (s)-methoprene
4634                                                                                               rx diet - digestive support
4638                                                                                                  fipronil, (s)-methoprene
4640                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4642                                                                                            milbemycin oxime, praziquantel
4643                                                                                                              cyclosporine
4648                                                                                            milbemycin oxime, praziquantel
4649                                                                                                  fipronil, (s)-methoprene
4651                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4654                                                                                                  fipronil, (s)-methoprene
4655                                                                                            milbemycin oxime, praziquantel
4695                                                                                                          milbemycin oxime
4717                                                                                                                  spinosad
4719                                                                            mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                   ketoconazole, tris-edta
4726                                                                                                          milbemycin oxime
4738                                                                                                milbemycin oxime, spinosad
4739                                                                                                milbemycin oxime, spinosad
4743                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                         betamethasone, gentamicin sulfate
4745                                                                                                milbemycin oxime, spinosad
4748                                                                                                milbemycin oxime, spinosad
4757                                                                                                imidacloprid, pyriproxyfen
4760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4763                                                                                                imidacloprid, pyriproxyfen
4764                                                                                                imidacloprid, pyriproxyfen
4766                                                                                                imidacloprid, pyriproxyfen
4777                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
4780                                                                                                  joint supplement (other)
4782                                                                                                                 probiotic
4801                                                                                                                prednisone
4802                                                                                              ivermectin, pyrantel pamoate
4805                                                                              dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                afoxolaner
4813                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4824                                                                                                  imidacloprid, moxidectin
4826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4828                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4832                                                                                     enrofloxacin, triamcinolone acetonide
4853                                                                                                   ketoconazole, tris-edta
4855                                                                                                milbemycin oxime, spinosad
4858                                                                                                milbemycin oxime, spinosad
4859                                                                                              ivermectin, pyrantel pamoate
4861                                                                                              ivermectin, pyrantel pamoate
4862                                                                                              ivermectin, pyrantel pamoate
4881                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4902                                                                                                  fipronil, (s)-methoprene
4904                                                                                                milbemycin oxime, spinosad
4905                                                                                                milbemycin oxime, spinosad
4910                                                                                                  flumethrin, imidacloprid
4912                                                                                            milbemycin oxime, praziquantel
4913                                                                                                  flumethrin, imidacloprid
4914                                                                                            milbemycin oxime, praziquantel
4917                                                                                            milbemycin oxime, praziquantel
4935                                                                                                                ivermectin
4956                                                                                                   ketoconazole, tris-edta
4960                                                                                                   ketoconazole, tris-edta
4968                                                                                                milbemycin oxime, spinosad
4969                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
4980                                                                                                                 probiotic
4981                                                                                            milbemycin oxime, praziquantel
4996                                                                                         betamethasone, gentamicin sulfate
4998                                                                                                             oxymetazoline
5043                                                                                                  fipronil, (s)-methoprene
5046                                                                                         betamethasone, gentamicin sulfate
5078                                                                                                milbemycin oxime, spinosad
5122                                                                                              ivermectin, pyrantel pamoate
5123                                                                                                                afoxolaner
5127                                                                                            polysulfated glycosaminoglycan
5134                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5140                                                                                        amoxicillin, clavulanate potassium
5159                                                                                        joint supplement (glucosamine hcl)
5160                                                                                                                   omega 3
5161                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5173                                                                                              ivermectin, pyrantel pamoate
5174                                                                                                                afoxolaner
5191                                                                                                milbemycin oxime, spinosad
5193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5195                                                                                                  flumethrin, imidacloprid
5203                                                                                                                ivermectin
5210                                                                                                              ketoconazole
5211                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                               chlorhexidine gluconate, miconazole nitrate
5213                                                                                                    ear cleaner (otirinse)
5214                                                                                               lufenuron, milbemycin oxime
5220                                                                                         betamethasone, gentamicin sulfate
5221                                                                               chlorhexidine gluconate, miconazole nitrate
5222                                                                                                  imidacloprid, permethrin
5223                                                                                               lufenuron, milbemycin oxime
5225                                                                                               lufenuron, milbemycin oxime
5234                                                                                  febantel, praziquantel, pyrantel pamoate
5235                                                                                               lufenuron, milbemycin oxime
5243                                                                                               lufenuron, milbemycin oxime
5244                                                                                                imidacloprid, pyriproxyfen
5247                                                                                            milbemycin oxime, praziquantel
5248                                                                                                  imidacloprid, permethrin
5253                                                                                              ivermectin, pyrantel pamoate
5255                                                                                               lufenuron, milbemycin oxime
5256                                                                                               lufenuron, milbemycin oxime
5257                                                                                               lufenuron, milbemycin oxime
5258                                                                                               lufenuron, milbemycin oxime
5261                                                                                               lufenuron, milbemycin oxime
5262                                                                                  febantel, praziquantel, pyrantel pamoate
5264                                                                                                imidacloprid, pyriproxyfen
5265                                                                                                          milbemycin oxime
5270                                                                                            milbemycin oxime, praziquantel
5271                                                                                                  imidacloprid, permethrin
5289                                                                                                          milbemycin oxime
5332                                                                                                                   amitraz
5333                                                                                                                   omega 3
5334                                                                                              ivermectin, pyrantel pamoate
5335                                                                                                                   amitraz
5336                                                                                                  urinary tract supplement
5337                                                                                              ivermectin, pyrantel pamoate
5340                                                                                              ivermectin, pyrantel pamoate
5354                                                                                                  flumethrin, imidacloprid
5357                                                                              dexamethasone, neomycin sulfate, polymyxin b
5359                                                                                              ivermectin, pyrantel pamoate
5360                                                                                              ivermectin, pyrantel pamoate
5362                                                                            attapulgite, bismuth subcarbonate, kanamycin a
5369                                                                                              ivermectin, pyrantel pamoate
5377                                                                                              ivermectin, pyrantel pamoate
5378                                                                                                  fipronil, (s)-methoprene
5379                                                                                                                ivermectin
5384                                                                                                          milbemycin oxime
5385                                                                                                  fipronil, (s)-methoprene
5386                                                                                              ivermectin, pyrantel pamoate
5387                                                                                                          milbemycin oxime
5388                                                                                     dinotefuran, permethrin, pyriproxyfen
5391                                                                                                                afoxolaner
5392                                                                                              ivermectin, pyrantel pamoate
5403                                                                                                          milbemycin oxime
5424                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5428                                                                                         betamethasone, gentamicin sulfate
5440                                                                                                                   omega 3
5460                                        chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5464                                                                                                milbemycin oxime, spinosad
5483                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                   omega 3
5491                                                                                                  fipronil, (s)-methoprene
5492                                                                                                                ivermectin
5497                                                                                              ivermectin, pyrantel pamoate
5498                                                                                              ivermectin, pyrantel pamoate
5499                                                                                                  fipronil, (s)-methoprene
5500                                                                                              ivermectin, pyrantel pamoate
5501                                                                                                   chlorhexidine gluconate
5502                                                                                                     rattlesnake antivenin
5507                                                                                              ivermectin, pyrantel pamoate
5508                                                                                              ivermectin, pyrantel pamoate
5509                                                                                              ivermectin, pyrantel pamoate
5511                                                                                              ivermectin, pyrantel pamoate
5513                                                                                              ivermectin, pyrantel pamoate
5527                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                    cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                   triamcinolone acetonide
5533                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                              ivermectin, pyrantel pamoate
5535                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5537                                                                                                   triamcinolone acetonide
5541                                                                                              ivermectin, pyrantel pamoate
5542                                                                                    cyphenothrin, fipronil, (s)-methoprene
5545                                                                                              ivermectin, pyrantel pamoate
5546                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5552                                                                                              ivermectin, pyrantel pamoate
5553                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5557                                                                                              ivermectin, pyrantel pamoate
5568                                                                                               lufenuron, milbemycin oxime
5571                                                                                               lufenuron, milbemycin oxime
5576                                                                                               lufenuron, milbemycin oxime
5577                                                                                                              deltamethrin
5578                                                                                               lufenuron, milbemycin oxime
5595                                                                                               lufenuron, milbemycin oxime
5600                                                                                               lufenuron, milbemycin oxime
5602                                                                                               lufenuron, milbemycin oxime
5607                                                                                               lufenuron, milbemycin oxime
5626                                                                                              ivermectin, pyrantel pamoate
5627                                                                                              ivermectin, pyrantel pamoate
5628                                                                                                                afoxolaner
5629                                                                                              ivermectin, pyrantel pamoate
5630                                                                                                                afoxolaner
5631                                                                                                                ivermectin
5632                                                                                                                afoxolaner
5649                                                                                                                 probiotic
5681                                                                                                                afoxolaner
5682                                                                                                          milbemycin oxime
5695                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5721                                                                                                milbemycin oxime, spinosad
5722                                                                                                milbemycin oxime, spinosad
5723                                                                                                milbemycin oxime, spinosad
5724                                                                                                milbemycin oxime, spinosad
5725                                                                                                milbemycin oxime, spinosad
5728                                                                                                milbemycin oxime, spinosad
5729                                                                            mometasone furoate, orbifloxacin, posaconazole
5731                                                                              florfenicol, mometasone furoate, terbinafine
5747                                                                                              ivermectin, pyrantel pamoate
5760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5762                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5768                                                                                                                ivermectin
5771                                                                                                          milbemycin oxime
5777                                                                                                          melanoma vaccine
5804                                                                                                          milbemycin oxime
5814                                                                                                          tylosin tartrate
5834                                                                                              ivermectin, pyrantel pamoate
5839                                                                                               lufenuron, milbemycin oxime
5840                                                                                               lufenuron, milbemycin oxime
5858                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
5869                                                                                              ivermectin, pyrantel pamoate
5877                                                                                  febantel, praziquantel, pyrantel pamoate
5884                                                                                     chlorhexidine gluconate, ketoconazole
5887                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5913                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5917                                                                            dexamethasone, neomycin sulfate, thiabendazole
5930                                                                                              ivermectin, pyrantel pamoate
5932                                                                                                              cyclosporine
5933                                                                                                                fluralaner
5934                                                                                              ivermectin, pyrantel pamoate
5935                                                                                                      prednisolone acetate
5936                                                                                              ivermectin, pyrantel pamoate
5937                                                                                                                fluralaner
5941                                                                                              ivermectin, pyrantel pamoate
5942                                                                                                                fluralaner
5945                                                                               hydroquinone, mometasone furoate, tretinoin
5963                                                                                               lufenuron, milbemycin oxime
5964                                                                                                                afoxolaner
5965                                                                                               lufenuron, milbemycin oxime
5967                                                                                               lufenuron, milbemycin oxime
5976                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5980                                                                                                                  spinosad
5981                                                                                    joint supplement (glucosamine hcl/msm)
5988                                                                                                                  spinosad
5991                                                                                                  fipronil, (s)-methoprene
5992                                                                                              ivermectin, pyrantel pamoate
5993                                                                                              ivermectin, pyrantel pamoate
5994                                                                                    fipronil, pyriproxyfen, (s)-methoprene
6000                                                                                               lufenuron, milbemycin oxime
6002                                                                                                imidacloprid, pyriproxyfen
6003                                                                                               lufenuron, milbemycin oxime
6004                                                                                                imidacloprid, pyriproxyfen
6014                                                                                               lufenuron, milbemycin oxime
6015                                                                                                                afoxolaner
6016                                                                                                                afoxolaner
6017                                                                                               lufenuron, milbemycin oxime
6036                                                                                                milbemycin oxime, spinosad
6038                                                                                               lufenuron, milbemycin oxime
6039                                                                                              ivermectin, pyrantel pamoate
6059                                                                                              ivermectin, pyrantel pamoate
6063                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6068                                                                                              ivermectin, pyrantel pamoate
6069                                                                                     dinotefuran, permethrin, pyriproxyfen
6071                                                                                                                ivermectin
6072                                                                                                  flumethrin, imidacloprid
6076                                                                                                  flumethrin, imidacloprid
6078                                                                                                  flumethrin, imidacloprid
6088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6090                                                                           betamethasone, clotrimazole, gentamicin sulfate
6093                                                                                 lufenuron, milbemycin oxime, praziquantel
6095                                                                                         betamethasone, gentamicin sulfate
6101                                                                                               lufenuron, milbemycin oxime
6102                                                                           betamethasone, clotrimazole, gentamicin sulfate
6104                                                                                               lufenuron, milbemycin oxime
6109                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6129                                                                                              ivermectin, pyrantel pamoate
6130                                                                                                                afoxolaner
6132                                                                                              ivermectin, pyrantel pamoate
6133                                                                                                                afoxolaner
6134                                                                                                          milbemycin oxime
6135                                                                                                                 sarolaner
6136                                                                                                          milbemycin oxime
6137                                                                                                                 sarolaner
6139                                                                                                          milbemycin oxime
6140                                                                                                                 sarolaner
6148                                                                                                milbemycin oxime, spinosad
6149                                                                                                milbemycin oxime, spinosad
6150                                                                                                milbemycin oxime, spinosad
6161                                                                                               lufenuron, milbemycin oxime
6164                                                                                                        miconazole nitrate
6200                                                                                                                 sarolaner
6202                                                                                                                afoxolaner
6206                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6208                                                                           betamethasone, clotrimazole, gentamicin sulfate
6217                                                                              florfenicol, mometasone furoate, terbinafine
6218                                                                                                             laser therapy
6221                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
6224                                                                                                          milbemycin oxime
6225                                                                                                                 sarolaner
6226                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6231                                                                                            milbemycin oxime, praziquantel
6232                                                                                                                 sarolaner
6244                                                                              florfenicol, mometasone furoate, terbinafine
6254                                                                                                                ivermectin
6257                                                                                                                selamectin
6258                                                                                              ivermectin, pyrantel pamoate
6262                                                                                                                ivermectin
6263                                                                                                                afoxolaner
6266                                                                                   betamethasone, florfenicol, terbinafine
6267                                                                                            ketoconazole, phytosphingosine
6275                                                                                                       silver sulfadiazine
6282                                                                                              ivermectin, pyrantel pamoate
6283                                                                                                    indoxacarb, permethrin
6284                                                                                                                   omega 3
6293                                                                                                                afoxolaner
6302                                                                                                                ivermectin
6307                                                                                        amoxicillin, clavulanate potassium
6312                                                                           dexamethasone, enrofloxacin, miconazole nitrate
6319                                                                                     chlorhexidine gluconate, ketoconazole
6320                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6325                                                                                               lufenuron, milbemycin oxime
6326                                                                                     dinotefuran, permethrin, pyriproxyfen
6328                                                                                    joint supplement (glucosamine hcl/msm)
6329                                                                                               lufenuron, milbemycin oxime
6331                                                                                               lufenuron, milbemycin oxime
6341                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6343                                                                                                                ivermectin
6358                                                                                                   chlorhexidine gluconate
6390                                                                                                               doxycycline
6395                                                                                        fipronil, permethrin, pyriproxyfen
6405                                                                                                  fipronil, (s)-methoprene
6406                                                                                                  flumethrin, imidacloprid
6411                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
6437                                                                                              ivermectin, pyrantel pamoate
6441                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6444                                                                                              ivermectin, pyrantel pamoate
6451                                                                            mometasone furoate, orbifloxacin, posaconazole
6459                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6461                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6474                                                                                              ivermectin, pyrantel pamoate
6475                                                                                                                fluralaner
6486                                                                                            milbemycin oxime, praziquantel
6495                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6499                                                                                              ivermectin, pyrantel pamoate
6500                                                                                                                 sarolaner
6522                                                                                               lufenuron, milbemycin oxime
6523                                                                                                                afoxolaner
6527                                                                                               lufenuron, milbemycin oxime
6528                                                                                                                afoxolaner
6555                                                                                               lufenuron, milbemycin oxime
6562                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6565                                                                                              ivermectin, pyrantel pamoate
6569                                                                                                                ivermectin
6570                                                                                                  fipronil, (s)-methoprene
6571                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6573                                                                                                  fipronil, (s)-methoprene
6579                                                                                                                fluralaner
6581                                                                                              ivermectin, pyrantel pamoate
6594                                                                                               lufenuron, milbemycin oxime
6602                                                                                               lufenuron, milbemycin oxime
6606                                                                                              ivermectin, pyrantel pamoate
6612                                                                                                          milbemycin oxime
6625                                                                                                          milbemycin oxime
6636                                                                                               lufenuron, milbemycin oxime
6644                                                                                               lufenuron, milbemycin oxime
6647                                                                                               lufenuron, milbemycin oxime
6648                                                                                                                 sarolaner
6650                                                                                         betamethasone, gentamicin sulfate
6657                                                                                              ivermectin, pyrantel pamoate
6658                                                                                              ivermectin, pyrantel pamoate
6662                                                                                              ivermectin, pyrantel pamoate
6663                                                                                              ivermectin, pyrantel pamoate
6680                                                                                                  imidacloprid, moxidectin
6683                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6687                                                                                                                ivermectin
6688                                                                                                  fipronil, (s)-methoprene
6693                                                                                                                ivermectin
6694                                                                                         trimeprazine tartrate, prednisone
6696                                                                                                                ivermectin
6697                                                                                                  fipronil, (s)-methoprene
6698                                                                                              ivermectin, pyrantel pamoate
6702                                                                                                                ivermectin
6703                                                                                                  fipronil, (s)-methoprene
6714                                                                                                                  diazepam
6715                                                                                               lufenuron, milbemycin oxime
6716                                                                                                        calming supplement
6717                                                                                                               shen calmer
6733                                                                                              ivermectin, pyrantel pamoate
6751                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6759                                                                           betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                              ivermectin, pyrantel pamoate
6763                                                                                              ivermectin, pyrantel pamoate
6764                                                                                                  fipronil, (s)-methoprene
6778                                                                                               lufenuron, milbemycin oxime
6779                                                                                               lufenuron, milbemycin oxime
6781                                                                                               lufenuron, milbemycin oxime
6783                                                                                            milbemycin oxime, praziquantel
6786                                                                                                imidacloprid, pyriproxyfen
6796                                                                                               lufenuron, milbemycin oxime
6797                                                                                                          milbemycin oxime
6815                                                                                                                ivermectin
6816                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6824                                                                                            polysulfated glycosaminoglycan
6826                                                                                                                grapiprant
6828                                                                                               lufenuron, milbemycin oxime
6868                                                                                                                isoflurane
6880                                                                                                                isoflurane
6886                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6891                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6909                                                                                                                ivermectin
6910                                                                                ivermectin, praziquantel, pyrantel pamoate
6928                                                                                     chlorhexidine gluconate, ketoconazole
6934                                                                          chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                      burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                           ear cleaner (epi-otic advanced)
6946                                                                                                milbemycin oxime, spinosad
6956                                                                                                                 mupirocin
6957                                                                                                                lokivetmab
6981                                                                                                                fluralaner
6982                                                                                                                ivermectin
6983                                                                                                                ivermectin
6984                                                                                                                 probiotic
6986                                                                                                               clindamycin
7002                                                                                                milbemycin oxime, spinosad
7005                                                                                                              ketoconazole
7006                                                                                                unspecified shampoo/mousse
7017                                                                                                                 sarolaner
7021                                                                                                                 sarolaner
7025                                                                            mometasone furoate, orbifloxacin, posaconazole
7027                                                                              dexamethasone, neomycin sulfate, polymyxin b
7030                                                                                                          milbemycin oxime
7042                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7054                                                                                              ivermectin, pyrantel pamoate
7067                                                                                               lufenuron, milbemycin oxime
7071                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7092                                                                                         betamethasone, gentamicin sulfate
7093                                                                                                milbemycin oxime, spinosad
7095                                                                                                milbemycin oxime, spinosad
7096                                                                                                milbemycin oxime, spinosad
7116                                                                           dexamethasone, enrofloxacin, miconazole nitrate
7127                                                                                        chlorhexidine gluconate, tris-edta
7130                                                                                                milbemycin oxime, spinosad
7131                                                                                              ivermectin, pyrantel pamoate
7137                                                 digestive supplement, immune support supplement, skin and coat supplement
7149                                                                                                milbemycin oxime, spinosad
7151                                                                              dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                 probiotic
7153                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                       ear cleaner (zymox), hydrocortisone
7155                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7172                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                   acetic acid, boric acid
7175                                                                                                                 mupirocin
7177                                                                                         betamethasone, gentamicin sulfate
7180                                                                                         betamethasone, gentamicin sulfate
7189                                                                                         betamethasone, gentamicin sulfate
7208                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7218                                                                                                milbemycin oxime, spinosad
7243                                                                                              ivermectin, pyrantel pamoate
7247                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                afoxolaner
7249                                                                                              ivermectin, pyrantel pamoate
7260                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                              ivermectin, pyrantel pamoate
7262                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7291                                                                                                                 sarolaner
7295                                                                                                                 sarolaner
7297                                                                                                  joint supplement (other)
7320                                                                                              ivermectin, pyrantel pamoate
7342                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7344                                                                                                                ivermectin
7345                                                                                                                ivermectin
7346                                                                                                  fipronil, (s)-methoprene
7371                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7413                                                                                              ivermectin, pyrantel pamoate
7499                                                                                              ivermectin, pyrantel pamoate
7503                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7510                                                                                                                ivermectin
7511                                                                                                                afoxolaner
7512                                                                                                              multivitamin
7513                                                                                                               omega 3-6-9
7519                                                                                              ivermectin, pyrantel pamoate
7521                                                                                              ivermectin, pyrantel pamoate
7524                                                                                                               omega 3-6-9
7525                                                                                              ivermectin, pyrantel pamoate
7526                                                                                                                afoxolaner
7551                                                                                                                afoxolaner
7555                                                                                                                fluralaner
7563                                                                                              ivermectin, pyrantel pamoate
7564                                                                                                          phytosphingosine
7565                                                                                              ivermectin, pyrantel pamoate
7566                                                                                              ivermectin, pyrantel pamoate
7576                                                                                                  fipronil, (s)-methoprene
7577                                                                                               lufenuron, milbemycin oxime
7578                                                                                               lufenuron, milbemycin oxime
7579                                                                                                                cephalexin
7580                                                                                                                 carprofen
7583                                                                                               lufenuron, milbemycin oxime
7584                                                                                               lufenuron, milbemycin oxime
7585                                                                                                                 probiotic
7586                                                                                                           cbd or hemp oil
7587                                                                                                 immune support supplement
7588                                                                                                                   omega 3
7589                                                                                toothpaste/dental health solution or chews
7590                                                                                                                     algae
7598                                                                                        chlorhexidine gluconate, ophytrium
7635                                                                                dextromethorphan hydrobromide, guaifenesin
7660                                                                                               lufenuron, milbemycin oxime
7671                                                                                   transcranial magnetic stimulation (tms)
7673                                                                                                          pyrantel pamoate
7674                                                                                                          sulfadimethoxine
7675                                                                                                milbemycin oxime, spinosad
7678                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                   ketoconazole, tris-edta
7681                                                                                                milbemycin oxime, spinosad
7692                                                                                            milbemycin oxime, praziquantel
7696                                                                                            milbemycin oxime, praziquantel
7699                                                                                            milbemycin oxime, praziquantel
7701                                                                                            milbemycin oxime, praziquantel
7705                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7732                                                                                ivermectin, praziquantel, pyrantel pamoate
7742                                                                                              ivermectin, pyrantel pamoate
7743                                                                                                  fipronil, (s)-methoprene
7746                                                                                              ivermectin, pyrantel pamoate
7747                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                   omega 3
7749                                                                                              ivermectin, pyrantel pamoate
7750                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                       ear cleaner (zymox), hydrocortisone
7754                                                                                                                 carvacrol
7759                                                                                     dinotefuran, permethrin, pyriproxyfen
7763                                                                                              ivermectin, pyrantel pamoate
7772                                                                                                                 probiotic
7776                                                                                                                 vitamin d
7783                                                                                                                  fipronil
7784                                                                                               lufenuron, milbemycin oxime
7795                                                                                                                   omega 3
7812                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7818                                                                                         trimeprazine tartrate, prednisone
7820                                                                                         betamethasone, gentamicin sulfate
7822                                                                                         betamethasone, gentamicin sulfate
7832                                                                                                  fipronil, (s)-methoprene
7839                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7845                                                                                                       ear cleaner (zymox)
7846                                                                            mometasone furoate, orbifloxacin, posaconazole
7848                                                                                                    unspecified medication
7852                                                                                                               hydrocodone
7853                                                                                                         albuterol sulfate
7854                                                                                                        maropitant citrate
7862                                                                                                                    arnica
7883                                                                                                          milbemycin oxime
7884                                                                                                                afoxolaner
7887                                                                              florfenicol, mometasone furoate, terbinafine
7889                                                                              florfenicol, mometasone furoate, terbinafine
7895                                                                                dimethyl sulfoxide, fluocinolone acetonide
7926                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7929                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7944                                                                                                   acetic acid, boric acid
7946                                                                                                          phytosphingosine
7961                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7966                                                                                              ivermectin, pyrantel pamoate
7967                                                                                                                afoxolaner
7968                                                                                              ivermectin, pyrantel pamoate
7969                                                                                                                afoxolaner
7970                                                                                        amoxicillin, clavulanate potassium
7973                                                                                              ofloxacin, unspecified nsaid
7987                                                                                                milbemycin oxime, spinosad
7988                                                                                              ivermectin, pyrantel pamoate
7993                                                                                                                selamectin
7995                                                                                            polysulfated glycosaminoglycan
7998                                                                                                                selamectin
8000                                                                                                                selamectin
8009                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8012                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8014                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8017                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8029                                                                                              ivermectin, pyrantel pamoate
8030                                                                                              ivermectin, pyrantel pamoate
8040                                                                                              ivermectin, pyrantel pamoate
8042                                                                                               lufenuron, milbemycin oxime
8043                                                                                            milbemycin oxime, praziquantel
8044                                                                                            milbemycin oxime, praziquantel
8045                                                                                                          milbemycin oxime
8075                                                                                                        calming supplement
8086                                                                           betamethasone, clotrimazole, gentamicin sulfate
8091                                                                                        amoxicillin, clavulanate potassium
8098                                                                                                  fipronil, (s)-methoprene
8099                                                                                            milbemycin oxime, praziquantel
8120                                                                                                                ivermectin
8121                                                                                                                ivermectin
8123                                                                                                                ivermectin
8125                                                                                            joint supplement (unspecified)
8128                                                                                                   ketoconazole, tris-edta
8130                                                                                              ivermectin, pyrantel pamoate
8131                                                                                                                afoxolaner
8136                                                                                            milbemycin oxime, praziquantel
8137                                                                                                                 lotilaner
8138                                                                                                          milbemycin oxime
8139                                                                                                                 lotilaner
8140                                                                                                   ketoconazole, tris-edta
8160                                                                                                                 probiotic
8182                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8184                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                              ivermectin, pyrantel pamoate
8186                                                                                              ivermectin, pyrantel pamoate
8187                                                                                              ivermectin, pyrantel pamoate
8188                                                                                                                afoxolaner
8195                                                                                              ivermectin, pyrantel pamoate
8196                                                                                                                afoxolaner
8205                                                                                                                  fipronil
8206                                                                                 lufenuron, milbemycin oxime, praziquantel
8207                                                                                 lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                  fipronil
8209                                                                                               lufenuron, milbemycin oxime
8210                                                                                               lufenuron, milbemycin oxime
8211                                                                                                      fipronil, permethrin
8212                                                                                               lufenuron, milbemycin oxime
8215                                                                                                      fipronil, permethrin
8221                                                                                                                ivermectin
8222                                                                                                                ivermectin
8223                                                                                                                ivermectin
8224                                                                                              ivermectin, pyrantel pamoate
8234                                                                            dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                   chlorhexidine gluconate
8238                                                                                                   chlorhexidine gluconate
8248                                                                                                                fluralaner
8251                                                                                                             metronidazole
8252                                                                                         betamethasone, gentamicin sulfate
8280                                                                                                                isoflurane
8284                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8293                                                                                         betamethasone, gentamicin sulfate
8296                                                                                              ivermectin, pyrantel pamoate
8297                                                                                                  fipronil, (s)-methoprene
8298                                                                                       ear cleaner (zymox), hydrocortisone
8314                                                                                              ivermectin, pyrantel pamoate
8315                                                                                                imidacloprid, pyriproxyfen
8337                                                                                                             cephalosporin
8338                                                                                                                prednisone
8349                                                                                     dinotefuran, permethrin, pyriproxyfen
8354                                                                                               lufenuron, milbemycin oxime
8355                                                                                        fipronil, permethrin, pyriproxyfen
8358                                                                                               lufenuron, milbemycin oxime
8359                                                                                                                fluralaner
8362                                                                                               chloroxylenol, ketoconazole
8369                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                               lufenuron, milbemycin oxime
8371                                                                                                                 sarolaner
8376                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                               lufenuron, milbemycin oxime
8378                                                                                                                 sarolaner
8389                                                                                              ivermectin, pyrantel pamoate
8408                                                                                              ivermectin, pyrantel pamoate
8410                                                                                                                ivermectin
8418                                                                                                                isoflurane
8420                                                                                                                ivermectin
8421                                                                                                                ivermectin
8424                                                                                                imidacloprid, pyriproxyfen
8425                                                                                              ivermectin, pyrantel pamoate
8427                                                                                              ivermectin, pyrantel pamoate
8435                                                                                                                 probiotic
8436                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8440                                                                                                  fipronil, (s)-methoprene
8454                                                                                                          milbemycin oxime
8466                                                                                               lufenuron, milbemycin oxime
8467                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8475                                                                                                   chlorhexidine gluconate
8478                                                                                                   chlorhexidine gluconate
8509                                                                                                                 probiotic
8514                                                                                               lufenuron, milbemycin oxime
8515                                                                                               lufenuron, milbemycin oxime
8528                                                                                            milbemycin oxime, praziquantel
8531                                                                                            milbemycin oxime, praziquantel
8541                                                                                                        miconazole nitrate
8550                                                                                ivermectin, praziquantel, pyrantel pamoate
8554                                                                                                          milbemycin oxime
8555                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8578                                                                                                   acetic acid, boric acid
8581                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                               lufenuron, milbemycin oxime
8583                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                       ear cleaner (zymox), hydrocortisone
8585                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
8588                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8591                                                                                                milbemycin oxime, spinosad
8607                                                                                                imidacloprid, pyriproxyfen
8609                                                                                               lufenuron, milbemycin oxime
8613                                                                                         betamethasone, gentamicin sulfate
8673                                                                                                milbemycin oxime, spinosad
8674                                                                                                milbemycin oxime, spinosad
8675                                                                                                milbemycin oxime, spinosad
8676                                                                                                milbemycin oxime, spinosad
8677                                                                                                milbemycin oxime, spinosad
8694                                                                                                  fipronil, (s)-methoprene
8697                                                                                       allergy immunotherapy - unspecified
8702                                                                                                  fipronil, (s)-methoprene
8707                                                                                                  fipronil, (s)-methoprene
8731                                                                                                  flumethrin, imidacloprid
8735                                                                                                                 mupirocin
8736                                                                                     chlorhexidine gluconate, ketoconazole
8744                                                                                                                 mupirocin
8745                                                                                     chlorhexidine gluconate, ketoconazole
8756                                                                                                          milbemycin oxime
8757                                                                                                          milbemycin oxime
8759                                                                                                imidacloprid, pyriproxyfen
8760                                                                                               lufenuron, milbemycin oxime
8768                                                                                              ivermectin, pyrantel pamoate
8769                                                                                     dinotefuran, permethrin, pyriproxyfen
8770                                                                                              ivermectin, pyrantel pamoate
8771                                                                                     dinotefuran, permethrin, pyriproxyfen
8777                                                                                              ivermectin, pyrantel pamoate
8778                                                                                              ivermectin, pyrantel pamoate
8779                                                                                     dinotefuran, permethrin, pyriproxyfen
8780                                                                                              ivermectin, pyrantel pamoate
8781                                                                                     dinotefuran, permethrin, pyriproxyfen
8786                                                                                              ivermectin, pyrantel pamoate
8790                                                                                              ivermectin, pyrantel pamoate
8791                                                                                                                fluralaner
8792                                                                                                   ketoconazole, tris-edta
8793                                                                                                                fluralaner
8794                                                                                              ivermectin, pyrantel pamoate
8795                                                                                              ivermectin, pyrantel pamoate
8797                                                                                                                gabapentin
8805                                                                                                                ivermectin
8815                                                                              dexamethasone, neomycin sulfate, polymyxin b
8819                                                                                              ivermectin, pyrantel pamoate
8820                                                                                                                afoxolaner
8825                                                                                        amoxicillin, clavulanate potassium
8826                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
8828                                                                                              ivermectin, pyrantel pamoate
8831                                                                                              ivermectin, pyrantel pamoate
8833                                                                                              ivermectin, pyrantel pamoate
8837                                                                                                                afoxolaner
8843                                                                                                  fipronil, (s)-methoprene
8851                                                                                                                 probiotic
8852                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
8860                                                                           betamethasone, clotrimazole, gentamicin sulfate
8875                                                                                                                lokivetmab
8876                                                                                         betamethasone, gentamicin sulfate
8877                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8879                                                                                              ivermectin, pyrantel pamoate
8885                                                                                              ivermectin, pyrantel pamoate
8908                                                                                                milbemycin oxime, spinosad
8911                                                                                               lufenuron, milbemycin oxime
8929                                                                                ivermectin, praziquantel, pyrantel pamoate
8930                                                                                ivermectin, praziquantel, pyrantel pamoate
8961                                                                                ivermectin, praziquantel, pyrantel pamoate
8962                                                                                ivermectin, praziquantel, pyrantel pamoate
9026                                                                                            milbemycin oxime, praziquantel
9046                                                                                               lufenuron, milbemycin oxime
9047                                                                           betamethasone, clotrimazole, gentamicin sulfate
9050                                                                                               lufenuron, milbemycin oxime
9052                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                 probiotic
9054                                                                                                          milbemycin oxime
9055                                                                                              ivermectin, pyrantel pamoate
9056                                                                                            milbemycin oxime, praziquantel
9060                                                                                              ivermectin, pyrantel pamoate
9064                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                sucralfate
9070                                                                                              ivermectin, pyrantel pamoate
9071                                                                                                                fluralaner
9084                                                                                                    unspecified medication
9094                                                                                                milbemycin oxime, spinosad
9095                                                                                              ivermectin, pyrantel pamoate
9098                                                                                              ivermectin, pyrantel pamoate
9099                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                 probiotic
9101                                                                                                                   omega 3
9109                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9118                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9132                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9135                                                                                                             metronidazole
9136                                                                                          burow's solution, hydrocortisone
9137                                                                                                      cefpodoxime proxetil
9156                                                                           betamethasone, clotrimazole, gentamicin sulfate
9160                                                                                                  fipronil, (s)-methoprene
9161                                                                                              ivermectin, pyrantel pamoate
9170                                                                                                          milbemycin oxime
9187                                                                                         betamethasone, gentamicin sulfate
9189                                                                                              ivermectin, pyrantel pamoate
9193                                                                                                                 probiotic
9202                                                                                              ivermectin, pyrantel pamoate
9230                                                                                           ear cleaner (epi-otic advanced)
9236                                                                                              ivermectin, pyrantel pamoate
9239                                                                                       allergy immunotherapy - unspecified
9240                                                                                            unspecified allergy medication
9241                                                                                             allergy immunotherapy - drops
9242                                                                                              ivermectin, pyrantel pamoate
9244                                                                                       allergy immunotherapy - unspecified
9252                                                                                                                ivermectin
9253                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                              ivermectin, pyrantel pamoate
9259                                                                                                                afoxolaner
9267                                                                                                          milbemycin oxime
9269                                                                                              ivermectin, pyrantel pamoate
9271                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9292                                                                                                milbemycin oxime, spinosad
9294                                                                                                milbemycin oxime, spinosad
9295                                                                                                milbemycin oxime, spinosad
9297                                                                                                                   omega 3
9386                                                                                              ivermectin, pyrantel pamoate
9387                                                                                     dinotefuran, permethrin, pyriproxyfen
9416                                                                                                   acetic acid, boric acid
9418                                                                                                          phytosphingosine
9421                                                                                                  flumethrin, imidacloprid
9422                                                                                              ivermectin, pyrantel pamoate
9426                                                                                              ivermectin, pyrantel pamoate
9429                                                       bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9432                                                                                                  flumethrin, imidacloprid
9433                                                                                              ivermectin, pyrantel pamoate
9434                                                                                              ivermectin, pyrantel pamoate
9435                                                                                         allergy immunotherapy - injection
9436                                                                                              ivermectin, pyrantel pamoate
9438                                                                                         allergy immunotherapy - injection
9447                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9452                                                                                              ivermectin, pyrantel pamoate
9453                                                                                                  fipronil, (s)-methoprene
9454                                                                              dexamethasone, neomycin sulfate, polymyxin b
9494                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9511                                                                                        amoxicillin, clavulanate potassium
9516                                                                              dexamethasone, neomycin sulfate, polymyxin b
9524                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9544                                                                                                                afoxolaner
9546                                                                                                                afoxolaner
9548                                                                                                                 sarolaner
9549                                                                                                                afoxolaner
9584                                                                                                          milbemycin oxime
9588                                                                                                                 tris-edta
9592                                                                              dexamethasone, neomycin sulfate, polymyxin b
9596                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9600                                                                                               lufenuron, milbemycin oxime
9601                                                                                                                ivermectin
9602                                                                                                                 carprofen
9603                                                                                                                  tramadol
9604                                                                                               acepromazine, hydromorphone
9609                                                                                               lufenuron, milbemycin oxime
9610                                                                                                                fluralaner
9612                                                                           betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                         betamethasone, gentamicin sulfate
9614                                                                                     chlorhexidine gluconate, ketoconazole
9615                                                                                               lufenuron, milbemycin oxime
9616                                                                                                                fluralaner
9617                                                                                               lufenuron, milbemycin oxime
9618                                                                                                                fluralaner
9619                                                                                               lufenuron, milbemycin oxime
9620                                                                                                                fluralaner
9621                                                                                               lufenuron, milbemycin oxime
9635                                                                                                milbemycin oxime, spinosad
9640                                                                                                milbemycin oxime, spinosad
9641                                                                                                milbemycin oxime, spinosad
9643                                                                                                milbemycin oxime, spinosad
9718                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9723                                                                                              ivermectin, pyrantel pamoate
9759                                                                                              ivermectin, pyrantel pamoate
9760                                                                                                imidacloprid, pyriproxyfen
9761                                                                                              ivermectin, pyrantel pamoate
9763                                                                                                                ivermectin
9764                                                                                                                cetirizine
9765                                                                                                                afoxolaner
9766                                                                                                                ivermectin
9770                                                                                ivermectin, praziquantel, pyrantel pamoate
9785                                                                                              ivermectin, pyrantel pamoate
9791                                                                                                          milbemycin oxime
9800                                                                                                          milbemycin oxime
9807                                                                              dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                               latanoprost
9809                                                                                                               dorzolamide
9821                                                                                                                 probiotic
9826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9828                                                                                                               hydrocodone
9833                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9837                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9840                                                                                    dexamethasone, ketoconazole, tris-edta
9843                                                                                                                    arnica
9863                                                                                                        miconazole nitrate
9865                                                                                         betamethasone, gentamicin sulfate
9873                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9877                                                                                                                 carprofen
9884                                                                                                              cyclosporine
9889                                                                                                                ivermectin
9890                                                                                        fipronil, permethrin, pyriproxyfen
9891                                                                                                              cyclosporine
9892                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                afoxolaner
9894                                                                                                          milbemycin oxime
9895                                                                                                                afoxolaner
9896                                                                                                              cyclosporine
9897                                                                                                          milbemycin oxime
9898                                                                                                                afoxolaner
9899                                                                                            milbemycin oxime, praziquantel
9900                                                                                                                   omega 3
9901                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                afoxolaner
9903                                                                                                              cyclosporine
9907                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9917                                                                                                                ivermectin
9928                                                                                                           dexmedetomidine
9931                                                                                                                ivermectin
9935                                                                                                milbemycin oxime, spinosad
9942                                                                                                      rx diet - gi low fat
9943                                                                                                milbemycin oxime, spinosad
9944                                                                                                milbemycin oxime, spinosad
9945                                                                                              ivermectin, pyrantel pamoate
9963                                                                                                  imidacloprid, permethrin
9966                                                                                                imidacloprid, pyriproxyfen
9968                                                                                                imidacloprid, pyriproxyfen
9970                                                                                                   acetic acid, boric acid
9972                                                                                                imidacloprid, pyriproxyfen
10017                                                                                              lufenuron, milbemycin oxime
10026                                                                                              lufenuron, milbemycin oxime
10027                                                                                                 flumethrin, imidacloprid
10037                                                                                              dexamethasone, ketoconazole
10042                                                                             florfenicol, mometasone furoate, terbinafine
10053                                                                                              lufenuron, milbemycin oxime
10061                                                                                          ear cleaner (epi-otic advanced)
10063                                                                                                 flumethrin, imidacloprid
10066                                                                                                 flumethrin, imidacloprid
10075                                                                                                               ivermectin
10092                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                        betamethasone, gentamicin sulfate
10106                                                                                             ivermectin, pyrantel pamoate
10107                                                                                                 fipronil, (s)-methoprene
10108                                                                                             ivermectin, pyrantel pamoate
10109                                                                                                 fipronil, (s)-methoprene
10111                                                                                             ivermectin, pyrantel pamoate
10112                                                                                             ivermectin, pyrantel pamoate
10113                                                                                                 fipronil, (s)-methoprene
10115                                                                                             ivermectin, pyrantel pamoate
10116                                                                                                 fipronil, (s)-methoprene
10119                                                                                             ivermectin, pyrantel pamoate
10120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                probiotic
10130                                                                                                                 propofol
10131                                                                                                            buprenorphine
10132                                                                                                             acepromazine
10133                                                                                                         atropine sulfate
10134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10167                                                                                             ivermectin, pyrantel pamoate
10170                                                                                             ivermectin, pyrantel pamoate
10176                                                                          betamethasone, clotrimazole, gentamicin sulfate
10187                                                                          betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                        trimeprazine tartrate, prednisone
10195                                                                                                            metronidazole
10198                                                                                                 imidacloprid, permethrin
10200                                                                                                               fluralaner
10209                                                                                             ivermectin, pyrantel pamoate
10219                                                                                             ivermectin, pyrantel pamoate
10230                                                                                             ivermectin, pyrantel pamoate
10231                                                                                                               afoxolaner
10232                                                                                                               prednisone
10233                                                                                                          diphenhydramine
10234                                                                                                               cetirizine
10235                                                                                             ivermectin, pyrantel pamoate
10245                                                                                             ivermectin, pyrantel pamoate
10249                                                                                                 fipronil, (s)-methoprene
10260                                                                                                 flumethrin, imidacloprid
10264                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10273                                                                                             ivermectin, pyrantel pamoate
10274                                                                                                               afoxolaner
10275                                                                                             ivermectin, pyrantel pamoate
10276                                                                                                               afoxolaner
10301                                                                                              lufenuron, milbemycin oxime
10312                                                                                                               selamectin
10313                                                                                           praziquantel, pyrantel pamoate
10314                                                                                       amoxicillin, clavulanate potassium
10316                                                                                                            ciprofloxacin
10320                                                                                       amoxicillin, clavulanate potassium
10324                                                                                                               selamectin
10334                                                                                               milbemycin oxime, spinosad
10335                                                                                                               fluralaner
10345                                                                                                       calming supplement
10347                                                                                                 urinary tract supplement
10348                                                                                                            magnolia bark
10349                                                                                        betamethasone, gentamicin sulfate
10356                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10365                                                                                             ivermectin, pyrantel pamoate
10366                                                                                       fipronil, permethrin, pyriproxyfen
10370                                                                                             ivermectin, pyrantel pamoate
10372                                                                                                               ivermectin
10374                                                                                             ivermectin, pyrantel pamoate
10379                                                                                           milbemycin oxime, praziquantel
10400                                                                                                               ivermectin
10403                                                                                                 fipronil, (s)-methoprene
10405                                                                                                 fipronil, (s)-methoprene
10408                                                                                                         milbemycin oxime
10409                                                                                                         milbemycin oxime
10410                                                                                           milbemycin oxime, praziquantel
10412                                                                                                         milbemycin oxime
10429                                                                          betamethasone, clotrimazole, gentamicin sulfate
10435                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
10441                                                                                       chlorhexidine gluconate, ophytrium
10445                                                                                        betamethasone, gentamicin sulfate
10470                                                                                                                mupirocin
10477                                                                                               imidacloprid, pyriproxyfen
10478                                                                               ivermectin, praziquantel, pyrantel pamoate
10483                                                                                             ivermectin, pyrantel pamoate
10485                                                                                                               ivermectin
10487                                                                                                               ivermectin
10499                                                                                                         milbemycin oxime
10503                                                                                                         milbemycin oxime
10505                                                                                             ivermectin, pyrantel pamoate
10506                                                                               ivermectin, praziquantel, pyrantel pamoate
10529                                                                                                                mupirocin
10555                                                                                                                mupirocin
10557                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10565                                                                                        betamethasone, gentamicin sulfate
10573                                                      betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10575                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                          diphenhydramine
10577                                                                                                               famotidine
10578                                                                                                       maropitant citrate
10579                                                                                                            metronidazole
10580                                                                                                              vinblastine
10583                                                                                               milbemycin oxime, spinosad
10588                                                                                                               ivermectin
10589                                                                                             ivermectin, pyrantel pamoate
10590                                                                                             ivermectin, pyrantel pamoate
10591                                                                                             ivermectin, pyrantel pamoate
10610                                                                                             ivermectin, pyrantel pamoate
10618                                                                               ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                     cefpodoxime proxetil
10624                                                                                               imidacloprid, pyriproxyfen
10628                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10642                                                                                                  chlorhexidine gluconate
10653                                                                                               milbemycin oxime, spinosad
10655                                                                                             ivermectin, pyrantel pamoate
10667                                                                                              lufenuron, milbemycin oxime
10671                                                                                               imidacloprid, pyriproxyfen
10678                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10682                                                                                                         pyrantel pamoate
10683                                                                                              lufenuron, milbemycin oxime
10684                                                                                              lufenuron, milbemycin oxime
10685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                  omega 3
10687                                                                                                             multivitamin
10689                                                                                              lufenuron, milbemycin oxime
10693                                                                                                               cetirizine
10694                                                                                              lufenuron, milbemycin oxime
10696                                                                                                      ear cleaner (zymox)
10697 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10701                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10706                                                                                                         pyrantel pamoate
10707                                                                                              lufenuron, milbemycin oxime
10711                                                                                              lufenuron, milbemycin oxime
10712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                  omega 3
10714                                                                                                             multivitamin
10717                                                                                              lufenuron, milbemycin oxime
10718                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10725                                                                                              lufenuron, milbemycin oxime
10726 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                   unspecified medication
10740                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10743                                                                                                  chlorhexidine gluconate
10751                                                                                           ketoconazole, phytosphingosine
10755                                                                                             ivermectin, pyrantel pamoate
10756                                                                                                               ivermectin
10769                                                                                             ivermectin, pyrantel pamoate
10780                                                                                             ivermectin, pyrantel pamoate
10781                                                                                                               afoxolaner
10792                                                                                             ivermectin, pyrantel pamoate
10794                                                                                             ivermectin, pyrantel pamoate
10796                                                                                             ivermectin, pyrantel pamoate
10825                                                                                                 flumethrin, imidacloprid
10827                                                                                                 flumethrin, imidacloprid
10830                                                                                             ivermectin, pyrantel pamoate
10837                                                                                       amoxicillin, clavulanate potassium
10841                                                                                        trimeprazine tartrate, prednisone
10842                                                                                             ivermectin, pyrantel pamoate
10843                                                                                                               selamectin
10846                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10849                                                                                             ivermectin, pyrantel pamoate
10853                                                                                                                  amitraz
10863                                                                                        betamethasone, gentamicin sulfate
10865                                                                                             ivermectin, pyrantel pamoate
10866                                                                                       fipronil, permethrin, pyriproxyfen
10870                                                                                              lufenuron, milbemycin oxime
10871                                                                                                 fipronil, (s)-methoprene
10874                                                                                              lufenuron, milbemycin oxime
10877                                                                                             ivermectin, pyrantel pamoate
10878                                                                                                               afoxolaner
10892                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10896                                                                           mometasone furoate, orbifloxacin, posaconazole
10898                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10899                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10901                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10905                                                                                        betamethasone, gentamicin sulfate
10928                                                                                                               afoxolaner
10929                                                                                             ivermectin, pyrantel pamoate
10934                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10938                                                                                                         milbemycin oxime
10953                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10959                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10970                                                                                                         milbemycin oxime
10971                                                                                                               fluralaner
11003                                                                                             afoxolaner, milbemycin oxime
11008                                                                                             ivermectin, pyrantel pamoate
11009                                                                                             ivermectin, pyrantel pamoate
11010                                                                                                               ivermectin
11011                                                                                             ivermectin, pyrantel pamoate
11016                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11021                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
11035                                                                                             ivermectin, pyrantel pamoate
11036                                                                                                               afoxolaner
11037                                                                                             ivermectin, pyrantel pamoate
11038                                                                                                               afoxolaner
11065                                                                                              lufenuron, milbemycin oxime
11069                                                                                   joint supplement (glucosamine hcl/msm)
11070                                                                                              lufenuron, milbemycin oxime
11085                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11088                                                                                                          cbd or hemp oil
11093                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
11134                                                                                                 fipronil, (s)-methoprene
11142                                                                             florfenicol, mometasone furoate, terbinafine
11144                                                                                                  chlorhexidine gluconate
11145                                                                                                  ketoconazole, tris-edta
11152                                                                                              lufenuron, milbemycin oxime
11153                                                                                                 imidacloprid, permethrin
11155                                                                                              lufenuron, milbemycin oxime
11156                                                                                                 imidacloprid, permethrin
11158                                                                                lufenuron, milbemycin oxime, praziquantel
11159                                                                                             ivermectin, pyrantel pamoate
11163                                                                                             ivermectin, pyrantel pamoate
11165                                                                                             ivermectin, pyrantel pamoate
11182                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11186                                                                                             ivermectin, pyrantel pamoate
11189                                                                                             ivermectin, pyrantel pamoate
11208                                                                                              lufenuron, milbemycin oxime
11210                                                                                                                probiotic
11211                                                                                                   unspecified medication
11212                                                                                              lufenuron, milbemycin oxime
11213                                                                                                immune support supplement
11224                                                                                                               ivermectin
11228                                                                                             ivermectin, pyrantel pamoate
11229                                                                                             ivermectin, pyrantel pamoate
11233                                                                                                                probiotic
11241                                                                                               milbemycin oxime, spinosad
11242                                                                                              lufenuron, milbemycin oxime
11276                                                                                              lufenuron, milbemycin oxime
11291                                                                                             ivermectin, pyrantel pamoate
11292                                                                                                                 spinosad
11293                                                                                             ivermectin, pyrantel pamoate
11294                                                                                                               afoxolaner
11295                                                                                             ivermectin, pyrantel pamoate
11296                                                                                                               afoxolaner
11301                                                                                             ivermectin, pyrantel pamoate
11305                                                                                                 skin and coat supplement
11307                                                                                             ivermectin, pyrantel pamoate
11311                                                                                             ivermectin, pyrantel pamoate
11312                                                                                                                sarolaner
11315                                                                                             ivermectin, pyrantel pamoate
11316                                                                                                                sarolaner
11317                                                                                                              clindamycin
11318                                                                                                                firocoxib
11326                                                                                              lufenuron, milbemycin oxime
11327                                                                                               milbemycin oxime, spinosad
11338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11340                                                                               dextromethorphan hydrobromide, guaifenesin
11346                                                                                                      ear cleaner (zymox)
11349                                                                                                      ear cleaner (zymox)
11350                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                             ivermectin, pyrantel pamoate
11352                                                                                                               afoxolaner
11353                                                                                 febantel, praziquantel, pyrantel pamoate
11356                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11360                                                                                                                carprofen
11368                                                                                                         milbemycin oxime
11385                                                                                                               ivermectin
11386                                                                                                               ivermectin
11387                                                                                                             fenbendazole
11388                                                                                                             fenbendazole
11394                                                                                                               benzocaine
11415                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11436                                                                                lufenuron, milbemycin oxime, praziquantel
11437                                                                                              lufenuron, milbemycin oxime
11441                                                                                              lufenuron, milbemycin oxime
11464                                                                                      ear cleaner (zymox), hydrocortisone
11470                                                                                                               isoflurane
11471                                                                                                           dental sealant
11473                                                                                                               ivermectin
11477                                                                                             ivermectin, pyrantel pamoate
11493                                                                                       joint supplement (glucosamine hcl)
11509                                                                               ivermectin, praziquantel, pyrantel pamoate
11536                                                                                              lufenuron, milbemycin oxime
11537                                                                                              lufenuron, milbemycin oxime
11538                                                                                              lufenuron, milbemycin oxime
11545                                                                                              lufenuron, milbemycin oxime
11546                                                                                              lufenuron, milbemycin oxime
11547                                                                                              lufenuron, milbemycin oxime
11551                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11560                                                                                             ivermectin, pyrantel pamoate
11561                                                                                             ivermectin, pyrantel pamoate
11562                                                                                                               afoxolaner
11564                                                                               toothpaste/dental health solution or chews
11567                                                                                             ivermectin, pyrantel pamoate
11568                                                                                                               afoxolaner
11570                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11575                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                  omega 3
11577                                                                                                                probiotic
11578                                                                                            unspecified vision supplement
11589                                                                                                               ivermectin
11593                                                                                             ivermectin, pyrantel pamoate
11596                                                                                             ivermectin, pyrantel pamoate
11599                                                                                                 fipronil, (s)-methoprene
11600                                                                                             ivermectin, pyrantel pamoate
11620                                                                           mometasone furoate, orbifloxacin, posaconazole
11621                                                                             florfenicol, mometasone furoate, terbinafine
11627                                                                                                               ivermectin
11630                                                                                                               ivermectin
11633                                                                                             ivermectin, pyrantel pamoate
11637                                                                                                               afoxolaner
11641                                                                                                         milbemycin oxime
11651                                                                                                               ivermectin
11652                                                                                                 imidacloprid, permethrin
11653                                                                                               milbemycin oxime, spinosad
11654                                                                                              lufenuron, milbemycin oxime
11655                                                                                               milbemycin oxime, spinosad
11656                                                                                              lufenuron, milbemycin oxime
11660                                                                                lufenuron, milbemycin oxime, praziquantel
11661                                                                                lufenuron, milbemycin oxime, praziquantel
11662                                                                                                               fluralaner
11664                                                                                                               fluralaner
11666                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                        dexamethasone, miconazole nitrate
11671                                                                                  betamethasone, florfenicol, terbinafine
11673                                                                                                         phytosphingosine
11678                                                                                             ivermectin, pyrantel pamoate
11680                                                                                                 fipronil, (s)-methoprene
11681                                                                                             ivermectin, pyrantel pamoate
11683                                                                                             ivermectin, pyrantel pamoate
11691                                                                                              lufenuron, milbemycin oxime
11692                                                                          betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                          ear cleaner (epi-otic advanced)
11695                                                                                                  acetic acid, boric acid
11701                                                                                                               ivermectin
11702                                                                                             ivermectin, pyrantel pamoate
11709                                                                                       joint supplement (glucosamine hcl)
11710                                                                                                                   garlic
11719                                                                                              lufenuron, milbemycin oxime
11722                                                                                                          cbd or hemp oil
11723                                                                                                                   garlic
11735                                                                                                         milbemycin oxime
11741                                                                                                                  omega 3
11742                                                                                                               selamectin
11802                                                                                lufenuron, milbemycin oxime, praziquantel
11806                                         diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11812                                                                                              lufenuron, milbemycin oxime
11813                                                                                              lufenuron, milbemycin oxime
11814                                                                                               imidacloprid, pyriproxyfen
11817                                                                                              lufenuron, milbemycin oxime
11822                                                                                                               ivermectin
11823                                                                                                               ivermectin
11824                                                                                                 fipronil, (s)-methoprene
11825                                                                                                               afoxolaner
11832                                                                                             ivermectin, pyrantel pamoate
11833                                                                                             ivermectin, pyrantel pamoate
11835                                                                                             ivermectin, pyrantel pamoate
11836                                                                                             ivermectin, pyrantel pamoate
11837                                                                                                               afoxolaner
11840                                                                               dextromethorphan hydrobromide, guaifenesin
11844                                                                               dextromethorphan hydrobromide, guaifenesin
11846                                                                                               acetaminophen, hydrocodone
11847                                                                                             ivermectin, pyrantel pamoate
11848                                                                                             ivermectin, pyrantel pamoate
11850                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
11861                                                                                             ivermectin, pyrantel pamoate
11862                                                                                             ivermectin, pyrantel pamoate
11873                                                                                             ivermectin, pyrantel pamoate
11874                                                                                             ivermectin, pyrantel pamoate
11875                                                                                                               afoxolaner
11876                                                                                                                carprofen
11881                                                                                             ivermectin, pyrantel pamoate
11882                                                                                                               afoxolaner
11889                                                                                                         milbemycin oxime
11898                                                                                             ivermectin, pyrantel pamoate
11911                                                                                                              oclacitinib
11919                                                                                                                probiotic
11930                                                                                                                probiotic
11959                                                                                              lufenuron, milbemycin oxime
11960                                                                               toothpaste/dental health solution or chews
11962                                                                                              lufenuron, milbemycin oxime
11964                                                                                              lufenuron, milbemycin oxime
11978                                                                                                  triamcinolone acetonide
11979                                                                                                 fipronil, (s)-methoprene
11980                                                                                                 fipronil, (s)-methoprene
11983                                                                                                 fipronil, (s)-methoprene
11993                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12009                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                  ketoconazole, tris-edta
12014                                                                                                               ivermectin
12018                                                                                    dinotefuran, permethrin, pyriproxyfen
12019                                                                               ivermectin, praziquantel, pyrantel pamoate
12020                                                                               ivermectin, praziquantel, pyrantel pamoate
12043                                                                                                               gabapentin
12047                                                                                   joint supplement (glucosamine hcl/msm)
12048                                                                                       fipronil, permethrin, pyriproxyfen
12051                                                                                                                probiotic
12054                                                                                   joint supplement (glucosamine hcl/msm)
12090                                                                                                         milbemycin oxime
12108                                                                          betamethasone, clotrimazole, gentamicin sulfate
12111                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12128                                                                                                               fluralaner
12129                                                                                             ivermectin, pyrantel pamoate
12130                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12135                                                                                                               fluralaner
12136                                                                                           milbemycin oxime, praziquantel
12154                                                                                   joint supplement (glucosamine hcl/msm)
12155                                                                                                        vision supplement
12159                                                                                   joint supplement (glucosamine hcl/msm)
12160                                                                                                        vision supplement
12164                                                                                   joint supplement (glucosamine hcl/msm)
12173                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12215                                                                                             ivermectin, pyrantel pamoate
12223                                                                                                homeopathic vaccine spray
12261                                                                                               milbemycin oxime, spinosad
12271                                                                                                 fipronil, (s)-methoprene
12273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12283                                                                                           milbemycin oxime, praziquantel
12299                                                                                       amoxicillin, clavulanate potassium
12306                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12309                                                                                       chlorhexidine gluconate, ophytrium
12313                                                                                              lufenuron, milbemycin oxime
12314                                                                                               milbemycin oxime, spinosad
12322                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12324                                                                                               milbemycin oxime, spinosad
12334                                                                                                              vincristine
12336                                                                                                              doxorubicin
12337                                                                                          anti-cd52 monoclonal antibodies
12342                                                                                               milbemycin oxime, spinosad
12343                                                                                          anti-cd52 monoclonal antibodies
12346                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12349                                                                                          anti-cd52 monoclonal antibodies
12351                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12353                                                                                                    ampicillin, sulbactam
12364                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12366                                                                                               milbemycin oxime, spinosad
12376                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12379                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12394                                                                                   joint supplement (glucosamine hcl/msm)
12398                                                                                                               ivermectin
12402                                                                                             ivermectin, pyrantel pamoate
12406                                                                                                                probiotic
12409                                                                                                                probiotic
12410                                                                                             ivermectin, pyrantel pamoate
12411                                                                                       fipronil, permethrin, pyriproxyfen
12414                                                                                             ivermectin, pyrantel pamoate
12415                                                                                                               afoxolaner
12417                                                                                             ivermectin, pyrantel pamoate
12418                                                                                                               afoxolaner
12420                                                                          betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                             ivermectin, pyrantel pamoate
12422                                                                                                                sarolaner
12423                                                                          betamethasone, clotrimazole, gentamicin sulfate
12427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12430                                                                                             ivermectin, pyrantel pamoate
12431                                                                                                               afoxolaner
12432                                                                                                               fluralaner
12433                                                                                             ivermectin, pyrantel pamoate
12434                                                                                                                sarolaner
12438                                                                                             ivermectin, pyrantel pamoate
12439                                                                                                                sarolaner
12453                                                                                                               ivermectin
12454                                                                                             ivermectin, pyrantel pamoate
12455                                                                                             ivermectin, pyrantel pamoate
12456                                                                                             ivermectin, pyrantel pamoate
12457                                                                                                               afoxolaner
12461                                                                                       chlorhexidine gluconate, ophytrium
12462                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                  omega 3
12466                                                                               ivermectin, praziquantel, pyrantel pamoate
12473                                                                                                               selamectin
12474                                                                                                               selamectin
12475                                                                                                              oclacitinib
12477                                                                          betamethasone, clotrimazole, gentamicin sulfate
12481                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12485                                                                          betamethasone, clotrimazole, gentamicin sulfate
12487                                                                                                         sulfadimethoxine
12495                                                                                             ivermectin, pyrantel pamoate
12497                                                                                                                probiotic
12498                                                                                             ivermectin, pyrantel pamoate
12500                                                                                                               ivermectin
12506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12511                                                                                             ivermectin, pyrantel pamoate
12512                                                                                                               afoxolaner
12514                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12516                                                                                             ivermectin, pyrantel pamoate
12520                                                                                lufenuron, milbemycin oxime, praziquantel
12521                                                                                               milbemycin oxime, spinosad
12523                                                                                                         milbemycin oxime
12528                                                                                             ivermectin, pyrantel pamoate
12529                                                                                    dinotefuran, permethrin, pyriproxyfen
12530                                                                                             ivermectin, pyrantel pamoate
12535                                                                                                      silver sulfadiazine
12536                                                                                                                mupirocin
12540                                                                                             ivermectin, pyrantel pamoate
12541                                                                                    dinotefuran, permethrin, pyriproxyfen
12542                                                                                             ivermectin, pyrantel pamoate
12543                                                                                    dinotefuran, permethrin, pyriproxyfen
12546                                                                               toothpaste/dental health solution or chews
12547                                                                                   joint supplement (glucosamine hcl/msm)
12548                                                                                             ivermectin, pyrantel pamoate
12549                                                                                    dinotefuran, permethrin, pyriproxyfen
12550                                                                                             ivermectin, pyrantel pamoate
12551                                                                                    dinotefuran, permethrin, pyriproxyfen
12552                                                                                   joint supplement (glucosamine hcl/msm)
12553                                                                                             ivermectin, pyrantel pamoate
12554                                                                                    dinotefuran, permethrin, pyriproxyfen
12569                                                                                               milbemycin oxime, spinosad
12571                                                                                                       miconazole nitrate
12578                                                                                             ivermectin, pyrantel pamoate
12580                                                                                             ivermectin, pyrantel pamoate
12585                                                                                             ivermectin, pyrantel pamoate
12588                                                                           dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                             ivermectin, pyrantel pamoate
12595                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                  omega 3
12605                                                                                                         milbemycin oxime
12608                                                                                           milbemycin oxime, praziquantel
12615                                                                                                               moxidectin
12616                                                                                                               ivermectin
12620                                                                                             ivermectin, pyrantel pamoate
12623                                                                                             ivermectin, pyrantel pamoate
12630                                                                                             ivermectin, pyrantel pamoate
12632                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12636                                                                                             ivermectin, pyrantel pamoate
12638                                                                                                               ivermectin
12639                                                                                             ivermectin, pyrantel pamoate
12642                                                                                             ivermectin, pyrantel pamoate
12645                                                                                                              amoxicillin
12686                                                                                             ivermectin, pyrantel pamoate
12692                                                                                           milbemycin oxime, praziquantel
12693                                                                                                         milbemycin oxime
12714                                                                               ivermectin, praziquantel, pyrantel pamoate
12730                                                                           mometasone furoate, orbifloxacin, posaconazole
12732                                                                           mometasone furoate, orbifloxacin, posaconazole
12735                                                                                              chloroxylenol, ketoconazole
12738                                                                                                               fluralaner
12740                                                                                               milbemycin oxime, spinosad
12744                                                                                               milbemycin oxime, spinosad
12749                                                                                               milbemycin oxime, spinosad
12754                                                                                               milbemycin oxime, spinosad
12755                                                                                               milbemycin oxime, spinosad
12756                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12771                                                                                                               moxidectin
12774                                                                                                               ivermectin
12780                                                                                                               ivermectin
12784                                                                                                     digestive supplement
12787                                                                                                 flumethrin, imidacloprid
12788                                                                             dexamethasone, neomycin sulfate, polymyxin b
12795                                                                                             ivermectin, pyrantel pamoate
12796                                                                                                 flumethrin, imidacloprid
12797                                                                                                     digestive supplement
12801                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12826                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12828                                                                                                  chlorhexidine gluconate
12836                                                                                               milbemycin oxime, spinosad
12849                                                                          betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                              chloroxylenol, ketoconazole
12861                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12865                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12870                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12873                                                                          betamethasone, clotrimazole, gentamicin sulfate
12879                                                                                             ivermectin, pyrantel pamoate
12880                                                                                                               afoxolaner
12881                                                                             dexamethasone, neomycin sulfate, polymyxin b
12882                                                                          betamethasone, clotrimazole, gentamicin sulfate
12894                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                    chlorhexidine gluconate, ketoconazole
12901                                                                                                               ivermectin
12902                                                                                                               afoxolaner
12903                                                                               toothpaste/dental health solution or chews
12905                                                                                                                midazolam
12906                                                                                                        potassium bromide
12907                                                                                                        potassium bromide
12908                                                                                                              terbinafine
12911                                                                                                   unspecified medication
12916                                                                                             ivermectin, pyrantel pamoate
12920                                                                                             ivermectin, pyrantel pamoate
12929                                                                                             ivermectin, pyrantel pamoate
12942                                                                                             ivermectin, pyrantel pamoate
12943                                                                                             ivermectin, pyrantel pamoate
12945                                                                                             ivermectin, pyrantel pamoate
12948                                                                                             ivermectin, pyrantel pamoate
12949                                                                                             ivermectin, pyrantel pamoate
12952                                                                                             ivermectin, pyrantel pamoate
12955                                                                                                             multivitamin
12956                                                                                                 fipronil, (s)-methoprene
12957                                                                                              lufenuron, milbemycin oxime
12962                                                                                                 fipronil, (s)-methoprene
12963                                                                                                             multivitamin
12966                                                                                                 fipronil, (s)-methoprene
12994                                                                                               imidacloprid, pyriproxyfen
13005                                                                                                               ivermectin
13006                                                                                                               afoxolaner
13008                                                                                                               ivermectin
13010                                                                                                         neomycin sulfate
13013                                                                                                  triamcinolone acetonide
13020                                                                                                             fenbendazole
13041                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                               fluralaner
13062                                                                                           polysulfated glycosaminoglycan
13074                                                                                           polysulfated glycosaminoglycan
13075                                                                                lufenuron, milbemycin oxime, praziquantel
13076                                                                                                 flumethrin, imidacloprid
13081                                                                                                               lokivetmab
13084                                                                                              lufenuron, milbemycin oxime
13086                                                                                              lufenuron, milbemycin oxime
13096                                                                                      ear cleaner (zymox), hydrocortisone
13104                                                                                                              vincristine
13108                                                                                               milbemycin oxime, spinosad
13109                                                                                               milbemycin oxime, spinosad
13114                                                                                               milbemycin oxime, spinosad
13115                                                                                               milbemycin oxime, spinosad
13116                                                                                               milbemycin oxime, spinosad
13124                                                                          betamethasone, clotrimazole, gentamicin sulfate
13126                                                                                          ear cleaner (epi-otic advanced)
13127                                                                          betamethasone, clotrimazole, gentamicin sulfate
13129                                                                          betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                          ear cleaner (epi-otic advanced)
13133                                                                          betamethasone, clotrimazole, gentamicin sulfate
13136                                                                                             ivermectin, pyrantel pamoate
13137                                                                                                               fluralaner
13139                                                                                             ivermectin, pyrantel pamoate
13142                                                                                             ivermectin, pyrantel pamoate
13143                                                                                                               fluralaner
13148                                                                                       amoxicillin, clavulanate potassium
13149                                                                                             ivermectin, pyrantel pamoate
13150                                                                                                               fluralaner
13151                                                                                                         milbemycin oxime
13152                                                                                                               fluralaner
13154                                                                                       amoxicillin, clavulanate potassium
13157                                                                                             ivermectin, pyrantel pamoate
13159                                                                                       joint supplement (glucosamine hcl)
13160                                                                                                                 turmeric
13168                                                                                             ivermectin, pyrantel pamoate
13169                                                                                             ivermectin, pyrantel pamoate
13170                                                                                                               afoxolaner
13187                                                                                        betamethasone, gentamicin sulfate
13188                                                                                                 fipronil, (s)-methoprene
13189                                                                                             ivermectin, pyrantel pamoate
13195                                                                                        betamethasone, gentamicin sulfate
13196                                                                                                  chlorhexidine gluconate
13198                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                        trimeprazine tartrate, prednisone
13208                                                                                           milbemycin oxime, praziquantel
13209                                                                                                               afoxolaner
13233                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13246                                                                             dexamethasone, neomycin sulfate, polymyxin b
13248                                                                                             ivermectin, pyrantel pamoate
13249                                                                                                 fipronil, (s)-methoprene
13264                                                                                             ivermectin, pyrantel pamoate
13270                                                                                             ivermectin, pyrantel pamoate
13271                                                                                             ivermectin, pyrantel pamoate
13277                                                                          betamethasone, clotrimazole, gentamicin sulfate
13278                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13286                                                                          betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                 fipronil, (s)-methoprene
13288                                                                                             ivermectin, pyrantel pamoate
13297                                                                                                               ivermectin
13298                                                                                                               afoxolaner
13299                                                                                                               ivermectin
13307                                                                                                               afoxolaner
13308                                                                                             ivermectin, pyrantel pamoate
13309                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13313                                                                                             ivermectin, pyrantel pamoate
13314                                                                                                               afoxolaner
13321                                                                       ceramide iii, chlorhexidine gluconate, microsilver
13331                                                                                               milbemycin oxime, spinosad
13332                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
13334                                                                                               milbemycin oxime, spinosad
13340                                                                          betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                             ivermectin, pyrantel pamoate
13343                                                                                             ivermectin, pyrantel pamoate
13344                                                                                                               afoxolaner
13349                                                                                             ivermectin, pyrantel pamoate
13353                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                               milbemycin oxime, spinosad
13356                                                                                               milbemycin oxime, spinosad
13357                                                                                                 flumethrin, imidacloprid
13376                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13405                                                                                       amoxicillin, clavulanate potassium
13411                                                                                                              doxorubicin
13454                                                                                             ivermectin, pyrantel pamoate
13455                                                                                                               afoxolaner
13456                                                                                                          diphenhydramine
13459                                                                                      ear cleaner (zymox), hydrocortisone
13460                                                                                           lotion or leave in conditioner
13461                                                                                             ivermectin, pyrantel pamoate
13462                                                                                                               afoxolaner
13464                                                                                             ivermectin, pyrantel pamoate
13468                                                                                             ivermectin, pyrantel pamoate
13470                                                                                 febantel, praziquantel, pyrantel pamoate
13471                                                                                             ivermectin, pyrantel pamoate
13475                                                                                              lufenuron, milbemycin oxime
13476                                                                                                     prebiotic, probiotic
13479                                                                                                                meloxicam
13483                                                                                              lufenuron, milbemycin oxime
13484                                                                                                   cyphenothrin, fipronil
13496                                                                                               imidacloprid, pyriproxyfen
13502                                                                                                               ivermectin
13503                                                                                                 imidacloprid, permethrin
13506                                                                                             ivermectin, pyrantel pamoate
13532                                                                                                                probiotic
13537                                                                                              lufenuron, milbemycin oxime
13538                                                                                lufenuron, milbemycin oxime, praziquantel
13562                                                                                               milbemycin oxime, spinosad
13563                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                               milbemycin oxime, spinosad
13575                                                                                                               isoflurane
13576                                                                                               milbemycin oxime, spinosad
13579                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13581                                                                                               milbemycin oxime, spinosad
13585                                                                                               milbemycin oxime, spinosad
13590                                                                                                  chlorhexidine gluconate
13594                                                                                        betamethasone, gentamicin sulfate
13595                                                                          betamethasone, clotrimazole, gentamicin sulfate
13601                                                                             dexamethasone, neomycin sulfate, polymyxin b
13603                                                                                                             enrofloxacin
13605                                                                                                                carprofen
13609                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13615                                                                          betamethasone, clotrimazole, gentamicin sulfate
13623                                                                                               imidacloprid, pyriproxyfen
13624                                                                                               imidacloprid, pyriproxyfen
13625                                                                                               imidacloprid, pyriproxyfen
13628                                                                                               imidacloprid, pyriproxyfen
13631                                                                          betamethasone, clotrimazole, gentamicin sulfate
13654                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13657                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13666                                                                             florfenicol, mometasone furoate, terbinafine
13693                                                                                               milbemycin oxime, spinosad
13723                                                                                                 fipronil, (s)-methoprene
13724                                                                                                 flumethrin, imidacloprid
13730                                                                                                                probiotic
13737                                                                                             ivermectin, pyrantel pamoate
13740                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                        trimeprazine tartrate, prednisone
13747                                                                                              lufenuron, milbemycin oxime
13756                                                                          betamethasone, clotrimazole, gentamicin sulfate
13768                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                        betamethasone, gentamicin sulfate
13776                                                                                                         milbemycin oxime
13782                                                                                                                meloxicam
13783                                                                                                         milbemycin oxime
13796                                                                                       chlorhexidine gluconate, ophytrium
13893                                                                                                         milbemycin oxime
13894                                                                                    dinotefuran, permethrin, pyriproxyfen
13896                                                                                                         milbemycin oxime
13902                                                                                                         pyrantel pamoate
13905                                                                                                         milbemycin oxime
13906                                                                                    dinotefuran, permethrin, pyriproxyfen
13910                                                                                                         milbemycin oxime
13912                                                                                                               lokivetmab
13913                                                                                                              bedinvetmab
13925                                                                                               milbemycin oxime, spinosad
13943                                                                                             ivermectin, pyrantel pamoate
13946                                                                                        betamethasone, gentamicin sulfate
13994                                                                                             ivermectin, pyrantel pamoate
13995                                                                                                                sarolaner
13996                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13998                                                                                             ivermectin, pyrantel pamoate
14006                                                                                        betamethasone, gentamicin sulfate
14007                                                                                                         milbemycin oxime
14050                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                         milbemycin oxime
14055                                                                                                         milbemycin oxime
14059                                                                                                               selamectin
14060                                                                                                               ivermectin
14061                                                                                             ivermectin, pyrantel pamoate
14062                                                                                             ivermectin, pyrantel pamoate
14063                                                                                                 fipronil, (s)-methoprene
14064                                                                                             ivermectin, pyrantel pamoate
14106                                                                                              lufenuron, milbemycin oxime
14114                                                                                               milbemycin oxime, spinosad
14118                                                                                               milbemycin oxime, spinosad
14123                                                                                               lactated ringer's solution
14128                                                                                               milbemycin oxime, spinosad
14129                                                                                               milbemycin oxime, spinosad
14131                                                                                                  ketoconazole, tris-edta
14147                                                                                                               ivermectin
14148                                                                                                 fipronil, (s)-methoprene
14151                                                                                             ivermectin, pyrantel pamoate
14154                                                                                             ivermectin, pyrantel pamoate
14162                                                                                              lufenuron, milbemycin oxime
14163                                                                                              lufenuron, milbemycin oxime
14164                                                                                             ivermectin, pyrantel pamoate
14165                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                       miconazole nitrate
14170                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14172                                                                                             ivermectin, pyrantel pamoate
14173                                                                                             ivermectin, pyrantel pamoate
14174                                                                                                 fipronil, (s)-methoprene
14175                                                                             florfenicol, mometasone furoate, terbinafine
14177                                                                                                         milbemycin oxime
14178                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14180                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                         milbemycin oxime
14190                                                                             dexamethasone, neomycin sulfate, polymyxin b
14219                                                                                                         milbemycin oxime
14221                                                                                                   unspecified astringent
14228                                                                                                   unspecified medication
14238                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14241                                                                                                 fipronil, (s)-methoprene
14242                                                                                             ivermectin, pyrantel pamoate
14245                                                                                                 fipronil, (s)-methoprene
14282                                                                                                               ivermectin
14284                                                                                                               ivermectin
14291                                                                              chlorhexidine gluconate, miconazole nitrate
14297                                                                               ivermectin, praziquantel, pyrantel pamoate
14301                                                                                                               ivermectin
14302                                                                                                               nitenpyram
14319                                                                                             ivermectin, pyrantel pamoate
14323                                                                          betamethasone, clotrimazole, gentamicin sulfate
14324                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14330                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14334                                                                                                 imidacloprid, moxidectin
14336                                                                             dexamethasone, neomycin sulfate, polymyxin b
14365                                                                                             ivermectin, pyrantel pamoate
14366                                                                                             ivermectin, pyrantel pamoate
14367                                                                                 febantel, praziquantel, pyrantel pamoate
14373                                                                                                 flumethrin, imidacloprid
14376                                                                                                 flumethrin, imidacloprid
14378                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14380                                                                                                 flumethrin, imidacloprid
14385                                                                                              lufenuron, milbemycin oxime
14386                                                                                                               afoxolaner
14387                                                                                              lufenuron, milbemycin oxime
14388                                                                                                               afoxolaner
14404                                                                                              lufenuron, milbemycin oxime
14406                                                                                             ivermectin, pyrantel pamoate
14408                                                                                             ivermectin, pyrantel pamoate
14412                                                                                               milbemycin oxime, spinosad
14413                                                                                                 fipronil, (s)-methoprene
14414                                                                                   cyphenothrin, fipronil, (s)-methoprene
14420                                                                                             ivermectin, pyrantel pamoate
14421                                                                                                                thyroxine
14426                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14428                                                                                                         pyrantel pamoate
14429                                                                                              lufenuron, milbemycin oxime
14431                                                                                              lufenuron, milbemycin oxime
14432                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                  omega 3
14434                                                                                                             multivitamin
14443                                                                                              lufenuron, milbemycin oxime
14444                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                               toothpaste/dental health solution or chews
14446 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                 urinary tract supplement
14448                                                                                              lufenuron, milbemycin oxime
14449                                                                                              lufenuron, milbemycin oxime
14451                                                                                              lufenuron, milbemycin oxime
14455                                                                             dexamethasone, neomycin sulfate, polymyxin b
14471                                                                                              lufenuron, milbemycin oxime
14473                                                                                              lufenuron, milbemycin oxime
14477                                                                                              lufenuron, milbemycin oxime
14479                                                                                                 flumethrin, imidacloprid
14488                                                                                             ivermectin, pyrantel pamoate
14489                                                                                             ivermectin, pyrantel pamoate
14490                                                                                             ivermectin, pyrantel pamoate
14495                                                                                             ivermectin, pyrantel pamoate
14498                                                                                             ivermectin, pyrantel pamoate
14499                                                                                             ivermectin, pyrantel pamoate
14512                                                                                                         milbemycin oxime
14513                                                                                                               lokivetmab
14528                                                                                   cyphenothrin, fipronil, (s)-methoprene
14529                                                                                             ivermectin, pyrantel pamoate
14547                                                                                                               ivermectin
14563                                                                                                               ivermectin
14576                                                                                              lufenuron, milbemycin oxime
14578                                                                                                               nitenpyram
14582                                                                                                                sarolaner
14583                                                                                              lufenuron, milbemycin oxime
14584                                                                                                                sarolaner
14585                                                                                lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                sarolaner
14587                                                                                lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                sarolaner
14601                                                                                       unspecified flea/tick preventative
14605                                                                                           milbemycin oxime, praziquantel
14608                                                                                                         milbemycin oxime
14637                                                                                       fipronil, permethrin, pyriproxyfen
14645                                                                                               milbemycin oxime, spinosad
14654                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14656                                                                                           milbemycin oxime, praziquantel
14658                                                                                             ivermectin, pyrantel pamoate
14664                                                                                           milbemycin oxime, praziquantel
14665                                                                                                               afoxolaner
14697                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14699                                                                                                 fipronil, (s)-methoprene
14700                                                                                             ivermectin, pyrantel pamoate
14701                                                                                               imidacloprid, pyriproxyfen
14702                                                                                             ivermectin, pyrantel pamoate
14711                                                                                              lufenuron, milbemycin oxime
14712                                                                                    dinotefuran, permethrin, pyriproxyfen
14713                                                                                                             fenbendazole
14720                                                                                              lufenuron, milbemycin oxime
14721                                                                                    dinotefuran, permethrin, pyriproxyfen
14722                                                                                                         milbemycin oxime
14723                                                                                           milbemycin oxime, praziquantel
14726                                                                                                               fluralaner
14728                                                                                  milbemycin oxime, oxantel, praziquantel
14730                                                                                           milbemycin oxime, praziquantel
14733                                                                                                         milbemycin oxime
14737                                                                                              lufenuron, milbemycin oxime
14738                                                                                                                 fipronil
14744                                                                                                 flumethrin, imidacloprid
14748                                                                          betamethasone, clotrimazole, gentamicin sulfate
14754                                                                                                 flumethrin, imidacloprid
14755                                                                                           milbemycin oxime, praziquantel
14756                                                                          betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                         burow's solution, hydrocortisone
14760                                                                                           milbemycin oxime, praziquantel
14763                                                                                           milbemycin oxime, praziquantel
14764                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14775                                                                                      allergy immunotherapy - unspecified
14777                                                                          betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                  betamethasone, florfenicol, terbinafine
14833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                               milbemycin oxime, spinosad
14838                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                              lufenuron, milbemycin oxime
14857                                                                                                             multivitamin
14858                                                                                              lufenuron, milbemycin oxime
14862                                                                                                             multivitamin
14863                                                                                                             multivitamin
14864                                                                                              lufenuron, milbemycin oxime
14867                                                                                           milbemycin oxime, praziquantel
14870                                                                                                         milbemycin oxime
14871                                                                                                                lotilaner
14878                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14883                                                                                  milbemycin oxime, oxantel, praziquantel
14884                                                                                                               fluralaner
14899                                                                                                              bedinvetmab
14911                                                                                               milbemycin oxime, spinosad
14913                                                                                               milbemycin oxime, spinosad
14914                                                                                             ivermectin, pyrantel pamoate
14934                                                                                                               afoxolaner
14943                                                                                                               fluralaner
14944                                                                                      allergy immunotherapy - unspecified
14949                                                                                                               lokivetmab
14972                                                                                               milbemycin oxime, spinosad
14973                                                                                                             multivitamin
14974                                                                                               milbemycin oxime, spinosad
14975                                                                                               milbemycin oxime, spinosad
14978                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14981                                                                                               milbemycin oxime, spinosad
14982                                                                                                                  omega 3
14983                                                                                                                probiotic
15001                                                                               ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                 fipronil, (s)-methoprene
15004                                                                                               imidacloprid, pyriproxyfen
15005                                                                                                 fipronil, (s)-methoprene
15006                                                                                                         milbemycin oxime
15007                                                                                                         milbemycin oxime
15008                                                                                               imidacloprid, pyriproxyfen
15009                                                                                                 fipronil, (s)-methoprene
15010                                                                                                 fipronil, (s)-methoprene
15011                                                                                           milbemycin oxime, praziquantel
15017                                                                               ivermectin, praziquantel, pyrantel pamoate
15021                                                                               ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                 fipronil, (s)-methoprene
15023                                                                                                 fipronil, (s)-methoprene
15027                                                                                                 fipronil, (s)-methoprene
15028                                                                                                         milbemycin oxime
15029                                                                                           milbemycin oxime, praziquantel
15030                                                                                                 fipronil, (s)-methoprene
15035                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                           milbemycin oxime, praziquantel
15045                                                                                             ivermectin, pyrantel pamoate
15048                                                                                              lufenuron, milbemycin oxime
15055                                                                                                   acetaminophen, codeine
15059                                                                                             ivermectin, pyrantel pamoate
15061                                                                                             ivermectin, pyrantel pamoate
15077                                                                                                 flumethrin, imidacloprid
15102                                                                                                  acetic acid, boric acid
15129                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                             ivermectin, pyrantel pamoate
15131                                                                                              sulfadimidine, trimethoprim
15132                                                                                                               afoxolaner
15139                                                                                             ivermectin, pyrantel pamoate
15140                                                                                                 fipronil, (s)-methoprene
15144                                                                                             ivermectin, pyrantel pamoate
15145                                                                                                 fipronil, (s)-methoprene
15150                                                                                                         milbemycin oxime
15151                                                                                                               fluralaner
15155                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15170                                                                                              lufenuron, milbemycin oxime
15179                                                                                                                 tramadol
15196                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                             clomipramine
15209                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15213                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
15244                                                                                                 homatropine, hydrocodone
15250                                                                                                 imidacloprid, permethrin
15256                                                                                                                meloxicam
15259                                                                                                              shen calmer
15268                                                                                             ivermectin, pyrantel pamoate
15269                                                                                                               afoxolaner
15274                                                                                            unspecified herbal supplement
15308                                                                                                               ivermectin
15309                                                                                                               afoxolaner
15310                                                                                             ivermectin, pyrantel pamoate
15311                                                                                                 flumethrin, imidacloprid
15314                                                                                             ivermectin, pyrantel pamoate
15315                                                                                                 flumethrin, imidacloprid
15317                                                                                             ivermectin, pyrantel pamoate
15319                                                                                           milbemycin oxime, praziquantel
15321                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                 flumethrin, imidacloprid
15323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15332                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                probiotic
15339                                                                                               milbemycin oxime, spinosad
15345                                                                                               milbemycin oxime, spinosad
15348                                                                                               milbemycin oxime, spinosad
15361                                                                                                               ivermectin
15362                                                                                                               ivermectin
15363                                                                          betamethasone, clotrimazole, gentamicin sulfate
15365                                                                                                               ivermectin
15366                                                                                             ivermectin, pyrantel pamoate
15367                                                                                              lufenuron, milbemycin oxime
15373                                                                                lufenuron, milbemycin oxime, praziquantel
15374                                                                                                 fipronil, (s)-methoprene
15375                                                                                lufenuron, milbemycin oxime, praziquantel
15376                                                                                                 fipronil, (s)-methoprene
15377                                                                                lufenuron, milbemycin oxime, praziquantel
15378                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15383                                                                                                              doxycycline
15384                                                                                                                carprofen
15402                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15412                                                                                             ivermectin, pyrantel pamoate
15441                                                                                                              guaifenesin
15445                                                                                                        hypochlorous acid
15448                                                                                             ivermectin, pyrantel pamoate
15451                                                                                             ivermectin, pyrantel pamoate
15453                                                                                      ear cleaner (zymox), hydrocortisone
15454                                                                                                           (s)-methoprene
15512                                                                                                               fluralaner
15513                                                                                                                  omega 3
15515                                                                                                               fluralaner
15524                                                                                             ivermectin, pyrantel pamoate
15528                                                                                           milbemycin oxime, praziquantel
15530                                                                                    dinotefuran, permethrin, pyriproxyfen
15531                                                                                           milbemycin oxime, praziquantel
15533                                                                                                 urinary tract supplement
15551                                                                                                                meloxicam
15552                                                                                                               fluralaner
15554                                                                                                               fluralaner
15555                                                                                                         milbemycin oxime
15556                                                                                             ivermectin, pyrantel pamoate
15563                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15581                                                                                                         pyrantel pamoate
15584                                                                           dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                             ivermectin, pyrantel pamoate
15586                                                                                       fipronil, permethrin, pyriproxyfen
15589                                                                                             ivermectin, pyrantel pamoate
15590                                                                                             ivermectin, pyrantel pamoate
15591                                                                                                               afoxolaner
15592                                                                                                 fipronil, (s)-methoprene
15593                                                                                             ivermectin, pyrantel pamoate
15594                                                                                                               afoxolaner
15597                                                                                             ivermectin, pyrantel pamoate
15598                                                                                                               afoxolaner
15599                                                                          betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                             ivermectin, pyrantel pamoate
15601                                                                                                                sarolaner
15603                                                                                                                mupirocin
15604                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15613                                                                                             ivermectin, pyrantel pamoate
15618                                                                                             ivermectin, pyrantel pamoate
15633                                                                                                               prednisone
15636                                                                                              lufenuron, milbemycin oxime
15649                                                                                             ivermectin, pyrantel pamoate
15650                                                                                                 fipronil, (s)-methoprene
15661                                                                                                               ivermectin
15663                                                                                                 fipronil, (s)-methoprene
15667                                                                                                  ketoconazole, tris-edta
15669                                                                                             ivermectin, pyrantel pamoate
15672                                                                                             ivermectin, pyrantel pamoate
15673                                                                                             ivermectin, pyrantel pamoate
15674                                                                                                                sarolaner
15689                                                                                               milbemycin oxime, spinosad
15690                                                                                               milbemycin oxime, spinosad
15691                                                                                               milbemycin oxime, spinosad
15692                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                               milbemycin oxime, spinosad
15699                                                                                             ivermectin, pyrantel pamoate
15701                                                                                               milbemycin oxime, spinosad
15706                                                                                                      ear cleaner (zymox)
15707                                                                                               milbemycin oxime, spinosad
15712                                                                                               milbemycin oxime, spinosad
15715                                                                                               milbemycin oxime, spinosad
15733                                                                                             ivermectin, pyrantel pamoate
15750                                                             butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15757                                                                                             ivermectin, pyrantel pamoate
15758                                                                                                 fipronil, (s)-methoprene
15767                                                                             dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                       gentamicin sulfate
15769                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                     dorzolamide, timolol
15778                                                                                                  triamcinolone acetonide
15781                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                  triamcinolone acetonide
15790                                                                                                 kidney health supplement
15796                                                                                       amoxicillin, clavulanate potassium
15799                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15811                                                                                                   cyphenothrin, fipronil
15815                                                                                                         milbemycin oxime
15818                                                                                                         milbemycin oxime
15829                                                                                             ivermectin, pyrantel pamoate
15839                                                                                                         pyrantel pamoate
15840                                                                                       joint supplement (glucosamine hcl)
15841                                                                                             ivermectin, pyrantel pamoate
15842                                                                                              lufenuron, milbemycin oxime
15844                                                                                              lufenuron, milbemycin oxime
15848                                                                                                                probiotic
15849                                                                                              lufenuron, milbemycin oxime
15850                                                                                           milbemycin oxime, praziquantel
15856                                                                                                 imidacloprid, permethrin
15857                                                                                                               fluralaner
15858                                                                                                                deracoxib
15859                                                                                              lufenuron, milbemycin oxime
15860                                                                                                     cefpodoxime proxetil
15862                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                         atropine sulfate
15867                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                        vision supplement
15869                                                                                              lufenuron, milbemycin oxime
15870                                                                                                               fluralaner
15886                                                                                                        vision supplement
15888                                                                                                               fluralaner
15889                                                                                        enrofloxacin, silver sulfadiazine
15890                                                                                            dextromethorphan, guaifenesin
15891                                                                                              lufenuron, milbemycin oxime
15892                                                                                              lufenuron, milbemycin oxime
15907                                                                                                         phytosphingosine
15911                                                                                                             fenbendazole
15917                                                                                                               ivermectin
15921                                                                                                                probiotic
15922                                                                                                               ivermectin
15927                                                                                                                vitamin a
15928                                                                                                                probiotic
15929                                                                                                             multivitamin
15930                                                                                             ivermectin, pyrantel pamoate
15933                                                                                                                vitamin a
15935                                                                                                                probiotic
15937                                                                                                               ivermectin
15944                                                                                                               ivermectin
15945                                                                                                                probiotic
15981                                                                                              lufenuron, milbemycin oxime
15983                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15986                                                                                    dinotefuran, permethrin, pyriproxyfen
15992                                                                                              lufenuron, milbemycin oxime
15993                                                                                    dinotefuran, permethrin, pyriproxyfen
15995                                                                                              lufenuron, milbemycin oxime
15996                                                                                    dinotefuran, permethrin, pyriproxyfen
15997                                                                                                               fluralaner
15998                                                                                             hydrocortisone, ketoconazole
15999                                                                                           milbemycin oxime, praziquantel
16000                                                                                                               fluralaner
16005                                                                                                         milbemycin oxime
16007                                                                                                         milbemycin oxime
16009                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
16016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
16026                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16033                                                                                                 fipronil, (s)-methoprene
16036                                                                                lufenuron, milbemycin oxime, praziquantel
16038                                                                                             ivermectin, pyrantel pamoate
16039                                                                                                 fipronil, (s)-methoprene
16052                                                                                lufenuron, milbemycin oxime, praziquantel
16053                                                                                               imidacloprid, pyriproxyfen
16094                                                                                             ivermectin, pyrantel pamoate
16097                                                                                             ivermectin, pyrantel pamoate
16098                                                                                                               afoxolaner
16105                                                                                              lufenuron, milbemycin oxime
16107                                                                                   gentamicin sulfate, miconazole nitrate
16108                                                                                              lufenuron, milbemycin oxime
16109                                                                                              lufenuron, milbemycin oxime
16110                                                                             florfenicol, mometasone furoate, terbinafine
16112                                                                                                              terbinafine
16113                                                                                                  chlorhexidine gluconate
16114                                                                                              chloroxylenol, ketoconazole
16116                                                                                                              terbinafine
16117                                                                                                              clindamycin
16118                                                                                                               prednisone
16150                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
16153                                                                                             ivermectin, pyrantel pamoate
16155                                                                                          ear cleaner (epi-otic advanced)
16156                                                                                                                probiotic
16157                                                                                             ivermectin, pyrantel pamoate
16158                                                                                                               fluralaner
16159                                                                                                         milbemycin oxime
16160                                                                                                               fluralaner
16161                                                                                             ivermectin, pyrantel pamoate
16162                                                                                                               fluralaner
16163                                                                                             ivermectin, pyrantel pamoate
16164                                                                                                               fluralaner
16165                                                                                           milbemycin oxime, praziquantel
16177                                                                              chlorhexidine gluconate, miconazole nitrate
16179                                                                                    chlorhexidine gluconate, ketoconazole
16199                                                                                           sulfamethoxazole, trimethoprim
16229                                                                                             ivermectin, pyrantel pamoate
16230                                                                                             ivermectin, pyrantel pamoate
16239                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                  omega 3
16241                                                                               toothpaste/dental health solution or chews
16242                                                                               toothpaste/dental health solution or chews
16251                                                                          betamethasone, clotrimazole, gentamicin sulfate
16253                                                                           mometasone furoate, orbifloxacin, posaconazole
16285                                                                                                               fluralaner
16286                                                                                               unspecified eye medication
16287                                                                                             ivermectin, pyrantel pamoate
16288                                                                                                 fipronil, (s)-methoprene
16289                                                                                             ivermectin, pyrantel pamoate
16290                                                                                                 fipronil, (s)-methoprene
16292                                                                                                         milbemycin oxime
16293                                                                                                 fipronil, (s)-methoprene
16294                                                                                             ivermectin, pyrantel pamoate
16295                                                                                                 fipronil, (s)-methoprene
16296                                                                                                               ivermectin
16312                                                                                             ivermectin, pyrantel pamoate
16313                                                                                                               afoxolaner
16315                                                                                             ivermectin, pyrantel pamoate
16316                                                                                                               afoxolaner
16318                                                                                             ivermectin, pyrantel pamoate
16319                                                                                                               afoxolaner
16321                                                                                             ivermectin, pyrantel pamoate
16322                                                                                                               afoxolaner
16324                                                                                             ivermectin, pyrantel pamoate
16325                                                                                                               afoxolaner
16326                                                                                                         milbemycin oxime
16340                                                                                             ivermectin, pyrantel pamoate
16347                                                                                    dinotefuran, permethrin, pyriproxyfen
16352                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16355                                                                                                                mupirocin
16356                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16374                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16376                                                                                                                  omega 3
16378                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16382                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16387                                                                                                                ophytrium
16388                                                                                                         phytosphingosine
16389                                                                                             ivermectin, pyrantel pamoate
16400                                                                                             ivermectin, pyrantel pamoate
16401                                                                                                                 spinosad
16403                                                                                             ivermectin, pyrantel pamoate
16404                                                                                                                 spinosad
16408                                                                                             ivermectin, pyrantel pamoate
16413                                                                                                         milbemycin oxime
16414                                                                                                               fluralaner
16418                                                                                                 fipronil, (s)-methoprene
16419                                                                                                   unspecified antibiotic
16420                                                                                                    unspecified analgesic
16425                                                                                                 fipronil, (s)-methoprene
16426                                                                                                 fipronil, (s)-methoprene
16434                                                                                                             multivitamin
16435                                                                                                                  omega 3
16436                                                                                                                 spinosad
16437                                                                                                         sulfadimethoxine
16440                                                                                              lufenuron, milbemycin oxime
16441                                                                                              lufenuron, milbemycin oxime
16442                                                                                                             multivitamin
16443                                                                                                                  omega 3
16447                                                                                              lufenuron, milbemycin oxime
16448                                                                                                             multivitamin
16450                                                                                           milbemycin oxime, praziquantel
16462                                                                                                                lactulose
16472                                                                                              lufenuron, milbemycin oxime
16474                                                                                                 fipronil, (s)-methoprene
16477                                                                                              lufenuron, milbemycin oxime
16478                                                                                                 fipronil, (s)-methoprene
16479                                                                                                 fipronil, (s)-methoprene
16497                                                                                                 fipronil, (s)-methoprene
16522                                                                                             ivermectin, pyrantel pamoate
16523                                                                                                               ivermectin
16524                                                                                                   cyphenothrin, fipronil
16525                                                                                                         milbemycin oxime
16526                                                                                    dinotefuran, permethrin, pyriproxyfen
16544                                                                                                   cyphenothrin, fipronil
16546                                                                                           milbemycin oxime, praziquantel
16553                                                                                           milbemycin oxime, praziquantel
16579                                                                                             ivermectin, pyrantel pamoate
16580                                                                                                  ketoconazole, tris-edta
16595                                                                                                               ivermectin
16596                                                                                             ivermectin, pyrantel pamoate
16597                                                                                                               ivermectin
16598                                                                                       fipronil, permethrin, pyriproxyfen
16599                                                                                                               ivermectin
16601                                                                                                 fipronil, (s)-methoprene
16605                                                                                 febantel, praziquantel, pyrantel pamoate
16606                                                                                                         milbemycin oxime
16608                                                                                                         milbemycin oxime
16624                                                                                               milbemycin oxime, spinosad
16630                                                                                                         milbemycin oxime
16631                                                                                                                lotilaner
16635                                                                             dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                             ivermectin, pyrantel pamoate
16639                                                                                           milbemycin oxime, praziquantel
16657                                                                           mometasone furoate, orbifloxacin, posaconazole
16684                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16687                                                                                             ivermectin, pyrantel pamoate
16694                                                                                             ivermectin, pyrantel pamoate
16702                                                                          betamethasone, clotrimazole, gentamicin sulfate
16703                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                             ivermectin, pyrantel pamoate
16705                                                                                                               afoxolaner
16711                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
16714                                                                                                                mupirocin
16717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16721                                                                                             ivermectin, pyrantel pamoate
16723                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16726                                                                                        betamethasone, gentamicin sulfate
16749                                                                                              lufenuron, milbemycin oxime
16751                                                                                              lufenuron, milbemycin oxime
16774                                                                                                                vitamin b
16777                                                                                             ivermectin, pyrantel pamoate
16778                                                                                                   cyphenothrin, fipronil
16779                                                                                                               cetirizine
16783                                                                                                               cetirizine
16784                                                                                                     digestive supplement
16785                                                                                                  ketoconazole, tris-edta
16791                                                                                    dinotefuran, permethrin, pyriproxyfen
16793                                                                                                               afoxolaner
16798                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16805                                                                                             ivermectin, pyrantel pamoate
16807                                                                                                 imidacloprid, permethrin
16809                                                                                               imidacloprid, pyriproxyfen
16810                                                                                             ivermectin, pyrantel pamoate
16811                                                                                                 flumethrin, imidacloprid
16814                                                                                                        vision supplement
16815                                                                                                              ashwagandha
16816                                                                                                 betamethasone, ofloxacin
16821                                                                                                        vision supplement
16823                                                                                                 betamethasone, ofloxacin
16834                                                                                                 fipronil, (s)-methoprene
16838                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
16840                                                                                                 fipronil, (s)-methoprene
16841                                                                                                              bedinvetmab
16847                                                                                                 urinary tract supplement
16869                                                                                                         milbemycin oxime
16877                                                                                               milbemycin oxime, spinosad
16882                                                                                                 flumethrin, imidacloprid
16918                                                                                                                  omega 3
16929                                                                                               milbemycin oxime, spinosad
16931                                                                                               milbemycin oxime, spinosad
16933                                                                                               milbemycin oxime, spinosad
16935                                                                                               milbemycin oxime, spinosad
16936                                                                                             ivermectin, pyrantel pamoate
16939                                                                                                      ear cleaner (zymox)
16970                                                                                                               ivermectin
16983                                                                                             ivermectin, pyrantel pamoate
16993                                                                                                  ketoconazole, tris-edta
16994                                                                          betamethasone, clotrimazole, gentamicin sulfate
16998                                                                                    dinotefuran, permethrin, pyriproxyfen
16999                                                                                             ivermectin, pyrantel pamoate
17000                                                                                    dinotefuran, permethrin, pyriproxyfen
17010                                                                                             ivermectin, pyrantel pamoate
17012                                                                                                           (s)-methoprene
17013                                                                                             ivermectin, pyrantel pamoate
17014                                                                                             ivermectin, pyrantel pamoate
17018                                                      chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                             ivermectin, pyrantel pamoate
17020                                                                                                               fluralaner
17022                                                                           dexamethasone, neomycin sulfate, thiabendazole
17042                                                                                                                lotilaner
17053                                                                                             ivermectin, pyrantel pamoate
17062                                                                           dexamethasone, neomycin sulfate, thiabendazole
17088                                                                                             ivermectin, pyrantel pamoate
17090                                                                                             ivermectin, pyrantel pamoate
17091                                                                                                               afoxolaner
17094                                                                                             ivermectin, pyrantel pamoate
17095                                                                                                               afoxolaner
17098                                                                                             ivermectin, pyrantel pamoate
17099                                                                                                               afoxolaner
17120                                                                                                                 squalane
17121                                                                                          ear cleaner (epi-otic advanced)
17126                                                                                    chlorhexidine gluconate, ketoconazole
17127                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17138                                                                                             ivermectin, pyrantel pamoate
17143                                                                                             ivermectin, pyrantel pamoate
17153                                                                               ivermectin, praziquantel, pyrantel pamoate
17156                                                                               ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                               afoxolaner
17173                                                                               dimethyl sulfoxide, fluocinolone acetonide
17177                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17180                                                                                                                probiotic
17209                                                                                             ivermectin, pyrantel pamoate
17218                                                                                    dinotefuran, permethrin, pyriproxyfen
17220                                                                                                               ivermectin
17221                                                                                                               afoxolaner
17225                                                                                             ivermectin, pyrantel pamoate
17226                                                                                                               afoxolaner
17227                                                                                             ivermectin, pyrantel pamoate
17228                                                                                                               afoxolaner
17229                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17232                                                                               ivermectin, praziquantel, pyrantel pamoate
17233                                                                                               imidacloprid, pyriproxyfen
17234                                                                                                         milbemycin oxime
17236                                                                                               imidacloprid, pyriproxyfen
17237                                                                                                         milbemycin oxime
17239                                                                                                         milbemycin oxime
17248                                                                                             ivermectin, pyrantel pamoate
17251                                                                                             ivermectin, pyrantel pamoate
17252                                                                                                 fipronil, (s)-methoprene
17254                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                               milbemycin oxime, spinosad
17264                                                                                               milbemycin oxime, spinosad
17266                                                                                               milbemycin oxime, spinosad
17268                                                                                                               ivermectin
17283                                                                                             ivermectin, pyrantel pamoate
17285                                                                                             ivermectin, pyrantel pamoate
17297                                                                                           sulfamethoxazole, trimethoprim
17298                                                                                             ivermectin, pyrantel pamoate
17307                                                                                        trimeprazine tartrate, prednisone
17308                                                                                        trimeprazine tartrate, prednisone
17309                                                                                        trimeprazine tartrate, prednisone
17310                                                                                        trimeprazine tartrate, prednisone
17313                                                                                             ivermectin, pyrantel pamoate
17314                                                                                    dinotefuran, permethrin, pyriproxyfen
17315                                                                                                            metronidazole
17327                                                                                             oxytetracycline, polymyxin b
17329                                                                                                           corneal repair
17330                                                                                                                ofloxacin
17335                                                                                                           corneal repair
17352                                                                                        betamethasone, gentamicin sulfate
17355                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17387                                                                                             ivermectin, pyrantel pamoate
17389                                                                                             ivermectin, pyrantel pamoate
17390                                                                                             ivermectin, pyrantel pamoate
17391                                                                                             ivermectin, pyrantel pamoate
17393                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17399                                                                                              lufenuron, milbemycin oxime
17406                                                                                              lufenuron, milbemycin oxime
17407                                                                                        betamethasone, gentamicin sulfate
17412                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17417                                                                                                 flumethrin, imidacloprid
17418                                                                                                                  omega 3
17419                                                                                                                sarolaner
17420                                                                                             ivermectin, pyrantel pamoate
17426                                                                                                               gabapentin
17427                                                                                                   unspecified medication
17446                                                                                  betamethasone, florfenicol, terbinafine
17461                                                                                              lufenuron, milbemycin oxime
17463                                                                                                                probiotic
17468                                                                                              lufenuron, milbemycin oxime
17470                                                                                                                probiotic
17482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17486                                                                                             ivermectin, pyrantel pamoate
17487                                                                                                 fipronil, (s)-methoprene
17488                                                                                lufenuron, milbemycin oxime, praziquantel
17489                                                                                                 fipronil, (s)-methoprene
17490                                                                                                 fipronil, (s)-methoprene
17491                                                                                           milbemycin oxime, praziquantel
17492                                                                                lufenuron, milbemycin oxime, praziquantel
17493                                                                                           milbemycin oxime, praziquantel
17495                                                                                           milbemycin oxime, praziquantel
17496                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17518                                                                                              lufenuron, milbemycin oxime
17519                                                                                              lufenuron, milbemycin oxime
17576                                                                             dexamethasone, neomycin sulfate, polymyxin b
17583                                                                                        betamethasone, gentamicin sulfate
17588                                                                                        betamethasone, gentamicin sulfate
17602                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                              lufenuron, milbemycin oxime
17605                                                                                lufenuron, milbemycin oxime, praziquantel
17611                                                                                                               fluralaner
17615                                                                                                                 fipronil
17627                                                                                                               fluralaner
17659                                                                                                         milbemycin oxime
17672                                                                                               milbemycin oxime, spinosad
17673                                                                                               milbemycin oxime, spinosad
17680                                                                                                               prednisone
17697                                                                                               milbemycin oxime, spinosad
17702                                                                               dextromethorphan hydrobromide, guaifenesin
17703                                                                                              lufenuron, milbemycin oxime
17719                                                                                              lufenuron, milbemycin oxime
17720                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
17722                                                                                              lufenuron, milbemycin oxime
17742                                                                             dexamethasone, neomycin sulfate, polymyxin b
17755                                                                                                 fipronil, (s)-methoprene
17779                                                                                   cyphenothrin, fipronil, (s)-methoprene
17780                                                                                        trimeprazine tartrate, prednisone
17781                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                   cyphenothrin, fipronil, (s)-methoprene
17798                                                                           mometasone furoate, orbifloxacin, posaconazole
17802                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                        betamethasone, gentamicin sulfate
17804                                                                                        trimeprazine tartrate, prednisone
17818                                                                                                               afoxolaner
17832                                                                                                                meloxicam
17845                                                                                                               afoxolaner
17853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17855                                                                                                               diclofenac
17856                                                                                                     prednisolone acetate
17860                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17863                                                                                                                  omega 3
17865                                                                                                 urinary tract supplement
17882                                                                                        betamethasone, gentamicin sulfate
18023                                                                                                         milbemycin oxime
18024                                                                                                               afoxolaner
18057                                                                                                               afoxolaner
18058                                                                                             ivermectin, pyrantel pamoate
18072                                                                                               milbemycin oxime, spinosad
18074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                lufenuron, milbemycin oxime, praziquantel
18094                                                                                             ivermectin, pyrantel pamoate
18095                                                                                                               afoxolaner
18096                                                                           mometasone furoate, orbifloxacin, posaconazole
18098                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18114                                                                                                                vitamin e
18115                                                                                              lufenuron, milbemycin oxime
18116                                                                                                 imidacloprid, permethrin
18118                                                                                               imidacloprid, pyriproxyfen
18119                                                                                              lufenuron, milbemycin oxime
18124                                                                                              lufenuron, milbemycin oxime
18134                                                                                        betamethasone, gentamicin sulfate
18141                                                                                           polysulfated glycosaminoglycan
18147                                                                                                               isoflurane
18165                                                                                                 ear cleaner (oti-soothe)
18188                                                                               dextromethorphan hydrobromide, guaifenesin
18192                                                                                             ivermectin, pyrantel pamoate
18193                                                                                                               ivermectin
18195                                                                                                               grapiprant
18199                                                                                        trimeprazine tartrate, prednisone
18202                                                                                                               ivermectin
18205                                                                                                               ivermectin
18213                                                                                                 imidacloprid, permethrin
18214                                                                                             ivermectin, pyrantel pamoate
18217                                                                                                               fluralaner
18218                                                                                                         milbemycin oxime
18220                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18222                                                                                                         milbemycin oxime
18238                                                                                                           dental sealant
18251                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
18258                                                                                    dinotefuran, permethrin, pyriproxyfen
18260                                                                                               milbemycin oxime, spinosad
18262                                                                                    dinotefuran, permethrin, pyriproxyfen
18263                                                                                      allergy immunotherapy - unspecified
18264                                                                                               milbemycin oxime, spinosad
18266                                                                                               milbemycin oxime, spinosad
18271                                                                                      allergy immunotherapy - unspecified
18275                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                         phytosphingosine
18323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18325                                                                                         burow's solution, hydrocortisone
18326                                                                                                  ketoconazole, tris-edta
18337                                                                                             ivermectin, pyrantel pamoate
18338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                             ivermectin, pyrantel pamoate
18340                                                                                                               afoxolaner
18341                                                                                                                  omega 3
18342                                                                                             ivermectin, pyrantel pamoate
18344                                                                                             ivermectin, pyrantel pamoate
18365                                                                                             ivermectin, pyrantel pamoate
18366                                                                                                               afoxolaner
18370                                                                                             ivermectin, pyrantel pamoate
18371                                                                                                               afoxolaner
18373                                                                                             ivermectin, pyrantel pamoate
18374                                                                                                               afoxolaner
18404                                                                                                  ketoconazole, tris-edta
18415                                                                                             ivermectin, pyrantel pamoate
18427                                                                                                                     edta
18441                                                                                        trimeprazine tartrate, prednisone
18459                                                                                              lufenuron, milbemycin oxime
18460                                                                                              lufenuron, milbemycin oxime
18461                                                                                                               fluralaner
18469                                                                                                             cyclosporine
18471                                                                                                             cyclosporine
18479                                                                                               milbemycin oxime, spinosad
18480                                                                                               milbemycin oxime, spinosad
18483                                                                                               milbemycin oxime, spinosad
18489                                                                                             ivermectin, pyrantel pamoate
18490                                                                                              lufenuron, milbemycin oxime
18494                                                                                              lufenuron, milbemycin oxime
18495                                                                                             ivermectin, pyrantel pamoate
18500                                                                                             ivermectin, pyrantel pamoate
18502                                                                                           milbemycin oxime, praziquantel
18514                                                                                               imidacloprid, pyriproxyfen
18520                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18525                                                                                                               afoxolaner
18534                                                                                                                probiotic
18565                                                                                               imidacloprid, pyriproxyfen
18571                                                                                             ivermectin, pyrantel pamoate
18572                                                                                                               afoxolaner
18576                                                                                             ivermectin, pyrantel pamoate
18577                                                                                                               afoxolaner
18580                                                                                             ivermectin, pyrantel pamoate
18588                                                                                                               prednisone
18591                                                                                        betamethasone, gentamicin sulfate
18595                                                                                               imidacloprid, pyriproxyfen
18609                                                                                                                trazodone
18612                                                                                                            levetiracetam
18621                                                                             florfenicol, mometasone furoate, terbinafine
18649                                                                                                               nitenpyram
18686                                                                                             ivermectin, pyrantel pamoate
18687                                                                          betamethasone, clotrimazole, gentamicin sulfate
18689                                                                                                           chlorphenamine
18690                                                                                                               ivermectin
18694                                                                                              lufenuron, milbemycin oxime
18696                                                                                                   cyphenothrin, fipronil
18697                                                                                              lufenuron, milbemycin oxime
18703                                                                                             ivermectin, pyrantel pamoate
18707                                                                                             ivermectin, pyrantel pamoate
18716                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18718                                                                                        betamethasone, gentamicin sulfate
18729                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
18734                                                                                               milbemycin oxime, spinosad
18735                                                                                                               nitenpyram
18736                                                                                               milbemycin oxime, spinosad
18743                                                                                                               ivermectin
18750                                                                                             ivermectin, pyrantel pamoate
18774                                                                                               milbemycin oxime, spinosad
18775                                                                                               milbemycin oxime, spinosad
18795                                                                                             ivermectin, pyrantel pamoate
18796                                                                                                   cyphenothrin, fipronil
18797                                                                                             ivermectin, pyrantel pamoate
18798                                                                                                   cyphenothrin, fipronil
18799                                                                                             ivermectin, pyrantel pamoate
18800                                                                                             ivermectin, pyrantel pamoate
18820                                                                                                      ear cleaner (zymox)
18829                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18837                                                                                               milbemycin oxime, spinosad
18838                                                                                                                  omega 3
18839                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18844                                                                                                 skin and coat supplement
18845                                                                                                         milbemycin oxime
18847                                                                                                                  omega 3
18850                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18852                                                                                                               fluralaner
18853                                                                                                         milbemycin oxime
18854                                                                                                                  omega 3
18882                                                               dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18908                                                                                                               ivermectin
18909                                                                                                 imidacloprid, permethrin
18919                                                                                                 flumethrin, imidacloprid
18921                                                                                                 flumethrin, imidacloprid
18924                                                                                              lufenuron, milbemycin oxime
18933                                                                                                               fluralaner
18935                                                                                             ivermectin, pyrantel pamoate
18936                                                                                                 flumethrin, imidacloprid
18937                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18961                                                                                                                probiotic
18964                                                                                                                probiotic
18970                                                                                                                probiotic
18987                                                                                             ivermectin, pyrantel pamoate
18988                                                                                                                probiotic
18991                                                                                             ivermectin, pyrantel pamoate
18993                                                                                                                probiotic
18997                                                                                                   acetaminophen, codeine
18998                                                                                                       maropitant citrate
19003                                                                                                 fipronil, (s)-methoprene
19004                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                        betamethasone, gentamicin sulfate
19006                                                                                                        hypochlorous acid
19008                                                                                                               wind toxin
19009                                                                                                            stomach happy
19015                                                                                                               cetirizine
19019                                                                                                   acetaminophen, codeine
19021                                                                                           polysulfated glycosaminoglycan
19022                                                                                               milbemycin oxime, spinosad
19023                                                                          betamethasone, clotrimazole, gentamicin sulfate
19025                                                                                              lufenuron, milbemycin oxime
19040                                                                                               milbemycin oxime, spinosad
19041                                                                                                         milbemycin oxime
19055                                                                                                 fipronil, (s)-methoprene
19056                                                                                                             multivitamin
19057                                                                          dexamethasone, enrofloxacin, miconazole nitrate
19061                                                                                                 fipronil, (s)-methoprene
19062                                                                                             ivermectin, pyrantel pamoate
19068                                                                                             ivermectin, pyrantel pamoate
19070                                                                                              lufenuron, milbemycin oxime
19072                                                                                                 fipronil, (s)-methoprene
19073                                                                                              lufenuron, milbemycin oxime
19078                                                                                              lufenuron, milbemycin oxime
19082                                                                                                 fipronil, (s)-methoprene
19122                                                                                                 imidacloprid, permethrin
19130                                                                                                               fluralaner
19152                                                                               dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                               afoxolaner
19154                                                                                                         milbemycin oxime
19159                                                                                                                lomustine
19165                                                                                             ivermectin, pyrantel pamoate
19169                                                                                                               ivermectin
19170                                                                                                 fipronil, (s)-methoprene
19183                                                                                                 flumethrin, imidacloprid
19184                                                                                                               ivermectin
19213                                                                                                         pyrantel pamoate
19214                                                                                                              toltrazuril
19215                                                                                              lufenuron, milbemycin oxime
19216                                                                                    dinotefuran, permethrin, pyriproxyfen
19220                                                                                             ivermectin, pyrantel pamoate
19221                                                                                             ivermectin, pyrantel pamoate
19222                                                                                                               fluralaner
19223                                                                                             ivermectin, pyrantel pamoate
19224                                                                                                 flumethrin, imidacloprid
19246                                                                                                 joint supplement (other)
19252                                                                                                            ciprofloxacin
19253                                                                                                     cefpodoxime proxetil
19254                                                                                                               prednisone
19271                                                                                              lufenuron, milbemycin oxime
19272                                                                                                               fluralaner
19273                                                                                              lufenuron, milbemycin oxime
19278                                                                                              lufenuron, milbemycin oxime
19281                                                                                              lufenuron, milbemycin oxime
19282                                                                                                               fluralaner
19288                                                                             florfenicol, mometasone furoate, terbinafine
19298                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                             florfenicol, mometasone furoate, terbinafine
19318                                                                                                 fipronil, (s)-methoprene
19325                                                                                                     prednisolone acetate
19326                                                                                              lufenuron, milbemycin oxime
19327                                                                                                 imidacloprid, permethrin
19338                                                                                                         liver supplement
19350                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
19353                                                                                           polysulfated glycosaminoglycan
19354                                                                                                             chlorambucil
19356                                                                                                               ivermectin
19357                                                                                                         milbemycin oxime
19373                                                                                             ivermectin, pyrantel pamoate
19386                                                                                              lufenuron, milbemycin oxime
19387                                                                                              lufenuron, milbemycin oxime
19390                                                                                        betamethasone, gentamicin sulfate
19391                                                                                              lufenuron, milbemycin oxime
19423                                                                               ivermectin, praziquantel, pyrantel pamoate
19427                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19445                                                                                              lufenuron, milbemycin oxime
19446                                                                                                   cyphenothrin, fipronil
19447                                                                                              lufenuron, milbemycin oxime
19448                                                                                                               fluralaner
19449                                                                               joint supplement (chondroitin sulfate/msm)
19450                                                                                                                  omega 3
19452                                                                                    chlorhexidine gluconate, ketoconazole
19453                                                                          betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                  ketoconazole, tris-edta
19457                                                                                              lufenuron, milbemycin oxime
19462                                                                                              lufenuron, milbemycin oxime
19463                                                                                                               fluralaner
19464                                                                                                             enrofloxacin
19465                                                                                           ketoconazole, phytosphingosine
19476                                                                                                                meloxicam
19482                                                                                             ivermectin, pyrantel pamoate
19486                                                                                             ivermectin, pyrantel pamoate
19487                                                                                                               afoxolaner
19492                                                                                             ivermectin, pyrantel pamoate
19493                                                                                                               afoxolaner
19495                                                                               toothpaste/dental health solution or chews
19537                                                                                                               ivermectin
19596                                                                                lufenuron, milbemycin oxime, praziquantel
19603                                                                                               milbemycin oxime, spinosad
19617                                                                                                 fipronil, (s)-methoprene
19641                                                                                                            yunnan baiyao
19662                                                                                                                probiotic
19663                                                                                       amoxicillin, clavulanate potassium
19673                                                                                             ivermectin, pyrantel pamoate
19674                                                                                                                sarolaner
19685                                                                                              lufenuron, milbemycin oxime
19686                                                                                              lufenuron, milbemycin oxime
19688                                                                                              lufenuron, milbemycin oxime
19689                                                                                              lufenuron, milbemycin oxime
19710                                                                                             ivermectin, pyrantel pamoate
19711                                                                                lufenuron, milbemycin oxime, praziquantel
19712                                                                                                 flumethrin, imidacloprid
19713                                                                                lufenuron, milbemycin oxime, praziquantel
19714                                                                                                 flumethrin, imidacloprid
19715                                                                                              lufenuron, milbemycin oxime
19716                                                                                                 flumethrin, imidacloprid
19717                                                                                              lufenuron, milbemycin oxime
19718                                                                                                 flumethrin, imidacloprid
19722                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19735                                                                          betamethasone, clotrimazole, gentamicin sulfate
19737                                                                          betamethasone, clotrimazole, gentamicin sulfate
19741                                                                                              lufenuron, milbemycin oxime
19754                                                                                                         milbemycin oxime
19768                                                                                                               selamectin
19771                                                                                               milbemycin oxime, spinosad
19776                                                                                               milbemycin oxime, spinosad
19777                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                          dexmedetomidine
19788                                                                              chlorhexidine gluconate, miconazole nitrate
19790                                                                                                                mupirocin
19792                                                                                       chlorhexidine gluconate, ophytrium
19801                                                                                                               fluralaner
19803                                                                                              lufenuron, milbemycin oxime
19823                                                                                                       gentamicin sulfate
19828                                                                                           milbemycin oxime, praziquantel
19829                                                                                    dinotefuran, permethrin, pyriproxyfen
19838                                                                                                              omega 3-6-9
19843                                                                           mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                               lokivetmab
19845                                                                           mometasone furoate, orbifloxacin, posaconazole
19851                                                                                                               ivermectin
19856                                                                                                         milbemycin oxime
19876                                                                                                            marbofloxacin
19881                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19888                                                                               ivermectin, praziquantel, pyrantel pamoate
19907                                                                                               milbemycin oxime, spinosad
19909                                                                                                         milbemycin oxime
19911                                                                               toothpaste/dental health solution or chews
19912                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19914                                                                                                     prebiotic, probiotic
19917                                                                                     diatomaceous earth, neem oil, yarrow
19925                                                                                                             enrofloxacin
19926                                                                                                              florfenicol
19927                                                                                                       gentamicin sulfate
19928                                                                                                              polymyxin b
19930                                                                                               milbemycin oxime, spinosad
19932                                                                                               milbemycin oxime, spinosad
19933                                                                                               milbemycin oxime, spinosad
19944                                                                                       joint supplement (glucosamine hcl)
19945                                                                                                                  omega 3
19946                                                                                               milbemycin oxime, spinosad
19947                                                                                       joint supplement (glucosamine hcl)
19948                                                                                                                  omega 3
19949                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                  omega 3
19952                                                                                                         pyrantel pamoate
19958                                                                                                 flumethrin, imidacloprid
19975                                                                                             ivermectin, pyrantel pamoate
19984                                                                                                               fluralaner
20003                                                                                             ivermectin, pyrantel pamoate
20006                                                                                       amoxicillin, clavulanate potassium
20007                                                                                        betamethasone, gentamicin sulfate
20019                                                                                             ivermectin, pyrantel pamoate
20020                                                                                                               afoxolaner
20024                                                                                                                probiotic
20025                                                                                                     digestive supplement
20026                                                                                                             multivitamin
20027                                                                                                               afoxolaner
20028                                                                                             ivermectin, pyrantel pamoate
20038                                                                                                               afoxolaner
20039                                                                                                               ivermectin
20065                                                                                                             imidacloprid
20068                                                                                                               nitenpyram
20069                                                                                    chlorhexidine gluconate, ketoconazole
20070                                                                                                 imidacloprid, moxidectin
20072                                                                                                               ivermectin
20074                                                                                               milbemycin oxime, spinosad
20096                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20099                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20105                                                                                                         atropine sulfate
20106                                                                                                                 xylazine
20125                                                                                                  triamcinolone acetonide
20126                                                                                                               ivermectin
20127                                                                                                               afoxolaner
20130                                                                                                  acetic acid, boric acid
20131                                                                                                         milbemycin oxime
20135                                                                                           milbemycin oxime, praziquantel
20144                                                                                                         milbemycin oxime
20145                                                                                                               lokivetmab
20149                                                                                                         burow's solution
20150                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20164                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20173                                                                                                 imidacloprid, permethrin
20174                                                                                              lufenuron, milbemycin oxime
20175                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20182                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20218                                                                                                               ivermectin
20219                                                                                                               ivermectin
20220                                                                                                               ivermectin
20221                                                                                                               afoxolaner
20222                                                                                                               afoxolaner
20224                                                                                                               afoxolaner
20232                                                                                               imidacloprid, pyriproxyfen
20233                                                                                              lufenuron, milbemycin oxime
20234                                                                             dexamethasone, neomycin sulfate, polymyxin b
20240                                                                                                 imidacloprid, permethrin
20241                                                                                               imidacloprid, pyriproxyfen
20243                                                                                       fipronil, permethrin, pyriproxyfen
20244                                                                                                               ivermectin
20245                                                                                             ivermectin, pyrantel pamoate
20251                                                                                                                probiotic
20275                                                                                              lufenuron, milbemycin oxime
20282                                                                                              lufenuron, milbemycin oxime
20292                                                                                                               ivermectin
20293                                                                                    dinotefuran, permethrin, pyriproxyfen
20295                                                                                    dinotefuran, permethrin, pyriproxyfen
20297                                                                                                 imidacloprid, moxidectin
20298                                                                                                               tobramycin
20300                                                                                                 imidacloprid, moxidectin
20301                                                                                                 flumethrin, imidacloprid
20302                                                                                                 imidacloprid, moxidectin
20303                                                                                                 flumethrin, imidacloprid
20306                                                                                              lufenuron, milbemycin oxime
20315                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20337                                                                                                  ketoconazole, tris-edta
20339                                                                                                  acetic acid, boric acid
20340                                                                                                      silver sulfadiazine
20342                                                                                                                pramoxine
20343                                                                                        trimeprazine tartrate, prednisone
20344                                                                                               milbemycin oxime, spinosad
20348                                                                                             ivermectin, pyrantel pamoate
20356                                                                                           milbemycin oxime, praziquantel
20374                                                                                                             fenbendazole
20376                                                                                                                probiotic
20377                                                                                              lufenuron, milbemycin oxime
20380                                                                                                                probiotic
20382                                                                                 febantel, praziquantel, pyrantel pamoate
20387                                                                                              lufenuron, milbemycin oxime
20388                                                                                              lufenuron, milbemycin oxime
20390                                                                                              lufenuron, milbemycin oxime
20392                                                                               dimethyl sulfoxide, fluocinolone acetonide
20393                                                                                                                mupirocin
20402                                                                                              lufenuron, milbemycin oxime
20405                                                                                           milbemycin oxime, praziquantel
20409                                                                                           milbemycin oxime, praziquantel
20411                                                                                           milbemycin oxime, praziquantel
20413                                                                                                         milbemycin oxime
20425                                                                                              lufenuron, milbemycin oxime
20426                                                                                lufenuron, milbemycin oxime, praziquantel
20441                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20444                                                                                                                meloxicam
20446                                                                                                                meloxicam
20453                                                                                              lufenuron, milbemycin oxime
20460                                                                                              lufenuron, milbemycin oxime
20485                                                                                                                mupirocin
20490                                                                                             ivermectin, pyrantel pamoate
20491                                                                                                               afoxolaner
20510                                                                                               sulfadiazine, trimethoprim
20511                                                                                             ivermectin, pyrantel pamoate
20512                                                                                                               afoxolaner
20516                                                                                             ivermectin, pyrantel pamoate
20517                                                                                                               afoxolaner
20518                                                                                                                  omega 3
20554                                                                                               milbemycin oxime, spinosad
20555                                                                                               milbemycin oxime, spinosad
20561                                                                                               milbemycin oxime, spinosad
20565                                                                                               milbemycin oxime, spinosad
20568                                                                                               milbemycin oxime, spinosad
20574                                                                                                  ketoconazole, tris-edta
20577                                                                                       chlorhexidine gluconate, tris-edta
20579                                                                                               milbemycin oxime, spinosad
20582                                                                                               milbemycin oxime, spinosad
20585                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20615                                                                                               imidacloprid, pyriproxyfen
20623                                                                                                                probiotic
20636                                                                                                 fipronil, (s)-methoprene
20638                                                                                       fipronil, permethrin, pyriproxyfen
20641                                                                 citronella, geranium oil, lemongrass oil, peppermint oil
20642                                                                                                 fipronil, (s)-methoprene
20645                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20648                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20651                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20659                                                                                                  jing tang max's formula
20666                                                                                                immune support supplement
20667                                                                                                                probiotic
20678                                                                                                              finasteride
20698                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20701                                                                                               imidacloprid, pyriproxyfen
20702                                                                                             ivermectin, pyrantel pamoate
20704                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20705                                                                                                  chlorhexidine gluconate
20707                                                                                               milbemycin oxime, spinosad
20708                                                                                                  chlorhexidine gluconate
20709                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20712                                                                                                        unspecified wipes
20717                                                                                                         milbemycin oxime
20718                                                                                                         milbemycin oxime
20728                                                                                                              amoxicillin
20738                                                                                                               prednisone
20748                                                                                             ivermectin, pyrantel pamoate
20761                                                                                               milbemycin oxime, spinosad
20762                                                                                               milbemycin oxime, spinosad
20763                                                                                               milbemycin oxime, spinosad
20766                                                                                               milbemycin oxime, spinosad
20767                                                                                               milbemycin oxime, spinosad
20771                                                                                       amoxicillin, clavulanate potassium
20783                                                                                               milbemycin oxime, spinosad
20791                                                                                   joint supplement (glucosamine hcl/msm)
20796                                                                                   joint supplement (glucosamine hcl/msm)
20800                                                                                                         milbemycin oxime
20808                                                                                             ivermectin, pyrantel pamoate
20809                                                                                                               afoxolaner
20814                                                                                        betamethasone, gentamicin sulfate
20817                                                                                               milbemycin oxime, spinosad
20819                                                                                               milbemycin oxime, spinosad
20849                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20852                                                                                        trimeprazine tartrate, prednisone
20854                                                                                             ivermectin, pyrantel pamoate
20855                                                                                                               afoxolaner
20858                                                                                             ivermectin, pyrantel pamoate
20861                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20862                                                                                             ivermectin, pyrantel pamoate
20863                                                                                                               afoxolaner
20872                                                                                                               selamectin
20897                                                                                                                mupirocin
20918                                                                                        trimeprazine tartrate, prednisone
20939                                                                                                 flumethrin, imidacloprid
20940                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20941                                                                                                             multivitamin
20947                                                                                                 flumethrin, imidacloprid
20949                                                                                                 flumethrin, imidacloprid
20962                                                                                             ivermectin, pyrantel pamoate
20963                                                                                                 fipronil, (s)-methoprene
20964                                                                                             ivermectin, pyrantel pamoate
20965                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20966                                                                                             ivermectin, pyrantel pamoate
21003                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21013                                                                             dexamethasone, neomycin sulfate, polymyxin b
21022                                                                                               milbemycin oxime, spinosad
21025                                                                                        trimeprazine tartrate, prednisone
21029                                                                                               milbemycin oxime, spinosad
21074                                                                                               milbemycin oxime, spinosad
21078                                                                                               milbemycin oxime, spinosad
21080                                                                                               milbemycin oxime, spinosad
21088                                                                                                                 niosomes
21102                                                                                                               selamectin
21109                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21110                                                                                              lufenuron, milbemycin oxime
21111                                                                          betamethasone, clotrimazole, gentamicin sulfate
21112                                                                                                  ketoconazole, tris-edta
21114                                                                                                         milbemycin oxime
21115                                                                                                                 fipronil
21119                                                                               dextromethorphan hydrobromide, guaifenesin
21122                                                                                                         milbemycin oxime
21123                                                                                                                 fipronil
21125                                                                           mometasone furoate, orbifloxacin, posaconazole
21126                                                                                                     cefpodoxime proxetil
21127                                                                                              lufenuron, milbemycin oxime
21128                                                                                                               prednisone
21129                                                                                                     cefpodoxime proxetil
21130                                                                                                                  omega 3
21131                                                                                       chlorhexidine gluconate, ophytrium
21133                                                                                              lufenuron, milbemycin oxime
21168                                                                                             ivermectin, pyrantel pamoate
21169                                                                                                 fipronil, (s)-methoprene
21178                                                                             dexamethasone, neomycin sulfate, polymyxin b
21179                                                                                              lufenuron, milbemycin oxime
21180                                                                                               milbemycin oxime, spinosad
21181                                                                                              lufenuron, milbemycin oxime
21182                                                                                              lufenuron, milbemycin oxime
21183                                                                                              lufenuron, milbemycin oxime
21189                                                                                               milbemycin oxime, spinosad
21190                                                                                               milbemycin oxime, spinosad
21201                                                                                           milbemycin oxime, praziquantel
21224                                                                                                             erythromycin
21253                                                                                               milbemycin oxime, spinosad
21254                                                                                              lufenuron, milbemycin oxime
21256                                                                                              lufenuron, milbemycin oxime
21267                                                                                               milbemycin oxime, spinosad
21268                                                                          betamethasone, clotrimazole, gentamicin sulfate
21269                                                                                               milbemycin oxime, spinosad
21273                                                                                              lufenuron, milbemycin oxime
21278                                                                          betamethasone, clotrimazole, gentamicin sulfate
21282                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21287                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21309                                                                                        trimeprazine tartrate, prednisone
21326                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21331                                                                                       joint supplement (glucosamine hcl)
21338                                                                                               imidacloprid, pyriproxyfen
21359                                                                                              lufenuron, milbemycin oxime
21361                                                                                              lufenuron, milbemycin oxime
21369                                                                                              lufenuron, milbemycin oxime
21384                                                                                             ivermectin, pyrantel pamoate
21385                                                                                                               afoxolaner
21386                                                                          betamethasone, clotrimazole, gentamicin sulfate
21387                                                                                                             enrofloxacin
21388                                                                                                             ketoconazole
21389                                                                                                  triamcinolone acetonide
21403                                                                                                         milbemycin oxime
21413                                                                                                   unspecified medication
21416                                                                             florfenicol, mometasone furoate, terbinafine
21442                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21445                                                                                             ivermectin, pyrantel pamoate
21448                                                                                             ivermectin, pyrantel pamoate
21449                                                                                                               afoxolaner
21465                                                                                                               gabapentin
21472                                                                                       amoxicillin, clavulanate potassium
21481                                                                                               imidacloprid, pyriproxyfen
21492                                                                                             ivermectin, pyrantel pamoate
21493                                                                                                               afoxolaner
21495                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21504                                                                                                             fenbendazole
21507                                                                                                             fenbendazole
21508                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21509                                                                                                         pyrantel pamoate
21527                                                                                                 imidacloprid, moxidectin
21528                                                                                                             imidacloprid
21531                                                                                             ivermectin, pyrantel pamoate
21532                                                                                             ivermectin, pyrantel pamoate
21533                                                                                                               afoxolaner
21545                                                                                                               fluralaner
21549                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21552                                                                                           ketoconazole, phytosphingosine
21553                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21555                                                                                                            dexamethasone
21558                                                                                              lufenuron, milbemycin oxime
21562                                                                                               imidacloprid, pyriproxyfen
21563                                                                                              lufenuron, milbemycin oxime
21564                                                                                               imidacloprid, pyriproxyfen
21585                                                                                               milbemycin oxime, spinosad
21586                                                                                                         milbemycin oxime
21593                                                                                                                  omega 3
21600                                                                                                                meloxicam
21602                                                                                              lufenuron, milbemycin oxime
21605                                                                                                                meloxicam
21607                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21608                                                                                              lufenuron, milbemycin oxime
21609                                                                                                               fluralaner
21612                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21614                                                                                                               fluralaner
21615                                                                                              lufenuron, milbemycin oxime
21616                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21617                                                                                              lufenuron, milbemycin oxime
21618                                                                                                               fluralaner
21619                                                                                              lufenuron, milbemycin oxime
21620                                                                                                               fluralaner
21621                                                                                              lufenuron, milbemycin oxime
21622                                                                                                               fluralaner
21625                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21632                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21642                                                                                              lufenuron, milbemycin oxime
21643                                                                                              lufenuron, milbemycin oxime
21644                                                                                              lufenuron, milbemycin oxime
21645                                                                                              lufenuron, milbemycin oxime
21646                                                                                              lufenuron, milbemycin oxime
21648                                                                                               imidacloprid, pyriproxyfen
21649                                                                                              lufenuron, milbemycin oxime
21650                                                                                                                probiotic
21651                                                                                              lufenuron, milbemycin oxime
21652                                                                                                 flumethrin, imidacloprid
21653                                                                                                      ear cleaner (zymox)
21654                                                                                              lufenuron, milbemycin oxime
21655                                                                                                 flumethrin, imidacloprid
21658                                                                                                 flumethrin, imidacloprid
21659                                                                                                      ear cleaner (zymox)
21660                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21661                                                                                        betamethasone, gentamicin sulfate
21666                                                                                                 flumethrin, imidacloprid
21673                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21677                                                                                                                probiotic
21678                                                                                        betamethasone, gentamicin sulfate
21680                                                                             florfenicol, mometasone furoate, terbinafine
21685                                                                                                                mupirocin
21701                                                                                                 flumethrin, imidacloprid
21705                                                                                                 flumethrin, imidacloprid
21707                                                                                                 flumethrin, imidacloprid
21708                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21723                                                                                               milbemycin oxime, spinosad
21725                                                                                                         milbemycin oxime
21727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21739                                                                                              lufenuron, milbemycin oxime
21748                                                                                              lufenuron, milbemycin oxime
21749                                                                                                 imidacloprid, permethrin
21753                                                                                                         milbemycin oxime
21754                                                                                                         milbemycin oxime
21755                                                                                                               fluralaner
21757                                                                                                         milbemycin oxime
21767                                                                                                                trazodone
21783                                                                                   fipronil, pyriproxyfen, (s)-methoprene
21796                                                                                                               ivermectin
21809                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21810                                                                                               cardiac support supplement
21814                                                                                             ivermectin, pyrantel pamoate
21815                                                                                                 fipronil, (s)-methoprene
21833                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21851                                                                                                         milbemycin oxime
21865                                                                                             ivermectin, pyrantel pamoate
21869                                                                                                               ivermectin
21872                                                                                               imidacloprid, pyriproxyfen
21873                                                                                             ivermectin, pyrantel pamoate
21875                                                                                             ivermectin, pyrantel pamoate
21876                                                                                               imidacloprid, pyriproxyfen
21877                                                                                                              oclacitinib
21878                                                                                                           hydrocortisone
21886                                                                                               imidacloprid, pyriproxyfen
21894                                                                                              lufenuron, milbemycin oxime
21897                                                                                              lufenuron, milbemycin oxime
21898                                                                                                               afoxolaner
21912                                                                                             ivermectin, pyrantel pamoate
21914                                                                                                               ivermectin
21918                                                                                                                probiotic
21921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21925                                                                              rx diet - hypoallergenic hydrolyzed protein
21949                                                                             florfenicol, mometasone furoate, terbinafine
21955                                                                                                               fluralaner
21956                                                                                                               ivermectin
21957                                                                                                                  omega 3
21959                                                                                           sulfamethoxazole, trimethoprim
21982                                                                                       fipronil, permethrin, pyriproxyfen
21993                                                                                                         milbemycin oxime
22020                                                                                         phytosphingosine, salicylic acid
22023                                                                                              lufenuron, milbemycin oxime
22025                                                                                              lufenuron, milbemycin oxime
22026                                                                                              lufenuron, milbemycin oxime
22037                                                                                             ivermectin, pyrantel pamoate
22038                                                                                                               afoxolaner
22041                                                                                             ivermectin, pyrantel pamoate
22042                                                                                                               afoxolaner
22043                                                                                                                meloxicam
22045                                                                                             ivermectin, pyrantel pamoate
22046                                                                                                               afoxolaner
22048                                                                                        betamethasone, gentamicin sulfate
22050                                                                                                                probiotic
22051                                                                                               milbemycin oxime, spinosad
22060                                                                                               milbemycin oxime, spinosad
22062                                                                                                         milbemycin oxime
22064                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22088                                                                                             ivermectin, pyrantel pamoate
22089                                                                                                               afoxolaner
22092                                                                                             ivermectin, pyrantel pamoate
22093                                                                                                               afoxolaner
22118                                                                                                               ivermectin
22120                                                                             dexamethasone, neomycin sulfate, polymyxin b
22121                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22125                                                                                             ivermectin, pyrantel pamoate
22128                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22136                                                                                             ivermectin, pyrantel pamoate
22140                                                                                                         milbemycin oxime
22141                                                                                                               fluralaner
22151                                                                                                              vincristine
22160                                                                                             ivermectin, pyrantel pamoate
22161                                                                                             ivermectin, pyrantel pamoate
22163                                                                                             ivermectin, pyrantel pamoate
22173                                                                                             ivermectin, pyrantel pamoate
22175                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22176                                                                                             ivermectin, pyrantel pamoate
22177                                                                                                               afoxolaner
22179                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22189                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22190                                                                                          ear cleaner (epi-otic advanced)
22196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22199                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22201                                                                             florfenicol, mometasone furoate, terbinafine
22216                                                                                             ivermectin, pyrantel pamoate
22217                                                                                                               afoxolaner
22218                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
22219                                                                          betamethasone, clotrimazole, gentamicin sulfate
22222                                                                                              lufenuron, milbemycin oxime
22223                                                                                              lufenuron, milbemycin oxime
22224                                                                                                                 fipronil
22225                                                                                              lufenuron, milbemycin oxime
22226                                                                                                               afoxolaner
22227                                                                                              lufenuron, milbemycin oxime
22228                                                                                                               afoxolaner
22229                                                                                                         milbemycin oxime
22230                                                                                                                lotilaner
22237                                                                                               milbemycin oxime, spinosad
22238                                                                                               milbemycin oxime, spinosad
22239                                                                                               milbemycin oxime, spinosad
22240                                                                                                                carprofen
22241                                                                                                          dexmedetomidine
22243                                                                                                   unspecified medication
22245                                                                                                               cephalexin
22253                                                                                               milbemycin oxime, spinosad
22261                                                                                             ivermectin, pyrantel pamoate
22262                                                                                                               afoxolaner
22265                                                                                             ivermectin, pyrantel pamoate
22267                                                                                             ivermectin, pyrantel pamoate
22268                                                                                                               afoxolaner
22270                                                                                                                  omega 3
22272                                                                                                                mupirocin
22289                                                                                                         milbemycin oxime
22299                                                                                               milbemycin oxime, spinosad
22306                                                                                              lufenuron, milbemycin oxime
22308                                                                                              lufenuron, milbemycin oxime
22311                                                                                              lufenuron, milbemycin oxime
22313                                                                                                          dexmedetomidine
22314                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22315                                                                                                                probiotic
22316                                                                                              lufenuron, milbemycin oxime
22319                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22321                                                                                              lufenuron, milbemycin oxime
22323                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22341                                                                                  betamethasone, florfenicol, terbinafine
22342                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22343                                                                                  betamethasone, florfenicol, terbinafine
22345                                                                                                             enrofloxacin
22346                                                                                                       miconazole nitrate
22347                                                                                                            dexamethasone
22349                                                                                                                meloxicam
22351                                                                                               milbemycin oxime, spinosad
22352                                                                                               milbemycin oxime, spinosad
22353                                                                                               milbemycin oxime, spinosad
22367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22404                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22407                                                                                                     cefpodoxime proxetil
22408                                                                                                  chlorhexidine gluconate
22410                                                                                                  chlorhexidine gluconate
22413                                                                                             ivermectin, pyrantel pamoate
22417                                                                                             ivermectin, pyrantel pamoate
22430                                                                                                                meloxicam
22439                                                                                               milbemycin oxime, spinosad
22440                                                                                               milbemycin oxime, spinosad
22441                                                                                              lufenuron, milbemycin oxime
22459                                                                                                  triamcinolone acetonide
22463                                                                                                  triamcinolone acetonide
22530                                                                                             ivermectin, pyrantel pamoate
22531                                                                                              lufenuron, milbemycin oxime
22532                                                                                              lufenuron, milbemycin oxime
22533                                                                                                 flumethrin, imidacloprid
22534                                                                                              lufenuron, milbemycin oxime
22537                                                                                                                ophytrium
22540                                                                                                            yunnan baiyao
22541                                                                                              lufenuron, milbemycin oxime
22545                                                                                              lufenuron, milbemycin oxime
22546                                                                                              lufenuron, milbemycin oxime
22547                                                                                               imidacloprid, pyriproxyfen
22548                                                                                              lufenuron, milbemycin oxime
22549                                                                                              lufenuron, milbemycin oxime
22552                                                                                                                  omega 3
22557                                                                                             ivermectin, pyrantel pamoate
22558                                                                                             ivermectin, pyrantel pamoate
22574                                                                                                  triamcinolone acetonide
22575                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
22577                                                                                             ivermectin, pyrantel pamoate
22578                                                                                             ivermectin, pyrantel pamoate
22579                                                                                             ivermectin, pyrantel pamoate
22583                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22585                                                                                                                probiotic
22598                                                                                                 fipronil, (s)-methoprene
22601                                                                                                 fipronil, (s)-methoprene
22606                                                                                             ivermectin, pyrantel pamoate
22607                                                                                                 fipronil, (s)-methoprene
22610                                                                                               milbemycin oxime, spinosad
22611                                                                                               milbemycin oxime, spinosad
22625                                                                                             ivermectin, pyrantel pamoate
22653                                                                                              lufenuron, milbemycin oxime
22655                                                                                                 fipronil, (s)-methoprene
22656                                                                                              lufenuron, milbemycin oxime
22662                                                                          betamethasone, clotrimazole, gentamicin sulfate
22667                                                                          betamethasone, clotrimazole, gentamicin sulfate
22669                                                                          betamethasone, clotrimazole, gentamicin sulfate
22672                                                                          betamethasone, clotrimazole, gentamicin sulfate
22673                                                                                        trimeprazine tartrate, prednisone
22681                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22682                                                                                             ivermectin, pyrantel pamoate
22683                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22690                                                                                                 flumethrin, imidacloprid
22691                                                                                              lufenuron, milbemycin oxime
22692                                                                                              lufenuron, milbemycin oxime
22693                                                                                                         milbemycin oxime
22704                                                                                             ivermectin, pyrantel pamoate
22705                                                                                                 fipronil, (s)-methoprene
22707                                                                                             ivermectin, pyrantel pamoate
22708                                                                                                 fipronil, (s)-methoprene
22711                                                                                             ivermectin, pyrantel pamoate
22713                                                                                             ivermectin, pyrantel pamoate
22714                                                                                                                sarolaner
22716                                                                                             ivermectin, pyrantel pamoate
22717                                                                                                                sarolaner
22718                                                                                             ivermectin, pyrantel pamoate
22719                                                                                             ivermectin, pyrantel pamoate
22733                                                                                                 flumethrin, imidacloprid
22748                                                                                              lufenuron, milbemycin oxime
22749                                                                                              lufenuron, milbemycin oxime
22750                                                                                               imidacloprid, pyriproxyfen
22751                                                                                              lufenuron, milbemycin oxime
22752                                                                                               imidacloprid, pyriproxyfen
22754                                                                                              lufenuron, milbemycin oxime
22763                                                                                             ivermectin, pyrantel pamoate
22764                                                                                               imidacloprid, pyriproxyfen
22765                                                                                          ear cleaner (epi-otic advanced)
22766                                                                                                         milbemycin oxime
22770                                                                                                         milbemycin oxime
22777                                                                                               milbemycin oxime, spinosad
22778                                                                                               milbemycin oxime, spinosad
22779                                                                                               milbemycin oxime, spinosad
22780                                                                                               milbemycin oxime, spinosad
22795                                                                                             ivermectin, pyrantel pamoate
22796                                                                                               imidacloprid, pyriproxyfen
22797                                                                                              lufenuron, milbemycin oxime
22798                                                                                       fipronil, permethrin, pyriproxyfen
22799                                                                                              lufenuron, milbemycin oxime
22800                                                                                                               afoxolaner
22801                                                                                              lufenuron, milbemycin oxime
22802                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22803                                                                                             ivermectin, pyrantel pamoate
22804                                                                                                               afoxolaner
22830                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22840                                                                                             ivermectin, pyrantel pamoate
22848                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22858                                                                                                  chlorhexidine gluconate
22875                                                                                               imidacloprid, pyriproxyfen
22886                                                                                                  ketoconazole, tris-edta
22909                                                                                             ivermectin, pyrantel pamoate
22919                                                                                                               afoxolaner
22920                                                                                                             fenbendazole
22922                                                                                                  ketoconazole, tris-edta
22923                                                                                                     prebiotic, probiotic
22926                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22929                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22936                                                                                       chlorhexidine gluconate, tris-edta
22938                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22939                                                                          betamethasone, clotrimazole, gentamicin sulfate
22954                                                                                               imidacloprid, pyriproxyfen
22955                                                                                             ivermectin, pyrantel pamoate
22963                                                                                                 fipronil, (s)-methoprene
22965                                                                                             ivermectin, pyrantel pamoate
22966                                                                                                 flumethrin, imidacloprid
22967                                                                                                                probiotic
22971                                                                                             ivermectin, pyrantel pamoate
22990                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22991                                                                                                         milbemycin oxime
22992                                                                                                             imidacloprid
22994                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23007                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23018                                                                                                            metronidazole
23019                                                                                                                carprofen
23024                                                                                                                probiotic
23025                                                                                                     digestive supplement
23043                                                                                                 joint supplement (other)
23049                                                                                                               ivermectin
23051                                                                                                               ivermectin
23053                                                                                             ivermectin, pyrantel pamoate
23055                                                                                                               fluralaner
23059                                                                                                         milbemycin oxime
23060                                                                                                         milbemycin oxime
23061                                                                                                               fluralaner
23064                                                                                              lufenuron, milbemycin oxime
23066                                                                                              lufenuron, milbemycin oxime
23083                                                                                               milbemycin oxime, spinosad
23095                                                                                               milbemycin oxime, spinosad
23096                                                                                                               fluralaner
23100                                                                             florfenicol, mometasone furoate, terbinafine
23102                                                                                       amoxicillin, clavulanate potassium
23103                                                                             florfenicol, mometasone furoate, terbinafine
23108                                                                                                  chlorhexidine gluconate
23122                                                                                             ivermectin, pyrantel pamoate
23123                                                                                               imidacloprid, pyriproxyfen
23124                                                                                               imidacloprid, pyriproxyfen
23125                                                                                             ivermectin, pyrantel pamoate
23134                                                                                              lufenuron, milbemycin oxime
23137                                                                                              lufenuron, milbemycin oxime
23138                                                                                              lufenuron, milbemycin oxime
23143                                                                                              lufenuron, milbemycin oxime
23144                                                                                                                sarolaner
23153                                                                                                                mupirocin
23154                                                                             dexamethasone, neomycin sulfate, polymyxin b
23163                                                                           dexamethasone, neomycin sulfate, thiabendazole
23169                                                                                       unspecified heartworm preventative
23173                                                                                        unspecified parasite preventative
23175                                                                                             ivermectin, pyrantel pamoate
23202                                                                                                               ivermectin
23237                                                                                           praziquantel, pyrantel pamoate
23249                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23250                                                                                                               afoxolaner
23251                                                                                             ivermectin, pyrantel pamoate
23258                                                                                             ivermectin, pyrantel pamoate
23259                                                                                    dinotefuran, permethrin, pyriproxyfen
23266                                                                                                               isoflurane
23267                                                                                             ivermectin, pyrantel pamoate
23268                                                                                    dinotefuran, permethrin, pyriproxyfen
23276                                                                                                               isoflurane
23278                                                                                                         phytosphingosine
23279                                                                                             ivermectin, pyrantel pamoate
23280                                                                                                               afoxolaner
23283                                                                                       chlorhexidine gluconate, ophytrium
23284                                                                                       amoxicillin, clavulanate potassium
23286                                                                                             ivermectin, pyrantel pamoate
23288                                                                                                         phytosphingosine
23294                                                                                             ivermectin, pyrantel pamoate
23299                                                                                       amoxicillin, clavulanate potassium
23304                                                                                                         phytosphingosine
23308                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23321                                                                                 febantel, praziquantel, pyrantel pamoate
23322                                                                                                                mupirocin
23325                                                                                                               lokivetmab
23333                                                                                             ivermectin, pyrantel pamoate
23336                                                                                             ivermectin, pyrantel pamoate
23337                                                                                                 fipronil, (s)-methoprene
23338                                                                                    dinotefuran, permethrin, pyriproxyfen
23340                                                                                          ear cleaner (epi-otic advanced)
23341                                                                                             ivermectin, pyrantel pamoate
23342                                                                                    dinotefuran, permethrin, pyriproxyfen
23344                                                                                             ivermectin, pyrantel pamoate
23345                                                                                    dinotefuran, permethrin, pyriproxyfen
23349                                                                                                         phytosphingosine
23350                                                                                             ivermectin, pyrantel pamoate
23353                                                                                       amoxicillin, clavulanate potassium
23355                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23356                                                                                             ivermectin, pyrantel pamoate
23360                                                                                             ivermectin, pyrantel pamoate
23364                                                                                                         phytosphingosine
23366                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23384                                                                                                 fipronil, (s)-methoprene
23388                                                                                                               ivermectin
23403                                                                                                         milbemycin oxime
23404                                                                                                               fluralaner
23413                                                                                                               ivermectin
23414                                                                                             ivermectin, pyrantel pamoate
23419                                                                                              dexamethasone, enrofloxacin
23427                                                                                              lufenuron, milbemycin oxime
23428                                                                                              lufenuron, milbemycin oxime
23437                                                                                               milbemycin oxime, spinosad
23450                                                                                       fipronil, permethrin, pyriproxyfen
23456                                                                                        betamethasone, gentamicin sulfate
23472                                                                                    dinotefuran, permethrin, pyriproxyfen
23482                                                                                    dinotefuran, permethrin, pyriproxyfen
23484                                                                                                         milbemycin oxime
23485                                                                                    dinotefuran, permethrin, pyriproxyfen
23487                                                                                    dinotefuran, permethrin, pyriproxyfen
23491                                                                                       amoxicillin, clavulanate potassium
23507                                                                                              lufenuron, milbemycin oxime
23520                                                                                    dinotefuran, permethrin, pyriproxyfen
23533                                                                             dexamethasone, neomycin sulfate, polymyxin b
23534                                                                                        betamethasone, gentamicin sulfate
23540                                                                                             ivermectin, pyrantel pamoate
23541                                                                                                               afoxolaner
23552                                                                                             ivermectin, pyrantel pamoate
23553                                                                                             ivermectin, pyrantel pamoate
23557                                                                                                               ivermectin
23565                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23566                                                                                      ear cleaner (zymox), hydrocortisone
23568                                                                                                 flumethrin, imidacloprid
23571                                                                                             ivermectin, pyrantel pamoate
23572                                                                                                 fipronil, (s)-methoprene
23588                                                                                               milbemycin oxime, spinosad
23590                                                                                                                vitamin c
23610                                                                                              lufenuron, milbemycin oxime
23617                                                                                              lufenuron, milbemycin oxime
23618                                                                                              lufenuron, milbemycin oxime
23619                                                                                              lufenuron, milbemycin oxime
23620                                                                                              lufenuron, milbemycin oxime
23622                                                                                              lufenuron, milbemycin oxime
23646                                                                                               milbemycin oxime, spinosad
23647                                                                                               milbemycin oxime, spinosad
23651                                                                                           milbemycin oxime, praziquantel
23657                                                                                                         milbemycin oxime
23659                                                                                                               fluralaner
23685                                                                                              lufenuron, milbemycin oxime
23686                                                                                                               fluralaner
23688                                                                                                               fluralaner
23707                                                                                        betamethasone, gentamicin sulfate
23718                                                                                             ivermectin, pyrantel pamoate
23721                                                                                             ivermectin, pyrantel pamoate
23722                                                                                                               afoxolaner
23724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23730                                                                                              lufenuron, milbemycin oxime
23732                                                                                              lufenuron, milbemycin oxime
23740                                                                                                         milbemycin oxime
23747                                                                                              lufenuron, milbemycin oxime
23749                                                                                                   unspecified medication
23757                                                                                              lufenuron, milbemycin oxime
23804                                                                                              lufenuron, milbemycin oxime
23805                                                                                              lufenuron, milbemycin oxime
23808                                                                                              lufenuron, milbemycin oxime
23809                                                                                                 flumethrin, imidacloprid
23819                                                                                              lufenuron, milbemycin oxime
23861                                                                                                         milbemycin oxime
23862                                                                                                               afoxolaner
23865                                                                                             ivermectin, pyrantel pamoate
23866                                                                                               imidacloprid, pyriproxyfen
23868                                                                                               imidacloprid, pyriproxyfen
23871                                                                                               imidacloprid, pyriproxyfen
23872                                                                                                  chlorhexidine gluconate
23873                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
23898                                                                                                 flumethrin, imidacloprid
23899                                                                              over-the-counter unmedicated shampoo/mousse
23900                                                                                              lufenuron, milbemycin oxime
23901                                                                                              lufenuron, milbemycin oxime
23902                                                                                                 flumethrin, imidacloprid
23905                                                                                lufenuron, milbemycin oxime, praziquantel
23906                                                                                                 flumethrin, imidacloprid
23909                                                                                                  chlorhexidine gluconate
23910                                                                                                         milbemycin oxime
23914                                                                             florfenicol, mometasone furoate, terbinafine
23917                                                                                                                mupirocin
23924                                                                                             ivermectin, pyrantel pamoate
23925                                                                                                               afoxolaner
23933                                                                                  betamethasone, florfenicol, terbinafine
23942                                                                                                                mupirocin
23955                                                                                                         milbemycin oxime
23956                                                                                                 fipronil, (s)-methoprene
23957                                                                                                            metronidazole
23958                                                                          betamethasone, clotrimazole, gentamicin sulfate
23959                                                                                                  ketoconazole, tris-edta
23965                                                                          betamethasone, clotrimazole, gentamicin sulfate
23969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23974                                                                                               imidacloprid, pyriproxyfen
23976                                                                                               imidacloprid, pyriproxyfen
23980                                                                                                             multivitamin
24010                                                                                               milbemycin oxime, spinosad
24012                                                                             dexamethasone, neomycin sulfate, polymyxin b
24017                                                                                               milbemycin oxime, spinosad
24018                                                                                               milbemycin oxime, spinosad
24019                                                                                               milbemycin oxime, spinosad
24020                                                                                               milbemycin oxime, spinosad
24022                                                                                               milbemycin oxime, spinosad
24029                                                                                               milbemycin oxime, spinosad
24045                                                                                             ivermectin, pyrantel pamoate
24046                                                                                                              oclacitinib
24062                                                                                              lufenuron, milbemycin oxime
24068                                                                                                                probiotic
24072                                                                                              lufenuron, milbemycin oxime
24075                                                                                              lufenuron, milbemycin oxime
24076                                                                                              lufenuron, milbemycin oxime
24077                                                                                              lufenuron, milbemycin oxime
24079                                                                                              lufenuron, milbemycin oxime
24104                                                                                                                carprofen
24106                                                                                                                 tramadol
24116                                                                                                               afoxolaner
24117                                                                                             ivermectin, pyrantel pamoate
24139                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24142                                                                               ivermectin, praziquantel, pyrantel pamoate
24144                                                                                                         milbemycin oxime
24145                                                                                       joint supplement (glucosamine hcl)
24149                                                                                                         milbemycin oxime
24154                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24155                                                                                                                  omega 3
24157                                                                                                                sarolaner
24162                                                                               ivermectin, praziquantel, pyrantel pamoate
24165                                                                                                         milbemycin oxime
24166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24172                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24174                                                                                             ivermectin, pyrantel pamoate
24185                                                                                                 homatropine, hydrocodone
24189                                                                                        betamethasone, gentamicin sulfate
24192                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24193                                                                                                                  omega 3
24194                                                                                             ivermectin, pyrantel pamoate
24195                                                                                                                probiotic
24203                                                                                                  acetic acid, boric acid
24205                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24206                                                                                                                probiotic
24207                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
24208                                                                          betamethasone, clotrimazole, gentamicin sulfate
24209                                                                                        betamethasone, gentamicin sulfate
24215                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24217                                                                                                  chlorhexidine gluconate
24221                                                                                                      silver sulfadiazine
24222                                                                                                      silver sulfadiazine
24246                                                                                        trimeprazine tartrate, prednisone
24250                                                                                             ivermectin, pyrantel pamoate
24253                                                                                             ivermectin, pyrantel pamoate
24257                                                                                                         milbemycin oxime
24258                                                                                                         milbemycin oxime
24259                                                                                                               afoxolaner
24261                                                                                           milbemycin oxime, praziquantel
24265                                                                                          atropine sulfate, diphenoxylate
24267                                                                                               lactated ringer's solution
24268                                                                                               lactated ringer's solution
24269                                                                                                              oclacitinib
24276                                                                                              lufenuron, milbemycin oxime
24282                                                                                                                probiotic
24312                                                                                        betamethasone, gentamicin sulfate
24313                                                                                         burow's solution, hydrocortisone
24314                                                                                                                probiotic
24319                                                                                                                firocoxib
24322                                                                                        betamethasone, gentamicin sulfate
24328                                                                                                              doxycycline
24343                                                                                               milbemycin oxime, spinosad
24375                                                                                                               ivermectin
24393                                                                                              lufenuron, milbemycin oxime
24394                                                                                lufenuron, milbemycin oxime, praziquantel
24395                                                                                                               afoxolaner
24400                                                                                              lufenuron, milbemycin oxime
24402                                                                                                               afoxolaner
24403                                                                                lufenuron, milbemycin oxime, praziquantel
24405                                                                                                                  omega 3
24406                                                                                                               prednisone
24407                                                                                                              clindamycin
24409                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24410                                                                                                               afoxolaner
24413                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24416                                                                           mometasone furoate, orbifloxacin, posaconazole
24417                                                                                                         tylosin tartrate
24420                                                                                                         tylosin tartrate
24421                                                                                                               ivermectin
24422                                                                                                 fipronil, (s)-methoprene
24424                                                                                                                probiotic
24425                                                                                             ivermectin, pyrantel pamoate
24426                                                                                                               afoxolaner
24431                                                                                             ivermectin, pyrantel pamoate
24432                                                                                                               afoxolaner
24435                                                                                                               ivermectin
24437                                                                                                               afoxolaner
24451                                                                           mometasone furoate, orbifloxacin, posaconazole
24452                                                                             dexamethasone, neomycin sulfate, polymyxin b
24453                                                                                                     prednisolone acetate
24455                                                                                                                probiotic
24459                                                                                       joint supplement (glucosamine hcl)
24460                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24468                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24473                                                                                               milbemycin oxime, spinosad
24475                                                                                               milbemycin oxime, spinosad
24476                                                                                                               ivermectin
24477                                                                               ivermectin, praziquantel, pyrantel pamoate
24478                                                                                                                probiotic
24480                                                                                                         milbemycin oxime
24481                                                                                                         milbemycin oxime
24484                                                                                                         milbemycin oxime
24486                                                                                             ivermectin, pyrantel pamoate
24514                                                                                                                probiotic
24520                                                                                       fipronil, permethrin, pyriproxyfen
24521                                                                                             ivermectin, pyrantel pamoate
24526                                                                                        betamethasone, gentamicin sulfate
24534                                                                                       fipronil, permethrin, pyriproxyfen
24536                                                                                             ivermectin, pyrantel pamoate
24593                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24597                                                                                               milbemycin oxime, spinosad
24598                                                                                                         liver supplement
24599                                                                                               milbemycin oxime, spinosad
24601                                                                                               milbemycin oxime, spinosad
24602                                                                                               milbemycin oxime, spinosad
24605                                                                                               milbemycin oxime, spinosad
24610                                                                                                  acetic acid, boric acid
24647                                                                                          ear cleaner (epi-otic advanced)
24648                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24653                                                                                      ear cleaner (zymox), hydrocortisone
24660                                                                                                               afoxolaner
24669                                                                                                               afoxolaner
24688                                                                             dexamethasone, neomycin sulfate, polymyxin b
24707                                                                                                                mupirocin
24733                                                                                                               ivermectin
24734                                                                                                               afoxolaner
24758                                                                             dexamethasone, neomycin sulfate, polymyxin b
24762                                                                                              lufenuron, milbemycin oxime
24768                                                                                             ivermectin, pyrantel pamoate
24769                                                                                                               afoxolaner
24802                                                                                                               selamectin
24804                                                                                                                cefovecin
24805                                                                                                              oclacitinib
24806                                                                                                              oclacitinib
24817                                                                                                                tris-edta
24819                                                                                                               benzocaine
24824                                                                                             ivermectin, pyrantel pamoate
24825                                                                                                               fluralaner
24827                                                                               toothpaste/dental health solution or chews
24828                                                                                   joint supplement (glucosamine hcl/msm)
24829                                                                                             ivermectin, pyrantel pamoate
24830                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24839                                                                                             ivermectin, pyrantel pamoate
24840                                                                                                               afoxolaner
24850                                                                                                         milbemycin oxime
24867                                                                                              lufenuron, milbemycin oxime
24878                                                                                        betamethasone, gentamicin sulfate
24898                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24902                                                                                              lufenuron, milbemycin oxime
24917                                                                                        betamethasone, gentamicin sulfate
24918                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24919                                                                                  moxidectin, pyrantel pamoate, sarolaner
24935                                                                                              lufenuron, milbemycin oxime
24937                                                                                              lufenuron, milbemycin oxime
24938                                                                                              lufenuron, milbemycin oxime
24940                                                                                              lufenuron, milbemycin oxime
24942                                                                                              lufenuron, milbemycin oxime
24948                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24949                                                                                              lufenuron, milbemycin oxime
24950                                                                                                   cyphenothrin, fipronil
24963                                                                                              lufenuron, milbemycin oxime
24964                                                                                           milbemycin oxime, praziquantel
24968                                                                                             ivermectin, pyrantel pamoate
24969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24971                                                                                             ivermectin, pyrantel pamoate
24973                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24974                                                                                                 flumethrin, imidacloprid
24975                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24982                                                                                                 fipronil, (s)-methoprene
24984                                                                                              lufenuron, milbemycin oxime
24985                                                                                                 fipronil, (s)-methoprene
24987                                                                                              lufenuron, milbemycin oxime
24988                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24989                                                                                                            dexamethasone
24993                                                                                                                 geraniol
25004                                                                                                               afoxolaner
25020                                                                                              lufenuron, milbemycin oxime
25021                                                                                                               fluralaner
25022                                                                                              lufenuron, milbemycin oxime
25059                                                                                             ivermectin, pyrantel pamoate
25079                                                                                             ivermectin, pyrantel pamoate
25087                                                                                                 flumethrin, imidacloprid
25094                                                                                               milbemycin oxime, spinosad
25099                                                                                             ivermectin, pyrantel pamoate
25100                                                                                                               fluralaner
25101                                                                                                               fluralaner
25102                                                                                             ivermectin, pyrantel pamoate
25118                                                                                                         milbemycin oxime
25119                                                                                              lufenuron, milbemycin oxime
25120                                                                                    dinotefuran, permethrin, pyriproxyfen
25124                                                                                          ear cleaner (epi-otic advanced)
25129                                                                                                                probiotic
25191                                                                                                         milbemycin oxime
25196                                                                                              lufenuron, milbemycin oxime
25198                                                                                                  ketoconazole, tris-edta
25233                                                                                                               ivermectin
25234                                                                                             ivermectin, pyrantel pamoate
25241                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25255                                                                                         phytosphingosine, salicylic acid
25258                                                                                                       paw protection wax
25262                                                                          betamethasone, clotrimazole, gentamicin sulfate
25269                                                                                                               gabapentin
25270                                                                                                                trazodone
25296                                                                                             ivermectin, pyrantel pamoate
25299                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25300                                                                                                               afoxolaner
25309                                                                                lufenuron, milbemycin oxime, praziquantel
25310                                                                                                 fipronil, (s)-methoprene
25311                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25315                                                                                              lufenuron, milbemycin oxime
25316                                                                                             ivermectin, pyrantel pamoate
25317                                                                                                               afoxolaner
25331                                                                                              lufenuron, milbemycin oxime
25337                                                                                               milbemycin oxime, spinosad
25342                                                                                                               afoxolaner
25343                                                                                                         milbemycin oxime
25345                                                                                  betamethasone, florfenicol, terbinafine
25346                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
25347                                                                                       joint supplement (glucosamine hcl)
25367                                                                                        trimeprazine tartrate, prednisone
25390                                                                                                               prednisone
25391                                                                                                     cefpodoxime proxetil
25405                                                                                                               selamectin
25409                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
25410                                                                                    chlorhexidine gluconate, ketoconazole
25417                                                                                                  chlorhexidine gluconate
25421                                                                                                               selamectin
25424                                                                                                                probiotic
25425                                                                                                               loratadine
25437                                                                                              lufenuron, milbemycin oxime
25444                                                                                              lufenuron, milbemycin oxime
25473                                                                                             ivermectin, pyrantel pamoate
25482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25493                                                                                             ivermectin, pyrantel pamoate
25494                                                                                             ivermectin, pyrantel pamoate
25501                                                                                             ivermectin, pyrantel pamoate
25514                                                                                       joint supplement (glucosamine hcl)
25515                                                                                                                  omega 3
25516                                                                                             ivermectin, pyrantel pamoate
25520                                                                                             ivermectin, pyrantel pamoate
25521                                                                                                               afoxolaner
25523                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25547                                                                                                             acepromazine
25554                                                                                               milbemycin oxime, spinosad
25555                                                                                               milbemycin oxime, spinosad
25556                                                                                               milbemycin oxime, spinosad
25557                                                                                               milbemycin oxime, spinosad
25575                                                                                             ivermectin, pyrantel pamoate
25576                                                                                                               ivermectin
25577                                                                                                               ivermectin
25589                                                                                                         milbemycin oxime
25591                                                                                                         milbemycin oxime
25612                                                                                               milbemycin oxime, spinosad
25617                                                                                                           liquid bandage
25619                                                                          betamethasone, clotrimazole, gentamicin sulfate
25622                                                                             florfenicol, mometasone furoate, terbinafine
25660                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25663                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25666                                                                                        trimeprazine tartrate, prednisone
25670                                                                                                 imidacloprid, moxidectin
25671                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25674                                                                                                 imidacloprid, moxidectin
25683                                                                                             ivermectin, pyrantel pamoate
25706                                                                                               imidacloprid, pyriproxyfen
25707                                                                                                             fenbendazole
25708                                                                                              lufenuron, milbemycin oxime
25725                                                                                                                probiotic
25727                                                                                             ivermectin, pyrantel pamoate
25730                                                                                                         benzoyl peroxide
25737                                                                                                     digestive supplement
25740                                                                                                               afoxolaner
25741                                                                                              lufenuron, milbemycin oxime
25743                                                                                    dinotefuran, permethrin, pyriproxyfen
25744                                                                                                  ketoconazole, tris-edta
25748                                                                                                         milbemycin oxime
25749                                                                                             ivermectin, pyrantel pamoate
25750                                                                                                 fipronil, (s)-methoprene
25751                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
25753                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25754                                                                                              lufenuron, milbemycin oxime
25755                                                                                                               fluralaner
25756                                                                                    dinotefuran, permethrin, pyriproxyfen
25757                                                                                                               afoxolaner
25765                                                                                                  ketoconazole, tris-edta
25795                                                                                                             fenbendazole
25804                                                                                              lufenuron, milbemycin oxime
25806                                                                                              lufenuron, milbemycin oxime
25807                                                                                              lufenuron, milbemycin oxime
25819                                                                                               milbemycin oxime, spinosad
25820                                                                                               milbemycin oxime, spinosad
25826                                                                                                         milbemycin oxime
25827                                                                                                         milbemycin oxime
25828                                                                                                         milbemycin oxime
25830                                                                                                         milbemycin oxime
25837                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
25846                                                                                                               fluralaner
25884                                                                                             ivermectin, pyrantel pamoate
25887                                                                                             ivermectin, pyrantel pamoate
25888                                                                                                               afoxolaner
25919                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25936                                                                                                               gabapentin
25937                                                                                                               prednisone
25939                                                                                           milbemycin oxime, praziquantel
25940                                                                                                               fluralaner
25941                                                                                             ivermectin, pyrantel pamoate
25943                                                                                                               selamectin
25948                                                                                                               ivermectin
25949                                                                                           milbemycin oxime, praziquantel
25950                                                                                                               fluralaner
25951                                                                                             ivermectin, pyrantel pamoate
25953                                                                                             ivermectin, pyrantel pamoate
25954                                                                                                               selamectin
25964                                                                                             ivermectin, pyrantel pamoate
25965                                                                                                               afoxolaner
25966                                                                                                               ivermectin
25967                                                                                   joint supplement (glucosamine hcl/msm)
25981                                                                           mometasone furoate, orbifloxacin, posaconazole
25983                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25985                                                                                               imidacloprid, pyriproxyfen
25986                                                                                                 imidacloprid, moxidectin
25998                                                                                                                toceranib
26004                                                                                             ivermectin, pyrantel pamoate
26022                                                                                       amoxicillin, clavulanate potassium
26024                                                                                                               fluralaner
26027                                                                                       amoxicillin, clavulanate potassium
26031                                                                                                         milbemycin oxime
26033                                                                                                               fluralaner
26037                                                                                                               fluralaner
26039                                                                                                               fluralaner
26047                                                                                                               fluralaner
26048                                                                                                         milbemycin oxime
26050                                                                                                               fluralaner
26054                                                                                                               fluralaner
26056                                                                                                               fluralaner
26064                                                                                                                probiotic
26075                                                                                                                  amforal
26078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26084                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
26085                                                                             florfenicol, mometasone furoate, terbinafine
26093                                                                                        betamethasone, gentamicin sulfate
26114                                                                                             ivermectin, pyrantel pamoate
26115                                                                           dexamethasone, neomycin sulfate, thiabendazole
26127                                                                                                         phytosphingosine
26128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
26129                                                                          betamethasone, clotrimazole, gentamicin sulfate
26133                                                                          betamethasone, clotrimazole, gentamicin sulfate
26134                                                                          betamethasone, clotrimazole, gentamicin sulfate
26138                                                                                    dinotefuran, permethrin, pyriproxyfen
26139                                                                                    chlorhexidine gluconate, ketoconazole
26141                                                                                    dinotefuran, permethrin, pyriproxyfen
26148                                                                                    dinotefuran, permethrin, pyriproxyfen
26151                                                                                           milbemycin oxime, praziquantel
26152                                                                                    dinotefuran, permethrin, pyriproxyfen
26156                                                                                           milbemycin oxime, praziquantel
26157                                                                                    dinotefuran, permethrin, pyriproxyfen
26158                                                                                           milbemycin oxime, praziquantel
26159                                                                                    dinotefuran, permethrin, pyriproxyfen
26165                                                                                           milbemycin oxime, praziquantel
26166                                                                                    dinotefuran, permethrin, pyriproxyfen
26184                                                                             dexamethasone, neomycin sulfate, polymyxin b
26187                                                                             dexamethasone, neomycin sulfate, polymyxin b
26190                                                                                    chlorhexidine gluconate, ketoconazole
26192                                                                                    dinotefuran, permethrin, pyriproxyfen
26197                                                                             dexamethasone, neomycin sulfate, polymyxin b
26199                                                                                    dinotefuran, permethrin, pyriproxyfen
26203                                                                                           milbemycin oxime, praziquantel
26204                                                                                    dinotefuran, permethrin, pyriproxyfen
26207                                                                                           milbemycin oxime, praziquantel
26208                                                                                    dinotefuran, permethrin, pyriproxyfen
26211                                                                                           milbemycin oxime, praziquantel
26212                                                                                    dinotefuran, permethrin, pyriproxyfen
26214                                                                                           milbemycin oxime, praziquantel
26215                                                                                    dinotefuran, permethrin, pyriproxyfen
26227                                                                                                                 tramadol
26229                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26238                                                                                                         milbemycin oxime
26239                                                                                                 kidney health supplement
26258                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26264                                                                                                                trazodone
26265                                                                               dextromethorphan hydrobromide, guaifenesin
26278                                                                               dimethyl sulfoxide, fluocinolone acetonide
26279                                                                                               milbemycin oxime, spinosad
26280                                                                                    dinotefuran, permethrin, pyriproxyfen
26281                                                                                                               afoxolaner
26282                                                                               ivermectin, praziquantel, pyrantel pamoate
26287                                                                               ivermectin, praziquantel, pyrantel pamoate
26295                                                                                                               afoxolaner
26300                                                                               ivermectin, praziquantel, pyrantel pamoate
26307                                                                                                            metronidazole
26315                                                                                                         milbemycin oxime
26336                                                                                       chlorhexidine gluconate, ophytrium
26337                                                                                                        hypochlorous acid
26355                                                                                                  chlorhexidine gluconate
26375                                                                                              lufenuron, milbemycin oxime
26380                                                                             florfenicol, mometasone furoate, terbinafine
26386                                                                                             ivermectin, pyrantel pamoate
26387                                                                                                               fluralaner
26391                                                                                                               lokivetmab
26393                                                                                        betamethasone, gentamicin sulfate
26395                                                                                               milbemycin oxime, spinosad
26399                                                                                               milbemycin oxime, spinosad
26400                                                                                               milbemycin oxime, spinosad
26401                                                                                               milbemycin oxime, spinosad
26433                                                                                        betamethasone, gentamicin sulfate
26454                                                                                   joint supplement (glucosamine hcl/msm)
26464                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26471                                                                                             ivermectin, pyrantel pamoate
26473                                                                                                               afoxolaner
26475                                                                                             ivermectin, pyrantel pamoate
26476                                                                                                               afoxolaner
26488                                                                                                               afoxolaner
26489                                                                                              lufenuron, milbemycin oxime
26490                                                                                              lufenuron, milbemycin oxime
26502                                                                                                  ketoconazole, tris-edta
26505                                                                                         propylene glycol, salicylic acid
26517                                                                                             ivermectin, pyrantel pamoate
26518                                                                                                 fipronil, (s)-methoprene
26519                                                                                             ivermectin, pyrantel pamoate
26520                                                                                                               ivermectin
26521                                                                                                               ivermectin
26522                                                                                                               ivermectin
26534                                                                                        trimeprazine tartrate, prednisone
26543                                                                                             ivermectin, pyrantel pamoate
26544                                                                                               imidacloprid, pyriproxyfen
26546                                                                                             ivermectin, pyrantel pamoate
26551                                                                                                         milbemycin oxime
26553                                                                                                         milbemycin oxime
26568                                                                                                         milbemycin oxime
26574                                                                                                         milbemycin oxime
26583                                                                                            allergy immunotherapy - drops
26590                                                                                             ivermectin, pyrantel pamoate
26591                                                                                             ivermectin, pyrantel pamoate
26592                                                                                                               fluralaner
26594                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26610                                                                             dexamethasone, neomycin sulfate, polymyxin b
26611                                                                                             ivermectin, pyrantel pamoate
26615                                                                                             ivermectin, pyrantel pamoate
26629                                                                                                                 fipronil
26631                                                                                             ivermectin, pyrantel pamoate
26637                                                                                                 fipronil, (s)-methoprene
26638                                                                                             ivermectin, pyrantel pamoate
26643                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26644                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
26645                                                                                                 fipronil, (s)-methoprene
26647                                                                                                 fipronil, (s)-methoprene
26650                                                                                              lufenuron, milbemycin oxime
26651                                                                                              lufenuron, milbemycin oxime
26652                                                                                                               fluralaner
26654                                                                                             ivermectin, pyrantel pamoate
26655                                                                                               milbemycin oxime, spinosad
26662                                                                                             ivermectin, pyrantel pamoate
26663                                                                                                               afoxolaner
26668                                                                                                 imidacloprid, permethrin
26669                                                                                               imidacloprid, pyriproxyfen
26670                                                                                                 flumethrin, imidacloprid
26673                                                                                             ivermectin, pyrantel pamoate
26675                                                                                                     cefpodoxime proxetil
26676                                                                                                 fipronil, (s)-methoprene
26677                                                                                             ivermectin, pyrantel pamoate
26680                                                                                             ivermectin, pyrantel pamoate
26681                                                                                                               afoxolaner
26682                                                                                             ivermectin, pyrantel pamoate
26683                                                                                                               afoxolaner
26684                                                                                             ivermectin, pyrantel pamoate
26685                                                                                                               afoxolaner
26694                                                                                       amoxicillin, clavulanate potassium
26720                                                                                        trimeprazine tartrate, prednisone
26721                                                                                              lufenuron, milbemycin oxime
26722                                                                                              lufenuron, milbemycin oxime
26723                                                                                              lufenuron, milbemycin oxime
26724                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26726                                                                                              lufenuron, milbemycin oxime
26734                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26735                                                                                               milbemycin oxime, spinosad
26736                                                                                             ivermectin, pyrantel pamoate
26738                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26740                                                                                           milbemycin oxime, praziquantel
26742                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26744                                                                                                         milbemycin oxime
26745                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26747                                                                                                unspecified otic ear pack
26749                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26750                                                                                             ivermectin, pyrantel pamoate
26760                                                                                             ivermectin, pyrantel pamoate
26769                                                                                                         milbemycin oxime
26780                                                                                                         milbemycin oxime
26803                                                                          betamethasone, clotrimazole, gentamicin sulfate
26823                                                                                                                meloxicam
26825                                                                          betamethasone, clotrimazole, gentamicin sulfate
26826                                                                                                         liver supplement
26827                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26828                                                                                                                carprofen
26829                                                                                                               cephalexin
26830                                                                                                              clindamycin
26831                                                                                                       maropitant citrate
26833                                                                                                         pyrantel pamoate
26837                                                                                                                probiotic
26839                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26840                                                                                              lufenuron, milbemycin oxime
26841                                                                                       fipronil, permethrin, pyriproxyfen
26842                                                                                             ivermectin, pyrantel pamoate
26843                                                                                                                probiotic
26844                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
26846                                                                                             ivermectin, pyrantel pamoate
26847                                                                                                 fipronil, (s)-methoprene
26848                                                                                                                probiotic
26849                                                                                             ivermectin, pyrantel pamoate
26850                                                                                                 fipronil, (s)-methoprene
26851                                                                                                                probiotic
26852                                                                                             ivermectin, pyrantel pamoate
26853                                                                                                               afoxolaner
26861                                                                               ivermectin, praziquantel, pyrantel pamoate
26862                                                                                                 fipronil, (s)-methoprene
26863                                                                               ivermectin, praziquantel, pyrantel pamoate
26864                                                                                                               nitenpyram
26865                                                                                               imidacloprid, pyriproxyfen
26867                                                                                               imidacloprid, pyriproxyfen
26868                                                                                                         milbemycin oxime
26869                                                                                           milbemycin oxime, praziquantel
26870                                                                                               imidacloprid, pyriproxyfen
26871                                                                           mometasone furoate, orbifloxacin, posaconazole
26872                                                                                          ear cleaner (epi-otic advanced)
26905                                                                                          ear cleaner (epi-otic advanced)
26926                                                                                              lufenuron, milbemycin oxime
26930                                                                                              lufenuron, milbemycin oxime
26931                                                                                    dinotefuran, permethrin, pyriproxyfen
26932                                                                                              lufenuron, milbemycin oxime
26944                                                                                    dinotefuran, permethrin, pyriproxyfen
26948                                                                                    dinotefuran, permethrin, pyriproxyfen
26972                                                                                              lufenuron, milbemycin oxime
26974                                                                                                   unspecified supplement
26975                                                                                             ivermectin, pyrantel pamoate
26976                                                                                                                probiotic
26977                                                                                              lufenuron, milbemycin oxime
26978                                                                                 febantel, praziquantel, pyrantel pamoate
26979                                                                                              lufenuron, milbemycin oxime
26980                                                                                              lufenuron, milbemycin oxime
26981                                                                                              lufenuron, milbemycin oxime
26983                                                                                                                probiotic
26984                                                                                                               fluralaner
26986                                                                                                               fluralaner
26988                                                                                                         milbemycin oxime
26990                                                                                                         milbemycin oxime
26992                                                                                                         milbemycin oxime
27020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
27021                                                                                                               tobramycin
27022                                                                                                                ofloxacin
27030                                                                                                         milbemycin oxime
27047                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27058                                                                                        betamethasone, gentamicin sulfate
27062                                                                                                               grapiprant
27063                                                                                                   unspecified medication
27065                                                                                             ivermectin, pyrantel pamoate
27082                                                                                              lufenuron, milbemycin oxime
27085                                                                                              lufenuron, milbemycin oxime
27092                                                                                                             fenbendazole
27095                                                                                                            ciprofloxacin
27096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27100                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27117                                                                                                                mupirocin
27118                                                                                        betamethasone, gentamicin sulfate
27124                                                                                                                probiotic
27128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27134                                                                             florfenicol, mometasone furoate, terbinafine
27136                                                                                                         milbemycin oxime
27140                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27158                                                                          betamethasone, clotrimazole, gentamicin sulfate
27163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27170                                                                                              lufenuron, milbemycin oxime
27172                                                                                                 joint supplement (other)
27173                                                                                                                  omega 3
27174                                                                                              lufenuron, milbemycin oxime
27203                                                                                             ivermectin, pyrantel pamoate
27212                                                                                        betamethasone, gentamicin sulfate
27213                                                                               ivermectin, praziquantel, pyrantel pamoate
27214                                                                                                             deltamethrin
27217                                                                                        betamethasone, gentamicin sulfate
27219                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27220                                                                                                 flumethrin, imidacloprid
27222                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27223                                                                                        betamethasone, gentamicin sulfate
27224                                                                                              phytosphingosine, pramoxine
27226                                                                                                 flumethrin, imidacloprid
27228                                                                                                 flumethrin, imidacloprid
27229                                                                                           milbemycin oxime, praziquantel
27231                                                                                                               afoxolaner
27232                                                                                              lufenuron, milbemycin oxime
27247                                                                                              lufenuron, milbemycin oxime
27257                                                                                                 flumethrin, imidacloprid
27258                                                                                             ivermectin, pyrantel pamoate
27262                                                                                                               tobramycin
27265                                                                                             ivermectin, pyrantel pamoate
27268                                                                                                               tobramycin
27270                                                                                                 flumethrin, imidacloprid
27273                                                                                             ivermectin, pyrantel pamoate
27274                                                                                                               afoxolaner
27275                                                                                               imidacloprid, pyriproxyfen
27280                                                                                                               fluralaner
27281                                                                                             ivermectin, pyrantel pamoate
27282                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27285                                                                                             ivermectin, pyrantel pamoate
27306                                                                                             ivermectin, pyrantel pamoate
27309                                                                                                               fluralaner
27311                                                                                             ivermectin, pyrantel pamoate
27315                                                                                             ivermectin, pyrantel pamoate
27322                                                                                                                pramoxine
27333                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27348                                                                                                             imidacloprid
27349                                                                                             ivermectin, pyrantel pamoate
27350                                                                                               imidacloprid, pyriproxyfen
27358                                                                                              lufenuron, milbemycin oxime
27360                                                                                              lufenuron, milbemycin oxime
27361                                                                                              lufenuron, milbemycin oxime
27364                                                                                              lufenuron, milbemycin oxime
27368                                                                                              lufenuron, milbemycin oxime
27384                                                                                           milbemycin oxime, praziquantel
27407                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27413                                                                                                                vitamin b
27414                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27421                                                                                               imidacloprid, pyriproxyfen
27422                                                                                             ivermectin, pyrantel pamoate
27423                                                                                             ivermectin, pyrantel pamoate
27425                                                                                                  chlorhexidine gluconate
27427                                                                                                  chlorhexidine gluconate
27431                                                                               toothpaste/dental health solution or chews
27432                                                                                                                meloxicam
27434                                                                                    dinotefuran, permethrin, pyriproxyfen
27445                                                                                               imidacloprid, pyriproxyfen
27446                                                                                                 imidacloprid, permethrin
27447                                                                                                                probiotic
27459                                                                                               milbemycin oxime, spinosad
27465                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
27474                                                                                             ivermectin, pyrantel pamoate
27481                                                                                             ivermectin, pyrantel pamoate
27492                                                                                        trimeprazine tartrate, prednisone
27494                                                                                                     prednisolone acetate
27500                                                                 dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
27501                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
27502                                                                                                               ivermectin
27506                                                                                                               ivermectin
27507                                                                                       fipronil, permethrin, pyriproxyfen
27511                                                                                                               ivermectin
27512                                                                                                 fipronil, (s)-methoprene
27523                                                                                             ivermectin, pyrantel pamoate
27529                                                                                                               ivermectin
27589                                                                                               milbemycin oxime, spinosad
27594                                                                                               milbemycin oxime, spinosad
27596                                                                                               milbemycin oxime, spinosad
27598                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27620                                                                                                               fluralaner
27640                                                                                             ivermectin, pyrantel pamoate
27646                                                                                                                mupirocin
27654                                                                                               milbemycin oxime, spinosad
27657                                                                                               milbemycin oxime, spinosad
27659                                                                                                                mupirocin
27674                                                                                                     digestive supplement
27697                                                                                                                mupirocin
27699                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27700                                                                                             ivermectin, pyrantel pamoate
27701                                                                                                 fipronil, (s)-methoprene
27704                                                                                             ivermectin, pyrantel pamoate
27710                                                                                                 fipronil, (s)-methoprene
27713                                                                                       amoxicillin, clavulanate potassium
27714                                                                                                 fipronil, (s)-methoprene
27715                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27722                                                                                                               selamectin
27736                                                                                                               lokivetmab
27745                                                                                             ivermectin, pyrantel pamoate
27747                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27748                                                                               ivermectin, praziquantel, pyrantel pamoate
27750                                                                                             ivermectin, pyrantel pamoate
27769                                                                                             ivermectin, pyrantel pamoate
27770                                                                                              lufenuron, milbemycin oxime
27772                                                                                              lufenuron, milbemycin oxime
27776                                                                                                       maropitant citrate
27791                                                                               ivermectin, praziquantel, pyrantel pamoate
27794                                                                                             ivermectin, pyrantel pamoate
27802                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27824                                                                                             ivermectin, pyrantel pamoate
27826                                                                               ivermectin, praziquantel, pyrantel pamoate
27828                                                                                             ivermectin, pyrantel pamoate
27833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27834                                                                                                                  omega 3
27836                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27878                                                                                                 flumethrin, imidacloprid
27880                                                                                                             multivitamin
27886                                                                                              lufenuron, milbemycin oxime
27895                                                                                                               moxidectin
27896                                                                                                               afoxolaner
27897                                                                                                               moxidectin
27898                                                                                                               afoxolaner
27899                                                                             dexamethasone, neomycin sulfate, polymyxin b
27910                                                                                              lufenuron, milbemycin oxime
27913                                                                                              lufenuron, milbemycin oxime
27917                                                                                              lufenuron, milbemycin oxime
27921                                                                                              lufenuron, milbemycin oxime
27922                                                                                              lufenuron, milbemycin oxime
27923                                                                                              lufenuron, milbemycin oxime
27927                                                                                                   unspecified medication
27929                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27939                                                                                                 imidacloprid, permethrin
27940                                                                                              lufenuron, milbemycin oxime
27941                                                                           mometasone furoate, orbifloxacin, posaconazole
27942                                                                                                               cephalexin
27954                                                                                    dinotefuran, permethrin, pyriproxyfen
27957                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27958                                                                                       amoxicillin, clavulanate potassium
27959                                                                                                                 tramadol
27961                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27962                                                                                                 fipronil, (s)-methoprene
27973                                                                                                  ketoconazole, tris-edta
27974                                                                                       chlorhexidine gluconate, ophytrium
27981                                                                                               imidacloprid, pyriproxyfen
27982                                                                                                               ivermectin
27992                                                                                      allergy immunotherapy - unspecified
27999                                                                                               imidacloprid, pyriproxyfen
28000                                                                                                               ivermectin
28008                                                                                                                probiotic
28010                                                                                                 fipronil, (s)-methoprene
28014                                                                                               imidacloprid, pyriproxyfen
28015                                                                                                         liver supplement
28016                                                                                             ivermectin, pyrantel pamoate
28018                                                                                             ivermectin, pyrantel pamoate
28023                                                                                             ivermectin, pyrantel pamoate
28024                                                                                                               afoxolaner
28025                                                                                                                probiotic
28029                                                                                                               ivermectin
28040                                                                                             ivermectin, pyrantel pamoate
28045                                                                                             ivermectin, pyrantel pamoate
28046                                                                                                              doxorubicin
28047                                                                                                              vincristine
28048                                                                                             ivermectin, pyrantel pamoate
28049                                                                                             ivermectin, pyrantel pamoate
28087                                                                                                         milbemycin oxime
28088                                                                                                               fluralaner
28090                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28094                                                                               dimethyl sulfoxide, fluocinolone acetonide
28096                                                                                                         tylosin tartrate
28098                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28100                                                                                                               fluralaner
28101                                                                                lufenuron, milbemycin oxime, praziquantel
28102                                                                                           milbemycin oxime, praziquantel
28103                                                                                                               fluralaner
28104                                                                                                               fluralaner
28105                                                                                           milbemycin oxime, praziquantel
28106                                                                                           milbemycin oxime, praziquantel
28108                                                                                                               fluralaner
28109                                                                                           milbemycin oxime, praziquantel
28116                                                                                                                probiotic
28119                                                                                              lufenuron, milbemycin oxime
28120                                                                                              lufenuron, milbemycin oxime
28128                                                                                              lufenuron, milbemycin oxime
28130                                                                                             ivermectin, pyrantel pamoate
28134                                                                                             ivermectin, pyrantel pamoate
28135                                                                                             ivermectin, pyrantel pamoate
28137                                                                               ivermectin, praziquantel, pyrantel pamoate
28138                                                                                                                vitamin d
28144                                                                                                               ivermectin
28154                                                                                                 fipronil, (s)-methoprene
28155                                                                                             ivermectin, pyrantel pamoate
28158                                                                                                 flumethrin, imidacloprid
28162                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28163                                                                                                 flumethrin, imidacloprid
28164                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28165                                                                                                                  omega 3
28166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28167                                                                                                                  omega 3
28168                                                                                                               tobramycin
28174                                                                             dexamethasone, neomycin sulfate, polymyxin b
28176                                                                             dexamethasone, neomycin sulfate, polymyxin b
28246                                                                                        trimeprazine tartrate, prednisone
28260                                                                                                            dexamethasone
28261                                                                                             ivermectin, pyrantel pamoate
28263                                                                                                               fluralaner
28264                                                                                             ivermectin, pyrantel pamoate
28269                                                                                             ivermectin, pyrantel pamoate
28277                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28279                                                                                       chlorhexidine gluconate, ophytrium
28307                                                                                        trimeprazine tartrate, prednisone
28309                                                                                               milbemycin oxime, spinosad
28311                                                                                              lufenuron, milbemycin oxime
28316                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
28332                                                                                      ear cleaner (zymox), hydrocortisone
28333                                                                                      ear cleaner (zymox), hydrocortisone
28371                                                                                                                probiotic
28375                                                                                                               fluralaner
28390                                                                          betamethasone, clotrimazole, gentamicin sulfate
28392                                                                                                               afoxolaner
28396                                                                                           praziquantel, pyrantel pamoate
28397                                                                                              lufenuron, milbemycin oxime
28398                                                                                                               fluralaner
28399                                                                                           milbemycin oxime, praziquantel
28400                                                                                                               fluralaner
28401                                                                                           milbemycin oxime, praziquantel
28404                                                                                               milbemycin oxime, spinosad
28407                                                                                               milbemycin oxime, spinosad
28425                                                                                                             enrofloxacin
28427                                                                                                            dexamethasone
28437                                                                                              lufenuron, milbemycin oxime
28448                                                                                              lufenuron, milbemycin oxime
28449                                                                                               imidacloprid, pyriproxyfen
28453                                                                                                               ivermectin
28483                                                                                             ivermectin, pyrantel pamoate
28484                                                                                      ear cleaner (zymox), hydrocortisone
28486                                                                                        betamethasone, gentamicin sulfate
28488                                                                                                         milbemycin oxime
28505                                                                                                                probiotic
28507                                                                                                       miconazole nitrate
28508                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28516                                                                                lufenuron, milbemycin oxime, praziquantel
28517                                                                                                 fipronil, (s)-methoprene
28518                                                                                              lufenuron, milbemycin oxime
28519                                                                                             ivermectin, pyrantel pamoate
28520                                                                                                 fipronil, (s)-methoprene
28528                                                                                              lufenuron, milbemycin oxime
28531                                                                                                                probiotic
28533                                                                                              chloroxylenol, ketoconazole
28534                                                                                              lufenuron, milbemycin oxime
28535                                                                                                               afoxolaner
28536                                                                                                 fipronil, (s)-methoprene
28538                                                                                                                probiotic
28545                                                                                             ivermectin, pyrantel pamoate
28549                                                                                                               ivermectin
28552                                                                                                 imidacloprid, permethrin
28553                                                                                                               fluralaner
28554                                                                                                               ivermectin
28556                                                                                                               lokivetmab
28557                                                                                                               fluralaner
28571                                                                                             ivermectin, pyrantel pamoate
28572                                                                                                 flumethrin, imidacloprid
28573                                                                                             ivermectin, pyrantel pamoate
28574                                                                                                 flumethrin, imidacloprid
28576                                                                               dextromethorphan hydrobromide, guaifenesin
28577                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28580                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
28582                                                                                             ivermectin, pyrantel pamoate
28583                                                                                                 flumethrin, imidacloprid
28590                                                                                       joint supplement (glucosamine hcl)
28601                                                                                               imidacloprid, pyriproxyfen
28602                                                                                              lufenuron, milbemycin oxime
28605                                                                                                   unspecified medication
28606                                                                                              lufenuron, milbemycin oxime
28610                                                                                           praziquantel, pyrantel pamoate
28611                                                                                                             multivitamin
28612                                                                                                             multivitamin
28614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28621                                                                                               imidacloprid, pyriproxyfen
28624                                                                                                                meloxicam
28630                                                                                              lufenuron, milbemycin oxime
28631                                                                                                               afoxolaner
28660                                                                                        betamethasone, gentamicin sulfate
28668                                                                                             ivermectin, pyrantel pamoate
28673                                                                          betamethasone, clotrimazole, gentamicin sulfate
28674                                                                                             ivermectin, pyrantel pamoate
28675                                                                                                 fipronil, (s)-methoprene
28681                                                                                             ivermectin, pyrantel pamoate
28685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28686                                                                                                                probiotic
28687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28693                                                                                              lufenuron, milbemycin oxime
28694                                                                                                         milbemycin oxime
28696                                                                                              lufenuron, milbemycin oxime
28710                                                                                                 imidacloprid, moxidectin
28714                                                                          betamethasone, clotrimazole, gentamicin sulfate
28718                                                                                                               wind toxin
28719                                                                                                     long dan xie gan wan
28723                                                                                                               selamectin
28726                                                                                               milbemycin oxime, spinosad
28727                                                                          betamethasone, clotrimazole, gentamicin sulfate
28730                                                                                               milbemycin oxime, spinosad
28731                                                                          betamethasone, clotrimazole, gentamicin sulfate
28735                                                                                                         milbemycin oxime
28736                                                                                                                lotilaner
28750                                                                                                                   arnica
28751                                                                                                                vitamin b
28772                                                                                                                  omega 3
28773                                                                                                              di tan tang
28780                                                                                             ivermectin, pyrantel pamoate
28806                                                                                                 fipronil, (s)-methoprene
28809                                                                                             ivermectin, pyrantel pamoate
28819                                                                           dexamethasone, neomycin sulfate, thiabendazole
28826                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
28829                                                                                                                mupirocin
28855                                                                                                             fenbendazole
28873                                                                                                 fipronil, (s)-methoprene
28874                                                                                                               ivermectin
28882                                                                                                               afoxolaner
28883                                                                                                               afoxolaner
28884                                                                                                               afoxolaner
28888                                                                                                               afoxolaner
28897                                                                               ivermectin, praziquantel, pyrantel pamoate
28899                                                                                             ivermectin, pyrantel pamoate
28904                                                                                             ivermectin, pyrantel pamoate
28907                                                                                                               afoxolaner
28934                                                                                                               afoxolaner
28939                                                                                              lufenuron, milbemycin oxime
28940                                                                                                 homatropine, hydrocodone
28941                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
28946                                                                                         phytosphingosine, salicylic acid
28979                                                                                              lufenuron, milbemycin oxime
28980                                                                                       fipronil, permethrin, pyriproxyfen
28982                                                                                              lufenuron, milbemycin oxime
28983                                                                                               milbemycin oxime, spinosad
28986                                                                                             ivermectin, pyrantel pamoate
28987                                                                                                 fipronil, (s)-methoprene
28999                                                                                                      phenylpropanolamine
29000                                                                                                               selamectin
29007                                                                                                 fipronil, (s)-methoprene
29015                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29022                                                                               dextromethorphan hydrobromide, guaifenesin
29023                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
29036                                                                             dexamethasone, neomycin sulfate, polymyxin b
29037                                                                                              lufenuron, milbemycin oxime
29039                                                                                                                  taurine
29040                                                                                                                  taurine
29043                                                                                                                  taurine
29050                                                                                        betamethasone, gentamicin sulfate
29053                                                                                                           hydrocortisone
29056                                                                                               milbemycin oxime, spinosad
29060                                                                                                               benzocaine
29064                                                                                               milbemycin oxime, spinosad
29067                                                                                             ivermectin, pyrantel pamoate
29069                                                                                             ivermectin, pyrantel pamoate
29070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29071                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29072                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29073                                                                                                         atropine sulfate
29075                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29078                                                                                                     fipronil, permethrin
29079                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29080                                                                                              lufenuron, milbemycin oxime
29081                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29082                                                                                               milbemycin oxime, spinosad
29083                                                                                                                probiotic
29086                                                                                               milbemycin oxime, spinosad
29087                                                                                               milbemycin oxime, spinosad
29091                                                                                               milbemycin oxime, spinosad
29095                                                                                               milbemycin oxime, spinosad
29096                                                                                                               afoxolaner
29098                                                                                                  ketoconazole, tris-edta
29099                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
29103                                                                                                                 fentanyl
29104                                                                                                                 ketamine
29108                                                                                        betamethasone, gentamicin sulfate
29136                                                                                                         milbemycin oxime
29139                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29143                                                                                             ivermectin, pyrantel pamoate
29151                                                                                                               selamectin
29153                                                                                                unspecified otic ear pack
29161                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29166                                                                                                               indoxacarb
29184                                                                                              lufenuron, milbemycin oxime
29196                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29197                                                                                                          cbd or hemp oil
29220                                                                                                                mupirocin
29232                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29234                                                                                                  chlorhexidine gluconate
29235                                                                                                               penicillin
29244                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
29245                                                                                                                  omega 3
29248                                                                                                            dexamethasone
29283                                                                                                               lokivetmab
29285                                                                           dexamethasone, neomycin sulfate, thiabendazole
29291                                                                                       chlorhexidine gluconate, tris-edta
29293                                                                                                               ivermectin
29298                                                                                              lufenuron, milbemycin oxime
29313                                                                                                                ketorolac
29315                                                                                             ivermectin, pyrantel pamoate
29321                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29324                                                                                               imidacloprid, pyriproxyfen
29327                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29328                                                                                             ivermectin, pyrantel pamoate
29340                                                                                                               benzocaine
29342                                                                                                      ear cleaner (zymox)
29374                                                                                              lufenuron, milbemycin oxime
29375                                                                                                 imidacloprid, permethrin
29376                                                                                              lufenuron, milbemycin oxime
29377                                                                                               imidacloprid, pyriproxyfen
29378                                                                                              lufenuron, milbemycin oxime
29379                                                                                              lufenuron, milbemycin oxime
29380                                                                                              lufenuron, milbemycin oxime
29381                                                                                              lufenuron, milbemycin oxime
29382                                                                                              lufenuron, milbemycin oxime
29383                                                                                               imidacloprid, pyriproxyfen
29395                                                                                               acetaminophen, hydrocodone
29404                                                                                                               prednisone
29405                                                                                                              doxycycline
29406                                                                                                                 tramadol
29428                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
29438                                                                                                               isoflurane
29446                                                                                                               benzocaine
29447                                                                                              phytosphingosine, pramoxine
29453                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29469                                                                                                               ivermectin
29470                                                                                                 flumethrin, imidacloprid
29471                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29479                                                                                              lufenuron, milbemycin oxime
29480                                                                                              lufenuron, milbemycin oxime
29481                                                                                              lufenuron, milbemycin oxime
29482                                                                                              lufenuron, milbemycin oxime
29483                                                                                                               fluralaner
29490                                                                                              lufenuron, milbemycin oxime
29499                                                                                             ivermectin, pyrantel pamoate
29500                                                                                                 fipronil, (s)-methoprene
29501                                                                                             ivermectin, pyrantel pamoate
29502                                                                                                         milbemycin oxime
29504                                                                                                         milbemycin oxime
29505                                                                                   fipronil, pyriproxyfen, (s)-methoprene
29511                                                                                                         milbemycin oxime
29525                                                                                              lufenuron, milbemycin oxime
29526                                                                                                   cyphenothrin, fipronil
29531                                                                                              lufenuron, milbemycin oxime
29532                                                                                                                 fipronil
29533                                                                                                         milbemycin oxime
29534                                                                                               imidacloprid, pyriproxyfen
29535                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29536                                                                                                         milbemycin oxime
29537                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29538                                                                                                         milbemycin oxime
29539                                                                                                 imidacloprid, permethrin
29540                                                                                                         milbemycin oxime
29567                                                                                             ivermectin, pyrantel pamoate
29568                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29572                                                                                    dinotefuran, permethrin, pyriproxyfen
29573                                                                                             ivermectin, pyrantel pamoate
29574                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29575                                                                                                     cefpodoxime proxetil
29580                                                                                             ivermectin, pyrantel pamoate
29588                                                                                             ivermectin, pyrantel pamoate
29608                                                                                                 fipronil, (s)-methoprene
29617                                                                                                               afoxolaner
29633                                                                               ivermectin, praziquantel, pyrantel pamoate
29662                                                                                                                  omega 3
29666                                                                                                             multivitamin
29669                                                                                                                probiotic
29670                                                                                                 skin and coat supplement
29678                                                                                       amoxicillin, clavulanate potassium
29700                                                                                                             imidacloprid
29705                                                                                               imidacloprid, pyriproxyfen
29707                                                                                               imidacloprid, pyriproxyfen
29709                                                                                               imidacloprid, pyriproxyfen
29715                                                                                                 flumethrin, imidacloprid
29716                                                                                                 flumethrin, imidacloprid
29719                                                                                                 flumethrin, imidacloprid
29720                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
29722                                                                                                 flumethrin, imidacloprid
29724                                                                                                 flumethrin, imidacloprid
29726                                                                                                 flumethrin, imidacloprid
29734                                                                                              lufenuron, milbemycin oxime
29736                                                                                lufenuron, milbemycin oxime, praziquantel
29744                                                                                              lufenuron, milbemycin oxime
29749                                                                                        trimeprazine tartrate, prednisone
29753                                                                                             ivermectin, pyrantel pamoate
29764                                                                                                               moxidectin
29765                                                                                                               fluralaner
29767                                                                                                         milbemycin oxime
29770                                                                                             ivermectin, pyrantel pamoate
29794                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29798                                                                                             ivermectin, pyrantel pamoate
29799                                                                                             ivermectin, pyrantel pamoate
29800                                                                                                               afoxolaner
29801                                                                                                  chlorhexidine gluconate
29802                                                                                             ivermectin, pyrantel pamoate
29803                                                                                                               afoxolaner
29822                                                                                             ivermectin, pyrantel pamoate
29823                                                                                                               afoxolaner
29824                                                                                             ivermectin, pyrantel pamoate
29825                                                                                                               afoxolaner
29827                                                                           mometasone furoate, orbifloxacin, posaconazole
29829                                                                                        betamethasone, gentamicin sulfate
29831                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29838                                                                                   joint supplement (glucosamine hcl/msm)
29839                                                                                                 joint supplement (other)
29840                                                                                                           wei qi booster
29847                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29858                                                                                                               ivermectin
29862                                                                                               milbemycin oxime, spinosad
29865                                                                                               milbemycin oxime, spinosad
29880                                                                                                               ivermectin
29882                                                                                             ivermectin, pyrantel pamoate
29883                                                                                                               afoxolaner
29933                                                                               ivermectin, praziquantel, pyrantel pamoate
29940                                                                               ivermectin, praziquantel, pyrantel pamoate
29941                                                                               ivermectin, praziquantel, pyrantel pamoate
29948                                                                             florfenicol, mometasone furoate, terbinafine
29954                                                                                                               ivermectin
29955                                                                                               imidacloprid, pyriproxyfen
29956                                                                                                               ivermectin
29957                                                                                                 imidacloprid, permethrin
29963                                                                                               imidacloprid, pyriproxyfen
29964                                                                                             ivermectin, pyrantel pamoate
29966                                                                                        betamethasone, gentamicin sulfate
29969                                                                                               imidacloprid, pyriproxyfen
29970                                                                                             ivermectin, pyrantel pamoate
29978                                                                                              lufenuron, milbemycin oxime
29990                                                                                               imidacloprid, pyriproxyfen
29991                                                                                              lufenuron, milbemycin oxime
29993                                                                                              lufenuron, milbemycin oxime
30001                                                                                       amoxicillin, clavulanate potassium
30048                                                                                                         pyrantel pamoate
30070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30075                                                                                                 fipronil, (s)-methoprene
30076                                                                                                               ivermectin
30081                                                                                                               ivermectin
30082                                                                                                 fipronil, (s)-methoprene
30083                                                                                             ivermectin, pyrantel pamoate
30099                                                                                              lufenuron, milbemycin oxime
30104                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30105                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30131                                                                                                                  omega 3
30132                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30138                                                                                             ivermectin, pyrantel pamoate
30142                                                                                               milbemycin oxime, spinosad
30143                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
30162                                                                                                   unspecified medication
30165                                                                                               milbemycin oxime, spinosad
30166                                                                                              lufenuron, milbemycin oxime
30169                                                                                                         tylosin tartrate
30172                                                                                              lufenuron, milbemycin oxime
30174                                                                                              lufenuron, milbemycin oxime
30178                                                                                                         neomycin sulfate
30179                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30185                                                                                             ivermectin, pyrantel pamoate
30191                                                                                               milbemycin oxime, spinosad
30192                                                                                               milbemycin oxime, spinosad
30193                                                                                               milbemycin oxime, spinosad
30198                                                                                                     prednisolone acetate
30211                                                                                              lufenuron, milbemycin oxime
30212                                                                                                               fluralaner
30214                                                                                    dinotefuran, permethrin, pyriproxyfen
30218                                                                                                               fluralaner
30221                                                                                              lufenuron, milbemycin oxime
30239                                                                                              lufenuron, milbemycin oxime
30241                                                                                              lufenuron, milbemycin oxime
30242                                                                                              lufenuron, milbemycin oxime
30246                                                                                                            yunnan baiyao
30263                                                                                                               ivermectin
30264                                                                                       fipronil, permethrin, pyriproxyfen
30268                                                                                                               ivermectin
30269                                                                                       fipronil, permethrin, pyriproxyfen
30270                                                                                                               ivermectin
30274                                                                                             ivermectin, pyrantel pamoate
30277                                                                                             ivermectin, pyrantel pamoate
30286                                                                                             ivermectin, pyrantel pamoate
30298                                                                                              lufenuron, milbemycin oxime
30299                                                                                              lufenuron, milbemycin oxime
30300                                                                                                 fipronil, (s)-methoprene
30310                                                                                              lufenuron, milbemycin oxime
30311                                                                             dexamethasone, neomycin sulfate, polymyxin b
30312                                                                                        betamethasone, gentamicin sulfate
30313                                                                                              lufenuron, milbemycin oxime
30317                                                                                                                mupirocin
30319                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30327                                                                                                               tobramycin
30329                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30337                                                                                        betamethasone, gentamicin sulfate
30338                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30344                                                                                                               ivermectin
30347                                                                                               milbemycin oxime, spinosad
30351                                                                                                               fluralaner
30352                                                                                             ivermectin, pyrantel pamoate
30355                                                                                                  chlorhexidine gluconate
30357                                                                                        betamethasone, gentamicin sulfate
30360                                                                                                                probiotic
30361                                                                                   joint supplement (glucosamine hcl/msm)
30366                                                                                                               fluralaner
30367                                                                                             ivermectin, pyrantel pamoate
30371                                                                                              lufenuron, milbemycin oxime
30372                                                                                                 flumethrin, imidacloprid
30373                                                                                                         milbemycin oxime
30374                                                                                                               fluralaner
30375                                                                                                 flumethrin, imidacloprid
30376                                                                                              lufenuron, milbemycin oxime
30377                                                                                                            metronidazole
30378                                                                                                   unspecified medication
30385                                                                                                         milbemycin oxime
30387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30388                                                                                                                  omega 3
30389                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30395                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30396                                                                                                                  omega 3
30404                                                                                                         milbemycin oxime
30405                                                                                                         milbemycin oxime
30406                                                                                                 fipronil, (s)-methoprene
30418                                                                               ivermectin, praziquantel, pyrantel pamoate
30450                                                                             florfenicol, mometasone furoate, terbinafine
30464                                                                          betamethasone, clotrimazole, gentamicin sulfate
30471                                                                                              lufenuron, milbemycin oxime
30479                                                                                                 imidacloprid, permethrin
30480                                                                                             ivermectin, pyrantel pamoate
30483                                                                                               imidacloprid, pyriproxyfen
30484                                                                                               imidacloprid, pyriproxyfen
30485                                                                                        betamethasone, gentamicin sulfate
30492                                                                                              lufenuron, milbemycin oxime
30496                                                                                                             pantoprazole
30515                                                                                              lufenuron, milbemycin oxime
30528                                                                                              lufenuron, milbemycin oxime
30529                                                                                                       miconazole nitrate
30536                                                                                                      ear cleaner (zymox)
30555                                                                                              lufenuron, milbemycin oxime
30556                                                                                              lufenuron, milbemycin oxime
30590                                                                                               milbemycin oxime, spinosad
30604                                                                                               milbemycin oxime, spinosad
30623                                                                           dexamethasone, neomycin sulfate, thiabendazole
30644                                                                          betamethasone, clotrimazole, gentamicin sulfate
30685                                                                                                     digestive supplement
30689                                                                                                            yunnan baiyao
30692                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30701                                                                                                               fluralaner
30702                                                                                              lufenuron, milbemycin oxime
30707                                                                                                               fluralaner
30708                                                                                              lufenuron, milbemycin oxime
30709                                                                                              lufenuron, milbemycin oxime
30710                                                                                                               fluralaner
30713                                                                                                  chlorhexidine gluconate
30714                                                                             dexamethasone, neomycin sulfate, polymyxin b
30717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
30753                                                                                                         milbemycin oxime
30754                                                                                               imidacloprid, pyriproxyfen
30756                                                                                               imidacloprid, pyriproxyfen
30757                                                                                               imidacloprid, pyriproxyfen
30764                                                                                               milbemycin oxime, spinosad
30765                                                                                                         milbemycin oxime
30766                                                                                                                sarolaner
30768                                                                                             ivermectin, pyrantel pamoate
30769                                                                                               bacitracin, hydrocortisone
30779                                                                                             ivermectin, pyrantel pamoate
30793                                                                                             ivermectin, pyrantel pamoate
30796                                                                                             ivermectin, pyrantel pamoate
30797                                                                                                                sarolaner
30799                                                                                             ivermectin, pyrantel pamoate
30803                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30813                                                                                             ivermectin, pyrantel pamoate
30815                                                                                                       calming supplement
30816                                                                                                                 tramadol
30817                                                                                                       calming supplement
30819                                                                                    dinotefuran, permethrin, pyriproxyfen
30820                                                                                             ivermectin, pyrantel pamoate
30821                                                                                                            metronidazole
30822                                                                                                              amoxicillin
30823                                                                                                                carvacrol
30824                                                                                                   unspecified medication
30826                                                                                             ivermectin, pyrantel pamoate
30833                                                                                                               fluralaner
30834                                                                                  betamethasone, florfenicol, terbinafine
30840                                                                               dextromethorphan hydrobromide, guaifenesin
30844                                                                                             ivermectin, pyrantel pamoate
30876                                                                                                         pyrantel pamoate
30877                                                                                             ivermectin, pyrantel pamoate
30901                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30909                                                                               ivermectin, praziquantel, pyrantel pamoate
30917                                                                                        betamethasone, gentamicin sulfate
30920                                                                                       fipronil, permethrin, pyriproxyfen
30936                                                                                                            yunnan baiyao
30943                                                                                lufenuron, milbemycin oxime, praziquantel
30945                                                                                              lufenuron, milbemycin oxime
30947                                                                                              lufenuron, milbemycin oxime
30948                                                                                                               fluralaner
30949                                                                                              lufenuron, milbemycin oxime
30953                                                                                                                probiotic
30961                                                                                                             multivitamin
30962                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30963                                                                                                                carprofen
30998                                                                                                 imidacloprid, permethrin
31000                                                                                                 imidacloprid, permethrin
31001                                                                                             ivermectin, pyrantel pamoate
31003                                                                                                               selamectin
31004                                                                                               imidacloprid, pyriproxyfen
31010                                                                                             ivermectin, pyrantel pamoate
31011                                                                                               imidacloprid, pyriproxyfen
31022                                                                                             ivermectin, pyrantel pamoate
31023                                                                                                               fluralaner
31034                                                                                                         milbemycin oxime
31043                                                                                               imidacloprid, pyriproxyfen
31046                                                                                lufenuron, milbemycin oxime, praziquantel
31089                                                                                             ivermectin, pyrantel pamoate
31094                                                                                           milbemycin oxime, praziquantel
31095                                                                                                                carprofen
31096                                                                                           milbemycin oxime, praziquantel
31105                                                                                             ivermectin, pyrantel pamoate
31132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31133                                                                                              lufenuron, milbemycin oxime
31134                                                                                                               afoxolaner
31135                                                                                              lufenuron, milbemycin oxime
31139                                                                                                               afoxolaner
31148                                                                                             ivermectin, pyrantel pamoate
31149                                                                                             ivermectin, pyrantel pamoate
31152                                                                                                               ivermectin
31154                                                                                             ivermectin, pyrantel pamoate
31183                                                                                                               fluralaner
31186                                                                                                     dorzolamide, timolol
31195                                                                                lufenuron, milbemycin oxime, praziquantel
31196                                                                                                                deracoxib
31197                                                                                                                probiotic
31198                                                                                                               alprazolam
31199                                                                                             ivermectin, pyrantel pamoate
31203                                                                                                                probiotic
31209                                                                                                               gabapentin
31228                                                                                                               isoflurane
31232                                                                                                               isoflurane
31234                                                                                                 fipronil, (s)-methoprene
31247                                                                                                         milbemycin oxime
31248                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31249                                                                                                         milbemycin oxime
31250                                                                                                 fipronil, (s)-methoprene
31260                                                                                                         milbemycin oxime
31263                                                                                              lufenuron, milbemycin oxime
31265                                                                                    dinotefuran, permethrin, pyriproxyfen
31268                                                                                                              sevoflurane
31297                                                                                                               selamectin
31299                                                                                                               selamectin
31300                                                                                                               ivermectin
31301                                                                                                               fluralaner
31303                                                                                                               selamectin
31307                                                                                               imidacloprid, pyriproxyfen
31308                                                                                                         milbemycin oxime
31309                                                                                                               selamectin
31317                                                                                              rx diet - digestive support
31322                                                                                               milbemycin oxime, spinosad
31328                                                                                                               afoxolaner
31350                                                                           mometasone furoate, orbifloxacin, posaconazole
31353                                                                                                               prednisone
31356                                                                                                  ketoconazole, tris-edta
31357                                                                                             ivermectin, pyrantel pamoate
31358                                                                                                               afoxolaner
31359                                                                                   joint supplement (glucosamine hcl/msm)
31360                                                                                                                  omega 3
31361                                                                                             ivermectin, pyrantel pamoate
31365                                                                                                         milbemycin oxime
31366                                                                                                               afoxolaner
31367                                                                                                              robenacoxib
31369                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
31370                                                                                  betamethasone, florfenicol, terbinafine
31371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31373                                                                                              lufenuron, milbemycin oxime
31374                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31375                                                                                              lufenuron, milbemycin oxime
31383                                                                                              lufenuron, milbemycin oxime
31384                                                                                               milbemycin oxime, spinosad
31385                                                                                                               afoxolaner
31386                                                                                             ivermectin, pyrantel pamoate
31389                                                                                                         pyrantel pamoate
31408                                                                                                               ivermectin
31423                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31434                                                                                                  ketoconazole, tris-edta
31437                                                                                        trimeprazine tartrate, prednisone
31438                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31439                                                                          betamethasone, clotrimazole, gentamicin sulfate
31440                                                                                             ivermectin, pyrantel pamoate
31441                                                                                             ivermectin, pyrantel pamoate
31446                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31447                                                                                         phytosphingosine, salicylic acid
31449                                                                                             ivermectin, pyrantel pamoate
31450                                                                                                               afoxolaner
31452                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31457                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31463                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31471                                                                                                               ivermectin
31502                                                                                                               ivermectin
31503                                                                                                               afoxolaner
31504                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31506                                                                                                               afoxolaner
31508                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31528                                                                                                               afoxolaner
31529                                                                                             ivermectin, pyrantel pamoate
31531                                                                                                               afoxolaner
31539                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31542                                                                                                 urinary tract supplement
31548                                                                                                               lokivetmab
31551                                                                                                  ketoconazole, tris-edta
31552                                                                                                 fipronil, (s)-methoprene
31553                                                                                                 fipronil, (s)-methoprene
31602                                                                                             ivermectin, pyrantel pamoate
31611                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31612                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
31616                                                                                                                  omega 3
31617                                                                                                               ivermectin
31618                                                                                                               afoxolaner
31619                                                                                                                  omega 3
31637                                                                                             ivermectin, pyrantel pamoate
31640                                                                                                         phytosphingosine
31643                                                                                             ivermectin, pyrantel pamoate
31644                                                                                                                meloxicam
31645                                                                                                         phytosphingosine
31646                                                                                             ivermectin, pyrantel pamoate
31647                                                                                                               afoxolaner
31653                                                                                             ivermectin, pyrantel pamoate
31655                                                                                                               gabapentin
31656                                                                                                  ketoconazole, tris-edta
31657                                                                                                                meloxicam
31665                                                                                             ivermectin, pyrantel pamoate
31666                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31678                                                                                             ivermectin, pyrantel pamoate
31680                                                                                             ivermectin, pyrantel pamoate
31688                                                                                             ivermectin, pyrantel pamoate
31689                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31696                                                                                                 fipronil, (s)-methoprene
31707                                                                                             ivermectin, pyrantel pamoate
31713                                                                                             ivermectin, pyrantel pamoate
31716                                                                                              lufenuron, milbemycin oxime
31725                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31726                                                                                               imidacloprid, pyriproxyfen
31730                                                                                              lufenuron, milbemycin oxime
31731                                                                                               imidacloprid, pyriproxyfen
31734                                                                                              lufenuron, milbemycin oxime
31735                                                                                               imidacloprid, pyriproxyfen
31736                                                                                                                probiotic
31737                                                                                                             fenbendazole
31742                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
31747                                                                                                         milbemycin oxime
31748                                                                                                               gabapentin
31760                                                                                             ivermectin, pyrantel pamoate
31761                                                                                                             fenbendazole
31762                                                                                             ivermectin, pyrantel pamoate
31765                                                                                             ivermectin, pyrantel pamoate
31766                                                                                                               fluralaner
31768                                                                                               milbemycin oxime, spinosad
31769                                                                                             ivermectin, pyrantel pamoate
31771                                                                                             ivermectin, pyrantel pamoate
31773                                                                                             ivermectin, pyrantel pamoate
31774                                                                                        betamethasone, gentamicin sulfate
31777                                                                                                               ivermectin
31780                                                                                              lufenuron, milbemycin oxime
31781                                                                                           milbemycin oxime, praziquantel
31798                                                                                             ivermectin, pyrantel pamoate
31803                                                                                           praziquantel, pyrantel pamoate
31804                                                                                                               afoxolaner
31807                                                                                                 fipronil, (s)-methoprene
31808                                                                                             ivermectin, pyrantel pamoate
31810                                                                                             ivermectin, pyrantel pamoate
31819                                                                                             ivermectin, pyrantel pamoate
31824                                                                                                               ivermectin
31826                                                                                        betamethasone, gentamicin sulfate
31833                                                                                                 urinary tract supplement
31834                                                                                        betamethasone, gentamicin sulfate
31836                                                                                                 urinary tract supplement
31837                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
31840                                                                                              lufenuron, milbemycin oxime
31841                                                                                                                meloxicam
31843                                                                                                             fenbendazole
31844                                                                                              lufenuron, milbemycin oxime
31846                                                                                                 flumethrin, imidacloprid
31847                                                                                              lufenuron, milbemycin oxime
31849                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31850                                                                                    enrofloxacin, ketoconazole, tris-edta
31853                                                                                                 fipronil, (s)-methoprene
31861                                                                                           milbemycin oxime, praziquantel
31864                                                                                                         milbemycin oxime
31866                                                                                                         milbemycin oxime
31868                                                                                              lufenuron, milbemycin oxime
31869                                                                                                         milbemycin oxime
31874                                                                                                         milbemycin oxime
31876                                                                                                      ear cleaner (zymox)
31880                                                                                  transcranial magnetic stimulation (tms)
31888                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31891                                                                               ivermectin, praziquantel, pyrantel pamoate
31892                                                                                                               afoxolaner
31895                                                                                                         milbemycin oxime
31896                                                                                                               afoxolaner
31898                                                                                                               afoxolaner
31907                                                                                                               fluralaner
31908                                                                                                               ivermectin
31909                                                                                                               ivermectin
31911                                                                                              lufenuron, milbemycin oxime
31916                                                                                              lufenuron, milbemycin oxime
31937                                                                                               milbemycin oxime, spinosad
31938                                                                                              lufenuron, milbemycin oxime
31939                                                                                              lufenuron, milbemycin oxime
31940                                                                                              lufenuron, milbemycin oxime
31941                                                                                              lufenuron, milbemycin oxime
31942                                                                                              lufenuron, milbemycin oxime
31945                                                                                             ivermectin, pyrantel pamoate
31946                                                                                             ivermectin, pyrantel pamoate
31947                                                                                             ivermectin, pyrantel pamoate
31948                                                                                                               fluralaner
31953                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31954                                                                                                               fluralaner
31955                                                                                             ivermectin, pyrantel pamoate
31968                                                                                             ivermectin, pyrantel pamoate
31985                                                                                                               isoflurane
31990                                                                                              lufenuron, milbemycin oxime
32002                                                                                             ivermectin, pyrantel pamoate
32006                                                                               dextromethorphan hydrobromide, guaifenesin
32015                                                                                                 fipronil, (s)-methoprene
32016                                                                                             ivermectin, pyrantel pamoate
32020                                                                                                               ivermectin
32025                                                                                                                cisapride
32032                                                                                lufenuron, milbemycin oxime, praziquantel
32035                                                                                              lufenuron, milbemycin oxime
32040                                                                                              lufenuron, milbemycin oxime
32046                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32053                                                                                             ivermectin, pyrantel pamoate
32054                                                                                                 fipronil, (s)-methoprene
32055                                                                                                 fipronil, (s)-methoprene
32056                                                                                             ivermectin, pyrantel pamoate
32057                                                                                                               afoxolaner
32058                                                                                             ivermectin, pyrantel pamoate
32059                                                                                             ivermectin, pyrantel pamoate
32060                                                                                                               afoxolaner
32074                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32076                                                                                             ivermectin, pyrantel pamoate
32079                                                                                                               afoxolaner
32080                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32084                                                                             dexamethasone, neomycin sulfate, polymyxin b
32095                                                                                                               fluralaner
32097                                                                                                         milbemycin oxime
32098                                                                                           milbemycin oxime, praziquantel
32099                                                                                                               fluralaner
32100                                                                                           milbemycin oxime, praziquantel
32101                                                                                                               fluralaner
32102                                                                                                               fluralaner
32103                                                                                           milbemycin oxime, praziquantel
32104                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32105                                                                                           milbemycin oxime, praziquantel
32106                                                                                                               fluralaner
32108                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32114                                                                                                 flumethrin, imidacloprid
32116                                                                                                 flumethrin, imidacloprid
32119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32121                                                                                                               ivermectin
32122                                                                                                               afoxolaner
32123                                                                                                         tylosin tartrate
32128                                                                                                               ivermectin
32129                                                                                                               afoxolaner
32132                                                                                                               ivermectin
32133                                                                                                               ivermectin
32134                                                                                                         milbemycin oxime
32168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32171                                                                                      ear cleaner (zymox), hydrocortisone
32175                                                                                      ear cleaner (zymox), hydrocortisone
32179                                                                                             ivermectin, pyrantel pamoate
32180                                                                                                               afoxolaner
32183                                                                                      ear cleaner (zymox), hydrocortisone
32184                                                                                                         phytosphingosine
32187                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32222                                                                                                         milbemycin oxime
32231                                                                                             ivermectin, pyrantel pamoate
32232                                                                                                               fluralaner
32233                                                                               ivermectin, praziquantel, pyrantel pamoate
32234                                                                                                               fluralaner
32236                                                                                             ivermectin, pyrantel pamoate
32237                                                                                                               afoxolaner
32266                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32276                                                                                        betamethasone, gentamicin sulfate
32290                                                                                                               isoflurane
32295                                                                                               milbemycin oxime, spinosad
32296                                                                                                               ivermectin
32297                                                                                   cyphenothrin, fipronil, (s)-methoprene
32310                                                                                        betamethasone, gentamicin sulfate
32312                                                                                             ivermectin, pyrantel pamoate
32313                                                                                                               fluralaner
32315                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32320                                                                                                               isoflurane
32343                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32358                                                                                        betamethasone, gentamicin sulfate
32359                                                                                                 fipronil, (s)-methoprene
32360                                                                                              lufenuron, milbemycin oxime
32362                                                                                              lufenuron, milbemycin oxime
32363                                                                                                   unspecified medication
32370                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32390                                                                                                               moxidectin
32393                                                                                                               moxidectin
32394                                                                                                               fluralaner
32417                                                                                              lufenuron, milbemycin oxime
32425                                                                                                 fipronil, (s)-methoprene
32426                                                                                             ivermectin, pyrantel pamoate
32427                                                                                                         milbemycin oxime
32445                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32447                                                                                              lufenuron, milbemycin oxime
32448                                                                                                         milbemycin oxime
32449                                                                                                               afoxolaner
32460                                                                                                               prednisone
32463                                                                                                         milbemycin oxime
32464                                                                                                               fluralaner
32466                                                                                             ivermectin, pyrantel pamoate
32467                                                                                                               fluralaner
32477                                                                                             ivermectin, pyrantel pamoate
32478                                                                                                               fluralaner
32504                                                                                              lufenuron, milbemycin oxime
32505                                                                                               imidacloprid, pyriproxyfen
32507                                                                                                                mupirocin
32509                                                                                              lufenuron, milbemycin oxime
32510                                                                                               imidacloprid, pyriproxyfen
32511                                                                                              lufenuron, milbemycin oxime
32512                                                                                               imidacloprid, pyriproxyfen
32513                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32520                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32529                                                                                              lufenuron, milbemycin oxime
32530                                                                                              lufenuron, milbemycin oxime
32535                                                                                              lufenuron, milbemycin oxime
32536                                                                                                               fluralaner
32538                                                                          betamethasone, clotrimazole, gentamicin sulfate
32542                                                                          betamethasone, clotrimazole, gentamicin sulfate
32557                                                                                             ivermectin, pyrantel pamoate
32558                                                                                                 fipronil, (s)-methoprene
32561                                                                                             ivermectin, pyrantel pamoate
32562                                                                                               imidacloprid, pyriproxyfen
32575                                                                                       chlorhexidine gluconate, ophytrium
32576                                                                                       joint supplement (glucosamine hcl)
32629                                                                                                             multivitamin
32631                                                                                           milbemycin oxime, praziquantel
32633                                                                                                             multivitamin
32635                                                                                    dinotefuran, permethrin, pyriproxyfen
32642                                                                                              lufenuron, milbemycin oxime
32643                                                                                                         milbemycin oxime
32652                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32654                                                                                                         pyrantel pamoate
32664                                                                                             ivermectin, pyrantel pamoate
32670                                                                                              lufenuron, milbemycin oxime
32672                                                                                                  chlorhexidine gluconate
32673                                                                                             ivermectin, pyrantel pamoate
32678                                                                                              lufenuron, milbemycin oxime
32680                                                                                              lufenuron, milbemycin oxime
32682                                                                                              lufenuron, milbemycin oxime
32685                                                                                              lufenuron, milbemycin oxime
32694                                                                                        betamethasone, gentamicin sulfate
32698                                                                                                                 spinosad
32703                                                                                                                 spinosad
32726                                                                                                                ketorolac
32737                                                                             dexamethasone, neomycin sulfate, polymyxin b
32739                                                                               ivermectin, praziquantel, pyrantel pamoate
32742                                                                                                         milbemycin oxime
32743                                                                                                                lotilaner
32750                                                                                             ivermectin, pyrantel pamoate
32751                                                                                                               afoxolaner
32767                                                                                        allergy immunotherapy - injection
32768                                                                                                               afoxolaner
32769                                                                                                               moxidectin
32770                                                                                                              oclacitinib
32777                                                                                                                probiotic
32798                                                                             florfenicol, mometasone furoate, terbinafine
32815                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32829                                                                                                 fipronil, (s)-methoprene
32841                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
32844                                                                                       amoxicillin, clavulanate potassium
32849                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
32850                                                                                                                trazodone
32856                                                                                                 fipronil, (s)-methoprene
32857                                                                                             ivermectin, pyrantel pamoate
32858                                                                                                 fipronil, (s)-methoprene
32859                                                                                             ivermectin, pyrantel pamoate
32862                                                                                                 fipronil, (s)-methoprene
32863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32869                                                                                                               fluralaner
32870                                                                                             ivermectin, pyrantel pamoate
32871                                                                                                               lokivetmab
32879                                                                                                                  omega 3
32883                                                                                                               ivermectin
32884                                                                            attapulgite, bismuth subsalicylate, kanamycin
32887                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32888                                                                                                  ketoconazole, tris-edta
32903                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32923                                                                                             ivermectin, pyrantel pamoate
32930                                                                                              lufenuron, milbemycin oxime
32937                                                                                                 imidacloprid, permethrin
32938                                                                                             ivermectin, pyrantel pamoate
32940                                                                                                                ophytrium
32942                                                                                             ivermectin, pyrantel pamoate
32943                                                                                                               fluralaner
32944                                                                                                               afoxolaner
32949                                                                                                                ophytrium
32950                                                                                                                  omega 3
32951                                                                                             ivermectin, pyrantel pamoate
32952                                                                                                               afoxolaner
32954                                                                                       amoxicillin, clavulanate potassium
32955                                                                                             ivermectin, pyrantel pamoate
32956                                                                                                               afoxolaner
32964                                                                                    chlorhexidine gluconate, ketoconazole
32965                                                                           dexamethasone, neomycin sulfate, thiabendazole
32999                                                                                              lufenuron, milbemycin oxime
33004                                                                                              lufenuron, milbemycin oxime
33008                                                                                               imidacloprid, pyriproxyfen
33009                                                                                              lufenuron, milbemycin oxime
33010                                                                                              lufenuron, milbemycin oxime
33011                                                                                                               afoxolaner
33015                                                                                                             fenbendazole
33023                                                                                                 fipronil, (s)-methoprene
33043                                                                                             ivermectin, pyrantel pamoate
33047                                                                                       amoxicillin, clavulanate potassium
33066                                                                                                               selamectin
33068                                                                                                               selamectin
33073                                                                                                         pyrantel pamoate
33078                                                                                                               ivermectin
33081                                                                                                         milbemycin oxime
33085                                                                                    dinotefuran, permethrin, pyriproxyfen
33086                                                                                                         milbemycin oxime
33087                                                                                    dinotefuran, permethrin, pyriproxyfen
33088                                                                                                         milbemycin oxime
33089                                                                                    dinotefuran, permethrin, pyriproxyfen
33090                                                                                                         milbemycin oxime
33091                                                                                    dinotefuran, permethrin, pyriproxyfen
33092                                                                                                         milbemycin oxime
33096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33107                                                                                             ivermectin, pyrantel pamoate
33110                                                                                                         milbemycin oxime
33113                                                                                             ivermectin, pyrantel pamoate
33124                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
33126                                                                                        betamethasone, gentamicin sulfate
33128                                                                             florfenicol, mometasone furoate, terbinafine
33132                                                                                                               afoxolaner
33133                                                                                                               ivermectin
33138                                                                                             ivermectin, pyrantel pamoate
33157                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33159                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33166                                                                                                   cyphenothrin, fipronil
33187                                                                                             ivermectin, pyrantel pamoate
33190                                                                                               milbemycin oxime, spinosad
33191                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33209                                                                               chloroxylenol, lactic acid, salicylic acid
33211                                                                                              lufenuron, milbemycin oxime
33220                                                                                 febantel, praziquantel, pyrantel pamoate
33222                                                                                              lufenuron, milbemycin oxime
33226                                                                                                                  omega 3
33227                                                                                                                probiotic
33229                                                                                    dinotefuran, permethrin, pyriproxyfen
33230                                                                                              lufenuron, milbemycin oxime
33233                                                                                                                probiotic
33235                                                                                              lufenuron, milbemycin oxime
33236                                                                                    dinotefuran, permethrin, pyriproxyfen
33239                                                                                                                probiotic
33242                                                                                              lufenuron, milbemycin oxime
33271                                                                                                   unspecified medication
33286                                                                                             ivermectin, pyrantel pamoate
33289                                                                               ivermectin, praziquantel, pyrantel pamoate
33292                                                                                             ivermectin, pyrantel pamoate
33293                                                                                                 fipronil, (s)-methoprene
33318                                                                                                 fipronil, (s)-methoprene
33333                                                                                              lufenuron, milbemycin oxime
33335                                                                                              lufenuron, milbemycin oxime
33336                                                                                              lufenuron, milbemycin oxime
33347                                                                                                               lokivetmab
33354                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33355                                                                                        betamethasone, gentamicin sulfate
33358                                                                                             ivermectin, pyrantel pamoate
33363                                                                                             ivermectin, pyrantel pamoate
33364                                                                                                               fluralaner
33370                                                                                             ivermectin, pyrantel pamoate
33374                                                                                    chlorhexidine gluconate, ketoconazole
33375                                                                               coal tar solution, menthol, salicylic acid
33376                                                                                                 joint supplement (other)
33377                                                                                                                  omega 3
33385                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33387                                                                                                       gentamicin sulfate
33389                                                                                               neomycin sulfate, nystatin
33410                                                                                             ivermectin, pyrantel pamoate
33411                                                                                                 flumethrin, imidacloprid
33412                                                                                             ivermectin, pyrantel pamoate
33414                                                                                                 flumethrin, imidacloprid
33456                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33468                                                                                                  ketoconazole, tris-edta
33471                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33479                                                                                                               afoxolaner
33480                                                                                             ivermectin, pyrantel pamoate
33482                                                                             dexamethasone, neomycin sulfate, polymyxin b
33489                                                                                                         pyrantel pamoate
33490                                                                                              lufenuron, milbemycin oxime
33491                                                                                              lufenuron, milbemycin oxime
33492                                                                                              lufenuron, milbemycin oxime
33493                                                                                              lufenuron, milbemycin oxime
33497                                                                                              lufenuron, milbemycin oxime
33499                                                                                                 skin and coat supplement
33500                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33539                                                                                                             deltamethrin
33541                                                                                                             deltamethrin
33542                                                                           dexamethasone, neomycin sulfate, thiabendazole
33543                                                                                                             deltamethrin
33544                                                                                                             deltamethrin
33576                                                                                             ivermectin, pyrantel pamoate
33580                                                                                              lufenuron, milbemycin oxime
33581                                                                                                               indoxacarb
33582                                                                                                              doxycycline
33583                                                                                        trimeprazine tartrate, prednisone
33590                                                                                              lufenuron, milbemycin oxime
33591                                                                                              lufenuron, milbemycin oxime
33592                                                                                                         milbemycin oxime
33614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33641                                                                                lufenuron, milbemycin oxime, praziquantel
33644                                                                                lufenuron, milbemycin oxime, praziquantel
33645                                                                                              lufenuron, milbemycin oxime
33647                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33649                                                                                              lufenuron, milbemycin oxime
33651                                                                                lufenuron, milbemycin oxime, praziquantel
33655                                                                                              lufenuron, milbemycin oxime
33683                                                                                                         milbemycin oxime
33684                                                                                                 unspecified chemotherapy
33690                                                                                             ivermectin, pyrantel pamoate
33696                                                                                             ivermectin, pyrantel pamoate
33702                                                                                                                  omega 3
33706                                                                                              lufenuron, milbemycin oxime
33714                                                                                              lufenuron, milbemycin oxime
33717                                                                                                                probiotic
33722                                                                                       chlorhexidine gluconate, ophytrium
33723                                                                                              lufenuron, milbemycin oxime
33724                                                                                              lufenuron, milbemycin oxime
33725                                                                                                                sarolaner
33737                                                                                                                probiotic
33739                                                                                               milbemycin oxime, spinosad
33740                                                                                               milbemycin oxime, spinosad
33756                                                                                neomycin sulfate, polymyxin b, gramicidin
33767                                                                                                         milbemycin oxime
33797                                                                                               imidacloprid, pyriproxyfen
33798                                                                                             ivermectin, pyrantel pamoate
33804                                                                                             ivermectin, pyrantel pamoate
33805                                                                                               imidacloprid, pyriproxyfen
33815                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33824                                                                                             ivermectin, pyrantel pamoate
33828                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33844                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33868                                                                                                               ivermectin
33869                                                                                             ivermectin, pyrantel pamoate
33870                                                                                             ivermectin, pyrantel pamoate
33890                                                                                                               amantadine
33894                                                                                                  ketoconazole, tris-edta
33901                                                                                             testicular health supplement
33907                                                                                        betamethasone, gentamicin sulfate
33911                                                                                                 fipronil, (s)-methoprene
33916                                                                                        allergy immunotherapy - injection
33919                                                                                                                mupirocin
33927                                                                                                 skin and coat supplement
33939                                                                                                                mupirocin
33940                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33987                                                                                                             multivitamin
33991                                                                                          ear cleaner (epi-otic advanced)
33992                                                                                             ivermectin, pyrantel pamoate
33993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33994                                                                                                  ketoconazole, tris-edta
33995                                                                                                               fluralaner
33998                                                                                                  ketoconazole, tris-edta
34000                                                                                                             multivitamin
34002                                                                                   joint supplement (glucosamine hcl/msm)
34003                                                                                                  ketoconazole, tris-edta
34005                                                                                                       calming supplement
34011                                                                          betamethasone, clotrimazole, gentamicin sulfate
34012                                                                                                  ketoconazole, tris-edta
34014                                                                                 ceramide complex, coconut oil, safflower
34016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34022                                                                                          ear cleaner (epi-otic advanced)
34024                                                                               dextromethorphan hydrobromide, guaifenesin
34029                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34030                                                                                              lufenuron, milbemycin oxime
34043                                                                                              lufenuron, milbemycin oxime
34046                                                                                                 fipronil, (s)-methoprene
34048                                                                                              lufenuron, milbemycin oxime
34049                                                                                                 flumethrin, imidacloprid
34051                                                                                              lufenuron, milbemycin oxime
34053                                                                                              lufenuron, milbemycin oxime
34054                                                                                                 flumethrin, imidacloprid
34069                                                                                             ivermectin, pyrantel pamoate
34073                                                                                                               diclofenac
34074                                                                                             ivermectin, pyrantel pamoate
34075                                                                                   imidacloprid, permethrin, pyriproxyfen
34077                                                                                              lufenuron, milbemycin oxime
34087                                                                                               milbemycin oxime, spinosad
34090                                                                                                      ear cleaner (zymox)
34091                                                                                             ivermectin, pyrantel pamoate
34093                                                                                                 flumethrin, imidacloprid
34094                                                                                                  acetic acid, boric acid
34095                                                                                                         milbemycin oxime
34096                                                                                           milbemycin oxime, praziquantel
34107                                                                                                 fipronil, (s)-methoprene
34108                                                                               ivermectin, praziquantel, pyrantel pamoate
34109                                                                                                             fenbendazole
34111                                                                                             ivermectin, pyrantel pamoate
34113                                                                                                 fipronil, (s)-methoprene
34125                                                                                    dinotefuran, permethrin, pyriproxyfen
34126                                                                                             ivermectin, pyrantel pamoate
34128                                                                                        betamethasone, gentamicin sulfate
34132                                                                                             ivermectin, pyrantel pamoate
34134                                                                                             ivermectin, pyrantel pamoate
34135                                                                                    dinotefuran, permethrin, pyriproxyfen
34138                                                                                                                probiotic
34140                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34147                                                                                             ivermectin, pyrantel pamoate
34148                                                                                                               afoxolaner
34152                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34155                                                                                                                probiotic
34156                                                                                                               loratadine
34157                                                                                                               famotidine
34161                                                                                             ivermectin, pyrantel pamoate
34227                                                                                                                  rx clay
34230                                                                                                                cisapride
34231                                                                                                              ondansetron
34232                                                                                                                probiotic
34233                                                                                                               famotidine
34234                                                                                                       maropitant citrate
34235                                                                                                              mirtazapine
34238                                                                                             ivermectin, pyrantel pamoate
34239                                                                                                 imidacloprid, permethrin
34240                                                                                               imidacloprid, pyriproxyfen
34241                                                                                             ivermectin, pyrantel pamoate
34242                                                                                                         milbemycin oxime
34243                                                                                               imidacloprid, pyriproxyfen
34246                                                                                               imidacloprid, pyriproxyfen
34247                                                                                                         milbemycin oxime
34249                                                                                                             fenbendazole
34254                                                                                              lufenuron, milbemycin oxime
34260                                                                                       amoxicillin, clavulanate potassium
34262                                                                                              lufenuron, milbemycin oxime
34264                                                                                       amoxicillin, clavulanate potassium
34267                                                                                              lufenuron, milbemycin oxime
34268                                                                                              lufenuron, milbemycin oxime
34269                                                                                                             multivitamin
34327                                                                                                                vitamin b
34332                                                                                                               ivermectin
34333                                                                          betamethasone, clotrimazole, gentamicin sulfate
34334                                                                                               imidacloprid, pyriproxyfen
34336                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34340                                                                                                               afoxolaner
34342                                                                                                                 geraniol
34343                                                                                      cedarwood oil, rosemary oil, sesame
34345                                                                                                 fipronil, (s)-methoprene
34359                                                                                                                 spinosad
34360                                                                                                               ivermectin
34361                                                                                             ivermectin, pyrantel pamoate
34362                                                                                                                 spinosad
34367                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34374                                                                                                         milbemycin oxime
34375                                                                                                               fluralaner
34378                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34379                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34388                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34401                                                                                             ivermectin, pyrantel pamoate
34403                                                                                                               afoxolaner
34409                                                                                                               ivermectin
34410                                                                                                               afoxolaner
34418                                                                                              lufenuron, milbemycin oxime
34419                                                                                              lufenuron, milbemycin oxime
34430                                                                                                               moxidectin
34434                                                                                                               fluralaner
34435                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34436                                                                                                 endocrine system support
34467                                                                                lufenuron, milbemycin oxime, praziquantel
34474                                                                                lufenuron, milbemycin oxime, praziquantel
34493                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
34513                                                                                                 fipronil, (s)-methoprene
34536                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34545                                                                                                                vitamin b
34548                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34579                                                                                                            yunnan baiyao
34583                                                                                                               ivermectin
34584                                                                                             ivermectin, pyrantel pamoate
34587                                                                                        betamethasone, gentamicin sulfate
34588                                                                                                  ketoconazole, tris-edta
34593                                                                                                               ivermectin
34606                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34608                                                                                        trimeprazine tartrate, prednisone
34609                                                                           dexamethasone, neomycin sulfate, thiabendazole
34617                                                                                                 fipronil, (s)-methoprene
34624                                                                      neomycin sulfate, nystatin, triamcinolone acetonide
34629                                                                                               milbemycin oxime, spinosad
34630                                                                                                  ketoconazole, tris-edta
34635                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
34636                                                                                               milbemycin oxime, spinosad
34637                                                                                        trimeprazine tartrate, prednisone
34638                                                                                       chlorhexidine gluconate, ophytrium
34640                                                                                               milbemycin oxime, spinosad
34642                                                                                                               afoxolaner
34648                                                                                                               ivermectin
34669                                                                                             ivermectin, pyrantel pamoate
34671                                                                                   joint supplement (glucosamine hcl/msm)
34672                                                                                        betamethasone, gentamicin sulfate
34673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34674                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34675                                                                                                               lokivetmab
34676                                                                                           milbemycin oxime, praziquantel
34677                                                                                            allergy immunotherapy - drops
34678                                                                       chlorhexidine gluconate, hydrocortisone, tris-edta
34680                                                                                  betamethasone, florfenicol, terbinafine
34697                                                                                               milbemycin oxime, spinosad
34704                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34705                                                                                               milbemycin oxime, spinosad
34706                                                                                               milbemycin oxime, spinosad
34708                                                                                                    bismuth subsalicylate
34709                                                                                                             multivitamin
34710                                                                                                                probiotic
34727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34728                                                                                                                  omega 3
34729                                                                                                      unspecified vitamin
34730                                                                                             ivermectin, pyrantel pamoate
34733                                                                                             ivermectin, pyrantel pamoate
34734                                                                                                               fluralaner
34741                                                                                    chlorhexidine gluconate, ketoconazole
34744                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34747                                                                                                               fluralaner
34750                                                                                             ivermectin, pyrantel pamoate
34763                                                                                             ivermectin, pyrantel pamoate
34764                                                                                                               afoxolaner
34766                                                                                             ivermectin, pyrantel pamoate
34787                                                                                       joint supplement (glucosamine hcl)
34788                                                                                                                mupirocin
34789                                                                                             ivermectin, pyrantel pamoate
34791                                                                                             ivermectin, pyrantel pamoate
34797                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34798                                                                                                                  omega 3
34799                                                                                                               ivermectin
34811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34813                                                                                                     prebiotic, probiotic
34828                                                                                               milbemycin oxime, spinosad
34832                                                                                               milbemycin oxime, spinosad
34833                                                                                              lufenuron, milbemycin oxime
34845                                                                                                     prebiotic, probiotic
34874                                                                                                               sucralfate
34875                                                                                                               omeprazole
34887                                                                                                               ivermectin
34888                                                                                       fipronil, permethrin, pyriproxyfen
34889                                                                                             ivermectin, pyrantel pamoate
34890                                                                                                 fipronil, (s)-methoprene
34891                                                                                             ivermectin, pyrantel pamoate
34892                                                                                                 fipronil, (s)-methoprene
34900                                                                                                         milbemycin oxime
34901                                                                                                               fluralaner
34902                                                                                                               lokivetmab
34903                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34904                                                                                                                  omega 3
34905                                                                                                         milbemycin oxime
34906                                                                                                               fluralaner
34907                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34908                                                                                                               lokivetmab
34917                                                                                                  triamcinolone acetonide
34918                                                                                                            difluprednate
34920                                                                               ivermectin, praziquantel, pyrantel pamoate
34922                                                                                                         milbemycin oxime
34923                                                                                                         milbemycin oxime
34924                                                                                                               fluralaner
34953                                                                                                   gut restore supplement
34955                                                                                                     digestive supplement
34956                                                                                                                  omega 3
34966                                                                                                         milbemycin oxime
34979                                                                                                               fluralaner
34981                                                                                                         milbemycin oxime
34982                                                                               ivermectin, praziquantel, pyrantel pamoate
34983                                                                               ivermectin, praziquantel, pyrantel pamoate
34991                                                                                             ivermectin, pyrantel pamoate
34992                                                                                                               ivermectin
34996                                                                                             ivermectin, pyrantel pamoate
35002                                                                                               imidacloprid, pyriproxyfen
35004                                                                                             ivermectin, pyrantel pamoate
35014                                                                                              lufenuron, milbemycin oxime
35025                                                                                lufenuron, milbemycin oxime, praziquantel
35027                                                                                              rx diet - digestive support
35034                                                                                                         milbemycin oxime
35049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35069                                                                                              lufenuron, milbemycin oxime
35074                                                                                        betamethasone, gentamicin sulfate
35094                                                                                           milbemycin oxime, praziquantel
35103                                                                                                 fipronil, (s)-methoprene
35109                                                                                                                  calcium
35110                                                                                                         milbemycin oxime
35125                                                                                                               afoxolaner
35132                                                                                                               fluralaner
35134                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35143                                                                                              lufenuron, milbemycin oxime
35144                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35145                                                                                             ivermectin, pyrantel pamoate
35146                                                                                               milbemycin oxime, spinosad
35147                                                                                                         milbemycin oxime
35148                                                                                       joint supplement (glucosamine hcl)
35149                                                                                                         milbemycin oxime
35150                                                                                               milbemycin oxime, spinosad
35152                                                                                                         milbemycin oxime
35153                                                                                                               fluralaner
35154                                                                                                         milbemycin oxime
35160                                                                           mometasone furoate, orbifloxacin, posaconazole
35176                                                                                        trimeprazine tartrate, prednisone
35181                                                                                                               ivermectin
35182                                                                                             ivermectin, pyrantel pamoate
35183                                                                                                                  omega 3
35189                                                                                             ivermectin, pyrantel pamoate
35203                                                                                                               ivermectin
35204                                                                                       fipronil, permethrin, pyriproxyfen
35205                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35207                                                                                             ivermectin, pyrantel pamoate
35212                                                                                                               ivermectin
35214                                                                                             ivermectin, pyrantel pamoate
35232                                                                                             ivermectin, pyrantel pamoate
35245                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35252                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35262                                                                                             ivermectin, pyrantel pamoate
35264                                                                                             ivermectin, pyrantel pamoate
35278                                                                                             ivermectin, pyrantel pamoate
35279                                                                                                               afoxolaner
35283                                                                                             ivermectin, pyrantel pamoate
35284                                                                                                               afoxolaner
35291                                                                                              lufenuron, milbemycin oxime
35299                                                                                                 fipronil, (s)-methoprene
35300                                                                                             ivermectin, pyrantel pamoate
35314                                                                             dexamethasone, neomycin sulfate, polymyxin b
35315                                                                                                         milbemycin oxime
35354                                                                                              lufenuron, milbemycin oxime
35382                                                                                             ivermectin, pyrantel pamoate
35388                                                                                                                  menthol
35393                                                                                             ivermectin, pyrantel pamoate
35399                                                                                                               ivermectin
35400                                                                                             ivermectin, pyrantel pamoate
35401                                                                                             ivermectin, pyrantel pamoate
35404                                                                                             ivermectin, pyrantel pamoate
35405                                                                                             ivermectin, pyrantel pamoate
35406                                                                                             ivermectin, pyrantel pamoate
35414                                                                                              lufenuron, milbemycin oxime
35417                                                                                               milbemycin oxime, spinosad
35420                                                                                              lufenuron, milbemycin oxime
35421                                                                                                               fluralaner
35422                                                                                              lufenuron, milbemycin oxime
35423                                                                                              lufenuron, milbemycin oxime
35424                                                                                                               fluralaner
35425                                                                                              lufenuron, milbemycin oxime
35432                                                                                              lufenuron, milbemycin oxime
35434                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35443                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35450                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35453                                                                                                 joint supplement (other)
35454                                                                                                                  omega 3
35495                                                                                             ivermectin, pyrantel pamoate
35496                                                                                             ivermectin, pyrantel pamoate
35497                                                                                             ivermectin, pyrantel pamoate
35499                                                                                                                probiotic
35501                                                                                                               ivermectin
35504                                                                                                                probiotic
35506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35509                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35513                                                                               dextromethorphan hydrobromide, guaifenesin
35525                                                                                                 fipronil, (s)-methoprene
35526                                                                                                         milbemycin oxime
35528                                                                                                         milbemycin oxime
35539                                                                                           milbemycin oxime, praziquantel
35560                                                                                                               ivermectin
35561                                                                                                               afoxolaner
35562                                                                                                               afoxolaner
35563                                                                                             ivermectin, pyrantel pamoate
35565                                                                                             ivermectin, pyrantel pamoate
35566                                                                                                               afoxolaner
35569                                                                                             ivermectin, pyrantel pamoate
35571                                                                               ivermectin, praziquantel, pyrantel pamoate
35572                                                                                               imidacloprid, pyriproxyfen
35573                                                                                                                meloxicam
35574                                                                                                                firocoxib
35575                                                                                              lufenuron, milbemycin oxime
35576                                                                                                         milbemycin oxime
35577                                                                                                               fluralaner
35578                                                                                                               fluralaner
35579                                                                                              lufenuron, milbemycin oxime
35580                                                                                                               prednisone
35581                                                                                                               ivermectin
35582                                                                                              lufenuron, milbemycin oxime
35593                                                                                             ivermectin, pyrantel pamoate
35598                                                                                                         milbemycin oxime
35605                                                                              over-the-counter unmedicated shampoo/mousse
35620                                                                                                   cyphenothrin, fipronil
35621                                                                                                   cyphenothrin, fipronil
35624                                                                                                               selamectin
35626                                                                                                         tylosin tartrate
35628                                                                                                               selamectin
35633                                                                                                 joint supplement (other)
35639                                                                                             ivermectin, pyrantel pamoate
35641                                                                                                               afoxolaner
35642                                                                                          ear cleaner (epi-otic advanced)
35645                                                                                                         pyrantel pamoate
35656                                                                                         propylene glycol, salicylic acid
35659                                                                                                         milbemycin oxime
35662                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
35664                                                                                                         milbemycin oxime
35665                                                                                                                sarolaner
35668                                                                                        betamethasone, gentamicin sulfate
35673                                                                                        betamethasone, gentamicin sulfate
35674                                                                          betamethasone, clotrimazole, gentamicin sulfate
35696                                                                                                                probiotic
35697                                                                                                               afoxolaner
35699                                                                                                               afoxolaner
35721                                                                                                 fipronil, (s)-methoprene
35722                                                                                                             multivitamin
35725                                                                                             ivermectin, pyrantel pamoate
35727                                                                                             ivermectin, pyrantel pamoate
35740                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35743                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35748                                                                                             ivermectin, pyrantel pamoate
35756                                                                                             ivermectin, pyrantel pamoate
35757                                                                                             ivermectin, pyrantel pamoate
35758                                                                                                               afoxolaner
35762                                                                                                  triamcinolone acetonide
35768                                                                                                 imidacloprid, permethrin
35770                                                                                               imidacloprid, pyriproxyfen
35771                                                                                             ivermectin, pyrantel pamoate
35772                                                                                                                  omega 3
35773                                                                                                 imidacloprid, permethrin
35774                                                                                             ivermectin, pyrantel pamoate
35775                                                                                                               ivermectin
35777                                                                                               imidacloprid, pyriproxyfen
35778                                                                                             ivermectin, pyrantel pamoate
35784                                                                                             ivermectin, pyrantel pamoate
35786                                                                                       fipronil, permethrin, pyriproxyfen
35791                                                                                                 fipronil, (s)-methoprene
35792                                                                                             ivermectin, pyrantel pamoate
35793                                                                                                                probiotic
35808                                                                                                                  rx clay
35809                                                                                       chlorhexidine gluconate, ophytrium
35810                                                                                                                probiotic
35812                                                                                               milbemycin oxime, spinosad
35820                                                                                                               ivermectin
35821                                                                                       fipronil, permethrin, pyriproxyfen
35831                                                                                                         milbemycin oxime
35835                                                                                                         milbemycin oxime
35850                                                                                             ivermectin, pyrantel pamoate
35855                                                                                             ivermectin, pyrantel pamoate
35858                                                                                                     cefpodoxime proxetil
35859                                                                                        trimeprazine tartrate, prednisone
35903                                                                                                               epsom salt
35905                                                                                                             orbifloxacin
35907                                                                                                                firocoxib
35908                                                                                              lufenuron, milbemycin oxime
35931                                                                                             ivermectin, pyrantel pamoate
35954                                                                                             ivermectin, pyrantel pamoate
35955                                                                                             ivermectin, pyrantel pamoate
35963                                                                          betamethasone, clotrimazole, gentamicin sulfate
35965                                                                                        enrofloxacin, silver sulfadiazine
35969                                                                                                         phytosphingosine
35973                                                                                               milbemycin oxime, spinosad
35982                                                                                             ivermectin, pyrantel pamoate
35983                                                                                                               afoxolaner
36019                                                                                                               afoxolaner
36021                                                                                                               afoxolaner
36023                                                                                        betamethasone, gentamicin sulfate
36030                                                                                        betamethasone, gentamicin sulfate
36042                                                                                               milbemycin oxime, spinosad
36043                                                                                               milbemycin oxime, spinosad
36044                                                                                               milbemycin oxime, spinosad
36065                                                                                             ivermectin, pyrantel pamoate
36069                                                                                             ivermectin, pyrantel pamoate
36078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36081                                                                                                  ketoconazole, tris-edta
36082                                                                                                               ivermectin
36084                                                                                                               cetirizine
36108                                                                                                         milbemycin oxime
36110                                                                                               milbemycin oxime, spinosad
36112                                                                                                 joint supplement (other)
36113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36115                                                                                                 joint supplement (other)
36134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36137                                                                                                   unspecified antiseptic
36144                                                                                                 fipronil, (s)-methoprene
36145                                                                                                               ivermectin
36150                                                                                             ivermectin, pyrantel pamoate
36153                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36156                                                                                             ivermectin, pyrantel pamoate
36159                                                                                                               afoxolaner
36171                                                                                                            metronidazole
36191                                                                                             ivermectin, pyrantel pamoate
36192                                                                                                               fluralaner
36200                                                                                               unspecified ear medication
36201                                                                                                             ketoconazole
36202                                                                                            allergy immunotherapy - drops
36203                                                                                            allergy immunotherapy - drops
36205                                                                                            allergy immunotherapy - drops
36218                                                                                                         milbemycin oxime
36220                                                                                             ivermectin, pyrantel pamoate
36221                                                                                                               fluralaner
36222                                                                                            silver oxide, type i collagen
36223                                                                                                                probiotic
36225                                                                                             ivermectin, pyrantel pamoate
36227                                                                                                               afoxolaner
36228                                                                                                               afoxolaner
36229                                                                                             ivermectin, pyrantel pamoate
36231                                                                             florfenicol, mometasone furoate, terbinafine
36232                                                                                                               afoxolaner
36233                                                                                                               ivermectin
36235                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
36237                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36238                                                                                                                carprofen
36240                                                                                                         milbemycin oxime
36254                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36256                                                                          betamethasone, clotrimazole, gentamicin sulfate
36264                                                                                                         milbemycin oxime
36268                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36271                                                                                               milbemycin oxime, spinosad
36272                                                                                               milbemycin oxime, spinosad
36273                                                                                               milbemycin oxime, spinosad
36275                                                                                                               selamectin
36276                                                                              chlorhexidine gluconate, miconazole nitrate
36280                                                                                                               selamectin
36283                                                                                                         milbemycin oxime
36288                                                                                                         milbemycin oxime
36293                                                                                                 fipronil, (s)-methoprene
36294                                                                                                         pyrantel pamoate
36295                                                                                                             fenbendazole
36296                                                                                                 fipronil, (s)-methoprene
36297                                                                                                         pyrantel pamoate
36298                                                                                                             fenbendazole
36299                                                                                                               ivermectin
36300                                                                                                 fipronil, (s)-methoprene
36301                                                                                                             fenbendazole
36302                                                                                                             fenbendazole
36303                                                                                                         pyrantel pamoate
36304                                                                                                               ivermectin
36305                                                                                                 fipronil, (s)-methoprene
36306                                                                                                             fenbendazole
36307                                                                                                         pyrantel pamoate
36308                                                                                                             fenbendazole
36309                                                                                                         pyrantel pamoate
36310                                                                                                         pyrantel pamoate
36311                                                                                                             fenbendazole
36322                                                                                                 fipronil, (s)-methoprene
36323                                                                                                         pyrantel pamoate
36324                                                                                                             fenbendazole
36325                                                                                                 fipronil, (s)-methoprene
36326                                                                                                         pyrantel pamoate
36327                                                                                                             fenbendazole
36328                                                                                                               ivermectin
36329                                                                                                 fipronil, (s)-methoprene
36330                                                                                                             fenbendazole
36331                                                                                                             fenbendazole
36332                                                                                                         pyrantel pamoate
36333                                                                                                 fipronil, (s)-methoprene
36334                                                                                                               ivermectin
36335                                                                                                             fenbendazole
36336                                                                                                         pyrantel pamoate
36337                                                                                                             fenbendazole
36338                                                                                                         pyrantel pamoate
36339                                                                                                             fenbendazole
36340                                                                                                         pyrantel pamoate
36357                                                                                                               cephalexin
36358                                                                                                 fipronil, (s)-methoprene
36359                                                                                                         pyrantel pamoate
36360                                                                                                             fenbendazole
36361                                                                                                 fipronil, (s)-methoprene
36362                                                                                                         pyrantel pamoate
36363                                                                                                             fenbendazole
36364                                                                                                               ivermectin
36365                                                                                                 fipronil, (s)-methoprene
36366                                                                                                             fenbendazole
36367                                                                                                             fenbendazole
36368                                                                                                         pyrantel pamoate
36369                                                                                                               ivermectin
36370                                                                                                 fipronil, (s)-methoprene
36371                                                                                                             fenbendazole
36372                                                                                                         pyrantel pamoate
36373                                                                                                             fenbendazole
36374                                                                                                         pyrantel pamoate
36377                                                                                                 fipronil, (s)-methoprene
36378                                                                                                         pyrantel pamoate
36379                                                                                                             fenbendazole
36380                                                                                                 fipronil, (s)-methoprene
36381                                                                                                             fenbendazole
36382                                                                                                         pyrantel pamoate
36383                                                                                                               ivermectin
36384                                                                                                 fipronil, (s)-methoprene
36385                                                                                                             fenbendazole
36397                                                                                                               prednisone
36398                                                                                                 fipronil, (s)-methoprene
36399                                                                                             ivermectin, pyrantel pamoate
36403                                                                                                 fipronil, (s)-methoprene
36404                                                                                                             fenbendazole
36405                                                                                             ivermectin, pyrantel pamoate
36406                                                                                                 fipronil, (s)-methoprene
36410                                                                                                                vitamin b
36427                                                                                               imidacloprid, pyriproxyfen
36429                                                                                             ivermectin, pyrantel pamoate
36430                                                                                               imidacloprid, pyriproxyfen
36438                                                                                               imidacloprid, pyriproxyfen
36439                                                                                             ivermectin, pyrantel pamoate
36440                                                                                        trimeprazine tartrate, prednisone
36443                                                                                             ivermectin, pyrantel pamoate
36444                                                                                               imidacloprid, pyriproxyfen
36448                                                                                               imidacloprid, pyriproxyfen
36451                                                                                           praziquantel, pyrantel pamoate
36460                                                                                              lufenuron, milbemycin oxime
36461                                                                                                               fluralaner
36464                                                                                        betamethasone, gentamicin sulfate
36474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36491                                                                                             ivermectin, pyrantel pamoate
36497                                                                                             ivermectin, pyrantel pamoate
36513                                                                                                             ketoconazole
36533                                                                              chlorhexidine gluconate, miconazole nitrate
36535                                                                                       chlorhexidine gluconate, ophytrium
36559                                                                                             ivermectin, pyrantel pamoate
36560                                                                                                 fipronil, (s)-methoprene
36562                                                                                             ivermectin, pyrantel pamoate
36568                                                                                              lufenuron, milbemycin oxime
36571                                                                             dexamethasone, neomycin sulfate, polymyxin b
36574                                                                           mometasone furoate, orbifloxacin, posaconazole
36595                                                                               ivermectin, praziquantel, pyrantel pamoate
36600                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36601                                                                               ivermectin, praziquantel, pyrantel pamoate
36602                                                                                                         milbemycin oxime
36605                                                                                                         milbemycin oxime
36607                                                                                                         milbemycin oxime
36608                                                                                                         milbemycin oxime
36616                                                                               ivermectin, praziquantel, pyrantel pamoate
36624                                                                                                  acetic acid, boric acid
36626                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36630                                                                                                         milbemycin oxime
36632                                                                                                         milbemycin oxime
36635                                                                                                         milbemycin oxime
36657                                                                                               milbemycin oxime, spinosad
36670                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36698                                                                                             ivermectin, pyrantel pamoate
36699                                                                                             ivermectin, pyrantel pamoate
36705                                                                                        betamethasone, gentamicin sulfate
36708                                                                                             ivermectin, pyrantel pamoate
36709                                                                              chlorhexidine gluconate, miconazole nitrate
36735                                                                                                                carprofen
36751                                                                                             ivermectin, pyrantel pamoate
36752                                                                                                 fipronil, (s)-methoprene
36753                                                                                                             fenbendazole
36772                                                                                        betamethasone, gentamicin sulfate
36778                                                                                                         milbemycin oxime
36816                                                                              rx diet - hypoallergenic hydrolyzed protein
36817                                                                               ivermectin, praziquantel, pyrantel pamoate
36818                                                                                  betamethasone, florfenicol, terbinafine
36819                                                                                                  ketoconazole, tris-edta
36824                                                                                             ivermectin, pyrantel pamoate
36833                                                                                              lufenuron, milbemycin oxime
36834                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36835                                                                                       chlorhexidine gluconate, ophytrium
36840                                                                                              lufenuron, milbemycin oxime
36842                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36846                                                                                              lufenuron, milbemycin oxime
36847                                                                                                               fluralaner
36848                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36849                                                                                                               afoxolaner
36850                                                                                              lufenuron, milbemycin oxime
36851                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36855                                                                                                                probiotic
36859                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36875                                                                                                             acepromazine
36876                                                                                                                 tramadol
36877                                                                                                                firocoxib
36878                                                                                    dinotefuran, permethrin, pyriproxyfen
36880                                                                                                             acepromazine
36881                                                                                             ivermectin, pyrantel pamoate
36882                                                                                                              clindamycin
36883                                                                                                               afoxolaner
36892                                                                                          ear cleaner (epi-otic advanced)
36893                                                                                                               afoxolaner
36894                                                                                             ivermectin, pyrantel pamoate
36900                                                                                             ivermectin, pyrantel pamoate
36901                                                                                                               afoxolaner
36911                                                                                              lufenuron, milbemycin oxime
36919                                                                                              lufenuron, milbemycin oxime
36920                                                                                                   cyphenothrin, fipronil
36921                                                                                                                probiotic
36925                                                                                              lufenuron, milbemycin oxime
36945                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36969                                                                                             ivermectin, pyrantel pamoate
36970                                                                                    dinotefuran, permethrin, pyriproxyfen
36982                                                                                               imidacloprid, pyriproxyfen
36983                                                                                                               ivermectin
36984                                                                                                                 spinosad
36985                                                                                                         milbemycin oxime
36994                                                                                                        hypochlorous acid
37007                                                                                              lufenuron, milbemycin oxime
37015                                                                               ivermectin, praziquantel, pyrantel pamoate
37017                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
37018                                                                                                         milbemycin oxime
37019                                                                                                 fipronil, (s)-methoprene
37020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
37021                                                                               ivermectin, praziquantel, pyrantel pamoate
37036                                                                                   dexamethasone, ketoconazole, tris-edta
37038                                                                                       amoxicillin, clavulanate potassium
37046                                                                                                               afoxolaner
37054                                                                                              lufenuron, milbemycin oxime
37055                                                                                             ivermectin, pyrantel pamoate
37056                                                                                             ivermectin, pyrantel pamoate
37057                                                                                             ivermectin, pyrantel pamoate
37061                                                                                                 flumethrin, imidacloprid
37063                                                                                                 flumethrin, imidacloprid
37069                                                                                             ivermectin, pyrantel pamoate
37070                                                                                               imidacloprid, pyriproxyfen
37071                                                                                              lufenuron, milbemycin oxime
37073                                                                           beclomethasone, clotrimazole, neomycin sulfate
37074                                                                                              lufenuron, milbemycin oxime
37075                                                                          betamethasone, clotrimazole, gentamicin sulfate
37077                                                                                               imidacloprid, pyriproxyfen
37078                                                                                              lufenuron, milbemycin oxime
37087                                                                                               imidacloprid, pyriproxyfen
37088                                                                                                         milbemycin oxime
37098                                                                                               imidacloprid, pyriproxyfen
37099                                                                                                         milbemycin oxime
37104                                                                                                                ofloxacin
37116                                                                                                 fipronil, (s)-methoprene
37117                                                                                                         liver supplement
37135                                                                              chlorhexidine gluconate, miconazole nitrate
37157                                                                                        betamethasone, gentamicin sulfate
37164                                                                          betamethasone, clotrimazole, gentamicin sulfate
37165                                                                               ivermectin, praziquantel, pyrantel pamoate
37168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37169                                                                                                  chlorhexidine gluconate
37179                                                                                             ivermectin, pyrantel pamoate
37193                                                                                             ivermectin, pyrantel pamoate
37194                                                                                                                 geraniol
37195                                                                                                               ivermectin
37197                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37200                                                                                             ivermectin, pyrantel pamoate
37201                                                                                                               afoxolaner
37202                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37219                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37221                                                                                                                trazodone
37259                                                                                                               cephalexin
37260                                                                           dexamethasone, neomycin sulfate, thiabendazole
37262                                                                                               imidacloprid, pyriproxyfen
37266                                                                                                         milbemycin oxime
37267                                                                                    dinotefuran, permethrin, pyriproxyfen
37270                                                                                    dinotefuran, permethrin, pyriproxyfen
37271                                                                                               imidacloprid, pyriproxyfen
37272                                                                                        trimeprazine tartrate, prednisone
37277                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
37278                                                                                                  chlorhexidine gluconate
37279                                                                              rx diet - hypoallergenic hydrolyzed protein
37302                                                                                             ivermectin, pyrantel pamoate
37303                                                                          betamethasone, clotrimazole, gentamicin sulfate
37309                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37316                                                                                                               ivermectin
37324                                                                                                                sarolaner
37325                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37326                                                                                                               moxidectin
37332                                                                                                          dexmedetomidine
37337                                                                                                               lokivetmab
37344                                                                                                 joint supplement (other)
37349                                                                                             ivermectin, pyrantel pamoate
37359                                                                                                         milbemycin oxime
37373                                                                                              lufenuron, milbemycin oxime
37374                                                                                                               afoxolaner
37375                                                                                             ivermectin, pyrantel pamoate
37376                                                                                                               afoxolaner
37377                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37385                                                                                             ivermectin, pyrantel pamoate
37386                                                                                                               afoxolaner
37387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37392                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
37396                                                                                                               ivermectin
37397                                                                                                               fluralaner
37434                                                                                   joint supplement (glucosamine hcl/msm)
37435                                                                                           polysulfated glycosaminoglycan
37439                                                                                                               ivermectin
37446                                                                                             ivermectin, pyrantel pamoate
37449                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37451                                                                                                                mupirocin
37454                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37457                                                                              rx diet - hypoallergenic hydrolyzed protein
37463                                                                                    chlorhexidine gluconate, ketoconazole
37464                                                                                                  chlorhexidine gluconate
37465                                                                                        betamethasone, gentamicin sulfate
37467                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37468                                                                                lufenuron, milbemycin oxime, praziquantel
37469                                                                                                               fluralaner
37477                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37478                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37485                                                                                lufenuron, milbemycin oxime, praziquantel
37491                                                                                        betamethasone, gentamicin sulfate
37493                                                                                lufenuron, milbemycin oxime, praziquantel
37495                                                                                        betamethasone, gentamicin sulfate
37510                                                                                                               alprazolam
37526                                                                                                              minocycline
37527                                                                             dexamethasone, neomycin sulfate, polymyxin b
37533                                                                                                         phytosphingosine
37536                                                                                                  chlorhexidine gluconate
37540                                                                                             ivermectin, pyrantel pamoate
37545                                                                                             ivermectin, pyrantel pamoate
37546                                                                                                               fluralaner
37547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37552                                                                                             ivermectin, pyrantel pamoate
37568                                                                                              lufenuron, milbemycin oxime
37569                                                                                                 imidacloprid, permethrin
37571                                                                                              lufenuron, milbemycin oxime
37576                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37577                                                                                              lufenuron, milbemycin oxime
37578                                                                                               imidacloprid, pyriproxyfen
37579                                                                                               imidacloprid, pyriproxyfen
37580                                                                                                               ivermectin
37584                                                                                                                  omega 3
37585                                                                                                                probiotic
37586                                                                                       joint supplement (glucosamine hcl)
37597                                                                                               imidacloprid, pyriproxyfen
37598                                                                                                               ivermectin
37601                                                                                             ivermectin, pyrantel pamoate
37602                                                                                                               afoxolaner
37603                                                                                                               afoxolaner
37608                                                                                                               selamectin
37621                                                                                              lufenuron, milbemycin oxime
37622                                                                                              lufenuron, milbemycin oxime
37624                                                                                              lufenuron, milbemycin oxime
37627                                                                                             ivermectin, pyrantel pamoate
37628                                                                                             ivermectin, pyrantel pamoate
37629                                                                                             ivermectin, pyrantel pamoate
37630                                                                                             ivermectin, pyrantel pamoate
37639                                                                                                                probiotic
37648                                                                                    dinotefuran, permethrin, pyriproxyfen
37651                                                                                                 flumethrin, imidacloprid
37655                                                                                                 flumethrin, imidacloprid
37657                                                                                                 flumethrin, imidacloprid
37662                                                                                                 flumethrin, imidacloprid
37664                                                                                                 flumethrin, imidacloprid
37669                                                                                       chlorhexidine gluconate, ophytrium
37670                                                                                         burow's solution, hydrocortisone
37675                                                                                       chlorhexidine gluconate, ophytrium
37691                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37696                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
37697                                                                                                                carprofen
37698                                                                                                              amoxicillin
37704                                                                                              lufenuron, milbemycin oxime
37705                                                                                    dinotefuran, permethrin, pyriproxyfen
37709                                                                                                                  omega 3
37710                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37713                                                                                                                  omega 3
37714                                                                                                                probiotic
37717                                                                                                                  omega 3
37718                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37731                                                                                              lufenuron, milbemycin oxime
37738                                                                                              lufenuron, milbemycin oxime
37739                                                                                              lufenuron, milbemycin oxime
37740                                                                                                                 fipronil
37742                                                                                              lufenuron, milbemycin oxime
37771                                                                             dexamethasone, neomycin sulfate, polymyxin b
37785                                                                                                               afoxolaner
37786                                                                                             ivermectin, pyrantel pamoate
37797                                                                               ivermectin, praziquantel, pyrantel pamoate
37798                                                                               ivermectin, praziquantel, pyrantel pamoate
37805                                                                                           milbemycin oxime, praziquantel
37806                                                                                                               afoxolaner
37809                                                                                                              sevoflurane
37816                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37817                                                                                                                  omega 3
37820                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37821                                                                                    dinotefuran, permethrin, pyriproxyfen
37822                                                                                                                probiotic
37834                                                                                             ivermectin, pyrantel pamoate
37835                                                                                       fipronil, permethrin, pyriproxyfen
37837                                                                                             ivermectin, pyrantel pamoate
37838                                                                                             ivermectin, pyrantel pamoate
37839                                                                                                               fluralaner
37845                                                                                             ivermectin, pyrantel pamoate
37846                                                                                       fipronil, permethrin, pyriproxyfen
37847                                                                                             ivermectin, pyrantel pamoate
37848                                                                                                               fluralaner
37849                                                                                             ivermectin, pyrantel pamoate
37850                                                                                                               fluralaner
37851                                                                                                               fluralaner
37852                                                                                             ivermectin, pyrantel pamoate
37855                                                                                              lufenuron, milbemycin oxime
37858                                                                                lufenuron, milbemycin oxime, praziquantel
37865                                                                                                                 fipronil
37885                                                                                             ivermectin, pyrantel pamoate
37894                                                                                                               ivermectin
37895                                                                                                                sarolaner
37907                                                                                               milbemycin oxime, spinosad
37916                                                                                               milbemycin oxime, spinosad
37920                                                                                                 imidacloprid, permethrin
37929                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37930                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37933                                                                                             ivermectin, pyrantel pamoate
37934                                                                                                               afoxolaner
37935                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37936                                                                                             ivermectin, pyrantel pamoate
37937                                                                          betamethasone, clotrimazole, gentamicin sulfate
37942                                                                                                  ketoconazole, tris-edta
37944                                                                                                    mycophenolate mofetil
37976                                                                                              lufenuron, milbemycin oxime
37977                                                                                                   cyphenothrin, fipronil
37978                                                                                              lufenuron, milbemycin oxime
37979                                                                                        betamethasone, gentamicin sulfate
37980                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37984                                                                                              lufenuron, milbemycin oxime
37989                                                                                              lufenuron, milbemycin oxime
37990                                                                                        betamethasone, gentamicin sulfate
37992                                                                                              lufenuron, milbemycin oxime
37993                                                                                                               fluralaner
38018                                                                                               milbemycin oxime, spinosad
38036                                                                                                         milbemycin oxime
38041                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38046                                                                                                         milbemycin oxime
38048                                                                                       amoxicillin, clavulanate potassium
38050                                                                                                                lotilaner
38051                                                                                                         milbemycin oxime
38052                                                                                                                lotilaner
38056                                                                                                         tylosin tartrate
38070                                                                                             ivermectin, pyrantel pamoate
38071                                                                                               imidacloprid, pyriproxyfen
38072                                                                                                 flumethrin, imidacloprid
38074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38075                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38102                                                                               dextromethorphan hydrobromide, guaifenesin
38123                                                                                             ivermectin, pyrantel pamoate
38126                                                                                             ivermectin, pyrantel pamoate
38132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38134                                                                                                               cetirizine
38135                                                                                                       maropitant citrate
38136                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38141                                                                                                         milbemycin oxime
38142                                                                                                               afoxolaner
38151                                                                                                               afoxolaner
38152                                                                                                               afoxolaner
38156                                                                                                               afoxolaner
38165                                                                                             ivermectin, pyrantel pamoate
38166                                                                                                               afoxolaner
38177                                                                                               unspecified shampoo/mousse
38179                                                                                          ear cleaner (epi-otic advanced)
38181                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38182                                                                                                                  omega 3
38184                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38185                                                                             dexamethasone, neomycin sulfate, polymyxin b
38193                                                                                       fipronil, permethrin, pyriproxyfen
38204                                                                                                     digestive supplement
38211                                                                                      ear cleaner (zymox), hydrocortisone
38216                                                                                                                   arnica
38217                                                                                             ivermectin, pyrantel pamoate
38219                                                                                                                  omega 3
38240                                                                                    dinotefuran, permethrin, pyriproxyfen
38256                                                                                                         milbemycin oxime
38257                                                                                           milbemycin oxime, praziquantel
38259                                                                                                         milbemycin oxime
38262                                                                                                               afoxolaner
38268                                                                          betamethasone, clotrimazole, gentamicin sulfate
38273                                                                          betamethasone, clotrimazole, gentamicin sulfate
38284                                                                                             ivermectin, pyrantel pamoate
38287                                                                                                                probiotic
38288                                                                                           milbemycin oxime, praziquantel
38289                                                                                                               fluralaner
38293                                                                                              lufenuron, milbemycin oxime
38294                                                                           dexamethasone, neomycin sulfate, thiabendazole
38301                                                                                               imidacloprid, pyriproxyfen
38305                                                                                               imidacloprid, pyriproxyfen
38306                                                                                             ivermectin, pyrantel pamoate
38324                                                                                                  ketoconazole, tris-edta
38326                                                                                                         phytosphingosine
38330                                                                                             ivermectin, pyrantel pamoate
38339                                                                                                               fluralaner
38342                                                                                              lufenuron, milbemycin oxime
38351                                                                                                                sarolaner
38352                                                                                             ivermectin, pyrantel pamoate
38353                                                                                             ivermectin, pyrantel pamoate
38361                                                                             dexamethasone, neomycin sulfate, polymyxin b
38365                                                                                             ivermectin, pyrantel pamoate
38366                                                                                                 fipronil, (s)-methoprene
38367                                                                                               imidacloprid, pyriproxyfen
38369                                                                                               imidacloprid, pyriproxyfen
38372                                                                          betamethasone, clotrimazole, gentamicin sulfate
38373                                                                                                               lokivetmab
38377                                                                             florfenicol, mometasone furoate, terbinafine
38378                                                                           mometasone furoate, orbifloxacin, posaconazole
38386                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38387                                                                                     burow's solution, miconazole nitrate
38388                                                                                                               lokivetmab
38396                                                                                             ivermectin, pyrantel pamoate
38397                                                                                                               afoxolaner
38399                                                                                             ivermectin, pyrantel pamoate
38406                                                                                                                probiotic
38420                                                                                              lufenuron, milbemycin oxime
38422                                                                                              lufenuron, milbemycin oxime
38423                                                                                              lufenuron, milbemycin oxime
38427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38431                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38438                                                                                           milbemycin oxime, praziquantel
38439                                                                                                               fluralaner
38442                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38461                                                                                    dinotefuran, permethrin, pyriproxyfen
38462                                                                                             ivermectin, pyrantel pamoate
38464                                                                                                         milbemycin oxime
38465                                                                                    dinotefuran, permethrin, pyriproxyfen
38466                                                                                                                sarolaner
38470                                                                                                                sarolaner
38471                                                                                                         milbemycin oxime
38472                                                                                           milbemycin oxime, praziquantel
38473                                                                                                                sarolaner
38499                                                                               dextromethorphan hydrobromide, guaifenesin
38504                                                                                    dinotefuran, permethrin, pyriproxyfen
38505                                                                                             ivermectin, pyrantel pamoate
38507                                                                                                         milbemycin oxime
38508                                                                                    dinotefuran, permethrin, pyriproxyfen
38509                                                                                                                sarolaner
38510                                                                                                         milbemycin oxime
38511                                                                                           milbemycin oxime, praziquantel
38512                                                                                                                sarolaner
38522                                                                                 febantel, praziquantel, pyrantel pamoate
38527                                                                                             ivermectin, pyrantel pamoate
38528                                                                                   fipronil, pyriproxyfen, (s)-methoprene
38529                                                                           dexamethasone, neomycin sulfate, thiabendazole
38531                                                                                                  ketoconazole, tris-edta
38532                                                                                             ivermectin, pyrantel pamoate
38533                                                                                                 fipronil, (s)-methoprene
38534                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
38536                                                                               toothpaste/dental health solution or chews
38544                                                                           dexamethasone, neomycin sulfate, thiabendazole
38550                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38551                                                                                                                  omega 3
38557                                                                                        betamethasone, gentamicin sulfate
38567                                                                                                               ivermectin
38568                                                                                             ivermectin, pyrantel pamoate
38569                                                                                                               ivermectin
38570                                                                                                   unspecified medication
38588                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38602                                                                                              lufenuron, milbemycin oxime
38605                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38606                                                                                              lufenuron, milbemycin oxime
38607                                                                                       chlorhexidine gluconate, tris-edta
38610                                                                                              lufenuron, milbemycin oxime
38611                                                                                        betamethasone, gentamicin sulfate
38618                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38626                                                                                              lufenuron, milbemycin oxime
38630                                                                                                     digestive supplement
38636                                                                                                               ivermectin
38637                                                                                                 fipronil, (s)-methoprene
38643                                                                                             ivermectin, pyrantel pamoate
38647                                                                                                       maropitant citrate
38655                                                                                                      unspecified rx diet
38656                                                                                                 fipronil, (s)-methoprene
38665                                                                                                                vitamin b
38691                                                                                                                probiotic
38722                                                                          betamethasone, clotrimazole, gentamicin sulfate
38723                                                                                       chlorhexidine gluconate, ophytrium
38754                                                                                                            metronidazole
38772                                                                                                             ketoconazole
38773                                                                                                               fluralaner
38775                                                                                                  unspecified ear cleaner
38779                                                                                                               fluralaner
38780                                                                                        betamethasone, gentamicin sulfate
38787                                                                                                                probiotic
38789                                                                                                             multivitamin
38796                                                                                                                probiotic
38802                                                                                                                probiotic
38809                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38816                                                                                                                probiotic
38820                                                                                              lufenuron, milbemycin oxime
38821                                                                                                               fluralaner
38828                                                                                   chlorhexidine gluconate, dexamethasone
38839                                                                                                       miconazole nitrate
38841                                                                                                         phytosphingosine
38843                                                                             florfenicol, mometasone furoate, terbinafine
38845                                                                                                         tylosin tartrate
38847                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38850                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
38851                                                                                                                  taurine
38854                                                                             florfenicol, mometasone furoate, terbinafine
38855                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38861                                                                             florfenicol, mometasone furoate, terbinafine
38864                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38865                                                                                                  ketoconazole, tris-edta
38868                                                                     vitamin b, vitamin b complex, vitamin b12, vitamin e
38871                                                                                                         tylosin tartrate
38890                                                                                             ivermectin, pyrantel pamoate
38891                                                                                                               afoxolaner
38892                                                                                             ivermectin, pyrantel pamoate
38896                                                                                             ivermectin, pyrantel pamoate
38902                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38924                                                                               dextromethorphan hydrobromide, guaifenesin
38925                                                                                               imidacloprid, pyriproxyfen
38926                                                                                lufenuron, milbemycin oxime, praziquantel
38930                                                                                              lufenuron, milbemycin oxime
38931                                                                                                 flumethrin, imidacloprid
38940                                                                                               milbemycin oxime, spinosad
38941                                                                                                               afoxolaner
38945                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38946                                                                                lufenuron, milbemycin oxime, praziquantel
38950                                                                                lufenuron, milbemycin oxime, praziquantel
38951                                                                                                               afoxolaner
38952                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38956                                                                                       chlorhexidine gluconate, ophytrium
38963                                                                                                         milbemycin oxime
38964                                                                                                                sarolaner
38970                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38971                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38974                                                                            ear cleaner (epi-otic advanced), ketoconazole
38976                                                                                                            yunnan baiyao
38997                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39004                                                                                                               fluralaner
39005                                                                                                         milbemycin oxime
39006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39035                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39073                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
39083                                                                                lufenuron, milbemycin oxime, praziquantel
39099                                                                                             ivermectin, pyrantel pamoate
39117                                                                                               milbemycin oxime, spinosad
39120                                                                                             ivermectin, pyrantel pamoate
39121                                                                                                               ivermectin
39122                                                                                               imidacloprid, pyriproxyfen
39123                                                                                                               ivermectin
39125                                                                                           polysulfated glycosaminoglycan
39127                                                                             florfenicol, mometasone furoate, terbinafine
39128                                                                                        enrofloxacin, silver sulfadiazine
39158                                                                                           milbemycin oxime, praziquantel
39165                                                                                       amoxicillin, clavulanate potassium
39167                                                                                   joint supplement (glucosamine hcl/msm)
39171                                                                                    chlorhexidine gluconate, ketoconazole
39176                                                                                                               ivermectin
39181                                                                                    chlorhexidine gluconate, ketoconazole
39182                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
39198                                                                                        betamethasone, gentamicin sulfate
39201                                                                             florfenicol, mometasone furoate, terbinafine
39202                                                                                                  ketoconazole, tris-edta
39207                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39209                                                                                                 fipronil, (s)-methoprene
39210                                                                                                 fipronil, (s)-methoprene
39211                                                                                                 fipronil, (s)-methoprene
39212                                                                                                 fipronil, (s)-methoprene
39218                                                                                                 fipronil, (s)-methoprene
39258                                                                                                                probiotic
39259                                                                                                               ivermectin
39260                                                                                                               fluralaner
39262                                                                                             ivermectin, pyrantel pamoate
39273                                                                                             ivermectin, pyrantel pamoate
39316                                                                                               imidacloprid, pyriproxyfen
39325                                                                                                         milbemycin oxime
39326                                                                                                 fipronil, (s)-methoprene
39329                                                                                                         milbemycin oxime
39330                                                                                                                sarolaner
39331                                                                                                         milbemycin oxime
39332                                                                                                                sarolaner
39338                                                                                             ivermectin, pyrantel pamoate
39339                                                                                                 flumethrin, imidacloprid
39340                                                                                             ivermectin, pyrantel pamoate
39388                                                                                             ivermectin, pyrantel pamoate
39392                                                                             dexamethasone, neomycin sulfate, polymyxin b
39423                                                                                                                probiotic
39425                                                                                             silver sulfadiazine, insulin
39433                                                                                                  acetic acid, boric acid
39434                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39435                                                                                                                carvacrol
39438                                                                                             ivermectin, pyrantel pamoate
39440                                                                                             ivermectin, pyrantel pamoate
39443                                                                                             ivermectin, pyrantel pamoate
39444                                                                                             ivermectin, pyrantel pamoate
39445                                                                                                 fipronil, (s)-methoprene
39446                                                                                                 fipronil, (s)-methoprene
39447                                                                                             ivermectin, pyrantel pamoate
39450                                                                                                 fipronil, (s)-methoprene
39451                                                                                             ivermectin, pyrantel pamoate
39453                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39486                                                                                               imidacloprid, pyriproxyfen
39495                                                                                                 fipronil, (s)-methoprene
39496                                                                                             ivermectin, pyrantel pamoate
39511                                                                                                   cyphenothrin, fipronil
39513                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39516                                                                                                               ivermectin
39519                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39525                                                                                                               selamectin
39526                                                                                              lufenuron, milbemycin oxime
39528                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39531                                                                                 febantel, praziquantel, pyrantel pamoate
39534                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39536                                                                                                                probiotic
39539                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39541                                                                                                                  menthol
39542                                                                                                                mupirocin
39543                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39546                                                                                                               selamectin
39548                                                                                                                sarolaner
39566                                                                                                                probiotic
39567                                                                                                 joint supplement (other)
39573                                                                                        betamethasone, gentamicin sulfate
39581                                                                                                               ivermectin
39582                                                                                                               ivermectin
39586                                                                                             ivermectin, pyrantel pamoate
39591                                                                                                   unspecified medication
39599                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39607                                                                               dextromethorphan hydrobromide, guaifenesin
39609                                                                                             ivermectin, pyrantel pamoate
39617                                                                                                         pyrantel pamoate
39618                                                                                                               moxidectin
39635                                                                                               milbemycin oxime, spinosad
39637                                                                                               milbemycin oxime, spinosad
39639                                                                                         phytosphingosine, salicylic acid
39651                                                                                        betamethasone, gentamicin sulfate
39705                                                                                                               fluralaner
39706                                                                                             ivermectin, pyrantel pamoate
39707                                                                                                              oclacitinib
39714                                                                                                     digestive supplement
39715                                                                                                                probiotic
39737                                                                                       joint supplement (glucosamine hcl)
39744                                                                                               milbemycin oxime, spinosad
39754                                                                                              lufenuron, milbemycin oxime
39756                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39759                                                                                              lufenuron, milbemycin oxime
39760                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39763                                                                                              lufenuron, milbemycin oxime
39764                                                                                              lufenuron, milbemycin oxime
39776                                                                                                                  omega 3
39777                                                                                       joint supplement (glucosamine hcl)
39778                                                                                                                     kelp
39786                                                                                                             multivitamin
39787                                                                                    dinotefuran, permethrin, pyriproxyfen
39788                                                                                               milbemycin oxime, spinosad
39795                                                                                                               afoxolaner
39796                                                                                             ivermectin, pyrantel pamoate
39833                                                                                              lufenuron, milbemycin oxime
39849                                                                                              lufenuron, milbemycin oxime
39856                                                                                              lufenuron, milbemycin oxime
39860                                                                                             ivermectin, pyrantel pamoate
39871                                                                                             ivermectin, pyrantel pamoate
39875                                                                                             ivermectin, pyrantel pamoate
39877                                                                                             ivermectin, pyrantel pamoate
39881                                                                                                             fenbendazole
39909                                                                                               milbemycin oxime, spinosad
39919                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39948                                                                                             ivermectin, pyrantel pamoate
39949                                                                                                               afoxolaner
39958                                                                                                               fluralaner
39973                                                                                           milbemycin oxime, praziquantel
39974                                                                                                   benzocaine, resorcinol
39975                                                                                         phytosphingosine, salicylic acid
39980                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39981                                                                                       chlorhexidine gluconate, ophytrium
39982                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39987                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39988                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
40013                                                                                                             imidacloprid
40021                                                                                                   indoxacarb, permethrin
40023                                                                                                               afoxolaner
40038                                                                                                               ampicillin
40043                                                                                    dinotefuran, permethrin, pyriproxyfen
40052                                                                                             ivermectin, pyrantel pamoate
40092                                                                                                                 fipronil
40093                                                                                           milbemycin oxime, praziquantel
40102                                                                                                                probiotic
40108                                                                                             ivermectin, pyrantel pamoate
40109                                                                                                 fipronil, (s)-methoprene
40115                                                                                                             fenbendazole
40117                                                                                              lufenuron, milbemycin oxime
40121                                                                                             ivermectin, pyrantel pamoate
40123                                                                                                                probiotic
40124                                                                                             ivermectin, pyrantel pamoate
40125                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40133                                                                                lufenuron, milbemycin oxime, praziquantel
40134                                                                                lufenuron, milbemycin oxime, praziquantel
40138                                                                                                         viola clear fire
40141                                                                        grapefruit seed extract, lavender oil, noni fruit
40142                                                                                             ivermectin, pyrantel pamoate
40143                                                                             castor oil, cinnamon, lemongrass oil, sesame
40144                                                                                             ivermectin, pyrantel pamoate
40149                                                                                             ivermectin, pyrantel pamoate
40154                                                                                             ivermectin, pyrantel pamoate
40164                                                                                          ear cleaner (epi-otic advanced)
40165                                                                                             ivermectin, pyrantel pamoate
40180                                                                                                               ivermectin
40186                                                                                                         milbemycin oxime
40194                                                                                                               ivermectin
40196                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40206                                                                                               milbemycin oxime, spinosad
40209                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40214                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40216                                                                                                         milbemycin oxime
40217                                                                                                               afoxolaner
40218                                                                                                                sarolaner
40221                                                                                                         milbemycin oxime
40222                                                                                                               afoxolaner
40223                                                                                                                sarolaner
40224                                                                                                               fluralaner
40244                                                                                                 fipronil, (s)-methoprene
40290                                                                                             ivermectin, pyrantel pamoate
40296                                                                                                                probiotic
40297                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
40298                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40299                                                                                   dexamethasone, ketoconazole, tris-edta
40302                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40312                                                                                                                meloxicam
40317                                                                                  betamethasone, florfenicol, terbinafine
40331                                                                                                         milbemycin oxime
40343                                                                                                  acetic acid, boric acid
40390                                                                                                         milbemycin oxime
40391                                                                                                         milbemycin oxime
40392                                                                                                         milbemycin oxime
40394                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40403                                                                                                  ketoconazole, tris-edta
40406                                                                                                 homatropine, hydrocodone
40407                                                                                             ivermectin, pyrantel pamoate
40417                                                                                                               afoxolaner
40418                                                                                                               ivermectin
40422                                                                                                               afoxolaner
40425                                                                                                                sarolaner
40446                                                                                       amoxicillin, clavulanate potassium
40451                                                                                                               ivermectin
40454                                                                                       amoxicillin, clavulanate potassium
40464                                                                               dextromethorphan hydrobromide, guaifenesin
40468                                                                                                               afoxolaner
40472                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40483                                                                                             ivermectin, pyrantel pamoate
40484                                                                                                               afoxolaner
40486                                                                                             ivermectin, pyrantel pamoate
40487                                                                                                               afoxolaner
40488                                                                                                 imidacloprid, permethrin
40489                                                                                               imidacloprid, pyriproxyfen
40494                                                                                                                carprofen
40503                                                                                                         milbemycin oxime
40504                                                                                                     fipronil, permethrin
40508                                                                                                               selamectin
40511                                                                                                             praziquantel
40519                                                                                              lufenuron, milbemycin oxime
40521                                                                                                                 fipronil
40535                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40541                                                                                                               ivermectin
40568                                                                                             ivermectin, pyrantel pamoate
40571                                                                             dexamethasone, neomycin sulfate, polymyxin b
40572                                                                                                     prebiotic, probiotic
40573                                                                                             ivermectin, pyrantel pamoate
40574                                                                                                               afoxolaner
40579                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40580                                                                                                              amoxicillin
40581                                                                                           sulfamethoxazole, trimethoprim
40582                                                                             dexamethasone, neomycin sulfate, polymyxin b
40583                                                                                                         pyrantel pamoate
40595                                                                                        betamethasone, gentamicin sulfate
40600                                                                                              lufenuron, milbemycin oxime
40601                                                                                    dinotefuran, permethrin, pyriproxyfen
40603                                                                                                  chlorhexidine gluconate
40604                                                                                                     digestive supplement
40606                                                                                                  ketoconazole, tris-edta
40607                                                                                               unspecified shampoo/mousse
40611                                                                                              lufenuron, milbemycin oxime
40615                                                                                                               lokivetmab
40616                                                                                    dinotefuran, permethrin, pyriproxyfen
40617                                                                                              lufenuron, milbemycin oxime
40618                                                                                               unspecified shampoo/mousse
40619                                                                                                      ear cleaner (zymox)
40620                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40634                                                                             dexamethasone, neomycin sulfate, polymyxin b
40636                                                                                                             fenbendazole
40637                                                                                                                probiotic
40644                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40653                                                                                                                 fipronil
40654                                                                               ivermectin, praziquantel, pyrantel pamoate
40655                                                                                           milbemycin oxime, praziquantel
40656                                                                                                         milbemycin oxime
40684                                                                                lufenuron, milbemycin oxime, praziquantel
40686                                                                                             ivermectin, pyrantel pamoate
40687                                                                                                   indoxacarb, permethrin
40688                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40689                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40690                                                                                             ivermectin, pyrantel pamoate
40691                                                                                                               indoxacarb
40693                                                                                        trimeprazine tartrate, prednisone
40695                                                                                             ivermectin, pyrantel pamoate
40696                                                                                                               afoxolaner
40699                                                                                                              doxycycline
40700                                                                                             ivermectin, pyrantel pamoate
40701                                                                                                                sarolaner
40718                                                                          betamethasone, clotrimazole, gentamicin sulfate
40719                                                                                             ivermectin, pyrantel pamoate
40721                                                                                             ivermectin, pyrantel pamoate
40722                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40723                                                                          betamethasone, clotrimazole, gentamicin sulfate
40724                                                                                        enrofloxacin, silver sulfadiazine
40725                                                                                             ivermectin, pyrantel pamoate
40726                                                                                                       gentamicin sulfate
40727                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40744                                                                                              lufenuron, milbemycin oxime
40745                                                                                                  triamcinolone acetonide
40747                                                                                        trimeprazine tartrate, prednisone
40748                                                                                       chlorhexidine gluconate, ophytrium
40749                                                                                                               fluralaner
40750                                                                                              lufenuron, milbemycin oxime
40751                                                                                              lufenuron, milbemycin oxime
40754                                                                                              lufenuron, milbemycin oxime
40755                                                                                                               fluralaner
40756                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40758                                                                           mometasone furoate, orbifloxacin, posaconazole
40760                                                                                              lufenuron, milbemycin oxime
40775                                                                                             ivermectin, pyrantel pamoate
40776                                                                                                         milbemycin oxime
40781                                                                                                         milbemycin oxime
40783                                                                                                         milbemycin oxime
40794                                                                             dexamethasone, neomycin sulfate, polymyxin b
40796                                                                                               milbemycin oxime, spinosad
40799                                                                                             ivermectin, pyrantel pamoate
40800                                                                                             ivermectin, pyrantel pamoate
40801                                                                                                                sarolaner
40810                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40823                                                                                             ivermectin, pyrantel pamoate
40824                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40825                                                                                    dinotefuran, permethrin, pyriproxyfen
40827                                                                                                               fluralaner
40828                                                                                             ivermectin, pyrantel pamoate
40829                                                                                                               fluralaner
40833                                                                                             ivermectin, pyrantel pamoate
40834                                                                                                                  omega 3
40838                                                                                        betamethasone, gentamicin sulfate
40839                                                                                                               lokivetmab
40840                                                                                                               lokivetmab
40843                                                                                        betamethasone, gentamicin sulfate
40846                                                                                                               fluralaner
40848                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
40866                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40868                                                                                             ivermectin, pyrantel pamoate
40870                                                                                             ivermectin, pyrantel pamoate
40873                                                                                                                probiotic
40875                                                                                                                probiotic
40879                                                                                             ivermectin, pyrantel pamoate
40895                                                                                                            yunnan baiyao
40897                                                                                              lufenuron, milbemycin oxime
40899                                                                                              lufenuron, milbemycin oxime
40900                                                                                              lufenuron, milbemycin oxime
40902                                                                                              lufenuron, milbemycin oxime
40905                                                                                                         milbemycin oxime
40919                                                                                                                  omega 3
40943                                                                                                        vision supplement
40958                                                                                                             fenbendazole
40959                                                                                                         sulfadimethoxine
40960                                                                                                            metronidazole
40961                                                                                                               sucralfate
40962                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40965                                                                                                         milbemycin oxime
40966                                                                                                               afoxolaner
40967                                                                                                         milbemycin oxime
40968                                                                                                               afoxolaner
40969                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40970                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
40971                                                                                                         milbemycin oxime
40972                                                                                                               afoxolaner
40974                                                                                           milbemycin oxime, praziquantel
40984                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40987                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40990                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40992                                                                                                               ivermectin
40993                                                                                    dinotefuran, permethrin, pyriproxyfen
40994                                                                                          ear cleaner (epi-otic advanced)
40997                                                                                                         milbemycin oxime
40998                                                                                    dinotefuran, permethrin, pyriproxyfen
41003                                                                                                         tylosin tartrate
41004                                                                                                         milbemycin oxime
41005                                                                                    dinotefuran, permethrin, pyriproxyfen
41006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41007                                                                                                         tylosin tartrate
41009                                                                                 febantel, praziquantel, pyrantel pamoate
41010                                                                                    dinotefuran, permethrin, pyriproxyfen
41011                                                                                                         milbemycin oxime
41014                                                                                                         tylosin tartrate
41015                                                                                                         milbemycin oxime
41016                                                                                    dinotefuran, permethrin, pyriproxyfen
41018                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
41020                                                                                                  acetic acid, boric acid
41021                                                                                                         milbemycin oxime
41022                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41023                                                                                    dinotefuran, permethrin, pyriproxyfen
41024                                                                                                                  omega 3
41025                                                                                                   bupivacaine, lidocaine
41057                                                                               dimethyl sulfoxide, fluocinolone acetonide
41068                                                                                    dinotefuran, permethrin, pyriproxyfen
41069                                                                                             ivermectin, pyrantel pamoate
41084                                                                                                                meloxicam
41087                                                                                                         milbemycin oxime
41088                                                                                    dinotefuran, permethrin, pyriproxyfen
41089                                                                                                               fluralaner
41090                                                                                                 skin and coat supplement
41091                                                                          betamethasone, clotrimazole, gentamicin sulfate
41094                                                                                                         milbemycin oxime
41095                                                                                                               fluralaner
41096                                                                                    dinotefuran, permethrin, pyriproxyfen
41097                                                                          betamethasone, clotrimazole, gentamicin sulfate
41098                                                                                    dinotefuran, permethrin, pyriproxyfen
41099                                                                                                               fluralaner
41101                                                                          betamethasone, clotrimazole, gentamicin sulfate
41102                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41103                                                                                                                meloxicam
41104                                                                                                               omeprazole
41121                                                                                               milbemycin oxime, spinosad
41125                                                                                             ivermectin, pyrantel pamoate
41129                                                                                                               ivermectin
41130                                                                                                               afoxolaner
41131                                                                                                         milbemycin oxime
41132                                                                                                               afoxolaner
41133                                                                                                         milbemycin oxime
41134                                                                                                               afoxolaner
41137                                                                                        betamethasone, gentamicin sulfate
41139                                                                                        enrofloxacin, silver sulfadiazine
41147                                                                                        enrofloxacin, silver sulfadiazine
41151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41152                                                                                      ear cleaner (zymox), hydrocortisone
41170                                                                             dexamethasone, neomycin sulfate, polymyxin b
41198                                                                                             ivermectin, pyrantel pamoate
41199                                                                                             ivermectin, pyrantel pamoate
41200                                                                                             ivermectin, pyrantel pamoate
41201                                                                                             ivermectin, pyrantel pamoate
41203                                                                                             ivermectin, pyrantel pamoate
41204                                                                                               imidacloprid, pyriproxyfen
41206                                                                                                 fipronil, (s)-methoprene
41207                                                                                             ivermectin, pyrantel pamoate
41208                                                                                                               afoxolaner
41209                                                                                             ivermectin, pyrantel pamoate
41210                                                                                                               afoxolaner
41216                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41217                                                                                               milbemycin oxime, spinosad
41219                                                                                              lufenuron, milbemycin oxime
41220                                                                                              lufenuron, milbemycin oxime
41221                                                                                              lufenuron, milbemycin oxime
41222                                                                                                         milbemycin oxime
41223                                                                                                         milbemycin oxime
41224                                                                                                               fluralaner
41240                                                                                               imidacloprid, pyriproxyfen
41241                                                                                             ivermectin, pyrantel pamoate
41242                                                                                                 imidacloprid, permethrin
41246                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41254                                                                                             ivermectin, pyrantel pamoate
41260                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
41267                                                                                             ivermectin, pyrantel pamoate
41278                                                                                        betamethasone, gentamicin sulfate
41279                                                                                                               afoxolaner
41281                                                                                                 fipronil, (s)-methoprene
41283                                                                                              lufenuron, milbemycin oxime
41313                                                                                    dinotefuran, permethrin, pyriproxyfen
41314                                                                                             ivermectin, pyrantel pamoate
41315                                                                                               imidacloprid, pyriproxyfen
41316                                                                                             ivermectin, pyrantel pamoate
41318                                                                                               imidacloprid, pyriproxyfen
41319                                                                                                         milbemycin oxime
41320                                                                                           milbemycin oxime, praziquantel
41325                                                                                              lufenuron, milbemycin oxime
41332                                                                                              lufenuron, milbemycin oxime
41335                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41340                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41360                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41371                                                                                                                 fipronil
41373                                                                                lufenuron, milbemycin oxime, praziquantel
41374                                                                                                               fluralaner
41376                                                                                lufenuron, milbemycin oxime, praziquantel
41377                                                                                lufenuron, milbemycin oxime, praziquantel
41378                                                                                                               fluralaner
41381                                                                                                                meloxicam
41384                                                                                              lufenuron, milbemycin oxime
41385                                                                                                               fluralaner
41386                                                                                              lufenuron, milbemycin oxime
41387                                                                                                               fluralaner
41388                                                                                          ear cleaner (epi-otic advanced)
41396                                                                           dexamethasone, neomycin sulfate, thiabendazole
41398                                                                                                   unspecified medication
41407                                                                                                               afoxolaner
41413                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41417                                                                                             ivermectin, pyrantel pamoate
41420                                                                                                               ivermectin
41421                                                                                                               ivermectin
41422                                                                                                               ivermectin
41424                                                                                                               fluralaner
41425                                                                                                               fluralaner
41430                                                                                               milbemycin oxime, spinosad
41431                                                                                               milbemycin oxime, spinosad
41432                                                                                               milbemycin oxime, spinosad
41433                                                                           mometasone furoate, orbifloxacin, posaconazole
41435                                                                                               milbemycin oxime, spinosad
41442                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41443                                                                                               milbemycin oxime, spinosad
41444                                                                                               milbemycin oxime, spinosad
41446                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41447                                                                                               milbemycin oxime, spinosad
41451                                                                                               milbemycin oxime, spinosad
41464                                                                                                       miconazole nitrate
41466                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41470                                                                                        allergy immunotherapy - injection
41497                                                                                                               isoflurane
41500                                                                             florfenicol, mometasone furoate, terbinafine
41505                                                                                                               isoflurane
41525                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41531                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41533                                                                                                               gabapentin
41557                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41572                                                                                             ivermectin, pyrantel pamoate
41573                                                                                                               afoxolaner
41581                                                                                             ivermectin, pyrantel pamoate
41612                                                                                                               cephalexin
41615                                                                                             ivermectin, pyrantel pamoate
41617                                                                                                         milbemycin oxime
41621                                                                                                               ampicillin
41629                                                                                                               isoflurane
41632                                                                                                 imidacloprid, moxidectin
41633                                                                                             ivermectin, pyrantel pamoate
41636                                                                                             ivermectin, pyrantel pamoate
41637                                                                                                               afoxolaner
41638                                                                                             ivermectin, pyrantel pamoate
41639                                                                                 febantel, praziquantel, pyrantel pamoate
41640                                                                                             ivermectin, pyrantel pamoate
41641                                                                                             ivermectin, pyrantel pamoate
41653                                                                                              lufenuron, milbemycin oxime
41655                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41674                                                                                             ivermectin, pyrantel pamoate
41724                                                                                                   unspecified medication
41725                                                                                                 fipronil, (s)-methoprene
41726                                                                                                               ivermectin
41727                                                                                                         milbemycin oxime
41728                                                                                   joint supplement (glucosamine hcl/msm)
41729                                                                                                             multivitamin
41731                                                                                                 fipronil, (s)-methoprene
41737                                                                                                 fipronil, (s)-methoprene
41738                                                                                                               ivermectin
41739                                                                                   joint supplement (glucosamine hcl/msm)
41740                                                                                                             multivitamin
41743                                                                                           sulfamethoxazole, trimethoprim
41746                                                                                             ivermectin, pyrantel pamoate
41747                                                                                                                  omega 3
41748                                                                                                                vitamin c
41749                                                                                       joint supplement (glucosamine hcl)
41750                                                                                                                vitamin e
41751                                                                                                 urinary tract supplement
41752                                                                                   joint supplement (glucosamine hcl/msm)
41753                                                                                   joint supplement (glucosamine hcl/msm)
41754                                                                                                 skin and coat supplement
41756                                                                                       amoxicillin, clavulanate potassium
41759                                                                                                         milbemycin oxime
41774                                                                                              lufenuron, milbemycin oxime
41778                                                                                                               fluralaner
41779                                                                                             ivermectin, pyrantel pamoate
41781                                                                                             ivermectin, pyrantel pamoate
41803                                                                                                               ivermectin
41811                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41816                                                                           mometasone furoate, orbifloxacin, posaconazole
41819                                                                                              lufenuron, milbemycin oxime
41830                                                                                        trimeprazine tartrate, prednisone
41835                                                                                              lufenuron, milbemycin oxime
41837                                                                                              lufenuron, milbemycin oxime
41838                                                                                                                 fipronil
41840                                                                                              lufenuron, milbemycin oxime
41846                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41849                                                                                              lufenuron, milbemycin oxime
41850                                                                                              lufenuron, milbemycin oxime
41851                                                                                              lufenuron, milbemycin oxime
41853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41854                                                                                             ivermectin, pyrantel pamoate
41863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41870                                                                                                         milbemycin oxime
41872                                                                                                                trazodone
41888                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
41891                                                                                             ivermectin, pyrantel pamoate
41893                                                                          betamethasone, clotrimazole, gentamicin sulfate
41894                                                                                                                    algae
41896                                                                                                 urinary tract supplement
41897                                                                                                                  omega 3
41898                                                                                                                    algae
41899                                                                                                               walnut oil
41900                                                                                                 kidney health supplement
41901                                                                                                                 curcumin
41902                                                                                                                probiotic
41903                                                                                                                  omega 3
41904                                                                                                                    algae
41905                                                                                                 kidney health supplement
41906                                                                                                                probiotic
41921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41929                                                                                                               ivermectin
41930                                                                                             ivermectin, pyrantel pamoate
41937                                                                                             ivermectin, pyrantel pamoate
41938                                                                                                 fipronil, (s)-methoprene
41939                                                                                        betamethasone, gentamicin sulfate
41946                                                                                             ivermectin, pyrantel pamoate
41947                                                                                                 fipronil, (s)-methoprene
41950                                                                                             ivermectin, pyrantel pamoate
41973                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41975                                                                                                            metronidazole
41988                                                                                              lufenuron, milbemycin oxime
42004                                                                                             ivermectin, pyrantel pamoate
42005                                                                                                 fipronil, (s)-methoprene
42011                                                                                             ivermectin, pyrantel pamoate
42012                                                                                                 fipronil, (s)-methoprene
42032                                                                                                         milbemycin oxime
42037                                                                                                         milbemycin oxime
42039                                                                                                         milbemycin oxime
42043                                                                                                         milbemycin oxime
42044                                                                                                         milbemycin oxime
42053                                                                                                               afoxolaner
42055                                                                                                               sucralfate
42057                                                                                                              doxycycline
42061                                                                                             ivermectin, pyrantel pamoate
42063                                                                                                               ivermectin
42066                                                                                             ivermectin, pyrantel pamoate
42100                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42101                                                                                        betamethasone, gentamicin sulfate
42112                                                                                             ivermectin, pyrantel pamoate
42116                                                                                                                 tramadol
42119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42122                                                                             florfenicol, mometasone furoate, terbinafine
42147                                                                                              lufenuron, milbemycin oxime
42148                                                                                                               fluralaner
42149                                                                                              lufenuron, milbemycin oxime
42150                                                                                                               fluralaner
42151                                                                                                               fluralaner
42152                                                                                              lufenuron, milbemycin oxime
42154                                                                                                               fluralaner
42174                                                                                                         milbemycin oxime
42198                                                                                                 flumethrin, imidacloprid
42201                                                                                                 flumethrin, imidacloprid
42215                                                                                            unspecified herbal supplement
42218                                                                                             ivermectin, pyrantel pamoate
42219                                                                                               imidacloprid, pyriproxyfen
42221                                                                                                 imidacloprid, moxidectin
42227                                                                                                 imidacloprid, moxidectin
42229                                                                                                 imidacloprid, moxidectin
42240                                                                                                         liver supplement
42241                                                                                                                  omega 3
42242                                                                                                                vitamin b
42243                                                                                                             multivitamin
42256                                                                                   dexamethasone, enrofloxacin, tris-edta
42257                                                                                                                mupirocin
42259                                                                                                                mupirocin
42267                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
42272                                                                                              lufenuron, milbemycin oxime
42273                                                                                                               fluralaner
42278                                                                                                 urinary tract supplement
42284                                                                                             ivermectin, pyrantel pamoate
42286                                                                                                 imidacloprid, permethrin
42287                                                                                             ivermectin, pyrantel pamoate
42289                                                                                             ivermectin, pyrantel pamoate
42291                                                                                                       calming supplement
42313                                                                                                 fipronil, (s)-methoprene
42314                                                                                             ivermectin, pyrantel pamoate
42345                                                                                                         milbemycin oxime
42346                                                                                                                sarolaner
42348                                                                                                         milbemycin oxime
42349                                                                                                                sarolaner
42353                                                                                              lufenuron, milbemycin oxime
42354                                                                                                               afoxolaner
42356                                                                                                               afoxolaner
42357                                                                                              lufenuron, milbemycin oxime
42358                                                                                                               afoxolaner
42361                                                                                                                probiotic
42366                                                                                                               ivermectin
42367                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
42368                                                                                             ivermectin, pyrantel pamoate
42378                                                                                             ivermectin, pyrantel pamoate
42379                                                                                             ivermectin, pyrantel pamoate
42384                                                                                             ivermectin, pyrantel pamoate
42386                                                                                             ivermectin, pyrantel pamoate
42387                                                                                             ivermectin, pyrantel pamoate
42399                                                                                                 flumethrin, imidacloprid
42402                                                                                             ivermectin, pyrantel pamoate
42404                                                                                             ivermectin, pyrantel pamoate
42412                                                                                             ivermectin, pyrantel pamoate
42413                                                                                                               afoxolaner
42417                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42425                                                                                                           hydrocortisone
42426                                                                                                           hydrocortisone
42433                                                                                             ivermectin, pyrantel pamoate
42451                                                                                              lufenuron, milbemycin oxime
42455                                                                                              lufenuron, milbemycin oxime
42463                                                                               ivermectin, praziquantel, pyrantel pamoate
42464                                                                                                    ear cleaner (aurocin)
42465                                                                               ivermectin, praziquantel, pyrantel pamoate
42466                                                                                                                carprofen
42468                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
42474                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42475                                                                                                                  omega 3
42476                                                                                              lufenuron, milbemycin oxime
42477                                                                                               imidacloprid, pyriproxyfen
42478                                                                                              lufenuron, milbemycin oxime
42480                                                                                          ear cleaner (epi-otic advanced)
42481                                                                                             ormetoprim, sulfadimethoxine
42482                                                                                               imidacloprid, pyriproxyfen
42483                                                                                              lufenuron, milbemycin oxime
42486                                                                                                                probiotic
42488                                                                                               imidacloprid, pyriproxyfen
42489                                                                                              lufenuron, milbemycin oxime
42502                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42506                                                                                                                probiotic
42512                                                                                           milbemycin oxime, praziquantel
42513                                                                                                 fipronil, (s)-methoprene
42522                                                                                                         liver supplement
42537                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42551                                                                                              lufenuron, milbemycin oxime
42552                                                                                              lufenuron, milbemycin oxime
42553                                                                                              lufenuron, milbemycin oxime
42570                                                                                                                 spinosad
42572                                                                                             ivermectin, pyrantel pamoate
42573                                                                                             ivermectin, pyrantel pamoate
42574                                                                                             ivermectin, pyrantel pamoate
42578                                                                                             ivermectin, pyrantel pamoate
42579                                                                                                               fluralaner
42593                                                                                             ivermectin, pyrantel pamoate
42594                                                                                                               fluralaner
42624                                                                                              lufenuron, milbemycin oxime
42626                                                                          betamethasone, clotrimazole, gentamicin sulfate
42627                                                                                              lufenuron, milbemycin oxime
42628                                                                                                               fluralaner
42632                                                                                                               fluralaner
42633                                                                                              lufenuron, milbemycin oxime
42634                                                                                                 flumethrin, imidacloprid
42637                                                                                              lufenuron, milbemycin oxime
42638                                                                                              lufenuron, milbemycin oxime
42640                                                                                                 flumethrin, imidacloprid
42646                                                                                                         pyrantel pamoate
42647                                                                                                                ponazuril
42648                                                                                                             fenbendazole
42651                                                                                              lufenuron, milbemycin oxime
42652                                                                                                                 fipronil
42655                                                                                             ivermectin, pyrantel pamoate
42656                                                                                                                sarolaner
42666                                                                                             ivermectin, pyrantel pamoate
42668                                                                                             ivermectin, pyrantel pamoate
42675                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42678                                                                             dexamethasone, neomycin sulfate, polymyxin b
42679                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42694                                                                                   cyphenothrin, fipronil, (s)-methoprene
42695                                                                                             ivermectin, pyrantel pamoate
42696                                                                                                 fipronil, (s)-methoprene
42697                                                                                                               ivermectin
42700                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42704                                                                                             ivermectin, pyrantel pamoate
42712                                                                                                               ivermectin
42716                                                                                             ivermectin, pyrantel pamoate
42721                                                                                             ivermectin, pyrantel pamoate
42725                                                                                                 fipronil, (s)-methoprene
42726                                                                                             ivermectin, pyrantel pamoate
42727                                                                                             ivermectin, pyrantel pamoate
42728                                                                                             ivermectin, pyrantel pamoate
42729                                                                                                         milbemycin oxime
42740                                                                                             ivermectin, pyrantel pamoate
42752                                                                                              lufenuron, milbemycin oxime
42753                                                                                              lufenuron, milbemycin oxime
42758                                                                                              lufenuron, milbemycin oxime
42760                                                                                                         milbemycin oxime
42761                                                                                                 fipronil, (s)-methoprene
42764                                                                                           milbemycin oxime, praziquantel
42766                                                                                           milbemycin oxime, praziquantel
42768                                                                                           milbemycin oxime, praziquantel
42785                                                                                                               afoxolaner
42786                                                                                                         milbemycin oxime
42787                                                                                       joint supplement (glucosamine hcl)
42791                                                                                                         milbemycin oxime
42792                                                                                                         milbemycin oxime
42799                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42821                                                                               ivermectin, praziquantel, pyrantel pamoate
42833                                                                                                         milbemycin oxime
42860                                                                                                     rx diet - aging care
42876                                                                                                                  omega 3
42879                                                                                    dinotefuran, permethrin, pyriproxyfen
42887                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42890                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42891                                                                                                                probiotic
42892                                                                                                                  omega 3
42893                                                                                                                  omega 3
42894                                                                                                 urinary tract supplement
42913                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42915                                                                                                 imidacloprid, permethrin
42920                                                                                             ivermectin, pyrantel pamoate
42923                                                                                                               selamectin
42926                                                                                                 fipronil, (s)-methoprene
42930                                                                                             ivermectin, pyrantel pamoate
42931                                                                                              lufenuron, milbemycin oxime
42932                                                                                                                sarolaner
42935                                                                                                                sarolaner
42936                                                                                              lufenuron, milbemycin oxime
42939                                                                                           milbemycin oxime, praziquantel
42940                                                                                                                sarolaner
42946                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42952                                                                                               milbemycin oxime, spinosad
42956                                                                                              lufenuron, milbemycin oxime
42959                                                                                             ivermectin, pyrantel pamoate
42960                                                                                             ivermectin, pyrantel pamoate
42967                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42994                                                                                               imidacloprid, pyriproxyfen
43013                                                                                             ivermectin, pyrantel pamoate
43045                                                                                             ivermectin, pyrantel pamoate
43064                                                                                             ivermectin, pyrantel pamoate
43065                                                                                               imidacloprid, pyriproxyfen
43069                                                                                               imidacloprid, pyriproxyfen
43072                                                                                               imidacloprid, pyriproxyfen
43081                                                                                                               selamectin
43086                                                                                        betamethasone, gentamicin sulfate
43105                                                                                    chlorhexidine gluconate, ketoconazole
43116                                                                                              lufenuron, milbemycin oxime
43119                                                                                           milbemycin oxime, praziquantel
43123                                                                                                         milbemycin oxime
43134                                                                                       amoxicillin, clavulanate potassium
43135                                                                                                               cephalexin
43136                                                                                                                carprofen
43137                                                                                                         milbemycin oxime
43138                                                                                                               fluralaner
43151                                                                                           milbemycin oxime, praziquantel
43153                                                                           mometasone furoate, orbifloxacin, posaconazole
43169                                                                                                          dexmedetomidine
43173                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
43183                                                                                              lufenuron, milbemycin oxime
43184                                                                                              lufenuron, milbemycin oxime
43191                                                                                                              sevoflurane
43200                                                                                               milbemycin oxime, spinosad
43202                                                                                               imidacloprid, pyriproxyfen
43204                                                                                                               selamectin
43224                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43228                                                                                                 flumethrin, imidacloprid
43236                                                                                              lufenuron, milbemycin oxime
43238                                                                                           milbemycin oxime, praziquantel
43239                                                                                                 flumethrin, imidacloprid
43241                                                                                           milbemycin oxime, praziquantel
43242                                                                                                 flumethrin, imidacloprid
43243                                                                                           milbemycin oxime, praziquantel
43244                                                                                                 flumethrin, imidacloprid
43246                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43247                                                                                                                 curcumin
43258                                                                                              lufenuron, milbemycin oxime
43259                                                                                    dinotefuran, permethrin, pyriproxyfen
43270                                                                                                            metronidazole
43286                                                                                                            levetiracetam
43291                                                                                                 imidacloprid, moxidectin
43292                                                                                                  chlorhexidine gluconate
43293                                                                                                 imidacloprid, moxidectin
43310                                                                                              lufenuron, milbemycin oxime
43334                                                                                                         milbemycin oxime
43366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43388                                                                                                               fluralaner
43405                                                                                                  ketoconazole, tris-edta
43412                                                                          betamethasone, clotrimazole, gentamicin sulfate
43423                                                                                                               afoxolaner
43424                                                                                                                  omega 3
43430                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43465                                                                                                             multivitamin
43467                                                                                                  ketoconazole, tris-edta
43469                                                                                       joint supplement (glucosamine hcl)
43470                                                                                                                  omega 3
43471                                                                                                      unspecified vitamin
43482                                                                                lufenuron, milbemycin oxime, praziquantel
43491                                                                                              lufenuron, milbemycin oxime
43493                                                                                                         milbemycin oxime
43494                                                                                                         milbemycin oxime
43496                                                                                                         milbemycin oxime
43497                                                                                                         milbemycin oxime
43510                                                                                              lufenuron, milbemycin oxime
43511                                                                                                               fluralaner
43512                                                                                                     fipronil, permethrin
43522                                                                                                               fluralaner
43527                                                                                             ivermectin, pyrantel pamoate
43531                                                                                           milbemycin oxime, praziquantel
43532                                                                                                               afoxolaner
43535                                                                                           milbemycin oxime, praziquantel
43538                                                                                           milbemycin oxime, praziquantel
43539                                                                                                               afoxolaner
43540                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43545                                                                                             ivermectin, pyrantel pamoate
43546                                                                                                 fipronil, (s)-methoprene
43547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43548                                                                                                               ivermectin
43549                                                                                                 fipronil, (s)-methoprene
43550                                                                                                               ivermectin
43563                                                                                                               afoxolaner
43570                                                                                                 fipronil, (s)-methoprene
43610                                                                                             oxytetracycline, polymyxin b
43620                                                                                                                sarolaner
43621                                                                                                 flumethrin, imidacloprid
43636                                                                                                               selamectin
43637                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43639                                                                                                                mupirocin
43640                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43642                                                                                          ear cleaner (epi-otic advanced)
43643                                                                                                   unspecified antiseptic
43644                                                                                             ivermectin, pyrantel pamoate
43645                                                                                                               afoxolaner
43646                                                                                                             fenbendazole
43650                                                                             dexamethasone, neomycin sulfate, polymyxin b
43652                                                                                                 fipronil, (s)-methoprene
43653                                                                                             ivermectin, pyrantel pamoate
43669                                                                                       chlorhexidine gluconate, ophytrium
43678                                                                                        betamethasone, gentamicin sulfate
43683                                                                                             ivermectin, pyrantel pamoate
43684                                                                             dexamethasone, neomycin sulfate, polymyxin b
43685                                                                                                             ketoconazole
43686                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43697                                                                                lufenuron, milbemycin oxime, praziquantel
43698                                                                                                               afoxolaner
43701                                                                                              lufenuron, milbemycin oxime
43702                                                                                                               fluralaner
43706                                                                                              lufenuron, milbemycin oxime
43707                                                                                                               fluralaner
43709                                                                                    dinotefuran, permethrin, pyriproxyfen
43714                                                                                       chlorhexidine gluconate, ophytrium
43715                                                                                                         phytosphingosine
43738                                                                                        betamethasone, gentamicin sulfate
43743                                                                                             ivermectin, pyrantel pamoate
43744                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43745                                                                                                                probiotic
43746                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43747                                                                                             ivermectin, pyrantel pamoate
43751                                                                                                                probiotic
43783                                                                                             ivermectin, pyrantel pamoate
43784                                                                                                               afoxolaner
43785                                                                                   joint supplement (glucosamine hcl/msm)
43790                                                                                   joint supplement (glucosamine hcl/msm)
43806                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
43807                                                                              chlorhexidine gluconate, miconazole nitrate
43838                                                                                                             capromorelin
43843                                                                                                         milbemycin oxime
43844                                                                                                               afoxolaner
43851                                                                                                 flumethrin, imidacloprid
43853                                                                                                               lokivetmab
43854                                                                                                                carprofen
43878                                                                               ivermectin, praziquantel, pyrantel pamoate
43884                                                                                  betamethasone, florfenicol, terbinafine
43887                                                                                  betamethasone, florfenicol, terbinafine
43893                                                                                             ivermectin, pyrantel pamoate
43894                                                                                                 flumethrin, imidacloprid
43896                                                                                             ivermectin, pyrantel pamoate
43919                                                                                                               ivermectin
43920                                                                                                               afoxolaner
43938                                                                                                         milbemycin oxime
43939                                                                                                               afoxolaner
43949                                                                                                         milbemycin oxime
43950                                                                                                               afoxolaner
43958                                                                                                         milbemycin oxime
43959                                                                                                         milbemycin oxime
43960                                                                                                               afoxolaner
43963                                                                                              lufenuron, milbemycin oxime
43965                                                                          betamethasone, clotrimazole, gentamicin sulfate
43975                                                                                                                probiotic
43976                                                                                             ivermectin, pyrantel pamoate
43977                                                                                             ivermectin, pyrantel pamoate
43980                                                                                             ivermectin, pyrantel pamoate
43997                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
44031                                                                                             ivermectin, pyrantel pamoate
44037                                                                                             ivermectin, pyrantel pamoate
44050                                                                                    chlorhexidine gluconate, ketoconazole
44055                                                                           dexamethasone, neomycin sulfate, thiabendazole
44084                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44087                                                                                            cedarwood oil, peppermint oil
44090                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44119                                                                                                                ofloxacin
44123                                                                                                  triamcinolone acetonide
44126                                                                                                               ivermectin
44127                                                                                                               afoxolaner
44129                                                                                             ivermectin, pyrantel pamoate
44131                                                                                              lufenuron, milbemycin oxime
44154                                                  fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
44155                                                                                lufenuron, milbemycin oxime, praziquantel
44157                                                                                lufenuron, milbemycin oxime, praziquantel
44158                                                                                                               fluralaner
44207                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44209                                                                             florfenicol, mometasone furoate, terbinafine
44211                                                                                               milbemycin oxime, spinosad
44212                                                                                                       calming supplement
44214                                                                                               milbemycin oxime, spinosad
44216                                                                                               milbemycin oxime, spinosad
44218                                                                                               milbemycin oxime, spinosad
44219                                                                                               milbemycin oxime, spinosad
44222                                                                                        betamethasone, gentamicin sulfate
44223                                                                                                              latanoprost
44224                                                                                                              dorzolamide
44225                                                                                                                  timolol
44226                                                                                                                probiotic
44227                                                                                                               diclofenac
44234                                                                                               imidacloprid, pyriproxyfen
44235                                                                                                               ivermectin
44240                                                                                              ear cleaner (well and good)
44241                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44243                                                                                                                 turmeric
44244                                                                                                                  aspirin
44246                                                                                                               ivermectin
44247                                                                                                                 spinosad
44249                                                                                                               afoxolaner
44250                                                                                                               ivermectin
44251                                                                                                               ivermectin
44252                                                                                                               afoxolaner
44253                                                                               ivermectin, praziquantel, pyrantel pamoate
44268                                                                               ivermectin, praziquantel, pyrantel pamoate
44280                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44282                                                                                                  ketoconazole, tris-edta
44309                                                                                                        tigilanol tiglate
44330                                                                                              lufenuron, milbemycin oxime
44334                                                                                             ivermectin, pyrantel pamoate
44335                                                                                                               afoxolaner
44336                                                                                             ivermectin, pyrantel pamoate
44337                                                                                                               afoxolaner
44347                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
44350                                                                                       amoxicillin, clavulanate potassium
44363                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44372                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
44385                                                                                               milbemycin oxime, spinosad
44386                                                                                               milbemycin oxime, spinosad
44390                                                                                                         milbemycin oxime
44391                                                                                                         milbemycin oxime
44392                                                                                                         milbemycin oxime
44395                                                                                                         milbemycin oxime
44398                                                                                                                probiotic
44421                                                                               ivermectin, praziquantel, pyrantel pamoate
44428                                                                                               milbemycin oxime, spinosad
44429                                                                                               milbemycin oxime, spinosad
44431                                                                                                               fluralaner
44434                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44452                                                                                               milbemycin oxime, spinosad
44473                                                                                               imidacloprid, pyriproxyfen
44507                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44520                                                                                                                tris-edta
44524                                                                                             ivermectin, pyrantel pamoate
44531                                                                                                                meloxicam
44542                                                                                                 fipronil, (s)-methoprene
44543                                                                                                               ivermectin
44544                                                                                             ivermectin, pyrantel pamoate
44545                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44546                                                                                             ivermectin, pyrantel pamoate
44547                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44558                                                                                             ivermectin, pyrantel pamoate
44559                                                                                                 fipronil, (s)-methoprene
44570                                                                                             ivermectin, pyrantel pamoate
44571                                                                                                 fipronil, (s)-methoprene
44576                                                                                             ivermectin, pyrantel pamoate
44577                                                                                                 fipronil, (s)-methoprene
44595                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44607                                                                                    chlorhexidine gluconate, ketoconazole
44608                                                                                               milbemycin oxime, spinosad
44609                                                                                    chlorhexidine gluconate, ketoconazole
44614                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44616                                                                                              lufenuron, milbemycin oxime
44618                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44646                                                                                                               selamectin
44649                                                                                                               selamectin
44652                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44653                                                                                        betamethasone, gentamicin sulfate
44654                                                                                                 fipronil, (s)-methoprene
44655                                                                                                 flumethrin, imidacloprid
44658                                                                                                       calming supplement
44660                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44663                                                                                                     cefpodoxime proxetil
44671                                                                                               milbemycin oxime, spinosad
44672                                                                                               milbemycin oxime, spinosad
44677                                                                                               milbemycin oxime, spinosad
44679                                                                                                   acetaminophen, codeine
44683                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44684                                                                                       joint supplement (glucosamine hcl)
44706                                                                                             oxytetracycline, polymyxin b
44732                                                                                              lufenuron, milbemycin oxime
44742                                                                                              lufenuron, milbemycin oxime
44743                                                                                                 fipronil, (s)-methoprene
44745                                                                                              lufenuron, milbemycin oxime
44746                                                                                              lufenuron, milbemycin oxime
44747                                                                                                 flumethrin, imidacloprid
44755                                                                                                                probiotic
44757                                                                                                                probiotic
44769                                                                                                 fipronil, (s)-methoprene
44771                                                                                                 fipronil, (s)-methoprene
44782                                                                                                         liver supplement
44795                                                                                             oxytetracycline, polymyxin b
44799                                                                                                                carprofen
44804                                                                                                                carprofen
44820                                                                                              lufenuron, milbemycin oxime
44827                                                                                                               ivermectin
44828                                                                                                               afoxolaner
44829                                                                                             ivermectin, pyrantel pamoate
44830                                                                                             ivermectin, pyrantel pamoate
44834                                                                             florfenicol, mometasone furoate, terbinafine
44843                                                                                             ivermectin, pyrantel pamoate
44844                                                                                                               afoxolaner
44857                                                                                        trimeprazine tartrate, prednisone
44858                                                                                        trimeprazine tartrate, prednisone
44862                                                                                                                  omega 3
44863                                                                                             ivermectin, pyrantel pamoate
44864                                                                                             ivermectin, pyrantel pamoate
44866                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44867                                                                                                 imidacloprid, moxidectin
44868                                                                                                 imidacloprid, moxidectin
44869                                                                                                               afoxolaner
44875                                                                                              lufenuron, milbemycin oxime
44877                                                                                                         milbemycin oxime
44879                                                                                                         milbemycin oxime
44899                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44905                                                                                                            metronidazole
44915                                                                                                 fipronil, (s)-methoprene
44916                                                                                             ivermectin, pyrantel pamoate
44917                                                                                               imidacloprid, pyriproxyfen
44918                                                                                             ivermectin, pyrantel pamoate
44920                                                                                               imidacloprid, pyriproxyfen
44922                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44924                                                                                             ivermectin, pyrantel pamoate
44925                                                                                                 imidacloprid, permethrin
44933                                                                                           polysulfated glycosaminoglycan
44936                                                                                                               selamectin
44937                                                                                                               selamectin
44938                                                                                                               selamectin
44939                                                                                                               selamectin
44946                                                                                             ivermectin, pyrantel pamoate
44947                                                                                                               fluralaner
44948                                                                                                       diethylstilbestrol
44949                                                                                             ivermectin, pyrantel pamoate
44950                                                                                                               fluralaner
44957                                                                                                               fluralaner
44958                                                                                             ivermectin, pyrantel pamoate
44997                                                                                                   rx diet - renal health
45005                                                                                                            levetiracetam
45007                                                                                                               afoxolaner
45014                                                                                               milbemycin oxime, spinosad
45015                                                                                                               loratadine
45016                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45017                                                                                                               lokivetmab
45023                                                                                                     prednisolone acetate
45027                                                                                   cyphenothrin, fipronil, (s)-methoprene
45034                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
45045                                                                                                               selamectin
45053                                                                                                               ivermectin
45054                                                                                                               afoxolaner
45055                                                                                                               afoxolaner
45059                                                                                                               ivermectin
45061                                                                                             ivermectin, pyrantel pamoate
45062                                                                                                                 spinosad
45063                                                                                               milbemycin oxime, spinosad
45064                                                                                               milbemycin oxime, spinosad
45066                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45072                                                                                               milbemycin oxime, spinosad
45073                                                                                               milbemycin oxime, spinosad
45076                                                                                                                probiotic
45109                                                                                               milbemycin oxime, spinosad
45116                                                                                                                carprofen
45117                                                                                                       calming supplement
45123                                                                                             ivermectin, pyrantel pamoate
45134                                                                                           sulfamethoxazole, trimethoprim
45139                                                                                             ivermectin, pyrantel pamoate
45149                                                                                              lufenuron, milbemycin oxime
45150                                                                                              lufenuron, milbemycin oxime
45154                                                                                              lufenuron, milbemycin oxime
45172                                                                               dimethyl sulfoxide, fluocinolone acetonide
45173                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45174                                                                                                              bedinvetmab
45175                                                                                                               lokivetmab
45178                                                                                             ivermectin, pyrantel pamoate
45179                                                                                                 fipronil, (s)-methoprene
45180                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
45181                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
45182                                                                                             ivermectin, pyrantel pamoate
45184                                                                                                         milbemycin oxime
45185                                                                                                 fipronil, (s)-methoprene
45186                                                                                                         milbemycin oxime
45187                                                                                                                sarolaner
45188                                                                                                         milbemycin oxime
45189                                                                                                                sarolaner
45195                                                                                                               gabapentin
45199                                                                                                                trazodone
45208                                                                                        betamethasone, gentamicin sulfate
45209                                                                                           ketoconazole, phytosphingosine
45210                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45212                                                                                                         milbemycin oxime
45216                                                                                             ivermectin, pyrantel pamoate
45224                                                                                                  chlorhexidine gluconate
45225                                                                                             ivermectin, pyrantel pamoate
45236                                                                                             ivermectin, pyrantel pamoate
45255                                                                                               imidacloprid, pyriproxyfen
45263                                                                                                               afoxolaner
45268                                                                                                         milbemycin oxime
45273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45280                                                                                             ivermectin, pyrantel pamoate
45283                                                                                             ivermectin, pyrantel pamoate
45286                                                                                             ivermectin, pyrantel pamoate
45294                                                                                               milbemycin oxime, spinosad
45295                                                                                                     digestive supplement
45297                                                                                                                meloxicam
45298                                                                                                               afoxolaner
45299                                                                                             ivermectin, pyrantel pamoate
45302                                                                                             ivermectin, pyrantel pamoate
45305                                                                                                                  taurine
45307                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
45309                                                                                                                  taurine
45310                                                                                             ivermectin, pyrantel pamoate
45311                                                                                                               afoxolaner
45312                                                                                                               afoxolaner
45313                                                                                             ivermectin, pyrantel pamoate
45322                                                                                       amoxicillin, clavulanate potassium
45327                                                                                                                carprofen
45335                                                                                              lufenuron, milbemycin oxime
45344                                                                                                                body sore
45345                                                                                                              liver happy
45358                                                                                                              liver happy
45359                                                                                                                body sore
45372                                                                          betamethasone, clotrimazole, gentamicin sulfate
45383                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45403                                                                                                                ophytrium
45406                                                                                              lufenuron, milbemycin oxime
45411                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
45425                                                                                             ivermectin, pyrantel pamoate
45426                                                                                            unspecified flea preventative
45434                                                                                                     cefpodoxime proxetil
45435                                                                                                     cefpodoxime proxetil
45443                                                                                             ivermectin, pyrantel pamoate
45445                                                                                             ivermectin, pyrantel pamoate
45451                                                                                                               ivermectin
45452                                                                                                               afoxolaner
45463                                                                                               milbemycin oxime, spinosad
45468                                                                                              lufenuron, milbemycin oxime
45470                                                                                               milbemycin oxime, spinosad
45471                                                                             dexamethasone, neomycin sulfate, polymyxin b
45476                                                                                               milbemycin oxime, spinosad
45479                                                                             dexamethasone, neomycin sulfate, polymyxin b
45480                                                                                               milbemycin oxime, spinosad
45484                                                                                               milbemycin oxime, spinosad
45499                                                                                             ivermectin, pyrantel pamoate
45500                                                                                                               afoxolaner
45503                                                                                        trimeprazine tartrate, prednisone
45504                                                                                              lufenuron, milbemycin oxime
45508                                                                                                                 fipronil
45531                                                                                                 imidacloprid, moxidectin
45534                                                                                               milbemycin oxime, spinosad
45555                                                                                                              coconut oil
45556                                                                                                               selamectin
45572                                                                                       fipronil, permethrin, pyriproxyfen
45582                                                                                                 fipronil, (s)-methoprene
45585                                                                                             ivermectin, pyrantel pamoate
45626                                                                                                         milbemycin oxime
45642                                                                                             ivermectin, pyrantel pamoate
45650                                                                                                               afoxolaner
45651                                                                                             ivermectin, pyrantel pamoate
45655                                                                                             ivermectin, pyrantel pamoate
45656                                                                                                               afoxolaner
45663                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45664                                                                                lufenuron, milbemycin oxime, praziquantel
45665                                                                                                   cyphenothrin, fipronil
45667                                                                                                   cyphenothrin, fipronil
45670                                                                                                         milbemycin oxime
45671                                                                                                                lotilaner
45675                                                                         dexamethasone, enrofloxacin, silver sulfadiazine
45676                                                                           mometasone furoate, orbifloxacin, posaconazole
45683                                                                                              lufenuron, milbemycin oxime
45699                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45700                                                                                                  acetic acid, boric acid
45704                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45725                                                                                                                probiotic
45726                                                                                                   joint supplement (msm)
45727                                                                                                                  omega 3
45728                                                                                                 joint supplement (other)
45729                                                                                                               cetirizine
45735                                                                                             ivermectin, pyrantel pamoate
45736                                                                                                 fipronil, (s)-methoprene
45751                                                                                                 fipronil, (s)-methoprene
45764                                                                                             ivermectin, pyrantel pamoate
45775                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45776                                                                             florfenicol, mometasone furoate, terbinafine
45787                                                                                                 fipronil, (s)-methoprene
45791                                                                                              lufenuron, milbemycin oxime
45798                                                                                                         milbemycin oxime
45799                                                                                                         milbemycin oxime
45800                                                                                                                lotilaner
45816                                                                                                 flumethrin, imidacloprid
45820                                                                                             ivermectin, pyrantel pamoate
45843                                                                                                          povidone-iodine
45853                                                                                                               isoflurane
45862                                                                                                         milbemycin oxime
45863                                                                                                               afoxolaner
45864                                                                                                               fluralaner
45869                                                                                           milbemycin oxime, praziquantel
45872                                                                                                               fluralaner
45876                                                                                               milbemycin oxime, spinosad
45898                                                                                                         milbemycin oxime
45899                                                                                               imidacloprid, pyriproxyfen
45901                                                                                           milbemycin oxime, praziquantel
45908                                                                                                         milbemycin oxime
45909                                                                                                 imidacloprid, permethrin
45914                                                                                           milbemycin oxime, praziquantel
45924                                                                                             ivermectin, pyrantel pamoate
45968                                                                                              lufenuron, milbemycin oxime
45969                                                                                              lufenuron, milbemycin oxime
45970                                                                                                               afoxolaner
45971                                                                                              lufenuron, milbemycin oxime
45990                                                                                               milbemycin oxime, spinosad
45994                                                                                                 imidacloprid, permethrin
45995                                                                                                                probiotic
45996                                                                                              chloroxylenol, ketoconazole
45997                                                                                                         milbemycin oxime
46014                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46018                                                                                             ivermectin, pyrantel pamoate
46019                                                                                                               afoxolaner
46021                                                                                             ivermectin, pyrantel pamoate
46022                                                                                                               afoxolaner
46025                                                                                             ivermectin, pyrantel pamoate
46043                                                                                                               ivermectin
46044                                                                                                               afoxolaner
46071                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46075                                                                                             ivermectin, pyrantel pamoate
46076                                                                                                         milbemycin oxime
46078                                                                                                         milbemycin oxime
46085                                                                                        betamethasone, gentamicin sulfate
46091                                                                                             ivermectin, pyrantel pamoate
46092                                                                               ivermectin, praziquantel, pyrantel pamoate
46094                                                                                                         milbemycin oxime
46095                                                                                           milbemycin oxime, praziquantel
46100                                                                                                               ivermectin
46107                                                                                             ivermectin, pyrantel pamoate
46108                                                                                                               lokivetmab
46110                                                                                             ivermectin, pyrantel pamoate
46116                                                                               ivermectin, praziquantel, pyrantel pamoate
46119                                                                               ivermectin, praziquantel, pyrantel pamoate
46122                                                                               ivermectin, praziquantel, pyrantel pamoate
46131                                                                           mometasone furoate, orbifloxacin, posaconazole
46132                                                                                                                ofloxacin
46134                                                                                                                probiotic
46170                                                                                    dinotefuran, permethrin, pyriproxyfen
46171                                                                                                  ketoconazole, tris-edta
46173                                                                                    dinotefuran, permethrin, pyriproxyfen
46174                                                                                                         milbemycin oxime
46177                                                                                                         milbemycin oxime
46186                                                                                                                probiotic
46198                                                                                             ivermectin, pyrantel pamoate
46200                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46201                                                                               toothpaste/dental health solution or chews
46202                                                                                             ivermectin, pyrantel pamoate
46213                                                                                                 imidacloprid, permethrin
46218                                                                                                         milbemycin oxime
46219                                                                                                               afoxolaner
46227                                                                                                               afoxolaner
46255                                                                                           ketoconazole, phytosphingosine
46265                                                                                                              hydrocodone
46277                                                                                             ivermectin, pyrantel pamoate
46278                                                                                                               afoxolaner
46287                                                                                             ivermectin, pyrantel pamoate
46288                                                                                                               afoxolaner
46291                                                                                             ivermectin, pyrantel pamoate
46292                                                                                             ivermectin, pyrantel pamoate
46293                                                                                                               afoxolaner
46295                                                                                             ivermectin, pyrantel pamoate
46296                                                                                                               afoxolaner
46302                                                                                              lufenuron, milbemycin oxime
46303                                                                                              lufenuron, milbemycin oxime
46305                                                                                              lufenuron, milbemycin oxime
46308                                                                                              lufenuron, milbemycin oxime
46311                                                                                           polysulfated glycosaminoglycan
46312                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46313                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46314                                                                                                                  omega 3
46319                                                                                      ear cleaner (zymox), hydrocortisone
46320                                                                                                         milbemycin oxime
46324                                                                                                      ear cleaner (zymox)
46325                                                                                                         milbemycin oxime
46345                                                                                             ivermectin, pyrantel pamoate
46350                                                                                           milbemycin oxime, praziquantel
46355                                                                                           milbemycin oxime, praziquantel
46358                                                                               dextromethorphan hydrobromide, guaifenesin
46360                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
46377                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
46379                                                                                               milbemycin oxime, spinosad
46399                                                                                               milbemycin oxime, spinosad
46406                                                                                                unspecified otic ear pack
46410                                                                                                               ivermectin
46411                                                                                                 imidacloprid, permethrin
46413                                                                                                 flumethrin, imidacloprid
46418                                                                                                 flumethrin, imidacloprid
46424                                                                                                 flumethrin, imidacloprid
46431                                                                                                 flumethrin, imidacloprid
46435                                                                                             ivermectin, pyrantel pamoate
46436                                                                                                 flumethrin, imidacloprid
46474                                                                                                               ivermectin
46475                                                                                    dinotefuran, permethrin, pyriproxyfen
46476                                                                                                         milbemycin oxime
46478                                                                                             ivermectin, pyrantel pamoate
46479                                                                               ivermectin, praziquantel, pyrantel pamoate
46482                                                                                             ivermectin, pyrantel pamoate
46483                                                                                    dinotefuran, permethrin, pyriproxyfen
46486                                                                                                               afoxolaner
46487                                                                                             ivermectin, pyrantel pamoate
46488                                                                                                               ivermectin
46489                                                                                             ivermectin, pyrantel pamoate
46490                                                                                             ivermectin, pyrantel pamoate
46493                                                                                              lufenuron, milbemycin oxime
46494                                                                                           milbemycin oxime, praziquantel
46499                                                                                                         milbemycin oxime
46504                                                                                                  chlorhexidine gluconate
46505                                                                               chloroxylenol, lactic acid, salicylic acid
46506                                                                           dexamethasone, neomycin sulfate, thiabendazole
46512                                                                                                               ivermectin
46517                                                                                                                probiotic
46521                                                                                        dexamethasone, miconazole nitrate
46526                                                                             dexamethasone, neomycin sulfate, polymyxin b
46528                                                                                                 fipronil, (s)-methoprene
46530                                                                                                  ketoconazole, tris-edta
46532                                                                                                         milbemycin oxime
46533                                                                             dexamethasone, neomycin sulfate, polymyxin b
46544                                                                                                         milbemycin oxime
46547                                                                                                 fipronil, (s)-methoprene
46551                                                                          betamethasone, clotrimazole, gentamicin sulfate
46553                                                                             florfenicol, mometasone furoate, terbinafine
46555                                                                                                                pramoxine
46568                                                                                             ivermectin, pyrantel pamoate
46569                                                                                               imidacloprid, pyriproxyfen
46570                                                                                 febantel, praziquantel, pyrantel pamoate
46571                                                                                               imidacloprid, pyriproxyfen
46572                                                                                             ivermectin, pyrantel pamoate
46573                                                                                             ivermectin, pyrantel pamoate
46574                                                                                               imidacloprid, pyriproxyfen
46575                                                                                             ivermectin, pyrantel pamoate
46579                                                                                                 imidacloprid, permethrin
46588                                                                                                               selamectin
46591                                                                                             ivermectin, pyrantel pamoate
46593                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46606                    dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
46607                                                                                                               gabapentin
46615                                                                                                               fluralaner
46616                                                                                              lufenuron, milbemycin oxime
46617                                                                                              lufenuron, milbemycin oxime
46618                                                                                              lufenuron, milbemycin oxime
46665                                                                                                               afoxolaner
46676                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
46680                                                                                               imidacloprid, pyriproxyfen
46687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46690                                                                                        betamethasone, gentamicin sulfate
46694                                                                                                               selamectin
46702                                                                                        betamethasone, gentamicin sulfate
46703                                                                                       chlorhexidine gluconate, ophytrium
46716                                                                                               milbemycin oxime, spinosad
46717                                                                                               milbemycin oxime, spinosad
46729                                                                                             ivermectin, pyrantel pamoate
46730                                                                                             ivermectin, pyrantel pamoate
46732                                                                                      allergy immunotherapy - unspecified
46737                                                                                                       calming supplement
46747                                                                                                                ophytrium
46753                                                                                        betamethasone, gentamicin sulfate
46763                                                                                                                carprofen
46766                                                                                                                deracoxib
46767                                                                                              lufenuron, milbemycin oxime
46775                                                                                             ivermectin, pyrantel pamoate
46776                                                                                                               afoxolaner
46777                                                                                           praziquantel, pyrantel pamoate
46781                                                                                             ivermectin, pyrantel pamoate
46782                                                                                                               afoxolaner
46783                                                                                                         phytosphingosine
46784                                                                                             ivermectin, pyrantel pamoate
46785                                                                                                               afoxolaner
46786                                                                                             ivermectin, pyrantel pamoate
46788                                                                                             ivermectin, pyrantel pamoate
46789                                                                                                               afoxolaner
46804                                                                                             ivermectin, pyrantel pamoate
46811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46812                                                                                             ivermectin, pyrantel pamoate
46816                                                                                             ivermectin, pyrantel pamoate
46827                                                                             dexamethasone, neomycin sulfate, polymyxin b
46849                                                                                             ivermectin, pyrantel pamoate
46853                                                                                             ivermectin, pyrantel pamoate
46874                                                                                             oxytetracycline, polymyxin b
46880                                                                                                            oxymetazoline
46883                                                                                                         milbemycin oxime
46884                                                                                                         milbemycin oxime
46885                                                                                                                lotilaner
46889                                                                                           sulfamethoxazole, trimethoprim
46891                                                                                           sulfamethoxazole, trimethoprim
46902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46903                                                                                               imidacloprid, pyriproxyfen
46904                                                                                             ivermectin, pyrantel pamoate
46905                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46908                                                                                        betamethasone, gentamicin sulfate
46915                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
46931                                                                                                                probiotic
46938                                                                                                                probiotic
46944                                                                                                                probiotic
46961                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46962                                          carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
46972                                                                                             ivermectin, pyrantel pamoate
46973                                                                                             ivermectin, pyrantel pamoate
46976                                                                                             ivermectin, pyrantel pamoate
46977                                                                                                 fipronil, (s)-methoprene
46981                                                                          betamethasone, clotrimazole, gentamicin sulfate
46982                                                                                                  ketoconazole, tris-edta
46983                                                                                                 fipronil, (s)-methoprene
46984                                                                                                 fipronil, (s)-methoprene
46985                                                                                             ivermectin, pyrantel pamoate
46986                                                                                             ivermectin, pyrantel pamoate
47000                                                                                                                sarolaner
47004                                                                                              lufenuron, milbemycin oxime
47010                                                                                              lufenuron, milbemycin oxime
47011                                                                                                               afoxolaner
47018                                                                                                         milbemycin oxime
47024                                                                                                         milbemycin oxime
47025                                                                                                                sarolaner
47041                                                                                              lufenuron, milbemycin oxime
47043                                                                                              lufenuron, milbemycin oxime
47049                                                                                                               selamectin
47060                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47076                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
47080                                                                                                                  omega 3
47081                                                                                                immune support supplement
47085                                                                                             ivermectin, pyrantel pamoate
47086                                                                                                               afoxolaner
47090                                                                                        betamethasone, gentamicin sulfate
47095                                                                                               milbemycin oxime, spinosad
47096                                                                                             ivermectin, pyrantel pamoate
47097                                                                                                               afoxolaner
47098                                                               benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
47104                                                                          betamethasone, clotrimazole, gentamicin sulfate
47105                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47106                                                                                    dinotefuran, permethrin, pyriproxyfen
47125                                                                                             ivermectin, pyrantel pamoate
47126                                                                                                               fluralaner
47128                                                                                        trimeprazine tartrate, prednisone
47137                                                                           mometasone furoate, orbifloxacin, posaconazole
47140                                                                                                               selamectin
47143                                                                                                               selamectin
47146                                                                                                               selamectin
47152                                                                          betamethasone, clotrimazole, gentamicin sulfate
47154                                                                                             ivermectin, pyrantel pamoate
47155                                                                                             ivermectin, pyrantel pamoate
47156                                                                                                               fluralaner
47162                                                                                                               indoxacarb
47164                                                                                                               indoxacarb
47178                                                                                             ivermectin, pyrantel pamoate
47180                                                                          betamethasone, clotrimazole, gentamicin sulfate
47183                                                                                                               fluralaner
47184                                                                                              lufenuron, milbemycin oxime
47187                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47193                                                                                             ivermectin, pyrantel pamoate
47194                                                                                                 fipronil, (s)-methoprene
47196                                                                                                 fipronil, (s)-methoprene
47197                                                                                             ivermectin, pyrantel pamoate
47204                                                                                                   unspecified medication
47208                                                                                                            yunnan baiyao
47209                                                                                              lufenuron, milbemycin oxime
47210                                                                                                         milbemycin oxime
47220                                                                                                 flumethrin, imidacloprid
47221                                                                                                     cefpodoxime proxetil
47222                                                                                        betamethasone, gentamicin sulfate
47240                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47248                                                                                                         pyrantel pamoate
47251                                                                                                             fenbendazole
47253                                                                                                         milbemycin oxime
47260                                                                                                         milbemycin oxime
47302                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47323                                                                                                         milbemycin oxime
47325                                                                                           milbemycin oxime, praziquantel
47334                                                                                           milbemycin oxime, praziquantel
47343                                                                                                         milbemycin oxime
47345                                                                                           milbemycin oxime, praziquantel
47350                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47355                                                                                                      silver sulfadiazine
47360                                                                                                                probiotic
47390                                                                                             ivermectin, pyrantel pamoate
47407                                                                                                               prednisone
47409                                                                                                         milbemycin oxime
47411                                                                                                               afoxolaner
47412                                                                                           milbemycin oxime, praziquantel
47415                                                                                                                sarolaner
47416                                                                                                         milbemycin oxime
47417                                                                                                                sarolaner
47420                                                                                                         milbemycin oxime
47421                                                                                                                sarolaner
47433                                                                                             ivermectin, pyrantel pamoate
47439                                                                                        trimeprazine tartrate, prednisone
47451                                                                                             ivermectin, pyrantel pamoate
47478                                                                                lufenuron, milbemycin oxime, praziquantel
47479                                                                                              lufenuron, milbemycin oxime
47483                                                                                          ear cleaner (epi-otic advanced)
47484                                                                                                 flumethrin, imidacloprid
47486                                                                                                 flumethrin, imidacloprid
47493                                                                                                 flumethrin, imidacloprid
47496                                                                                                   unspecified medication
47497                                                                                                               ivermectin
47498                                                                                                 flumethrin, imidacloprid
47539                                                                                                 imidacloprid, permethrin
47540                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47544                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47547                                                                                              betamethasone, enrofloxacin
47557                                                                                                 flumethrin, imidacloprid
47562                                                                                                         milbemycin oxime
47563                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47576                                                                                    dinotefuran, permethrin, pyriproxyfen
47577                                                                                             ivermectin, pyrantel pamoate
47578                                                                                             ivermectin, pyrantel pamoate
47586                                                                                             ivermectin, pyrantel pamoate
47587                                                                                    dinotefuran, permethrin, pyriproxyfen
47588                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
47589                                                                                                         milbemycin oxime
47590                                                                                    dinotefuran, permethrin, pyriproxyfen
47592                                                                                                         milbemycin oxime
47593                                                                                    dinotefuran, permethrin, pyriproxyfen
47594                                                                                                               ivermectin
47595                                                                                    dinotefuran, permethrin, pyriproxyfen
47597                                                                                                 imidacloprid, moxidectin
47600                                                                                                 imidacloprid, moxidectin
47628                                                                                                 fipronil, (s)-methoprene
47629                                                                                             ivermectin, pyrantel pamoate
47630                                                                                               imidacloprid, pyriproxyfen
47635                                                                                                 imidacloprid, permethrin
47636                                                                                                               ivermectin
47658                                                                             florfenicol, mometasone furoate, terbinafine
47681                                                                                             ivermectin, pyrantel pamoate
47684                                                                                        betamethasone, gentamicin sulfate
47693                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47694                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47696                                                                                             ivermectin, pyrantel pamoate
47698                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47699                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47702                                                                                                       miconazole nitrate
47706                                                                                               milbemycin oxime, spinosad
47715                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47716                                                                                                  ketoconazole, tris-edta
47720                                                                                                  ketoconazole, tris-edta
47721                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47733                                                                                               milbemycin oxime, spinosad
47734                                                                             dexamethasone, neomycin sulfate, polymyxin b
47739                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47743                                                                                              lufenuron, milbemycin oxime
47744                                                                                              lufenuron, milbemycin oxime
47745                                                                                              lufenuron, milbemycin oxime
47746                                                                                              lufenuron, milbemycin oxime
47752                                                                             florfenicol, mometasone furoate, terbinafine
47755                                                                                                 fipronil, (s)-methoprene
47760                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47800                                                                                             ivermectin, pyrantel pamoate
47801                                                                                                 fipronil, (s)-methoprene
47802                                                                                             ivermectin, pyrantel pamoate
47803                                                                                                 fipronil, (s)-methoprene
47808                                                                                             ivermectin, pyrantel pamoate
47810                                                                                                               afoxolaner
47811                                                                                             ivermectin, pyrantel pamoate
47812                                                                                                               afoxolaner
47815                                                                                             ivermectin, pyrantel pamoate
47816                                                                                                               afoxolaner
47817                                                                               clinical trial - cancer prevention vaccine
47825                                                                                                            yunnan baiyao
47835                                                                                lufenuron, milbemycin oxime, praziquantel
47836                                                                                lufenuron, milbemycin oxime, praziquantel
47840                                                                                lufenuron, milbemycin oxime, praziquantel
47860                                                                                                               fluralaner
47861                                                                                                    clorsulon, ivermectin
47863                                                                                                               fluralaner
47877                                                                                                  triamcinolone acetonide
47887                                                                                                               fluralaner
47888                                                                                             ivermectin, pyrantel pamoate
47889                                                                                                                  omega 3
47890                                                                                       joint supplement (glucosamine hcl)
47891                                                                                                                probiotic
47894                                                                                        trimeprazine tartrate, prednisone
47900                                                                                        betamethasone, gentamicin sulfate
47909                                                                                             ivermectin, pyrantel pamoate
47910                                                                             florfenicol, mometasone furoate, terbinafine
47951                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47952                                                                                                     cefpodoxime proxetil
47953                                                                                        betamethasone, gentamicin sulfate
47969                                                                                lufenuron, milbemycin oxime, praziquantel
47970                                                                                                               afoxolaner
47971                                                                                              lufenuron, milbemycin oxime
47975                                                                                lufenuron, milbemycin oxime, praziquantel
47976                                                                                              lufenuron, milbemycin oxime
47981                                                                                                         milbemycin oxime
47983                                                                                           milbemycin oxime, praziquantel
47984                                                                                       fipronil, permethrin, pyriproxyfen
47985                                                                                              lufenuron, milbemycin oxime
47989                                                                                              lufenuron, milbemycin oxime
47990                                                                                               imidacloprid, pyriproxyfen
47995                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47996                                                                                              lufenuron, milbemycin oxime
47997                                                                                                               afoxolaner
47998                                                                                                       maropitant citrate
48000                                                                                                                carprofen
48001                                                                                                             enrofloxacin
48002                                                                                                         liver supplement
48003                                                                                                              ondansetron
48004                                                                                                            metronidazole
48005                                                                                                         cyclophosphamide
48007                                                                                                                  sotalol
48013                                                                                                               afoxolaner
48014                                                                                                               afoxolaner
48016                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
48020                                                                                             ivermectin, pyrantel pamoate
48021                                                                                                               afoxolaner
48028                                                                                             ivermectin, pyrantel pamoate
48029                                                                                                               afoxolaner
48030                                                                                                             multivitamin
48031                                                                                                                  omega 3
48034                                                                                                     digestive supplement
48035                                                                                                                probiotic
48040                                                                                             ivermectin, pyrantel pamoate
48041                                                                                                               afoxolaner
48046                                                                                             ivermectin, pyrantel pamoate
48047                                                                                                               afoxolaner
48048                                                                                                             multivitamin
48049                                                                                                                  omega 3
48069                                                                                                         tylosin tartrate
48072                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48087                                                                                             ivermectin, pyrantel pamoate
48088                                                                                                               fluralaner
48089                                                                                                                probiotic
48090                                                                                                                  omega 3
48094                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
48100                                                                             dexamethasone, neomycin sulfate, polymyxin b
48101                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48102                                                                                             ivermectin, pyrantel pamoate
48103                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48105                                                                                             ivermectin, pyrantel pamoate
48106                                                                                                 flumethrin, imidacloprid
48107                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
48108                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48109                                                                                           milbemycin oxime, praziquantel
48110                                                                                                 flumethrin, imidacloprid
48114                                                                                      ear cleaner (zymox), hydrocortisone
48120                                                                                              lufenuron, milbemycin oxime
48121                                                                                               imidacloprid, pyriproxyfen
48127                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48131                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48132                                                                                              lufenuron, milbemycin oxime
48133                                                                                                               fluralaner
48142                                                                                              lufenuron, milbemycin oxime
48143                                                                                               imidacloprid, pyriproxyfen
48147                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48148                                                                                              lufenuron, milbemycin oxime
48151                                                                                              lufenuron, milbemycin oxime
48152                                                                                                               fluralaner
48155                                                                                              lufenuron, milbemycin oxime
48157                                                                                             ivermectin, pyrantel pamoate
48158                                                                                                               fluralaner
48159                                                                                             ivermectin, pyrantel pamoate
48160                                                                                                               fluralaner
48163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48167                                                                                                               ivermectin
48169                                                                                                                trazodone
48182                                                                                             ivermectin, pyrantel pamoate
48185                                                                                                         sulfadimethoxine
48188                                                                          betamethasone, clotrimazole, gentamicin sulfate
48201                                                                          betamethasone, clotrimazole, gentamicin sulfate
48213                                                                                                         phytosphingosine
48214                                                                                                               afoxolaner
48215                                                                                             ivermectin, pyrantel pamoate
48217                                                                                             ivermectin, pyrantel pamoate
48220                                                                                                               ampicillin
48221                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48222                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48231                                                                                              lufenuron, milbemycin oxime
48237                                                                             dexamethasone, neomycin sulfate, polymyxin b
48238                                                                                              lufenuron, milbemycin oxime
48240                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48248                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48251                                                                                                         milbemycin oxime
48252                                                                                                               afoxolaner
48258                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48265                                                                          betamethasone, clotrimazole, gentamicin sulfate
48266                                                                                                      sodium hypochlorite
48267                                                                          betamethasone, clotrimazole, gentamicin sulfate
48271                                                                                              lufenuron, milbemycin oxime
48274                                                                                                 imidacloprid, permethrin
48277                                                                                                 fipronil, (s)-methoprene
48285                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48287                                                                                                          interferon alfa
48288                                                                                      ear cleaner (zymox), hydrocortisone
48289                                                                                             ivermectin, pyrantel pamoate
48291                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48292                                                                                             ivermectin, pyrantel pamoate
48294                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48297                                                                                             ivermectin, pyrantel pamoate
48298                                                                                                               afoxolaner
48299                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48300                                                                                             ivermectin, pyrantel pamoate
48306                                                                                              lufenuron, milbemycin oxime
48307                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48310                                                                                              lufenuron, milbemycin oxime
48314                                                                                                              omega 3-6-9
48322                                                                                                                probiotic
48327                                                                                                 fipronil, (s)-methoprene
48328                                                                                lufenuron, milbemycin oxime, praziquantel
48334                                                                                                  triamcinolone acetonide
48336                                                                                        betamethasone, gentamicin sulfate
48337                                                                                                            dexamethasone
48338                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48339                                                                           dexamethasone, neomycin sulfate, thiabendazole
48342                                                                                                            dexamethasone
48343                                                                                        betamethasone, gentamicin sulfate
48344                                                                                              lufenuron, milbemycin oxime
48345                                                                             dexamethasone, neomycin sulfate, polymyxin b
48350                                                                                                                 ketamine
48351                                                                                                                 diazepam
48352                                                                                                             acepromazine
48353                                                                                                         atropine sulfate
48354                                                                                                            buprenorphine
48355                                                                                                               isoflurane
48376                                                                                                            dexamethasone
48380                                                                                             ivermectin, pyrantel pamoate
48381                                                                                                               afoxolaner
48383                                                                                                               afoxolaner
48384                                                                                             ivermectin, pyrantel pamoate
48394                                                                           mometasone furoate, orbifloxacin, posaconazole
48406                                                                                                                probiotic
48420                                                                                           sulfamethoxazole, trimethoprim
48438                                                                               ivermectin, praziquantel, pyrantel pamoate
48439                                                                                           milbemycin oxime, praziquantel
48441                                                                                             ivermectin, pyrantel pamoate
48442                                                                                                               fluralaner
48444                                                                                             ivermectin, pyrantel pamoate
48447                                                                                             ivermectin, pyrantel pamoate
48448                                                                                                               afoxolaner
48481                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48483                                                                                                      silver sulfadiazine
48494                                                                                             ivermectin, pyrantel pamoate
48495                                                                                                               fluralaner
48496                                                                                                               fluralaner
48497                                                                                                          dexmedetomidine
48498                                                                                                         milbemycin oxime
48500                                                                                                         milbemycin oxime
48502                                                                                                            metronidazole
48504                                                                                                         milbemycin oxime
48505                                                                                                               fluralaner
48513                                                                                              lufenuron, milbemycin oxime
48540                                                                                              lufenuron, milbemycin oxime
48541                                                                                              lufenuron, milbemycin oxime
48542                                                                                                               fluralaner
48598                                                                                              lufenuron, milbemycin oxime
48602                                                                                                     prednisolone acetate
48610                                                                                                               ivermectin
48611                                                                                             ivermectin, pyrantel pamoate
48615                                                                                             ivermectin, pyrantel pamoate
48621                                                                                        betamethasone, gentamicin sulfate
48624                                                                                        betamethasone, gentamicin sulfate
48633                                                                                        betamethasone, gentamicin sulfate
48636                                                                                                                mupirocin
48643                                                                                              lufenuron, milbemycin oxime
48661                                                                                                               ivermectin
48664                                                                                             ivermectin, pyrantel pamoate
48667                                                                                             ivermectin, pyrantel pamoate
48668                                                                                                 fipronil, (s)-methoprene
48673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48680                                                                                                               afoxolaner
48683                                                                                                 imidacloprid, permethrin
48684                                                                                             ivermectin, pyrantel pamoate
48692                                                                                                     cefpodoxime proxetil
48693                                                                                                                carprofen
48694                                                                           dexamethasone, neomycin sulfate, thiabendazole
48696                                                                                             ivermectin, pyrantel pamoate
48697                                                                                                               afoxolaner
48698                                                                                                 fipronil, (s)-methoprene
48712                                                                                             ivermectin, pyrantel pamoate
48713                                                                                                               afoxolaner
48718                                                                               ivermectin, praziquantel, pyrantel pamoate
48719                                                                             dexamethasone, neomycin sulfate, polymyxin b
48720                                                                                                         milbemycin oxime
48721                                                                                                         milbemycin oxime
48722                                                                                                 flumethrin, imidacloprid
48724                                                                                           milbemycin oxime, praziquantel
48725                                                                                                 flumethrin, imidacloprid
48729                                                                                           milbemycin oxime, praziquantel
48733                                                                                                               fluralaner
48734                                                                                           milbemycin oxime, praziquantel
48735                                                                                                               afoxolaner
48736                                                                                                 flumethrin, imidacloprid
48770                                                                             dexamethasone, neomycin sulfate, polymyxin b
48782                                                                                                 flumethrin, imidacloprid
48802                                                                             dexamethasone, neomycin sulfate, polymyxin b
48806                                                                          betamethasone, clotrimazole, gentamicin sulfate
48808                                                                          betamethasone, clotrimazole, gentamicin sulfate
48812                                                                                                 fipronil, (s)-methoprene
48819                                                                                              lufenuron, milbemycin oxime
48821                                                                                              lufenuron, milbemycin oxime
48845                                                                                             ivermectin, pyrantel pamoate
48855                                                                                               milbemycin oxime, spinosad
48859                                                                                          atropine sulfate, diphenoxylate
48862                                                                               dextromethorphan hydrobromide, guaifenesin
48889                                                                                                                probiotic
48890                                                                                             ivermectin, pyrantel pamoate
48891                                                                                                               fluralaner
48892                                                                          betamethasone, clotrimazole, gentamicin sulfate
48894                                                                                           milbemycin oxime, praziquantel
48902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48906                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48918                                                                                                 fipronil, (s)-methoprene
48935                                                                                                               ivermectin
48946                                                                                 febantel, praziquantel, pyrantel pamoate
48994                                                                                                 imidacloprid, moxidectin
48997                                                                                                 joint supplement (other)
49002                                                                                             ivermectin, pyrantel pamoate
49005                                                                                        betamethasone, gentamicin sulfate
49012                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
49016                                                                                   cyphenothrin, fipronil, (s)-methoprene
49017                                                                                             ivermectin, pyrantel pamoate
49018                                                                                                               nitenpyram
49025                                                                                             ivermectin, pyrantel pamoate
49026                                                                                   fipronil, pyriproxyfen, (s)-methoprene
49033                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49034                                                                                             ivermectin, pyrantel pamoate
49035                                                                                                               fluralaner
49036                                                                                                                  omega 3
49042                                                                                    chlorhexidine gluconate, ketoconazole
49044                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
49046                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49051                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49052                                                                             dexamethasone, neomycin sulfate, polymyxin b
49082                                                                                             ivermectin, pyrantel pamoate
49084                                                                                             ivermectin, pyrantel pamoate
49096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49105                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49117                                                                                             ivermectin, pyrantel pamoate
49120                                                                                           sulfamethoxazole, trimethoprim
49123                                                                                               milbemycin oxime, spinosad
49127                                                                              mebendazole, praziquantel, pyrantel pamoate
49128                                                                                                               ivermectin
49129                                                                                                               afoxolaner
49130                                                                           beclomethasone, clotrimazole, neomycin sulfate
49163                                                                                        allergy immunotherapy - injection
49164                                                                                             ivermectin, pyrantel pamoate
49167                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49168                                                                                                   unspecified medication
49169                                                                                             ivermectin, pyrantel pamoate
49170                                                                                                 flumethrin, imidacloprid
49184                                                                                                                 fipronil
49193                                                                                                         liver supplement
49196                                                                                 febantel, praziquantel, pyrantel pamoate
49208                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49209                                                                                                          cbd or hemp oil
49216                                                                                               milbemycin oxime, spinosad
49217                                                                                               milbemycin oxime, spinosad
49218                                                                                               milbemycin oxime, spinosad
49219                                                                                               milbemycin oxime, spinosad
49220                                                                                               milbemycin oxime, spinosad
49227                                                                                                               benzocaine
49229                                                                                                               benzocaine
49231                                                                                         burow's solution, hydrocortisone
49232                                                                             dexamethasone, neomycin sulfate, polymyxin b
49248                                                                               ivermectin, praziquantel, pyrantel pamoate
49252                                                                                              lufenuron, milbemycin oxime
49253                                                                                                                sarolaner
49316                                                                                             ivermectin, pyrantel pamoate
49323                                                                                                 fipronil, (s)-methoprene
49324                                                                                             ivermectin, pyrantel pamoate
49343                                                                                              lufenuron, milbemycin oxime
49346                                                                                              lufenuron, milbemycin oxime
49348                                                                                              lufenuron, milbemycin oxime
49350                                                                                              lufenuron, milbemycin oxime
49351                                                                                                               afoxolaner
49352                                                                                              lufenuron, milbemycin oxime
49372                                                                                             ivermectin, pyrantel pamoate
49376                                                                                              lufenuron, milbemycin oxime
49377                                                                                                 fipronil, (s)-methoprene
49378                                                                                              lufenuron, milbemycin oxime
49379                                                                                               imidacloprid, pyriproxyfen
49388                                                                                              lufenuron, milbemycin oxime
49393                                                                             florfenicol, mometasone furoate, terbinafine
49394                                                                             florfenicol, mometasone furoate, terbinafine
49395                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
49398                                                                                                    gabapentin, trazodone
49403                                                                                           milbemycin oxime, praziquantel
49404                                                                                                               fluralaner
49408                                                                                             ivermectin, pyrantel pamoate
49409                                                                                                               afoxolaner
49437                                                                                                               afoxolaner
49438                                                                                             ivermectin, pyrantel pamoate
49442                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49460                                                                                    dinotefuran, permethrin, pyriproxyfen
49461                                                                                             ivermectin, pyrantel pamoate
49462                                                                                   joint supplement (glucosamine hcl/msm)
49463                                                                                             ivermectin, pyrantel pamoate
49473                                                                                                         milbemycin oxime
49509                                                                                               imidacloprid, pyriproxyfen
49510                                                                                             ivermectin, pyrantel pamoate
49518                                                                                             ivermectin, pyrantel pamoate
49520                                                                             florfenicol, mometasone furoate, terbinafine
49523                                                                                             ivermectin, pyrantel pamoate
49526                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49531                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49549                                                                                             ivermectin, pyrantel pamoate
49550                                                                                                               afoxolaner
49553                                                                                             ivermectin, pyrantel pamoate
49554                                                                                                               afoxolaner
49567                                                                                             ivermectin, pyrantel pamoate
49568                                                                                                               isoflurane
49569                                                                                             ivermectin, pyrantel pamoate
49572                                                                                             ivermectin, pyrantel pamoate
49588                                                                                             ivermectin, pyrantel pamoate
49590                                                                                               imidacloprid, pyriproxyfen
49591                                                                                             ivermectin, pyrantel pamoate
49592                                                                                   joint supplement (glucosamine hcl/msm)
49593                                                                                              lufenuron, milbemycin oxime
49596                                                                                                               selamectin
49601                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49605                                                                                   joint supplement (glucosamine hcl/msm)
49607                                                                                               milbemycin oxime, spinosad
49608                                                                                   joint supplement (glucosamine hcl/msm)
49645                                                                                             ivermectin, pyrantel pamoate
49649                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49654                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49659                                                                             dexamethasone, neomycin sulfate, polymyxin b
49698                                                                                               milbemycin oxime, spinosad
49699                                                                                               imidacloprid, pyriproxyfen
49705                                                                              joint supplement (glucosamine hcl), omega 3
49731                                                                                             ivermectin, pyrantel pamoate
49748                                                                                                 imidacloprid, permethrin
49753                                                                                               imidacloprid, pyriproxyfen
49754                                                                                                 fipronil, (s)-methoprene
49755                                                                                                         milbemycin oxime
49756                                                                                                 fipronil, (s)-methoprene
49757                                                                                                         milbemycin oxime
49758                                                                                                         milbemycin oxime
49766                                                                                                  chlorhexidine gluconate
49767                                                                                                 fipronil, (s)-methoprene
49768                                                                                                               ivermectin
49769                                                                                                  chlorhexidine gluconate
49773                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
49792                                                                                             ivermectin, pyrantel pamoate
49793                                                                                                               afoxolaner
49799                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49812                                                                             florfenicol, mometasone furoate, terbinafine
49820                                                                                             ivermectin, pyrantel pamoate
49821                                                                                                               afoxolaner
49845                                                                                                             enrofloxacin
49846                                                                                       amoxicillin, clavulanate potassium
49849                                                                                    dinotefuran, permethrin, pyriproxyfen
49852                                                                                                                probiotic
49854                                                                                    dinotefuran, permethrin, pyriproxyfen
49855                                                                                                                probiotic
49857                                                                                    dinotefuran, permethrin, pyriproxyfen
49861                                                                                    dinotefuran, permethrin, pyriproxyfen
49862                                                                                    dinotefuran, permethrin, pyriproxyfen
49871                                                                                                             fenbendazole
49878                                                                                                               ivermectin
49883                                                                                                                probiotic
49886                                                                                             ivermectin, pyrantel pamoate
49889                                                                                             ivermectin, pyrantel pamoate
49890                                                                                    dinotefuran, permethrin, pyriproxyfen
49898                                                                                                             fenbendazole
49905                                                                                                               ivermectin
49906                                                                                                  acetic acid, boric acid
49907                                                                                           milbemycin oxime, praziquantel
49908                                                                                             ivermectin, pyrantel pamoate
49911                                                                                             ivermectin, pyrantel pamoate
49912                                                                                    dinotefuran, permethrin, pyriproxyfen
49963                                                                                             ivermectin, pyrantel pamoate
49966                                                                             dexamethasone, neomycin sulfate, polymyxin b
49978                                                                                              lufenuron, milbemycin oxime
49985                                                                                              lufenuron, milbemycin oxime
49986                                                                                                 fipronil, (s)-methoprene
49987                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49990                                                                                                                probiotic
49991                                                                                              lufenuron, milbemycin oxime
49992                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49996                                                                                                                 propofol
50000                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50001                                                                                              lufenuron, milbemycin oxime
50004                                                                                              lufenuron, milbemycin oxime
50006                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50007                                                                                                                  omega 3
50008                                                                                              lufenuron, milbemycin oxime
50009                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50011                                                                                                 fipronil, (s)-methoprene
50012                                                                                                                  omega 3
50014                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50029                                                                                              lufenuron, milbemycin oxime
50033                                                                                              lufenuron, milbemycin oxime
50048                                                                                              lufenuron, milbemycin oxime
50050                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
50077                                                                                                               ivermectin
50107                                                                                             ivermectin, pyrantel pamoate
50108                                                                                                               fluralaner
50115                                                                                                               ivermectin
50116                                                                                                               afoxolaner
50117                                                                                             ivermectin, pyrantel pamoate
50118                                                                                                               ivermectin
50154                                                                                                         milbemycin oxime
50159                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
50161                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
50187                                                                                lufenuron, milbemycin oxime, praziquantel
50189                                                                                               imidacloprid, pyriproxyfen
50190                                                                                              lufenuron, milbemycin oxime
50194                                                                                              lufenuron, milbemycin oxime
50195                                                                                               imidacloprid, pyriproxyfen
50196                                                                                              lufenuron, milbemycin oxime
50198                                                                                              lufenuron, milbemycin oxime
50199                                                                                               imidacloprid, pyriproxyfen
                                                                                                 dose
22                                                                                        unspecified
40                                                                                        unspecified
41                                                                                        unspecified
42                                                                                        unspecified
46                                                                        based on weight (40-60 lbs)
48                                                                       based on weight (51-100 lbs)
49                                                                       based on weight (51-100 lbs)
51                                                                        based on weight (21-40 lbs)
59                                                                       based on weight (51-100 lbs)
60                                                                          based on weight (55+ lbs)
62                                                                       based on weight (51-100 lbs)
63                                                                       based on weight (51-100 lbs)
67                                                                                        application
70                                                                                        application
74                                                                                        bottle/vial
84                                                                                        application
87                                                                                        application
91                                                                                        application
111                                                                                       unspecified
112                                                                                       unspecified
113                                                                                       unspecified
114                                                                                       unspecified
149                                                                                       unspecified
150                                                                                       unspecified
151                                                                                       unspecified
152                                                                                       unspecified
153                                                                                       unspecified
155                                                                                       unspecified
167                                                                                       unspecified
188                                                                       based on weight (44-88 lbs)
192                                                                       based on weight (44-88 lbs)
220                                                                       based on weight (44-88 lbs)
230                                                              272 ivermectin, 227 pyrantel pamoate
233                                                                                               4-6
235                                                              272 ivermectin, 227 pyrantel pamoate
236                                                                                       unspecified
237                                                                                       unspecified
238                                                                                      small amount
242                                                                                          1 - 1 ml
257                                                                       based on weight (40-60 lbs)
275                                                                      based on weight (51-100 lbs)
276                                                                      based on weight (51-100 lbs)
277                                                                    based on weight (60.1-121 lbs)
279                                                                                      small amount
280                                                                                                  
310                                                                                       unspecified
317                                                                                       as directed
318                                                                      based on weight (51-100 lbs)
324                                                                                       as directed
328                                                                                   based on weight
329                                                                                   based on weight
332                                                                                   based on weight
333                                                                                   based on weight
347                                                                                           23, 460
348                                                                                          23 , 460
350                                                                                           23, 460
351                                                                                           23, 460
353                                                                                           23, 460
355                                                                                           23, 460
366                                                                                       unspecified
368                                                                      based on weight (60-121 lbs)
375                                                                      based on weight (51-100 lbs)
376                                                                       based on weight (44-88 lbs)
383                                                                      based on weight (51-100 lbs)
384                                                                      based on weight (51-100 lbs)
385                                                                             1 tablet/pill/capsule
386                                                                      based on weight (51-100 lbs)
403                                                                                       unspecified
404                                                                                       unspecified
414                                                                                          23 , 460
447                                                                                       unspecified
449                                                                                       unspecified
453                                                                                       unspecified
496                                                              272 ivermectin, 227 pyrantel pamoate
498                                                                      based on weight (51-100 lbs)
519                                                                                          inhalant
537                                                                                                  
597                                                                         based on weight (60+ lbs)
598                                                                         based on weight (60+ lbs)
603                                                                             1 tablet/pill/capsule
604                                                                             1 tablet/pill/capsule
610                                                                                      small amount
619                                                                                       unspecified
637                                                                                   based on weight
642                                                                                      small amount
686                                                                                       unspecified
688                                                                                       unspecified
703                                                                      based on weight (51-100 lbs)
704                                                                     based on weight (44.1-88 lbs)
709                                                                                       unspecified
710                                                                                       unspecified
712                                                                                       unspecified
725                                                                27 milbemycin oxime, 1620 spinosad
728                                                                      based on weight (50-100 lbs)
729                                                                         based on weight (60+ lbs)
730                                                              272 ivermectin, 227 pyrantel pamoate
734                                                                                   0.25 inch strip
738                                                                                       unspecified
739                                                                                       unspecified
754                                                                      based on weight (51-100 lbs)
755                                                                         based on weight (45+ lbs)
757                                                                      based on weight (51-100 lbs)
778                                                                                       unspecified
785                                                                      based on weight (60-120 lbs)
790                                                                      based on weight (60-120 lbs)
792                                                                      based on weight (51-100 lbs)
797                                                                                       unspecified
798                                                                                       unspecified
799                                                                                       unspecified
800                                                                                       unspecified
801                                                                                       unspecified
802                                                                                       unspecified
803                                                                       based on weight (45-88 lbs)
804                                                                     based on weight (44.1-88 lbs)
810                                                                       based on weight (40-85 lbs)
816                                                                                       unspecified
819                                                                       based on weight (26-50 lbs)
820                                                                       based on weight (26-50 lbs)
823                                                                       based on weight (45-88 lbs)
824                                                                      based on weight (51-100 lbs)
832                                                                                       unspecified
851                                                                based on weight (50-100 lbs) - 272
862                                                                                   based on weight
871                                                                                         13.5, 810
874                                                                                          27, 1620
877                                                                                       application
878                                                                                          27, 1620
879                                                                                          27, 1620
880                                                                                          27, 1620
884                                                                                         13.5, 810
887                                                                                          27, 1620
891                                                                                          27, 1620
893                                                                                          27, 1620
899                                                                                          27, 1620
901                                                                                       unspecified
905                                                                                       unspecified
913                                                                         based on weight (55+ lbs)
921                                                                      based on weight (51-100 lbs)
950                                                                             1 tablet/pill/capsule
955                                                                                            collar
958                                                              272 ivermectin, 227 pyrantel pamoate
969                                                                                       unspecified
977                                                                                       application
982                                                                                       unspecified
983                                                                                       unspecified
989                                                                                   based on weight
1001                                                                                      unspecified
1017                                                                     based on weight (50-100 lbs)
1018                                                                     based on weight (60-121 lbs)
1020                                                                                     small amount
1021                                                                                         wipe/pad
1027                                                                                      unspecified
1029                                                                                       1 wipe/pad
1030                                                                                     small amount
1031                                                                                     small amount
1033                                                                                  syringe/pipette
1036                                                                                     small amount
1039                                                                                    1 bottle/vial
1042                                                                                      unspecified
1050                                                                                  based on weight
1072                                                                                      unspecified
1073                                                                                      unspecified
1074                                                                                      unspecified
1087                                                                     based on weight (60-120 lbs)
1091                                                                                     small amount
1097                                                               27 milbemycin oxime, 1620 spinosad
1099                                                                     based on weight (51-100 lbs)
1100                                                                     based on weight (51-100 lbs)
1101                                                                        based on weight (55+ lbs)
1108                                                                                       1 wipe/pad
1111                                                               460 lufenuron, 23 milbemycin oxime
1112                                                                                         wipe/pad
1116                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
1129                                                                     based on weight (21-100 lbs)
1150                                                                                     small amount
1152                                                                                      unspecified
1153                                                                     based on weight (51-100 lbs)
1154                                                                     based on weight (51-100 lbs)
1155                                                                     based on weight (51-100 lbs)
1159                                                                   based on weight (50.1-100 lbs)
1160                                                                     based on weight (51-100 lbs)
1161                                                                        based on weight (60+ lbs)
1168                                                                                  based on weight
1169                                                                      based on weight (26-50 lbs)
1170                                                                      based on weight (44-88 lbs)
1173                                                                      based on weight (45-88 lbs)
1174                                                                                         272, 228
1175                                                                                       8.8%, 9.8%
1176                                                                                         272, 228
1177                                                                                         8.8, 9.8
1179                                                                                      unspecified
1185                                                                                      unspecified
1186                                                                                      unspecified
1187                                                                                      unspecified
1189                                                                                      unspecified
1190                                                                                      unspecified
1193                                                                     based on weight (51-100 lbs)
1194                                                                     based on weight (51-100 lbs)
1195                                                                   based on weight (50.1-100 lbs)
1208                                                                        based on weight (55+ lbs)
1217                                                             272 ivermectin, 227 pyrantel pamoate
1226                                                                        based on weight (55+ lbs)
1233                                                                                      unspecified
1247                                                                     based on weight (51-100 lbs)
1285                                                                                      unspecified
1336                                                                                      unspecified
1344                                                                   based on weight (50.1-100 lbs)
1346                                                                                  moderate amount
1355                                                                     based on weight (89-132 lbs)
1371                                                                     based on weight (51-100 lbs)
1377                                                                            1 tablet/pill/capsule
1378                                                                            1 tablet/pill/capsule
1379                                                                            1 tablet/pill/capsule
1380                                                                            1 tablet/pill/capsule
1398                                                                                              1-2
1404                                                                                      unspecified
1405                                                                                      unspecified
1415                                                                                      unspecified
1419                                                                            1 tablet/pill/capsule
1420                                                                                676 dha, 1030 epa
1422                                                                     based on weight (51-100 lbs)
1434                                                                      based on weight (45-88 lbs)
1435                                                                   based on weight (50.1-100 lbs)
1438                                                                     based on weight (51-100 lbs)
1441                                                                     based on weight (51-100 lbs)
1442                                                                   based on weight (50.1-100 lbs)
1443                                                                      based on weight (44-88 lbs)
1450                                                                      based on weight (45-88 lbs)
1451                                                                     based on weight (51-100 lbs)
1459                                                                       based on weight (2-55 lbs)
1462                                                                      based on weight (56-95 lbs)
1464                                                                     based on weight (51-100 lbs)
1473                                                                                      unspecified
1475                                                                                      unspecified
1491                                                                            1 tablet/pill/capsule
1499                                                                                        27 , 1620
1500                                                             27mg milbemycin oxime, 1620 spinosad
1501                                                                                      unspecified
1511                                                                    based on weight (24.1-60 lbs)
1512                                                                        based on weight (55+ lbs)
1514                                                                    based on weight (24.1-60 lbs)
1528                                                                        based on weight (55+ lbs)
1529                                                                     based on weight (51-100 lbs)
1532                                                                        based on weight (55+ lbs)
1534                                                                        based on weight (55+ lbs)
1535                                                                     based on weight (51-100 lbs)
1536                                                                        based on weight (55+ lbs)
1537                                                            23 milbemycin oxime, 228 praziquantel
1538                                                            23 milbemycin oxime, 228 praziquantel
1539                                                                        based on weight (55+ lbs)
1541                                                                                      unspecified
1542                                                                                      unspecified
1556                                                                                         inhalant
1572                                                            23 milbemycin oxime, 228 praziquantel
1586                                                                                     small amount
1587                                                                                      unspecified
1598                                                                     based on weight (51-100 lbs)
1599                                                             272 ivermectin, 227 pyrantel pamoate
1633                                                                            1 tablet/pill/capsule
1634                                                                      based on weight (45-88 lbs)
1635                                                                              tablet/pill/capsule
1636                                                                            1 tablet/pill/capsule
1650                                                                                      unspecified
1663                                                                     based on weight (60-120 lbs)
1668                                                                                      unspecified
1683                                                                                           collar
1684                                                                                      unspecified
1685                                                                                                 
1689                                                                                  moderate amount
1692                                                                                  moderate amount
1697                                                                                  based on weight
1708                                                                                          23, 460
1710                                                               460 lufenuron, 26 milbemycin oxime
1712                                                                     based on weight (50-100 lbs)
1715                                                                     based on weight (51-100 lbs)
1718                                                               460 lufenuron, 23 milbemycin oxime
1720                                                                     based on weight (51-100 lbs)
1730                                                                            1 tablet/pill/capsule
1743                                                                                  based on weight
1747                                                                                           1 bath
1748                                                                                      application
1749                                                                     based on weight (60-120 lbs)
1756                                                                                      unspecified
1757                                                                                      unspecified
1758                                                                     based on weight (51-100 lbs)
1759                                                                     based on weight (60-121 lbs)
1760                                                                                        80  - 4.1
1761                                                                                     0.284 , 0.57
1769                                                                                      application
1773                                                                         3 tablets/pills/capsules
1774                                                                                         23 , 460
1789                                                                                      unspecified
1791                                                                                      unspecified
1794                                                                                      unspecified
1795                                                                                      unspecified
1796                                                                                      unspecified
1798                                                                         based on weight (75 lbs)
1805                                                                                     small amount
1809                                                                                      unspecified
1819                                                                                      unspecified
1820                                                                                      unspecified
1823                                                                                      unspecified
1845                                                                        based on weight (55+ lbs)
1846                                                                     based on weight (51-100 lbs)
1847                                                                        based on weight (55+ lbs)
1848                                                                     based on weight (51-100 lbs)
1849                                                                     based on weight (51-100 lbs)
1850                                                                                  0.25 inch strip
1851                                                                                     small amount
1867                                                                     based on weight (51-100 lbs)
1872                                                                     based on weight (51-100 lbs)
1877                                                                                      unspecified
1887                                                                                                 
1888                                                                                       continuous
1917                                                                     based on weight (51-100 lbs)
1922                                                                                                 
1925                                                                                      unspecified
1926                                                                                     small amount
1928                                                                     based on weight (51-100 lbs)
1929                                                                                      unspecified
1931                                                                                     small amount
1939                                                                                      unspecified
1941                                                                                      application
1945                                                                                                 
1948                                                                                  based on weight
1962                                                                     based on weight (51-100 lbs)
1965                                                                                     small amount
1980                                                                                      application
1981                                                                            1 tablet/pill/capsule
1982                                                                     based on weight (51-100 lbs)
1983                                                                        based on weight (55+ lbs)
1984                                                                                  based on weight
1985                                                                            1 tablet/pill/capsule
1994                                                                                      unspecified
1998                                                                                     small amount
2006                                                             272 ivermectin, 227 pyrantel pamoate
2012                                                                                      unspecified
2013                                                                                      unspecified
2016                                                                     based on weight (51-100 lbs)
2022                                                                                      application
2025                                                                        based on weight (55+ lbs)
2026                                                                     based on weight (50-100 lbs)
2029                                                                     based on weight (51-100 lbs)
2030                                                                                  based on weight
2032                                                                                      unspecified
2033                                                                                      unspecified
2034                                                                                      unspecified
2041                                                                     based on weight (51-100 lbs)
2042                                                                      based on weight (26-50 lbs)
2050                                                                     based on weight (51-100 lbs)
2075                                                                     based on weight (51-100 lbs)
2083                                                                      based on weight (40-85 lbs)
2084                                                                     based on weight (51-100 lbs)
2085                                                                                  based on weight
2087                                                                     based on weight (51-100 lbs)
2088                                                                      based on weight (44-88 lbs)
2089                                                                        based on weight (80+ lbs)
2091                                                                     based on weight (51-100 lbs)
2093                                                                        based on weight (80+ lbs)
2107                                                                     based on weight (51-100 lbs)
2108                                                                                  based on weight
2109                                                                     based on weight (51-100 lbs)
2110                                                                     based on weight (51-100 lbs)
2113                                                                                         tapering
2115                                                                                      unspecified
2116                                                                                      unspecified
2123                                                                            1 tablet/pill/capsule
2126                                                                     based on weight (51-100 lbs)
2127                                                                     based on weight (51-100 lbs)
2149                                                                     based on weight (51-100 lbs)
2151                                                                     based on weight (51-100 lbs)
2161                                                                     based on weight (51-100 lbs)
2165                                                                                     small amount
2166                                                                                      as directed
2195                                                                                      unspecified
2199                                                                     based on weight (51-100 lbs)
2200                                                                    based on weight (24.1-60 lbs)
2201                                                                                  based on weight
2202                                                                                  based on weight
2203                                                                                  based on weight
2204                                                                     based on weight (51-100 lbs)
2205                                                                    based on weight (24.1-60 lbs)
2206                                                                         2 tablets/pills/capsules
2207                                                                            1 tablet/pill/capsule
2211                                                                                      unspecified
2219                                                                                         1 pellet
2220                                                                                         1 pellet
2224                                                                                      unspecified
2226                                                                                      unspecified
2229                                                                                      unspecified
2233                                                                     based on weight (50-100 lbs)
2241                                                                                      application
2243                                                                     based on weight (50-100 lbs)
2244                                                                      based on weight (44-88 lbs)
2250                                                                                      unspecified
2255                                                                      based on weight (21-55 lbs)
2258                                                                                      unspecified
2259                                                                                      unspecified
2260                                                                                      unspecified
2261                                                                                      unspecified
2262                                                                                      unspecified
2263                                                                                      unspecified
2264                                                                                      unspecified
2265                                                                                      unspecified
2266                                                                                      unspecified
2269                                                                                      unspecified
2270                                                                                      unspecified
2272                                                                                      unspecified
2278                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
2279                                                                     based on weight (51-100 lbs)
2280                                                                     based on weight (51-100 lbs)
2283                                                                     based on weight (51-100 lbs)
2301                                                                                  moderate amount
2302                                                                                       0.75, 0.75
2390                                                                                                 
2398                                                                                                 
2404                                                                     based on weight (51-100 lbs)
2405                                                                      based on weight (44-88 lbs)
2409                                                                     based on weight (51-100 lbs)
2418                                                             272 ivermectin, 227 pyrantel pamoate
2428                                                                   0.5-1 tablet/pill/capsule - 16
2463                                                                                          0.5 cup
2464                                                                              tablet/pill/capsule
2467                                                                              tablet/pill/capsule
2473                                                                                     small amount
2474                                                                                     small amount
2477                                                                                        injection
2478                                                                                        injection
2479                                                                              tablet/pill/capsule
2481                                                                                                 
2482                                                                     based on weight (51-100 lbs)
2486                                                                                      as directed
2487                                                                                      as directed
2491                                                                                      application
2492                                                                                      application
2499                                                                                      unspecified
2500                                                                     based on weight (51-100 lbs)
2501                                                                       1 tablet/pill/capsule - 75
2502                                                                     2 tablets/pills/capsules - 1
2503                                                                       1 tablet/pill/capsule - 16
2504                                                                   based on weight (60.1-120 lbs)
2505                                                                            1 tablet/pill/capsule
2506                                                                            1 tablet/pill/capsule
2508                                                                              tablet/pill/capsule
2517                                                                     based on weight (51-100 lbs)
2518                                                                         2 tablets/pills/capsules
2534                                                                                      unspecified
2539                                                                     based on weight (51-100 lbs)
2540                                                                            1 tablet/pill/capsule
2542                                                                     based on weight (51-100 lbs)
2543                                                                        based on weight (18+ lbs)
2545                                                                     based on weight (50-100 lbs)
2546                                                                        based on weight (18+ lbs)
2547                                                                     based on weight (51-100 lbs)
2548                                                                        based on weight (18+ lbs)
2549                                                                                      unspecified
2550                                                                                      unspecified
2558                                                                     based on weight (50-100 lbs)
2559                                                                     based on weight (50-100 lbs)
2560                                                                                  based on weight
2562                                                                     based on weight (50-100 lbs)
2566                                                                              tablet/pill/capsule
2575                                                                                      unspecified
2578                                                                                                 
2580                                                                                      application
2583                                                                                      unspecified
2599                                                                                      unspecified
2600                                                                                      unspecified
2642                                                                                      unspecified
2651                                                                                  based on weight
2652                                                                                      unspecified
2653                                                                                      unspecified
2655                                                                                      unspecified
2659                                                                                          1 scoop
2660                                                                                      unspecified
2661                                                                                      unspecified
2710                                                                     based on weight (51-100 lbs)
2721                                                                                      application
2726                                                                     based on weight (50-100 lbs)
2731                                                                                        13.5, 810
2735                                                                                        13.5, 810
2737                                                                                     23, 228, 460
2738                                                                     based on weight (51-100 lbs)
2739                                                                     based on weight (60-120 lbs)
2742                                                                     based on weight (51-100 lbs)
2743                                                                      based on weight (44-88 lbs)
2745                                                                     based on weight (50-100 lbs)
2746                                                                      based on weight (44-88 lbs)
2748                                                                     based on weight (51-100 lbs)
2749                                                                      based on weight (44-88 lbs)
2753                                                                     based on weight (50-100 lbs)
2756                                                                         based on weight (80 lbs)
2805                                                               based on weight (45-88 lbs) - 2.68
2815                                                                                         300, 600
2818                                                                                  0.25 inch strip
2825                                                                     based on weight (51-100 lbs)
2827                                                                     based on weight (51-100 lbs)
2828                                                                     based on weight (51-100 lbs)
2833                                                                     based on weight (51-100 lbs)
2838                                                                     based on weight (50-100 lbs)
2839                                                                                     small amount
2842                                                                                     small amount
2844                                                                                  0.25 inch strip
2846                                                                     based on weight (50-100 lbs)
2855                                                                                      unspecified
2869                                                                            1 tablet/pill/capsule
2897                                                                            lather and then rinse
2900                                                                                      application
2903                                                                                      unspecified
2904                                                                                  moderate amount
2905                                                                                             bath
2907                                                                                   1 pack/package
2911                                                                            1 tablet/pill/capsule
2912                                                                            1 tablet/pill/capsule
2913                                                                                   1 pack/package
2919                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
2920                                                    based on weight (60-120 lbs) - 136 afoxolaner
2921                                                                                   1 pack/package
2922                                                                     based on weight (50-100 lbs)
2923                                                                     based on weight (60-121 lbs)
2925                                                                                      unspecified
2941                                                               460 lufenuron, 23 milbemycin oxime
2942                                               8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                     based on weight (51-100 lbs)
2944                                                                        based on weight (55+ lbs)
2946                                                                                    1 bottle/vial
2958                                                                     based on weight (51-100 lbs)
2959                                                                     based on weight (51-100 lbs)
2960                                                                            1 tablet/pill/capsule
2961                                                                                      unspecified
2962                                                                                      unspecified
2963                                                                                      unspecified
2964                                                                                      unspecified
2974                                                                     based on weight (51-100 lbs)
2975                                                                      based on weight (45-88 lbs)
2978                                                                   based on weight (50.1-100 lbs)
2981                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
2988                                                                                  based on weight
2993                                                                                      unspecified
2997                                                                       1.5 tablets/pills/capsules
3002                                                                  1.5 tablets/pills/capsules - 20
3003                                                                                     small amount
3007                                                                      based on weight (45-88 lbs)
3028                                                                      based on weight (45-88 lbs)
3031                                                                                      unspecified
3055                                                                                      application
3058                                                                                      application
3060                                                                                      unspecified
3095                                                                         2 tablets/pills/capsules
3110                                                                                     small amount
3119                                                                                      as directed
3147                                                                                      unspecified
3179                                                                            1 tablet/pill/capsule
3180                                                                                      unspecified
3208                                                                            1 tablet/pill/capsule
3209                                                                            1 tablet/pill/capsule
3246                                                                     based on weight (50-100 lbs)
3247                                                                     based on weight (50-100 lbs)
3250                                                                     based on weight (50-100 lbs)
3251                                                                     based on weight (50-100 lbs)
3253                                                                     based on weight (50-100 lbs)
3257                                                                     based on weight (50-100 lbs)
3271                                                                     based on weight (51-100 lbs)
3278                                                                                  0.25 inch strip
3280                                                                     based on weight (50-100 lbs)
3284                                                                     based on weight (51-100 lbs)
3287                                                                                      application
3291                                                                                      application
3293                                                                                      application
3294                                                                     based on weight (51-100 lbs)
3300                                                                     based on weight (51-100 lbs)
3305                                                                                     small amount
3312                                                                                     small amount
3313                                                                                     small amount
3339                                                                     based on weight (51-100 lbs)
3342                                                                                      unspecified
3345                                                                                          23, 460
3346                                                               460 lufenuron, 23 milbemycin oxime
3350                                                                                      unspecified
3360                                                                                  based on weight
3366                                                                                      unspecified
3372                                                                                      unspecified
3375                                                                            based on weight - 1.5
3376                                                                                      application
3394                                                                                      unspecified
3399                                                              13.5 milbemycin oxime, 810 spinosad
3403                                                                                        13.5, 810
3404                                                                            1 tablet/pill/capsule
3405                                                                            1 tablet/pill/capsule
3421                                                                                      unspecified
3422                                                                                                 
3425                                                                                      unspecified
3426                                                                                      unspecified
3429                                                                       based on weight (4-60 lbs)
3437                                                                                     small amount
3445                                                                                      unspecified
3446                                                                                      unspecified
3447                                                                                      unspecified
3448                                                                                      unspecified
3449                                                                                      unspecified
3451                                                                                          23, 460
3455                                                                                          23, 460
3456                                                                      based on weight (45-88 lbs)
3457                                                                     based on weight (51-100 lbs)
3458                                                                      based on weight (45-88 lbs)
3459                                                                                          23, 460
3488                                                                        based on weight (25+ lbs)
3490                                                                    based on weight (44.1-88 lbs)
3491                                                                     based on weight (51-100 lbs)
3492                                                                    based on weight (44.1-88 lbs)
3495                                                                     based on weight (51-100 lbs)
3496                                                                    based on weight (44.1-88 lbs)
3497                                                                     based on weight (51-100 lbs)
3498                                                                    based on weight (44.1-88 lbs)
3512                                                                     based on weight (50-100 lbs)
3513                                                                     based on weight (50-100 lbs)
3514                                                                     based on weight (50-100 lbs)
3515                                                                     based on weight (50-100 lbs)
3516                                                                     based on weight (50-100 lbs)
3517                                                                                      unspecified
3519                                                                     based on weight (51-100 lbs)
3520                                                                                  based on weight
3522                                                                     based on weight (51-100 lbs)
3525                                                             272 ivermectin, 227 pyrantel pamoate
3530                                                                                         0.5%, 3%
3531                                                                                      unspecified
3535                                                                                      unspecified
3581                                                                              tablet/pill/capsule
3619                                                                                          23, 228
3622                                                                                     pack/package
3631                                                                            1 tablet/pill/capsule
3632                                                                            1 tablet/pill/capsule
3635                                                                      based on weight (44-88 lbs)
3639                                                                                      application
3640                                                                                      application
3641                                                                                      application
3649                                                                                        100 , 400
3650                                                                        based on weight (<80 lbs)
3652                                                                              tablet/pill/capsule
3666                                                                                                 
3667                                                                                     small amount
3675                                                                                     small amount
3684                                                                                      unspecified
3685                                                                                      unspecified
3691                                                                                      unspecified
3692                                                                                      unspecified
3693                                                                                                 
3698                                                                      based on weight (40-85 lbs)
3699                                                                      based on weight (40-85 lbs)
3701                                                                     based on weight (51-100 lbs)
3704                                                                     based on weight (50-100 lbs)
3705                                                                                  based on weight
3706                                                                     based on weight (50-100 lbs)
3710                                                                                      unspecified
3718                                                                                     small amount
3719                                                                     based on weight (51-100 lbs)
3725                                                                     based on weight (51-100 lbs)
3726                                                                     based on weight (51-100 lbs)
3735                                                                                             gtts
3741                                                                                      unspecified
3742                                                                                      unspecified
3743                                                                                      unspecified
3744                                                                                      unspecified
3745                                                                                      unspecified
3750                                                                                         23 , 460
3760                                                               27 milbemycin oxime, 1620 spinosad
3773                                                                                      application
3784                                                                      1 tablet/pill/capsule - 250
3785                                                                        1 tablet/pill/capsule - 5
3786                                                                       1 tablet/pill/capsule - 20
3789                                                                                      unspecified
3797                                                                                                 
3798                                                                                      as directed
3800                                                                                      application
3815                                                                                  based on weight
3829                                                                                     small amount
3835                                                                     based on weight (50-100 lbs)
3836                                                                     based on weight (60-120 lbs)
3838                                                                     based on weight (60-120 lbs)
3840                                                                                     small amount
3848                                                                                  0.25 inch strip
3857                                                                     based on weight (51-100 lbs)
3858                                                                      based on weight (23-44 lbs)
3859                                                                      based on weight (26-50 lbs)
3860                                                                    based on weight (24.1-60 lbs)
3861                                                                                      unspecified
3867                                                                                     small amount
3870                                                                     based on weight (50-100 lbs)
3871                                                                     based on weight (60-120 lbs)
3872                                                                     based on weight (60-120 lbs)
3874                                                                                     small amount
3881                                                                     based on weight (51-100 lbs)
3886                                                                     based on weight (51-100 lbs)
3889                                                                     based on weight (51-100 lbs)
3897                                                                     based on weight (51-100 lbs)
3898                                                                                      unspecified
3900                                                                     based on weight (51-100 lbs)
3903                                                                     based on weight (51-100 lbs)
3906                                                                     based on weight (51-100 lbs)
3911                                                                     based on weight (51-100 lbs)
3938                                                                     based on weight (51-100 lbs)
3943                                                                     based on weight (51-100 lbs)
3945                                                                                             8 oz
3946                                                                    based on weight (24.1-60 lbs)
3952                                                                     based on weight (51-100 lbs)
3972                                                                    based on weight (40.1-60 lbs)
3980                                                                     based on weight (51-100 lbs)
3984                                                                     based on weight (51-100 lbs)
3989                                                                     based on weight (51-100 lbs)
3990                                                                     based on weight (51-100 lbs)
4000                                                                                      unspecified
4017                                                                     based on weight (51-100 lbs)
4030                                                                                        27 , 1620
4031                                                                   based on weight (60.1-120 lbs)
4042                                                                                      unspecified
4045                                                                            1 tablet/pill/capsule
4058                                                                     based on weight (51-100 lbs)
4059                                                  2 prednisolone acetate, 5 trimeprazine tartrate
4060                                                             272 ivermectin, 227 pyrantel pamoate
4063                                                                     based on weight (51-100 lbs)
4064                                                                      based on weight (44-88 lbs)
4066                                                                                      unspecified
4067                                                                                      unspecified
4068                                                                                      unspecified
4069  2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
4070                                                                       1 tablet/pill/capsule - 16
4071                                                                                     small amount
4072                                                                            1 tablet/pill/capsule
4073                                                                            1 tablet/pill/capsule
4074                                                                                  based on weight
4075                                                                                  based on weight
4077                                                                                  based on weight
4087                                                                                      unspecified
4088                                                                                      unspecified
4089                                                                                      unspecified
4092                                                                                1 syringe/pipette
4095                                                                            1 tablet/pill/capsule
4097                                                                       1 tablet/pill/capsule - 80
4111                                                                     based on weight (60-120 lbs)
4112                                                                     based on weight (50-100 lbs)
4113                                                                                     small amount
4114                                                                                     small amount
4116                                                                                         tapering
4117                                                                      based on weight (45-88 lbs)
4118                                                                     based on weight (60-120 lbs)
4119                                                                                     small amount
4120                                                                     based on weight (60-120 lbs)
4125                                                                                         27, 1620
4127                                                                     based on weight (51-100 lbs)
4128                                                                   based on weight (60.1-121 lbs)
4131                                                                                                 
4132                                                                                      unspecified
4133                                                                                      unspecified
4134                                                                                      unspecified
4162                                                                     based on weight (50-100 lbs)
4172                                                                      based on weight (45-88 lbs)
4183                                                                      based on weight (40-85 lbs)
4184                                                                      based on weight (40-85 lbs)
4189                                                                            1 tablet/pill/capsule
4190                                                                            1 tablet/pill/capsule
4191                                                                     based on weight (60-120 lbs)
4193                                                                                      application
4198                                                                     based on weight (60-120 lbs)
4199                                                                     based on weight (50-100 lbs)
4209                                                                            1 tablet/pill/capsule
4210                                                                     based on weight (60-120 lbs)
4212                                                                                        13.5, 810
4213                                                                                     23, 228, 460
4215                                                                                          23, 460
4216                                                                                      unspecified
4218                                                                                      unspecified
4245                                                                                              4-5
4247                                                                                      unspecified
4266                                                                                      as directed
4274                                                                                      unspecified
4298                                                                      based on weight (45-88 lbs)
4299                                                                     based on weight (51-100 lbs)
4302                                                                     based on weight (51-100 lbs)
4304                                                                     based on weight (51-100 lbs)
4305                                                                      based on weight (45-88 lbs)
4306                                                                                      unspecified
4307                                                                     based on weight (51-100 lbs)
4308                                                                     based on weight (51-100 lbs)
4309                                                                      based on weight (45-88 lbs)
4311                                                                                      unspecified
4313                                                                     based on weight (50-100 lbs)
4314                                                                      based on weight (44-88 lbs)
4323                                                                      based on weight (40-85 lbs)
4324                                                                                     small amount
4325                                                                     based on weight (50-100 lbs)
4326                                                                                           powder
4336                                                                                      unspecified
4338                                                                   based on weight (50.1-100 lbs)
4348                                                                                  0.25 inch strip
4349                                                                      based on weight (40-60 lbs)
4350                                                                     based on weight (60-120 lbs)
4353                                                                      based on weight (40-60 lbs)
4354                                                                      based on weight (41-60 lbs)
4368                                                                                  based on weight
4371                                                                                  based on weight
4384                                                                                         350, 900
4389                                                                     based on weight (51-100 lbs)
4390                                                                     based on weight (88-123 lbs)
4395                                                             272 ivermectin, 227 pyrantel pamoate
4405                                                                                        13.5, 810
4409                                                                                   1 pack/package
4426                                                                     based on weight (51-100 lbs)
4427                                                                        based on weight (55+ lbs)
4428                                                                         based on weight (60 lbs)
4430                                                                                                 
4431                                                                                                 
4444                                                                        based on weight (<88 lbs)
4445                                                                            1 tablet/pill/capsule
4446                                                                                   1 pack/package
4454                                                                                         inhalant
4469                                                                                     small amount
4470                                                                                      application
4471                                                                                         wipe/pad
4472                                                                                     small amount
4480                                                                                     small amount
4481                                                                                       1 wipe/pad
4483                                                                                  based on weight
4486                                                                         3 tablets/pills/capsules
4497                                                                     based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
4500                                                    based on weight (60-120 lbs) - 136 afoxolaner
4501                                                                                      as directed
4502                                                                     based on weight (60-120 lbs)
4504                                                                                      as directed
4505                                                                     based on weight (50-100 lbs)
4509                                                                            1 tablet/pill/capsule
4510                                                                            1 tablet/pill/capsule
4511                                                                         3 tablets/pills/capsules
4515                                                                            1 tablet/pill/capsule
4516                                                                            1 tablet/pill/capsule
4517                                                                                   1 pack/package
4524                                                                     based on weight (50-100 lbs)
4532                                                                     based on weight (50-100 lbs)
4533                                                                                                 
4536                                                                     based on weight (50-100 lbs)
4544                                                                                      unspecified
4545                                                                     based on weight (51-100 lbs)
4547                                                                                     small amount
4558                                                                     based on weight (51-100 lbs)
4559                                                                        based on weight (50+ lbs)
4560                                                                        based on weight (50+ lbs)
4561                                                                                              1-2
4562                                                                      based on weight (45-88 lbs)
4564                                                                     based on weight (51-100 lbs)
4565                                                                      based on weight (44-88 lbs)
4566                                                                     based on weight (50-100 lbs)
4567                                                                      based on weight (44-88 lbs)
4568                                                                      based on weight (44-88 lbs)
4569                                                                        based on weight (50+ lbs)
4587                                                                     based on weight (51-100 lbs)
4597                                                                                      unspecified
4599                                                             272 ivermectin, 227 pyrantel pamoate
4611                                                                                         27, 1620
4627                                                                                      2.68of 9.7%
4628                                                                                      2.68of 8.8%
4629                                                               460 lufenuron, 23 milbemycin oxime
4631                                                                                      2.68of 9.8%
4634                                                                                      unspecified
4638                                                                                      2.68of 9.8%
4640                                                                                            15 au
4642                                                            23 milbemycin oxime, 228 praziquantel
4643                                                                                     small amount
4648                                                            23 milbemycin oxime, 228 praziquantel
4649                                                                                      2.68of 9.8%
4651                                                                                     small amount
4652                                                                                  moderate amount
4654                                                                      based on weight (44-88 lbs)
4655                                                            23 milbemycin oxime, 228 praziquantel
4695                                                                     based on weight (50-110 lbs)
4717                                                                     based on weight (60-120 lbs)
4719                                                                                                 
4720                                                                                                 
4726                                                                     based on weight (51-100 lbs)
4738                                                                     based on weight (60-120 lbs)
4739                                                                     based on weight (60-120 lbs)
4743                                                                                      application
4744                                                                                      application
4745                                                               27 milbemycin oxime, 1620 spinosad
4748                                                                                           1 unit
4757                                                                                  based on weight
4760                                                                            1 tablet/pill/capsule
4763                                                                        based on weight (55+ lbs)
4764                                                                      based on weight (21-55 lbs)
4766                                                                        based on weight (55+ lbs)
4777                                                                                      unspecified
4780                                                                                      unspecified
4782                                                                                      unspecified
4801                                                                                         tapering
4802                                                                     based on weight (51-110 lbs)
4805                                                                                                 
4806                                                                   based on weight (60.1-121 lbs)
4813                                                                                      unspecified
4824                                                                      based on weight (20-55 lbs)
4826                                                                                      unspecified
4828                                                                                      unspecified
4832                                                                                           0.1, 1
4853                                                                                     small amount
4855                                                                                         27, 1620
4858                                                                                         27, 1620
4859                                                             272 ivermectin, 227 pyrantel pamoate
4861                                                             272 ivermectin, 227 pyrantel pamoate
4862                                                             272 ivermectin, 227 pyrantel pamoate
4881                                                                                     small amount
4902                                                    5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                         27, 1620
4905                                                                                         27, 1620
4910                                                                                           collar
4912                                                                                          23, 228
4913                                                                                           collar
4914                                                                                          23, 228
4917                                                                                         23 , 228
4935                                                                     based on weight (51-100 lbs)
4956                                                                                      unspecified
4960                                                                                     small amount
4968                                                                                         27, 1620
4969                                                            2-3 tablets/pills/capsules - 400, 500
4980                                                                                     pack/package
4981                                                                                          23, 228
4996                                                                                      unspecified
4998                                                                                      unspecified
5043                                                                                                 
5046                                                                                                 
5078                                                                      based on weight (40-60 lbs)
5122                                                                     based on weight (51-100 lbs)
5123                                                                     based on weight (60-121 lbs)
5127                                                                                        injection
5134                                                                                  based on weight
5140                                                                                      750, 187, 5
5159                                                                                      unspecified
5160                                                                                      unspecified
5161                                                                                      unspecified
5173                                                                     based on weight (51-100 lbs)
5174                                                                     based on weight (60-120 lbs)
5191                                                                                         27, 1620
5193                                                                                      application
5195                                                                        based on weight (18+ lbs)
5203                                                                     based on weight (50-100 lbs)
5210                                                                                  moderate amount
5211                                                                                  moderate amount
5212                                                                                  moderate amount
5213                                                                                  moderate amount
5214                                                                     based on weight (51-100 lbs)
5220                                                                                                 
5221                                                                                                 
5222                                                                        based on weight (55+ lbs)
5223                                                                     based on weight (51-100 lbs)
5225                                                                     based on weight (51-100 lbs)
5234                                                                                  based on weight
5235                                                                     based on weight (51-100 lbs)
5243                                                                     based on weight (51-100 lbs)
5244                                                                        based on weight (55+ lbs)
5247                                                                     based on weight (51-100 lbs)
5248                                                                     based on weight (51-100 lbs)
5253                                                                     based on weight (51-100 lbs)
5255                                                                     based on weight (51-100 lbs)
5256                                                                     based on weight (51-100 lbs)
5257                                                                     based on weight (51-100 lbs)
5258                                                                     based on weight (51-100 lbs)
5261                                                                     based on weight (51-100 lbs)
5262                                                                                  based on weight
5264                                                                        based on weight (55+ lbs)
5265                                                                     based on weight (51-100 lbs)
5270                                                                     based on weight (51-100 lbs)
5271                                                                     based on weight (51-100 lbs)
5289                                                                     based on weight (50-100 lbs)
5332                                                                                         1 collar
5333                                                                                      unspecified
5334                                                                                  based on weight
5335                                                                                           collar
5336                                                                         2 tablets/pills/capsules
5337                                                                                      unspecified
5340                                                                     based on weight (51-100 lbs)
5354                                                                                           collar
5357                                                                                                 
5359                                                             272 ivermectin, 227 pyrantel pamoate
5360                                                             272 ivermectin, 227 pyrantel pamoate
5362                                                                         3 tablets/pills/capsules
5369                                                                     based on weight (50-100 lbs)
5377                                                             272 ivermectin, 227 pyrantel pamoate
5378                                                               8.8% (s)-methoprene, 9.8% fipronil
5379                                                                     based on weight (51-100 lbs)
5384                                                            23 milbemycin oxime, 228 praziquantel
5385                                                                                      unspecified
5386                                                                                      unspecified
5387                                                                                      unspecified
5388                                                                                      unspecified
5391                                                                     based on weight (60-121 lbs)
5392                                                                     based on weight (51-100 lbs)
5403                                                                        based on weight (100 lbs)
5424                                                                                     small amount
5428                                                                                                 
5440                                                                                      unspecified
5460                                                                                     small amount
5464                                                                                         27, 1620
5483                                                                            1 tablet/pill/capsule
5484                                                                  2 tablets/pills/capsules - 1200
5491                                                                      based on weight (45-88 lbs)
5492                                                                     based on weight (51-100 lbs)
5497                                                                     based on weight (51-100 lbs)
5498                                                                     based on weight (51-100 lbs)
5499                                                                      based on weight (45-88 lbs)
5500                                                                     based on weight (51-100 lbs)
5501                                                                                     small amount
5502                                                                                    1 bottle/vial
5507                                                                     based on weight (51-100 lbs)
5508                                                                     based on weight (51-100 lbs)
5509                                                                     based on weight (51-100 lbs)
5511                                                                     based on weight (51-100 lbs)
5513                                                                     based on weight (51-100 lbs)
5527                                                                                     small amount
5528                                                                                      application
5529                                                                                                 
5533                                                                                     small amount
5534                                                                                  based on weight
5535                                                                                     small amount
5537                                                                                     small amount
5541                                                                     based on weight (51-100 lbs)
5542                                                                      based on weight (45-88 lbs)
5545                                                                                  based on weight
5546                                                                                  based on weight
5552                                                                     based on weight (51-100 lbs)
5553                                                                                  based on weight
5557                                                                     based on weight (51-100 lbs)
5568                                                                     based on weight (51-100 lbs)
5571                                                                     based on weight (51-100 lbs)
5576                                                                     based on weight (51-100 lbs)
5577                                                                                      unspecified
5578                                                                     based on weight (51-100 lbs)
5595                                                                     based on weight (51-100 lbs)
5600                                                                     based on weight (51-100 lbs)
5602                                                                     based on weight (51-100 lbs)
5607                                                               460 lufenuron, 23 milbemycin oxime
5626                                                                     based on weight (51-100 lbs)
5627                                                                     based on weight (51-100 lbs)
5628                                                                     based on weight (61-120 lbs)
5629                                                                     based on weight (51-100 lbs)
5630                                                                     based on weight (60-120 lbs)
5631                                                                     based on weight (51-100 lbs)
5632                                                                      based on weight (24-60 lbs)
5649                                                                                    5 billion cfu
5681                                                                     based on weight (60-120 lbs)
5682                                                                     based on weight (51-100 lbs)
5695                                                                                      unspecified
5721                                                               27 milbemycin oxime, 1620 spinosad
5722                                                                                        27 , 1620
5723                                                               27 milbemycin oxime, 1620 spinosad
5724                                                               27 milbemycin oxime, 1620 spinosad
5725                                                                                         27, 1620
5728                                                               27 milbemycin oxime, 1620 spinosad
5729                                                                                      unspecified
5731                                                                                      unspecified
5747                                                                                  based on weight
5760                                                                                      unspecified
5762                                                                                  based on weight
5768                                                                     based on weight (51-100 lbs)
5771                                                            23 milbemycin oxime, 228 praziquantel
5777                                                                                      unspecified
5804                                                                                          13, 228
5814                                                                                      unspecified
5834                                                             272 ivermectin, 227 pyrantel pamoate
5839                                                                     based on weight (51-100 lbs)
5840                                                                                          23, 460
5858                                                                                  0.25 inch strip
5869                                                                     based on weight (51-100 lbs)
5877                                                                                  based on weight
5884                                                                                      unspecified
5887                                                                                     small amount
5913                                                                                  based on weight
5917                                                                                              6-8
5930                                                                     based on weight (51-100 lbs)
5932                                                                                      unspecified
5933                                                                      based on weight (44-88 lbs)
5934                                                                     based on weight (51-100 lbs)
5935                                                                                                 
5936                                                                     based on weight (51-100 lbs)
5937                                                                      based on weight (44-88 lbs)
5941                                                                     based on weight (51-100 lbs)
5942                                                                      based on weight (44-88 lbs)
5945                                                                                       1 wipe/pad
5963                                                                     based on weight (51-100 lbs)
5964                                                                   based on weight (60.1-121 lbs)
5965                                                               460 lufenuron, 23 milbemycin oxime
5967                                                                                    460 lufenuron
5976                                                                                      as directed
5980                                                                            1 tablet/pill/capsule
5981                                                                              tablet/pill/capsule
5988                                                                                  based on weight
5991                                                                                  based on weight
5992                                                                                  based on weight
5993                                                             272 ivermectin, 227 pyrantel pamoate
5994                                                                      based on weight (44-88 lbs)
6000                                                               460 lufenuron, 23 milbemycin oxime
6002                                                                        based on weight (55+ lbs)
6003                                                               460 lufenuron, 23 milbemycin oxime
6004                                                          8.8% imidacloprid, 44% permethrin - 4ml
6014                                                                                      unspecified
6015                                                                                      unspecified
6016                                                                                      unspecified
6017                                                                                      unspecified
6036                                                                                         27, 1620
6038                                                                     based on weight (51-100 lbs)
6039                                                                            1 tablet/pill/capsule
6059                                                                     based on weight (51-100 lbs)
6063                                                                                     small amount
6068                                                                     based on weight (50-100 lbs)
6069                                                                      based on weight (55-95 lbs)
6071                                                                                      unspecified
6072                                                                                  based on weight
6076                                                                                           collar
6078                                                                                           collar
6088                                                                                  0.25 inch strip
6090                                                                                  0.25 inch strip
6093                                                                                      unspecified
6095                                                                                              1-2
6101                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
6102                                           1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
6104                                                                                     23, 228, 460
6109                                                                                90, 350, 800, 900
6129                                                                            1 tablet/pill/capsule
6130                                                                            1 tablet/pill/capsule
6132                                                                     based on weight (51-100 lbs)
6133                                                                     based on weight (60-120 lbs)
6134                                                                     based on weight (51-100 lbs)
6135                                                                      based on weight (44-88 lbs)
6136                                                                     based on weight (51-100 lbs)
6137                                                                      based on weight (44-88 lbs)
6139                                                                     based on weight (51-100 lbs)
6140                                                                      based on weight (44-88 lbs)
6148                                                                   based on weight (60.1-120 lbs)
6149                                                                            1 tablet/pill/capsule
6150                                                                            1 tablet/pill/capsule
6161                                                                                          23, 460
6164                                                                                     small amount
6200                                                                     based on weight (88-132 lbs)
6202                                                                     based on weight (60-120 lbs)
6206                                                                                      application
6208                                                                                      application
6217                                                                                       14.8, 16.6
6218                                                                                           varies
6221                                                                                             5-10
6224                                                                     based on weight (50-100 lbs)
6225                                                                   based on weight (88.1-132 lbs)
6226                                                                        based on weight (60+ lbs)
6231                                                                     based on weight (50-100 lbs)
6232                                                                   based on weight (88.1-132 lbs)
6244                                                                                      unspecified
6254                                                                            1 tablet/pill/capsule
6257                                                                      based on weight (40-85 lbs)
6258                                                                     based on weight (50-100 lbs)
6262                                                                            1 tablet/pill/capsule
6263                                                                            1 tablet/pill/capsule
6266                                                                                      application
6267                                                                                     small amount
6275                                                                                      unspecified
6282                                                             272 ivermectin, 227 pyrantel pamoate
6283                                                                      based on weight (44-88 lbs)
6284                                                                                          410 epa
6293                                                                      based on weight (24-60 lbs)
6302                                                             272 ivermectin, 227 pyrantel pamoate
6307                                                                                        62.5, 437
6312                                                                                      unspecified
6319                                                                                      unspecified
6320                                                                                      unspecified
6325                                                                            1 tablet/pill/capsule
6326                                                                                      application
6328                                                                         2 tablets/pills/capsules
6329                                                                            1 tablet/pill/capsule
6331                                                                     based on weight (51-100 lbs)
6341                                                                            1 tablet/pill/capsule
6343                                                                            1 tablet/pill/capsule
6358                                                                                      unspecified
6390                                                                                      unspecified
6395                                                                      based on weight (45-88 lbs)
6405                                                                      based on weight (44-88 lbs)
6406                                                                                  based on weight
6411                                                                                     small amount
6437                                                             272 ivermectin, 227 pyrantel pamoate
6441                                                                                       1200, 1500
6444                                                                     based on weight (51-100 lbs)
6451                                                                                      unspecified
6459                                                                                       1200, 1500
6461                                                                                      unspecified
6474                                                                     based on weight (51-100 lbs)
6475                                                                      based on weight (44-88 lbs)
6486                                                         28.75 milbemycin oxime, 285 praziquantel
6495                                                                                                 
6499                                                                     based on weight (51-100 lbs)
6500                                                                      based on weight (44-88 lbs)
6522                                                                     based on weight (51-100 lbs)
6523                                                                    based on weight (24.1-60 lbs)
6527                                                                     based on weight (51-100 lbs)
6528                                                                    based on weight (24.1-60 lbs)
6555                                                                     based on weight (51-100 lbs)
6562                                                                                  moderate amount
6565                                                                            1 tablet/pill/capsule
6569                                                                     based on weight (51-100 lbs)
6570                                                                      based on weight (44-88 lbs)
6571                                                                                      unspecified
6573                                                                      based on weight (45-88 lbs)
6579                                                                                  based on weight
6581                                                             272 ivermectin, 227 pyrantel pamoate
6594                                                                     based on weight (51-100 lbs)
6602                                                                     based on weight (51-100 lbs)
6606                                                             272 ivermectin, 227 pyrantel pamoate
6612                                                                   based on weight (50.1-100 lbs)
6625                                                                     based on weight (51-100 lbs)
6636                                                                     based on weight (50-100 lbs)
6644                                                                     based on weight (51-100 lbs)
6647                                                                     based on weight (51-100 lbs)
6648                                                                      based on weight (44-88 lbs)
6650                                                                                      application
6657                                                                            1 tablet/pill/capsule
6658                                                                                  based on weight
6662                                                                                      unspecified
6663                                                                     based on weight (51-100 lbs)
6680                                                                                      unspecified
6683                                                                                     small amount
6687                                                                                      unspecified
6688                                                                                      unspecified
6693                                                                            1 tablet/pill/capsule
6694                                                                         2 tablets/pills/capsules
6696                                                                                  based on weight
6697                                                                         based on weight (58 lbs)
6698                                                                                      unspecified
6702                                                                                      unspecified
6703                                                                                  based on weight
6714                                                                                             5-10
6715                                                                      based on weight (26-50 lbs)
6716                                                                                      unspecified
6717                                                                                      unspecified
6733                                                             272 ivermectin, 227 pyrantel pamoate
6751                                                                                      unspecified
6759                                                                                      application
6760                                                                                      unspecified
6763                                                                     based on weight (51-100 lbs)
6764                                                                      based on weight (44-88 lbs)
6778                                                                     based on weight (51-100 lbs)
6779                                                                     based on weight (51-100 lbs)
6781                                                                     based on weight (51-100 lbs)
6783                                                                   based on weight (50.1-100 lbs)
6786                                                                        based on weight (55+ lbs)
6796                                                                     based on weight (51-100 lbs)
6797                                                                                          23, 228
6815                                                                     based on weight (51-100 lbs)
6816                                                                                  0.25 inch strip
6817                                                                                  0.25 inch strip
6818                                                                                              5-8
6824                                                                                      unspecified
6826                                                                                      unspecified
6828                                                                     based on weight (51-100 lbs)
6868                                                                                      as directed
6880                                                                                      as directed
6886                                                                                      application
6891                                                                                      application
6892                                                                                     small amount
6909                                                                            1 tablet/pill/capsule
6910                                                                     based on weight (50-100 lbs)
6928                                                                                      application
6934                                                                                     small amount
6935                                                                                      unspecified
6936                                                                                     small amount
6946                                                                                         27, 1620
6956                                                                                      unspecified
6957                                                                                      unspecified
6981                                                                      based on weight (44-88 lbs)
6982                                                                     based on weight (51-100 lbs)
6983                                                                     based on weight (55-100 lbs)
6984                                                                            1 tablet/pill/capsule
6986                                                                                      unspecified
7002                                                               27 milbemycin oxime, 1620 spinosad
7005                                                                                      unspecified
7006                                                                                      unspecified
7017                                                                      based on weight (44-88 lbs)
7021                                                                      based on weight (44-88 lbs)
7025                                                                                      unspecified
7027                                                                                  0.25 inch strip
7030                                                                            1 tablet/pill/capsule
7042                                                                                     small amount
7054                                                             272 ivermectin, 227 pyrantel pamoate
7067                                                                            1 tablet/pill/capsule
7071                                                                                      unspecified
7092                                                                                                 
7093                                                                     based on weight (60-120 lbs)
7095                                                                                         27, 1620
7096                                                                                         27, 1620
7116                                                                                      unspecified
7127                                                                                      unspecified
7130                                                                                         27, 1620
7131                                                                                         272, 228
7137                                                                                  based on weight
7149                                                                     based on weight (60-120 lbs)
7151                                                                                     small amount
7152                                                                                   1 pack/package
7153                                                                                     small amount
7154                                                                                     small amount
7155                                                                                     small amount
7172                                                                                           powder
7173                                                                                         wipe/pad
7175                                                                                      application
7177                                                                                                 
7180                                                                                                 
7189                                                                                      unspecified
7208                                                                                  0.25 inch strip
7218                                                               27 milbemycin oxime, 1620 spinosad
7243                                                             272 ivermectin, 227 pyrantel pamoate
7247                                                                                  based on weight
7248                                                                    based on weight (21.1-60 lbs)
7249                                                                     based on weight (50-110 lbs)
7260                                                        64000 amylase, 9000 lipase, 5700 protease
7261                                                                            1 tablet/pill/capsule
7262                                                                         5 tablets/pills/capsules
7291                                                                      based on weight (44-88 lbs)
7295                                                                      based on weight (44-88 lbs)
7297                                                                                      unspecified
7320                                                                     based on weight (51-100 lbs)
7342                                                                      based on weight (45-88 lbs)
7344                                                                                      unspecified
7345                                                                                      unspecified
7346                                                                      based on weight (45-88 lbs)
7371                                                                                     small amount
7413                                                                     based on weight (51-100 lbs)
7499                                                             272 ivermectin, 227 pyrantel pamoate
7503                                                                                  based on weight
7510                                                                            1 tablet/pill/capsule
7511                                                                            1 tablet/pill/capsule
7512                                                                            1 tablet/pill/capsule
7513                                                                              tablet/pill/capsule
7519                                                             272 ivermectin, 227 pyrantel pamoate
7521                                                             272 ivermectin, 227 pyrantel pamoate
7524                                                                                      unspecified
7525                                                             272 ivermectin, 227 pyrantel pamoate
7526                                                                      1 tablet/pill/capsule - 136
7551                                                                            1 tablet/pill/capsule
7555                                                                     based on weight (88-123 lbs)
7563                                                                     based on weight (51-100 lbs)
7564                                                                                      unspecified
7565                                                                     based on weight (51-100 lbs)
7566                                                                     based on weight (51-100 lbs)
7576                                                                                    1 bottle/vial
7577                                                               460 lufenuron, 23 milbemycin oxime
7578                                                                            1 tablet/pill/capsule
7579                                                                            1 tablet/pill/capsule
7580                                                                          0.5 tablet/pill/capsule
7583                                                                     based on weight (51-100 lbs)
7584                                                                                  based on weight
7585                                                                                      unspecified
7586                                                                                      unspecified
7587                                                                                      unspecified
7588                                                                                      unspecified
7589                                                                                      unspecified
7590                                                                                      unspecified
7598                                                                                       1 wipe/pad
7635                                                                                         10 , 100
7660                                                                     based on weight (51-100 lbs)
7671                                                                                          40, 200
7673                                                                                      unspecified
7674                                                                                      unspecified
7675                                                              13.5 milbemycin oxime, 810 spinosad
7678                                                                                  0.25 inch strip
7679                                                                                     small amount
7681                                                                      based on weight (40-60 lbs)
7692                                                                                         23 , 228
7696                                                                                          23, 228
7699                                                                                          23, 228
7701                                                                                          23, 228
7705                                                                                     small amount
7732                                                                                  based on weight
7742                                                                                      unspecified
7743                                                                      based on weight (44-88 lbs)
7746                                                                                  based on weight
7747                                                                      based on weight (44-88 lbs)
7748                                                                                      unspecified
7749                                                                     based on weight (51-100 lbs)
7750                                                                     based on weight (89-132 lbs)
7751                                                                                                 
7754                                                                    based on weight (61+ lbs) - 5
7759                                                                      based on weight (56-95 lbs)
7763                                                                     based on weight (51-100 lbs)
7772                                                                                      unspecified
7776                                                                                      unspecified
7783                                                                         based on weight (54 lbs)
7784                                                                         based on weight (54 lbs)
7795                                                                      based on weight (60-90 lbs)
7812                                                                                      unspecified
7818                                                                                      unspecified
7820                                                                                      unspecified
7822                                                                                      unspecified
7832                                                                                      2.68of 9.7%
7839                                                                                      application
7845                                                                                      unspecified
7846                                                                                      unspecified
7848                                                                                      unspecified
7852                                                                                      unspecified
7853                                                                                      unspecified
7854                                                                                      unspecified
7862                                                                       2-3 tablets/pills/capsules
7883                                                                                      unspecified
7884                                                                                      unspecified
7887                                                                                      unspecified
7889                                                                                      unspecified
7895                                                                                      unspecified
7926                                                                                     small amount
7929                                                                                     small amount
7944                                                                                     small amount
7946                                                                                     small amount
7961                                                                                  0.25 inch strip
7966                                                                     based on weight (51-100 lbs)
7967                                                                     based on weight (60-121 lbs)
7968                                                                                  based on weight
7969                                                                                  based on weight
7970                                                                                        62.5, 250
7973                                                                                      unspecified
7987                                                                                         27, 1620
7988                                                                     based on weight (51-100 lbs)
7993                                                                      based on weight (40-85 lbs)
7995                                                                                       500 , 5 ml
7998                                                                     based on weight (85-130 lbs)
8000                                                                     based on weight (85-130 lbs)
8009                                                                                     small amount
8012                                                                                     small amount
8014                                                                                     small amount
8017                                                                                     small amount
8029                                                             272 ivermectin, 227 pyrantel pamoate
8030                                                                     based on weight (51-100 lbs)
8040                                                             272 ivermectin, 227 pyrantel pamoate
8042                                                                                          23, 460
8043                                                                                          23, 228
8044                                                                                          23, 228
8045                                                                                          23, 228
8075                                                                                      unspecified
8086                                                                                     small amount
8091                                                                                         125, 375
8098                                                                      based on weight (45-88 lbs)
8099                                                                   based on weight (50.1-100 lbs)
8120                                                                     based on weight (51-100 lbs)
8121                                                                     based on weight (51-100 lbs)
8123                                                                     based on weight (50-100 lbs)
8125                                                                                      unspecified
8128                                                                                     small amount
8130                                                                     based on weight (51-100 lbs)
8131                                                                   based on weight (60.1-121 lbs)
8136                                                                     based on weight (50-100 lbs)
8137                                                                     based on weight (50-100 lbs)
8138                                                                     based on weight (51-100 lbs)
8139                                                                     based on weight (51-100 lbs)
8140                                                                                     small amount
8160                                                                         2 tablets/pills/capsules
8182                                                                                     small amount
8184                                                                                           powder
8185                                                                     based on weight (51-100 lbs)
8186                                                                     based on weight (51-100 lbs)
8187                                                                     based on weight (51-100 lbs)
8188                                                                     based on weight (61-120 lbs)
8195                                                                     based on weight (51-100 lbs)
8196                                                                    based on weight (24.1-60 lbs)
8205                                                                     based on weight (89-132 lbs)
8206                                                                     based on weight (51-100 lbs)
8207                                                                     based on weight (51-100 lbs)
8208                                                                     based on weight (89-132 lbs)
8209                                                                                     23, 228, 460
8210                                                                     based on weight (51-100 lbs)
8211                                                                    based on weight (45-88.9 lbs)
8212                                                                   based on weight (50.1-100 lbs)
8215                                                                     based on weight (89-132 lbs)
8221                                                                     based on weight (51-100 lbs)
8222                                                                            1 tablet/pill/capsule
8223                                                                     based on weight (51-100 lbs)
8224                                                                     based on weight (51-100 lbs)
8234                                                                                      application
8235                                                                                      application
8238                                                                                     small amount
8248                                                                      based on weight (44-88 lbs)
8251                                                                                         500, 750
8252                                                                                                 
8280                                                                                      unspecified
8284                                                                                      unspecified
8293                                                                                      unspecified
8296                                                                     based on weight (51-100 lbs)
8297                                                                      based on weight (44-88 lbs)
8298                                                                                     small amount
8314                                                                     based on weight (50-100 lbs)
8315                                                                        based on weight (55+ lbs)
8337                                                                                      unspecified
8338                                                                                      unspecified
8349                                                                                      unspecified
8354                                                                     based on weight (50-100 lbs)
8355                                                                      based on weight (45-88 lbs)
8358                                                                     based on weight (51-100 lbs)
8359                                                                      based on weight (44-88 lbs)
8362                                                                                     small amount
8369                                                                                  moderate amount
8370                                                                     based on weight (51-100 lbs)
8371                                                                      based on weight (44-88 lbs)
8376                                                                                     small amount
8377                                                                     based on weight (51-100 lbs)
8378                                                                      based on weight (44-88 lbs)
8389                                                             272 ivermectin, 227 pyrantel pamoate
8408                                                                     based on weight (50-100 lbs)
8410                                                                     based on weight (51-100 lbs)
8418                                                                                      unspecified
8420                                                                     based on weight (51-100 lbs)
8421                                                                                      unspecified
8424                                                                        based on weight (55+ lbs)
8425                                                                     based on weight (51-100 lbs)
8427                                                                     based on weight (51-100 lbs)
8435                                                                                   1 pack/package
8436                                                                                     small amount
8440                                                                                            45-60
8454                                                                     based on weight (50-100 lbs)
8466                                                                     based on weight (51-100 lbs)
8467                                                                                      application
8475                                                                                             bath
8478                                                                                             bath
8509                                                                              tablet/pill/capsule
8514                                                                     based on weight (51-100 lbs)
8515                                                                     based on weight (51-100 lbs)
8528                                                                   based on weight (50.1-100 lbs)
8531                                                                   based on weight (50.1-100 lbs)
8541                                                                                                 
8550                                                                     based on weight (50-100 lbs)
8554                                                                     based on weight (50-100 lbs)
8555                                                                        based on weight (<50 lbs)
8578                                                                                     small amount
8581                                                                                     small amount
8582                                                                     based on weight (50-100 lbs)
8583                                                                                     small amount
8584                                                                                     small amount
8585                                                                                  moderate amount
8586                                                                                       1 wipe/pad
8588                                                                                     small amount
8591                                                                     based on weight (60-120 lbs)
8607                                                                        based on weight (55+ lbs)
8609                                                                     based on weight (51-100 lbs)
8613                                                     0.284 betamethasone, 0.57 gentamicin sulfate
8673                                                               27 milbemycin oxime, 1620 spinosad
8674                                                                     based on weight (60-120 lbs)
8675                                                                     based on weight (60-120 lbs)
8676                                                                     based on weight (60-120 lbs)
8677                                                                     based on weight (60-120 lbs)
8694                                                                      based on weight (45-88 lbs)
8697                                                                                           varies
8702                                                                      based on weight (45-88 lbs)
8707                                                                      based on weight (45-88 lbs)
8731                                                                                  based on weight
8735                                                                                  moderate amount
8736                                                                                       1 wipe/pad
8744                                                                                      unspecified
8745                                                                                      unspecified
8756                                                                     based on weight (51-100 lbs)
8757                                                            23 milbemycin oxime, 228 praziquantel
8759                                                                        based on weight (55+ lbs)
8760                                                                     based on weight (51-100 lbs)
8768                                                                         based on weight (51 lbs)
8769                                                                                      unspecified
8770                                                                     based on weight (50-100 lbs)
8771                                                                                      unspecified
8777                                                                     based on weight (51-100 lbs)
8778                                                                     based on weight (51-100 lbs)
8779                                                                      based on weight (56-95 lbs)
8780                                                                     based on weight (51-100 lbs)
8781                                                                      based on weight (56-95 lbs)
8786                                                                     based on weight (51-100 lbs)
8790                                                                     based on weight (51-100 lbs)
8791                                                                      based on weight (44-88 lbs)
8792                                                                                     small amount
8793                                                                      based on weight (44-88 lbs)
8794                                                                     based on weight (51-100 lbs)
8795                                                                     based on weight (51-100 lbs)
8797                                                                                      unspecified
8805                                                                     based on weight (51-100 lbs)
8815                                                                                  0.25 inch strip
8819                                                                     based on weight (51-100 lbs)
8820                                                                     based on weight (60-121 lbs)
8825                                                                                         125, 500
8826                                                                                  0.25 inch strip
8828                                                                     based on weight (51-100 lbs)
8831                                                             272 ivermectin, 227 pyrantel pamoate
8833                                                                     based on weight (51-100 lbs)
8837                                                                                      unspecified
8843                                                                      based on weight (45-88 lbs)
8851                                                                                      unspecified
8852                                                                                      unspecified
8853                                                                                      unspecified
8860                                                                                     small amount
8875                                                                                      unspecified
8876                                                                                      unspecified
8877                                                                                      unspecified
8879                                                                     based on weight (51-100 lbs)
8885                                                             272 ivermectin, 227 pyrantel pamoate
8908                                                                                        13.5, 810
8911                                                                     based on weight (51-100 lbs)
8929                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8930                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8961                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8962                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9026                                                                     based on weight (50-100 lbs)
9046                                                                     based on weight (51-100 lbs)
9047                                                                                     small amount
9050                                                                                      as directed
9052                                                                                 0.125 inch strip
9053                                                                            1 tablet/pill/capsule
9054                                                                      based on weight (26-50 lbs)
9055                                                                     based on weight (51-100 lbs)
9056                                                                            1 tablet/pill/capsule
9060                                                                                      unspecified
9064                                                                                      as directed
9065                                                                            1 tablet/pill/capsule
9070                                                                                      unspecified
9071                                                                                      unspecified
9084                                                                                      unspecified
9094                                                                        based on weight (50+ lbs)
9095                                                                     based on weight (51-100 lbs)
9098                                                                     based on weight (51-100 lbs)
9099                                                                                      unspecified
9100                                                                                      unspecified
9101                                                                                      unspecified
9109                                                                                  0.25 inch strip
9118                                                                                  0.25 inch strip
9132                                                                        based on weight (60+ lbs)
9135                                                                            1 tablet/pill/capsule
9136                                                                                      application
9137                                                                            1 tablet/pill/capsule
9156                                                                                      unspecified
9160                                                                     based on weight (89-132 lbs)
9161                                         based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                     based on weight (51-100 lbs)
9187                                                                                      application
9189                                                                            1 tablet/pill/capsule
9193                                                                                   1 pack/package
9202                                                                     based on weight (51-100 lbs)
9230                                                                                     small amount
9236                                                                     based on weight (51-100 lbs)
9239                                                                                         tapering
9240                                                                                         tapering
9241                                                                                           varies
9242                                                                     based on weight (51-100 lbs)
9244                                                                                      unspecified
9252                                                                                      unspecified
9253                                                                                      application
9254                                                                     based on weight (50-100 lbs)
9259                                                                     based on weight (60-120 lbs)
9267                                                                     based on weight (51-100 lbs)
9269                                                             272 ivermectin, 227 pyrantel pamoate
9271                                                                                      unspecified
9292                                                                                         27, 1620
9294                                                                                         27, 1620
9295                                                                                         27, 1620
9297                                                                                      unspecified
9386                                                                     based on weight (51-100 lbs)
9387                                                                      based on weight (56-95 lbs)
9416                                                                                     small amount
9418                                                                                     small amount
9421                                                                                           collar
9422                                                                                  based on weight
9426                                                                     based on weight (50-100 lbs)
9429                                                                                      application
9432                                                                        based on weight (25+ lbs)
9433                                                                     based on weight (50-100 lbs)
9434                                                                     based on weight (51-100 lbs)
9435                                                                                        injection
9436                                                                     based on weight (51-100 lbs)
9438                                                                                        injection
9447                                                                                      unspecified
9452                                                             272 ivermectin, 227 pyrantel pamoate
9453                                                                                         8.8, 9.8
9454                                                                                  0.25 inch strip
9494                                                                                     small amount
9495                                                                                     small amount
9511                                                                                      unspecified
9516                                                                                 0.125 inch strip
9524                                                                                     small amount
9544                                                                    based on weight (24.1-60 lbs)
9546                                                                   based on weight (60.1-121 lbs)
9548                                                                    based on weight (44.1-88 lbs)
9549                                                                   based on weight (60.1-121 lbs)
9584                                                                     based on weight (51-100 lbs)
9588                                                                                     small amount
9592                                                                                      unspecified
9596                                                                                      unspecified
9600                                                                                      unspecified
9601                                                                                      unspecified
9602                                                                                  based on weight
9603                                                                                  based on weight
9604                                                                                  based on weight
9609                                                                     based on weight (51-100 lbs)
9610                                                                      based on weight (44-88 lbs)
9612                                                                                                 
9613                                                                                                 
9614                                                                                         wipe/pad
9615                                                                     based on weight (50-100 lbs)
9616                                                                      based on weight (44-88 lbs)
9617                                                                     based on weight (51-100 lbs)
9618                                                                      based on weight (44-80 lbs)
9619                                                                     based on weight (51-100 lbs)
9620                                                                      based on weight (44-88 lbs)
9621                                                                     based on weight (50-100 lbs)
9635                                                                                         27, 1620
9640                                                                                         27, 1620
9641                                                                     based on weight (60-120 lbs)
9643                                                                     based on weight (60-120 lbs)
9718                                                                                      unspecified
9723                                                                     based on weight (51-100 lbs)
9759                                                                     based on weight (51-100 lbs)
9760                                                                        based on weight (55+ lbs)
9761                                                                     based on weight (51-100 lbs)
9763                                                                            1 tablet/pill/capsule
9764                                                                            1 tablet/pill/capsule
9765                                                                            1 tablet/pill/capsule
9766                                                                     based on weight (51-100 lbs)
9770                                                                   based on weight (50.1-100 lbs)
9785                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9791                                                                     based on weight (50-100 lbs)
9800                                                                            1 tablet/pill/capsule
9807                                                                                      unspecified
9808                                                                                      unspecified
9809                                                                                      unspecified
9821                                                                                   1 pack/package
9826                                                                                     1 inch strip
9828                                                                                            5-7.5
9833                                                                                      application
9837                                                                                      unspecified
9840                                                                                      unspecified
9843                                                                                      unspecified
9863                                                                                         wipe/pad
9865                                                                                                 
9873                                                                                      unspecified
9877                                                                                      unspecified
9884                                                                                  0.25 inch strip
9889                                                                     based on weight (51-100 lbs)
9890                                                                      based on weight (45-88 lbs)
9891                                                                                  0.25 inch strip
9892                                                                                     small amount
9893                                                                            1 tablet/pill/capsule
9894                                                                   based on weight (50.1-100 lbs)
9895                                                                   based on weight (60.1-121 lbs)
9896                                                                                  0.25 inch strip
9897                                                                                      unspecified
9898                                                                                  based on weight
9899                                                                            1 tablet/pill/capsule
9900                                                                            1 tablet/pill/capsule
9901                                                                                  based on weight
9902                                                                            1 tablet/pill/capsule
9903                                                                                  0.25 inch strip
9907                                                                                      unspecified
9917                                                                     based on weight (51-100 lbs)
9928                                                                                      unspecified
9931                                                                     based on weight (50-100 lbs)
9935                                                                      based on weight (40-60 lbs)
9942                                                                                       4.125 cups
9943                                                                    based on weight (40.1-60 lbs)
9944                                                                      based on weight (40-60 lbs)
9945                                                                     based on weight (50-100 lbs)
9963                                                                        based on weight (55+ lbs)
9966                                                                        based on weight (55+ lbs)
9968                                                                        based on weight (55+ lbs)
9970                                                                                     small amount
9972                                                                        based on weight (55+ lbs)
10017                                                                    based on weight (51-100 lbs)
10026                                                                    based on weight (51-100 lbs)
10027                                                                       based on weight (18+ lbs)
10037                                                                                     unspecified
10042                                                                                     unspecified
10053                                                                    based on weight (50-100 lbs)
10061                                                                                     application
10063                                                                       based on weight (18+ lbs)
10066                                                                       based on weight (18+ lbs)
10075                                                            272 ivermectin, 227 pyrantel pamoate
10092                                                                                     unspecified
10093                                                                                     unspecified
10106                                                            272 ivermectin, 227 pyrantel pamoate
10107                                                              8.8% (s)-methoprene, 9.8% fipronil
10108                                                            272 ivermectin, 227 pyrantel pamoate
10109                                                              8.8% (s)-methoprene, 9.8% fipronil
10111                                                            272 ivermectin, 227 pyrantel pamoate
10112                                                                           1 tablet/pill/capsule
10113                                                                                   1 bottle/vial
10115                                                                                     unspecified
10116                                                                     based on weight (45-88 lbs)
10119                                                                                       272 , 228
10120                                                                                    small amount
10121                                                                             tablet/pill/capsule
10130                                                                                     unspecified
10131                                                                                     unspecified
10132                                                                                     unspecified
10133                                                                                     unspecified
10134                                                                                     unspecified
10151                                                                                     unspecified
10167                                                                    based on weight (51-100 lbs)
10170                                                                    based on weight (51-100 lbs)
10176                                                                                    small amount
10187                                                                                                
10188                                                                        2 tablets/pills/capsules
10195                                                                                     unspecified
10198                                                                       based on weight (55+ lbs)
10200                                                                        based on weight (60 lbs)
10209                                                                    based on weight (51-100 lbs)
10219                                                                    based on weight (51-100 lbs)
10230                                                                           1 tablet/pill/capsule
10231                                                                           1 tablet/pill/capsule
10232                                                                      1 tablet/pill/capsule - 10
10233                                                                        2 tablets/pills/capsules
10234                                                                      1 tablet/pill/capsule - 10
10235                                                                    based on weight (51-100 lbs)
10245                                                                    based on weight (50-100 lbs)
10249                                                                                     unspecified
10260                                                                                          collar
10264                                                                                    small amount
10273                                                                    based on weight (51-100 lbs)
10274                                                                     based on weight (40-60 lbs)
10275                                                                    based on weight (51-100 lbs)
10276                                                                     based on weight (41-60 lbs)
10301                                                                                         23, 460
10312                                                                     based on weight (40-85 lbs)
10313                                                                1.5 tablets/pills/capsules - 136
10314                                                                   0.5 tablet/pill/capsule - 250
10316                                                                           1 tablet/pill/capsule
10320                                                                     1 tablet/pill/capsule - 375
10324                                                                    based on weight (85-130 lbs)
10334                                                                    based on weight (60-120 lbs)
10335                                                                    based on weight (88-123 lbs)
10345                                                                             tablet/pill/capsule
10347                                                                                     unspecified
10348                                                                                     unspecified
10349                                                                                    small amount
10356                                                                                 based on weight
10365                                                                    based on weight (51-100 lbs)
10366                                                                     based on weight (44-88 lbs)
10370                                                            272 ivermectin, 227 pyrantel pamoate
10372                                                            272 ivermectin, 227 pyrantel pamoate
10374                                                            272 ivermectin, 227 pyrantel pamoate
10379                                                                                         23, 228
10400                                                                                     unspecified
10403                                                                     based on weight (45-88 lbs)
10405                                                                     based on weight (45-88 lbs)
10408                                                                    based on weight (50-100 lbs)
10409                                                           23 milbemycin oxime, 228 praziquantel
10410                                                                                         23, 228
10412                                                                                         23, 228
10429                                                                                                
10435                                                                                     unspecified
10436                                                                                     unspecified
10441                                                                                     unspecified
10445                                                                                     unspecified
10470                                                                                    small amount
10477                                                                                   1 bottle/vial
10478                                                                                 based on weight
10483                                                            272 ivermectin, 227 pyrantel pamoate
10485                                                                    based on weight (51-100 lbs)
10487                                                                    based on weight (51-100 lbs)
10499                                                                                         23, 228
10503                                                                    based on weight (50-100 lbs)
10505                                                                    based on weight (51-100 lbs)
10506                                                                    based on weight (51-100 lbs)
10529                                                                                     unspecified
10555                                                                                     unspecified
10557                                                                                     unspecified
10565                                                                                     unspecified
10573                                                                                     unspecified
10575                                                                                    small amount
10576                                                                   3 tablets/pills/capsules - 25
10577                                                                      1 tablet/pill/capsule - 20
10578                                                                     1 tablet/pill/capsule - 160
10579                                                                     1 tablet/pill/capsule - 500
10580                                                                                    1.9 , 1.9 ml
10583                                                                    based on weight (60-120 lbs)
10588                                                                    based on weight (50-100 lbs)
10589                                                                           1 tablet/pill/capsule
10590                                                                    based on weight (51-100 lbs)
10591                                                                    based on weight (50-100 lbs)
10610                                                            272 ivermectin, 227 pyrantel pamoate
10618                                                                           1 tablet/pill/capsule
10619                                                                      1.5 tablets/pills/capsules
10624                                                                                 based on weight
10628                                                                                 0.25 inch strip
10642                                                                                     unspecified
10653                                                                           1 tablet/pill/capsule
10655                                                                    based on weight (51-100 lbs)
10667                                                                    based on weight (51-100 lbs)
10671                                                                       based on weight (55+ lbs)
10678                                                                                     unspecified
10682                                                                                     unspecified
10683                                                                    based on weight (51-100 lbs)
10684                                                                    based on weight (51-100 lbs)
10685                                                                                 based on weight
10686                                                                                     unspecified
10687                                                                                      1-2 scoops
10689                                                                    based on weight (51-100 lbs)
10693                                                                                     unspecified
10694                                                                    based on weight (51-100 lbs)
10696                                                                                     unspecified
10697                                                                                     unspecified
10701                                                                                     unspecified
10706                                                                                     unspecified
10707                                                                    based on weight (51-100 lbs)
10711                                                                    based on weight (51-100 lbs)
10712                                                                                 based on weight
10713                                                                                     unspecified
10714                                                                                      1-2 scoops
10717                                                                    based on weight (51-100 lbs)
10718                                                                                    small amount
10725                                                                    based on weight (51-100 lbs)
10726                                                                                          powder
10727                                                                                     unspecified
10740                                                                                     unspecified
10743                                                                                     unspecified
10751                                                                                     unspecified
10755                                                            272 ivermectin, 227 pyrantel pamoate
10756                                                                           1 tablet/pill/capsule
10769                                                                                 based on weight
10780                                                                    based on weight (51-100 lbs)
10781                                                                  based on weight (60.1-121 lbs)
10792                                                            272 ivermectin, 227 pyrantel pamoate
10794                                                                    based on weight (51-100 lbs)
10796                                                            272 ivermectin, 227 pyrantel pamoate
10825                                                                                     unspecified
10827                                                                                          collar
10830                                                                    based on weight (51-100 lbs)
10837                                                                                     unspecified
10841                                                                           1 tablet/pill/capsule
10842                                                                           1 tablet/pill/capsule
10843                                                                                          1 dose
10846                                                                       based on weight (60+ lbs)
10849                                                                    based on weight (51-100 lbs)
10853                                                                                    small amount
10863                                                                                             1-2
10865                                                                    based on weight (51-100 lbs)
10866                                                                     based on weight (44-88 lbs)
10870                                                                    based on weight (51-100 lbs)
10871                                                                     based on weight (45-88 lbs)
10874                                                                    based on weight (51-100 lbs)
10877                                                                    based on weight (51-100 lbs)
10878                                                                   based on weight (24.1-60 lbs)
10892                                                                     based on weight (45-88 lbs)
10896                                                                                             6-8
10898                                                                     based on weight (45-88 lbs)
10899                                                                                                
10901                                                                                     application
10905                                                                                     application
10928                                                                    based on weight (60-120 lbs)
10929                                                                    based on weight (50-100 lbs)
10934                                                                                 based on weight
10938                                                                    based on weight (50-100 lbs)
10953                                                                    based on weight (89-132 lbs)
10959                                                                    based on weight (89-132 lbs)
10970                                                                    based on weight (50-100 lbs)
10971                                                                     based on weight (44-88 lbs)
11003                                                                    based on weight (60-121 lbs)
11008                                                                                     unspecified
11009                                                                    based on weight (50-100 lbs)
11010                                                                    based on weight (51-100 lbs)
11011                                                                    based on weight (51-100 lbs)
11016                                                                                     unspecified
11021                                                                                     unspecified
11035                                                                    based on weight (51-100 lbs)
11036                                                                  based on weight (60.1-121 lbs)
11037                                                                    based on weight (51-100 lbs)
11038                                                                  based on weight (60.1-120 lbs)
11065                                                              460 lufenuron, 23 milbemycin oxime
11069                                                                           1 tablet/pill/capsule
11070                                                                           1 tablet/pill/capsule
11085                                                                                     unspecified
11088                                                                                     unspecified
11093                                                               8 dexamethasone, 400 enrofloxacin
11134                                                                     based on weight (45-88 lbs)
11142                                                                                     unspecified
11144                                                                                     unspecified
11145                                                                                     unspecified
11152                                                                                     unspecified
11153                                                                                     unspecified
11155                                                                                     unspecified
11156                                                                                     unspecified
11158                                                                                     unspecified
11159                                                                                     unspecified
11163                                                                                     unspecified
11165                                                                                     unspecified
11182                                                                                     unspecified
11186                                                                    based on weight (50-100 lbs)
11189                                                                                     unspecified
11208                                                                  based on weight (50.1-100 lbs)
11210                                                                                     unspecified
11211                                                                                     unspecified
11212                                                                    based on weight (51-100 lbs)
11213                                                                                     unspecified
11224                                                                                     unspecified
11228                                                                                     unspecified
11229                                                                    based on weight (51-100 lbs)
11233                                                                           1 tablet/pill/capsule
11241                                                              27 milbemycin oxime, 1620 spinosad
11242                                                                    based on weight (51-100 lbs)
11276                                                                                        23 , 460
11291                                                                    based on weight (51-100 lbs)
11292                                                                    based on weight (60-120 lbs)
11293                                                                    based on weight (51-100 lbs)
11294                                                                     based on weight (24-60 lbs)
11295                                                                    based on weight (51-100 lbs)
11296                                                                    based on weight (60-120 lbs)
11301                                                                           1 tablet/pill/capsule
11305                                                                           1 tablet/pill/capsule
11307                                                                    based on weight (50-100 lbs)
11311                                                                    based on weight (50-100 lbs)
11312                                                                     based on weight (44-88 lbs)
11315                                                                             tablet/pill/capsule
11316                                                                             tablet/pill/capsule
11317                                                                             tablet/pill/capsule
11318                                                                             tablet/pill/capsule
11326                                                                    based on weight (51-100 lbs)
11327                                                                    based on weight (60-120 lbs)
11338                                                                                    small amount
11340                                                                                         10, 100
11346                                                                                 moderate amount
11349                                                                                 moderate amount
11350                                                                                    small amount
11351                                                                           1 tablet/pill/capsule
11352                                                                           1 tablet/pill/capsule
11353                                                                                 136, 136, 680.4
11356                                                                                     unspecified
11360                                                                                     unspecified
11368                                                                    based on weight (50-100 lbs)
11385                                                                                 based on weight
11386                                                                                 based on weight
11387                                                                                    pack/package
11388                                                                        based on weight (40 lbs)
11394                                                                                    small amount
11415                                                                                     unspecified
11436                                                                    based on weight (51-100 lbs)
11437                                                                    based on weight (51-100 lbs)
11441                                                              460 lufenuron, 23 milbemycin oxime
11464                                                                                     unspecified
11470                                                                                     unspecified
11471                                                                                     unspecified
11473                                                                       based on weight (50+ lbs)
11477                                                                    based on weight (51-100 lbs)
11493                                                                                     unspecified
11509                                                                    based on weight (50-100 lbs)
11536                                                                                         23, 460
11537                                                                    based on weight (51-100 lbs)
11538                                                                    based on weight (51-100 lbs)
11545                                                                    based on weight (50-100 lbs)
11546                                                                                     unspecified
11547                                                                                         23, 460
11551                                                                                     unspecified
11560                                                                    based on weight (51-100 lbs)
11561                                                                    based on weight (51-100 lbs)
11562                                                                    based on weight (60-121 lbs)
11564                                                                           1 tablet/pill/capsule
11567                                                                    based on weight (51-100 lbs)
11568                                                                    based on weight (60-121 lbs)
11570                                                                                     unspecified
11575                                                                                     unspecified
11576                                                                                     unspecified
11577                                                                                     unspecified
11578                                                                                     unspecified
11589                                                                       based on weight (50+ lbs)
11593                                                                    based on weight (51-100 lbs)
11596                                                                    based on weight (51-100 lbs)
11599                                                                     based on weight (43-88 lbs)
11600                                                                    based on weight (51-100 lbs)
11620                                                                                     unspecified
11621                                                                                     unspecified
11627                                                                           1 tablet/pill/capsule
11630                                                                           1 tablet/pill/capsule
11633                                                            272 ivermectin, 227 pyrantel pamoate
11637                                                                                     unspecified
11641                                                           23 milbemycin oxime, 228 praziquantel
11651                                                                    based on weight (51-100 lbs)
11652                                                                    based on weight (51-100 lbs)
11653                                                                    based on weight (60-120 lbs)
11654                                                                    based on weight (51-100 lbs)
11655                                                                    based on weight (60-120 lbs)
11656                                                                    based on weight (51-100 lbs)
11660                                                                    based on weight (50-100 lbs)
11661                                                                    based on weight (51-100 lbs)
11662                                                                     based on weight (44-88 lbs)
11664                                                                    based on weight (88-123 lbs)
11666                                                                                     application
11667                                                                                     application
11671                                                                                     application
11673                                                                                                
11678                                                                    based on weight (51-100 lbs)
11680                                                                                 based on weight
11681                                                                    based on weight (51-100 lbs)
11683                                                                    based on weight (51-100 lbs)
11691                                                                                     unspecified
11692                                                                                     unspecified
11693                                                                                     as directed
11695                                                                                    small amount
11701                                                                                     unspecified
11702                                                            272 ivermectin, 227 pyrantel pamoate
11709                                                                                     unspecified
11710                                                                                     unspecified
11719                                                                                     as directed
11722                                                                                     unspecified
11723                                                                                     unspecified
11735                                                                    based on weight (51-100 lbs)
11741                                                                           1 tablet/pill/capsule
11742                                                                                   1 bottle/vial
11802                                                                                         23, 460
11806                                                                                     unspecified
11812                                                                           1 tablet/pill/capsule
11813                                                                                         23, 460
11814                                                                       based on weight (55+ lbs)
11817                                                              460 lufenuron, 23 milbemycin oxime
11822                                                                    based on weight (51-100 lbs)
11823                                                                                          25 lbs
11824                                                                    based on weight (89-132 lbs)
11825                                                                  based on weight (60.1-121 lbs)
11832                                                            272 ivermectin, 227 pyrantel pamoate
11833                                                                                          57, 68
11835                                                                    based on weight (51-100 lbs)
11836                                                                      based on weight (0-25 lbs)
11837                                                                  based on weight (60.1-121 lbs)
11840                                                                                         20, 200
11844                                                                                         20, 200
11846                                                                                         10, 325
11847                                                                    based on weight (51-100 lbs)
11848                                                                       based on weight (<25 lbs)
11850                                                                                      1200, 1500
11861                                                            272 ivermectin, 227 pyrantel pamoate
11862                                                              68 ivermectin, 57 pyrantel pamoate
11873                                                                    based on weight (50-100 lbs)
11874                                                                       based on weight (<25 lbs)
11875                                                                    based on weight (60-121 lbs)
11876                                                                           1 tablet/pill/capsule
11881                                                                       based on weight (125 lbs)
11882                                                                    based on weight (60-121 lbs)
11889                                                                    based on weight (51-100 lbs)
11898                                                                    based on weight (51-100 lbs)
11911                                                                                    small amount
11919                                                                                     unspecified
11930                                                                                   5 billion cfu
11959                                                              460 lufenuron, 23 milbemycin oxime
11960                                                                                     as directed
11962                                                              460 lufenuron, 23 milbemycin oxime
11964                                                                    based on weight (51-100 lbs)
11978                                                                                     application
11979                                                                    based on weight (89-132 lbs)
11980                                                                    based on weight (89-132 lbs)
11983                                                                    based on weight (89-132 lbs)
11993                                                                                     unspecified
12009                                                                                     unspecified
12010                                                                                     unspecified
12014                                                                    based on weight (51-100 lbs)
12018                                                                                     unspecified
12019                                                                                     unspecified
12020                                                                    based on weight (51-100 lbs)
12043                                                                                     unspecified
12047                                                                                     unspecified
12048                                                              based on weight (45-88 lbs) - 2.68
12051                                                                                  1 pack/package
12054                                                                                     unspecified
12090                                                                    based on weight (51-100 lbs)
12108                                                                                 moderate amount
12111                                                                                     unspecified
12120                                                                                     unspecified
12128                                                                     based on weight (44-88 lbs)
12129                                                                    based on weight (51-100 lbs)
12130                                                                                     application
12135                                                                     based on weight (44-88 lbs)
12136                                                                    based on weight (51-100 lbs)
12154                                                                                     unspecified
12155                                                                                     unspecified
12159                                                                                     unspecified
12160                                                                                     unspecified
12164                                                                                     unspecified
12173                                                                                     unspecified
12215                                                            272 ivermectin, 227 pyrantel pamoate
12223                                                                                                
12261                                                                  based on weight (60.1-120 lbs)
12271                                                                     based on weight (45-88 lbs)
12273                                                                                    small amount
12279                                                                                    small amount
12283                                                                                         23, 228
12299                                                                                     unspecified
12306                                                                                     unspecified
12309                                                                                     unspecified
12313                                                                                         23, 460
12314                                                                                        27, 1620
12322                                                                                      1200, 1500
12324                                                                    based on weight (60-120 lbs)
12334                                                                                       injection
12336                                                                                       injection
12337                                                                                     unspecified
12342                                                                    based on weight (60-120 lbs)
12343                                                                                     unspecified
12346                                                                                       155, 1200
12349                                                                                 2 bottles/vials
12351                                                                                       150, 1200
12353                                                                                     unspecified
12364                                                                                      1200, 1500
12366                                                                    based on weight (60-120 lbs)
12376                                                                                       155, 1200
12379                                                                                       200, 1500
12394                                                                                     unspecified
12398                                                            272 ivermectin, 227 pyrantel pamoate
12402                                                                    based on weight (51-100 lbs)
12406                                                                           1 tablet/pill/capsule
12409                                                                                  1 pack/package
12410                                                                    based on weight (51-100 lbs)
12411                                                                     based on weight (41-88 lbs)
12414                                                                    based on weight (51-100 lbs)
12415                                                                  based on weight (60.1-121 lbs)
12417                                                                    based on weight (51-100 lbs)
12418                                                                    based on weight (60-121 lbs)
12420                                                                                     application
12421                                                                    based on weight (51-100 lbs)
12422                                                                   based on weight (44.1-88 lbs)
12423                                                                                     application
12427                                                                                     unspecified
12430                                                                           1 tablet/pill/capsule
12431                                                                           1 tablet/pill/capsule
12432                                                                           1 tablet/pill/capsule
12433                                                                           1 tablet/pill/capsule
12434                                                                           1 tablet/pill/capsule
12438                                                                           1 tablet/pill/capsule
12439                                                                           1 tablet/pill/capsule
12453                                                            272 ivermectin, 227 pyrantel pamoate
12454                                                                    based on weight (51-100 lbs)
12455                                                                                 based on weight
12456                                                                    based on weight (51-100 lbs)
12457                                                                    based on weight (60-120 lbs)
12461                                                                                     unspecified
12462                                                                                     unspecified
12463                                                                                     unspecified
12466                                                                           1 tablet/pill/capsule
12473                                                                   based on weight (40.1-85 lbs)
12474                                                                   based on weight (40.1-85 lbs)
12475                                                                                        5.4 , 16
12477                                                                                     unspecified
12481                                                                                     unspecified
12485                                                                                     unspecified
12487                                                                                     unspecified
12495                                                                    based on weight (51-100 lbs)
12497                                                                                  10 billion cfu
12498                                                                    based on weight (51-100 lbs)
12500                                                                    based on weight (50-100 lbs)
12506                                                                                     unspecified
12511                                                                           1 tablet/pill/capsule
12512                                                                           1 tablet/pill/capsule
12514                                                                                             6-8
12516                                                                    based on weight (51-100 lbs)
12520                                                                    based on weight (51-100 lbs)
12521                                                                    based on weight (60-120 lbs)
12523                                                                    based on weight (51-100 lbs)
12528                                                                           1 tablet/pill/capsule
12529                                                                                   1 bottle/vial
12530                                                                    based on weight (51-100 lbs)
12535                                                                                     unspecified
12536                                                                                    small amount
12540                                                                    based on weight (51-100 lbs)
12541                                                                     based on weight (21-55 lbs)
12542                                                                           1 tablet/pill/capsule
12543                                                                                   1 bottle/vial
12546                                                                                     as directed
12547                                                                           1 tablet/pill/capsule
12548                                                                           1 tablet/pill/capsule
12549                                                                                     application
12550                                                                    based on weight (50-100 lbs)
12551                                                                                 based on weight
12552                                                                                 based on weight
12553                                                                                 based on weight
12554                                                                                 based on weight
12569                                                                                        27, 1610
12571                                                                                            7-10
12578                                                            272 ivermectin, 227 pyrantel pamoate
12580                                                            272 ivermectin, 227 pyrantel pamoate
12585                                                            272 ivermectin, 227 pyrantel pamoate
12588                                                                                       1, 32, 40
12589                                                            272 ivermectin, 227 pyrantel pamoate
12595                                                                                     unspecified
12596                                                                                     unspecified
12605                                                                                       11.5, 114
12608                                                                                        23 , 228
12615                                                                                     unspecified
12616                                                                    based on weight (51-100 lbs)
12620                                                                                     unspecified
12623                                                                    based on weight (51-100 lbs)
12630                                                                                     unspecified
12632                                                                                     unspecified
12636                                                                    based on weight (50-100 lbs)
12638                                                                    based on weight (51-100 lbs)
12639                                                                    based on weight (50-100 lbs)
12642                                                                    based on weight (50-100 lbs)
12645                                                                                        125, 500
12686                                                                    based on weight (51-100 lbs)
12692                                                           23 milbemycin oxime, 228 praziquantel
12693                                                                    based on weight (51-100 lbs)
12714                                                                    based on weight (51-100 lbs)
12730                                                                                     unspecified
12732                                                                                     application
12735                                                                                     as directed
12738                                                                    1 tablet/pill/capsule - 1000
12740                                                                                       13.5, 810
12744                                                                                      13.5 , 810
12749                                                                                       13.5, 810
12754                                                                                      13.5 , 810
12755                                                                    based on weight (60-120 lbs)
12756                                                                                    small amount
12771                                                                                 based on weight
12774                                                                                 based on weight
12780                                                                    based on weight (51-100 lbs)
12784                                                                                  1 pack/package
12787                                                                                        1 collar
12788                                                                                 0.25 inch strip
12795                                                                                     unspecified
12796                                                                                          collar
12797                                                                                  1 pack/package
12801                                                                                     application
12826                                                                                     unspecified
12828                                                                                     unspecified
12836                                                                    based on weight (60-120 lbs)
12849                                                                                                
12850                                                                                                
12861                                                                                    small amount
12865                                                                                    small amount
12866                                                                                    small amount
12870                                                                                     application
12873                                                                                 moderate amount
12879                                                                    based on weight (51-100 lbs)
12880                                                                  based on weight (60.1-120 lbs)
12881                                                                                    small amount
12882                                                                                    small amount
12894                                                                                    small amount
12895                                                                                            bath
12901                                                                                     unspecified
12902                                                                                     unspecified
12903                                                                                     as directed
12905                                                                                       injection
12906                                                                                     unspecified
12907                                                                                     unspecified
12908                                                                                     unspecified
12911                                                                                     unspecified
12916                                                                    based on weight (51-100 lbs)
12920                                                                    based on weight (51-100 lbs)
12929                                                                    based on weight (51-100 lbs)
12942                                                                    based on weight (50-100 lbs)
12943                                                                    based on weight (51-100 lbs)
12945                                                                    based on weight (51-100 lbs)
12948                                                                    based on weight (51-100 lbs)
12949                                                                    based on weight (51-100 lbs)
12952                                                                    based on weight (51-100 lbs)
12955                                                                                     unspecified
12956                                                                     based on weight (44-88 lbs)
12957                                                                    based on weight (51-100 lbs)
12962                                                                     based on weight (45-88 lbs)
12963                                                                             tablet/pill/capsule
12966                                                                     based on weight (45-88 lbs)
12994                                                                       based on weight (55+ lbs)
13005                                                                                     unspecified
13006                                                                                     unspecified
13008                                                                                     unspecified
13010                                                                                     unspecified
13013                                                                                     unspecified
13020                                                                                     unspecified
13041                                                                                    small amount
13049                                                                                     application
13061                                                                     based on weight (44-80 lbs)
13062                                                                                     as directed
13074                                                                                     unspecified
13075                                                                    based on weight (51-100 lbs)
13076                                                                       based on weight (19+ lbs)
13081                                                                                     unspecified
13084                                                                                         23, 460
13086                                                                    based on weight (51-100 lbs)
13096                                                                                    small amount
13104                                                                                     unspecified
13108                                                                                       13.5, 810
13109                                                                                      13.5, 1620
13114                                                                    based on weight (60-120 lbs)
13115                                                                    based on weight (60-120 lbs)
13116                                                               27 milbemycin oxime, 620 spinosad
13124                                                                                    small amount
13126                                                                                    small amount
13127                                                                                    small amount
13129                                                                                    small amount
13130                                                                                    small amount
13133                                                                                    small amount
13136                                                                    based on weight (50-100 lbs)
13137                                                                     based on weight (45-88 lbs)
13139                                                            272 ivermectin, 227 pyrantel pamoate
13142                                                                    based on weight (51-100 lbs)
13143                                                                     based on weight (45-88 lbs)
13148                                                                                        125, 875
13149                                                                    based on weight (51-100 lbs)
13150                                                                     based on weight (45-88 lbs)
13151                                                                    based on weight (51-100 lbs)
13152                                                                     based on weight (44-88 lbs)
13154                                                                                        125, 875
13157                                                                    based on weight (50-100 lbs)
13159                                                                                     unspecified
13160                                                                                     unspecified
13168                                                                    based on weight (51-100 lbs)
13169                                                                    based on weight (51-100 lbs)
13170                                                                    based on weight (60-120 lbs)
13187                                                                                     application
13188                                                                     based on weight (45-88 lbs)
13189                                                                    based on weight (51-100 lbs)
13195                                                                                                
13196                                                                                            bath
13198                                                                                 moderate amount
13199                                                                                        tapering
13208                                                                           1 tablet/pill/capsule
13209                                                                           1 tablet/pill/capsule
13233                                                                                     unspecified
13246                                                                                 0.25 inch strip
13248                                                                    based on weight (51-100 lbs)
13249                                                                     based on weight (45-88 lbs)
13264                                                            272 ivermectin, 227 pyrantel pamoate
13270                                                                           1 tablet/pill/capsule
13271                                                                           1 tablet/pill/capsule
13277                                                                                 moderate amount
13278                                                                                    small amount
13279                                                                                     application
13286                                                                                    small amount
13287                                                                                     application
13288                                                                           1 tablet/pill/capsule
13297                                                                    based on weight (51-100 lbs)
13298                                                                  based on weight (60.1-120 lbs)
13299                                                            272 ivermectin, 227 pyrantel pamoate
13307                                                                  based on weight (60.1-120 lbs)
13308                                                                    based on weight (51-100 lbs)
13309                                                                           1 tablet/pill/capsule
13313                                                                    based on weight (50-100 lbs)
13314                                                                    based on weight (60-120 lbs)
13321                                                                                            bath
13331                                                                    based on weight (60-120 lbs)
13332                                                                                             2-3
13334                                                              27 milbemycin oxime, 1620 spinosad
13340                                                                                    small amount
13341                                                                                     unspecified
13343                                                                                     unspecified
13344                                                                    based on weight (60-120 lbs)
13349                                                                    based on weight (51-100 lbs)
13353                                                                                             5-6
13354                                                                                 based on weight
13355                                                                     based on weight (60-80 lbs)
13356                                                                                       27 , 1620
13357                                                                                     unspecified
13376                                                                                     unspecified
13405                                                                                     unspecified
13411                                                                                     unspecified
13454                                                                    based on weight (51-100 lbs)
13455                                                                  based on weight (60.1-121 lbs)
13456                                                                     based on weight (25-75 lbs)
13459                                                                                 moderate amount
13460                                                                                     application
13461                                                                    based on weight (51-100 lbs)
13462                                                                  based on weight (60.1-121 lbs)
13464                                                            272 ivermectin, 227 pyrantel pamoate
13468                                                                                     unspecified
13470                                                                                 based on weight
13471                                                                    based on weight (51-100 lbs)
13475                                                                    based on weight (51-100 lbs)
13476                                                                             tablet/pill/capsule
13479                                                                        based on weight (70 lbs)
13483                                                                    based on weight (51-100 lbs)
13484                                                                     based on weight (44-88 lbs)
13496                                                                                 based on weight
13502                                                                                     unspecified
13503                                                                       based on weight (55+ lbs)
13506                                                                    based on weight (50-100 lbs)
13532                                                                                  1 pack/package
13537                                                                    based on weight (50-100 lbs)
13538                                                                    based on weight (51-100 lbs)
13562                                                                                        27, 1620
13563                                                                                     as directed
13564                                                                                        27, 1620
13575                                                                                     unspecified
13576                                                                    based on weight (60-120 lbs)
13579                                                                                    small amount
13581                                                                                       27 , 1620
13585                                                                                        27, 1620
13590                                                                                            bath
13594                                                                                     unspecified
13595                                                                                     unspecified
13601                                                                                     unspecified
13603                                                                                     unspecified
13605                                                                                     unspecified
13609                                                                                 0.25 inch strip
13615                                                                                    small amount
13623                                                                     based on weight (21-55 lbs)
13624                                                                     based on weight (21-55 lbs)
13625                                                                     based on weight (21-55 lbs)
13628                                                                     based on weight (21-55 lbs)
13631                                                                                    small amount
13654                                                                                    small amount
13657                                                                                    small amount
13666                                                                                     application
13693                                                                    based on weight (60-120 lbs)
13723                                                                     based on weight (44-88 lbs)
13724                                                                                 based on weight
13730                                                                             tablet/pill/capsule
13737                                                                    based on weight (50-100 lbs)
13740                                                                                     unspecified
13741                                                                                     unspecified
13747                                                                                         23, 460
13756                                                                                     unspecified
13768                                                                                     application
13769                                                                                                
13776                                                                       based on weight (50+ lbs)
13782                                                                        based on weight (50 lbs)
13783                                                                    based on weight (50-100 lbs)
13796                                                                                      1 wipe/pad
13893                                                                    based on weight (51-100 lbs)
13894                                                                    based on weight (51-100 lbs)
13896                                                                  based on weight (50.1-100 lbs)
13902                                                                                     unspecified
13905                                                                    based on weight (51-100 lbs)
13906                                                                    based on weight (51-100 lbs)
13910                                                                  based on weight (50.1-100 lbs)
13912                                                                                     unspecified
13913                                                                                     unspecified
13925                                                                                        27, 1620
13943                                                                    based on weight (51-100 lbs)
13946                                                                                                
13994                                                                           1 tablet/pill/capsule
13995                                                                           1 tablet/pill/capsule
13996                                                                                 0.25 inch strip
13998                                                                                     unspecified
14006                                                                                                
14007                                                                    based on weight (50-100 lbs)
14050                                                                                     unspecified
14051                                                                    based on weight (50-100 lbs)
14055                                                                    based on weight (50-100 lbs)
14059                                                                     based on weight (40-85 lbs)
14060                                                                    based on weight (51-100 lbs)
14061                                                                    based on weight (51-100 lbs)
14062                                                                    based on weight (50-100 lbs)
14063                                                                     based on weight (44-88 lbs)
14064                                                                    based on weight (51-100 lbs)
14106                                                                    based on weight (51-100 lbs)
14114                                                                    based on weight (60-120 lbs)
14118                                                              27 milbemycin oxime, 1620 spinosad
14123                                                                                             1 l
14128                                                                                        27, 1620
14129                                                                    based on weight (60-120 lbs)
14131                                                                                    small amount
14147                                                                    based on weight (51-100 lbs)
14148                                                                     based on weight (44-88 lbs)
14151                                                                    based on weight (50-100 lbs)
14154                                                                    based on weight (50-100 lbs)
14162                                                                    based on weight (50-100 lbs)
14163                                                                                     unspecified
14164                                                                    based on weight (51-100 lbs)
14165                                                                                    small amount
14166                                                                           1 tablet/pill/capsule
14170                                                                                    small amount
14172                                                                    based on weight (51-100 lbs)
14173                                                                      based on weight (0-25 lbs)
14174                                                                    based on weight (89-132 lbs)
14175                                                                                     as directed
14177                                                                    based on weight (50-100 lbs)
14178                                                                    based on weight (89-132 lbs)
14180                                                                    based on weight (88-120 lbs)
14181                                                                    based on weight (51-100 lbs)
14190                                  1 dexamethasone, 3.5 neomycin sulfate, 10000 units polymyxin b
14219                                                                    based on weight (51-100 lbs)
14221                                                                                     unspecified
14228                                                                                     unspecified
14238                                                                                     unspecified
14241                                                                     based on weight (44-88 lbs)
14242                                                                     based on weight (26-50 lbs)
14245                                                                     based on weight (22-44 lbs)
14282                                                                    based on weight (50-100 lbs)
14284                                                                    based on weight (50-100 lbs)
14291                                                                                     unspecified
14297                                                                           1 tablet/pill/capsule
14301                                                                    based on weight (50-100 lbs)
14302                                                                       based on weight (25+ lbs)
14319                                                            272 ivermectin, 227 pyrantel pamoate
14323                                                                                     application
14324                                                                                             3-4
14330                                                                                     unspecified
14334                                                                   based on weight (20.1-55 lbs)
14336                                                                                             2-3
14365                                                            272 ivermectin, 227 pyrantel pamoate
14366                                                                           1 tablet/pill/capsule
14367                                                                           1 tablet/pill/capsule
14373                                                                                 based on weight
14376                                                                                 based on weight
14378                                                                       based on weight (60+ lbs)
14380                                                                                 based on weight
14385                                                                    based on weight (51-100 lbs)
14386                                                                    based on weight (60-120 lbs)
14387                                                                    based on weight (51-100 lbs)
14388                                                                     based on weight (24-60 lbs)
14404                                                              460 lufenuron, 23 milbemycin oxime
14406                                                                           1 tablet/pill/capsule
14408                                                                    based on weight (51-100 lbs)
14412                                                                    based on weight (60-120 lbs)
14413                                                                     based on weight (44-88 lbs)
14414                                                                        based on weight (60 lbs)
14420                                                                           1 tablet/pill/capsule
14421                                                                           1 tablet/pill/capsule
14426                                                                                     unspecified
14428                                                                                     unspecified
14429                                                                    based on weight (51-100 lbs)
14431                                                                    based on weight (51-100 lbs)
14432                                                                                 based on weight
14433                                                                                     unspecified
14434                                                                                         1 scoop
14443                                                                    based on weight (51-100 lbs)
14444                                                                                     unspecified
14445                                                                                     unspecified
14446                                                                                     unspecified
14447                                                                                     unspecified
14448                                                                    based on weight (51-100 lbs)
14449                                                                    based on weight (51-100 lbs)
14451                                                                    based on weight (51-100 lbs)
14455                                                                                 0.25 inch strip
14471                                                                                     unspecified
14473                                                                                     unspecified
14477                                                                                     unspecified
14479                                                                                 based on weight
14488                                                                    based on weight (51-100 lbs)
14489                                                                    based on weight (51-100 lbs)
14490                                                                    based on weight (51-100 lbs)
14495                                                                    based on weight (51-100 lbs)
14498                                                                    based on weight (51-100 lbs)
14499                                                                    based on weight (50-100 lbs)
14512                                                                    based on weight (51-100 lbs)
14513                                                                     based on weight (60-70 lbs)
14528                                                                                   1 bottle/vial
14529                                                                           1 tablet/pill/capsule
14547                                                                           1 tablet/pill/capsule
14563                                                                                     unspecified
14576                                                                    based on weight (51-100 lbs)
14578                                                                       based on weight (25+ lbs)
14582                                                                   based on weight (44.1-88 lbs)
14583                                                                    based on weight (51-100 lbs)
14584                                                                   based on weight (44.1-88 lbs)
14585                                                                    based on weight (51-100 lbs)
14586                                                                   based on weight (44.1-88 lbs)
14587                                                                    based on weight (51-100 lbs)
14588                                                                   based on weight (44.1-88 lbs)
14601                                                                                     unspecified
14605                                                           25 milbemycin oxime, 228 praziquantel
14608                                                           23 milbemycin oxime, 228 praziquantel
14637                                                                     based on weight (44-88 lbs)
14645                                                                                        27, 1620
14654                                                                                    0.1%, 1%, 2%
14656                                                           23 milbemycin oxime, 228 praziquantel
14658                                                            272 ivermectin, 227 pyrantel pamoate
14664                                                                    based on weight (50-100 lbs)
14665                                                                    based on weight (60-121 lbs)
14697                                                                                    small amount
14699                                                                                 based on weight
14700                                                                    based on weight (50-100 lbs)
14701                                                                                 based on weight
14702                                                            272 ivermectin, 227 pyrantel pamoate
14711                                                                    based on weight (51-100 lbs)
14712                                                                     based on weight (56-95 lbs)
14713                                                                        based on weight (85 lbs)
14720                                                                    based on weight (51-100 lbs)
14721                                                                     based on weight (56-95 lbs)
14722                                                                    based on weight (51-100 lbs)
14723                                                                    based on weight (51-100 lbs)
14726                                                                     based on weight (45-88 lbs)
14728                                                                                         23, 228
14730                                                           23 milbemycin oxime, 228 praziquantel
14733                                                           23 milbemycin oxime, 228 praziquantel
14737                                                                    based on weight (51-100 lbs)
14738                                                                     based on weight (45-88 lbs)
14744                                                                                 based on weight
14748                                                                                            5-10
14754                                                                       based on weight (22+ lbs)
14755                                                                    based on weight (51-100 lbs)
14756                                                                                            5-10
14757                                                                                            5-10
14760                                                                    based on weight (51-100 lbs)
14763                                                                           1 tablet/pill/capsule
14764                                                                                    small amount
14775                                                                                     unspecified
14777                                                                                     unspecified
14778                                                                                     unspecified
14833                                                                                        350, 900
14834                                                                                        27, 1620
14838                                                                                        350, 900
14839                                                                                         23, 228
14857                                                                                     unspecified
14858                                                                                         23, 460
14862                                                                                     unspecified
14863                                                                                     unspecified
14864                                                                  based on weight (50.1-100 lbs)
14867                                                                                        23 , 228
14870                                                                    based on weight (50-100 lbs)
14871                                                                    based on weight (50-100 lbs)
14878                                                                                     unspecified
14883                                                                           1 tablet/pill/capsule
14884                                                                           1 tablet/pill/capsule
14899                                                                                     unspecified
14911                                                                                        27, 1620
14913                                                              27 milbemycin oxime, 1620 spinosad
14914                                                            272 ivermectin, 227 pyrantel pamoate
14934                                                                    based on weight (60-120 lbs)
14943                                                                     based on weight (44-88 lbs)
14944                                                                                     unspecified
14949                                                                                     unspecified
14972                                                                     based on weight (41-60 lbs)
14973                                                                                     unspecified
14974                                                                     based on weight (41-60 lbs)
14975                                                                     based on weight (41-60 lbs)
14978                                                                           1 tablet/pill/capsule
14981                                                                     based on weight (40-60 lbs)
14982                                                                                     unspecified
14983                                                                                  1 pack/package
15001                                                                    based on weight (50-100 lbs)
15002                                                                     based on weight (45-88 lbs)
15004                                                                       based on weight (55+ lbs)
15005                                                                     based on weight (45-88 lbs)
15006                                                                    based on weight (51-100 lbs)
15007                                                                    based on weight (50-100 lbs)
15008                                                                       based on weight (55+ lbs)
15009                                                                     based on weight (45-88 lbs)
15010                                                                     based on weight (45-88 lbs)
15011                                                                  based on weight (50.1-100 lbs)
15017                                                                    based on weight (50-100 lbs)
15021                                                                    based on weight (50-100 lbs)
15022                                                                     based on weight (44-88 lbs)
15023                                                                     based on weight (45-88 lbs)
15027                                                                     based on weight (45-88 lbs)
15028                                                                  based on weight (50.1-100 lbs)
15029                                                                  based on weight (50.1-100 lbs)
15030                                                                     based on weight (44-88 lbs)
15035                                                                                     unspecified
15036                                                                                     unspecified
15045                                                                                 based on weight
15048                                                                    based on weight (50-100 lbs)
15055                                                                                     unspecified
15059                                                                    based on weight (51-100 lbs)
15061                                                                    based on weight (51-100 lbs)
15077                                                                                     unspecified
15102                                                                                    small amount
15129                                                                                             6-8
15130                                                                           1 tablet/pill/capsule
15131                                                                           1 tablet/pill/capsule
15132                                                                           1 tablet/pill/capsule
15139                                                                    based on weight (51-100 lbs)
15140                                                                     based on weight (45-88 lbs)
15144                                                                     based on weight (26-50 lbs)
15145                                                                     based on weight (45-88 lbs)
15150                                                                                 based on weight
15151                                                                                 based on weight
15155                                                                                     unspecified
15170                                                                           1 tablet/pill/capsule
15179                                                                     based on weight (25-75 lbs)
15196                                                                                     application
15197                                                                                    small amount
15209                                                                     based on weight (44-88 lbs)
15213                                                                                     unspecified
15244                                                                                          0.3, 1
15250                                                                                 based on weight
15256                                                                                 based on weight
15259                                                                        1.25 tablet/pill/capsule
15268                                                                    based on weight (50-100 lbs)
15269                                                                     based on weight (24-60 lbs)
15274                                                                                     unspecified
15308                                                                    based on weight (50-100 lbs)
15309                                                                  based on weight (60.1-121 lbs)
15310                                                                    based on weight (50-100 lbs)
15311                                                                                 based on weight
15314                                                                    based on weight (50-100 lbs)
15315                                                                                 based on weight
15317                                                                    based on weight (50-100 lbs)
15319                                                                           1 tablet/pill/capsule
15321                                                                                 based on weight
15322                                                                                 based on weight
15323                                                                                     unspecified
15332                                                                                     unspecified
15333                                                                                  1 pack/package
15339                                                                                        27, 1620
15345                                                                                        27, 1620
15348                                                                                        27, 1620
15361                                                                    based on weight (50-100 lbs)
15362                                                                                     unspecified
15363                                                                                             3-5
15365                                                                                     unspecified
15366                                                                    based on weight (50-100 lbs)
15367                                                                                     unspecified
15373                                                                    based on weight (51-100 lbs)
15374                                                                     based on weight (44-88 lbs)
15375                                                                    based on weight (51-100 lbs)
15376                                                                     based on weight (44-88 lbs)
15377                                                                    based on weight (51-100 lbs)
15378                                                                     based on weight (45-88 lbs)
15383                                                                                     unspecified
15384                                                                                     unspecified
15402                                                                                    small amount
15412                                                                                       22.7, 272
15441                                                                                     unspecified
15445                                                                                     unspecified
15448                                                                           1 tablet/pill/capsule
15451                                                                    based on weight (51-100 lbs)
15453                                                                                     unspecified
15454                                                                                     unspecified
15512                                                                   based on weight (44.1-88 lbs)
15513                                                                                     unspecified
15515                                                                   based on weight (44.1-88 lbs)
15524                                                                           1 tablet/pill/capsule
15528                                                                                         23, 228
15530                                                                     based on weight (56-95 lbs)
15531                                                                                         23, 228
15533                                                                        based on weight (25 lbs)
15551                                                                        based on weight (50 lbs)
15552                                                                     based on weight (44-88 lbs)
15554                                                                                 based on weight
15555                                                                                 based on weight
15556                                                                                 based on weight
15563                                                                                 0.25 inch strip
15581                                                                                     unspecified
15584                                                                                             4-6
15585                                                                    based on weight (51-100 lbs)
15586                                                                     based on weight (45-88 lbs)
15589                                                                    based on weight (51-100 lbs)
15590                                                                    based on weight (51-100 lbs)
15591                                                                        based on weight (77 lbs)
15592                                                                        based on weight (77 lbs)
15593                                                                    based on weight (51-100 lbs)
15594                                                                  based on weight (60.1-121 lbs)
15597                                                                    based on weight (51-100 lbs)
15598                                                                    based on weight (60-121 lbs)
15599                                                                                     application
15600                                                                    based on weight (51-100 lbs)
15601                                                                   based on weight (44.1-88 lbs)
15603                                                                                     unspecified
15604                                                                                     unspecified
15613                                                            272 ivermectin, 227 pyrantel pamoate
15618                                                            272 ivermectin, 227 pyrantel pamoate
15633                                                                                        tapering
15636                                                                    based on weight (51-100 lbs)
15649                                                                    based on weight (51-100 lbs)
15650                                                                    based on weight (89-132 lbs)
15661                                                                    based on weight (51-100 lbs)
15663                                                                    based on weight (89-132 lbs)
15667                                                                                    small amount
15669                                                            272 ivermectin, 227 pyrantel pamoate
15672                                                                    based on weight (51-100 lbs)
15673                                                                      based on weight (1-25 lbs)
15674                                                                    based on weight (88-132 lbs)
15689                                                                    based on weight (60-120 lbs)
15690                                                                    based on weight (60-120 lbs)
15691                                                                           1 tablet/pill/capsule
15692                                                                           1 tablet/pill/capsule
15693                                                                    based on weight (60-120 lbs)
15699                                                                           1 tablet/pill/capsule
15701                                                                                     unspecified
15706                                                                                    small amount
15707                                                                                        27, 1620
15712                                                                                     unspecified
15715                                                                                        27, 1620
15733                                                            272 ivermectin, 227 pyrantel pamoate
15750                                                                                     unspecified
15757                                                                    based on weight (51-100 lbs)
15758                                                                     based on weight (45-88 lbs)
15767                                                                                     unspecified
15768                                                                                     unspecified
15769                                                                                     unspecified
15770                                                                                     unspecified
15778                                                                                     unspecified
15781                                                                                     unspecified
15782                                                                                     unspecified
15790                                                                                     unspecified
15796                                                                                        125, 500
15799                                                                                     unspecified
15811                                                                     based on weight (44-88 lbs)
15815                                                                  based on weight (50.1-100 lbs)
15818                                                                    based on weight (51-100 lbs)
15829                                                            272 ivermectin, 227 pyrantel pamoate
15839                                                                                     unspecified
15840                                                                                     unspecified
15841                                                                    based on weight (51-100 lbs)
15842                                                                    based on weight (51-100 lbs)
15844                                                                    based on weight (51-100 lbs)
15848                                                                           1 tablet/pill/capsule
15849                                                                    based on weight (51-100 lbs)
15850                                                                    based on weight (51-100 lbs)
15856                                                                       based on weight (55+ lbs)
15857                                                                           1 tablet/pill/capsule
15858                                                                    0.5 tablet/pill/capsule - 75
15859                                                                    based on weight (55-100 lbs)
15860                                                                           1 tablet/pill/capsule
15862                                                                                 0.25 inch strip
15863                                                                                 0.25 inch strip
15867                                                                           1 tablet/pill/capsule
15868                                                                             tablet/pill/capsule
15869                                                                    based on weight (51-100 lbs)
15870                                                                                     unspecified
15886                                                                                     unspecified
15888                                                                                     unspecified
15889                                                                                     unspecified
15890                                                                                     unspecified
15891                                                                     based on weight (26-50 lbs)
15892                                                                    based on weight (51-100 lbs)
15907                                                                                    small amount
15911                                                                        based on weight (40 lbs)
15917                                                                                     unspecified
15921                                                                                     unspecified
15922                                                                    based on weight (51-100 lbs)
15927                                                                                         2000 iu
15928                                                                                0.5 pack/package
15929                                                                           1 tablet/pill/capsule
15930                                                                    based on weight (51-100 lbs)
15933                                                                                         2000 iu
15935                                                                                0.5 pack/package
15937                                                                    based on weight (51-100 lbs)
15944                                                                    based on weight (51-100 lbs)
15945                                                                                    pack/package
15981                                                                    based on weight (51-100 lbs)
15983                                                                                    small amount
15986                                                                     based on weight (56-95 lbs)
15992                                                                    based on weight (51-100 lbs)
15993                                                                     based on weight (56-95 lbs)
15995                                                                    based on weight (51-100 lbs)
15996                                                                     based on weight (56-95 lbs)
15997                                                                     based on weight (45-88 lbs)
15998                                                                                   1 bottle/vial
15999                                                                    based on weight (51-100 lbs)
16000                                                                     based on weight (45-88 lbs)
16005                                                           23 milbemycin oxime, 228 praziquantel
16007                                                           23 milbemycin oxime, 228 praziquantel
16009                               0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                     application
16026                                                                                    small amount
16033                                                                                 based on weight
16036                                                                    based on weight (51-100 lbs)
16038                                                                    based on weight (51-100 lbs)
16039                                                                     based on weight (44-88 lbs)
16052                                                                                 based on weight
16053                                                                                 based on weight
16094                                                            272 ivermectin, 227 pyrantel pamoate
16097                                                                    based on weight (50-100 lbs)
16098                                                                    based on weight (60-120 lbs)
16105                                                                                         23, 460
16107                                                                                     application
16108                                                                    based on weight (51-100 lbs)
16109                                                                    based on weight (50-100 lbs)
16110                                                                                   1 bottle/vial
16112                                                                   2 tablets/pills/capsules - 20
16113                                                                                    small amount
16114                                                                                     application
16116                                                                        2 tablets/pills/capsules
16117                                                                        2 tablets/pills/capsules
16118                                                                                        tapering
16150                                                                                     unspecified
16153                                                                           1 tablet/pill/capsule
16155                                                                                            8 oz
16156                                                                                  1 pack/package
16157                                                                    based on weight (51-100 lbs)
16158                                                                     based on weight (44-88 lbs)
16159                                                                    based on weight (51-100 lbs)
16160                                                                     based on weight (44-88 lbs)
16161                                                                           1 tablet/pill/capsule
16162                                                                           1 tablet/pill/capsule
16163                                                                    based on weight (51-100 lbs)
16164                                                                     based on weight (44-88 lbs)
16165                                                                    based on weight (51-100 lbs)
16177                                                                                     unspecified
16179                                                                                     unspecified
16199                                                                                     unspecified
16229                                                                    based on weight (51-100 lbs)
16230                                                                    based on weight (51-100 lbs)
16239                                                                                     unspecified
16240                                                                                     unspecified
16241                                                                                     unspecified
16242                                                                                     unspecified
16251                                                                                    small amount
16253                                                                                     unspecified
16285                                                                           1 tablet/pill/capsule
16286                                                                                     unspecified
16287                                                                             tablet/pill/capsule
16288                                                                                     application
16289                                                                     based on weight (26-50 lbs)
16290                                                                     based on weight (44-88 lbs)
16292                                                                             tablet/pill/capsule
16293                                                                                     application
16294                                                                    based on weight (51-100 lbs)
16295                                                                     based on weight (45-88 lbs)
16296                                                                    based on weight (51-100 lbs)
16312                                                                    based on weight (51-100 lbs)
16313                                                                   based on weight (24.1-60 lbs)
16315                                                                    based on weight (51-100 lbs)
16316                                                                   based on weight (24.1-60 lbs)
16318                                                                    based on weight (50-100 lbs)
16319                                                                     based on weight (24-60 lbs)
16321                                                                  based on weight (50.1-100 lbs)
16322                                                                  based on weight (60.1-120 lbs)
16324                                                                    based on weight (51-100 lbs)
16325                                                                    based on weight (60-121 lbs)
16326                                                                           1 tablet/pill/capsule
16340                                                                    based on weight (51-100 lbs)
16347                                           4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                           350 chondroitin sulfate, 900 glucosamine hcl, 800 msm
16355                                                                                     unspecified
16356                                                                                     unspecified
16367                                                                                     unspecified
16371                                                                                     unspecified
16374                                                                                     unspecified
16376                                                                                     unspecified
16378                                                                                     unspecified
16382                                                                                     unspecified
16387                                                                                     as directed
16388                                                                                     as directed
16389                                                            272 ivermectin, 227 pyrantel pamoate
16400                                                                    based on weight (51-100 lbs)
16401                                                                    based on weight (60-120 lbs)
16403                                                                    based on weight (51-100 lbs)
16404                                                                    based on weight (60-120 lbs)
16408                                                            272 ivermectin, 227 pyrantel pamoate
16413                                                                    based on weight (50-100 lbs)
16414                                                                     based on weight (44-88 lbs)
16418                                                                                     unspecified
16419                                                                                     unspecified
16420                                                                                     unspecified
16425                                                                     based on weight (45-88 lbs)
16426                                                                     based on weight (45-88 lbs)
16434                                                                                     unspecified
16435                                                                                     unspecified
16436                                                                                     unspecified
16437                                                                                     unspecified
16440                                                                    based on weight (51-100 lbs)
16441                                                                    based on weight (51-100 lbs)
16442                                                                                     unspecified
16443                                                                                     unspecified
16447                                                                    based on weight (51-100 lbs)
16448                                                                                     unspecified
16450                                                                    based on weight (51-100 lbs)
16462                                                                                          0.5/kg
16472                                                              460 lufenuron, 23 milbemycin oxime
16474                                                                               1 syringe/pipette
16477                                                                                         23, 460
16478                                                              8.8% (s)-methoprene, 9.8% fipronil
16479                                                                               1 syringe/pipette
16497                                                                                     bottle/vial
16522                                                                    based on weight (51-100 lbs)
16523                                                                    based on weight (51-100 lbs)
16524                                                                     based on weight (44-88 lbs)
16525                                                                    based on weight (51-100 lbs)
16526                                                                     based on weight (56-95 lbs)
16544                                                                     based on weight (44-88 lbs)
16546                                                                  based on weight (50.1-100 lbs)
16553                                                                  based on weight (50.1-100 lbs)
16579         based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                
16595                                                                           1 tablet/pill/capsule
16596                                                                    based on weight (51-100 lbs)
16597                                                                    based on weight (51-100 lbs)
16598                                                                    based on weight (88-132 lbs)
16599                                                                    based on weight (51-100 lbs)
16601                                                                    based on weight (89-132 lbs)
16605                                                                       based on weight (45+ lbs)
16606                                                                    based on weight (51-100 lbs)
16608                                                                    based on weight (51-100 lbs)
16624                                                              27 milbemycin oxime, 1620 spinosad
16630                                                                           1 tablet/pill/capsule
16631                                                                           1 tablet/pill/capsule
16635                                                                                 0.25 inch strip
16636                                                                    based on weight (51-100 lbs)
16639                                                                    based on weight (51-100 lbs)
16657                                                                                             6-8
16684                                                                                    small amount
16685                                                                                        wipe/pad
16687                                                            272 ivermectin, 227 pyrantel pamoate
16694                                                            272 ivermectin, 227 pyrantel pamoate
16702                                                                                 0.25 inch strip
16703                                                                                          powder
16704                                                                    based on weight (51-100 lbs)
16705                                                                    based on weight (60-120 lbs)
16711                                                                                    small amount
16712                                                                                    small amount
16714                                                                                    small amount
16717                                                                                    small amount
16718                                                                                    small amount
16721                                                                    based on weight (51-100 lbs)
16723                                                                                     application
16724                                                                                     application
16726                                                                                                
16749                                                              460 lufenuron, 23 milbemycin oxime
16751                                                                                        23 , 460
16774                                                                                     unspecified
16777                                                                                     as directed
16778                                                                                     as directed
16779                                                                                     as directed
16783                                                                                     unspecified
16784                                                                                     unspecified
16785                                                                                     unspecified
16791                                                                     based on weight (44-88 lbs)
16793                                                                     based on weight (24-60 lbs)
16798                                                                                     unspecified
16805                                                                    based on weight (50-100 lbs)
16807                                                                       based on weight (55+ lbs)
16809                                                                                                
16810                                                            272 ivermectin, 227 pyrantel pamoate
16811                                                               4.5% flumethrin, 10% imidacloprid
16814                                                                                     unspecified
16815                                                                                     unspecified
16816                                                                                     unspecified
16821                                                                                     unspecified
16823                                                                                     unspecified
16834                                                                                     unspecified
16838                                                                                     unspecified
16840                                                                                     unspecified
16841                                                                                     unspecified
16847                                                                                     unspecified
16869                                                                    based on weight (50-100 lbs)
16877                                                                                       13.5, 810
16882                                                                                 based on weight
16918                                                                                     unspecified
16929                                                                           1 tablet/pill/capsule
16931                                                                                       13.5, 810
16933                                                                                       13.5, 810
16935                                                                           1 tablet/pill/capsule
16936                                                                           1 tablet/pill/capsule
16939                                                                                    small amount
16970                                                                    based on weight (51-100 lbs)
16983                                                                                        6 months
16993                                                                                     as directed
16994                                                                                     application
16998                                                                     based on weight (56-95 lbs)
16999                                                            272 ivermectin, 227 pyrantel pamoate
17000                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                            272 ivermectin, 227 pyrantel pamoate
17012                                                                     based on weight (56-80 lbs)
17013                                                                    based on weight (51-100 lbs)
17014                                                                    based on weight (51-100 lbs)
17018                                                                                     as directed
17019                                                                                     unspecified
17020                                                                                     unspecified
17022                                                                                     unspecified
17042                                                                  based on weight (50.1-100 lbs)
17053                                                                           1 tablet/pill/capsule
17062                                                                                     unspecified
17088                                                            272 ivermectin, 227 pyrantel pamoate
17090                                                                    based on weight (51-100 lbs)
17091                                                                    based on weight (60-120 lbs)
17094                                                                           1 tablet/pill/capsule
17095                                                                           1 tablet/pill/capsule
17098                                                                                     unspecified
17099                                                                                 based on weight
17120                                                                                    small amount
17121                                                                                    small amount
17126                                                                                    small amount
17127                                                                                     as directed
17138                                                                    based on weight (51-100 lbs)
17143                                                                    based on weight (51-100 lbs)
17153                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
17156                                                                    based on weight (50-100 lbs)
17157                                                                    based on weight (60-121 lbs)
17173                                                                                     unspecified
17177                                                                                     unspecified
17180                                                                                     unspecified
17209                                                                                     unspecified
17218                                                                     based on weight (56-95 lbs)
17220                                                                    based on weight (50-100 lbs)
17221                                                                    based on weight (60-120 lbs)
17225                                                                    based on weight (51-100 lbs)
17226                                                                    based on weight (60-120 lbs)
17227                                                                    based on weight (50-100 lbs)
17228                                                                    based on weight (60-100 lbs)
17229                                                                                     unspecified
17232                                                                    based on weight (50-100 lbs)
17233                                                                       based on weight (55+ lbs)
17234                                                                    based on weight (51-100 lbs)
17236                                                                       based on weight (55+ lbs)
17237                                                                    based on weight (50-100 lbs)
17239                                                                    based on weight (50-100 lbs)
17248                                                                           1 tablet/pill/capsule
17251                                                                           1 tablet/pill/capsule
17252                                                                                 based on weight
17254                                                                                     application
17255                                                                                 based on weight
17263                                                                                       13.5, 810
17264                                                                                        27, 1620
17266                                                                           1 tablet/pill/capsule
17268                                                                    based on weight (51-100 lbs)
17283                                                                                          57, 68
17285                                                              68 ivermectin, 57 pyrantel pamoate
17297                                                                      1.5 tablets/pills/capsules
17298                                                                    based on weight (51-100 lbs)
17307                                                                                           6, 15
17308                                                                                           6, 15
17309                                                                                          3, 7.5
17310                                                                                          3, 7.5
17313                                                                           1 tablet/pill/capsule
17314                                                                                     application
17315                                                                           1 tablet/pill/capsule
17327                                                                                     application
17329                                                                                     application
17330                                                                                     application
17335                                                                                     application
17352                                                                                     unspecified
17355                                                                                     unspecified
17387                                                                                     unspecified
17389                                                            272 ivermectin, 227 pyrantel pamoate
17390                                                                                     unspecified
17391                                                            272 ivermectin, 227 pyrantel pamoate
17393                                                                                     application
17399                                                                  based on weight (50.1-100 lbs)
17406                                                                    based on weight (51-100 lbs)
17407                                                                                             1-2
17412                                                                                     unspecified
17417                                                                                          collar
17418                                                                        3 tablets/pills/capsules
17419                                                                           1 tablet/pill/capsule
17420                                                                           1 tablet/pill/capsule
17426                                                                                     unspecified
17427                                                                                     unspecified
17446                                                                                     bottle/vial
17461                                                              460 lufenuron, 23 milbemycin oxime
17463                                                                                  1 pack/package
17468                                                                                         23, 460
17470                                                                                  1 pack/package
17482                                                                                    small amount
17486                                                                    based on weight (51-100 lbs)
17487                                                                     based on weight (45-88 lbs)
17488                                                                    based on weight (51-100 lbs)
17489                                                                     based on weight (45-88 lbs)
17490                                                                     based on weight (45-88 lbs)
17491                                                                    based on weight (50-100 lbs)
17492                                                                    based on weight (50-100 lbs)
17493                                                                    based on weight (51-100 lbs)
17495                                                                    based on weight (50-100 lbs)
17496                                                                     based on weight (45-88 lbs)
17518                                                                    based on weight (50-100 lbs)
17519                                                                    based on weight (51-100 lbs)
17576                                                                                     unspecified
17583                                                                                     application
17588                                                                                                
17602                                                                                    small amount
17603                                                                           1 tablet/pill/capsule
17605                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
17611                                                                     based on weight (44-88 lbs)
17615                                                                     based on weight (45-88 lbs)
17627                                                                   based on weight (44.1-88 lbs)
17659                                                                    based on weight (50-100 lbs)
17672                                                              27 milbemycin oxime, 1620 spinosad
17673                                                              27 milbemycin oxime, 1620 spinosad
17680                                                                                     unspecified
17697                                                                                        27, 1620
17702                                                                                         10, 100
17703                                                                                         23, 460
17719                                                                                         23, 460
17720                                                                                    small amount
17722                                                                    based on weight (51-100 lbs)
17742                                                                                     application
17755                                                                     based on weight (45-88 lbs)
17779                                                                                     unspecified
17780                                                           2 prednisone, 5 trimeprazine tartrate
17781                                                                                             4-6
17782                                                                     based on weight (44-88 lbs)
17798                                                                                             6-8
17802                                                                                     unspecified
17803                                                                                     unspecified
17804                                                                                     unspecified
17818                                                                    based on weight (60-120 lbs)
17832                                                                                     unspecified
17845                                                                                     unspecified
17853                                                                                     unspecified
17855                                                                                     unspecified
17856                                                                                     unspecified
17860                                                                                     unspecified
17863                                                                                     unspecified
17865                                                                                     unspecified
17882                                                    0.284 betamethasone, 0.57 gentamicin sulfate
18023                                                                    based on weight (50-100 lbs)
18024                                                                    based on weight (60-121 lbs)
18057                                                                  based on weight (60.1-121 lbs)
18058                                                                    based on weight (51-100 lbs)
18072                                                                   based on weight (40.1-60 lbs)
18074                                                                                 moderate amount
18075                                                                    based on weight (51-100 lbs)
18094                                                                                     unspecified
18095                                                                                 based on weight
18096                                                                                     application
18098                                                                                     unspecified
18114                                                                                     unspecified
18115                                                                                         23, 460
18116                                                                       based on weight (55+ lbs)
18118                                                                                   1 bottle/vial
18119                                                                           1 tablet/pill/capsule
18124                                                                       based on weight (50+ lbs)
18134                                                                                     unspecified
18141                                                                                     unspecified
18147                                                                                     unspecified
18165                                                                                    small amount
18188                                                                           1 tablet/pill/capsule
18192                                                                    based on weight (51-100 lbs)
18193                                                                    based on weight (51-100 lbs)
18195                                                                                     unspecified
18199                                                                                            5, 2
18202                                                                    based on weight (51-100 lbs)
18205                                                                    based on weight (51-100 lbs)
18213                                                                                     unspecified
18214                                                                                     unspecified
18217                                                                    based on weight (50-100 lbs)
18218                                                                    based on weight (50-100 lbs)
18220                                                                           1 tablet/pill/capsule
18222                                                                           1 tablet/pill/capsule
18238                                                                                     unspecified
18251                                                                                          powder
18258                                                                               0.44, 4.95, 36.08
18260                                                                                        27, 1620
18262                                                                               0.44, 4.95, 36.08
18263                                                                                     unspecified
18264                                                                                        27, 1620
18266                                                                                        27, 1620
18271                                                                                              iu
18275                                                                                     unspecified
18276                                                                                     unspecified
18323                                                                                    small amount
18325                                                                                     unspecified
18326                                                                                     unspecified
18337                                                                    based on weight (51-100 lbs)
18338                                                                                        compound
18339                                                                                 based on weight
18340                                                                                 based on weight
18341                                                                                     unspecified
18342                                                                                 based on weight
18344                                                                    based on weight (51-100 lbs)
18365                                                                    based on weight (51-100 lbs)
18366                                                                    based on weight (60-120 lbs)
18370                                                                    based on weight (51-100 lbs)
18371                                                                     based on weight (24-60 lbs)
18373                                                                    based on weight (51-100 lbs)
18374                                                                    based on weight (60-121 lbs)
18404                                                                                                
18415                                                                    based on weight (51-100 lbs)
18427                                                                                    small amount
18441                                                                        2 tablets/pills/capsules
18459                                                                    based on weight (51-100 lbs)
18460                                                                    based on weight (51-100 lbs)
18461                                                                     based on weight (44-88 lbs)
18469                                                                                 0.25 inch strip
18471                                                                                     application
18479                                                                                        27, 1610
18480                                                                                        27, 1610
18483                                                                                        27, 1610
18489                                                                                 based on weight
18490                                                                                 based on weight
18494                                                                                 based on weight
18495                                                                                 based on weight
18500                                                                                 based on weight
18502                                                                    based on weight (50-100 lbs)
18514                                                                     based on weight (21-55 lbs)
18520                                                                        based on weight (60 lbs)
18525                                                                     based on weight (44-88 lbs)
18534                                                                                     unspecified
18565                                                                       based on weight (55+ lbs)
18571                                                                    based on weight (51-100 lbs)
18572                                                                    based on weight (60-120 lbs)
18576                                                                    based on weight (51-100 lbs)
18577                                                                  based on weight (60.1-121 lbs)
18580                                                                    based on weight (50-100 lbs)
18588                                                                                     unspecified
18591                                                                                                
18595                                                                                     as directed
18609                                                                                     unspecified
18612                                                                                     unspecified
18621                                                                                     unspecified
18649                                                                       based on weight (25+ lbs)
18686                                                                           1 tablet/pill/capsule
18687                                                                                             5-8
18689                                                                2-3 tablets/pills/capsules - 4mg
18690                                                                                     unspecified
18694                                                                                       11.5, 230
18696                                                                     based on weight (45-88 lbs)
18697                                                                    based on weight (50-100 lbs)
18703                                                                    based on weight (51-100 lbs)
18707                                                            132 ivermectin, 114 pyrantel pamoate
18716                                                                                     unspecified
18718                                                                                     unspecified
18729                                                                                     unspecified
18734                                                                      based on weight (5-10 lbs)
18735                                                                      based on weight (0-25 lbs)
18736                                                                   based on weight (20.1-40 lbs)
18743                                                                     based on weight (26-50 lbs)
18750                                                            272 ivermectin, 227 pyrantel pamoate
18774                                                                                       13.5, 810
18775                                                             13.5 milbemycin oxime, 810 spinosad
18795                                                                                     as directed
18796                                                                                     as directed
18797                                                                                     as directed
18798                                                                                     as directed
18799                                                                                        114, 136
18800                                                                    based on weight (51-100 lbs)
18820                                                                                    small amount
18829                                                                                     unspecified
18837                                                                    based on weight (60-120 lbs)
18838                                                                                 based on weight
18839                                                                     based on weight (45-90 lbs)
18844                                                                     based on weight (45-90 lbs)
18845                                                                  based on weight (50.1-100 lbs)
18847                                                                                 based on weight
18850                                                                                 based on weight
18852                                                                           1 tablet/pill/capsule
18853                                                                           1 tablet/pill/capsule
18854                                                                           1 tablet/pill/capsule
18882                                                                                     application
18908                                                                    based on weight (51-100 lbs)
18909                                                                       based on weight (55+ lbs)
18919                                                                                          collar
18921                                                                       based on weight (18+ lbs)
18924                                                                                     unspecified
18933                                                                                     unspecified
18935                                                                  based on weight (50.1-100 lbs)
18936                                                                                 based on weight
18937                                                                                 based on weight
18961                                                                        2 tablets/pills/capsules
18964                                                                                     unspecified
18970                                                                           1 tablet/pill/capsule
18987                                                                           1 tablet/pill/capsule
18988                                                                           1 tablet/pill/capsule
18991                                                                    based on weight (51-100 lbs)
18993                                                                                        2 scoops
18997                                                                                     unspecified
18998                                                                                     unspecified
19003                                                                                     unspecified
19004                                                                                     unspecified
19005                                                                                     unspecified
19006                                                                                     unspecified
19008                                                                                     unspecified
19009                                                                                     unspecified
19015                                                                                     unspecified
19019                                                                                     unspecified
19021                                                                                     unspecified
19022                                                                    based on weight (60-120 lbs)
19023                                                                                    small amount
19025                                                                           1 tablet/pill/capsule
19040                                                              27 milbemycin oxime, 1620 spinosad
19041                                                           23 milbemycin oxime, 228 praziquantel
19055                                                                     based on weight (45-88 lbs)
19056                                                                                     unspecified
19057                                                                                    2 , 1%, 22.7
19061                                                                                 based on weight
19062                                                                    based on weight (50-100 lbs)
19068                                                                        based on weight (50 lbs)
19070                                                                       based on weight (50+ lbs)
19072                                                                     based on weight (45-88 lbs)
19073                                                                    based on weight (51-100 lbs)
19078                                                                    based on weight (51-100 lbs)
19082                                                                     based on weight (45-88 lbs)
19122                                                                       based on weight (55+ lbs)
19130                                                                     based on weight (44-88 lbs)
19152                                                                                     application
19153                                                                   based on weight (24.1-60 lbs)
19154                                                                  based on weight (50.1-100 lbs)
19159                                                                                     unspecified
19165                                                                    based on weight (51-100 lbs)
19169                                                                    based on weight (51-100 lbs)
19170                                                                     based on weight (45-88 lbs)
19183                                                                                          collar
19184                                                                                     unspecified
19213                                                                                     unspecified
19214                                                                                     unspecified
19215                                                                    based on weight (51-100 lbs)
19216                                                                    based on weight (51-100 lbs)
19220                                                                                 based on weight
19221                                                                    based on weight (51-100 lbs)
19222                                                                     based on weight (44-88 lbs)
19223                                                                    based on weight (51-100 lbs)
19224                                                                                          collar
19246                                                                                     as directed
19252                                                                         0.5 tablet/pill/capsule
19253                                                                         1.5 tablet/pill/capsule
19254                                                                         1-2 tablet/pill/capsule
19271                                                                    based on weight (51-100 lbs)
19272                                                                   based on weight (44.1-88 lbs)
19273                                                                    based on weight (50-100 lbs)
19278                                                                    based on weight (51-100 lbs)
19281                                                                     based on weight (44-88 lbs)
19282                                                                     based on weight (44-88 lbs)
19288                                                                                     unspecified
19298                                                                                     unspecified
19299                                                                                     unspecified
19318                                                                     based on weight (44-88 lbs)
19325                                                                                     unspecified
19326                                                                        based on weight (50 lbs)
19327                                                                        based on weight (50 lbs)
19338                                                                                     unspecified
19350                                                                                 0.25 inch strip
19353                                                                                     unspecified
19354                                                                                     unspecified
19356                                                                    based on weight (50-100 lbs)
19357                                                                       based on weight (55+ lbs)
19373                                                                    based on weight (51-100 lbs)
19386                                                                    based on weight (51-100 lbs)
19387                                                                    based on weight (51-100 lbs)
19390                                                                                     application
19391                                                                    based on weight (51-100 lbs)
19423                                                                    based on weight (51-100 lbs)
19427                                                                                 based on weight
19445                                                                    based on weight (51-100 lbs)
19446                                                                     based on weight (45-88 lbs)
19447                                                                    based on weight (51-100 lbs)
19448                                                                     based on weight (44-88 lbs)
19449                                                                                 based on weight
19450                                                                     based on weight (61-80 lbs)
19452                                                                                     unspecified
19453                                                                                     unspecified
19454                                                                                     unspecified
19457                                                                    based on weight (51-100 lbs)
19462                                                                    based on weight (51-100 lbs)
19463                                                                     based on weight (44-88 lbs)
19464                                                                                     unspecified
19465                                                                                     unspecified
19476                                                                        based on weight (35 lbs)
19482                                                                    based on weight (51-100 lbs)
19486                                                                    based on weight (50-100 lbs)
19487                                                                    based on weight (60-120 lbs)
19492                                                                    based on weight (50-100 lbs)
19493                                                                    based on weight (60-121 lbs)
19495                                                                       based on weight (50+ lbs)
19537                                                                                 based on weight
19596                                                                    based on weight (51-100 lbs)
19603                                                                     based on weight (40-60 lbs)
19617                                                                                     2.68of 9.8%
19641                                                                                     unspecified
19662                                                                                  1 pack/package
19663                                                                                        125, 500
19673                                                                    based on weight (51-100 lbs)
19674                                                                     based on weight (44-88 lbs)
19685                                                                    based on weight (51-100 lbs)
19686                                                              460 lufenuron, 25 milbemycin oxime
19688                                                                    based on weight (51-100 lbs)
19689                                                              460 lufenuron, 23 milbemycin oxime
19710                                                                    based on weight (51-100 lbs)
19711                                                                    based on weight (50-100 lbs)
19712                                                                                 based on weight
19713                                                                    based on weight (50-100 lbs)
19714                                                                                 based on weight
19715                                                                    based on weight (51-100 lbs)
19716                                                                                 based on weight
19717                                                                    based on weight (51-100 lbs)
19718                                                                                 based on weight
19722                                                                                     unspecified
19735                                                                                    small amount
19737                                                                                    small amount
19741                                                                    based on weight (51-100 lbs)
19754                                                                                         23, 228
19768                                                                     based on weight (40-80 lbs)
19771                                                                                       13.5, 810
19776                                                                     based on weight (40-60 lbs)
19777                                                                             tablet/pill/capsule
19778                                                                                    small amount
19788                                                                                     unspecified
19790                                                                                     unspecified
19792                                                                                     unspecified
19801                                                                     based on weight (44-88 lbs)
19803                                                                    based on weight (51-100 lbs)
19823                                                                                    small amount
19828                                                                    based on weight (50-100 lbs)
19829                                                                     based on weight (56-95 lbs)
19838                                                                                     unspecified
19843                                                                                     unspecified
19844                                                                                     unspecified
19845                                                                                     unspecified
19851                                                                    based on weight (60-100 lbs)
19856                                                                  based on weight (50.1-100 lbs)
19876                                                                                     unspecified
19881                                                                                     unspecified
19888                                                                    based on weight (50-100 lbs)
19907                                                              27 milbemycin oxime, 1620 spinosad
19909                                                           23 milbemycin oxime, 228 praziquantel
19911                                                                                 based on weight
19912                                                                                     unspecified
19914                                                                                     unspecified
19917                                                                                     application
19925                                                                                     unspecified
19926                                                                                     unspecified
19927                                                                                     unspecified
19928                                                                                     unspecified
19930                                                                                       13.5, 810
19932                                                                    based on weight (60-120 lbs)
19933                                                                    based on weight (60-120 lbs)
19944                                                                                     unspecified
19945                                                                                     unspecified
19946                                                                    based on weight (60-120 lbs)
19947                                                                                     unspecified
19948                                                                                     unspecified
19949                                                                                     unspecified
19950                                                                                     unspecified
19952                                                                                     unspecified
19958                                                                                          collar
19975                                                            272 ivermectin, 227 pyrantel pamoate
19984                                                                                     unspecified
20003                                                                                 based on weight
20006                                                                                     unspecified
20007                                                                                     unspecified
20019                                                                    based on weight (51-100 lbs)
20020                                                                    based on weight (60-121 lbs)
20024                                                                           1 tablet/pill/capsule
20025                                                                           1 tablet/pill/capsule
20026                                                                           1 tablet/pill/capsule
20027                                                                    based on weight (60-121 lbs)
20028                                                                    based on weight (51-100 lbs)
20038                                                                           1 tablet/pill/capsule
20039                                                                           1 tablet/pill/capsule
20065                                                                                     unspecified
20068                                                                                     unspecified
20069                                                                                     unspecified
20070                                                                                     unspecified
20072                                                                                     unspecified
20074                                                                                     unspecified
20096                                                                                     unspecified
20099                                                                                     unspecified
20105                                                                                     unspecified
20106                                                                                     unspecified
20125                                                                                     0.3 (10mg/)
20126                                                                    based on weight (50-100 lbs)
20127                                                                  based on weight (60.1-121 lbs)
20130                                                                                    small amount
20131                                                                       based on weight (50+ lbs)
20135                                                                                         23, 228
20144                                                                    based on weight (50-100 lbs)
20145                                                                                         30 , 40
20149                                                                                     unspecified
20150                                                                                     unspecified
20164                                                                                             5-6
20173                                                                       based on weight (55+ lbs)
20174                                                                    based on weight (51-100 lbs)
20175                                                                                    small amount
20182                                                                                    small amount
20218                                                                                 based on weight
20219                                                                    based on weight (51-100 lbs)
20220                                                                     based on weight (51-60 lbs)
20221                                                                    based on weight (60-120 lbs)
20222                                                                    based on weight (60-120 lbs)
20224                                                                    based on weight (60-120 lbs)
20232                                                                                     as directed
20233                                                                    based on weight (51-100 lbs)
20234                                                                                    small amount
20240                                                                       based on weight (55+ lbs)
20241                                                                       based on weight (55+ lbs)
20243                                                                     based on weight (44-88 lbs)
20244                                                                    based on weight (51-100 lbs)
20245                                                                    based on weight (51-100 lbs)
20251                                                                                    pack/package
20275                                                                                        23 , 460
20282                                                                                         23, 460
20292                                                            272 ivermectin, 227 pyrantel pamoate
20293                                                                                     unspecified
20295                                                                     based on weight (56-90 lbs)
20297                                                                    based on weight (88-110 lbs)
20298                                                                                 0.25 inch strip
20300                                                                    based on weight (88-110 lbs)
20301                                                                       based on weight (18+ lbs)
20302                                                                400 imidacloprid, 100 moxidectin
20303                                                               4.5% flumethrin, 10% imidacloprid
20306                                                                                 based on weight
20315                                                                                     unspecified
20337                                                                                     unspecified
20339                                                                                     unspecified
20340                                                                                     unspecified
20342                                                                                     unspecified
20343                                                                                     unspecified
20344                                                                                        27, 1620
20348                                                                    based on weight (51-100 lbs)
20356                                                           23 milbemycin oxime, 228 praziquantel
20374                                                                        based on weight (55 lbs)
20376                                                                                     as directed
20377                                                                    based on weight (51-100 lbs)
20380                                                                                     as directed
20382                                                                                     unspecified
20387                                                                    based on weight (51-100 lbs)
20388                                                                    based on weight (51-100 lbs)
20390                                                                    based on weight (51-100 lbs)
20392                                                                                    small amount
20393                                                                                    small amount
20402                                                                    based on weight (51-100 lbs)
20405                                                                    based on weight (51-100 lbs)
20409                                                                                         23, 228
20411                                                           23 milbemycin oxime, 228 praziquantel
20413                                                           23 milbemycin oxime, 228 praziquantel
20425                                                                    based on weight (51-100 lbs)
20426                                                                    based on weight (51-100 lbs)
20441                                                                                     application
20444                                                                                     unspecified
20446                                                                                     unspecified
20453                                                                                       5.75, 115
20460                                                                                       11.5, 230
20485                                                                                    small amount
20490                                                                     based on weight (26-50 lbs)
20491                                                                     based on weight (24-60 lbs)
20510                                                                                     unspecified
20511                                                                    based on weight (51-100 lbs)
20512                                                                     based on weight (24-60 lbs)
20516                                                                    based on weight (51-100 lbs)
20517                                                                     based on weight (24-60 lbs)
20518                                                                                     unspecified
20554                                                                    based on weight (60-120 lbs)
20555                                                                    based on weight (60-120 lbs)
20561                                                                    based on weight (60-120 lbs)
20565                                                                    based on weight (60-120 lbs)
20568                                                                    based on weight (60-120 lbs)
20574                                                                                     unspecified
20577                                                                                     unspecified
20579                                                                   based on weight (40.1-60 lbs)
20582                                                                           1 tablet/pill/capsule
20585                                                                                    small amount
20615                                                                                     unspecified
20623                                                                                     unspecified
20636                                                                     based on weight (44-88 lbs)
20638                                                                                     2.68of 9.8%
20641                                                                                     unspecified
20642                                                                     based on weight (45-88 lbs)
20645                                                                     based on weight (45-88 lbs)
20648                                                                     based on weight (45-88 lbs)
20651                                                                     based on weight (45-88 lbs)
20659                                                                                     unspecified
20666                                                                                     unspecified
20667                                                                                     unspecified
20678                                                                                     unspecified
20698                                                                                 0.25 inch strip
20701                                                                                     unspecified
20702                                                                                     unspecified
20704                                                                                     application
20705                                                                                        wipe/pad
20707                                                                    based on weight (60-120 lbs)
20708                                                                                     unspecified
20709                                                                                     unspecified
20712                                                                                        wipe/pad
20717                                                                  based on weight (50.1-100 lbs)
20718                                                           23 milbemycin oxime, 228 praziquantel
20728                                                                                     unspecified
20738                                                                                        tapering
20748                                                            272 ivermectin, 227 pyrantel pamoate
20761                                                                                       13.5, 810
20762                                                                                        27, 1620
20763                                                                                        27, 1610
20766                                                                                        27, 1620
20767                                                                                        27, 1620
20771                                                                                        125, 500
20783                                                                                        27, 1620
20791                                                                                     unspecified
20796                                                                                     unspecified
20800                                                                  based on weight (50.1-100 lbs)
20808                                                                    based on weight (51-100 lbs)
20809                                                                  based on weight (60.1-120 lbs)
20814                                                                                     unspecified
20817                                                                                       13.5, 810
20819                                                             13.5 milbemycin oxime, 810 spinosad
20849                                                                                                
20852                                                                                        tapering
20854                                                                    based on weight (51-100 lbs)
20855                                                                    based on weight (60-121 lbs)
20858                                                            272 ivermectin, 227 pyrantel pamoate
20861                                                                                     application
20862                                                                    based on weight (51-100 lbs)
20863                                                                    based on weight (60-120 lbs)
20872                                                                     based on weight (40-85 lbs)
20897                                                                                    small amount
20918                                                                                          2.5, 5
20939                                                                       based on weight (18+ lbs)
20940                                                                                 based on weight
20941                                                                           1 tablet/pill/capsule
20947                                                                                 based on weight
20949                                                                                 based on weight
20962                                                                    based on weight (50-100 lbs)
20963                                                                     based on weight (45-88 lbs)
20964                                                                    based on weight (50-100 lbs)
20965                                                                    based on weight (88-132 lbs)
20966                                                                    based on weight (50-100 lbs)
21003                                                                                     unspecified
21013                                                                                 0.25 inch strip
21022                                                              27 milbemycin oxime, 1620 spinosad
21025                                                           2 prednisone, 5 trimeprazine tartrate
21029                                                                                       13.5, 810
21074                                                                    based on weight (60-120 lbs)
21078                                                                  based on weight (60.1-120 lbs)
21080                                                                                        27, 1620
21088                                                                                     unspecified
21102                                                                     based on weight (40-80 lbs)
21109                                                                                    small amount
21110                                                                    based on weight (51-100 lbs)
21111                                                                                    small amount
21112                                                                                    small amount
21114                                                                    based on weight (51-100 lbs)
21115                                                                     based on weight (44-88 lbs)
21119                                                             10 dextromethorphan, 10 guaifenesin
21122                                                                    based on weight (51-100 lbs)
21123                                                                     based on weight (44-88 lbs)
21125                                                                                    small amount
21126                                                                           1 tablet/pill/capsule
21127                                                                    based on weight (51-100 lbs)
21128                                                                           1 tablet/pill/capsule
21129                                                                           1 tablet/pill/capsule
21130                                                                        3 tablets/pills/capsules
21131                                                                                 moderate amount
21133                                                                    based on weight (51-100 lbs)
21168                                                                    based on weight (51-100 lbs)
21169                                                                     based on weight (45-88 lbs)
21178                                                                                     unspecified
21179                                                                                         23, 460
21180                                                                                       27 , 1620
21181                                                                    based on weight (51-100 lbs)
21182                                                                                        23 , 460
21183                                                                           1 tablet/pill/capsule
21189                                                                           1 tablet/pill/capsule
21190                                                                    based on weight (60-120 lbs)
21201                                                                                         23, 228
21224                                                                                 0.25 inch strip
21253                                                              27 milbemycin oxime, 1620 spinosad
21254                                                                    based on weight (51-100 lbs)
21256                                                                                         23, 460
21267                                                              27 milbemycin oxime, 1620 spinosad
21268                                                                                     bottle/vial
21269                                                                    based on weight (60-120 lbs)
21273                                                                                         23, 460
21278                                                                                    small amount
21282                                                                                    small amount
21287                                                                                    small amount
21309                                                                                          2.5, 5
21326                                                                                             6-8
21331                                                                                     unspecified
21338                                                                       based on weight (55+ lbs)
21359                                                                                         23, 460
21361                                                                                         23, 460
21369                                                                    based on weight (51-100 lbs)
21384                                                                    based on weight (51-100 lbs)
21385                                                                  based on weight (60.1-121 lbs)
21386                                                                                             7-8
21387                                                                                     unspecified
21388                                                                                     unspecified
21389                                                                                     unspecified
21403                                                                                         23, 228
21413                                                                                     unspecified
21416                                                                                     unspecified
21442                                                                                      1200, 1500
21445                                                                    based on weight (51-100 lbs)
21448                                                                    based on weight (51-100 lbs)
21449                                                                   based on weight (24.1-60 lbs)
21465                                                                                     unspecified
21472                                                      500 amoxicillin, 125 clavulanate potassium
21481                                                                                     unspecified
21492                                                                                     unspecified
21493                                                                                     unspecified
21495                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21504                                                                        based on weight (45 lbs)
21507                                                                        based on weight (50 lbs)
21508                                                                                     application
21509                                                                                     unspecified
21527                                                                     based on weight (20-55 lbs)
21528                                                                                 based on weight
21531                                                            272 ivermectin, 227 pyrantel pamoate
21532                                                                    based on weight (51-100 lbs)
21533                                                                    based on weight (60-120 lbs)
21545                                                                           1 tablet/pill/capsule
21549 2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
21552                                                                                     unspecified
21553                                                                                     unspecified
21555                                                                                     unspecified
21558                                                                                         23, 460
21562                                                                       based on weight (55+ lbs)
21563                                                                    based on weight (50-100 lbs)
21564                                                                       based on weight (55+ lbs)
21585                                                                    based on weight (60-120 lbs)
21586                                                                    based on weight (50-100 lbs)
21593                                                                                     unspecified
21600                                                                        based on weight (55 lbs)
21602                                                              460 lufenuron, 23 milbemycin oxime
21605                                                                       based on weight (55+ lbs)
21607                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21608                                                                    based on weight (51-100 lbs)
21609                                                                     based on weight (44-88 lbs)
21612                                                                                     unspecified
21614                                                                     based on weight (44-88 lbs)
21615                                                                    based on weight (51-100 lbs)
21616                                                                                    small amount
21617                                                                    based on weight (51-100 lbs)
21618                                                                     based on weight (44-88 lbs)
21619                                                                    based on weight (51-100 lbs)
21620                                                                     based on weight (44-88 lbs)
21621                                                                    based on weight (51-100 lbs)
21622                                                                     based on weight (44-88 lbs)
21625                                                                                    small amount
21632                                                                                     unspecified
21642                                                                    based on weight (51-100 lbs)
21643                                                                                         23, 460
21644                                                                    based on weight (51-100 lbs)
21645                                                                    based on weight (51-100 lbs)
21646                                                                    based on weight (51-100 lbs)
21648                                                                     based on weight (44-88 lbs)
21649                                                                    based on weight (51-100 lbs)
21650                                                                                     unspecified
21651                                                              460 lufenuron, 23 milbemycin oxime
21652                                                               4.5% flumethrin, 10% imidacloprid
21653                                                                                    small amount
21654                                                                                        23 , 460
21655                                                                       based on weight (18+ lbs)
21658                                                                                          collar
21659                                                                                    small amount
21660                                                                                    small amount
21661                                                                                                
21666                                                                       based on weight (18+ lbs)
21673                                                                                     unspecified
21677                                                                                     unspecified
21678                                                                                     unspecified
21680                                                                                     unspecified
21685                                                                                     unspecified
21701                                                                                 based on weight
21705                                                                                 based on weight
21707                                                                                          collar
21708                                                                                     unspecified
21723                                                                                        27, 1620
21725                                                                    based on weight (51-100 lbs)
21727                                                                                     unspecified
21739                                                              460 lufenuron, 23 milbemycin oxime
21748                                                                                     unspecified
21749                                                                                     unspecified
21753                                                           23 milbemycin oxime, 228 praziquantel
21754                                                                    based on weight (50-100 lbs)
21755                                                                     based on weight (44-88 lbs)
21757                                                                    based on weight (51-100 lbs)
21767                                                                                     unspecified
21783                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                            272 ivermectin, 227 pyrantel pamoate
21809                                                                                     unspecified
21810                                                                                     unspecified
21814                                                                    based on weight (51-100 lbs)
21815                                                                     based on weight (45-88 lbs)
21833                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
21851                                                                                         23, 228
21865                                                            272 ivermectin, 227 pyrantel pamoate
21869                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
21872                                                                                     as directed
21873                                                                                     as directed
21875                                                                                     unspecified
21876                                                                                     unspecified
21877                                                                                     unspecified
21878                                                                                     unspecified
21886                                                                                     unspecified
21894                                                                    based on weight (51-100 lbs)
21897                                                                    based on weight (51-100 lbs)
21898                                                                    based on weight (60-121 lbs)
21912                                                            272 ivermectin, 227 pyrantel pamoate
21914                                                                           1 tablet/pill/capsule
21918                                                                                    pack/package
21921                                                                                    small amount
21925                                                                                     as directed
21949                                                                                     unspecified
21955                                                                     based on weight (44-88 lbs)
21956                                                                    based on weight (51-100 lbs)
21957                                                                           1 tablet/pill/capsule
21959                                                                                        160, 800
21982                                                                     based on weight (45-88 lbs)
21993                                                                    based on weight (50-100 lbs)
22020                                                                                     as directed
22023                                                                    based on weight (51-100 lbs)
22025                                                                    based on weight (51-100 lbs)
22026                                                                    based on weight (51-100 lbs)
22037                                                                    based on weight (51-100 lbs)
22038                                                                  based on weight (60.1-121 lbs)
22041                                                                    based on weight (51-100 lbs)
22042                                                                    based on weight (60-120 lbs)
22043                                                                        based on weight (65 lbs)
22045                                                                    based on weight (51-100 lbs)
22046                                                                    based on weight (60-120 lbs)
22048                                                                                                
22050                                                                                   2 billion cfu
22051                                                              27 milbemycin oxime, 1620 spinosad
22060                                                                                        27, 1620
22062                                                                    based on weight (51-100 lbs)
22064                                                                                     unspecified
22088                                                                    based on weight (51-100 lbs)
22089                                                                  based on weight (60.1-121 lbs)
22092                                                                    based on weight (51-100 lbs)
22093                                                                  based on weight (60.1-121 lbs)
22118                                                                    based on weight (51-100 lbs)
22120                                                                                     application
22121                                                                                                
22125                                                                    based on weight (51-100 lbs)
22128                                                                                                
22136                                                                    based on weight (51-100 lbs)
22140                                                                    based on weight (51-100 lbs)
22141                                                                     based on weight (44-88 lbs)
22151                                                                                     unspecified
22160                                                                    based on weight (50-100 lbs)
22161                                                                    based on weight (51-100 lbs)
22163                                                                    based on weight (51-100 lbs)
22173                                                                    based on weight (51-100 lbs)
22175                                                                                    small amount
22176                                                                    based on weight (51-100 lbs)
22177                                                                  based on weight (60.1-121 lbs)
22179                                                                                     application
22189                                                                                    small amount
22190                                                                                    small amount
22196                                                                                    small amount
22199                                                                                 based on weight
22201                                                                                     unspecified
22216                                                                    based on weight (51-100 lbs)
22217                                                                  based on weight (60.1-121 lbs)
22218                                                                                    small amount
22219                                                                                     unspecified
22222                                                                    based on weight (51-100 lbs)
22223                                                                    based on weight (51-100 lbs)
22224                                                                    based on weight (89-132 lbs)
22225                                                                    based on weight (51-100 lbs)
22226                                                                  based on weight (60.1-121 lbs)
22227                                                                    based on weight (51-100 lbs)
22228                                                                  based on weight (60.1-121 lbs)
22229                                                                    based on weight (51-100 lbs)
22230                                                            based on weight (50.1-100 lbs) - 900
22237                                                                                       13.5, 810
22238                                                                                         13, 810
22239                                                                                     unspecified
22240                                                                                     unspecified
22241                                                                                     unspecified
22243                                                                                     unspecified
22245                                                                                     unspecified
22253                                                                    based on weight (60-120 lbs)
22261                                                                    based on weight (50-100 lbs)
22262                                                                    based on weight (60-120 lbs)
22265                                                                    based on weight (51-100 lbs)
22267                                                                    based on weight (51-100 lbs)
22268                                                                    based on weight (60-120 lbs)
22270                                                                                     unspecified
22272                                                                                     unspecified
22289                                                                                         23, 228
22299                                                                                        27, 1620
22306                                                                    based on weight (51-100 lbs)
22308                                                                                         23, 460
22311                                                                                         23, 460
22313                                                                                     unspecified
22314                                                                           1 tablet/pill/capsule
22315                                                                                    pack/package
22316                                                                                         23, 460
22319                                                                           1 tablet/pill/capsule
22321                                                                    based on weight (51-100 lbs)
22323                                                                                 based on weight
22341                                                                                          1 dose
22342                                                                                   30 wipes/pads
22343                                                                                     application
22345                                                                                     unspecified
22346                                                                                     unspecified
22347                                                                                     unspecified
22349                                                                                     unspecified
22351                                                                                        4.5, 270
22352                                                                                        9.3, 560
22353                                                                                       13.5, 810
22367                                                                            100000, 2.5, 2500, 1
22404                                                                                     application
22407                                                                1.5 tablets/pills/capsules - 100
22408                                                                                    small amount
22410                                                                                    small amount
22413                                                                    based on weight (51-100 lbs)
22417                                                                    based on weight (51-100 lbs)
22430                                                                        based on weight (64 lbs)
22439                                                                    based on weight (60-120 lbs)
22440                                                                                        27, 1620
22441                                                                    based on weight (51-100 lbs)
22459                                                                                     unspecified
22463                                                                                     unspecified
22530                                                                                     unspecified
22531                                                                    based on weight (51-100 lbs)
22532                                                                    based on weight (51-100 lbs)
22533                                                                                          collar
22534                                                              460 lufenuron, 23 milbemycin oxime
22537                                                                                     unspecified
22540                                                                                     unspecified
22541                                                                    based on weight (51-100 lbs)
22545                                                                    based on weight (51-100 lbs)
22546                                                                    based on weight (51-100 lbs)
22547                                                                       based on weight (55+ lbs)
22548                                                                             tablet/pill/capsule
22549                                                                                     unspecified
22552                                                                                     unspecified
22557                                                                    based on weight (51-100 lbs)
22558                                                                      based on weight (0-25 lbs)
22574                                                                                     application
22575                                                                                 0.25 inch strip
22577                                                            272 ivermectin, 227 pyrantel pamoate
22578                                                                    based on weight (51-100 lbs)
22579                                                            272 ivermectin, 227 pyrantel pamoate
22583                                                                                     unspecified
22585                                                                                     unspecified
22598                                                                     based on weight (44-88 lbs)
22601                                                                     based on weight (44-88 lbs)
22606                                                                    based on weight (51-100 lbs)
22607                                                                     based on weight (45-88 lbs)
22610                                                                                        2.3, 140
22611                                                                                        9.3, 560
22625                                                                    based on weight (51-100 lbs)
22653                                                                    based on weight (50-100 lbs)
22655                                                                     based on weight (45-88 lbs)
22656                                                                    based on weight (51-100 lbs)
22662                                                                                    small amount
22667                                                                                     application
22669                                                                                    small amount
22672                                                                                                
22673                                                                             tablet/pill/capsule
22681                                                                                    small amount
22682                                                                    based on weight (50-100 lbs)
22683                                                                     based on weight (45-88 lbs)
22690                                                                       based on weight (18+ lbs)
22691                                                                       based on weight (18+ lbs)
22692                                                                    based on weight (51-100 lbs)
22693                                                                    based on weight (51-100 lbs)
22704                                                                                     unspecified
22705                                                                                     unspecified
22707                                                                                     unspecified
22708                                                                                     unspecified
22711                                                                                     unspecified
22713                                                                                     unspecified
22714                                                                                     unspecified
22716                                                                                     unspecified
22717                                                                                     unspecified
22718                                                                    based on weight (51-100 lbs)
22719                                                                    based on weight (51-100 lbs)
22733                                                                                          collar
22748                                                                    based on weight (51-100 lbs)
22749                                                                                         23, 460
22750                                                                                   0.44, 8.8, 44
22751                                                                                         23, 460
22752                                                                                   0.44, 8.8, 44
22754                                                                    based on weight (51-100 lbs)
22763                                                                    based on weight (51-100 lbs)
22764                                                                       based on weight (55+ lbs)
22765                                                                                    small amount
22766                                                                    based on weight (50-100 lbs)
22770                                                                                         23, 228
22777                                                                                        27, 1620
22778                                                                                        27, 1620
22779                                                                                        27, 1620
22780                                                                                        27, 1620
22795                                                                    based on weight (51-100 lbs)
22796                                                                       based on weight (55+ lbs)
22797                                                                                     unspecified
22798                                                                                     unspecified
22799                                                                    based on weight (51-100 lbs)
22800                                                                    based on weight (60-121 lbs)
22801                                                                    based on weight (51-100 lbs)
22802                                                                                     application
22803                                                                    based on weight (51-100 lbs)
22804                                                                    based on weight (60-121 lbs)
22830                                                                                 0.25 inch strip
22840                                                                    based on weight (51-100 lbs)
22848                                                                                    small amount
22853                                                                                    small amount
22858                                                                                            bath
22875                                                                       based on weight (55+ lbs)
22886                                                                                    small amount
22909                                                            272 ivermectin, 227 pyrantel pamoate
22919                                                                    based on weight (60-121 lbs)
22920                                                                        based on weight (90 lbs)
22922                                                                                     application
22923                                                                        2 tablets/pills/capsules
22926                                                                                    small amount
22929                                                                                    small amount
22936                                                                                     unspecified
22938                                                                                     unspecified
22939                                                                                     unspecified
22954                                                                                   1 bottle/vial
22955                                                                           1 tablet/pill/capsule
22963                                                                    based on weight (51-100 lbs)
22965                                                                                     unspecified
22966                                                                                 based on weight
22967                                                                           1 tablet/pill/capsule
22971                                                                    based on weight (51-100 lbs)
22990                                                                                        wipe/pad
22991                                                                           1 tablet/pill/capsule
22992                                                                    based on weight (88-110 lbs)
22994                                                                       based on weight (60+ lbs)
23006                                                                                 moderate amount
23007                                                                                 moderate amount
23018                                                                   0.5 tablet/pill/capsule - 250
23019                                                                   0.75 tablet/pill/capsule - 75
23024                                                                                  1 pack/package
23025                                                                           1 tablet/pill/capsule
23043                                                                                     unspecified
23049                                                            272 ivermectin, 227 pyrantel pamoate
23051                                                            272 ivermectin, 227 pyrantel pamoate
23053                                                                                     unspecified
23055                                                                    based on weight (88-123 lbs)
23059                                                                    based on weight (50-100 lbs)
23060                                                                    based on weight (50-100 lbs)
23061                                                                    based on weight (88-123 lbs)
23064                                                                    based on weight (51-100 lbs)
23066                                                                    based on weight (51-100 lbs)
23083                                                                                        27, 1620
23095                                                                  based on weight (60.1-120 lbs)
23096                                                                   based on weight (44.1-88 lbs)
23100                                                                                     unspecified
23102                                                                                     unspecified
23103                                                                                     unspecified
23108                                                                                     unspecified
23122                                                                    based on weight (51-100 lbs)
23123                                                                       based on weight (55+ lbs)
23124                                                                    based on weight (51-100 lbs)
23125                                                                    based on weight (51-100 lbs)
23134                                                                    based on weight (51-100 lbs)
23137                                                                    based on weight (51-100 lbs)
23138                                                                    based on weight (51-100 lbs)
23143                                                                    based on weight (50-100 lbs)
23144                                                                     based on weight (44-88 lbs)
23153                                                                                     unspecified
23154                                                                                     unspecified
23163                                                                                     unspecified
23169                                                                        based on weight (62 lbs)
23173                                                                      based on weight (68.5 lbs)
23175                                                            272 ivermectin, 227 pyrantel pamoate
23202                                                                    based on weight (51-100 lbs)
23237                                                                                     unspecified
23249                                                                                 moderate amount
23250                                                                    based on weight (60-120 lbs)
23251                                                                    based on weight (51-100 lbs)
23258                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23259                                                                     based on weight (56-95 lbs)
23266                                                                   0.5-1.0% (50 minute duration)
23267                                                            272 ivermectin, 227 pyrantel pamoate
23268                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                     unspecified
23278                                                                                    small amount
23279                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23280                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
23283                                                                                     as directed
23284                                                     250 amoxicillin, 62.5 clavulanate potassium
23286                                                            272 ivermectin, 227 pyrantel pamoate
23288                                                                                          0.5 oz
23294                                                            272 ivermectin, 227 pyrantel pamoate
23299                                                       375 amoxicillin, 94 clavulanate potassium
23304                                                                                    small amount
23308                                                                                     unspecified
23321                                                                                     unspecified
23322                                                                                     unspecified
23325                                                                                     unspecified
23333                                                                    based on weight (51-100 lbs)
23336                                                                    based on weight (51-100 lbs)
23337                                                                     based on weight (44-88 lbs)
23338                                                                     based on weight (56-95 lbs)
23340                                                                                    small amount
23341                                                            272 ivermectin, 227 pyrantel pamoate
23342                                                                     based on weight (56-95 lbs)
23344                                                            272 ivermectin, 227 pyrantel pamoate
23345                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                    small amount
23350                           based on weight (50.1-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23353                                                     250 amoxicillin, 62.5 clavulanate potassium
23355                                                                                 moderate amount
23356                                                            172 ivermectin, 227 pyrantel pamoate
23360                                                            272 ivermectin, 227 pyrantel pamoate
23364                                                                                    small amount
23366                                                                                     unspecified
23384                                                                     based on weight (45-88 lbs)
23388                                                                    based on weight (51-100 lbs)
23403                                                                    based on weight (51-100 lbs)
23404                                                                     based on weight (44-88 lbs)
23413                                                                    based on weight (51-100 lbs)
23414                                                                    based on weight (51-100 lbs)
23419                                                                                    small amount
23427                                                                    based on weight (51-100 lbs)
23428                                                                    based on weight (51-100 lbs)
23437                                                                    based on weight (60-120 lbs)
23450                                                                     based on weight (45-88 lbs)
23456                                                                                                
23472                                                                     based on weight (21-55 lbs)
23482                                                                     based on weight (55-90 lbs)
23484                                                                    based on weight (50-100 lbs)
23485                                                                     based on weight (21-55 lbs)
23487                                                                     based on weight (56-95 lbs)
23491                                                                                         57, 400
23507                                                                    based on weight (51-100 lbs)
23520                                                                     based on weight (56-95 lbs)
23533                                                                                     unspecified
23534                                                                                     unspecified
23540                                                                    based on weight (51-100 lbs)
23541                                                                  based on weight (60.1-121 lbs)
23552                                                                    based on weight (51-100 lbs)
23553                                                                    based on weight (51-100 lbs)
23557                                                                    based on weight (51-100 lbs)
23565                                                                                    small amount
23566                                                                                    small amount
23568                                                                                 based on weight
23571                                                                    based on weight (51-100 lbs)
23572                                                                     based on weight (45-88 lbs)
23588                                                                    based on weight (60-120 lbs)
23590                                                                                     unspecified
23610                                                                                        23 , 460
23617                                                                    based on weight (51-100 lbs)
23618                                                                    based on weight (51-100 lbs)
23619                                                                                         23, 460
23620                                                                    based on weight (51-100 lbs)
23622                                                                    based on weight (51-100 lbs)
23646                                                                    based on weight (60-120 lbs)
23647                                                                    based on weight (60-120 lbs)
23651                                                                    based on weight (50-100 lbs)
23657                                                                  based on weight (50.1-100 lbs)
23659                                                                    based on weight (88-123 lbs)
23685                                                                    based on weight (51-100 lbs)
23686                                                                     based on weight (44-88 lbs)
23688                                                                   based on weight (44.1-88 lbs)
23707                                                                                     unspecified
23718                                                                                     unspecified
23721                                                                    based on weight (50-100 lbs)
23722                                                                  based on weight (60.1-120 lbs)
23724                                                                                     unspecified
23730                                                                    based on weight (51-100 lbs)
23732                                                                    based on weight (51-100 lbs)
23740                                                                    based on weight (51-100 lbs)
23747                                                                                       11.5, 230
23749                                                                                     unspecified
23757                                                                    based on weight (51-100 lbs)
23804                                                                                         23, 460
23805                                                                    based on weight (51-100 lbs)
23808                                                                    based on weight (51-100 lbs)
23809                                                                                          collar
23819                                                                    based on weight (51-100 lbs)
23861                                                                    based on weight (51-100 lbs)
23862                                                                     based on weight (24-60 lbs)
23865                                                                           1 tablet/pill/capsule
23866                                                                       based on weight (55+ lbs)
23868                                                                                     as directed
23871                                                                       based on weight (55+ lbs)
23872                                                                                     unspecified
23873                                                                                     unspecified
23898                                                                                 based on weight
23899                                                                                        0.25 cup
23900                                                                                     unspecified
23901                                                                    based on weight (50-100 lbs)
23902                                                                                 based on weight
23905                                                                    based on weight (50-100 lbs)
23906                                                                                          collar
23909                                                                                     application
23910                                                                    based on weight (50-100 lbs)
23914                                                                                                
23917                                                                                     unspecified
23924                                                                           1 tablet/pill/capsule
23925                                                                           1 tablet/pill/capsule
23933                                                                                   1 bottle/vial
23942                                                                                     unspecified
23955                                                                    based on weight (50-100 lbs)
23956                                                                    based on weight (50-100 lbs)
23957                                                                                     unspecified
23958                                                                                     unspecified
23959                                                                                     unspecified
23965                                                                                    small amount
23969                                                                                 based on weight
23974                                                                        based on weight (55 lbs)
23976                                                                   based on weight (55+ lbs) - 4
23980                                                                                     unspecified
24010                                                                                       13.5, 810
24012                                                                                    small amount
24017                                                                                       13.5, 810
24018                                                             13.5 milbemycin oxime, 810 spinosad
24019                                                             13.5 milbemycin oxime, 810 spinosad
24020                                                                                        27, 1620
24022                                                                                        27, 1620
24029                                                                                        27, 1620
24045                                                                                     unspecified
24046                                                                                     unspecified
24062                                                                    based on weight (51-100 lbs)
24068                                                                                     unspecified
24072                                                                                         23, 460
24075                                                                    based on weight (51-100 lbs)
24076                                                                    based on weight (51-100 lbs)
24077                                                                    based on weight (51-100 lbs)
24079                                                                     based on weight (45-88 lbs)
24104                                                                         0.5 tablet/pill/capsule
24106                                                                        2 tablets/pills/capsules
24116                                                                                 based on weight
24117                                                                                     unspecified
24139                                                                                 0.25 inch strip
24142                                                                    based on weight (51-100 lbs)
24144                                                                    based on weight (51-100 lbs)
24145                                                                                     unspecified
24149                                                           23 milbemycin oxime, 228 praziquantel
24154                                                                                     unspecified
24155                                                                                     unspecified
24157                                                                                     unspecified
24162                                                                  based on weight (50.1-100 lbs)
24165                                                                    based on weight (51-100 lbs)
24166                                                                       based on weight (64+ lbs)
24172                                                                                 0.25 inch strip
24174                                                                    based on weight (50-100 lbs)
24185                                                                                1.5-7.5, 2.25, 5
24189                                                                                     0.284, 0.57
24192                                                                                     unspecified
24193                                                                                     unspecified
24194                                                                                     unspecified
24195                                                                                     unspecified
24203                                                                                     application
24205                                                                                     unspecified
24206                                                                                     unspecified
24207                                                                                     unspecified
24208                                                                                     unspecified
24209                                                                                     application
24215                                                                                    small amount
24217                                                                                     application
24221                                                                                    small amount
24222                                                                                     unspecified
24246                                                                        2 tablets/pills/capsules
24250                                                                           1 tablet/pill/capsule
24253                                                                                     unspecified
24257                                                                    based on weight (51-100 lbs)
24258                                                                    based on weight (51-100 lbs)
24259                                                                                     unspecified
24261                                                                           1 tablet/pill/capsule
24265                                                                           1 tablet/pill/capsule
24267                                                                                          150/hr
24268                                                                                           75/hr
24269                                                                                          16-116
24276                                                                    based on weight (51-100 lbs)
24282                                                                                     unspecified
24312                                                                                     unspecified
24313                                                                                     unspecified
24314                                                                                     unspecified
24319                                                                   0.5 tablet/pill/capsule - 227
24322                                                                                 moderate amount
24328                                                                        2 tablets/pills/capsules
24343                                                                                       13.5, 810
24375                                                                                        114, 136
24393                                                                    based on weight (51-100 lbs)
24394                                                                           1 tablet/pill/capsule
24395                                                                           1 tablet/pill/capsule
24400                                                                    based on weight (50-100 lbs)
24402                                                                    based on weight (51-100 lbs)
24403                                                                    based on weight (51-100 lbs)
24405                                                                 2 tablets/pills/capsules - 2000
24406                                                                  1.5 tablets/pills/capsules - 5
24407                                                                  2 tablets/pills/capsules - 300
24409                                                                                            bath
24410                                                                           1 tablet/pill/capsule
24413                                                                                     unspecified
24416                                                                                     unspecified
24417                                                                                          3 /tsp
24420                                                                                          powder
24421                                                                    based on weight (50-100 lbs)
24422                                                                                 based on weight
24424                                                                                     unspecified
24425                                                                                 based on weight
24426                                                                    based on weight (60-121 lbs)
24431                                                                    based on weight (50-100 lbs)
24432                                                                     based on weight (24-60 lbs)
24435                                                                    based on weight (50-100 lbs)
24437                                                                    based on weight (60-120 lbs)
24451                                                                                     unspecified
24452                                                                                     unspecified
24453                                                                                     unspecified
24455                                                                                     unspecified
24459                                                                                     unspecified
24460                                                                                     unspecified
24468                                                                                     unspecified
24473                                                              27 milbemycin oxime, 1620 spinosad
24475                                                              27 milbemycin oxime, 1620 spinosad
24476                                                                    based on weight (50-100 lbs)
24477                                                                    based on weight (50-100 lbs)
24478                                                                                  1 pack/package
24480                                                                    based on weight (50-100 lbs)
24481                                                                    based on weight (51-100 lbs)
24484                                                                           1 tablet/pill/capsule
24486                                                                                     unspecified
24514                                                                                     unspecified
24520                                                                     based on weight (45-88 lbs)
24521                                                                     based on weight (25-50 lbs)
24526                                                                                                
24534                                                                     based on weight (45-88 lbs)
24536                                                                                 based on weight
24593                                                                                    small amount
24597                                                                                        27, 1620
24598                                                                                         35, 425
24599                                                                                        27, 1620
24601                                                                                        27, 1610
24602                                                                                        27, 1610
24605                                                                  based on weight (60.1-120 lbs)
24610                                                                                    small amount
24647                                                                                     unspecified
24648                                                                                     application
24653                                                                                 moderate amount
24660                                                                                 based on weight
24669                                                                    based on weight (60-121 lbs)
24688                                                                                 0.25 inch strip
24707                                                                                     unspecified
24733                                                                    based on weight (51-100 lbs)
24734                                                                    based on weight (60-120 lbs)
24758                                                                                 0.25 inch strip
24762                                                                    based on weight (51-100 lbs)
24768                                                                    based on weight (50-100 lbs)
24769                                                                     based on weight (24-60 lbs)
24802                                                                     based on weight (40-80 lbs)
24804                                                                                     unspecified
24805                                                                                     unspecified
24806                                                                                     unspecified
24817                                                                                    small amount
24819                                                                                     application
24824                                                                    based on weight (51-100 lbs)
24825                                                                                 based on weight
24827                                                                                     as directed
24828                                                                                 based on weight
24829                                                                    based on weight (51-100 lbs)
24830                                                                                     unspecified
24839                                                                           1 tablet/pill/capsule
24840                                                                           1 tablet/pill/capsule
24850                                                                    based on weight (50-100 lbs)
24867                                                                    based on weight (51-100 lbs)
24878                                                                                     application
24898                                                                                          powder
24902                                                                    based on weight (51-100 lbs)
24917                                                                                     unspecified
24918                                                                                     unspecified
24919                                                                                     unspecified
24935                                                              460 lufenuron, 23 milbemycin oxime
24937                                                              460 lufenuron, 23 milbemycin oxime
24938                                                              460 lufenuron, 23 milbemycin oxime
24940                                                              460 lufenuron, 23 milbemycin oxime
24942                                                              460 lufenuron, 23 milbemycin oxime
24948                                                                                    small amount
24949                                                              460 lufenuron, 23 milbemycin oxime
24950                                                                     based on weight (45-88 lbs)
24963                                                                                         23, 460
24964                                                                                         23, 228
24968                                                                    based on weight (51-100 lbs)
24969                                                                                 based on weight
24971                                                                    based on weight (51-100 lbs)
24973                                                                             tablet/pill/capsule
24974                                                                                        1 collar
24975                                                                                    small amount
24982                                                                     based on weight (45-88 lbs)
24984                                                              460 lufenuron, 23 milbemycin oxime
24985                                                                                     unspecified
24987                                                                    based on weight (51-100 lbs)
24988                                                                                            8-10
24989                                                                                    small amount
24993                                                                                 based on weight
25004                                                                           1 tablet/pill/capsule
25020                                                                                         23, 460
25021                                                                     based on weight (44-88 lbs)
25022                                                                                         23, 460
25059                                                            272 ivermectin, 227 pyrantel pamoate
25079                                                                    based on weight (51-100 lbs)
25087                                                                                          collar
25094                                                                                        27, 1620
25099                                                                                     unspecified
25100                                                                                     unspecified
25101                                                                           1 tablet/pill/capsule
25102                                                                           1 tablet/pill/capsule
25118                                                                    based on weight (51-100 lbs)
25119                                                                    based on weight (51-100 lbs)
25120                                                                    based on weight (51-100 lbs)
25124                                                                                 moderate amount
25129                                                                             tablet/pill/capsule
25191                                                                    based on weight (51-100 lbs)
25196                                                                    based on weight (51-100 lbs)
25198                                                                                             10+
25233                                                                    based on weight (51-100 lbs)
25234                                                                    based on weight (51-100 lbs)
25241                                                                                    small amount
25255                                                                                    small amount
25258                                                                                    small amount
25262                                                                                     unspecified
25269                                                                                     unspecified
25270                                                                                     unspecified
25296                                                            272 ivermectin, 227 pyrantel pamoate
25299                                                                                 based on weight
25300                                                                   based on weight (24.1-60 lbs)
25309                                                                           1 tablet/pill/capsule
25310                                                                                          1 dose
25311                                                                                     application
25315                                                                    based on weight (51-100 lbs)
25316                                                                    based on weight (51-100 lbs)
25317                                                                    based on weight (60-120 lbs)
25331                                                                           1 tablet/pill/capsule
25337                                                                           1 tablet/pill/capsule
25342                                                                    based on weight (61-120 lbs)
25343                                                                    based on weight (51-100 lbs)
25345                                                                                    small amount
25346                                                                                    small amount
25347                                                                                     unspecified
25367                                                                                     unspecified
25390                                                                           1 tablet/pill/capsule
25391                                                                           1 tablet/pill/capsule
25405                                                                   based on weight (40.1-85 lbs)
25409                                                                                 0.25 inch strip
25410                                                                                     as directed
25417                                                                                            8 oz
25421                                                                   based on weight (40.1-85 lbs)
25424                                                                                     as directed
25425                                                                                     as directed
25437                                                                                        23 , 460
25444                                                                                         23, 460
25473                                                                    based on weight (51-100 lbs)
25482                                                                                     unspecified
25493                                                                    based on weight (51-100 lbs)
25494                                                                    based on weight (51-100 lbs)
25501                                                                    based on weight (51-100 lbs)
25514                                                                                     unspecified
25515                                                                                     unspecified
25516                                                                    based on weight (51-100 lbs)
25520                                                                    based on weight (51-100 lbs)
25521                                                                    based on weight (60-120 lbs)
25523                                                                       based on weight (59+ lbs)
25547                                                                                    small amount
25554                                                                                       27 , 1620
25555                                                                                        27, 1620
25556                                                                                        4.5, 270
25557                                                                                        27, 1620
25575                                                                    based on weight (50-100 lbs)
25576                                                                    based on weight (51-100 lbs)
25577                                                                    based on weight (51-100 lbs)
25589                                                           23 milbemycin oxime, 228 praziquantel
25591                                                           23 milbemycin oxime, 228 praziquantel
25612                                                                                        27, 1620
25617                                                                                   1 application
25619                                                                                     unspecified
25622                                                                                     unspecified
25660                                                                                 moderate amount
25663                                                                                    small amount
25666                                                                             tablet/pill/capsule
25670                                                                    based on weight (88-110 lbs)
25671                                                                                    small amount
25674                                                                    based on weight (88-110 lbs)
25683                                                              based on weight (51-100 lbs) - 7.7
25706                                                                       based on weight (55+ lbs)
25707                                                                                     unspecified
25708                                                                    based on weight (51-100 lbs)
25725                                                                                        5 x 10^7
25727                                                                    based on weight (51-100 lbs)
25730                                                                                            bath
25737                                                                                     unspecified
25740                                                                   based on weight (24.1-60 lbs)
25741                                                                    based on weight (51-100 lbs)
25743                                                                     based on weight (21-55 lbs)
25744                                                                                     unspecified
25748                                                                     based on weight (26-50 lbs)
25749                                                                      based on weight (0-25 lbs)
25750                                                                      based on weight (0-22 lbs)
25751                                                                                 0.25 inch strip
25753                                                                                    small amount
25754                                                                    based on weight (51-100 lbs)
25755                                                                     based on weight (44-88 lbs)
25756                                                                     based on weight (56-95 lbs)
25757                                                                   based on weight (24.1-60 lbs)
25765                                                                                    small amount
25795                                                                        based on weight (60 lbs)
25804                                                              460 lufenuron, 23 milbemycin oxime
25806                                                                    based on weight (51-100 lbs)
25807                                                                    based on weight (51-100 lbs)
25819                                                                     based on weight (40-60 lbs)
25820                                                                   based on weight (40.1-60 lbs)
25826                                                                           1 tablet/pill/capsule
25827                                                                    based on weight (51-100 lbs)
25828                                                           23 milbemycin oxime, 228 praziquantel
25830                                                                                        23 , 228
25837                                                                                    small amount
25846                                                                    based on weight (88-123 lbs)
25884                                                                    based on weight (51-100 lbs)
25887                                                                    based on weight (51-100 lbs)
25888                                                                  based on weight (60.1-121 lbs)
25919                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
25936                                                                                     unspecified
25937                                                                                     unspecified
25939                                                                    based on weight (51-100 lbs)
25940                                                                     based on weight (44-88 lbs)
25941                                                                    based on weight (50-100 lbs)
25943                                                                     based on weight (40-85 lbs)
25948                                                                                         57, 227
25949                                         based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                    based on weight (88-123 lbs)
25951                                        based on weight (2-25 lbs), based on weight (50-100 lbs)
25953                                                                                     unspecified
25954                                                                    based on weight (85-130 lbs)
25964                                                                    based on weight (51-100 lbs)
25965                                                                  based on weight (60.1-121 lbs)
25966                                                                    based on weight (51-100 lbs)
25967                                                                           1 tablet/pill/capsule
25981                                                                                             3-5
25983                                                                                             4-5
25985                                                                       based on weight (55+ lbs)
25986                                                                     based on weight (55-88 lbs)
25998                                                                                     unspecified
26004                                                            272 ivermectin, 227 pyrantel pamoate
26022                                                                                       62.5, 437
26024                                                                     based on weight (44-88 lbs)
26027                                                                                       62.5, 437
26031                                                                    based on weight (50-100 lbs)
26033                                                                     based on weight (44-88 lbs)
26037                                                                     based on weight (44-88 lbs)
26039                                                                     based on weight (44-88 lbs)
26047                                                                     based on weight (44-88 lbs)
26048                                                                    based on weight (51-100 lbs)
26050                                                                     based on weight (44-88 lbs)
26054                                                                     based on weight (44-88 lbs)
26056                                                                     based on weight (44-88 lbs)
26064                                                                                  1 pack/package
26075                                                                                    50, 125, 250
26078                                                                                     unspecified
26084                                                                                     unspecified
26085                                                                                     unspecified
26093                                                                                     application
26114                                                                    based on weight (51-100 lbs)
26115                                                                                                
26127                                                                                     unspecified
26128                                                                                     unspecified
26129                                                                                     unspecified
26133                                                                                     unspecified
26134                                                                                     unspecified
26138                                                                     based on weight (56-95 lbs)
26139                                                                                            bath
26141                                                                     based on weight (21-55 lbs)
26148                                                                     based on weight (56-95 lbs)
26151                                                                    based on weight (50-100 lbs)
26152                                                                     based on weight (56-95 lbs)
26156                                                                                 based on weight
26157                                                                                 based on weight
26158                                                                                     unspecified
26159                                                                                     unspecified
26165                                                                                 based on weight
26166                                                                                 based on weight
26184                                                                                     unspecified
26187                                                                                  0.5 inch strip
26190                                                                                            bath
26192                                                                     based on weight (21-55 lbs)
26197                                                                                  0.5 inch strip
26199                                                                     based on weight (54-95 lbs)
26203                                                                    based on weight (50-100 lbs)
26204                                                                     based on weight (21-55 lbs)
26207                                                                                 based on weight
26208                                                                                 based on weight
26211                                                                     based on weight (25-50 lbs)
26212                                                                     based on weight (21-55 lbs)
26214                                                                                 based on weight
26215                                                                                 based on weight
26227                                                                                     unspecified
26229                                                                                     unspecified
26238                                                                           1 tablet/pill/capsule
26239                                                                           1 tablet/pill/capsule
26258                                                                                     application
26264                                                                           1 tablet/pill/capsule
26265                                                                                     unspecified
26278                                                                                             2-3
26279                                                                    based on weight (60-120 lbs)
26280                                                                     based on weight (56-95 lbs)
26281                                                                    based on weight (60-120 lbs)
26282                                                                    based on weight (50-100 lbs)
26287                                                                    based on weight (50-100 lbs)
26295                                                                    based on weight (60-121 lbs)
26300                                                                    based on weight (50-100 lbs)
26307                                                                      based on weight (7.5+ lbs)
26315                                                                    based on weight (51-100 lbs)
26336                                                                                     unspecified
26337                                                                                     unspecified
26355                                                                                     unspecified
26375                                                                    based on weight (51-100 lbs)
26380                                                                                     unspecified
26386                                                                     based on weight (26-50 lbs)
26387                                                                     based on weight (44-88 lbs)
26391                                                                                     unspecified
26393                                                                                             2-3
26395                                                                                        27, 1620
26399                                                                                        27, 1620
26400                                                                                       27 , 1620
26401                                                                                        27, 1620
26433                                                                                     unspecified
26454                                                                             tablet/pill/capsule
26464                                                                                 based on weight
26471                                                                    based on weight (51-100 lbs)
26473                                                                    based on weight (60-121 lbs)
26475                                                                    based on weight (51-100 lbs)
26476                                                                    based on weight (60-121 lbs)
26488                                                                   based on weight (24.1-60 lbs)
26489                                                                     based on weight (25-50 lbs)
26490                                                                    based on weight (51-100 lbs)
26502                                                                                    small amount
26505                                                                                     as directed
26517                                                                    based on weight (51-100 lbs)
26518                                                                     based on weight (45-88 lbs)
26519                                                                    based on weight (51-100 lbs)
26520                                                                    based on weight (51-100 lbs)
26521                                                                                     unspecified
26522                                                                    based on weight (51-100 lbs)
26534                                                                                     unspecified
26543                                                                    based on weight (51-100 lbs)
26544                                                                        based on weight (58 lbs)
26546                                                                    based on weight (51-100 lbs)
26551                                                           23 milbemycin oxime, 228 praziquantel
26553                                                           23 milbemycin oxime, 228 praziquantel
26568                                                                  based on weight (50.1-100 lbs)
26574                                                                  based on weight (50.1-100 lbs)
26583                                                                                     unspecified
26590                                                                    based on weight (51-100 lbs)
26591                                                                    based on weight (51-100 lbs)
26592                                                                     based on weight (44-88 lbs)
26594                                                                           1 tablet/pill/capsule
26610                                                                                    small amount
26611                                                                    based on weight (51-100 lbs)
26615                                                                    based on weight (51-100 lbs)
26629                                                                     based on weight (44-88 lbs)
26631                                                                    based on weight (51-100 lbs)
26637                                                              based on weight (50-100 lbs) - 272
26638                                                                    based on weight (51-100 lbs)
26643                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
26644                             2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                     unspecified
26647                                                                                     unspecified
26650                                                                     based on weight (11-25 lbs)
26651                                                                     based on weight (11-25 lbs)
26652                                                                           1 tablet/pill/capsule
26654                                                                           1 tablet/pill/capsule
26655                                                             13.5 milbemycin oxime, 810 spinosad
26662                                                                    based on weight (51-100 lbs)
26663                                                                     based on weight (24-60 lbs)
26668                                                                                     bottle/vial
26669                                                                                     unspecified
26670                                                                                          collar
26673                                                                           1 tablet/pill/capsule
26675                                                                     1 tablet/pill/capsule - 200
26676                                                                     based on weight (44-88 lbs)
26677                                                                    based on weight (50-100 lbs)
26680                                                                           1 tablet/pill/capsule
26681                                                                           1 tablet/pill/capsule
26682                                                                           1 tablet/pill/capsule
26683                                                                           1 tablet/pill/capsule
26684                                                                           1 tablet/pill/capsule
26685                                                                           1 tablet/pill/capsule
26694                                                                                     unspecified
26720                      2 tablets/pills/capsules - 2 prednisolone acetate, 5 trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 lufenuron, 23 milbemycin oxime
26722                                                                    based on weight (51-100 lbs)
26723                                                                    based on weight (51-100 lbs)
26724                                                                                      1200, 1500
26726                                                                                     unspecified
26734                                                                                 based on weight
26735                                                                    based on weight (60-120 lbs)
26736                                                            272 ivermectin, 227 pyrantel pamoate
26738                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26740                                                           23 milbemycin oxime, 228 praziquantel
26742                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26744                                                           23 milbemycin oxime, 228 praziquantel
26745                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26747   1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26750                                                            272 ivermectin, 227 pyrantel pamoate
26760                                                                    based on weight (51-100 lbs)
26769                                                                    based on weight (50-100 lbs)
26780                                                         11.5 milbemycin oxime, 114 praziquantel
26803                                                                                            1 oz
26823                                                                        based on weight (60 lbs)
26825                                                                                     application
26826                                                                           1 tablet/pill/capsule
26827                                                                                    small amount
26828                                                                           1 tablet/pill/capsule
26829                                                                           1 tablet/pill/capsule
26830                                                                                     1 injection
26831                                                                                     1 injection
26833                                                                                           17/lb
26837                                                                                    pack/package
26839                                                                                     application
26840                                                                           1 tablet/pill/capsule
26841                                                                                     application
26842                                                                             tablet/pill/capsule
26843                                                                                  1 pack/package
26844                                                                                    small amount
26846                                                                    based on weight (51-100 lbs)
26847                                                                     based on weight (45-88 lbs)
26848                                                                                    pack/package
26849                                                                    based on weight (51-100 lbs)
26850                                                                     based on weight (45-88 lbs)
26851                                                                                    pack/package
26852                                                                                     unspecified
26853                                                                    based on weight (60-120 lbs)
26861                                                                    based on weight (51-100 lbs)
26862                                                                                 based on weight
26863                                                                                     unspecified
26864                                                                           1 tablet/pill/capsule
26865                                                                                 based on weight
26867                                                                                 based on weight
26868                                                                                     unspecified
26869                                                                  based on weight (50.1-100 lbs)
26870                                                                       based on weight (55+ lbs)
26871                                                                                     unspecified
26872                                                                                     unspecified
26905                                                                                    small amount
26926                                                                    based on weight (51-100 lbs)
26930                                                                    based on weight (51-100 lbs)
26931                                                                     based on weight (51-95 lbs)
26932                                                                                         23, 460
26944                                                                    based on weight (56-110 lbs)
26948                                                                    based on weight (55-100 lbs)
26972                                                                                         23, 460
26974                                                                                     unspecified
26975                                                                     based on weight (26-50 lbs)
26976                                                                                    small amount
26977                                                                     based on weight (11-25 lbs)
26978                                                                                     unspecified
26979                                                                    based on weight (51-100 lbs)
26980                                                                    based on weight (51-100 lbs)
26981                                                                    based on weight (51-100 lbs)
26983                                                                                     unspecified
26984                                                                     based on weight (45-88 lbs)
26986                                                                     based on weight (44-88 lbs)
26988                                                           23 milbemycin oxime, 228 praziquantel
26990                                                           23 milbemycin oxime, 228 praziquantel
26992                                                           23 milbemycin oxime, 228 praziquantel
27020                                                                                     unspecified
27021                                                                                     unspecified
27022                                                                                     unspecified
27030                                                           23 milbemycin oxime, 228 praziquantel
27047                                                                                     unspecified
27058                                                                                     unspecified
27062                                                                                     unspecified
27063                                                                                     unspecified
27065                                                                    based on weight (51-100 lbs)
27082                                                                                     as directed
27085                                                                           1 tablet/pill/capsule
27092                                                                                  1 pack/package
27095                                                                                                
27096                                                                           1 tablet/pill/capsule
27100                                                                                     unspecified
27117                                                                                     application
27118                                                                                     application
27124                                                                                  1 pack/package
27128                                                                                    small amount
27134                                                                                     application
27136                                                                    based on weight (51-100 lbs)
27140                                                                                    small amount
27158                                                                                    small amount
27163                                                                           1 tablet/pill/capsule
27170                                                                    based on weight (51-100 lbs)
27172                                                                                 based on weight
27173                                                                                     unspecified
27174                                                                    based on weight (51-100 lbs)
27203                                                            272 ivermectin, 227 pyrantel pamoate
27212                                                                                     unspecified
27213                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27214                                                                                          collar
27217                                                                                                
27219                                                                                          powder
27220                                                                                          collar
27222                                                                                          powder
27223                                                                                                
27224                                                                                     unspecified
27226                                                                                 based on weight
27228                                                                                          collar
27229                                                                             tablet/pill/capsule
27231                                                                    based on weight (60-121 lbs)
27232                                                                  based on weight (50.1-100 lbs)
27247                                                                                         23, 460
27257                                                                       based on weight (18+ lbs)
27258                                                                    based on weight (51-100 lbs)
27262                                                                                                
27265                                                                    based on weight (55-100 lbs)
27268                                                                                     application
27270                                                                                          collar
27273                                                                    based on weight (51-100 lbs)
27274                                                                    based on weight (51-100 lbs)
27275                                                                    based on weight (51-100 lbs)
27280                                                                                 based on weight
27281                                                                    based on weight (51-100 lbs)
27282                                                                                          powder
27285                                                                    based on weight (51-100 lbs)
27306                                                                    based on weight (51-100 lbs)
27309                                                                     based on weight (44-88 lbs)
27311                                                                    based on weight (51-100 lbs)
27315                                                            272 ivermectin, 227 pyrantel pamoate
27322                                                                                                
27333                                                                5 neomycin sulfate, 1 tetracaine
27348                                                                        based on weight (70 lbs)
27349                                                                        based on weight (70 lbs)
27350                                                                       based on weight (55+ lbs)
27358                                                                    based on weight (51-100 lbs)
27360                                                                                     unspecified
27361                                                                    based on weight (51-100 lbs)
27364                                                                    based on weight (51-100 lbs)
27368                                                                    based on weight (51-100 lbs)
27384                                                                                       11.5, 114
27407                                                                                     unspecified
27413                                                                                     unspecified
27414                                                                                     unspecified
27421                                                                                 based on weight
27422                                                                    based on weight (50-100 lbs)
27423                                                            272 ivermectin, 227 pyrantel pamoate
27425                                                                                    small amount
27427                                                                                    small amount
27431                                                                                    small amount
27432                                                                        based on weight (50 lbs)
27434                                                                                 based on weight
27445                                                                        based on weight (46 lbs)
27446                                                                                 based on weight
27447                                                                                     as directed
27459                                                                                        27, 1620
27465                                                                                 0.25 inch strip
27474                                                            272 ivermectin, 227 pyrantel pamoate
27481                                                            272 ivermectin, 227 pyrantel pamoate
27492                                                                                     unspecified
27494                                                                                     unspecified
27500                                                                                    small amount
27501                                                                                    small amount
27502                                                                    based on weight (51-100 lbs)
27506                                                                    based on weight (51-100 lbs)
27507                                                                     based on weight (45-88 lbs)
27511                                                                    based on weight (51-100 lbs)
27512                                                                     based on weight (45-88 lbs)
27523                                                                    based on weight (51-100 lbs)
27529                                                                    based on weight (51-100 lbs)
27589                                                                                        27, 1620
27594                                                                    based on weight (60-120 lbs)
27596                                                                                        27, 1620
27598                                                                                     unspecified
27620                                                                     based on weight (44-88 lbs)
27640                                                                     based on weight (26-50 lbs)
27646                                                                                     unspecified
27654                                                                           1 tablet/pill/capsule
27657                                                                           1 tablet/pill/capsule
27659                                                                                     as directed
27674                                                                                     unspecified
27697                                                                                    small amount
27699                                                                                 350 , 800 , 900
27700                                                                    based on weight (50-100 lbs)
27701                                                                     based on weight (44-85 lbs)
27704                                                                    based on weight (51-100 lbs)
27710                                                                     based on weight (45-88 lbs)
27713                                                                                     unspecified
27714                                                                                     unspecified
27715                                                                                     unspecified
27722                                                                                     unspecified
27736                                                                                     unspecified
27745                                                            272 ivermectin, 227 pyrantel pamoate
27747                                     1 isoflupredone acetate, 3.5 neomycin sulfate, 1 tetracaine
27748                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27750                                                            272 ivermectin, 227 pyrantel pamoate
27769                                                            272 ivermectin, 227 pyrantel pamoate
27770                                                                                         23, 460
27772                                                                                         23, 460
27776                                                                                     unspecified
27791                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27794                                                            272 ivermectin, 227 pyrantel pamoate
27802                                                                                     unspecified
27824                                                            272 ivermectin, 227 pyrantel pamoate
27826                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27828                                                            272 ivermectin, 227 pyrantel pamoate
27833                                                                                     unspecified
27834                                                                                          varies
27836                                                                                     unspecified
27878                                                                                     unspecified
27880                                                                                     unspecified
27886                                                                    based on weight (51-100 lbs)
27895                                                                                          varies
27896                                                                                          varies
27897                                                                                     unspecified
27898                                                                                 based on weight
27899                                                                                    small amount
27910                                                                                         23, 460
27913                                                                                         23, 460
27917                                                                    based on weight (51-100 lbs)
27921                                                                    based on weight (51-100 lbs)
27922                                                                    based on weight (50-100 lbs)
27923                                                                    based on weight (51-100 lbs)
27927                                                                                     unspecified
27929                                                                                     unspecified
27939                                                                                       8.8%, 44%
27940                                                                                        23 , 460
27941                                                                                             4-6
27942                                                                        2 tablets/pills/capsules
27954                                                                     based on weight (56-95 lbs)
27957                                                                     based on weight (45-88 lbs)
27958                                                               1.25 tablets/pills/capsules - 375
27959                                                                 1.5 tablets/pills/capsules - 50
27961                                                                                 based on weight
27962                                                                    based on weight (50-100 lbs)
27973                                                                                    small amount
27974                                                                                     application
27981                                                                       based on weight (55+ lbs)
27982                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                     unspecified
27999                                                                       based on weight (55+ lbs)
28000                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
28008                                                                                  1 pack/package
28010                                                                                  1 pack/package
28014                                                                                                
28015                                                                  2 tablets/pills/capsules - 425
28016                                                                    based on weight (50-100 lbs)
28018                                                                                 based on weight
28023                                                                                     unspecified
28024                                                                    based on weight (60-121 lbs)
28025                                                                                     unspecified
28029                                                                    based on weight (51-100 lbs)
28040                                                                    based on weight (51-100 lbs)
28045                                                                                         68, 272
28046                                                                                     unspecified
28047                                                                                     unspecified
28048                                                                    based on weight (51-100 lbs)
28049                                                                    based on weight (51-100 lbs)
28087                                                                    based on weight (50-100 lbs)
28088                                                                     based on weight (44-88 lbs)
28090                                                                                    small amount
28094                                                                                     unspecified
28096                                                                                     unspecified
28098                                                                                     unspecified
28100                                                                     based on weight (44-88 lbs)
28101                                                                  based on weight (50.1-100 lbs)
28102                                                                  based on weight (50.1-100 lbs)
28103                                                                     based on weight (44-88 lbs)
28104                                                                     based on weight (44-88 lbs)
28105                                                                  based on weight (50.1-100 lbs)
28106                                                           23 milbemycin oxime, 228 praziquantel
28108                                                                     based on weight (44-88 lbs)
28109                                                                    based on weight (50-100 lbs)
28116                                                                                  1 pack/package
28119                                                                    based on weight (51-100 lbs)
28120                                                                    based on weight (50-100 lbs)
28128                                                              460 lufenuron, 23 milbemycin oxime
28130                                                            272 ivermectin, 227 pyrantel pamoate
28134                                                                    based on weight (51-100 lbs)
28135                                                                    based on weight (51-100 lbs)
28137                                                                    based on weight (51-100 lbs)
28138                                                                                         7000 iu
28144                                                                    based on weight (51-100 lbs)
28154                                                                     based on weight (45-88 lbs)
28155                                                                    based on weight (51-100 lbs)
28158                                                                                 based on weight
28162                                                                       based on weight (60+ lbs)
28163                                                                                 based on weight
28164                                                                                 based on weight
28165                                                                                     as directed
28166                                                                                     unspecified
28167                                                                                     unspecified
28168                                                                                     unspecified
28174                                                                                 0.25 inch strip
28176                                                                                 0.25 inch strip
28246                                                           2 prednisone, 5 trimeprazine tartrate
28260                                                                                    1 inch strip
28261                                                            272 ivermectin, 227 pyrantel pamoate
28263                                                                   based on weight (44.1-88 lbs)
28264                                                            272 ivermectin, 227 pyrantel pamoate
28269                                                                    based on weight (51-100 lbs)
28277                                                                                     unspecified
28279                                                                                     unspecified
28307                                                                                     unspecified
28309                                                                    based on weight (61-120 lbs)
28311                                                                    based on weight (50-100 lbs)
28316                                                                                    small amount
28332                                                                                     application
28333                                                                                    small amount
28371                                                                                    pack/package
28375                                                                     based on weight (44-88 lbs)
28390                                                                                    small amount
28392                                                                    based on weight (60-121 lbs)
28396                                                                        2 tablets/pills/capsules
28397                                                                  based on weight (50.1-100 lbs)
28398                                                                     based on weight (44-88 lbs)
28399                                                                    based on weight (50-100 lbs)
28400                                                                     based on weight (44-88 lbs)
28401                                                                  based on weight (50.1-100 lbs)
28404                                                                     based on weight (40-60 lbs)
28407                                                                     based on weight (40-60 lbs)
28425                                                                                     unspecified
28427                                                                                     unspecified
28437                                                                    based on weight (51-100 lbs)
28448                                                                    based on weight (51-100 lbs)
28449                                                                       based on weight (55+ lbs)
28453                                                            272 ivermectin, 227 pyrantel pamoate
28483                                                                           1 tablet/pill/capsule
28484                                                                                 moderate amount
28486                                                                                    small amount
28488                                                                           1 tablet/pill/capsule
28505                                                                                     unspecified
28507                                                                                     unspecified
28508                                                                                     unspecified
28516                                                                                     unspecified
28517                                                                                     unspecified
28518                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28519                                                            272 ivermectin, 227 pyrantel pamoate
28520                                                              8.8% (s)-methoprene, 9.8% fipronil
28528                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28531                                                                                   5 billion cfu
28533                                                               3% chloroxylenol, 3% ketoconazole
28534                                                   based on weight (50-100 lbs) - 23 , 228 , 460
28535                                                              based on weight (60-121 lbs) - 136
28536                                based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                   5 billion cfu
28545                                                            272 ivermectin, 227 pyrantel pamoate
28549                                                                    based on weight (51-100 lbs)
28552                                                                                 based on weight
28553                                                                     based on weight (44-88 lbs)
28554                                                                       based on weight (50+ lbs)
28556                                                                                 based on weight
28557                                                                                 based on weight
28571                                                                    based on weight (51-100 lbs)
28572                                                                                     unspecified
28573                                                                                 based on weight
28574                                                                                        1 collar
28576                                               10 dextromethorphan hydrobromide, 100 guaifenesin
28577                                                                                    small amount
28580                                                                                 0.25 inch strip
28582                                                                    based on weight (51-100 lbs)
28583                                                                                 based on weight
28590                                                                                     unspecified
28601                                                                                 based on weight
28602                                                                    based on weight (50-100 lbs)
28605                                                                                          collar
28606                                                                           1 tablet/pill/capsule
28610                                                                1.5 tablets/pills/capsules - 136
28611                                                                           1 tablet/pill/capsule
28612                                                                           1 tablet/pill/capsule
28614                                                                           1 tablet/pill/capsule
28621                                                                                 based on weight
28624                                                                        based on weight (80 lbs)
28630                                                                           1 tablet/pill/capsule
28631                                                                           1 tablet/pill/capsule
28660                                                                                     unspecified
28668                                                            272 ivermectin, 227 pyrantel pamoate
28673                                                                                             5-8
28674                                                                    based on weight (51-100 lbs)
28675                                                                     based on weight (44-88 lbs)
28681                                                                           1 tablet/pill/capsule
28685                                                                                     unspecified
28686                                                                                     unspecified
28687                                                                                     unspecified
28693                                                                    based on weight (50-100 lbs)
28694                                                                                   1 bottle/vial
28696                                                                    based on weight (50-100 lbs)
28710                                                                                     unspecified
28714                                                                                    small amount
28718                                                                  4 tablets/pills/capsules - 0.5
28719                                                                  4 tablets/pills/capsules - 0.5
28723                                                                     based on weight (45-80 lbs)
28726                                                                    based on weight (60-120 lbs)
28727                                                                                     application
28730                                                                    based on weight (60-120 lbs)
28731                                                                                     application
28735                                                                    based on weight (50-100 lbs)
28736                                                                    based on weight (50-100 lbs)
28750                                                                                     unspecified
28751                                                                                     unspecified
28772                                                                                     unspecified
28773                                                                                     unspecified
28780                                                                                        114, 136
28806                                                                     based on weight (45-88 lbs)
28809                                                                    based on weight (51-100 lbs)
28819                                                                                     unspecified
28826                                                                                                
28829                                                                                     application
28855                                                                                     unspecified
28873                                                                     based on weight (44-88 lbs)
28874                                                                    based on weight (51-100 lbs)
28882                                                                     based on weight (24-60 lbs)
28883                                                                     based on weight (20-60 lbs)
28884                                                                                 based on weight
28888                                                                     based on weight (24-60 lbs)
28897                                                                    based on weight (51-100 lbs)
28899                                                                    based on weight (50-100 lbs)
28904                                                                    based on weight (51-100 lbs)
28907                                                                   based on weight (24.1-60 lbs)
28934                                                                                     unspecified
28939                                                                                         23, 460
28940                                                                      1.5 tablets/pills/capsules
28941                                                                                    small amount
28946                                                                                    small amount
28979                                                                                 based on weight
28980                                                                                 based on weight
28982                                                                    based on weight (51-100 lbs)
28983                                                                           1 tablet/pill/capsule
28986                                                                     based on weight (40-60 lbs)
28987                                                                     based on weight (40-60 lbs)
28999                                                                           1 tablet/pill/capsule
29000                                                                     based on weight (40-85 lbs)
29007                                                                     based on weight (44-88 lbs)
29015                                                                                 moderate amount
29022                                                                                     unspecified
29023                                                                                     unspecified
29036                                                                                                
29037                                                                           1 tablet/pill/capsule
29039                                                                                     unspecified
29040                                                                                     unspecified
29043                                                                                     unspecified
29050                                                                                                
29053                                                                                    small amount
29056                                                                    based on weight (60-120 lbs)
29060                                                                                     unspecified
29064                                                                    based on weight (60-120 lbs)
29067                                                            272 ivermectin, 227 pyrantel pamoate
29069                                                            272 ivermectin, 227 pyrantel pamoate
29070                                                                                0.125 inch strip
29071                                                                                    small amount
29072                                                                                 0.25 inch strip
29073                                                                                    small amount
29075                                                                                    small amount
29078                                                                                        1 - 4 ml
29079                                                                                    1 inch strip
29080                                                                           1 tablet/pill/capsule
29081                                                                                 0.25 inch strip
29082                                                                           1 tablet/pill/capsule
29083                                                                                  1 pack/package
29086                                                              27 milbemycin oxime, 1620 spinosad
29087                                                              27 milbemycin oxime, 1620 spinosad
29091                                                              27 milbemycin oxime, 1620 spinosad
29095                                                                  based on weight (60.1-120 lbs)
29096                                                                  based on weight (60.1-121 lbs)
29098                                                                                                
29099                                                                                                
29103                                                                                    10 ucg/kg/hr
29104                                                                                        1021 /hr
29108                                                                                     unspecified
29136                                                                    based on weight (50-100 lbs)
29139                                                                                    small amount
29143                                                            272 ivermectin, 227 pyrantel pamoate
29151                                                                     based on weight (40-88 lbs)
29153                                                                                     unspecified
29161                                                                                     application
29166                                                                      based on weight (74.1 lbs)
29184                                                                        based on weight (64 lbs)
29196                                                                                 0.25 inch strip
29197                                                                                     unspecified
29220                                                                                    small amount
29232                                                                                     unspecified
29234                                                                                     unspecified
29235                                                                                     unspecified
29244                                                                                     unspecified
29245                                                                                     unspecified
29248                                                                                     unspecified
29283                                                                                     unspecified
29285                                                                                     unspecified
29291                                                                                                
29293                                                                           1 tablet/pill/capsule
29298                                                              460 lufenuron, 23 milbemycin oxime
29313                                                                                     unspecified
29315                                                                    based on weight (51-100 lbs)
29321                                                                                    small amount
29324                                                                                     unspecified
29327                                                                                     unspecified
29328                                                                    based on weight (51-100 lbs)
29340                                                                                     application
29342                                                                                 moderate amount
29374                                                                                         23, 460
29375                                                                                     unspecified
29376                                                                                     unspecified
29377                                                                                 based on weight
29378                                                                                     unspecified
29379                                                                                     unspecified
29380                                                                                     unspecified
29381                                                                                     unspecified
29382                                                                    based on weight (51-100 lbs)
29383                                                                     based on weight (21-55 lbs)
29395                                                                                        5, 162.5
29404                                                                                     unspecified
29405                                                                                     unspecified
29406                                                                                     unspecified
29428                                                                                            1 au
29438                                                                                    small amount
29446                                                                                     unspecified
29447                                                                                     unspecified
29453                                                                                     unspecified
29469                                                                    based on weight (51-100 lbs)
29470                                                                                 based on weight
29471                                                                                     application
29479                                                                    based on weight (51-100 lbs)
29480                                                                    based on weight (51-100 lbs)
29481                                                                    based on weight (51-100 lbs)
29482                                                                    based on weight (51-100 lbs)
29483                                                                   based on weight (44.1-88 lbs)
29490                                                                    based on weight (51-100 lbs)
29499                                                                           1 tablet/pill/capsule
29500                                                                                  1 pack/package
29501                                                                    based on weight (51-100 lbs)
29502                                                                  based on weight (50.1-100 lbs)
29504                                                                    based on weight (50-100 lbs)
29505                                                                     based on weight (45-88 lbs)
29511                                                                     based on weight (45-88 lbs)
29525                                                                             tablet/pill/capsule
29526                                                                                     application
29531                                                                    based on weight (51-100 lbs)
29532                                                                     based on weight (45-88 lbs)
29533                                                                    based on weight (51-100 lbs)
29534                                                                       based on weight (55+ lbs)
29535                                                                                                
29536                                                                    based on weight (51-100 lbs)
29537                                                                                     unspecified
29538                                                                    based on weight (51-100 lbs)
29539                                                                       based on weight (55+ lbs)
29540                                                                    based on weight (51-100 lbs)
29567                                                                    based on weight (51-100 lbs)
29568                                                                                     unspecified
29572                                                                                     unspecified
29573                                                                                     unspecified
29574                                                                                     as directed
29575                                                                                     unspecified
29580                                                                    based on weight (51-100 lbs)
29588                                                                    based on weight (51-100 lbs)
29608                                                                     based on weight (44-88 lbs)
29617                                                                                     unspecified
29633                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
29662                                                                                     unspecified
29666                                                                                     unspecified
29669                                                                                     unspecified
29670                                                                                     unspecified
29678                                                              0.5 tablet/pill/capsule - 125, 500
29700                                                                       based on weight (55+ lbs)
29705                                                                       based on weight (55+ lbs)
29707                                                                       based on weight (55+ lbs)
29709                                                                       based on weight (55+ lbs)
29715                                                                                 based on weight
29716                                                                                 based on weight
29719                                                                                 based on weight
29720                                                                                 based on weight
29722                                                                                 based on weight
29724                                                                                 based on weight
29726                                                                                 based on weight
29734                                                                                         23, 460
29736                                                                    based on weight (51-100 lbs)
29744                                                                    based on weight (51-100 lbs)
29749                                                                                          6 , 15
29753                                                                    based on weight (51-100 lbs)
29764                                                                                     unspecified
29765                                                                                     unspecified
29767                                                                    based on weight (51-100 lbs)
29770                                                                    based on weight (51-100 lbs)
29794                                                                                     unspecified
29798                                                              based on weight (51-100 lbs) - 272
29799                                                              based on weight (51-100 lbs) - 272
29800                                                            based on weight (60.1-121 lbs) - 136
29801                                                                                        wipe/pad
29802                                                              based on weight (51-100 lbs) - 272
29803                                                            based on weight (60.1-121 lbs) - 136
29822                                                                    based on weight (51-100 lbs)
29823                                                                    based on weight (60-120 lbs)
29824                                                                    based on weight (51-100 lbs)
29825                                                                  based on weight (60.1-121 lbs)
29827                                                                                             3-4
29829                                                                                             1-2
29831                                                                                                
29838                                                                                     unspecified
29839                                                                                     unspecified
29840                                                                                     unspecified
29847                                                                                                
29858                                                                                     unspecified
29862                                                                                        27, 1620
29865                                                                                        37, 1620
29880                                                                    based on weight (51-100 lbs)
29882                                                                    based on weight (51-100 lbs)
29883                                                                    based on weight (60-121 lbs)
29933                                                                           1 tablet/pill/capsule
29940                                                                    based on weight (50-100 lbs)
29941                                                                    based on weight (50-100 lbs)
29948                                                                                     unspecified
29954                                                                    based on weight (51-100 lbs)
29955                                                                       based on weight (55+ lbs)
29956                                                                    based on weight (51-100 lbs)
29957                                                                       based on weight (55+ lbs)
29963                                                                       based on weight (55+ lbs)
29964                                                                    based on weight (51-100 lbs)
29966                                                                                     unspecified
29969                                                                       based on weight (55+ lbs)
29970                                                                    based on weight (51-100 lbs)
29978                                                                    based on weight (51-100 lbs)
29990                                                                                 based on weight
29991                                                                                         23, 460
29993                                                                                         23, 460
30001                                                                                     unspecified
30048                                                                                     unspecified
30070                                                                                 0.25 inch strip
30075                                                                     based on weight (45-88 lbs)
30076                                                                     based on weight (26-50 lbs)
30081                                                                    based on weight (50-100 lbs)
30082                                                                    based on weight (50-100 lbs)
30083                                                                    based on weight (51-100 lbs)
30099                                                                    based on weight (51-100 lbs)
30104                                                                                     unspecified
30105                                                                                     unspecified
30131                                                                                     unspecified
30132                                                                                     unspecified
30138                                                            272 ivermectin, 227 pyrantel pamoate
30142                                                                    based on weight (60-120 lbs)
30143                                                                                    small amount
30162                                                                                     unspecified
30165                                                                                        27, 1620
30166                                                                                         23, 460
30169                                                                                    small amount
30172                                                                                         23, 460
30174                                                                                         23, 460
30178                                                                                 0.25 inch strip
30179                                                                                     unspecified
30185                                                                    based on weight (50-100 lbs)
30191                                                                1 tablet/pill/capsule - 27, 1620
30192                                                                                        27, 1620
30193                                                                                        27, 1620
30198                                                                                     unspecified
30211                                                                    based on weight (51-100 lbs)
30212                                                                   based on weight (44.1-88 lbs)
30214                                                                     based on weight (56-95 lbs)
30218                                                                     based on weight (44-88 lbs)
30221                                                                    based on weight (51-100 lbs)
30239                                                            230 lufenuron, 11.5 milbemycin oxime
30241                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30242                                                                    based on weight (50-100 lbs)
30246                                                                                     unspecified
30263                                                                    based on weight (51-100 lbs)
30264                                                                     based on weight (44-88 lbs)
30268                                                                    based on weight (51-100 lbs)
30269                                                                     based on weight (45-88 lbs)
30270                                                                    based on weight (51-100 lbs)
30274                                                                    based on weight (51-100 lbs)
30277                                                                    based on weight (51-100 lbs)
30286                                                                    based on weight (51-100 lbs)
30298                                                                    based on weight (51-100 lbs)
30299                                                                    based on weight (51-100 lbs)
30300                                                                                   1 bottle/vial
30310                                                                    based on weight (51-100 lbs)
30311                                                                                 0.25 inch strip
30312                                                                                                
30313                                                                    based on weight (51-100 lbs)
30317                                                                                     application
30319                                                                                     application
30327                                                                                     unspecified
30329                                                                                     unspecified
30337                                                                                     unspecified
30338                                                                                     unspecified
30344                                                                    based on weight (51-100 lbs)
30347                                                                    based on weight (60-120 lbs)
30351                                                                     based on weight (44-88 lbs)
30352                                                                    based on weight (51-100 lbs)
30355                                                                                    small amount
30357                                                                                                
30360                                                                                  1 pack/package
30361                                                                        2 tablets/pills/capsules
30366                                                                           1 tablet/pill/capsule
30367                                                                           1 tablet/pill/capsule
30371                                                                    based on weight (51-100 lbs)
30372                                                                                 based on weight
30373                                                                                 based on weight
30374                                                                                 based on weight
30375                                                                                 based on weight
30376                                                                    based on weight (51-100 lbs)
30377                                                                                     unspecified
30378                                                                                     unspecified
30385                                                                    based on weight (51-100 lbs)
30387                                                                       based on weight (60+ lbs)
30388                                                                        2 tablets/pills/capsules
30389                                                                                     application
30395                                                                       based on weight (60+ lbs)
30396                                                                       based on weight (<60 lbs)
30404                                                                    based on weight (51-100 lbs)
30405                                                                       based on weight (55+ lbs)
30406                                                                    based on weight (51-100 lbs)
30418                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
30450                                                                                     unspecified
30464                                                                                     unspecified
30471                                                                                         23, 228
30479                                                                       based on weight (55+ lbs)
30480                                                                    based on weight (51-100 lbs)
30483                                                                       based on weight (55+ lbs)
30484                                                                                     unspecified
30485                                                                                     unspecified
30492                                                              460 lufenuron, 23 milbemycin oxime
30496                                                                                     unspecified
30515                                                                    based on weight (51-100 lbs)
30528                                                                                         23, 460
30529                                                                                             4-5
30536                                                                                             4-5
30555                                                                           1 tablet/pill/capsule
30556                                                                           1 tablet/pill/capsule
30590                                                                     based on weight (40-60 lbs)
30604                                                                   based on weight (40-60.1 lbs)
30623                                                                                                
30644                                          1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
30685                                                                                     unspecified
30689                                                                                     unspecified
30692                                                                                    small amount
30701                                                                     based on weight (44-88 lbs)
30702                                                                                         23, 460
30707                                                                     based on weight (44-88 lbs)
30708                                                                    based on weight (51-100 lbs)
30709                                                                    based on weight (51-100 lbs)
30710                                                                     based on weight (44-88 lbs)
30713                                                                                     unspecified
30714                                                                                     unspecified
30717                                                                                     unspecified
30753                                                                    based on weight (50-100 lbs)
30754                                                                     based on weight (20-50 lbs)
30756                                                                     based on weight (21-55 lbs)
30757                                                                     based on weight (22-55 lbs)
30764                                                              27 milbemycin oxime, 1620 spinosad
30765                                                                           1 tablet/pill/capsule
30766                                                                           1 tablet/pill/capsule
30768                                                                    based on weight (51-100 lbs)
30769                                                                                     unspecified
30779                                                                    based on weight (51-100 lbs)
30793                                                                           1 tablet/pill/capsule
30796                                                                       based on weight (50+ lbs)
30797                                                                       based on weight (60+ lbs)
30799                                                                    based on weight (51-100 lbs)
30803                                                                                     unspecified
30813                                                                    based on weight (51-100 lbs)
30815                                                                           1 tablet/pill/capsule
30816                                                                           1 tablet/pill/capsule
30817                                                                                        1 collar
30819                                                                     based on weight (56-95 lbs)
30820                                                                    based on weight (51-100 lbs)
30821                                                                        2 tablets/pills/capsules
30822                                                                        2 tablets/pills/capsules
30823                                                                       based on weight (61+ lbs)
30824                                                                                     unspecified
30826                                                                    based on weight (55-100 lbs)
30833                                                                    based on weight (55-100 lbs)
30834                                                                                                
30840                                                                                      100/10 /dm
30844                                                            272 ivermectin, 227 pyrantel pamoate
30876                                                                                 based on weight
30877                                                                                 based on weight
30901                                                                                0.125 inch strip
30909                                                                    based on weight (50-100 lbs)
30917                                                                                     unspecified
30920                                                                    based on weight (50-100 lbs)
30936                                                                                     unspecified
30943                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30945                                                                                         23, 460
30947                                                                    based on weight (51-100 lbs)
30948                                                                    based on weight (88-123 lbs)
30949                                                                                         23, 460
30953                                                                                     unspecified
30961                                                                           1 tablet/pill/capsule
30962                                                                           1 tablet/pill/capsule
30963                                                                      1 tablet/pill/capsule - 75
30998                                                                       based on weight (55+ lbs)
31000                                                                        based on weight (59 lbs)
31001                                                                        based on weight (59 lbs)
31003                                                                        based on weight (59 lbs)
31004                                                                       based on weight (55+ lbs)
31010                                                                    based on weight (50-100 lbs)
31011                                                                       based on weight (55+ lbs)
31022                                                                    based on weight (51-100 lbs)
31023                                                                     based on weight (44-88 lbs)
31034                                                                    based on weight (50-100 lbs)
31043                                                                               1 syringe/pipette
31046                                                                  based on weight (50.1-100 lbs)
31089                                                                                 based on weight
31094                                                           23 milbemycin oxime, 228 praziquantel
31095                                                                         0.5 tablet/pill/capsule
31096                                                                    based on weight (51-100 lbs)
31105                                                                    based on weight (51-100 lbs)
31132                                                                                     application
31133                                                                    based on weight (51-100 lbs)
31134                                                                    based on weight (60-120 lbs)
31135                                                                    based on weight (51-100 lbs)
31139                                                                  based on weight (60.1-121 lbs)
31148                                                            272 ivermectin, 227 pyrantel pamoate
31149                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31152                                                            272 ivermectin, 227 pyrantel pamoate
31154                                                            272 ivermectin, 227 pyrantel pamoate
31183                                                                     based on weight (44-88 lbs)
31186                                                                                     unspecified
31195                                                                                    23, 228, 460
31196                                                                                     unspecified
31197                                                                                  1 pack/package
31198                                                                                           1.5-2
31199                                                                           1 tablet/pill/capsule
31203                                                                             tablet/pill/capsule
31209                                                                                     unspecified
31228                                                                                     as directed
31232                                                                                          varies
31234                                                              8.8% (s)-methoprene, 9.8% fipronil
31247                                                           23 milbemycin oxime, 228 praziquantel
31248                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 milbemycin oxime, 228 praziquantel
31250                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                    based on weight (51-100 lbs)
31263                                                                    based on weight (51-100 lbs)
31265                                                                                 based on weight
31268                                                                                     as directed
31297                                                                     based on weight (40-85 lbs)
31299                                                                    based on weight (85-130 lbs)
31300                                                                    based on weight (50-100 lbs)
31301                                                                     based on weight (44-88 lbs)
31303                                                                                       120 , 360
31307                                                                       based on weight (55+ lbs)
31308                                                                    based on weight (51-100 lbs)
31309                                                                  based on weight (85.1-130 lbs)
31317                                                                                     unspecified
31322                                                              27 milbemycin oxime, 1620 spinosad
31328                                                                                     unspecified
31350                                                                                     unspecified
31353                                                                                           10-20
31356                                                                                    small amount
31357                                                                    based on weight (51-100 lbs)
31358                                                                    based on weight (60-121 lbs)
31359                                                                    based on weight (61-100 lbs)
31360                                                                     based on weight (60-80 lbs)
31361                                                                    based on weight (51-100 lbs)
31365                                                                    based on weight (50-100 lbs)
31366                                                                    based on weight (60-121 lbs)
31367                                                                                    small amount
31369                                               2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                     application
31371                                                                                    small amount
31373                                                                    based on weight (51-100 lbs)
31374                                                                                     as directed
31375                                                                    based on weight (51-100 lbs)
31383                                                                     based on weight (26-50 lbs)
31384                                                                     based on weight (40-60 lbs)
31385                                                                     based on weight (24-60 lbs)
31386                                                                     based on weight (26-50 lbs)
31389                                                                           1 tablet/pill/capsule
31408                                                            272 ivermectin, 227 pyrantel pamoate
31423                                                                                     unspecified
31434                                                                                     unspecified
31437                                                                                     unspecified
31438                                                                                     unspecified
31439                                                                                            8-10
31440                                                                       based on weight (50+ lbs)
31441                                                                    based on weight (51-100 lbs)
31446                                                                                     application
31447                                                                                    small amount
31449                                                                    based on weight (51-100 lbs)
31450                                                                   based on weight (24.1-60 lbs)
31452                                                                                     application
31457                                                                                     unspecified
31463                                                                                     unspecified
31471                                                                                     unspecified
31502                                                                     based on weight (26-50 lbs)
31503                                                                    based on weight (60-120 lbs)
31504                                                                     based on weight (45-88 lbs)
31506                                                                    based on weight (60-121 lbs)
31508                                                                     based on weight (45-88 lbs)
31528                                                                    based on weight (60-121 lbs)
31529                                                                     based on weight (26-50 lbs)
31531                                                                    based on weight (60-121 lbs)
31539                                                                                 syringe/pipette
31542                                                                                     unspecified
31548                                                                                     unspecified
31551                                                                                     unspecified
31552                                                                     based on weight (45-88 lbs)
31553                                                                     based on weight (45-88 lbs)
31602                                                                    based on weight (51-100 lbs)
31611                                                                                    small amount
31612                                                       100 flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 dha, 75 epa
31617                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31618                                                                  based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 dha, 155 epa
31637                                                            272 ivermectin, 227 pyrantel pamoate
31640                                                                                    small amount
31643                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31644                                                                  based on weight (60 lbs) - 2.7
31645                                                                                    small amount
31646                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31647                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
31653                                                            272 ivermectin, 227 pyrantel pamoate
31655                                                                                     unspecified
31656                                                                                     unspecified
31657                                                                                     unspecified
31665                                                                    based on weight (51-100 lbs)
31666                                                                       based on weight (60+ lbs)
31678                                                                    based on weight (51-100 lbs)
31680                                                                    based on weight (51-100 lbs)
31688                                                                    based on weight (51-100 lbs)
31689                                                                       based on weight (60+ lbs)
31696                                                                                     unspecified
31707                                                                    based on weight (51-100 lbs)
31713                                                            272 ivermectin, 227 pyrantel pamoate
31716                                                                                         23, 460
31725                                                                                    small amount
31726                                                                                 based on weight
31730                                                                                     unspecified
31731                                                                                     unspecified
31734                                                                    based on weight (51-100 lbs)
31735                                                                       based on weight (55+ lbs)
31736                                                                                  1 pack/package
31737                                                                     based on weight (41-70 lbs)
31742                                                                                     unspecified
31747                                                                    based on weight (51-100 lbs)
31748                                                                                     unspecified
31760                                                                    based on weight (51-100 lbs)
31761                                                                       based on weight (10+ lbs)
31762                                                                    based on weight (51-100 lbs)
31765                                                                           1 tablet/pill/capsule
31766                                                                           1 tablet/pill/capsule
31768                                                                                 based on weight
31769                                                            272 ivermectin, 227 pyrantel pamoate
31771                                                            272 ivermectin, 227 pyrantel pamoate
31773                                                            272 ivermectin, 227 pyrantel pamoate
31774                                                                                     application
31777                                                                    based on weight (51-100 lbs)
31780                                                                                        23 , 469
31781                                                                                         23, 228
31798                                                                    based on weight (51-100 lbs)
31803                                                                                 based on weight
31804                                                                    based on weight (60-121 lbs)
31807                                                                     based on weight (45-88 lbs)
31808                                                                    based on weight (51-100 lbs)
31810                                                                           1 tablet/pill/capsule
31819                                                                           1 tablet/pill/capsule
31824                                                                           1 tablet/pill/capsule
31826                                                                                                
31833                                                                                     unspecified
31834                                                                                     unspecified
31836                                                                                     unspecified
31837                                                                                     unspecified
31840                                                                    based on weight (51-100 lbs)
31841                                                                        based on weight (40 lbs)
31843                                                                                 based on weight
31844                                                                                 based on weight
31846                                                                                          collar
31847                                                                    based on weight (51-100 lbs)
31849                                                                                 moderate amount
31850                                                                                     unspecified
31853                                                                     based on weight (45-88 lbs)
31861                                                           23 milbemycin oxime, 228 praziquantel
31864                                                           25 milbemycin oxime, 228 praziquantel
31866                                                           25 milbemycin oxime, 228 praziquantel
31868                                                                    based on weight (51-100 lbs)
31869                                                                    based on weight (51-100 lbs)
31874                                                                    based on weight (50-100 lbs)
31876                                                                                    small amount
31880                                                                                        160, 800
31888                                                                                     application
31891                                                                    based on weight (51-100 lbs)
31892                                                                    based on weight (60-121 lbs)
31895                                                                    based on weight (50-100 lbs)
31896                                                                    based on weight (60-121 lbs)
31898                                                                    based on weight (60-121 lbs)
31907                                                                     based on weight (44-88 lbs)
31908                                                                    based on weight (51-100 lbs)
31909                                                                    based on weight (51-100 lbs)
31911                                                                    based on weight (51-100 lbs)
31916                                                                    based on weight (51-100 lbs)
31937                                                                                       13.5, 810
31938                                                                                         23, 460
31939                                                                                         23, 460
31940                                                                                         23, 460
31941                                                                                         23, 460
31942                                                                                     unspecified
31945                                                                           1 tablet/pill/capsule
31946                                                                       based on weight (50+ lbs)
31947                                                                    based on weight (51-100 lbs)
31948                                                                     based on weight (44-88 lbs)
31953                                                                                     unspecified
31954                                                                     based on weight (44-88 lbs)
31955                                                                    based on weight (51-100 lbs)
31968                                                            272 ivermectin, 227 pyrantel pamoate
31985                                                                                     unspecified
31990                                                                    based on weight (51-100 lbs)
32002                                                                    based on weight (51-100 lbs)
32006                                                                                         10, 100
32015                                                                                                
32016                                                                             tablet/pill/capsule
32020                                                                    based on weight (51-100 lbs)
32025                                                                                     unspecified
32032                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32035                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32040                                                                       based on weight (100 lbs)
32046                                                                                     unspecified
32053                                                                    based on weight (51-100 lbs)
32054                                                                     based on weight (45-88 lbs)
32055                                                                     based on weight (45-88 lbs)
32056                                                                    based on weight (50-100 lbs)
32057                                                                    based on weight (60-121 lbs)
32058                                                                    based on weight (51-100 lbs)
32059                                                                           1 tablet/pill/capsule
32060                                                                           1 tablet/pill/capsule
32074                                                                                    small amount
32076                                                                    based on weight (51-100 lbs)
32079                                                                  based on weight (60.1-121 lbs)
32080                                                                                 based on weight
32084                                                                                 0.25 inch strip
32095                                                                     based on weight (44-88 lbs)
32097                                                                    based on weight (51-100 lbs)
32098                                                                    based on weight (50-100 lbs)
32099                                                                     based on weight (44-88 lbs)
32100                                                                    based on weight (50-100 lbs)
32101                                                                   based on weight (44.1-88 lbs)
32102                                                                     based on weight (44-88 lbs)
32103                                                                    based on weight (50-100 lbs)
32104                                                                           1 tablet/pill/capsule
32105                                                                    based on weight (50-100 lbs)
32106                                                                     based on weight (44-88 lbs)
32108                                                                                 based on weight
32114                                                               4.5% flumethrin, 10% imidacloprid
32116                                                               4.5% flumethrin, 10% imidacloprid
32119                                                                                     unspecified
32121                                                                                 based on weight
32122                                                                                 based on weight
32123                                                                                     unspecified
32128                                                                                 based on weight
32129                                                                                 based on weight
32132                                                                           1 tablet/pill/capsule
32133                                                                           1 tablet/pill/capsule
32134                                                                           1 tablet/pill/capsule
32168                                                                                    small amount
32171                                                                                    small amount
32175                                                                                    small amount
32179                                                                    based on weight (51-100 lbs)
32180                                                                    based on weight (60-120 lbs)
32183                                                                                     unspecified
32184                                                                                     unspecified
32187                                                                                     unspecified
32196                                                                                     unspecified
32222                                                                  based on weight (50.1-100 lbs)
32231                                                                           1 tablet/pill/capsule
32232                                                                           1 tablet/pill/capsule
32233                                                                  based on weight (50.1-100 lbs)
32234                                                                     based on weight (44-88 lbs)
32236                                                                    based on weight (51-100 lbs)
32237                                                                     based on weight (24-60 lbs)
32266                                                                                    small amount
32276                                                                                     unspecified
32290                                                                                        inhalant
32295                                                                           1 tablet/pill/capsule
32296                                                                           1 tablet/pill/capsule
32297                                                                     based on weight (45-88 lbs)
32310                                                                                                
32312                                                                    based on weight (51-100 lbs)
32313                                                                     based on weight (44-88 lbs)
32315                                                                                    1 inch strip
32320                                                                                        inhalant
32343                                                                                     unspecified
32358                                                    0.284 betamethasone, 0.57 gentamicin sulfate
32359                                                                     based on weight (45-88 lbs)
32360                                                                    based on weight (51-100 lbs)
32362                                                                    based on weight (50-100 lbs)
32363                                                                                     unspecified
32370                                                                                     unspecified
32390                                                                                 based on weight
32393                                                                                                
32394                                                                     based on weight (44-88 lbs)
32417                                                                           1 tablet/pill/capsule
32425                                                                     based on weight (45-88 lbs)
32426                                                                    based on weight (51-100 lbs)
32427                                                                  based on weight (50.1-100 lbs)
32445                                                                                     unspecified
32447                                                                                     unspecified
32448                                                                                     unspecified
32449                                                                                     unspecified
32460                                                                                            5-10
32463                                                                                     unspecified
32464                                                                                     unspecified
32466                                                                    based on weight (51-100 lbs)
32467                                                                   based on weight (44.1-88 lbs)
32477                                                                    based on weight (51-100 lbs)
32478                                                                   based on weight (44.1-88 lbs)
32504                                                                    based on weight (50-100 lbs)
32505                                                                       based on weight (56+ lbs)
32507                                                                                     application
32509                                                                    based on weight (50-100 lbs)
32510                                                                       based on weight (56+ lbs)
32511                                                                           1 tablet/pill/capsule
32512                                                                                     bottle/vial
32513                                                                                     unspecified
32520                                                                                           10-15
32529                                                                    based on weight (51-100 lbs)
32530                                                                    based on weight (51-100 lbs)
32535                                                                    based on weight (51-100 lbs)
32536                                                                     based on weight (44-88 lbs)
32538                                                                                 moderate amount
32542                                                                                     unspecified
32557                                                                                       136 , 114
32558                                                                     based on weight (45-88 lbs)
32561                                                                    based on weight (50-100 lbs)
32562                                                                                 based on weight
32575                                                                                     unspecified
32576                                                                                     unspecified
32629                                                                                     unspecified
32631                                                                    based on weight (51-100 lbs)
32633                                                                                     unspecified
32635                                                                                     application
32642                                                                  based on weight (50.1-100 lbs)
32643                                                                    based on weight (50-100 lbs)
32652                                                                                     unspecified
32654                                                                                     unspecified
32664                                                                    based on weight (51-100 lbs)
32670                                                                                         57, 460
32672                                                                                 moderate amount
32673                                                                                        272, 228
32678                                                                                       25.3, 506
32680                                                                                        23 , 460
32682                                                                                         23, 460
32685                                                                                         23, 460
32694                                                                                                
32698                                                                    based on weight (60-120 lbs)
32703                                                                           1 tablet/pill/capsule
32726                                                                                     unspecified
32737                                                                                     unspecified
32739                                                                                     unspecified
32742                                                                    based on weight (50-100 lbs)
32743                                                                    based on weight (50-100 lbs)
32750                                                                       based on weight (50+ lbs)
32751                                                                     based on weight (24-60 lbs)
32767                                                                                     unspecified
32768                                                                           1 tablet/pill/capsule
32769                                                                        based on weight (54 lbs)
32770                                                                           1 tablet/pill/capsule
32777                                                                                     unspecified
32798                                                                                   1 bottle/vial
32815                                                                                    small amount
32829                                                                    based on weight (89-132 lbs)
32841                                                                                                
32844                                                                                        125, 500
32849                                                                                     unspecified
32850                                                                                     unspecified
32856                                                              8.8% (s)-methoprene, 9.8% fipronil
32857                                                            272 ivermectin, 227 pyrantel pamoate
32858                                                                     based on weight (60-80 lbs)
32859                                                                     based on weight (60-80 lbs)
32862                                                                     based on weight (44-88 lbs)
32863                                                                                                
32869                                                                     based on weight (44-88 lbs)
32870                                                                     based on weight (44-88 lbs)
32871                                                                                     unspecified
32879                                                                                     unspecified
32883                                                                    based on weight (50-100 lbs)
32884                                                                                 500, 1250, 2500
32887                                                                                     unspecified
32888                                                                                     unspecified
32903                                                                                            3 au
32923                                                            272 ivermectin, 227 pyrantel pamoate
32930                                                                  based on weight (50.1-100 lbs)
32937                                                                        based on weight (66 lbs)
32938                                                                    based on weight (51-100 lbs)
32940                                                                                     application
32942                                                                    based on weight (51-100 lbs)
32943                                                                     based on weight (44-88 lbs)
32944                                                                  based on weight (60.1-121 lbs)
32949                                                                                    small amount
32950                                                                                     as directed
32951                                                                    based on weight (51-100 lbs)
32952                                                                    based on weight (60-121 lbs)
32954                                                                                        125, 500
32955                                                                    based on weight (51-100 lbs)
32956                                                                  based on weight (60.1-121 lbs)
32964                                                                                     unspecified
32965                                                                                     unspecified
32999                                                                    based on weight (51-100 lbs)
33004                                                                    based on weight (51-100 lbs)
33008                                                                       based on weight (55+ lbs)
33009                                                                    based on weight (51-100 lbs)
33010                                                                    based on weight (50-100 lbs)
33011                                                                     based on weight (24-60 lbs)
33015                                                                        based on weight (30 lbs)
33023                                                                                 based on weight
33043                                                            272 ivermectin, 227 pyrantel pamoate
33047                                                                                        125, 875
33066                                                                     based on weight (40-85 lbs)
33068                                                                   based on weight (40.1-85 lbs)
33073                                                                                     unspecified
33078                                                                    based on weight (51-100 lbs)
33081                                                                    based on weight (51-100 lbs)
33085                                                                     based on weight (56-95 lbs)
33086                                                                    based on weight (51-100 lbs)
33087                                                                     based on weight (56-95 lbs)
33088                                                                    based on weight (51-100 lbs)
33089                                                                     based on weight (56-95 lbs)
33090                                                                    based on weight (50-100 lbs)
33091                                                                     based on weight (56-95 lbs)
33092                                                                    based on weight (50-100 lbs)
33096                                                                                     unspecified
33107                                                                    based on weight (51-100 lbs)
33110                                                                    based on weight (51-100 lbs)
33113                                                                    based on weight (51-100 lbs)
33124                                                                                    small amount
33126                                                                                    small amount
33128                                                                                     unspecified
33132                                                                    based on weight (60-120 lbs)
33133                                                                    based on weight (51-100 lbs)
33138                                                                    based on weight (51-100 lbs)
33157                                                                                     unspecified
33159                                                                                     unspecified
33166                                                                     based on weight (45-80 lbs)
33187                                                            272 ivermectin, 227 pyrantel pamoate
33190                                                             13.5 milbemycin oxime, 810 spinosad
33191                                                                                     unspecified
33209                                                                                                
33211                                                                    based on weight (51-100 lbs)
33220                                                                    based on weight (45-120 lbs)
33222                                                                    based on weight (51-100 lbs)
33226                                                                             tablet/pill/capsule
33227                                                                                  1 pack/package
33229                                                                     based on weight (56-95 lbs)
33230                                                                    based on weight (51-100 lbs)
33233                                                                                  1 pack/package
33235                                                                     based on weight (56-95 lbs)
33236                                                                                   1 bottle/vial
33239                                                                                  1 pack/package
33242                                                                    based on weight (51-100 lbs)
33271                                                                                     unspecified
33286                                                                                 based on weight
33289                                                                                 based on weight
33292                                                                             tablet/pill/capsule
33293                                                                                     bottle/vial
33318                                                              8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                        23 , 460
33335                                                                                        23 , 460
33336                                                                    based on weight (51-100 lbs)
33347                                                                                     unspecified
33354                                                                                                
33355                                                                                     bottle/vial
33358                                                                                     unspecified
33363                                                                    based on weight (51-100 lbs)
33364                                                                     based on weight (44-88 lbs)
33370                                                                                     unspecified
33374                                                                                     unspecified
33375                                                                                     unspecified
33376                                                                                     unspecified
33377                                                                                     unspecified
33385                                                                                     unspecified
33387                                                                                     unspecified
33389                                                                                     unspecified
33410                                                                    based on weight (51-100 lbs)
33411                                                                       based on weight (30+ lbs)
33412                                                                    based on weight (51-100 lbs)
33414                                                                       based on weight (18+ lbs)
33456                                                                                     unspecified
33468                                                                                     unspecified
33471                                                                                     unspecified
33479                                                                    based on weight (60-120 lbs)
33480                                                                    based on weight (50-100 lbs)
33482                                                                                     unspecified
33489                                                                                     unspecified
33490                                                                                         23, 460
33491                                                                                         23, 460
33492                                                                                         23, 460
33493                                                                                         23, 460
33497                                                                           1 tablet/pill/capsule
33499                                                                                     unspecified
33500                                                                           1 tablet/pill/capsule
33539                                                                                     unspecified
33541                                                                                          collar
33542                                                                                             6-8
33543                                                                                          collar
33544                                                                                          collar
33576                                                            272 ivermectin, 227 pyrantel pamoate
33580                                                                             tablet/pill/capsule
33581                                                                                                
33582                                                                  2 tablets/pills/capsules - 100
33583                                                                        3 tablets/pills/capsules
33590                                                                                     unspecified
33591                                                                    based on weight (51-100 lbs)
33592                                                                    based on weight (51-100 lbs)
33614                                                                                     unspecified
33641                                                                           1 tablet/pill/capsule
33644                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8
33649                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                           1 tablet/pill/capsule
33684                                                                                     unspecified
33690                                                            272 ivermectin, 227 pyrantel pamoate
33696                                                            272 ivermectin, 227 pyrantel pamoate
33702                                                                                     unspecified
33706                                                                                         23, 460
33714                                                                    based on weight (50-100 lbs)
33717                                                                                     as directed
33722                                                                                     application
33723                                                                    based on weight (50-100 lbs)
33724                                                                    based on weight (50-100 lbs)
33725                                                                     based on weight (44-88 lbs)
33737                                                                                     unspecified
33739                                                                           1 tablet/pill/capsule
33740                                                                    based on weight (60-120 lbs)
33756                                                                                             1-2
33767                                                                                         23, 228
33797                                                                       based on weight (55+ lbs)
33798                                                                    based on weight (51-100 lbs)
33804                                                                    based on weight (51-100 lbs)
33805                                                                       based on weight (55+ lbs)
33815                                                                                     unspecified
33824                                                            272 ivermectin, 227 pyrantel pamoate
33828                             1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                     unspecified
33868                                                                    based on weight (51-100 lbs)
33869                                                            272 ivermectin, 227 pyrantel pamoate
33870                                                                    based on weight (51-100 lbs)
33890                                                                                     unspecified
33894                                                                                    small amount
33901                                                                                     unspecified
33907                                                                                                
33911                                                                     based on weight (44-88 lbs)
33916                                                                                       injection
33919                                                                                    small amount
33927                                                                                   1 application
33939                                                                                    small amount
33940                                                                                    small amount
33987                                                                           1 tablet/pill/capsule
33991                                                                                    small amount
33992                                                                           1 tablet/pill/capsule
33993                                                                           1 tablet/pill/capsule
33994                                                                                     application
33995                                                                           1 tablet/pill/capsule
33998                                                                                    small amount
34000                                                                           1 tablet/pill/capsule
34002                                                                           1 tablet/pill/capsule
34003                                                                                     application
34005                                                                                     unspecified
34011                                                                                     unspecified
34012                                                                                     unspecified
34014                                                                                     unspecified
34016                                                                                     unspecified
34022                                                                                     unspecified
34024                                                                                     unspecified
34029                                                                                     unspecified
34030                                                                    based on weight (51-100 lbs)
34043                                                                    based on weight (50-100 lbs)
34046                                                                     based on weight (44-88 lbs)
34048                                                                    based on weight (51-100 lbs)
34049                                                                       based on weight (50+ lbs)
34051                                                                    based on weight (51-100 lbs)
34053                                                                    based on weight (51-100 lbs)
34054                                                                                 based on weight
34069                                                            272 ivermectin, 227 pyrantel pamoate
34073                                                                                             1-2
34074                                                                                        114, 136
34075                                                                                 0.22, 1.1, 0.01
34077                                                                    based on weight (51-100 lbs)
34087                                                                  based on weight (60.1-120 lbs)
34090                                                                                 moderate amount
34091                                                                    based on weight (51-100 lbs)
34093                                                                                        1 collar
34094                                                                                 moderate amount
34095                                                                  based on weight (60.1-120 lbs)
34096                                                                    based on weight (50-100 lbs)
34107                                                                     based on weight (45-88 lbs)
34108                                                                    based on weight (51-100 lbs)
34109                                                                                    pack/package
34111                                                                    based on weight (51-100 lbs)
34113                                                                                                
34125                                                                    based on weight (55-100 lbs)
34126                                                                    based on weight (51-100 lbs)
34128                                                                                             1-2
34132                                                                    based on weight (51-100 lbs)
34134                                                                    based on weight (51-100 lbs)
34135                                                                     based on weight (56-95 lbs)
34138                                                                                  1 pack/package
34140                                                    350 chondroitin sulfate, 900 glucosamine hcl
34147                                                                    based on weight (51-100 lbs)
34148                                                                    based on weight (60-121 lbs)
34152                                                                                    small amount
34155                                                                                     unspecified
34156                                                                                     unspecified
34157                                                                                     unspecified
34161                                                            272 ivermectin, 227 pyrantel pamoate
34227                                                                                     unspecified
34230                                                                                     unspecified
34231                                                                                     unspecified
34232                                                                                     unspecified
34233                                                                                     unspecified
34234                                                                                     unspecified
34235                                                                                     unspecified
34238                                                                                 based on weight
34239                                                                        based on weight (66 lbs)
34240                                                                                 based on weight
34241                                                                                 based on weight
34242                                                                    based on weight (50-100 lbs)
34243                                                                                 based on weight
34246                                                                        based on weight (70 lbs)
34247                                                                        based on weight (70 lbs)
34249                                                                        based on weight (50 lbs)
34254                                                                    based on weight (51-100 lbs)
34260                                                                                       62.5, 437
34262                                                                                         23, 460
34264                                                                                       62.5, 437
34267                                                                    based on weight (51-100 lbs)
34268                                                                    based on weight (51-100 lbs)
34269                                                                                     unspecified
34327                                                                                     unspecified
34332                                                            272 ivermectin, 227 pyrantel pamoate
34333                                                                                    small amount
34334                                                                                     unspecified
34336                                                                                    small amount
34340                                                                   based on weight (24.1-60 lbs)
34342                                                                                     unspecified
34343                                                                                     unspecified
34345                                                                     based on weight (45-88 lbs)
34359                                                                                 based on weight
34360                                                                                 based on weight
34361                                                                                 based on weight
34362                                                                                 based on weight
34367                                                                                    small amount
34374                                                                    based on weight (50-100 lbs)
34375                                                                    based on weight (88-123 lbs)
34378                                                                                     unspecified
34379                                                                                     unspecified
34388                                                                                    small amount
34401                                                                    based on weight (51-100 lbs)
34403                                                                     based on weight (24-60 lbs)
34409                                                                                     unspecified
34410                                                                                     unspecified
34418                                                                    based on weight (51-100 lbs)
34419                                                                    based on weight (51-100 lbs)
34430                                                                                 based on weight
34434                                                                     based on weight (44-88 lbs)
34435                                                                           1 tablet/pill/capsule
34436                                                                                         1 scoop
34467                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
34474                                                                    based on weight (50-100 lbs)
34493                                                                                   0.5293, 5, 23
34513                                                                     based on weight (45-88 lbs)
34536                                                                                     unspecified
34545                                                                                     unspecified
34548                                                                                     unspecified
34579                                                                                     unspecified
34583                                                                    based on weight (51-100 lbs)
34584                                                                    based on weight (51-100 lbs)
34587                                                                                                
34588                                                                                    small amount
34593                                                                    based on weight (51-100 lbs)
34606                                                                                     unspecified
34608                                                                                        tapering
34609                                                                                    small amount
34617                                                                                   1 bottle/vial
34624                                                                                     unspecified
34629                                                                     based on weight (40-60 lbs)
34630                                                                                     as directed
34635                                                                                     application
34636                                                                     based on weight (41-60 lbs)
34637                                                                                        tapering
34638                                                                                      1 wipe/pad
34640                                                                     based on weight (41-60 lbs)
34642                                                                    based on weight (60-120 lbs)
34648                                                                    based on weight (50-100 lbs)
34669                                                                    based on weight (51-100 lbs)
34671                                                                           1 tablet/pill/capsule
34672                                                                                     application
34673                                                                                     application
34674                                                                                     application
34675                                                                                                
34676                                                           23 milbemycin oxime, 228 praziquantel
34677                                                                                     unspecified
34678                                                                                     unspecified
34680                                                                                     unspecified
34697                                                                  based on weight (60.1-120 lbs)
34704                                                                                 based on weight
34705                                                              27 milbemycin oxime, 1620 spinosad
34706                                                                           1 tablet/pill/capsule
34708                                                                        2 tablets/pills/capsules
34709                                                                        2 tablets/pills/capsules
34710                                                                                     unspecified
34727                                                                                     unspecified
34728                                                                                     unspecified
34729                                                                                     unspecified
34730                                                                    based on weight (51-100 lbs)
34733                                                                    based on weight (51-100 lbs)
34734                                                                     based on weight (44-88 lbs)
34741                                                                                    small amount
34744                                                                                    small amount
34747                                                                     based on weight (44-88 lbs)
34750                                                            272 ivermectin, 227 pyrantel pamoate
34763                                                                    based on weight (51-100 lbs)
34764                                                                  based on weight (60.1-120 lbs)
34766                                                            272 ivermectin, 227 pyrantel pamoate
34787                                                                                     unspecified
34788                                                                                    small amount
34789                                                            272 ivermectin, 227 pyrantel pamoate
34791                                                                    based on weight (50-100 lbs)
34797                                                                                     unspecified
34798                                                                                     unspecified
34799                                                                    based on weight (50-100 lbs)
34811                                                                       based on weight (60+ lbs)
34813                                                                             tablet/pill/capsule
34828                                                                   based on weight (40.1-60 lbs)
34832                                                                                        27, 1610
34833                                                                    based on weight (51-100 lbs)
34845                                                                             tablet/pill/capsule
34874                                                                           1 tablet/pill/capsule
34875                                                                           1 tablet/pill/capsule
34887                                                                                 based on weight
34888                                                                                     unspecified
34889                                                                           1 tablet/pill/capsule
34890                                                                               1 syringe/pipette
34891                                                                                 based on weight
34892                                                                     based on weight (44-88 lbs)
34900                                                                    based on weight (50-100 lbs)
34901                                                                     based on weight (44-88 lbs)
34902                                                                based on weight (70-80 lbs) - 80
34903                                                                                    small amount
34904                                                                                 based on weight
34905                                                                  based on weight (50.1-100 lbs)
34906                                                                   based on weight (44.1-88 lbs)
34907                                                                                    small amount
34908                                                                                 based on weight
34917                                                                                     unspecified
34918                                                                                     unspecified
34920                                                                  based on weight (50.1-100 lbs)
34922                                                                                         23, 228
34923                                                                      1 tablet/pill/capsule - 23
34924                                                                    1 tablet/pill/capsule - 1000
34953                                                                                     unspecified
34955                                                                                     unspecified
34956                                                                                     unspecified
34966                                                                    based on weight (51-100 lbs)
34979                                                                     based on weight (44-88 lbs)
34981                                                                  based on weight (50.1-100 lbs)
34982                                                                  based on weight (50.1-100 lbs)
34983                                                                    based on weight (51-100 lbs)
34991                                                                    based on weight (51-100 lbs)
34992                                                                    based on weight (51-100 lbs)
34996                                                                    based on weight (51-100 lbs)
35002                                                                       based on weight (55+ lbs)
35004                                                                    based on weight (51-100 lbs)
35014                                                                    based on weight (51-100 lbs)
35025                                                                    based on weight (50-100 lbs)
35027                                                                                        2.5 cups
35034                                                                                         23, 228
35049                                                                                        ointment
35069                                                                    based on weight (51-100 lbs)
35074                                                                                     unspecified
35094                                                                    based on weight (51-100 lbs)
35103                                                                                 based on weight
35109                                                                                     unspecified
35110                                                                    based on weight (50-100 lbs)
35125                                                                    based on weight (60-121 lbs)
35132                                                                    based on weight (88-123 lbs)
35134                                                                                    small amount
35143                                                                    based on weight (51-100 lbs)
35144                                                                                    small amount
35145                                                                    based on weight (51-100 lbs)
35146                                                                     based on weight (40-60 lbs)
35147                                                                    based on weight (51-100 lbs)
35148                                                                                     unspecified
35149                                                                     based on weight (25-50 lbs)
35150                                                                     based on weight (40-60 lbs)
35152                                                                                 based on weight
35153                                                                                 based on weight
35154                                                                    based on weight (51-100 lbs)
35160                                                                                     unspecified
35176                                                                                          1, 2.5
35181                                                                    based on weight (51-100 lbs)
35182                                                                    based on weight (51-100 lbs)
35183                                                                                     unspecified
35189                                                                    based on weight (51-100 lbs)
35203                                                                    based on weight (51-100 lbs)
35204                                                                    based on weight (51-100 lbs)
35205                                                                                    small amount
35207                                                            272 ivermectin, 227 pyrantel pamoate
35212                                                                    based on weight (51-100 lbs)
35214                                                                    based on weight (51-100 lbs)
35232                                                                                     unspecified
35245                                                                                                
35252                                                                                     unspecified
35262                                                            272 ivermectin, 227 pyrantel pamoate
35264                                                            272 ivermectin, 227 pyrantel pamoate
35278                                                                    based on weight (50-100 lbs)
35279                                                                    based on weight (60-120 lbs)
35283                                                                    based on weight (51-100 lbs)
35284                                                                  based on weight (60.1-121 lbs)
35291                                                                    based on weight (51-100 lbs)
35299                                                                     based on weight (45-88 lbs)
35300                                                                    based on weight (51-100 lbs)
35314                                                                                    small amount
35315                                                                                        23 , 228
35354                                                                                         23, 460
35382                                                                           1 tablet/pill/capsule
35388                                                                                                
35393                                                                                     unspecified
35399                                                                    based on weight (51-100 lbs)
35400                                                                                     unspecified
35401                                                                                     unspecified
35404                                                                                     unspecified
35405                                                                                     unspecified
35406                                                                                     unspecified
35414                                                                                         23, 460
35417                                                                                        4.5, 270
35420                                                                    based on weight (51-100 lbs)
35421                                                                     based on weight (44-88 lbs)
35422                                                                    based on weight (51-100 lbs)
35423                                                                    based on weight (51-100 lbs)
35424                                                                    based on weight (88-123 lbs)
35425                                                                                         23, 460
35432                                                              460 lufenuron, 23 milbemycin oxime
35434                                                                                     unspecified
35443                                                                                     unspecified
35450                                                                                     unspecified
35453                                                                                     unspecified
35454                                                                                     unspecified
35495                                                                                 based on weight
35496                                                                    based on weight (51-100 lbs)
35497                                                            272 ivermectin, 227 pyrantel pamoate
35499                                                                                  1 pack/package
35501                                                            272 ivermectin, 227 pyrantel pamoate
35504                                                                                    pack/package
35506                                                                                    small amount
35509                                                                                     unspecified
35513                                                                                     unspecified
35525                                                                     based on weight (41-88 lbs)
35526                                                                    based on weight (51-100 lbs)
35528                                                                                         23, 228
35539                                                                                         23, 228
35560                                                                    based on weight (51-100 lbs)
35561                                                                     based on weight (24-60 lbs)
35562                                                                           1 tablet/pill/capsule
35563                                                                           1 tablet/pill/capsule
35565                                                                    based on weight (51-100 lbs)
35566                                                                  based on weight (60.1-121 lbs)
35569                                                                    based on weight (51-100 lbs)
35571                                                                    based on weight (51-100 lbs)
35572                                                                       based on weight (55+ lbs)
35573                                                                        based on weight (45 lbs)
35574                                                                         0.5 tablet/pill/capsule
35575                                                                    based on weight (51-100 lbs)
35576                                                                    based on weight (51-100 lbs)
35577                                                                     based on weight (44-88 lbs)
35578                                                                     based on weight (44-88 lbs)
35579                                                                    based on weight (51-100 lbs)
35580                                                                                          varies
35581                                                                                          varies
35582                                                                                          varies
35593                                                                    based on weight (51-100 lbs)
35598                                                                    based on weight (51-100 lbs)
35605                                                                                     unspecified
35620                                                                     based on weight (45-88 lbs)
35621                                                                    based on weight (89-132 lbs)
35624                                                                    based on weight (89-132 lbs)
35626                                                                                    small amount
35628                                                                                 based on weight
35633                                                                                     unspecified
35639                                                                                 based on weight
35641                                                                    based on weight (60-121 lbs)
35642                                                                                     application
35645                                                                                                
35656                                                                                     application
35659                                                                                         23, 228
35662                                                                                     unspecified
35664                                                                    based on weight (50-100 lbs)
35665                                                                     based on weight (44-88 lbs)
35668                                                                                     unspecified
35673                                                                                     unspecified
35674                                                                                     unspecified
35696                                                                                    pack/package
35697                                                                       based on weight (60+ lbs)
35699                                                                  based on weight (60.1-121 lbs)
35721                                                                     based on weight (45-88 lbs)
35722                                                                                     unspecified
35725                                                            272 ivermectin, 227 pyrantel pamoate
35727                                                            272 ivermectin, 227 pyrantel pamoate
35740                                                                                     application
35743                                                                                     unspecified
35748                                                            272 ivermectin, 227 pyrantel pamoate
35756                                                                    based on weight (51-100 lbs)
35757                                                                    based on weight (51-100 lbs)
35758                                                                  based on weight (60.1-121 lbs)
35762                                                                                     unspecified
35768                                                                       based on weight (55+ lbs)
35770                                                                     based on weight (21-55 lbs)
35771                                                                    based on weight (51-100 lbs)
35772                                                                                     unspecified
35773                                                                     based on weight (21-55 lbs)
35774                                                                    based on weight (50-100 lbs)
35775                                                                    based on weight (51-100 lbs)
35777                                                                     based on weight (20-55 lbs)
35778                                                                     based on weight (25-50 lbs)
35784                                                                           1 tablet/pill/capsule
35786                                                                                     application
35791                                                              based on weight (44-88 lbs) - 2.68
35792                                                              based on weight (50-100 lbs) - 227
35793                                                                    based on weight (50-100 lbs)
35808                                                                                     unspecified
35809                                                                                     unspecified
35810                                                                                     unspecified
35812                                                                    based on weight (60-120 lbs)
35820                                                                           1 tablet/pill/capsule
35821                                                                                          1 dose
35831                                                           23 milbemycin oxime, 228 praziquantel
35835                                                           23 milbemycin oxime, 228 praziquantel
35850                                                                           1 tablet/pill/capsule
35855                                                                    based on weight (50-100 lbs)
35858                                                                           1 tablet/pill/capsule
35859                                                                        3 tablets/pills/capsules
35903                                                                                   5 minute soak
35905                                                                           1 tablet/pill/capsule
35907                                                                           1 tablet/pill/capsule
35908                                                                    based on weight (50-100 lbs)
35931                                                                           1 tablet/pill/capsule
35954                                                                    based on weight (51-100 lbs)
35955                                                                    based on weight (51-100 lbs)
35963                                                                                    small amount
35965                                                                                    small amount
35969                                                                                    small amount
35973                                                                    based on weight (60-120 lbs)
35982                                                                    based on weight (51-100 lbs)
35983                                                                  based on weight (60.1-121 lbs)
36019                                                                   based on weight (24.1-60 lbs)
36021                                                                  based on weight (60.1-121 lbs)
36023                                                                                    small amount
36030                                                                                     unspecified
36042                                                                                     unspecified
36043                                                              27 milbemycin oxime, 1620 spinosad
36044                                                                    based on weight (60-120 lbs)
36065                                                                    based on weight (51-100 lbs)
36069                                                                    based on weight (51-100 lbs)
36078                                                                                    small amount
36081                                                                                    small amount
36082                                                                                        68 , 272
36084                                                                                     unspecified
36108                                                           23 milbemycin oxime, 228 praziquantel
36110                                                            13. 5 milbemycin oxime, 810 spinosad
36112                                                                                     unspecified
36113                                                                                     unspecified
36115                                                                                     unspecified
36134                                                                                     unspecified
36137                                                                                     unspecified
36144                                                                     based on weight (45-88 lbs)
36145                                                                    based on weight (51-100 lbs)
36150                                                                    based on weight (51-100 lbs)
36153                                                                                    small amount
36156                                                                    based on weight (51-100 lbs)
36159                                                                    based on weight (60-121 lbs)
36171                                                                                     unspecified
36191                                                                    based on weight (50-100 lbs)
36192                                                                     based on weight (44-88 lbs)
36200                                                                                     unspecified
36201                                                                                     unspecified
36202                                                                                                
36203                                                                                     unspecified
36205                                                                                     unspecified
36218                                                                    based on weight (50-100 lbs)
36220                                                                    based on weight (51-100 lbs)
36221                                                                                 based on weight
36222                                                                                    small amount
36223                                                                                  1 pack/package
36225                                                                    based on weight (51-100 lbs)
36227                                                                                 based on weight
36228                                                                                 based on weight
36229                                                                    based on weight (51-100 lbs)
36231                                                                                   1 bottle/vial
36232                                                                                 based on weight
36233                                                                                 based on weight
36235                                                                                    small amount
36237                                                                                     unspecified
36238                                                                                     unspecified
36240                                                                                         23, 228
36254                                                                                     unspecified
36256                                                                                     unspecified
36264                                                                  based on weight (50.1-100 lbs)
36268                                                                                     unspecified
36271                                                              27 milbemycin oxime, 1620 spinosad
36272                                                             13.5 milbemycin oxime, 810 spinosad
36273                                                                     based on weight (40-60 lbs)
36275                                                                    based on weight (80-135 lbs)
36276                                                                                     as directed
36280                                                                    based on weight (85-130 lbs)
36283                                                                                 based on weight
36288                                                                                 based on weight
36293                                                                                     as directed
36294                                                                                     as directed
36295                                                                                     as directed
36296                                                                                 based on weight
36297                                                                                 based on weight
36298                                                                                 based on weight
36299                                                                                 based on weight
36300                                                                                 based on weight
36301                                                                                 based on weight
36302                                                                                 based on weight
36303                                                                                 based on weight
36304                                                                                 based on weight
36305                                                                                 based on weight
36306                                                                                     unspecified
36307                                                                                     unspecified
36308                                                                                     unspecified
36309                                                                                     unspecified
36310                                                                                     unspecified
36311                                                                                     unspecified
36322                                                                                     as directed
36323                                                                                     as directed
36324                                                                                          varies
36325                                                                                 based on weight
36326                                                                                 based on weight
36327                                                                                 based on weight
36328                                                                                 based on weight
36329                                                                                 based on weight
36330                                                                                 based on weight
36331                                                                                 based on weight
36332                                                                                 based on weight
36333                                                                                 based on weight
36334                                                                                 based on weight
36335                                                                                     unspecified
36336                                                                                     unspecified
36337                                                                                     unspecified
36338                                                                                     unspecified
36339                                                                                     unspecified
36340                                                                                     unspecified
36357                                                                           1 tablet/pill/capsule
36358                                                                                     as directed
36359                                                                                          varies
36360                                                                                          varies
36361                                                                                 based on weight
36362                                                                                 based on weight
36363                                                                                 based on weight
36364                                                                                 based on weight
36365                                                                                 based on weight
36366                                                                                 based on weight
36367                                                                                 based on weight
36368                                                                                 based on weight
36369                                                                                 based on weight
36370                                                                                 based on weight
36371                                                                                     unspecified
36372                                                                                     unspecified
36373                                                                                     unspecified
36374                                                                                     unspecified
36377                                                                                     as directed
36378                                                                                     as directed
36379                                                                                          varies
36380                                                                                 based on weight
36381                                                                                 based on weight
36382                                                                                 based on weight
36383                                                                                 based on weight
36384                                                                                 based on weight
36385                                                                                 based on weight
36397                                                                           1 tablet/pill/capsule
36398                                                                                 based on weight
36399                                                                                 based on weight
36403                                                                                 based on weight
36404                                                                                 based on weight
36405                                                                    based on weight (51-100 lbs)
36406                                                                                 based on weight
36410                                                                                     unspecified
36427                                                                       based on weight (55+ lbs)
36429                                                                                 based on weight
36430                                                                                     as directed
36438                                                                                     as directed
36439                                                                    based on weight (51-100 lbs)
36440                                                                       based on weight (40+ lbs)
36443                                                                                 based on weight
36444                                                                                 based on weight
36448                                                                                     as directed
36451                                                                                     unspecified
36460                                                                           1 tablet/pill/capsule
36461                                                                           1 tablet/pill/capsule
36464                                                                                     as directed
36474                                                                                     unspecified
36491                                                            272 ivermectin, 227 pyrantel pamoate
36497                                                            272 ivermectin, 227 pyrantel pamoate
36513                                                                                     unspecified
36533                                                                                    small amount
36535                                                                                        wipe/pad
36559                                                                    based on weight (51-100 lbs)
36560                                                                     based on weight (45-88 lbs)
36562                                                                    based on weight (51-100 lbs)
36568                                                                    based on weight (51-100 lbs)
36571                                                                                 0.25 inch strip
36574                                                                                     unspecified
36595                                                                    based on weight (50-100 lbs)
36600                                                                                    small amount
36601                                                                    based on weight (50-100 lbs)
36602                                                                                     unspecified
36605                                                                    based on weight (50-100 lbs)
36607                                                                    based on weight (50-100 lbs)
36608                                                                    based on weight (50-100 lbs)
36616                                                                    based on weight (50-100 lbs)
36624                                                                                     application
36626                                                                                    small amount
36630                                                                    based on weight (50-100 lbs)
36632                                                                    based on weight (50-100 lbs)
36635                                                                    based on weight (50-100 lbs)
36657                                                            27mg milbemycin oxime, 1620 spinosad
36670                                                                       based on weight (<60 lbs)
36698                                                                    based on weight (51-100 lbs)
36699                                                                    based on weight (51-100 lbs)
36705                                                                                     0.284, 0.57
36708                                                            272 ivermectin, 227 pyrantel pamoate
36709                                                                                     unspecified
36735                                                                                     unspecified
36751                                                                    based on weight (51-100 lbs)
36752                                                                     based on weight (45-88 lbs)
36753                                                                        based on weight (75 lbs)
36772                                                                                     application
36778                                                                           1 tablet/pill/capsule
36816                                                                                        1.5 cups
36817                                                                    based on weight (51-100 lbs)
36818                                                                                     application
36819                                                                                     application
36824                                                                    based on weight (51-100 lbs)
36833                                        based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                 0.25 inch strip
36835                                                                                        wipe/pad
36840                                                                    based on weight (51-100 lbs)
36842                                                                                    small amount
36846                                                                    based on weight (51-100 lbs)
36847                                                                       based on weight (50+ lbs)
36848                                                                                 based on weight
36849                                                                    based on weight (60-120 lbs)
36850                                                                    based on weight (51-100 lbs)
36851                                                                                    small amount
36853                                                                                     unspecified
36855                                                                                     unspecified
36859                                                                                     unspecified
36875                                                                 2.5 tablets/pills/capsules - 10
36876                                                                 1.5 tablets/pills/capsules - 50
36877                                                                                        0.5, 227
36878                                                                     based on weight (56-95 lbs)
36880                                                                 2.5 tablets/pills/capsules - 10
36881                                                                    based on weight (51-100 lbs)
36882                                                                  2 tablets/pills/capsules - 150
36883                                                                  based on weight (60.1-121 lbs)
36892                                                                                    small amount
36893                                                                  based on weight (60.1-121 lbs)
36894                                                                    based on weight (51-100 lbs)
36900                                                                    based on weight (51-100 lbs)
36901                                                                  based on weight (60.1-121 lbs)
36911                                                                    based on weight (51-100 lbs)
36919                                                                                         23, 460
36920                                                                     based on weight (45-88 lbs)
36921                                                                                     application
36925                                                                                         23, 460
36945                                                                                    small amount
36969                                                                    based on weight (51-100 lbs)
36970                                                                     based on weight (56-95 lbs)
36982                                                                     based on weight (21-55 lbs)
36983                                                                    based on weight (51-100 lbs)
36984                                                                        based on weight (60 lbs)
36985                                                                    based on weight (51-100 lbs)
36994                                                                                     unspecified
37007                                                                                         23, 460
37015                                                                    based on weight (50-100 lbs)
37017                                                     2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                    based on weight (50-100 lbs)
37019                                                                     based on weight (45-88 lbs)
37020                                                                                0.125 inch strip
37021                                                                    based on weight (50-100 lbs)
37036                                                                                     application
37038                                                                                       125 , 500
37046                                                                                     unspecified
37054                                                                    based on weight (50-100 lbs)
37055                                                                    based on weight (51-100 lbs)
37056                                                                                     unspecified
37057                                                            136 ivermectin, 114 pyrantel pamoate
37061                                                                       based on weight (18+ lbs)
37063                                                               4.5% flumethrin, 10% imidacloprid
37069                                                            272 ivermectin, 227 pyrantel pamoate
37070                                                                                     unspecified
37071                                                                                     unspecified
37073                                                                                    small amount
37074                                                                                        23 , 460
37075                                                                                    small amount
37077                                                                       based on weight (55+ lbs)
37078                                                                    based on weight (51-100 lbs)
37087                                                                    based on weight (51-100 lbs)
37088                                                                    based on weight (51-100 lbs)
37098                                                                       based on weight (55+ lbs)
37099                                                                    based on weight (51-100 lbs)
37104                                                                                             1-2
37116                                                                                 based on weight
37117                                                                                     unspecified
37135                                                                                 moderate amount
37157                                                                                     unspecified
37164                                                                                    small amount
37165                                                                    based on weight (50-100 lbs)
37168                                                                                     application
37169                                                                                     application
37179                                                                           1 tablet/pill/capsule
37193                                                                    based on weight (51-100 lbs)
37194                                                                                          collar
37195                                                                     based on weight (26-50 lbs)
37197                                                                       based on weight (60+ lbs)
37200                                                                    based on weight (51-100 lbs)
37201                                                                    based on weight (60-121 lbs)
37202                                                                       based on weight (60+ lbs)
37219                                                                                     unspecified
37221                                                                                     unspecified
37259                                                                             tablet/pill/capsule
37260                                                                                                
37262                                                                       based on weight (55+ lbs)
37266                                                                    based on weight (50-100 lbs)
37267                                                                     based on weight (55-95 lbs)
37270                                                                     based on weight (56-95 lbs)
37271                                                                       based on weight (55+ lbs)
37272                                                                        3 tablets/pills/capsules
37277                                                                                     unspecified
37278                                                                                     unspecified
37279                                                                                     unspecified
37302                                                            272 ivermectin, 227 pyrantel pamoate
37303                                                                                    small amount
37309                                                                                    small amount
37316                                                                    based on weight (50-100 lbs)
37324                                                                           1 tablet/pill/capsule
37325                                                                                     application
37326                                                                                     unspecified
37332                                                                                     unspecified
37337                                                                                     unspecified
37344                                                                                     unspecified
37349                                                                    based on weight (51-100 lbs)
37359                                                                                         23, 228
37373                                                                    based on weight (51-100 lbs)
37374                                                                  based on weight (60.1-121 lbs)
37375                                                                    based on weight (51-100 lbs)
37376                                                                  based on weight (60.1-120 lbs)
37377                                                                           1 tablet/pill/capsule
37385                                                                    based on weight (51-100 lbs)
37386                                                                  based on weight (60.1-121 lbs)
37387                                                                                 based on weight
37392                                                                                     unspecified
37396                                                                                     unspecified
37397                                                                     based on weight (44-88 lbs)
37434                                                                                     unspecified
37435                                                                                     unspecified
37439                                                                    based on weight (51-100 lbs)
37446                                                                    based on weight (51-100 lbs)
37449                                                                                 moderate amount
37451                                                                                     application
37454                                                                                 moderate amount
37457                                                                                     as directed
37463                                                                                     unspecified
37464                                                                                                
37465                                                                                                
37467                                                                                 moderate amount
37468                                                                           1 tablet/pill/capsule
37469                                                                           1 tablet/pill/capsule
37477                                                                                 moderate amount
37478                                                                                 moderate amount
37485                                                                    based on weight (51-100 lbs)
37491                                                                                                
37493                                                                    based on weight (51-100 lbs)
37495                                                                                                
37510                                                                                     unspecified
37526                                                                                         100-200
37527                                                                                 0.25 inch strip
37533                                                                                    small amount
37536                                                                           1:10 part water ratio
37540                                                                    based on weight (51-100 lbs)
37545                                                                    based on weight (51-100 lbs)
37546                                                                     based on weight (44-88 lbs)
37547                                                                    based on weight (60-120 lbs)
37552                                                                    based on weight (51-100 lbs)
37568                                                                                         23, 460
37569                                                                       based on weight (55+ lbs)
37571                                                                                         23, 460
37576                                                                                    small amount
37577                                                                                         23, 460
37578                                                                                     0.135 fl oz
37579                                                                                     unspecified
37580                                                                                     unspecified
37584                                                                                     unspecified
37585                                                                                     unspecified
37586                                                                                     unspecified
37597                                                                                     unspecified
37598                                                                                     unspecified
37601                                                                    based on weight (51-100 lbs)
37602                                                                    based on weight (60-121 lbs)
37603                                                                    based on weight (60-121 lbs)
37608                                                                                     unspecified
37621                                                                           1 tablet/pill/capsule
37622                                                                           1 tablet/pill/capsule
37624                                                                    based on weight (50-100 lbs)
37627                                                                                 based on weight
37628                                                                                 based on weight
37629                                                                    based on weight (50-100 lbs)
37630                                                                    based on weight (50-100 lbs)
37639                                                                                     unspecified
37648                                                                     based on weight (56-95 lbs)
37651                                                                                          collar
37655                                                                                          collar
37657                                                                                          collar
37662                                                                                 based on weight
37664                                                                                 based on weight
37669                                                                                     unspecified
37670                                                                                     unspecified
37675                                                                                     unspecified
37691                                                                                     application
37696                                                                                 1.11, 1.5, 15.1
37697                                                                         0.5 tablet/pill/capsule
37698                                                                        2 tablets/pills/capsules
37704                                                                    based on weight (51-100 lbs)
37705                                                                                 based on weight
37709                                                                        2 tablets/pills/capsules
37710                                                                             tablet/pill/capsule
37712                                                                                     unspecified
37713                                                                                     unspecified
37714                                                                                     unspecified
37717                                                                                     unspecified
37718                                                                                     unspecified
37731                                                                    based on weight (51-100 lbs)
37738                                                                    based on weight (51-100 lbs)
37739                                                                    based on weight (51-100 lbs)
37740                                                                    based on weight (89-132 lbs)
37742                                                                    based on weight (51-100 lbs)
37771                                                                                                
37785                                                                    based on weight (60-121 lbs)
37786                                                                    based on weight (50-100 lbs)
37797                                                                    based on weight (50-100 lbs)
37798                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
37805                                                                     based on weight (26-50 lbs)
37806                                                                    based on weight (60-120 lbs)
37809                                                                                        inhalant
37816                                                                                     unspecified
37817                                                                                     unspecified
37820                                                                                     unspecified
37821                                                                                     unspecified
37822                                                                                     unspecified
37834                                                                                 based on weight
37835                                                                                 based on weight
37837                                                                                 based on weight
37838                                                                    based on weight (50-100 lbs)
37839                                                                     based on weight (44-88 lbs)
37845                                                                                 based on weight
37846                                                                                 based on weight
37847                                                                                 based on weight
37848                                                                                 based on weight
37849                                                                    based on weight (50-100 lbs)
37850                                                                     based on weight (44-88 lbs)
37851                                                                     based on weight (44-88 lbs)
37852                                                                       based on weight (50+ lbs)
37855                                                                    based on weight (51-100 lbs)
37858                                                                    based on weight (51-100 lbs)
37865                                                                      based on weight (0-22 lbs)
37885                                                                                 based on weight
37894                                                                                 based on weight
37895                                                                     based on weight (44-88 lbs)
37907                                                              27 milbemycin oxime, 1620 spinosad
37916                                                                    based on weight (60-120 lbs)
37920                                                                                 based on weight
37929                                                                                             3-5
37930                                                                                     application
37933                                                                           1 tablet/pill/capsule
37934                                                                           1 tablet/pill/capsule
37935                                                                                     application
37936                                                                           1 tablet/pill/capsule
37937                                                                                             3-5
37942                                                                                    small amount
37944                                                                                     1000 to 250
37976                                                                    based on weight (51-100 lbs)
37977                                                                     based on weight (45-88 lbs)
37978                                                                    based on weight (51-100 lbs)
37979                                                                                     unspecified
37980                                                                                     unspecified
37984                                                                    based on weight (51-100 lbs)
37989                                                                    based on weight (51-100 lbs)
37990                                                                                    small amount
37992                                                                    based on weight (51-100 lbs)
37993                                                                     based on weight (44-88 lbs)
38018                                                                                       13.5, 810
38036                                                                    based on weight (51-100 lbs)
38041                                                                                 based on weight
38046                                                                    based on weight (50-100 lbs)
38048                                                                                       62.5, 375
38050                                                                                  12.5-25, 25-50
38051                                                                    based on weight (51-100 lbs)
38052                                                                                     unspecified
38056                                                                                     unspecified
38070                                                                    based on weight (51-100 lbs)
38071                                                                       based on weight (55+ lbs)
38072                                                                                     unspecified
38074                                                                                     unspecified
38075                                                                                     unspecified
38102                                                                                           5, 50
38123                                                                    based on weight (51-100 lbs)
38126                                                                    based on weight (51-100 lbs)
38132                                                                                     unspecified
38134                                                                                     unspecified
38135                                                                                     unspecified
38136                                                                                     unspecified
38141                                                                  based on weight (51.1-100 lbs)
38142                                                                   based on weight (24.1-60 lbs)
38151                                                                   based on weight (24.1-60 lbs)
38152                                                                           1 tablet/pill/capsule
38156                                                                   based on weight (24.1-60 lbs)
38165                                                                    based on weight (51-100 lbs)
38166                                                                    based on weight (60-120 lbs)
38177                                                                                     unspecified
38179                                                                                     unspecified
38181                                                                                     unspecified
38182                                                                                     unspecified
38184                                                                                     unspecified
38185                                                                                     unspecified
38193                                                                     based on weight (44-88 lbs)
38204                                                                                           scoop
38211                                                                                    small amount
38216                                                                           1 tablet/pill/capsule
38217                                                                    based on weight (50-100 lbs)
38219                                                                                270 dha, 425 epa
38240                                                                     based on weight (22-55 lbs)
38256                                                                    based on weight (50-100 lbs)
38257                                                           23 milbemycin oxime, 228 praziquantel
38259                                                           23 milbemycin oxime, 228 praziquantel
38262                                                                      based on weight (60.1 lbs)
38268                                                                                     unspecified
38273                                                                                 moderate amount
38284                                                            272 ivermectin, 227 pyrantel pamoate
38287                                                                                     as directed
38288                                                                    based on weight (50-100 lbs)
38289                                                                     based on weight (44-88 lbs)
38293                                                                                         23, 460
38294                                                                                             3-4
38301                                                                       based on weight (55+ lbs)
38305                                                                       based on weight (55+ lbs)
38306                                                                    based on weight (51-100 lbs)
38324                                                                                     unspecified
38326                                                                                     unspecified
38330                                                                    based on weight (51-100 lbs)
38339                                                                     based on weight (44-88 lbs)
38342                                                                    based on weight (51-100 lbs)
38351                                                                    based on weight (88-132 lbs)
38352                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                    based on weight (51-100 lbs)
38361                                                                                 0.25 inch strip
38365                                                                                     unspecified
38366                                                                                     unspecified
38367                                                                                     unspecified
38369                                                                                 based on weight
38372                                                                                                
38373                                                                                     unspecified
38377                                                                                     unspecified
38378                                                                                     unspecified
38386                                                                                     unspecified
38387                                                                                     unspecified
38388                                                                                     unspecified
38396                                                                    based on weight (50-100 lbs)
38397                                                                    based on weight (60-121 lbs)
38399                                                                    based on weight (51-100 lbs)
38406                                                                                     unspecified
38420                                                                    based on weight (51-100 lbs)
38422                                                                    based on weight (51-100 lbs)
38423                                                                    based on weight (51-100 lbs)
38427                                                                                     unspecified
38431                                                                                    small amount
38436                                                                                     as directed
38438                                                                    based on weight (50-100 lbs)
38439                                                                    based on weight (88-123 lbs)
38442                                                                                    small amount
38461                                                                                 based on weight
38462                                                                                 based on weight
38464                                                                    based on weight (50-100 lbs)
38465                                                                     based on weight (56-95 lbs)
38466                                                                    based on weight (88-132 lbs)
38470                                                                        based on weight (92 lbs)
38471                                                                        based on weight (92 lbs)
38472                                                                  based on weight (50.1-100 lbs)
38473                                                                  based on weight (88.1-132 lbs)
38499                                                                                         10, 100
38504                                                                                 based on weight
38505                                                                                 based on weight
38507                                                                    based on weight (50-100 lbs)
38508                                                                     based on weight (56-95 lbs)
38509                                                                        based on weight (86 lbs)
38510                                                                        based on weight (86 lbs)
38511                                                                  based on weight (50.1-100 lbs)
38512                                                                  based on weight (88.1-132 lbs)
38522                                                                                     unspecified
38527                                                                    based on weight (50-100 lbs)
38528                                                                     based on weight (45-88 lbs)
38529                                                                                     bottle/vial
38531                                                                                     bottle/vial
38532                                                                           1 tablet/pill/capsule
38533                                                                                     unspecified
38534                                                                        2 tablets/pills/capsules
38536                                                                                     as directed
38544                                                                                     unspecified
38550                                                                                     unspecified
38551                                                                                     unspecified
38557                                                                                     unspecified
38567                                                                    based on weight (50-100 lbs)
38568                                                                    based on weight (50-100 lbs)
38569                                                                                 based on weight
38570                                                                                     unspecified
38588                                                                                 moderate amount
38602                                                                    based on weight (51-100 lbs)
38605                                                                                    small amount
38606                                                                                         23, 460
38607                                                                                            bath
38610                                                                    based on weight (51-100 lbs)
38611                                                                                             1-2
38618                                                                                 moderate amount
38626                                                                    based on weight (51-100 lbs)
38630                                                                                     unspecified
38636                                                                    based on weight (51-100 lbs)
38637                                                                     based on weight (44-88 lbs)
38643                                                                    based on weight (51-100 lbs)
38647                                                                                            2, 4
38655                                                                                     unspecified
38656                                                                     based on weight (44-88 lbs)
38665                                                                                       100, 1000
38691                                                                                     unspecified
38722                                                                                    small amount
38723                                                                                        wipe/pad
38754                                                                                     unspecified
38772                                                                                    small amount
38773                                                                           1 tablet/pill/capsule
38775                                                                                    small amount
38779                                                                     based on weight (44-88 lbs)
38780                                                                                     unspecified
38787                                                                                     unspecified
38789                                                                                     unspecified
38796                                                                                     unspecified
38802                                                                                     unspecified
38809                                                                                     unspecified
38816                                                                                  1 pack/package
38820                                                                    based on weight (51-100 lbs)
38821                                                                     based on weight (44-88 lbs)
38828                                                                                     unspecified
38839                                                                                     unspecified
38841                                                                                     unspecified
38843                                                                                     unspecified
38845                                                                                     unspecified
38847                                                                                     unspecified
38850                                                                                     unspecified
38851                                                                                     unspecified
38854                                                                                     unspecified
38855                                                                                     unspecified
38861                                                                                     unspecified
38864                                                                                     unspecified
38865                                                                                     unspecified
38868                                                                                     unspecified
38871                                                                                     unspecified
38890                                                                    based on weight (51-100 lbs)
38891                                                                     based on weight (24-60 lbs)
38892                                                                    based on weight (51-100 lbs)
38896                                                                    based on weight (51-100 lbs)
38902                                                                                 based on weight
38924                                                                                         10, 100
38925                                                                     based on weight (21-55 lbs)
38926                                                                    based on weight (50-100 lbs)
38930                                                                    based on weight (50-100 lbs)
38931                                                                       based on weight (18+ lbs)
38940                                                                  based on weight (60.1-121 lbs)
38941                                                                  based on weight (60.1-121 lbs)
38945                                                                       based on weight (60+ lbs)
38946                                                                  based on weight (50.1-100 lbs)
38950                                                                  based on weight (50.1-100 lbs)
38951                                                                  based on weight (60.1-121 lbs)
38952                                                                                 based on weight
38956                                                                                        wipe/pad
38963                                                                  based on weight (50.1-100 lbs)
38964                                                                   based on weight (44.1-88 lbs)
38970                                                                                     unspecified
38971                                                                                     unspecified
38974                                                                                     unspecified
38976                                                                                     unspecified
38997                                                                                     unspecified
39004                                                                     based on weight (41-88 lbs)
39005                                                                    based on weight (51-100 lbs)
39006                                                                                             5-7
39035                                                                                     unspecified
39073                                                                           1 tablet/pill/capsule
39083                                                                                    23, 228, 460
39099                                                                    based on weight (51-100 lbs)
39117                                                                                        27, 1620
39120                                                            272 ivermectin, 227 pyrantel pamoate
39121                                                                    based on weight (51-100 lbs)
39122                                                                       based on weight (55+ lbs)
39123                                                                    based on weight (51-100 lbs)
39125                                                                                          1.25 l
39127                                                                                     unspecified
39128                                                                                     unspecified
39158                                                                                         23, 228
39165                                                                                     unspecified
39167                                                                                     unspecified
39171                                                                                            8 oz
39176                                                                    based on weight (51-100 lbs)
39181                                                                                            bath
39182                                                                                                
39198                                                                                     unspecified
39201                                                                                                
39202                                                                                    small amount
39207                                                                                     unspecified
39209                                                                     based on weight (44-88 lbs)
39210                                                                     based on weight (45-88 lbs)
39211                                                                  based on weight (50.1-100 lbs)
39212                                                                    based on weight (51-100 lbs)
39218                                                                     based on weight (45-88 lbs)
39258                                                                           1 tablet/pill/capsule
39259                                                                                     unspecified
39260                                                                   based on weight (44.1-88 lbs)
39262                                                                                        227, 277
39273                             based on weight (50-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
39316                                                                                 based on weight
39325                                                                  based on weight (50.1-100 lbs)
39326                                                                     based on weight (45-88 lbs)
39329                                                                  based on weight (50.1-100 lbs)
39330                                                                   based on weight (44.1-88 lbs)
39331                                                                  based on weight (50.1-100 lbs)
39332                                                                     based on weight (44-88 lbs)
39338                                                                    based on weight (51-100 lbs)
39339                                                                                      continuous
39340                                                                    based on weight (51-100 lbs)
39388                                                                    based on weight (51-100 lbs)
39392                                                                                     unspecified
39423                                                                                     unspecified
39425                                                                                     unspecified
39433                                                                                     unspecified
39434                                                                                    small amount
39435                                                                                 based on weight
39438                                                                    based on weight (51-100 lbs)
39440                                                                    based on weight (51-100 lbs)
39443                                                                    based on weight (51-100 lbs)
39444                                                                    based on weight (51-100 lbs)
39445                                                                     based on weight (44-88 lbs)
39446                                                                     based on weight (44-88 lbs)
39447                                                                    based on weight (51-100 lbs)
39450                                                                     based on weight (44-88 lbs)
39451                                                                    based on weight (51-100 lbs)
39453                                                                                     unspecified
39486                                                                       based on weight (55+ lbs)
39495                                                                     based on weight (45-88 lbs)
39496                                                                    based on weight (50-100 lbs)
39511                                                                     based on weight (44-88 lbs)
39513                                                                                    small amount
39516                                                                                     unspecified
39519                                                                                     unspecified
39525                                                                   based on weight (40.1-85 lbs)
39526                                                                  based on weight (50.1-100 lbs)
39528                                                                                     application
39531                                                                      1.5 tablets/pills/capsules
39534                                                                                     application
39536                                                                                    pack/package
39539                                                                                     application
39541                                                                                                
39542                                                                                     application
39543                                                                                     application
39546                                                                     based on weight (44-88 lbs)
39548                                                                     based on weight (44-88 lbs)
39566                                                                                     unspecified
39567                                                                                     unspecified
39573                                                                                     unspecified
39581                                                                    based on weight (51-100 lbs)
39582                                                                    based on weight (51-100 lbs)
39586                                                                    based on weight (51-100 lbs)
39591                                                                                     unspecified
39599                                                                                     unspecified
39607                                                                                         10, 100
39609                                                                    based on weight (50-100 lbs)
39617                                                                                     as directed
39618                                                                                     unspecified
39635                                                                    based on weight (60-120 lbs)
39637                                                              27 milbemycin oxime, 1620 spinosad
39639                                                                                     unspecified
39651                                                                                     unspecified
39705                                                                           1 tablet/pill/capsule
39706                                                                           1 tablet/pill/capsule
39707                                                                           1 tablet/pill/capsule
39714                                                                                     unspecified
39715                                                                                     unspecified
39737                                                                                     unspecified
39744                                                                           1 tablet/pill/capsule
39754                                                                    based on weight (51-100 lbs)
39756                                                                                     application
39759                                                              460 lufenuron, 23 milbemycin oxime
39760                                                              100000 nystatin, 2500 thiostrepton
39763                                                              460 lufenuron, 23 milbemycin oxime
39764                                                                    based on weight (51-100 lbs)
39776                                                                                     unspecified
39777                                                                                     unspecified
39778                                                                                     unspecified
39786                                                                                                
39787                                                                                                
39788                                                                                                
39795                                                                    based on weight (60-120 lbs)
39796                                                                    based on weight (50-100 lbs)
39833                                                                                         23, 460
39849                                                                                         23, 460
39856                                                                                         23, 460
39860                                                            272 ivermectin, 227 pyrantel pamoate
39871                                                            272 ivermectin, 227 pyrantel pamoate
39875                                                            272 ivermectin, 227 pyrantel pamoate
39877                                                            272 ivermectin, 227 pyrantel pamoate
39881                                                                        based on weight (60 lbs)
39909                                                                     based on weight (41-60 lbs)
39919                                                                                 0.25 inch strip
39948                                                                           1 tablet/pill/capsule
39949                                                                           1 tablet/pill/capsule
39958                                                                                     unspecified
39973                                                                    based on weight (50-100 lbs)
39974                                                                                    small amount
39975                                                                                    small amount
39980                                                                                          powder
39981                                                                                        wipe/pad
39982                                                                                     application
39987                                                                                     unspecified
39988                                                                                     unspecified
40013                                                                      based on weight (0-10 lbs)
40021                                                                                      0.14 fl oz
40023                                                                           1 tablet/pill/capsule
40038                                                                                        250, 500
40043                                                                       based on weight (95+ lbs)
40052                                                                           1 tablet/pill/capsule
40092                                                                     based on weight (45-88 lbs)
40093                                                                    based on weight (51-100 lbs)
40102                                                                                     unspecified
40108                                                                                     unspecified
40109                                                                                     unspecified
40115                                                                                  1 pack/package
40117                                                                    based on weight (51-100 lbs)
40121                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
40123                                                                                     unspecified
40124                                                                    based on weight (51-100 lbs)
40125                                                                                     unspecified
40133                                                                                    23, 228, 460
40134                                                                                    23, 228, 460
40138                                                                        2 tablets/pills/capsules
40141                                                                                     unspecified
40142                                                            272 ivermectin, 227 pyrantel pamoate
40143                                                                                                
40144                                                                    based on weight (51-100 lbs)
40149                                                                    based on weight (51-100 lbs)
40154                                                                    based on weight (51-100 lbs)
40164                                                                                 moderate amount
40165                                                                    based on weight (51-100 lbs)
40180                                                                    based on weight (51-100 lbs)
40186                                                                    based on weight (51-100 lbs)
40194                                                            272 ivermectin, 227 pyrantel pamoate
40196                                                                                     unspecified
40206                                                                   based on weight (40.1-60 lbs)
40209                                                                                     unspecified
40214                                                                                    small amount
40216                                                                    based on weight (50-100 lbs)
40217                                                                     based on weight (24-60 lbs)
40218                                                                     based on weight (44-88 lbs)
40221                                                                    based on weight (50-100 lbs)
40222                                                                     based on weight (24-60 lbs)
40223                                                                                 based on weight
40224                                                                                 based on weight
40244                                                                     based on weight (45-88 lbs)
40290                                                            272 ivermectin, 227 pyrantel pamoate
40296                                                                                     unspecified
40297                                                                                     unspecified
40298                                                                                     unspecified
40299                                                                                     unspecified
40302                                                                                     unspecified
40312                                                                        based on weight (70 lbs)
40317                                                                                    small amount
40331                                                                                         23, 228
40343                                                                                 moderate amount
40390                                                                    based on weight (51-100 lbs)
40391                                                                    based on weight (50-100 lbs)
40392                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                     unspecified
40403                                                                                     as directed
40406                                                                  1.5 homatropine, 5 hydrocodone
40407                                                                    based on weight (51-100 lbs)
40417                                                                  based on weight (60.1-121 lbs)
40418                                                                    based on weight (51-100 lbs)
40422                                                                  based on weight (60.1-121 lbs)
40425                                                                           1 tablet/pill/capsule
40446                                                                           1 tablet/pill/capsule
40451                                                                                 based on weight
40454                                                                                     unspecified
40464                                                                                          10/100
40468                                                                    based on weight (60-120 lbs)
40472                                                                                     unspecified
40474                                                                                     unspecified
40483                                                                    based on weight (50-100 lbs)
40484                                                                    based on weight (60-120 lbs)
40486                                                                    based on weight (50-100 lbs)
40487                                                                    based on weight (60-120 lbs)
40488                                                                        based on weight (55 lbs)
40489                                                                       based on weight (55+ lbs)
40494                                                                                     unspecified
40503                                                                    based on weight (50-100 lbs)
40504                                                                     based on weight (45-89 lbs)
40508                                                                     based on weight (40-80 lbs)
40511                                                                        5 tablets/pills/capsules
40519                                                                    based on weight (51-100 lbs)
40521                                                                    based on weight (50-100 lbs)
40535                                                                                        800, 900
40541                                                                    based on weight (51-100 lbs)
40568                                                                    based on weight (51-100 lbs)
40571                                                                                             1-2
40572                                                                      3.5 tablets/pills/capsules
40573                                                                    based on weight (51-100 lbs)
40574                                                                   based on weight (24.1-60 lbs)
40579                                                                                 based on weight
40580                                                                                     unspecified
40581                                                                                         80, 400
40582                                                                                 0.25 inch strip
40583                                                                                     unspecified
40595                                                                                                
40600                                                                    based on weight (51-100 lbs)
40601                                                                     based on weight (56-95 lbs)
40603                                                                                     concentrate
40604                                                                                  1 pack/package
40606                                                                                    small amount
40607                                                                                    small amount
40611                                                                    based on weight (51-100 lbs)
40615                                                                                      10, 40, 40
40616                                                                     based on weight (56-95 lbs)
40617                                                                    based on weight (51-100 lbs)
40618                                                                                     unspecified
40619                                                                                     unspecified
40620                                                                                     unspecified
40634                                                                                 0.25 inch strip
40636                                                                                    pack/package
40637                                                                                    pack/package
40644                                                                                     unspecified
40653                                                                     based on weight (45-88 lbs)
40654                                                                    based on weight (51-100 lbs)
40655                                                                    based on weight (50-100 lbs)
40656                                                                    based on weight (50-100 lbs)
40684                                                                    based on weight (51-100 lbs)
40686                                                                    based on weight (51-100 lbs)
40687                                                                                 based on weight
40688                                                                                        wipe/pad
40689                                                                                     application
40690                                                                    based on weight (51-100 lbs)
40691                                                                                 based on weight
40693                                                                                        tapering
40695                                                                           1 tablet/pill/capsule
40696                                                                           1 tablet/pill/capsule
40699                                                                                     unspecified
40700                                                                    based on weight (51-100 lbs)
40701                                                                     based on weight (44-88 lbs)
40718                                                                                            8 au
40719                                                                    based on weight (51-100 lbs)
40721                                                                                 based on weight
40722                                                                                     application
40723                                                                                             7-9
40724                                                                                            8-10
40725                                       based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                     unspecified
40727                                                                                     unspecified
40744                                                                    based on weight (51-100 lbs)
40745                                                                                                
40747                                                                                           6, 15
40748                                                                                        wipe/pad
40749                                                                   based on weight (44.1-88 lbs)
40750                                                                    based on weight (51-100 lbs)
40751                                                                    based on weight (51-100 lbs)
40754                                                                    based on weight (51-100 lbs)
40755                                                                   based on weight (44.1-88 lbs)
40756                                                                                 0.25 inch strip
40758                                                                                             3-4
40760                                                                    based on weight (51-100 lbs)
40775                                                                    based on weight (51-100 lbs)
40776                                                                    based on weight (51-100 lbs)
40781                                                                    based on weight (50-100 lbs)
40783                                                                    based on weight (50-100 lbs)
40794                                                                                  0.5 inch strip
40796                                                                    based on weight (60-120 lbs)
40799                                                                    based on weight (50-100 lbs)
40800                                                                    based on weight (50-100 lbs)
40801                                                                     based on weight (44-88 lbs)
40810                                                                                     unspecified
40823                                                                    based on weight (51-100 lbs)
40824                                                                                             2-3
40825                                                                     based on weight (56-95 lbs)
40827                                                                     based on weight (44-88 lbs)
40828                                                                    based on weight (51-100 lbs)
40829                                                                     based on weight (44-88 lbs)
40833                                                                                     unspecified
40834                                                                                        epa, dha
40838                                                                                     unspecified
40839                                                                                     unspecified
40840                                                                                     unspecified
40843                                                                                     unspecified
40846                                                                                 based on weight
40848                                                                                 0.25 inch strip
40866                                                                                     unspecified
40868                                                                                 based on weight
40870                                                                                 based on weight
40873                                                                           1 tablet/pill/capsule
40875                                                                             tablet/pill/capsule
40879                                                                    based on weight (51-100 lbs)
40895                                                                                     unspecified
40897                                                                    based on weight (51-100 lbs)
40899                                                                                         57, 460
40900                                                                                         23, 460
40902                                                                                         23, 460
40905                                                                                         23, 460
40919                                                                                     unspecified
40943                                                                                     unspecified
40958                                                                                     unspecified
40959                                                                                     unspecified
40960                                                                                     unspecified
40961                                                                                     unspecified
40962                                                                                 0.25 inch strip
40965                                                                    based on weight (51-100 lbs)
40966                                                                    based on weight (60-121 lbs)
40967                                                                    based on weight (50-100 lbs)
40968                                                                    based on weight (60-121 lbs)
40969                                                                                    small amount
40970                                                                                    small amount
40971                                                                    based on weight (51-100 lbs)
40972                                                                    based on weight (60-120 lbs)
40974                                                                    based on weight (51-100 lbs)
40984                                                                                     unspecified
40987                                                                                     unspecified
40990                                                                                     unspecified
40992                                                                      based on weight (0-25 lbs)
40993                                                                     based on weight (11-20 lbs)
40994                                                                                     as directed
40997                                                                    based on weight (51-100 lbs)
40998                                                                     based on weight (56-95 lbs)
41003                                                                                    small amount
41004                                                                    based on weight (51-100 lbs)
41005                                                                     based on weight (56-95 lbs)
41006                                                                                            8-10
41007                                                                                    small amount
41009                                                                 1.5 tablets/pills/capsules - 68
41010                                                                     based on weight (56-95 lbs)
41011                                                                    based on weight (51-100 lbs)
41014                                                                                    small amount
41015                                                                  based on weight (50.1-100 lbs)
41016                                                                     based on weight (56-95 lbs)
41018                                                                                 based on weight
41020                                                                                     unspecified
41021                                                                             tablet/pill/capsule
41022                                                                                     unspecified
41023                                                                                     unspecified
41024                                                                                     unspecified
41025                                                                                  1.4 ml, 2.8 ml
41057                                                                                     unspecified
41068                                                                     based on weight (21-55 lbs)
41069                                                                     based on weight (26-50 lbs)
41084                                                                        based on weight (70 lbs)
41087                                                                    based on weight (51-100 lbs)
41088                                                                     based on weight (56-95 lbs)
41089                                                                     based on weight (44-88 lbs)
41090                                                                                     unspecified
41091                                                                                     application
41094                                                                    based on weight (51-100 lbs)
41095                                                                     based on weight (44-88 lbs)
41096                                                                     based on weight (56-95 lbs)
41097                                                                                                
41098                                                                     based on weight (56-95 lbs)
41099                                                                     based on weight (44-88 lbs)
41101                                                                                    small amount
41102                                                                      1.5 tablets/pills/capsules
41103                                                                        based on weight (75 lbs)
41104                                                                           1 tablet/pill/capsule
41121                                                                                        27, 1620
41125                                                                    based on weight (51-100 lbs)
41129                                                                           1 tablet/pill/capsule
41130                                                                           1 tablet/pill/capsule
41131                                                                  based on weight (50.1-100 lbs)
41132                                                                  based on weight (60.1-121 lbs)
41133                                                                  based on weight (50.1-100 lbs)
41134                                                                  based on weight (60.1-120 lbs)
41137                                                                                                
41139                                                                                     unspecified
41147                                                                                     unspecified
41151                                                                                     unspecified
41152                                                                                     unspecified
41170                                                                                    small amount
41198                                                            272 ivermectin, 227 pyrantel pamoate
41199                                                            272 ivermectin, 227 pyrantel pamoate
41200                                                            272 ivermectin, 227 pyrantel pamoate
41201                                                            272 ivermectin, 227 pyrantel pamoate
41203                                                                    based on weight (51-100 lbs)
41204                                                                     based on weight (21-55 lbs)
41206                                                                     based on weight (45-88 lbs)
41207                                                                    based on weight (51-100 lbs)
41208                                                                     based on weight (24-60 lbs)
41209                                                                    based on weight (51-100 lbs)
41210                                                                     based on weight (24-60 lbs)
41216                                                                                      1000 units
41217                                                                     based on weight (40-60 lbs)
41219                                                                    based on weight (51-100 lbs)
41220                                                                           1 tablet/pill/capsule
41221                                                                     based on weight (40-60 lbs)
41222                                                                    based on weight (50-100 lbs)
41223                                                                    based on weight (50-100 lbs)
41224                                                                    based on weight (50-100 lbs)
41240                                                                                     application
41241                                                                           1 tablet/pill/capsule
41242                                                                                     unspecified
41246                                                                                     application
41254                                                                           1 tablet/pill/capsule
41260                                                                                     unspecified
41267                                                                    based on weight (51-100 lbs)
41278                                                                                                
41279                                                                                     unspecified
41281                                                                                     unspecified
41283                                                                                         23, 460
41313                                                                     based on weight (56-95 lbs)
41314                                                                    based on weight (50-100 lbs)
41315                                                                       based on weight (55+ lbs)
41316                                                                    based on weight (55-100 lbs)
41318                                                                    based on weight (51-100 lbs)
41319                                                                    based on weight (51-100 lbs)
41320                                                                    based on weight (50-100 lbs)
41325                                                                                        23 , 460
41332                                                               based on weight (51-100 lbs) - 23
41335                                                                                    small amount
41340                                                                                    small amount
41343                                                                                     unspecified
41360                                                                                     unspecified
41371                                                                                     application
41373                                                                    based on weight (51-100 lbs)
41374                                                                     based on weight (44-88 lbs)
41376                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41377                                                                    based on weight (51-100 lbs)
41378                                                                   based on weight (44.1-88 lbs)
41381                                                                        based on weight (80 lbs)
41384                                                                  based on weight (50.1-100 lbs)
41385                                                                     based on weight (44-88 lbs)
41386                                                                    based on weight (51-100 lbs)
41387                                                                       based on weight (44+ lbs)
41388                                                                                     as directed
41396                                                                                     unspecified
41398                                                                                     application
41407                                                                    based on weight (60-121 lbs)
41413                                                                                     unspecified
41417                                                                                       136 , 114
41420                                                                    based on weight (51-100 lbs)
41421                                                                    based on weight (51-100 lbs)
41422                                                                    based on weight (50-100 lbs)
41424                                                                       based on weight (50+ lbs)
41425                                                                                     as directed
41430                                                                                        27, 1620
41431                                                                                        27, 1620
41432                                                                    based on weight (60-120 lbs)
41433                                                                                             6-8
41435                                                              27 milbemycin oxime, 1620 spinosad
41442                                                                                     unspecified
41443                                                                                        27, 1620
41444                                                                                        27, 1620
41446                                                                                     application
41447                                                                    based on weight (60-120 lbs)
41451                                                              27 milbemycin oxime, 1620 spinosad
41464                                                                                     unspecified
41466                                                                                     unspecified
41470                                                                                     unspecified
41497                                                                                     unspecified
41500                                                                                                
41505                                                                                        inhalant
41525                                                                                     as directed
41531                                                                                     as directed
41533                                                                                        100, 200
41557                                                                                     unspecified
41572                                                                    based on weight (50-100 lbs)
41573                                                                    based on weight (60-120 lbs)
41581                                                                           1 tablet/pill/capsule
41612                                                                     1 tablet/pill/capsule - 500
41615                                                                    based on weight (51-100 lbs)
41617                                                           23 milbemycin oxime, 228 praziquantel
41621                                                                                     unspecified
41629                                                                                          0.5 hr
41632                                                                     based on weight (55-88 lbs)
41633                                                                    based on weight (50-100 lbs)
41636                                                                           1 tablet/pill/capsule
41637                                                                           1 tablet/pill/capsule
41638                                                                    based on weight (51-100 lbs)
41639                                                                        based on weight (86 lbs)
41640                                                                    based on weight (50-100 lbs)
41641                                                            272 ivermectin, 227 pyrantel pamoate
41653                                                                                         23, 460
41655                                                                                     unspecified
41674                                                                                        114, 136
41724                                                                                     unspecified
41725                                                                     based on weight (45-88 lbs)
41726                                                                    based on weight (51-100 lbs)
41727                                                                    based on weight (51-100 lbs)
41728                                                                             tablet/pill/capsule
41729                                                                                     unspecified
41731                                                                    based on weight (51-100 lbs)
41737                                                                     based on weight (45-88 lbs)
41738                                                                    based on weight (51-100 lbs)
41739                                                                                     unspecified
41740                                                                                     unspecified
41743                                                                                         80, 400
41746                                                                    based on weight (51-100 lbs)
41747                                                                                     unspecified
41748                                                                                     unspecified
41749                                                                                     unspecified
41750                                                                                     unspecified
41751                                                                                     unspecified
41752                                                                                     unspecified
41753                                                                                     unspecified
41754                                                                                     unspecified
41756                                                                                     62.5, 312.5
41759                                                                    based on weight (51-100 lbs)
41774                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41778                                                                           1 tablet/pill/capsule
41779                                                                           1 tablet/pill/capsule
41781                                                                    based on weight (51-100 lbs)
41803                                                                                     unspecified
41811                                                                                     unspecified
41816                                                                                     unspecified
41819                                                                                        23 , 460
41830                                                                        3 tablets/pills/capsules
41835                                                                    based on weight (51-100 lbs)
41837                                                                    based on weight (51-100 lbs)
41838                                                                    based on weight (89-132 lbs)
41840                                                                    based on weight (51-100 lbs)
41846                                                                                     unspecified
41849                                                                    based on weight (51-100 lbs)
41850                                                                    based on weight (51-100 lbs)
41851                                                                                         23, 460
41853                                                                                        400, 500
41854                                                                    based on weight (51-100 lbs)
41863                                                                                 moderate amount
41870                                                                                         23, 228
41872                                                                                     unspecified
41888                                                                                 0.25 inch strip
41891                                                                                       136 , 114
41893                                                                                     application
41894                                                                        2 tablets/pills/capsules
41896                                                                                          powder
41897                                                                                     unspecified
41898                                                                                     unspecified
41899                                                                                     unspecified
41900                                                                                     unspecified
41901                                                                                     unspecified
41902                                                                                     unspecified
41903                                                                                     unspecified
41904                                                                        2 tablets/pills/capsules
41905                                                                                     unspecified
41906                                                                                     unspecified
41921                                                                                     unspecified
41929                                                                                 based on weight
41930                                                                                 based on weight
41937                                                                                 based on weight
41938                                                                                 based on weight
41939                                                                                     bottle/vial
41946                                                                                 based on weight
41947                                                                                 based on weight
41950                                                                                 based on weight
41973                                                                                     application
41975                                                                    based on weight (51-100 lbs)
41988                                                                    based on weight (51-100 lbs)
42004                                                                    based on weight (51-100 lbs)
42005                                                                     based on weight (48-88 lbs)
42011                                                                    based on weight (50-100 lbs)
42012                                                                     based on weight (45-88 lbs)
42032                                                                    based on weight (51-100 lbs)
42037                                                                    based on weight (51-100 lbs)
42039                                                                    based on weight (51-100 lbs)
42043                                                                    based on weight (51-100 lbs)
42044                                                                    based on weight (51-100 lbs)
42053                                                                    based on weight (60-121 lbs)
42055                                                                           1 tablet/pill/capsule
42057                                                                                     unspecified
42061                                                                    based on weight (50-100 lbs)
42063                                                                    based on weight (50-100 lbs)
42066                                                                    based on weight (50-100 lbs)
42100                                                                                     application
42101                                                                                     application
42112                                                            272 ivermectin, 227 pyrantel pamoate
42116                                                                   2 tablets/pills/capsules - 50
42119                                                                                     unspecified
42122                                                                                     unspecified
42147                                                                    based on weight (50-100 lbs)
42148                                                                     based on weight (44-88 lbs)
42149                                                                    based on weight (51-100 lbs)
42150                                                                    based on weight (51-100 lbs)
42151                                                                     based on weight (44-88 lbs)
42152                                                                    based on weight (51-100 lbs)
42154                                                                     based on weight (44-88 lbs)
42174                                                                    based on weight (51-100 lbs)
42198                                                                                 based on weight
42201                                                                       based on weight (18+ lbs)
42215                                                                                     unspecified
42218                                                                    based on weight (51-100 lbs)
42219                                                                     based on weight (21-55 lbs)
42221                                                                     based on weight (55-88 lbs)
42227                                                                     based on weight (55-89 lbs)
42229                                                                     based on weight (55-88 lbs)
42240                                                                                     unspecified
42241                                                                                     unspecified
42242                                                                                     unspecified
42243                                                                                     unspecified
42256                                                                                    small amount
42257                                                                                    small amount
42259                                                                                    small amount
42267                                                                                    small amount
42272                                                                    based on weight (51-100 lbs)
42273                                                                     based on weight (44-88 lbs)
42278                                                                                     unspecified
42284                                                            272 ivermectin, 227 pyrantel pamoate
42286                                                                     based on weight (55.1+ lbs)
42287                                                                    based on weight (51-100 lbs)
42289                                                                    based on weight (51-100 lbs)
42291                                                                                     unspecified
42313                                                                     based on weight (22-44 lbs)
42314                                                                     based on weight (26-50 lbs)
42345                                                                                 based on weight
42346                                                                                 based on weight
42348                                                                                 based on weight
42349                                                                                 based on weight
42353                                                                    based on weight (50-100 lbs)
42354                                                                       based on weight (60+ lbs)
42356                                                                    based on weight (60-121 lbs)
42357                                                                    based on weight (51-100 lbs)
42358                                                                    based on weight (60-120 lbs)
42361                                                                                     unspecified
42366                                                                           1 tablet/pill/capsule
42367                                                                                     as directed
42368                                                                    based on weight (51-100 lbs)
42378                                                                    based on weight (51-100 lbs)
42379                                                                    based on weight (51-100 lbs)
42384                                                                    based on weight (51-100 lbs)
42386                                                                    based on weight (51-100 lbs)
42387                                                                    based on weight (51-100 lbs)
42399                                                                                          collar
42402                                                                    based on weight (51-100 lbs)
42404                                                                           1 tablet/pill/capsule
42412                                                                           1 tablet/pill/capsule
42413                                                                           1 tablet/pill/capsule
42417                                                                                    small amount
42425                                                                                                
42426                                                                                                
42433                                                                                     unspecified
42451                                                                    based on weight (50-100 lbs)
42455                                                                                         23, 460
42463                                                                    based on weight (51-100 lbs)
42464                                                                                    small amount
42465                                                                           1 tablet/pill/capsule
42466                                                                           1 tablet/pill/capsule
42468                                                                                     unspecified
42474                                                100000 units nystatin, 1 triamcinolone acetonide
42475                                                                                338 dha, 515 epa
42476                                                                    based on weight (50-100 lbs)
42477                                                                       based on weight (56+ lbs)
42478                                                                           1 tablet/pill/capsule
42480                                                                                 moderate amount
42481                                                                       0.5-1 tablet/pill/capsule
42482                                                                                     bottle/vial
42483                                                                             tablet/pill/capsule
42486                                                                             tablet/pill/capsule
42488                                                                                         8.8, 44
42489                                                              460 lufenuron, 23 milbemycin oxime
42502                                                                                     unspecified
42506                                                                                     unspecified
42512                                                                    based on weight (51-100 lbs)
42513                                                                     based on weight (45-88 lbs)
42522                                                                                 based on weight
42537                                                                                     unspecified
42551                                                                    based on weight (51-100 lbs)
42552                                                                    based on weight (51-100 lbs)
42553                                                                    based on weight (51-100 lbs)
42570                                                                   based on weight (40.1-60 lbs)
42572                                                            272 ivermectin, 227 pyrantel pamoate
42573                                                                    based on weight (51-100 lbs)
42574                                                                    based on weight (51-100 lbs)
42578                                                                    based on weight (51-100 lbs)
42579                                                                    based on weight (88-123 lbs)
42593                                                                   based on weight (100-125 lbs)
42594                                                                    based on weight (88-123 lbs)
42624                                                                    based on weight (51-100 lbs)
42626                                                                                             6-8
42627                                                                    based on weight (51-100 lbs)
42628                                                                     based on weight (44-88 lbs)
42632                                                                     based on weight (44-88 lbs)
42633                                                                    based on weight (51-100 lbs)
42634                                                                                 based on weight
42637                                                                       based on weight (100 lbs)
42638                                                                                        23 , 460
42640                                                                                     unspecified
42646                                                                                     unspecified
42647                                                                                     unspecified
42648                                                                                     unspecified
42651                                                                           1 tablet/pill/capsule
42652                                                                                          1 dose
42655                                                                    based on weight (51-100 lbs)
42656                                                                     based on weight (44-88 lbs)
42666                                                                    based on weight (51-100 lbs)
42668                                                            272 ivermectin, 227 pyrantel pamoate
42675                                                                                     unspecified
42678                                                                                     unspecified
42679                                                                                     unspecified
42694                                                                     based on weight (44-88 lbs)
42695                                                                    based on weight (51-100 lbs)
42696                                                                     based on weight (44-88 lbs)
42697                                                                    based on weight (51-100 lbs)
42700                                                                     based on weight (45-88 lbs)
42704                                                                    based on weight (51-100 lbs)
42712                                                                    based on weight (51-100 lbs)
42716                                                                    based on weight (51-100 lbs)
42721                                                                    based on weight (51-100 lbs)
42725                                                                     based on weight (44-88 lbs)
42726                                                                     based on weight (25-50 lbs)
42727                                                                    based on weight (51-100 lbs)
42728                                                                    based on weight (51-100 lbs)
42729                                                                    based on weight (51-100 lbs)
42740                                                                    based on weight (51-100 lbs)
42752                                                                           1 tablet/pill/capsule
42753                                                                           1 tablet/pill/capsule
42758                                                                                         23, 460
42760                                                                    based on weight (50-100 lbs)
42761                                                                     based on weight (44-88 lbs)
42764                                                                                       11.5, 114
42766                                                           23 milbemycin oxime, 228 praziquantel
42768                                                           23 milbemycin oxime, 228 praziquantel
42785                                                                       based on weight (50+ lbs)
42786                                                                       based on weight (50+ lbs)
42787                                                                                     unspecified
42791                                                                                         23, 228
42792                                                                                         23, 228
42799                                                                                     unspecified
42821                                                                    based on weight (50-100 lbs)
42833                                                                                         23, 228
42860                                                                                     as directed
42876                                                                                     unspecified
42879                                                                                     unspecified
42887                                                                                     unspecified
42890                                                                                     unspecified
42891                                                                                     unspecified
42892                                                                                     unspecified
42893                                                                                     unspecified
42894                                                                                     unspecified
42913                                                                                 based on weight
42915                                                                                     unspecified
42920                                                            272 ivermectin, 227 pyrantel pamoate
42923                                                                   based on weight (40.1-85 lbs)
42926                                                                     based on weight (45-88 lbs)
42930                                                                    based on weight (51-100 lbs)
42931                                                                    based on weight (51-100 lbs)
42932                                                                   based on weight (44.1-88 lbs)
42935                                                                   based on weight (44.1-88 lbs)
42936                                                                    based on weight (51-100 lbs)
42939                                                                    based on weight (50-100 lbs)
42940                                                                   based on weight (44.1-88 lbs)
42946                                                                                     unspecified
42952                                                                                        27, 1620
42956                                                                    based on weight (51-100 lbs)
42959                                                                    based on weight (51-100 lbs)
42960                                                                    based on weight (51-100 lbs)
42967                                                                                     unspecified
42994                                                                                     application
43013                                                            272 ivermectin, 227 pyrantel pamoate
43045                                                                    based on weight (51-100 lbs)
43064                                                                    based on weight (51-100 lbs)
43065                                                                       based on weight (55+ lbs)
43069                                                                                 based on weight
43072                                                                                 based on weight
43081                                                                     based on weight (40-85 lbs)
43086                                                                                             1-2
43105                                                                                     unspecified
43116                                                                                     unspecified
43119                                                                    based on weight (50-100 lbs)
43123                                                                                         23, 228
43134                                                                           1 tablet/pill/capsule
43135                                                                        2 tablets/pills/capsules
43136                                                                     1.25 tablets/pills/capsules
43137                                                                           1 tablet/pill/capsule
43138                                                                           1 tablet/pill/capsule
43151                                                           23 milbemycin oxime, 228 praziquantel
43153                                           1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                     unspecified
43173                                                                                     unspecified
43183                                                                                         23, 460
43184                                                                                         23, 460
43191                                                                                          varies
43200                                                                                        27, 1620
43202                                                                        based on weight (55 lbs)
43204                                                                   based on weight (40.1-85 lbs)
43224                                                                                     unspecified
43228                                                                                 based on weight
43236                                                                    based on weight (51-100 lbs)
43238                                                                    based on weight (51-100 lbs)
43239                                                                                          collar
43241                                                                    based on weight (51-100 lbs)
43242                                                                       based on weight (18+ lbs)
43243                                                                    based on weight (51-100 lbs)
43244                                                                                          collar
43246                                                                                     unspecified
43247                                                                                     unspecified
43258                                                                    based on weight (51-100 lbs)
43259                                                                    based on weight (51-100 lbs)
43270                                                                                     unspecified
43286                                                                                     unspecified
43291                                                                400 imidacloprid, 100 moxidectin
43292                                                                                     as directed
43293                                                                     based on weight (55-88 lbs)
43310                                                                    based on weight (50-100 lbs)
43334                                                                                         23, 228
43366                                                                                    small amount
43388                                                                                     unspecified
43405                                                                                    small amount
43412                                                                                    small amount
43423                                                                                 based on weight
43424                                                                                 based on weight
43430                                                                                          powder
43465                                                                           1 tablet/pill/capsule
43467                                                                                     unspecified
43469                                                                                     unspecified
43470                                                                                     unspecified
43471                                                                                     unspecified
43482                                                                    based on weight (50-100 lbs)
43491                                                                    based on weight (51-100 lbs)
43493                                                           23 milbemycin oxime, 228 praziquantel
43494                                                                                         23, 228
43496                                                           23 milbemycin oxime, 228 praziquantel
43497                                                           23 milbemycin oxime, 228 praziquantel
43510                                                                  based on weight (50.1-100 lbs)
43511                                                                    based on weight (88-123 lbs)
43512                                                                    based on weight (89-132 lbs)
43522                                                                    based on weight (88-123 lbs)
43527                                                            272 ivermectin, 227 pyrantel pamoate
43531                                                                  based on weight (50.1-100 lbs)
43532                                                                  based on weight (60.1-121 lbs)
43535                                                                    based on weight (51-100 lbs)
43538                                                                    based on weight (51-100 lbs)
43539                                                                    based on weight (60-121 lbs)
43540                                                                                            8 au
43545                                                                                 based on weight
43546                                                                     based on weight (44-88 lbs)
43547                                                                                 250 , 300 , 600
43548                                                                                 based on weight
43549                                                                     based on weight (44-88 lbs)
43550                                                                                 based on weight
43563                                                                    based on weight (51-100 lbs)
43570                                                                    based on weight (51-100 lbs)
43610                                                                                0.125 inch strip
43620                                                                                     unspecified
43621                                                                                     unspecified
43636                                                                                     unspecified
43637                                                                                 based on weight
43639                                                                                    small amount
43640                                                                                             2-4
43642                                                                                    small amount
43643                                                                                      1 wipe/pad
43644                                                                    based on weight (51-100 lbs)
43645                                                                    based on weight (60-120 lbs)
43646                                                                        based on weight (60 lbs)
43650                                                                                 0.25 inch strip
43652                                                                     based on weight (45-88 lbs)
43653                                                                    based on weight (51-100 lbs)
43669                                                                                      1 wipe/pad
43678                                                                                    small amount
43683                                                                     based on weight (26-50 lbs)
43684                                                                                 0.25 inch strip
43685                                                                                    small amount
43686                                                                                    small amount
43697                                                                           1 tablet/pill/capsule
43698                                                                           1 tablet/pill/capsule
43701                                                                           1 tablet/pill/capsule
43702                                                                           1 tablet/pill/capsule
43706                                                                    based on weight (51-100 lbs)
43707                                                                     based on weight (44-88 lbs)
43709                                                                     based on weight (56-95 lbs)
43714                                                                                 moderate amount
43715                                                                                    small amount
43738                                                                                     unspecified
43743                                                                    based on weight (51-100 lbs)
43744                                                                     based on weight (45-88 lbs)
43745                                                                                  1 pack/package
43746                                                                     based on weight (45-88 lbs)
43747                                                                    based on weight (51-100 lbs)
43751                                                                                     unspecified
43783                                                                    based on weight (50-100 lbs)
43784                                                                    based on weight (60-120 lbs)
43785                                                                                 based on weight
43790                                                                           1 tablet/pill/capsule
43806                                                                                                
43807                                                                                     unspecified
43838                                                                                     unspecified
43843                                                                    based on weight (51-100 lbs)
43844                                                                  based on weight (60.1-120 lbs)
43851                                                                                     unspecified
43853                                                                                     unspecified
43854                                                                                     unspecified
43878                                                                    based on weight (50-100 lbs)
43884                                                                                                
43887                                                                                                
43893                                                                    based on weight (50-100 lbs)
43894                                                                                          collar
43896                                                                    based on weight (50-100 lbs)
43919                                                                    based on weight (51-100 lbs)
43920                                                                  based on weight (60.1-121 lbs)
43938                                                                    based on weight (50-100 lbs)
43939                                                                     based on weight (24-60 lbs)
43949                                                                    based on weight (50-100 lbs)
43950                                                                     based on weight (24-60 lbs)
43958                                                                    based on weight (50-100 lbs)
43959                                                                    based on weight (50-100 lbs)
43960                                                                    based on weight (60-100 lbs)
43963                                                                    based on weight (51-100 lbs)
43965                                                                                    small amount
43975                                                                                     unspecified
43976                                                            222 ivermectin, 227 pyrantel pamoate
43977                                                            222 ivermectin, 227 pyrantel pamoate
43980                                                            222 ivermectin, 227 pyrantel pamoate
43997                                                                                     unspecified
44031                                                            272 ivermectin, 227 pyrantel pamoate
44037                                                            272 ivermectin, 227 pyrantel pamoate
44050                                                                                        wipe/pad
44055                                                                                             2-3
44084                                                                                  0.5 inch strip
44087                                                                                     unspecified
44090                                                                                     unspecified
44119                                                                                     unspecified
44123                                                                                     unspecified
44126                                                                    based on weight (51-100 lbs)
44127                                                                    based on weight (60-121 lbs)
44129                                                                    based on weight (51-100 lbs)
44131                                                                    based on weight (51-100 lbs)
44154                                                                                     unspecified
44155                                                                  based on weight (50.1-100 lbs)
44157                                                                  based on weight (50.1-100 lbs)
44158                                                                     based on weight (44-88 lbs)
44207                                                                                     unspecified
44209                                                                                     unspecified
44211                                                                    based on weight (60-120 lbs)
44212                                                                        2 tablets/pills/capsules
44214                                                                    based on weight (60-120 lbs)
44216                                                                    based on weight (60-120 lbs)
44218                                                                    based on weight (60-120 lbs)
44219                                                                    based on weight (60-120 lbs)
44222                                                                                     unspecified
44223                                                                                     unspecified
44224                                                                                     unspecified
44225                                                                                     unspecified
44226                                                                                     unspecified
44227                                                                                     unspecified
44234                                                                       based on weight (55+ lbs)
44235                                                                    based on weight (51-100 lbs)
44240                                                                                    small amount
44241                                                                        3 tablets/pills/capsules
44243                                                                                     unspecified
44244                                                                                     unspecified
44246                                                                    based on weight (51-100 lbs)
44247                                                                    based on weight (60-120 lbs)
44249                                                                    based on weight (60-120 lbs)
44250                                                                    based on weight (51-100 lbs)
44251                                                                    based on weight (50-100 lbs)
44252                                                                    based on weight (60-120 lbs)
44253                                                                  based on weight (50.1-100 lbs)
44268                                                                  based on weight (50.1-100 lbs)
44280                                                                                     unspecified
44282                                                                                     unspecified
44309                                                                                     unspecified
44330                                                                    based on weight (51-100 lbs)
44334                                                                    based on weight (50-100 lbs)
44335                                                                    based on weight (60-121 lbs)
44336                                                                    based on weight (50-100 lbs)
44337                                                                    based on weight (60-121 lbs)
44347                                                                                     unspecified
44350                                                                                        125, 500
44363                                                                                    small amount
44372                                                                                    small amount
44385                                                                                        27, 1620
44386                                                                                        27, 1620
44390                                                                    based on weight (50-100 lbs)
44391                                                                                         23, 228
44392                                                                    based on weight (50-100 lbs)
44395                                                                    based on weight (50-100 lbs)
44398                                                                                     unspecified
44421                                                                  based on weight (50.1-100 lbs)
44428                                                                  based on weight (60.1-120 lbs)
44429                                                              27 milbemycin oxime, 1620 spinosad
44431                                                                     based on weight (44-88 lbs)
44434                                                                                    small amount
44452                                                                  based on weight (60.1-120 lbs)
44473                                                                       based on weight (55+ lbs)
44507                                                                                    small amount
44520                                                                                     unspecified
44524                                                                     based on weight (26-50 lbs)
44531                                                                        based on weight (70 lbs)
44542                                                                     based on weight (45-88 lbs)
44543                                                                    based on weight (51-100 lbs)
44544                                                                           1 tablet/pill/capsule
44545                                                              based on weight (45-88 lbs) - 2.68
44546                                                                    based on weight (51-100 lbs)
44547                                                                     based on weight (45-88 lbs)
44558                                                                                     unspecified
44559                                                                     based on weight (45-88 lbs)
44570                                                                                     unspecified
44571                                                                                     unspecified
44576                                                                                     unspecified
44577                                                                                     unspecified
44595                                                                                     unspecified
44607                                                                                      1 wipe/pad
44608                                                                    based on weight (60-120 lbs)
44609                                                                                       1-2 wipes
44614                                                                           1 tablet/pill/capsule
44616                                                                    based on weight (51-100 lbs)
44618                                                                                 based on weight
44646                                                                     based on weight (45-80 lbs)
44649                                                                    based on weight (85-130 lbs)
44652                                                                                     unspecified
44653                                                                                     unspecified
44654                                                                                     unspecified
44655                                                                                     unspecified
44658                                                                                     unspecified
44660                                                                                     unspecified
44663                                                                                     unspecified
44671                                                                    based on weight (60-120 lbs)
44672                                                              27 milbemycin oxime, 1620 spinosad
44677                                                                                        27, 1610
44679                                                                                         45, 450
44683                                                                                     unspecified
44684                                                                                     unspecified
44706                                                                                 0.25 inch strip
44732                                                                                         23, 460
44742                                                                    based on weight (51-100 lbs)
44743                                                                     based on weight (44-88 lbs)
44745                                                                    based on weight (50-100 lbs)
44746                                                                                     unspecified
44747                                                                                          collar
44755                                                                                     unspecified
44757                                                                                     unspecified
44769                                                                     based on weight (44-88 lbs)
44771                                                                     based on weight (44-88 lbs)
44782                                                                                     unspecified
44795                                                                                 0.25 inch strip
44799                                                                                     unspecified
44804                                                                                     unspecified
44820                                                                    based on weight (51-100 lbs)
44827                                                                    based on weight (51-100 lbs)
44828                                                                    based on weight (60-120 lbs)
44829                                                                     based on weight (51-99 lbs)
44830                                                                    based on weight (51-100 lbs)
44834                                                                                     unspecified
44843                                                                    based on weight (51-100 lbs)
44844                                                                  based on weight (60.1-121 lbs)
44857                                                                                           6, 15
44858                                                                                           6, 15
44862                                                                                     unspecified
44863                                                                       based on weight (50+ lbs)
44864                                                                                     unspecified
44866                                                                                     unspecified
44867                                                                   based on weight (55.1-88 lbs)
44868                                                                   based on weight (55.1-88 lbs)
44869                                                                    based on weight (60-121 lbs)
44875                                                                                         23, 460
44877                                                                    based on weight (50-100 lbs)
44879                                                                    based on weight (50-100 lbs)
44899                                                                                     unspecified
44905                                                                                     unspecified
44915                                                                     based on weight (45-88 lbs)
44916                                                            272 ivermectin, 227 pyrantel pamoate
44917                                                                       based on weight (55+ lbs)
44918                                                            272 ivermectin, 227 pyrantel pamoate
44920                                                                       based on weight (55+ lbs)
44922                                                                                     unspecified
44924                                                                    based on weight (51-100 lbs)
44925                                                                       based on weight (55+ lbs)
44933                                                                                     unspecified
44936                                                                     based on weight (40-85 lbs)
44937                                                                     based on weight (40-85 lbs)
44938                                                                   based on weight (40.1-85 lbs)
44939                                                                   based on weight (40.1-65 lbs)
44946                                                                    based on weight (51-100 lbs)
44947                                                                     based on weight (44-88 lbs)
44948                                                                           1 tablet/pill/capsule
44949                                                                    based on weight (51-100 lbs)
44950                                                                     based on weight (44-88 lbs)
44957                                                                     based on weight (44-88 lbs)
44958                                                                    based on weight (51-100 lbs)
44997                                                                                     as directed
45005                                                                                     unspecified
45007                                                                                     unspecified
45014                                                                    based on weight (60-120 lbs)
45015                                                                           1 tablet/pill/capsule
45016                                                                           1 tablet/pill/capsule
45017                                                                      based on weight (81.1 lbs)
45023                                                                                     unspecified
45027                                                                     based on weight (45-88 lbs)
45034                                                                                     unspecified
45045                                                                    based on weight (50-100 lbs)
45053                                                                      based on weight (0-25 lbs)
45054                                                                     based on weight (10-24 lbs)
45055                                                                     based on weight (25-60 lbs)
45059                                                                    based on weight (51-100 lbs)
45061                                                                    based on weight (51-100 lbs)
45062                                                                  based on weight (60.1-120 lbs)
45063                                                                                        27, 1620
45064                                                                  based on weight (60.1-120 lbs)
45066                                                                                    small amount
45072                                                                    based on weight (60-120 lbs)
45073                                                                                        27, 1620
45076                                                                             tablet/pill/capsule
45109                                                                           1 tablet/pill/capsule
45116                                                                   0.5 tablet/pill/capsule - 100
45117                                                                                  1 pack/package
45123                                                                    based on weight (50-100 lbs)
45134                                                                                     unspecified
45139                                                            272 ivermectin, 227 pyrantel pamoate
45149                                                                    based on weight (51-100 lbs)
45150                                                                    based on weight (51-100 lbs)
45154                                                                    based on weight (51-100 lbs)
45172                                                                                     unspecified
45173                                                                                     unspecified
45174                                                                                     unspecified
45175                                                                                     unspecified
45178                                                                    based on weight (51-100 lbs)
45179                                                                     based on weight (45-88 lbs)
45180                                                                                 moderate amount
45181                                                                                    small amount
45182                                                                    based on weight (51-100 lbs)
45184                                                                           1 tablet/pill/capsule
45185                                                                                   1 bottle/vial
45186                                                                    based on weight (51-100 lbs)
45187                                                                     based on weight (44-88 lbs)
45188                                                                    based on weight (51-100 lbs)
45189                                                                     based on weight (44-88 lbs)
45195                                                                                     unspecified
45199                                                                                     unspecified
45208                                                                                     unspecified
45209                                                                                     unspecified
45210                                                                                     unspecified
45212                                                                    based on weight (51-100 lbs)
45216                                                                    based on weight (51-100 lbs)
45224                                                                                     unspecified
45225                                                                    based on weight (51-100 lbs)
45236                                                                    based on weight (51-100 lbs)
45255                                                                                 based on weight
45263                                                                                 based on weight
45268                                                                                     unspecified
45273                                                                                     application
45280                                                                                     unspecified
45283                                                                    based on weight (51-100 lbs)
45286                                                                    based on weight (51-100 lbs)
45294                                                                     based on weight (40-60 lbs)
45295                                                                        2 tablets/pills/capsules
45297                                                                        based on weight (50 lbs)
45298                                                                    based on weight (51-100 lbs)
45299                                                                    based on weight (51-100 lbs)
45302                                                                    based on weight (51-100 lbs)
45305                                                                                     unspecified
45307                                                                                          varies
45309                                                                                     unspecified
45310                                                                    based on weight (51-100 lbs)
45311                                                                                 based on weight
45312                                                                   based on weight (24.1-60 lbs)
45313                                                                    based on weight (51-100 lbs)
45322                                                                                     unspecified
45327                                                                                     unspecified
45335                                                              460 lufenuron, 23 milbemycin oxime
45344                                                                                     unspecified
45345                                                                                     unspecified
45358                                                                                     unspecified
45359                                                                                     unspecified
45372                                                                                     application
45383                                                                                     unspecified
45403                                                                                     unspecified
45406                                                                    based on weight (51-100 lbs)
45411                                                                                    small amount
45425                                                                    based on weight (51-100 lbs)
45426                                                                                          collar
45434                                                                                     unspecified
45435                                                                                     unspecified
45443                                                            272 ivermectin, 227 pyrantel pamoate
45445                                                                    based on weight (51-100 lbs)
45451                                                                    based on weight (51-100 lbs)
45452                                                                   based on weight (24.1-60 lbs)
45463                                                                  based on weight (60.1-120 lbs)
45468                                                                    based on weight (51-100 lbs)
45470                                                                    based on weight (60-120 lbs)
45471                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 milbemycin oxime, 1620 spinosad
45479                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 milbemycin oxime, 1620 spinosad
45484                                                                    based on weight (51-100 lbs)
45499                                                                           1 tablet/pill/capsule
45500                                                                           1 tablet/pill/capsule
45503                                                                        2 tablets/pills/capsules
45504                                                                    based on weight (50-100 lbs)
45508                                                                     based on weight (45-88 lbs)
45531                                                               250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 milbemycin oxime, 810 spinosad
45555                                                                                     unspecified
45556                                                                     based on weight (40-85 lbs)
45572                                                                     based on weight (44-88 lbs)
45582                                                                                     unspecified
45585                                                                    based on weight (50-100 lbs)
45626                                                                  based on weight (50.1-100 lbs)
45642                                                            272 ivermectin, 227 pyrantel pamoate
45650                                                                    based on weight (60-120 lbs)
45651                                                                    based on weight (51-100 lbs)
45655                                                                    based on weight (51-100 lbs)
45656                                                                  based on weight (60.1-121 lbs)
45663                                                                                    small amount
45664                                                                    based on weight (51-100 lbs)
45665                                                                     based on weight (45-88 lbs)
45667                                                                                     unspecified
45670                                                                    based on weight (50-100 lbs)
45671                                                                    based on weight (50-100 lbs)
45675                                                                                             4-6
45676                                                                                             4-6
45683                                                                        based on weight (51 lbs)
45699                                                                                 moderate amount
45700                                                                                 moderate amount
45704                                                                                    small amount
45724                                                                                     unspecified
45725                                                                                     unspecified
45726                                                                                     unspecified
45727                                                                                     unspecified
45728                                                                                     unspecified
45729                                                                                     unspecified
45735                                                                                     unspecified
45736                                                                                     unspecified
45751                                                                                     unspecified
45764                                                                    based on weight (51-100 lbs)
45775                                                                                     unspecified
45776                                                                                     unspecified
45787                                                                     based on weight (45-88 lbs)
45791                                                                    based on weight (51-100 lbs)
45798                                                                                         23, 228
45799                                                                    based on weight (50-100 lbs)
45800                                                                    based on weight (50-100 lbs)
45816                                                                                        1 collar
45820                                                                    based on weight (51-100 lbs)
45843                                                                                     as directed
45853                                                                                        inhalant
45862                                                                  based on weight (50.1-100 lbs)
45863                                                                  based on weight (60.1-121 lbs)
45864                                                                    based on weight (88-123 lbs)
45869                                                                  based on weight (50.1-100 lbs)
45872                                                                    based on weight (88-123 lbs)
45876                                                                                       13.5, 810
45898                                                                    based on weight (51-100 lbs)
45899                                                                       based on weight (55+ lbs)
45901                                                                    based on weight (51-100 lbs)
45908                                                                    based on weight (51-100 lbs)
45909                                                                       based on weight (55+ lbs)
45914                                                                    based on weight (51-100 lbs)
45924                                                                             tablet/pill/capsule
45968                                                                                         11, 230
45969                                                                    based on weight (50-100 lbs)
45970                                                                  based on weight (60.1-121 lbs)
45971                                                                                        23 , 460
45990                                                                     based on weight (40-60 lbs)
45994                                                                       based on weight (55+ lbs)
45995                                                                                  1 pack/package
45996                                                                                     application
45997                                                                  based on weight (50.1-100 lbs)
46014                                                                                 0.25 inch strip
46018                                                                    based on weight (51-100 lbs)
46019                                                                  based on weight (50.1-121 lbs)
46021                                                                    based on weight (51-100 lbs)
46022                                                                    based on weight (60-121 lbs)
46025                                                                    based on weight (51-100 lbs)
46043                                                                    based on weight (51-100 lbs)
46044                                                                  based on weight (60.1-120 lbs)
46071                                                                           1 tablet/pill/capsule
46075                                                                    based on weight (51-100 lbs)
46076                                                                    based on weight (50-100 lbs)
46078                                                           23 milbemycin oxime, 228 praziquantel
46085                                                                                     unspecified
46091                                                                    based on weight (51-100 lbs)
46092                                                                    based on weight (51-100 lbs)
46094                                                                    based on weight (50-100 lbs)
46095                                                                    based on weight (50-100 lbs)
46100                                                                    based on weight (50-100 lbs)
46107                                                                    based on weight (51-100 lbs)
46108                                                                        based on weight (60 lbs)
46110                                                                    based on weight (51-100 lbs)
46116                                                                    based on weight (51-100 lbs)
46119                                                                    based on weight (51-100 lbs)
46122                                                                    based on weight (51-100 lbs)
46131                                                                                     unspecified
46132                                                                                     unspecified
46134                                                                                     unspecified
46170                                                                     based on weight (21-55 lbs)
46171                                                                                    small amount
46173                                                                     based on weight (21-55 lbs)
46174                                                                    based on weight (51-100 lbs)
46177                                                                           1 tablet/pill/capsule
46186                                                                                     unspecified
46198                                                                    based on weight (51-100 lbs)
46200                                                                                 based on weight
46201                                                                       based on weight (50+ lbs)
46202                                                                    based on weight (51-100 lbs)
46213                                                                       based on weight (55+ lbs)
46218                                                                    based on weight (50-100 lbs)
46219                                                                   based on weight (24.1-60 lbs)
46227                                                                    based on weight (60-120 lbs)
46255                                                                                    small amount
46265                                                                                     unspecified
46277                                                                     based on weight (26-50 lbs)
46278                                                                     based on weight (24-60 lbs)
46287                                                                     based on weight (26-50 lbs)
46288                                                                     based on weight (24-60 lbs)
46291                                                                     based on weight (26-50 lbs)
46292                                                                    based on weight (50-110 lbs)
46293                                                                     based on weight (24-60 lbs)
46295                                                                    based on weight (51-100 lbs)
46296                                                                     based on weight (24-60 lbs)
46302                                                                           1 tablet/pill/capsule
46303                                                                                       11.5, 230
46305                                                                                       11.5, 230
46308                                                                                       11.5, 235
46311                                                                                     unspecified
46312                                                                                     unspecified
46313                                                                                     unspecified
46314                                                                                     unspecified
46319                                                                                    small amount
46320                                                           23 milbemycin oxime, 228 praziquantel
46324                                                                                     unspecified
46325                                                           23 milbemycin oxime, 228 praziquantel
46345                                                            272 ivermectin, 227 pyrantel pamoate
46350                                                                                         23, 228
46355                                                                                         23, 228
46358                                                                                         10, 100
46360                                                                                     unspecified
46377                                                                                     unspecified
46379                                                                                        27, 1620
46399                                                                    based on weight (60-120 lbs)
46406                                                                                     unspecified
46410                                                                        based on weight (70 lbs)
46411                                                                        based on weight (70 lbs)
46413                                                                                 based on weight
46418                                                                                 based on weight
46424                                                                                          collar
46431                                                                                          collar
46435                                                            272 ivermectin, 227 pyrantel pamoate
46436                                                                                          collar
46474                                                                    based on weight (51-100 lbs)
46475                                                                     based on weight (21-55 lbs)
46476                                                                  based on weight (50.1-100 lbs)
46478                                                                    based on weight (51-100 lbs)
46479                                                                    based on weight (51-100 lbs)
46482                                                                    based on weight (50-100 lbs)
46483                                                                     based on weight (56-95 lbs)
46486                                                                                 based on weight
46487                                                                    based on weight (51-100 lbs)
46488                                                                    based on weight (51-100 lbs)
46489                                                                     based on weight (26-50 lbs)
46490                                                                     based on weight (26-50 lbs)
46493                                                                    based on weight (51-100 lbs)
46494                                                                    based on weight (50-100 lbs)
46499                                                           23 milbemycin oxime, 228 praziquantel
46504                                                                                     application
46505                                                                                     application
46506                                                                                     application
46512                                                                    based on weight (51-100 lbs)
46517                                                                                          8 cfu/
46521                                                                                          10 100
46526                                                                                 0.25 inch strip
46528                                                                     based on weight (45-88 lbs)
46530                                                                                     as directed
46532                                                                    based on weight (51-100 lbs)
46533                                                                                 0.25 inch strip
46544                                                                    based on weight (51-100 lbs)
46547                                                                                        0.8, 9.8
46551                                                                                     unspecified
46553                                                                                     unspecified
46555                                                                                     unspecified
46568                                                                                       227 , 227
46569                                                         8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                1.5 tablets/pills/capsules - 204
46571                                                                                               %
46572                                                            272 ivermectin, 227 pyrantel pamoate
46573                                                                                     as directed
46574                                                                                     unspecified
46575                                                                                     unspecified
46579                                                                                     unspecified
46588                                                                                                
46591                                                            272 ivermectin, 227 pyrantel pamoate
46593                                                                                     bottle/vial
46606                                                                                     unspecified
46607                                                                                     unspecified
46615                                                                     based on weight (44-88 lbs)
46616                                                                    based on weight (51-100 lbs)
46617                                                                    based on weight (51-100 lbs)
46618                                                                                         23, 460
46665                                                                           1 tablet/pill/capsule
46676                                                                                     as directed
46680                                                                                 based on weight
46687                                                                                     unspecified
46690                                                                                                
46694                                                                     based on weight (10-20 lbs)
46702                                                                                                
46703                                                                                     as directed
46716                                                                                        27, 1620
46717                                                                                        27, 1620
46729                                                            272 ivermectin, 227 pyrantel pamoate
46730                                                            272 ivermectin, 227 pyrantel pamoate
46732                                                                                          varies
46737                                                                                     unspecified
46747                                                                                     unspecified
46753                                                                                     unspecified
46763                                                                                     unspecified
46766                                                                                     unspecified
46767                                                                    based on weight (51-100 lbs)
46775                                                                    based on weight (51-100 lbs)
46776                                                                     based on weight (24-60 lbs)
46777                                                                                 based on weight
46781                                                                           1 tablet/pill/capsule
46782                                                                           1 tablet/pill/capsule
46783                                                                                    small amount
46784                                                                           1 tablet/pill/capsule
46785                                                                           1 tablet/pill/capsule
46786                                                                    based on weight (51-100 lbs)
46788                                                                    based on weight (51-100 lbs)
46789                                                                    based on weight (60-121 lbs)
46804                                                                           1 tablet/pill/capsule
46811                                                                                 based on weight
46812                                                                    based on weight (51-100 lbs)
46816                                                                    based on weight (51-100 lbs)
46827                                                                                             1-2
46849                                                                                        112, 272
46853                                                            272 ivermectin, 227 pyrantel pamoate
46874                                                                                    small amount
46880                                                                                    small amount
46883                                                                                         23, 228
46884                                                                    based on weight (50-100 lbs)
46885                                                                    based on weight (50-100 lbs)
46889                                                                                        160, 800
46891                                                                                     unspecified
46902                                                                                    small amount
46903                                                                       based on weight (55+ lbs)
46904                                                                    based on weight (51-100 lbs)
46905                                                                                    small amount
46908                                                                                                
46915                                                                                    small amount
46931                                                                                  1 pack/package
46938                                                                                  1 pack/package
46944                                                                                  1 pack/package
46961                                                                                     unspecified
46962                                                                                     unspecified
46972                                                                    based on weight (51-100 lbs)
46973                                                                    based on weight (51-100 lbs)
46976                                                                           1 tablet/pill/capsule
46977                                                                                   1 application
46981                                                                                             3-5
46982                                                                                    small amount
46983                                                                     based on weight (45-88 lbs)
46984                                                                    based on weight (89-132 lbs)
46985                                                                    based on weight (51-100 lbs)
46986                                                                    based on weight (51-100 lbs)
47000                                                              based on weight (44.1-88 lbs) - 80
47004                                                                    based on weight (51-100 lbs)
47010                                                                    based on weight (51-100 lbs)
47011                                                                    based on weight (60-121 lbs)
47018                                                                    based on weight (51-100 lbs)
47024                                                                    based on weight (51-100 lbs)
47025                                                                     based on weight (44-88 lbs)
47041                                                              460 lufenuron, 23 milbemycin oxime
47043                                                                    based on weight (51-100 lbs)
47049                                                                     based on weight (40-85 lbs)
47060                                                                                     unspecified
47076                                                                                     unspecified
47080                                                                                     unspecified
47081                                                                                     unspecified
47085                                                                    based on weight (51-100 lbs)
47086                                                                   based on weight (24.1-60 lbs)
47090                                                                                    0.285 , 0.57
47095                                                                     based on weight (41-60 lbs)
47096                                                                    based on weight (51-100 lbs)
47097                                                                   based on weight (24.1-60 lbs)
47098                                                                                 moderate amount
47104                                                                                    small amount
47105                                                                                     application
47106                                                                                     application
47125                                                                                     unspecified
47126                                                                                     unspecified
47128                                                                        3 tablets/pills/capsules
47137                                                                                             4-5
47140                                                                     based on weight (60-85 lbs)
47143                                                                     based on weight (40-85 lbs)
47146                                                                                     unspecified
47152                                                                                 moderate amount
47154                                                                    based on weight (51-100 lbs)
47155                                                                    based on weight (50-100 lbs)
47156                                                                     based on weight (44-88 lbs)
47162                                                                     based on weight (44-88 lbs)
47164                                                                     based on weight (44-88 lbs)
47178                                                                    based on weight (50-100 lbs)
47180                                                                                 moderate amount
47183                                                                     based on weight (44-88 lbs)
47184                                                                    based on weight (51-100 lbs)
47187                                                                           1 tablet/pill/capsule
47193                                                                    based on weight (51-100 lbs)
47194                                                                     based on weight (45-88 lbs)
47196                                                                     based on weight (44-88 lbs)
47197                                                                    based on weight (50-100 lbs)
47204                                                                                     unspecified
47208                                                                                     unspecified
47209                                                                    based on weight (51-100 lbs)
47210                                                                    based on weight (51-100 lbs)
47220                                                                                          collar
47221                                                                                     unspecified
47222                                                                                     unspecified
47240                                                                                     unspecified
47248                                                                                     unspecified
47251                                                                                     unspecified
47253                                                                    based on weight (50-100 lbs)
47260                                                                    based on weight (50-100 lbs)
47302                                                                                    small amount
47323                                                                                         23, 228
47325                                                                                         23, 228
47334                                                                     based on weight (26-50 lbs)
47343                                                         11.5 milbemycin oxime, 114 praziquantel
47345                                                                                       11.5, 114
47350                                                                                     unspecified
47355                                                                                     application
47360                                                                                     unspecified
47390                                                            222 ivermectin, 227 pyrantel pamoate
47407                                                                                     unspecified
47409                                                           23 milbemycin oxime, 228 praziquantel
47411                                                                  based on weight (60.1-121 lbs)
47412                                                                    based on weight (51-100 lbs)
47415                                                                   based on weight (44.1-88 lbs)
47416                                                                  based on weight (50.1-100 lbs)
47417                                                                   based on weight (44.1-88 lbs)
47420                                                                  based on weight (50.1-100 lbs)
47421                                                                   based on weight (44.1-88 lbs)
47433                                                                                        114, 136
47439                                                                                           6, 15
47451                                                            272 ivermectin, 227 pyrantel pamoate
47478                                                                    based on weight (50-100 lbs)
47479                                                                    based on weight (51-100 lbs)
47483                                                                                    small amount
47484                                                                                 based on weight
47486                                                                                 based on weight
47493                                                                                 based on weight
47496                                                                                     unspecified
47497                                                                    based on weight (51-100 lbs)
47498                                                                                 based on weight
47539                                                                                     as directed
47540                                                                                     unspecified
47544                                                                                     unspecified
47547                                                                                     application
47557                                                                                     unspecified
47562                                                                    based on weight (50-100 lbs)
47563                                                                       based on weight (60+ lbs)
47576                                                                    based on weight (2.5-20 lbs)
47577                                                                       based on weight (<25 lbs)
47578                                                                       based on weight (<25 lbs)
47586                                                                     based on weight (26-50 lbs)
47587                                                                     based on weight (21-55 lbs)
47588                                                                                 3.5, 400, 10000
47589                                                                    based on weight (51-100 lbs)
47590                                                                     based on weight (21-55 lbs)
47592                                                                    based on weight (51-100 lbs)
47593                                                                     based on weight (21-55 lbs)
47594                                                                    based on weight (51-100 lbs)
47595                                                                     based on weight (21-55 lbs)
47597                                                                                        100, 400
47600                                                                                        100, 400
47628                                                                     based on weight (45-88 lbs)
47629                                                            272 ivermectin, 227 pyrantel pamoate
47630                                                                     based on weight (22-55 lbs)
47635                                                                       based on weight (55+ lbs)
47636                                                                     based on weight (25-50 lbs)
47658                                                                                     unspecified
47681                                                            272 ivermectin, 227 pyrantel pamoate
47684                                                                                                
47693                                                                                        wipe/pad
47694                                                                                          powder
47696                                                                    based on weight (50-100 lbs)
47698                                                                                        wipe/pad
47699                                                                                          powder
47702                                                                                     application
47706                                                              27 milbemycin oxime, 1620 spinosad
47715                                                                                     unspecified
47716                                                                                     unspecified
47720                                                                                     unspecified
47721                                                                                     unspecified
47733                                                                                     unspecified
47734                                                                                     application
47739                                                                                     unspecified
47743                               based on weight (51-100 lbs) - 460 lufenuron, 23 milbemycin oxime
47744                                                                    based on weight (51-100 lbs)
47745                                                              460 lufenuron, 23 milbemycin oxime
47746                                                                    based on weight (51-100 lbs)
47752                                                                                     unspecified
47755                                                                     based on weight (45-88 lbs)
47760                                                                                 based on weight
47800                                                                    based on weight (51-100 lbs)
47801                                                                     based on weight (45-88 lbs)
47802                                                                    based on weight (51-100 lbs)
47803                                                                     based on weight (45-88 lbs)
47808                                                                    based on weight (51-100 lbs)
47810                                                                  based on weight (60.1-121 lbs)
47811                                                                    based on weight (51-100 lbs)
47812                                                                  based on weight (60.1-121 lbs)
47815                                                                    based on weight (51-100 lbs)
47816                                                                  based on weight (60.1-121 lbs)
47817                                                                                     unspecified
47825                                                                                     unspecified
47835                                                                    based on weight (51-100 lbs)
47836                                                                    based on weight (51-100 lbs)
47840                                                                    based on weight (50-100 lbs)
47860                                                                     based on weight (44-88 lbs)
47861                                                                                       10  - 0.1
47863                                                                           1 tablet/pill/capsule
47877                                                                                     unspecified
47887                                                                     based on weight (44-88 lbs)
47888                                                                    based on weight (51-100 lbs)
47889                                                                                     unspecified
47890                                                                                     unspecified
47891                                                                                     unspecified
47894                                                                                           2 , 5
47900                                                                                     unspecified
47909                                                                           1 tablet/pill/capsule
47910                                                                                     unspecified
47951                                                                                     unspecified
47952                                                                                     unspecified
47953                                                                                     unspecified
47969                                                                           1 tablet/pill/capsule
47970                                                                           1 tablet/pill/capsule
47971                                                                    based on weight (50-100 lbs)
47975                                                                    based on weight (50-100 lbs)
47976                                                                    based on weight (50-100 lbs)
47981                                                                  based on weight (50.1-100 lbs)
47983                                                                                         23, 228
47984                                                                                 based on weight
47985                                                                                 based on weight
47989                                                                    based on weight (51-100 lbs)
47990                                                                       based on weight (55+ lbs)
47995                                                                                          powder
47996                                                                           1 tablet/pill/capsule
47997                                                                           1 tablet/pill/capsule
47998                                                                        2 tablets/pills/capsules
48000                                                                           1 tablet/pill/capsule
48001                                                                      1.5 tablets/pills/capsules
48002                                                                           1 tablet/pill/capsule
48003                                                                           1 tablet/pill/capsule
48004                                                                           1 tablet/pill/capsule
48005                                                                           1 tablet/pill/capsule
48007                                                                        0.75 tablet/pill/capsule
48013                                                                  based on weight (60.1-121 lbs)
48014                                                                  based on weight (60.1-121 lbs)
48016                                                                                     unspecified
48020                                                                    based on weight (51-100 lbs)
48021                                                                    based on weight (60-120 lbs)
48028                                                                    based on weight (51-100 lbs)
48029                                                                  based on weight (60.1-120 lbs)
48030                                                                           1 tablet/pill/capsule
48031                                                                        3 tablets/pills/capsules
48034                                                                                          powder
48035                                                                                          powder
48040                                                                    based on weight (51-100 lbs)
48041                                                                    based on weight (60-120 lbs)
48046                                                                    based on weight (51-100 lbs)
48047                                                                  based on weight (60.1-120 lbs)
48048                                                                           1 tablet/pill/capsule
48049                                                                        2 tablets/pills/capsules
48069                                                                                     unspecified
48072                                                                                 0.25 inch strip
48087                                                                    based on weight (51-100 lbs)
48088                                                                     based on weight (44-88 lbs)
48089                                                                                  1 pack/package
48090                                                                                      1.5 scoops
48094                                                                                     as directed
48100                                                                                 0.25 inch strip
48101                                                                                    small amount
48102                                                                    based on weight (51-100 lbs)
48103                                                                                    small amount
48105                                                                    based on weight (51-100 lbs)
48106                                                                                        1 collar
48107                                                                                    small amount
48108                                                                                    small amount
48109                                                                    based on weight (51-100 lbs)
48110                                                                                        1 collar
48114                                                                                    small amount
48120                                                                    based on weight (51-100 lbs)
48121                                                                       based on weight (55+ lbs)
48127                                                                             tablet/pill/capsule
48131                                                                             tablet/pill/capsule
48132                                                                           1 tablet/pill/capsule
48133                                                                           1 tablet/pill/capsule
48142                                                                    based on weight (50-100 lbs)
48143                                                                       based on weight (55+ lbs)
48147                                                                             tablet/pill/capsule
48148                                                                    based on weight (51-100 lbs)
48151                                                                           1 tablet/pill/capsule
48152                                                                           1 tablet/pill/capsule
48155                                                                                         23, 460
48157                                                                    based on weight (51-100 lbs)
48158                                                                   based on weight (44.1-88 lbs)
48159                                                                    based on weight (51-100 lbs)
48160                                                                    based on weight (88-123 lbs)
48163                                                                                     unspecified
48167                                                                    based on weight (51-100 lbs)
48169                                                                                     unspecified
48182                                                                                       136 , 114
48185                                                                                        tapering
48188                                                                                    small amount
48201                                                                                     unspecified
48213                                                                                    small amount
48214                                                                    based on weight (60-121 lbs)
48215                                                                    based on weight (51-100 lbs)
48217                                                            272 ivermectin, 227 pyrantel pamoate
48220                                                                                     unspecified
48221                                                                                     unspecified
48222                                                                                     unspecified
48231                                                              460 lufenuron, 23 milbemycin oxime
48237                                                                                    small amount
48238                                                              460 lufenuron, 23 milbemycin oxime
48240                                                                                         60, 500
48248                                                                                         60, 500
48251                                                                  based on weight (50.1-100 lbs)
48252                                                                  based on weight (60.1-121 lbs)
48258                                                                                     unspecified
48265                                                                                    small amount
48266                                                                                    small amount
48267                                                                                    small amount
48271                                                              460 lufenuron, 23 milbemycin oxime
48274                                                                                     unspecified
48277                                                                                     unspecified
48285                                                                                     unspecified
48287                                                                                         3000 u/
48288                                                                                                
48289                                                            272 ivermectin, 227 pyrantel pamoate
48291                                                                                     application
48292                                                            272 ivermectin, 227 pyrantel pamoate
48294                                                                                 0.25 inch strip
48297                                                                    based on weight (51-100 lbs)
48298                                                                    based on weight (60-120 lbs)
48299                                                                                 0.25 inch strip
48300                                                                    based on weight (51-100 lbs)
48306                                                                    based on weight (51-100 lbs)
48307                                                                                             5-6
48310                                                                    based on weight (51-100 lbs)
48314                                                                                     unspecified
48322                                                                           1 tablet/pill/capsule
48327                                                                                     application
48328                                                                           1 tablet/pill/capsule
48334                                                                                     unspecified
48336                                                                                     unspecified
48337                                                                                     unspecified
48338                                                                                     unspecified
48339                                                                                     unspecified
48342                                                                                     unspecified
48343                                                                                     unspecified
48344                                                                                         23, 460
48345                                                                                             1-2
48350                                                                                     unspecified
48351                                                                                     unspecified
48352                                                                                     unspecified
48353                                                                                     unspecified
48354                                                                                     unspecified
48355                                                                                     unspecified
48376                                                                                                
48380                                                                           1 tablet/pill/capsule
48381                                                                           1 tablet/pill/capsule
48383                                                                                 based on weight
48384                                                                    based on weight (51-100 lbs)
48394                                                                                     unspecified
48406                                                                                     unspecified
48420                                                                                         80, 400
48438                                                                    based on weight (50-100 lbs)
48439                                                           23 milbemycin oxime, 228 praziquantel
48441                                                                    based on weight (51-100 lbs)
48442                                                                     based on weight (44-88 lbs)
48444                                                            272 ivermectin, 227 pyrantel pamoate
48447                                                                                 based on weight
48448                                                                    based on weight (60-120 lbs)
48481                                                                                    small amount
48483                                                                                    small amount
48494                                                                           1 tablet/pill/capsule
48495                                                                           1 tablet/pill/capsule
48496                                                                                 based on weight
48497                                                                                 based on weight
48498                                                                                 based on weight
48500                                                                  based on weight (50.1-100 lbs)
48502                                                                1.5 tablets/pills/capsules - 500
48504                                                                                 based on weight
48505                                                                                 based on weight
48513                                                                    based on weight (51-100 lbs)
48540                                                                                         23, 460
48541                                                                    based on weight (51-100 lbs)
48542                                                                     based on weight (44-88 lbs)
48598                                                                                     unspecified
48602                                                                                        tapering
48610                                                                                        114, 136
48611                                                            272 ivermectin, 227 pyrantel pamoate
48615                                                            272 ivermectin, 227 pyrantel pamoate
48621                                                                                     application
48624                                                                                     as directed
48633                                                                                     unspecified
48636                                                                                     unspecified
48643                                                                           1 tablet/pill/capsule
48661                                                                    based on weight (51-100 lbs)
48664                                                                    based on weight (51-100 lbs)
48667                                                                    based on weight (51-100 lbs)
48668                                                                     based on weight (45-88 lbs)
48673                                                                                     unspecified
48680                                                                                 based on weight
48683                                                                       based on weight (55+ lbs)
48684                                                                       based on weight (50+ lbs)
48692                                                                                     unspecified
48693                                                                                     unspecified
48694                                                                                     unspecified
48696                                                                    based on weight (50-100 lbs)
48697                                                                   based on weight (24.1-60 lbs)
48698                                                                     based on weight (45-88 lbs)
48712                                                                    based on weight (50-100 lbs)
48713                                                                   based on weight (24.1-60 lbs)
48718                                                                    based on weight (51-100 lbs)
48719                                                                                             1-2
48720                                                                           1 tablet/pill/capsule
48721                                                                    based on weight (50-100 lbs)
48722                                                                                 based on weight
48724                                                                    based on weight (50-100 lbs)
48725                                                                                          collar
48729                                                                                     unspecified
48733                                                                                 based on weight
48734                                                                    based on weight (50-100 lbs)
48735                                                                    based on weight (50-100 lbs)
48736                                                                                          collar
48770                                                                                0.125 inch strip
48782                                                                                     unspecified
48802                                                                                     unspecified
48806                                                                                    small amount
48808                                                                                            8-10
48812                                                                                     2.68of 9.8%
48819                                                                                         23, 460
48821                                                                                         23, 460
48845                                                                    based on weight (51-100 lbs)
48855                                                                                        27, 1620
48859                                                                                      0.025, 2.5
48862                                                                                         10, 100
48889                                                                                  1 pack/package
48890                                                                    based on weight (51-100 lbs)
48891                                                                                 based on weight
48892                                                                                     application
48894                                                           23 milbemycin oxime, 228 praziquantel
48902                                                                                     unspecified
48906                                                                                     unspecified
48918                                                                                     unspecified
48935                                                                                     unspecified
48946                                                                      1.5 tablets/pills/capsules
48994                                                                                        100, 400
48997                                                                                     unspecified
49002                                                            272 ivermectin, 227 pyrantel pamoate
49005                                                                                     unspecified
49012                                                                                     application
49016                                                                     based on weight (44-88 lbs)
49017                                                                    based on weight (50-100 lbs)
49018                                                                       based on weight (25+ lbs)
49025                                                                    based on weight (50-100 lbs)
49026                                                                     based on weight (44-88 lbs)
49033                                                                                     as directed
49034                                                                                     as directed
49035                                                                                     as directed
49036                                                                                     unspecified
49042                                                                                     unspecified
49044                                                                                     unspecified
49046                                                                                     unspecified
49051                                                                                     unspecified
49052                                                                                     unspecified
49082                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                    based on weight (51-100 lbs)
49096                                                                                     unspecified
49105                                                                                     unspecified
49113                                                                                     application
49117                                                            272 ivermectin, 227 pyrantel pamoate
49120                                                                                        160, 800
49123                                                                    based on weight (60-120 lbs)
49127                                                                                     unspecified
49128                                                                    based on weight (51-100 lbs)
49129                                                                  based on weight (60.1-121 lbs)
49130                                                                                    small amount
49163                                                                                     unspecified
49164                                                                    based on weight (51-100 lbs)
49167                                                                                     unspecified
49168                                                                                     unspecified
49169                                                                    based on weight (51-100 lbs)
49170                                                                                 based on weight
49184                                                                                     unspecified
49193                                             425 s-adenosylmethionine, 35 silybin a + b, 120 spc
49196                                          680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                     unspecified
49209                                                                                     unspecified
49216                                                                     based on weight (20-40 lbs)
49217                                                                    based on weight (60-120 lbs)
49218                                                                    based on weight (60-120 lbs)
49219                                                              27 milbemycin oxime, 1620 spinosad
49220                                                                                        27, 1620
49227                                                                                    small amount
49229                                                                                    small amount
49231                                                                                    small amount
49232                                                                                  0.5 inch strip
49248                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
49252                                                                    based on weight (51-100 lbs)
49253                                                                     based on weight (44-88 lbs)
49316                                                                                     unspecified
49323                                                                     based on weight (45-88 lbs)
49324                                                                    based on weight (51-100 lbs)
49343                                                                    based on weight (51-100 lbs)
49346                                                                    based on weight (51-100 lbs)
49348                                                                    based on weight (51-100 lbs)
49350                                                                    based on weight (51-100 lbs)
49351                                                                    based on weight (60-120 lbs)
49352                                                                    based on weight (51-100 lbs)
49372                                                                           1 tablet/pill/capsule
49376                                                                    based on weight (51-100 lbs)
49377                                                                     based on weight (45-88 lbs)
49378                                                                    based on weight (51-100 lbs)
49379                                                                       based on weight (55+ lbs)
49388                                                                    based on weight (51-100 lbs)
49393                                                                                     unspecified
49394                                                                                     unspecified
49395                                                                                     unspecified
49398                                                                                     unspecified
49403                                                                                     unspecified
49404                                                                                     unspecified
49408                                                                       based on weight (50+ lbs)
49409                                                                       based on weight (50+ lbs)
49437                                                                    based on weight (61-100 lbs)
49438                                                                    based on weight (50-100 lbs)
49442                                                                                 based on weight
49460                                                                     based on weight (56-95 lbs)
49461                                                                    based on weight (50-100 lbs)
49462                                                                        2 tablets/pills/capsules
49463                                                                    based on weight (51-100 lbs)
49473                                                                    based on weight (51-100 lbs)
49509                                                                      based on weight (100+ lbs)
49510                                                                    based on weight (50-100 lbs)
49518                                                            272 ivermectin, 227 pyrantel pamoate
49520                                                                                 2.2, 14.8, 16.6
49523                                                            272 ivermectin, 227 pyrantel pamoate
49526                                                                                 0.05%, 0.5%, 3%
49531                                                                                     unspecified
49549                                                                    based on weight (50-100 lbs)
49550                                                                    based on weight (60-121 lbs)
49553                                                                    based on weight (50-100 lbs)
49554                                                                  based on weight (60.1-121 lbs)
49567                                                                    based on weight (51-100 lbs)
49568                                                                                        inhalant
49569                                                                           1 tablet/pill/capsule
49572                                                                    based on weight (51-100 lbs)
49588                                                            272 ivermectin, 227 pyrantel pamoate
49590                                                                   based on weight (55.1-88 lbs)
49591                                                                    based on weight (51-100 lbs)
49592                                                                           1 tablet/pill/capsule
49593                                                                                     unspecified
49596                                                                                     unspecified
49601                                                                                     unspecified
49605                                                                           1 tablet/pill/capsule
49607                                                                                       27 , 1620
49608                                                                           1 tablet/pill/capsule
49645                                                                    based on weight (51-100 lbs)
49649                                                                                     application
49654                                                                                     unspecified
49659                                                                                 0.25 inch strip
49698                                                                    based on weight (60-120 lbs)
49699                                                                       based on weight (55+ lbs)
49705                                                                                     unspecified
49731                                                                           1 tablet/pill/capsule
49748                                                                                                
49753                                                                       based on weight (55+ lbs)
49754                                                                     based on weight (45-88 lbs)
49755                                                                    based on weight (51-100 lbs)
49756                                                                     based on weight (45-88 lbs)
49757                                                                  based on weight (50.1-100 lbs)
49758                                                                    based on weight (50-100 lbs)
49766                                                                                     unspecified
49767                                                                     based on weight (45-88 lbs)
49768                                                                                 based on weight
49769                                                                                     unspecified
49773                                                                                     unspecified
49792                                                                    based on weight (51-100 lbs)
49793                                                                  based on weight (60.1-121 lbs)
49799                                                                                     unspecified
49812                                                                                     unspecified
49820                                                                           1 tablet/pill/capsule
49821                                                                           1 tablet/pill/capsule
49845                                                                           1 tablet/pill/capsule
49846                                                                           1 tablet/pill/capsule
49849                                                                                     application
49852                                                                           1 tablet/pill/capsule
49854                                                                                  1 pack/package
49855                                                                        2 tablets/pills/capsules
49857                                                                                 based on weight
49861                                                                     based on weight (56-90 lbs)
49862                                                                     based on weight (56-90 lbs)
49871                                                                        based on weight (20 lbs)
49878                                                                    based on weight (51-100 lbs)
49883                                                                                  1 pack/package
49886                                                                    based on weight (51-100 lbs)
49889                                                                    based on weight (51-100 lbs)
49890                                                                     based on weight (56-95 lbs)
49898                                                                        based on weight (20 lbs)
49905                                                                    based on weight (51-100 lbs)
49906                                                                                    small amount
49907                                                                    based on weight (51-100 lbs)
49908                                                                    based on weight (51-100 lbs)
49911                                                                    based on weight (51-100 lbs)
49912                                                                     based on weight (56-95 lbs)
49963                                                              based on weight (51-100 lbs) - 272
49966                                                                                     application
49978                                                                    based on weight (51-100 lbs)
49985                                                                    based on weight (51-100 lbs)
49986                                                                                 based on weight
49987                                                                                 based on weight
49990                                                                                  1 pack/package
49991                                                                    based on weight (51-100 lbs)
49992                                                                                             4-6
49993                                                                                 based on weight
49996                                                                                     as directed
50000                                                                           1 tablet/pill/capsule
50001                                                                    based on weight (51-100 lbs)
50004                                                                    based on weight (51-100 lbs)
50006                                                                                 based on weight
50007                                                                                     unspecified
50008                                                                    based on weight (51-100 lbs)
50009                                                                                 based on weight
50011                                                                                     unspecified
50012                                                                                     unspecified
50014                                                                                     unspecified
50029                                                                           1 tablet/pill/capsule
50033                                                                           1 tablet/pill/capsule
50048                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
50050                                                                                     unspecified
50077                                                                                 based on weight
50107                                                                    based on weight (51-100 lbs)
50108                                                                     based on weight (44-88 lbs)
50115                                                                                     unspecified
50116                                                                     based on weight (20-60 lbs)
50117                                                                    based on weight (50-100 lbs)
50118                                                                    based on weight (50-100 lbs)
50154                                                           23 milbemycin oxime, 228 praziquantel
50159                                                                                     unspecified
50161                                                                                     unspecified
50187                                                                    based on weight (51-100 lbs)
50189                                                                    based on weight (51-100 lbs)
50190                                                                    based on weight (51-100 lbs)
50194                                                                    based on weight (51-100 lbs)
50195                                                                       based on weight (55+ lbs)
50196                                                                    based on weight (51-100 lbs)
50198                                                                    based on weight (51-100 lbs)
50199                                                                       based on weight (55+ lbs)
          dose_unit
22      unspecified
40            tube 
41      unspecified
42             tube
46            spray
48             tube
49            drops
51             drop
59             drop
60             drop
62               ml
63             drop
67             drop
70             pump
74             pump
84             pump
87             pump
91            drops
111           drops
112           drops
113           drops
114           drops
149            tube
150             tsp
151           spray
152           spray
153            drop
155            tube
167     unspecified
188             tsp
192            tbsp
220           spray
230             mcg
233           spray
235             mcg
236           spray
237              ml
238            tbsp
242              ml
257           units
275             tsp
276           spray
277           drops
279           spray
280          sprays
310             mcg
317           units
318           units
324            pump
328            tube
329           drops
332            tube
333            tube
347              mg
348              mg
350              mg
351              mg
353              mg
355              mg
366     unspecified
368              mg
375           spray
376            drop
383            drop
384            drop
385           spray
386              ml
403             mcg
404              mg
414              mg
447           drops
449     unspecified
453           drops
496             mcg
498              ml
519              ml
537           drops
597           drops
598            drop
603              ml
604           spray
610           drops
619           spray
637              ml
642              ml
686     unspecified
688              mg
703          sprays
704             ml 
709     unspecified
710     unspecified
712     unspecified
725              mg
728            drop
729            drop
730             mcg
734            drop
738            drop
739           drops
754           drops
755             tsp
757            drop
778     unspecified
785           spray
790           spray
792              ml
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803           spray
804              ml
810           drops
816           drops
819             mcg
820             mcg
823              ml
824          sprays
832     unspecified
851             mcg
862            tube
871              mg
874              mg
877           drops
878              mg
879              mg
880              mg
884              mg
887              mg
891              mg
893              mg
899              mg
901           drops
905              ml
913           drops
921            drop
950           units
955            tube
958             mcg
969           drops
977           drops
982           spray
983           spray
989           drops
1001    unspecified
1017             ml
1018           tube
1020             ml
1021             ml
1027          spray
1029             ml
1030           drop
1031          drops
1033          drops
1036           drop
1039           drop
1042           drop
1050           tube
1072          drops
1073          drops
1074             ml
1087             ml
1091          drops
1097             mg
1099          drops
1100          drops
1101          spray
1108          spray
1111             mg
1112             ml
1116            mcg
1129          drops
1150          drops
1152          spray
1153           tube
1154           drop
1155          drops
1159             ml
1160          drops
1161          drops
1168          units
1169          units
1170             ml
1173             ml
1174             mg
1175  other specify
1176            mcg
1177  other specify
1179           tbsp
1185           tbsp
1186         sprays
1187             mg
1189          drops
1190           tube
1193             mg
1194          units
1195          spray
1208             gm
1217            mcg
1226          drops
1233    unspecified
1247             ml
1285             mg
1336    unspecified
1344            tsp
1346             ml
1355           tube
1371          drops
1377             mg
1378             mg
1379             mg
1380             mg
1398          drops
1404          drops
1405          drops
1415             ml
1419          spray
1420             mg
1422          drops
1434           drop
1435          spray
1438          drops
1441          drops
1442          drops
1443          drops
1450          drops
1451             gm
1459             gm
1462             ml
1464          spray
1473    unspecified
1475    unspecified
1491          units
1499             mg
1500             mg
1501          spray
1511          drops
1512             ml
1514             ml
1528             ml
1529             ml
1532           tube
1534          units
1535          units
1536          drops
1537             mg
1538             mg
1539           tube
1541    unspecified
1542    unspecified
1556          drops
1572             mg
1586             oz
1587             ml
1598           tube
1599            mcg
1633           tube
1634          drops
1635         sprays
1636          units
1650    unspecified
1663          drops
1668          drops
1683          drops
1684           drop
1685           tube
1689          drops
1692           drop
1697            tsp
1708             mg
1710             mg
1712            tsp
1715            tsp
1718             mg
1720            tsp
1730            mcg
1743            mcg
1747           tube
1748             ml
1749             ml
1756             ml
1757             ml
1758          drops
1759             gm
1760          mg/ml
1761             mg
1769             mg
1773          spray
1774             mg
1789          drops
1791    unspecified
1794    unspecified
1795    unspecified
1796           tube
1798             ml
1805          drops
1809             mg
1819          drops
1820          drops
1823          drops
1845          drops
1846          drops
1847          drops
1848          drops
1849             ml
1850             ml
1851             ml
1867          drops
1872          drops
1877           drop
1887          drops
1888             ml
1917          spray
1922          drops
1925          drops
1926            tsp
1928           tube
1929           tube
1931           pump
1939            ml 
1941           drop
1945             gm
1948           drop
1962         sprays
1965             ml
1980             ml
1981          drops
1982           drop
1983           tbsp
1984           tube
1985             ml
1994    unspecified
1998           pump
2006            mcg
2012    unspecified
2013    unspecified
2016             ml
2022          spray
2025          drops
2026             ml
2029            mcg
2030             mg
2032             ml
2033          drops
2034           drop
2041           tube
2042             ml
2050          drops
2075           drop
2083          spray
2084             ml
2085           tube
2087             gm
2088          spray
2089          drops
2091          drops
2093           tube
2107           tube
2108             gm
2109           pump
2110           tube
2113           tube
2115          drops
2116             ml
2123             gm
2126             ml
2127           drop
2149           drop
2151             ml
2161             ml
2165           pump
2166          drops
2195           tube
2199           tube
2200         sprays
2201          spray
2202           tube
2203          drops
2204           tube
2205             ml
2206             ml
2207          drops
2211          drops
2219           drop
2220             ml
2224             ml
2226             ml
2229             gm
2233             mg
2241             gm
2243            tsp
2244           drop
2250           drop
2255          drops
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2269    unspecified
2270    unspecified
2272             ml
2278            mcg
2279          units
2280             ml
2283          drops
2301            tsp
2302             ml
2390           tube
2398          drops
2404             ml
2405          drops
2409             mg
2418            mcg
2428             mg
2463          drops
2464          units
2467            tbs
2473          drops
2474          drops
2477             mg
2478             mg
2479         sprays
2481             gm
2482           pump
2486           pump
2487          drops
2491             ml
2492             ml
2499             ml
2500             ml
2501             mg
2502             mg
2503             mg
2504          drops
2505             ml
2506            tsp
2508             ml
2517             mg
2518          drops
2534          drops
2539          spray
2540          spray
2542          spray
2543          drops
2545          spray
2546           tube
2547             ml
2548             ml
2549    unspecified
2550    unspecified
2558          drops
2559           pump
2560           pump
2562             mg
2566             mg
2575    unspecified
2578           tube
2580          drops
2583             ml
2599          drops
2600             ml
2642          drops
2651             gm
2652          drops
2653          drops
2655    unspecified
2659           drop
2660          spray
2661           drop
2710             ml
2721          drops
2726          spray
2731             mg
2735             mg
2737             mg
2738             mg
2739             mg
2742             ml
2743             ml
2745             ml
2746          spray
2748           tube
2749             gm
2753             gm
2756             gm
2805             mg
2815             mg
2818          drops
2825          pumps
2827          drops
2828             ml
2833          units
2838             ml
2839             ml
2842             oz
2844             mg
2846             ml
2855             gm
2869          units
2897           drop
2900          drops
2903          spray
2904          drops
2905          drops
2907           tube
2911          drops
2912           tube
2913             gm
2919             mg
2920             mg
2921           tube
2922             gm
2923             ml
2925            tsp
2941             mg
2942  other specify
2943            tsp
2944          drops
2946          drops
2958          drops
2959             ml
2960           tube
2961           tube
2962           tube
2963          spray
2964           pump
2974             ml
2975           tbsp
2978           tube
2981             mg
2988          drops
2993    unspecified
2997             mg
3002             mg
3003           pump
3007          drops
3028          drops
3031    unspecified
3055           drop
3058           tube
3060          drops
3095          spray
3110          drops
3119          drops
3147          drops
3179             mg
3180             mg
3208             mg
3209             mg
3246          spray
3247           tube
3250          drops
3251           tube
3253          spray
3257            mcg
3271         sprays
3278           pump
3280           drop
3284           tube
3287             ml
3291           tube
3293           tube
3294          drops
3300          pumps
3305             gm
3312             gm
3313          spray
3339             ml
3342          drops
3345             mg
3346             mg
3350          units
3360             ml
3366          drops
3372          units
3375          units
3376          drops
3394    unspecified
3399             mg
3403             mg
3404           drop
3405          drops
3421          drops
3422          drops
3425             ml
3426           tube
3429          units
3437          drops
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3451             mg
3455             mg
3456             gm
3457             gm
3458             gm
3459             mg
3488             gm
3490           pump
3491           tube
3492           tube
3495          drops
3496          drops
3497          drops
3498          drops
3512           pump
3513           pump
3514          spray
3515          units
3516          spray
3517    unspecified
3519          drops
3520             mg
3522             mg
3525            mcg
3530  other specify
3531          drops
3535          drops
3581          drops
3619             mg
3622          drops
3631             gm
3632          drops
3635             mg
3639          drops
3640          drops
3641          drops
3649             mg
3650          units
3652             mg
3666             gm
3667             gm
3675          drops
3684             ml
3685           tube
3691          drops
3692          spray
3693             gm
3698           tube
3699            tsp
3701           pump
3704          spray
3705             gm
3706             mg
3710    unspecified
3718          drops
3719          drops
3725            mcg
3726          drops
3735          drops
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3750             mg
3760             mg
3773          drops
3784             mg
3785             mg
3786             mg
3789    unspecified
3797           tube
3798          spray
3800           pump
3815          units
3829          drops
3835            tbs
3836            tbs
3838          units
3840           drop
3848          drops
3857          drops
3858             gm
3859             ml
3860          drops
3861             gm
3867          drops
3870             mg
3871             mg
3872          units
3874           tube
3881            mcg
3886          spray
3889           tube
3897           tbsp
3898    unspecified
3900            mcg
3903          pumps
3906             gm
3911             gm
3938             gm
3943           drop
3945          drops
3946           pump
3952          spray
3972             ml
3980           tube
3984           tube
3989             gm
3990          drops
4000    unspecified
4017           tube
4030             mg
4031            tsp
4042    unspecified
4045             ml
4058           drop
4059             mg
4060            mcg
4063            mcg
4064             mg
4066             gm
4067           tube
4068             ml
4069             mg
4070             mg
4071          drops
4072          drops
4073           tube
4074             ml
4075             mg
4077             mg
4087          drops
4088             ml
4089          drops
4092          drops
4095          drops
4097             mg
4111          drops
4112           pump
4113          drops
4114          drops
4116             mg
4117          drops
4118          drops
4119          drops
4120          drops
4125             mg
4127           tube
4128          drops
4131           tube
4132    unspecified
4133    unspecified
4134          drops
4162             ml
4172             gm
4183           tube
4184          units
4189           tube
4190          drops
4191           drop
4193          drops
4198          spray
4199            tsp
4209             ml
4210             ml
4212             mg
4213             mg
4215             mg
4216          drops
4218          drops
4245          drops
4247            mcg
4266          drops
4274    unspecified
4298           drop
4299          drops
4302           tube
4304            tsp
4305             ml
4306           tube
4307             ml
4308             mg
4309             mg
4311             mg
4313          drops
4314           drop
4323             ml
4324             ml
4325             ml
4326             gm
4336           pump
4338             ml
4348           tube
4349           tube
4350             ml
4353             ml
4354          drops
4368             mg
4371             mg
4384             mg
4389           tube
4390          drops
4395            mcg
4405             mg
4409          tube 
4426           tube
4427           tube
4428          spray
4430           tube
4431          drops
4444           drop
4445           drop
4446           drop
4454             ml
4469           drop
4470           drop
4471           pump
4472           pump
4480           pump
4481           pump
4483             ml
4486          drops
4497          drops
4499             mg
4500             mg
4501            tsp
4502          spray
4504          spray
4505           drop
4509           tube
4510             ml
4511            tsp
4515           tbsp
4516          spray
4517             gm
4524          spray
4532             ml
4533            tsp
4536           drop
4544          units
4545          spray
4547          drops
4558          spray
4559          drops
4560          spray
4561         sprays
4562           tube
4564           drop
4565          pumps
4566           pump
4567           tube
4568          drops
4569           tube
4587          units
4597             ml
4599            mcg
4611             mg
4627             ml
4628             ml
4629             mg
4631             ml
4634           drop
4638             ml
4640             gm
4642             mg
4643             ml
4648             mg
4649             ml
4651             ml
4652             ml
4654             ml
4655             mg
4695             ml
4717             mg
4719          drops
4720          drops
4726          spray
4738          spray
4739             ml
4743          drops
4744          drops
4745             mg
4748          units
4757          drops
4760            ml 
4763            ml 
4764             oz
4766           drop
4777           drop
4780           drop
4782           drop
4801             mg
4802           drop
4805          drops
4806            tsp
4813    unspecified
4824             ml
4826           drop
4828          spray
4832  other specify
4853             ml
4855             mg
4858             mg
4859            mcg
4861            mcg
4862            mcg
4881          spray
4902  other specify
4904  other specify
4905             mg
4910          spray
4912             mg
4913           pump
4914             mg
4917            mcg
4935          drops
4956          spray
4960             ml
4968             mg
4969             mg
4980          spray
4981             mg
4996             ml
4998          drops
5043          units
5046          units
5078          spray
5122          units
5123          units
5127             ml
5134          units
5140             mg
5159    unspecified
5160    unspecified
5161    unspecified
5173           tube
5174          drops
5191             mg
5193          drops
5195          drops
5203             ml
5210           pump
5211           tube
5212             ml
5213             ml
5214          spray
5220          spray
5221          spray
5222          drops
5223          drops
5225             ml
5234           tube
5235            ml 
5243             ml
5244             ml
5247          spray
5248          spray
5253             ml
5255           drop
5256             ml
5257         sprays
5258           drop
5261          drops
5262           drop
5264           drop
5265           tube
5270          spray
5271          drops
5289             ml
5332             ml
5333             ml
5334          drops
5335          drops
5336          drops
5337            mcg
5340          spray
5354          drops
5357          drops
5359            mcg
5360            mcg
5362          drops
5369          spray
5377            mcg
5378  other specify
5379           tube
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5391          drops
5392           tube
5403             ml
5424             ml
5428             ml
5440             mg
5460          drops
5464             mg
5483          drops
5484             mg
5491          drops
5492          pumps
5497           tube
5498          spray
5499             gm
5500          drops
5501          drops
5502             ml
5507           pump
5508            tsp
5509            tsp
5511          drops
5513             ml
5527            tsp
5528           tube
5529          drops
5533          drops
5534          drops
5535          drops
5537          drops
5541           tube
5542          drops
5545          drops
5546             ml
5552            tbs
5553            tbs
5557          drops
5568           drop
5571          spray
5576          drops
5577          drops
5578          drops
5595          drops
5600          drops
5602             gm
5607             mg
5626             gm
5627          units
5628          units
5629             mg
5630             mg
5631         sprays
5632          spray
5649          drops
5681             ml
5682             ml
5695             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5728             mg
5729          drops
5731          drops
5747           tube
5760          drops
5762             mg
5768           tube
5771             mg
5777             ml
5804             mg
5814            tsp
5834            mcg
5839             mg
5840             mg
5858          drops
5869            mcg
5877           tube
5884           tube
5887          drops
5913         sprays
5917          drops
5930          spray
5932    unspecified
5933          drops
5934          drops
5935          drops
5936           tube
5937          drops
5941          spray
5942           drop
5945           tube
5963            tsp
5964            tsp
5965             mg
5967             mg
5976          drops
5980             ml
5981             ml
5988             mg
5991           tube
5992             ml
5993            mcg
5994          drops
6000             mg
6002             ml
6003             mg
6004             ml
6014            mcg
6015            mcg
6016             mg
6017             mg
6036             mg
6038          spray
6039             ml
6059             ml
6063           tube
6068          units
6069           tube
6071           tube
6072             ml
6076          spray
6078             ml
6088           drop
6090          drops
6093          drops
6095          drops
6101             mg
6102             mg
6104             mg
6109             mg
6129          drops
6130          drops
6132             ml
6133             ml
6134          units
6135          units
6136          drops
6137           drop
6139          drops
6140             ml
6148             mg
6149             mg
6150             mg
6161             mg
6164            tsp
6200           tube
6202           tube
6206           pump
6208            ml 
6217             mg
6218             gm
6221          drops
6224         sprays
6225          drops
6226             ml
6231          drops
6232           drop
6244          drops
6254           tube
6257             ml
6258            ml 
6262           pump
6263          drops
6266          drops
6267          drops
6275          spray
6282            mcg
6283          drops
6284             mg
6293           pump
6302            mcg
6307             mg
6312    unspecified
6319    unspecified
6320    unspecified
6325             mg
6326             ml
6328             mg
6329          drops
6331           drop
6341          spray
6343             mg
6358             gm
6390    unspecified
6395          drops
6405           tube
6406             gm
6411          units
6437            mcg
6441             mg
6444           tube
6451             gm
6459             mg
6461          drops
6474             gm
6475             ml
6486             mg
6495           drop
6499             ml
6500             ml
6522           pump
6523           pump
6527           tube
6528           tube
6555         sprays
6562          spray
6565           tube
6569          drops
6570           tube
6571             ml
6573             ml
6579          drops
6581            mcg
6594          drops
6602           drop
6606            mcg
6612             ml
6625             ml
6636             ml
6644             ml
6647             gm
6648             ml
6650             ml
6657            tsp
6658           drop
6662           drop
6663          drops
6680          drops
6683          spray
6687           tube
6688           tube
6693          drops
6694             mg
6696          drops
6697          drops
6698          drops
6702           drop
6703          drops
6714             mg
6715          drops
6716             ml
6717          drops
6733            mcg
6751    unspecified
6759          drops
6760             ml
6763            mcg
6764          drops
6778             ml
6779          drops
6781          drops
6783          drops
6786          drops
6796          drops
6797             mg
6815             mg
6816             ml
6817           tube
6818          drops
6824    unspecified
6826             mg
6828         sprays
6868           pump
6880           pump
6886          drops
6891             ml
6892             ml
6909             ml
6910             ml
6928             ml
6934          drops
6935          drops
6936          drops
6946             mg
6956    unspecified
6957            tsp
6981             ml
6982          drops
6983          drops
6984           tube
6986             mg
7002             mg
7005    unspecified
7006    unspecified
7017          spray
7021             ml
7025          drops
7027             gm
7030             mg
7042          drops
7054            mcg
7067           pump
7071          drops
7092           tube
7093          drops
7095             mg
7096             mg
7116          drops
7127    unspecified
7130             mg
7131            mcg
7137           tube
7149          spray
7151             ml
7152          drops
7153             gm
7154             gm
7155             gm
7172             ml
7173           drop
7175             oz
7177             oz
7180           tube
7189             ml
7208          drops
7218             mg
7243            mcg
7247          tube 
7248             ml
7249             ml
7260  other specify
7261             ml
7262             ml
7291          spray
7295           tube
7297             gm
7320             gm
7342             gm
7344             gm
7345          drops
7346          drops
7371          drops
7413             ml
7499            mcg
7503          drops
7510             ml
7511             ml
7512             ml
7513             ml
7519            mcg
7521            mcg
7524             ml
7525            mcg
7526             mg
7551          spray
7555           drop
7563          drops
7564    unspecified
7565            mcg
7566          drops
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7583           tube
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7598             gm
7635             mg
7660          drops
7671             mg
7673             ml
7674           tube
7675             mg
7678           tube
7679           tube
7681             mg
7692             mg
7696             mg
7699             mg
7701             mg
7705           pump
7732             ml
7742          units
7743          units
7746          spray
7747             ml
7748          units
7749          units
7750          units
7751          drops
7754             ml
7759          spray
7763          drops
7772    unspecified
7776    unspecified
7783          drops
7784          spray
7795          drops
7812           tube
7818    unspecified
7820    unspecified
7822    unspecified
7832             ml
7839          spray
7845          drops
7846          drops
7848             ml
7852    unspecified
7853           tube
7854    unspecified
7862             mg
7883         sprays
7884           pump
7887          units
7889          units
7895          drops
7926           tube
7929          drops
7944          drops
7946          drops
7961          spray
7966             ml
7967          drops
7968            tsp
7969             ml
7970             mg
7973          drops
7987             mg
7988             gm
7993          drops
7995             mg
7998          drops
8000          spray
8009           drop
8012          drops
8014             ml
8017             ml
8029            mcg
8030          spray
8040            mcg
8042             mg
8043             mg
8044             mg
8045             mg
8075    unspecified
8086             ml
8091             mg
8098             oz
8099             oz
8120          drops
8121             ml
8123             ml
8125          units
8128           tube
8130             gm
8131             gm
8136             gm
8137             gm
8138             gm
8139             gm
8140           pump
8160           tube
8182           tube
8184          drops
8185          drops
8186          drops
8187          drops
8188           pump
8195           pump
8196          spray
8205          spray
8206          spray
8207          spray
8208          drops
8209             mg
8210          units
8211          units
8212          drops
8215          drops
8221          drops
8222          drops
8223          units
8224            mcg
8234          spray
8235           tube
8238          units
8248          drops
8251             mg
8252           tbsp
8280    unspecified
8284             gm
8293             gm
8296          drops
8297             ml
8298          drops
8314             mg
8315             mg
8337             mg
8338             mg
8349          drops
8354          drops
8355          drops
8358          spray
8359          drops
8362             ml
8369          drops
8370          spray
8371          drops
8376          drops
8377          spray
8378          drops
8389            mcg
8408          drops
8410          drops
8418          spray
8420           tube
8421          spray
8424           pump
8425          drops
8427             ml
8435             ml
8436          drops
8440            mcg
8454           tube
8466           drop
8467          drops
8475          drops
8478             gm
8509             ml
8514          drops
8515          drops
8528           tube
8531          drops
8541             oz
8550             mg
8554          spray
8555          spray
8578           tube
8581           tbsp
8582          drops
8583          drops
8584          drops
8585             gm
8586             gm
8588          drops
8591           drop
8607          drops
8609          spray
8613             mg
8673             mg
8674           pump
8675          spray
8676             ml
8677           tube
8694           tube
8697             ml
8702          drops
8707          drops
8731           tube
8735            tsp
8736          drops
8744    unspecified
8745    unspecified
8756           drop
8757             mg
8759           drop
8760           drop
8768             gm
8769           tube
8770          drops
8771             ml
8777          drops
8778          drops
8779           tube
8780          drops
8781          drops
8786          drops
8790             ml
8791             ml
8792    unspecified
8793          drops
8794          drops
8795             ml
8797             mg
8805          drops
8815           pump
8819          pumps
8820             gm
8825             mg
8826             ml
8828          drops
8831            mcg
8833          drops
8837             mg
8843             ml
8851    unspecified
8852    unspecified
8853    unspecified
8860          drops
8875    unspecified
8876    unspecified
8877          drops
8879           drop
8885            mcg
8908             mg
8911          drops
8929            mcg
8930            mcg
8961            mcg
8962            mcg
9026           tube
9046          drops
9047          drops
9050          spray
9052             oz
9053             ml
9054             ml
9055             ml
9056             mg
9060             ml
9064          drops
9065             gm
9070          drops
9071          drops
9084    unspecified
9094             ml
9095          drops
9098           drop
9099             mg
9100           tube
9101            tsp
9109             ml
9118           tube
9132             ml
9135             mg
9136          drops
9137             mg
9156          drops
9160           drop
9161  other specify
9170             ml
9187          drops
9189             ml
9193             gm
9202          drops
9230           pump
9236             ml
9239             ml
9240           tube
9241             ml
9242             ml
9244          drops
9252          pumps
9253           tube
9254           tube
9259          units
9267          drops
9269            mcg
9271             mg
9292             mg
9294             mg
9295             mg
9297             mg
9386           tube
9387          drops
9416             ml
9418          drops
9421           drop
9422             ml
9426           drop
9429           drop
9432           pump
9433            tbs
9434           pump
9435           pump
9436             ml
9438          drops
9447          drops
9452            mcg
9453  other specify
9454         sprays
9494          drops
9495           tube
9511             mg
9516          spray
9524             ml
9544           drop
9546           tube
9548             ml
9549            tsp
9584           tbsp
9588          drops
9592    unspecified
9596          drops
9600             ml
9601           tbsp
9602             mg
9603             mg
9604             mg
9609          spray
9610            tsp
9612          spray
9613          drops
9614          spray
9615         sprays
9616           tube
9617           drop
9618          pumps
9619           pump
9620           tube
9621          drops
9635             mg
9640  other specify
9641           tube
9643           tube
9718             ml
9723          units
9759          spray
9760             ml
9761           drop
9763             mg
9764             mg
9765             mg
9766             ml
9770             ml
9785            mcg
9791             mg
9800          spray
9807          drops
9808          drops
9809          drops
9821             ml
9826             ml
9828             mg
9833          spray
9837    unspecified
9840    unspecified
9843    unspecified
9863           tbsp
9865         sprays
9873    unspecified
9877    unspecified
9884            ml 
9889            ml 
9890           drop
9891           drop
9892           drop
9893           drop
9894          units
9895          units
9896          units
9897          drops
9898            tsp
9899           drop
9900           drop
9901           drop
9902          spray
9903          spray
9907    unspecified
9917          spray
9928    unspecified
9931           pump
9935          drops
9942          spray
9943             mg
9944          spray
9945             ml
9963          drops
9966             gm
9968          spray
9970             ml
9972          units
10017          pump
10026            mg
10027           tsp
10037         drops
10042   unspecified
10053         drops
10061          tube
10063         drops
10066          drop
10075           mcg
10092         drops
10093   unspecified
10106           mcg
10107            ml
10108           mcg
10109            ml
10111           mcg
10112           mcg
10113            ml
10115            ml
10116         drops
10119           mcg
10120         drops
10121         spray
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134           ml 
10151         drops
10167         spray
10170            ml
10176          drop
10187            ml
10188        sprays
10195            mg
10198            ml
10200          drop
10209          drop
10219          tube
10230         spray
10231         drops
10232            mg
10233            mg
10234            mg
10235           mcg
10245         drops
10249         drops
10260   unspecified
10264         spray
10273            ml
10274         drops
10275            ml
10276         drops
10301            mg
10312         drops
10313            mg
10314            mg
10316            mg
10320            mg
10324            ml
10334         drops
10335          tube
10345            ml
10347            ml
10348            ml
10349          tbsp
10356          tbsp
10365        sprays
10366         drops
10370           mcg
10372           mcg
10374           mcg
10379            mg
10400            ml
10403          tube
10405         pumps
10408          tube
10409            mg
10410            mg
10412            mg
10429         drops
10435            ml
10436         drops
10441   unspecified
10445          pump
10470            gm
10477           tsp
10478         drops
10483           mcg
10485           mcg
10487           mcg
10499            mg
10503          tube
10505         drops
10506           mcg
10529         drops
10555          tube
10557   unspecified
10565   unspecified
10573   unspecified
10575         drops
10576            mg
10577            mg
10578            mg
10579            mg
10580            mg
10583         drops
10588         drops
10589         drops
10590         drops
10591         drops
10610           mcg
10618            gm
10619            ml
10624         spray
10628          tube
10642            oz
10653        sprays
10655         spray
10667            mg
10671            mg
10678            mg
10682            mg
10683            ml
10684            ml
10685          tube
10686          tube
10687         drops
10689          tube
10693            mg
10694         drops
10696         drops
10697           tbs
10701            mg
10706            mg
10707          tube
10711         drops
10712        sprays
10713         drops
10714         spray
10717         drops
10718         drops
10725          drop
10726          tube
10727         drops
10740   unspecified
10743          drop
10751   unspecified
10755           mcg
10756           tsp
10769           mcg
10780           tsp
10781           tsp
10792           mcg
10794            ml
10796           mcg
10825            ml
10827         drops
10830          tube
10837            ml
10841            ml
10842            ml
10843            ml
10846         drops
10849            gm
10853         drops
10863         drops
10865         units
10866         units
10870            ml
10871          tube
10874          pump
10877          tube
10878          tube
10892         drops
10896         drops
10898            ml
10899         drops
10901         drops
10905         drops
10928         drops
10929         drops
10934         drops
10938         drops
10953         drops
10959         drops
10970            ml
10971            ml
11003         drops
11008         drops
11009          drop
11010         drops
11011            ml
11016         spray
11021   unspecified
11035         drops
11036           tsp
11037          tube
11038          tube
11065            mg
11069           ml 
11070          drop
11085   unspecified
11088   unspecified
11093            mg
11134        sprays
11142   unspecified
11144            oz
11145            oz
11152          drop
11153          tbsp
11155         units
11156         units
11158           ml 
11159         units
11163         units
11165         drops
11182   unspecified
11186         spray
11189            mg
11208            mg
11210          pump
11211         drops
11212            ml
11213   unspecified
11224          drop
11228          tube
11229           mcg
11233          tube
11241            mg
11242         drops
11276            mg
11291          drop
11292         spray
11293            ml
11294          tube
11295            gm
11296         spray
11301            mg
11305            mg
11307          tube
11311           mcg
11312           mcg
11315            mg
11316            mg
11317            mg
11318            mg
11326            ml
11327            gm
11338            ml
11340            mg
11346          drop
11349          drop
11350         units
11351         units
11352         units
11353            mg
11356          tube
11360   unspecified
11368        sprays
11385         spray
11386          tube
11387         drops
11388          tube
11394            ml
11415            ml
11436         drops
11437         drops
11441            mg
11464          drop
11470   unspecified
11471   unspecified
11473            ml
11477            ml
11493   unspecified
11509            ml
11536            mg
11537         units
11538         units
11545            mg
11546          drop
11547            mg
11551   unspecified
11560         drops
11561         spray
11562          tube
11564         units
11567         drops
11568         drops
11570         drops
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11589         drops
11593         drops
11596            ml
11599         drops
11600           tsp
11620         drops
11621         drops
11627         units
11630         units
11633           mcg
11637         drops
11641            mg
11651         drops
11652         drops
11653         spray
11654         drops
11655          drop
11656            ml
11660          tube
11661            ml
11662         drops
11664         drops
11666         drops
11667         drops
11671         drops
11673         drops
11678         drops
11680            ml
11681            ml
11683            ml
11691            ml
11692         drops
11693           tbs
11695            gm
11701            ml
11702           mcg
11709         drops
11710            ml
11719         units
11722         drops
11723            mg
11735         drops
11741          tube
11742            ml
11802            mg
11806         spray
11812         drops
11813            mg
11814         spray
11817            mg
11822          tube
11823            ml
11824            ml
11825            ml
11832           mcg
11833 other specify
11835            ml
11836         drops
11837          pump
11840            mg
11844            mg
11846            mg
11847          pump
11848         drops
11850            mg
11861           mcg
11862           mcg
11873         drops
11874          tube
11875         drops
11876            mg
11881            ml
11882         drops
11889            gm
11898           mcg
11911            mg
11919            ml
11930          drop
11959            mg
11960         spray
11962            mg
11964          drop
11978          tube
11979            ml
11980         drops
11983         units
11993         drops
12009         drops
12010         drops
12014            ml
12018            ml
12019         spray
12020          tube
12043            mg
12047            mg
12048            ml
12051            gm
12054         drops
12090         pumps
12108         drops
12111            ml
12120   unspecified
12128            ml
12129            ml
12130         drops
12135            ml
12136            ml
12154            gm
12155         spray
12159          drop
12160         drops
12164         spray
12173         drops
12215           mcg
12223          tube
12261          tube
12271          tube
12273          tube
12279         drops
12283            mg
12299            mg
12306           tsp
12309           tsp
12313            mg
12314            mg
12322            mg
12324         drops
12334            mg
12336            mg
12337         drops
12342            ml
12343          tube
12346            mg
12349          tube
12351            mg
12353            mg
12364            mg
12366         spray
12376            mg
12379            mg
12394   unspecified
12398           mcg
12402          tbsp
12406         spray
12409            ml
12410            ml
12411         drops
12414          drop
12415          pump
12417         spray
12418         spray
12420         drops
12421         units
12422         units
12423         drops
12427   unspecified
12430         drops
12431          tube
12432         drops
12433           mcg
12434            mg
12438           mcg
12439            mg
12453           mcg
12454         spray
12455           mcg
12456          tube
12457         drops
12461          tube
12462         spray
12463           tbs
12466            mg
12473          pump
12474          drop
12475            mg
12477   unspecified
12481            ml
12485         drops
12487            mg
12495         drops
12497         pumps
12498            gm
12500            gm
12506         drops
12511            ml
12512         drops
12514         drops
12516         units
12520            ml
12521            gm
12523         drops
12528         drops
12529         spray
12530          drop
12535         drops
12536         units
12540            ml
12541         spray
12542            ml
12543            ml
12546          tube
12547         units
12548         units
12549         units
12550            ml
12551           tsp
12552          tube
12553            gm
12554            gm
12569            mg
12571            gm
12578           mcg
12580           mcg
12585           mcg
12588            mg
12589           mcg
12595            mg
12596            mg
12605            mg
12608            mg
12615            ml
12616          tube
12620          tube
12623         drops
12630         units
12632         drops
12636   unspecified
12638          pump
12639          pump
12642           mcg
12645            mg
12686         spray
12692            mg
12693         spray
12714         drops
12730         drops
12732         drops
12735         drops
12738            mg
12740            mg
12744            mg
12749            mg
12754            mg
12755            mg
12756         drops
12771            gm
12774         drops
12780         spray
12784            ml
12787         drops
12788          tbsp
12795         pumps
12796            gm
12797            gm
12801         drops
12826            ml
12828          tube
12836            mg
12849         drops
12850         drops
12861         drops
12865         drops
12866          pump
12870         spray
12873         drops
12879          tube
12880         drops
12881          tube
12882         drops
12894         drops
12895         drops
12901           mcg
12902            mg
12903            mg
12905            ml
12906         drops
12907         spray
12908         drops
12911   unspecified
12916         spray
12920         drops
12929         drops
12942         drops
12943         drops
12945         spray
12948          tube
12949           mcg
12952          pump
12955            ml
12956            ml
12957         drops
12962         drops
12963          drop
12966         drops
12994            gm
13005            ml
13006         drops
13008         drops
13010   unspecified
13013   unspecified
13020   unspecified
13041         drops
13049          tube
13061         spray
13062            ml
13074   unspecified
13075         units
13076         units
13081   unspecified
13084            mg
13086            mg
13096            gm
13104   unspecified
13108            mg
13109            mg
13114            mg
13115            mg
13116            mg
13124         drops
13126         drops
13127            ml
13129         spray
13130            ml
13133         drops
13136          tube
13137            gm
13139           mcg
13142         drops
13143          tube
13148            mg
13149           tsp
13150         drops
13151            ml
13152            ml
13154            mg
13157          drop
13159   unspecified
13160   unspecified
13168            gm
13169          tube
13170         drops
13187         drops
13188            ml
13189           mcg
13195         drops
13196         drops
13198         drops
13199            ml
13208            ml
13209            ml
13233         drops
13246         drops
13248         units
13249         units
13264           mcg
13270            mg
13271          pump
13277         drops
13278            gm
13279            ml
13286            gm
13287            oz
13288           mcg
13297         drops
13298          tube
13299           mcg
13307         drops
13308          tube
13309         spray
13313         spray
13314         drops
13321         drops
13331            gm
13332          tube
13334            mg
13340         drops
13341          tube
13343         drops
13344          drop
13349            mg
13353         drops
13354            ml
13355            ml
13356            mg
13357            ml
13376         units
13405            mg
13411   unspecified
13454         drops
13455         drops
13456            mg
13459         drops
13460            ml
13461         drops
13462          drop
13464           mcg
13468         drops
13470          tube
13471           tsp
13475            ml
13476          tube
13479            ml
13483         drops
13484         drops
13496         drops
13502         units
13503         units
13506            ml
13532            ml
13537            mg
13538            gm
13562            mg
13563         drops
13564            mg
13575          pump
13576            ml
13579         drops
13581            mg
13585            mg
13590          tube
13594         drops
13595         drops
13601         drops
13603            mg
13605            mg
13609          tube
13615         drops
13623         drops
13624         tube 
13625          tube
13628          tube
13631         spray
13654          tube
13657         drops
13666          drop
13693          drop
13723          drop
13724          pump
13730          pump
13737          pump
13740   unspecified
13741   unspecified
13747            mg
13756         drops
13768         drops
13769        sprays
13776         drops
13782          tube
13783           tsp
13796         spray
13893            mg
13894            mg
13896          tbsp
13902            mg
13905            mg
13906            mg
13910            ml
13912   unspecified
13913   unspecified
13925            mg
13943         units
13946         spray
13994         units
13995         units
13996         drops
13998         drops
14006         spray
14007        sprays
14050          drop
14051         pumps
14055            mg
14059         drops
14060         drops
14061            mg
14062            mg
14063         drops
14064         spray
14106         spray
14114          drop
14118            mg
14123            ml
14128            mg
14129            ml
14131            ml
14147         spray
14148            ml
14151            ml
14154            ml
14162            ml
14163            ml
14164         drops
14165         units
14166         units
14170         spray
14172         spray
14173            ml
14174            ml
14175         drops
14177          tbsp
14178        sprays
14180         drops
14181           ml 
14190            mg
14219           ml 
14221         drops
14228   unspecified
14238          drop
14241            ml
14242           mcg
14245            ml
14282            mg
14284         units
14291           tsp
14297           mcg
14301          drop
14302          drop
14319           mcg
14323         spray
14324         drops
14330         drops
14334         spray
14336         drops
14365           mcg
14366          pump
14367         drops
14373         spray
14376            ml
14378         spray
14380            ml
14385            mg
14386            mg
14387            mg
14388            mg
14404            mg
14406            ml
14408          pump
14412            mg
14413            ml
14414          tube
14420           mcg
14421            mg
14426            mg
14428            mg
14429          drop
14431         drops
14432            ml
14433          pump
14434          tube
14443            ml
14444            ml
14445         spray
14446         spray
14447         spray
14448         drops
14449         drops
14451            ml
14455          tube
14471           ml 
14473            ml
14477         units
14479         spray
14488         spray
14489            ml
14490          drop
14495            ml
14498        sprays
14499          drop
14512         units
14513         units
14528          drop
14529          tube
14547         spray
14563            mg
14576            ml
14578            ml
14582            ml
14583         drops
14584         drops
14585         drops
14586         spray
14587         spray
14588            ml
14601         drops
14605            mg
14608            mg
14637         drops
14645            mg
14654 other specify
14656            mg
14658           mcg
14664         spray
14665          tube
14697          drop
14699         drops
14700            ml
14701         drops
14702           mcg
14711         drops
14712          tube
14713            ml
14720            ml
14721            ml
14722          tbsp
14723          tbsp
14726        sprays
14728            mg
14730            mg
14733            mg
14737         drops
14738         drops
14744          tube
14748         pumps
14754          tube
14755         spray
14756         drops
14757         drops
14760         drops
14763            ml
14764         drops
14775   unspecified
14777   unspecified
14778   unspecified
14833            mg
14834            mg
14838            mg
14839            mg
14857         units
14858            mg
14862            mg
14863            mg
14864         units
14867            mg
14870         units
14871         units
14878   unspecified
14883            mg
14884            mg
14899            ml
14911            mg
14913            mg
14914           mcg
14934         units
14943         units
14944            ml
14949            mg
14972         drops
14973          drop
14974         spray
14975         drops
14978         drops
14981         drops
14982         drops
14983            gm
15001           mcg
15002            oz
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15017            ml
15021           mcg
15022            oz
15023          tube
15027            oz
15028            mg
15029            mg
15030            ml
15035         units
15036         units
15045            mg
15048          tube
15055            mg
15059         drops
15061        sprays
15077         drops
15102         drops
15129         drops
15130           mcg
15131            mg
15132            mg
15139         drops
15140         spray
15144         units
15145         units
15150           tsp
15151         units
15155   unspecified
15170            mg
15179            mg
15196            ml
15197         drops
15209          tube
15213            ml
15244            mg
15250            ml
15256         units
15259           tsp
15268            gm
15269         drops
15274   unspecified
15308         spray
15309            ml
15310            ml
15311          tube
15314         units
15315          tube
15317          tube
15319            mg
15321        sprays
15322         spray
15323            oz
15332          drop
15333            gm
15339            mg
15345            mg
15348            mg
15361         drops
15362         drops
15363         drops
15365         drops
15366            ml
15367            ml
15373            ml
15374         drops
15375         drops
15376          drop
15377         drops
15378            ml
15383            mg
15384            mg
15402            oz
15412           mcg
15441            mg
15445         drops
15448           mcg
15451          pump
15453           ml 
15454   unspecified
15512         units
15513         units
15515        sprays
15524         drops
15528            mg
15530            ml
15531            mg
15533         drops
15551          drop
15552          tbsp
15554          tube
15555            ml
15556           ml 
15563          pump
15581         drops
15584         drops
15585            ml
15586         spray
15589         drops
15590            ml
15591          pump
15592         drops
15593            ml
15594         drops
15597          drop
15598          tube
15599            ml
15600          tube
15601         drops
15603   unspecified
15604   unspecified
15613           mcg
15618           mcg
15633            mg
15636         units
15649         spray
15650         drops
15661         drops
15663          tube
15667         drops
15669           mcg
15672           mcg
15673           mcg
15674            mg
15689            ml
15690         units
15691         units
15692         units
15693         units
15699           mcg
15701            ml
15706          pump
15707            mg
15712          tube
15715            mg
15733           mcg
15750   unspecified
15757        sprays
15758         spray
15767         drops
15768         drops
15769         drops
15770         drops
15778            ml
15781         drops
15782         drops
15790          drop
15796            mg
15799   unspecified
15811            ml
15815            ml
15818         units
15829           mcg
15839            gm
15840            ml
15841            gm
15842           tsp
15844          drop
15848          drop
15849         drops
15850         drops
15856         spray
15857          tube
15858            mg
15859         drops
15860            mg
15862        sprays
15863         drops
15867            ml
15868         drops
15869         drops
15870            ml
15886           tsp
15888   unspecified
15889         drops
15890            mg
15891         drops
15892            mg
15907         drops
15911         units
15917         drops
15921          drop
15922            ml
15927            iu
15928         drops
15929         drops
15930         units
15933            iu
15935         units
15937            ml
15944            mg
15945         units
15981            ml
15983            ml
15986            ml
15992            gm
15993            ml
15995         drops
15996            ml
15997           tsp
15998            ml
15999         drops
16000         drops
16005            mg
16007            mg
16009            ml
16016          tube
16026         spray
16033           mcg
16036         spray
16038         drops
16039         spray
16052          tube
16053            ml
16094           mcg
16097            ml
16098            ml
16105            mg
16107            ml
16108            mg
16109            mg
16110         units
16112         mg/kg
16113         drops
16114         drops
16116            mg
16117            mg
16118            mg
16150         drops
16153            gm
16155            ml
16156          drop
16157         spray
16158          drop
16159          tube
16160            ml
16161         drops
16162         spray
16163         tube 
16164            ml
16165            ml
16177            ml
16179            ml
16199            mg
16229          tube
16230            gm
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16251         drops
16253            gm
16285            mg
16286   unspecified
16287            ml
16288            ml
16289            ml
16290         drops
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16312         spray
16313         drops
16315         drops
16316          tube
16318         drops
16319          tube
16321          tube
16322          tube
16324          tube
16325            gm
16326            ml
16340           tsp
16347 other specify
16352            mg
16355           tsp
16356         drops
16367         drops
16371         drops
16374         drops
16376   unspecified
16378         drops
16382         drops
16387          tube
16388         spray
16389           mcg
16400          pump
16401            ml
16403          tbsp
16404          tube
16408           mcg
16413         spray
16414            ml
16418            ml
16419         drops
16420          drop
16425          pump
16426         spray
16434            mg
16435            mg
16436            mg
16437            mg
16440         drops
16441         spray
16442          tube
16443         drops
16447          tube
16448         drops
16450         drops
16462            ml
16472            mg
16474         spray
16477            mg
16478         drops
16479         spray
16497         drops
16522         drops
16523          tube
16524         spray
16525            mg
16526            ml
16544          pump
16546         units
16553          tube
16579 other specify
16580            ml
16595          tube
16596          tube
16597         drops
16598         pumps
16599            gm
16601            gm
16605           tbs
16606            ml
16608         drops
16624            mg
16630            ml
16631            ml
16635            gm
16636         drops
16639         drops
16657         drops
16684         drops
16685            ml
16687           mcg
16694           mcg
16702            ml
16703         spray
16704            ml
16705            ml
16711          tube
16712            ml
16714         drops
16717            ml
16718            ml
16721           tsp
16723          tube
16724           tbs
16726            gm
16749            mg
16751            mg
16774            gm
16777            gm
16778            gm
16779            gm
16783   unspecified
16784   unspecified
16785   unspecified
16791            ml
16793            mg
16798         drops
16805          pump
16807         spray
16809         spray
16810           mcg
16811 other specify
16814            ml
16815         spray
16816         drops
16821            ml
16823         drops
16834   unspecified
16838   unspecified
16840   unspecified
16841   unspecified
16847   unspecified
16869         spray
16877            mg
16882          tube
16918            ml
16929            ml
16931            mg
16933            mg
16935         units
16936          tbsp
16939         drops
16970           mcg
16983         drops
16993            ml
16994          tube
16998         drops
16999           mcg
17000            ml
17010           mcg
17012         spray
17013            gm
17014          tube
17018           tsp
17019          pump
17020   unspecified
17022         drops
17042          tube
17053         units
17062         drops
17088           mcg
17090         drops
17091         drops
17094         drops
17095         drops
17098           mcg
17099            mg
17120            ml
17121         drops
17126         spray
17127         drops
17138         drops
17143         spray
17153           mcg
17156         drops
17157         drops
17173         drops
17177         drops
17180         spray
17209          tube
17218           mcg
17220           mcg
17221           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17232          drop
17233         drops
17234         drops
17236            gm
17237            ml
17239         drops
17248          tube
17251         drops
17252           tsp
17254          pump
17255          tube
17263            mg
17264            mg
17266         units
17268         spray
17283           mcg
17285           mcg
17297            mg
17298          tbsp
17307            mg
17308            mg
17309            mg
17310            mg
17313           mcg
17314            mg
17315            mg
17327            gm
17329            gm
17330            gm
17335          drop
17352         drops
17355         spray
17387           mcg
17389           mcg
17390            ml
17391           mcg
17393          tube
17399          tube
17406            gm
17407         drops
17412   unspecified
17417          tube
17418           tsp
17419         drops
17420            ml
17426   unspecified
17427   unspecified
17446         drops
17461            mg
17463          drop
17468            mg
17470            gm
17482            oz
17486         drops
17487            ml
17488         drops
17489         drops
17490          tube
17491         drops
17492         drops
17493         drops
17495            ml
17496            ml
17518            ml
17519         drops
17576         drops
17583            ml
17588         drops
17602         drops
17603          pump
17605            mg
17611         pumps
17615            gm
17627            ml
17659         drops
17672            mg
17673            mg
17680   unspecified
17697            mg
17702            mg
17703            mg
17719            mg
17720         drops
17722          tube
17742         drops
17755         spray
17779         spray
17780            mg
17781         drops
17782         spray
17798         drops
17802         drops
17803   unspecified
17804   unspecified
17818         drops
17832          tube
17845         drops
17853   unspecified
17855         drops
17856         drops
17860   unspecified
17863            ml
17865   unspecified
17882            mg
18023            gm
18024            ml
18057         drops
18058         drops
18072         drops
18074         drops
18075            ml
18094         drops
18095          drop
18096            ml
18098         drops
18114            mg
18115            mg
18116            mg
18118          tube
18119            ml
18124         drops
18134   unspecified
18141   unspecified
18147         drops
18165            ml
18188            ml
18192            iu
18193            mg
18195            mg
18199            mg
18202            ml
18205          tube
18213         units
18214            ml
18217           mcg
18218           mcg
18220            mg
18222          tube
18238          tube
18251         drops
18258 other specify
18260            mg
18262 other specify
18263            iu
18264            mg
18266            mg
18271            ml
18275          tube
18276         drops
18323   unspecified
18325   unspecified
18326   unspecified
18337            ml
18338         drops
18339          drop
18340          pump
18341          pump
18342         units
18344            ml
18365         drops
18366         drops
18370        sprays
18371         drops
18373          tube
18374           tsp
18404         drops
18415         spray
18427          drop
18441            mg
18459            ml
18460           tsp
18461          tbsp
18469         spray
18471         spray
18479            mg
18480            mg
18483            mg
18489            ml
18490          tbsp
18494          drop
18495          drop
18500         spray
18502         spray
18514           tsp
18520         spray
18525            mg
18534         spray
18565          drop
18571         pumps
18572          pump
18576          tube
18577         drops
18580          tube
18588   unspecified
18591            ml
18595         spray
18609            mg
18612          drop
18621         drops
18649          drop
18686           mcg
18687         drops
18689            mg
18690           mcg
18694            mg
18696            ml
18697         spray
18703            ml
18707           mcg
18716            ml
18718            ml
18729            ml
18734            ml
18735         drops
18736          drop
18743            ml
18750           mcg
18774            mg
18775            mg
18795         spray
18796         spray
18797         spray
18798            ml
18799           mcg
18800           mcg
18820         drops
18829            mg
18837           ml 
18838           ml 
18839           ml 
18844           ml 
18845          drop
18847          drop
18850          drop
18852          drop
18853           ml 
18854          drop
18882         drops
18908         drops
18909           tsp
18919          drop
18921          drop
18924          drop
18933            mg
18935         spray
18936            ml
18937         spray
18961         spray
18964          pump
18970         drops
18987           mcg
18988            ml
18991            ml
18993           tbs
18997            mg
18998   unspecified
19003   unspecified
19004         drops
19005        sprays
19006          pump
19008            ml
19009           tsp
19015            mg
19019            mg
19021   unspecified
19022          tube
19023         drops
19025          drop
19040            mg
19041            mg
19055         drops
19056            ml
19057         mg/ml
19061          pump
19062            mg
19068            mg
19070            ml
19072         spray
19073         spray
19078         spray
19082         drops
19122         drops
19130            ml
19152         drops
19153           ml 
19154            ml
19159   unspecified
19165         spray
19169         spray
19170            ml
19183          drop
19184            ml
19213        sprays
19214          drop
19215         drops
19216          drop
19220           mcg
19221         spray
19222         drops
19223            ml
19224            ml
19246            ml
19252            mg
19253            mg
19254            mg
19271         spray
19272         spray
19273            ml
19278            ml
19281         drops
19282         spray
19288         drops
19298         drops
19299         drops
19318            ml
19325         drops
19326         drops
19327          tube
19338            ml
19350            ml
19353   unspecified
19354   unspecified
19356           mcg
19357        sprays
19373         drops
19386         drops
19387          tube
19390         pumps
19391          tube
19423         spray
19427            gm
19445         drops
19446         drops
19447            ml
19448          pump
19449           tsp
19450           tsp
19452   unspecified
19453   unspecified
19454   unspecified
19457          tube
19462         drops
19463         drops
19464         drops
19465         drops
19476         drops
19482          tube
19486         units
19487         drops
19492            ml
19493         drops
19495         spray
19537         drops
19596            mg
19603         drops
19617            ml
19641   unspecified
19662         drops
19663            mg
19673            gm
19674            gm
19685            ml
19686            mg
19688         spray
19689            mg
19710            ml
19711        sprays
19712         spray
19713         spray
19714         drops
19715            ml
19716            ml
19717            ml
19718            ml
19722          tube
19735          tube
19737         drops
19741         units
19754            mg
19768            ml
19771            mg
19776         drops
19777         drops
19778         drops
19788            ml
19790            oz
19792   unspecified
19801         drops
19803        sprays
19823         drops
19828         spray
19829         drops
19838   unspecified
19843         drops
19844            ml
19845         drops
19851         units
19856         spray
19876            mg
19881   unspecified
19888           tsp
19907            mg
19909            mg
19911           tsp
19912         drops
19914            ml
19917            ml
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19930            mg
19932         units
19933            ml
19944            mg
19945            mg
19946         drops
19947            mg
19948            mg
19949            mg
19950            mg
19952          tube
19958          pump
19975           mcg
19984   unspecified
20003           mcg
20006            mg
20007         spray
20019            ml
20020          drop
20024         drops
20025         drops
20026         drops
20027         drops
20028         drops
20038         drops
20039            ml
20065            ml
20068            mg
20069         drops
20070            ml
20072           mcg
20074            mg
20096            ml
20099         spray
20105            ml
20106            ml
20125            ml
20126          tube
20127          tube
20130         drops
20131            mg
20135            mg
20144          drop
20145            mg
20149         drops
20150          drop
20164         drops
20173         drops
20174            ml
20175            gm
20182          drop
20218          tbsp
20219          tube
20220            mg
20221           ml 
20222          pump
20224         drops
20232         drops
20233         spray
20234         drops
20240            ml
20241          pump
20243         drops
20244            ml
20245         drops
20251          drop
20275            mg
20282            mg
20292           mcg
20293            ml
20295          tube
20297         units
20298         drops
20300            ml
20301          tube
20302            mg
20303 other specify
20306         units
20315   unspecified
20337         drops
20339         drops
20340          tube
20342          tube
20343            gm
20344            mg
20348          pump
20356            mg
20374          tube
20376          tube
20377            gm
20380            ml
20382            mg
20387            ml
20388          drop
20390          drop
20392         drops
20393         drops
20402          pump
20405          pump
20409            mg
20411            mg
20413            mg
20425          tube
20426        sprays
20441         spray
20444          tube
20446            ml
20453            mg
20460            mg
20485          tube
20490            ml
20491            ml
20510         drops
20511         drops
20512          drop
20516            ml
20517            ml
20518            ml
20554            ml
20555            gm
20561            ml
20565            gm
20568           tsp
20574         drops
20577   unspecified
20579         drops
20582         drops
20585         spray
20615   unspecified
20623          tube
20636            ml
20638            ml
20641         drops
20642            ml
20645         drops
20648            ml
20651            ml
20659   unspecified
20666   unspecified
20667   unspecified
20678   unspecified
20698           tsp
20701            gm
20702            ml
20704          tube
20705         drops
20707            ml
20708         drops
20709         drops
20712         drops
20717         spray
20718            mg
20728            mg
20738            mg
20748           mcg
20761            mg
20762            mg
20763            mg
20766            mg
20767            mg
20771            mg
20783           mcg
20791   unspecified
20796   unspecified
20800         drops
20808        sprays
20809            gm
20814          pump
20817            mg
20819            mg
20849         drops
20852            mg
20854            mg
20855            mg
20858           mcg
20861         drops
20862            ml
20863            ml
20872            ml
20897            oz
20918            mg
20939            ml
20940         drops
20941            ml
20947           tsp
20949            ml
20962         units
20963         units
20964          tube
20965         units
20966         units
21003         drops
21013         spray
21022            mg
21025            mg
21029            mg
21074            ml
21078            ml
21080            mg
21088            ml
21102         units
21109         drops
21110          pump
21111            gm
21112         drops
21114          tube
21115         drops
21119            mg
21122          tube
21123         drops
21125            mg
21126            mg
21127         drops
21128            mg
21129            mg
21130            mg
21131            ml
21133         spray
21168            mg
21169            ml
21178            ml
21179            mg
21180            mg
21181         drops
21182            mg
21183            mg
21189         tube 
21190            ml
21201            mg
21224            ml
21253            mg
21254            ml
21256            mg
21267            mg
21268         drops
21269          tube
21273            mg
21278         drops
21282         drops
21287         drops
21309            mg
21326         drops
21331   unspecified
21338         pumps
21359            mg
21361            mg
21369            ml
21384           mcg
21385            mg
21386         drops
21387            gm
21388            gm
21389            gm
21403            mg
21413   unspecified
21416         spray
21442            mg
21445          drop
21448         drops
21449         spray
21465            mg
21472            mg
21481         drops
21492         drops
21493          tube
21495            mg
21504          tube
21507          tube
21508         drops
21509            gm
21527         drops
21528           tsp
21531           mcg
21532         drops
21533          pump
21545         drops
21549            mg
21552          tube
21553         drops
21555            ml
21558            mg
21562         spray
21563          pump
21564            ml
21585          tbsp
21586          tube
21593   unspecified
21600            ml
21602            mg
21605         units
21607            mg
21608            mg
21609            mg
21612            mg
21614         spray
21615         drops
21616          drop
21617            mg
21618            mg
21619         spray
21620          tube
21621         drops
21622          tube
21625           tsp
21632   unspecified
21642         spray
21643            mg
21644         spray
21645         spray
21646         spray
21648          tube
21649         drops
21650          tube
21651            mg
21652 other specify
21653         spray
21654            mg
21655          tube
21658        sprays
21659          pump
21660          drop
21661          tube
21666            ml
21673   unspecified
21677   unspecified
21678         drops
21680         drops
21685            gm
21701            gm
21705         spray
21707            ml
21708         drops
21723            mg
21725           tsp
21727            ml
21739            mg
21748            ml
21749            gm
21753            mg
21754            mg
21755            mg
21757            mg
21767            mg
21783 other specify
21796           mcg
21809   unspecified
21810   unspecified
21814            ml
21815         drops
21833            mg
21851            mg
21865           mcg
21869           mcg
21872            ml
21873            mg
21875           mcg
21876           mcg
21877            ml
21878   unspecified
21886   unspecified
21894           tbs
21897            gm
21898            gm
21912           mcg
21914            gm
21918            gm
21921         drops
21925          pump
21949         drops
21955           tbs
21956           tbs
21957           tbs
21959            mg
21982         drops
21993         drops
22020          pump
22023         spray
22025         spray
22026         spray
22037         spray
22038         drops
22041            ml
22042          drop
22043            ml
22045         drops
22046         drops
22048         drops
22050         units
22051            mg
22060            mg
22062         drops
22064         spray
22088          tube
22089            ml
22092            ml
22093         drops
22118          tbsp
22120         pumps
22121         drops
22125         units
22128            ml
22136            ml
22140          tube
22141         drops
22151   unspecified
22160         units
22161          tube
22163         units
22173          pump
22175         spray
22176           mcg
22177            mg
22179         drops
22189          tube
22190         drops
22196         drops
22199         spray
22201   unspecified
22216            ml
22217         drops
22218         drops
22219         drops
22222         drops
22223         spray
22224         drops
22225            mg
22226            mg
22227            mg
22228            mg
22229          tube
22230            mg
22237            mg
22238            mg
22239            mg
22240            ml
22241            ml
22243   unspecified
22245            mg
22253          tube
22261          tube
22262          drop
22265         drops
22267         drops
22268            gm
22270            ml
22272         drops
22289            mg
22299            mg
22306         drops
22308            mg
22311            mg
22313          tube
22314         drops
22315           tsp
22316            mg
22319            mg
22321          tube
22323         spray
22341         spray
22342          tube
22343          tbsp
22345   unspecified
22346   unspecified
22347   unspecified
22349   unspecified
22351            mg
22352            mg
22353            mg
22367         units
22404            gm
22407            mg
22408          drop
22410         drops
22413         spray
22417          pump
22430         spray
22439            ml
22440            mg
22441          tube
22459   unspecified
22463   unspecified
22530            mg
22531          tube
22532           tsp
22533         drops
22534            mg
22537            ml
22540   unspecified
22541          drop
22545          drop
22546          drop
22547         drops
22548            mg
22549         drops
22552   unspecified
22557         drops
22558          tube
22574         units
22575         drops
22577           mcg
22578         drops
22579           mcg
22583            ml
22585   unspecified
22598            ml
22601         units
22606         drops
22607            ml
22610            mg
22611            mg
22625         drops
22653         drops
22655          pump
22656         pumps
22662            gm
22667            ml
22669         drops
22672         drops
22673            mg
22681          tube
22682         drops
22683          tube
22690         spray
22691            mg
22692         drops
22693         spray
22704          drop
22705         drops
22707            gm
22708          tube
22711         drops
22713          drop
22714            gm
22716           tsp
22717            ml
22718            ml
22719            ml
22733            ml
22748            ml
22749            mg
22750 other specify
22751            mg
22752            mg
22754         drops
22763         drops
22764         drops
22765         drops
22766            mg
22770            mg
22777            mg
22778            mg
22779            mg
22780            mg
22795         drops
22796         drops
22797         drops
22798          tube
22799           tsp
22800            ml
22801          tube
22802            ml
22803         drops
22804         drops
22830            mg
22840           mcg
22848          drop
22853            ml
22858            ml
22875            ml
22886            gm
22909           mcg
22919         drops
22920          pump
22922         drops
22923          tube
22926          tube
22929            ml
22936            ml
22938            ml
22939         drops
22954            ml
22955           mcg
22963          tube
22965         drops
22966         tube 
22967          tube
22971          tube
22990         spray
22991            mg
22992         drops
22994          drop
23006         drops
23007         drops
23018            mg
23019            mg
23024          pump
23025          pump
23043            ml
23049           mcg
23051           mcg
23053         drops
23055         units
23059        sprays
23060         drops
23061          tube
23064            mg
23066         spray
23083            mg
23095         spray
23096          drop
23100         drops
23102            mg
23103         drops
23108   unspecified
23122         spray
23123         spray
23124         spray
23125            ml
23134            mg
23137            mg
23138          drop
23143            mg
23144            mg
23153   unspecified
23154         drops
23163   unspecified
23169            mg
23173        sprays
23175           mcg
23202          tube
23237            mg
23249         drops
23250          pump
23251         units
23258           mcg
23259          tube
23266          tube
23267           mcg
23268 other specify
23276            ml
23278         spray
23279           mcg
23280            mg
23283            ml
23284            mg
23286           mcg
23288          drop
23294           mcg
23299            mg
23304         drops
23308            ml
23321            mg
23322            ml
23325         spray
23333         units
23336            ml
23337            ml
23338            ml
23340            ml
23341           mcg
23342         drops
23344           mcg
23345 other specify
23349          drop
23350           mcg
23353            mg
23355            ml
23356           mcg
23360           mcg
23364         drops
23366   unspecified
23384            ml
23388            ml
23403            ml
23404           tsp
23413          tbsp
23414        sprays
23419           ml 
23427           ml 
23428            mg
23437          drop
23450          drop
23456           ml 
23472          drop
23482         drops
23484         drops
23485           tsp
23487          drop
23491            mg
23507          drop
23520          drop
23533         drops
23534         spray
23540            ml
23541         spray
23552         units
23553          pump
23557         drops
23565         drops
23566         drops
23568         spray
23571            ml
23572         drops
23588         drops
23590         spray
23610            mg
23617            ml
23618        sprays
23619            mg
23620          pump
23622            ml
23646           tsp
23647          tube
23651          drop
23657         drops
23659          tube
23685         drops
23686          drop
23688         drops
23707            ml
23718           mcg
23721          tube
23722            ml
23724            ml
23730         spray
23732         spray
23740         drops
23747            mg
23749           mcg
23757           mcg
23804            mg
23805          tube
23808           ml 
23809            ml
23819            ml
23861         spray
23862         spray
23865            mg
23866          drop
23868         drops
23871         drops
23872          drop
23873         drops
23898          drop
23899          drop
23900          tube
23901         spray
23902         drops
23905            ml
23906            ml
23909            ml
23910         drops
23914         drops
23917         drops
23924            mg
23925            mg
23933         drops
23942            gm
23955            ml
23956         drops
23957   unspecified
23958   unspecified
23959   unspecified
23965         drops
23969           tbs
23974         drops
23976            ml
23980         units
24010            mg
24012            ml
24017            mg
24018            mg
24019            mg
24020            mg
24022            mg
24029            mg
24045           mcg
24046            mg
24062          tbsp
24068          tbsp
24072            mg
24075        sprays
24076         drops
24077         drops
24079          tube
24104            mg
24106            mg
24116         spray
24117            gm
24139            mg
24142         drops
24144            mg
24145          pump
24149            mg
24154   unspecified
24155   unspecified
24157            ml
24162           tsp
24165          tube
24166         drops
24172         drops
24174         drops
24185            mg
24189            mg
24192            mg
24193            mg
24194            mg
24195            mg
24203         drops
24205   unspecified
24206   unspecified
24207   unspecified
24208   unspecified
24209         drops
24215         drops
24217         drops
24221         drops
24222         drops
24246            mg
24250            gm
24253         spray
24257          tube
24258            ml
24259        sprays
24261         spray
24265            ml
24267            ml
24268            ml
24269            mg
24276         units
24282          tube
24312         drops
24313         drops
24314          tube
24319            mg
24322         drops
24328            mg
24343            mg
24375            mg
24393         drops
24394            ml
24395          tube
24400            mg
24402        sprays
24403         drops
24405            mg
24406            mg
24407            mg
24409            oz
24410          tube
24413         drops
24416         spray
24417          drop
24420           tsp
24421           tsp
24422           tsp
24424           tsp
24425           tsp
24426            ml
24431         units
24432         units
24435            ml
24437            ml
24451         drops
24452            gm
24453         drops
24455         drops
24459            mg
24460            mg
24468            mg
24473            mg
24475            mg
24476          tube
24477          pump
24478          tube
24480            ml
24481        sprays
24484         spray
24486            ml
24514         drops
24520         drops
24521         drops
24526         drops
24534            ml
24536           mcg
24593         drops
24597            mg
24598            mg
24599            mg
24601            mg
24602            mg
24605            ml
24610            ml
24647         drops
24648            ml
24653         drops
24660         spray
24669         drops
24688         drops
24707           tsp
24733           mcg
24734            mg
24758          pump
24762           mcg
24768          drop
24769            gm
24802            ml
24804            mg
24805            mg
24806            mg
24817          tbsp
24819          tube
24824            ml
24825           ml 
24827         units
24828         drops
24829         drops
24830            ml
24839         spray
24840         drops
24850            mg
24867          pump
24878         drops
24898         drops
24902            mg
24917          tube
24918            ml
24919            mg
24935            mg
24937            mg
24938            mg
24940            mg
24942            mg
24948         drops
24949            mg
24950          drop
24963            mg
24964            mg
24968            ml
24969          tube
24971            gm
24973         spray
24974         drops
24975         drops
24982          tube
24984            mg
24985          tube
24987            gm
24988         drops
24989          tube
24993         drops
25004            ml
25020            mg
25021            gm
25022            mg
25059           mcg
25079          drop
25087          drop
25094            mg
25099           mcg
25100            mg
25101            mg
25102            mg
25118          tube
25119          tube
25120        sprays
25124         drops
25129          tube
25191         drops
25196          tube
25198         drops
25233            ml
25234         drops
25241         drops
25255          drop
25258            ml
25262   unspecified
25269            mg
25270            mg
25296           mcg
25299            gm
25300            ml
25309         units
25310         units
25311         drops
25315         units
25316         units
25317         units
25331            mg
25337          tube
25342          tube
25343         drops
25345         drops
25346         drops
25347   unspecified
25367            ml
25390            mg
25391            mg
25405            gm
25409            ml
25410          tube
25417         drops
25421            ml
25424            mg
25425            mg
25437            mg
25444            mg
25473         drops
25482   unspecified
25493         drops
25494          drop
25501            ml
25514            mg
25515            mg
25516            mg
25520         drops
25521        sprays
25523            gm
25547            ml
25554            mg
25555            mg
25556            mg
25557            mg
25575            mg
25576         drops
25577            ml
25589            mg
25591            mg
25612            mg
25617            ml
25619            ml
25622   unspecified
25660            ml
25663            gm
25666            ml
25670         drops
25671            ml
25674         drops
25683        mcg/kg
25706         drops
25707          tube
25708         spray
25725         spray
25727         spray
25730          tube
25737   unspecified
25740            ml
25741            ml
25743            ml
25744         drops
25748          pump
25749          pump
25750         drops
25751          tube
25753         drops
25754          tube
25755         drops
25756          tube
25757         spray
25765            ml
25795         drops
25804            mg
25806            gm
25807            gm
25819            mg
25820          drop
25826            mg
25827          drop
25828            mg
25830            mg
25837          tube
25846            ml
25884         drops
25887         spray
25888         tube 
25919            mg
25936   unspecified
25937   unspecified
25939            ml
25940            ml
25941           mcg
25943         drops
25948            mg
25949 other specify
25950            gm
25951           mcg
25953           mcg
25954         drops
25964           mcg
25965            mg
25966           mcg
25967            mg
25981         drops
25983         drops
25985            ml
25986            ml
25998   unspecified
26004           mcg
26022            mg
26024            ml
26027            mg
26031            gm
26033         spray
26037          drop
26039         drops
26047         spray
26048         drops
26050         drops
26054          tube
26056         drops
26064          tube
26075            mg
26078            mg
26084   unspecified
26085   unspecified
26093            gm
26114           tsp
26115           tsp
26127         drops
26128          pump
26129            gm
26133         drops
26134            ml
26138         units
26139          tube
26141          tube
26148         spray
26151          pump
26152            ml
26156         spray
26157            ml
26158         units
26159         units
26165          drop
26166          pump
26184         spray
26187         spray
26190          drop
26192          tube
26197         drops
26199         spray
26203          tube
26204         drops
26207         drops
26208         drops
26211         units
26212         units
26214         spray
26215         spray
26227            mg
26229   unspecified
26238         drops
26239          tube
26258            oz
26264            mg
26265            mg
26278         drops
26279          drop
26280         drops
26281            ml
26282          tube
26287          tube
26295         drops
26300         units
26307            gm
26315            gm
26336   unspecified
26337   unspecified
26355         drops
26375            ml
26380            ml
26386            gm
26387            mg
26391   unspecified
26393         spray
26395            mg
26399            mg
26400            mg
26401            mg
26433   unspecified
26454            mg
26464            ml
26471            mg
26473            mg
26475            ml
26476          tube
26488            ml
26489         drops
26490            ml
26502            ml
26505           tsp
26517            gm
26518            gm
26519            gm
26520            gm
26521            mg
26522            gm
26534   unspecified
26543          tube
26544         drops
26546         drops
26551            mg
26553            mg
26568         drops
26574         drops
26583         drops
26590          pump
26591         spray
26592         spray
26594         spray
26610         drops
26611         drops
26615            ml
26629          drop
26631         drops
26637           mcg
26638         drops
26643            mg
26644 other specify
26645         drops
26647   unspecified
26650         drops
26651         spray
26652          tube
26654           mcg
26655            mg
26662            ml
26663         drops
26668          tbsp
26669         pumps
26670            gm
26673           mcg
26675            mg
26676          tube
26677           mcg
26680           mcg
26681            mg
26682          tube
26683           tsp
26684          pump
26685         spray
26694            mg
26720            mg
26721            mg
26722          tube
26723            mg
26724            mg
26726          tube
26734         drops
26735         drops
26736           mcg
26738            mg
26740            mg
26742            mg
26744            mg
26745            mg
26747            ml
26749            mg
26750           mcg
26760         drops
26769            ml
26780            mg
26803            oz
26823            ml
26825            gm
26826            gm
26827            mg
26828            mg
26829            mg
26830            mg
26831            mg
26833            ml
26837            ml
26839         drops
26840          tube
26841         drops
26842          drop
26843         drops
26844         drops
26846            gm
26847         drops
26848         drops
26849         drops
26850          tube
26851         drops
26852           mcg
26853            mg
26861          tube
26862         units
26863         units
26864         units
26865         units
26867         drops
26868         drops
26869         pumps
26870            ml
26871         drops
26872            oz
26905            ml
26926         drops
26930         spray
26931          pump
26932            mg
26944         spray
26948            ml
26972            mg
26974          tube
26975          tube
26976            gm
26977         drops
26978            mg
26979          tube
26980           tsp
26981         drops
26983            mg
26984            ml
26986            mg
26988            mg
26990            mg
26992            mg
27020            gm
27021         drops
27022         drops
27030            mg
27047         drops
27058         drops
27062   unspecified
27063   unspecified
27065         drops
27082            ml
27085            ml
27092            ml
27095         drops
27096           mcg
27100            ml
27117         drops
27118         drops
27124          pump
27128         drops
27134            gm
27136            ml
27140         drops
27158            gm
27163         drops
27170          tube
27172         drops
27173          tube
27174         spray
27203           mcg
27212         units
27213           mcg
27214         drops
27217         spray
27219          drop
27220         drops
27222            gm
27223          tube
27224         drops
27226          tube
27228         units
27229          drop
27231            gm
27232         units
27247            mg
27257            ml
27258            ml
27262         drops
27265         units
27268         drops
27270         units
27273         drops
27274         drops
27275         drops
27280         drops
27281         units
27282         units
27285          drop
27306         drops
27309          tube
27311           tsp
27315           mcg
27322            ml
27333            mg
27348          tube
27349            ml
27350         drops
27358         drops
27360           ml 
27361            mg
27364            mg
27368            ml
27384            mg
27407         drops
27413            gm
27414         drops
27421          pump
27422            ml
27423           mcg
27425          tube
27427         drops
27431            ml
27432            ml
27434         drops
27445         drops
27446            ml
27447          tube
27459            mg
27465          tube
27474           mcg
27481           mcg
27492         drops
27494         drops
27500         drops
27501         drops
27502         spray
27506          tube
27507         drops
27511          drop
27512          drop
27523          drop
27529            ml
27589 other specify
27594            mg
27596            mg
27598         drops
27620          pump
27640          pump
27646          pump
27654          pump
27657            ml
27659            mg
27674   unspecified
27697        sprays
27699            mg
27700         drops
27701          tube
27704           tsp
27710         spray
27713            mg
27714   unspecified
27715   unspecified
27722         drops
27736           tsp
27745           mcg
27747            mg
27748           mcg
27750           mcg
27769           mcg
27770            mg
27772            mg
27776   unspecified
27791           mcg
27794           mcg
27802   unspecified
27824           mcg
27826           mcg
27828           mcg
27833         spray
27834         spray
27836   unspecified
27878          tbsp
27880          drop
27886         spray
27895         spray
27896           tsp
27897            ml
27898         drops
27899         drops
27910            mg
27913            mg
27917         units
27921         units
27922         units
27923         units
27927   unspecified
27929          tube
27939            mg
27940            mg
27941         drops
27942            mg
27954         spray
27957            mg
27958            mg
27959            mg
27961         spray
27962            ml
27973         drops
27974            ml
27981            ml
27982 other specify
27992         spray
27999            ml
28000 other specify
28008            ml
28010            ml
28014         drops
28015            mg
28016         spray
28018         spray
28023            ml
28024            ml
28025           tsp
28029          tbsp
28040        sprays
28045           mcg
28046           ml 
28047           ml 
28048           ml 
28049           ml 
28087          drop
28088          drop
28090         drops
28094         drops
28096   unspecified
28098            mg
28100         drops
28101           tsp
28102          drop
28103          drop
28104          drop
28105         spray
28106            mg
28108         spray
28109            ml
28116         spray
28119         spray
28120          pump
28128            mg
28130           mcg
28134         drops
28135         spray
28137            ml
28138            iu
28144         drops
28154            ml
28155            ml
28158         spray
28162            ml
28163        sprays
28164          pump
28165            mg
28166           tsp
28167   unspecified
28168         drops
28174         drops
28176          tube
28246            mg
28260         drops
28261           mcg
28263          drop
28264           mcg
28269         drops
28277            ml
28279          pump
28307          tube
28309            ml
28311            ml
28316         spray
28332         spray
28333         spray
28371         drops
28375         drops
28390         units
28392          tube
28396            mg
28397            ml
28398            ml
28399         spray
28400         spray
28401            ml
28404          drop
28407            mg
28425   unspecified
28427         drops
28437            mg
28448            mg
28449            mg
28453           mcg
28483          tube
28484         drops
28486         drops
28488            ml
28505            ml
28507            ml
28508         drops
28516         drops
28517         drops
28518            mg
28519           mcg
28520            ml
28528            mg
28531         spray
28533 other specify
28534            mg
28535            mg
28536 other specify
28538            ml
28545           mcg
28549         drops
28552            ml
28553         drops
28554         spray
28556          tube
28557          drop
28571         drops
28572   unspecified
28573         drops
28574         drops
28576            mg
28577         drops
28580            ml
28582            ml
28583            ml
28590   unspecified
28601          tbsp
28602        sprays
28605         drops
28606            mg
28610            mg
28611            mg
28612            mg
28614            mg
28621            ml
28624            ml
28630           tsp
28631           tsp
28660         drops
28668           mcg
28673         drops
28674           tsp
28675          tube
28681         drops
28685   unspecified
28686   unspecified
28687   unspecified
28693         drops
28694          tube
28696         drops
28710         drops
28714         drops
28718            gm
28719            gm
28723          drop
28726         spray
28727         drops
28730         units
28731         units
28735            mg
28736            mg
28750            gm
28751            gm
28772   unspecified
28773   unspecified
28780 other specify
28806        sprays
28809         spray
28819         spray
28826         drops
28829           tsp
28855            ml
28873         drops
28874            mg
28882         drops
28883         drops
28884         units
28888            ml
28897         drops
28899         drops
28904         drops
28907          tube
28934          tube
28939            mg
28940            mg
28941        sprays
28946            ml
28979         spray
28980         drops
28982         drops
28983         drops
28986          drop
28987          tube
28999            mg
29000         spray
29007            ml
29015          tube
29022   unspecified
29023   unspecified
29036           tsp
29037            mg
29039            ml
29040   unspecified
29043   unspecified
29050          tube
29053            ml
29056            ml
29060            ml
29064            ml
29067           mcg
29069           mcg
29070         drops
29071            gm
29072         drops
29073         drops
29075         spray
29078            ml
29079            ml
29080          tube
29081          pump
29082          tube
29083          tube
29086            mg
29087            mg
29091            mg
29095        sprays
29096         spray
29098            ml
29099            ml
29103           mcg
29104        mcg/kg
29108         drops
29136         drops
29139         drops
29143           mcg
29151            ml
29153            ml
29161            ml
29166         drops
29184         drops
29196          drop
29197         drops
29220            ml
29232   unspecified
29234   unspecified
29235   unspecified
29244   unspecified
29245   unspecified
29248   unspecified
29283            mg
29285         drops
29291          drop
29293            gm
29298            mg
29313         drops
29315        sprays
29321         drops
29324            ml
29327         drops
29328          drop
29340            oz
29342         drops
29374            mg
29375         units
29376           ml 
29377         units
29378         units
29379         units
29380            ml
29381         spray
29382         drops
29383            ml
29395            mg
29404            mg
29405            mg
29406            mg
29428         drops
29438          drop
29446          tube
29447            ml
29453          tube
29469         drops
29470          drop
29471         drops
29479            ml
29480          tube
29481            gm
29482         spray
29483         drops
29490         drops
29499         units
29500         units
29501            gm
29502          pump
29504          tube
29505          tube
29511            gm
29525            ml
29526            gm
29531            ml
29532         drops
29533           tbs
29534         drops
29535         drops
29536          pump
29537         drops
29538            mg
29539            oz
29540        sprays
29567         spray
29568         drops
29572         drops
29573          tube
29574            oz
29575            mg
29580         drops
29588          drop
29608            ml
29617            ml
29633           mcg
29662   unspecified
29666           tsp
29669   unspecified
29670   unspecified
29678            mg
29700         drops
29705         drops
29707         drops
29709         drops
29715         drops
29716         spray
29719          tube
29720            mg
29722         drops
29724            ml
29726         drops
29734            mg
29736          drop
29744            ml
29749            mg
29753            mg
29764         drops
29765            ml
29767         drops
29770           tsp
29794         drops
29798           mcg
29799           mcg
29800            mg
29801            ml
29802           mcg
29803            mg
29822         drops
29823         spray
29824           mcg
29825            mg
29827            mg
29829         units
29831         drops
29838   unspecified
29839   unspecified
29840   unspecified
29847            ml
29858            ml
29862            mg
29865            mg
29880         units
29882            ml
29883            ml
29933            gm
29940            ml
29941         drops
29948            ml
29954           tsp
29955            ml
29956         drops
29957         drops
29963          tube
29964         spray
29966   unspecified
29969         spray
29970         drops
29978            mg
29990          tube
29991            mg
29993            mg
30001            mg
30048            ml
30070            ml
30075            ml
30076         drops
30081          pump
30082          pump
30083         drops
30099          tube
30104   unspecified
30105   unspecified
30131            mg
30132   unspecified
30138           mcg
30142         units
30143            ml
30162   unspecified
30165            mg
30166            mg
30169            gm
30172            mg
30174            mg
30178            gm
30179         drops
30185          drop
30191            mg
30192            mg
30193            mg
30198         drops
30211          drop
30212          tube
30214         drops
30218         spray
30221         tube 
30239            mg
30241            mg
30242            mg
30246   unspecified
30263            ml
30264            ml
30268         spray
30269          tube
30270            gm
30274            gm
30277            gm
30286            gm
30298         drops
30299         units
30300         drops
30310            ml
30311         drops
30312            ml
30313            ml
30317            ml
30319            ml
30327            ml
30329         drops
30337         spray
30338         drops
30344         drops
30347         spray
30351         drops
30352         drops
30355          tube
30357          tube
30360          tube
30361          tube
30366            mg
30367            mg
30371            mg
30372           tsp
30373         drops
30374          pump
30375            gm
30376         drops
30377            mg
30378           tsp
30385          tube
30387          tube
30388   unspecified
30389          pump
30395            ml
30396          tbsp
30404          tube
30405            mg
30406            ml
30418           mcg
30450   unspecified
30464         drops
30471            mg
30479          drop
30480          pump
30483         spray
30484   unspecified
30485   unspecified
30492            mg
30496          drop
30515            mg
30528            mg
30529         drops
30536         spray
30555         drops
30556            mg
30590         drops
30604         drops
30623         drops
30644            mg
30685         spray
30689         spray
30692         spray
30701         spray
30702            mg
30707          tube
30708         drops
30709          tube
30710         spray
30713            ml
30714         drops
30717   unspecified
30753          drop
30754         drops
30756         units
30757         units
30764            mg
30765            mg
30766            mg
30768           mcg
30769         drops
30779            gm
30793            ml
30796         drops
30797           tsp
30799            ml
30803            ml
30813         units
30815         units
30816         units
30817         units
30819            ml
30820            ml
30821         spray
30822            ml
30823            ml
30824          tube
30826            ml
30833         drops
30834            ml
30840            mg
30844           mcg
30876            ml
30877           mcg
30901            gm
30909           mcg
30917            gm
30920         drops
30936   unspecified
30943            mg
30945            mg
30947          pump
30948          tube
30949            mg
30953   unspecified
30961            mg
30962         drops
30963            mg
30998          pump
31000          pump
31001         spray
31003         spray
31004         spray
31010         spray
31011         drops
31022          drop
31023         drops
31034            mg
31043         drops
31046         drops
31089            mg
31094            mg
31095         drops
31096         spray
31105          tube
31132            ml
31133            ml
31134         drops
31135          tbsp
31139            mg
31148           mcg
31149           mcg
31152           mcg
31154           mcg
31183         units
31186         drops
31195            mg
31196   unspecified
31197            ml
31198            mg
31199         drops
31203         units
31209            mg
31228          tube
31232           tsp
31234 other specify
31247            mg
31248 other specify
31249            mg
31250 other specify
31260         spray
31263            gm
31265         drops
31268         drops
31297         units
31299         units
31300         units
31301         units
31303         mg/ml
31307         drops
31308         spray
31309         drops
31317            ml
31322            mg
31328   unspecified
31350   unspecified
31353            mg
31356         spray
31357         drops
31358         drops
31359         drops
31360         drops
31361         spray
31365          tube
31366         spray
31367          pump
31369 other specify
31370         drops
31371           tsp
31373            mg
31374            gm
31375          tube
31383          drop
31384         drops
31385         drops
31386            gm
31389            ml
31408           mcg
31423         drops
31434         drops
31437          tube
31438         drops
31439         drops
31440         units
31441          tube
31446         spray
31447         spray
31449          tube
31450          tbsp
31452         units
31457   unspecified
31463   unspecified
31471            gm
31502            gm
31503            gm
31504          drop
31506         drops
31508         spray
31528          pump
31529         spray
31531            ml
31539          tube
31542   unspecified
31548         units
31551            ml
31552         drops
31553         drops
31602           tsp
31611         drops
31612            mg
31616            mg
31617           mcg
31618            ml
31619            mg
31637           mcg
31640            ml
31643           mcg
31644            mg
31645            ml
31646           mcg
31647            mg
31653           mcg
31655            mg
31656            ml
31657         units
31665         drops
31666         drops
31678          tube
31680         drops
31688         drops
31689         drops
31696            ml
31707            ml
31713           mcg
31716            mg
31725         drops
31726         drops
31730            mg
31731         drops
31734         drops
31735         drops
31736          pump
31737         pumps
31742         drops
31747            ml
31748            mg
31760         drops
31761            ml
31762         drops
31765          tube
31766         drops
31768            mg
31769           mcg
31771           mcg
31773           mcg
31774            ml
31777         spray
31780            mg
31781            mg
31798         drops
31803         spray
31804          drop
31807         drops
31808            gm
31810          tube
31819         drops
31824          drop
31826         spray
31833   unspecified
31834            ml
31836   unspecified
31837            ml
31840            gm
31841         units
31843            ml
31844            mg
31846         drops
31847            ml
31849         drops
31850         drops
31853         drops
31861            mg
31864            mg
31866            mg
31868          tube
31869           tsp
31874            ml
31876          tube
31880            mg
31888            ml
31891         drops
31892         drops
31895           ml 
31896         drops
31898          drop
31907         units
31908         units
31909            gm
31911         drops
31916          pump
31937            mg
31938            mg
31939            mg
31940            mg
31941            mg
31942            ml
31945         units
31946         units
31947         units
31948         units
31953         drops
31954         pumps
31955          tube
31968           mcg
31985   unspecified
31990          tube
32002            mg
32006            mg
32015         drops
32016          tube
32020            mg
32025         spray
32032            mg
32035            mg
32040          tube
32046         drops
32053          drop
32054          drop
32055         drops
32056            ml
32057          drop
32058          drop
32059          pump
32060          pump
32074          pump
32076          pump
32079            ml
32080         drops
32084         drops
32095        sprays
32097         drops
32098          tube
32099           tsp
32100         spray
32101         spray
32102          drop
32103          tube
32104            ml
32105           tsp
32106          tbsp
32108         spray
32114 other specify
32116 other specify
32119         drops
32121         spray
32122            ml
32123            mg
32128            mg
32129            mg
32132            mg
32133         spray
32134           tsp
32168         spray
32171         drops
32175         drops
32179        sprays
32180          tube
32183         drops
32184         drops
32187   unspecified
32196          tube
32222         drops
32231          tube
32232          tube
32233            ml
32234         spray
32236         spray
32237          drop
32266          drop
32276   unspecified
32290         spray
32295            ml
32296            ml
32297         drops
32310            ml
32312         spray
32313            ml
32315            ml
32320            ml
32343            ml
32358            mg
32359         drops
32360            mg
32362            oz
32363            ml
32370         spray
32390            ml
32393         mg/kg
32394            mg
32417          tbsp
32425            ml
32426            mg
32427            mg
32445   unspecified
32447            mg
32448            mg
32449            mg
32460            mg
32463          drop
32464           ml 
32466          drop
32467         drops
32477         drops
32478           tsp
32504          drop
32505          drop
32507            oz
32509         spray
32510         spray
32511            ml
32512         spray
32513         spray
32520         drops
32529         spray
32530            ml
32535         spray
32536            ml
32538         drops
32542   unspecified
32557           mcg
32558            gm
32561         spray
32562            ml
32575   unspecified
32576   unspecified
32629            ml
32631           tsp
32633          tube
32635          drop
32642          tube
32643         drops
32652   unspecified
32654         drops
32664            ml
32670            mg
32672          pump
32673 other specify
32678            mg
32680            mg
32682            mg
32685            mg
32694          tube
32698            ml
32703            ml
32726         drops
32737         drops
32739         spray
32742         drops
32743         drops
32750            ml
32751          tube
32767           ml 
32768            ml
32769            ml
32770         spray
32777            mg
32798            ml
32815          drop
32829            ml
32841         drops
32844            mg
32849          drop
32850         drops
32856 other specify
32857           mcg
32858            ml
32859           mcg
32862         drops
32863         drops
32869         drops
32870            mg
32871            ml
32879            ml
32883         drops
32884            mg
32887         drops
32888         drops
32903         drops
32923           mcg
32930            ml
32937         drops
32938            ml
32940         drops
32942         spray
32943          tube
32944          drop
32949         drops
32950            ml
32951         drops
32952         drops
32954            mg
32955         units
32956         units
32964   unspecified
32965         drops
32999          tbsp
33004          tbsp
33008        sprays
33009         drops
33010   unspecified
33011   unspecified
33015          tube
33023         spray
33043           mcg
33047            mg
33066            gm
33068         units
33073            ml
33078          pump
33081           tsp
33085           tsp
33086            mg
33087            ml
33088            mg
33089            ml
33090            mg
33091            ml
33092         drops
33096          drop
33107            mg
33110          tube
33113         drops
33124         drops
33126            ml
33128         drops
33132         spray
33133         drops
33138          drop
33157   unspecified
33159   unspecified
33166         drops
33187           mcg
33190            mg
33191         drops
33209         drops
33211         drops
33220            gm
33222            gm
33226         units
33227         spray
33229          tube
33230            ml
33233        sprays
33235         spray
33236         units
33239         units
33242            ml
33271   unspecified
33286         units
33289            ml
33292          tube
33293         drops
33318 other specify
33333            mg
33335            mg
33336         drops
33347         drops
33354            oz
33355            oz
33358         drops
33363         drops
33364         drops
33370         units
33374         units
33375         units
33376         units
33377         units
33385         drops
33387   unspecified
33389   unspecified
33410         drops
33411         drops
33412          drop
33414          tube
33456   unspecified
33468         spray
33471         drops
33479          tube
33480           tsp
33482   unspecified
33489           tsp
33490            mg
33491            mg
33492            mg
33493            mg
33497           tsp
33499           mcg
33500            ml
33539         drops
33541          tube
33542         drops
33543            ml
33544            ml
33576           mcg
33580            ml
33581         drops
33582            mg
33583            mg
33590         drops
33591         spray
33592            ml
33614   unspecified
33641          tube
33644 other specify
33645 other specify
33647         drops
33649 other specify
33651 other specify
33655 other specify
33683          tube
33684          tube
33690           mcg
33696           mcg
33702            ml
33706            mg
33714        sprays
33717         spray
33722            ml
33723          drop
33724         drops
33725         drops
33737         drops
33739         drops
33740         drops
33756         drops
33767            mg
33797            ml
33798            ml
33804            ml
33805         drops
33815   unspecified
33824           mcg
33828            mg
33844         drops
33868         drops
33869           mcg
33870            ml
33890            mg
33894         drops
33901         drops
33907          tube
33911          pump
33916            ml
33919          drop
33927        sprays
33939            ml
33940         drops
33987          drop
33991          tbsp
33992          tube
33993            ml
33994            ml
33995          pump
33998         drops
34000         drops
34002            ml
34003         drops
34005         drops
34011   unspecified
34012            ml
34014         drops
34016            ml
34022         drops
34024          drop
34029          tube
34030            ml
34043          tube
34046         drops
34048          drop
34049         spray
34051         units
34053          tube
34054            gm
34069           mcg
34073         drops
34074           mcg
34075            ml
34077         drops
34087         drops
34090          tube
34091          tube
34093          pump
34094            oz
34095         units
34096            gm
34107         drops
34108           mcg
34109          drop
34111            mg
34113         drops
34125            ml
34126          pump
34128          pump
34132          tube
34134          tube
34135        sprays
34138         spray
34140            mg
34147          tube
34148         drops
34152          tube
34155            ml
34156            mg
34157            mg
34161           mcg
34227         drops
34230            mg
34231            mg
34232           tsp
34233            mg
34234            mg
34235            mg
34238            ml
34239            ml
34240            ml
34241            mg
34242            mg
34243            ml
34246            ml
34247            mg
34249          tube
34254          tube
34260            mg
34262            mg
34264            mg
34267            mg
34268         drops
34269         drops
34327           mcg
34332           mcg
34333         drops
34334           tsp
34336            gm
34340            ml
34342          tube
34343         drops
34345            ml
34359         drops
34360         drops
34361            mg
34362            mg
34367          drop
34374            ml
34375          tube
34378   unspecified
34379   unspecified
34388         drops
34401        sprays
34403            gm
34409            mg
34410            mg
34418         drops
34419            ml
34430            ml
34434            ml
34435            mg
34436           tbs
34467            mg
34474            mg
34493            mg
34513            ml
34536           tsp
34545   unspecified
34548   unspecified
34579   unspecified
34583          tube
34584           tbs
34587         spray
34588         drops
34593            mg
34606   unspecified
34608          tube
34609            ml
34617            ml
34624            gm
34629         drops
34630          pump
34635          pump
34636         drops
34637          tube
34638         drops
34640          tube
34642         drops
34648         units
34669         spray
34671            ml
34672         drops
34673            gm
34674            gm
34675         drops
34676            mg
34677         drops
34678          drop
34680         drops
34697          drop
34704          tube
34705            mg
34706         units
34708         drops
34709         spray
34710         tube 
34727   unspecified
34728   unspecified
34729   unspecified
34730            ml
34733         spray
34734          tube
34741         drops
34744         drops
34747            gm
34750           mcg
34763            gm
34764         drops
34766           mcg
34787         pumps
34788         drops
34789           mcg
34791            ml
34797         drops
34798            ml
34799            ml
34811            ml
34813            ml
34828            ml
34832            mg
34833            gm
34845         spray
34874            gm
34875            mg
34887         spray
34888         drops
34889         drops
34890          tube
34891         drops
34892          tube
34900            mg
34901            mg
34902            mg
34903         drops
34904            mg
34905           tsp
34906           tsp
34907         drops
34908            ml
34917   unspecified
34918         drops
34920           mcg
34922            mg
34923            mg
34924            mg
34953   unspecified
34955   unspecified
34956   unspecified
34966            ml
34979          tbsp
34981          tube
34982         spray
34983            ml
34991           mcg
34992         drops
34996          drop
35002         units
35004         units
35014         spray
35025         drops
35027          tube
35034            mg
35049         drops
35069         spray
35074   unspecified
35094         drops
35103          tube
35109   unspecified
35110         drops
35125         spray
35132         spray
35134          tube
35143         drops
35144          tube
35145         spray
35146          tube
35147        sprays
35148          pump
35149   unspecified
35150          tube
35152            ml
35153          tube
35154          tube
35160   unspecified
35176            mg
35181         pumps
35182           mcg
35183            mg
35189         spray
35203            ml
35204         drops
35205           tsp
35207           mcg
35212            ml
35214            ml
35232            mg
35245         drops
35252         drops
35262           mcg
35264           mcg
35278          drop
35279         drops
35283            ml
35284            ml
35291         spray
35299            ml
35300            ml
35314          tube
35315            mg
35354            mg
35382            ml
35388            ml
35393            ml
35399            ml
35400            mg
35401          tube
35404            gm
35405            gm
35406            gm
35414            mg
35417            mg
35420            mg
35421            mg
35422            gm
35423          pump
35424          tube
35425            mg
35432            mg
35434         drops
35443         drops
35450         drops
35453         drops
35454         drops
35495          pump
35496          pump
35497           mcg
35499         units
35501           mcg
35504         units
35506         drops
35509         drops
35513            mg
35525          drop
35526         drops
35528            mg
35539            mg
35560         drops
35561         drops
35562         drops
35563            gm
35565         units
35566         units
35569           mcg
35571            ml
35572            ml
35573         drops
35574            mg
35575         pumps
35576         units
35577         units
35578         drops
35579            ml
35580            mg
35581         drops
35582         spray
35593          tube
35598           tsp
35605          pump
35620         drops
35621            gm
35624         drops
35626         drops
35628         drops
35633         drops
35639         drops
35641         drops
35642         drops
35645            ml
35656            ml
35659            mg
35662         drops
35664         spray
35665         drops
35668   unspecified
35673         spray
35674         drops
35696            oz
35697         drops
35699         drops
35721          tube
35722         spray
35725           mcg
35727           mcg
35740            ml
35743         drops
35748           mcg
35756         units
35757            mg
35758            mg
35762          tube
35768          tube
35770          drop
35771         drops
35772         drops
35773            gm
35774            ml
35775         drops
35777         drops
35778          tube
35784         drops
35786           tsp
35791            ml
35792           mcg
35793         units
35808   unspecified
35809   unspecified
35810   unspecified
35812         drops
35820         drops
35821         pumps
35831            mg
35835            mg
35850            gm
35855            gm
35858            mg
35859            mg
35903           tbs
35905            mg
35907            mg
35908            mg
35931         units
35954          tube
35955            gm
35963         drops
35965         drops
35969          tube
35973           tsp
35982         drops
35983            ml
36019            ml
36021          drop
36023          drop
36030            oz
36042            gm
36043            mg
36044          tube
36065         drops
36069            ml
36078         drops
36081         drops
36082            mg
36084          tube
36108            mg
36110            mg
36112         drops
36113   unspecified
36115         drops
36134            mg
36137            ml
36144            ml
36145         drops
36150         drops
36153            mg
36156         drops
36159          pump
36171   unspecified
36191            gm
36192            oz
36200            ml
36201            gm
36202         drops
36203         drops
36205         drops
36218          tube
36220         spray
36221         spray
36222         drops
36223         spray
36225          drop
36227         drops
36228            gm
36229          tube
36231         drops
36232          tube
36233         drops
36235          drop
36237            gm
36238            mg
36240            mg
36254   unspecified
36256         drops
36264         units
36268   unspecified
36271            mg
36272            mg
36273            gm
36275            ml
36276            ml
36280         drops
36283            mg
36288         units
36293         drops
36294            ml
36295           tbs
36296            ml
36297            ml
36298            ml
36299            ml
36300         drops
36301           tsp
36302            ml
36303            ml
36304            ml
36305            ml
36306          drop
36307            ml
36308            ml
36309            ml
36310            ml
36311   unspecified
36322         drops
36323            ml
36324            ml
36325            ml
36326            ml
36327            ml
36328            ml
36329         drops
36330           tsp
36331            ml
36332            ml
36333         drops
36334            ml
36335          tube
36336          tube
36337            ml
36338            ml
36339   unspecified
36340   unspecified
36357            mg
36358         drops
36359            ml
36360            ml
36361            ml
36362            ml
36363            ml
36364            ml
36365         drops
36366           tsp
36367            ml
36368            ml
36369            ml
36370         drops
36371          tube
36372           tsp
36373   unspecified
36374   unspecified
36377         drops
36378            ml
36379            ml
36380         drops
36381            ml
36382            ml
36383            ml
36384         drops
36385           tsp
36397            mg
36398            ml
36399            mg
36403         drops
36404           tsp
36405         units
36406         units
36410   unspecified
36427        sprays
36429           mcg
36430          drop
36438         units
36439          pump
36440          tube
36443            mg
36444          tube
36448          tube
36451            ml
36460         spray
36461         spray
36464         units
36474   unspecified
36491           mcg
36497           mcg
36513   unspecified
36533            ml
36535            ml
36559            ml
36560            ml
36562         spray
36568            ml
36571            ml
36574   unspecified
36595            ml
36600          drop
36601            ml
36602         spray
36605         spray
36607            ml
36608            ml
36616           tsp
36624        sprays
36626           ml 
36630           ml 
36632           ml 
36635          drop
36657            mg
36670          drop
36698           ml 
36699          drop
36705            mg
36708           mcg
36709         drops
36735            mg
36751           tsp
36752          drop
36753          drop
36772          drop
36778           tbs
36816         spray
36817            ml
36818         drops
36819         drops
36824          pump
36833 other specify
36834         drops
36835         spray
36840            mg
36842            gm
36846            mg
36847            mg
36848            mg
36849            gm
36850         spray
36851            gm
36853         drops
36855   unspecified
36859   unspecified
36875            mg
36876            mg
36877            mg
36878          drop
36880            mg
36881          tube
36882            mg
36883          drop
36892         drops
36893          pump
36894          tube
36900            ml
36901            ml
36911         spray
36919            mg
36920         spray
36921         spray
36925           mcg
36945            gm
36969         units
36970         units
36982          tube
36983           ml 
36984            ml
36985            ml
36994         spray
37007            mg
37015         spray
37017 other specify
37018            ml
37019          drop
37020         drops
37021        sprays
37036          drop
37038            mg
37046         units
37054          drop
37055          drop
37056          tube
37057           mcg
37061         spray
37063 other specify
37069           mcg
37070         drops
37071            ml
37073            ml
37074            mg
37075            ml
37077         drops
37078         drops
37087         spray
37088            ml
37098         drops
37099            ml
37104         drops
37116            mg
37117          drop
37135         drops
37157   unspecified
37164         drops
37165         drops
37168          tube
37169            ml
37179         units
37193           tbs
37194          tbsp
37195            mg
37197            mg
37200         drops
37201         drops
37202          tube
37219         pumps
37221            mg
37259            mg
37260            ml
37262         drops
37266         drops
37267         drops
37270          pump
37271           tsp
37272            mg
37277            ml
37278   unspecified
37279   unspecified
37302           mcg
37303         drops
37309         drops
37316         drops
37324            mg
37325            gm
37326            ml
37332         drops
37337         drops
37344            ml
37349         drops
37359            mg
37373         spray
37374         drops
37375         units
37376         units
37377           tsp
37385         drops
37386         drops
37387         drops
37392         drops
37396            gm
37397            gm
37434   unspecified
37435   unspecified
37439          tube
37446            ml
37449         spray
37451         spray
37454            ml
37457            ml
37463            ml
37464            ml
37465          tube
37467          tube
37468         drops
37469         drops
37477         drops
37478         drops
37485         drops
37491         drops
37493         drops
37495            ml
37510            mg
37526            mg
37527        sprays
37533         drops
37536         spray
37540         drops
37545         drops
37546         drops
37547          drop
37552          tube
37568            mg
37569         drops
37571            mg
37576         spray
37577            mg
37578            oz
37579           mcg
37580            mg
37584   unspecified
37585   unspecified
37586   unspecified
37597   unspecified
37598   unspecified
37601         drops
37602          tube
37603            ml
37608            ml
37621            ml
37622            ml
37624         drops
37627            gm
37628         drops
37629         drops
37630         spray
37639   unspecified
37648            ml
37651          pump
37655          tube
37657          tube
37662            ml
37664        sprays
37669         spray
37670            ml
37675          drop
37691         drops
37696            mg
37697            mg
37698            mg
37704         drops
37705         drops
37709            mg
37710            mg
37712   unspecified
37713   unspecified
37714   unspecified
37717   unspecified
37718   unspecified
37731            ml
37738         spray
37739         drops
37740         drops
37742           tsp
37771         drops
37785          tube
37786          pump
37797           ml 
37798           mcg
37805            mg
37806            mg
37809          drop
37816   unspecified
37817   unspecified
37820            iu
37821   unspecified
37822          drop
37834          tbsp
37835          tube
37837            mg
37838           ml 
37839          pump
37845         drops
37846         drops
37847            ml
37848         spray
37849         drops
37850            ml
37851          pump
37852         drops
37855            ml
37858         drops
37865          drop
37885          tube
37894            ml
37895          tube
37907            mg
37916         drops
37920          drop
37929         drops
37930         drops
37933          tube
37934            gm
37935         drops
37936         drops
37937         drops
37942         drops
37944            mg
37976          pump
37977          tube
37978          tube
37979            gm
37980            ml
37984            gm
37989            ml
37990          drop
37992          drop
37993            ml
38018            mg
38036            ml
38041          pump
38046          pump
38048            mg
38050 other specify
38051          tube
38052   unspecified
38056           tsp
38070         spray
38071         drops
38072         drops
38074         drops
38075         drops
38102            mg
38123            ml
38126         drops
38132   unspecified
38134          drop
38135            ml
38136            ml
38141            ml
38142            ml
38151            gm
38152         units
38156            mg
38165            mg
38166            mg
38177          drop
38179         drops
38181   unspecified
38182   unspecified
38184   unspecified
38185         drops
38193         drops
38204           tsp
38211         drops
38216        sprays
38217         drops
38219            mg
38240            ml
38256           tbs
38257            mg
38259            mg
38262         drops
38268         drops
38273         units
38284           mcg
38287           tsp
38288            gm
38289            ml
38293            mg
38294          tube
38301         drops
38305         drops
38306         drops
38324            ml
38326         drops
38330         spray
38339         drops
38342            ml
38351            ml
38352 other specify
38353         drops
38361         drops
38365        sprays
38366            gm
38367          pump
38369         drops
38372            ml
38373            ml
38377   unspecified
38378         drops
38386   unspecified
38387   unspecified
38388            ml
38396         drops
38397            ml
38399           tsp
38406            ml
38420         drops
38422         drops
38423          tube
38427            gm
38431         spray
38436         spray
38438         drops
38439         spray
38442            ml
38461            ml
38462            mg
38464            mg
38465            ml
38466            mg
38470            mg
38471            mg
38472            mg
38473            mg
38499            mg
38504            ml
38505            mg
38507            mg
38508            ml
38509            mg
38510            mg
38511            mg
38512            mg
38522            mg
38527            gm
38528            ml
38529          drop
38531         spray
38532          drop
38533         drops
38534            ml
38536         spray
38544         tube 
38550   unspecified
38551   unspecified
38557   unspecified
38567            ml
38568         spray
38569          tube
38570   unspecified
38588            gm
38602            gm
38605         drops
38606            mg
38607            oz
38610         pumps
38611         drops
38618           tsp
38626         drops
38630            ml
38636            ml
38637            ml
38643            ml
38647            ml
38655            gm
38656         spray
38665            mg
38691          drop
38722         drops
38723         drops
38754   unspecified
38772          tube
38773         units
38775            ml
38779            gm
38780            oz
38787            gm
38789   unspecified
38796           tsp
38802   unspecified
38809         drops
38816            gm
38820            mg
38821            mg
38828          tube
38839         drops
38841         drops
38843         drops
38845           tsp
38847            ml
38850          tbsp
38851   unspecified
38854         drops
38855            ml
38861            ml
38864         drops
38865         drops
38868           mcg
38871   unspecified
38890         spray
38891         drops
38892          drop
38896          tube
38902         drops
38924            mg
38925         spray
38926          tube
38930         drops
38931          tube
38940         drops
38941         drops
38945         spray
38946         spray
38950         spray
38951         spray
38952         spray
38956   unspecified
38963         drops
38964          tube
38970   unspecified
38971   unspecified
38974   unspecified
38976   unspecified
38997   unspecified
39004            ml
39005          tube
39006         drops
39035   unspecified
39073         pumps
39083            mg
39099            gm
39117            mg
39120           mcg
39121            gm
39122         spray
39123            ml
39125            ml
39127         drops
39128         drops
39158            mg
39165            mg
39167            gm
39171         drops
39176         drops
39181         spray
39182          drop
39198            ml
39201         drops
39202         spray
39207         drops
39209         drops
39210         drops
39211            ml
39212         drops
39218         drops
39258            ml
39259           tsp
39260          tube
39262            mg
39273           mcg
39316            gm
39325            mg
39326            oz
39329            mg
39330            mg
39331            mg
39332            mg
39338          tube
39339         drops
39340         drops
39388         drops
39392         drops
39423   unspecified
39425         spray
39433            oz
39434         drops
39435         spray
39438         drops
39440         units
39443         units
39444         units
39445         units
39446         units
39447         units
39450         units
39451         units
39453         spray
39486          tube
39495         drops
39496           mcg
39511         units
39513         drops
39516         pumps
39519         drops
39525            gm
39526         drops
39528         drops
39531          tube
39534         drops
39536         spray
39539         drops
39541          tube
39542           tsp
39543          pump
39546         spray
39548            mg
39566   unspecified
39567   unspecified
39573   unspecified
39581         drops
39582         drops
39586         drops
39591   unspecified
39599   unspecified
39607            mg
39609            ml
39617            mg
39618            mg
39635         drops
39637            mg
39639         drops
39651         spray
39705            mg
39706            mg
39707            mg
39714         drops
39715         spray
39737   unspecified
39744         spray
39754            ml
39756            mg
39759            mg
39760         units
39763            mg
39764          tube
39776            mg
39777            mg
39778            mg
39786           mcg
39787           mcg
39788            mg
39795            mg
39796           mcg
39833            mg
39849            mg
39856            mg
39860           mcg
39871           mcg
39875           mcg
39877           mcg
39881          tube
39909         drops
39919         spray
39948         spray
39949          tube
39958          tbsp
39973         drops
39974         drops
39975         pumps
39980            gm
39981            gm
39982            gm
39987         drops
39988         drops
40013         spray
40021         drops
40023         spray
40038            mg
40043            ml
40052          tube
40092            gm
40093         drops
40102   unspecified
40108           mcg
40109            mg
40115         drops
40117            ml
40121           mcg
40123            ml
40124          drop
40125          drop
40133            mg
40134            mg
40138          drop
40141         drops
40142           mcg
40143          tube
40144         drops
40149            ml
40154         drops
40164         drops
40165          tube
40180         drops
40186         drops
40194           mcg
40196         drops
40206            ml
40209            ml
40214            ml
40216         drops
40217         drops
40218            ml
40221         drops
40222         drops
40223          pump
40224         pumps
40244            gm
40290           mcg
40296            mg
40297            ml
40298            ml
40299            gm
40302         drops
40312          tube
40317         drops
40331            mg
40343         drops
40390         spray
40391         spray
40392            mg
40394   unspecified
40403         spray
40406            mg
40407           mcg
40417         drops
40418            gm
40422          tube
40425         drops
40446            mg
40451            mg
40454            mg
40464            mg
40468         units
40472            ml
40474            ml
40483            ml
40484            gm
40486         units
40487         units
40488         drops
40489         drops
40494            mg
40503         drops
40504            ml
40508         drops
40511            mg
40519         drops
40521         drops
40535            mg
40541         units
40568          tube
40571         drops
40572         units
40573         drops
40574           ml 
40579         drops
40580            mg
40581            mg
40582            ml
40583            ml
40595            ml
40600            gm
40601         drops
40603          pump
40604            ml
40606          tube
40607          tube
40611            ml
40615            mg
40616            ml
40617         drops
40618   unspecified
40619   unspecified
40620   unspecified
40634          tube
40636         units
40637         units
40644   unspecified
40653          tube
40654         spray
40655          tube
40656            mg
40684          drop
40686          drop
40687          drop
40688            ml
40689          drop
40690          drop
40691          pump
40693          pump
40695          pump
40696          pump
40699            mg
40700         drops
40701         drops
40718         drops
40719         drops
40721          tube
40722           tsp
40723         drops
40724         drops
40725 other specify
40726         drops
40727         drops
40744            ml
40745           tsp
40747            mg
40748          tbsp
40749         spray
40750           tbs
40751         spray
40754            ml
40755          tbsp
40756          drop
40758         drops
40760         spray
40775         spray
40776           tsp
40781         spray
40783         units
40794         drops
40796        sprays
40799          tube
40800          drop
40801         pumps
40810          pump
40823          tube
40824         drops
40825          tube
40827          tube
40828            ml
40829         spray
40833         spray
40834 other specify
40838          drop
40839          drop
40840          drop
40843         spray
40846            mg
40848            ml
40866            ml
40868            ml
40870         spray
40873            ml
40875            ml
40879            ml
40895   unspecified
40897            mg
40899            mg
40900            mg
40902           mcg
40905           mcg
40919   unspecified
40943            ml
40958            ml
40959         spray
40960         spray
40961         spray
40962            ml
40965            ml
40966           tsp
40967          tbsp
40968        sprays
40969           ml 
40970           ml 
40971           ml 
40972           ml 
40974          drop
40984   unspecified
40987   unspecified
40990   unspecified
40992         units
40993         units
40994         units
40997         drops
40998            ml
41003            mg
41004            mg
41005            oz
41006            gm
41007            gm
41009            mg
41010            ml
41011            mg
41014            gm
41015            mg
41016            ml
41018            ml
41020   unspecified
41021            ml
41022         drops
41023         drops
41024            gm
41025            ml
41057         drops
41068            ml
41069        sprays
41084            ml
41087            mg
41088            ml
41089            mg
41090           tsp
41091         drops
41094            mg
41095            mg
41096            ml
41097         drops
41098            ml
41099            mg
41101            gm
41102            mg
41103            ml
41104            mg
41121 other specify
41125         spray
41129            mg
41130            mg
41131         drops
41132            ml
41133          tube
41134           ml 
41137            ml
41139         drops
41147         drops
41151         drops
41152   unspecified
41170          drop
41198           mcg
41199           mcg
41200           mcg
41201           mcg
41203            ml
41204        sprays
41206          drop
41207         drops
41208          drop
41209          drop
41210          tube
41216         drops
41217         drops
41219            ml
41220            mg
41221            ml
41222           mcg
41223         units
41224         units
41240         spray
41241         spray
41242            ml
41246         drops
41254         drops
41260   unspecified
41267          tube
41278          drop
41279         drops
41281            ml
41283            mg
41313         drops
41314            mg
41315         drops
41316            mg
41318         drops
41319           mcg
41320          tbsp
41325            mg
41332            mg
41335        sprays
41340         drops
41343         drops
41360   unspecified
41371         units
41373         spray
41374            gm
41376            mg
41377         drops
41378         drops
41381            ml
41384          pump
41385           tsp
41386           tsp
41387         drops
41388         drops
41396         drops
41398         units
41407            mg
41413         drops
41417           mcg
41420            mg
41421         drops
41422         drops
41424            ml
41425         drops
41430            mg
41431            mg
41432         spray
41433         drops
41435            mg
41442          drop
41443            mg
41444            mg
41446         spray
41447            mg
41451            mg
41464         drops
41466         drops
41470   unspecified
41497         drops
41500         units
41505            ml
41525         spray
41531          tube
41533            mg
41557            ml
41572        sprays
41573         spray
41581         spray
41612            mg
41615            ml
41617            mg
41621            mg
41629            ml
41632            mg
41633            mg
41636          tube
41637         drops
41638         drops
41639          tube
41640            ml
41641           mcg
41653            mg
41655         drops
41674            mg
41724   unspecified
41725         drops
41726            ml
41727          tube
41728          tube
41729         drops
41731         units
41737         drops
41738         spray
41739         drops
41740         drops
41743            mg
41746         drops
41747          drop
41748          tube
41749         drops
41750         spray
41751          drop
41752          tube
41753           tsp
41754           tsp
41756           mcg
41759           tsp
41774            mg
41778           tsp
41779            ml
41781         units
41803         drops
41811         drops
41816         drops
41819            mg
41830            mg
41835            ml
41837            ml
41838         drops
41840            gm
41846            gm
41849         spray
41850            ml
41851            mg
41853            mg
41854            ml
41863         drops
41870            mg
41872            mg
41888          tube
41891           mcg
41893         drops
41894            mg
41896            mg
41897            mg
41898            mg
41899            mg
41900            mg
41901            mg
41902            mg
41903            mg
41904            mg
41905            mg
41906            mg
41921   unspecified
41929          drop
41930         drops
41937            ml
41938         spray
41939         drops
41946           mcg
41947           mcg
41950           mcg
41973          tube
41975            mg
41988          drop
42004         units
42005         units
42011        sprays
42012         drops
42032         drops
42037          tbsp
42039          tube
42043           ml 
42044          pump
42053         drops
42055            gm
42057            mg
42061         spray
42063         drops
42066            ml
42100          pump
42101         drops
42112           mcg
42116            mg
42119   unspecified
42122   unspecified
42147          tube
42148            ml
42149          tube
42150         drops
42151          drop
42152         spray
42154            ml
42174            gm
42198         spray
42201         drops
42215   unspecified
42218         units
42219         units
42221            gm
42227          pump
42229          tube
42240   unspecified
42241   unspecified
42242   unspecified
42243   unspecified
42256            ml
42257          drop
42259          drop
42267         drops
42272            mg
42273            mg
42278          pump
42284           mcg
42286          tube
42287          tube
42289        sprays
42291         spray
42313          tube
42314         drops
42345          tube
42346            ml
42348            ml
42349         drops
42353         drops
42354          drop
42356            ml
42357            ml
42358            ml
42361            gm
42366            gm
42367           tsp
42368         units
42378          drop
42379         drops
42384         drops
42386         spray
42387          tube
42399          tube
42402         drops
42404         drops
42412        sprays
42413         drops
42417          drop
42425            ml
42426         drops
42433         drops
42451            ml
42455            mg
42463         drops
42464           tsp
42465            gm
42466            mg
42468   unspecified
42474            mg
42475            mg
42476         drops
42477            ml
42478            mg
42480            oz
42481            mg
42482         drops
42483          drop
42486            ml
42488 other specify
42489            mg
42502            mg
42506            ml
42512         drops
42513         units
42522        sprays
42537            gm
42551          pump
42552          pump
42553         drops
42570            ml
42572           mcg
42573            ml
42574            ml
42578            mg
42579            mg
42593           mcg
42594           mcg
42624         drops
42626         drops
42627           tsp
42628            ml
42632         drops
42633         drops
42634          tube
42637         spray
42638            mg
42640         spray
42646            ml
42647            ml
42648            ml
42651          tube
42652            ml
42655            ml
42656            ml
42666            ml
42668           mcg
42675   unspecified
42678         drops
42679         drops
42694         drops
42695          tube
42696         drops
42697          tube
42700         drops
42704          tube
42712         spray
42716            ml
42721         units
42725            gm
42726            gm
42727         units
42728            ml
42729          drop
42740         spray
42752         units
42753         units
42758            mg
42760            ml
42761         drops
42764            mg
42766            mg
42768            mg
42785            mg
42786            mg
42787            mg
42791            mg
42792            mg
42799   unspecified
42821            ml
42833            mg
42860         spray
42876            mg
42879         drops
42887   unspecified
42890            gm
42891            gm
42892   unspecified
42893   unspecified
42894   unspecified
42913            ml
42915         drops
42920           mcg
42923            ml
42926            ml
42930            ml
42931            ml
42932            ml
42935            gm
42936         spray
42939          drop
42940         drops
42946   unspecified
42952            mg
42956         drops
42959         drops
42960           mcg
42967         drops
42994          tube
43013           mcg
43045          tube
43064          tube
43065          tube
43069            gm
43072            ml
43081           tsp
43086           tsp
43105         drops
43116          pump
43119            gm
43123            mg
43134            mg
43135            mg
43136            mg
43137            mg
43138            mg
43151            mg
43153            mg
43169         spray
43173          pump
43183            mg
43184            mg
43191            ml
43200            mg
43202            ml
43204          tube
43224         drops
43228            ml
43236            mg
43238         drops
43239          drop
43241          pump
43242         spray
43243         spray
43244         drops
43246          drop
43247   unspecified
43258            mg
43259            mg
43270            mg
43286            mg
43291            mg
43292            oz
43293         drops
43310         drops
43334            mg
43366         drops
43388         spray
43405         spray
43412          tube
43423           mcg
43424            mg
43430          tube
43465        sprays
43467          pump
43469          drop
43470          tube
43471            ml
43482          tube
43491          tube
43493            mg
43494            mg
43496            mg
43497            mg
43510         drops
43511         pumps
43512            gm
43522            gm
43527           mcg
43531         spray
43532            ml
43535         drops
43538           tsp
43539            ml
43540         drops
43545            gm
43546         drops
43547            mg
43548         drops
43549         spray
43550          drop
43563         drops
43570         drops
43610         spray
43620            mg
43621            ml
43636          tube
43637            ml
43639            gm
43640         drops
43642         drops
43643           tsp
43644         units
43645         units
43646         units
43650            oz
43652            gm
43653            gm
43669            gm
43678          pump
43683          tube
43684          tube
43685         drops
43686         drops
43697         drops
43698         drops
43701          pump
43702          pump
43706         spray
43707         spray
43709         spray
43714         drops
43715            ml
43738   unspecified
43743         drops
43744         drops
43745         drops
43746         drops
43747            gm
43751         drops
43783          tube
43784            ml
43785            ml
43790         units
43806          tbsp
43807         pumps
43838   unspecified
43843            mg
43844            mg
43851            mg
43853   unspecified
43854   unspecified
43878            gm
43884         units
43887         drops
43893          pump
43894         spray
43896            gm
43919         drops
43920          tube
43938         drops
43939         drops
43949         drops
43950         drops
43958         spray
43959         drops
43960            ml
43963            mg
43965         drops
43975         drops
43976           mcg
43977           mcg
43980           mcg
43997         drops
44031           mcg
44037           mcg
44050         spray
44055         drops
44084         drops
44087         drops
44090         spray
44119         drops
44123         spray
44126          pump
44127         drops
44129            ml
44131            ml
44154         drops
44155          tube
44157          tube
44158          drop
44207         drops
44209         drops
44211            gm
44212            ml
44214            mg
44216         drops
44218          tube
44219            mg
44222   unspecified
44223         drops
44224         drops
44225         drops
44226         units
44227         drops
44234         units
44235         units
44240         drops
44241            mg
44243   unspecified
44244   unspecified
44246         units
44247         units
44249          pump
44250         spray
44251            ml
44252          tube
44253          tube
44268            gm
44280         drops
44282         drops
44309   unspecified
44330           tsp
44334         drops
44335            ml
44336            ml
44337          drop
44347   unspecified
44350            mg
44363            mg
44372            gm
44385            mg
44386            mg
44390          tube
44391            mg
44392            mg
44395            ml
44398         drops
44421         drops
44428          tube
44429            mg
44431         drops
44434            gm
44452         drops
44473            ml
44507         drops
44520         drops
44524         units
44531         units
44542         drops
44543         drops
44544          pump
44545            ml
44546            gm
44547            ml
44558         drops
44559            gm
44570         drops
44571          tube
44576         drops
44577          tube
44595         spray
44607         spray
44608         drops
44609         spray
44614          drop
44616         drops
44618            gm
44646            ml
44649         drops
44652   unspecified
44653   unspecified
44654   unspecified
44655   unspecified
44658   unspecified
44660            mg
44663            mg
44671            ml
44672            mg
44677            mg
44679            mg
44683         drops
44684            gm
44706            ml
44732            mg
44742            ml
44743         drops
44745         drops
44746            mg
44747         drops
44755   unspecified
44757   unspecified
44769         drops
44771         drops
44782   unspecified
44795           tsp
44799            mg
44804            mg
44820         drops
44827           ml 
44828         drops
44829          drop
44830         units
44834            ml
44843            gm
44844         drops
44857            mg
44858            mg
44862          pump
44863           mcg
44864           mcg
44866   unspecified
44867            ml
44868            ml
44869         drops
44875            mg
44877           mcg
44879          tube
44899   unspecified
44905   unspecified
44915         drops
44916           mcg
44917         tube 
44918           mcg
44920         drops
44922            mg
44924         spray
44925         drops
44933            ml
44936            mg
44937            ml
44938            ml
44939            oz
44946          drop
44947          drop
44948          pump
44949          pump
44950          pump
44957          pump
44958            ml
44997         drops
45005            mg
45007         drops
45014          tube
45015            mg
45016         spray
45017            mg
45023         drops
45027         drops
45034            ml
45045           tsp
45053         spray
45054         spray
45055         spray
45059            ml
45061          tbsp
45062          drop
45063            mg
45064          drop
45066         drops
45072            mg
45073            mg
45076           tsp
45109         spray
45116            mg
45117        sprays
45123         units
45134            mg
45139           mcg
45149         pumps
45150          pump
45154          tube
45172         drops
45173         drops
45174            ml
45175            ml
45178         spray
45179         spray
45180          drop
45181          drop
45182          drop
45184         spray
45185            ml
45186            ml
45187            ml
45188            ml
45189         spray
45195            mg
45199            mg
45208            ml
45209         drops
45210            ml
45212         drops
45216          drop
45224   unspecified
45225         spray
45236         spray
45255            mg
45263            ml
45268           tsp
45273         drops
45280           mcg
45283           ml 
45286           mcg
45294           mcg
45295            gm
45297         drops
45298          drop
45299          drop
45302           ml 
45305            mg
45307         drops
45309            mg
45310           tsp
45311          drop
45312          drop
45313          drop
45322            mg
45327            mg
45335            mg
45344            ml
45345         spray
45358   unspecified
45359   unspecified
45372         drops
45383            ml
45403   unspecified
45406         spray
45411            ml
45425         drops
45426         drops
45434   unspecified
45435         drops
45443           mcg
45445            ml
45451        sprays
45452          pump
45463            mg
45468            mg
45470          tube
45471         mg/ml
45476            mg
45479         mg/ml
45480            mg
45484          drop
45499         drops
45500          tube
45503            mg
45504          drop
45508         drops
45531            mg
45534            mg
45555            ml
45556          pump
45572         drops
45582            ml
45585            ml
45626            mg
45642           mcg
45650         drops
45651         drops
45655            ml
45656          tube
45663         drops
45664            ml
45665            ml
45667         spray
45670            mg
45671            mg
45675            ml
45676        sprays
45683          drop
45699         drops
45700         drops
45704         drops
45724         units
45725         units
45726         units
45727            oz
45728         units
45729            mg
45735         drops
45736         drops
45751   unspecified
45764         units
45775         drops
45776         drops
45787            ml
45791         drops
45798            mg
45799         spray
45800          tube
45816          drop
45820         drops
45843            ml
45853         drops
45862         drops
45863          tube
45864            ml
45869            ml
45872          tbsp
45876            mg
45898         drops
45899         drops
45901          tube
45908         pumps
45909          tube
45914         spray
45924            mg
45968            mg
45969         drops
45970         drops
45971            mg
45990          pump
45994         units
45995           tsp
45996         drops
45997            ml
46014           tsp
46018          tube
46019         drops
46021         drops
46022          drop
46025         drops
46043          tube
46044         drops
46071         drops
46075            mg
46076         drops
46078            mg
46085   unspecified
46091         drops
46092          drop
46094            mg
46095         units
46100         drops
46107         drops
46108            gm
46110            gm
46116            ml
46119         spray
46122          tube
46131         drops
46132         drops
46134         spray
46170         spray
46171         drops
46173            ml
46174            ml
46177           mcg
46186   unspecified
46198          tube
46200          tube
46201         drops
46202            mg
46213          tube
46218            ml
46219         drops
46227         drops
46255         drops
46265            mg
46277          tube
46278          tube
46287         drops
46288        sprays
46291         drops
46292         spray
46293         drops
46295         drops
46296         drops
46302          drop
46303            mg
46305            mg
46308            mg
46311   unspecified
46312         drops
46313   unspecified
46314   unspecified
46319          tube
46320            mg
46324         drops
46325            mg
46345           mcg
46350            mg
46355            mg
46358            mg
46360           tsp
46377           tsp
46379            mg
46399           tsp
46406            ml
46410            mg
46411         drops
46413          tube
46418            ml
46424            ml
46431            ml
46435           mcg
46436         drops
46474            gm
46475         drops
46476         drops
46478         spray
46479            ml
46482            ml
46483          tube
46486          pump
46487          tube
46488          tube
46489            ml
46490            mg
46493         spray
46494            ml
46499            mg
46504            ml
46505         drops
46506         drops
46512            mg
46517         units
46521           mg/
46526            mg
46528         drops
46530         drops
46532            mg
46533            mg
46544            mg
46547            ml
46551         drops
46553         drops
46555          tube
46568           mcg
46569            ml
46570            mg
46571         drops
46572           mcg
46573            mg
46574           mcg
46575           mcg
46579   unspecified
46588            ml
46591           mcg
46593         drops
46606         drops
46607            mg
46615          tbsp
46616          tube
46617            ml
46618            mg
46665            mg
46676         drops
46680         units
46687         drops
46690         spray
46694         drops
46702            ml
46703          pump
46716            mg
46717            mg
46729           mcg
46730           mcg
46732            ml
46737   unspecified
46747   unspecified
46753          drop
46763            mg
46766            mg
46767          tube
46775         drops
46776          drop
46777         spray
46781            ml
46782          tube
46783            gm
46784         spray
46785         drops
46786         drops
46788          tube
46789          tube
46804           mcg
46811          pump
46812          tube
46816          tube
46827         drops
46849           mcg
46853           mcg
46874            ml
46880            gm
46883            mg
46884            ml
46885          drop
46889            mg
46891          drop
46902         drops
46903            ml
46904          pump
46905         drops
46908          tube
46915          tube
46931        sprays
46938         spray
46944          tube
46961         drops
46962         drops
46972            ml
46973            ml
46976           mcg
46977         drops
46981         drops
46982            ml
46983            ml
46984            ml
46985            gm
46986            ml
47000            mg
47004           tsp
47010          drop
47011          drop
47018         drops
47024         drops
47025         spray
47041            mg
47043          tube
47049         drops
47060   unspecified
47076         drops
47080            oz
47081           tsp
47085          drop
47086            ml
47090         mg/ml
47095         drops
47096         drops
47097            ml
47098         drops
47104           tsp
47105            gm
47106            ml
47125           mcg
47126            mg
47128            mg
47137         drops
47140            ml
47143         spray
47146            mg
47152         drops
47154            ml
47155          tube
47156            ml
47162         drops
47164         drops
47178        sprays
47180         drops
47183          pump
47184         drops
47187            ml
47193            ml
47194            ml
47196            ml
47197            ml
47204   unspecified
47208            gm
47209            ml
47210         drops
47220            ml
47221            mg
47222            ml
47240         drops
47248         drops
47251          tube
47253         spray
47260         spray
47302         drops
47323            mg
47325            mg
47334         drops
47343            mg
47345            mg
47350         spray
47355          tube
47360   unspecified
47390           mcg
47407            mg
47409            mg
47411            ml
47412            ml
47415         drops
47416          pump
47417          pump
47420         drops
47421          tube
47433            mg
47439            mg
47451           mcg
47478         drops
47479          tube
47483         drops
47484          tube
47486         spray
47493            ml
47496         drops
47497            gm
47498            gm
47539         drops
47540          drop
47544   unspecified
47547         drops
47557          tube
47562         spray
47563         tube 
47576            ml
47577            ml
47578            ml
47586            ml
47587         spray
47588 other specify
47589            mg
47590            ml
47592            mg
47593            ml
47594            mg
47595            ml
47597            mg
47600            mg
47628         pumps
47629           mcg
47630         drops
47635         units
47636            mg
47658         drops
47681           mcg
47684            ml
47693            ml
47694            ml
47696            ml
47698            gm
47699         spray
47702         drops
47706            mg
47715   unspecified
47716   unspecified
47720         drops
47721         drops
47733          tube
47734         drops
47739   unspecified
47743            mg
47744          tube
47745            mg
47746         units
47752          tube
47755            gm
47760            ml
47800           tsp
47801           tsp
47802         drops
47803          pump
47808            gm
47810         drops
47811            ml
47812          tube
47815          tube
47816          tube
47817         spray
47825   unspecified
47835            ml
47836          tbsp
47840          tube
47860            mg
47861         mg/ml
47863         units
47877            mg
47887         spray
47888         spray
47889         drops
47890            mg
47891           tsp
47894            mg
47900         drops
47909         units
47910         drops
47951         drops
47952            mg
47953         drops
47969         drops
47970         spray
47971         spray
47975         spray
47976         spray
47981         spray
47983            mg
47984          tube
47985         drops
47989          tube
47990         spray
47995          tube
47996        sprays
47997          pump
47998            mg
48000            mg
48001            mg
48002            mg
48003            mg
48004            mg
48005            mg
48007            mg
48013         spray
48014            ml
48016         drops
48020           tsp
48021            ml
48028            ml
48029            gm
48030         drops
48031         drops
48034         spray
48035          drop
48040         drops
48041            oz
48046            ml
48047         spray
48048            ml
48049            ml
48069          tube
48072            ml
48087         drops
48088            ml
48089         units
48090         units
48094         units
48100            gm
48101         drops
48102            gm
48103            ml
48105            gm
48106            gm
48107          pump
48108          tube
48109          tube
48110         drops
48114         drops
48120         drops
48121         units
48127          pump
48131         units
48132         spray
48133         spray
48142         spray
48143         units
48147         drops
48148            ml
48151          drop
48152         drops
48155            mg
48157         drops
48158         drops
48159         drops
48160            gm
48163   unspecified
48167         spray
48169            mg
48182           mcg
48185            mg
48188         drops
48201            mg
48213         pumps
48214            gm
48215            gm
48217           mcg
48220         drops
48221            ml
48222          tube
48231            mg
48237         spray
48238            mg
48240            mg
48248            mg
48251            gm
48252          tube
48258           tsp
48265            oz
48266            oz
48267         drops
48271            mg
48274         drops
48277         drops
48285            gm
48287            ml
48288         drops
48289           mcg
48291            gm
48292           mcg
48294         drops
48297         spray
48298         drops
48299            ml
48300         drops
48306         spray
48307         drops
48310         drops
48314            mg
48322         drops
48327            ml
48328            mg
48334            ml
48336            mg
48337            mg
48338            mg
48339            mg
48342            mg
48343            ml
48344            mg
48345         drops
48350            mg
48351            mg
48352            mg
48353            mg
48354            mg
48355            gm
48376         drops
48380          tube
48381         drops
48383           tsp
48384          pump
48394         drops
48406         spray
48420            mg
48438           mcg
48439            mg
48441          tube
48442          tbsp
48444           mcg
48447         drops
48448         drops
48481         drops
48483         drops
48494            gm
48495            mg
48496            mg
48497            mg
48498            mg
48500            mg
48502            mg
48504            mg
48505            mg
48513         drops
48540            mg
48541           tsp
48542         drops
48598            ml
48602            mg
48610            mg
48611           mcg
48615           mcg
48621          drop
48624          drop
48633   unspecified
48636          tube
48643         drops
48661            ml
48664         drops
48667          tube
48668         drops
48673   unspecified
48680         drops
48683            ml
48684            ml
48692            mg
48693            mg
48694         drops
48696            ml
48697         drops
48698         drops
48712          pump
48713         pumps
48718            mg
48719         drops
48720         drops
48721         drops
48722            gm
48724         drops
48725          tube
48729         drops
48733          tube
48734         spray
48735         spray
48736         drops
48770         units
48782   unspecified
48802         drops
48806         drops
48808         drops
48812            ml
48819            mg
48821            mg
48845         drops
48855            mg
48859            mg
48862            mg
48889          drop
48890            gm
48891         spray
48892           tsp
48894            mg
48902            ml
48906            ml
48918            gm
48935            ml
48946            mg
48994            mg
48997   unspecified
49002           mcg
49005         drops
49012         drops
49016         drops
49017           mcg
49018           mcg
49025           mcg
49026         drops
49033            ml
49034         drops
49035         drops
49036           ml 
49042         drops
49044          drop
49046            ml
49051   unspecified
49052   unspecified
49082 other specify
49084            gm
49096         drops
49105   unspecified
49113            ml
49117           mcg
49120            mg
49123          tube
49127            mg
49128            ml
49129            ml
49130         drops
49163            mg
49164          tube
49167            mg
49168           mcg
49169            mg
49170            mg
49184          tube
49193            mg
49196            mg
49208          tube
49209         spray
49216          tube
49217         drops
49218          drop
49219            mg
49220            mg
49227          drop
49229          drop
49231            ml
49232          drop
49248           mcg
49252          drop
49253          pump
49316          pump
49323          pump
49324            ml
49343         drops
49346        sprays
49348         drops
49350          tube
49351           tsp
49352         spray
49372            mg
49376          tube
49377            ml
49378           tsp
49379          tbsp
49388         spray
49393         units
49394         units
49395         units
49398            mg
49403            mg
49404            mg
49408         spray
49409         spray
49437           tsp
49438         spray
49442         drops
49460         spray
49461        sprays
49462         units
49463          drop
49473         pumps
49509          pump
49510          tube
49518           mcg
49520            mg
49523           mcg
49526 other specify
49531   unspecified
49549          tube
49550          tube
49553           mcg
49554           mcg
49567         spray
49568          drop
49569          drop
49572          drop
49588           mcg
49590         spray
49591            ml
49592            ml
49593            ml
49596            ml
49601         drops
49605            ml
49607            mg
49608         units
49645            ml
49649            ml
49654            ml
49659         drops
49698            mg
49699            ml
49705   unspecified
49731         spray
49748            ml
49753            oz
49754            oz
49755            mg
49756            ml
49757            mg
49758            mg
49766         drops
49767          drop
49768          drop
49769          drop
49773          drop
49792           ml 
49793          drop
49799   unspecified
49812            mg
49820           tsp
49821          drop
49845            mg
49846            mg
49849         spray
49852         spray
49854            ml
49855         spray
49857            mg
49861         drops
49862         spray
49871            ml
49878         spray
49883            ml
49886         drops
49889         drops
49890            gm
49898         spray
49905            ml
49906        sprays
49907          pump
49908            ml
49911           tsp
49912          tube
49963            mg
49966            iu
49978          tube
49985         drops
49986          drop
49987         drops
49990            ml
49991          pump
49992          tube
49993            ml
49996            ml
50000         spray
50001         spray
50004         drops
50006         drops
50007            ml
50008          tube
50009           ml 
50011         drops
50012   unspecified
50014   unspecified
50029            mg
50033            mg
50048            mg
50050            mg
50077         units
50107          drop
50108          drop
50115          tube
50116         spray
50117         drops
50118           mcg
50154            mg
50159   unspecified
50161   unspecified
50187         drops
50189         drops
50190         drops
50194         spray
50195         spray
50196            ml
50198         drops
50199            ml
                                                    dose_unit_specify
22                                                               <NA>
40                                                    based on weight
41                                                               <NA>
42                                                    based on weight
46                                                tablet/pill/capsule
48                                                               tube
49                                                               tube
51                                                tablet/pill/capsule
59                                              1 tablet/pill/capsule
60                                                        bottle/vial
62                                                        application
63                                                tablet/pill/capsule
67                                                       small amount
70                                                       small amount
74                                                              drops
84                                                              spray
87                                                    0.25 inch strip
91                                                               <NA>
111                                                              <NA>
112                                                              <NA>
113                                                              <NA>
114                                                              <NA>
149                                                    shampoo/mousse
150                                                      small amount
151                                                       application
152                                               tablet/pill/capsule
153                                               tablet/pill/capsule
155                                               tablet/pill/capsule
167                                                              <NA>
188                                               tablet/pill/capsule
192                                               tablet/pill/capsule
220                                               tablet/pill/capsule
230                       272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                             drops
235                                                              <NA>
236                                                              tube
237                                                              tube
238                                                      small amount
242                                                              <NA>
257                                                              <NA>
275                                               tablet/pill/capsule
276                                               tablet/pill/capsule
277                                               tablet/pill/capsule
279                                                   moderate amount
280                                                      small amount
310                                                              <NA>
317                                                              <NA>
318                                                              <NA>
324                                                   based on weight
328                                                   based on weight
329                                                   based on weight
332                                                   based on weight
333                                                   based on weight
347                                                              <NA>
348                                                              <NA>
350                                                              <NA>
351                                                              <NA>
353                                                              <NA>
355                                                              <NA>
366                                                              <NA>
368                                                              <NA>
375                                               tablet/pill/capsule
376                                               tablet/pill/capsule
383                                               tablet/pill/capsule
384                                      based on weight (50-100 lbs)
385                                      based on weight (50-100 lbs)
386                                               tablet/pill/capsule
403                                                              <NA>
404                                                              <NA>
414                                                              <NA>
447                                                              <NA>
449                                                              <NA>
453                                                              <NA>
496                                                              <NA>
498                                                   based on weight
519                                                       unspecified
537                                                              <NA>
597                                                                 1
598                                                                 1
603                                               tablet/pill/capsule
604                                               tablet/pill/capsule
610                                                              <NA>
619                                               tablet/pill/capsule
637                                                   based on weight
642                                                              <NA>
686                                                              <NA>
688                                                              <NA>
703                                                   based on weight
704                                                   based on weight
709                                                              <NA>
710                                                              <NA>
712                                                              <NA>
725                                                              <NA>
728                                               tablet/pill/capsule
729                                               tablet/pill/capsule
730                                                              <NA>
734                                                        inch strip
738                                      based on weight (50-100 lbs)
739                                      based on weight (60-120 lbs)
754                                               tablet/pill/capsule
755                                                   based on weight
757                                                   based on weight
778                                                              <NA>
785                                               tablet/pill/capsule
790                                               tablet/pill/capsule
792                                               tablet/pill/capsule
797                                                              <NA>
798                                                              <NA>
799                                                              <NA>
800                                                              <NA>
801                                                              <NA>
802                                                              <NA>
803                                                   based on weight
804                                                       unspecified
810                                                       bottle/vial
816                                                      pack/package
819                                                              <NA>
820                                                              <NA>
823                                                              <NA>
824                                               tablet/pill/capsule
832                                                              <NA>
851                                                              <NA>
862                                               tablet/pill/capsule
871                                                              <NA>
874                                                              <NA>
877                                                              <NA>
878                                                              <NA>
879                                                              <NA>
880                                                              <NA>
884                                                              <NA>
887                                                              <NA>
891                                                              <NA>
893                                                              <NA>
899                                                              <NA>
901                                                              <NA>
905                                                              <NA>
913                                                   based on weight
921                                                   based on weight
950                                                              <NA>
955                                                            collar
958                                                              <NA>
969                                                              <NA>
977                                                              <NA>
982                                               tablet/pill/capsule
983                                               tablet/pill/capsule
989                                                   based on weight
1001                                                             <NA>
1017                                              tablet/pill/capsule
1018                                              tablet/pill/capsule
1020                                                       inch strip
1021                                                         wipe/pad
1027                                                   shampoo/mousse
1029                                                         wipe/pad
1030                                                   shampoo/mousse
1031                                                             <NA>
1033                                                             <NA>
1036                                                     small amount
1039                                                      bottle/vial
1042                                                         wipe/pad
1050                                                  based on weight
1072                                                             <NA>
1073                                                             pump
1074                                              tablet/pill/capsule
1087                         27 mg milbemycin oxime, 1620 mg spinosad
1091                                                             <NA>
1097                                                             <NA>
1099                                              tablet/pill/capsule
1100                                              tablet/pill/capsule
1101                                              tablet/pill/capsule
1108                                                         wipe/pad
1111                                                             <NA>
1112                                                      unspecified
1116                                                      unspecified
1129                                              tablet/pill/capsule
1150                                                     small amount
1152                                     based on weight (50-100 lbs)
1153                                     based on weight (50-100 lbs)
1154                                     based on weight (50-100 lbs)
1155                                              tablet/pill/capsule
1159    460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                     based on weight (50-100 lbs)
1161                                        based on weight (60+ lbs)
1168                                                             <NA>
1169                                                             <NA>
1170                                                             dose
1173                                                      application
1174                                                             <NA>
1175                                                                %
1176                                                             <NA>
1177                                                                %
1179                                                     small amount
1185                                                  based on weight
1186                                                  based on weight
1187                                                             <NA>
1189                                                  based on weight
1190                                                  based on weight
1193                                                             <NA>
1194                                                             <NA>
1195                                                  based on weight
1208                                                   1 pack/package
1217                                                      combination
1226                                                  based on weight
1233                                                             <NA>
1247                                                  based on weight
1285                                                             <NA>
1336                                                             <NA>
1344                                              tablet/pill/capsule
1346                                                     small amount
1355                                                  based on weight
1371                                            1 tablet/pill/capsule
1377                                                             <NA>
1378                                                             <NA>
1379                                                             <NA>
1380                                                             <NA>
1398                                                             <NA>
1404                                                            spray
1405                                                             <NA>
1415                                                     small amount
1419                                     based on weight (50-100 lbs)
1420                                                             <NA>
1422                                              tablet/pill/capsule
1434                                                             tube
1435                                              tablet/pill/capsule
1438                                              tablet/pill/capsule
1441                                              tablet/pill/capsule
1442                                              tablet/pill/capsule
1443                                                      bottle/vial
1450                                                             tube
1451                                              tablet/pill/capsule
1459                                                      application
1462                                                      bottle/vial
1464                                                  based on weight
1473                                                             <NA>
1475                                                             <NA>
1491                                                             <NA>
1499                                                             <NA>
1500                                                             <NA>
1501                                            1 tablet/pill/capsule
1511                                                  based on weight
1512                                                  based on weight
1514                                                  based on weight
1528                                                  based on weight
1529                                                  based on weight
1532                                                           1 tube
1534                                                             <NA>
1535                                                             <NA>
1536                                                      application
1537                                              tablet/pill/capsule
1538                                                             <NA>
1539                                                             tube
1541                                                             <NA>
1542                                                             <NA>
1556                                                         inhalant
1572                                     based on weight (50-100 lbs)
1586                                                             <NA>
1587                                                      combination
1598                                                  based on weight
1599                                                             <NA>
1633                                     based on weight (50-100 lbs)
1634                                                             <NA>
1635                                         4 tablets/pills/capsules
1636                                                             <NA>
1650                                                             <NA>
1663                                     based on weight (60-120 lbs)
1668                                                  moderate amount
1683                                                           collar
1684                                                   shampoo/mousse
1685                                                            spray
1689                                                  moderate amount
1692                                                  moderate amount
1697                                                           collar
1708                                                             <NA>
1710                                                             <NA>
1712                                     based on weight (50-100 lbs)
1715                                     based on weight (50-100 lbs)
1718                                                             <NA>
1720                                     based on weight (50-100 lbs)
1730                                                             <NA>
1743                                                             <NA>
1747                                                      bottle/vial
1748                                                    1 bottle/vial
1749                                                  based on weight
1756                                                      unspecified
1757                                                      unspecified
1758                                                  based on weight
1759                                                  based on weight
1760                                                             <NA>
1761                                                            spray
1769                                                             <NA>
1773                                              tablet/pill/capsule
1774                                                             <NA>
1789                                                             <NA>
1791                                                             <NA>
1794                                                             <NA>
1795                                                             <NA>
1796                                              tablet/pill/capsule
1798                                                             <NA>
1805                                                             <NA>
1809                                                             <NA>
1819                                                             <NA>
1820                                                      unspecified
1823                                                             <NA>
1845                                                             tube
1846                                              tablet/pill/capsule
1847                                                             tube
1848                                              tablet/pill/capsule
1849                                                  based on weight
1850                                                       inch strip
1851                                                  0.25 inch strip
1867                                                  based on weight
1872                                                  based on weight
1877                                                      unspecified
1887                                                            spray
1888                                                           collar
1917                                                  based on weight
1922                                                            spray
1925                                                   shampoo/mousse
1926                                                     small amount
1928                                                  based on weight
1929                                                  based on weight
1931                                                     small amount
1939                                                      unspecified
1941                                                     small amount
1945                                                            daily
1948                                              tablet/pill/capsule
1962                                                  based on weight
1965                                                             <NA>
1980                                                             tube
1981                                              tablet/pill/capsule
1982                                            1 tablet/pill/capsule
1983                                                           1 tube
1984                                          0.5 tablet/pill/capsule
1985                                            1 tablet/pill/capsule
1994                                                             <NA>
1998                                                             puff
2006                                                             <NA>
2012                                                             <NA>
2013                                                             <NA>
2016                                                  based on weight
2022                                                     small amount
2025                                                      bottle/vial
2026                                              tablet/pill/capsule
2029                                                             <NA>
2030                                                             <NA>
2032                                                      unspecified
2033                                                      unspecified
2034                                                      unspecified
2041                                                      as directed
2042                                                      as directed
2050                                                  based on weight
2075                                     based on weight (50-100 lbs)
2083                                      based on weight (40-88 lbs)
2084                                     based on weight (50-100 lbs)
2085                                                  based on weight
2087                                     based on weight (50-100 lbs)
2088                                      based on weight (44-88 lbs)
2089                                        based on weight (80+ lbs)
2091                                                  based on weight
2093                                                  based on weight
2107                                              tablet/pill/capsule
2108                                            1 tablet/pill/capsule
2109                                            1 tablet/pill/capsule
2110                                                  based on weight
2113                                              tablet/pill/capsule
2115                                                             <NA>
2116                                                     small amount
2123                                         2 tablets/pills/capsules
2126                                              tablet/pill/capsule
2127                                              tablet/pill/capsule
2149                                                  based on weight
2151                                                  based on weight
2161                                                  based on weight
2165                                                            drops
2166                                                             <NA>
2195                                                      unspecified
2199                                                  based on weight
2200                                                  based on weight
2201                                              tablet/pill/capsule
2202                                              tablet/pill/capsule
2203                                              tablet/pill/capsule
2204                                              tablet/pill/capsule
2205                                              tablet/pill/capsule
2206                                            1 tablet/pill/capsule
2207                                            1 tablet/pill/capsule
2211                                                             <NA>
2219                                            1 tablet/pill/capsule
2220                                            1 tablet/pill/capsule
2224                                            1 tablet/pill/capsule
2226                                            1 tablet/pill/capsule
2229                                            1 tablet/pill/capsule
2233                                                             <NA>
2241                                                      application
2243                                                  based on weight
2244                                                  based on weight
2250                                                      unspecified
2255                                                             tube
2258                                                             <NA>
2259                                                             <NA>
2260                                                             <NA>
2261                                                             <NA>
2262                                                             <NA>
2263                                                             <NA>
2264                                                             <NA>
2265                                                             <NA>
2266                                                             <NA>
2269                                                             <NA>
2270                                                             <NA>
2272                                                             <NA>
2278                                                             <NA>
2279                                                             <NA>
2280                                                  based on weight
2283                                                  based on weight
2301                                                           liquid
2302                                                             <NA>
2390                                                            spray
2398                                                            spray
2404                                              tablet/pill/capsule
2405                                                      application
2409                                                             <NA>
2418                                                             <NA>
2428                                                             <NA>
2463                                                     pack/package
2464                                                             <NA>
2467                                                             <NA>
2473                                                             <NA>
2474                                                             <NA>
2477                                                             <NA>
2478                                                             <NA>
2479                                              tablet/pill/capsule
2481                                                            spray
2482                                     based on weight (50-100 lbs)
2486                                                        as needed
2487                                                         biweekly
2491                                                     small amount
2492                                                       1 wipe/pad
2499                                                     pack/package
2500                                            1 tablet/pill/capsule
2501                                                             <NA>
2502                                                             <NA>
2503                                                             <NA>
2504                                            1 tablet/pill/capsule
2505                                     based on weight (50-100 lbs)
2506                                     based on weight (60-120 lbs)
2508                                              tablet/pill/capsule
2517                                                             <NA>
2518                                              tablet/pill/capsule
2534                                                             <NA>
2539                                                  based on weight
2540                                     based on weight (50-100 lbs)
2542                                     based on weight (50-100 lbs)
2543                                                           collar
2545                                              tablet/pill/capsule
2546                                                           collar
2547                                            1 tablet/pill/capsule
2548                                        based on weight (18+ lbs)
2549                                                             <NA>
2550                                                             <NA>
2558                                                  based on weight
2559                                                  based on weight
2560                                                  based on weight
2562                                                             <NA>
2566                                                             <NA>
2575                                                             <NA>
2578                                                            spray
2580                                                         ointment
2583                                                             <NA>
2599                                                             <NA>
2600                                                  based on weight
2642                                                            spray
2651                                                      unspecified
2652                                                             <NA>
2653                                                             <NA>
2655                                                             <NA>
2659                                                      unspecified
2660                                                      unspecified
2661                                                      unspecified
2710                                                  based on weight
2721                                                             <NA>
2726                                                             dose
2731                                                             <NA>
2735                                                             <NA>
2737                                                             <NA>
2738                                                             <NA>
2739                                                             <NA>
2742                                                  based on weight
2743                                                  based on weight
2745                                                  based on weight
2746                                                  based on weight
2748                                                  based on weight
2749                                                  based on weight
2753                                                  based on weight
2756                                                  based on weight
2805                                                             <NA>
2815                                                             <NA>
2818                                                     pack/package
2825                                                  based on weight
2827                                                  based on weight
2828                                              tablet/pill/capsule
2833                                                             <NA>
2838                                            1 tablet/pill/capsule
2839                                                             <NA>
2842                                                             <NA>
2844                                                             <NA>
2846                                            1 tablet/pill/capsule
2855                                              tablet/pill/capsule
2869                                                             <NA>
2897                                                   shampoo/mousse
2900                                                     small amount
2903                                                   shampoo/mousse
2904                                                  moderate amount
2905                                                           weekly
2907                                                     pack/package
2911                                     based on weight (50-100 lbs)
2912                                      based on weight (24-60 lbs)
2913                                                             <NA>
2919                                            1 tablet/pill/capsule
2920                                            1 tablet/pill/capsule
2921                                                               gm
2922                                              tablet/pill/capsule
2923                                              tablet/pill/capsule
2925                                                      unspecified
2941                                                             <NA>
2942                                                                %
2943                                            1 tablet/pill/capsule
2944                                                             <NA>
2946                                                             <NA>
2958                                              tablet/pill/capsule
2959                                              tablet/pill/capsule
2960                                              tablet/pill/capsule
2961                                              tablet/pill/capsule
2962                                              tablet/pill/capsule
2963                                              tablet/pill/capsule
2964                                              tablet/pill/capsule
2974                                              tablet/pill/capsule
2975                                                      application
2978                                              tablet/pill/capsule
2981                                                             <NA>
2988                                                             <NA>
2993                                                             <NA>
2997                                                             <NA>
3002                                                             <NA>
3003                                                     small amount
3007                                                             <NA>
3028                                                             <NA>
3031                                                             <NA>
3055                                                         ointment
3058                                                     small amount
3060                                      based on weight (26-50 lbs)
3095                                                      unspecified
3110                                                             <NA>
3119                                                             <NA>
3147                                                             <NA>
3179                                                             <NA>
3180                                                             <NA>
3208                                                             <NA>
3209                                                             <NA>
3246                                                  based on weight
3247                                              tablet/pill/capsule
3250                                                  based on weight
3251                                                  based on weight
3253                                     based on weight (50-100 lbs)
3257                                                             <NA>
3271                                              tablet/pill/capsule
3278                                                       inch strip
3280                                            1 tablet/pill/capsule
3284                                                  based on weight
3287                                                     small amount
3291                                                     small amount
3293                                                     small amount
3294                                              tablet/pill/capsule
3300                                              tablet/pill/capsule
3305                                                     small amount
3312                                                  moderate amount
3313                                                     small amount
3339                                              tablet/pill/capsule
3342                                                      application
3345                                                             <NA>
3346                                                             <NA>
3350                                                             <NA>
3360                                                  based on weight
3366                                                             <NA>
3372                                                             <NA>
3375                                                             <NA>
3376                                                      application
3394                                                             <NA>
3399                                                             <NA>
3403                                                             <NA>
3404                                      based on weight (24-60 lbs)
3405                                      based on weight (26-50 lbs)
3421                                                             <NA>
3422                                                             <NA>
3425                                                  based on weight
3426                                                      as directed
3429                                                             <NA>
3437                                                             <NA>
3445                                                             <NA>
3446                                                             <NA>
3447                                                             <NA>
3448                                                             <NA>
3449                                                             <NA>
3451                                                             <NA>
3455                                                             <NA>
3456                                                           1 tube
3457                                              tablet/pill/capsule
3458                                                             tube
3459                                                             <NA>
3488                                        based on weight (25+ lbs)
3490                                                  based on weight
3491                                                  based on weight
3492                                                  based on weight
3495                                                  based on weight
3496                                                  based on weight
3497                                                  based on weight
3498                                                  based on weight
3512                                            1 tablet/pill/capsule
3513                                                  based on weight
3514                                     based on weight (50-100 lbs)
3515                                                             <NA>
3516                                              tablet/pill/capsule
3517                                                             <NA>
3519                                                  based on weight
3520                                                             <NA>
3522                                                             <NA>
3525                                                             <NA>
3530                                                             pump
3531                                                             <NA>
3535                                                             <NA>
3581                                              tablet/pill/capsule
3619                                                             <NA>
3622                                                     pack/package
3631                                            1 tablet/pill/capsule
3632                                            1 tablet/pill/capsule
3635                                                             <NA>
3639                                                             <NA>
3640                                                             <NA>
3641                                                            spray
3649                                                             <NA>
3650                                                             <NA>
3652                                                             <NA>
3666                                                            spray
3667                                                     small amount
3675                                                            spray
3684                                              tablet/pill/capsule
3685                                                             tube
3691                                                      bottle/vial
3692                                              tablet/pill/capsule
3693                                                            spray
3698                                                  based on weight
3699                                                  based on weight
3701                                                  based on weight
3704                                                  based on weight
3705                                              tablet/pill/capsule
3706                                                             <NA>
3710                                                             <NA>
3718                                                             <NA>
3719                                            1 tablet/pill/capsule
3725                                                             <NA>
3726                                              tablet/pill/capsule
3735                                                             <NA>
3741                                                             <NA>
3742                                                             <NA>
3743                                                             <NA>
3744                                                             <NA>
3745                                                             <NA>
3750                                                             <NA>
3760                                                             <NA>
3773                                                             <NA>
3784                                                             <NA>
3785                                                             <NA>
3786                                                             <NA>
3789                                                             <NA>
3797                                                            spray
3798                                                     small amount
3800                                                     small amount
3815                                                             <NA>
3829                                                             <NA>
3835                                                             <NA>
3836                                                             <NA>
3838                                                             <NA>
3840                                                      application
3848                                                       inch strip
3857                                            1 tablet/pill/capsule
3858                                                           1 tube
3859                                            1 tablet/pill/capsule
3860                                              tablet/pill/capsule
3861                                                             <NA>
3867                                                             <NA>
3870                                                             <NA>
3871                                                             <NA>
3872                                                             <NA>
3874                                                      application
3881                                                             <NA>
3886                                                  based on weight
3889                                                  based on weight
3897                                                  based on weight
3898                                                             <NA>
3900                                                             <NA>
3903                                                  based on weight
3906                                                  based on weight
3911                                                  based on weight
3938                                                  based on weight
3943                                                  based on weight
3945                                                             <NA>
3946                                                  based on weight
3952                                                  based on weight
3972                                                  based on weight
3980                                                  based on weight
3984                                                  based on weight
3989                                              tablet/pill/capsule
3990                                              tablet/pill/capsule
4000                                                             <NA>
4017                                            1 tablet/pill/capsule
4030                                                             <NA>
4031                                              tablet/pill/capsule
4042                                                             <NA>
4045                                              tablet/pill/capsule
4058                                                  based on weight
4059                                                             <NA>
4060                                                             <NA>
4063                                                             <NA>
4064                                                             <NA>
4066                                                  based on weight
4067                                                  based on weight
4068                                                             <NA>
4069                                                             <NA>
4070                                                             <NA>
4071                                                     small amount
4072                                                  based on weight
4073                                     based on weight (50-100 lbs)
4074                                                             <NA>
4075                                                             <NA>
4077                                                             <NA>
4087                                                             <NA>
4088                                                         ointment
4089                                                             <NA>
4092                                                  syringe/pipette
4095                                              tablet/pill/capsule
4097                                                             <NA>
4111                                              tablet/pill/capsule
4112                                              tablet/pill/capsule
4113                                                             <NA>
4114                                                             <NA>
4116                                                             <NA>
4117                                                      bottle/vial
4118                                              tablet/pill/capsule
4119                                                             <NA>
4120                                              tablet/pill/capsule
4125                                                             <NA>
4127                                                  based on weight
4128                                                  based on weight
4131                                                            spray
4132                                                             <NA>
4133                                                             <NA>
4134                                                             <NA>
4162                                                             <NA>
4172                                      based on weight (44-88 lbs)
4183                                                      as directed
4184                                                             <NA>
4189                                              tablet/pill/capsule
4190                                              tablet/pill/capsule
4191                                                  based on weight
4193                                                             <NA>
4198                                                  based on weight
4199                                                  based on weight
4209                                              tablet/pill/capsule
4210                                     based on weight (60-120 lbs)
4212                                                             <NA>
4213                                                             <NA>
4215                                                             <NA>
4216                                                             <NA>
4218                                                             <NA>
4245                                                             <NA>
4247                                                             <NA>
4266                                                             <NA>
4274                                                             <NA>
4298                                      based on weight (44-88 lbs)
4299                                     based on weight (50-100 lbs)
4302                                     based on weight (50-100 lbs)
4304                                                      unspecified
4305                                                      unspecified
4306                                                      unspecified
4307                                              tablet/pill/capsule
4308                                                             <NA>
4309                                                             <NA>
4311                                                             <NA>
4313                                                  based on weight
4314                                                  based on weight
4323                                                  based on weight
4324                                                           powder
4325                                                  based on weight
4326                                                           powder
4336                                              tablet/pill/capsule
4338                                              tablet/pill/capsule
4348                                                       inch strip
4349                                                  based on weight
4350                                                  based on weight
4353                                                  based on weight
4354                                              tablet/pill/capsule
4368                                                             <NA>
4371                                                             <NA>
4384                                                             <NA>
4389                                              tablet/pill/capsule
4390                                              tablet/pill/capsule
4395                                                             <NA>
4405                                                             <NA>
4409                                                     small amount
4426                                              tablet/pill/capsule
4427                                                             tube
4428                                            1 tablet/pill/capsule
4430                                                             pump
4431                                                             pump
4444                                                             tube
4445                         27 mg milbemycin oxime, 1620 mg spinosad
4446                                                      1 gm/sachet
4454                                                         inhalant
4469                                                     small amount
4470                                                     small amount
4471                                                         wipe/pad
4472                                                     small amount
4480                                                     small amount
4481                                                         wipe/pad
4483                                              tablet/pill/capsule
4486                                              tablet/pill/capsule
4497                                                  based on weight
4499                                              tablet/pill/capsule
4500                                              tablet/pill/capsule
4501                                                      as directed
4502                                              tablet/pill/capsule
4504                                                      unspecified
4505                                            1 tablet/pill/capsule
4509                                     based on weight (50-100 lbs)
4510                                     based on weight (60-120 lbs)
4511                                              tablet/pill/capsule
4515                                     based on weight (50-100 lbs)
4516                                     based on weight (60-120 lbs)
4517                                                             <NA>
4524                                                  based on weight
4532                                                  based on weight
4533                                                             <NA>
4536                                                  based on weight
4544                                                             <NA>
4545                                              tablet/pill/capsule
4547                                                             <NA>
4558                                                  based on weight
4559                                                  based on weight
4560                                              tablet/pill/capsule
4561                                                            spray
4562                                              tablet/pill/capsule
4564                                                  based on weight
4565                                                  based on weight
4566                                                  based on weight
4567                                                  based on weight
4568                                                      unspecified
4569                                                  based on weight
4587                                                             <NA>
4597                                                      unspecified
4599                                                             <NA>
4611                                                             <NA>
4627                                                             <NA>
4628                                                             <NA>
4629                                                             <NA>
4631                                                             <NA>
4634                                                     pack/package
4638                                                             <NA>
4640                                                             <NA>
4642                                                             <NA>
4643                                                            0.20%
4648                                                             <NA>
4649                                                             <NA>
4651                                                         ointment
4652                                                  moderate amount
4654                                                             <NA>
4655                                                             <NA>
4695                                              tablet/pill/capsule
4717                                                             <NA>
4719                                                             <NA>
4720                                                             <NA>
4726                                                  based on weight
4738                                     based on weight (60-120 lbs)
4739                                                  based on weight
4743                                                             <NA>
4744                                                             <NA>
4745                                                             <NA>
4748                                                             <NA>
4757                                                             <NA>
4760                                              tablet/pill/capsule
4763                                        based on weight (55+ lbs)
4764                                                             <NA>
4766                                                  based on weight
4777                                                   shampoo/mousse
4780                                        based on weight (88+ lbs)
4782                                              tablet/pill/capsule
4801                                                             <NA>
4802                                              tablet/pill/capsule
4805                                                             <NA>
4806                                     based on weight (60-120 lbs)
4813                                                             <NA>
4824                                                             <NA>
4826                                                            units
4828                                                           powder
4832                                                                %
4853                                                     small amount
4855                                                             <NA>
4858                                                             <NA>
4859                                                             <NA>
4861                                                             <NA>
4862                                                             <NA>
4881                                                       inch strip
4902                                                                %
4904                                                      combination
4905                                                             <NA>
4910                                                           collar
4912                                                             <NA>
4913                                                           collar
4914                                                             <NA>
4917                                                             <NA>
4935                                                  based on weight
4956                                                     small amount
4960                                                     small amount
4968                                                             <NA>
4969                                                             <NA>
4980                                                     pack/package
4981                                                             <NA>
4996                                                      unspecified
4998                                                             <NA>
5043                                                             <NA>
5046                                                             <NA>
5078                                                  based on weight
5122                                                             <NA>
5123                                                             <NA>
5127                                                      unspecified
5134                                                             <NA>
5140                                                             <NA>
5159                                                             <NA>
5160                                                             <NA>
5161                                                             <NA>
5173                                              tablet/pill/capsule
5174                                              tablet/pill/capsule
5191                                                             <NA>
5193                                                             <NA>
5195                                                  based on weight
5203                                              tablet/pill/capsule
5210                                                  moderate amount
5211                                                  moderate amount
5212                                                            spray
5213                                                  moderate amount
5214                                                  based on weight
5220                                                            spray
5221                                                            spray
5222                                                  based on weight
5223                                                  based on weight
5225                                              tablet/pill/capsule
5234                                         2 tablets/pills/capsules
5235                                                  based on weight
5243                                                  based on weight
5244                                                  based on weight
5247                                                  based on weight
5248                                                  based on weight
5253                                                  based on weight
5255                                                  based on weight
5256                                                  based on weight
5257                                                  based on weight
5258                                              tablet/pill/capsule
5261                                                  based on weight
5262                                              tablet/pill/capsule
5264                                                  based on weight
5265                                                  based on weight
5270                                                  based on weight
5271                                                  based on weight
5289                                                             dose
5332                                                  based on weight
5333                                                      unspecified
5334                                              tablet/pill/capsule
5335                                                           collar
5336                                              tablet/pill/capsule
5337                                                             <NA>
5340                                                          monthly
5354                                                           collar
5357                                                             <NA>
5359                                                             <NA>
5360                                                             <NA>
5362                                              tablet/pill/capsule
5369                                              tablet/pill/capsule
5377                                                      combination
5378                                                                %
5379                                                  based on weight
5384                                                             <NA>
5385                                                             <NA>
5386                                                             <NA>
5387                                                             <NA>
5388                                                             <NA>
5391                                            1 tablet/pill/capsule
5392                                            1 tablet/pill/capsule
5403                                              tablet/pill/capsule
5424                                                           3.5 gm
5428                                                      bottle/vial
5440                                                             <NA>
5460                                                             <NA>
5464                                                             <NA>
5483                                              tablet/pill/capsule
5484                                                             <NA>
5491                                                             <NA>
5492                                              tablet/pill/capsule
5497                                              tablet/pill/capsule
5498                                              tablet/pill/capsule
5499                                                             dose
5500                                              tablet/pill/capsule
5501                                                     small amount
5502                                                      bottle/vial
5507                                              tablet/pill/capsule
5508                                              tablet/pill/capsule
5509                                                  based on weight
5511                                                  based on weight
5513                                              tablet/pill/capsule
5527                                                     small amount
5528                                                      application
5529                                                      application
5533                                                     small amount
5534                                     based on weight (50-100 lbs)
5535                                                             <NA>
5537                                                            spray
5541                                              tablet/pill/capsule
5542                                                  syringe/pipette
5545                                            1 tablet/pill/capsule
5546                                         2 tablets/pills/capsules
5552                                                             <NA>
5553                                                             <NA>
5557                                              tablet/pill/capsule
5568                                                  based on weight
5571                                                  based on weight
5576                                              tablet/pill/capsule
5577                                                           collar
5578                                              tablet/pill/capsule
5595                                     based on weight (50-100 lbs)
5600                                                  based on weight
5602                                                  based on weight
5607                                                             <NA>
5626                                                  based on weight
5627                                                             <NA>
5628                                                             <NA>
5629                                                             <NA>
5630                                                             <NA>
5631                                                  based on weight
5632                                                  based on weight
5649                                                      billion cfu
5681                                              tablet/pill/capsule
5682                                              tablet/pill/capsule
5695                                                             <NA>
5721                                                             <NA>
5722                                                             <NA>
5723                                                             <NA>
5724                                                             <NA>
5725                                                             <NA>
5728                                                             <NA>
5729                                                             <NA>
5731                                                             <NA>
5747                                              tablet/pill/capsule
5760                                                  based on weight
5762                                                             <NA>
5768                                     based on weight (50-100 lbs)
5771                                                             <NA>
5777                                                      unspecified
5804                                                             <NA>
5814                                                             <NA>
5834                                                             <NA>
5839                                                             <NA>
5840                                                             <NA>
5858                                                       inch strip
5869                                                             <NA>
5877                                                  based on weight
5884                                                      unspecified
5887                                                             <NA>
5913                                              tablet/pill/capsule
5917                                                             <NA>
5930                                                  based on weight
5932                                                             <NA>
5933                                                  based on weight
5934                                                  based on weight
5935                                                             <NA>
5936                                                  based on weight
5937                                                  based on weight
5941                                                  based on weight
5942                                                  based on weight
5945                                                         wipe/pad
5963                                                  based on weight
5964                                                  based on weight
5965                                                             <NA>
5967                                                             <NA>
5976                                                             <NA>
5980                                                  based on weight
5981                                              tablet/pill/capsule
5988                                                             <NA>
5991                                                  syringe/pipette
5992                                              tablet/pill/capsule
5993                                                             <NA>
5994                                                             <NA>
6000                                                             <NA>
6002                                                                %
6003                                                             <NA>
6004                                                             <NA>
6014                                                             <NA>
6015                                                             <NA>
6016                                                             <NA>
6017                                                             <NA>
6036                                                             <NA>
6038                                              tablet/pill/capsule
6039                                     based on weight (50-100 lbs)
6059                                                  based on weight
6063                                                      as directed
6068                                                             <NA>
6069                                                      application
6071                                     based on weight (50-100 lbs)
6072                                                      unspecified
6076                                                           collar
6078                                                           collar
6088                                                  0.25 inch strip
6090                                                  0.25 inch strip
6093                                     based on weight (50-100 lbs)
6095                                                            spray
6101                                                             <NA>
6102                                                             <NA>
6104                                                             <NA>
6109                                                             <NA>
6129                                     based on weight (50-100 lbs)
6130                                     based on weight (60-120 lbs)
6132                                              tablet/pill/capsule
6133                                              tablet/pill/capsule
6134                                                             <NA>
6135                                                             <NA>
6136                                              tablet/pill/capsule
6137                                              tablet/pill/capsule
6139                                              tablet/pill/capsule
6140                                              tablet/pill/capsule
6148                                                             <NA>
6149                                                             <NA>
6150                                                             <NA>
6161                                                             <NA>
6164                                                        as needed
6200                                              tablet/pill/capsule
6202                                              tablet/pill/capsule
6206                                                           1 tube
6208                                                             tube
6217                                                             <NA>
6218                                                           joules
6221                                                             <NA>
6224                                                  based on weight
6225                                                  based on weight
6226                                                  based on weight
6231                                                  based on weight
6232                                                  based on weight
6244                                                             <NA>
6254                                              tablet/pill/capsule
6257                                                      application
6258                                              tablet/pill/capsule
6262                                     based on weight (50-100 lbs)
6263                                      based on weight (24-60 lbs)
6266                                                             <NA>
6267                                                             <NA>
6275                                                      application
6282                                                             <NA>
6283                                                      application
6284                                                             <NA>
6293                                              tablet/pill/capsule
6302                                                             <NA>
6307                                                             <NA>
6312                                                             <NA>
6319                                                             <NA>
6320                                                             <NA>
6325                                                             <NA>
6326                                                      application
6328                                                             <NA>
6329                                     based on weight (50-100 lbs)
6331                                                  based on weight
6341                                              tablet/pill/capsule
6343                                                             <NA>
6358                                                   shampoo/mousse
6390                                                             <NA>
6395                                                  based on weight
6405                                                  based on weight
6406                                                           collar
6411                                                             <NA>
6437                                                             <NA>
6441                                                             <NA>
6444                                            1 tablet/pill/capsule
6451                                                      unspecified
6459                                                             <NA>
6461                                                             <NA>
6474                                              tablet/pill/capsule
6475                                            1 tablet/pill/capsule
6486                                                             <NA>
6495                                                            drops
6499                                              tablet/pill/capsule
6500                                                  based on weight
6522                                                  based on weight
6523                                                  based on weight
6527                                                  based on weight
6528                                                  based on weight
6555                                                  based on weight
6562                                                     small amount
6565                                              tablet/pill/capsule
6569                                              tablet/pill/capsule
6570                                                             tube
6571                                                      unspecified
6573                                                      bottle/vial
6579                                                  based on weight
6581                                                      unspecified
6594                                     based on weight (50-100 lbs)
6602                                            1 tablet/pill/capsule
6606                                       1-2 tablets/pills/capsules
6612                                              tablet/pill/capsule
6625                                            1 tablet/pill/capsule
6636                                              tablet/pill/capsule
6644                                                  based on weight
6647                                            1 tablet/pill/capsule
6648                                            1 tablet/pill/capsule
6650                                                             <NA>
6657                                            1 tablet/pill/capsule
6658                                              tablet/pill/capsule
6662                                     based on weight (50-100 lbs)
6663                                              tablet/pill/capsule
6680                                                  based on weight
6683                                                     small amount
6687                                                  based on weight
6688                                                  based on weight
6693                                            1 tablet/pill/capsule
6694                                                             <NA>
6696                                                  based on weight
6697                                                             <NA>
6698                                              tablet/pill/capsule
6702                                              tablet/pill/capsule
6703                                                             <NA>
6714                                                             <NA>
6715                                      based on weight (26-50 lbs)
6716                                                      unspecified
6717                                                      unspecified
6733                                                             <NA>
6751                                                             <NA>
6759                                                             <NA>
6760                                        based on weight (51+ lbs)
6763                                                             <NA>
6764                                                  based on weight
6778                                              tablet/pill/capsule
6779                                              tablet/pill/capsule
6781                                              tablet/pill/capsule
6783                                              tablet/pill/capsule
6786                                                             <NA>
6796                                                  based on weight
6797                                                             <NA>
6815                                                             <NA>
6816                                                       inch strip
6817                                                       inch strip
6818                                                             <NA>
6824                                                             <NA>
6826                                                             <NA>
6828                                                             dose
6868                                                         inhalant
6880                                                         inhalant
6886                                                  moderate amount
6891                                                      application
6892                                                     small amount
6909                                              tablet/pill/capsule
6910                                              tablet/pill/capsule
6928                                                   shampoo/mousse
6934                                                             <NA>
6935                                                             <NA>
6936                                                             <NA>
6946                                                             <NA>
6956                                                             <NA>
6957                                                  based on weight
6981                                              tablet/pill/capsule
6982                                              tablet/pill/capsule
6983                                              tablet/pill/capsule
6984                                              tablet/pill/capsule
6986                                                             <NA>
7002                                                             <NA>
7005                                                             <NA>
7006                                                             <NA>
7017                                              tablet/pill/capsule
7021                                              tablet/pill/capsule
7025                                                             <NA>
7027                                                             <NA>
7030                                                             <NA>
7042                                                             <NA>
7054                                                             <NA>
7067                                                  based on weight
7071                                                             <NA>
7092                                                            spray
7093                                              tablet/pill/capsule
7095                                                             <NA>
7096                                                             <NA>
7116                                                             <NA>
7127                                                             <NA>
7130                                                             <NA>
7131                                                             <NA>
7137                                                            scoop
7149                                            1 tablet/pill/capsule
7151                                                         ointment
7152                                                   1 pack/package
7153                                                     small amount
7154                                                           liquid
7155                                                           powder
7172                                                           powder
7173                                                         wipe/pad
7175                                                             <NA>
7177                                                             <NA>
7180                                                             pump
7189                                                            spray
7208                                                  0.25 inch strip
7218                                                             <NA>
7243                                                             <NA>
7247                                              tablet/pill/capsule
7248                                              tablet/pill/capsule
7249                                              tablet/pill/capsule
7260                                              tablet/pill/capsule
7261                                              tablet/pill/capsule
7262                                              tablet/pill/capsule
7291                                              tablet/pill/capsule
7295                                              tablet/pill/capsule
7297                                         2 tablets/pills/capsules
7320                                                  based on weight
7342                                                  syringe/pipette
7344                                                      unspecified
7345                                                      unspecified
7346                                                             <NA>
7371                                                     small amount
7413                                                  based on weight
7499                                                             <NA>
7503                                              tablet/pill/capsule
7510                                              tablet/pill/capsule
7511                                              tablet/pill/capsule
7512                                              tablet/pill/capsule
7513                                              tablet/pill/capsule
7519                                                             <NA>
7521                                                      combination
7524                                                      unspecified
7525                                                             <NA>
7526                                                             <NA>
7551                                            1 tablet/pill/capsule
7555                                              tablet/pill/capsule
7563                                              tablet/pill/capsule
7564                                                             <NA>
7565                                                             <NA>
7566                                     based on weight (50-100 lbs)
7576                                                             <NA>
7577                                                             <NA>
7578                                                             <NA>
7579                                                             <NA>
7580                                                             <NA>
7583                                     based on weight (50-100 lbs)
7584                                                             <NA>
7585                                                             <NA>
7586                                                             <NA>
7587                                                             <NA>
7588                                                             <NA>
7589                                                             <NA>
7590                                                             <NA>
7598                                                         wipe/pad
7635                                                             <NA>
7660                                     based on weight (50-100 lbs)
7671                                                             <NA>
7673                                                      unspecified
7674                                                      unspecified
7675                                                             <NA>
7678                                                  0.25 inch strip
7679                                                           1 pump
7681                                                             <NA>
7692                                                             <NA>
7696                                                             <NA>
7699                                                             <NA>
7701                                                             <NA>
7705                                                            daily
7732                                      based on weight (25-50 lbs)
7742                                                             <NA>
7743                                                             <NA>
7746                                              tablet/pill/capsule
7747                                                      application
7748                                                             <NA>
7749                                                             <NA>
7750                                                             <NA>
7751                                                             <NA>
7754                                                             <NA>
7759                                                           1 tube
7763                                            1 tablet/pill/capsule
7772                                                             <NA>
7776                                                             <NA>
7783                                                           1 tube
7784                                            1 tablet/pill/capsule
7795                                              tablet/pill/capsule
7812                                                     small amount
7818                                                             <NA>
7820                                                             <NA>
7822                                                             <NA>
7832                                                             <NA>
7839                                                           powder
7845                                                             <NA>
7846                                                             <NA>
7848                                                             <NA>
7852                                                             <NA>
7853                                                             pump
7854                                                             <NA>
7862                                                             <NA>
7883                                            1 tablet/pill/capsule
7884                                            1 tablet/pill/capsule
7887                                                             <NA>
7889                                                             <NA>
7895                                                             <NA>
7926                                                           powder
7929                                                     small amount
7944                                                             <NA>
7946                                                             <NA>
7961                                                         ointment
7966                                              tablet/pill/capsule
7967                                              tablet/pill/capsule
7968                                              tablet/pill/capsule
7969                                              tablet/pill/capsule
7970                                                             <NA>
7973                                                             <NA>
7987                                                             <NA>
7988                                                  based on weight
7993                                                  based on weight
7995                                                             <NA>
7998                                                     pack/package
8000                                                  based on weight
8009                                                      unspecified
8012                                                         ointment
8014                                                     small amount
8017                                                     small amount
8029                                                      combination
8030                                                  based on weight
8040                                                             <NA>
8042                                                             <NA>
8043                                                             <NA>
8044                                                             <NA>
8045                                                             <NA>
8075                                                             <NA>
8086                                                     small amount
8091                                                             <NA>
8098                                                             <NA>
8099                                                             <NA>
8120                                                  based on weight
8121                                     based on weight (50-100 lbs)
8123                                              tablet/pill/capsule
8125                                                             <NA>
8128                                                     small amount
8130                                                  based on weight
8131                                                  based on weight
8136                                                  based on weight
8137                                                  based on weight
8138                                                  based on weight
8139                                                  based on weight
8140                                                     small amount
8160                                                      unspecified
8182                                                     small amount
8184                                                           powder
8185                                     based on weight (50-100 lbs)
8186                                     based on weight (50-100 lbs)
8187                                     based on weight (50-100 lbs)
8188                                     based on weight (60-120 lbs)
8195                                                  based on weight
8196                                                  based on weight
8205                                                  based on weight
8206                                                  based on weight
8207                                                  based on weight
8208                                                  based on weight
8209                                                             <NA>
8210                                                             <NA>
8211                                                             <NA>
8212                                                  based on weight
8215                                                  based on weight
8221                                            1 tablet/pill/capsule
8222                                            1 tablet/pill/capsule
8223                                                             <NA>
8224                                                             <NA>
8234                                                          8 drops
8235                                                     small amount
8238                                                             <NA>
8248                                              tablet/pill/capsule
8251                                                             <NA>
8252                                                            spray
8280                                                             <NA>
8284                                                     small amount
8293                                                     small amount
8296                                     based on weight (50-100 lbs)
8297                                      based on weight (44-88 lbs)
8298                                                             <NA>
8314                                                             <NA>
8315                                                             <NA>
8337                                                             <NA>
8338                                                             <NA>
8349                                                  based on weight
8354                                              tablet/pill/capsule
8355                                                    1 application
8358                                                  based on weight
8359                                                  based on weight
8362                                                     small amount
8369                                                     small amount
8370                                              tablet/pill/capsule
8371                                              tablet/pill/capsule
8376                                                     small amount
8377                                              tablet/pill/capsule
8378                                              tablet/pill/capsule
8389                                                             <NA>
8408                                                                1
8410                                                  based on weight
8418                                                         inhalant
8420                                                  based on weight
8421                                              tablet/pill/capsule
8424                                                           1 tube
8425                                              tablet/pill/capsule
8427                                              tablet/pill/capsule
8435                                                   1 pack/package
8436                                                     small amount
8440                                                             <NA>
8454                                              tablet/pill/capsule
8466                                            1 tablet/pill/capsule
8467                                                     small amount
8475                                                   shampoo/mousse
8478                                                   shampoo/mousse
8509                                              tablet/pill/capsule
8514                                              tablet/pill/capsule
8515                                              tablet/pill/capsule
8528                                              tablet/pill/capsule
8531                                              tablet/pill/capsule
8541                                                             <NA>
8550                                                             <NA>
8554                                                  based on weight
8555                                                  based on weight
8578                                                     small amount
8581                                                     small amount
8582                                            1 tablet/pill/capsule
8583                                                             <NA>
8584                                                             <NA>
8585                                                           powder
8586                                                       1 wipe/pad
8588                                                             <NA>
8591                                              tablet/pill/capsule
8607                                                  based on weight
8609                                                  based on weight
8613                                                             <NA>
8673                                                             <NA>
8674                                                  based on weight
8675                                              tablet/pill/capsule
8676                                              tablet/pill/capsule
8677                                              tablet/pill/capsule
8694                                                    1 bottle/vial
8697                                                             <NA>
8702                                                      bottle/vial
8707                                                    1 bottle/vial
8731                                                           collar
8735                                                     small amount
8736                                                         wipe/pad
8744                                                             <NA>
8745                                                             <NA>
8756                                            1 tablet/pill/capsule
8757                                                             <NA>
8759                                                  based on weight
8760                                                  based on weight
8768                                        based on weight (51+ lbs)
8769                                        based on weight (56+ lbs)
8770                                            1 tablet/pill/capsule
8771                                                           1 tube
8777                                                  based on weight
8778                                            1 tablet/pill/capsule
8779                                                    1 application
8780                                            1 tablet/pill/capsule
8781                                                    1 application
8786                                                  based on weight
8790                                                  based on weight
8791                                                  based on weight
8792                                                             <NA>
8793                                              tablet/pill/capsule
8794                                              tablet/pill/capsule
8795                                                  based on weight
8797                                                             <NA>
8805                                              tablet/pill/capsule
8815                                                       inch strip
8819                                                  based on weight
8820                                                  based on weight
8825                                                             <NA>
8826                                                             dose
8828                                                  based on weight
8831                                                             <NA>
8833                                                  based on weight
8837                                                             <NA>
8843                                                             <NA>
8851                                                             <NA>
8852                                                             <NA>
8853                                                             <NA>
8860                                                             <NA>
8875                                                             <NA>
8876                                                             <NA>
8877                                                             <NA>
8879                                                  based on weight
8885                                                             <NA>
8908                                                             <NA>
8911                                                  based on weight
8929                                                      as directed
8930                                                             <NA>
8961                                                      as directed
8962                                                             <NA>
9026                                     based on weight (50-100 lbs)
9046                                            1 tablet/pill/capsule
9047                                                             <NA>
9050                                              tablet/pill/capsule
9052                                                             <NA>
9053                                              tablet/pill/capsule
9054                                              tablet/pill/capsule
9055                                                  based on weight
9056                                                             <NA>
9060                                            1 tablet/pill/capsule
9064                                                             <NA>
9065                                                             <NA>
9070                                              tablet/pill/capsule
9071                                              tablet/pill/capsule
9084                                                             <NA>
9094                                                  based on weight
9095                                                  based on weight
9098                                                  based on weight
9099                                                             <NA>
9100                                                      unspecified
9101                                                      unspecified
9109                                                  0.25 inch strip
9118                                                       inch strip
9132                                              tablet/pill/capsule
9135                                                             <NA>
9136                                                     small amount
9137                                                             <NA>
9156                                                             <NA>
9160                                                  based on weight
9161                                                  based on weight
9170                                                  based on weight
9187                                                             <NA>
9189                                              tablet/pill/capsule
9193                                                     pack/package
9202                                            1 tablet/pill/capsule
9230                                                     small amount
9236                                                  based on weight
9239                                                             <NA>
9240                                                      as directed
9241                                                      unspecified
9242                                              tablet/pill/capsule
9244                                                             <NA>
9252                                                     pack/package
9253                                                        as needed
9254                                              tablet/pill/capsule
9259                                                             <NA>
9267                                                  based on weight
9269                                            1 tablet/pill/capsule
9271                                                             <NA>
9292                                                             <NA>
9294                                                             <NA>
9295                                                             <NA>
9297                                                             <NA>
9386                                              tablet/pill/capsule
9387                                                      bottle/vial
9416                                                             <NA>
9418                                                             <NA>
9421                                                           collar
9422                                              tablet/pill/capsule
9426                                            1 tablet/pill/capsule
9429                                                      application
9432                                                           collar
9433                                                             <NA>
9434                                                  based on weight
9435                                                      unspecified
9436                                              tablet/pill/capsule
9438                                                     small amount
9447                                                             <NA>
9452                                                             <NA>
9453                                                                %
9454                                                       inch strip
9494                                                      unspecified
9495                                                      unspecified
9511                                                             <NA>
9516                                                 0.125 inch strip
9524                                                             <NA>
9544                                                  based on weight
9546                                                  based on weight
9548                                                  based on weight
9549                                                  based on weight
9584                                            1 tablet/pill/capsule
9588                                                             <NA>
9592                                                             <NA>
9596                                                             <NA>
9600                                                  based on weight
9601                                                  based on weight
9602                                                             <NA>
9603                                                             <NA>
9604                                                             <NA>
9609                                              tablet/pill/capsule
9610                                              tablet/pill/capsule
9612                                                            spray
9613                                                            spray
9614                                                         wipe/pad
9615                                              tablet/pill/capsule
9616                                              tablet/pill/capsule
9617                                              tablet/pill/capsule
9618                                              tablet/pill/capsule
9619                                              tablet/pill/capsule
9620                                              tablet/pill/capsule
9621                                     based on weight (50-100 lbs)
9635                                                             <NA>
9640                                              tablet/pill/capsule
9641                                              tablet/pill/capsule
9643                                              tablet/pill/capsule
9718                                                      unspecified
9723                                                             <NA>
9759                      272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                             <NA>
9761                                                  based on weight
9763                                                             <NA>
9764                                                             <NA>
9765                                                             <NA>
9766                                                  based on weight
9770                                                  based on weight
9785                                                             <NA>
9791                                                             <NA>
9800                                     based on weight (50-100 lbs)
9807                                                             <NA>
9808                                                             <NA>
9809                                                             <NA>
9821                                                     pack/package
9826                                                       inch strip
9828                                                             <NA>
9833                                                  0.25 inch strip
9837                                                             <NA>
9840                                                             <NA>
9843                                                             <NA>
9863                                                         wipe/pad
9865                                                             pump
9873                                                             <NA>
9877                                                             <NA>
9884                                                               1%
9889                                              tablet/pill/capsule
9890                                                      bottle/vial
9891                                                       inch strip
9892                                                     small amount
9893                                     based on weight (60-120 lbs)
9894                                                             <NA>
9895                                                             <NA>
9896                                                             <NA>
9897                                     based on weight (50-100 lbs)
9898                                     based on weight (60-120 lbs)
9899                                              tablet/pill/capsule
9900                                            1 tablet/pill/capsule
9901                                            1 tablet/pill/capsule
9902                                            1 tablet/pill/capsule
9903                                                  0.25 inch strip
9907                                                             <NA>
9917                                                  based on weight
9928                                                             <NA>
9931                                            1 tablet/pill/capsule
9935                                              tablet/pill/capsule
9942                                                           cup(s)
9943                                                             <NA>
9944                                                      unspecified
9945                                                  based on weight
9963                                                  based on weight
9966                                                  based on weight
9968                                                  based on weight
9970                                                     small amount
9972                                                             <NA>
10017                                                 based on weight
10026                                                            <NA>
10027                                                     application
10037                                                            <NA>
10042                                                            <NA>
10053                                                 based on weight
10061                                                    small amount
10063                                                 based on weight
10066                                                 based on weight
10075                                                            <NA>
10092                                                            <NA>
10093                                                            <NA>
10106                                                            <NA>
10107                                                            <NA>
10108                                                            <NA>
10109                                                            <NA>
10111                                                            <NA>
10112                                                            <NA>
10113                                                            <NA>
10115                                             tablet/pill/capsule
10116                                                            <NA>
10119                                                     combination
10120                                                            <NA>
10121                                             tablet/pill/capsule
10130                                                            <NA>
10131                                                            <NA>
10132                                                            <NA>
10133                                                            <NA>
10134                                             tablet/pill/capsule
10151                                                            <NA>
10167                                    based on weight (50-100 lbs)
10170                                    based on weight (50-100 lbs)
10176                                                    small amount
10187                                                    small amount
10188                                             tablet/pill/capsule
10195                                                            <NA>
10198                                                            <NA>
10200                                             tablet/pill/capsule
10209                                                 based on weight
10219                                                 based on weight
10230                                    based on weight (50-100 lbs)
10231                                    based on weight (60-120 lbs)
10232                                                            <NA>
10233                                                            <NA>
10234                                                            <NA>
10235                                                            <NA>
10245                                             tablet/pill/capsule
10249                                     based on weight (44-88 lbs)
10260                                                            <NA>
10264                                                 moderate amount
10273                                                 based on weight
10274                                                 based on weight
10275                                                 based on weight
10276                                                 based on weight
10301                                                            <NA>
10312                                                            <NA>
10313                                                            <NA>
10314                                                            <NA>
10316                                                            <NA>
10320                                                            <NA>
10324                                                            <NA>
10334                                             tablet/pill/capsule
10335                                             tablet/pill/capsule
10345                                                    small amount
10347                                             tablet/pill/capsule
10348                                             tablet/pill/capsule
10349                                                    small amount
10356                                                    small amount
10365                                             tablet/pill/capsule
10366                                                            tube
10370                                                            <NA>
10372                                                     combination
10374                                                     combination
10379                                                            <NA>
10400                                                            <NA>
10403                                                          1 tube
10405                                                 based on weight
10408                                             tablet/pill/capsule
10409                                                            <NA>
10410                                                            <NA>
10412                                                            <NA>
10429                                                            <NA>
10435                                                            <NA>
10436                                                        wipe/pad
10441                                                            <NA>
10445                                                           spray
10470                                                            <NA>
10477                                                     bottle/vial
10478                                    based on weight (50-100 lbs)
10483                                                            <NA>
10485                                                            <NA>
10487                                                            <NA>
10499                                                            <NA>
10503                                           1 tablet/pill/capsule
10505                                           1 tablet/pill/capsule
10506                                                            <NA>
10529                                                    small amount
10555                                                     application
10557                                                            <NA>
10565                                                            <NA>
10573                                                            <NA>
10575                                                    small amount
10576                                                            <NA>
10577                                                            <NA>
10578                                                            <NA>
10579                                                            <NA>
10580                                                            <NA>
10583                                                 based on weight
10588                                             tablet/pill/capsule
10589                                             tablet/pill/capsule
10590                                             tablet/pill/capsule
10591                                           1 tablet/pill/capsule
10610                                                            <NA>
10618                                             tablet/pill/capsule
10619                                             tablet/pill/capsule
10624                                                 based on weight
10628                                                      inch strip
10642                                                            <NA>
10653                                             tablet/pill/capsule
10655                                    based on weight (50-100 lbs)
10667                                                            <NA>
10671                                                            <NA>
10678                                                            <NA>
10682                                                            <NA>
10683                                    based on weight (50-100 lbs)
10684                                    based on weight (50-100 lbs)
10685                                                 based on weight
10686                                                     unspecified
10687                                                      1-2 scoops
10689                                    based on weight (50-100 lbs)
10693                                                            <NA>
10694                                    based on weight (50-100 lbs)
10696                                                            <NA>
10697                                                            <NA>
10701                                                            <NA>
10706                                                            <NA>
10707                                    based on weight (50-100 lbs)
10711                                    based on weight (50-100 lbs)
10712                                                 based on weight
10713                                                     unspecified
10714                                                      1-2 scoops
10717                                    based on weight (50-100 lbs)
10718                                                            <NA>
10725                                    based on weight (50-100 lbs)
10726                                                          powder
10727                                                     unspecified
10740                                                            <NA>
10743                                                        wipe/pad
10751                                                            <NA>
10755                                                            <NA>
10756                                           1 tablet/pill/capsule
10769                                                            <NA>
10780                                                 based on weight
10781                                                 based on weight
10792                                                            <NA>
10794                                                 based on weight
10796                                                     combination
10825                                                          collar
10827                                                          collar
10830                                             tablet/pill/capsule
10837                                                  125 mg, 500 mg
10841                     2 mg prednisone, 5 mg trimeprazine tartrate
10842                                    based on weight (50-100 lbs)
10843                                    based on weight (85-130 lbs)
10846                                             tablet/pill/capsule
10849                                                 based on weight
10853                                                    small amount
10863                                                            pump
10865                                                            <NA>
10866                                                            <NA>
10870                                             tablet/pill/capsule
10871                                                     bottle/vial
10874                                             tablet/pill/capsule
10877                                             tablet/pill/capsule
10878                                             tablet/pill/capsule
10892                                                            <NA>
10896                                                            <NA>
10898                                                            <NA>
10899                                                            <NA>
10901                                                            <NA>
10905                                                           spray
10928                                                            tube
10929                                                            tube
10934                                                 based on weight
10938                                             tablet/pill/capsule
10953                                                            <NA>
10959                                                            <NA>
10970                                             tablet/pill/capsule
10971                                             tablet/pill/capsule
11003                                             tablet/pill/capsule
11008                                           1 tablet/pill/capsule
11009                                           1 tablet/pill/capsule
11010                                                 based on weight
11011                                                 based on weight
11016                                                    small amount
11021                                                            <NA>
11035                                             tablet/pill/capsule
11036                                             tablet/pill/capsule
11037                                             tablet/pill/capsule
11038                                             tablet/pill/capsule
11065                                                            <NA>
11069                                             tablet/pill/capsule
11070                                    based on weight (50-100 lbs)
11085                                                            <NA>
11088                                                            <NA>
11093                                                            <NA>
11134                                                 based on weight
11142                                                            <NA>
11144                                                            <NA>
11145                                                            <NA>
11152                                                 based on weight
11153                                                 based on weight
11155                                                            <NA>
11156                                                            <NA>
11158                                                 based on weight
11159                                                            <NA>
11163                                                            <NA>
11165                                                 based on weight
11182                                                            <NA>
11186                                             tablet/pill/capsule
11189                                                            <NA>
11208                                                            <NA>
11210                                                     unspecified
11211                                                     unspecified
11212                                                 based on weight
11213                                                            <NA>
11224                                             tablet/pill/capsule
11228                                             tablet/pill/capsule
11229                                                            <NA>
11233                                             tablet/pill/capsule
11241                                                            <NA>
11242                        460 mg lufenuron, 23 mg milbemycin oxime
11276                                                            <NA>
11291                                                 based on weight
11292                                                 based on weight
11293                                           1 tablet/pill/capsule
11294                                           1 tablet/pill/capsule
11295                                           1 tablet/pill/capsule
11296                                           1 tablet/pill/capsule
11301                                                            <NA>
11305                                                            <NA>
11307                                             tablet/pill/capsule
11311                                                            <NA>
11312                                                            <NA>
11315                                                            <NA>
11316                                                            <NA>
11317                                                            <NA>
11318                                                            <NA>
11326                                             tablet/pill/capsule
11327                                             tablet/pill/capsule
11338                                                    small amount
11340                                                            <NA>
11346                                                          liquid
11349                                                          liquid
11350                                                            <NA>
11351                                                            <NA>
11352                                                            <NA>
11353                                                            <NA>
11356                                                    small amount
11360                                                            <NA>
11368                                             tablet/pill/capsule
11385                                             tablet/pill/capsule
11386                                             tablet/pill/capsule
11387                                                    pack/package
11388                                                    pack/package
11394                                                    small amount
11415                                                    small amount
11436                                                 based on weight
11437                                                 based on weight
11441                                                            <NA>
11464                                                    small amount
11470                                                            <NA>
11471                                                            <NA>
11473                                                 based on weight
11477                                             tablet/pill/capsule
11493                                                            <NA>
11509                                    based on weight (50-100 lbs)
11536                                                            <NA>
11537                                                            <NA>
11538                                                            <NA>
11545                                                            <NA>
11546                                                 based on weight
11547                                                            <NA>
11551                                                            <NA>
11560                                           1 tablet/pill/capsule
11561                                                 based on weight
11562                                                 based on weight
11564                                                            <NA>
11567                                             tablet/pill/capsule
11568                                             tablet/pill/capsule
11570                                             tablet/pill/capsule
11575                                                            <NA>
11576                                                            <NA>
11577                                                            <NA>
11578                                                            <NA>
11589                                                 based on weight
11593                                             tablet/pill/capsule
11596                                                 based on weight
11599                                                            tube
11600                                             tablet/pill/capsule
11620                                                            <NA>
11621                                                            <NA>
11627                                                            <NA>
11630                                                            <NA>
11633                                                            <NA>
11637                                     based on weight (25-60 lbs)
11641                                                            <NA>
11651                                             tablet/pill/capsule
11652                                                            tube
11653                                    based on weight (60-120 lbs)
11654                                           1 tablet/pill/capsule
11655                                             tablet/pill/capsule
11656                                                 based on weight
11660                                                 based on weight
11661                                           1 tablet/pill/capsule
11662                                           1 tablet/pill/capsule
11664                                                 based on weight
11666                                                            <NA>
11667                                                            <NA>
11671                                                            <NA>
11673                                                            <NA>
11678                                                 based on weight
11680                                                 based on weight
11681                                                 based on weight
11683                                                 based on weight
11691                                       based on weight (51+ lbs)
11692                                                            <NA>
11693                                                            <NA>
11695                                                    small amount
11701                                             tablet/pill/capsule
11702                                                            <NA>
11709                                             tablet/pill/capsule
11710                                             tablet/pill/capsule
11719                                                            <NA>
11722                                                            <NA>
11723                                                            <NA>
11735                                                 based on weight
11741                                             tablet/pill/capsule
11742                                                            <NA>
11802                                                            <NA>
11806                                                     unspecified
11812                                             tablet/pill/capsule
11813                                                            <NA>
11814                                                 based on weight
11817                                                            <NA>
11822                                             tablet/pill/capsule
11823                                             tablet/pill/capsule
11824                                                     application
11825                                             tablet/pill/capsule
11832                                                     combination
11833                                                     combination
11835                                             tablet/pill/capsule
11836                                             tablet/pill/capsule
11837                                             tablet/pill/capsule
11840                                                            <NA>
11844                                                            <NA>
11846                                                            <NA>
11847                                             tablet/pill/capsule
11848                                             tablet/pill/capsule
11850                                                            <NA>
11861                                                     combination
11862                                                     combination
11873                                             tablet/pill/capsule
11874                                             tablet/pill/capsule
11875                                             tablet/pill/capsule
11876                                                            <NA>
11881                                                 based on weight
11882                                                 based on weight
11889                                                 based on weight
11898                                                            <NA>
11911                                                            <NA>
11919                                             tablet/pill/capsule
11930                                                     billion cfu
11959                                                            <NA>
11960                                                     as directed
11962                                                            <NA>
11964                                                 based on weight
11978                                                           spray
11979                                                            <NA>
11980                                                          1 tube
11983                                                            <NA>
11993                                                            <NA>
12009                                                            <NA>
12010                                                            <NA>
12014                                                 based on weight
12018                                                            tube
12019                                             tablet/pill/capsule
12020                                    based on weight (50-100 lbs)
12043                                                            <NA>
12047                                                            <NA>
12048                                                            <NA>
12051                                                    pack/package
12054                                                     unspecified
12090                                                 based on weight
12108                                                            <NA>
12111                                                 moderate amount
12120                                                            <NA>
12128                                                 based on weight
12129                                                 based on weight
12130                                                            <NA>
12135                                             tablet/pill/capsule
12136                                             tablet/pill/capsule
12154                                           1 tablet/pill/capsule
12155                                           1 tablet/pill/capsule
12159                                                     unspecified
12160                                                     unspecified
12164                                                     unspecified
12173                                           1 tablet/pill/capsule
12215                                                            <NA>
12223                                                       0.5 drops
12261                                             tablet/pill/capsule
12271                                                 based on weight
12273                                                        ointment
12279                                                            <NA>
12283                                                            <NA>
12299                                                            <NA>
12306                                                    small amount
12309                                                            pump
12313                                                            <NA>
12314                                                            <NA>
12322                                                            <NA>
12324                                             tablet/pill/capsule
12334                                                            <NA>
12336                                                            <NA>
12337                                                     unspecified
12342                                             tablet/pill/capsule
12343                                                     unspecified
12346                                                            <NA>
12349                                                     bottle/vial
12351                                                            <NA>
12353                                                            <NA>
12364                                                            <NA>
12366                                             tablet/pill/capsule
12376                                                            <NA>
12379                                                            <NA>
12394                                                            <NA>
12398                                                            <NA>
12402                                                 based on weight
12406                                             tablet/pill/capsule
12409                                                  1 pack/package
12410                                           1 tablet/pill/capsule
12411                                                           drops
12414                                                 based on weight
12415                                                 based on weight
12417                                             tablet/pill/capsule
12418                                             tablet/pill/capsule
12420                                                        ointment
12421                                                            <NA>
12422                                                            <NA>
12423                                                    small amount
12427                                                            <NA>
12430                                             tablet/pill/capsule
12431                                             tablet/pill/capsule
12432                                             tablet/pill/capsule
12433                                                            <NA>
12434                                                            <NA>
12438                                                            <NA>
12439                                                            <NA>
12453                                                     combination
12454                                    based on weight (50-100 lbs)
12455                                                            <NA>
12456                                                 based on weight
12457                                                 based on weight
12461                                                        wipe/pad
12462                                             tablet/pill/capsule
12463                                                            <NA>
12466                                                            <NA>
12473                                                 based on weight
12474                                                 based on weight
12475                                                            <NA>
12477                                                            <NA>
12481                                                 based on weight
12485                                                            <NA>
12487                                                            <NA>
12495                                                 based on weight
12497                                                     billion cfu
12498                                                 based on weight
12500                                             tablet/pill/capsule
12506                                                            <NA>
12511                                             tablet/pill/capsule
12512                                             tablet/pill/capsule
12514                                                            <NA>
12516                                                            <NA>
12520                                                 based on weight
12521                                           1 tablet/pill/capsule
12523                                                 based on weight
12528                                                    small amount
12529                                                    small amount
12530                                                 based on weight
12535                                                    small amount
12536                                                            <NA>
12540                                                            dose
12541                                                            dose
12542                                             tablet/pill/capsule
12543                                                     bottle/vial
12546                                                           scoop
12547                                                            <NA>
12548                                                            <NA>
12549                                                            <NA>
12550                                             tablet/pill/capsule
12551                                                            tube
12552                                             tablet/pill/capsule
12553                                                    small amount
12554                                                    small amount
12569                                                            <NA>
12571                                                              1%
12578                                                            <NA>
12580                                                            <NA>
12585                                                            <NA>
12588                                                            <NA>
12589                                                            <NA>
12595                                                            <NA>
12596                                                            <NA>
12605                                                            <NA>
12608                                                            <NA>
12615                                                            <NA>
12616                                    based on weight (50-100 lbs)
12620                                           1 tablet/pill/capsule
12623                                           1 tablet/pill/capsule
12630                                                            <NA>
12632                                                            <NA>
12636                                                            <NA>
12638                                                 based on weight
12639                                           1 tablet/pill/capsule
12642                                                            <NA>
12645                                                            <NA>
12686                                           1 tablet/pill/capsule
12692                                                            <NA>
12693                                             tablet/pill/capsule
12714                                                 based on weight
12730                                                            <NA>
12732                                                            <NA>
12735                                                    small amount
12738                                                            <NA>
12740                                                            <NA>
12744                                                            <NA>
12749                                                            <NA>
12754                                                            <NA>
12755                                                            <NA>
12756                                                            <NA>
12771                                                       injection
12774                                             tablet/pill/capsule
12780                                                    pack/package
12784                                                    pack/package
12787                                                          collar
12788                                                 0.25 inch strip
12795                                           1 tablet/pill/capsule
12796                                                          collar
12797                                                  1 pack/package
12801                                                          powder
12826                                                     application
12828                                                     application
12836                                                            <NA>
12849                                                            <NA>
12850                                                            <NA>
12861                                                            <NA>
12865                                                            <NA>
12866                                                     unspecified
12870                                                          powder
12873                                                            <NA>
12879                                    based on weight (50-100 lbs)
12880                                    based on weight (60-120 lbs)
12881                                                    small amount
12882                                                    small amount
12894                                                            <NA>
12895                                                     unspecified
12901                                                            <NA>
12902                                                            <NA>
12903                                                            <NA>
12905                                                            <NA>
12906                                                              ml
12907                                                     unspecified
12908                                                     unspecified
12911                                                            <NA>
12916                                                 based on weight
12920                                                 based on weight
12929                                                 based on weight
12942                                             tablet/pill/capsule
12943                                                 based on weight
12945                                             tablet/pill/capsule
12948                                             tablet/pill/capsule
12949                                                            <NA>
12952                                             tablet/pill/capsule
12955                                             tablet/pill/capsule
12956                                                     as directed
12957                                    based on weight (50-100 lbs)
12962                                                            <NA>
12963                                        2 tablets/pills/capsules
12966                                                 based on weight
12994                                                            tube
13005                                    based on weight (50-100 lbs)
13006                                    based on weight (60-120 lbs)
13008                                           1 tablet/pill/capsule
13010                                                            <NA>
13013                                                            <NA>
13020                                                            <NA>
13041                                                            <NA>
13049                                                    small amount
13061                                             tablet/pill/capsule
13062                                                            <NA>
13074                                                            <NA>
13075                                                            <NA>
13076                                                            <NA>
13081                                                            <NA>
13084                                                            <NA>
13086                                                            <NA>
13096                                                    small amount
13104                                                            <NA>
13108                                                            <NA>
13109                                                            <NA>
13114                                                            <NA>
13115                                                            <NA>
13116                                                            <NA>
13124                                                    small amount
13126                                                            <NA>
13127                                                            <NA>
13129                                                    small amount
13130                                                    small amount
13133                                                            <NA>
13136                                                 based on weight
13137                                     based on weight (44-88 lbs)
13139                                                            <NA>
13142                                                 based on weight
13143                                                 based on weight
13148                                                            <NA>
13149                                           1 tablet/pill/capsule
13150                                           1 tablet/pill/capsule
13151                                           1 tablet/pill/capsule
13152                                           1 tablet/pill/capsule
13154                                                            <NA>
13157                                           1 tablet/pill/capsule
13159                                                            <NA>
13160                                                            <NA>
13168                                             tablet/pill/capsule
13169                                             tablet/pill/capsule
13170                                             tablet/pill/capsule
13187                                                           spray
13188                                                            <NA>
13189                                                            <NA>
13195                                                           spray
13196                                                  shampoo/mousse
13198                                                    small amount
13199                                             tablet/pill/capsule
13208                                             tablet/pill/capsule
13209                                             tablet/pill/capsule
13233                                                     application
13246                                                      inch strip
13248                                                            <NA>
13249                                                            <NA>
13264                                                            <NA>
13270                                                            <NA>
13271                                             tablet/pill/capsule
13277                                                            <NA>
13278                                                        ointment
13279                                                        ointment
13286                                                            <NA>
13287                                                            <NA>
13288                                                            <NA>
13297                                             tablet/pill/capsule
13298                                             tablet/pill/capsule
13299                                                            <NA>
13307                                             tablet/pill/capsule
13308                                                 based on weight
13309                                                 based on weight
13313                                                 based on weight
13314                                                 based on weight
13321                                                 moderate amount
13331                                                 based on weight
13332                                                       2-3 drops
13334                                                            <NA>
13340                                                            <NA>
13341                                             tablet/pill/capsule
13343                                             tablet/pill/capsule
13344                                             tablet/pill/capsule
13349                                                            <NA>
13353                                                            <NA>
13354                                             tablet/pill/capsule
13355                                             tablet/pill/capsule
13356                                                            <NA>
13357                                                     unspecified
13376                                                            <NA>
13405                                                            <NA>
13411                                                            <NA>
13454                                                 based on weight
13455                                                 based on weight
13456                                                            <NA>
13459                                                 based on weight
13460                                                    small amount
13461                                             tablet/pill/capsule
13462                                             tablet/pill/capsule
13464                                                            <NA>
13468                                                     unspecified
13470                                             tablet/pill/capsule
13471                                                 based on weight
13475                                                 based on weight
13476                                             tablet/pill/capsule
13479                                                 based on weight
13483                                                 based on weight
13484                                                 based on weight
13496                                                            <NA>
13502                                                            <NA>
13503                                                            <NA>
13506                                             tablet/pill/capsule
13532                                                    pack/package
13537                                                            <NA>
13538                                             tablet/pill/capsule
13562                                                            <NA>
13563                                                  shampoo/mousse
13564                                                            <NA>
13575                                                        titrated
13576                                           1 tablet/pill/capsule
13579                                                            <NA>
13581                                                            <NA>
13585                                                            <NA>
13590                                                       as needed
13594                                                            <NA>
13595                                                            <NA>
13601                                                      inch strip
13603                                                            <NA>
13605                                                            <NA>
13609                                                 0.25 inch strip
13615                                                            <NA>
13623                                                     bottle/vial
13624                                                 based on weight
13625                                                            tube
13628                                                 based on weight
13631                                                    small amount
13654                                                    small amount
13657                                                    small amount
13666                                                   1 bottle/vial
13693                                             tablet/pill/capsule
13723                                     based on weight (44-88 lbs)
13724                                                 based on weight
13730                                             tablet/pill/capsule
13737                                             tablet/pill/capsule
13740                                                            <NA>
13741                                                            <NA>
13747                                                            <NA>
13756                                                            <NA>
13768                                                            <NA>
13769                                                           spray
13776                                                 based on weight
13782                                                 syringe/pipette
13783                                                 based on weight
13796                                                        wipe/pad
13893                                                            <NA>
13894                                                            <NA>
13896                                                 based on weight
13902                                                            <NA>
13905                                                            <NA>
13906                                                            <NA>
13910                                                 based on weight
13912                                                            <NA>
13913                                                            <NA>
13925                                                            <NA>
13943                                                            <NA>
13946                                                           spray
13994                                                            <NA>
13995                                                            <NA>
13996                                                            <NA>
13998                                           1 tablet/pill/capsule
14006                                                           spray
14007                                             tablet/pill/capsule
14050                                                 0.25 inch strip
14051                                             tablet/pill/capsule
14055                                                            <NA>
14059                                                            <NA>
14060                                             tablet/pill/capsule
14061                                                            <NA>
14062                                                            <NA>
14063                                                            <NA>
14064                                                 based on weight
14106                                                 based on weight
14114                                             tablet/pill/capsule
14118                                                            <NA>
14123                                                            <NA>
14128                                                            <NA>
14129                                                 based on weight
14131                                                    small amount
14147                                             tablet/pill/capsule
14148                                                     bottle/vial
14151                                             tablet/pill/capsule
14154                                             tablet/pill/capsule
14162                                             tablet/pill/capsule
14163                                             tablet/pill/capsule
14164                                             tablet/pill/capsule
14165                                                            <NA>
14166                                                            <NA>
14170                                                    small amount
14172                                                 based on weight
14173                                                 based on weight
14174                                                            tube
14175                                                            <NA>
14177                                           1 tablet/pill/capsule
14178                                                            tube
14180                                                            <NA>
14181                                             tablet/pill/capsule
14190                                                            <NA>
14219                                                 based on weight
14221                                                            <NA>
14228                                                            <NA>
14238                                                    small amount
14241                                                            <NA>
14242                                                            <NA>
14245                                                            <NA>
14282                                                            <NA>
14284                                                            <NA>
14291                                                            pump
14297                                                            <NA>
14301                                    based on weight (50-100 lbs)
14302                                       based on weight (25+ lbs)
14319                                                            <NA>
14323                                                      inch strip
14324                                                            <NA>
14330                                                            <NA>
14334                                                            tube
14336                                                            <NA>
14365                                                     combination
14366                     272 mcg ivermectin, 227 mg pyrantel pamoate
14367 680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14373                                       based on weight (18+ lbs)
14376                                                          collar
14378                                             tablet/pill/capsule
14380                                                          collar
14385                                                            <NA>
14386                                                            <NA>
14387                                                            <NA>
14388                                                            <NA>
14404                                                            <NA>
14406                                    based on weight (50-100 lbs)
14408                                             tablet/pill/capsule
14412                                                            <NA>
14413                                                            <NA>
14414                                                     unspecified
14420                                                            <NA>
14421                                                            <NA>
14426                                                            <NA>
14428                                                            <NA>
14429                                    based on weight (50-100 lbs)
14431                                    based on weight (50-100 lbs)
14432                                                 based on weight
14433                                                     unspecified
14434                                                           scoop
14443                                    based on weight (50-100 lbs)
14444                                                     unspecified
14445                                                     unspecified
14446                                                     unspecified
14447                                                     unspecified
14448                                    based on weight (50-100 lbs)
14449                                    based on weight (50-100 lbs)
14451                                             tablet/pill/capsule
14455                                                 0.25 inch strip
14471                                                     unspecified
14473                                                     unspecified
14477                                                            <NA>
14479                                                 based on weight
14488                                           1 tablet/pill/capsule
14489                                             tablet/pill/capsule
14490                                    based on weight (50-100 lbs)
14495                                           1 tablet/pill/capsule
14498                                             tablet/pill/capsule
14499                                    based on weight (50-100 lbs)
14512                                                            <NA>
14513                                                            <NA>
14528                                     based on weight (44-88 lbs)
14529                                    based on weight (50-100 lbs)
14547                                    based on weight (50-100 lbs)
14563                                                            <NA>
14576                                                 based on weight
14578                                       based on weight (25+ lbs)
14582                                                 based on weight
14583                                                 based on weight
14584                                                 based on weight
14585                                                 based on weight
14586                                                 based on weight
14587                                                 based on weight
14588                                                 based on weight
14601                                                     unspecified
14605                                                            <NA>
14608                                                            <NA>
14637                                                            <NA>
14645                                                            <NA>
14654                                                               %
14656                                                            <NA>
14658                     272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                    based on weight (50-100 lbs)
14665                                    based on weight (60-120 lbs)
14697                                                        ointment
14699                                                     application
14700                                                 based on weight
14701                                                 based on weight
14702                                                            <NA>
14711                                    based on weight (50-100 lbs)
14712                                     based on weight (56-95 lbs)
14713                                        based on weight (85 lbs)
14720                                    based on weight (50-100 lbs)
14721                                     based on weight (56-95 lbs)
14722                                    based on weight (50-100 lbs)
14723                                    based on weight (50-100 lbs)
14726                                     based on weight (44-88 lbs)
14728                                                            <NA>
14730                                                            <NA>
14733                                                            <NA>
14737                                    based on weight (50-100 lbs)
14738                                     based on weight (44-88 lbs)
14744                                                 based on weight
14748                                                           drops
14754                                       based on weight (22+ lbs)
14755                                    based on weight (50-100 lbs)
14756                                                            <NA>
14757                                                            <NA>
14760                                                 based on weight
14763                                    based on weight (50-100 lbs)
14764                                                            <NA>
14775                                                            <NA>
14777                                                            <NA>
14778                                                            <NA>
14833                                                            <NA>
14834                                                            <NA>
14838                                                            <NA>
14839                                                            <NA>
14857                                                            <NA>
14858                                                            <NA>
14862                                                            <NA>
14863                                                            <NA>
14864                                                            <NA>
14867                                                            <NA>
14870                                                            <NA>
14871                                                            <NA>
14878                                                            <NA>
14883                                                            <NA>
14884                                                            <NA>
14899                                                            <NA>
14911                                                            <NA>
14913                                                            <NA>
14914                                                            <NA>
14934                                                            <NA>
14943                                                            <NA>
14944                                                            <NA>
14949                                                            <NA>
14972                                             tablet/pill/capsule
14973                                                     unspecified
14974                                             tablet/pill/capsule
14975                                             tablet/pill/capsule
14978                                             tablet/pill/capsule
14981                                                 based on weight
14982                                             tablet/pill/capsule
14983                                                     as directed
15001                                                            <NA>
15002                                                            <NA>
15004                                                            <NA>
15005                                                            <NA>
15006                                                            <NA>
15007                                                            <NA>
15008                                                            <NA>
15009                                                            <NA>
15010                                                            <NA>
15011                                                            <NA>
15017                                    based on weight (50-100 lbs)
15021                                                            <NA>
15022                                                            <NA>
15023                                                   1 bottle/vial
15027                                                            <NA>
15028                                                            <NA>
15029                                                            <NA>
15030                                                            <NA>
15035                                                            <NA>
15036                                                            <NA>
15045                                                            <NA>
15048                                                 based on weight
15055                                                            <NA>
15059                                           1 tablet/pill/capsule
15061                                             tablet/pill/capsule
15077                                                          collar
15102                                                            <NA>
15129                                                           drops
15130                                                            <NA>
15131                                                            <NA>
15132                                                            <NA>
15139                                                     combination
15140                                                     combination
15144                                                            <NA>
15145                                                            <NA>
15150                                                 based on weight
15151                                                            <NA>
15155                                                            <NA>
15170                                                            <NA>
15179                                                            <NA>
15196                                                     unspecified
15197                                                    small amount
15209                                                     bottle/vial
15213                                                            pump
15244                                                            <NA>
15250                                                            tube
15256                                                            <NA>
15259                                                            <NA>
15268                                    based on weight (50-100 lbs)
15269                                     based on weight (24-60 lbs)
15274                                                            <NA>
15308                                             tablet/pill/capsule
15309                                             tablet/pill/capsule
15310                                           1 tablet/pill/capsule
15311                                                          collar
15314                                                            <NA>
15315                                                          collar
15317                                             tablet/pill/capsule
15319                                                            <NA>
15321                                           1 tablet/pill/capsule
15322                                                          collar
15323                                                            <NA>
15332                                                     as directed
15333                                                            <NA>
15339                                                            <NA>
15345                                                            <NA>
15348                                                            <NA>
15361                                             tablet/pill/capsule
15362                                             tablet/pill/capsule
15363                                                            <NA>
15365                                             tablet/pill/capsule
15366                                             tablet/pill/capsule
15367                                           1 tablet/pill/capsule
15373                                                 based on weight
15374                                                 based on weight
15375                                           1 tablet/pill/capsule
15376                                                          1 tube
15377                                           1 tablet/pill/capsule
15378                                                     bottle/vial
15383                                                            <NA>
15384                                                            <NA>
15402                                                            <NA>
15412                                                            <NA>
15441                                                            <NA>
15445                                                            <NA>
15448                                                            <NA>
15451                                             tablet/pill/capsule
15453                                                 moderate amount
15454                                                            <NA>
15512                                                            <NA>
15513                                                            <NA>
15515                                           1 tablet/pill/capsule
15524                                             tablet/pill/capsule
15528                                                            <NA>
15530                                                 based on weight
15531                                                            <NA>
15533                                             tablet/pill/capsule
15551                                                 based on weight
15552                                             tablet/pill/capsule
15554                                                 based on weight
15555                                                 based on weight
15556                                                 based on weight
15563                                                        ointment
15581                                                          liquid
15584                                                            <NA>
15585                                           1 tablet/pill/capsule
15586                                                     application
15589                                                 based on weight
15590                                             tablet/pill/capsule
15591                                             tablet/pill/capsule
15592                                                            <NA>
15593                                             tablet/pill/capsule
15594                                             tablet/pill/capsule
15597                                             tablet/pill/capsule
15598                                             tablet/pill/capsule
15599                                                        ointment
15600                                           1 tablet/pill/capsule
15601                                           1 tablet/pill/capsule
15603                                                            <NA>
15604                                                            <NA>
15613                                                            <NA>
15618                                                            <NA>
15633                                                            <NA>
15636                                                            <NA>
15649                                                 based on weight
15650                                                 based on weight
15661                                             tablet/pill/capsule
15663                                                     bottle/vial
15667                                                            <NA>
15669                                                            <NA>
15672                                                            <NA>
15673                                                            <NA>
15674                                                            <NA>
15689                                             tablet/pill/capsule
15690                                                            <NA>
15691                                                            <NA>
15692                                                            <NA>
15693                                                            <NA>
15699                                                            <NA>
15701                                                 13.5 mg, 810 mg
15706                                                    small amount
15707                                                            <NA>
15712                                             tablet/pill/capsule
15715                                                            <NA>
15733                                                            <NA>
15750                                                            <NA>
15757                                             tablet/pill/capsule
15758                                                     bottle/vial
15767                                                            <NA>
15768                                                            <NA>
15769                                                            <NA>
15770                                                            <NA>
15778                                                           spray
15781                                                 0.25 inch strip
15782                                                           spray
15790                                                     unspecified
15796                                                            <NA>
15799                                                            <NA>
15811                                                    pack/package
15815                                                 based on weight
15818                                                            <NA>
15829                                                            <NA>
15839                                                     unspecified
15840                                                     unspecified
15841                                    based on weight (50-100 lbs)
15842                                    based on weight (50-100 lbs)
15844                                    based on weight (50-100 lbs)
15848                                                 based on weight
15849                                    based on weight (50-100 lbs)
15850                                    based on weight (50-100 lbs)
15856                                                          1 tube
15857                                             tablet/pill/capsule
15858                                                            <NA>
15859                                           1 tablet/pill/capsule
15860                                                            <NA>
15862                                                      inch strip
15863                                                      inch strip
15867                                             tablet/pill/capsule
15868                                           1 tablet/pill/capsule
15869                                                 based on weight
15870                                                 based on weight
15886                                             tablet/pill/capsule
15888                                                            <NA>
15889                                                            <NA>
15890                                                            <NA>
15891                                                 based on weight
15892                                                            <NA>
15907                                                            <NA>
15911                                                            <NA>
15917                                             tablet/pill/capsule
15921                                             tablet/pill/capsule
15922                                                 based on weight
15927                                                            <NA>
15928                                                    pack/package
15929                                             tablet/pill/capsule
15930                                                            <NA>
15933                                                            <NA>
15935                                                            <NA>
15937                                                 based on weight
15944                                                            <NA>
15945                                                            <NA>
15981                                    based on weight (50-100 lbs)
15983                                                    small amount
15986                                     based on weight (56-95 lbs)
15992                                    based on weight (50-100 lbs)
15993                                     based on weight (56-95 lbs)
15995                                    based on weight (50-100 lbs)
15996                                     based on weight (56-95 lbs)
15997                                     based on weight (44-88 lbs)
15998                                                   1 bottle/vial
15999                                    based on weight (50-100 lbs)
16000                                     based on weight (44-88 lbs)
16005                                                            <NA>
16007                                                            <NA>
16009                                                            <NA>
16016                                                        ointment
16026                                                    small amount
16033                                                            <NA>
16036                                                 based on weight
16038                                                 based on weight
16039                                                     application
16052                                             tablet/pill/capsule
16053                                                            tube
16094                     272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                             tablet/pill/capsule
16098                                             tablet/pill/capsule
16105                                                            <NA>
16107                                                       6-8 drops
16108                                                            <NA>
16109                                                            <NA>
16110                                                            <NA>
16112                                                            <NA>
16113                                                     unspecified
16114                                                            <NA>
16116                                                            <NA>
16117                                                            <NA>
16118                                                            <NA>
16150                                                     bottle/vial
16153                                             tablet/pill/capsule
16155                                                     bottle/vial
16156                                                    pack/package
16157                                             tablet/pill/capsule
16158                                             tablet/pill/capsule
16159                                             tablet/pill/capsule
16160                                             tablet/pill/capsule
16161                                             tablet/pill/capsule
16162                                             tablet/pill/capsule
16163                                             tablet/pill/capsule
16164                                             tablet/pill/capsule
16165                                             tablet/pill/capsule
16177                                                    small amount
16179                                                        wipe/pad
16199                                                            <NA>
16229                                             tablet/pill/capsule
16230                                    based on weight (50-100 lbs)
16239                                                            <NA>
16240                                                            <NA>
16241                                                            <NA>
16242                                                            <NA>
16251                                                            <NA>
16253                                                            <NA>
16285                                                            <NA>
16286                                                            <NA>
16287                                     based on weight (26-50 lbs)
16288                                     based on weight (44-88 lbs)
16289                                             tablet/pill/capsule
16290                                                            <NA>
16292                                                            <NA>
16293                                                            <NA>
16294                                                            <NA>
16295                                                            <NA>
16296                                                            <NA>
16312                                             tablet/pill/capsule
16313                                             tablet/pill/capsule
16315                                             tablet/pill/capsule
16316                                             tablet/pill/capsule
16318                                           1 tablet/pill/capsule
16319                                           1 tablet/pill/capsule
16321                                           1 tablet/pill/capsule
16322                                           1 tablet/pill/capsule
16324                                           1 tablet/pill/capsule
16325                                           1 tablet/pill/capsule
16326                                    based on weight (50-100 lbs)
16340                                                 based on weight
16347                                                               %
16352                                                            <NA>
16355                                                    small amount
16356                                                     as directed
16367                                                            <NA>
16371                                                            <NA>
16374                                                            <NA>
16376                                                            <NA>
16378                                                            <NA>
16382                                                            <NA>
16387                                                  shampoo/mousse
16388                                                           spray
16389                                                            <NA>
16400                                             tablet/pill/capsule
16401                                             tablet/pill/capsule
16403                                                 based on weight
16404                                                 based on weight
16408                                                            <NA>
16413                                             tablet/pill/capsule
16414                                             tablet/pill/capsule
16418                                                     unspecified
16419                                                     unspecified
16420                                                     unspecified
16425                                     based on weight (44-88 lbs)
16426                                     based on weight (44-88 lbs)
16434                                                            <NA>
16435                                                            <NA>
16436                                                            <NA>
16437                                                            <NA>
16440                                    based on weight (50-100 lbs)
16441                                    based on weight (50-100 lbs)
16442                                                     unspecified
16443                                                     unspecified
16447                                    based on weight (50-100 lbs)
16448                                                     unspecified
16450                                    based on weight (50-100 lbs)
16462                                                            <NA>
16472                                                            <NA>
16474                                                 syringe/pipette
16477                                                            <NA>
16478                                                            <NA>
16479                                                 syringe/pipette
16497                                                            <NA>
16522                                             tablet/pill/capsule
16523                                             tablet/pill/capsule
16524                                                     bottle/vial
16525                                                            <NA>
16526                                                            <NA>
16544                                                     bottle/vial
16546                                                            <NA>
16553                                                 based on weight
16579                                                 based on weight
16580                                                    small amount
16595                                    based on weight (50-100 lbs)
16596                                                 based on weight
16597                                                 based on weight
16598                                                 based on weight
16599                                                 based on weight
16601                                                 based on weight
16605                                                            <NA>
16606                                                 based on weight
16608                                                 based on weight
16624                                                            <NA>
16630                                    based on weight (50-100 lbs)
16631                                    based on weight (50-100 lbs)
16635                                                        ointment
16636                                             tablet/pill/capsule
16639                                             tablet/pill/capsule
16657                                                            <NA>
16684                                                          powder
16685                                                        wipe/pad
16687                                                            dose
16694                                             tablet/pill/capsule
16702                                                 0.25 inch strip
16703                                                          powder
16704                                             tablet/pill/capsule
16705                                             tablet/pill/capsule
16711                                                    small amount
16712                                                  shampoo/mousse
16714                                                    small amount
16717                                                    small amount
16718                                                    small amount
16721                                             tablet/pill/capsule
16723                                                          powder
16724                                                            <NA>
16726                                                           spray
16749                                                            <NA>
16751                                                            <NA>
16774                                             tablet/pill/capsule
16777                                             tablet/pill/capsule
16778                                                     bottle/vial
16779                                                           mg/kg
16783                                                            <NA>
16784                                                            <NA>
16785                                                            <NA>
16791                                                            <NA>
16793                                                            <NA>
16798                                                            <NA>
16805                                                 based on weight
16807                                                     application
16809                                                            tube
16810                                                     combination
16811                                                 based on weight
16814                                                            <NA>
16815                                                     unspecified
16816                                                            <NA>
16821                                             tablet/pill/capsule
16823                                                            <NA>
16834                                                            <NA>
16838                                                            <NA>
16840                                                            <NA>
16841                                                            <NA>
16847                                                            <NA>
16869                                                 based on weight
16877                                                            <NA>
16882                                                          collar
16918                                                     unspecified
16929                                                     as directed
16931                                                            <NA>
16933                                                            <NA>
16935                                                            <NA>
16936                                     based on weight (26-50 lbs)
16939                                                            <NA>
16970                                                            <NA>
16983                                             tablet/pill/capsule
16993                                                    small amount
16994                                                    small amount
16998                                                           tubes
16999                                                            <NA>
17000                                                            <NA>
17010                                                     combination
17012                                                     bottle/vial
17013                                             tablet/pill/capsule
17014                                                 based on weight
17018                                                     unspecified
17019                                             tablet/pill/capsule
17020                                                            <NA>
17022                                                            <NA>
17042                                                 based on weight
17053                                                            <NA>
17062                                                            <NA>
17088                                                     combination
17090                                           1 tablet/pill/capsule
17091                                           1 tablet/pill/capsule
17094                                    based on weight (50-100 lbs)
17095                                    based on weight (60-120 lbs)
17098                                                            <NA>
17099                                                            <NA>
17120                                                    small amount
17121                                                    small amount
17126                                                       as needed
17127                                                       as needed
17138                                             tablet/pill/capsule
17143                                                 based on weight
17153                                                            <NA>
17156                                             tablet/pill/capsule
17157                                             tablet/pill/capsule
17173                                                            <NA>
17177                                             tablet/pill/capsule
17180                                             tablet/pill/capsule
17209                                             tablet/pill/capsule
17218                                                            <NA>
17220                                                            <NA>
17221                                                            <NA>
17225                                                            <NA>
17226                                                            <NA>
17227                                                            <NA>
17228                                                            <NA>
17229                                                            <NA>
17232                                             tablet/pill/capsule
17233                                                            tube
17234                                             tablet/pill/capsule
17236                                                          1 tube
17237                                             tablet/pill/capsule
17239                                             tablet/pill/capsule
17248                                    based on weight (50-100 lbs)
17251                                    based on weight (50-100 lbs)
17252                                                 syringe/pipette
17254                                                    small amount
17255                                           1 tablet/pill/capsule
17263                                                            <NA>
17264                                                            <NA>
17266                                                            <NA>
17268                                                 based on weight
17283                                                            <NA>
17285                                                            <NA>
17297                                                            <NA>
17298                                                 based on weight
17307                                                            <NA>
17308                                                            <NA>
17309                                                            <NA>
17310                                                            <NA>
17313                                                            <NA>
17314                                                            <NA>
17315                                                            <NA>
17327                                                     application
17329                                                     application
17330                                                     application
17335                                                     application
17352                                                           spray
17355                                                    small amount
17387                                                            <NA>
17389                                                            <NA>
17390                                             tablet/pill/capsule
17391                                                            <NA>
17393                                                        ointment
17399                                             tablet/pill/capsule
17406                                                 based on weight
17407                                                           spray
17412                                                            <NA>
17417                                                          collar
17418                                             tablet/pill/capsule
17419                                             tablet/pill/capsule
17420                                             tablet/pill/capsule
17426                                                            <NA>
17427                                                            <NA>
17446                                                            <NA>
17461                                                            <NA>
17463                                                    pack/package
17468                                                            <NA>
17470                                                            <NA>
17482                                                            <NA>
17486                                                 based on weight
17487                                                 based on weight
17488                                                 based on weight
17489                                                 based on weight
17490                                                 based on weight
17491                                                 based on weight
17492                                                 based on weight
17493                                                 based on weight
17495                                                 based on weight
17496                                                 based on weight
17518                                                 based on weight
17519                                           1 tablet/pill/capsule
17576                                                 0.25 inch strip
17583                                                            <NA>
17588                                                           spray
17602                                                    small amount
17603                                                           23 mg
17605                                                            <NA>
17611                                                 based on weight
17615                                                 based on weight
17627                                                 based on weight
17659                                             tablet/pill/capsule
17672                                                            <NA>
17673                                                            <NA>
17680                                                            <NA>
17697                                                            <NA>
17702                                                            <NA>
17703                                                            <NA>
17719                                                            <NA>
17720                                                    small amount
17722                                                 based on weight
17742                                                            <NA>
17755                                                 syringe/pipette
17779                                                     application
17780                                                            <NA>
17781                                                            <NA>
17782                                                     application
17798                                                            <NA>
17802                                                           paste
17803                                                            <NA>
17804                                                            <NA>
17818                                                 based on weight
17832                                        based on weight (80 lbs)
17845                                                 based on weight
17853                                                            <NA>
17855                                                            <NA>
17856                                                            <NA>
17860                                                            <NA>
17863                                             tablet/pill/capsule
17865                                                            <NA>
17882                                                            <NA>
18023                                                 based on weight
18024                                                 based on weight
18057                                                 based on weight
18058                                                 based on weight
18072                                             tablet/pill/capsule
18074                                                            <NA>
18075                                                            dose
18094                                             tablet/pill/capsule
18095                                             tablet/pill/capsule
18096                                                            <NA>
18098                                                            <NA>
18114                                                            <NA>
18115                                                            <NA>
18116                                                            <NA>
18118                                       based on weight (55+ lbs)
18119                                    based on weight (50-100 lbs)
18124                                                 based on weight
18134                                                            <NA>
18141                                                            <NA>
18147                                                            hour
18165                                                    small amount
18188                                             tablet/pill/capsule
18192                                                            <NA>
18193                                                            <NA>
18195                                                            <NA>
18199                                                            <NA>
18202                                                 based on weight
18205                                                 based on weight
18213                                                            <NA>
18214                                                 based on weight
18217                                                            <NA>
18218                                                            <NA>
18220                                                            <NA>
18222                                             tablet/pill/capsule
18238                                                     unspecified
18251                                                          powder
18258                                                               %
18260                                                            <NA>
18262                                                               %
18263                                                            <NA>
18264                                                            <NA>
18266                                                            <NA>
18271                                                            <NA>
18275                                                    small amount
18276                                                            <NA>
18323                                                            <NA>
18325                                                            <NA>
18326                                                            <NA>
18337                                             tablet/pill/capsule
18338                                                            <NA>
18339                                             tablet/pill/capsule
18340                                             tablet/pill/capsule
18341                                                     unspecified
18342                                                            <NA>
18344                                           1 tablet/pill/capsule
18365                                             tablet/pill/capsule
18366                                             tablet/pill/capsule
18370                                             tablet/pill/capsule
18371                                             tablet/pill/capsule
18373                                           1 tablet/pill/capsule
18374                                           1 tablet/pill/capsule
18404                                                            <NA>
18415                                                 based on weight
18427                                                      inch strip
18441                                                            <NA>
18459                                                 based on weight
18460                                                            dose
18461                                                            dose
18469                                                 0.25 inch strip
18471                                                 0.25 inch strip
18479                                                            <NA>
18480                                                            <NA>
18483                                                            <NA>
18489                                             tablet/pill/capsule
18490                                             tablet/pill/capsule
18494                                             tablet/pill/capsule
18495                                             tablet/pill/capsule
18500                                             tablet/pill/capsule
18502                                             tablet/pill/capsule
18514                                     based on weight (21-55 lbs)
18520                                        based on weight (60 lbs)
18525                                                            <NA>
18534                                                           daily
18565                                                          1 tube
18571                                             tablet/pill/capsule
18572                                             tablet/pill/capsule
18576                                             tablet/pill/capsule
18577                                             tablet/pill/capsule
18580                                             tablet/pill/capsule
18588                                                            <NA>
18591                                                           spray
18595                                                 based on weight
18609                                                            <NA>
18612                                                     unspecified
18621                                                            <NA>
18649                                                 based on weight
18686                                                            <NA>
18687                                                            <NA>
18689                                                            <NA>
18690                                                            <NA>
18694                                                            <NA>
18696                                                     combination
18697                                                     combination
18703                     272 mcg ivermectin, 227 mg pyrantel pamoate
18707                                                            <NA>
18716                                                        ointment
18718                                                           spray
18729                                                        ointment
18734                                             tablet/pill/capsule
18735                                             tablet/pill/capsule
18736                                             tablet/pill/capsule
18743                                             tablet/pill/capsule
18750                                                            <NA>
18774                                                            <NA>
18775                                                            <NA>
18795                                             tablet/pill/capsule
18796                                                     bottle/vial
18797                                             tablet/pill/capsule
18798                                                     bottle/vial
18799                                                            <NA>
18800                                                            <NA>
18820                                                            <NA>
18829                                                            <NA>
18837                                             tablet/pill/capsule
18838                                        2 tablets/pills/capsules
18839                                           1 tablet/pill/capsule
18844                                                 syringe/pipette
18845                                             tablet/pill/capsule
18847                                        2 tablets/pills/capsules
18850                                           1 tablet/pill/capsule
18852                                             tablet/pill/capsule
18853                                           1 tablet/pill/capsule
18854                                           1 tablet/pill/capsule
18882                                                            dose
18908                                                 based on weight
18909                                                 based on weight
18919                                                          collar
18921                                                          collar
18924                                                 based on weight
18933                                                            <NA>
18935                                    based on weight (50-100 lbs)
18936                                                          collar
18937                                             tablet/pill/capsule
18961                                        2 tablets/pills/capsules
18964                                             tablet/pill/capsule
18970                                             tablet/pill/capsule
18987                                                            <NA>
18988                                                     unspecified
18991                                                    small amount
18993                                                            <NA>
18997                                                            <NA>
18998                                                            <NA>
19003                                                            <NA>
19004                                                            <NA>
19005                                                           spray
19006                                                           spray
19008                                      1-2 tablets/pills/capsules
19009                                      1-2 tablets/pills/capsules
19015                                                            <NA>
19019                                                            <NA>
19021                                                            <NA>
19022                                             tablet/pill/capsule
19023                                                    small amount
19025                                    based on weight (50-100 lbs)
19040                                                            <NA>
19041                                                            <NA>
19055                                                 based on weight
19056                                                     unspecified
19057                                                            <NA>
19061                                                 based on weight
19062                                                            <NA>
19068                                                            <NA>
19070                                             tablet/pill/capsule
19072                                                            tube
19073                                             tablet/pill/capsule
19078                                                 based on weight
19082                                                          1 tube
19122                                                 based on weight
19130                                             tablet/pill/capsule
19152                                                            <NA>
19153                                             tablet/pill/capsule
19154                                             tablet/pill/capsule
19159                                                            <NA>
19165                                             tablet/pill/capsule
19169                                           1 tablet/pill/capsule
19170                                                          1 tube
19183                                                               1
19184                                                     unspecified
19213                                                     unspecified
19214                                                     unspecified
19215                                                     as directed
19216                                                     as directed
19220                                                            <NA>
19221                                           1 tablet/pill/capsule
19222                                           1 tablet/pill/capsule
19223                                           1 tablet/pill/capsule
19224                                                          collar
19246                                                     as directed
19252                                                            <NA>
19253                                                            <NA>
19254                                                            <NA>
19271                                                 based on weight
19272                                                 based on weight
19273                                                 based on weight
19278                                                     combination
19281                                                 based on weight
19282                                                 based on weight
19288                                                            <NA>
19298                                                            <NA>
19299                                                            dose
19318                                                 based on weight
19325                                                            <NA>
19326                                                 based on weight
19327                                                 based on weight
19338                                                 based on weight
19350                                                      inch strip
19353                                                            <NA>
19354                                                            <NA>
19356                                                            <NA>
19357                                       based on weight (55+ lbs)
19373                                             tablet/pill/capsule
19386                                                 based on weight
19387                                                 based on weight
19390                                                    small amount
19391                                                 based on weight
19423                                                 based on weight
19427                                             tablet/pill/capsule
19445                                             tablet/pill/capsule
19446                                                     application
19447                                                 based on weight
19448                                                 based on weight
19449                                                 based on weight
19450                                                 based on weight
19452                                                            <NA>
19453                                                            <NA>
19454                                                            <NA>
19457                                                 based on weight
19462                                           1 tablet/pill/capsule
19463                                           1 tablet/pill/capsule
19464                                                            <NA>
19465                                                            <NA>
19476                                                 syringe/pipette
19482                     272 mcg ivermectin, 227 mg pyrantel pamoate
19486                                                            <NA>
19487                                             tablet/pill/capsule
19492                                             tablet/pill/capsule
19493                                             tablet/pill/capsule
19495                                             tablet/pill/capsule
19537                                             tablet/pill/capsule
19596                                                            <NA>
19603                                             tablet/pill/capsule
19617                                                            <NA>
19641                                                            <NA>
19662                                                    pack/package
19663                                                            <NA>
19673                                                 based on weight
19674                                                 based on weight
19685                                                 based on weight
19686                                                            <NA>
19688                                             tablet/pill/capsule
19689                                                            <NA>
19710                                                 based on weight
19711                                                 based on weight
19712                                                 based on weight
19713                                           1 tablet/pill/capsule
19714                                                          collar
19715                                             tablet/pill/capsule
19716                                                          collar
19717                                                 based on weight
19718                                                 based on weight
19722                                             tablet/pill/capsule
19735                                                    small amount
19737                                                            <NA>
19741                                                            <NA>
19754                                                            <NA>
19768                                                            dose
19771                                                            <NA>
19776                                     based on weight (40-60 lbs)
19777                                           1 tablet/pill/capsule
19778                                                 based on weight
19788                                                        wipe/pad
19790                                                            <NA>
19792                                                            <NA>
19801                                                 based on weight
19803                                             tablet/pill/capsule
19823                                                        ointment
19828                                                 based on weight
19829                                                 based on weight
19838                                                            <NA>
19843                                                            <NA>
19844                                                            <NA>
19845                                                            <NA>
19851                                                            <NA>
19856                                                 based on weight
19876                                                            <NA>
19881                                                            <NA>
19888                                             tablet/pill/capsule
19907                                                            <NA>
19909                                                            <NA>
19911                                                 based on weight
19912                                                            <NA>
19914                                                     unspecified
19917                                                    small amount
19925                                                            <NA>
19926                                                            <NA>
19927                                                            <NA>
19928                                                            <NA>
19930                                                            <NA>
19932                                                            <NA>
19933                                                 based on weight
19944                                                            <NA>
19945                                                            <NA>
19946                                                 based on weight
19947                                                            <NA>
19948                                                            <NA>
19949                                                            <NA>
19950                                                            <NA>
19952                                                     unspecified
19958                                                          collar
19975                                                     combination
19984                                                            <NA>
20003                                                            <NA>
20006                                                            <NA>
20007                                                           spray
20019                                           1 tablet/pill/capsule
20020                                           1 tablet/pill/capsule
20024                                             tablet/pill/capsule
20025                                             tablet/pill/capsule
20026                                             tablet/pill/capsule
20027                                             tablet/pill/capsule
20028                                             tablet/pill/capsule
20038                                             tablet/pill/capsule
20039                                             tablet/pill/capsule
20065                                                            <NA>
20068                                                            <NA>
20069                                                 moderate amount
20070                                                            <NA>
20072                                                            <NA>
20074                                                            <NA>
20096                                                          powder
20099                                                     combination
20105                                                            <NA>
20106                                                            <NA>
20125                                                            <NA>
20126                                           1 tablet/pill/capsule
20127                                           1 tablet/pill/capsule
20130                                                            <NA>
20131                                                            <NA>
20135                                                            <NA>
20144                                             tablet/pill/capsule
20145                                                       injection
20149                                                            <NA>
20150                                                    small amount
20164                                                            <NA>
20173                                                            tube
20174                                           1 tablet/pill/capsule
20175                                                            <NA>
20182                                                 moderate amount
20218                                                 based on weight
20219                                             tablet/pill/capsule
20220                                                            <NA>
20221                                             tablet/pill/capsule
20222                                                 based on weight
20224                                                     unspecified
20232                                                            <NA>
20233                                             tablet/pill/capsule
20234                                                        ointment
20240                                                   1 bottle/vial
20241                                       based on weight (55+ lbs)
20243                                                            <NA>
20244                                                 based on weight
20245                                                 based on weight
20251                                                    pack/package
20275                                                            <NA>
20282                                                            <NA>
20292                                                            <NA>
20293                                                               %
20295                                                            tube
20297                                                            <NA>
20298                                                            <NA>
20300                                                    pack/package
20301                                                          collar
20302                                                            <NA>
20303                                                               %
20306                                                            <NA>
20315                                                            <NA>
20337                                                       as needed
20339                                                        wipe/pad
20340                                                    small amount
20342                                                  shampoo/mousse
20343                                                   tapering dose
20344                                                            <NA>
20348                     272 mcg ivermectin, 227 mg pyrantel pamoate
20356                                                            <NA>
20374                                                 based on weight
20376                                                     as directed
20377                                                 based on weight
20380                                                     as directed
20382                                                            <NA>
20387                                    based on weight (50-100 lbs)
20388                                    based on weight (50-100 lbs)
20390                                    based on weight (50-100 lbs)
20392                                                            <NA>
20393                                                            <NA>
20402                                    based on weight (50-100 lbs)
20405                                    based on weight (50-100 lbs)
20409                                                            <NA>
20411                                                            <NA>
20413                                                            <NA>
20425                                                 based on weight
20426                                                 based on weight
20441                                                    small amount
20444                                        based on weight (90 lbs)
20446                                                            <NA>
20453                                                            <NA>
20460                                                            <NA>
20485                                                     application
20490                                           1 tablet/pill/capsule
20491                                           1 tablet/pill/capsule
20510                                             tablet/pill/capsule
20511                                           1 tablet/pill/capsule
20512                                           1 tablet/pill/capsule
20516                                           1 tablet/pill/capsule
20517                                           1 tablet/pill/capsule
20518                                                            pump
20554                                                 based on weight
20555                                                 based on weight
20561                                                 based on weight
20565                                    based on weight (60-120 lbs)
20568                                    based on weight (60-120 lbs)
20574                                                            <NA>
20577                                                            <NA>
20579                                           1 tablet/pill/capsule
20582                                    based on weight (60-120 lbs)
20585                                                    small amount
20615                                                            <NA>
20623                                                    pack/package
20636                                                            <NA>
20638                                                            <NA>
20641                                                          collar
20642                                                            <NA>
20645                                                     unspecified
20648                                                            <NA>
20651                                                            <NA>
20659                                                            <NA>
20666                                                            <NA>
20667                                                            <NA>
20678                                                            <NA>
20698                                                      inch strip
20701                                                 based on weight
20702                                    based on weight (50-100 lbs)
20704                                                    small amount
20705                                                     application
20707                                             tablet/pill/capsule
20708                                                        wipe/pad
20709                                                          powder
20712                                                        wipe/pad
20717                                                 based on weight
20718                                                            <NA>
20728                                                            <NA>
20738                                                            <NA>
20748                                                            <NA>
20761                                                            <NA>
20762                                                            <NA>
20763                                                            <NA>
20766                                                            <NA>
20767                                                            <NA>
20771                                                            <NA>
20783                                                            <NA>
20791                                                            <NA>
20796                                                            <NA>
20800                                             tablet/pill/capsule
20808                                             tablet/pill/capsule
20809                                             tablet/pill/capsule
20814                                                           spray
20817                                                            <NA>
20819                                                            <NA>
20849                                                            <NA>
20852                                                            <NA>
20854                                                            <NA>
20855                                                            <NA>
20858                                                            <NA>
20861                                                            <NA>
20862                                                               l
20863                                                 based on weight
20872                                                 based on weight
20897                                                            <NA>
20918                                                            <NA>
20939                                                 based on weight
20940                                                 based on weight
20941                                             tablet/pill/capsule
20947                                                          collar
20949                                                 based on weight
20962                                                            <NA>
20963                                                            <NA>
20964                                             tablet/pill/capsule
20965                                                            <NA>
20966                                                            <NA>
21003                                                        ointment
21013                                                      inch strip
21022                                                            <NA>
21025                                                            <NA>
21029                                                            <NA>
21074                                                 based on weight
21078                                             tablet/pill/capsule
21080                                                            <NA>
21088                                                     unspecified
21102                                                            <NA>
21109                                                     as directed
21110                                                 based on weight
21111                                                            <NA>
21112                                                            <NA>
21114                                             tablet/pill/capsule
21115                                                     application
21119                                                            <NA>
21122                                             tablet/pill/capsule
21123                                                            tube
21125                                                            <NA>
21126                                                            <NA>
21127                                             tablet/pill/capsule
21128                                                            <NA>
21129                                                            <NA>
21130                                                            <NA>
21131                                                  shampoo/mousse
21133                                                 based on weight
21168                                                            <NA>
21169                                                            <NA>
21178                                                 0.25 inch strip
21179                                                            <NA>
21180                                                            <NA>
21181                                             tablet/pill/capsule
21182                                                            <NA>
21183                                                            <NA>
21189                                    based on weight (60-120 lbs)
21190                                             tablet/pill/capsule
21201                                                            <NA>
21224                                                        ointment
21253                                                            <NA>
21254                                             tablet/pill/capsule
21256                                                            <NA>
21267                                                            <NA>
21268                                                            <NA>
21269                                           1 tablet/pill/capsule
21273                                                            <NA>
21278                                                            <NA>
21282                                                            <NA>
21287                                                            <NA>
21309                                                            <NA>
21326                                                            <NA>
21331                                                            <NA>
21338                                                 based on weight
21359                                                            <NA>
21361                                                            <NA>
21369                                                 based on weight
21384                                                            <NA>
21385                                                            <NA>
21386                                                            <NA>
21387                                                            <NA>
21388                                                            <NA>
21389                                                            <NA>
21403                                                            <NA>
21413                                                            <NA>
21416                                                            tube
21442                                                            <NA>
21445                                                 based on weight
21448                                                 based on weight
21449                                                 based on weight
21465                                                            <NA>
21472                                                            <NA>
21481                                                            <NA>
21492                                           1 tablet/pill/capsule
21493                                           1 tablet/pill/capsule
21495                                                            <NA>
21504                                                    pack/package
21507                                                    pack/package
21508                                                            <NA>
21509                                                     unspecified
21527                                                            <NA>
21528                                                 based on weight
21531                                                            <NA>
21532                                           1 tablet/pill/capsule
21533                                           1 tablet/pill/capsule
21545                                                         1000 mg
21549                                                            <NA>
21552                                                            3 ml
21553                                                            <NA>
21555                                                            <NA>
21558                                                            <NA>
21562                                                 based on weight
21563                                                 based on weight
21564                                                 based on weight
21585                                             tablet/pill/capsule
21586                                             tablet/pill/capsule
21593                                                            <NA>
21600                                        based on weight (55 lbs)
21602                                                            <NA>
21605                                                            <NA>
21607                                                            <NA>
21608                                                            <NA>
21609                                                            <NA>
21612                                                            <NA>
21614                                     based on weight (44-88 lbs)
21615                                    based on weight (50-100 lbs)
21616                                                      inch strip
21617                                                            <NA>
21618                                                            <NA>
21619                                    based on weight (50-100 lbs)
21620                                     based on weight (44-88 lbs)
21621                                    based on weight (50-100 lbs)
21622                                     based on weight (44-88 lbs)
21625                                                            <NA>
21632                                                            <NA>
21642                                                 based on weight
21643                                                            <NA>
21644                                                 based on weight
21645                     272 mcg ivermectin, 227 mg pyrantel pamoate
21646                                             tablet/pill/capsule
21648                                                 based on weight
21649                                                 based on weight
21650                                                     as directed
21651                                                            <NA>
21652                                                 based on weight
21653                                                    small amount
21654                                                            <NA>
21655                                                 based on weight
21658                                                          collar
21659                                                    small amount
21660                                                 0.25 inch strip
21661                                                           spray
21666                                                          collar
21673                                                            <NA>
21677                                                            <NA>
21678                                                           spray
21680                                                            <NA>
21685                                                     application
21701                                                          collar
21705                                                          collar
21707                                                          collar
21708                                                     unspecified
21723                                                            <NA>
21725                                                 based on weight
21727                                             tablet/pill/capsule
21739                                                            <NA>
21748                                                           23 mg
21749                                                        0.135 ml
21753                                                            <NA>
21754                                                            <NA>
21755                                                            <NA>
21757                                                            <NA>
21767                                                            <NA>
21783                                                               %
21796                                                            <NA>
21809                                                            <NA>
21810                                                            <NA>
21814                                             tablet/pill/capsule
21815                                                            <NA>
21833                                                            <NA>
21851                                                            <NA>
21865                                                     combination
21869                                                            <NA>
21872                                                            <NA>
21873                                                            <NA>
21875                                                            <NA>
21876                                                            <NA>
21877                                                            <NA>
21878                                                            <NA>
21886                                                            <NA>
21894                                                            <NA>
21897                                             tablet/pill/capsule
21898                                             tablet/pill/capsule
21912                                                            <NA>
21914                                             tablet/pill/capsule
21918                                                    pack/package
21921                                                            <NA>
21925                                                    pack/package
21949                                                            <NA>
21955                                                            <NA>
21956                                                            <NA>
21957                                                            <NA>
21959                                                            <NA>
21982                                                    pack/package
21993                                             tablet/pill/capsule
22020                                                    small amount
22023                                             tablet/pill/capsule
22025                                    based on weight (50-100 lbs)
22026                                                 based on weight
22037                                                 based on weight
22038                                                 based on weight
22041                                             tablet/pill/capsule
22042                                             tablet/pill/capsule
22043                                                            <NA>
22045                                                 based on weight
22046                                                 based on weight
22048                                                           spray
22050                                                            <NA>
22051                                                            <NA>
22060                                                            <NA>
22062                                                 based on weight
22064                                             tablet/pill/capsule
22088                                             tablet/pill/capsule
22089                                           1 tablet/pill/capsule
22092                                           1 tablet/pill/capsule
22093                                           1 tablet/pill/capsule
22118                                                 based on weight
22120                                                        ointment
22121                                                            <NA>
22125                                                            <NA>
22128                                                            <NA>
22136                                                 based on weight
22140                                                 based on weight
22141                                                 based on weight
22151                                                            <NA>
22160                                                            <NA>
22161                                                 based on weight
22163                                                            <NA>
22173                                           1 tablet/pill/capsule
22175                                                     application
22176                                                            <NA>
22177                                                            <NA>
22179                                                        ointment
22189                                                    small amount
22190                                                          liquid
22196                                                              ml
22199                                             tablet/pill/capsule
22201                                                            <NA>
22216                                                 based on weight
22217                                                 based on weight
22218                                                            <NA>
22219                                                            <NA>
22222                                           1 tablet/pill/capsule
22223                                             tablet/pill/capsule
22224                                                            tube
22225                                                            <NA>
22226                                                            <NA>
22227                                                            <NA>
22228                                                            <NA>
22229                                    based on weight (50-100 lbs)
22230                                                            <NA>
22237                                                            <NA>
22238                                                            <NA>
22239                                                            <NA>
22240                                                            <NA>
22241                                                            <NA>
22243                                                            <NA>
22245                                                            <NA>
22253                                             tablet/pill/capsule
22261                                             tablet/pill/capsule
22262                                             tablet/pill/capsule
22265                                             tablet/pill/capsule
22267                                                 based on weight
22268                                                 based on weight
22270                                                     unspecified
22272                                                    small amount
22289                                                            <NA>
22299                                                            <NA>
22306                        460 mg lufenuron, 23 mg milbemycin oxime
22308                                                            <NA>
22311                                                            <NA>
22313                                                    small amount
22314                                             tablet/pill/capsule
22315                                                  1 pack/package
22316                                                            <NA>
22319                                                            <NA>
22321                                                 based on weight
22323                                             tablet/pill/capsule
22341                                                            tube
22342                                                        wipe/pad
22343                                                            dose
22345                                                            <NA>
22346                                                            <NA>
22347                                                            <NA>
22349                                                            <NA>
22351                                                            <NA>
22352                                                            <NA>
22353                                                            <NA>
22367                                                            <NA>
22404                                                    small amount
22407                                                            <NA>
22408                                                    small amount
22410                                                    small amount
22413                                                 based on weight
22417                                                 based on weight
22430                                                 based on weight
22439                                             tablet/pill/capsule
22440                                                            <NA>
22441                                                 based on weight
22459                                                            <NA>
22463                                                            <NA>
22530                                                            <NA>
22531                                             tablet/pill/capsule
22532                                             tablet/pill/capsule
22533                                                          collar
22534                                                            <NA>
22537                                                  shampoo/mousse
22540                                                            <NA>
22541                                             tablet/pill/capsule
22545                                             tablet/pill/capsule
22546                                             tablet/pill/capsule
22547                                                            <NA>
22548                                                            <NA>
22549                                             tablet/pill/capsule
22552                                                            <NA>
22557                                                 based on weight
22558                                                 based on weight
22574                                                            <NA>
22575                                                 0.25 inch strip
22577                     272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                           1 tablet/pill/capsule
22579                                                            <NA>
22583                                        2 tablets/pills/capsules
22585                                                            <NA>
22598                                                          1 tube
22601                                                            <NA>
22606                                                     as directed
22607                                                     as directed
22610                                                            <NA>
22611                                                            <NA>
22625                                                 based on weight
22653                                                     unspecified
22655                                     based on weight (44-88 lbs)
22656                                                 based on weight
22662                                                    small amount
22667                                                    small amount
22669                                                            <NA>
22672                                                            <NA>
22673                                                            <NA>
22681                                                    small amount
22682                                             tablet/pill/capsule
22683                                                            tube
22690                                                          collar
22691                                                            <NA>
22692                                                 based on weight
22693                                                 based on weight
22704                                           1 tablet/pill/capsule
22705                                                            tube
22707                                             tablet/pill/capsule
22708                                                            tube
22711                                             tablet/pill/capsule
22713                                             tablet/pill/capsule
22714                                             tablet/pill/capsule
22716                                             tablet/pill/capsule
22717                                             tablet/pill/capsule
22718                                    based on weight (50-100 lbs)
22719                                             tablet/pill/capsule
22733                                                          collar
22748                                             tablet/pill/capsule
22749                                                            <NA>
22750                                                 based on weight
22751                                                            <NA>
22752                                                            <NA>
22754                                                 based on weight
22763                                                 based on weight
22764                                                            tube
22765                                                    small amount
22766                                                            <NA>
22770                                                            <NA>
22777                                                            <NA>
22778                                                            <NA>
22779                                                            <NA>
22780                                                            <NA>
22795                                             tablet/pill/capsule
22796                                                            <NA>
22797                                                         monthly
22798                                                         monthly
22799                                                 based on weight
22800                                                 based on weight
22801                                                 based on weight
22802                                                    small amount
22803                                                 based on weight
22804                                                 based on weight
22830                                                            <NA>
22840                                                            <NA>
22848                                                    small amount
22853                                                        ointment
22858                                                  shampoo/mousse
22875                                                               %
22886                                                    small amount
22909                                                            <NA>
22919                                    based on weight (60-120 lbs)
22920                                    based on weight (50-100 lbs)
22922                                                            <NA>
22923                                             tablet/pill/capsule
22926                                                    small amount
22929                                                    small amount
22936                                                            pump
22938                                                            <NA>
22939                                                            <NA>
22954                                                            <NA>
22955                                                            <NA>
22963                                                            tube
22965                                    based on weight (50-100 lbs)
22966                                                 based on weight
22967                                             tablet/pill/capsule
22971                                                 based on weight
22990                                                        wipe/pad
22991                                                            <NA>
22992                                                            <NA>
22994                                             tablet/pill/capsule
23006                                                            <NA>
23007                                                            <NA>
23018                                                            <NA>
23019                                                            <NA>
23024                                                    pack/package
23025                                             tablet/pill/capsule
23043                                             tablet/pill/capsule
23049                                                            <NA>
23051                                                            <NA>
23053                                             tablet/pill/capsule
23055                                                            <NA>
23059                                             tablet/pill/capsule
23060                                                 based on weight
23061                                                 based on weight
23064                                                            <NA>
23066                                                 based on weight
23083                                                            <NA>
23095                                             tablet/pill/capsule
23096                                             tablet/pill/capsule
23100                                                            <NA>
23102                                                            <NA>
23103                                                            <NA>
23108                                                            <NA>
23122                                                 based on weight
23123                                                 based on weight
23124                                                 based on weight
23125                                                 based on weight
23134                                                            <NA>
23137                                                            <NA>
23138                                             tablet/pill/capsule
23143                                                            <NA>
23144                                                            <NA>
23153                                                            <NA>
23154                                                            <NA>
23163                                                            <NA>
23169                                                            <NA>
23173                                                 based on weight
23175                                                            <NA>
23202                                             tablet/pill/capsule
23237                                                            <NA>
23249                                                            <NA>
23250                                                 based on weight
23251                                                            <NA>
23258                                           1 tablet/pill/capsule
23259                                                          1 tube
23266                                                        inhalant
23267                                                            <NA>
23268                                     based on weight (56-95 lbs)
23276                                                        inhalant
23278                                                    small amount
23279                                           1 tablet/pill/capsule
23280                                           1 tablet/pill/capsule
23283                                                            <NA>
23284                                                            <NA>
23286                                                            <NA>
23288                                                    small amount
23294                                                            <NA>
23299                                                            <NA>
23304                                                            <NA>
23308                                                  shampoo/mousse
23321                                                            <NA>
23322                                                    small amount
23325                                        based on weight (80 lbs)
23333                                                            <NA>
23336                                                            dose
23337                                                   1 bottle/vial
23338                                                   1 bottle/vial
23340                                                    small amount
23341                                           1 tablet/pill/capsule
23342                                                          1 tube
23344                                                            <NA>
23345                                     based on weight (56-95 lbs)
23349                                                    small amount
23350                                                            <NA>
23353                                                            <NA>
23355                                                            <NA>
23356                                                            <NA>
23360                                                            <NA>
23364                                                            <NA>
23366                                                            <NA>
23384                                                            <NA>
23388                                             tablet/pill/capsule
23403                                                 based on weight
23404                                                 based on weight
23413                                                 based on weight
23414                                                 based on weight
23419                                                     unspecified
23427                                                 based on weight
23428                                                            <NA>
23437                                                 based on weight
23450                                                            dose
23456                                                           spray
23472                                                            dose
23482                                                            tube
23484                                                     as directed
23485                                                     as directed
23487                                                     0.159 fl oz
23491                                                            <NA>
23507                                                    pack/package
23520                                                     0.159 fl oz
23533                                                            <NA>
23534                                                           spray
23540                                                 based on weight
23541                                                 based on weight
23552                                                            <NA>
23553                                                 based on weight
23557                                                 based on weight
23565                                                            <NA>
23566                                                            <NA>
23568                                                 based on weight
23571                     272 mcg ivermectin, 227 mg pyrantel pamoate
23572        9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen
23588                                             tablet/pill/capsule
23590                                             tablet/pill/capsule
23610                                                            <NA>
23617                                                 based on weight
23618                                           1 tablet/pill/capsule
23619                                                            <NA>
23620                                                 based on weight
23622                                    based on weight (50-100 lbs)
23646                                                 based on weight
23647                                                 based on weight
23651                                                 based on weight
23657                                                 based on weight
23659                                                 based on weight
23685                                             tablet/pill/capsule
23686                                             tablet/pill/capsule
23688                                             tablet/pill/capsule
23707                                                           spray
23718                                                            <NA>
23721                                             tablet/pill/capsule
23722                                             tablet/pill/capsule
23724                                                              60
23730                                                 based on weight
23732                                           1 tablet/pill/capsule
23740                                                 based on weight
23747                                                            <NA>
23749                                                            <NA>
23757                                                            <NA>
23804                                                            <NA>
23805                                                 based on weight
23808                                             tablet/pill/capsule
23809                                                          collar
23819                                                 based on weight
23861                                                 based on weight
23862                                                 based on weight
23865                                                            <NA>
23866                                                            tube
23868                                                            <NA>
23871                                                            <NA>
23872                                                  shampoo/mousse
23873                                                        wipe/pad
23898                                                          collar
23899                                                  shampoo/mousse
23900                                             tablet/pill/capsule
23901                                                         monthly
23902                                                 based on weight
23905                                           1 tablet/pill/capsule
23906                                                          collar
23909                                                       as needed
23910                                             tablet/pill/capsule
23914                                                     application
23917                                                        ointment
23924                                                            <NA>
23925                                                            <NA>
23933                                                            <NA>
23942                                                            <NA>
23955                                                 based on weight
23956                                                 based on weight
23957                                                            <NA>
23958                                                            <NA>
23959                                                            <NA>
23965                                                            <NA>
23969                                                            <NA>
23974                                       based on weight (55+ lbs)
23976                                                            <NA>
23980                                                            <NA>
24010                                                            <NA>
24012                                                    small amount
24017                                                            <NA>
24018                                                            <NA>
24019                                                            <NA>
24020                                                            <NA>
24022                                                            <NA>
24029                                                            <NA>
24045                                                            <NA>
24046                                                            <NA>
24062                                             tablet/pill/capsule
24068                                                     unspecified
24072                                                            <NA>
24075                                                 based on weight
24076                                                 based on weight
24077                                             tablet/pill/capsule
24079                                                            dose
24104                                                            <NA>
24106                                                            <NA>
24116                                             tablet/pill/capsule
24117                                             tablet/pill/capsule
24139                                                            <NA>
24142                                             tablet/pill/capsule
24144                                                            <NA>
24145                                                     unspecified
24149                                                            <NA>
24154                                                            <NA>
24155                                                            <NA>
24157                                                 based on weight
24162                                                 based on weight
24165                                                 based on weight
24166                                                 based on weight
24172                                                 0.25 inch strip
24174                                             tablet/pill/capsule
24185                                                            <NA>
24189                                                            <NA>
24192                                                            <NA>
24193                                                            <NA>
24194                                                            <NA>
24195                                                            <NA>
24203                                                    small amount
24205                                                            <NA>
24206                                                            <NA>
24207                                                            <NA>
24208                                                            <NA>
24209                                                           spray
24215                                                    small amount
24217                                                       as needed
24221                                                 moderate amount
24222                                                    small amount
24246                                                            <NA>
24250                                           1 tablet/pill/capsule
24253                                             tablet/pill/capsule
24257                                                 based on weight
24258                                             tablet/pill/capsule
24259                                             tablet/pill/capsule
24261                                             tablet/pill/capsule
24265                                             tablet/pill/capsule
24267                                                            <NA>
24268                                                            <NA>
24269                                                            <NA>
24276                                                            <NA>
24282                                             tablet/pill/capsule
24312                                                           spray
24313                                                            <NA>
24314                                             tablet/pill/capsule
24319                                                            <NA>
24322                                                           spray
24328                                                            <NA>
24343                                                            <NA>
24375                                                            <NA>
24393                                             tablet/pill/capsule
24394                                             tablet/pill/capsule
24395                                             tablet/pill/capsule
24400                                                            <NA>
24402                                           1 tablet/pill/capsule
24403                                           1 tablet/pill/capsule
24405                                                            <NA>
24406                                                            <NA>
24407                                                            <NA>
24409                                                            <NA>
24410                                             tablet/pill/capsule
24413                                           1 tablet/pill/capsule
24416                                                           drops
24417                                                        0.25 tsp
24420                                                            <NA>
24421                                             tablet/pill/capsule
24422                                                            tube
24424                                                     unspecified
24425                                                 based on weight
24426                                                 based on weight
24431                                                            <NA>
24432                                                            <NA>
24435                                             tablet/pill/capsule
24437                                             tablet/pill/capsule
24451                                                    small amount
24452                                                          1 drop
24453                                                          1 drop
24455                                                  1 pack/package
24459                                                            <NA>
24460                                                            <NA>
24468                                                            <NA>
24473                                                            <NA>
24475                                                            <NA>
24476                                             tablet/pill/capsule
24477                                             tablet/pill/capsule
24478                                                    pack/package
24480                                             tablet/pill/capsule
24481                                             tablet/pill/capsule
24484                                    based on weight (50-100 lbs)
24486                                             tablet/pill/capsule
24514                                                    pack/package
24520                                                     bottle/vial
24521                                                 based on weight
24526                                                           spray
24534                                                            <NA>
24536                                                            <NA>
24593                                                            <NA>
24597                                                            <NA>
24598                                                            <NA>
24599                                                            <NA>
24601                                                            <NA>
24602                                                            <NA>
24605                                                 based on weight
24610                                                    small amount
24647                                                    small amount
24648                                                            <NA>
24653                                                            <NA>
24660                                             tablet/pill/capsule
24669                                                 based on weight
24688                                                      inch strip
24707                                                 0.25 inch strip
24733                                                            <NA>
24734                                                            <NA>
24758                                                 0.25 inch strip
24762                                                            <NA>
24768                                                 based on weight
24769                                                 based on weight
24802                                                            <NA>
24804                                                            <NA>
24805                                                            <NA>
24806                                                            <NA>
24817                                                    small amount
24819                                                     application
24824                                             tablet/pill/capsule
24825                                             tablet/pill/capsule
24827                                                            <NA>
24828                                         0.5 tablet/pill/capsule
24829                                                 based on weight
24830                                                        wipe/pad
24839                                             tablet/pill/capsule
24840                                             tablet/pill/capsule
24850                                                            <NA>
24867                                                 based on weight
24878                                                 moderate amount
24898                                                            puff
24902                                                            <NA>
24917                                                           spray
24918                                                        wipe/pad
24919                                                            <NA>
24935                                                            <NA>
24937                                                            <NA>
24938                                                            <NA>
24940                                                            <NA>
24942                                                            <NA>
24948                                                    small amount
24949                                                            <NA>
24950                                     based on weight (44-88 lbs)
24963                                                            <NA>
24964                                                            <NA>
24968                                                 based on weight
24969                                                 based on weight
24971                                                 based on weight
24973                                             tablet/pill/capsule
24974                                                          collar
24975                                                    small amount
24982                                     based on weight (44-88 lbs)
24984                                                            <NA>
24985                                     based on weight (44-88 lbs)
24987                                    based on weight (50-100 lbs)
24988                                                            <NA>
24989                                                    small amount
24993                                                            <NA>
25004                                             tablet/pill/capsule
25020                                                            <NA>
25021                                                 based on weight
25022                                                            <NA>
25059                     272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                                 based on weight
25087                                                          collar
25094                                                            <NA>
25099                                                            <NA>
25100                                                            <NA>
25101                                                            <NA>
25102                                                            <NA>
25118                                                 based on weight
25119                                                 based on weight
25120                                                 based on weight
25124                                                            <NA>
25129                                             tablet/pill/capsule
25191                                                 based on weight
25196                                                 based on weight
25198                                                            <NA>
25233                                                 based on weight
25234                                                 based on weight
25241                                                    small amount
25255                                                              ml
25258                                                    small amount
25262                                                            <NA>
25269                                                            <NA>
25270                                                            <NA>
25296                                                            <NA>
25299                                             tablet/pill/capsule
25300                                             tablet/pill/capsule
25309                                                            <NA>
25310                                                            <NA>
25311                                                            <NA>
25315                                                            <NA>
25316                                                            <NA>
25317                                                            <NA>
25331                                                            <NA>
25337                                    based on weight (60-120 lbs)
25342                                                 based on weight
25343                                                 based on weight
25345                                                               2
25346                                                               1
25347                                                            <NA>
25367                                             tablet/pill/capsule
25390                                                            <NA>
25391                                                            <NA>
25405                                                 based on weight
25409                                                      inch strip
25410                                                      1 wipe/pad
25417                                                     bottle/vial
25421                                                 based on weight
25424                                                            <NA>
25425                                                            <NA>
25437                                                            <NA>
25444                                                            <NA>
25473                                                 based on weight
25482                                                            <NA>
25493                                                 based on weight
25494                                                 based on weight
25501                                                 based on weight
25514                                                            <NA>
25515                                                            <NA>
25516                                                            <NA>
25520                                           1 tablet/pill/capsule
25521                                           1 tablet/pill/capsule
25523                                           1 tablet/pill/capsule
25547                                                            <NA>
25554                                                            <NA>
25555                                                            <NA>
25556                                                            <NA>
25557                                                            <NA>
25575                                                            <NA>
25576                                             tablet/pill/capsule
25577                                                 based on weight
25589                                                            <NA>
25591                                                            <NA>
25612                                                            <NA>
25617                                                    small amount
25619                                                           drops
25622                                                            <NA>
25660                                                    small amount
25663                                                    small amount
25666                                        3 tablets/pills/capsules
25670                                                            tube
25671                                                          liquid
25674                                                            <NA>
25683                                                            <NA>
25706                                                          1 tube
25707                                                     unspecified
25708                                           1 tablet/pill/capsule
25725                                                     billion cfu
25727                                             tablet/pill/capsule
25730                                                  shampoo/mousse
25737                                                            <NA>
25740                                             tablet/pill/capsule
25741                                             tablet/pill/capsule
25743                                                            tube
25744                                                       as needed
25748                                             tablet/pill/capsule
25749                                             tablet/pill/capsule
25750                                                          1 tube
25751                                                      inch strip
25753                                                            <NA>
25754                                           1 tablet/pill/capsule
25755                                           1 tablet/pill/capsule
25756                                                          1 tube
25757                                           1 tablet/pill/capsule
25765                                                            <NA>
25795                                        based on weight (60 lbs)
25804                                                            <NA>
25806                                             tablet/pill/capsule
25807                                           1 tablet/pill/capsule
25819                                                            <NA>
25820                                             tablet/pill/capsule
25826                                                            <NA>
25827                                           1 tablet/pill/capsule
25828                                                            <NA>
25830                                                            <NA>
25837                                                            puff
25846                                                            dose
25884                                             tablet/pill/capsule
25887                                             tablet/pill/capsule
25888                                             tablet/pill/capsule
25919                                                            <NA>
25936                                                            <NA>
25937                                                            <NA>
25939                                             tablet/pill/capsule
25940                                             tablet/pill/capsule
25941                                                            <NA>
25943                                                            <NA>
25948                                                            <NA>
25949                                             tablet/pill/capsule
25950                                             tablet/pill/capsule
25951                                                            <NA>
25953                                                            <NA>
25954                                                            <NA>
25964                                                            <NA>
25965                                                            <NA>
25966                                                            <NA>
25967                                                            <NA>
25981                                                            <NA>
25983                                                            <NA>
25985                                                 based on weight
25986                                                 based on weight
25998                                                            <NA>
26004                                                            <NA>
26022                                                            <NA>
26024                                             tablet/pill/capsule
26027                                                            <NA>
26031                                             tablet/pill/capsule
26033                                             tablet/pill/capsule
26037                                             tablet/pill/capsule
26039                                             tablet/pill/capsule
26047                                             tablet/pill/capsule
26048                                             tablet/pill/capsule
26050                                             tablet/pill/capsule
26054                                             tablet/pill/capsule
26056                                             tablet/pill/capsule
26064                                                  1 pack/package
26075                                                            <NA>
26078                                                            <NA>
26084                                                            <NA>
26085                                                            <NA>
26093                                                           spray
26114                                                 based on weight
26115                                                         5 drops
26127                                                    small amount
26128                                                    small amount
26129                                                    small amount
26133                                                    small amount
26134                                                    small amount
26138                                                            <NA>
26139                                                  shampoo/mousse
26141                                                            dose
26148                                                 based on weight
26151                                                    small amount
26152                                                    small amount
26156                                             tablet/pill/capsule
26157                                                     bottle/vial
26158                                                            <NA>
26159                                                            <NA>
26165                                                    small amount
26166                                                    small amount
26184                                                 0.25 inch strip
26187                                                  0.5 inch strip
26190                                                  shampoo/mousse
26192                                                            dose
26197                                                            <NA>
26199                                                 based on weight
26203                                             tablet/pill/capsule
26204                                                    small amount
26207                                                    small amount
26208                                                     bottle/vial
26211                                                            <NA>
26212                                                            <NA>
26214                                                    small amount
26215                                                     bottle/vial
26227                                                            <NA>
26229                                                            <NA>
26238                                        based on weight (60 lbs)
26239                                             tablet/pill/capsule
26258                                                            <NA>
26264                                                            <NA>
26265                                                            <NA>
26278                                                            <NA>
26279                                             tablet/pill/capsule
26280                                                            <NA>
26281                                             tablet/pill/capsule
26282                                             tablet/pill/capsule
26287                                                            dose
26295                                             tablet/pill/capsule
26300                                                            <NA>
26307                                                           mg/kg
26315                                                 based on weight
26336                                                            <NA>
26337                                                            <NA>
26355                                                  shampoo/mousse
26375                                                 based on weight
26380                                                          1 tube
26386                                                  114 mg, 136 mg
26387                                                            <NA>
26391                                                            <NA>
26393                                                           spray
26395                                                            <NA>
26399                                                            <NA>
26400                                                            <NA>
26401                                                            <NA>
26433                                                            <NA>
26454                                                            <NA>
26464                                                            dose
26471                                                            <NA>
26473                                                            <NA>
26475                                             tablet/pill/capsule
26476                                             tablet/pill/capsule
26488                                             tablet/pill/capsule
26489                                             tablet/pill/capsule
26490                                             tablet/pill/capsule
26502                                                    small amount
26505                                                       as needed
26517                                                 based on weight
26518                                                 based on weight
26519                                                 based on weight
26520                                             tablet/pill/capsule
26521                                                            <NA>
26522                                             tablet/pill/capsule
26534                                                            <NA>
26543                                                 based on weight
26544                                                 based on weight
26546                                                 based on weight
26551                                                            <NA>
26553                                                            <NA>
26568                                                 based on weight
26574                                                 based on weight
26583                                                            <NA>
26590                                                     as directed
26591                                                            dose
26592                                                            dose
26594                                             tablet/pill/capsule
26610                                                            <NA>
26611                                             tablet/pill/capsule
26615                                             tablet/pill/capsule
26629                                                 based on weight
26631                                                 based on weight
26637                                                     application
26638                                    based on weight (50-100 lbs)
26643                                                            <NA>
26644                                                               %
26645                                                 based on weight
26647                                                            <NA>
26650                                                 based on weight
26651                                                 based on weight
26652                                           1 tablet/pill/capsule
26654                                                            <NA>
26655                                                            <NA>
26662                                             tablet/pill/capsule
26663                                             tablet/pill/capsule
26668                                                     bottle/vial
26669                                                 based on weight
26670                                                          collar
26673                                                            <NA>
26675                                                            <NA>
26676                                                            dose
26677                                                            <NA>
26680                                                            <NA>
26681                                                            <NA>
26682                                             tablet/pill/capsule
26683                                             tablet/pill/capsule
26684                                           1 tablet/pill/capsule
26685                                           1 tablet/pill/capsule
26694                                                            <NA>
26720                                                            <NA>
26721                                                            <NA>
26722                                                 based on weight
26723                                                            <NA>
26724                                                            <NA>
26726                                             tablet/pill/capsule
26734                                             tablet/pill/capsule
26735                                             tablet/pill/capsule
26736                                                            <NA>
26738                                                            <NA>
26740                                                            <NA>
26742                                                            <NA>
26744                                                            <NA>
26745                                                            <NA>
26747                                                            <NA>
26749                                                            <NA>
26750                                                     combination
26760                                           1 tablet/pill/capsule
26769                                             tablet/pill/capsule
26780                                           1 tablet/pill/capsule
26803                                                            <NA>
26823                                                            <NA>
26825                                                            <NA>
26826                                                            <NA>
26827                                                            <NA>
26828                                                            <NA>
26829                                                            <NA>
26830                                                            <NA>
26831                                                            <NA>
26833                                                            <NA>
26837                                                  1 pack/package
26839                                                          powder
26840                                             tablet/pill/capsule
26841                                                            <NA>
26842                                             tablet/pill/capsule
26843                                                    pack/package
26844                                                            <NA>
26846                                             tablet/pill/capsule
26847                                                            <NA>
26848                                                          powder
26849                                             tablet/pill/capsule
26850                                                         monthly
26851                                                          powder
26852                                                            <NA>
26853                                                            <NA>
26861                                                 based on weight
26862                                                            <NA>
26863                                                            <NA>
26864                                                            <NA>
26865                                                            <NA>
26867                                                     application
26868                                             tablet/pill/capsule
26869                                             tablet/pill/capsule
26870                                                            <NA>
26871                                                            <NA>
26872                                                            <NA>
26905                                                            <NA>
26926                                                 based on weight
26930                                                 based on weight
26931                                                 based on weight
26932                                                            <NA>
26944                                                            dose
26948                                                 based on weight
26972                                                            <NA>
26974                                                     unspecified
26975                                                 based on weight
26976                                             tablet/pill/capsule
26977                                                 based on weight
26978                                                            <NA>
26979                                    based on weight (50-100 lbs)
26980                                    based on weight (50-100 lbs)
26981                                    based on weight (50-100 lbs)
26983                                                            <NA>
26984                                     based on weight (44-88 lbs)
26986                                                            <NA>
26988                                                            <NA>
26990                                                            <NA>
26992                                                            <NA>
27020                                                     as directed
27021                                                            <NA>
27022                                                            <NA>
27030                                                            <NA>
27047                                                            <NA>
27058                                                            pump
27062                                                            <NA>
27063                                                            <NA>
27065                                             tablet/pill/capsule
27082                                                         monthly
27085                                             tablet/pill/capsule
27092                                                    pack/package
27095                                                            <NA>
27096                                                            <NA>
27100                                             tablet/pill/capsule
27117                                                     application
27118                                                     application
27124                                                    pack/package
27128                                                            <NA>
27134                                                    small amount
27136                                                 based on weight
27140                                                    small amount
27158                                                    small amount
27163                                             tablet/pill/capsule
27170                                             tablet/pill/capsule
27172                                             tablet/pill/capsule
27173                                                      1.5 scoops
27174                                             tablet/pill/capsule
27203                                                            <NA>
27212                                                            <NA>
27213                                                            <NA>
27214                                                          collar
27217                                                           spray
27219                                                    small amount
27220                                                          collar
27222                                                          powder
27223                                                           spray
27224                                                    small amount
27226                                                          collar
27228                                                            <NA>
27229                                                 based on weight
27231                                             tablet/pill/capsule
27232                                                            <NA>
27247                                                            <NA>
27257                                                 based on weight
27258                                                 based on weight
27262                                                            <NA>
27265                                                            <NA>
27268                                                            <NA>
27270                                                            <NA>
27273                                                 based on weight
27274                                                 based on weight
27275                                                 based on weight
27280                                             tablet/pill/capsule
27281                                                            <NA>
27282                                                            <NA>
27285                                                 based on weight
27306                                                 based on weight
27309                                                 based on weight
27311                                                 based on weight
27315                                                            <NA>
27322                                                            pump
27333                                                            <NA>
27348                                                 based on weight
27349                                                 based on weight
27350                                                            <NA>
27358                                             tablet/pill/capsule
27360                                             tablet/pill/capsule
27361                                                            <NA>
27364                                                            <NA>
27368                                             tablet/pill/capsule
27384                                                            <NA>
27407                                                            <NA>
27413                                             tablet/pill/capsule
27414                                             tablet/pill/capsule
27421                                                            tube
27422                                             tablet/pill/capsule
27423                                                            <NA>
27425                                                    small amount
27427                                                            <NA>
27431                                                    small amount
27432                                        based on weight (50 lbs)
27434                                                            <NA>
27445                                                            <NA>
27446                                                            <NA>
27447                                             tablet/pill/capsule
27459                                                            <NA>
27465                                                      inch strip
27474                                                            <NA>
27481                                                            <NA>
27492                                             tablet/pill/capsule
27494                                                            <NA>
27500                                                            <NA>
27501                                                            <NA>
27502                                                 based on weight
27506                                           1 tablet/pill/capsule
27507                                                          1 tube
27511                                                 based on weight
27512                                                 based on weight
27523                                                 based on weight
27529                                                 based on weight
27589                                             tablet/pill/capsule
27594                                                            <NA>
27596                                                            <NA>
27598                                                            <NA>
27620                                             tablet/pill/capsule
27640                                                         monthly
27646                                                        ointment
27654                                    based on weight (60-120 lbs)
27657                        27 mg milbemycin oxime, 1620 mg spinosad
27659                                                            <NA>
27674                                                            <NA>
27697                                                    small amount
27699                                                            <NA>
27700                                                 based on weight
27701                                                 based on weight
27704                                                 based on weight
27710                                     based on weight (44-88 lbs)
27713                                                            <NA>
27714                                                            <NA>
27715                                                            <NA>
27722                                                            <NA>
27736                                                              90
27745                                                     combination
27747                                                            puff
27748                                                     combination
27750                                                     combination
27769                                                     combination
27770                                                            <NA>
27772                                                            <NA>
27776                                                            <NA>
27791                                                     combination
27794                                                     combination
27802                                                            <NA>
27824                                                     combination
27826                                                     combination
27828                                                     combination
27833                                             tablet/pill/capsule
27834                                             tablet/pill/capsule
27836                                                            <NA>
27878                                                 based on weight
27880                                                     unspecified
27886                                             tablet/pill/capsule
27895                                                 based on weight
27896                                                 based on weight
27897                                                            <NA>
27898                                                 based on weight
27899                                                            <NA>
27910                                                            <NA>
27913                                                            <NA>
27917                                                            <NA>
27921                                                            <NA>
27922                                                            <NA>
27923                                                            <NA>
27927                                                            <NA>
27929                                                    small amount
27939                                                            <NA>
27940                                                            <NA>
27941                                                            <NA>
27942                                                            <NA>
27954                                                 based on weight
27957                                                            <NA>
27958                                                            <NA>
27959                                                            <NA>
27961                                                 based on weight
27962                                                            tube
27973                                                            <NA>
27974                                                    small amount
27981                                                   1 bottle/vial
27982                                           1 tablet/pill/capsule
27992                                                            dose
27999                                                   1 bottle/vial
28000                                           1 tablet/pill/capsule
28008                                                  1 pack/package
28010                                                    pack/package
28014                                                            <NA>
28015                                                            <NA>
28016                                             tablet/pill/capsule
28018                                             tablet/pill/capsule
28023                                             tablet/pill/capsule
28024                                             tablet/pill/capsule
28025                                                    pack/package
28029                                                 based on weight
28040                                                 based on weight
28045                                                            <NA>
28046                                                     unspecified
28047                                                     unspecified
28048                                                 based on weight
28049                                                 based on weight
28087                                                            dose
28088                                                            dose
28090                                                            <NA>
28094                                                            <NA>
28096                                                            <NA>
28098                                                            <NA>
28100                                                 based on weight
28101                                                 based on weight
28102                                             tablet/pill/capsule
28103                                             tablet/pill/capsule
28104                                             tablet/pill/capsule
28105                                             tablet/pill/capsule
28106                                                            <NA>
28108                                                 based on weight
28109                                                 based on weight
28116                                                  1 pack/package
28119                                                 based on weight
28120                                             tablet/pill/capsule
28128                                                            <NA>
28130                                                     combination
28134                                             tablet/pill/capsule
28135                                           1 tablet/pill/capsule
28137                                                 based on weight
28138                                                            <NA>
28144                                                 based on weight
28154                                                            <NA>
28155                                                            <NA>
28158                                                          collar
28162                                                 based on weight
28163                                                     as directed
28164                                        based on weight (60 lbs)
28165                                                            <NA>
28166                                           1 tablet/pill/capsule
28167                                                            <NA>
28168                                                            <NA>
28174                                                        ointment
28176                                                        ointment
28246                                             tablet/pill/capsule
28260                                                        ointment
28261                     272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                             tablet/pill/capsule
28264                                                     combination
28269                                             tablet/pill/capsule
28277                                             tablet/pill/capsule
28279                                                    small amount
28307                     2 mg prednisone, 5 mg trimeprazine tartrate
28309                        27 mg milbemycin oxime, 1620 mg spinosad
28311                        460 mg lufenuron, 23 mg milbemycin oxime
28316                                                          powder
28332                                                    small amount
28333                                                     unspecified
28371                                                    pack/package
28375                                             tablet/pill/capsule
28390                                                            <NA>
28392                                             tablet/pill/capsule
28396                                                            <NA>
28397                                             tablet/pill/capsule
28398                                             tablet/pill/capsule
28399                                             tablet/pill/capsule
28400                                             tablet/pill/capsule
28401                                             tablet/pill/capsule
28404                                             tablet/pill/capsule
28407                                                            <NA>
28425                                                            <NA>
28427                                                            <NA>
28437                                                            <NA>
28448                                                            <NA>
28449                                                            <NA>
28453                                                            <NA>
28483                                           1 tablet/pill/capsule
28484                                                            <NA>
28486                                                           spray
28488                                             tablet/pill/capsule
28505                                                   5 billion cfu
28507                                                              1%
28508                                                    small amount
28516   460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28517                                                     application
28518                                                            <NA>
28519                                                            <NA>
28520                                                            <NA>
28528                                                            <NA>
28531                                                     billion cfu
28533                                                               %
28534                                                            <NA>
28535                                                            <NA>
28536                                                               %
28538                                                     billion cfu
28545                                                            <NA>
28549                                           1 tablet/pill/capsule
28552                                                 based on weight
28553                                                 based on weight
28554                                                 based on weight
28556                                                 based on weight
28557                                       based on weight (50+ lbs)
28571                                                 based on weight
28572                                                            <NA>
28573                                             tablet/pill/capsule
28574                                                          collar
28576                                             tablet/pill/capsule
28577                                                            <NA>
28580                                                      inch strip
28582                                                 based on weight
28583                                                          collar
28590                                                            <NA>
28601                                                     unspecified
28602                                                 based on weight
28605                                                          collar
28606                                                            <NA>
28610                                                            <NA>
28611                                                            <NA>
28612                                                            <NA>
28614                                                            <NA>
28621                                                            <NA>
28624                                                 syringe/pipette
28630                                    based on weight (50-100 lbs)
28631                                    based on weight (60-120 lbs)
28660                                                         2 pumps
28668                                                     combination
28673                                                            <NA>
28674                                             tablet/pill/capsule
28675                                                            tube
28681                                    based on weight (50-100 lbs)
28685                                                            <NA>
28686                                                            <NA>
28687                                                            <NA>
28693                                             tablet/pill/capsule
28694                                                   1 bottle/vial
28696                                             tablet/pill/capsule
28710                                                            <NA>
28714                                                            <NA>
28718                                                            <NA>
28719                                                            <NA>
28723                                                 based on weight
28726                                                 based on weight
28727                                                        ointment
28730                                                            <NA>
28731                                                            <NA>
28735                                                            <NA>
28736                                                            <NA>
28750                                                     unspecified
28751                                                     unspecified
28772                                                            <NA>
28773                                                            <NA>
28780                                                     combination
28806                                                 based on weight
28809                                                 based on weight
28819                                                           drops
28826                                                           spray
28829                                                            <NA>
28855                                                 based on weight
28873                                                            <NA>
28874                                                            <NA>
28882                                             tablet/pill/capsule
28883                                             tablet/pill/capsule
28884                                                            <NA>
28888                                                 based on weight
28897                                                 based on weight
28899                                                 based on weight
28904                                                 based on weight
28907                                                 based on weight
28934                                             tablet/pill/capsule
28939                                                            <NA>
28940                                                            <NA>
28941                                                        ointment
28946                                                            <NA>
28979                                                 based on weight
28980                                                 based on weight
28982                                                 based on weight
28983                                           1 tablet/pill/capsule
28986                                           1 tablet/pill/capsule
28987                                                   1 application
28999                                                            <NA>
29000                                                            tube
29007                                                            <NA>
29015                                                        ointment
29022                                                            <NA>
29023                                                            <NA>
29036                                                     application
29037                                                            <NA>
29039                                             tablet/pill/capsule
29040                                                            <NA>
29043                                                            <NA>
29050                                                           spray
29053                                                     application
29056                                    based on weight (60-120 lbs)
29060                                                     unspecified
29064                                                 based on weight
29067                                                            <NA>
29069                                                            <NA>
29070                                                      inch strip
29071                                                    small amount
29072                                                      inch strip
29073                                                      inch strip
29075                                                      inch strip
29078                                                            <NA>
29079                                                 0.25 inch strip
29080                                             tablet/pill/capsule
29081                                                      inch strip
29082                                             tablet/pill/capsule
29083                                                    pack/package
29086                                                            <NA>
29087                                                            <NA>
29091                                                            <NA>
29095                                                 based on weight
29096                                                 based on weight
29098                                                            <NA>
29099                                                            <NA>
29103                                                            <NA>
29104                                                            <NA>
29108                                                           spray
29136                                                 based on weight
29139                                                    small amount
29143                                                            <NA>
29151                                                     bottle/vial
29153                                                            <NA>
29161                                                    small amount
29166                                                     application
29184                                    based on weight (50-100 lbs)
29196                                                      inch strip
29197                                             tablet/pill/capsule
29220                                                    small amount
29232                                                            <NA>
29234                                                            <NA>
29235                                                            <NA>
29244                                                            <NA>
29245                                                            <NA>
29248                                                            <NA>
29283                                                            <NA>
29285                                                            <NA>
29291                                                           spray
29293                                             tablet/pill/capsule
29298                                                            <NA>
29313                                                            <NA>
29315                                             tablet/pill/capsule
29321                                                      inch strip
29324                                                     unspecified
29327                                                     unspecified
29328                                                 based on weight
29340                                                            <NA>
29342                                                            <NA>
29374                                                            <NA>
29375                                                            <NA>
29376                                                 based on weight
29377                                                            <NA>
29378                                                            <NA>
29379                                                            <NA>
29380                                                     unspecified
29381                                                 based on weight
29382                                                 based on weight
29383                                                 based on weight
29395                                                            <NA>
29404                                                            <NA>
29405                                                            <NA>
29406                                                            <NA>
29428                                                            pump
29438                                                    small amount
29446                                                    small amount
29447                                                    small amount
29453                                                    small amount
29469                                             tablet/pill/capsule
29470                                                          collar
29471                                                            <NA>
29479                                                 based on weight
29480                                                 based on weight
29481                                                 based on weight
29482                                                 based on weight
29483                                                 based on weight
29490                                                 based on weight
29499                                                            <NA>
29500                                                            <NA>
29501                                           1 tablet/pill/capsule
29502                                           1 tablet/pill/capsule
29504                                             tablet/pill/capsule
29505                                                            tube
29511                                           1 tablet/pill/capsule
29525                                                 based on weight
29526                                                 based on weight
29531                                             tablet/pill/capsule
29532                                                            <NA>
29533                                                            <NA>
29534                                                            <NA>
29535                                                            <NA>
29536                                             tablet/pill/capsule
29537                                                            <NA>
29538                                                            <NA>
29539                                                            <NA>
29540                                             tablet/pill/capsule
29567                                                 based on weight
29568                                                            <NA>
29572                                                            dose
29573                                             tablet/pill/capsule
29574                                                            <NA>
29575                                                            <NA>
29580                                           1 tablet/pill/capsule
29588                                                 based on weight
29608                                     based on weight (44-88 lbs)
29617                                           1 tablet/pill/capsule
29633                                                            <NA>
29662                                                            <NA>
29666                                                            <NA>
29669                                                            <NA>
29670                                                            <NA>
29678                                                            <NA>
29700                                                            <NA>
29705                                                            <NA>
29707                                                            <NA>
29709                                                            tube
29715                                                          collar
29716                                                          collar
29719                                                          collar
29720                                                            <NA>
29722                                                          collar
29724                                                            <NA>
29726                                                          collar
29734                                                            <NA>
29736                                                 based on weight
29744                                                 based on weight
29749                                                              mg
29753                                                            <NA>
29764                                                     unspecified
29765                                                     unspecified
29767                                                 based on weight
29770                                                 based on weight
29794                                                            <NA>
29798                                                            <NA>
29799                                                            <NA>
29800                                                            <NA>
29801                                                        wipe/pad
29802                                                            <NA>
29803                                                            <NA>
29822                                             tablet/pill/capsule
29823                                             tablet/pill/capsule
29824                                                            <NA>
29825                                                            <NA>
29827                                                            <NA>
29829                                                            <NA>
29831                                                            <NA>
29838                                                            <NA>
29839                                                            <NA>
29840                                                            <NA>
29847                                                            <NA>
29858                                                            <NA>
29862                                                            <NA>
29865                                                            <NA>
29880                                                            <NA>
29882                                                 based on weight
29883                                                 based on weight
29933                                     based on weight (25-50 lbs)
29940                                    based on weight (50-100 lbs)
29941                                                 based on weight
29948                                                         2 tubes
29954                                           1 tablet/pill/capsule
29955                                                          1 tube
29956                                    based on weight (50-100 lbs)
29957                                                 based on weight
29963                                                 based on weight
29964                                                 based on weight
29966                                                            <NA>
29969                                                 based on weight
29970                                                 based on weight
29978                                                            <NA>
29990                                       based on weight (55+ lbs)
29991                                                            <NA>
29993                                                            <NA>
30001                                                            <NA>
30048                                                            <NA>
30070                                                      inch strip
30075                                                    pack/package
30076                                             tablet/pill/capsule
30081                                                 based on weight
30082                                                 based on weight
30083                                                 based on weight
30099                                                 based on weight
30104                                                            <NA>
30105                                                            <NA>
30131                                                            <NA>
30132                                                            <NA>
30138                                                            <NA>
30142                                                            <NA>
30143                                                    small amount
30162                                                            <NA>
30165                                                            <NA>
30166                                                            <NA>
30169                                                    pack/package
30172                                                            <NA>
30174                                                            <NA>
30178                                                        ointment
30179                                                            <NA>
30185                     272 mcg ivermectin, 227 mg pyrantel pamoate
30191                                                            <NA>
30192                                                            <NA>
30193                                                            <NA>
30198                                                            <NA>
30211                                             tablet/pill/capsule
30212                                             tablet/pill/capsule
30214                                                            tube
30218                                           1 tablet/pill/capsule
30221                                           1 tablet/pill/capsule
30239                                                            <NA>
30241                                                            <NA>
30242                                                            <NA>
30246                                                            <NA>
30263                                           1 tablet/pill/capsule
30264                                           1 tablet/pill/capsule
30268                                           1 tablet/pill/capsule
30269                                                          1 tube
30270                                                 based on weight
30274                                                 based on weight
30277                                                 based on weight
30286                                                 based on weight
30298                                                 based on weight
30299                                                            <NA>
30300                                                            <NA>
30310                                                 based on weight
30311                                                      inch strip
30312                                                       1-2 pumps
30313                                                 based on weight
30317                                                    small amount
30319                                                    small amount
30327                                                 0.25 inch strip
30329                                                            <NA>
30337                                                           spray
30338                                                            <NA>
30344                                                 based on weight
30347                        27 mg milbemycin oxime, 1620 mg spinosad
30351                                                 based on weight
30352                                                 based on weight
30355                                                    small amount
30357                                                           spray
30360                                                    pack/package
30361                                             tablet/pill/capsule
30366                                                            <NA>
30367                                                            <NA>
30371                                                            <NA>
30372                                                 based on weight
30373                                                               1
30374                                                               1
30375                                                               1
30376                                             tablet/pill/capsule
30377                                                            <NA>
30378                                                            <NA>
30385                                                 based on weight
30387                                                     unspecified
30388                                                            <NA>
30389                                                     unspecified
30395                                                 based on weight
30396                                                 based on weight
30404                                                 based on weight
30405                                                            <NA>
30406                                                            <NA>
30418                                                            <NA>
30450                                                            <NA>
30464                                                            <NA>
30471                                                            <NA>
30479                                       based on weight (55+ lbs)
30480                     272 mcg ivermectin, 227 mg pyrantel pamoate
30483                                       based on weight (55+ lbs)
30484                                                            <NA>
30485                                                            <NA>
30492                                                            <NA>
30496                                                             50%
30515                                                            <NA>
30528                                                            <NA>
30529                                                            <NA>
30536                                                           drops
30555                                    based on weight (50-100 lbs)
30556                                                            <NA>
30590                                                 based on weight
30604                                                 based on weight
30623                                                            <NA>
30644                                                            <NA>
30685                                             tablet/pill/capsule
30689                                             tablet/pill/capsule
30692                                                    small amount
30701                                             tablet/pill/capsule
30702                                                            <NA>
30707                                                 based on weight
30708                                                 based on weight
30709                                             tablet/pill/capsule
30710                                             tablet/pill/capsule
30713                                                            <NA>
30714                                                            <NA>
30717                                                            <NA>
30753                                                 based on weight
30754                                                            <NA>
30756                                                            <NA>
30757                                                            <NA>
30764                                                            <NA>
30765                                                            <NA>
30766                                                            <NA>
30768                                                            <NA>
30769                                                            <NA>
30779                                                 based on weight
30793                                             tablet/pill/capsule
30796                                             tablet/pill/capsule
30797                                             tablet/pill/capsule
30799                                                 based on weight
30803                                                           scoop
30813                                                            <NA>
30815                                                            <NA>
30816                                                            <NA>
30817                                                            <NA>
30819                                                            tube
30820                                             tablet/pill/capsule
30821                                                          250 mg
30822                                             tablet/pill/capsule
30823                                                 syringe/pipette
30824                                                 syringe/pipette
30826                                             tablet/pill/capsule
30833                                             tablet/pill/capsule
30834                                                            tube
30840                                                            <NA>
30844                                                     combination
30876                                                            <NA>
30877                                                            <NA>
30901                                                      inch strip
30909                                                            <NA>
30917                                                           spray
30920                                                            <NA>
30936                                                            <NA>
30943                                                            <NA>
30945                                                            <NA>
30947                                             tablet/pill/capsule
30948                                             tablet/pill/capsule
30949                                                            <NA>
30953                                                            <NA>
30961                                                            <NA>
30962                                             tablet/pill/capsule
30963                                                            <NA>
30998                                                 based on weight
31000                                                          1 tube
31001                                             tablet/pill/capsule
31003                                                          1 tube
31004                                                 based on weight
31010                                    based on weight (50-100 lbs)
31011                                       based on weight (55+ lbs)
31022                                                 based on weight
31023                                                 based on weight
31034                                                            <NA>
31043                                                 based on weight
31046                                           1 tablet/pill/capsule
31089                                                            <NA>
31094                                             tablet/pill/capsule
31095                                             tablet/pill/capsule
31096                                             tablet/pill/capsule
31105                                                 based on weight
31132                                                    small amount
31133                                             tablet/pill/capsule
31134                                             tablet/pill/capsule
31135                                             tablet/pill/capsule
31139                                                            <NA>
31148                                                            <NA>
31149                                                            <NA>
31152                                                            <NA>
31154                                                            <NA>
31183                                                            <NA>
31186                                                            <NA>
31195                                                            <NA>
31196                                                            <NA>
31197                                                    pack/package
31198                                                            <NA>
31199                                             tablet/pill/capsule
31203                                                            <NA>
31209                                                            <NA>
31228                                                               %
31232                                                               %
31234                                                               %
31247                                                            <NA>
31248                                                               %
31249                                                            <NA>
31250                                                               %
31260                                                 based on weight
31263                                                 based on weight
31265                                                            <NA>
31268                                                        inhalant
31297                                                            <NA>
31299                                                            <NA>
31300                                                            <NA>
31301                                                            <NA>
31303                                                            <NA>
31307                                                            tube
31308                                             tablet/pill/capsule
31309                                                       2.6 mg/lb
31317                                                          cup(s)
31322                                                            <NA>
31328                                                            <NA>
31350                                                            <NA>
31353                                                            <NA>
31356                                                    small amount
31357                                           1 tablet/pill/capsule
31358                                           1 tablet/pill/capsule
31359                                           1 tablet/pill/capsule
31360                                           1 tablet/pill/capsule
31361                                                 based on weight
31365                                           1 tablet/pill/capsule
31366                                           1 tablet/pill/capsule
31367                                                            tube
31369                                                        wipe/pad
31370                                                     application
31371                                                            <NA>
31373                                                            <NA>
31374                                                            <NA>
31375                                                 based on weight
31383                                           1 tablet/pill/capsule
31384                                           1 tablet/pill/capsule
31385                                           1 tablet/pill/capsule
31386                                           1 tablet/pill/capsule
31389                                           1 tablet/pill/capsule
31408                     272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                            <NA>
31434                                                            <NA>
31437                                        2 tablets/pills/capsules
31438                                                    small amount
31439                                                            <NA>
31440                                                            <NA>
31441                                                            dose
31446                                                    small amount
31447                                                    small amount
31449                                             tablet/pill/capsule
31450                                             tablet/pill/capsule
31452                                                            <NA>
31457                                                            <NA>
31463                                                            <NA>
31471                                             tablet/pill/capsule
31502                                                 based on weight
31503                                                 based on weight
31504                                                 based on weight
31506                                             tablet/pill/capsule
31508                                                            dose
31528                                                 based on weight
31529                                                 based on weight
31531                                             tablet/pill/capsule
31539                                                               %
31542                                                            <NA>
31548                                                            <NA>
31551                                                            <NA>
31552                                                            <NA>
31553                                                            <NA>
31602                                    based on weight (50-100 lbs)
31611                                                    small amount
31612                                                    small amount
31616                                           1 tablet/pill/capsule
31617                                                            dose
31618                                                            dose
31619                                           1 tablet/pill/capsule
31637                                           1 tablet/pill/capsule
31640                                                    small amount
31643                                             tablet/pill/capsule
31644                                                            <NA>
31645                                                            <NA>
31646                                           1 tablet/pill/capsule
31647                                           1 tablet/pill/capsule
31653                                                            <NA>
31655                                                            <NA>
31656                                                            <NA>
31657                                                            <NA>
31665                                             tablet/pill/capsule
31666                                             tablet/pill/capsule
31678                                                 based on weight
31680                                             tablet/pill/capsule
31688                                                 based on weight
31689                                                 based on weight
31696                                     based on weight (44-88 lbs)
31707                                             tablet/pill/capsule
31713                     272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                            <NA>
31725                                                            <NA>
31726                                                          1 tube
31730                                                            <NA>
31731                                                            <NA>
31734                                             tablet/pill/capsule
31735                                                            <NA>
31736                                                    pack/package
31737                                                          powder
31742                                                            <NA>
31747                                             tablet/pill/capsule
31748                                                            <NA>
31760                                             tablet/pill/capsule
31761                                                            <NA>
31762                                                 based on weight
31765                                    based on weight (50-100 lbs)
31766                                     based on weight (44-88 lbs)
31768                                                            <NA>
31769                                                            <NA>
31771                                                            <NA>
31773                                                            <NA>
31774                                                            <NA>
31777                                             tablet/pill/capsule
31780                                                            <NA>
31781                                                            <NA>
31798                                                 based on weight
31803                                                 based on weight
31804                                           1 tablet/pill/capsule
31807                                                          1 tube
31808                                           1 tablet/pill/capsule
31810                                    based on weight (50-100 lbs)
31819                                    based on weight (50-100 lbs)
31824                                    based on weight (50-100 lbs)
31826                                                    small amount
31833                                                            <NA>
31834                                                           spray
31836                                                            <NA>
31837                                                 0.25 inch strip
31840                                                 based on weight
31841                                                            <NA>
31843                                                            <NA>
31844                                                            <NA>
31846                                                          collar
31847                        460 mg lufenuron, 23 mg milbemycin oxime
31849                                                            1 ml
31850                                                            <NA>
31853                                                            <NA>
31861                                                            <NA>
31864                                                            <NA>
31866                                                            <NA>
31868                                                 based on weight
31869                                           1 tablet/pill/capsule
31874                                                 based on weight
31876                                                    small amount
31880                                                            <NA>
31888                                                     unspecified
31891                                                 based on weight
31892                                                 based on weight
31895                                                       per month
31896                                                       per month
31898                                           1 tablet/pill/capsule
31907                                                            <NA>
31908                                                            <NA>
31909                                           1 tablet/pill/capsule
31911                                             tablet/pill/capsule
31916                                                 based on weight
31937                                                            <NA>
31938                                                            <NA>
31939                                                            <NA>
31940                                                            <NA>
31941                                                            <NA>
31942                                           1 tablet/pill/capsule
31945                                                            <NA>
31946                                                            <NA>
31947                                                            <NA>
31948                                                            <NA>
31953                                                            <NA>
31954                                             tablet/pill/capsule
31955                                             tablet/pill/capsule
31968                                                            <NA>
31985                                                            <NA>
31990                                                 based on weight
32002                                                            <NA>
32006                                                            <NA>
32015                                                            <NA>
32016                                             tablet/pill/capsule
32020                                                            <NA>
32025                                                     unspecified
32032                                                            <NA>
32035                                                            <NA>
32040                                             tablet/pill/capsule
32046                                                            <NA>
32053                                           1 tablet/pill/capsule
32054                                                   1 application
32055                                                            <NA>
32056                                           1 tablet/pill/capsule
32057                                           1 tablet/pill/capsule
32058                                           1 tablet/pill/capsule
32059                                             tablet/pill/capsule
32060                                             tablet/pill/capsule
32074                                                    small amount
32076                                                 based on weight
32079                                                 based on weight
32080                                                 based on weight
32084                                                      inch strip
32095                                             tablet/pill/capsule
32097                                             tablet/pill/capsule
32098                                             tablet/pill/capsule
32099                                             tablet/pill/capsule
32100                                                 based on weight
32101                                                 based on weight
32102                                             tablet/pill/capsule
32103                                             tablet/pill/capsule
32104                                             tablet/pill/capsule
32105                                                 based on weight
32106                                                 based on weight
32108                                                 based on weight
32114                                                               %
32116                                                               %
32119                                                            <NA>
32121                                                         monthly
32122                                                         monthly
32123                                                            <NA>
32128                                                            <NA>
32129                                                            <NA>
32132                                                            <NA>
32133                                        based on weight (74 lbs)
32134                                        based on weight (74 lbs)
32168                                                          powder
32171                                                            <NA>
32175                                                            <NA>
32179                                           1 tablet/pill/capsule
32180                                           1 tablet/pill/capsule
32183                                                            <NA>
32184                                                            <NA>
32187                                                            <NA>
32196                                                          powder
32222                                                 based on weight
32231                                    based on weight (50-100 lbs)
32232                                     based on weight (44-88 lbs)
32233                                           1 tablet/pill/capsule
32234                                           1 tablet/pill/capsule
32236                                    based on weight (50-100 lbs)
32237                                     based on weight (24-60 lbs)
32266                                                            puff
32276                                                            <NA>
32290                                                        inhalant
32295                                             tablet/pill/capsule
32296                                             tablet/pill/capsule
32297                                                            <NA>
32310                                                           spray
32312                                             tablet/pill/capsule
32313                                             tablet/pill/capsule
32315                                                      inch strip
32320                                                            <NA>
32343                                                      inch strip
32358                                                            <NA>
32359                                                            <NA>
32360                                                            <NA>
32362                                                            <NA>
32363                                                     unspecified
32370                                                        ointment
32390                                                            <NA>
32393                                                 based on weight
32394                                                            <NA>
32417                                    based on weight (50-100 lbs)
32425                                                            <NA>
32426                                                            <NA>
32427                                                            <NA>
32445                                                            <NA>
32447                                                            <NA>
32448                                                            <NA>
32449                                                            <NA>
32460                                                            <NA>
32463                                             tablet/pill/capsule
32464                                             tablet/pill/capsule
32466                                           1 tablet/pill/capsule
32467                                           1 tablet/pill/capsule
32477                                             tablet/pill/capsule
32478                                             tablet/pill/capsule
32504                                             tablet/pill/capsule
32505                                                     application
32507                                                            <NA>
32509                                             tablet/pill/capsule
32510                                                    small amount
32511                                    based on weight (50-100 lbs)
32512                                       based on weight (56+ lbs)
32513                                                    small amount
32520                                                            <NA>
32529                                                            dose
32530                                    based on weight (50-100 lbs)
32535                                                 based on weight
32536                                                 based on weight
32538                                                 moderate amount
32542                                                            <NA>
32557                     272 mcg ivermectin, 227 mg pyrantel pamoate
32558                                                 based on weight
32561                                                     as directed
32562                                                     as directed
32575                                                            <NA>
32576                                                            <NA>
32629                                                     unspecified
32631                                                 based on weight
32633                                                     unspecified
32635                                                 based on weight
32642                                    based on weight (50-100 lbs)
32643                                    based on weight (50-100 lbs)
32652                                                            <NA>
32654                                                     unspecified
32664                                                 based on weight
32670                                                            <NA>
32672                                                  shampoo/mousse
32673                                                     combination
32678                                                            <NA>
32680                                                            <NA>
32682                                                            <NA>
32685                                                            <NA>
32694                                                           spray
32698                                             tablet/pill/capsule
32703                                    based on weight (60-120 lbs)
32726                                                            <NA>
32737                                                            <NA>
32739                                             tablet/pill/capsule
32742                                             tablet/pill/capsule
32743                                             tablet/pill/capsule
32750                                           1 tablet/pill/capsule
32751                                           1 tablet/pill/capsule
32767                                                     unspecified
32768                                             tablet/pill/capsule
32769                                                            <NA>
32770                                             tablet/pill/capsule
32777                                                            <NA>
32798                                                     bottle/vial
32815                                                          powder
32829                                                 syringe/pipette
32841                                                            <NA>
32844                                                            <NA>
32849                                             tablet/pill/capsule
32850                                             tablet/pill/capsule
32856                                     based on weight (44-88 lbs)
32857                                                            <NA>
32858                                                            <NA>
32859                                                            <NA>
32862                                                            <NA>
32863                                                            <NA>
32869                                                     unspecified
32870                                                            <NA>
32871                                                            <NA>
32879                                             tablet/pill/capsule
32883                                             tablet/pill/capsule
32884                                                            <NA>
32887                                                 0.25 inch strip
32888                                                    small amount
32903                                                            <NA>
32923                                                     unspecified
32930   460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32937                                                            <NA>
32938                                             tablet/pill/capsule
32940                                                     application
32942                                             tablet/pill/capsule
32943                                             tablet/pill/capsule
32944                                             tablet/pill/capsule
32949                                                     application
32950                                                            <NA>
32951                                           1 tablet/pill/capsule
32952                                           1 tablet/pill/capsule
32954                                                            <NA>
32955                                                            <NA>
32956                                                            <NA>
32964                                                            <NA>
32965                                                            <NA>
32999                                                 based on weight
33004                                                 based on weight
33008                                                     bottle/vial
33009                                             tablet/pill/capsule
33010                                                            <NA>
33011                                                            <NA>
33015                                                 based on weight
33023                                                    pack/package
33043                                                            <NA>
33047                                                            <NA>
33066                                                     bottle/vial
33068                                                            <NA>
33073                                                            <NA>
33078                                                 based on weight
33081                                             tablet/pill/capsule
33085                                                     bottle/vial
33086                                                            <NA>
33087                                                            <NA>
33088                                                            <NA>
33089                                                            <NA>
33090                                                            <NA>
33091                                                            <NA>
33092                                             tablet/pill/capsule
33096                                             tablet/pill/capsule
33107                                                            <NA>
33110                                                 based on weight
33113                                                 based on weight
33124                                                           spray
33126                                                           spray
33128                                                            dose
33132                                    based on weight (60-120 lbs)
33133                                    based on weight (50-100 lbs)
33138                                           1 tablet/pill/capsule
33157                                                            <NA>
33159                                                            <NA>
33166                                                 based on weight
33187                                                            <NA>
33190                                                            <NA>
33191                                                    small amount
33209                                                           spray
33211                                                 based on weight
33220                                             tablet/pill/capsule
33222                                                 based on weight
33226                                                            <NA>
33227                                                    pack/package
33229                                                          1 tube
33230                                             tablet/pill/capsule
33233                                                    pack/package
33235                                           1 tablet/pill/capsule
33236                                                            <NA>
33239                                                            <NA>
33242                                                 based on weight
33271                                                            <NA>
33286                                                            <NA>
33289                                             tablet/pill/capsule
33292                                             tablet/pill/capsule
33293                                                            <NA>
33318                                                         2.68 ml
33333                                                            <NA>
33335                                                            <NA>
33336                                             tablet/pill/capsule
33347                                     based on weight (70-80 lbs)
33354                                                            <NA>
33355                                                            <NA>
33358                                    based on weight (50-100 lbs)
33363                                             tablet/pill/capsule
33364                                             tablet/pill/capsule
33370                                                            <NA>
33374                                                            <NA>
33375                                                            <NA>
33376                                                            <NA>
33377                                                            <NA>
33385                                                            <NA>
33387                                                            <NA>
33389                                                            <NA>
33410                                             tablet/pill/capsule
33411                                                          collar
33412                                             tablet/pill/capsule
33414                                                          collar
33456                                                            <NA>
33468                                                     bottle/vial
33471                                                            <NA>
33479                                    based on weight (60-120 lbs)
33480                                                         monthly
33482                                                            <NA>
33489                                                     unspecified
33490                                                            <NA>
33491                                                            <NA>
33492                                                            <NA>
33493                                                            <NA>
33497                                           1 tablet/pill/capsule
33499                                                            <NA>
33500                                           1 tablet/pill/capsule
33539                                                          collar
33541                                                          collar
33542                                                            <NA>
33543                                                          collar
33544                                                          collar
33576                                                            <NA>
33580                                             tablet/pill/capsule
33581                                                     application
33582                                                            <NA>
33583                                                            <NA>
33590                                    based on weight (50-100 lbs)
33591                                             tablet/pill/capsule
33592                     23 mg milbemycin oxime, 228 mg praziquantel
33614                                                            <NA>
33641                                    based on weight (50-100 lbs)
33644                                                 based on weight
33645                                                 based on weight
33647                                                            <NA>
33649                                             tablet/pill/capsule
33651                                             tablet/pill/capsule
33655                                             tablet/pill/capsule
33683                                             tablet/pill/capsule
33684                                                     unspecified
33690                                                            <NA>
33696                                                     combination
33702                                                        3 scoops
33706                                                            <NA>
33714                                                            dose
33717                                             tablet/pill/capsule
33722                                                     application
33723                                                            dose
33724                                                 based on weight
33725                                                 based on weight
33737                                                     as directed
33739                                    based on weight (60-120 lbs)
33740                                    based on weight (60-120 lbs)
33756                                                            <NA>
33767                                                            <NA>
33797                                                 based on weight
33798                                                 based on weight
33804                                                            dose
33805                                                            dose
33815                                                            <NA>
33824                                                            <NA>
33828                                                            <NA>
33844                                                            <NA>
33868                                                 based on weight
33869                                                            <NA>
33870                                                 based on weight
33890                                                            <NA>
33894                                                    small amount
33901                                                     unspecified
33907                                                           spray
33911                                                     application
33916                                                            <NA>
33919                                                    small amount
33927                                                            tube
33939                                                        ointment
33940                                                          powder
33987                                             tablet/pill/capsule
33991                                                    small amount
33992                                             tablet/pill/capsule
33993                                             tablet/pill/capsule
33994                                                            <NA>
33995                                             tablet/pill/capsule
33998                                                       as needed
34000                                             tablet/pill/capsule
34002                                             tablet/pill/capsule
34003                                                            <NA>
34005                                             tablet/pill/capsule
34011                                                            <NA>
34012                                                            <NA>
34014                                                     unspecified
34016                                                     unspecified
34022                                                     unspecified
34024                                                     unspecified
34029                                                     unspecified
34030                                                 based on weight
34043                                                 based on weight
34046                                                            <NA>
34048                                             tablet/pill/capsule
34049                                                          collar
34051                                                            <NA>
34053                                             tablet/pill/capsule
34054                                                          collar
34069                                                            <NA>
34073                                                            <NA>
34074                                                            <NA>
34075                                                            <NA>
34077                                                 based on weight
34087                                           1 tablet/pill/capsule
34090                                                    small amount
34091                                           1 tablet/pill/capsule
34093                                                          collar
34094                                                            <NA>
34095                                                            <NA>
34096                                                 based on weight
34107                                                            <NA>
34108                                                            <NA>
34109                                                    pack/package
34111                                                            <NA>
34113                                                            <NA>
34125                                                          1 tube
34126                                           1 tablet/pill/capsule
34128                                                1-2 applications
34132                                    based on weight (50-100 lbs)
34134                                             tablet/pill/capsule
34135                                                   1 application
34138                                                    pack/package
34140                                                            <NA>
34147                                             tablet/pill/capsule
34148                                             tablet/pill/capsule
34152                                                          powder
34155                                                     unspecified
34156                                                            <NA>
34157                                                            <NA>
34161                                                            <NA>
34227                                                           scoop
34230                                                            <NA>
34231                                                            <NA>
34232                                                            <NA>
34233                                                            <NA>
34234                                                            <NA>
34235                                                            <NA>
34238                                             tablet/pill/capsule
34239                                                            <NA>
34240                                                            <NA>
34241                                                            <NA>
34242                                                            <NA>
34243                                                            <NA>
34246                                                            <NA>
34247                                                            <NA>
34249                                                 based on weight
34254                                           1 tablet/pill/capsule
34260                                                            <NA>
34262                                                            <NA>
34264                                                            <NA>
34267                                                            <NA>
34268                                                    small amount
34269                                                    small amount
34327                                                            <NA>
34332                                                            <NA>
34333                                                    small amount
34334                                                          1 tube
34336                                                    small amount
34340                                                            dose
34342                                                          collar
34343                                                           spray
34345                                                 based on weight
34359                                                 based on weight
34360                                                 based on weight
34361                                                            <NA>
34362                                                            <NA>
34367                                                          powder
34374                                             tablet/pill/capsule
34375                                             tablet/pill/capsule
34378                                                            <NA>
34379                                                            <NA>
34388                                                    small amount
34401                                                 based on weight
34403                                                 based on weight
34409                                                            <NA>
34410                                                            <NA>
34418                                                 based on weight
34419                                                 based on weight
34430                                                            <NA>
34434                                                 based on weight
34435                                                            <NA>
34436                                                            <NA>
34467                                                            <NA>
34474                                                            <NA>
34493                                                            <NA>
34513                                                 based on weight
34536                                           1 tablet/pill/capsule
34545                                                            <NA>
34548                                                            <NA>
34579                                                            <NA>
34583                                           1 tablet/pill/capsule
34584                                                            <NA>
34587                                                       as needed
34588                                                            <NA>
34593                                                            <NA>
34606                                                            <NA>
34608                                             tablet/pill/capsule
34609                                                            1 ml
34617                                                     bottle/vial
34624                                                            <NA>
34629                                     based on weight (40-60 lbs)
34630                                                       as needed
34635                                                        wipe/pad
34636                                                 based on weight
34637                                                     unspecified
34638                                                        wipe/pad
34640                                                 based on weight
34642                                             tablet/pill/capsule
34648                                                            <NA>
34669                                             tablet/pill/capsule
34671                                           1 tablet/pill/capsule
34672                                                           spray
34673                                                        ointment
34674                                                        ointment
34675                                                            <NA>
34676                                                            <NA>
34677                                                            <NA>
34678                                                           spray
34680                                                            <NA>
34697                                                 based on weight
34704                                                     unspecified
34705                                                            <NA>
34706                                                            <NA>
34708                                                     unspecified
34709                                                     unspecified
34710                                                        biweekly
34727                                                            <NA>
34728                                                            <NA>
34729                                                            <NA>
34730                                                 based on weight
34733                                             tablet/pill/capsule
34734                                             tablet/pill/capsule
34741                                                            <NA>
34744                                                            <NA>
34747                                             tablet/pill/capsule
34750                                                            <NA>
34763                                                 based on weight
34764                                                 based on weight
34766                                                            <NA>
34787                                             tablet/pill/capsule
34788                                                    small amount
34789                                                            <NA>
34791                                                 based on weight
34797                                                              mg
34798                                                              mg
34799                                                 based on weight
34811                                             tablet/pill/capsule
34813                                                     unspecified
34828                                                 based on weight
34832                                                            <NA>
34833                                             tablet/pill/capsule
34845                                             tablet/pill/capsule
34874                                                            <NA>
34875                                                            <NA>
34887                                             tablet/pill/capsule
34888                                                          1 tube
34889                                                 based on weight
34890                                                 based on weight
34891                                           1 tablet/pill/capsule
34892                                               1 syringe/pipette
34900                                                            <NA>
34901                                                            <NA>
34902                                                            <NA>
34903                                                            <NA>
34904                                                            <NA>
34905                                                 based on weight
34906                                                 based on weight
34907                                                            <NA>
34908                                                            <NA>
34917                                                            <NA>
34918                                                            <NA>
34920                                                            <NA>
34922                                                            <NA>
34923                                                            <NA>
34924                                                            <NA>
34953                                                            <NA>
34955                                                            <NA>
34956                                                            <NA>
34966                                                 based on weight
34979                                                               1
34981                                             tablet/pill/capsule
34982                                             tablet/pill/capsule
34983                                             tablet/pill/capsule
34991                                                            <NA>
34992                                                 based on weight
34996                                                 based on weight
35002                                                            <NA>
35004                                                            <NA>
35014                                             tablet/pill/capsule
35025                                                 based on weight
35027                                                          cup(s)
35034                                                            <NA>
35049                                                    small amount
35069                                             tablet/pill/capsule
35074                                                            <NA>
35094                                                 based on weight
35103                                                   1 application
35109                                                            <NA>
35110                                                 based on weight
35125                                             tablet/pill/capsule
35132                                             tablet/pill/capsule
35134                                                        ointment
35143   460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
35144                                                    small amount
35145                                                     unspecified
35146                                             tablet/pill/capsule
35147                                                 based on weight
35148                                                     unspecified
35149                                                            <NA>
35150                                                 based on weight
35152                                                 based on weight
35153                                                 based on weight
35154                                             tablet/pill/capsule
35160                                                            <NA>
35176                                                            <NA>
35181                                             tablet/pill/capsule
35182                                                            <NA>
35183                                                            <NA>
35189                                                 based on weight
35203                                             tablet/pill/capsule
35204                                                     bottle/vial
35205                                                    small amount
35207                                                            <NA>
35212                                                 based on weight
35214                                                 based on weight
35232                                                            <NA>
35245                                                           drops
35252                                                            <NA>
35262                                                            <NA>
35264                                                            <NA>
35278                                             tablet/pill/capsule
35279                                             tablet/pill/capsule
35283                                             tablet/pill/capsule
35284                                             tablet/pill/capsule
35291                                           1 tablet/pill/capsule
35299                                                     bottle/vial
35300                                             tablet/pill/capsule
35314                                                 0.25 inch strip
35315                                                            <NA>
35354                                                            <NA>
35382                                             tablet/pill/capsule
35388                                                            <NA>
35393                                                     unspecified
35399                                             tablet/pill/capsule
35400                                                            <NA>
35401                                             tablet/pill/capsule
35404                                             tablet/pill/capsule
35405                                             tablet/pill/capsule
35406                                           1 tablet/pill/capsule
35414                                                            <NA>
35417                                                            <NA>
35420                                                            <NA>
35421                                                            <NA>
35422                        460 mg lufenuron, 23 mg milbemycin oxime
35423                                    based on weight (50-100 lbs)
35424                                    based on weight (88-123 lbs)
35425                                                            <NA>
35432                                                            <NA>
35434                                                            <NA>
35443                                                            <NA>
35450                                                            <NA>
35453                                             tablet/pill/capsule
35454                                             tablet/pill/capsule
35495                                    based on weight (55-100 lbs)
35496                                              272 mcg ivermectin
35497                                                            <NA>
35499                                                            <NA>
35501                                                            <NA>
35504                                                            <NA>
35506                                                            <NA>
35509                                                 0.25 inch strip
35513                                                            <NA>
35525                                                 based on weight
35526                                                 based on weight
35528                                                            <NA>
35539                                                            <NA>
35560                                             tablet/pill/capsule
35561                                             tablet/pill/capsule
35562                                             tablet/pill/capsule
35563                                             tablet/pill/capsule
35565                                                            <NA>
35566                                                            <NA>
35569                                                            <NA>
35571                                                 based on weight
35572                                                 based on weight
35573                                                 based on weight
35574                                                            <NA>
35575                                                 based on weight
35576                                                            <NA>
35577                                                            <NA>
35578                                                 based on weight
35579                                                 based on weight
35580                                                            <NA>
35581                                                 based on weight
35582                                                 based on weight
35593                                                 based on weight
35598                                                 based on weight
35605                                                           spray
35620                                                            <NA>
35621                                                   1 bottle/vial
35624                                                            <NA>
35626                                                          powder
35628                                                            <NA>
35633                                             tablet/pill/capsule
35639                                             tablet/pill/capsule
35641                                             tablet/pill/capsule
35642                                                     application
35645                                                            <NA>
35656                                                     unspecified
35659                                                            <NA>
35662                                             tablet/pill/capsule
35664                                                 based on weight
35665                                                 based on weight
35668                                                            <NA>
35673                                                           spray
35674                                                            <NA>
35696                                                            <NA>
35697                                             tablet/pill/capsule
35699                                           1 tablet/pill/capsule
35721                                                 based on weight
35722                                                     unspecified
35725                                                            <NA>
35727                                                            <NA>
35740                                                            <NA>
35743                                                            <NA>
35748                                                            <NA>
35756                                                            <NA>
35757                                                            <NA>
35758                                                            <NA>
35762                                                           daily
35768                                                            tube
35770                                                            tube
35771                                             tablet/pill/capsule
35772                                                     unspecified
35773                                                    pack/package
35774                                             tablet/pill/capsule
35775                                                 based on weight
35777                                                     unspecified
35778                                                     unspecified
35784                     272 mcg ivermectin, 227 mg pyrantel pamoate
35786                                                     application
35791                                                            <NA>
35792                                                            <NA>
35793                                                            <NA>
35808                                                            <NA>
35809                                                            <NA>
35810                                                            <NA>
35812                                    based on weight (60-120 lbs)
35820                                             tablet/pill/capsule
35821                                                     application
35831                                                            <NA>
35835                                                            <NA>
35850                                           1 tablet/pill/capsule
35855                                             tablet/pill/capsule
35858                                                            <NA>
35859                                                            <NA>
35903                                                            <NA>
35905                                                            <NA>
35907                                                            <NA>
35908                                                            <NA>
35931                                                            <NA>
35954                                                 based on weight
35955                                             tablet/pill/capsule
35963                                                    small amount
35965                                                            <NA>
35969                                                       as needed
35973                                                     combination
35982                                                 based on weight
35983                                                 based on weight
36019                                                 based on weight
36021                                                 based on weight
36023                                                    small amount
36030                                                            <NA>
36042                                             tablet/pill/capsule
36043                                                            <NA>
36044                                             tablet/pill/capsule
36065                                           1 tablet/pill/capsule
36069                                                 based on weight
36078                                                            <NA>
36081                                                            <NA>
36082                                                            <NA>
36084                                                     unspecified
36108                                                            <NA>
36110                                                            <NA>
36112                                                 based on weight
36113                                                            <NA>
36115                                                 based on weight
36134                                                            <NA>
36137                                                            pump
36144                                                   1 bottle/vial
36145                                           1 tablet/pill/capsule
36150                                                 based on weight
36153                                                            <NA>
36156                                             tablet/pill/capsule
36159                                                 based on weight
36171                                                            <NA>
36191                                             tablet/pill/capsule
36192                                                            <NA>
36200                                                            <NA>
36201                                                              ml
36202                                                            <NA>
36203                                                            <NA>
36205                                                            <NA>
36218                                             tablet/pill/capsule
36220                                                 based on weight
36221                                             tablet/pill/capsule
36222                                                    small amount
36223                                                  1 pack/package
36225                                                 based on weight
36227                                             tablet/pill/capsule
36228                                             tablet/pill/capsule
36229                                             tablet/pill/capsule
36231                                                     bottle/vial
36232                                             tablet/pill/capsule
36233                                             tablet/pill/capsule
36235                                                        ointment
36237                                                      inch strip
36238                                                            <NA>
36240                                                            <NA>
36254                                                            <NA>
36256                                                            <NA>
36264                                                            <NA>
36268                                                            <NA>
36271                                                            <NA>
36272                                                            <NA>
36273                                     based on weight (40-60 lbs)
36275                                                 based on weight
36276                                                     unspecified
36280                                    based on weight (85-130 lbs)
36283                                                            <NA>
36288                                                            <NA>
36293                                                            <NA>
36294                                                            <NA>
36295                                                            <NA>
36296                                                            <NA>
36297                                                            <NA>
36298                                                            <NA>
36299                                                            <NA>
36300                                                            <NA>
36301                                                            <NA>
36302                                                            <NA>
36303                                                            <NA>
36304                                                            <NA>
36305                                                            <NA>
36306                                                 based on weight
36307                                                 based on weight
36308                                                            <NA>
36309                                                            <NA>
36310                                                            <NA>
36311                                                            <NA>
36322                                                            <NA>
36323                                                            <NA>
36324                                                            <NA>
36325                                                            <NA>
36326                                                            <NA>
36327                                                            <NA>
36328                                                            <NA>
36329                                                            <NA>
36330                                                            <NA>
36331                                                            <NA>
36332                                                            <NA>
36333                                                            <NA>
36334                                                            <NA>
36335                                                 based on weight
36336                                                 based on weight
36337                                                            <NA>
36338                                                            <NA>
36339                                                            <NA>
36340                                                            <NA>
36357                                                            <NA>
36358                                                            <NA>
36359                                                            <NA>
36360                                                            <NA>
36361                                                            <NA>
36362                                                            <NA>
36363                                                            <NA>
36364                                                            <NA>
36365                                                            <NA>
36366                                                            <NA>
36367                                                            <NA>
36368                                                            <NA>
36369                                                            <NA>
36370                                                            <NA>
36371                                                 based on weight
36372                                                 based on weight
36373                                                            <NA>
36374                                                            <NA>
36377                                                            <NA>
36378                                                            <NA>
36379                                                            <NA>
36380                                                            <NA>
36381                                                            <NA>
36382                                                            <NA>
36383                                                            <NA>
36384                                                            <NA>
36385                                                            <NA>
36397                                                            <NA>
36398                                                            <NA>
36399                                                            <NA>
36403                                                            <NA>
36404                                                            <NA>
36405                                                            <NA>
36406                                                            <NA>
36410                                                            <NA>
36427                                                 based on weight
36429                                                            <NA>
36430                                                               %
36438                                                            <NA>
36439                                                 based on weight
36440                                                 based on weight
36443                                                            <NA>
36444                                                 based on weight
36448                                                 based on weight
36451                                                     unspecified
36460                                             tablet/pill/capsule
36461                                             tablet/pill/capsule
36464                                                            <NA>
36474                                                            <NA>
36491                                                     unspecified
36497                                                            <NA>
36513                                                            <NA>
36533                                                    small amount
36535                                                        wipe/pad
36559                                                 based on weight
36560                                                 based on weight
36562                                                 based on weight
36568                                             tablet/pill/capsule
36571                                                      inch strip
36574                                                            <NA>
36595                                             tablet/pill/capsule
36600                                                            pump
36601                                             tablet/pill/capsule
36602                                             tablet/pill/capsule
36605                                             tablet/pill/capsule
36607                                             tablet/pill/capsule
36608                                             tablet/pill/capsule
36616                                             tablet/pill/capsule
36624                                                              25
36626                                                            pump
36630                                             tablet/pill/capsule
36632                                             tablet/pill/capsule
36635                                             tablet/pill/capsule
36657                                                            <NA>
36670                                             tablet/pill/capsule
36698                                                 based on weight
36699                                                 based on weight
36705                                                            <NA>
36708                                                     unspecified
36709                                                        wipe/pad
36735                                                            <NA>
36751                                             tablet/pill/capsule
36752                                                     application
36753                                                          powder
36772                                                           spray
36778                                                            <NA>
36816                                                    pack/package
36817                                                 based on weight
36818                                                            <NA>
36819                                                            <NA>
36824                                             tablet/pill/capsule
36833                                                 based on weight
36834                                                 0.25 inch strip
36835                                                        wipe/pad
36840                                                            <NA>
36842                                                            <NA>
36846                                                            <NA>
36847                                                            <NA>
36848                                                            <NA>
36849                                                 based on weight
36850                                                 based on weight
36851                                                            <NA>
36853                                                            <NA>
36855                                                            <NA>
36859                                                            <NA>
36875                                                            <NA>
36876                                                            <NA>
36877                                                            <NA>
36878                                                          1 tube
36880                                                            <NA>
36881                                             tablet/pill/capsule
36882                                                            <NA>
36883                                             tablet/pill/capsule
36892                                                            <NA>
36893                                           1 tablet/pill/capsule
36894                                           1 tablet/pill/capsule
36900                                             tablet/pill/capsule
36901                                             tablet/pill/capsule
36911                                                 based on weight
36919                                                            <NA>
36920                                                 based on weight
36921                                                     unspecified
36925                                                            <NA>
36945                                                            <NA>
36969                                                            <NA>
36970                                                            <NA>
36982                                                   1 bottle/vial
36983                                           1 tablet/pill/capsule
36984                                           1 tablet/pill/capsule
36985                                           1 tablet/pill/capsule
36994                                                           spray
37007                                                            <NA>
37015                                             tablet/pill/capsule
37017                                                        wipe/pad
37018                                                 based on weight
37019                                                 based on weight
37020                                                            <NA>
37021                                             tablet/pill/capsule
37036                                                            1 ml
37038                                                            <NA>
37046                                                            <NA>
37054                                             tablet/pill/capsule
37055                                           1 tablet/pill/capsule
37056                                                     unspecified
37057                                                            <NA>
37061                                                          collar
37063                                                               %
37069                                                            <NA>
37070                                       based on weight (55+ lbs)
37071                                    based on weight (50-100 lbs)
37073                                                    small amount
37074                                                            <NA>
37075                                                    small amount
37077                                                 based on weight
37078                                                 based on weight
37087                                                 based on weight
37088                                                 based on weight
37098                                                            tube
37099                                             tablet/pill/capsule
37104                                                            <NA>
37116                                                            <NA>
37117                                                 based on weight
37135                                                 moderate amount
37157                                                            <NA>
37164                                                            <NA>
37165                                             tablet/pill/capsule
37168                                                          powder
37169                                                    small amount
37179                                                            <NA>
37193                                                            <NA>
37194                                                          collar
37195                                                            <NA>
37197                                                            <NA>
37200                                                 based on weight
37201                                                 based on weight
37202                                                 based on weight
37219                                             tablet/pill/capsule
37221                                                            <NA>
37259                                                            <NA>
37260                                                            <NA>
37262                                                     application
37266                                             tablet/pill/capsule
37267                                                            <NA>
37270                                                     application
37271                                                     application
37272                                                            <NA>
37277                                                  shampoo/mousse
37278                                                            <NA>
37279                                                            <NA>
37302                                                            <NA>
37303                                                            <NA>
37309                                                    small amount
37316                                                 based on weight
37324                                                            <NA>
37325                                                            <NA>
37326                                                            <NA>
37332                                                    small amount
37337                                                 based on weight
37344                                             tablet/pill/capsule
37349                     272 mcg ivermectin, 227 mg pyrantel pamoate
37359                                                            <NA>
37373                                             tablet/pill/capsule
37374                                             tablet/pill/capsule
37375                                                            <NA>
37376                                                            <NA>
37377                                                            <NA>
37385                                             tablet/pill/capsule
37386                                             tablet/pill/capsule
37387                                             tablet/pill/capsule
37392                                                           spray
37396                                                 based on weight
37397                                     based on weight (44-88 lbs)
37434                                                            <NA>
37435                                                            <NA>
37439                                                 based on weight
37446                                                            dose
37449                                                 moderate amount
37451                                                    small amount
37454                                                 moderate amount
37457                                                     as directed
37463                                                     application
37464                                                           spray
37465                                                           spray
37467                                                 moderate amount
37468                                    based on weight (50-100 lbs)
37469                                     based on weight (44-88 lbs)
37477                                                            <NA>
37478                                                            <NA>
37485                                                 based on weight
37491                                                          1 pump
37493                                             tablet/pill/capsule
37495                                                           spray
37510                                                            <NA>
37526                                                            <NA>
37527                                                      inch strip
37533                                                    small amount
37536                                           1:10 part water ratio
37540                                                 based on weight
37545                                             tablet/pill/capsule
37546                                             tablet/pill/capsule
37547                                             tablet/pill/capsule
37552                                             tablet/pill/capsule
37568                                                            <NA>
37569                                                         monthly
37571                                                            <NA>
37576                                                    small amount
37577                                                            <NA>
37578                                                            <NA>
37579                                                            <NA>
37580                                                            <NA>
37584                                                            <NA>
37585                                                            <NA>
37586                                                            <NA>
37597                                                            <NA>
37598                                                            <NA>
37601                                                 based on weight
37602                                                 based on weight
37603                                             tablet/pill/capsule
37608                                                     unspecified
37621                                             tablet/pill/capsule
37622                                             tablet/pill/capsule
37624                                                 based on weight
37627                                                 based on weight
37628                                                 based on weight
37629                                                     unspecified
37630                                             tablet/pill/capsule
37639                                                            <NA>
37648                                                 based on weight
37651                                                          collar
37655                                                          collar
37657                                                          collar
37662                                                          collar
37664                                                          collar
37669                                                        wipe/pad
37670                                                     application
37675                                                     application
37691                                                        ointment
37696                                                            <NA>
37697                                                            <NA>
37698                                                            <NA>
37704                                           1 tablet/pill/capsule
37705                                                          1 tube
37709                                                            <NA>
37710                                                            <NA>
37712                                                            <NA>
37713                                                            <NA>
37714                                                            <NA>
37717                                                            <NA>
37718                                                            <NA>
37731                                                 based on weight
37738                                                 based on weight
37739                                           1 tablet/pill/capsule
37740                                                          1 tube
37742                                           1 tablet/pill/capsule
37771                                                            <NA>
37785                                                 based on weight
37786                                                 based on weight
37797                                                 based on weight
37798                                                            <NA>
37805                                                            <NA>
37806                                                            <NA>
37809                                                        inhalant
37816                                                            <NA>
37817                                                            <NA>
37820                                                            <NA>
37821                                                            <NA>
37822                                           1 tablet/pill/capsule
37834                                                 based on weight
37835                                                 based on weight
37837                                                            <NA>
37838                                             tablet/pill/capsule
37839                                             tablet/pill/capsule
37845                                                 based on weight
37846                                                 based on weight
37847                                             tablet/pill/capsule
37848                                             tablet/pill/capsule
37849                                             tablet/pill/capsule
37850                                             tablet/pill/capsule
37851                                             tablet/pill/capsule
37852                                             tablet/pill/capsule
37855                                                 based on weight
37858                                                 based on weight
37865                                                 based on weight
37885                                             tablet/pill/capsule
37894                                             tablet/pill/capsule
37895                                             tablet/pill/capsule
37907                                                            <NA>
37916                                                 based on weight
37920                                                   1 bottle/vial
37929                                                            <NA>
37930                                                            <NA>
37933                                             tablet/pill/capsule
37934                                             tablet/pill/capsule
37935                                                            <NA>
37936                                             tablet/pill/capsule
37937                                                            <NA>
37942                                                            <NA>
37944                                                            <NA>
37976                                             tablet/pill/capsule
37977                                                           drops
37978                                             tablet/pill/capsule
37979                                                           spray
37980                                                    small amount
37984                                             tablet/pill/capsule
37989                                           1 tablet/pill/capsule
37990                                                    small amount
37992                                             tablet/pill/capsule
37993                                             tablet/pill/capsule
38018                                                            <NA>
38036                                             tablet/pill/capsule
38041                                             tablet/pill/capsule
38046                                                 based on weight
38048                                                            <NA>
38050                                                 based on weight
38051                                                 based on weight
38052                                                            <NA>
38056                                                            <NA>
38070                                             tablet/pill/capsule
38071                                                            <NA>
38072                                                               %
38074                                                            <NA>
38075                                                            <NA>
38102                                                            <NA>
38123                                             tablet/pill/capsule
38126                                             tablet/pill/capsule
38132                                                            <NA>
38134                                             tablet/pill/capsule
38135                                             tablet/pill/capsule
38136                                                     application
38141                                             tablet/pill/capsule
38142                                             tablet/pill/capsule
38151                                                            dose
38152                                                            <NA>
38156                                                            <NA>
38165                                                            <NA>
38166                                                            <NA>
38177                                                            pump
38179                                                            <NA>
38181                                                            <NA>
38182                                                            <NA>
38184                                                            <NA>
38185                                                            <NA>
38193                                                            tube
38204                                                            <NA>
38211                                                            <NA>
38216                                             tablet/pill/capsule
38217                                           1 tablet/pill/capsule
38219                                                            <NA>
38240                                                            dose
38256                                                            <NA>
38257                                                            <NA>
38259                                                            <NA>
38262                                                 based on weight
38268                                                            <NA>
38273                                                            <NA>
38284                                                     combination
38287                                                            pump
38288                                             tablet/pill/capsule
38289                                             tablet/pill/capsule
38293                                                            <NA>
38294                                                           drops
38301                                                            tube
38305                                                            <NA>
38306                                             tablet/pill/capsule
38324                                                            <NA>
38326                                                           spray
38330                                             tablet/pill/capsule
38339                                           1 tablet/pill/capsule
38342                                           1 tablet/pill/capsule
38351                                             tablet/pill/capsule
38352                                             tablet/pill/capsule
38353                                             tablet/pill/capsule
38361                                                 0.25 inch strip
38365                                                 based on weight
38366                                                 based on weight
38367                                                 based on weight
38369                                                            <NA>
38372                                                           drops
38373                                                 based on weight
38377                                                            <NA>
38378                                                            <NA>
38386                                                            <NA>
38387                                                            <NA>
38388                                                 based on weight
38396                                             tablet/pill/capsule
38397                                             tablet/pill/capsule
38399                                             tablet/pill/capsule
38406                                                    pack/package
38420                                             tablet/pill/capsule
38422                                                 based on weight
38423                                                 based on weight
38427                                                            <NA>
38431                                                    small amount
38436                                                            pump
38438                                             tablet/pill/capsule
38439                                             tablet/pill/capsule
38442                                                            <NA>
38461                                                            <NA>
38462                                                            <NA>
38464                                                            <NA>
38465                                                            <NA>
38466                                                            <NA>
38470                                                            <NA>
38471                                                            <NA>
38472                                                            <NA>
38473                                                            <NA>
38499                                                            <NA>
38504                                                            <NA>
38505                                                            <NA>
38507                                                            <NA>
38508                                                            <NA>
38509                                                            <NA>
38510                                                            <NA>
38511                                                            <NA>
38512                                                            <NA>
38522                                                            <NA>
38527                                                 based on weight
38528                                                 based on weight
38529                                                       as needed
38531                                                    small amount
38532                                           1 tablet/pill/capsule
38533                                                            <NA>
38534                                        2 tablets/pills/capsules
38536                                           1 tablet/pill/capsule
38544                                                    small amount
38550                                                            <NA>
38551                                                            <NA>
38557                                                            <NA>
38567                                             tablet/pill/capsule
38568                                                 based on weight
38569                                                 based on weight
38570                                                            <NA>
38588                                                 moderate amount
38602                                             tablet/pill/capsule
38605                                                            <NA>
38606                                                            <NA>
38607                                                            <NA>
38610                                             tablet/pill/capsule
38611                                                            pump
38618                                                            <NA>
38626                                           1 tablet/pill/capsule
38630                                             tablet/pill/capsule
38636                                                 based on weight
38637                                                 based on weight
38643                                                 based on weight
38647                                                            <NA>
38655                                                    pack/package
38656                                                   1 application
38665                                                            <NA>
38691                                                 based on weight
38722                                                            <NA>
38723                                                        wipe/pad
38754                                                            <NA>
38772                                                    small amount
38773                                                            <NA>
38775                                                            <NA>
38779                                                            <NA>
38780                                                            <NA>
38787                                             tablet/pill/capsule
38789                                                            <NA>
38796                                             tablet/pill/capsule
38802                                                            <NA>
38809                                                            <NA>
38816                                                    pack/package
38820                                                            <NA>
38821                                                            <NA>
38828                                                           spray
38839                                                            <NA>
38841                                                            <NA>
38843                                                            <NA>
38845                                                            <NA>
38847                                                     application
38850                                                        ointment
38851                                                            <NA>
38854                                                            <NA>
38855                                                     application
38861                                                            <NA>
38864                                                            <NA>
38865                                                            <NA>
38868                                                            <NA>
38871                                                            <NA>
38890                                             tablet/pill/capsule
38891                                             tablet/pill/capsule
38892                                                 based on weight
38896                                                 based on weight
38902                                                    small amount
38924                                                            <NA>
38925                                     based on weight (21-55 lbs)
38926                                    based on weight (50-100 lbs)
38930                                                 based on weight
38931                                                 based on weight
38940                                                 based on weight
38941                                                 based on weight
38945                                                 based on weight
38946                                                 based on weight
38950                                           1 tablet/pill/capsule
38951                                           1 tablet/pill/capsule
38952                                           1 tablet/pill/capsule
38956                                                            <NA>
38963                                                 based on weight
38964                                                 based on weight
38970                                                            <NA>
38971                                                            <NA>
38974                                                            <NA>
38976                                                            <NA>
38997                                                            <NA>
39004                                             tablet/pill/capsule
39005                                             tablet/pill/capsule
39006                                                            <NA>
39035                                                            <NA>
39073                                             tablet/pill/capsule
39083                                                            <NA>
39099                                           1 tablet/pill/capsule
39117                                                            <NA>
39120                                                     combination
39121                                                 based on weight
39122                                                   1 application
39123                                             tablet/pill/capsule
39125                                                            <NA>
39127                                                            <NA>
39128                                                            <NA>
39158                                                            <NA>
39165                                                            <NA>
39167                                             tablet/pill/capsule
39171                                                    small amount
39176                                    based on weight (50-100 lbs)
39181                                                  shampoo/mousse
39182                                                           spray
39198                                                           spray
39201                                                            <NA>
39202                                                          liquid
39207                                                            <NA>
39209                                                            <NA>
39210                                                            <NA>
39211                                                    pack/package
39212                                                            <NA>
39218                                                            <NA>
39258                                             tablet/pill/capsule
39259                                             tablet/pill/capsule
39260                                             tablet/pill/capsule
39262                                                            <NA>
39273                                                            <NA>
39316                                                     unspecified
39325                                                            <NA>
39326                                                            <NA>
39329                                                            <NA>
39330                                                            <NA>
39331                                                            <NA>
39332                                                            <NA>
39338                                                 based on weight
39339                                                          collar
39340                                                 based on weight
39388                                                 based on weight
39392                                                            <NA>
39423                                                            <NA>
39425                                                        ointment
39433                                                            <NA>
39434                                                            <NA>
39435                                                 syringe/pipette
39438                                                 based on weight
39440                                                            <NA>
39443                                                            <NA>
39444                                                            <NA>
39445                                                            <NA>
39446                                                            <NA>
39447                                                            <NA>
39450                                                            <NA>
39451                                                            <NA>
39453                                                     application
39486                                                          1 tube
39495                                                            <NA>
39496                                                            <NA>
39511                                                            <NA>
39513                                                            <NA>
39516                                                     unspecified
39519                                                            <NA>
39525                                                     bottle/vial
39526                                                     unspecified
39528                                                            <NA>
39531                                                     combination
39534                                                            <NA>
39536                                                    pack/package
39539                                                            <NA>
39541                                                           spray
39542                                                     application
39543                                                      inch strip
39546                                                     bottle/vial
39548                                                            <NA>
39566                                                            <NA>
39567                                                            <NA>
39573                                                            <NA>
39581                                                 based on weight
39582                                                 based on weight
39586                                           1 tablet/pill/capsule
39591                                                            <NA>
39599                                                            <NA>
39607                                                            <NA>
39609                                           1 tablet/pill/capsule
39617                                                            <NA>
39618                                                            <NA>
39635                                             tablet/pill/capsule
39637                                                            <NA>
39639                                                    small amount
39651                                                           spray
39705                                                            <NA>
39706                                                            <NA>
39707                                                            <NA>
39714                                           1 tablet/pill/capsule
39715                                           1 tablet/pill/capsule
39737                                                            <NA>
39744                                                     unspecified
39754                                                 based on weight
39756                                                            <NA>
39759                                                            <NA>
39760                                                            <NA>
39763                                                            <NA>
39764                                    based on weight (50-100 lbs)
39776                                                            <NA>
39777                                                            <NA>
39778                                                            <NA>
39786                                             tablet/pill/capsule
39787                                                     application
39788                                                 based on weight
39795                                                            <NA>
39796                                                            <NA>
39833                                                            <NA>
39849                                                            <NA>
39856                                                            <NA>
39860                                                            <NA>
39871                                                            <NA>
39875                                                            <NA>
39877                                                            <NA>
39881                                        based on weight (60 lbs)
39909                                     based on weight (40-60 lbs)
39919                                                      inch strip
39948                                    based on weight (50-100 lbs)
39949                                     based on weight (24-60 lbs)
39958                                                 based on weight
39973                                           1 tablet/pill/capsule
39974                                                    small amount
39975                                                    small amount
39980                                                          powder
39981                                                        wipe/pad
39982                                                 0.25 inch strip
39987                                                            <NA>
39988                                                            <NA>
40013                                                 based on weight
40021                                                            <NA>
40023                                    based on weight (60-120 lbs)
40038                                                            <NA>
40043                                                            <NA>
40052                                                         monthly
40092                                     based on weight (44-88 lbs)
40093                                    based on weight (50-100 lbs)
40102                                                            <NA>
40108                                                            <NA>
40109                                                            <NA>
40115                                                 based on weight
40117                                             tablet/pill/capsule
40121                                                            <NA>
40123                                                     unspecified
40124                                             tablet/pill/capsule
40125                                                     unspecified
40133                                                            <NA>
40134                                                            <NA>
40138                                             tablet/pill/capsule
40141                                                            <NA>
40142                                                            <NA>
40143                                                           spray
40144                                             tablet/pill/capsule
40149                                    based on weight (50-100 lbs)
40154                                                 based on weight
40164                                                    small amount
40165                                                 based on weight
40180                                                 based on weight
40186                                                 based on weight
40194                                                     combination
40196                                                     as directed
40206                                                 based on weight
40209                                                    small amount
40214                                                     application
40216                                             tablet/pill/capsule
40217                                             tablet/pill/capsule
40218                                             tablet/pill/capsule
40221                                                 based on weight
40222                                                 based on weight
40223                                                 based on weight
40224                                                 based on weight
40244                                                     application
40290                                                            <NA>
40296                                                            <NA>
40297                                                            <NA>
40298                                                            <NA>
40299                                                    small amount
40302                                                            <NA>
40312                                        based on weight (70 lbs)
40317                                                    small amount
40331                                                            <NA>
40343                                                            <NA>
40390                                             tablet/pill/capsule
40391                                                 based on weight
40392                                                            <NA>
40394                                                            <NA>
40403                                                    small amount
40406                                                            <NA>
40407                                                            <NA>
40417                                             tablet/pill/capsule
40418                                             tablet/pill/capsule
40422                                                 based on weight
40425                                     based on weight (44-88 lbs)
40446                                                            <NA>
40451                                                            <NA>
40454                                                            <NA>
40464                                                            <NA>
40468                                                            <NA>
40472                                             tablet/pill/capsule
40474                                                 based on weight
40483                                             tablet/pill/capsule
40484                                             tablet/pill/capsule
40486                                                            <NA>
40487                                                            <NA>
40488                                                          1 tube
40489                                                            <NA>
40494                                                            <NA>
40503                                             tablet/pill/capsule
40504                                             tablet/pill/capsule
40508                                                            <NA>
40511                                                            <NA>
40519                                             tablet/pill/capsule
40521                                                            <NA>
40535                                                            <NA>
40541                                                            <NA>
40568                                                 based on weight
40571                                                            <NA>
40572                                                            <NA>
40573                                                 based on weight
40574                                                 based on weight
40579                                           1 tablet/pill/capsule
40580                                                            <NA>
40581                                                            <NA>
40582                                                      inch strip
40583                                                            <NA>
40595                                                        2 sprays
40600                                                 based on weight
40601                                                 based on weight
40603                                                     bottle/vial
40604                                                          powder
40606                                                    small amount
40607                                                 moderate amount
40611                                                 based on weight
40615                                                            <NA>
40616                                                 based on weight
40617                                                 based on weight
40618                                                            <NA>
40619                                                            <NA>
40620                                                            <NA>
40634                                                      inch strip
40636                                                            <NA>
40637                                                            <NA>
40644                                                            <NA>
40653                                                     bottle/vial
40654                                             tablet/pill/capsule
40655                                             tablet/pill/capsule
40656                                                            <NA>
40684                                                 based on weight
40686                                                 based on weight
40687                                                 based on weight
40688                                                        wipe/pad
40689                                                        ointment
40690                                                 based on weight
40691                                                 based on weight
40693                                                   tapering dose
40695                                    based on weight (50-100 lbs)
40696                                    based on weight (60-100 lbs)
40699                                                            <NA>
40700                                             tablet/pill/capsule
40701                                             tablet/pill/capsule
40718                                                            <NA>
40719                                           1 tablet/pill/capsule
40721                                             tablet/pill/capsule
40722                                                        ointment
40723                                                            <NA>
40724                                                            <NA>
40725                                             tablet/pill/capsule
40726                                                            <NA>
40727                                                            <NA>
40744                                                 based on weight
40745                                                           spray
40747                                                            <NA>
40748                                                        wipe/pad
40749                                             tablet/pill/capsule
40750                                                            <NA>
40751                                                 based on weight
40754                                                 based on weight
40755                                                 based on weight
40756                                                      inch strip
40758                                                            <NA>
40760                                                 based on weight
40775                                             tablet/pill/capsule
40776                                             tablet/pill/capsule
40781                                             tablet/pill/capsule
40783                                                            <NA>
40794                                                            <NA>
40796                                             tablet/pill/capsule
40799                                             tablet/pill/capsule
40800                                             tablet/pill/capsule
40801                                             tablet/pill/capsule
40810                                                    small amount
40823                                                 based on weight
40824                                                           drops
40825                                                            dose
40827                                                 based on weight
40828                                                 based on weight
40829                                                 based on weight
40833                     272 mcg ivermectin, 227 mg pyrantel pamoate
40834                                                  240 mg, 360 mg
40838                                                           spray
40839                                                     bottle/vial
40840                                                     bottle/vial
40843                                                           spray
40846                                                            <NA>
40848                                                 0.25 inch strip
40866                                                        wipe/pad
40868                                             tablet/pill/capsule
40870                                                 based on weight
40873                                             tablet/pill/capsule
40875                                             tablet/pill/capsule
40879                                             tablet/pill/capsule
40895                                                            <NA>
40897                                                            <NA>
40899                                                            <NA>
40900                                                            <NA>
40902                                                            <NA>
40905                                                            <NA>
40919                                                            <NA>
40943                                                            <NA>
40958                                                     unspecified
40959                                                     unspecified
40960                                                     unspecified
40961                                                     unspecified
40962                                                      inch strip
40965                                             tablet/pill/capsule
40966                                             tablet/pill/capsule
40967                                             tablet/pill/capsule
40968                                             tablet/pill/capsule
40969                                                  shampoo/mousse
40970                                                        ointment
40971                                             tablet/pill/capsule
40972                                             tablet/pill/capsule
40974                                                 based on weight
40984                                                            <NA>
40987                                                            <NA>
40990                                                            <NA>
40992                                                            <NA>
40993                                                            <NA>
40994                                                            <NA>
40997                                             tablet/pill/capsule
40998                                                            <NA>
41003                                                            <NA>
41004                                                            <NA>
41005                                                            <NA>
41006                                                            <NA>
41007                                                            <NA>
41009                                                            <NA>
41010                                                            <NA>
41011                                                            <NA>
41014                                                            <NA>
41015                                                            <NA>
41016                                                            <NA>
41018                                             tablet/pill/capsule
41020                                                            <NA>
41021                                    based on weight (50-100 lbs)
41022                                                            <NA>
41023                                     based on weight (56-95 lbs)
41024                                             tablet/pill/capsule
41025                                                            <NA>
41057                                                            <NA>
41068                                                     bottle/vial
41069                                             tablet/pill/capsule
41084                                                            <NA>
41087                                                            <NA>
41088                                                            <NA>
41089                                                            <NA>
41090                                                            <NA>
41091                                                            <NA>
41094                                                            <NA>
41095                                                            <NA>
41096                                                            <NA>
41097                                                            <NA>
41098                                                            <NA>
41099                                                            <NA>
41101                                                            <NA>
41102                                                            <NA>
41103                                                            <NA>
41104                                                            <NA>
41121                        27 mg milbemycin oxime, 1620 mg spinosad
41125                                                 based on weight
41129                                                            <NA>
41130                                                            <NA>
41131                                                 based on weight
41132                                                 based on weight
41133                                    based on weight (50-100 lbs)
41134                                    based on weight (60-120 lbs)
41137                                                           spray
41139                                                            <NA>
41147                                                            <NA>
41151                                                            <NA>
41152                                                            <NA>
41170                                                      inch strip
41198                                                            <NA>
41199                                                            <NA>
41200                                                            <NA>
41201                                                            <NA>
41203                                             tablet/pill/capsule
41204                                                            tube
41206                                                            tube
41207                                             tablet/pill/capsule
41208                                             tablet/pill/capsule
41209                                             tablet/pill/capsule
41210                                             tablet/pill/capsule
41216                                                            <NA>
41217                                             tablet/pill/capsule
41219                                    based on weight (50-100 lbs)
41220                                                            <NA>
41221                                                 based on weight
41222                                                            <NA>
41223                                                            <NA>
41224                                                            <NA>
41240                                                          1 tube
41241                                           1 tablet/pill/capsule
41242                                                 based on weight
41246                                                        ointment
41254                                                         monthly
41260                                                            <NA>
41267                                                 based on weight
41278                                                           spray
41279                                     based on weight (1-121 lbs)
41281                                     based on weight (44-88 lbs)
41283                                                            <NA>
41313                                                            <NA>
41314                                                            <NA>
41315                                                            <NA>
41316                                                            <NA>
41318                                                            <NA>
41319                                                            <NA>
41320                                                 based on weight
41325                                                            <NA>
41332                                                            <NA>
41335                                                    small amount
41340                                                    small amount
41343                                                            <NA>
41360                                                            <NA>
41371                                                            <NA>
41373                                             tablet/pill/capsule
41374                                             tablet/pill/capsule
41376                                                            <NA>
41377                                                 based on weight
41378                                                 based on weight
41381                                                            <NA>
41384                                             tablet/pill/capsule
41385                                             tablet/pill/capsule
41386                                             tablet/pill/capsule
41387                                             tablet/pill/capsule
41388                                                            <NA>
41396                                                            <NA>
41398                                                            <NA>
41407                                                            <NA>
41413                                                            <NA>
41417                                                            <NA>
41420                                                            <NA>
41421                                                 based on weight
41422                                    based on weight (50-100 lbs)
41424                                                     unspecified
41425                                                    small amount
41430                                                            <NA>
41431                                                            <NA>
41432                                                 based on weight
41433                                                            <NA>
41435                                                            <NA>
41442                                                        wipe/pad
41443                                                            <NA>
41444                                                            <NA>
41446                                                          1 pump
41447                                                            <NA>
41451                                                            <NA>
41464                                                    small amount
41466                                                    small amount
41470                                                            <NA>
41497                                                     unspecified
41500                                                            <NA>
41505                                                        inhalant
41525                                                    small amount
41531                                                    small amount
41533                                                            <NA>
41557                                                      inch strip
41572                                             tablet/pill/capsule
41573                                             tablet/pill/capsule
41581                                             tablet/pill/capsule
41612                                                            <NA>
41615                                           1 tablet/pill/capsule
41617                                                            <NA>
41621                                                            <NA>
41629                                                        per hour
41632                                                            <NA>
41633                                                            <NA>
41636                                    based on weight (50-100 lbs)
41637                                    based on weight (60-120 lbs)
41638                                             tablet/pill/capsule
41639                                             tablet/pill/capsule
41640                                           1 tablet/pill/capsule
41641                                                            <NA>
41653                                                            <NA>
41655                                                            <NA>
41674                                                            <NA>
41724                                                            <NA>
41725                                                          1 tube
41726                                           1 tablet/pill/capsule
41727                                           1 tablet/pill/capsule
41728                                           1 tablet/pill/capsule
41729                                                               1
41731                                                            <NA>
41737                                                          1 tube
41738                                           1 tablet/pill/capsule
41739                                           1 tablet/pill/capsule
41740                                           1 tablet/pill/capsule
41743                                                            <NA>
41746                                           1 tablet/pill/capsule
41747                                                     unspecified
41748                                                     unspecified
41749                                                     unspecified
41750                                                     unspecified
41751                                                     unspecified
41752                                                     unspecified
41753                                                     unspecified
41754                                                     unspecified
41756                                                            <NA>
41759                                             tablet/pill/capsule
41774                                                            <NA>
41778                                     based on weight (44-88 lbs)
41779                                    based on weight (50-100 lbs)
41781                                                            <NA>
41803                                             tablet/pill/capsule
41811                                                            <NA>
41816                                                            <NA>
41819                                                            <NA>
41830                                                            <NA>
41835                                                 based on weight
41837                                    based on weight (50-100 lbs)
41838                                    based on weight (89-132 lbs)
41840                                    based on weight (50-100 lbs)
41846                                                            <NA>
41849                                                 based on weight
41850                                                 based on weight
41851                                                            <NA>
41853                                                            <NA>
41854                                                 based on weight
41863                                                            <NA>
41870                                                            <NA>
41872                                                            <NA>
41888                                                      inch strip
41891                                                            <NA>
41893                                                            <NA>
41894                                                            <NA>
41896                                                            <NA>
41897                                                            <NA>
41898                                                            <NA>
41899                                                            <NA>
41900                                                            <NA>
41901                                                            <NA>
41902                                                            <NA>
41903                                                            <NA>
41904                                                            <NA>
41905                                                            <NA>
41906                                                            <NA>
41921                                                            <NA>
41929                                             tablet/pill/capsule
41930                                             tablet/pill/capsule
41937                                             tablet/pill/capsule
41938                                                            tube
41939                                                           spray
41946                                                            <NA>
41947                                                            <NA>
41950                                                            <NA>
41973                                                    small amount
41975                                                            <NA>
41988                                                 based on weight
42004                                                            <NA>
42005                                                            <NA>
42011                                                 based on weight
42012                                                 based on weight
42032                                                 based on weight
42037                                                 based on weight
42039                                           1 tablet/pill/capsule
42043                                                 based on weight
42044                                                 based on weight
42053                                                 based on weight
42055                                                            <NA>
42057                                                            <NA>
42061                                                               %
42063                                                 based on weight
42066                                                 based on weight
42100                                                    small amount
42101                                                           spray
42112                                                     combination
42116                                                            <NA>
42119                                                            <NA>
42122                                                            <NA>
42147                                             tablet/pill/capsule
42148                                             tablet/pill/capsule
42149                                             tablet/pill/capsule
42150                                             tablet/pill/capsule
42151                                             tablet/pill/capsule
42152                                             tablet/pill/capsule
42154                                     based on weight (44-88 lbs)
42174                                                 based on weight
42198                                                          collar
42201                                                          collar
42215                                                            <NA>
42218                                                            <NA>
42219                                                            <NA>
42221                                                     application
42227                                                     application
42229                                                     application
42240                                                            <NA>
42241                                                            <NA>
42242                                                            <NA>
42243                                                            <NA>
42256                                                    small amount
42257                                                    small amount
42259                                                    small amount
42267                                                            <NA>
42272                                                            <NA>
42273                                                            <NA>
42278                                             tablet/pill/capsule
42284                                                            <NA>
42286                                                              kg
42287                                                 based on weight
42289                                                 based on weight
42291                                                     unspecified
42313                                                     application
42314                                             tablet/pill/capsule
42345                                                 based on weight
42346                                                 based on weight
42348                                             tablet/pill/capsule
42349                                             tablet/pill/capsule
42353                                             tablet/pill/capsule
42354                                             tablet/pill/capsule
42356                                             tablet/pill/capsule
42357                                    based on weight (50-100 lbs)
42358                                    based on weight (60-120 lbs)
42361                                                    pack/package
42366                                             tablet/pill/capsule
42367                                                    small amount
42368                                                            <NA>
42378                                                 based on weight
42379                                                 based on weight
42384                                                 based on weight
42386                                                 based on weight
42387                                                 based on weight
42399                                                          collar
42402                                             tablet/pill/capsule
42404                                             tablet/pill/capsule
42412                                             tablet/pill/capsule
42413                                             tablet/pill/capsule
42417                                                        ointment
42425                                                           spray
42426                                                           spray
42433                                             tablet/pill/capsule
42451                                                 based on weight
42455                                                            <NA>
42463                                                     as directed
42464                                                    small amount
42465                                             tablet/pill/capsule
42466                                                            <NA>
42468                                                            <NA>
42474                                                     unspecified
42475                                                            <NA>
42476                                                     unspecified
42477                                                     unspecified
42478                                                            <NA>
42480                                                            <NA>
42481                                                            <NA>
42482                                                          1 tube
42483                                             tablet/pill/capsule
42486                                             tablet/pill/capsule
42488                                                     unspecified
42489                                                            <NA>
42502                                                            <NA>
42506                                                  1 pack/package
42512                                             tablet/pill/capsule
42513                                                            <NA>
42522                                             tablet/pill/capsule
42537                                                     application
42551                                             tablet/pill/capsule
42552                                             tablet/pill/capsule
42553                                                 based on weight
42570                                                 based on weight
42572                                                            <NA>
42573                                                 based on weight
42574                                                 based on weight
42578                                                            <NA>
42579                                                            <NA>
42593                                                            <NA>
42594                                                            <NA>
42624                                                 based on weight
42626                                                            <NA>
42627                                             tablet/pill/capsule
42628                                             tablet/pill/capsule
42632                                             tablet/pill/capsule
42633                                             tablet/pill/capsule
42634                                                          collar
42637                                                         monthly
42638                                                            <NA>
42640                                                             10%
42646                                                            <NA>
42647                                                            <NA>
42648                                                            <NA>
42651                                     based on weight (26-50 lbs)
42652                                     based on weight (22-44 lbs)
42655                                             tablet/pill/capsule
42656                                             tablet/pill/capsule
42666                                                 based on weight
42668                                                            <NA>
42675                                                            <NA>
42678                                                            <NA>
42679                                                            <NA>
42694                                                 based on weight
42695                                                 based on weight
42696                                                 based on weight
42697                                                 based on weight
42700                                                            <NA>
42704                                                 based on weight
42712                                             tablet/pill/capsule
42716                                                    small amount
42721                                                            <NA>
42725                                                     bottle/vial
42726                                                            dose
42727                                                            <NA>
42728                                             tablet/pill/capsule
42729                                             tablet/pill/capsule
42740                                                 based on weight
42752                                                            <NA>
42753                                                            <NA>
42758                                                            <NA>
42760                                             tablet/pill/capsule
42761                                                     application
42764                                                            <NA>
42766                                             tablet/pill/capsule
42768                                                            <NA>
42785                                                            <NA>
42786                                                            <NA>
42787                                                            <NA>
42791                                                            <NA>
42792                                                            <NA>
42799                                                            <NA>
42821                                             tablet/pill/capsule
42833                                                            <NA>
42860                                                          cup(s)
42876                                                            <NA>
42879                                                            <NA>
42887                                                            <NA>
42890                                             tablet/pill/capsule
42891                                             tablet/pill/capsule
42892                                                            <NA>
42893                                                            <NA>
42894                                                            <NA>
42913                                       based on weight (60+ lbs)
42915                                                     application
42920                                                            <NA>
42923                                                 based on weight
42926                                                 based on weight
42930                                                 based on weight
42931                                                 based on weight
42932                                                 based on weight
42935                                                 based on weight
42936                                                 based on weight
42939                                                 based on weight
42940                                                 based on weight
42946                                                            <NA>
42952                                                            <NA>
42956                                                 based on weight
42959                                             tablet/pill/capsule
42960                                                            <NA>
42967                                                 based on weight
42994                                                 based on weight
43013                                                            <NA>
43045                                                 based on weight
43064                                           1 tablet/pill/capsule
43065                                                            dose
43069                                                     application
43072                                                     unspecified
43081                                                            tube
43086                                                            pump
43105                                                        wipe/pad
43116                                             tablet/pill/capsule
43119                                                 based on weight
43123                                                            <NA>
43134                                                            <NA>
43135                                                            <NA>
43136                                                            <NA>
43137                                                            <NA>
43138                                                            <NA>
43151                                                            <NA>
43153                                                            <NA>
43169                                                    small amount
43173                                                    small amount
43183                                                            <NA>
43184                                                            <NA>
43191                                                       as needed
43200                                                            <NA>
43202                                                            <NA>
43204                                                 based on weight
43224                                                            <NA>
43228                                                          collar
43236                                                            <NA>
43238                                    based on weight (50-100 lbs)
43239                                                          collar
43241                                    based on weight (50-100 lbs)
43242                                       based on weight (18+ lbs)
43243                                             tablet/pill/capsule
43244                                                          collar
43246                                                 based on weight
43247                                                            <NA>
43258                                                            <NA>
43259                                                            <NA>
43270                                                            <NA>
43286                                                            <NA>
43291                                                            <NA>
43292                                                            <NA>
43293                                     based on weight (55-88 lbs)
43310                                             tablet/pill/capsule
43334                                                            <NA>
43366                                                            <NA>
43388                                                 based on weight
43405                                                    small amount
43412                                                    small amount
43423                                                            <NA>
43424                                                            <NA>
43430                                                          powder
43465                                             tablet/pill/capsule
43467                                                     unspecified
43469                                                     unspecified
43470                                                     unspecified
43471                                                     unspecified
43482                                             tablet/pill/capsule
43491                                                 based on weight
43493                                                            <NA>
43494                                                            <NA>
43496                                                            <NA>
43497                                                            <NA>
43510                                                 based on weight
43511                                                 based on weight
43512                                                 based on weight
43522                                                 based on weight
43527                     272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                             tablet/pill/capsule
43532                                             tablet/pill/capsule
43535                                             tablet/pill/capsule
43538                                             tablet/pill/capsule
43539                                             tablet/pill/capsule
43540                                                            <NA>
43545                                                 based on weight
43546                                     based on weight (44-88 lbs)
43547                                                 based on weight
43548                                             tablet/pill/capsule
43549                                                     bottle/vial
43550                                                    small amount
43563                                             tablet/pill/capsule
43570                                                            <NA>
43610                                                0.125 inch strip
43620                                                            <NA>
43621                                                               %
43636                                     based on weight (40-85 lbs)
43637                                           1 tablet/pill/capsule
43639                                                            <NA>
43640                                                            <NA>
43642                                                            <NA>
43643                                                        wipe/pad
43644                                                            <NA>
43645                                                            <NA>
43646                                                            <NA>
43650                                                            <NA>
43652                                                            tube
43653                                             tablet/pill/capsule
43669                                                        wipe/pad
43678                                                     application
43683                                             tablet/pill/capsule
43684                                                 0.25 inch strip
43685                                                    small amount
43686                                                    small amount
43697                                    based on weight (50-100 lbs)
43698                                     based on weight (24-60 lbs)
43701                                    based on weight (50-100 lbs)
43702                                     based on weight (44-88 lbs)
43706                                           1 tablet/pill/capsule
43707                                           1 tablet/pill/capsule
43709                                                          1 tube
43714                                                 moderate amount
43715                                                    small amount
43738                                                            <NA>
43743                                             tablet/pill/capsule
43744                                                          liquid
43745                                                  1 pack/package
43746                                                 based on weight
43747                                                 based on weight
43751                                                    pack/package
43783                                                 based on weight
43784                                                 based on weight
43785                                                 based on weight
43790                                                            <NA>
43806                                                           spray
43807                                                  shampoo/mousse
43838                                                            <NA>
43843                                                            <NA>
43844                                                            <NA>
43851                                                            <NA>
43853                                                            <NA>
43854                                                            <NA>
43878                                             tablet/pill/capsule
43884                                                            <NA>
43887                                                            <NA>
43893                                             tablet/pill/capsule
43894                                                          collar
43896                                             tablet/pill/capsule
43919                                             tablet/pill/capsule
43920                                                            tube
43938                                                 based on weight
43939                                                 based on weight
43949                                                 based on weight
43950                                                 based on weight
43958                                                 based on weight
43959                                                 based on weight
43960                                                 based on weight
43963                                                            <NA>
43965                                                            <NA>
43975                                                 1.5 billion cfu
43976                                                            <NA>
43977                                                            <NA>
43980                                                            <NA>
43997                                                      inch strip
44031                                                            <NA>
44037                                                            <NA>
44050                                                      1 wipe/pad
44055                                                            <NA>
44084                                                      inch strip
44087                                                     unspecified
44090                                                     unspecified
44119                                                            <NA>
44123                                                           spray
44126                                             tablet/pill/capsule
44127                                             tablet/pill/capsule
44129                                           1 tablet/pill/capsule
44131                                                 based on weight
44154                                                     unspecified
44155                                                 based on weight
44157                                                 based on weight
44158                                                 based on weight
44207                                                    small amount
44209                                                            1 ml
44211                                    based on weight (60-120 lbs)
44212                                             tablet/pill/capsule
44214                                                            <NA>
44216                                    based on weight (60-120 lbs)
44218                                    based on weight (60-120 lbs)
44219                                                            <NA>
44222                                                            <NA>
44223                                                            <NA>
44224                                                            <NA>
44225                                                            <NA>
44226                                                            <NA>
44227                                                            <NA>
44234                                                            <NA>
44235                                                            <NA>
44240                                                            <NA>
44241                                                            <NA>
44243                                                            <NA>
44244                                                            <NA>
44246                                                            <NA>
44247                                                            <NA>
44249                                           1 tablet/pill/capsule
44250                                           1 tablet/pill/capsule
44251                                           1 tablet/pill/capsule
44252                                           1 tablet/pill/capsule
44253                                                 based on weight
44268                                                 based on weight
44280                                                    small amount
44282                                                    small amount
44309                                                            <NA>
44330                                             tablet/pill/capsule
44334                                             tablet/pill/capsule
44335                                             tablet/pill/capsule
44336                                             tablet/pill/capsule
44337                                             tablet/pill/capsule
44347                                                            <NA>
44350                                                            <NA>
44363                                                            <NA>
44372                                                        ointment
44385                                                            <NA>
44386                                                            <NA>
44390                                             tablet/pill/capsule
44391                                                            <NA>
44392                                                            <NA>
44395                                             tablet/pill/capsule
44398                                                    pack/package
44421                                                 based on weight
44428                                             tablet/pill/capsule
44429                                                            <NA>
44431                                                 based on weight
44434                                                            <NA>
44452                                                 based on weight
44473                                                 based on weight
44507                                                            <NA>
44520                                                            <NA>
44524                                                            <NA>
44531                                                            <NA>
44542                                                    pack/package
44543                                             tablet/pill/capsule
44544                                    based on weight (50-100 lbs)
44545                                                            <NA>
44546                                                 based on weight
44547                                                 based on weight
44558                                             tablet/pill/capsule
44559                                                     bottle/vial
44570                                             tablet/pill/capsule
44571                                                     bottle/vial
44576                                             tablet/pill/capsule
44577                                                     bottle/vial
44595                                                 0.25 inch strip
44607                                                   1 application
44608                                             tablet/pill/capsule
44609                                                     unspecified
44614                                             tablet/pill/capsule
44616                                             tablet/pill/capsule
44618                                             tablet/pill/capsule
44646                                                            <NA>
44649                                    based on weight (85-130 lbs)
44652                                                            <NA>
44653                                                            <NA>
44654                                                            <NA>
44655                                                            <NA>
44658                                                            <NA>
44660                                                            <NA>
44663                                                            <NA>
44671                                                 based on weight
44672                                                            <NA>
44677                                                            <NA>
44679                                                            <NA>
44683                                                            <NA>
44684                                             tablet/pill/capsule
44706                                                        ointment
44732                                                            <NA>
44742                                                 based on weight
44743                                                 based on weight
44745                                                 based on weight
44746                                                            <NA>
44747                                                          collar
44755                                                            <NA>
44757                                                            <NA>
44769                                                            <NA>
44771                                                 based on weight
44782                                                            <NA>
44795                                                      inch strip
44799                                                            <NA>
44804                                                            <NA>
44820                                             tablet/pill/capsule
44827                                             tablet/pill/capsule
44828                                             tablet/pill/capsule
44829                                             tablet/pill/capsule
44830                                                            <NA>
44834                                                            tube
44843                                           1 tablet/pill/capsule
44844                                           1 tablet/pill/capsule
44857                                                            <NA>
44858                                                            <NA>
44862                                             tablet/pill/capsule
44863                                                            <NA>
44864                                                            <NA>
44866                                                            <NA>
44867                                                          1 tube
44868                                                          1 tube
44869                                           1 tablet/pill/capsule
44875                                                            <NA>
44877                                                            <NA>
44879                                             tablet/pill/capsule
44899                                                            <NA>
44905                                                            <NA>
44915                                                            <NA>
44916                                                            <NA>
44917                                                          1 tube
44918                                                     combination
44920                                                            <NA>
44922                                                            <NA>
44924                                             tablet/pill/capsule
44925                                                            <NA>
44933                                                            <NA>
44936                                                            <NA>
44937                                                            <NA>
44938                                                            <NA>
44939                                                            <NA>
44946                                             tablet/pill/capsule
44947                                             tablet/pill/capsule
44948                                             tablet/pill/capsule
44949                                             tablet/pill/capsule
44950                                             tablet/pill/capsule
44957                                           1 tablet/pill/capsule
44958                                           1 tablet/pill/capsule
44997                                                    pack/package
45005                                                            <NA>
45007                                                 based on weight
45014                                                 based on weight
45015                                                            <NA>
45016                                           1 tablet/pill/capsule
45017                                                            <NA>
45023                                                            <NA>
45027                                                            <NA>
45034                                                 0.25 inch strip
45045                                                 based on weight
45053                                        based on weight (25 lbs)
45054                                     based on weight (10-24 lbs)
45055                                     based on weight (25-60 lbs)
45059                                    based on weight (50-100 lbs)
45061                                                 based on weight
45062                                                 based on weight
45063                                                            <NA>
45064                                                 based on weight
45066                                                            <NA>
45072                                                            <NA>
45073                                                            <NA>
45076                                             tablet/pill/capsule
45109                                             tablet/pill/capsule
45116                                                            <NA>
45117                                                    pack/package
45123                                                            <NA>
45134                                                            <NA>
45139                                                            <NA>
45149                                             tablet/pill/capsule
45150                                             tablet/pill/capsule
45154                                                 based on weight
45172                                                            <NA>
45173                                                            <NA>
45174                                                            <NA>
45175                                                            <NA>
45178                                           1 tablet/pill/capsule
45179                                                   1 bottle/vial
45180                                                    small amount
45181                                                    small amount
45182                                                 based on weight
45184                                    based on weight (50-100 lbs)
45185                                     based on weight (44-88 lbs)
45186                                                 based on weight
45187                                                 based on weight
45188                                                 based on weight
45189                                                 based on weight
45195                                                            <NA>
45199                                                            <NA>
45208                                                            pump
45209                                                            <NA>
45210                                                    small amount
45212                                                 based on weight
45216                                                 based on weight
45224                                                            <NA>
45225                                                 based on weight
45236                                                 based on weight
45255                                                            <NA>
45263                                             tablet/pill/capsule
45268                                                     unspecified
45273                                                            <NA>
45280                                                            <NA>
45283                                                 based on weight
45286                                                            <NA>
45294                                                            <NA>
45295                                                            <NA>
45297                                                            <NA>
45298                                                 based on weight
45299                                                 based on weight
45302                                                 based on weight
45305                                                            <NA>
45307                                                     unspecified
45309                                                            <NA>
45310                                                 based on weight
45311                                                 based on weight
45312                                                 based on weight
45313                                                 based on weight
45322                                                            <NA>
45327                                                            <NA>
45335                                                            <NA>
45344                                             tablet/pill/capsule
45345                                             tablet/pill/capsule
45358                                                            <NA>
45359                                                            <NA>
45372                                                    small amount
45383                                                            <NA>
45403                                                            <NA>
45406                                                 based on weight
45411                                                        ointment
45425                     272 mcg ivermectin, 227 mg pyrantel pamoate
45426                                                     unspecified
45434                                                            <NA>
45435                                                            <NA>
45443                                                     combination
45445                                             tablet/pill/capsule
45451                                                 based on weight
45452                                                 based on weight
45463                                                            <NA>
45468                                                            <NA>
45470                                                 based on weight
45471                                                           mg/ml
45476                                                            <NA>
45479                                                            <NA>
45480                                                            <NA>
45484                                                 based on weight
45499                                             tablet/pill/capsule
45500                                             tablet/pill/capsule
45503                                                            <NA>
45504                                             tablet/pill/capsule
45508                                                          1 tube
45531                                                            <NA>
45534                                                            <NA>
45555                                                     unspecified
45556                                                 based on weight
45572                                                            <NA>
45582                                                 based on weight
45585                                             tablet/pill/capsule
45626                                                            <NA>
45642                                                            <NA>
45650                                                 based on weight
45651                                             tablet/pill/capsule
45655                                                 based on weight
45656                                                 based on weight
45663                                                            <NA>
45664                                                 based on weight
45665                                                 based on weight
45667                                                               %
45670                                                            <NA>
45671                                                            <NA>
45675                                                           drops
45676                                                           drops
45683                                                 based on weight
45699                                                            <NA>
45700                                                            <NA>
45704                                                            <NA>
45724                                                            <NA>
45725                                                            <NA>
45726                                                            <NA>
45727                                                            <NA>
45728                                                            <NA>
45729                                                            <NA>
45735                                             tablet/pill/capsule
45736                                                            tube
45751                                                            <NA>
45764                                                            <NA>
45775                                                            <NA>
45776                                                            <NA>
45787                                                 based on weight
45791                                                 based on weight
45798                                                            <NA>
45799                                           1 tablet/pill/capsule
45800                                           1 tablet/pill/capsule
45816                                                          collar
45820                                                 based on weight
45843                                                       as needed
45853                                                        inhalant
45862                                             tablet/pill/capsule
45863                                             tablet/pill/capsule
45864                                             tablet/pill/capsule
45869                                                 based on weight
45872                                           1 tablet/pill/capsule
45876                                                            <NA>
45898                                             tablet/pill/capsule
45899                                                            tube
45901                                    based on weight (50-100 lbs)
45908                                             tablet/pill/capsule
45909                                                            tube
45914                                    based on weight (50-100 lbs)
45924                                                            <NA>
45968                                                            <NA>
45969                                                 based on weight
45970                                                 based on weight
45971                                                            <NA>
45990                                                 based on weight
45994                                                            <NA>
45995                                                    pack/package
45996                                                            <NA>
45997                                                 based on weight
46014                                                      inch strip
46018                                                 based on weight
46019                                                 based on weight
46021                                             tablet/pill/capsule
46022                                             tablet/pill/capsule
46025                                             tablet/pill/capsule
46043                                             tablet/pill/capsule
46044                                             tablet/pill/capsule
46071                                             tablet/pill/capsule
46075                                                            <NA>
46076                                             tablet/pill/capsule
46078                                    based on weight (50-100 lbs)
46085                                                            <NA>
46091                                                 based on weight
46092                                                 based on weight
46094                                                            <NA>
46095                                                            <NA>
46100                                    based on weight (50-100 lbs)
46107                                             tablet/pill/capsule
46108                                                       injection
46110                                                 based on weight
46116                                    based on weight (50-100 lbs)
46119                                                 based on weight
46122                                                 based on weight
46131                                                            <NA>
46132                                                            <NA>
46134                                                    pack/package
46170                                                    small amount
46171                                                    small amount
46173                                                 based on weight
46174                                                 based on weight
46177                                                            <NA>
46186                                                            <NA>
46198                                                 based on weight
46200                                             tablet/pill/capsule
46201                                             tablet/pill/capsule
46202                                                            <NA>
46213                                                          1 tube
46218                                             tablet/pill/capsule
46219                                             tablet/pill/capsule
46227                                                 based on weight
46255                                                    small amount
46265                                                            <NA>
46277                                           1 tablet/pill/capsule
46278                                           1 tablet/pill/capsule
46287                                           1 tablet/pill/capsule
46288                                           1 tablet/pill/capsule
46291                                           1 tablet/pill/capsule
46292                                           1 tablet/pill/capsule
46293                                           1 tablet/pill/capsule
46295                                           1 tablet/pill/capsule
46296                                           1 tablet/pill/capsule
46302                                             tablet/pill/capsule
46303                                                            <NA>
46305                                                            <NA>
46308                                                            <NA>
46311                                                            <NA>
46312                                             tablet/pill/capsule
46313                                                            <NA>
46314                                                            <NA>
46319                                                    small amount
46320                                                            <NA>
46324                                                            <NA>
46325                                                            <NA>
46345                                                            <NA>
46350                                                            <NA>
46355                                                            <NA>
46358                                                            <NA>
46360                                                            pump
46377                                                            pump
46379                                                            <NA>
46399                                             tablet/pill/capsule
46406                                                            3 ml
46410                                                            <NA>
46411                                                            <NA>
46413                                                          collar
46418                                                          collar
46424                                                          collar
46431                                                          collar
46435                                                            <NA>
46436                                                     application
46474                                                 based on weight
46475                                                 based on weight
46476                                                 based on weight
46478                                                 based on weight
46479                                                 based on weight
46482                                    based on weight (50-100 lbs)
46483                                     based on weight (56-95 lbs)
46486                                                 based on weight
46487                                             tablet/pill/capsule
46488                                             tablet/pill/capsule
46489                                             tablet/pill/capsule
46490                                                            <NA>
46493                                                 based on weight
46494                                             tablet/pill/capsule
46499                                                            <NA>
46504                                                            <NA>
46505                                                            <NA>
46506                                                            <NA>
46512                                                            <NA>
46517                                                            <NA>
46521                                                            <NA>
46526                                                            <NA>
46528                                                            <NA>
46530                                                            <NA>
46532                                                            <NA>
46533                                                            <NA>
46544                                                            <NA>
46547                                                            <NA>
46551                                                            <NA>
46553                                                            <NA>
46555                                                           spray
46568                                                            <NA>
46569                                                            <NA>
46570                                                            <NA>
46571                                                            <NA>
46572                                                     combination
46573                                                            <NA>
46574                                                            <NA>
46575                                                            <NA>
46579                                                            <NA>
46588                                                            <NA>
46591                                                            <NA>
46593                                                            <NA>
46606                                                            <NA>
46607                                                            <NA>
46615                                                 based on weight
46616                                                 based on weight
46617                                             tablet/pill/capsule
46618                                                            <NA>
46665                                                            <NA>
46676                                                    small amount
46680                                                            <NA>
46687                                                            <NA>
46690                                                           spray
46694                                                     application
46702                                                           spray
46703                                                        wipe/pad
46716                                                            <NA>
46717                                                            <NA>
46729                                                     combination
46730                                                     combination
46732                                                            <NA>
46737                                                            <NA>
46747                                                            <NA>
46753                                                    small amount
46763                                                            <NA>
46766                                                            <NA>
46767                                                 based on weight
46775                                                 based on weight
46776                                                 based on weight
46777                                                 based on weight
46781                                    based on weight (50-100 lbs)
46782                                    based on weight (60-120 lbs)
46783                                                    small amount
46784                                    based on weight (50-100 lbs)
46785                                    based on weight (60-120 lbs)
46786                                                 based on weight
46788                                           1 tablet/pill/capsule
46789                                           1 tablet/pill/capsule
46804                                                            <NA>
46811                                           1 tablet/pill/capsule
46812                                           1 tablet/pill/capsule
46816                                                 based on weight
46827                                                            <NA>
46849                                                            <NA>
46853                                                            <NA>
46874                                                      inch strip
46880                                                        ointment
46883                                                            <NA>
46884                                           1 tablet/pill/capsule
46885                                           1 tablet/pill/capsule
46889                                                            <NA>
46891                                                  160 mg, 800 mg
46902                                                            <NA>
46903                                                     application
46904                                             tablet/pill/capsule
46905                                                            <NA>
46908                                                           spray
46915                                                        ointment
46931                                                    pack/package
46938                                                    pack/package
46944                                                    pack/package
46961                                                        ointment
46962                                                            <NA>
46972                                           1 tablet/pill/capsule
46973                                           1 tablet/pill/capsule
46976                                                            <NA>
46977                                                               %
46981                                                            <NA>
46982                                                    small amount
46983                                                            <NA>
46984                                                            dose
46985                                                            dose
46986                                                 based on weight
47000                                                            <NA>
47004                                    based on weight (50-100 lbs)
47010                                                 based on weight
47011                                                 based on weight
47018                                                 based on weight
47024                                                 based on weight
47025                                                 based on weight
47041                                                            <NA>
47043                                                 based on weight
47049                                                            <NA>
47060                                                            <NA>
47076                                                            <NA>
47080                                                            <NA>
47081                                                            <NA>
47085                                                 based on weight
47086                                                 based on weight
47090                                                            <NA>
47095                                                 based on weight
47096                                                 based on weight
47097                                                 based on weight
47098                                                     unspecified
47104                                                    small amount
47105                                                    small amount
47106                                                            tube
47125                                                            <NA>
47126                                                            <NA>
47128                                                            <NA>
47137                                                            <NA>
47140                                                            <NA>
47143                                                 based on weight
47146                                                            <NA>
47152                                                            <NA>
47154                                                 based on weight
47155                                           1 tablet/pill/capsule
47156                                           1 tablet/pill/capsule
47162                                                     application
47164                                                           units
47178                                                 based on weight
47180                                                            <NA>
47183                                             tablet/pill/capsule
47184                                             tablet/pill/capsule
47187                                             tablet/pill/capsule
47193                                                 based on weight
47194                                                 based on weight
47196                                                 based on weight
47197                                             tablet/pill/capsule
47204                                                            <NA>
47208                                             tablet/pill/capsule
47209                                           1 tablet/pill/capsule
47210                                           1 tablet/pill/capsule
47220                                                          collar
47221                                                            <NA>
47222                                                           spray
47240                                                            <NA>
47248                                                     unspecified
47251                                                     unspecified
47253                                                 based on weight
47260                                                 based on weight
47302                                                            <NA>
47323                                                            <NA>
47325                                                            <NA>
47334                                                 based on weight
47343                                                            <NA>
47345                                                            <NA>
47350                                                            puff
47355                                                    small amount
47360                                                            <NA>
47390                                                     combination
47407                                                            <NA>
47409                                                            <NA>
47411                                                 based on weight
47412                                           1 tablet/pill/capsule
47415                                           1 tablet/pill/capsule
47416                                                 based on weight
47417                                                 based on weight
47420                                                 based on weight
47421                                                 based on weight
47433                                                            <NA>
47439                                                            <NA>
47451                                                            <NA>
47478                                                 based on weight
47479                                             tablet/pill/capsule
47483                                                    small amount
47484                                                          collar
47486                                                 based on weight
47493                                                 based on weight
47496                                             tablet/pill/capsule
47497                                           1 tablet/pill/capsule
47498                                                          collar
47539                                                            <NA>
47540                                                 moderate amount
47544                                                            <NA>
47547                                                            <NA>
47557                                                          collar
47562                                                 based on weight
47563                                                 based on weight
47576                                                     bottle/vial
47577                                             tablet/pill/capsule
47578                                             tablet/pill/capsule
47586                                             tablet/pill/capsule
47587                                                     bottle/vial
47588                                                     combination
47589                                                            <NA>
47590                                                            <NA>
47592                                                            <NA>
47593                                                            <NA>
47594                                                            <NA>
47595                                                            <NA>
47597                                                            <NA>
47600                                                            <NA>
47628                                                            tube
47629                                                            <NA>
47630                                                            <NA>
47635                                                            <NA>
47636                                                            <NA>
47658                                                            <NA>
47681                                             tablet/pill/capsule
47684                                                           spray
47693                                                        wipe/pad
47694                                                          powder
47696                                             tablet/pill/capsule
47698                                                        wipe/pad
47699                                                          powder
47702                                                            <NA>
47706                                                            <NA>
47715                                                            <NA>
47716                                                            <NA>
47720                                                    small amount
47721                                                            <NA>
47733                                                 based on weight
47734                                                            <NA>
47739                                                            <NA>
47743                                                            <NA>
47744                                             tablet/pill/capsule
47745                                                            <NA>
47746                                                            <NA>
47752                                                          1 tube
47755                                                          1 tube
47760                                           1 tablet/pill/capsule
47800                                             tablet/pill/capsule
47801                                                     application
47802                                             tablet/pill/capsule
47803                                                    small amount
47808                                                 based on weight
47810                                                 based on weight
47811                                                 based on weight
47812                                                 based on weight
47815                                                 based on weight
47816                                                 based on weight
47817                                                     unspecified
47825                                                            <NA>
47835                                           1 tablet/pill/capsule
47836                                                 based on weight
47840                                           23 mg, 228 mg, 460 mg
47860                                                            <NA>
47861                                                            <NA>
47863                                                            <NA>
47877                                                            <NA>
47887                                                 based on weight
47888                                                 based on weight
47889                                                            <NA>
47890                                                            <NA>
47891                                                            <NA>
47894                                                            <NA>
47900                                                    small amount
47909                                                            <NA>
47910                                                            <NA>
47951                                                            <NA>
47952                                                            <NA>
47953                                                           spray
47969                                                 based on weight
47970                                                 based on weight
47971                                                 based on weight
47975                                             tablet/pill/capsule
47976                                           1 tablet/pill/capsule
47981                                                 based on weight
47983                                                            <NA>
47984                                                 based on weight
47985                                                 based on weight
47989                                                 based on weight
47990                                                 based on weight
47995                                                    small amount
47996                                    based on weight (50-100 lbs)
47997                                    based on weight (60-120 lbs)
47998                                                            <NA>
48000                                                            <NA>
48001                                                            <NA>
48002                                                            <NA>
48003                                                            <NA>
48004                                                            <NA>
48005                                                            <NA>
48007                                                            <NA>
48013                                                 based on weight
48014                                                 based on weight
48016                                                            <NA>
48020                                           1 tablet/pill/capsule
48021                                           1 tablet/pill/capsule
48028                                           1 tablet/pill/capsule
48029                                           1 tablet/pill/capsule
48030                                           1 tablet/pill/capsule
48031                                        2 tablets/pills/capsules
48034                                                        0.25 tsp
48035                                               0.25 pack/package
48040                                             tablet/pill/capsule
48041                                                            <NA>
48046                                           1 tablet/pill/capsule
48047                                           1 tablet/pill/capsule
48048                                           1 tablet/pill/capsule
48049                                             tablet/pill/capsule
48069                                                     unspecified
48072                                                    small amount
48087                                             tablet/pill/capsule
48088                                             tablet/pill/capsule
48089                                                            <NA>
48090                                                            <NA>
48094                                                            <NA>
48100                                                      inch strip
48101                                                            <NA>
48102                                             tablet/pill/capsule
48103                                                            <NA>
48105                                             tablet/pill/capsule
48106                                                    small amount
48107                                                    small amount
48108                                                    small amount
48109                                             tablet/pill/capsule
48110                                                          collar
48114                                                    small amount
48120                                             tablet/pill/capsule
48121                                                            <NA>
48127                                             tablet/pill/capsule
48131                                                            <NA>
48132                                             tablet/pill/capsule
48133                                             tablet/pill/capsule
48142                                             tablet/pill/capsule
48143                                                            <NA>
48147                                             tablet/pill/capsule
48148                                             tablet/pill/capsule
48151                                             tablet/pill/capsule
48152                                             tablet/pill/capsule
48155                                                            <NA>
48157                                             tablet/pill/capsule
48158                                             tablet/pill/capsule
48159                                           1 tablet/pill/capsule
48160                                           1 tablet/pill/capsule
48163                                                            <NA>
48167                                             tablet/pill/capsule
48169                                                            <NA>
48182                                                     combination
48185                                                            <NA>
48188                                                    small amount
48201                                                            <NA>
48213                                                          liquid
48214                                             tablet/pill/capsule
48215                                             tablet/pill/capsule
48217                                                            <NA>
48220                                                     unspecified
48221                                                     unspecified
48222                                                     unspecified
48231                                                            <NA>
48237                                                      inch strip
48238                                                            <NA>
48240                                                            <NA>
48248                                                            <NA>
48251                                                 based on weight
48252                                                 based on weight
48258                                           1 tablet/pill/capsule
48265                                                            <NA>
48266                                                            <NA>
48267                                                            <NA>
48271                                                            <NA>
48274                                                            <NA>
48277                                                            <NA>
48285                                                            <NA>
48287                                                            <NA>
48288                                                            <NA>
48289                                                            <NA>
48291                                                            <NA>
48292                                                            <NA>
48294                                                        ointment
48297                                             tablet/pill/capsule
48298                                             tablet/pill/capsule
48299                                                        ointment
48300                                             tablet/pill/capsule
48306                                                 based on weight
48307                                                            <NA>
48310                                                 based on weight
48314                                                            <NA>
48322                                                   5 billion cfu
48327                                                            <NA>
48328                                                            <NA>
48334                                                            <NA>
48336                                                            <NA>
48337                                                            <NA>
48338                                                            <NA>
48339                                                            <NA>
48342                                                            <NA>
48343                                                           spray
48344                                                            <NA>
48345                                                     application
48350                                                            <NA>
48351                                                            <NA>
48352                                                            <NA>
48353                                                            <NA>
48354                                                            <NA>
48355                                                               %
48376                                                            <NA>
48380                                             tablet/pill/capsule
48381                                             tablet/pill/capsule
48383                                             tablet/pill/capsule
48384                                             tablet/pill/capsule
48394                                                            <NA>
48406                                             tablet/pill/capsule
48420                                                            <NA>
48438                                                            <NA>
48439                                             tablet/pill/capsule
48441                                             tablet/pill/capsule
48442                                             tablet/pill/capsule
48444                                           1 tablet/pill/capsule
48447                                                 based on weight
48448                                                 based on weight
48481                                                            <NA>
48483                                                            <NA>
48494                                             tablet/pill/capsule
48495                                                            <NA>
48496                                                            <NA>
48497                                                            <NA>
48498                                                            <NA>
48500                                                            <NA>
48502                                                            <NA>
48504                                                            <NA>
48505                                                            <NA>
48513                                             tablet/pill/capsule
48540                                                            <NA>
48541                                             tablet/pill/capsule
48542                                             tablet/pill/capsule
48598                                             tablet/pill/capsule
48602                                                            <NA>
48610                                                            <NA>
48611                                                            <NA>
48615                                                            <NA>
48621                                                    small amount
48624                                                           spray
48633                                                            <NA>
48636                                                              2%
48643                                             tablet/pill/capsule
48661                                             tablet/pill/capsule
48664                                           1 tablet/pill/capsule
48667                                           1 tablet/pill/capsule
48668                                                   1 application
48673                                                            <NA>
48680                                             tablet/pill/capsule
48683                                                 based on weight
48684                                                 based on weight
48692                                                            <NA>
48693                                                            <NA>
48694                                                            <NA>
48696                                                 based on weight
48697                                                 based on weight
48698                                                 based on weight
48712                                           1 tablet/pill/capsule
48713                                           1 tablet/pill/capsule
48718                                                            <NA>
48719                                                            <NA>
48720                                    based on weight (50-100 lbs)
48721                                                 based on weight
48722                                                          collar
48724                                             tablet/pill/capsule
48725                                                          collar
48729                                             tablet/pill/capsule
48733                                             tablet/pill/capsule
48734                                           1 tablet/pill/capsule
48735                                           1 tablet/pill/capsule
48736                                                          collar
48770                                                            <NA>
48782                                                            <NA>
48802                                                            <NA>
48806                                                            <NA>
48808                                                            <NA>
48812                                                            <NA>
48819                                                            <NA>
48821                                                            <NA>
48845                                                 based on weight
48855                                                            <NA>
48859                                                            <NA>
48862                                                            <NA>
48889                                                    pack/package
48890                                             tablet/pill/capsule
48891                                             tablet/pill/capsule
48892                                                        ointment
48894                                                            <NA>
48902                                                    small amount
48906                                                    small amount
48918                                    based on weight (50-100 lbs)
48935                                    based on weight (50-100 lbs)
48946                                                            <NA>
48994                                                            <NA>
48997                                                            <NA>
49002                                                            <NA>
49005                                                            <NA>
49012                                                     application
49016                                                            <NA>
49017                                                            <NA>
49018                                                            <NA>
49025                                                            <NA>
49026                                                            <NA>
49033                                             tablet/pill/capsule
49034                                             tablet/pill/capsule
49035                                             tablet/pill/capsule
49036                                                     unspecified
49042                                                     unspecified
49044                                                     unspecified
49046                                                     unspecified
49051                                                            <NA>
49052                                                            <NA>
49082                                                 based on weight
49084                                                 based on weight
49096                                                 based on weight
49105                                                            <NA>
49113                                                    small amount
49117                                                            <NA>
49120                                                            <NA>
49123                                             tablet/pill/capsule
49127                                                            <NA>
49128                                    based on weight (50-100 lbs)
49129                                    based on weight (60-120 lbs)
49130                                                    small amount
49163                                                            <NA>
49164                                                 based on weight
49167                                                            <NA>
49168                                                            <NA>
49169                                                            <NA>
49170                                                            <NA>
49184                                                     application
49193                                                            <NA>
49196                                                            <NA>
49208                                             tablet/pill/capsule
49209                                             tablet/pill/capsule
49216                                             tablet/pill/capsule
49217                                             tablet/pill/capsule
49218                        27 mg milbemycin oxime, 1620 mg spinosad
49219                                                            <NA>
49220                                                            <NA>
49227                                                    small amount
49229                                                    small amount
49231                                                    small amount
49232                                                  0.5 inch strip
49248                                                            <NA>
49252                                           1 tablet/pill/capsule
49253                                           1 tablet/pill/capsule
49316                                             tablet/pill/capsule
49323                                                          1 tube
49324                                           1 tablet/pill/capsule
49343                                             tablet/pill/capsule
49346                                                 based on weight
49348                                                 based on weight
49350                                             tablet/pill/capsule
49351                                             tablet/pill/capsule
49352                                                 based on weight
49372                                                            <NA>
49376                                             tablet/pill/capsule
49377                                                            tube
49378                                             tablet/pill/capsule
49379                                                          1 tube
49388                        460 mg lufenuron, 23 mg milbemycin oxime
49393                                                            <NA>
49394                                                            <NA>
49395                                                            <NA>
49398                                                            <NA>
49403                                                            <NA>
49404                                                            <NA>
49408                                             tablet/pill/capsule
49409                                             tablet/pill/capsule
49437                                             tablet/pill/capsule
49438                                             tablet/pill/capsule
49442                                             tablet/pill/capsule
49460                                                 based on weight
49461                                                 based on weight
49462                                                            <NA>
49463                                                 based on weight
49473                                                 based on weight
49509                                                     bottle/vial
49510                                             tablet/pill/capsule
49518                                                            <NA>
49520                                                            <NA>
49523                                                            <NA>
49526                                                    small amount
49531                                                            <NA>
49549                                                 based on weight
49550                                                 based on weight
49553                                                            <NA>
49554                                                            <NA>
49567                                                 based on weight
49568                                                        inhalant
49569                                    based on weight (50-100 lbs)
49572                                                 based on weight
49588                                                            <NA>
49590                                                 based on weight
49591                                                 based on weight
49592                                             tablet/pill/capsule
49593                                                 based on weight
49596                                                            tube
49601                                                            <NA>
49605                                             tablet/pill/capsule
49607                                                            <NA>
49608                                                            <NA>
49645                                                 based on weight
49649                                                 0.25 inch strip
49654                                                 0.25 inch strip
49659                                                      inch strip
49698                                                            <NA>
49699                                                          1 tube
49705                                                            <NA>
49731                                                     unspecified
49748                                     based on weight (21-55 lbs)
49753                                                            <NA>
49754                                                            <NA>
49755                                                            <NA>
49756                                                            <NA>
49757                                                            <NA>
49758                                                            <NA>
49766                                                            <NA>
49767                                                     application
49768                                             tablet/pill/capsule
49769                                                    small amount
49773                                                        ointment
49792                                                 based on weight
49793                                                 based on weight
49799                                                            <NA>
49812                                                            <NA>
49820                                    based on weight (50-100 lbs)
49821                                     based on weight (24-60 lbs)
49845                                                            <NA>
49846                                                            <NA>
49849                                                     application
49852                                                   5 billion cfu
49854                                                    pack/package
49855                                                 based on weight
49857                                                            <NA>
49861                                                 based on weight
49862                                                 based on weight
49871                                                        222 mg/g
49878                                                 based on weight
49883                                                    pack/package
49886                                                 based on weight
49889                                             tablet/pill/capsule
49890                                                     application
49898                                                        222 mg/g
49905                                                 based on weight
49906                                                 based on weight
49907                                                 based on weight
49908                                                 based on weight
49911                                             tablet/pill/capsule
49912                                                     application
49963                                                            <NA>
49966                                                            <NA>
49978                                                 based on weight
49985                                           1 tablet/pill/capsule
49986                                                   1 bottle/vial
49987                                           1 tablet/pill/capsule
49990                                                  1 pack/package
49991                                                 based on weight
49992                                                           drops
49993                                           1 tablet/pill/capsule
49996                                                     unspecified
50000                                             tablet/pill/capsule
50001                                    based on weight (50-100 lbs)
50004                                                 based on weight
50006                                                 based on weight
50007                                                         2 pumps
50008                                                 based on weight
50009                                                 based on weight
50011                                                            <NA>
50012                                                            <NA>
50014                                                            <NA>
50029                                                            <NA>
50033                                                            <NA>
50048                                                            <NA>
50050                                                            <NA>
50077                                                            <NA>
50107                                                 based on weight
50108                                                 based on weight
50115                                             tablet/pill/capsule
50116                                             tablet/pill/capsule
50117                                                 based on weight
50118                                                            <NA>
50154                                                            <NA>
50159                                                            <NA>
50161                                                            <NA>
50187                                                 based on weight
50189                                                 based on weight
50190                                                 based on weight
50194                                                 based on weight
50195                                                 based on weight
50196                                                 based on weight
50198                                           1 tablet/pill/capsule
50199                                                            dose
                                                                                              dose_original
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
242                                                                                           1 tube - 1 ml
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
610                                                                                            small amount
619                                                                                             unspecified
637                                                                                         based on weight
642                                                                                            small amount
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
734                                                                                         0.25 inch strip
738                                                                                             unspecified
739                                                                                             unspecified
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
757                                                                            based on weight (51-100 lbs)
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
921                                                                            based on weight (51-100 lbs)
950                                                                                   1 tablet/pill/capsule
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
977                                                                                             application
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1091                                                                                           small amount
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1285                                                                                            unspecified
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1346                                                                                        moderate amount
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1491                                                                                  1 tablet/pill/capsule
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1692                                                                                        moderate amount
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1720                                                                           based on weight (51-100 lbs)
1730                                                                                  1 tablet/pill/capsule
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2050                                                                           based on weight (51-100 lbs)
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2123                                                                                  1 tablet/pill/capsule
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2224                                                                                            unspecified
2226                                                                                            unspecified
2229                                                                                            unspecified
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2250                                                                                            unspecified
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2409                                                                           based on weight (51-100 lbs)
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2486                                                                                            as directed
2487                                                                                            as directed
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2599                                                                                            unspecified
2600                                                                                            unspecified
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2815                                                                                               300, 600
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2869                                                                                  1 tablet/pill/capsule
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3095                                                                               2 tablets/pills/capsules
3110                                                                                           small amount
3119                                                                                            as directed
3147                                                                                            unspecified
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3257                                                                           based on weight (50-100 lbs)
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3421                                                                                            unspecified
3422                                                                                                  drops
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3619                                                                                                23, 228
3622                                                                                           pack/package
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3635                                                                            based on weight (44-88 lbs)
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3815                                                                                        based on weight
3829                                                                                           small amount
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3838                                                                           based on weight (60-120 lbs)
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3903                                                                           based on weight (51-100 lbs)
3906                                                                           based on weight (51-100 lbs)
3911                                                                           based on weight (51-100 lbs)
3938                                                                           based on weight (51-100 lbs)
3943                                                                           based on weight (51-100 lbs)
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3984                                                                           based on weight (51-100 lbs)
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4045                                                                                  1 tablet/pill/capsule
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4095                                                                                  1 tablet/pill/capsule
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4266                                                                                            as directed
4274                                                                                            unspecified
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4497                                                                           based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4611                                                                                               27, 1620
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4695                                                                           based on weight (50-110 lbs)
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4760                                                                                  1 tablet/pill/capsule
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4996                                                                                            unspecified
4998                                                                                            unspecified
5043                                                                                                  spray
5046                                                                                                  spray
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5191                                                                                               27, 1620
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5649                                                                                          5 billion cfu
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5747                                                                                        based on weight
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5777                                                                                            unspecified
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5930                                                                           based on weight (51-100 lbs)
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5967                                                                                       460 mg lufenuron
5976                                                                                            as directed
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6059                                                                           based on weight (51-100 lbs)
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6071                                                                                            unspecified
6072                                                                                        based on weight
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6090                                                                                        0.25 inch strip
6093                                                                                            unspecified
6095                                                                                             1-2 sprays
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6161                                                                                                23, 460
6164                                                                                           small amount
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6254                                                                                  1 tablet/pill/capsule
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6331                                                                           based on weight (51-100 lbs)
6341                                                                                  1 tablet/pill/capsule
6343                                                                                  1 tablet/pill/capsule
6358                                                                                            unspecified
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6565                                                                                  1 tablet/pill/capsule
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6650                                                                                            application
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6986                                                                                            unspecified
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7017                                                                            based on weight (44-88 lbs)
7021                                                                            based on weight (44-88 lbs)
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7030                                                                                  1 tablet/pill/capsule
7042                                                                                           small amount
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7067                                                                                  1 tablet/pill/capsule
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7291                                                                            based on weight (44-88 lbs)
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7551                                                                                  1 tablet/pill/capsule
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7839                                                                                            application
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7883                                                                                            unspecified
7884                                                                                            unspecified
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8215                                                                           based on weight (89-132 lbs)
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8238                                                                                           small amount
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8337                                                                                            unspecified
8338                                                                                            unspecified
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8454                                                                           based on weight (50-100 lbs)
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8509                                                                                    tablet/pill/capsule
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8541                                                                                                  spray
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8694                                                                            based on weight (45-88 lbs)
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9060                                                                                            unspecified
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                           based on weight (51-100 lbs)
9187                                                                                            application
9189                                                                                  1 tablet/pill/capsule
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9230                                                                                           small amount
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9244                                                                                            unspecified
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9271                                                                                            unspecified
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9635                                                                                               27, 1620
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9800                                                                                  1 tablet/pill/capsule
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9821                                                                                         1 pack/package
9826                                                                                           1 inch strip
9828                                                                                               5-7.5 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9968                                                                              based on weight (55+ lbs)
9970                                                                                           small amount
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10151                                                                                           unspecified
10167                                                                          based on weight (51-100 lbs)
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10316                                                                                 1 tablet/pill/capsule
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10653                                                                                 1 tablet/pill/capsule
10655                                                                          based on weight (51-100 lbs)
10667                                                                          based on weight (51-100 lbs)
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10901                                                                                           application
10905                                                                                           application
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11085                                                                                           unspecified
11088                                                                                           unspecified
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11224                                                                                           unspecified
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11233                                                                                 1 tablet/pill/capsule
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11301                                                                                 1 tablet/pill/capsule
11305                                                                                 1 tablet/pill/capsule
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11356                                                                                           unspecified
11360                                                                                           unspecified
11368                                                                          based on weight (50-100 lbs)
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11477                                                                          based on weight (51-100 lbs)
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11564                                                                                 1 tablet/pill/capsule
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11627                                                                                 1 tablet/pill/capsule
11630                                                                                 1 tablet/pill/capsule
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11664                                                                          based on weight (88-123 lbs)
11666                                                                                           application
11667                                                                                           application
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11735                                                                          based on weight (51-100 lbs)
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11802                                                                                               23, 460
11806                                                                                           unspecified
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12271                                                                           based on weight (45-88 lbs)
12273                                                                                          small amount
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12394                                                                                           unspecified
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12402                                                                          based on weight (51-100 lbs)
12406                                                                                 1 tablet/pill/capsule
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12466                                                                                 1 tablet/pill/capsule
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12514                                                                                             6-8 drops
12516                                                                          based on weight (51-100 lbs)
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12608                                                                                         23 mg, 228 mg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12784                                                                                        1 pack/package
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12836                                                                          based on weight (60-120 lbs)
12849                                                                                                 drops
12850                                                                                                 drops
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12945                                                                          based on weight (51-100 lbs)
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12952                                                                          based on weight (51-100 lbs)
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12994                                                                             based on weight (55+ lbs)
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13233                                                                                           unspecified
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13666                                                                                           application
13693                                                                          based on weight (60-120 lbs)
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13768                                                                                           application
13769                                                                                                 spray
13776                                                                             based on weight (50+ lbs)
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13796                                                                                            1 wipe/pad
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13902                                                                                           unspecified
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13910                                                                        based on weight (50.1-100 lbs)
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14123                                                                                                   1 l
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14170                                                                                          small amount
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14245                                                                           based on weight (22-44 lbs)
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14291                                                                                           unspecified
14297                                                                                 1 tablet/pill/capsule
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14373                                                                                       based on weight
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14406                                                                                 1 tablet/pill/capsule
14408                                                                          based on weight (51-100 lbs)
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14547                                                                                 1 tablet/pill/capsule
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14760                                                                          based on weight (51-100 lbs)
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14878                                                                                           unspecified
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14899                                                                                           unspecified
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14978                                                                                 1 tablet/pill/capsule
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15102                                                                                          small amount
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15170                                                                                 1 tablet/pill/capsule
15179                                                                           based on weight (25-75 lbs)
15196                                                                                           application
15197                                                                                          small amount
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15319                                                                                 1 tablet/pill/capsule
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15448                                                                                 1 tablet/pill/capsule
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15524                                                                                 1 tablet/pill/capsule
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15699                                                                                 1 tablet/pill/capsule
15701                                                                                           unspecified
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15917                                                                                           unspecified
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15933                                                                                               2000 iu
15935                                                                                      0.5 pack/package
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16036                                                                          based on weight (51-100 lbs)
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16153                                                                                 1 tablet/pill/capsule
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16553                                                                        based on weight (50.1-100 lbs)
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16639                                                                          based on weight (51-100 lbs)
16657                                                                                             6-8 drops
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16918                                                                                           unspecified
16929                                                                                 1 tablet/pill/capsule
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17042                                                                        based on weight (50.1-100 lbs)
17053                                                                                 1 tablet/pill/capsule
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17209                                                                                           unspecified
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17239                                                                          based on weight (50-100 lbs)
17248                                                                                 1 tablet/pill/capsule
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17266                                                                                 1 tablet/pill/capsule
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17426                                                                                           unspecified
17427                                                                                           unspecified
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17588                                                                                                 spray
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17659                                                                          based on weight (50-100 lbs)
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17742                                                                                           application
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18124                                                                             based on weight (50+ lbs)
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18165                                                                                          small amount
18188                                                                                 1 tablet/pill/capsule
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18220                                                                                 1 tablet/pill/capsule
18222                                                                                 1 tablet/pill/capsule
18238                                                                                           unspecified
18251                                                                                                powder
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18344                                                                          based on weight (51-100 lbs)
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18469                                                                                       0.25 inch strip
18471                                                                                           application
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18514                                                                           based on weight (21-55 lbs)
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18847                                                                                       based on weight
18850                                                                                       based on weight
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18882                                                                                           application
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18933                                                                                           unspecified
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18970                                                                                 1 tablet/pill/capsule
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19025                                                                                 1 tablet/pill/capsule
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19537                                                                                       based on weight
19596                                                                          based on weight (51-100 lbs)
19603                                                                           based on weight (40-60 lbs)
19617                                                                                       2.68 ml of 9.8%
19641                                                                                           unspecified
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19856                                                                        based on weight (50.1-100 lbs)
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20024                                                                                 1 tablet/pill/capsule
20025                                                                                 1 tablet/pill/capsule
20026                                                                                 1 tablet/pill/capsule
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20038                                                                                 1 tablet/pill/capsule
20039                                                                                 1 tablet/pill/capsule
20065                                                                                           unspecified
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20182                                                                                          small amount
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20251                                                                                          pack/package
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20315                                                                                           unspecified
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20441                                                                                           application
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20582                                                                                 1 tablet/pill/capsule
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20638                                                                                       2.68 ml of 9.8%
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20728                                                                                           unspecified
20738                                                                                              tapering
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20941                                                                                 1 tablet/pill/capsule
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21088                                                                                           unspecified
21102                                                                           based on weight (40-80 lbs)
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21125                                                                                          small amount
21126                                                                                 1 tablet/pill/capsule
21127                                                                          based on weight (51-100 lbs)
21128                                                                                 1 tablet/pill/capsule
21129                                                                                 1 tablet/pill/capsule
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21183                                                                                 1 tablet/pill/capsule
21189                                                                                 1 tablet/pill/capsule
21190                                                                          based on weight (60-120 lbs)
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21331                                                                                           unspecified
21338                                                                             based on weight (55+ lbs)
21359                                                                                               23, 460
21361                                                                                               23, 460
21369                                                                          based on weight (51-100 lbs)
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21545                                                                                 1 tablet/pill/capsule
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21555                                                                                           unspecified
21558                                                                                               23, 460
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21605                                                                             based on weight (55+ lbs)
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21632                                                                                           unspecified
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21727                                                                                           unspecified
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21767                                                                                           unspecified
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21914                                                                                 1 tablet/pill/capsule
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21957                                                                                 1 tablet/pill/capsule
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22020                                                                                           as directed
22023                                                                          based on weight (51-100 lbs)
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22196                                                                                          small amount
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22314                                                                                 1 tablet/pill/capsule
22315                                                                                          pack/package
22316                                                                                               23, 460
22319                                                                                 1 tablet/pill/capsule
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22459                                                                                           unspecified
22463                                                                                           unspecified
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22733                                                                                                collar
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22955                                                                                 1 tablet/pill/capsule
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22967                                                                                 1 tablet/pill/capsule
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22991                                                                                 1 tablet/pill/capsule
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23025                                                                                 1 tablet/pill/capsule
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23066                                                                          based on weight (51-100 lbs)
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23388                                                                          based on weight (51-100 lbs)
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23456                                                                                                 spray
23472                                                                           based on weight (21-55 lbs)
23482                                                                           based on weight (55-90 lbs)
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23507                                                                          based on weight (51-100 lbs)
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23557                                                                          based on weight (51-100 lbs)
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23590                                                                                           unspecified
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23865                                                                                 1 tablet/pill/capsule
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23924                                                                                 1 tablet/pill/capsule
23925                                                                                 1 tablet/pill/capsule
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24068                                                                                           unspecified
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24250                                                                                 1 tablet/pill/capsule
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24261                                                                                 1 tablet/pill/capsule
24265                                                                                 1 tablet/pill/capsule
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24393                                                                          based on weight (51-100 lbs)
24394                                                                                 1 tablet/pill/capsule
24395                                                                                 1 tablet/pill/capsule
24400                                                                          based on weight (50-100 lbs)
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24409                                                                                                  bath
24410                                                                                 1 tablet/pill/capsule
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24435                                                                          based on weight (50-100 lbs)
24437                                                                          based on weight (60-120 lbs)
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24484                                                                                 1 tablet/pill/capsule
24486                                                                                           unspecified
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24647                                                                                           unspecified
24648                                                                                           application
24653                                                                                       moderate amount
24660                                                                                       based on weight
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24839                                                                                 1 tablet/pill/capsule
24840                                                                                 1 tablet/pill/capsule
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24898                                                                                                powder
24902                                                                          based on weight (51-100 lbs)
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25004                                                                                 1 tablet/pill/capsule
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                                                          based on weight (51-100 lbs)
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25101                                                                                 1 tablet/pill/capsule
25102                                                                                 1 tablet/pill/capsule
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25309                                                                                 1 tablet/pill/capsule
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25331                                                                                 1 tablet/pill/capsule
25337                                                                                 1 tablet/pill/capsule
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25367                                                                                           unspecified
25390                                                                                 1 tablet/pill/capsule
25391                                                                                 1 tablet/pill/capsule
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25501                                                                          based on weight (51-100 lbs)
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25725                                                                                              5 x 10^7
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25826                                                                                 1 tablet/pill/capsule
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25846                                                                          based on weight (88-123 lbs)
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25967                                                                                 1 tablet/pill/capsule
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26165                                                                                       based on weight
26166                                                                                       based on weight
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26214                                                                                       based on weight
26215                                                                                       based on weight
26227                                                                                           unspecified
26229                                                                                           unspecified
26238                                                                                 1 tablet/pill/capsule
26239                                                                                 1 tablet/pill/capsule
26258                                                                                           application
26264                                                                                 1 tablet/pill/capsule
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26287                                                                          based on weight (50-100 lbs)
26295                                                                          based on weight (60-121 lbs)
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26505                                                                                           as directed
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26583                                                                                           unspecified
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26594                                                                                 1 tablet/pill/capsule
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26652                                                                                 1 tablet/pill/capsule
26654                                                                                 1 tablet/pill/capsule
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26673                                                                                 1 tablet/pill/capsule
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26680                                                                                 1 tablet/pill/capsule
26681                                                                                 1 tablet/pill/capsule
26682                                                                                 1 tablet/pill/capsule
26683                                                                                 1 tablet/pill/capsule
26684                                                                                 1 tablet/pill/capsule
26685                                                                                 1 tablet/pill/capsule
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26760                                                                          based on weight (51-100 lbs)
26769                                                                          based on weight (50-100 lbs)
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26826                                                                                 1 tablet/pill/capsule
26827                                                                                          small amount
26828                                                                                 1 tablet/pill/capsule
26829                                                                                 1 tablet/pill/capsule
26830                                                                                           1 injection
26831                                                                                           1 injection
26833                                                                                              17 ml/lb
26837                                                                                          pack/package
26839                                                                                           application
26840                                                                                 1 tablet/pill/capsule
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26864                                                                                 1 tablet/pill/capsule
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27082                                                                                           as directed
27085                                                                                 1 tablet/pill/capsule
27092                                                                                        1 pack/package
27095                                                                                                 drops
27096                                                                                 1 tablet/pill/capsule
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27140                                                                                          small amount
27158                                                                                          small amount
27163                                                                                 1 tablet/pill/capsule
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27529                                                                          based on weight (51-100 lbs)
27589                                                                                              27, 1620
27594                                                                          based on weight (60-120 lbs)
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27654                                                                                 1 tablet/pill/capsule
27657                                                                                 1 tablet/pill/capsule
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27878                                                                                           unspecified
27880                                                                                           unspecified
27886                                                                          based on weight (51-100 lbs)
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28008                                                                                        1 pack/package
28010                                                                                        1 pack/package
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28018                                                                                       based on weight
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28144                                                                          based on weight (51-100 lbs)
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28404                                                                           based on weight (40-60 lbs)
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28483                                                                                 1 tablet/pill/capsule
28484                                                                                       moderate amount
28486                                                                                          small amount
28488                                                                                 1 tablet/pill/capsule
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28605                                                                                                collar
28606                                                                                 1 tablet/pill/capsule
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28611                                                                                 1 tablet/pill/capsule
28612                                                                                 1 tablet/pill/capsule
28614                                                                                 1 tablet/pill/capsule
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28630                                                                                 1 tablet/pill/capsule
28631                                                                                 1 tablet/pill/capsule
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28681                                                                                 1 tablet/pill/capsule
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28710                                                                                           unspecified
28714                                                                                          small amount
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28897                                                                          based on weight (51-100 lbs)
28899                                                                          based on weight (50-100 lbs)
28904                                                                          based on weight (51-100 lbs)
28907                                                                         based on weight (24.1-60 lbs)
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28983                                                                                 1 tablet/pill/capsule
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
28999                                                                                 1 tablet/pill/capsule
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29037                                                                                 1 tablet/pill/capsule
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29080                                                                                 1 tablet/pill/capsule
29081                                                                                       0.25 inch strip
29082                                                                                 1 tablet/pill/capsule
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29098                                                                                                    ml
29099                                                                                                    ml
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29151                                                                           based on weight (40-88 lbs)
29153                                                                                           unspecified
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29293                                                                                 1 tablet/pill/capsule
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29499                                                                                 1 tablet/pill/capsule
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29580                                                                          based on weight (51-100 lbs)
29588                                                                          based on weight (51-100 lbs)
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29764                                                                                           unspecified
29765                                                                                           unspecified
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29794                                                                                           unspecified
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29858                                                                                           unspecified
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29933                                                                                 1 tablet/pill/capsule
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30274                                                                          based on weight (51-100 lbs)
30277                                                                          based on weight (51-100 lbs)
30286                                                                          based on weight (51-100 lbs)
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30355                                                                                          small amount
30357                                                                                                 spray
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30366                                                                                 1 tablet/pill/capsule
30367                                                                                 1 tablet/pill/capsule
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30385                                                                          based on weight (51-100 lbs)
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30536                                                                                             4-5 drops
30555                                                                                 1 tablet/pill/capsule
30556                                                                                 1 tablet/pill/capsule
30590                                                                           based on weight (40-60 lbs)
30604                                                                         based on weight (40-60.1 lbs)
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30765                                                                                 1 tablet/pill/capsule
30766                                                                                 1 tablet/pill/capsule
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30793                                                                                 1 tablet/pill/capsule
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30803                                                                                           unspecified
30813                                                                          based on weight (51-100 lbs)
30815                                                                                 1 tablet/pill/capsule
30816                                                                                 1 tablet/pill/capsule
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30961                                                                                 1 tablet/pill/capsule
30962                                                                                 1 tablet/pill/capsule
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31105                                                                          based on weight (51-100 lbs)
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31139                                                                        based on weight (60.1-121 lbs)
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31199                                                                                 1 tablet/pill/capsule
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31265                                                                                       based on weight
31268                                                                                           as directed
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31389                                                                                 1 tablet/pill/capsule
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31602                                                                          based on weight (51-100 lbs)
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31640                                                                                          small amount
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31680                                                                          based on weight (51-100 lbs)
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31765                                                                                 1 tablet/pill/capsule
31766                                                                                 1 tablet/pill/capsule
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31810                                                                                 1 tablet/pill/capsule
31819                                                                                 1 tablet/pill/capsule
31824                                                                                 1 tablet/pill/capsule
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31843                                                                                       based on weight
31844                                                                                       based on weight
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31898                                                                          based on weight (60-121 lbs)
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31945                                                                                 1 tablet/pill/capsule
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
32002                                                                          based on weight (51-100 lbs)
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32059                                                                                 1 tablet/pill/capsule
32060                                                                                 1 tablet/pill/capsule
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32104                                                                                 1 tablet/pill/capsule
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32132                                                                                 1 tablet/pill/capsule
32133                                                                                 1 tablet/pill/capsule
32134                                                                                 1 tablet/pill/capsule
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32222                                                                        based on weight (50.1-100 lbs)
32231                                                                                 1 tablet/pill/capsule
32232                                                                                 1 tablet/pill/capsule
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32295                                                                                 1 tablet/pill/capsule
32296                                                                                 1 tablet/pill/capsule
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32370                                                                                           unspecified
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32417                                                                                 1 tablet/pill/capsule
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32511                                                                                 1 tablet/pill/capsule
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32633                                                                                           unspecified
32635                                                                                           application
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32694                                                                                                 spray
32698                                                                          based on weight (60-120 lbs)
32703                                                                                 1 tablet/pill/capsule
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32768                                                                                 1 tablet/pill/capsule
32769                                                                              based on weight (54 lbs)
32770                                                                                 1 tablet/pill/capsule
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32999                                                                          based on weight (51-100 lbs)
33004                                                                          based on weight (51-100 lbs)
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33015                                                                              based on weight (30 lbs)
33023                                                                                       based on weight
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33078                                                                          based on weight (51-100 lbs)
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33124                                                                                          small amount
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33497                                                                                 1 tablet/pill/capsule
33499                                                                                           unspecified
33500                                                                                 1 tablet/pill/capsule
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33614                                                                                           unspecified
33641                                                                                 1 tablet/pill/capsule
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33683                                                                                 1 tablet/pill/capsule
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33702                                                                                           unspecified
33706                                                                                               23, 460
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33739                                                                                 1 tablet/pill/capsule
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33907                                                                                                 spray
33911                                                                           based on weight (44-88 lbs)
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33939                                                                                          small amount
33940                                                                                          small amount
33987                                                                                 1 tablet/pill/capsule
33991                                                                                          small amount
33992                                                                                 1 tablet/pill/capsule
33993                                                                                 1 tablet/pill/capsule
33994                                                                                           application
33995                                                                                 1 tablet/pill/capsule
33998                                                                                          small amount
34000                                                                                 1 tablet/pill/capsule
34002                                                                                 1 tablet/pill/capsule
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34016                                                                                           unspecified
34022                                                                                           unspecified
34024                                                                                           unspecified
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34043                                                                          based on weight (50-100 lbs)
34046                                                                           based on weight (44-88 lbs)
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34111                                                                          based on weight (51-100 lbs)
34113                                                                                                  tube
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34342                                                                                           unspecified
34343                                                                                           unspecified
34345                                                                           based on weight (45-88 lbs)
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34430                                                                                       based on weight
34434                                                                           based on weight (44-88 lbs)
34435                                                                                 1 tablet/pill/capsule
34436                                                                                               1 scoop
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34513                                                                           based on weight (45-88 lbs)
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34671                                                                                 1 tablet/pill/capsule
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34706                                                                                 1 tablet/pill/capsule
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34791                                                                          based on weight (50-100 lbs)
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34845                                                                                   tablet/pill/capsule
34874                                                                                 1 tablet/pill/capsule
34875                                                                                 1 tablet/pill/capsule
34887                                                                                       based on weight
34888                                                                                           unspecified
34889                                                                                 1 tablet/pill/capsule
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35074                                                                                           unspecified
35094                                                                          based on weight (51-100 lbs)
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35125                                                                          based on weight (60-121 lbs)
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35160                                                                                           unspecified
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35214                                                                          based on weight (51-100 lbs)
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35354                                                                                               23, 460
35382                                                                                 1 tablet/pill/capsule
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35504                                                                                          pack/package
35506                                                                                          small amount
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35562                                                                                 1 tablet/pill/capsule
35563                                                                                 1 tablet/pill/capsule
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35628                                                                                       based on weight
35633                                                                                           unspecified
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35645                                                                                                    ml
35656                                                                                           application
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35768                                                                             based on weight (55+ lbs)
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35784                                                                                 1 tablet/pill/capsule
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35820                                                                                 1 tablet/pill/capsule
35821                                                                                                1 dose
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35850                                                                                 1 tablet/pill/capsule
35855                                                                          based on weight (50-100 lbs)
35858                                                                                 1 tablet/pill/capsule
35859                                                                              3 tablets/pills/capsules
35903                                                                                         5 minute soak
35905                                                                                 1 tablet/pill/capsule
35907                                                                                 1 tablet/pill/capsule
35908                                                                          based on weight (50-100 lbs)
35931                                                                                 1 tablet/pill/capsule
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36153                                                                                          small amount
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36288                                                                                       based on weight
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36357                                                                                 1 tablet/pill/capsule
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36397                                                                                 1 tablet/pill/capsule
36398                                                                                       based on weight
36399                                                                                       based on weight
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36460                                                                                 1 tablet/pill/capsule
36461                                                                                 1 tablet/pill/capsule
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36595                                                                          based on weight (50-100 lbs)
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36605                                                                          based on weight (50-100 lbs)
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36624                                                                                           application
36626                                                                                          small amount
36630                                                                          based on weight (50-100 lbs)
36632                                                                          based on weight (50-100 lbs)
36635                                                                          based on weight (50-100 lbs)
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36778                                                                                 1 tablet/pill/capsule
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37104                                                                                             1-2 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37179                                                                                 1 tablet/pill/capsule
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37262                                                                             based on weight (55+ lbs)
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37309                                                                                          small amount
37316                                                                          based on weight (50-100 lbs)
37324                                                                                 1 tablet/pill/capsule
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37377                                                                                 1 tablet/pill/capsule
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37446                                                                          based on weight (51-100 lbs)
37449                                                                                       moderate amount
37451                                                                                           application
37454                                                                                       moderate amount
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37468                                                                                 1 tablet/pill/capsule
37469                                                                                 1 tablet/pill/capsule
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37495                                                                                                 spray
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37621                                                                                 1 tablet/pill/capsule
37622                                                                                 1 tablet/pill/capsule
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37651                                                                                                collar
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37691                                                                                           application
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37933                                                                                 1 tablet/pill/capsule
37934                                                                                 1 tablet/pill/capsule
37935                                                                                           application
37936                                                                                 1 tablet/pill/capsule
37937                                                                                             3-5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38151                                                                         based on weight (24.1-60 lbs)
38152                                                                                 1 tablet/pill/capsule
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38216                                                                                 1 tablet/pill/capsule
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38240                                                                           based on weight (22-55 lbs)
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38342                                                                          based on weight (51-100 lbs)
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38361                                                                                       0.25 inch strip
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38532                                                                                 1 tablet/pill/capsule
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38643                                                                          based on weight (51-100 lbs)
38647                                                                                                  2, 4
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38722                                                                                          small amount
38723                                                                                              wipe/pad
38754                                                                                           unspecified
38772                                                                                          small amount
38773                                                                                 1 tablet/pill/capsule
38775                                                                                          small amount
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38809                                                                                           unspecified
38816                                                                                        1 pack/package
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38896                                                                          based on weight (51-100 lbs)
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39035                                                                                           unspecified
39073                                                                                 1 tablet/pill/capsule
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39176                                                                          based on weight (51-100 lbs)
39181                                                                                                  bath
39182                                                                                                 spray
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39258                                                                                 1 tablet/pill/capsule
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39388                                                                          based on weight (51-100 lbs)
39392                                                                                           unspecified
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39438                                                                          based on weight (51-100 lbs)
39440                                                                          based on weight (51-100 lbs)
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39651                                                                                           unspecified
39705                                                                                 1 tablet/pill/capsule
39706                                                                                 1 tablet/pill/capsule
39707                                                                                 1 tablet/pill/capsule
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39744                                                                                 1 tablet/pill/capsule
39754                                                                          based on weight (51-100 lbs)
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39909                                                                           based on weight (41-60 lbs)
39919                                                                                       0.25 inch strip
39948                                                                                 1 tablet/pill/capsule
39949                                                                                 1 tablet/pill/capsule
39958                                                                                           unspecified
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40013                                                                            based on weight (0-10 lbs)
40021                                                                                            0.14 fl oz
40023                                                                                 1 tablet/pill/capsule
40038                                                                                              250, 500
40043                                                                             based on weight (95+ lbs)
40052                                                                                 1 tablet/pill/capsule
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40180                                                                          based on weight (51-100 lbs)
40186                                                                          based on weight (51-100 lbs)
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40312                                                                              based on weight (70 lbs)
40317                                                                                          small amount
40331                                                                                               23, 228
40343                                                                                       moderate amount
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40425                                                                                 1 tablet/pill/capsule
40446                                                                                 1 tablet/pill/capsule
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40634                                                                                       0.25 inch strip
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40684                                                                          based on weight (51-100 lbs)
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40695                                                                                 1 tablet/pill/capsule
40696                                                                                 1 tablet/pill/capsule
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40794                                                                                        0.5 inch strip
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40870                                                                                       based on weight
40873                                                                                 1 tablet/pill/capsule
40875                                                                                   tablet/pill/capsule
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41084                                                                              based on weight (70 lbs)
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41104                                                                                 1 tablet/pill/capsule
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41129                                                                                 1 tablet/pill/capsule
41130                                                                                 1 tablet/pill/capsule
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41220                                                                                 1 tablet/pill/capsule
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41240                                                                                           application
41241                                                                                 1 tablet/pill/capsule
41242                                                                                           unspecified
41246                                                                                           application
41254                                                                                 1 tablet/pill/capsule
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41371                                                                                           application
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41505                                                                                              inhalant
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41581                                                                                 1 tablet/pill/capsule
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41636                                                                                 1 tablet/pill/capsule
41637                                                                                 1 tablet/pill/capsule
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41653                                                                                               23, 460
41655                                                                                           unspecified
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41778                                                                                 1 tablet/pill/capsule
41779                                                                                 1 tablet/pill/capsule
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41863                                                                                       moderate amount
41870                                                                                               23, 228
41872                                                                                           unspecified
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41988                                                                          based on weight (51-100 lbs)
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42032                                                                          based on weight (51-100 lbs)
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42053                                                                          based on weight (60-121 lbs)
42055                                                                                 1 tablet/pill/capsule
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42116                                                                      2 tablets/pills/capsules - 50 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42174                                                                          based on weight (51-100 lbs)
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42366                                                                                 1 tablet/pill/capsule
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42384                                                                          based on weight (51-100 lbs)
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42402                                                                          based on weight (51-100 lbs)
42404                                                                                 1 tablet/pill/capsule
42412                                                                                 1 tablet/pill/capsule
42413                                                                                 1 tablet/pill/capsule
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42465                                                                                 1 tablet/pill/capsule
42466                                                                                 1 tablet/pill/capsule
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42478                                                                                 1 tablet/pill/capsule
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42651                                                                                 1 tablet/pill/capsule
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42752                                                                                 1 tablet/pill/capsule
42753                                                                                 1 tablet/pill/capsule
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42821                                                                          based on weight (50-100 lbs)
42833                                                                                               23, 228
42860                                                                                           as directed
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43134                                                                                 1 tablet/pill/capsule
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43137                                                                                 1 tablet/pill/capsule
43138                                                                                 1 tablet/pill/capsule
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43334                                                                                               23, 228
43366                                                                                          small amount
43388                                                                                           unspecified
43405                                                                                          small amount
43412                                                                                          small amount
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43465                                                                                 1 tablet/pill/capsule
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43610                                                                                      0.125 inch strip
43620                                                                                           unspecified
43621                                                                                           unspecified
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43697                                                                                 1 tablet/pill/capsule
43698                                                                                 1 tablet/pill/capsule
43701                                                                                 1 tablet/pill/capsule
43702                                                                                 1 tablet/pill/capsule
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43790                                                                                 1 tablet/pill/capsule
43806                                                                                                 spray
43807                                                                                           unspecified
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43884                                                                                                  tube
43887                                                                                                  tube
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44243                                                                                           unspecified
44244                                                                                           unspecified
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44330                                                                          based on weight (51-100 lbs)
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44421                                                                        based on weight (50.1-100 lbs)
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44507                                                                                          small amount
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44531                                                                              based on weight (70 lbs)
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44544                                                                                 1 tablet/pill/capsule
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44614                                                                                 1 tablet/pill/capsule
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44799                                                                                           unspecified
44804                                                                                           unspecified
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44948                                                                                 1 tablet/pill/capsule
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44997                                                                                           as directed
45005                                                                                           unspecified
45007                                                                                           unspecified
45014                                                                          based on weight (60-120 lbs)
45015                                                                                 1 tablet/pill/capsule
45016                                                                                 1 tablet/pill/capsule
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45109                                                                                 1 tablet/pill/capsule
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45184                                                                                 1 tablet/pill/capsule
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45216                                                                          based on weight (51-100 lbs)
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45236                                                                          based on weight (51-100 lbs)
45255                                                                                       based on weight
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45286                                                                          based on weight (51-100 lbs)
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45499                                                                                 1 tablet/pill/capsule
45500                                                                                 1 tablet/pill/capsule
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45626                                                                        based on weight (50.1-100 lbs)
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45704                                                                                          small amount
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45869                                                                        based on weight (50.1-100 lbs)
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46071                                                                                 1 tablet/pill/capsule
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46177                                                                                 1 tablet/pill/capsule
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46302                                                                                 1 tablet/pill/capsule
46303                                                                                             11.5, 230
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46526                                                                                       0.25 inch strip
46528                                                                           based on weight (45-88 lbs)
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46665                                                                                 1 tablet/pill/capsule
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46781                                                                                 1 tablet/pill/capsule
46782                                                                                 1 tablet/pill/capsule
46783                                                                                          small amount
46784                                                                                 1 tablet/pill/capsule
46785                                                                                 1 tablet/pill/capsule
46786                                                                          based on weight (51-100 lbs)
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46804                                                                                 1 tablet/pill/capsule
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46827                                                                                             1-2 drops
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46874                                                                                          small amount
46880                                                                                          small amount
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46976                                                                                 1 tablet/pill/capsule
46977                                                                                         1 application
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47043                                                                          based on weight (51-100 lbs)
47049                                                                           based on weight (40-85 lbs)
47060                                                                                           unspecified
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47187                                                                                 1 tablet/pill/capsule
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47260                                                                          based on weight (50-100 lbs)
47302                                                                                          small amount
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47863                                                                                 1 tablet/pill/capsule
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47909                                                                                 1 tablet/pill/capsule
47910                                                                                           unspecified
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47969                                                                                 1 tablet/pill/capsule
47970                                                                                 1 tablet/pill/capsule
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47996                                                                                 1 tablet/pill/capsule
47997                                                                                 1 tablet/pill/capsule
47998                                                                              2 tablets/pills/capsules
48000                                                                                 1 tablet/pill/capsule
48001                                                                            1.5 tablets/pills/capsules
48002                                                                                 1 tablet/pill/capsule
48003                                                                                 1 tablet/pill/capsule
48004                                                                                 1 tablet/pill/capsule
48005                                                                                 1 tablet/pill/capsule
48007                                                                              0.75 tablet/pill/capsule
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48030                                                                                 1 tablet/pill/capsule
48031                                                                              3 tablets/pills/capsules
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48048                                                                                 1 tablet/pill/capsule
48049                                                                              2 tablets/pills/capsules
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48131                                                                                   tablet/pill/capsule
48132                                                                                 1 tablet/pill/capsule
48133                                                                                 1 tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48151                                                                                 1 tablet/pill/capsule
48152                                                                                 1 tablet/pill/capsule
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48182                                                                                       136 mcg, 114 mg
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48314                                                                                           unspecified
48322                                                                                 1 tablet/pill/capsule
48327                                                                                           application
48328                                                                                 1 tablet/pill/capsule
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48376                                                                                                 drops
48380                                                                                 1 tablet/pill/capsule
48381                                                                                 1 tablet/pill/capsule
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48494                                                                                 1 tablet/pill/capsule
48495                                                                                 1 tablet/pill/capsule
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48504                                                                                       based on weight
48505                                                                                       based on weight
48513                                                                          based on weight (51-100 lbs)
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48598                                                                                           unspecified
48602                                                                                              tapering
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48643                                                                                 1 tablet/pill/capsule
48661                                                                          based on weight (51-100 lbs)
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48720                                                                                 1 tablet/pill/capsule
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48918                                                                                           unspecified
48935                                                                                           unspecified
48946                                                                            1.5 tablets/pills/capsules
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                          based on weight (51-100 lbs)
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49316                                                                                           unspecified
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49346                                                                          based on weight (51-100 lbs)
49348                                                                          based on weight (51-100 lbs)
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49372                                                                                 1 tablet/pill/capsule
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49473                                                                          based on weight (51-100 lbs)
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49569                                                                                 1 tablet/pill/capsule
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49592                                                                                 1 tablet/pill/capsule
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49605                                                                                 1 tablet/pill/capsule
49607                                                                                        27 mg, 1620 mg
49608                                                                                 1 tablet/pill/capsule
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49731                                                                                 1 tablet/pill/capsule
49748                                                                                                  tube
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49820                                                                                 1 tablet/pill/capsule
49821                                                                                 1 tablet/pill/capsule
49845                                                                                 1 tablet/pill/capsule
49846                                                                                 1 tablet/pill/capsule
49849                                                                                           application
49852                                                                                 1 tablet/pill/capsule
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49886                                                                          based on weight (51-100 lbs)
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49996                                                                                           as directed
50000                                                                                 1 tablet/pill/capsule
50001                                                                          based on weight (51-100 lbs)
50004                                                                          based on weight (51-100 lbs)
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50029                                                                                 1 tablet/pill/capsule
50033                                                                                 1 tablet/pill/capsule
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50187                                                                          based on weight (51-100 lbs)
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
print(nrow(non_numeric_dose4))
[1] 9284
#4) for dose where it is num tablet/pill/capsule string then remove the string from the num and put that in the dose_unit column
dose <- dose %>%
  mutate(
    dose = ifelse(dose == "1 tablet/pill/capsule", 1, dose),
    dose_unit = ifelse(dose == "1 tablet/pill/capsule", "tablet/pill/capsule", dose_unit)
  )
  


non_numeric_dose5<- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

# View the result
print(non_numeric_dose5)
                                                                                                        medication_ingredients
22                                                                                                                   meloxicam
40                                                                                              polysulfated glycosaminoglycan
41                                                                                      joint supplement (glucosamine hcl/msm)
42                                                                                                                   meloxicam
46                                                                                                                    spinosad
48                                                                                                    imidacloprid, moxidectin
49                                                                                                                imidacloprid
51                                                                      joint supplement (chondroitin sulfate/glucosamine hcl)
59                                                                                                                  ivermectin
60                                                                                                  imidacloprid, pyriproxyfen
62                                                                                                  imidacloprid, pyriproxyfen
63                                                                                                                  ivermectin
67                                                                                                                   mupirocin
70                                                                                                                   mupirocin
74                                                                                                  imidacloprid, pyriproxyfen
84                                                                                           betamethasone, gentamicin sulfate
87                                                                                                               dexamethasone
91                                                                             betamethasone, clotrimazole, gentamicin sulfate
111                                                                            betamethasone, clotrimazole, gentamicin sulfate
112                                                                                          enrofloxacin, silver sulfadiazine
113                                                                               florfenicol, mometasone furoate, terbinafine
114                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
149                                                                                chlorhexidine gluconate, miconazole nitrate
150                                                                                                                  tris-edta
151                                                                                                    chlorhexidine gluconate
152                                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                               multivitamin
155                                                                                                  immune support supplement
167                                                                                                   joint supplement (other)
188                                                                                                                 fluralaner
192                                                                                                                 fluralaner
220                                                                                                                 fluralaner
230                                                                                               ivermectin, pyrantel pamoate
233                                                                                        ear cleaner (zymox), hydrocortisone
235                                                                                               ivermectin, pyrantel pamoate
236                                                                                    betamethasone, florfenicol, terbinafine
237                                                                                    betamethasone, florfenicol, terbinafine
238                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
242                                                                                    betamethasone, florfenicol, terbinafine
257                                                                                                 milbemycin oxime, spinosad
275                                                                                               ivermectin, pyrantel pamoate
276                                                                                                                 ivermectin
277                                                                                                                 afoxolaner
279                                                                    chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                    triamcinolone acetonide
310                                                                                               ivermectin, pyrantel pamoate
317                                                                                                 imidacloprid, pyriproxyfen
318                                                                                               ivermectin, pyrantel pamoate
324                                                                                                 imidacloprid, pyriproxyfen
328                                                                                                   imidacloprid, permethrin
329                                                                                               ivermectin, pyrantel pamoate
332                                                                                                 imidacloprid, pyriproxyfen
333                                                                                               ivermectin, pyrantel pamoate
347                                                                                                lufenuron, milbemycin oxime
348                                                                                                lufenuron, milbemycin oxime
350                                                                                                lufenuron, milbemycin oxime
351                                                                                                lufenuron, milbemycin oxime
353                                                                                                lufenuron, milbemycin oxime
355                                                                                                lufenuron, milbemycin oxime
366                                                                                                               coenzyme q10
368                                                                                                                 afoxolaner
375                                                                                               ivermectin, pyrantel pamoate
376                                                                                                                 fluralaner
383                                                                                                lufenuron, milbemycin oxime
384                                                                                                lufenuron, milbemycin oxime
386                                                                                                lufenuron, milbemycin oxime
403                                                                                                                 ivermectin
404                                                                                                                 ivermectin
414                                                                                                lufenuron, milbemycin oxime
447                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
449                                                                  activated charcoal, bismuth subsalicylate, kaolin, pectin
453                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
496                                                                                                                 ivermectin
498                                                                                               ivermectin, pyrantel pamoate
519                                                                                                                 isoflurane
537                                                                               dexamethasone, neomycin sulfate, polymyxin b
597                                                                                                   fipronil, (s)-methoprene
598                                                                                                                 afoxolaner
610                                                                       clotrimazole, gentamicin sulfate, mometasone furoate
619                                                                                                       cognitive supplement
637                                                                                                                  omega 3-6
642                                                              bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
686                                                                                                                 afoxolaner
688                                                                                         amoxicillin, clavulanate potassium
703                                                                                               ivermectin, pyrantel pamoate
704                                                                                                                  sarolaner
709                                                                                                           liver supplement
710                                                                                                                  lomustine
712                                                                                                       prednisolone acetate
725                                                                                                 milbemycin oxime, spinosad
728                                                                                               ivermectin, pyrantel pamoate
729                                                                                                                 afoxolaner
730                                                                                               ivermectin, pyrantel pamoate
734                                                                               dexamethasone, neomycin sulfate, polymyxin b
738                                                                                               ivermectin, pyrantel pamoate
739                                                                                                                 afoxolaner
754                                                                                               ivermectin, pyrantel pamoate
755                                                                                                   fipronil, (s)-methoprene
757                                                                                  lufenuron, milbemycin oxime, praziquantel
778                                                          neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
785                                                                                                 milbemycin oxime, spinosad
790                                                                                                 milbemycin oxime, spinosad
792                                                                                                lufenuron, milbemycin oxime
797                                                                                                           liver supplement
798                                                                                                         maropitant citrate
799                                                                                                                bedinvetmab
800                                                                                                                mirtazapine
801                                                                                                                 furosemide
802                                                                                                                  carprofen
803                                                                                                                 fluralaner
804                                                                                                                 fluralaner
810                                                                                                                 selamectin
816                                                                                                     rx diet - renal health
819                                                                                               ivermectin, pyrantel pamoate
820                                                                                               ivermectin, pyrantel pamoate
823                                                                                                   fipronil, (s)-methoprene
824                                                                                               ivermectin, pyrantel pamoate
832                                                                                                                    omega 3
851                                                                                               ivermectin, pyrantel pamoate
862                                                                                                                 ivermectin
871                                                                                                 milbemycin oxime, spinosad
874                                                                                                 milbemycin oxime, spinosad
877                                                                                                         miconazole nitrate
878                                                                                                 milbemycin oxime, spinosad
879                                                                                                 milbemycin oxime, spinosad
880                                                                                                 milbemycin oxime, spinosad
884                                                                                                 milbemycin oxime, spinosad
887                                                                                                 milbemycin oxime, spinosad
891                                                                                                 milbemycin oxime, spinosad
893                                                                                                 milbemycin oxime, spinosad
899                                                                                                 milbemycin oxime, spinosad
901                                                                                                    chlorhexidine gluconate
905                                                                                          allergy immunotherapy - injection
913                                                                                                 imidacloprid, pyriproxyfen
921                                                                                               ivermectin, pyrantel pamoate
955                                                                                                   flumethrin, imidacloprid
958                                                                                               ivermectin, pyrantel pamoate
969                                                                                                    acetic acid, boric acid
977                                                                                                                  ophytrium
982                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                  probiotic
989                                                                     joint supplement (chondroitin sulfate/glucosamine hcl)
1001                                                                                                             yunnan baiyao
1017                                                                                                                ivermectin
1018                                                                                                                afoxolaner
1020                                                                                                          neomycin sulfate
1021                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
1027                                                                                        chlorhexidine gluconate, ophytrium
1029                                                                                        chlorhexidine gluconate, ophytrium
1030                                                                                                unspecified shampoo/mousse
1031                                                                                                   enrofloxacin, tris-edta
1033                                                                              florfenicol, mometasone furoate, terbinafine
1036                                                                       enrofloxacin, ketoconazole, triamcinolone acetonide
1039                                                                              florfenicol, mometasone furoate, terbinafine
1042                                                                                                   chlorhexidine gluconate
1050                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1072                                                                                          burow's solution, hydrocortisone
1073                                                                                        chlorhexidine gluconate, tris-edta
1074                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
1087                                                                                                milbemycin oxime, spinosad
1091                                                                                           ear cleaner (epi-otic advanced)
1097                                                                                                milbemycin oxime, spinosad
1099                                                                                              ivermectin, pyrantel pamoate
1100                                                                                               lufenuron, milbemycin oxime
1101                                                                                                                fluralaner
1108                                                                                        chlorhexidine gluconate, ophytrium
1111                                                                                               lufenuron, milbemycin oxime
1112                                                                                        chlorhexidine gluconate, ophytrium
1116                                                                                ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                              imidacloprid
1150                                                                                                   ketoconazole, tris-edta
1152                                                                                                          milbemycin oxime
1153                                                                                                                ivermectin
1154                                                                                               lufenuron, milbemycin oxime
1155                                                                                               lufenuron, milbemycin oxime
1159                                                                                               lufenuron, milbemycin oxime
1160                                                                                               lufenuron, milbemycin oxime
1161                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1168                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                              ivermectin, pyrantel pamoate
1170                                                                                                  fipronil, (s)-methoprene
1173                                                                                                  fipronil, (s)-methoprene
1174                                                                                              ivermectin, pyrantel pamoate
1175                                                                                                  fipronil, (s)-methoprene
1176                                                                                              ivermectin, pyrantel pamoate
1177                                                                                                  fipronil, (s)-methoprene
1179                                                                           betamethasone, clotrimazole, gentamicin sulfate
1185                                                                                                                ivermectin
1186                                                                                              ivermectin, pyrantel pamoate
1187                                                                                                         megestrol acetate
1189                                                                                              ivermectin, pyrantel pamoate
1190                                                                                              ivermectin, pyrantel pamoate
1193                                                                                                                ivermectin
1194                                                                                              ivermectin, pyrantel pamoate
1195                                                                                                          milbemycin oxime
1208                                                                                                  imidacloprid, permethrin
1217                                                                                              ivermectin, pyrantel pamoate
1226                                                                                                imidacloprid, pyriproxyfen
1233                                                                                                       silver sulfadiazine
1247                                                                                               lufenuron, milbemycin oxime
1285                                                                                            sulfamethoxazole, trimethoprim
1336                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1344                                                                                ivermectin, praziquantel, pyrantel pamoate
1346                                                                                           ear cleaner (epi-otic advanced)
1355                                                                                                  fipronil, (s)-methoprene
1371                                                                                              ivermectin, pyrantel pamoate
1398                                                                                         dexamethasone, miconazole nitrate
1404                                                                                         betamethasone, gentamicin sulfate
1405                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1415                                                                                         dexamethasone, miconazole nitrate
1420                                                                                                                   omega 3
1422                                                                                               lufenuron, milbemycin oxime
1434                                                                                                  fipronil, (s)-methoprene
1435                                                                                               lufenuron, milbemycin oxime
1438                                                                                               lufenuron, milbemycin oxime
1441                                                                                               lufenuron, milbemycin oxime
1442                                                                                ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                  fipronil, (s)-methoprene
1450                                                                                    fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                          milbemycin oxime
1459                                                                                     dinotefuran, permethrin, pyriproxyfen
1462                                                                                     dinotefuran, permethrin, pyriproxyfen
1464                                                                                               lufenuron, milbemycin oxime
1473                                                                                                    unspecified medication
1475                                                                                                  imidacloprid, permethrin
1499                                                                                                milbemycin oxime, spinosad
1500                                                                                                milbemycin oxime, spinosad
1501                                                                                              ivermectin, pyrantel pamoate
1511                                                                                                                afoxolaner
1512                                                                                     dinotefuran, permethrin, pyriproxyfen
1514                                                                                                                afoxolaner
1528                                                                                                  imidacloprid, permethrin
1529                                                                                                                ivermectin
1532                                                                                                imidacloprid, pyriproxyfen
1534                                                                                                imidacloprid, pyriproxyfen
1535                                                                                                          milbemycin oxime
1536                                                                                                imidacloprid, pyriproxyfen
1537                                                                                                          milbemycin oxime
1538                                                                                                          milbemycin oxime
1539                                                                                                imidacloprid, pyriproxyfen
1541                                                                                                imidacloprid, pyriproxyfen
1542                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1556                                                                                                               sevoflurane
1572                                                                                            milbemycin oxime, praziquantel
1586                                                                                                              ketoconazole
1587                                                                                              ivermectin, pyrantel pamoate
1598                                                                                              ivermectin, pyrantel pamoate
1599                                                                                              ivermectin, pyrantel pamoate
1634                                                                                                  fipronil, (s)-methoprene
1635                                                                                    joint supplement (glucosamine hcl/msm)
1650                                                                                                  fipronil, (s)-methoprene
1663                                                                                                milbemycin oxime, spinosad
1668                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1683                                                                                                  flumethrin, imidacloprid
1684                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                         betamethasone, gentamicin sulfate
1689                                                                                     chlorhexidine gluconate, ketoconazole
1692                                                                           betamethasone, clotrimazole, gentamicin sulfate
1697                                                                                                  flumethrin, imidacloprid
1708                                                                                               lufenuron, milbemycin oxime
1710                                                                                               lufenuron, milbemycin oxime
1712                                                                                               lufenuron, milbemycin oxime
1715                                                                                               lufenuron, milbemycin oxime
1718                                                                                               lufenuron, milbemycin oxime
1720                                                                                               lufenuron, milbemycin oxime
1743                                                                                                              imidacloprid
1747                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                            hydrocortisone
1749                                                                                                milbemycin oxime, spinosad
1756                                                                                                                 probiotic
1757                                                                                                    coprophagia supplement
1758                                                                                              ivermectin, pyrantel pamoate
1759                                                                                                                afoxolaner
1760                                                                                                                 cefovecin
1761                                                                                         betamethasone, gentamicin sulfate
1769                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
1773                                                                                         trimeprazine tartrate, prednisone
1774                                                                                               lufenuron, milbemycin oxime
1789                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1791                                                                                                                 mupirocin
1794                                                                                     chlorhexidine gluconate, ketoconazole
1795                                                                                                unspecified shampoo/mousse
1796                                                                                        joint supplement (glucosamine hcl)
1798                                                                                                                 meloxicam
1805                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1809                                                                                                  joint supplement (other)
1819                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                             unspecified herbal thyroid support supplement
1823                                                                            mometasone furoate, orbifloxacin, posaconazole
1845                                                                                                  imidacloprid, permethrin
1846                                                                                              ivermectin, pyrantel pamoate
1847                                                                                                imidacloprid, pyriproxyfen
1848                                                                                              ivermectin, pyrantel pamoate
1849                                                                                              ivermectin, pyrantel pamoate
1850                                                                              dexamethasone, neomycin sulfate, polymyxin b
1851                                                                              dexamethasone, neomycin sulfate, polymyxin b
1867                                                                                              ivermectin, pyrantel pamoate
1872                                                                                              ivermectin, pyrantel pamoate
1877                                                                                 unspecified herbal flea/tick preventative
1887                                                                                       cedarwood oil, rosemary oil, sesame
1888                                                                                 unspecified herbal flea/tick preventative
1917                                                                                              ivermectin, pyrantel pamoate
1922                                                                                         betamethasone, gentamicin sulfate
1925                                                                                                          benzoyl peroxide
1926                                                                                     chlorhexidine gluconate, ketoconazole
1928                                                                                                                ivermectin
1929                                                                                     dinotefuran, permethrin, pyriproxyfen
1931                                                                                                          benzoyl peroxide
1939                                                                                 unspecified herbal flea/tick preventative
1941                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1945                                                                                       cedarwood oil, rosemary oil, sesame
1948                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1962                                                                                                                ivermectin
1965                                                                                           ear cleaner (epi-otic advanced)
1980                                                                                                imidacloprid, pyriproxyfen
1982                                                                                              ivermectin, pyrantel pamoate
1983                                                                                                imidacloprid, pyriproxyfen
1984                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1994                                                                                                               doxorubicin
1998                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2006                                                                                              ivermectin, pyrantel pamoate
2012                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                   omega 3
2016                                                                                               lufenuron, milbemycin oxime
2022                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2025                                                                                                imidacloprid, pyriproxyfen
2026                                                                                              ivermectin, pyrantel pamoate
2029                                                                                              ivermectin, pyrantel pamoate
2030                                                                                                                 sarolaner
2032                                                                                                          pyrantel pamoate
2033                                                                                                          milbemycin oxime
2034                                                                                                              fenbendazole
2041                                                                                                                ivermectin
2042                                                                                                                ivermectin
2050                                                                                              ivermectin, pyrantel pamoate
2075                                                                                                                ivermectin
2083                                                                                                                selamectin
2084                                                                                                                ivermectin
2085                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2087                                                                                               lufenuron, milbemycin oxime
2088                                                                                                                fluralaner
2089                                                                                                  joint supplement (other)
2091                                                                                                                ivermectin
2093                                                                                                  joint supplement (other)
2107                                                                                              ivermectin, pyrantel pamoate
2108                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                              ivermectin, pyrantel pamoate
2110                                                                                              ivermectin, pyrantel pamoate
2113                                                                                         trimeprazine tartrate, prednisone
2115                                                                                                 unspecified otic ointment
2116                                                                                                    unspecified otic flush
2126                                                                                               lufenuron, milbemycin oxime
2127                                                                                ivermectin, praziquantel, pyrantel pamoate
2149                                                                                               lufenuron, milbemycin oxime
2151                                                                                               lufenuron, milbemycin oxime
2161                                                                                               lufenuron, milbemycin oxime
2165                                                                           betamethasone, clotrimazole, gentamicin sulfate
2166                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
2195                                                                                digestive supplement, prebiotic, probiotic
2199                                                                                              ivermectin, pyrantel pamoate
2200                                                                                                                afoxolaner
2201                                                                                              ivermectin, pyrantel pamoate
2202                                                                                                                afoxolaner
2203                                                                                                  urinary tract supplement
2204                                                                                              ivermectin, pyrantel pamoate
2205                                                                                                                afoxolaner
2206                                                                                                  urinary tract supplement
2211                                                                              dexamethasone, neomycin sulfate, polymyxin b
2219                                                                                                                    arnica
2220                                                                                                                 hypericum
2224                                                                                                 spinal support supplement
2226                                                                                                                 probiotic
2229                                                                                                                 shu jin i
2233                                                                                ivermectin, praziquantel, pyrantel pamoate
2241                                                                                     dinotefuran, permethrin, pyriproxyfen
2243                                                                                                          milbemycin oxime
2244                                                                                     dinotefuran, permethrin, pyriproxyfen
2250                                                                                                                ivermectin
2255                                                                                     dinotefuran, permethrin, pyriproxyfen
2258                                                                                                                 probiotic
2259                                                                                                                 vitamin d
2260                                                                                                                 vitamin a
2261                                                                                                                 vitamin c
2262                                                                                                              multivitamin
2263                                                                                                  kidney health supplement
2264                                                                                             unspecified herbal supplement
2265                                                                                                                  turmeric
2266                                                                                toothpaste/dental health solution or chews
2269                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                  turmeric
2272                                                                            mometasone furoate, orbifloxacin, posaconazole
2278                                                                                ivermectin, praziquantel, pyrantel pamoate
2279                                                                                              ivermectin, pyrantel pamoate
2280                                                                                              ivermectin, pyrantel pamoate
2283                                                                                              ivermectin, pyrantel pamoate
2301                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                     butorphanol tartrate, dexmedetomidine
2390                                                                                         betamethasone, gentamicin sulfate
2398                                                                                         betamethasone, gentamicin sulfate
2404                                                                                              ivermectin, pyrantel pamoate
2405                                                                                                  fipronil, (s)-methoprene
2409                                                                                              ivermectin, pyrantel pamoate
2418                                                                                              ivermectin, pyrantel pamoate
2428                                                                                                               oclacitinib
2463                                                                                         rx diet - selected protein (duck)
2464                                                                                              ivermectin, pyrantel pamoate
2467                                                                                         trimeprazine tartrate, prednisone
2473                                                                            dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                   ketoconazole, tris-edta
2477                                                                                                             buprenorphine
2478                                                                                                                ampicillin
2479                                                                                                                 probiotic
2481                                                                                                                  fipronil
2482                                                                                              ivermectin, pyrantel pamoate
2486                                                                                                   acetic acid, boric acid
2487                                                                                                   ketoconazole, tris-edta
2491                                                                                                        miconazole nitrate
2492                                                                                                   acetic acid, boric acid
2499                                                                                         rx diet - selected protein (duck)
2500                                                                                              ivermectin, pyrantel pamoate
2501                                                                                                                 carprofen
2502                                                                                                                alprazolam
2503                                                                                                               oclacitinib
2504                                                                                                                afoxolaner
2508                                                                                                                 probiotic
2517                                                                                               lufenuron, milbemycin oxime
2518                                                                                                  joint supplement (other)
2534                                                                                            unspecified eye dilation drops
2539                                                                                 lufenuron, milbemycin oxime, praziquantel
2542                                                                                            milbemycin oxime, praziquantel
2543                                                                                                  flumethrin, imidacloprid
2545                                                                                            milbemycin oxime, praziquantel
2546                                                                                                  flumethrin, imidacloprid
2547                                                                                                          milbemycin oxime
2548                                                                                                  flumethrin, imidacloprid
2549                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                   omega 3
2558                                                                                              ivermectin, pyrantel pamoate
2559                                                                                              ivermectin, pyrantel pamoate
2560                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2562                                                                                              ivermectin, pyrantel pamoate
2566                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2575                                                                                         betamethasone, gentamicin sulfate
2578                                                                                         betamethasone, gentamicin sulfate
2580                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2583                                                                                                                ivermectin
2599                                                                                                       polyethylene glycol
2600                                                                                                         vision supplement
2642                                                                                         betamethasone, gentamicin sulfate
2651                                                        ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                       ear cleaner (zymox)
2655                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
2659                                                                                                  skin and coat supplement
2660                                                                                                   unspecified ear cleaner
2661                                                                                                          colloidal silver
2710                                                                                                  imidacloprid, moxidectin
2721                                                                           betamethasone, clotrimazole, gentamicin sulfate
2726                                                                                              ivermectin, pyrantel pamoate
2731                                                                                                milbemycin oxime, spinosad
2735                                                                                                milbemycin oxime, spinosad
2737                                                                                               lufenuron, milbemycin oxime
2738                                                                                                          milbemycin oxime
2739                                                                                                                afoxolaner
2742                                                                                               lufenuron, milbemycin oxime
2743                                                                                                                fluralaner
2745                                                                                               lufenuron, milbemycin oxime
2746                                                                                                                fluralaner
2748                                                                                               lufenuron, milbemycin oxime
2749                                                                                                                fluralaner
2753                                                                                 lufenuron, milbemycin oxime, praziquantel
2756                                                                                                                lokivetmab
2805                                                                                                  fipronil, (s)-methoprene
2815                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2818                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2825                                                                                                          milbemycin oxime
2827                                                                                              ivermectin, pyrantel pamoate
2828                                                                                              ivermectin, pyrantel pamoate
2833                                                                                               lufenuron, milbemycin oxime
2838                                                                                                          milbemycin oxime
2839                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
2842                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
2844                                                                              dexamethasone, neomycin sulfate, polymyxin b
2846                                                                                                          milbemycin oxime
2855                                                                                                             yunnan baiyao
2897                                                                                     chlorhexidine gluconate, ketoconazole
2900                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2903                                                                                     chlorhexidine gluconate, ketoconazole
2904                                                                                     chlorhexidine gluconate, ketoconazole
2905                                                                                     chlorhexidine gluconate, ketoconazole
2907                                                                                                                 probiotic
2913                                                                                                                 probiotic
2919                                                                                            milbemycin oxime, praziquantel
2920                                                                                                                afoxolaner
2921                                                                                                                 probiotic
2922                                                                                                          milbemycin oxime
2923                                                                                                                afoxolaner
2925                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
2941                                                                                               lufenuron, milbemycin oxime
2942                                                                                                  imidacloprid, permethrin
2943                                                                                               lufenuron, milbemycin oxime
2944                                                                                                imidacloprid, pyriproxyfen
2946                                                                                                imidacloprid, pyriproxyfen
2958                                                                                                                ivermectin
2959                                                                                                                ivermectin
2961                                                                                              ivermectin, pyrantel pamoate
2962                                                                                              ivermectin, pyrantel pamoate
2963                                                                                              ivermectin, pyrantel pamoate
2964                                                                                              ivermectin, pyrantel pamoate
2974                                                                                               lufenuron, milbemycin oxime
2975                                                                                                  fipronil, (s)-methoprene
2978                                                                                 lufenuron, milbemycin oxime, praziquantel
2981                                                                                 lufenuron, milbemycin oxime, praziquantel
2988                                                                                                              fenbendazole
2993                                                                                                              fenbendazole
2997                                                                                                             metronidazole
3002                                                                                                      prednisolone acetate
3003                                                                                           ear cleaner (epi-otic advanced)
3007                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3028                                                                                                  fipronil, (s)-methoprene
3031                                                                                                          liver supplement
3055                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
3058                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3060                                                                                                                ivermectin
3095                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3110                                                                            mometasone furoate, orbifloxacin, posaconazole
3119                                                                                dimethyl sulfoxide, fluocinolone acetonide
3147                                                                                             allergy immunotherapy - drops
3180                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3246                                                                                ivermectin, praziquantel, pyrantel pamoate
3247                                                                                ivermectin, praziquantel, pyrantel pamoate
3250                                                                                ivermectin, praziquantel, pyrantel pamoate
3251                                                                                            milbemycin oxime, praziquantel
3253                                                                                ivermectin, praziquantel, pyrantel pamoate
3257                                                                                ivermectin, praziquantel, pyrantel pamoate
3271                                                                                ivermectin, praziquantel, pyrantel pamoate
3278                                                                              dexamethasone, neomycin sulfate, polymyxin b
3280                                                                                ivermectin, praziquantel, pyrantel pamoate
3284                                                                                                          milbemycin oxime
3287                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3291                                                                                                                 mupirocin
3293                                                                           betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                          milbemycin oxime
3300                                                                                                          milbemycin oxime
3305                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3312                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                 mupirocin
3339                                                                                            milbemycin oxime, praziquantel
3342                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3345                                                                                               lufenuron, milbemycin oxime
3346                                                                                               lufenuron, milbemycin oxime
3350                                                                                                                ivermectin
3360                                                                                                  joint supplement (other)
3366                                                                                                              enrofloxacin
3372                                                                                                                ivermectin
3375                                                                                  febantel, praziquantel, pyrantel pamoate
3376                                                                                                                 mupirocin
3394                                                                                                   triamcinolone acetonide
3399                                                                                                milbemycin oxime, spinosad
3403                                                                                                milbemycin oxime, spinosad
3421                                                                                             allergy immunotherapy - drops
3422                                                                                             allergy immunotherapy - drops
3425                                                                                                                selamectin
3426                                                                                             allergy immunotherapy - drops
3429                                                                                                milbemycin oxime, spinosad
3437                                                                           betamethasone, clotrimazole, gentamicin sulfate
3445                                                                                                                cephalexin
3446                                                                                                                lokivetmab
3447                                                                           betamethasone, clotrimazole, gentamicin sulfate
3448                                                                              florfenicol, mometasone furoate, terbinafine
3449                                                                                                                 carprofen
3451                                                                                               lufenuron, milbemycin oxime
3455                                                                                               lufenuron, milbemycin oxime
3456                                                                                                  fipronil, (s)-methoprene
3457                                                                                               lufenuron, milbemycin oxime
3458                                                                                                imidacloprid, pyriproxyfen
3459                                                                                               lufenuron, milbemycin oxime
3488                                                                                                                nitenpyram
3490                                                                                                                 sarolaner
3491                                                                                               lufenuron, milbemycin oxime
3492                                                                                                                 sarolaner
3495                                                                                 lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                 sarolaner
3497                                                                                 lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                 sarolaner
3512                                                                                              ivermectin, pyrantel pamoate
3513                                                                                              ivermectin, pyrantel pamoate
3514                                                                                              ivermectin, pyrantel pamoate
3515                                                                                              ivermectin, pyrantel pamoate
3516                                                                                              ivermectin, pyrantel pamoate
3517                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
3519                                                                                                                ivermectin
3520                                                                                ivermectin, praziquantel, pyrantel pamoate
3522                                                                                              ivermectin, pyrantel pamoate
3525                                                                                              ivermectin, pyrantel pamoate
3530                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3535                                                                              dexamethasone, neomycin sulfate, polymyxin b
3581                                                                                                              multivitamin
3619                                                                                            milbemycin oxime, praziquantel
3622                                                                                                                 probiotic
3635                                                                                                                fluralaner
3639                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                   acetic acid, boric acid
3641                                                                                         betamethasone, gentamicin sulfate
3649                                                                                                  imidacloprid, moxidectin
3650                                                                                                  imidacloprid, moxidectin
3652                                                                                                      prebiotic, probiotic
3666                                                                                         betamethasone, gentamicin sulfate
3667                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
3675                                                                                         betamethasone, gentamicin sulfate
3684                                                                                                          milbemycin oxime
3685                                                                                                  fipronil, (s)-methoprene
3691                                                                                    fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                          milbemycin oxime
3693                                                                                         betamethasone, gentamicin sulfate
3698                                                                                                                selamectin
3699                                                                                                                selamectin
3701                                                                                                          milbemycin oxime
3704                                                                                                          milbemycin oxime
3705                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                lokivetmab
3710                                                                                                           cbd or hemp oil
3718                                                                     miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                              ivermectin, pyrantel pamoate
3725                                                                                              ivermectin, pyrantel pamoate
3726                                                                                              ivermectin, pyrantel pamoate
3735                                                                                                                 ketotifen
3741                                                                                                               amoxicillin
3742                                                                                                              azathioprine
3743                                                                                                                cetirizine
3744                                                                                                                 lactulose
3745                                                                                                                 carprofen
3750                                                                                                          milbemycin oxime
3760                                                                                                milbemycin oxime, spinosad
3773                                                                              dexamethasone, neomycin sulfate, polymyxin b
3784                                                                                                     mycophenolate mofetil
3785                                                                                                                prednisone
3786                                                                                                                famotidine
3789                                                                                         betamethasone, gentamicin sulfate
3797                                                                                                   triamcinolone acetonide
3798                                                                           betamethasone, clotrimazole, gentamicin sulfate
3800                                                                           betamethasone, clotrimazole, gentamicin sulfate
3815                                                                                              ivermectin, pyrantel pamoate
3829                                                                           betamethasone, clotrimazole, gentamicin sulfate
3835                                                                                              ivermectin, pyrantel pamoate
3836                                                                                                                afoxolaner
3838                                                                                                                afoxolaner
3840                                                                           betamethasone, clotrimazole, gentamicin sulfate
3848                                                                              dexamethasone, neomycin sulfate, polymyxin b
3857                                                                                              ivermectin, pyrantel pamoate
3858                                                                                                  fipronil, (s)-methoprene
3859                                                                                                          milbemycin oxime
3860                                                                                                                afoxolaner
3861                                                                                                        gentamicin sulfate
3867                                                                           betamethasone, clotrimazole, gentamicin sulfate
3870                                                                                              ivermectin, pyrantel pamoate
3871                                                                                                                afoxolaner
3872                                                                                                                afoxolaner
3874                                                                           betamethasone, clotrimazole, gentamicin sulfate
3881                                                                                                                ivermectin
3886                                                                                              ivermectin, pyrantel pamoate
3889                                                                                              ivermectin, pyrantel pamoate
3897                                                                                              ivermectin, pyrantel pamoate
3898                                                                    gentamicin sulfate, hydrocortisone, miconazole nitrate
3900                                                                                                                ivermectin
3903                                                                                              ivermectin, pyrantel pamoate
3906                                                                                              ivermectin, pyrantel pamoate
3911                                                                                              ivermectin, pyrantel pamoate
3938                                                                                              ivermectin, pyrantel pamoate
3943                                                                                              ivermectin, pyrantel pamoate
3945                                                                                          propylene glycol, salicylic acid
3946                                                                                                                afoxolaner
3952                                                                                              ivermectin, pyrantel pamoate
3972                                                                                                milbemycin oxime, spinosad
3980                                                                                              ivermectin, pyrantel pamoate
3984                                                                                              ivermectin, pyrantel pamoate
3989                                                                                              ivermectin, pyrantel pamoate
3990                                                                                                                afoxolaner
4000                                                                                                                 meloxicam
4017                                                                                              ivermectin, pyrantel pamoate
4030                                                                                                milbemycin oxime, spinosad
4031                                                                                                milbemycin oxime, spinosad
4042                                                                                                    unspecified medication
4058                                                                                                                ivermectin
4059                                                                                         trimeprazine tartrate, prednisone
4060                                                                                              ivermectin, pyrantel pamoate
4063                                                                                              ivermectin, pyrantel pamoate
4064                                                                                                                fluralaner
4066                                                                                                                ivermectin
4067                                                                                                                fluralaner
4068                                                                                toothpaste/dental health solution or chews
4069                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                               oclacitinib
4071                                                                                toothpaste/dental health solution or chews
4074                                                                                                  fipronil, (s)-methoprene
4075                                                                                              ivermectin, pyrantel pamoate
4077                                                                                                                afoxolaner
4087                                                                                                                 cefazolin
4088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                 ofloxacin
4092                                                                                                              imidacloprid
4097                                                                                                                 sarolaner
4111                                                                                                milbemycin oxime, spinosad
4112                                                                                ivermectin, praziquantel, pyrantel pamoate
4113                                                                                           ear cleaner (epi-otic advanced)
4114                                                                                                   ketoconazole, tris-edta
4116                                                                                         trimeprazine tartrate, prednisone
4117                                                                                                  fipronil, (s)-methoprene
4118                                                                                                milbemycin oxime, spinosad
4119                                                                                                   ketoconazole, tris-edta
4120                                                                                                milbemycin oxime, spinosad
4125                                                                                                milbemycin oxime, spinosad
4127                                                                                            milbemycin oxime, praziquantel
4128                                                                                                                afoxolaner
4131                                                                                         betamethasone, gentamicin sulfate
4132                                                                                         betamethasone, gentamicin sulfate
4133                                                                     chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4162                                                                                        fipronil, permethrin, pyriproxyfen
4172                                                                                                  fipronil, (s)-methoprene
4183                                                                                                                selamectin
4184                                                                                                                selamectin
4191                                                                                                milbemycin oxime, spinosad
4193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4198                                                                                                                afoxolaner
4199                                                                                                          milbemycin oxime
4210                                                                                                milbemycin oxime, spinosad
4212                                                                                                milbemycin oxime, spinosad
4213                                                                                 lufenuron, milbemycin oxime, praziquantel
4215                                                                                               lufenuron, milbemycin oxime
4216                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4218                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4245                                                                           betamethasone, clotrimazole, gentamicin sulfate
4247                                                                                              ivermectin, pyrantel pamoate
4266                                                                                                   ketoconazole, tris-edta
4274                                                                                                                isoflurane
4298                                                                                        fipronil, permethrin, pyriproxyfen
4299                                                                                                                ivermectin
4302                                                                                               lufenuron, milbemycin oxime
4304                                                                                               lufenuron, milbemycin oxime
4305                                                                                                  fipronil, (s)-methoprene
4306                                                                                                                   omega 3
4307                                                                                               lufenuron, milbemycin oxime
4308                                                                                               lufenuron, milbemycin oxime
4309                                                                                                  fipronil, (s)-methoprene
4311                                                                                        joint supplement (glucosamine hcl)
4313                                                                                               lufenuron, milbemycin oxime
4314                                                                                                  fipronil, (s)-methoprene
4323                                                                                                                selamectin
4324                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                          milbemycin oxime
4326                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4336                                                                                                                fluralaner
4338                                                                                 lufenuron, milbemycin oxime, praziquantel
4348                                                                              dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                milbemycin oxime, spinosad
4350                                                                                                milbemycin oxime, spinosad
4353                                                                                                milbemycin oxime, spinosad
4354                                                                                                milbemycin oxime, spinosad
4368                                                                                                        calming supplement
4371                                                                                                                   omega 3
4384                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                               lufenuron, milbemycin oxime
4390                                                                                                                fluralaner
4395                                                                                              ivermectin, pyrantel pamoate
4405                                                                                                milbemycin oxime, spinosad
4409                                                                                                  enrofloxacin, tobramycin
4426                                                                                              ivermectin, pyrantel pamoate
4427                                                                                                imidacloprid, pyriproxyfen
4428                                                                                                                  spinosad
4430                                                                                                         hypochlorous acid
4431                                                                                   over-the-counter antipruritic/astrigent
4444                                                                                                  fipronil, (s)-methoprene
4446                                                                                                                 probiotic
4454                                                                                                                isoflurane
4469                                                                                                   ketoconazole, tris-edta
4470                                                                                                   ketoconazole, tris-edta
4471                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4480                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
4483                                                                                               lufenuron, milbemycin oxime
4486                                                                                                                   omega 3
4497                                                                                               lufenuron, milbemycin oxime
4499                                                                                            milbemycin oxime, praziquantel
4500                                                                                                                afoxolaner
4501                                                                                       rx diet - skin and food sensitivity
4502                                                                                                                afoxolaner
4504                                                                                       rx diet - skin and food sensitivity
4505                                                                                                          milbemycin oxime
4511                                                                                                                   omega 3
4517                                                                                                                 probiotic
4524                                                                                ivermectin, praziquantel, pyrantel pamoate
4532                                                                                                          milbemycin oxime
4533                                                                                                      prebiotic, probiotic
4536                                                                                                          milbemycin oxime
4544                                                                                                                   omega 3
4545                                                                                ivermectin, praziquantel, pyrantel pamoate
4547                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4558                                                                                              ivermectin, pyrantel pamoate
4559                                                                                        fipronil, permethrin, pyriproxyfen
4560                                                                                              ivermectin, pyrantel pamoate
4561                                                                                         betamethasone, gentamicin sulfate
4562                                                                                                                fluralaner
4564                                                                                              ivermectin, pyrantel pamoate
4565                                                                                                                fluralaner
4566                                                                                              ivermectin, pyrantel pamoate
4567                                                                                                                fluralaner
4568                                                                                                                fluralaner
4569                                                                                                          milbemycin oxime
4587                                                                                              ivermectin, pyrantel pamoate
4597                                                                                clinical trial - cancer prevention vaccine
4599                                                                                                                ivermectin
4611                                                                                                milbemycin oxime, spinosad
4627                                                                                                                  fipronil
4628                                                                                                            (s)-methoprene
4629                                                                                               lufenuron, milbemycin oxime
4631                                                                                                  fipronil, (s)-methoprene
4634                                                                                               rx diet - digestive support
4638                                                                                                  fipronil, (s)-methoprene
4640                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4642                                                                                            milbemycin oxime, praziquantel
4643                                                                                                              cyclosporine
4648                                                                                            milbemycin oxime, praziquantel
4649                                                                                                  fipronil, (s)-methoprene
4651                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
4654                                                                                                  fipronil, (s)-methoprene
4655                                                                                            milbemycin oxime, praziquantel
4695                                                                                                          milbemycin oxime
4717                                                                                                                  spinosad
4719                                                                            mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                   ketoconazole, tris-edta
4726                                                                                                          milbemycin oxime
4738                                                                                                milbemycin oxime, spinosad
4739                                                                                                milbemycin oxime, spinosad
4743                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                         betamethasone, gentamicin sulfate
4745                                                                                                milbemycin oxime, spinosad
4748                                                                                                milbemycin oxime, spinosad
4757                                                                                                imidacloprid, pyriproxyfen
4763                                                                                                imidacloprid, pyriproxyfen
4764                                                                                                imidacloprid, pyriproxyfen
4766                                                                                                imidacloprid, pyriproxyfen
4777                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
4780                                                                                                  joint supplement (other)
4782                                                                                                                 probiotic
4801                                                                                                                prednisone
4802                                                                                              ivermectin, pyrantel pamoate
4805                                                                              dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                afoxolaner
4813                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4824                                                                                                  imidacloprid, moxidectin
4826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4828                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
4832                                                                                     enrofloxacin, triamcinolone acetonide
4853                                                                                                   ketoconazole, tris-edta
4855                                                                                                milbemycin oxime, spinosad
4858                                                                                                milbemycin oxime, spinosad
4859                                                                                              ivermectin, pyrantel pamoate
4861                                                                                              ivermectin, pyrantel pamoate
4862                                                                                              ivermectin, pyrantel pamoate
4881                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4902                                                                                                  fipronil, (s)-methoprene
4904                                                                                                milbemycin oxime, spinosad
4905                                                                                                milbemycin oxime, spinosad
4910                                                                                                  flumethrin, imidacloprid
4912                                                                                            milbemycin oxime, praziquantel
4913                                                                                                  flumethrin, imidacloprid
4914                                                                                            milbemycin oxime, praziquantel
4917                                                                                            milbemycin oxime, praziquantel
4935                                                                                                                ivermectin
4956                                                                                                   ketoconazole, tris-edta
4960                                                                                                   ketoconazole, tris-edta
4968                                                                                                milbemycin oxime, spinosad
4969                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
4980                                                                                                                 probiotic
4981                                                                                            milbemycin oxime, praziquantel
4996                                                                                         betamethasone, gentamicin sulfate
4998                                                                                                             oxymetazoline
5043                                                                                                  fipronil, (s)-methoprene
5046                                                                                         betamethasone, gentamicin sulfate
5078                                                                                                milbemycin oxime, spinosad
5122                                                                                              ivermectin, pyrantel pamoate
5123                                                                                                                afoxolaner
5127                                                                                            polysulfated glycosaminoglycan
5134                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5140                                                                                        amoxicillin, clavulanate potassium
5159                                                                                        joint supplement (glucosamine hcl)
5160                                                                                                                   omega 3
5161                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5173                                                                                              ivermectin, pyrantel pamoate
5174                                                                                                                afoxolaner
5191                                                                                                milbemycin oxime, spinosad
5193                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5195                                                                                                  flumethrin, imidacloprid
5203                                                                                                                ivermectin
5210                                                                                                              ketoconazole
5211                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                               chlorhexidine gluconate, miconazole nitrate
5213                                                                                                    ear cleaner (otirinse)
5214                                                                                               lufenuron, milbemycin oxime
5220                                                                                         betamethasone, gentamicin sulfate
5221                                                                               chlorhexidine gluconate, miconazole nitrate
5222                                                                                                  imidacloprid, permethrin
5223                                                                                               lufenuron, milbemycin oxime
5225                                                                                               lufenuron, milbemycin oxime
5234                                                                                  febantel, praziquantel, pyrantel pamoate
5235                                                                                               lufenuron, milbemycin oxime
5243                                                                                               lufenuron, milbemycin oxime
5244                                                                                                imidacloprid, pyriproxyfen
5247                                                                                            milbemycin oxime, praziquantel
5248                                                                                                  imidacloprid, permethrin
5253                                                                                              ivermectin, pyrantel pamoate
5255                                                                                               lufenuron, milbemycin oxime
5256                                                                                               lufenuron, milbemycin oxime
5257                                                                                               lufenuron, milbemycin oxime
5258                                                                                               lufenuron, milbemycin oxime
5261                                                                                               lufenuron, milbemycin oxime
5262                                                                                  febantel, praziquantel, pyrantel pamoate
5264                                                                                                imidacloprid, pyriproxyfen
5265                                                                                                          milbemycin oxime
5270                                                                                            milbemycin oxime, praziquantel
5271                                                                                                  imidacloprid, permethrin
5289                                                                                                          milbemycin oxime
5332                                                                                                                   amitraz
5333                                                                                                                   omega 3
5334                                                                                              ivermectin, pyrantel pamoate
5335                                                                                                                   amitraz
5336                                                                                                  urinary tract supplement
5337                                                                                              ivermectin, pyrantel pamoate
5340                                                                                              ivermectin, pyrantel pamoate
5354                                                                                                  flumethrin, imidacloprid
5357                                                                              dexamethasone, neomycin sulfate, polymyxin b
5359                                                                                              ivermectin, pyrantel pamoate
5360                                                                                              ivermectin, pyrantel pamoate
5362                                                                            attapulgite, bismuth subcarbonate, kanamycin a
5369                                                                                              ivermectin, pyrantel pamoate
5377                                                                                              ivermectin, pyrantel pamoate
5378                                                                                                  fipronil, (s)-methoprene
5379                                                                                                                ivermectin
5384                                                                                                          milbemycin oxime
5385                                                                                                  fipronil, (s)-methoprene
5386                                                                                              ivermectin, pyrantel pamoate
5387                                                                                                          milbemycin oxime
5388                                                                                     dinotefuran, permethrin, pyriproxyfen
5391                                                                                                                afoxolaner
5392                                                                                              ivermectin, pyrantel pamoate
5403                                                                                                          milbemycin oxime
5424                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5428                                                                                         betamethasone, gentamicin sulfate
5440                                                                                                                   omega 3
5460                                        chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5464                                                                                                milbemycin oxime, spinosad
5484                                                                                                                   omega 3
5491                                                                                                  fipronil, (s)-methoprene
5492                                                                                                                ivermectin
5497                                                                                              ivermectin, pyrantel pamoate
5498                                                                                              ivermectin, pyrantel pamoate
5499                                                                                                  fipronil, (s)-methoprene
5500                                                                                              ivermectin, pyrantel pamoate
5501                                                                                                   chlorhexidine gluconate
5502                                                                                                     rattlesnake antivenin
5507                                                                                              ivermectin, pyrantel pamoate
5508                                                                                              ivermectin, pyrantel pamoate
5509                                                                                              ivermectin, pyrantel pamoate
5511                                                                                              ivermectin, pyrantel pamoate
5513                                                                                              ivermectin, pyrantel pamoate
5527                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                    cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                   triamcinolone acetonide
5533                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                              ivermectin, pyrantel pamoate
5535                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5537                                                                                                   triamcinolone acetonide
5541                                                                                              ivermectin, pyrantel pamoate
5542                                                                                    cyphenothrin, fipronil, (s)-methoprene
5545                                                                                              ivermectin, pyrantel pamoate
5546                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5552                                                                                              ivermectin, pyrantel pamoate
5553                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5557                                                                                              ivermectin, pyrantel pamoate
5568                                                                                               lufenuron, milbemycin oxime
5571                                                                                               lufenuron, milbemycin oxime
5576                                                                                               lufenuron, milbemycin oxime
5577                                                                                                              deltamethrin
5578                                                                                               lufenuron, milbemycin oxime
5595                                                                                               lufenuron, milbemycin oxime
5600                                                                                               lufenuron, milbemycin oxime
5602                                                                                               lufenuron, milbemycin oxime
5607                                                                                               lufenuron, milbemycin oxime
5626                                                                                              ivermectin, pyrantel pamoate
5627                                                                                              ivermectin, pyrantel pamoate
5628                                                                                                                afoxolaner
5629                                                                                              ivermectin, pyrantel pamoate
5630                                                                                                                afoxolaner
5631                                                                                                                ivermectin
5632                                                                                                                afoxolaner
5649                                                                                                                 probiotic
5681                                                                                                                afoxolaner
5682                                                                                                          milbemycin oxime
5695                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5721                                                                                                milbemycin oxime, spinosad
5722                                                                                                milbemycin oxime, spinosad
5723                                                                                                milbemycin oxime, spinosad
5724                                                                                                milbemycin oxime, spinosad
5725                                                                                                milbemycin oxime, spinosad
5728                                                                                                milbemycin oxime, spinosad
5729                                                                            mometasone furoate, orbifloxacin, posaconazole
5731                                                                              florfenicol, mometasone furoate, terbinafine
5747                                                                                              ivermectin, pyrantel pamoate
5760                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5762                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5768                                                                                                                ivermectin
5771                                                                                                          milbemycin oxime
5777                                                                                                          melanoma vaccine
5804                                                                                                          milbemycin oxime
5814                                                                                                          tylosin tartrate
5834                                                                                              ivermectin, pyrantel pamoate
5839                                                                                               lufenuron, milbemycin oxime
5840                                                                                               lufenuron, milbemycin oxime
5858                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
5869                                                                                              ivermectin, pyrantel pamoate
5877                                                                                  febantel, praziquantel, pyrantel pamoate
5884                                                                                     chlorhexidine gluconate, ketoconazole
5887                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5913                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5917                                                                            dexamethasone, neomycin sulfate, thiabendazole
5930                                                                                              ivermectin, pyrantel pamoate
5932                                                                                                              cyclosporine
5933                                                                                                                fluralaner
5934                                                                                              ivermectin, pyrantel pamoate
5935                                                                                                      prednisolone acetate
5936                                                                                              ivermectin, pyrantel pamoate
5937                                                                                                                fluralaner
5941                                                                                              ivermectin, pyrantel pamoate
5942                                                                                                                fluralaner
5945                                                                               hydroquinone, mometasone furoate, tretinoin
5963                                                                                               lufenuron, milbemycin oxime
5964                                                                                                                afoxolaner
5965                                                                                               lufenuron, milbemycin oxime
5967                                                                                               lufenuron, milbemycin oxime
5976                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
5981                                                                                    joint supplement (glucosamine hcl/msm)
5988                                                                                                                  spinosad
5991                                                                                                  fipronil, (s)-methoprene
5992                                                                                              ivermectin, pyrantel pamoate
5993                                                                                              ivermectin, pyrantel pamoate
5994                                                                                    fipronil, pyriproxyfen, (s)-methoprene
6000                                                                                               lufenuron, milbemycin oxime
6002                                                                                                imidacloprid, pyriproxyfen
6003                                                                                               lufenuron, milbemycin oxime
6004                                                                                                imidacloprid, pyriproxyfen
6014                                                                                               lufenuron, milbemycin oxime
6015                                                                                                                afoxolaner
6016                                                                                                                afoxolaner
6017                                                                                               lufenuron, milbemycin oxime
6036                                                                                                milbemycin oxime, spinosad
6038                                                                                               lufenuron, milbemycin oxime
6059                                                                                              ivermectin, pyrantel pamoate
6063                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6068                                                                                              ivermectin, pyrantel pamoate
6069                                                                                     dinotefuran, permethrin, pyriproxyfen
6071                                                                                                                ivermectin
6072                                                                                                  flumethrin, imidacloprid
6076                                                                                                  flumethrin, imidacloprid
6078                                                                                                  flumethrin, imidacloprid
6088                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6090                                                                           betamethasone, clotrimazole, gentamicin sulfate
6093                                                                                 lufenuron, milbemycin oxime, praziquantel
6095                                                                                         betamethasone, gentamicin sulfate
6101                                                                                               lufenuron, milbemycin oxime
6102                                                                           betamethasone, clotrimazole, gentamicin sulfate
6104                                                                                               lufenuron, milbemycin oxime
6109                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6132                                                                                              ivermectin, pyrantel pamoate
6133                                                                                                                afoxolaner
6134                                                                                                          milbemycin oxime
6135                                                                                                                 sarolaner
6136                                                                                                          milbemycin oxime
6137                                                                                                                 sarolaner
6139                                                                                                          milbemycin oxime
6140                                                                                                                 sarolaner
6148                                                                                                milbemycin oxime, spinosad
6161                                                                                               lufenuron, milbemycin oxime
6164                                                                                                        miconazole nitrate
6200                                                                                                                 sarolaner
6202                                                                                                                afoxolaner
6206                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6208                                                                           betamethasone, clotrimazole, gentamicin sulfate
6217                                                                              florfenicol, mometasone furoate, terbinafine
6218                                                                                                             laser therapy
6221                                                                   chlorhexidine gluconate, ketoconazole, phytosphingosine
6224                                                                                                          milbemycin oxime
6225                                                                                                                 sarolaner
6226                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6231                                                                                            milbemycin oxime, praziquantel
6232                                                                                                                 sarolaner
6244                                                                              florfenicol, mometasone furoate, terbinafine
6257                                                                                                                selamectin
6258                                                                                              ivermectin, pyrantel pamoate
6266                                                                                   betamethasone, florfenicol, terbinafine
6267                                                                                            ketoconazole, phytosphingosine
6275                                                                                                       silver sulfadiazine
6282                                                                                              ivermectin, pyrantel pamoate
6283                                                                                                    indoxacarb, permethrin
6284                                                                                                                   omega 3
6293                                                                                                                afoxolaner
6302                                                                                                                ivermectin
6307                                                                                        amoxicillin, clavulanate potassium
6312                                                                           dexamethasone, enrofloxacin, miconazole nitrate
6319                                                                                     chlorhexidine gluconate, ketoconazole
6320                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6326                                                                                     dinotefuran, permethrin, pyriproxyfen
6328                                                                                    joint supplement (glucosamine hcl/msm)
6331                                                                                               lufenuron, milbemycin oxime
6358                                                                                                   chlorhexidine gluconate
6390                                                                                                               doxycycline
6395                                                                                        fipronil, permethrin, pyriproxyfen
6405                                                                                                  fipronil, (s)-methoprene
6406                                                                                                  flumethrin, imidacloprid
6411                                                                         chloroxylenol, salicylic acid, sodium thiosulfate
6437                                                                                              ivermectin, pyrantel pamoate
6441                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6444                                                                                              ivermectin, pyrantel pamoate
6451                                                                            mometasone furoate, orbifloxacin, posaconazole
6459                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6461                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6474                                                                                              ivermectin, pyrantel pamoate
6475                                                                                                                fluralaner
6486                                                                                            milbemycin oxime, praziquantel
6495                                                             bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6499                                                                                              ivermectin, pyrantel pamoate
6500                                                                                                                 sarolaner
6522                                                                                               lufenuron, milbemycin oxime
6523                                                                                                                afoxolaner
6527                                                                                               lufenuron, milbemycin oxime
6528                                                                                                                afoxolaner
6555                                                                                               lufenuron, milbemycin oxime
6562                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6569                                                                                                                ivermectin
6570                                                                                                  fipronil, (s)-methoprene
6571                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
6573                                                                                                  fipronil, (s)-methoprene
6579                                                                                                                fluralaner
6581                                                                                              ivermectin, pyrantel pamoate
6594                                                                                               lufenuron, milbemycin oxime
6602                                                                                               lufenuron, milbemycin oxime
6606                                                                                              ivermectin, pyrantel pamoate
6612                                                                                                          milbemycin oxime
6625                                                                                                          milbemycin oxime
6636                                                                                               lufenuron, milbemycin oxime
6644                                                                                               lufenuron, milbemycin oxime
6647                                                                                               lufenuron, milbemycin oxime
6648                                                                                                                 sarolaner
6650                                                                                         betamethasone, gentamicin sulfate
6658                                                                                              ivermectin, pyrantel pamoate
6662                                                                                              ivermectin, pyrantel pamoate
6663                                                                                              ivermectin, pyrantel pamoate
6680                                                                                                  imidacloprid, moxidectin
6683                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6687                                                                                                                ivermectin
6688                                                                                                  fipronil, (s)-methoprene
6694                                                                                         trimeprazine tartrate, prednisone
6696                                                                                                                ivermectin
6697                                                                                                  fipronil, (s)-methoprene
6698                                                                                              ivermectin, pyrantel pamoate
6702                                                                                                                ivermectin
6703                                                                                                  fipronil, (s)-methoprene
6714                                                                                                                  diazepam
6715                                                                                               lufenuron, milbemycin oxime
6716                                                                                                        calming supplement
6717                                                                                                               shen calmer
6733                                                                                              ivermectin, pyrantel pamoate
6751                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6759                                                                           betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                              ivermectin, pyrantel pamoate
6763                                                                                              ivermectin, pyrantel pamoate
6764                                                                                                  fipronil, (s)-methoprene
6778                                                                                               lufenuron, milbemycin oxime
6779                                                                                               lufenuron, milbemycin oxime
6781                                                                                               lufenuron, milbemycin oxime
6783                                                                                            milbemycin oxime, praziquantel
6786                                                                                                imidacloprid, pyriproxyfen
6796                                                                                               lufenuron, milbemycin oxime
6797                                                                                                          milbemycin oxime
6815                                                                                                                ivermectin
6816                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6824                                                                                            polysulfated glycosaminoglycan
6826                                                                                                                grapiprant
6828                                                                                               lufenuron, milbemycin oxime
6868                                                                                                                isoflurane
6880                                                                                                                isoflurane
6886                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
6891                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
6910                                                                                ivermectin, praziquantel, pyrantel pamoate
6928                                                                                     chlorhexidine gluconate, ketoconazole
6934                                                                          chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                      burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                           ear cleaner (epi-otic advanced)
6946                                                                                                milbemycin oxime, spinosad
6956                                                                                                                 mupirocin
6957                                                                                                                lokivetmab
6981                                                                                                                fluralaner
6982                                                                                                                ivermectin
6983                                                                                                                ivermectin
6986                                                                                                               clindamycin
7002                                                                                                milbemycin oxime, spinosad
7005                                                                                                              ketoconazole
7006                                                                                                unspecified shampoo/mousse
7017                                                                                                                 sarolaner
7021                                                                                                                 sarolaner
7025                                                                            mometasone furoate, orbifloxacin, posaconazole
7027                                                                              dexamethasone, neomycin sulfate, polymyxin b
7042                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7054                                                                                              ivermectin, pyrantel pamoate
7071                                           carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7092                                                                                         betamethasone, gentamicin sulfate
7093                                                                                                milbemycin oxime, spinosad
7095                                                                                                milbemycin oxime, spinosad
7096                                                                                                milbemycin oxime, spinosad
7116                                                                           dexamethasone, enrofloxacin, miconazole nitrate
7127                                                                                        chlorhexidine gluconate, tris-edta
7130                                                                                                milbemycin oxime, spinosad
7131                                                                                              ivermectin, pyrantel pamoate
7137                                                 digestive supplement, immune support supplement, skin and coat supplement
7149                                                                                                milbemycin oxime, spinosad
7151                                                                              dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                 probiotic
7153                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                       ear cleaner (zymox), hydrocortisone
7155                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7172                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                   acetic acid, boric acid
7175                                                                                                                 mupirocin
7177                                                                                         betamethasone, gentamicin sulfate
7180                                                                                         betamethasone, gentamicin sulfate
7189                                                                                         betamethasone, gentamicin sulfate
7208                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7218                                                                                                milbemycin oxime, spinosad
7243                                                                                              ivermectin, pyrantel pamoate
7247                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                afoxolaner
7249                                                                                              ivermectin, pyrantel pamoate
7260                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7262                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7291                                                                                                                 sarolaner
7295                                                                                                                 sarolaner
7297                                                                                                  joint supplement (other)
7320                                                                                              ivermectin, pyrantel pamoate
7342                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7344                                                                                                                ivermectin
7345                                                                                                                ivermectin
7346                                                                                                  fipronil, (s)-methoprene
7371                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7413                                                                                              ivermectin, pyrantel pamoate
7499                                                                                              ivermectin, pyrantel pamoate
7503                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7513                                                                                                               omega 3-6-9
7519                                                                                              ivermectin, pyrantel pamoate
7521                                                                                              ivermectin, pyrantel pamoate
7524                                                                                                               omega 3-6-9
7525                                                                                              ivermectin, pyrantel pamoate
7526                                                                                                                afoxolaner
7555                                                                                                                fluralaner
7563                                                                                              ivermectin, pyrantel pamoate
7564                                                                                                          phytosphingosine
7565                                                                                              ivermectin, pyrantel pamoate
7566                                                                                              ivermectin, pyrantel pamoate
7576                                                                                                  fipronil, (s)-methoprene
7577                                                                                               lufenuron, milbemycin oxime
7580                                                                                                                 carprofen
7583                                                                                               lufenuron, milbemycin oxime
7584                                                                                               lufenuron, milbemycin oxime
7585                                                                                                                 probiotic
7586                                                                                                           cbd or hemp oil
7587                                                                                                 immune support supplement
7588                                                                                                                   omega 3
7589                                                                                toothpaste/dental health solution or chews
7590                                                                                                                     algae
7598                                                                                        chlorhexidine gluconate, ophytrium
7635                                                                                dextromethorphan hydrobromide, guaifenesin
7660                                                                                               lufenuron, milbemycin oxime
7671                                                                                   transcranial magnetic stimulation (tms)
7673                                                                                                          pyrantel pamoate
7674                                                                                                          sulfadimethoxine
7675                                                                                                milbemycin oxime, spinosad
7678                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                   ketoconazole, tris-edta
7681                                                                                                milbemycin oxime, spinosad
7692                                                                                            milbemycin oxime, praziquantel
7696                                                                                            milbemycin oxime, praziquantel
7699                                                                                            milbemycin oxime, praziquantel
7701                                                                                            milbemycin oxime, praziquantel
7705                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7732                                                                                ivermectin, praziquantel, pyrantel pamoate
7742                                                                                              ivermectin, pyrantel pamoate
7743                                                                                                  fipronil, (s)-methoprene
7746                                                                                              ivermectin, pyrantel pamoate
7747                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                   omega 3
7749                                                                                              ivermectin, pyrantel pamoate
7750                                                                                    fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                       ear cleaner (zymox), hydrocortisone
7754                                                                                                                 carvacrol
7759                                                                                     dinotefuran, permethrin, pyriproxyfen
7763                                                                                              ivermectin, pyrantel pamoate
7772                                                                                                                 probiotic
7776                                                                                                                 vitamin d
7783                                                                                                                  fipronil
7784                                                                                               lufenuron, milbemycin oxime
7795                                                                                                                   omega 3
7812                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7818                                                                                         trimeprazine tartrate, prednisone
7820                                                                                         betamethasone, gentamicin sulfate
7822                                                                                         betamethasone, gentamicin sulfate
7832                                                                                                  fipronil, (s)-methoprene
7839                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7845                                                                                                       ear cleaner (zymox)
7846                                                                            mometasone furoate, orbifloxacin, posaconazole
7848                                                                                                    unspecified medication
7852                                                                                                               hydrocodone
7853                                                                                                         albuterol sulfate
7854                                                                                                        maropitant citrate
7862                                                                                                                    arnica
7883                                                                                                          milbemycin oxime
7884                                                                                                                afoxolaner
7887                                                                              florfenicol, mometasone furoate, terbinafine
7889                                                                              florfenicol, mometasone furoate, terbinafine
7895                                                                                dimethyl sulfoxide, fluocinolone acetonide
7926                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7929                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
7944                                                                                                   acetic acid, boric acid
7946                                                                                                          phytosphingosine
7961                                                            bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7966                                                                                              ivermectin, pyrantel pamoate
7967                                                                                                                afoxolaner
7968                                                                                              ivermectin, pyrantel pamoate
7969                                                                                                                afoxolaner
7970                                                                                        amoxicillin, clavulanate potassium
7973                                                                                              ofloxacin, unspecified nsaid
7987                                                                                                milbemycin oxime, spinosad
7988                                                                                              ivermectin, pyrantel pamoate
7993                                                                                                                selamectin
7995                                                                                            polysulfated glycosaminoglycan
7998                                                                                                                selamectin
8000                                                                                                                selamectin
8009                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8012                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8014                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8017                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8029                                                                                              ivermectin, pyrantel pamoate
8030                                                                                              ivermectin, pyrantel pamoate
8040                                                                                              ivermectin, pyrantel pamoate
8042                                                                                               lufenuron, milbemycin oxime
8043                                                                                            milbemycin oxime, praziquantel
8044                                                                                            milbemycin oxime, praziquantel
8045                                                                                                          milbemycin oxime
8075                                                                                                        calming supplement
8086                                                                           betamethasone, clotrimazole, gentamicin sulfate
8091                                                                                        amoxicillin, clavulanate potassium
8098                                                                                                  fipronil, (s)-methoprene
8099                                                                                            milbemycin oxime, praziquantel
8120                                                                                                                ivermectin
8121                                                                                                                ivermectin
8123                                                                                                                ivermectin
8125                                                                                            joint supplement (unspecified)
8128                                                                                                   ketoconazole, tris-edta
8130                                                                                              ivermectin, pyrantel pamoate
8131                                                                                                                afoxolaner
8136                                                                                            milbemycin oxime, praziquantel
8137                                                                                                                 lotilaner
8138                                                                                                          milbemycin oxime
8139                                                                                                                 lotilaner
8140                                                                                                   ketoconazole, tris-edta
8160                                                                                                                 probiotic
8182                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8184                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                              ivermectin, pyrantel pamoate
8186                                                                                              ivermectin, pyrantel pamoate
8187                                                                                              ivermectin, pyrantel pamoate
8188                                                                                                                afoxolaner
8195                                                                                              ivermectin, pyrantel pamoate
8196                                                                                                                afoxolaner
8205                                                                                                                  fipronil
8206                                                                                 lufenuron, milbemycin oxime, praziquantel
8207                                                                                 lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                  fipronil
8209                                                                                               lufenuron, milbemycin oxime
8210                                                                                               lufenuron, milbemycin oxime
8211                                                                                                      fipronil, permethrin
8212                                                                                               lufenuron, milbemycin oxime
8215                                                                                                      fipronil, permethrin
8221                                                                                                                ivermectin
8223                                                                                                                ivermectin
8224                                                                                              ivermectin, pyrantel pamoate
8234                                                                            dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                   chlorhexidine gluconate
8238                                                                                                   chlorhexidine gluconate
8248                                                                                                                fluralaner
8251                                                                                                             metronidazole
8252                                                                                         betamethasone, gentamicin sulfate
8280                                                                                                                isoflurane
8284                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8293                                                                                         betamethasone, gentamicin sulfate
8296                                                                                              ivermectin, pyrantel pamoate
8297                                                                                                  fipronil, (s)-methoprene
8298                                                                                       ear cleaner (zymox), hydrocortisone
8314                                                                                              ivermectin, pyrantel pamoate
8315                                                                                                imidacloprid, pyriproxyfen
8337                                                                                                             cephalosporin
8338                                                                                                                prednisone
8349                                                                                     dinotefuran, permethrin, pyriproxyfen
8354                                                                                               lufenuron, milbemycin oxime
8355                                                                                        fipronil, permethrin, pyriproxyfen
8358                                                                                               lufenuron, milbemycin oxime
8359                                                                                                                fluralaner
8362                                                                                               chloroxylenol, ketoconazole
8369                                                                    chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                               lufenuron, milbemycin oxime
8371                                                                                                                 sarolaner
8376                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                               lufenuron, milbemycin oxime
8378                                                                                                                 sarolaner
8389                                                                                              ivermectin, pyrantel pamoate
8408                                                                                              ivermectin, pyrantel pamoate
8410                                                                                                                ivermectin
8418                                                                                                                isoflurane
8420                                                                                                                ivermectin
8421                                                                                                                ivermectin
8424                                                                                                imidacloprid, pyriproxyfen
8425                                                                                              ivermectin, pyrantel pamoate
8427                                                                                              ivermectin, pyrantel pamoate
8435                                                                                                                 probiotic
8436                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8440                                                                                                  fipronil, (s)-methoprene
8454                                                                                                          milbemycin oxime
8466                                                                                               lufenuron, milbemycin oxime
8467                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8475                                                                                                   chlorhexidine gluconate
8478                                                                                                   chlorhexidine gluconate
8509                                                                                                                 probiotic
8514                                                                                               lufenuron, milbemycin oxime
8515                                                                                               lufenuron, milbemycin oxime
8528                                                                                            milbemycin oxime, praziquantel
8531                                                                                            milbemycin oxime, praziquantel
8541                                                                                                        miconazole nitrate
8550                                                                                ivermectin, praziquantel, pyrantel pamoate
8554                                                                                                          milbemycin oxime
8555                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8578                                                                                                   acetic acid, boric acid
8581                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                               lufenuron, milbemycin oxime
8583                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                       ear cleaner (zymox), hydrocortisone
8585                                                                       isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                        acetic acid, chlorhexidine gluconate, ketoconazole
8588                                                                          chlorhexidine gluconate, enrofloxacin, tris-edta
8591                                                                                                milbemycin oxime, spinosad
8607                                                                                                imidacloprid, pyriproxyfen
8609                                                                                               lufenuron, milbemycin oxime
8613                                                                                         betamethasone, gentamicin sulfate
8673                                                                                                milbemycin oxime, spinosad
8674                                                                                                milbemycin oxime, spinosad
8675                                                                                                milbemycin oxime, spinosad
8676                                                                                                milbemycin oxime, spinosad
8677                                                                                                milbemycin oxime, spinosad
8694                                                                                                  fipronil, (s)-methoprene
8697                                                                                       allergy immunotherapy - unspecified
8702                                                                                                  fipronil, (s)-methoprene
8707                                                                                                  fipronil, (s)-methoprene
8731                                                                                                  flumethrin, imidacloprid
8735                                                                                                                 mupirocin
8736                                                                                     chlorhexidine gluconate, ketoconazole
8744                                                                                                                 mupirocin
8745                                                                                     chlorhexidine gluconate, ketoconazole
8756                                                                                                          milbemycin oxime
8757                                                                                                          milbemycin oxime
8759                                                                                                imidacloprid, pyriproxyfen
8760                                                                                               lufenuron, milbemycin oxime
8768                                                                                              ivermectin, pyrantel pamoate
8769                                                                                     dinotefuran, permethrin, pyriproxyfen
8770                                                                                              ivermectin, pyrantel pamoate
8771                                                                                     dinotefuran, permethrin, pyriproxyfen
8777                                                                                              ivermectin, pyrantel pamoate
8778                                                                                              ivermectin, pyrantel pamoate
8779                                                                                     dinotefuran, permethrin, pyriproxyfen
8780                                                                                              ivermectin, pyrantel pamoate
8781                                                                                     dinotefuran, permethrin, pyriproxyfen
8786                                                                                              ivermectin, pyrantel pamoate
8790                                                                                              ivermectin, pyrantel pamoate
8791                                                                                                                fluralaner
8792                                                                                                   ketoconazole, tris-edta
8793                                                                                                                fluralaner
8794                                                                                              ivermectin, pyrantel pamoate
8795                                                                                              ivermectin, pyrantel pamoate
8797                                                                                                                gabapentin
8805                                                                                                                ivermectin
8815                                                                              dexamethasone, neomycin sulfate, polymyxin b
8819                                                                                              ivermectin, pyrantel pamoate
8820                                                                                                                afoxolaner
8825                                                                                        amoxicillin, clavulanate potassium
8826                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
8828                                                                                              ivermectin, pyrantel pamoate
8831                                                                                              ivermectin, pyrantel pamoate
8833                                                                                              ivermectin, pyrantel pamoate
8837                                                                                                                afoxolaner
8843                                                                                                  fipronil, (s)-methoprene
8851                                                                                                                 probiotic
8852                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
8860                                                                           betamethasone, clotrimazole, gentamicin sulfate
8875                                                                                                                lokivetmab
8876                                                                                         betamethasone, gentamicin sulfate
8877                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
8879                                                                                              ivermectin, pyrantel pamoate
8885                                                                                              ivermectin, pyrantel pamoate
8908                                                                                                milbemycin oxime, spinosad
8911                                                                                               lufenuron, milbemycin oxime
8929                                                                                ivermectin, praziquantel, pyrantel pamoate
8930                                                                                ivermectin, praziquantel, pyrantel pamoate
8961                                                                                ivermectin, praziquantel, pyrantel pamoate
8962                                                                                ivermectin, praziquantel, pyrantel pamoate
9026                                                                                            milbemycin oxime, praziquantel
9046                                                                                               lufenuron, milbemycin oxime
9047                                                                           betamethasone, clotrimazole, gentamicin sulfate
9050                                                                                               lufenuron, milbemycin oxime
9052                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9054                                                                                                          milbemycin oxime
9055                                                                                              ivermectin, pyrantel pamoate
9060                                                                                              ivermectin, pyrantel pamoate
9064                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9070                                                                                              ivermectin, pyrantel pamoate
9071                                                                                                                fluralaner
9084                                                                                                    unspecified medication
9094                                                                                                milbemycin oxime, spinosad
9095                                                                                              ivermectin, pyrantel pamoate
9098                                                                                              ivermectin, pyrantel pamoate
9099                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                 probiotic
9101                                                                                                                   omega 3
9109                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9118                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9132                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9136                                                                                          burow's solution, hydrocortisone
9156                                                                           betamethasone, clotrimazole, gentamicin sulfate
9160                                                                                                  fipronil, (s)-methoprene
9161                                                                                              ivermectin, pyrantel pamoate
9170                                                                                                          milbemycin oxime
9187                                                                                         betamethasone, gentamicin sulfate
9193                                                                                                                 probiotic
9202                                                                                              ivermectin, pyrantel pamoate
9230                                                                                           ear cleaner (epi-otic advanced)
9236                                                                                              ivermectin, pyrantel pamoate
9239                                                                                       allergy immunotherapy - unspecified
9240                                                                                            unspecified allergy medication
9241                                                                                             allergy immunotherapy - drops
9242                                                                                              ivermectin, pyrantel pamoate
9244                                                                                       allergy immunotherapy - unspecified
9252                                                                                                                ivermectin
9253                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                              ivermectin, pyrantel pamoate
9259                                                                                                                afoxolaner
9267                                                                                                          milbemycin oxime
9269                                                                                              ivermectin, pyrantel pamoate
9271                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9292                                                                                                milbemycin oxime, spinosad
9294                                                                                                milbemycin oxime, spinosad
9295                                                                                                milbemycin oxime, spinosad
9297                                                                                                                   omega 3
9386                                                                                              ivermectin, pyrantel pamoate
9387                                                                                     dinotefuran, permethrin, pyriproxyfen
9416                                                                                                   acetic acid, boric acid
9418                                                                                                          phytosphingosine
9421                                                                                                  flumethrin, imidacloprid
9422                                                                                              ivermectin, pyrantel pamoate
9426                                                                                              ivermectin, pyrantel pamoate
9429                                                       bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9432                                                                                                  flumethrin, imidacloprid
9433                                                                                              ivermectin, pyrantel pamoate
9434                                                                                              ivermectin, pyrantel pamoate
9435                                                                                         allergy immunotherapy - injection
9436                                                                                              ivermectin, pyrantel pamoate
9438                                                                                         allergy immunotherapy - injection
9447                                                                            bacitracin zinc, neomycin sulfate, polymyxin b
9452                                                                                              ivermectin, pyrantel pamoate
9453                                                                                                  fipronil, (s)-methoprene
9454                                                                              dexamethasone, neomycin sulfate, polymyxin b
9494                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9511                                                                                        amoxicillin, clavulanate potassium
9516                                                                              dexamethasone, neomycin sulfate, polymyxin b
9524                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9544                                                                                                                afoxolaner
9546                                                                                                                afoxolaner
9548                                                                                                                 sarolaner
9549                                                                                                                afoxolaner
9584                                                                                                          milbemycin oxime
9588                                                                                                                 tris-edta
9592                                                                              dexamethasone, neomycin sulfate, polymyxin b
9596                                                                      clotrimazole, gentamicin sulfate, mometasone furoate
9600                                                                                               lufenuron, milbemycin oxime
9601                                                                                                                ivermectin
9602                                                                                                                 carprofen
9603                                                                                                                  tramadol
9604                                                                                               acepromazine, hydromorphone
9609                                                                                               lufenuron, milbemycin oxime
9610                                                                                                                fluralaner
9612                                                                           betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                         betamethasone, gentamicin sulfate
9614                                                                                     chlorhexidine gluconate, ketoconazole
9615                                                                                               lufenuron, milbemycin oxime
9616                                                                                                                fluralaner
9617                                                                                               lufenuron, milbemycin oxime
9618                                                                                                                fluralaner
9619                                                                                               lufenuron, milbemycin oxime
9620                                                                                                                fluralaner
9621                                                                                               lufenuron, milbemycin oxime
9635                                                                                                milbemycin oxime, spinosad
9640                                                                                                milbemycin oxime, spinosad
9641                                                                                                milbemycin oxime, spinosad
9643                                                                                                milbemycin oxime, spinosad
9718                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9723                                                                                              ivermectin, pyrantel pamoate
9759                                                                                              ivermectin, pyrantel pamoate
9760                                                                                                imidacloprid, pyriproxyfen
9761                                                                                              ivermectin, pyrantel pamoate
9766                                                                                                                ivermectin
9770                                                                                ivermectin, praziquantel, pyrantel pamoate
9785                                                                                              ivermectin, pyrantel pamoate
9791                                                                                                          milbemycin oxime
9807                                                                              dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                               latanoprost
9809                                                                                                               dorzolamide
9821                                                                                                                 probiotic
9826                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9828                                                                                                               hydrocodone
9833                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9837                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9840                                                                                    dexamethasone, ketoconazole, tris-edta
9843                                                                                                                    arnica
9863                                                                                                        miconazole nitrate
9865                                                                                         betamethasone, gentamicin sulfate
9873                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9877                                                                                                                 carprofen
9884                                                                                                              cyclosporine
9889                                                                                                                ivermectin
9890                                                                                        fipronil, permethrin, pyriproxyfen
9891                                                                                                              cyclosporine
9892                                                         neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9894                                                                                                          milbemycin oxime
9895                                                                                                                afoxolaner
9896                                                                                                              cyclosporine
9897                                                                                                          milbemycin oxime
9898                                                                                                                afoxolaner
9901                                                                joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9903                                                                                                              cyclosporine
9907                                                                    joint supplement (chondroitin sulfate/glucosamine hcl)
9917                                                                                                                ivermectin
9928                                                                                                           dexmedetomidine
9931                                                                                                                ivermectin
9935                                                                                                milbemycin oxime, spinosad
9942                                                                                                      rx diet - gi low fat
9943                                                                                                milbemycin oxime, spinosad
9944                                                                                                milbemycin oxime, spinosad
9945                                                                                              ivermectin, pyrantel pamoate
9963                                                                                                  imidacloprid, permethrin
9966                                                                                                imidacloprid, pyriproxyfen
9968                                                                                                imidacloprid, pyriproxyfen
9970                                                                                                   acetic acid, boric acid
9972                                                                                                imidacloprid, pyriproxyfen
10017                                                                                              lufenuron, milbemycin oxime
10026                                                                                              lufenuron, milbemycin oxime
10027                                                                                                 flumethrin, imidacloprid
10037                                                                                              dexamethasone, ketoconazole
10042                                                                             florfenicol, mometasone furoate, terbinafine
10053                                                                                              lufenuron, milbemycin oxime
10061                                                                                          ear cleaner (epi-otic advanced)
10063                                                                                                 flumethrin, imidacloprid
10066                                                                                                 flumethrin, imidacloprid
10075                                                                                                               ivermectin
10092                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                        betamethasone, gentamicin sulfate
10106                                                                                             ivermectin, pyrantel pamoate
10107                                                                                                 fipronil, (s)-methoprene
10108                                                                                             ivermectin, pyrantel pamoate
10109                                                                                                 fipronil, (s)-methoprene
10111                                                                                             ivermectin, pyrantel pamoate
10113                                                                                                 fipronil, (s)-methoprene
10115                                                                                             ivermectin, pyrantel pamoate
10116                                                                                                 fipronil, (s)-methoprene
10119                                                                                             ivermectin, pyrantel pamoate
10120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                probiotic
10130                                                                                                                 propofol
10131                                                                                                            buprenorphine
10132                                                                                                             acepromazine
10133                                                                                                         atropine sulfate
10134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10167                                                                                             ivermectin, pyrantel pamoate
10170                                                                                             ivermectin, pyrantel pamoate
10176                                                                          betamethasone, clotrimazole, gentamicin sulfate
10187                                                                          betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                        trimeprazine tartrate, prednisone
10195                                                                                                            metronidazole
10198                                                                                                 imidacloprid, permethrin
10200                                                                                                               fluralaner
10209                                                                                             ivermectin, pyrantel pamoate
10219                                                                                             ivermectin, pyrantel pamoate
10232                                                                                                               prednisone
10233                                                                                                          diphenhydramine
10234                                                                                                               cetirizine
10235                                                                                             ivermectin, pyrantel pamoate
10245                                                                                             ivermectin, pyrantel pamoate
10249                                                                                                 fipronil, (s)-methoprene
10260                                                                                                 flumethrin, imidacloprid
10264                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10273                                                                                             ivermectin, pyrantel pamoate
10274                                                                                                               afoxolaner
10275                                                                                             ivermectin, pyrantel pamoate
10276                                                                                                               afoxolaner
10301                                                                                              lufenuron, milbemycin oxime
10312                                                                                                               selamectin
10313                                                                                           praziquantel, pyrantel pamoate
10314                                                                                       amoxicillin, clavulanate potassium
10320                                                                                       amoxicillin, clavulanate potassium
10324                                                                                                               selamectin
10334                                                                                               milbemycin oxime, spinosad
10335                                                                                                               fluralaner
10345                                                                                                       calming supplement
10347                                                                                                 urinary tract supplement
10348                                                                                                            magnolia bark
10349                                                                                        betamethasone, gentamicin sulfate
10356                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10365                                                                                             ivermectin, pyrantel pamoate
10366                                                                                       fipronil, permethrin, pyriproxyfen
10370                                                                                             ivermectin, pyrantel pamoate
10372                                                                                                               ivermectin
10374                                                                                             ivermectin, pyrantel pamoate
10379                                                                                           milbemycin oxime, praziquantel
10400                                                                                                               ivermectin
10403                                                                                                 fipronil, (s)-methoprene
10405                                                                                                 fipronil, (s)-methoprene
10408                                                                                                         milbemycin oxime
10409                                                                                                         milbemycin oxime
10410                                                                                           milbemycin oxime, praziquantel
10412                                                                                                         milbemycin oxime
10429                                                                          betamethasone, clotrimazole, gentamicin sulfate
10435                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
10441                                                                                       chlorhexidine gluconate, ophytrium
10445                                                                                        betamethasone, gentamicin sulfate
10470                                                                                                                mupirocin
10477                                                                                               imidacloprid, pyriproxyfen
10478                                                                               ivermectin, praziquantel, pyrantel pamoate
10483                                                                                             ivermectin, pyrantel pamoate
10485                                                                                                               ivermectin
10487                                                                                                               ivermectin
10499                                                                                                         milbemycin oxime
10503                                                                                                         milbemycin oxime
10505                                                                                             ivermectin, pyrantel pamoate
10506                                                                               ivermectin, praziquantel, pyrantel pamoate
10529                                                                                                                mupirocin
10555                                                                                                                mupirocin
10557                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10565                                                                                        betamethasone, gentamicin sulfate
10573                                                      betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10575                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                          diphenhydramine
10577                                                                                                               famotidine
10578                                                                                                       maropitant citrate
10579                                                                                                            metronidazole
10580                                                                                                              vinblastine
10583                                                                                               milbemycin oxime, spinosad
10588                                                                                                               ivermectin
10590                                                                                             ivermectin, pyrantel pamoate
10591                                                                                             ivermectin, pyrantel pamoate
10610                                                                                             ivermectin, pyrantel pamoate
10619                                                                                                     cefpodoxime proxetil
10624                                                                                               imidacloprid, pyriproxyfen
10628                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10642                                                                                                  chlorhexidine gluconate
10655                                                                                             ivermectin, pyrantel pamoate
10667                                                                                              lufenuron, milbemycin oxime
10671                                                                                               imidacloprid, pyriproxyfen
10678                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10682                                                                                                         pyrantel pamoate
10683                                                                                              lufenuron, milbemycin oxime
10684                                                                                              lufenuron, milbemycin oxime
10685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                  omega 3
10687                                                                                                             multivitamin
10689                                                                                              lufenuron, milbemycin oxime
10693                                                                                                               cetirizine
10694                                                                                              lufenuron, milbemycin oxime
10696                                                                                                      ear cleaner (zymox)
10697 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10701                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
10706                                                                                                         pyrantel pamoate
10707                                                                                              lufenuron, milbemycin oxime
10711                                                                                              lufenuron, milbemycin oxime
10712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                  omega 3
10714                                                                                                             multivitamin
10717                                                                                              lufenuron, milbemycin oxime
10718                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
10725                                                                                              lufenuron, milbemycin oxime
10726 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                   unspecified medication
10740                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
10743                                                                                                  chlorhexidine gluconate
10751                                                                                           ketoconazole, phytosphingosine
10755                                                                                             ivermectin, pyrantel pamoate
10769                                                                                             ivermectin, pyrantel pamoate
10780                                                                                             ivermectin, pyrantel pamoate
10781                                                                                                               afoxolaner
10792                                                                                             ivermectin, pyrantel pamoate
10794                                                                                             ivermectin, pyrantel pamoate
10796                                                                                             ivermectin, pyrantel pamoate
10825                                                                                                 flumethrin, imidacloprid
10827                                                                                                 flumethrin, imidacloprid
10830                                                                                             ivermectin, pyrantel pamoate
10837                                                                                       amoxicillin, clavulanate potassium
10843                                                                                                               selamectin
10846                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10849                                                                                             ivermectin, pyrantel pamoate
10853                                                                                                                  amitraz
10863                                                                                        betamethasone, gentamicin sulfate
10865                                                                                             ivermectin, pyrantel pamoate
10866                                                                                       fipronil, permethrin, pyriproxyfen
10870                                                                                              lufenuron, milbemycin oxime
10871                                                                                                 fipronil, (s)-methoprene
10874                                                                                              lufenuron, milbemycin oxime
10877                                                                                             ivermectin, pyrantel pamoate
10878                                                                                                               afoxolaner
10892                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10896                                                                           mometasone furoate, orbifloxacin, posaconazole
10898                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10899                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
10901                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10905                                                                                        betamethasone, gentamicin sulfate
10928                                                                                                               afoxolaner
10929                                                                                             ivermectin, pyrantel pamoate
10934                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10938                                                                                                         milbemycin oxime
10953                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10959                                                                                   fipronil, pyriproxyfen, (s)-methoprene
10970                                                                                                         milbemycin oxime
10971                                                                                                               fluralaner
11003                                                                                             afoxolaner, milbemycin oxime
11008                                                                                             ivermectin, pyrantel pamoate
11009                                                                                             ivermectin, pyrantel pamoate
11010                                                                                                               ivermectin
11011                                                                                             ivermectin, pyrantel pamoate
11016                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11021                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
11035                                                                                             ivermectin, pyrantel pamoate
11036                                                                                                               afoxolaner
11037                                                                                             ivermectin, pyrantel pamoate
11038                                                                                                               afoxolaner
11065                                                                                              lufenuron, milbemycin oxime
11085                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11088                                                                                                          cbd or hemp oil
11093                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
11134                                                                                                 fipronil, (s)-methoprene
11142                                                                             florfenicol, mometasone furoate, terbinafine
11144                                                                                                  chlorhexidine gluconate
11145                                                                                                  ketoconazole, tris-edta
11152                                                                                              lufenuron, milbemycin oxime
11153                                                                                                 imidacloprid, permethrin
11155                                                                                              lufenuron, milbemycin oxime
11156                                                                                                 imidacloprid, permethrin
11158                                                                                lufenuron, milbemycin oxime, praziquantel
11159                                                                                             ivermectin, pyrantel pamoate
11163                                                                                             ivermectin, pyrantel pamoate
11165                                                                                             ivermectin, pyrantel pamoate
11182                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11186                                                                                             ivermectin, pyrantel pamoate
11189                                                                                             ivermectin, pyrantel pamoate
11208                                                                                              lufenuron, milbemycin oxime
11210                                                                                                                probiotic
11211                                                                                                   unspecified medication
11212                                                                                              lufenuron, milbemycin oxime
11213                                                                                                immune support supplement
11224                                                                                                               ivermectin
11228                                                                                             ivermectin, pyrantel pamoate
11229                                                                                             ivermectin, pyrantel pamoate
11241                                                                                               milbemycin oxime, spinosad
11242                                                                                              lufenuron, milbemycin oxime
11276                                                                                              lufenuron, milbemycin oxime
11291                                                                                             ivermectin, pyrantel pamoate
11292                                                                                                                 spinosad
11293                                                                                             ivermectin, pyrantel pamoate
11294                                                                                                               afoxolaner
11295                                                                                             ivermectin, pyrantel pamoate
11296                                                                                                               afoxolaner
11307                                                                                             ivermectin, pyrantel pamoate
11311                                                                                             ivermectin, pyrantel pamoate
11312                                                                                                                sarolaner
11315                                                                                             ivermectin, pyrantel pamoate
11316                                                                                                                sarolaner
11317                                                                                                              clindamycin
11318                                                                                                                firocoxib
11326                                                                                              lufenuron, milbemycin oxime
11327                                                                                               milbemycin oxime, spinosad
11338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11340                                                                               dextromethorphan hydrobromide, guaifenesin
11346                                                                                                      ear cleaner (zymox)
11349                                                                                                      ear cleaner (zymox)
11350                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11353                                                                                 febantel, praziquantel, pyrantel pamoate
11356                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
11360                                                                                                                carprofen
11368                                                                                                         milbemycin oxime
11385                                                                                                               ivermectin
11386                                                                                                               ivermectin
11387                                                                                                             fenbendazole
11388                                                                                                             fenbendazole
11394                                                                                                               benzocaine
11415                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11436                                                                                lufenuron, milbemycin oxime, praziquantel
11437                                                                                              lufenuron, milbemycin oxime
11441                                                                                              lufenuron, milbemycin oxime
11464                                                                                      ear cleaner (zymox), hydrocortisone
11470                                                                                                               isoflurane
11471                                                                                                           dental sealant
11473                                                                                                               ivermectin
11477                                                                                             ivermectin, pyrantel pamoate
11493                                                                                       joint supplement (glucosamine hcl)
11509                                                                               ivermectin, praziquantel, pyrantel pamoate
11536                                                                                              lufenuron, milbemycin oxime
11537                                                                                              lufenuron, milbemycin oxime
11538                                                                                              lufenuron, milbemycin oxime
11545                                                                                              lufenuron, milbemycin oxime
11546                                                                                              lufenuron, milbemycin oxime
11547                                                                                              lufenuron, milbemycin oxime
11551                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11560                                                                                             ivermectin, pyrantel pamoate
11561                                                                                             ivermectin, pyrantel pamoate
11562                                                                                                               afoxolaner
11567                                                                                             ivermectin, pyrantel pamoate
11568                                                                                                               afoxolaner
11570                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11575                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                  omega 3
11577                                                                                                                probiotic
11578                                                                                            unspecified vision supplement
11589                                                                                                               ivermectin
11593                                                                                             ivermectin, pyrantel pamoate
11596                                                                                             ivermectin, pyrantel pamoate
11599                                                                                                 fipronil, (s)-methoprene
11600                                                                                             ivermectin, pyrantel pamoate
11620                                                                           mometasone furoate, orbifloxacin, posaconazole
11621                                                                             florfenicol, mometasone furoate, terbinafine
11633                                                                                             ivermectin, pyrantel pamoate
11637                                                                                                               afoxolaner
11641                                                                                                         milbemycin oxime
11651                                                                                                               ivermectin
11652                                                                                                 imidacloprid, permethrin
11653                                                                                               milbemycin oxime, spinosad
11654                                                                                              lufenuron, milbemycin oxime
11655                                                                                               milbemycin oxime, spinosad
11656                                                                                              lufenuron, milbemycin oxime
11660                                                                                lufenuron, milbemycin oxime, praziquantel
11661                                                                                lufenuron, milbemycin oxime, praziquantel
11662                                                                                                               fluralaner
11664                                                                                                               fluralaner
11666                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                        dexamethasone, miconazole nitrate
11671                                                                                  betamethasone, florfenicol, terbinafine
11673                                                                                                         phytosphingosine
11678                                                                                             ivermectin, pyrantel pamoate
11680                                                                                                 fipronil, (s)-methoprene
11681                                                                                             ivermectin, pyrantel pamoate
11683                                                                                             ivermectin, pyrantel pamoate
11691                                                                                              lufenuron, milbemycin oxime
11692                                                                          betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                          ear cleaner (epi-otic advanced)
11695                                                                                                  acetic acid, boric acid
11701                                                                                                               ivermectin
11702                                                                                             ivermectin, pyrantel pamoate
11709                                                                                       joint supplement (glucosamine hcl)
11710                                                                                                                   garlic
11719                                                                                              lufenuron, milbemycin oxime
11722                                                                                                          cbd or hemp oil
11723                                                                                                                   garlic
11735                                                                                                         milbemycin oxime
11742                                                                                                               selamectin
11802                                                                                lufenuron, milbemycin oxime, praziquantel
11806                                         diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11813                                                                                              lufenuron, milbemycin oxime
11814                                                                                               imidacloprid, pyriproxyfen
11817                                                                                              lufenuron, milbemycin oxime
11822                                                                                                               ivermectin
11823                                                                                                               ivermectin
11824                                                                                                 fipronil, (s)-methoprene
11825                                                                                                               afoxolaner
11832                                                                                             ivermectin, pyrantel pamoate
11833                                                                                             ivermectin, pyrantel pamoate
11835                                                                                             ivermectin, pyrantel pamoate
11836                                                                                             ivermectin, pyrantel pamoate
11837                                                                                                               afoxolaner
11840                                                                               dextromethorphan hydrobromide, guaifenesin
11844                                                                               dextromethorphan hydrobromide, guaifenesin
11846                                                                                               acetaminophen, hydrocodone
11847                                                                                             ivermectin, pyrantel pamoate
11848                                                                                             ivermectin, pyrantel pamoate
11850                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
11861                                                                                             ivermectin, pyrantel pamoate
11862                                                                                             ivermectin, pyrantel pamoate
11873                                                                                             ivermectin, pyrantel pamoate
11874                                                                                             ivermectin, pyrantel pamoate
11875                                                                                                               afoxolaner
11881                                                                                             ivermectin, pyrantel pamoate
11882                                                                                                               afoxolaner
11889                                                                                                         milbemycin oxime
11898                                                                                             ivermectin, pyrantel pamoate
11911                                                                                                              oclacitinib
11919                                                                                                                probiotic
11930                                                                                                                probiotic
11959                                                                                              lufenuron, milbemycin oxime
11960                                                                               toothpaste/dental health solution or chews
11962                                                                                              lufenuron, milbemycin oxime
11964                                                                                              lufenuron, milbemycin oxime
11978                                                                                                  triamcinolone acetonide
11979                                                                                                 fipronil, (s)-methoprene
11980                                                                                                 fipronil, (s)-methoprene
11983                                                                                                 fipronil, (s)-methoprene
11993                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12009                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                  ketoconazole, tris-edta
12014                                                                                                               ivermectin
12018                                                                                    dinotefuran, permethrin, pyriproxyfen
12019                                                                               ivermectin, praziquantel, pyrantel pamoate
12020                                                                               ivermectin, praziquantel, pyrantel pamoate
12043                                                                                                               gabapentin
12047                                                                                   joint supplement (glucosamine hcl/msm)
12048                                                                                       fipronil, permethrin, pyriproxyfen
12051                                                                                                                probiotic
12054                                                                                   joint supplement (glucosamine hcl/msm)
12090                                                                                                         milbemycin oxime
12108                                                                          betamethasone, clotrimazole, gentamicin sulfate
12111                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12120                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
12128                                                                                                               fluralaner
12129                                                                                             ivermectin, pyrantel pamoate
12130                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12135                                                                                                               fluralaner
12136                                                                                           milbemycin oxime, praziquantel
12154                                                                                   joint supplement (glucosamine hcl/msm)
12155                                                                                                        vision supplement
12159                                                                                   joint supplement (glucosamine hcl/msm)
12160                                                                                                        vision supplement
12164                                                                                   joint supplement (glucosamine hcl/msm)
12173                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12215                                                                                             ivermectin, pyrantel pamoate
12223                                                                                                homeopathic vaccine spray
12261                                                                                               milbemycin oxime, spinosad
12271                                                                                                 fipronil, (s)-methoprene
12273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12283                                                                                           milbemycin oxime, praziquantel
12299                                                                                       amoxicillin, clavulanate potassium
12306                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12309                                                                                       chlorhexidine gluconate, ophytrium
12313                                                                                              lufenuron, milbemycin oxime
12314                                                                                               milbemycin oxime, spinosad
12322                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12324                                                                                               milbemycin oxime, spinosad
12334                                                                                                              vincristine
12336                                                                                                              doxorubicin
12337                                                                                          anti-cd52 monoclonal antibodies
12342                                                                                               milbemycin oxime, spinosad
12343                                                                                          anti-cd52 monoclonal antibodies
12346                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12349                                                                                          anti-cd52 monoclonal antibodies
12351                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12353                                                                                                    ampicillin, sulbactam
12364                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12366                                                                                               milbemycin oxime, spinosad
12376                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12379                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
12394                                                                                   joint supplement (glucosamine hcl/msm)
12398                                                                                                               ivermectin
12402                                                                                             ivermectin, pyrantel pamoate
12409                                                                                                                probiotic
12410                                                                                             ivermectin, pyrantel pamoate
12411                                                                                       fipronil, permethrin, pyriproxyfen
12414                                                                                             ivermectin, pyrantel pamoate
12415                                                                                                               afoxolaner
12417                                                                                             ivermectin, pyrantel pamoate
12418                                                                                                               afoxolaner
12420                                                                          betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                             ivermectin, pyrantel pamoate
12422                                                                                                                sarolaner
12423                                                                          betamethasone, clotrimazole, gentamicin sulfate
12427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12453                                                                                                               ivermectin
12454                                                                                             ivermectin, pyrantel pamoate
12455                                                                                             ivermectin, pyrantel pamoate
12456                                                                                             ivermectin, pyrantel pamoate
12457                                                                                                               afoxolaner
12461                                                                                       chlorhexidine gluconate, ophytrium
12462                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                  omega 3
12473                                                                                                               selamectin
12474                                                                                                               selamectin
12475                                                                                                              oclacitinib
12477                                                                          betamethasone, clotrimazole, gentamicin sulfate
12481                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12485                                                                          betamethasone, clotrimazole, gentamicin sulfate
12487                                                                                                         sulfadimethoxine
12495                                                                                             ivermectin, pyrantel pamoate
12497                                                                                                                probiotic
12498                                                                                             ivermectin, pyrantel pamoate
12500                                                                                                               ivermectin
12506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12514                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12516                                                                                             ivermectin, pyrantel pamoate
12520                                                                                lufenuron, milbemycin oxime, praziquantel
12521                                                                                               milbemycin oxime, spinosad
12523                                                                                                         milbemycin oxime
12529                                                                                    dinotefuran, permethrin, pyriproxyfen
12530                                                                                             ivermectin, pyrantel pamoate
12535                                                                                                      silver sulfadiazine
12536                                                                                                                mupirocin
12540                                                                                             ivermectin, pyrantel pamoate
12541                                                                                    dinotefuran, permethrin, pyriproxyfen
12543                                                                                    dinotefuran, permethrin, pyriproxyfen
12546                                                                               toothpaste/dental health solution or chews
12549                                                                                    dinotefuran, permethrin, pyriproxyfen
12550                                                                                             ivermectin, pyrantel pamoate
12551                                                                                    dinotefuran, permethrin, pyriproxyfen
12552                                                                                   joint supplement (glucosamine hcl/msm)
12553                                                                                             ivermectin, pyrantel pamoate
12554                                                                                    dinotefuran, permethrin, pyriproxyfen
12569                                                                                               milbemycin oxime, spinosad
12571                                                                                                       miconazole nitrate
12578                                                                                             ivermectin, pyrantel pamoate
12580                                                                                             ivermectin, pyrantel pamoate
12585                                                                                             ivermectin, pyrantel pamoate
12588                                                                           dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                             ivermectin, pyrantel pamoate
12595                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                  omega 3
12605                                                                                                         milbemycin oxime
12608                                                                                           milbemycin oxime, praziquantel
12615                                                                                                               moxidectin
12616                                                                                                               ivermectin
12620                                                                                             ivermectin, pyrantel pamoate
12623                                                                                             ivermectin, pyrantel pamoate
12630                                                                                             ivermectin, pyrantel pamoate
12632                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12636                                                                                             ivermectin, pyrantel pamoate
12638                                                                                                               ivermectin
12639                                                                                             ivermectin, pyrantel pamoate
12642                                                                                             ivermectin, pyrantel pamoate
12645                                                                                                              amoxicillin
12686                                                                                             ivermectin, pyrantel pamoate
12692                                                                                           milbemycin oxime, praziquantel
12693                                                                                                         milbemycin oxime
12714                                                                               ivermectin, praziquantel, pyrantel pamoate
12730                                                                           mometasone furoate, orbifloxacin, posaconazole
12732                                                                           mometasone furoate, orbifloxacin, posaconazole
12735                                                                                              chloroxylenol, ketoconazole
12738                                                                                                               fluralaner
12740                                                                                               milbemycin oxime, spinosad
12744                                                                                               milbemycin oxime, spinosad
12749                                                                                               milbemycin oxime, spinosad
12754                                                                                               milbemycin oxime, spinosad
12755                                                                                               milbemycin oxime, spinosad
12756                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12771                                                                                                               moxidectin
12774                                                                                                               ivermectin
12780                                                                                                               ivermectin
12784                                                                                                     digestive supplement
12787                                                                                                 flumethrin, imidacloprid
12788                                                                             dexamethasone, neomycin sulfate, polymyxin b
12795                                                                                             ivermectin, pyrantel pamoate
12796                                                                                                 flumethrin, imidacloprid
12797                                                                                                     digestive supplement
12801                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12826                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12828                                                                                                  chlorhexidine gluconate
12836                                                                                               milbemycin oxime, spinosad
12849                                                                          betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                              chloroxylenol, ketoconazole
12861                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12865                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12870                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
12873                                                                          betamethasone, clotrimazole, gentamicin sulfate
12879                                                                                             ivermectin, pyrantel pamoate
12880                                                                                                               afoxolaner
12881                                                                             dexamethasone, neomycin sulfate, polymyxin b
12882                                                                          betamethasone, clotrimazole, gentamicin sulfate
12894                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                    chlorhexidine gluconate, ketoconazole
12901                                                                                                               ivermectin
12902                                                                                                               afoxolaner
12903                                                                               toothpaste/dental health solution or chews
12905                                                                                                                midazolam
12906                                                                                                        potassium bromide
12907                                                                                                        potassium bromide
12908                                                                                                              terbinafine
12911                                                                                                   unspecified medication
12916                                                                                             ivermectin, pyrantel pamoate
12920                                                                                             ivermectin, pyrantel pamoate
12929                                                                                             ivermectin, pyrantel pamoate
12942                                                                                             ivermectin, pyrantel pamoate
12943                                                                                             ivermectin, pyrantel pamoate
12945                                                                                             ivermectin, pyrantel pamoate
12948                                                                                             ivermectin, pyrantel pamoate
12949                                                                                             ivermectin, pyrantel pamoate
12952                                                                                             ivermectin, pyrantel pamoate
12955                                                                                                             multivitamin
12956                                                                                                 fipronil, (s)-methoprene
12957                                                                                              lufenuron, milbemycin oxime
12962                                                                                                 fipronil, (s)-methoprene
12963                                                                                                             multivitamin
12966                                                                                                 fipronil, (s)-methoprene
12994                                                                                               imidacloprid, pyriproxyfen
13005                                                                                                               ivermectin
13006                                                                                                               afoxolaner
13008                                                                                                               ivermectin
13010                                                                                                         neomycin sulfate
13013                                                                                                  triamcinolone acetonide
13020                                                                                                             fenbendazole
13041                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                               fluralaner
13062                                                                                           polysulfated glycosaminoglycan
13074                                                                                           polysulfated glycosaminoglycan
13075                                                                                lufenuron, milbemycin oxime, praziquantel
13076                                                                                                 flumethrin, imidacloprid
13081                                                                                                               lokivetmab
13084                                                                                              lufenuron, milbemycin oxime
13086                                                                                              lufenuron, milbemycin oxime
13096                                                                                      ear cleaner (zymox), hydrocortisone
13104                                                                                                              vincristine
13108                                                                                               milbemycin oxime, spinosad
13109                                                                                               milbemycin oxime, spinosad
13114                                                                                               milbemycin oxime, spinosad
13115                                                                                               milbemycin oxime, spinosad
13116                                                                                               milbemycin oxime, spinosad
13124                                                                          betamethasone, clotrimazole, gentamicin sulfate
13126                                                                                          ear cleaner (epi-otic advanced)
13127                                                                          betamethasone, clotrimazole, gentamicin sulfate
13129                                                                          betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                          ear cleaner (epi-otic advanced)
13133                                                                          betamethasone, clotrimazole, gentamicin sulfate
13136                                                                                             ivermectin, pyrantel pamoate
13137                                                                                                               fluralaner
13139                                                                                             ivermectin, pyrantel pamoate
13142                                                                                             ivermectin, pyrantel pamoate
13143                                                                                                               fluralaner
13148                                                                                       amoxicillin, clavulanate potassium
13149                                                                                             ivermectin, pyrantel pamoate
13150                                                                                                               fluralaner
13151                                                                                                         milbemycin oxime
13152                                                                                                               fluralaner
13154                                                                                       amoxicillin, clavulanate potassium
13157                                                                                             ivermectin, pyrantel pamoate
13159                                                                                       joint supplement (glucosamine hcl)
13160                                                                                                                 turmeric
13168                                                                                             ivermectin, pyrantel pamoate
13169                                                                                             ivermectin, pyrantel pamoate
13170                                                                                                               afoxolaner
13187                                                                                        betamethasone, gentamicin sulfate
13188                                                                                                 fipronil, (s)-methoprene
13189                                                                                             ivermectin, pyrantel pamoate
13195                                                                                        betamethasone, gentamicin sulfate
13196                                                                                                  chlorhexidine gluconate
13198                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                        trimeprazine tartrate, prednisone
13233                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13246                                                                             dexamethasone, neomycin sulfate, polymyxin b
13248                                                                                             ivermectin, pyrantel pamoate
13249                                                                                                 fipronil, (s)-methoprene
13264                                                                                             ivermectin, pyrantel pamoate
13277                                                                          betamethasone, clotrimazole, gentamicin sulfate
13278                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13286                                                                          betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                 fipronil, (s)-methoprene
13297                                                                                                               ivermectin
13298                                                                                                               afoxolaner
13299                                                                                                               ivermectin
13307                                                                                                               afoxolaner
13308                                                                                             ivermectin, pyrantel pamoate
13313                                                                                             ivermectin, pyrantel pamoate
13314                                                                                                               afoxolaner
13321                                                                       ceramide iii, chlorhexidine gluconate, microsilver
13331                                                                                               milbemycin oxime, spinosad
13332                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
13334                                                                                               milbemycin oxime, spinosad
13340                                                                          betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                             ivermectin, pyrantel pamoate
13343                                                                                             ivermectin, pyrantel pamoate
13344                                                                                                               afoxolaner
13349                                                                                             ivermectin, pyrantel pamoate
13353                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                               milbemycin oxime, spinosad
13356                                                                                               milbemycin oxime, spinosad
13357                                                                                                 flumethrin, imidacloprid
13376                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13405                                                                                       amoxicillin, clavulanate potassium
13411                                                                                                              doxorubicin
13454                                                                                             ivermectin, pyrantel pamoate
13455                                                                                                               afoxolaner
13456                                                                                                          diphenhydramine
13459                                                                                      ear cleaner (zymox), hydrocortisone
13460                                                                                           lotion or leave in conditioner
13461                                                                                             ivermectin, pyrantel pamoate
13462                                                                                                               afoxolaner
13464                                                                                             ivermectin, pyrantel pamoate
13468                                                                                             ivermectin, pyrantel pamoate
13470                                                                                 febantel, praziquantel, pyrantel pamoate
13471                                                                                             ivermectin, pyrantel pamoate
13475                                                                                              lufenuron, milbemycin oxime
13476                                                                                                     prebiotic, probiotic
13479                                                                                                                meloxicam
13483                                                                                              lufenuron, milbemycin oxime
13484                                                                                                   cyphenothrin, fipronil
13496                                                                                               imidacloprid, pyriproxyfen
13502                                                                                                               ivermectin
13503                                                                                                 imidacloprid, permethrin
13506                                                                                             ivermectin, pyrantel pamoate
13532                                                                                                                probiotic
13537                                                                                              lufenuron, milbemycin oxime
13538                                                                                lufenuron, milbemycin oxime, praziquantel
13562                                                                                               milbemycin oxime, spinosad
13563                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                               milbemycin oxime, spinosad
13575                                                                                                               isoflurane
13576                                                                                               milbemycin oxime, spinosad
13579                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13581                                                                                               milbemycin oxime, spinosad
13585                                                                                               milbemycin oxime, spinosad
13590                                                                                                  chlorhexidine gluconate
13594                                                                                        betamethasone, gentamicin sulfate
13595                                                                          betamethasone, clotrimazole, gentamicin sulfate
13601                                                                             dexamethasone, neomycin sulfate, polymyxin b
13603                                                                                                             enrofloxacin
13605                                                                                                                carprofen
13609                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13615                                                                          betamethasone, clotrimazole, gentamicin sulfate
13623                                                                                               imidacloprid, pyriproxyfen
13624                                                                                               imidacloprid, pyriproxyfen
13625                                                                                               imidacloprid, pyriproxyfen
13628                                                                                               imidacloprid, pyriproxyfen
13631                                                                          betamethasone, clotrimazole, gentamicin sulfate
13654                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13657                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
13666                                                                             florfenicol, mometasone furoate, terbinafine
13693                                                                                               milbemycin oxime, spinosad
13723                                                                                                 fipronil, (s)-methoprene
13724                                                                                                 flumethrin, imidacloprid
13730                                                                                                                probiotic
13737                                                                                             ivermectin, pyrantel pamoate
13740                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                        trimeprazine tartrate, prednisone
13747                                                                                              lufenuron, milbemycin oxime
13756                                                                          betamethasone, clotrimazole, gentamicin sulfate
13768                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                        betamethasone, gentamicin sulfate
13776                                                                                                         milbemycin oxime
13782                                                                                                                meloxicam
13783                                                                                                         milbemycin oxime
13796                                                                                       chlorhexidine gluconate, ophytrium
13893                                                                                                         milbemycin oxime
13894                                                                                    dinotefuran, permethrin, pyriproxyfen
13896                                                                                                         milbemycin oxime
13902                                                                                                         pyrantel pamoate
13905                                                                                                         milbemycin oxime
13906                                                                                    dinotefuran, permethrin, pyriproxyfen
13910                                                                                                         milbemycin oxime
13912                                                                                                               lokivetmab
13913                                                                                                              bedinvetmab
13925                                                                                               milbemycin oxime, spinosad
13943                                                                                             ivermectin, pyrantel pamoate
13946                                                                                        betamethasone, gentamicin sulfate
13996                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
13998                                                                                             ivermectin, pyrantel pamoate
14006                                                                                        betamethasone, gentamicin sulfate
14007                                                                                                         milbemycin oxime
14050                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                         milbemycin oxime
14055                                                                                                         milbemycin oxime
14059                                                                                                               selamectin
14060                                                                                                               ivermectin
14061                                                                                             ivermectin, pyrantel pamoate
14062                                                                                             ivermectin, pyrantel pamoate
14063                                                                                                 fipronil, (s)-methoprene
14064                                                                                             ivermectin, pyrantel pamoate
14106                                                                                              lufenuron, milbemycin oxime
14114                                                                                               milbemycin oxime, spinosad
14118                                                                                               milbemycin oxime, spinosad
14123                                                                                               lactated ringer's solution
14128                                                                                               milbemycin oxime, spinosad
14129                                                                                               milbemycin oxime, spinosad
14131                                                                                                  ketoconazole, tris-edta
14147                                                                                                               ivermectin
14148                                                                                                 fipronil, (s)-methoprene
14151                                                                                             ivermectin, pyrantel pamoate
14154                                                                                             ivermectin, pyrantel pamoate
14162                                                                                              lufenuron, milbemycin oxime
14163                                                                                              lufenuron, milbemycin oxime
14164                                                                                             ivermectin, pyrantel pamoate
14165                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14170                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14172                                                                                             ivermectin, pyrantel pamoate
14173                                                                                             ivermectin, pyrantel pamoate
14174                                                                                                 fipronil, (s)-methoprene
14175                                                                             florfenicol, mometasone furoate, terbinafine
14177                                                                                                         milbemycin oxime
14178                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14180                                                                                   fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                         milbemycin oxime
14190                                                                             dexamethasone, neomycin sulfate, polymyxin b
14219                                                                                                         milbemycin oxime
14221                                                                                                   unspecified astringent
14228                                                                                                   unspecified medication
14238                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14241                                                                                                 fipronil, (s)-methoprene
14242                                                                                             ivermectin, pyrantel pamoate
14245                                                                                                 fipronil, (s)-methoprene
14282                                                                                                               ivermectin
14284                                                                                                               ivermectin
14291                                                                              chlorhexidine gluconate, miconazole nitrate
14301                                                                                                               ivermectin
14302                                                                                                               nitenpyram
14319                                                                                             ivermectin, pyrantel pamoate
14323                                                                          betamethasone, clotrimazole, gentamicin sulfate
14324                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14330                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14334                                                                                                 imidacloprid, moxidectin
14336                                                                             dexamethasone, neomycin sulfate, polymyxin b
14365                                                                                             ivermectin, pyrantel pamoate
14373                                                                                                 flumethrin, imidacloprid
14376                                                                                                 flumethrin, imidacloprid
14378                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14380                                                                                                 flumethrin, imidacloprid
14385                                                                                              lufenuron, milbemycin oxime
14386                                                                                                               afoxolaner
14387                                                                                              lufenuron, milbemycin oxime
14388                                                                                                               afoxolaner
14404                                                                                              lufenuron, milbemycin oxime
14408                                                                                             ivermectin, pyrantel pamoate
14412                                                                                               milbemycin oxime, spinosad
14413                                                                                                 fipronil, (s)-methoprene
14414                                                                                   cyphenothrin, fipronil, (s)-methoprene
14426                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14428                                                                                                         pyrantel pamoate
14429                                                                                              lufenuron, milbemycin oxime
14431                                                                                              lufenuron, milbemycin oxime
14432                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                  omega 3
14434                                                                                                             multivitamin
14443                                                                                              lufenuron, milbemycin oxime
14444                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                               toothpaste/dental health solution or chews
14446 digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                 urinary tract supplement
14448                                                                                              lufenuron, milbemycin oxime
14449                                                                                              lufenuron, milbemycin oxime
14451                                                                                              lufenuron, milbemycin oxime
14455                                                                             dexamethasone, neomycin sulfate, polymyxin b
14471                                                                                              lufenuron, milbemycin oxime
14473                                                                                              lufenuron, milbemycin oxime
14477                                                                                              lufenuron, milbemycin oxime
14479                                                                                                 flumethrin, imidacloprid
14488                                                                                             ivermectin, pyrantel pamoate
14489                                                                                             ivermectin, pyrantel pamoate
14490                                                                                             ivermectin, pyrantel pamoate
14495                                                                                             ivermectin, pyrantel pamoate
14498                                                                                             ivermectin, pyrantel pamoate
14499                                                                                             ivermectin, pyrantel pamoate
14512                                                                                                         milbemycin oxime
14513                                                                                                               lokivetmab
14528                                                                                   cyphenothrin, fipronil, (s)-methoprene
14563                                                                                                               ivermectin
14576                                                                                              lufenuron, milbemycin oxime
14578                                                                                                               nitenpyram
14582                                                                                                                sarolaner
14583                                                                                              lufenuron, milbemycin oxime
14584                                                                                                                sarolaner
14585                                                                                lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                sarolaner
14587                                                                                lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                sarolaner
14601                                                                                       unspecified flea/tick preventative
14605                                                                                           milbemycin oxime, praziquantel
14608                                                                                                         milbemycin oxime
14637                                                                                       fipronil, permethrin, pyriproxyfen
14645                                                                                               milbemycin oxime, spinosad
14654                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
14656                                                                                           milbemycin oxime, praziquantel
14658                                                                                             ivermectin, pyrantel pamoate
14664                                                                                           milbemycin oxime, praziquantel
14665                                                                                                               afoxolaner
14697                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14699                                                                                                 fipronil, (s)-methoprene
14700                                                                                             ivermectin, pyrantel pamoate
14701                                                                                               imidacloprid, pyriproxyfen
14702                                                                                             ivermectin, pyrantel pamoate
14711                                                                                              lufenuron, milbemycin oxime
14712                                                                                    dinotefuran, permethrin, pyriproxyfen
14713                                                                                                             fenbendazole
14720                                                                                              lufenuron, milbemycin oxime
14721                                                                                    dinotefuran, permethrin, pyriproxyfen
14722                                                                                                         milbemycin oxime
14723                                                                                           milbemycin oxime, praziquantel
14726                                                                                                               fluralaner
14728                                                                                  milbemycin oxime, oxantel, praziquantel
14730                                                                                           milbemycin oxime, praziquantel
14733                                                                                                         milbemycin oxime
14737                                                                                              lufenuron, milbemycin oxime
14738                                                                                                                 fipronil
14744                                                                                                 flumethrin, imidacloprid
14748                                                                          betamethasone, clotrimazole, gentamicin sulfate
14754                                                                                                 flumethrin, imidacloprid
14755                                                                                           milbemycin oxime, praziquantel
14756                                                                          betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                         burow's solution, hydrocortisone
14760                                                                                           milbemycin oxime, praziquantel
14764                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
14775                                                                                      allergy immunotherapy - unspecified
14777                                                                          betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                  betamethasone, florfenicol, terbinafine
14833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                               milbemycin oxime, spinosad
14838                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                              lufenuron, milbemycin oxime
14857                                                                                                             multivitamin
14858                                                                                              lufenuron, milbemycin oxime
14862                                                                                                             multivitamin
14863                                                                                                             multivitamin
14864                                                                                              lufenuron, milbemycin oxime
14867                                                                                           milbemycin oxime, praziquantel
14870                                                                                                         milbemycin oxime
14871                                                                                                                lotilaner
14878                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14899                                                                                                              bedinvetmab
14911                                                                                               milbemycin oxime, spinosad
14913                                                                                               milbemycin oxime, spinosad
14914                                                                                             ivermectin, pyrantel pamoate
14934                                                                                                               afoxolaner
14943                                                                                                               fluralaner
14944                                                                                      allergy immunotherapy - unspecified
14949                                                                                                               lokivetmab
14972                                                                                               milbemycin oxime, spinosad
14973                                                                                                             multivitamin
14974                                                                                               milbemycin oxime, spinosad
14975                                                                                               milbemycin oxime, spinosad
14981                                                                                               milbemycin oxime, spinosad
14982                                                                                                                  omega 3
14983                                                                                                                probiotic
15001                                                                               ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                 fipronil, (s)-methoprene
15004                                                                                               imidacloprid, pyriproxyfen
15005                                                                                                 fipronil, (s)-methoprene
15006                                                                                                         milbemycin oxime
15007                                                                                                         milbemycin oxime
15008                                                                                               imidacloprid, pyriproxyfen
15009                                                                                                 fipronil, (s)-methoprene
15010                                                                                                 fipronil, (s)-methoprene
15011                                                                                           milbemycin oxime, praziquantel
15017                                                                               ivermectin, praziquantel, pyrantel pamoate
15021                                                                               ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                 fipronil, (s)-methoprene
15023                                                                                                 fipronil, (s)-methoprene
15027                                                                                                 fipronil, (s)-methoprene
15028                                                                                                         milbemycin oxime
15029                                                                                           milbemycin oxime, praziquantel
15030                                                                                                 fipronil, (s)-methoprene
15035                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                           milbemycin oxime, praziquantel
15045                                                                                             ivermectin, pyrantel pamoate
15048                                                                                              lufenuron, milbemycin oxime
15055                                                                                                   acetaminophen, codeine
15059                                                                                             ivermectin, pyrantel pamoate
15061                                                                                             ivermectin, pyrantel pamoate
15077                                                                                                 flumethrin, imidacloprid
15102                                                                                                  acetic acid, boric acid
15129                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
15139                                                                                             ivermectin, pyrantel pamoate
15140                                                                                                 fipronil, (s)-methoprene
15144                                                                                             ivermectin, pyrantel pamoate
15145                                                                                                 fipronil, (s)-methoprene
15150                                                                                                         milbemycin oxime
15151                                                                                                               fluralaner
15155                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15179                                                                                                                 tramadol
15196                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                             clomipramine
15209                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15213                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
15244                                                                                                 homatropine, hydrocodone
15250                                                                                                 imidacloprid, permethrin
15256                                                                                                                meloxicam
15259                                                                                                              shen calmer
15268                                                                                             ivermectin, pyrantel pamoate
15269                                                                                                               afoxolaner
15274                                                                                            unspecified herbal supplement
15308                                                                                                               ivermectin
15309                                                                                                               afoxolaner
15310                                                                                             ivermectin, pyrantel pamoate
15311                                                                                                 flumethrin, imidacloprid
15314                                                                                             ivermectin, pyrantel pamoate
15315                                                                                                 flumethrin, imidacloprid
15317                                                                                             ivermectin, pyrantel pamoate
15321                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                 flumethrin, imidacloprid
15323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15332                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                probiotic
15339                                                                                               milbemycin oxime, spinosad
15345                                                                                               milbemycin oxime, spinosad
15348                                                                                               milbemycin oxime, spinosad
15361                                                                                                               ivermectin
15362                                                                                                               ivermectin
15363                                                                          betamethasone, clotrimazole, gentamicin sulfate
15365                                                                                                               ivermectin
15366                                                                                             ivermectin, pyrantel pamoate
15367                                                                                              lufenuron, milbemycin oxime
15373                                                                                lufenuron, milbemycin oxime, praziquantel
15374                                                                                                 fipronil, (s)-methoprene
15375                                                                                lufenuron, milbemycin oxime, praziquantel
15376                                                                                                 fipronil, (s)-methoprene
15377                                                                                lufenuron, milbemycin oxime, praziquantel
15378                                                                                   fipronil, pyriproxyfen, (s)-methoprene
15383                                                                                                              doxycycline
15384                                                                                                                carprofen
15402                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
15412                                                                                             ivermectin, pyrantel pamoate
15441                                                                                                              guaifenesin
15445                                                                                                        hypochlorous acid
15451                                                                                             ivermectin, pyrantel pamoate
15453                                                                                      ear cleaner (zymox), hydrocortisone
15454                                                                                                           (s)-methoprene
15512                                                                                                               fluralaner
15513                                                                                                                  omega 3
15515                                                                                                               fluralaner
15528                                                                                           milbemycin oxime, praziquantel
15530                                                                                    dinotefuran, permethrin, pyriproxyfen
15531                                                                                           milbemycin oxime, praziquantel
15533                                                                                                 urinary tract supplement
15551                                                                                                                meloxicam
15552                                                                                                               fluralaner
15554                                                                                                               fluralaner
15555                                                                                                         milbemycin oxime
15556                                                                                             ivermectin, pyrantel pamoate
15563                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15581                                                                                                         pyrantel pamoate
15584                                                                           dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                             ivermectin, pyrantel pamoate
15586                                                                                       fipronil, permethrin, pyriproxyfen
15589                                                                                             ivermectin, pyrantel pamoate
15590                                                                                             ivermectin, pyrantel pamoate
15591                                                                                                               afoxolaner
15592                                                                                                 fipronil, (s)-methoprene
15593                                                                                             ivermectin, pyrantel pamoate
15594                                                                                                               afoxolaner
15597                                                                                             ivermectin, pyrantel pamoate
15598                                                                                                               afoxolaner
15599                                                                          betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                             ivermectin, pyrantel pamoate
15601                                                                                                                sarolaner
15603                                                                                                                mupirocin
15604                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15613                                                                                             ivermectin, pyrantel pamoate
15618                                                                                             ivermectin, pyrantel pamoate
15633                                                                                                               prednisone
15636                                                                                              lufenuron, milbemycin oxime
15649                                                                                             ivermectin, pyrantel pamoate
15650                                                                                                 fipronil, (s)-methoprene
15661                                                                                                               ivermectin
15663                                                                                                 fipronil, (s)-methoprene
15667                                                                                                  ketoconazole, tris-edta
15669                                                                                             ivermectin, pyrantel pamoate
15672                                                                                             ivermectin, pyrantel pamoate
15673                                                                                             ivermectin, pyrantel pamoate
15674                                                                                                                sarolaner
15689                                                                                               milbemycin oxime, spinosad
15690                                                                                               milbemycin oxime, spinosad
15693                                                                                               milbemycin oxime, spinosad
15701                                                                                               milbemycin oxime, spinosad
15706                                                                                                      ear cleaner (zymox)
15707                                                                                               milbemycin oxime, spinosad
15712                                                                                               milbemycin oxime, spinosad
15715                                                                                               milbemycin oxime, spinosad
15733                                                                                             ivermectin, pyrantel pamoate
15750                                                             butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15757                                                                                             ivermectin, pyrantel pamoate
15758                                                                                                 fipronil, (s)-methoprene
15767                                                                             dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                       gentamicin sulfate
15769                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                     dorzolamide, timolol
15778                                                                                                  triamcinolone acetonide
15781                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                  triamcinolone acetonide
15790                                                                                                 kidney health supplement
15796                                                                                       amoxicillin, clavulanate potassium
15799                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15811                                                                                                   cyphenothrin, fipronil
15815                                                                                                         milbemycin oxime
15818                                                                                                         milbemycin oxime
15829                                                                                             ivermectin, pyrantel pamoate
15839                                                                                                         pyrantel pamoate
15840                                                                                       joint supplement (glucosamine hcl)
15841                                                                                             ivermectin, pyrantel pamoate
15842                                                                                              lufenuron, milbemycin oxime
15844                                                                                              lufenuron, milbemycin oxime
15849                                                                                              lufenuron, milbemycin oxime
15850                                                                                           milbemycin oxime, praziquantel
15856                                                                                                 imidacloprid, permethrin
15858                                                                                                                deracoxib
15859                                                                                              lufenuron, milbemycin oxime
15862                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                         atropine sulfate
15868                                                                                                        vision supplement
15869                                                                                              lufenuron, milbemycin oxime
15870                                                                                                               fluralaner
15886                                                                                                        vision supplement
15888                                                                                                               fluralaner
15889                                                                                        enrofloxacin, silver sulfadiazine
15890                                                                                            dextromethorphan, guaifenesin
15891                                                                                              lufenuron, milbemycin oxime
15892                                                                                              lufenuron, milbemycin oxime
15907                                                                                                         phytosphingosine
15911                                                                                                             fenbendazole
15917                                                                                                               ivermectin
15921                                                                                                                probiotic
15922                                                                                                               ivermectin
15927                                                                                                                vitamin a
15928                                                                                                                probiotic
15930                                                                                             ivermectin, pyrantel pamoate
15933                                                                                                                vitamin a
15935                                                                                                                probiotic
15937                                                                                                               ivermectin
15944                                                                                                               ivermectin
15945                                                                                                                probiotic
15981                                                                                              lufenuron, milbemycin oxime
15983                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15986                                                                                    dinotefuran, permethrin, pyriproxyfen
15992                                                                                              lufenuron, milbemycin oxime
15993                                                                                    dinotefuran, permethrin, pyriproxyfen
15995                                                                                              lufenuron, milbemycin oxime
15996                                                                                    dinotefuran, permethrin, pyriproxyfen
15997                                                                                                               fluralaner
15998                                                                                             hydrocortisone, ketoconazole
15999                                                                                           milbemycin oxime, praziquantel
16000                                                                                                               fluralaner
16005                                                                                                         milbemycin oxime
16007                                                                                                         milbemycin oxime
16009                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
16016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
16026                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16033                                                                                                 fipronil, (s)-methoprene
16036                                                                                lufenuron, milbemycin oxime, praziquantel
16038                                                                                             ivermectin, pyrantel pamoate
16039                                                                                                 fipronil, (s)-methoprene
16052                                                                                lufenuron, milbemycin oxime, praziquantel
16053                                                                                               imidacloprid, pyriproxyfen
16094                                                                                             ivermectin, pyrantel pamoate
16097                                                                                             ivermectin, pyrantel pamoate
16098                                                                                                               afoxolaner
16105                                                                                              lufenuron, milbemycin oxime
16107                                                                                   gentamicin sulfate, miconazole nitrate
16108                                                                                              lufenuron, milbemycin oxime
16109                                                                                              lufenuron, milbemycin oxime
16110                                                                             florfenicol, mometasone furoate, terbinafine
16112                                                                                                              terbinafine
16113                                                                                                  chlorhexidine gluconate
16114                                                                                              chloroxylenol, ketoconazole
16116                                                                                                              terbinafine
16117                                                                                                              clindamycin
16118                                                                                                               prednisone
16150                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
16155                                                                                          ear cleaner (epi-otic advanced)
16156                                                                                                                probiotic
16157                                                                                             ivermectin, pyrantel pamoate
16158                                                                                                               fluralaner
16159                                                                                                         milbemycin oxime
16160                                                                                                               fluralaner
16163                                                                                             ivermectin, pyrantel pamoate
16164                                                                                                               fluralaner
16165                                                                                           milbemycin oxime, praziquantel
16177                                                                              chlorhexidine gluconate, miconazole nitrate
16179                                                                                    chlorhexidine gluconate, ketoconazole
16199                                                                                           sulfamethoxazole, trimethoprim
16229                                                                                             ivermectin, pyrantel pamoate
16230                                                                                             ivermectin, pyrantel pamoate
16239                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                  omega 3
16241                                                                               toothpaste/dental health solution or chews
16242                                                                               toothpaste/dental health solution or chews
16251                                                                          betamethasone, clotrimazole, gentamicin sulfate
16253                                                                           mometasone furoate, orbifloxacin, posaconazole
16286                                                                                               unspecified eye medication
16287                                                                                             ivermectin, pyrantel pamoate
16288                                                                                                 fipronil, (s)-methoprene
16289                                                                                             ivermectin, pyrantel pamoate
16290                                                                                                 fipronil, (s)-methoprene
16292                                                                                                         milbemycin oxime
16293                                                                                                 fipronil, (s)-methoprene
16294                                                                                             ivermectin, pyrantel pamoate
16295                                                                                                 fipronil, (s)-methoprene
16296                                                                                                               ivermectin
16312                                                                                             ivermectin, pyrantel pamoate
16313                                                                                                               afoxolaner
16315                                                                                             ivermectin, pyrantel pamoate
16316                                                                                                               afoxolaner
16318                                                                                             ivermectin, pyrantel pamoate
16319                                                                                                               afoxolaner
16321                                                                                             ivermectin, pyrantel pamoate
16322                                                                                                               afoxolaner
16324                                                                                             ivermectin, pyrantel pamoate
16325                                                                                                               afoxolaner
16340                                                                                             ivermectin, pyrantel pamoate
16347                                                                                    dinotefuran, permethrin, pyriproxyfen
16352                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16355                                                                                                                mupirocin
16356                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16374                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16376                                                                                                                  omega 3
16378                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16382                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16387                                                                                                                ophytrium
16388                                                                                                         phytosphingosine
16389                                                                                             ivermectin, pyrantel pamoate
16400                                                                                             ivermectin, pyrantel pamoate
16401                                                                                                                 spinosad
16403                                                                                             ivermectin, pyrantel pamoate
16404                                                                                                                 spinosad
16408                                                                                             ivermectin, pyrantel pamoate
16413                                                                                                         milbemycin oxime
16414                                                                                                               fluralaner
16418                                                                                                 fipronil, (s)-methoprene
16419                                                                                                   unspecified antibiotic
16420                                                                                                    unspecified analgesic
16425                                                                                                 fipronil, (s)-methoprene
16426                                                                                                 fipronil, (s)-methoprene
16434                                                                                                             multivitamin
16435                                                                                                                  omega 3
16436                                                                                                                 spinosad
16437                                                                                                         sulfadimethoxine
16440                                                                                              lufenuron, milbemycin oxime
16441                                                                                              lufenuron, milbemycin oxime
16442                                                                                                             multivitamin
16443                                                                                                                  omega 3
16447                                                                                              lufenuron, milbemycin oxime
16448                                                                                                             multivitamin
16450                                                                                           milbemycin oxime, praziquantel
16462                                                                                                                lactulose
16472                                                                                              lufenuron, milbemycin oxime
16474                                                                                                 fipronil, (s)-methoprene
16477                                                                                              lufenuron, milbemycin oxime
16478                                                                                                 fipronil, (s)-methoprene
16479                                                                                                 fipronil, (s)-methoprene
16497                                                                                                 fipronil, (s)-methoprene
16522                                                                                             ivermectin, pyrantel pamoate
16523                                                                                                               ivermectin
16524                                                                                                   cyphenothrin, fipronil
16525                                                                                                         milbemycin oxime
16526                                                                                    dinotefuran, permethrin, pyriproxyfen
16544                                                                                                   cyphenothrin, fipronil
16546                                                                                           milbemycin oxime, praziquantel
16553                                                                                           milbemycin oxime, praziquantel
16579                                                                                             ivermectin, pyrantel pamoate
16580                                                                                                  ketoconazole, tris-edta
16596                                                                                             ivermectin, pyrantel pamoate
16597                                                                                                               ivermectin
16598                                                                                       fipronil, permethrin, pyriproxyfen
16599                                                                                                               ivermectin
16601                                                                                                 fipronil, (s)-methoprene
16605                                                                                 febantel, praziquantel, pyrantel pamoate
16606                                                                                                         milbemycin oxime
16608                                                                                                         milbemycin oxime
16624                                                                                               milbemycin oxime, spinosad
16635                                                                             dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                             ivermectin, pyrantel pamoate
16639                                                                                           milbemycin oxime, praziquantel
16657                                                                           mometasone furoate, orbifloxacin, posaconazole
16684                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16687                                                                                             ivermectin, pyrantel pamoate
16694                                                                                             ivermectin, pyrantel pamoate
16702                                                                          betamethasone, clotrimazole, gentamicin sulfate
16703                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                             ivermectin, pyrantel pamoate
16705                                                                                                               afoxolaner
16711                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
16714                                                                                                                mupirocin
16717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16721                                                                                             ivermectin, pyrantel pamoate
16723                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
16726                                                                                        betamethasone, gentamicin sulfate
16749                                                                                              lufenuron, milbemycin oxime
16751                                                                                              lufenuron, milbemycin oxime
16774                                                                                                                vitamin b
16777                                                                                             ivermectin, pyrantel pamoate
16778                                                                                                   cyphenothrin, fipronil
16779                                                                                                               cetirizine
16783                                                                                                               cetirizine
16784                                                                                                     digestive supplement
16785                                                                                                  ketoconazole, tris-edta
16791                                                                                    dinotefuran, permethrin, pyriproxyfen
16793                                                                                                               afoxolaner
16798                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
16805                                                                                             ivermectin, pyrantel pamoate
16807                                                                                                 imidacloprid, permethrin
16809                                                                                               imidacloprid, pyriproxyfen
16810                                                                                             ivermectin, pyrantel pamoate
16811                                                                                                 flumethrin, imidacloprid
16814                                                                                                        vision supplement
16815                                                                                                              ashwagandha
16816                                                                                                 betamethasone, ofloxacin
16821                                                                                                        vision supplement
16823                                                                                                 betamethasone, ofloxacin
16834                                                                                                 fipronil, (s)-methoprene
16838                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
16840                                                                                                 fipronil, (s)-methoprene
16841                                                                                                              bedinvetmab
16847                                                                                                 urinary tract supplement
16869                                                                                                         milbemycin oxime
16877                                                                                               milbemycin oxime, spinosad
16882                                                                                                 flumethrin, imidacloprid
16918                                                                                                                  omega 3
16931                                                                                               milbemycin oxime, spinosad
16933                                                                                               milbemycin oxime, spinosad
16939                                                                                                      ear cleaner (zymox)
16970                                                                                                               ivermectin
16983                                                                                             ivermectin, pyrantel pamoate
16993                                                                                                  ketoconazole, tris-edta
16994                                                                          betamethasone, clotrimazole, gentamicin sulfate
16998                                                                                    dinotefuran, permethrin, pyriproxyfen
16999                                                                                             ivermectin, pyrantel pamoate
17000                                                                                    dinotefuran, permethrin, pyriproxyfen
17010                                                                                             ivermectin, pyrantel pamoate
17012                                                                                                           (s)-methoprene
17013                                                                                             ivermectin, pyrantel pamoate
17014                                                                                             ivermectin, pyrantel pamoate
17018                                                      chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                             ivermectin, pyrantel pamoate
17020                                                                                                               fluralaner
17022                                                                           dexamethasone, neomycin sulfate, thiabendazole
17042                                                                                                                lotilaner
17062                                                                           dexamethasone, neomycin sulfate, thiabendazole
17088                                                                                             ivermectin, pyrantel pamoate
17090                                                                                             ivermectin, pyrantel pamoate
17091                                                                                                               afoxolaner
17098                                                                                             ivermectin, pyrantel pamoate
17099                                                                                                               afoxolaner
17120                                                                                                                 squalane
17121                                                                                          ear cleaner (epi-otic advanced)
17126                                                                                    chlorhexidine gluconate, ketoconazole
17127                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17138                                                                                             ivermectin, pyrantel pamoate
17143                                                                                             ivermectin, pyrantel pamoate
17153                                                                               ivermectin, praziquantel, pyrantel pamoate
17156                                                                               ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                               afoxolaner
17173                                                                               dimethyl sulfoxide, fluocinolone acetonide
17177                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17180                                                                                                                probiotic
17209                                                                                             ivermectin, pyrantel pamoate
17218                                                                                    dinotefuran, permethrin, pyriproxyfen
17220                                                                                                               ivermectin
17221                                                                                                               afoxolaner
17225                                                                                             ivermectin, pyrantel pamoate
17226                                                                                                               afoxolaner
17227                                                                                             ivermectin, pyrantel pamoate
17228                                                                                                               afoxolaner
17229                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17232                                                                               ivermectin, praziquantel, pyrantel pamoate
17233                                                                                               imidacloprid, pyriproxyfen
17234                                                                                                         milbemycin oxime
17236                                                                                               imidacloprid, pyriproxyfen
17237                                                                                                         milbemycin oxime
17239                                                                                                         milbemycin oxime
17252                                                                                                 fipronil, (s)-methoprene
17254                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                               milbemycin oxime, spinosad
17264                                                                                               milbemycin oxime, spinosad
17268                                                                                                               ivermectin
17283                                                                                             ivermectin, pyrantel pamoate
17285                                                                                             ivermectin, pyrantel pamoate
17297                                                                                           sulfamethoxazole, trimethoprim
17298                                                                                             ivermectin, pyrantel pamoate
17307                                                                                        trimeprazine tartrate, prednisone
17308                                                                                        trimeprazine tartrate, prednisone
17309                                                                                        trimeprazine tartrate, prednisone
17310                                                                                        trimeprazine tartrate, prednisone
17314                                                                                    dinotefuran, permethrin, pyriproxyfen
17327                                                                                             oxytetracycline, polymyxin b
17329                                                                                                           corneal repair
17330                                                                                                                ofloxacin
17335                                                                                                           corneal repair
17352                                                                                        betamethasone, gentamicin sulfate
17355                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17387                                                                                             ivermectin, pyrantel pamoate
17389                                                                                             ivermectin, pyrantel pamoate
17390                                                                                             ivermectin, pyrantel pamoate
17391                                                                                             ivermectin, pyrantel pamoate
17393                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17399                                                                                              lufenuron, milbemycin oxime
17406                                                                                              lufenuron, milbemycin oxime
17407                                                                                        betamethasone, gentamicin sulfate
17412                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17417                                                                                                 flumethrin, imidacloprid
17418                                                                                                                  omega 3
17426                                                                                                               gabapentin
17427                                                                                                   unspecified medication
17446                                                                                  betamethasone, florfenicol, terbinafine
17461                                                                                              lufenuron, milbemycin oxime
17463                                                                                                                probiotic
17468                                                                                              lufenuron, milbemycin oxime
17470                                                                                                                probiotic
17482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17486                                                                                             ivermectin, pyrantel pamoate
17487                                                                                                 fipronil, (s)-methoprene
17488                                                                                lufenuron, milbemycin oxime, praziquantel
17489                                                                                                 fipronil, (s)-methoprene
17490                                                                                                 fipronil, (s)-methoprene
17491                                                                                           milbemycin oxime, praziquantel
17492                                                                                lufenuron, milbemycin oxime, praziquantel
17493                                                                                           milbemycin oxime, praziquantel
17495                                                                                           milbemycin oxime, praziquantel
17496                                                                                   fipronil, pyriproxyfen, (s)-methoprene
17518                                                                                              lufenuron, milbemycin oxime
17519                                                                                              lufenuron, milbemycin oxime
17576                                                                             dexamethasone, neomycin sulfate, polymyxin b
17583                                                                                        betamethasone, gentamicin sulfate
17588                                                                                        betamethasone, gentamicin sulfate
17602                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17605                                                                                lufenuron, milbemycin oxime, praziquantel
17611                                                                                                               fluralaner
17615                                                                                                                 fipronil
17627                                                                                                               fluralaner
17659                                                                                                         milbemycin oxime
17672                                                                                               milbemycin oxime, spinosad
17673                                                                                               milbemycin oxime, spinosad
17680                                                                                                               prednisone
17697                                                                                               milbemycin oxime, spinosad
17702                                                                               dextromethorphan hydrobromide, guaifenesin
17703                                                                                              lufenuron, milbemycin oxime
17719                                                                                              lufenuron, milbemycin oxime
17720                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
17722                                                                                              lufenuron, milbemycin oxime
17742                                                                             dexamethasone, neomycin sulfate, polymyxin b
17755                                                                                                 fipronil, (s)-methoprene
17779                                                                                   cyphenothrin, fipronil, (s)-methoprene
17780                                                                                        trimeprazine tartrate, prednisone
17781                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                   cyphenothrin, fipronil, (s)-methoprene
17798                                                                           mometasone furoate, orbifloxacin, posaconazole
17802                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                        betamethasone, gentamicin sulfate
17804                                                                                        trimeprazine tartrate, prednisone
17818                                                                                                               afoxolaner
17832                                                                                                                meloxicam
17845                                                                                                               afoxolaner
17853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17855                                                                                                               diclofenac
17856                                                                                                     prednisolone acetate
17860                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
17863                                                                                                                  omega 3
17865                                                                                                 urinary tract supplement
17882                                                                                        betamethasone, gentamicin sulfate
18023                                                                                                         milbemycin oxime
18024                                                                                                               afoxolaner
18057                                                                                                               afoxolaner
18058                                                                                             ivermectin, pyrantel pamoate
18072                                                                                               milbemycin oxime, spinosad
18074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                lufenuron, milbemycin oxime, praziquantel
18094                                                                                             ivermectin, pyrantel pamoate
18095                                                                                                               afoxolaner
18096                                                                           mometasone furoate, orbifloxacin, posaconazole
18098                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
18114                                                                                                                vitamin e
18115                                                                                              lufenuron, milbemycin oxime
18116                                                                                                 imidacloprid, permethrin
18118                                                                                               imidacloprid, pyriproxyfen
18124                                                                                              lufenuron, milbemycin oxime
18134                                                                                        betamethasone, gentamicin sulfate
18141                                                                                           polysulfated glycosaminoglycan
18147                                                                                                               isoflurane
18165                                                                                                 ear cleaner (oti-soothe)
18192                                                                                             ivermectin, pyrantel pamoate
18193                                                                                                               ivermectin
18195                                                                                                               grapiprant
18199                                                                                        trimeprazine tartrate, prednisone
18202                                                                                                               ivermectin
18205                                                                                                               ivermectin
18213                                                                                                 imidacloprid, permethrin
18214                                                                                             ivermectin, pyrantel pamoate
18217                                                                                                               fluralaner
18218                                                                                                         milbemycin oxime
18238                                                                                                           dental sealant
18251                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
18258                                                                                    dinotefuran, permethrin, pyriproxyfen
18260                                                                                               milbemycin oxime, spinosad
18262                                                                                    dinotefuran, permethrin, pyriproxyfen
18263                                                                                      allergy immunotherapy - unspecified
18264                                                                                               milbemycin oxime, spinosad
18266                                                                                               milbemycin oxime, spinosad
18271                                                                                      allergy immunotherapy - unspecified
18275                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                         phytosphingosine
18323                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18325                                                                                         burow's solution, hydrocortisone
18326                                                                                                  ketoconazole, tris-edta
18337                                                                                             ivermectin, pyrantel pamoate
18338                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                             ivermectin, pyrantel pamoate
18340                                                                                                               afoxolaner
18341                                                                                                                  omega 3
18342                                                                                             ivermectin, pyrantel pamoate
18344                                                                                             ivermectin, pyrantel pamoate
18365                                                                                             ivermectin, pyrantel pamoate
18366                                                                                                               afoxolaner
18370                                                                                             ivermectin, pyrantel pamoate
18371                                                                                                               afoxolaner
18373                                                                                             ivermectin, pyrantel pamoate
18374                                                                                                               afoxolaner
18404                                                                                                  ketoconazole, tris-edta
18415                                                                                             ivermectin, pyrantel pamoate
18427                                                                                                                     edta
18441                                                                                        trimeprazine tartrate, prednisone
18459                                                                                              lufenuron, milbemycin oxime
18460                                                                                              lufenuron, milbemycin oxime
18461                                                                                                               fluralaner
18469                                                                                                             cyclosporine
18471                                                                                                             cyclosporine
18479                                                                                               milbemycin oxime, spinosad
18480                                                                                               milbemycin oxime, spinosad
18483                                                                                               milbemycin oxime, spinosad
18489                                                                                             ivermectin, pyrantel pamoate
18490                                                                                              lufenuron, milbemycin oxime
18494                                                                                              lufenuron, milbemycin oxime
18495                                                                                             ivermectin, pyrantel pamoate
18500                                                                                             ivermectin, pyrantel pamoate
18502                                                                                           milbemycin oxime, praziquantel
18514                                                                                               imidacloprid, pyriproxyfen
18520                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18525                                                                                                               afoxolaner
18534                                                                                                                probiotic
18565                                                                                               imidacloprid, pyriproxyfen
18571                                                                                             ivermectin, pyrantel pamoate
18572                                                                                                               afoxolaner
18576                                                                                             ivermectin, pyrantel pamoate
18577                                                                                                               afoxolaner
18580                                                                                             ivermectin, pyrantel pamoate
18588                                                                                                               prednisone
18591                                                                                        betamethasone, gentamicin sulfate
18595                                                                                               imidacloprid, pyriproxyfen
18609                                                                                                                trazodone
18612                                                                                                            levetiracetam
18621                                                                             florfenicol, mometasone furoate, terbinafine
18649                                                                                                               nitenpyram
18687                                                                          betamethasone, clotrimazole, gentamicin sulfate
18689                                                                                                           chlorphenamine
18690                                                                                                               ivermectin
18694                                                                                              lufenuron, milbemycin oxime
18696                                                                                                   cyphenothrin, fipronil
18697                                                                                              lufenuron, milbemycin oxime
18703                                                                                             ivermectin, pyrantel pamoate
18707                                                                                             ivermectin, pyrantel pamoate
18716                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18718                                                                                        betamethasone, gentamicin sulfate
18729                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
18734                                                                                               milbemycin oxime, spinosad
18735                                                                                                               nitenpyram
18736                                                                                               milbemycin oxime, spinosad
18743                                                                                                               ivermectin
18750                                                                                             ivermectin, pyrantel pamoate
18774                                                                                               milbemycin oxime, spinosad
18775                                                                                               milbemycin oxime, spinosad
18795                                                                                             ivermectin, pyrantel pamoate
18796                                                                                                   cyphenothrin, fipronil
18797                                                                                             ivermectin, pyrantel pamoate
18798                                                                                                   cyphenothrin, fipronil
18799                                                                                             ivermectin, pyrantel pamoate
18800                                                                                             ivermectin, pyrantel pamoate
18820                                                                                                      ear cleaner (zymox)
18829                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
18837                                                                                               milbemycin oxime, spinosad
18838                                                                                                                  omega 3
18839                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18844                                                                                                 skin and coat supplement
18845                                                                                                         milbemycin oxime
18847                                                                                                                  omega 3
18850                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18882                                                               dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18908                                                                                                               ivermectin
18909                                                                                                 imidacloprid, permethrin
18919                                                                                                 flumethrin, imidacloprid
18921                                                                                                 flumethrin, imidacloprid
18924                                                                                              lufenuron, milbemycin oxime
18933                                                                                                               fluralaner
18935                                                                                             ivermectin, pyrantel pamoate
18936                                                                                                 flumethrin, imidacloprid
18937                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18961                                                                                                                probiotic
18964                                                                                                                probiotic
18991                                                                                             ivermectin, pyrantel pamoate
18993                                                                                                                probiotic
18997                                                                                                   acetaminophen, codeine
18998                                                                                                       maropitant citrate
19003                                                                                                 fipronil, (s)-methoprene
19004                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                        betamethasone, gentamicin sulfate
19006                                                                                                        hypochlorous acid
19008                                                                                                               wind toxin
19009                                                                                                            stomach happy
19015                                                                                                               cetirizine
19019                                                                                                   acetaminophen, codeine
19021                                                                                           polysulfated glycosaminoglycan
19022                                                                                               milbemycin oxime, spinosad
19023                                                                          betamethasone, clotrimazole, gentamicin sulfate
19040                                                                                               milbemycin oxime, spinosad
19041                                                                                                         milbemycin oxime
19055                                                                                                 fipronil, (s)-methoprene
19056                                                                                                             multivitamin
19057                                                                          dexamethasone, enrofloxacin, miconazole nitrate
19061                                                                                                 fipronil, (s)-methoprene
19062                                                                                             ivermectin, pyrantel pamoate
19068                                                                                             ivermectin, pyrantel pamoate
19070                                                                                              lufenuron, milbemycin oxime
19072                                                                                                 fipronil, (s)-methoprene
19073                                                                                              lufenuron, milbemycin oxime
19078                                                                                              lufenuron, milbemycin oxime
19082                                                                                                 fipronil, (s)-methoprene
19122                                                                                                 imidacloprid, permethrin
19130                                                                                                               fluralaner
19152                                                                               dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                               afoxolaner
19154                                                                                                         milbemycin oxime
19159                                                                                                                lomustine
19165                                                                                             ivermectin, pyrantel pamoate
19169                                                                                                               ivermectin
19170                                                                                                 fipronil, (s)-methoprene
19183                                                                                                 flumethrin, imidacloprid
19184                                                                                                               ivermectin
19213                                                                                                         pyrantel pamoate
19214                                                                                                              toltrazuril
19215                                                                                              lufenuron, milbemycin oxime
19216                                                                                    dinotefuran, permethrin, pyriproxyfen
19220                                                                                             ivermectin, pyrantel pamoate
19221                                                                                             ivermectin, pyrantel pamoate
19222                                                                                                               fluralaner
19223                                                                                             ivermectin, pyrantel pamoate
19224                                                                                                 flumethrin, imidacloprid
19246                                                                                                 joint supplement (other)
19252                                                                                                            ciprofloxacin
19253                                                                                                     cefpodoxime proxetil
19254                                                                                                               prednisone
19271                                                                                              lufenuron, milbemycin oxime
19272                                                                                                               fluralaner
19273                                                                                              lufenuron, milbemycin oxime
19278                                                                                              lufenuron, milbemycin oxime
19281                                                                                              lufenuron, milbemycin oxime
19282                                                                                                               fluralaner
19288                                                                             florfenicol, mometasone furoate, terbinafine
19298                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                             florfenicol, mometasone furoate, terbinafine
19318                                                                                                 fipronil, (s)-methoprene
19325                                                                                                     prednisolone acetate
19326                                                                                              lufenuron, milbemycin oxime
19327                                                                                                 imidacloprid, permethrin
19338                                                                                                         liver supplement
19350                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
19353                                                                                           polysulfated glycosaminoglycan
19354                                                                                                             chlorambucil
19356                                                                                                               ivermectin
19357                                                                                                         milbemycin oxime
19373                                                                                             ivermectin, pyrantel pamoate
19386                                                                                              lufenuron, milbemycin oxime
19387                                                                                              lufenuron, milbemycin oxime
19390                                                                                        betamethasone, gentamicin sulfate
19391                                                                                              lufenuron, milbemycin oxime
19423                                                                               ivermectin, praziquantel, pyrantel pamoate
19427                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19445                                                                                              lufenuron, milbemycin oxime
19446                                                                                                   cyphenothrin, fipronil
19447                                                                                              lufenuron, milbemycin oxime
19448                                                                                                               fluralaner
19449                                                                               joint supplement (chondroitin sulfate/msm)
19450                                                                                                                  omega 3
19452                                                                                    chlorhexidine gluconate, ketoconazole
19453                                                                          betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                  ketoconazole, tris-edta
19457                                                                                              lufenuron, milbemycin oxime
19462                                                                                              lufenuron, milbemycin oxime
19463                                                                                                               fluralaner
19464                                                                                                             enrofloxacin
19465                                                                                           ketoconazole, phytosphingosine
19476                                                                                                                meloxicam
19482                                                                                             ivermectin, pyrantel pamoate
19486                                                                                             ivermectin, pyrantel pamoate
19487                                                                                                               afoxolaner
19492                                                                                             ivermectin, pyrantel pamoate
19493                                                                                                               afoxolaner
19495                                                                               toothpaste/dental health solution or chews
19537                                                                                                               ivermectin
19596                                                                                lufenuron, milbemycin oxime, praziquantel
19603                                                                                               milbemycin oxime, spinosad
19617                                                                                                 fipronil, (s)-methoprene
19641                                                                                                            yunnan baiyao
19662                                                                                                                probiotic
19663                                                                                       amoxicillin, clavulanate potassium
19673                                                                                             ivermectin, pyrantel pamoate
19674                                                                                                                sarolaner
19685                                                                                              lufenuron, milbemycin oxime
19686                                                                                              lufenuron, milbemycin oxime
19688                                                                                              lufenuron, milbemycin oxime
19689                                                                                              lufenuron, milbemycin oxime
19710                                                                                             ivermectin, pyrantel pamoate
19711                                                                                lufenuron, milbemycin oxime, praziquantel
19712                                                                                                 flumethrin, imidacloprid
19713                                                                                lufenuron, milbemycin oxime, praziquantel
19714                                                                                                 flumethrin, imidacloprid
19715                                                                                              lufenuron, milbemycin oxime
19716                                                                                                 flumethrin, imidacloprid
19717                                                                                              lufenuron, milbemycin oxime
19718                                                                                                 flumethrin, imidacloprid
19722                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19735                                                                          betamethasone, clotrimazole, gentamicin sulfate
19737                                                                          betamethasone, clotrimazole, gentamicin sulfate
19741                                                                                              lufenuron, milbemycin oxime
19754                                                                                                         milbemycin oxime
19768                                                                                                               selamectin
19771                                                                                               milbemycin oxime, spinosad
19776                                                                                               milbemycin oxime, spinosad
19777                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                          dexmedetomidine
19788                                                                              chlorhexidine gluconate, miconazole nitrate
19790                                                                                                                mupirocin
19792                                                                                       chlorhexidine gluconate, ophytrium
19801                                                                                                               fluralaner
19803                                                                                              lufenuron, milbemycin oxime
19823                                                                                                       gentamicin sulfate
19828                                                                                           milbemycin oxime, praziquantel
19829                                                                                    dinotefuran, permethrin, pyriproxyfen
19838                                                                                                              omega 3-6-9
19843                                                                           mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                               lokivetmab
19845                                                                           mometasone furoate, orbifloxacin, posaconazole
19851                                                                                                               ivermectin
19856                                                                                                         milbemycin oxime
19876                                                                                                            marbofloxacin
19881                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
19888                                                                               ivermectin, praziquantel, pyrantel pamoate
19907                                                                                               milbemycin oxime, spinosad
19909                                                                                                         milbemycin oxime
19911                                                                               toothpaste/dental health solution or chews
19912                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
19914                                                                                                     prebiotic, probiotic
19917                                                                                     diatomaceous earth, neem oil, yarrow
19925                                                                                                             enrofloxacin
19926                                                                                                              florfenicol
19927                                                                                                       gentamicin sulfate
19928                                                                                                              polymyxin b
19930                                                                                               milbemycin oxime, spinosad
19932                                                                                               milbemycin oxime, spinosad
19933                                                                                               milbemycin oxime, spinosad
19944                                                                                       joint supplement (glucosamine hcl)
19945                                                                                                                  omega 3
19946                                                                                               milbemycin oxime, spinosad
19947                                                                                       joint supplement (glucosamine hcl)
19948                                                                                                                  omega 3
19949                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                  omega 3
19952                                                                                                         pyrantel pamoate
19958                                                                                                 flumethrin, imidacloprid
19975                                                                                             ivermectin, pyrantel pamoate
19984                                                                                                               fluralaner
20003                                                                                             ivermectin, pyrantel pamoate
20006                                                                                       amoxicillin, clavulanate potassium
20007                                                                                        betamethasone, gentamicin sulfate
20019                                                                                             ivermectin, pyrantel pamoate
20020                                                                                                               afoxolaner
20027                                                                                                               afoxolaner
20028                                                                                             ivermectin, pyrantel pamoate
20065                                                                                                             imidacloprid
20068                                                                                                               nitenpyram
20069                                                                                    chlorhexidine gluconate, ketoconazole
20070                                                                                                 imidacloprid, moxidectin
20072                                                                                                               ivermectin
20074                                                                                               milbemycin oxime, spinosad
20096                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20099                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20105                                                                                                         atropine sulfate
20106                                                                                                                 xylazine
20125                                                                                                  triamcinolone acetonide
20126                                                                                                               ivermectin
20127                                                                                                               afoxolaner
20130                                                                                                  acetic acid, boric acid
20131                                                                                                         milbemycin oxime
20135                                                                                           milbemycin oxime, praziquantel
20144                                                                                                         milbemycin oxime
20145                                                                                                               lokivetmab
20149                                                                                                         burow's solution
20150                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20164                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
20173                                                                                                 imidacloprid, permethrin
20174                                                                                              lufenuron, milbemycin oxime
20175                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20182                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20218                                                                                                               ivermectin
20219                                                                                                               ivermectin
20220                                                                                                               ivermectin
20221                                                                                                               afoxolaner
20222                                                                                                               afoxolaner
20224                                                                                                               afoxolaner
20232                                                                                               imidacloprid, pyriproxyfen
20233                                                                                              lufenuron, milbemycin oxime
20234                                                                             dexamethasone, neomycin sulfate, polymyxin b
20240                                                                                                 imidacloprid, permethrin
20241                                                                                               imidacloprid, pyriproxyfen
20243                                                                                       fipronil, permethrin, pyriproxyfen
20244                                                                                                               ivermectin
20245                                                                                             ivermectin, pyrantel pamoate
20251                                                                                                                probiotic
20275                                                                                              lufenuron, milbemycin oxime
20282                                                                                              lufenuron, milbemycin oxime
20292                                                                                                               ivermectin
20293                                                                                    dinotefuran, permethrin, pyriproxyfen
20295                                                                                    dinotefuran, permethrin, pyriproxyfen
20297                                                                                                 imidacloprid, moxidectin
20298                                                                                                               tobramycin
20300                                                                                                 imidacloprid, moxidectin
20301                                                                                                 flumethrin, imidacloprid
20302                                                                                                 imidacloprid, moxidectin
20303                                                                                                 flumethrin, imidacloprid
20306                                                                                              lufenuron, milbemycin oxime
20315                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20337                                                                                                  ketoconazole, tris-edta
20339                                                                                                  acetic acid, boric acid
20340                                                                                                      silver sulfadiazine
20342                                                                                                                pramoxine
20343                                                                                        trimeprazine tartrate, prednisone
20344                                                                                               milbemycin oxime, spinosad
20348                                                                                             ivermectin, pyrantel pamoate
20356                                                                                           milbemycin oxime, praziquantel
20374                                                                                                             fenbendazole
20376                                                                                                                probiotic
20377                                                                                              lufenuron, milbemycin oxime
20380                                                                                                                probiotic
20382                                                                                 febantel, praziquantel, pyrantel pamoate
20387                                                                                              lufenuron, milbemycin oxime
20388                                                                                              lufenuron, milbemycin oxime
20390                                                                                              lufenuron, milbemycin oxime
20392                                                                               dimethyl sulfoxide, fluocinolone acetonide
20393                                                                                                                mupirocin
20402                                                                                              lufenuron, milbemycin oxime
20405                                                                                           milbemycin oxime, praziquantel
20409                                                                                           milbemycin oxime, praziquantel
20411                                                                                           milbemycin oxime, praziquantel
20413                                                                                                         milbemycin oxime
20425                                                                                              lufenuron, milbemycin oxime
20426                                                                                lufenuron, milbemycin oxime, praziquantel
20441                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20444                                                                                                                meloxicam
20446                                                                                                                meloxicam
20453                                                                                              lufenuron, milbemycin oxime
20460                                                                                              lufenuron, milbemycin oxime
20485                                                                                                                mupirocin
20490                                                                                             ivermectin, pyrantel pamoate
20491                                                                                                               afoxolaner
20510                                                                                               sulfadiazine, trimethoprim
20511                                                                                             ivermectin, pyrantel pamoate
20512                                                                                                               afoxolaner
20516                                                                                             ivermectin, pyrantel pamoate
20517                                                                                                               afoxolaner
20518                                                                                                                  omega 3
20554                                                                                               milbemycin oxime, spinosad
20555                                                                                               milbemycin oxime, spinosad
20561                                                                                               milbemycin oxime, spinosad
20565                                                                                               milbemycin oxime, spinosad
20568                                                                                               milbemycin oxime, spinosad
20574                                                                                                  ketoconazole, tris-edta
20577                                                                                       chlorhexidine gluconate, tris-edta
20579                                                                                               milbemycin oxime, spinosad
20585                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
20615                                                                                               imidacloprid, pyriproxyfen
20623                                                                                                                probiotic
20636                                                                                                 fipronil, (s)-methoprene
20638                                                                                       fipronil, permethrin, pyriproxyfen
20641                                                                 citronella, geranium oil, lemongrass oil, peppermint oil
20642                                                                                                 fipronil, (s)-methoprene
20645                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20648                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20651                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20659                                                                                                  jing tang max's formula
20666                                                                                                immune support supplement
20667                                                                                                                probiotic
20678                                                                                                              finasteride
20698                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20701                                                                                               imidacloprid, pyriproxyfen
20702                                                                                             ivermectin, pyrantel pamoate
20704                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20705                                                                                                  chlorhexidine gluconate
20707                                                                                               milbemycin oxime, spinosad
20708                                                                                                  chlorhexidine gluconate
20709                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
20712                                                                                                        unspecified wipes
20717                                                                                                         milbemycin oxime
20718                                                                                                         milbemycin oxime
20728                                                                                                              amoxicillin
20738                                                                                                               prednisone
20748                                                                                             ivermectin, pyrantel pamoate
20761                                                                                               milbemycin oxime, spinosad
20762                                                                                               milbemycin oxime, spinosad
20763                                                                                               milbemycin oxime, spinosad
20766                                                                                               milbemycin oxime, spinosad
20767                                                                                               milbemycin oxime, spinosad
20771                                                                                       amoxicillin, clavulanate potassium
20783                                                                                               milbemycin oxime, spinosad
20791                                                                                   joint supplement (glucosamine hcl/msm)
20796                                                                                   joint supplement (glucosamine hcl/msm)
20800                                                                                                         milbemycin oxime
20808                                                                                             ivermectin, pyrantel pamoate
20809                                                                                                               afoxolaner
20814                                                                                        betamethasone, gentamicin sulfate
20817                                                                                               milbemycin oxime, spinosad
20819                                                                                               milbemycin oxime, spinosad
20849                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
20852                                                                                        trimeprazine tartrate, prednisone
20854                                                                                             ivermectin, pyrantel pamoate
20855                                                                                                               afoxolaner
20858                                                                                             ivermectin, pyrantel pamoate
20861                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
20862                                                                                             ivermectin, pyrantel pamoate
20863                                                                                                               afoxolaner
20872                                                                                                               selamectin
20897                                                                                                                mupirocin
20918                                                                                        trimeprazine tartrate, prednisone
20939                                                                                                 flumethrin, imidacloprid
20940                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
20947                                                                                                 flumethrin, imidacloprid
20949                                                                                                 flumethrin, imidacloprid
20962                                                                                             ivermectin, pyrantel pamoate
20963                                                                                                 fipronil, (s)-methoprene
20964                                                                                             ivermectin, pyrantel pamoate
20965                                                                                   fipronil, pyriproxyfen, (s)-methoprene
20966                                                                                             ivermectin, pyrantel pamoate
21003                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21013                                                                             dexamethasone, neomycin sulfate, polymyxin b
21022                                                                                               milbemycin oxime, spinosad
21025                                                                                        trimeprazine tartrate, prednisone
21029                                                                                               milbemycin oxime, spinosad
21074                                                                                               milbemycin oxime, spinosad
21078                                                                                               milbemycin oxime, spinosad
21080                                                                                               milbemycin oxime, spinosad
21088                                                                                                                 niosomes
21102                                                                                                               selamectin
21109                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
21110                                                                                              lufenuron, milbemycin oxime
21111                                                                          betamethasone, clotrimazole, gentamicin sulfate
21112                                                                                                  ketoconazole, tris-edta
21114                                                                                                         milbemycin oxime
21115                                                                                                                 fipronil
21119                                                                               dextromethorphan hydrobromide, guaifenesin
21122                                                                                                         milbemycin oxime
21123                                                                                                                 fipronil
21125                                                                           mometasone furoate, orbifloxacin, posaconazole
21127                                                                                              lufenuron, milbemycin oxime
21130                                                                                                                  omega 3
21131                                                                                       chlorhexidine gluconate, ophytrium
21133                                                                                              lufenuron, milbemycin oxime
21168                                                                                             ivermectin, pyrantel pamoate
21169                                                                                                 fipronil, (s)-methoprene
21178                                                                             dexamethasone, neomycin sulfate, polymyxin b
21179                                                                                              lufenuron, milbemycin oxime
21180                                                                                               milbemycin oxime, spinosad
21181                                                                                              lufenuron, milbemycin oxime
21182                                                                                              lufenuron, milbemycin oxime
21190                                                                                               milbemycin oxime, spinosad
21201                                                                                           milbemycin oxime, praziquantel
21224                                                                                                             erythromycin
21253                                                                                               milbemycin oxime, spinosad
21254                                                                                              lufenuron, milbemycin oxime
21256                                                                                              lufenuron, milbemycin oxime
21267                                                                                               milbemycin oxime, spinosad
21268                                                                          betamethasone, clotrimazole, gentamicin sulfate
21269                                                                                               milbemycin oxime, spinosad
21273                                                                                              lufenuron, milbemycin oxime
21278                                                                          betamethasone, clotrimazole, gentamicin sulfate
21282                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21287                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21309                                                                                        trimeprazine tartrate, prednisone
21326                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21331                                                                                       joint supplement (glucosamine hcl)
21338                                                                                               imidacloprid, pyriproxyfen
21359                                                                                              lufenuron, milbemycin oxime
21361                                                                                              lufenuron, milbemycin oxime
21369                                                                                              lufenuron, milbemycin oxime
21384                                                                                             ivermectin, pyrantel pamoate
21385                                                                                                               afoxolaner
21386                                                                          betamethasone, clotrimazole, gentamicin sulfate
21387                                                                                                             enrofloxacin
21388                                                                                                             ketoconazole
21389                                                                                                  triamcinolone acetonide
21403                                                                                                         milbemycin oxime
21413                                                                                                   unspecified medication
21416                                                                             florfenicol, mometasone furoate, terbinafine
21442                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21445                                                                                             ivermectin, pyrantel pamoate
21448                                                                                             ivermectin, pyrantel pamoate
21449                                                                                                               afoxolaner
21465                                                                                                               gabapentin
21472                                                                                       amoxicillin, clavulanate potassium
21481                                                                                               imidacloprid, pyriproxyfen
21492                                                                                             ivermectin, pyrantel pamoate
21493                                                                                                               afoxolaner
21495                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21504                                                                                                             fenbendazole
21507                                                                                                             fenbendazole
21508                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21509                                                                                                         pyrantel pamoate
21527                                                                                                 imidacloprid, moxidectin
21528                                                                                                             imidacloprid
21531                                                                                             ivermectin, pyrantel pamoate
21532                                                                                             ivermectin, pyrantel pamoate
21533                                                                                                               afoxolaner
21549                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21552                                                                                           ketoconazole, phytosphingosine
21553                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21555                                                                                                            dexamethasone
21558                                                                                              lufenuron, milbemycin oxime
21562                                                                                               imidacloprid, pyriproxyfen
21563                                                                                              lufenuron, milbemycin oxime
21564                                                                                               imidacloprid, pyriproxyfen
21585                                                                                               milbemycin oxime, spinosad
21586                                                                                                         milbemycin oxime
21593                                                                                                                  omega 3
21600                                                                                                                meloxicam
21602                                                                                              lufenuron, milbemycin oxime
21605                                                                                                                meloxicam
21607                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21608                                                                                              lufenuron, milbemycin oxime
21609                                                                                                               fluralaner
21612                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21614                                                                                                               fluralaner
21615                                                                                              lufenuron, milbemycin oxime
21616                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21617                                                                                              lufenuron, milbemycin oxime
21618                                                                                                               fluralaner
21619                                                                                              lufenuron, milbemycin oxime
21620                                                                                                               fluralaner
21621                                                                                              lufenuron, milbemycin oxime
21622                                                                                                               fluralaner
21625                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
21632                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21642                                                                                              lufenuron, milbemycin oxime
21643                                                                                              lufenuron, milbemycin oxime
21644                                                                                              lufenuron, milbemycin oxime
21645                                                                                              lufenuron, milbemycin oxime
21646                                                                                              lufenuron, milbemycin oxime
21648                                                                                               imidacloprid, pyriproxyfen
21649                                                                                              lufenuron, milbemycin oxime
21650                                                                                                                probiotic
21651                                                                                              lufenuron, milbemycin oxime
21652                                                                                                 flumethrin, imidacloprid
21653                                                                                                      ear cleaner (zymox)
21654                                                                                              lufenuron, milbemycin oxime
21655                                                                                                 flumethrin, imidacloprid
21658                                                                                                 flumethrin, imidacloprid
21659                                                                                                      ear cleaner (zymox)
21660                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
21661                                                                                        betamethasone, gentamicin sulfate
21666                                                                                                 flumethrin, imidacloprid
21673                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21677                                                                                                                probiotic
21678                                                                                        betamethasone, gentamicin sulfate
21680                                                                             florfenicol, mometasone furoate, terbinafine
21685                                                                                                                mupirocin
21701                                                                                                 flumethrin, imidacloprid
21705                                                                                                 flumethrin, imidacloprid
21707                                                                                                 flumethrin, imidacloprid
21708                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21723                                                                                               milbemycin oxime, spinosad
21725                                                                                                         milbemycin oxime
21727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21739                                                                                              lufenuron, milbemycin oxime
21748                                                                                              lufenuron, milbemycin oxime
21749                                                                                                 imidacloprid, permethrin
21753                                                                                                         milbemycin oxime
21754                                                                                                         milbemycin oxime
21755                                                                                                               fluralaner
21757                                                                                                         milbemycin oxime
21767                                                                                                                trazodone
21783                                                                                   fipronil, pyriproxyfen, (s)-methoprene
21796                                                                                                               ivermectin
21809                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
21810                                                                                               cardiac support supplement
21814                                                                                             ivermectin, pyrantel pamoate
21815                                                                                                 fipronil, (s)-methoprene
21833                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
21851                                                                                                         milbemycin oxime
21865                                                                                             ivermectin, pyrantel pamoate
21869                                                                                                               ivermectin
21872                                                                                               imidacloprid, pyriproxyfen
21873                                                                                             ivermectin, pyrantel pamoate
21875                                                                                             ivermectin, pyrantel pamoate
21876                                                                                               imidacloprid, pyriproxyfen
21877                                                                                                              oclacitinib
21878                                                                                                           hydrocortisone
21886                                                                                               imidacloprid, pyriproxyfen
21894                                                                                              lufenuron, milbemycin oxime
21897                                                                                              lufenuron, milbemycin oxime
21898                                                                                                               afoxolaner
21912                                                                                             ivermectin, pyrantel pamoate
21918                                                                                                                probiotic
21921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
21925                                                                              rx diet - hypoallergenic hydrolyzed protein
21949                                                                             florfenicol, mometasone furoate, terbinafine
21955                                                                                                               fluralaner
21956                                                                                                               ivermectin
21959                                                                                           sulfamethoxazole, trimethoprim
21982                                                                                       fipronil, permethrin, pyriproxyfen
21993                                                                                                         milbemycin oxime
22020                                                                                         phytosphingosine, salicylic acid
22023                                                                                              lufenuron, milbemycin oxime
22025                                                                                              lufenuron, milbemycin oxime
22026                                                                                              lufenuron, milbemycin oxime
22037                                                                                             ivermectin, pyrantel pamoate
22038                                                                                                               afoxolaner
22041                                                                                             ivermectin, pyrantel pamoate
22042                                                                                                               afoxolaner
22043                                                                                                                meloxicam
22045                                                                                             ivermectin, pyrantel pamoate
22046                                                                                                               afoxolaner
22048                                                                                        betamethasone, gentamicin sulfate
22050                                                                                                                probiotic
22051                                                                                               milbemycin oxime, spinosad
22060                                                                                               milbemycin oxime, spinosad
22062                                                                                                         milbemycin oxime
22064                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22088                                                                                             ivermectin, pyrantel pamoate
22089                                                                                                               afoxolaner
22092                                                                                             ivermectin, pyrantel pamoate
22093                                                                                                               afoxolaner
22118                                                                                                               ivermectin
22120                                                                             dexamethasone, neomycin sulfate, polymyxin b
22121                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22125                                                                                             ivermectin, pyrantel pamoate
22128                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22136                                                                                             ivermectin, pyrantel pamoate
22140                                                                                                         milbemycin oxime
22141                                                                                                               fluralaner
22151                                                                                                              vincristine
22160                                                                                             ivermectin, pyrantel pamoate
22161                                                                                             ivermectin, pyrantel pamoate
22163                                                                                             ivermectin, pyrantel pamoate
22173                                                                                             ivermectin, pyrantel pamoate
22175                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22176                                                                                             ivermectin, pyrantel pamoate
22177                                                                                                               afoxolaner
22179                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22189                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22190                                                                                          ear cleaner (epi-otic advanced)
22196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22199                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22201                                                                             florfenicol, mometasone furoate, terbinafine
22216                                                                                             ivermectin, pyrantel pamoate
22217                                                                                                               afoxolaner
22218                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
22219                                                                          betamethasone, clotrimazole, gentamicin sulfate
22222                                                                                              lufenuron, milbemycin oxime
22223                                                                                              lufenuron, milbemycin oxime
22224                                                                                                                 fipronil
22225                                                                                              lufenuron, milbemycin oxime
22226                                                                                                               afoxolaner
22227                                                                                              lufenuron, milbemycin oxime
22228                                                                                                               afoxolaner
22229                                                                                                         milbemycin oxime
22230                                                                                                                lotilaner
22237                                                                                               milbemycin oxime, spinosad
22238                                                                                               milbemycin oxime, spinosad
22239                                                                                               milbemycin oxime, spinosad
22240                                                                                                                carprofen
22241                                                                                                          dexmedetomidine
22243                                                                                                   unspecified medication
22245                                                                                                               cephalexin
22253                                                                                               milbemycin oxime, spinosad
22261                                                                                             ivermectin, pyrantel pamoate
22262                                                                                                               afoxolaner
22265                                                                                             ivermectin, pyrantel pamoate
22267                                                                                             ivermectin, pyrantel pamoate
22268                                                                                                               afoxolaner
22270                                                                                                                  omega 3
22272                                                                                                                mupirocin
22289                                                                                                         milbemycin oxime
22299                                                                                               milbemycin oxime, spinosad
22306                                                                                              lufenuron, milbemycin oxime
22308                                                                                              lufenuron, milbemycin oxime
22311                                                                                              lufenuron, milbemycin oxime
22313                                                                                                          dexmedetomidine
22315                                                                                                                probiotic
22316                                                                                              lufenuron, milbemycin oxime
22321                                                                                              lufenuron, milbemycin oxime
22323                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
22341                                                                                  betamethasone, florfenicol, terbinafine
22342                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22343                                                                                  betamethasone, florfenicol, terbinafine
22345                                                                                                             enrofloxacin
22346                                                                                                       miconazole nitrate
22347                                                                                                            dexamethasone
22349                                                                                                                meloxicam
22351                                                                                               milbemycin oxime, spinosad
22352                                                                                               milbemycin oxime, spinosad
22353                                                                                               milbemycin oxime, spinosad
22367                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22404                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
22407                                                                                                     cefpodoxime proxetil
22408                                                                                                  chlorhexidine gluconate
22410                                                                                                  chlorhexidine gluconate
22413                                                                                             ivermectin, pyrantel pamoate
22417                                                                                             ivermectin, pyrantel pamoate
22430                                                                                                                meloxicam
22439                                                                                               milbemycin oxime, spinosad
22440                                                                                               milbemycin oxime, spinosad
22441                                                                                              lufenuron, milbemycin oxime
22459                                                                                                  triamcinolone acetonide
22463                                                                                                  triamcinolone acetonide
22530                                                                                             ivermectin, pyrantel pamoate
22531                                                                                              lufenuron, milbemycin oxime
22532                                                                                              lufenuron, milbemycin oxime
22533                                                                                                 flumethrin, imidacloprid
22534                                                                                              lufenuron, milbemycin oxime
22537                                                                                                                ophytrium
22540                                                                                                            yunnan baiyao
22541                                                                                              lufenuron, milbemycin oxime
22545                                                                                              lufenuron, milbemycin oxime
22546                                                                                              lufenuron, milbemycin oxime
22547                                                                                               imidacloprid, pyriproxyfen
22548                                                                                              lufenuron, milbemycin oxime
22549                                                                                              lufenuron, milbemycin oxime
22552                                                                                                                  omega 3
22557                                                                                             ivermectin, pyrantel pamoate
22558                                                                                             ivermectin, pyrantel pamoate
22574                                                                                                  triamcinolone acetonide
22575                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
22577                                                                                             ivermectin, pyrantel pamoate
22578                                                                                             ivermectin, pyrantel pamoate
22579                                                                                             ivermectin, pyrantel pamoate
22583                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
22585                                                                                                                probiotic
22598                                                                                                 fipronil, (s)-methoprene
22601                                                                                                 fipronil, (s)-methoprene
22606                                                                                             ivermectin, pyrantel pamoate
22607                                                                                                 fipronil, (s)-methoprene
22610                                                                                               milbemycin oxime, spinosad
22611                                                                                               milbemycin oxime, spinosad
22625                                                                                             ivermectin, pyrantel pamoate
22653                                                                                              lufenuron, milbemycin oxime
22655                                                                                                 fipronil, (s)-methoprene
22656                                                                                              lufenuron, milbemycin oxime
22662                                                                          betamethasone, clotrimazole, gentamicin sulfate
22667                                                                          betamethasone, clotrimazole, gentamicin sulfate
22669                                                                          betamethasone, clotrimazole, gentamicin sulfate
22672                                                                          betamethasone, clotrimazole, gentamicin sulfate
22673                                                                                        trimeprazine tartrate, prednisone
22681                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22682                                                                                             ivermectin, pyrantel pamoate
22683                                                                                   fipronil, pyriproxyfen, (s)-methoprene
22690                                                                                                 flumethrin, imidacloprid
22691                                                                                              lufenuron, milbemycin oxime
22692                                                                                              lufenuron, milbemycin oxime
22693                                                                                                         milbemycin oxime
22704                                                                                             ivermectin, pyrantel pamoate
22705                                                                                                 fipronil, (s)-methoprene
22707                                                                                             ivermectin, pyrantel pamoate
22708                                                                                                 fipronil, (s)-methoprene
22711                                                                                             ivermectin, pyrantel pamoate
22713                                                                                             ivermectin, pyrantel pamoate
22714                                                                                                                sarolaner
22716                                                                                             ivermectin, pyrantel pamoate
22717                                                                                                                sarolaner
22718                                                                                             ivermectin, pyrantel pamoate
22719                                                                                             ivermectin, pyrantel pamoate
22733                                                                                                 flumethrin, imidacloprid
22748                                                                                              lufenuron, milbemycin oxime
22749                                                                                              lufenuron, milbemycin oxime
22750                                                                                               imidacloprid, pyriproxyfen
22751                                                                                              lufenuron, milbemycin oxime
22752                                                                                               imidacloprid, pyriproxyfen
22754                                                                                              lufenuron, milbemycin oxime
22763                                                                                             ivermectin, pyrantel pamoate
22764                                                                                               imidacloprid, pyriproxyfen
22765                                                                                          ear cleaner (epi-otic advanced)
22766                                                                                                         milbemycin oxime
22770                                                                                                         milbemycin oxime
22777                                                                                               milbemycin oxime, spinosad
22778                                                                                               milbemycin oxime, spinosad
22779                                                                                               milbemycin oxime, spinosad
22780                                                                                               milbemycin oxime, spinosad
22795                                                                                             ivermectin, pyrantel pamoate
22796                                                                                               imidacloprid, pyriproxyfen
22797                                                                                              lufenuron, milbemycin oxime
22798                                                                                       fipronil, permethrin, pyriproxyfen
22799                                                                                              lufenuron, milbemycin oxime
22800                                                                                                               afoxolaner
22801                                                                                              lufenuron, milbemycin oxime
22802                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
22803                                                                                             ivermectin, pyrantel pamoate
22804                                                                                                               afoxolaner
22830                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
22840                                                                                             ivermectin, pyrantel pamoate
22848                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
22858                                                                                                  chlorhexidine gluconate
22875                                                                                               imidacloprid, pyriproxyfen
22886                                                                                                  ketoconazole, tris-edta
22909                                                                                             ivermectin, pyrantel pamoate
22919                                                                                                               afoxolaner
22920                                                                                                             fenbendazole
22922                                                                                                  ketoconazole, tris-edta
22923                                                                                                     prebiotic, probiotic
22926                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22929                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22936                                                                                       chlorhexidine gluconate, tris-edta
22938                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
22939                                                                          betamethasone, clotrimazole, gentamicin sulfate
22954                                                                                               imidacloprid, pyriproxyfen
22963                                                                                                 fipronil, (s)-methoprene
22965                                                                                             ivermectin, pyrantel pamoate
22966                                                                                                 flumethrin, imidacloprid
22971                                                                                             ivermectin, pyrantel pamoate
22990                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
22992                                                                                                             imidacloprid
22994                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23007                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23018                                                                                                            metronidazole
23019                                                                                                                carprofen
23024                                                                                                                probiotic
23043                                                                                                 joint supplement (other)
23049                                                                                                               ivermectin
23051                                                                                                               ivermectin
23053                                                                                             ivermectin, pyrantel pamoate
23055                                                                                                               fluralaner
23059                                                                                                         milbemycin oxime
23060                                                                                                         milbemycin oxime
23061                                                                                                               fluralaner
23064                                                                                              lufenuron, milbemycin oxime
23066                                                                                              lufenuron, milbemycin oxime
23083                                                                                               milbemycin oxime, spinosad
23095                                                                                               milbemycin oxime, spinosad
23096                                                                                                               fluralaner
23100                                                                             florfenicol, mometasone furoate, terbinafine
23102                                                                                       amoxicillin, clavulanate potassium
23103                                                                             florfenicol, mometasone furoate, terbinafine
23108                                                                                                  chlorhexidine gluconate
23122                                                                                             ivermectin, pyrantel pamoate
23123                                                                                               imidacloprid, pyriproxyfen
23124                                                                                               imidacloprid, pyriproxyfen
23125                                                                                             ivermectin, pyrantel pamoate
23134                                                                                              lufenuron, milbemycin oxime
23137                                                                                              lufenuron, milbemycin oxime
23138                                                                                              lufenuron, milbemycin oxime
23143                                                                                              lufenuron, milbemycin oxime
23144                                                                                                                sarolaner
23153                                                                                                                mupirocin
23154                                                                             dexamethasone, neomycin sulfate, polymyxin b
23163                                                                           dexamethasone, neomycin sulfate, thiabendazole
23169                                                                                       unspecified heartworm preventative
23173                                                                                        unspecified parasite preventative
23175                                                                                             ivermectin, pyrantel pamoate
23202                                                                                                               ivermectin
23237                                                                                           praziquantel, pyrantel pamoate
23249                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23250                                                                                                               afoxolaner
23251                                                                                             ivermectin, pyrantel pamoate
23258                                                                                             ivermectin, pyrantel pamoate
23259                                                                                    dinotefuran, permethrin, pyriproxyfen
23266                                                                                                               isoflurane
23267                                                                                             ivermectin, pyrantel pamoate
23268                                                                                    dinotefuran, permethrin, pyriproxyfen
23276                                                                                                               isoflurane
23278                                                                                                         phytosphingosine
23279                                                                                             ivermectin, pyrantel pamoate
23280                                                                                                               afoxolaner
23283                                                                                       chlorhexidine gluconate, ophytrium
23284                                                                                       amoxicillin, clavulanate potassium
23286                                                                                             ivermectin, pyrantel pamoate
23288                                                                                                         phytosphingosine
23294                                                                                             ivermectin, pyrantel pamoate
23299                                                                                       amoxicillin, clavulanate potassium
23304                                                                                                         phytosphingosine
23308                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23321                                                                                 febantel, praziquantel, pyrantel pamoate
23322                                                                                                                mupirocin
23325                                                                                                               lokivetmab
23333                                                                                             ivermectin, pyrantel pamoate
23336                                                                                             ivermectin, pyrantel pamoate
23337                                                                                                 fipronil, (s)-methoprene
23338                                                                                    dinotefuran, permethrin, pyriproxyfen
23340                                                                                          ear cleaner (epi-otic advanced)
23341                                                                                             ivermectin, pyrantel pamoate
23342                                                                                    dinotefuran, permethrin, pyriproxyfen
23344                                                                                             ivermectin, pyrantel pamoate
23345                                                                                    dinotefuran, permethrin, pyriproxyfen
23349                                                                                                         phytosphingosine
23350                                                                                             ivermectin, pyrantel pamoate
23353                                                                                       amoxicillin, clavulanate potassium
23355                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
23356                                                                                             ivermectin, pyrantel pamoate
23360                                                                                             ivermectin, pyrantel pamoate
23364                                                                                                         phytosphingosine
23366                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23384                                                                                                 fipronil, (s)-methoprene
23388                                                                                                               ivermectin
23403                                                                                                         milbemycin oxime
23404                                                                                                               fluralaner
23413                                                                                                               ivermectin
23414                                                                                             ivermectin, pyrantel pamoate
23419                                                                                              dexamethasone, enrofloxacin
23427                                                                                              lufenuron, milbemycin oxime
23428                                                                                              lufenuron, milbemycin oxime
23437                                                                                               milbemycin oxime, spinosad
23450                                                                                       fipronil, permethrin, pyriproxyfen
23456                                                                                        betamethasone, gentamicin sulfate
23472                                                                                    dinotefuran, permethrin, pyriproxyfen
23482                                                                                    dinotefuran, permethrin, pyriproxyfen
23484                                                                                                         milbemycin oxime
23485                                                                                    dinotefuran, permethrin, pyriproxyfen
23487                                                                                    dinotefuran, permethrin, pyriproxyfen
23491                                                                                       amoxicillin, clavulanate potassium
23507                                                                                              lufenuron, milbemycin oxime
23520                                                                                    dinotefuran, permethrin, pyriproxyfen
23533                                                                             dexamethasone, neomycin sulfate, polymyxin b
23534                                                                                        betamethasone, gentamicin sulfate
23540                                                                                             ivermectin, pyrantel pamoate
23541                                                                                                               afoxolaner
23552                                                                                             ivermectin, pyrantel pamoate
23553                                                                                             ivermectin, pyrantel pamoate
23557                                                                                                               ivermectin
23565                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
23566                                                                                      ear cleaner (zymox), hydrocortisone
23568                                                                                                 flumethrin, imidacloprid
23571                                                                                             ivermectin, pyrantel pamoate
23572                                                                                                 fipronil, (s)-methoprene
23588                                                                                               milbemycin oxime, spinosad
23590                                                                                                                vitamin c
23610                                                                                              lufenuron, milbemycin oxime
23617                                                                                              lufenuron, milbemycin oxime
23618                                                                                              lufenuron, milbemycin oxime
23619                                                                                              lufenuron, milbemycin oxime
23620                                                                                              lufenuron, milbemycin oxime
23622                                                                                              lufenuron, milbemycin oxime
23646                                                                                               milbemycin oxime, spinosad
23647                                                                                               milbemycin oxime, spinosad
23651                                                                                           milbemycin oxime, praziquantel
23657                                                                                                         milbemycin oxime
23659                                                                                                               fluralaner
23685                                                                                              lufenuron, milbemycin oxime
23686                                                                                                               fluralaner
23688                                                                                                               fluralaner
23707                                                                                        betamethasone, gentamicin sulfate
23718                                                                                             ivermectin, pyrantel pamoate
23721                                                                                             ivermectin, pyrantel pamoate
23722                                                                                                               afoxolaner
23724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23730                                                                                              lufenuron, milbemycin oxime
23732                                                                                              lufenuron, milbemycin oxime
23740                                                                                                         milbemycin oxime
23747                                                                                              lufenuron, milbemycin oxime
23749                                                                                                   unspecified medication
23757                                                                                              lufenuron, milbemycin oxime
23804                                                                                              lufenuron, milbemycin oxime
23805                                                                                              lufenuron, milbemycin oxime
23808                                                                                              lufenuron, milbemycin oxime
23809                                                                                                 flumethrin, imidacloprid
23819                                                                                              lufenuron, milbemycin oxime
23861                                                                                                         milbemycin oxime
23862                                                                                                               afoxolaner
23866                                                                                               imidacloprid, pyriproxyfen
23868                                                                                               imidacloprid, pyriproxyfen
23871                                                                                               imidacloprid, pyriproxyfen
23872                                                                                                  chlorhexidine gluconate
23873                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
23898                                                                                                 flumethrin, imidacloprid
23899                                                                              over-the-counter unmedicated shampoo/mousse
23900                                                                                              lufenuron, milbemycin oxime
23901                                                                                              lufenuron, milbemycin oxime
23902                                                                                                 flumethrin, imidacloprid
23905                                                                                lufenuron, milbemycin oxime, praziquantel
23906                                                                                                 flumethrin, imidacloprid
23909                                                                                                  chlorhexidine gluconate
23910                                                                                                         milbemycin oxime
23914                                                                             florfenicol, mometasone furoate, terbinafine
23917                                                                                                                mupirocin
23933                                                                                  betamethasone, florfenicol, terbinafine
23942                                                                                                                mupirocin
23955                                                                                                         milbemycin oxime
23956                                                                                                 fipronil, (s)-methoprene
23957                                                                                                            metronidazole
23958                                                                          betamethasone, clotrimazole, gentamicin sulfate
23959                                                                                                  ketoconazole, tris-edta
23965                                                                          betamethasone, clotrimazole, gentamicin sulfate
23969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
23974                                                                                               imidacloprid, pyriproxyfen
23976                                                                                               imidacloprid, pyriproxyfen
23980                                                                                                             multivitamin
24010                                                                                               milbemycin oxime, spinosad
24012                                                                             dexamethasone, neomycin sulfate, polymyxin b
24017                                                                                               milbemycin oxime, spinosad
24018                                                                                               milbemycin oxime, spinosad
24019                                                                                               milbemycin oxime, spinosad
24020                                                                                               milbemycin oxime, spinosad
24022                                                                                               milbemycin oxime, spinosad
24029                                                                                               milbemycin oxime, spinosad
24045                                                                                             ivermectin, pyrantel pamoate
24046                                                                                                              oclacitinib
24062                                                                                              lufenuron, milbemycin oxime
24068                                                                                                                probiotic
24072                                                                                              lufenuron, milbemycin oxime
24075                                                                                              lufenuron, milbemycin oxime
24076                                                                                              lufenuron, milbemycin oxime
24077                                                                                              lufenuron, milbemycin oxime
24079                                                                                              lufenuron, milbemycin oxime
24104                                                                                                                carprofen
24106                                                                                                                 tramadol
24116                                                                                                               afoxolaner
24117                                                                                             ivermectin, pyrantel pamoate
24139                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24142                                                                               ivermectin, praziquantel, pyrantel pamoate
24144                                                                                                         milbemycin oxime
24145                                                                                       joint supplement (glucosamine hcl)
24149                                                                                                         milbemycin oxime
24154                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24155                                                                                                                  omega 3
24157                                                                                                                sarolaner
24162                                                                               ivermectin, praziquantel, pyrantel pamoate
24165                                                                                                         milbemycin oxime
24166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24172                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
24174                                                                                             ivermectin, pyrantel pamoate
24185                                                                                                 homatropine, hydrocodone
24189                                                                                        betamethasone, gentamicin sulfate
24192                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24193                                                                                                                  omega 3
24194                                                                                             ivermectin, pyrantel pamoate
24195                                                                                                                probiotic
24203                                                                                                  acetic acid, boric acid
24205                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24206                                                                                                                probiotic
24207                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
24208                                                                          betamethasone, clotrimazole, gentamicin sulfate
24209                                                                                        betamethasone, gentamicin sulfate
24215                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24217                                                                                                  chlorhexidine gluconate
24221                                                                                                      silver sulfadiazine
24222                                                                                                      silver sulfadiazine
24246                                                                                        trimeprazine tartrate, prednisone
24253                                                                                             ivermectin, pyrantel pamoate
24257                                                                                                         milbemycin oxime
24258                                                                                                         milbemycin oxime
24259                                                                                                               afoxolaner
24267                                                                                               lactated ringer's solution
24268                                                                                               lactated ringer's solution
24269                                                                                                              oclacitinib
24276                                                                                              lufenuron, milbemycin oxime
24282                                                                                                                probiotic
24312                                                                                        betamethasone, gentamicin sulfate
24313                                                                                         burow's solution, hydrocortisone
24314                                                                                                                probiotic
24319                                                                                                                firocoxib
24322                                                                                        betamethasone, gentamicin sulfate
24328                                                                                                              doxycycline
24343                                                                                               milbemycin oxime, spinosad
24375                                                                                                               ivermectin
24393                                                                                              lufenuron, milbemycin oxime
24400                                                                                              lufenuron, milbemycin oxime
24402                                                                                                               afoxolaner
24403                                                                                lufenuron, milbemycin oxime, praziquantel
24405                                                                                                                  omega 3
24406                                                                                                               prednisone
24407                                                                                                              clindamycin
24409                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24413                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24416                                                                           mometasone furoate, orbifloxacin, posaconazole
24417                                                                                                         tylosin tartrate
24420                                                                                                         tylosin tartrate
24421                                                                                                               ivermectin
24422                                                                                                 fipronil, (s)-methoprene
24424                                                                                                                probiotic
24425                                                                                             ivermectin, pyrantel pamoate
24426                                                                                                               afoxolaner
24431                                                                                             ivermectin, pyrantel pamoate
24432                                                                                                               afoxolaner
24435                                                                                                               ivermectin
24437                                                                                                               afoxolaner
24451                                                                           mometasone furoate, orbifloxacin, posaconazole
24452                                                                             dexamethasone, neomycin sulfate, polymyxin b
24453                                                                                                     prednisolone acetate
24455                                                                                                                probiotic
24459                                                                                       joint supplement (glucosamine hcl)
24460                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24468                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
24473                                                                                               milbemycin oxime, spinosad
24475                                                                                               milbemycin oxime, spinosad
24476                                                                                                               ivermectin
24477                                                                               ivermectin, praziquantel, pyrantel pamoate
24478                                                                                                                probiotic
24480                                                                                                         milbemycin oxime
24481                                                                                                         milbemycin oxime
24486                                                                                             ivermectin, pyrantel pamoate
24514                                                                                                                probiotic
24520                                                                                       fipronil, permethrin, pyriproxyfen
24521                                                                                             ivermectin, pyrantel pamoate
24526                                                                                        betamethasone, gentamicin sulfate
24534                                                                                       fipronil, permethrin, pyriproxyfen
24536                                                                                             ivermectin, pyrantel pamoate
24593                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
24597                                                                                               milbemycin oxime, spinosad
24598                                                                                                         liver supplement
24599                                                                                               milbemycin oxime, spinosad
24601                                                                                               milbemycin oxime, spinosad
24602                                                                                               milbemycin oxime, spinosad
24605                                                                                               milbemycin oxime, spinosad
24610                                                                                                  acetic acid, boric acid
24647                                                                                          ear cleaner (epi-otic advanced)
24648                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24653                                                                                      ear cleaner (zymox), hydrocortisone
24660                                                                                                               afoxolaner
24669                                                                                                               afoxolaner
24688                                                                             dexamethasone, neomycin sulfate, polymyxin b
24707                                                                                                                mupirocin
24733                                                                                                               ivermectin
24734                                                                                                               afoxolaner
24758                                                                             dexamethasone, neomycin sulfate, polymyxin b
24762                                                                                              lufenuron, milbemycin oxime
24768                                                                                             ivermectin, pyrantel pamoate
24769                                                                                                               afoxolaner
24802                                                                                                               selamectin
24804                                                                                                                cefovecin
24805                                                                                                              oclacitinib
24806                                                                                                              oclacitinib
24817                                                                                                                tris-edta
24819                                                                                                               benzocaine
24824                                                                                             ivermectin, pyrantel pamoate
24825                                                                                                               fluralaner
24827                                                                               toothpaste/dental health solution or chews
24828                                                                                   joint supplement (glucosamine hcl/msm)
24829                                                                                             ivermectin, pyrantel pamoate
24830                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24850                                                                                                         milbemycin oxime
24867                                                                                              lufenuron, milbemycin oxime
24878                                                                                        betamethasone, gentamicin sulfate
24898                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24902                                                                                              lufenuron, milbemycin oxime
24917                                                                                        betamethasone, gentamicin sulfate
24918                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
24919                                                                                  moxidectin, pyrantel pamoate, sarolaner
24935                                                                                              lufenuron, milbemycin oxime
24937                                                                                              lufenuron, milbemycin oxime
24938                                                                                              lufenuron, milbemycin oxime
24940                                                                                              lufenuron, milbemycin oxime
24942                                                                                              lufenuron, milbemycin oxime
24948                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24949                                                                                              lufenuron, milbemycin oxime
24950                                                                                                   cyphenothrin, fipronil
24963                                                                                              lufenuron, milbemycin oxime
24964                                                                                           milbemycin oxime, praziquantel
24968                                                                                             ivermectin, pyrantel pamoate
24969                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24971                                                                                             ivermectin, pyrantel pamoate
24973                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
24974                                                                                                 flumethrin, imidacloprid
24975                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
24982                                                                                                 fipronil, (s)-methoprene
24984                                                                                              lufenuron, milbemycin oxime
24985                                                                                                 fipronil, (s)-methoprene
24987                                                                                              lufenuron, milbemycin oxime
24988                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
24989                                                                                                            dexamethasone
24993                                                                                                                 geraniol
25020                                                                                              lufenuron, milbemycin oxime
25021                                                                                                               fluralaner
25022                                                                                              lufenuron, milbemycin oxime
25059                                                                                             ivermectin, pyrantel pamoate
25079                                                                                             ivermectin, pyrantel pamoate
25087                                                                                                 flumethrin, imidacloprid
25094                                                                                               milbemycin oxime, spinosad
25099                                                                                             ivermectin, pyrantel pamoate
25100                                                                                                               fluralaner
25118                                                                                                         milbemycin oxime
25119                                                                                              lufenuron, milbemycin oxime
25120                                                                                    dinotefuran, permethrin, pyriproxyfen
25124                                                                                          ear cleaner (epi-otic advanced)
25129                                                                                                                probiotic
25191                                                                                                         milbemycin oxime
25196                                                                                              lufenuron, milbemycin oxime
25198                                                                                                  ketoconazole, tris-edta
25233                                                                                                               ivermectin
25234                                                                                             ivermectin, pyrantel pamoate
25241                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25255                                                                                         phytosphingosine, salicylic acid
25258                                                                                                       paw protection wax
25262                                                                          betamethasone, clotrimazole, gentamicin sulfate
25269                                                                                                               gabapentin
25270                                                                                                                trazodone
25296                                                                                             ivermectin, pyrantel pamoate
25299                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25300                                                                                                               afoxolaner
25310                                                                                                 fipronil, (s)-methoprene
25311                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25315                                                                                              lufenuron, milbemycin oxime
25316                                                                                             ivermectin, pyrantel pamoate
25317                                                                                                               afoxolaner
25342                                                                                                               afoxolaner
25343                                                                                                         milbemycin oxime
25345                                                                                  betamethasone, florfenicol, terbinafine
25346                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
25347                                                                                       joint supplement (glucosamine hcl)
25367                                                                                        trimeprazine tartrate, prednisone
25405                                                                                                               selamectin
25409                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
25410                                                                                    chlorhexidine gluconate, ketoconazole
25417                                                                                                  chlorhexidine gluconate
25421                                                                                                               selamectin
25424                                                                                                                probiotic
25425                                                                                                               loratadine
25437                                                                                              lufenuron, milbemycin oxime
25444                                                                                              lufenuron, milbemycin oxime
25473                                                                                             ivermectin, pyrantel pamoate
25482                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25493                                                                                             ivermectin, pyrantel pamoate
25494                                                                                             ivermectin, pyrantel pamoate
25501                                                                                             ivermectin, pyrantel pamoate
25514                                                                                       joint supplement (glucosamine hcl)
25515                                                                                                                  omega 3
25516                                                                                             ivermectin, pyrantel pamoate
25520                                                                                             ivermectin, pyrantel pamoate
25521                                                                                                               afoxolaner
25523                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
25547                                                                                                             acepromazine
25554                                                                                               milbemycin oxime, spinosad
25555                                                                                               milbemycin oxime, spinosad
25556                                                                                               milbemycin oxime, spinosad
25557                                                                                               milbemycin oxime, spinosad
25575                                                                                             ivermectin, pyrantel pamoate
25576                                                                                                               ivermectin
25577                                                                                                               ivermectin
25589                                                                                                         milbemycin oxime
25591                                                                                                         milbemycin oxime
25612                                                                                               milbemycin oxime, spinosad
25617                                                                                                           liquid bandage
25619                                                                          betamethasone, clotrimazole, gentamicin sulfate
25622                                                                             florfenicol, mometasone furoate, terbinafine
25660                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25663                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25666                                                                                        trimeprazine tartrate, prednisone
25670                                                                                                 imidacloprid, moxidectin
25671                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
25674                                                                                                 imidacloprid, moxidectin
25683                                                                                             ivermectin, pyrantel pamoate
25706                                                                                               imidacloprid, pyriproxyfen
25707                                                                                                             fenbendazole
25708                                                                                              lufenuron, milbemycin oxime
25725                                                                                                                probiotic
25727                                                                                             ivermectin, pyrantel pamoate
25730                                                                                                         benzoyl peroxide
25737                                                                                                     digestive supplement
25740                                                                                                               afoxolaner
25741                                                                                              lufenuron, milbemycin oxime
25743                                                                                    dinotefuran, permethrin, pyriproxyfen
25744                                                                                                  ketoconazole, tris-edta
25748                                                                                                         milbemycin oxime
25749                                                                                             ivermectin, pyrantel pamoate
25750                                                                                                 fipronil, (s)-methoprene
25751                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
25753                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
25754                                                                                              lufenuron, milbemycin oxime
25755                                                                                                               fluralaner
25756                                                                                    dinotefuran, permethrin, pyriproxyfen
25757                                                                                                               afoxolaner
25765                                                                                                  ketoconazole, tris-edta
25795                                                                                                             fenbendazole
25804                                                                                              lufenuron, milbemycin oxime
25806                                                                                              lufenuron, milbemycin oxime
25807                                                                                              lufenuron, milbemycin oxime
25819                                                                                               milbemycin oxime, spinosad
25820                                                                                               milbemycin oxime, spinosad
25827                                                                                                         milbemycin oxime
25828                                                                                                         milbemycin oxime
25830                                                                                                         milbemycin oxime
25837                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
25846                                                                                                               fluralaner
25884                                                                                             ivermectin, pyrantel pamoate
25887                                                                                             ivermectin, pyrantel pamoate
25888                                                                                                               afoxolaner
25919                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
25936                                                                                                               gabapentin
25937                                                                                                               prednisone
25939                                                                                           milbemycin oxime, praziquantel
25940                                                                                                               fluralaner
25941                                                                                             ivermectin, pyrantel pamoate
25943                                                                                                               selamectin
25948                                                                                                               ivermectin
25949                                                                                           milbemycin oxime, praziquantel
25950                                                                                                               fluralaner
25951                                                                                             ivermectin, pyrantel pamoate
25953                                                                                             ivermectin, pyrantel pamoate
25954                                                                                                               selamectin
25964                                                                                             ivermectin, pyrantel pamoate
25965                                                                                                               afoxolaner
25966                                                                                                               ivermectin
25981                                                                           mometasone furoate, orbifloxacin, posaconazole
25983                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
25985                                                                                               imidacloprid, pyriproxyfen
25986                                                                                                 imidacloprid, moxidectin
25998                                                                                                                toceranib
26004                                                                                             ivermectin, pyrantel pamoate
26022                                                                                       amoxicillin, clavulanate potassium
26024                                                                                                               fluralaner
26027                                                                                       amoxicillin, clavulanate potassium
26031                                                                                                         milbemycin oxime
26033                                                                                                               fluralaner
26037                                                                                                               fluralaner
26039                                                                                                               fluralaner
26047                                                                                                               fluralaner
26048                                                                                                         milbemycin oxime
26050                                                                                                               fluralaner
26054                                                                                                               fluralaner
26056                                                                                                               fluralaner
26064                                                                                                                probiotic
26075                                                                                                                  amforal
26078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26084                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
26085                                                                             florfenicol, mometasone furoate, terbinafine
26093                                                                                        betamethasone, gentamicin sulfate
26114                                                                                             ivermectin, pyrantel pamoate
26115                                                                           dexamethasone, neomycin sulfate, thiabendazole
26127                                                                                                         phytosphingosine
26128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
26129                                                                          betamethasone, clotrimazole, gentamicin sulfate
26133                                                                          betamethasone, clotrimazole, gentamicin sulfate
26134                                                                          betamethasone, clotrimazole, gentamicin sulfate
26138                                                                                    dinotefuran, permethrin, pyriproxyfen
26139                                                                                    chlorhexidine gluconate, ketoconazole
26141                                                                                    dinotefuran, permethrin, pyriproxyfen
26148                                                                                    dinotefuran, permethrin, pyriproxyfen
26151                                                                                           milbemycin oxime, praziquantel
26152                                                                                    dinotefuran, permethrin, pyriproxyfen
26156                                                                                           milbemycin oxime, praziquantel
26157                                                                                    dinotefuran, permethrin, pyriproxyfen
26158                                                                                           milbemycin oxime, praziquantel
26159                                                                                    dinotefuran, permethrin, pyriproxyfen
26165                                                                                           milbemycin oxime, praziquantel
26166                                                                                    dinotefuran, permethrin, pyriproxyfen
26184                                                                             dexamethasone, neomycin sulfate, polymyxin b
26187                                                                             dexamethasone, neomycin sulfate, polymyxin b
26190                                                                                    chlorhexidine gluconate, ketoconazole
26192                                                                                    dinotefuran, permethrin, pyriproxyfen
26197                                                                             dexamethasone, neomycin sulfate, polymyxin b
26199                                                                                    dinotefuran, permethrin, pyriproxyfen
26203                                                                                           milbemycin oxime, praziquantel
26204                                                                                    dinotefuran, permethrin, pyriproxyfen
26207                                                                                           milbemycin oxime, praziquantel
26208                                                                                    dinotefuran, permethrin, pyriproxyfen
26211                                                                                           milbemycin oxime, praziquantel
26212                                                                                    dinotefuran, permethrin, pyriproxyfen
26214                                                                                           milbemycin oxime, praziquantel
26215                                                                                    dinotefuran, permethrin, pyriproxyfen
26227                                                                                                                 tramadol
26229                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26258                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26265                                                                               dextromethorphan hydrobromide, guaifenesin
26278                                                                               dimethyl sulfoxide, fluocinolone acetonide
26279                                                                                               milbemycin oxime, spinosad
26280                                                                                    dinotefuran, permethrin, pyriproxyfen
26281                                                                                                               afoxolaner
26282                                                                               ivermectin, praziquantel, pyrantel pamoate
26287                                                                               ivermectin, praziquantel, pyrantel pamoate
26295                                                                                                               afoxolaner
26300                                                                               ivermectin, praziquantel, pyrantel pamoate
26307                                                                                                            metronidazole
26315                                                                                                         milbemycin oxime
26336                                                                                       chlorhexidine gluconate, ophytrium
26337                                                                                                        hypochlorous acid
26355                                                                                                  chlorhexidine gluconate
26375                                                                                              lufenuron, milbemycin oxime
26380                                                                             florfenicol, mometasone furoate, terbinafine
26386                                                                                             ivermectin, pyrantel pamoate
26387                                                                                                               fluralaner
26391                                                                                                               lokivetmab
26393                                                                                        betamethasone, gentamicin sulfate
26395                                                                                               milbemycin oxime, spinosad
26399                                                                                               milbemycin oxime, spinosad
26400                                                                                               milbemycin oxime, spinosad
26401                                                                                               milbemycin oxime, spinosad
26433                                                                                        betamethasone, gentamicin sulfate
26454                                                                                   joint supplement (glucosamine hcl/msm)
26464                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26471                                                                                             ivermectin, pyrantel pamoate
26473                                                                                                               afoxolaner
26475                                                                                             ivermectin, pyrantel pamoate
26476                                                                                                               afoxolaner
26488                                                                                                               afoxolaner
26489                                                                                              lufenuron, milbemycin oxime
26490                                                                                              lufenuron, milbemycin oxime
26502                                                                                                  ketoconazole, tris-edta
26505                                                                                         propylene glycol, salicylic acid
26517                                                                                             ivermectin, pyrantel pamoate
26518                                                                                                 fipronil, (s)-methoprene
26519                                                                                             ivermectin, pyrantel pamoate
26520                                                                                                               ivermectin
26521                                                                                                               ivermectin
26522                                                                                                               ivermectin
26534                                                                                        trimeprazine tartrate, prednisone
26543                                                                                             ivermectin, pyrantel pamoate
26544                                                                                               imidacloprid, pyriproxyfen
26546                                                                                             ivermectin, pyrantel pamoate
26551                                                                                                         milbemycin oxime
26553                                                                                                         milbemycin oxime
26568                                                                                                         milbemycin oxime
26574                                                                                                         milbemycin oxime
26583                                                                                            allergy immunotherapy - drops
26590                                                                                             ivermectin, pyrantel pamoate
26591                                                                                             ivermectin, pyrantel pamoate
26592                                                                                                               fluralaner
26610                                                                             dexamethasone, neomycin sulfate, polymyxin b
26611                                                                                             ivermectin, pyrantel pamoate
26615                                                                                             ivermectin, pyrantel pamoate
26629                                                                                                                 fipronil
26631                                                                                             ivermectin, pyrantel pamoate
26637                                                                                                 fipronil, (s)-methoprene
26638                                                                                             ivermectin, pyrantel pamoate
26643                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26644                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
26645                                                                                                 fipronil, (s)-methoprene
26647                                                                                                 fipronil, (s)-methoprene
26650                                                                                              lufenuron, milbemycin oxime
26651                                                                                              lufenuron, milbemycin oxime
26655                                                                                               milbemycin oxime, spinosad
26662                                                                                             ivermectin, pyrantel pamoate
26663                                                                                                               afoxolaner
26668                                                                                                 imidacloprid, permethrin
26669                                                                                               imidacloprid, pyriproxyfen
26670                                                                                                 flumethrin, imidacloprid
26675                                                                                                     cefpodoxime proxetil
26676                                                                                                 fipronil, (s)-methoprene
26677                                                                                             ivermectin, pyrantel pamoate
26694                                                                                       amoxicillin, clavulanate potassium
26720                                                                                        trimeprazine tartrate, prednisone
26721                                                                                              lufenuron, milbemycin oxime
26722                                                                                              lufenuron, milbemycin oxime
26723                                                                                              lufenuron, milbemycin oxime
26724                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
26726                                                                                              lufenuron, milbemycin oxime
26734                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26735                                                                                               milbemycin oxime, spinosad
26736                                                                                             ivermectin, pyrantel pamoate
26738                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26740                                                                                           milbemycin oxime, praziquantel
26742                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26744                                                                                                         milbemycin oxime
26745                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26747                                                                                                unspecified otic ear pack
26749                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
26750                                                                                             ivermectin, pyrantel pamoate
26760                                                                                             ivermectin, pyrantel pamoate
26769                                                                                                         milbemycin oxime
26780                                                                                                         milbemycin oxime
26803                                                                          betamethasone, clotrimazole, gentamicin sulfate
26823                                                                                                                meloxicam
26825                                                                          betamethasone, clotrimazole, gentamicin sulfate
26827                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
26830                                                                                                              clindamycin
26831                                                                                                       maropitant citrate
26833                                                                                                         pyrantel pamoate
26837                                                                                                                probiotic
26839                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
26841                                                                                       fipronil, permethrin, pyriproxyfen
26842                                                                                             ivermectin, pyrantel pamoate
26843                                                                                                                probiotic
26844                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
26846                                                                                             ivermectin, pyrantel pamoate
26847                                                                                                 fipronil, (s)-methoprene
26848                                                                                                                probiotic
26849                                                                                             ivermectin, pyrantel pamoate
26850                                                                                                 fipronil, (s)-methoprene
26851                                                                                                                probiotic
26852                                                                                             ivermectin, pyrantel pamoate
26853                                                                                                               afoxolaner
26861                                                                               ivermectin, praziquantel, pyrantel pamoate
26862                                                                                                 fipronil, (s)-methoprene
26863                                                                               ivermectin, praziquantel, pyrantel pamoate
26865                                                                                               imidacloprid, pyriproxyfen
26867                                                                                               imidacloprid, pyriproxyfen
26868                                                                                                         milbemycin oxime
26869                                                                                           milbemycin oxime, praziquantel
26870                                                                                               imidacloprid, pyriproxyfen
26871                                                                           mometasone furoate, orbifloxacin, posaconazole
26872                                                                                          ear cleaner (epi-otic advanced)
26905                                                                                          ear cleaner (epi-otic advanced)
26926                                                                                              lufenuron, milbemycin oxime
26930                                                                                              lufenuron, milbemycin oxime
26931                                                                                    dinotefuran, permethrin, pyriproxyfen
26932                                                                                              lufenuron, milbemycin oxime
26944                                                                                    dinotefuran, permethrin, pyriproxyfen
26948                                                                                    dinotefuran, permethrin, pyriproxyfen
26972                                                                                              lufenuron, milbemycin oxime
26974                                                                                                   unspecified supplement
26975                                                                                             ivermectin, pyrantel pamoate
26976                                                                                                                probiotic
26977                                                                                              lufenuron, milbemycin oxime
26978                                                                                 febantel, praziquantel, pyrantel pamoate
26979                                                                                              lufenuron, milbemycin oxime
26980                                                                                              lufenuron, milbemycin oxime
26981                                                                                              lufenuron, milbemycin oxime
26983                                                                                                                probiotic
26984                                                                                                               fluralaner
26986                                                                                                               fluralaner
26988                                                                                                         milbemycin oxime
26990                                                                                                         milbemycin oxime
26992                                                                                                         milbemycin oxime
27020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
27021                                                                                                               tobramycin
27022                                                                                                                ofloxacin
27030                                                                                                         milbemycin oxime
27047                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27058                                                                                        betamethasone, gentamicin sulfate
27062                                                                                                               grapiprant
27063                                                                                                   unspecified medication
27065                                                                                             ivermectin, pyrantel pamoate
27082                                                                                              lufenuron, milbemycin oxime
27092                                                                                                             fenbendazole
27095                                                                                                            ciprofloxacin
27100                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27117                                                                                                                mupirocin
27118                                                                                        betamethasone, gentamicin sulfate
27124                                                                                                                probiotic
27128                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27134                                                                             florfenicol, mometasone furoate, terbinafine
27136                                                                                                         milbemycin oxime
27140                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27158                                                                          betamethasone, clotrimazole, gentamicin sulfate
27170                                                                                              lufenuron, milbemycin oxime
27172                                                                                                 joint supplement (other)
27173                                                                                                                  omega 3
27174                                                                                              lufenuron, milbemycin oxime
27203                                                                                             ivermectin, pyrantel pamoate
27212                                                                                        betamethasone, gentamicin sulfate
27213                                                                               ivermectin, praziquantel, pyrantel pamoate
27214                                                                                                             deltamethrin
27217                                                                                        betamethasone, gentamicin sulfate
27219                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27220                                                                                                 flumethrin, imidacloprid
27222                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27223                                                                                        betamethasone, gentamicin sulfate
27224                                                                                              phytosphingosine, pramoxine
27226                                                                                                 flumethrin, imidacloprid
27228                                                                                                 flumethrin, imidacloprid
27229                                                                                           milbemycin oxime, praziquantel
27231                                                                                                               afoxolaner
27232                                                                                              lufenuron, milbemycin oxime
27247                                                                                              lufenuron, milbemycin oxime
27257                                                                                                 flumethrin, imidacloprid
27258                                                                                             ivermectin, pyrantel pamoate
27262                                                                                                               tobramycin
27265                                                                                             ivermectin, pyrantel pamoate
27268                                                                                                               tobramycin
27270                                                                                                 flumethrin, imidacloprid
27273                                                                                             ivermectin, pyrantel pamoate
27274                                                                                                               afoxolaner
27275                                                                                               imidacloprid, pyriproxyfen
27280                                                                                                               fluralaner
27281                                                                                             ivermectin, pyrantel pamoate
27282                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27285                                                                                             ivermectin, pyrantel pamoate
27306                                                                                             ivermectin, pyrantel pamoate
27309                                                                                                               fluralaner
27311                                                                                             ivermectin, pyrantel pamoate
27315                                                                                             ivermectin, pyrantel pamoate
27322                                                                                                                pramoxine
27333                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27348                                                                                                             imidacloprid
27349                                                                                             ivermectin, pyrantel pamoate
27350                                                                                               imidacloprid, pyriproxyfen
27358                                                                                              lufenuron, milbemycin oxime
27360                                                                                              lufenuron, milbemycin oxime
27361                                                                                              lufenuron, milbemycin oxime
27364                                                                                              lufenuron, milbemycin oxime
27368                                                                                              lufenuron, milbemycin oxime
27384                                                                                           milbemycin oxime, praziquantel
27407                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27413                                                                                                                vitamin b
27414                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27421                                                                                               imidacloprid, pyriproxyfen
27422                                                                                             ivermectin, pyrantel pamoate
27423                                                                                             ivermectin, pyrantel pamoate
27425                                                                                                  chlorhexidine gluconate
27427                                                                                                  chlorhexidine gluconate
27431                                                                               toothpaste/dental health solution or chews
27432                                                                                                                meloxicam
27434                                                                                    dinotefuran, permethrin, pyriproxyfen
27445                                                                                               imidacloprid, pyriproxyfen
27446                                                                                                 imidacloprid, permethrin
27447                                                                                                                probiotic
27459                                                                                               milbemycin oxime, spinosad
27465                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
27474                                                                                             ivermectin, pyrantel pamoate
27481                                                                                             ivermectin, pyrantel pamoate
27492                                                                                        trimeprazine tartrate, prednisone
27494                                                                                                     prednisolone acetate
27500                                                                 dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
27501                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
27502                                                                                                               ivermectin
27506                                                                                                               ivermectin
27507                                                                                       fipronil, permethrin, pyriproxyfen
27511                                                                                                               ivermectin
27512                                                                                                 fipronil, (s)-methoprene
27523                                                                                             ivermectin, pyrantel pamoate
27529                                                                                                               ivermectin
27589                                                                                               milbemycin oxime, spinosad
27594                                                                                               milbemycin oxime, spinosad
27596                                                                                               milbemycin oxime, spinosad
27598                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
27620                                                                                                               fluralaner
27640                                                                                             ivermectin, pyrantel pamoate
27646                                                                                                                mupirocin
27659                                                                                                                mupirocin
27674                                                                                                     digestive supplement
27697                                                                                                                mupirocin
27699                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27700                                                                                             ivermectin, pyrantel pamoate
27701                                                                                                 fipronil, (s)-methoprene
27704                                                                                             ivermectin, pyrantel pamoate
27710                                                                                                 fipronil, (s)-methoprene
27713                                                                                       amoxicillin, clavulanate potassium
27714                                                                                                 fipronil, (s)-methoprene
27715                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27722                                                                                                               selamectin
27736                                                                                                               lokivetmab
27745                                                                                             ivermectin, pyrantel pamoate
27747                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
27748                                                                               ivermectin, praziquantel, pyrantel pamoate
27750                                                                                             ivermectin, pyrantel pamoate
27769                                                                                             ivermectin, pyrantel pamoate
27770                                                                                              lufenuron, milbemycin oxime
27772                                                                                              lufenuron, milbemycin oxime
27776                                                                                                       maropitant citrate
27791                                                                               ivermectin, praziquantel, pyrantel pamoate
27794                                                                                             ivermectin, pyrantel pamoate
27802                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27824                                                                                             ivermectin, pyrantel pamoate
27826                                                                               ivermectin, praziquantel, pyrantel pamoate
27828                                                                                             ivermectin, pyrantel pamoate
27833                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
27834                                                                                                                  omega 3
27836                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
27878                                                                                                 flumethrin, imidacloprid
27880                                                                                                             multivitamin
27886                                                                                              lufenuron, milbemycin oxime
27895                                                                                                               moxidectin
27896                                                                                                               afoxolaner
27897                                                                                                               moxidectin
27898                                                                                                               afoxolaner
27899                                                                             dexamethasone, neomycin sulfate, polymyxin b
27910                                                                                              lufenuron, milbemycin oxime
27913                                                                                              lufenuron, milbemycin oxime
27917                                                                                              lufenuron, milbemycin oxime
27921                                                                                              lufenuron, milbemycin oxime
27922                                                                                              lufenuron, milbemycin oxime
27923                                                                                              lufenuron, milbemycin oxime
27927                                                                                                   unspecified medication
27929                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
27939                                                                                                 imidacloprid, permethrin
27940                                                                                              lufenuron, milbemycin oxime
27941                                                                           mometasone furoate, orbifloxacin, posaconazole
27942                                                                                                               cephalexin
27954                                                                                    dinotefuran, permethrin, pyriproxyfen
27957                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27958                                                                                       amoxicillin, clavulanate potassium
27959                                                                                                                 tramadol
27961                                                                                   fipronil, pyriproxyfen, (s)-methoprene
27962                                                                                                 fipronil, (s)-methoprene
27973                                                                                                  ketoconazole, tris-edta
27974                                                                                       chlorhexidine gluconate, ophytrium
27981                                                                                               imidacloprid, pyriproxyfen
27982                                                                                                               ivermectin
27992                                                                                      allergy immunotherapy - unspecified
27999                                                                                               imidacloprid, pyriproxyfen
28000                                                                                                               ivermectin
28008                                                                                                                probiotic
28010                                                                                                 fipronil, (s)-methoprene
28014                                                                                               imidacloprid, pyriproxyfen
28015                                                                                                         liver supplement
28016                                                                                             ivermectin, pyrantel pamoate
28018                                                                                             ivermectin, pyrantel pamoate
28023                                                                                             ivermectin, pyrantel pamoate
28024                                                                                                               afoxolaner
28025                                                                                                                probiotic
28029                                                                                                               ivermectin
28040                                                                                             ivermectin, pyrantel pamoate
28045                                                                                             ivermectin, pyrantel pamoate
28046                                                                                                              doxorubicin
28047                                                                                                              vincristine
28048                                                                                             ivermectin, pyrantel pamoate
28049                                                                                             ivermectin, pyrantel pamoate
28087                                                                                                         milbemycin oxime
28088                                                                                                               fluralaner
28090                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28094                                                                               dimethyl sulfoxide, fluocinolone acetonide
28096                                                                                                         tylosin tartrate
28098                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28100                                                                                                               fluralaner
28101                                                                                lufenuron, milbemycin oxime, praziquantel
28102                                                                                           milbemycin oxime, praziquantel
28103                                                                                                               fluralaner
28104                                                                                                               fluralaner
28105                                                                                           milbemycin oxime, praziquantel
28106                                                                                           milbemycin oxime, praziquantel
28108                                                                                                               fluralaner
28109                                                                                           milbemycin oxime, praziquantel
28116                                                                                                                probiotic
28119                                                                                              lufenuron, milbemycin oxime
28120                                                                                              lufenuron, milbemycin oxime
28128                                                                                              lufenuron, milbemycin oxime
28130                                                                                             ivermectin, pyrantel pamoate
28134                                                                                             ivermectin, pyrantel pamoate
28135                                                                                             ivermectin, pyrantel pamoate
28137                                                                               ivermectin, praziquantel, pyrantel pamoate
28138                                                                                                                vitamin d
28144                                                                                                               ivermectin
28154                                                                                                 fipronil, (s)-methoprene
28155                                                                                             ivermectin, pyrantel pamoate
28158                                                                                                 flumethrin, imidacloprid
28162                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28163                                                                                                 flumethrin, imidacloprid
28164                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28165                                                                                                                  omega 3
28166                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28167                                                                                                                  omega 3
28168                                                                                                               tobramycin
28174                                                                             dexamethasone, neomycin sulfate, polymyxin b
28176                                                                             dexamethasone, neomycin sulfate, polymyxin b
28246                                                                                        trimeprazine tartrate, prednisone
28260                                                                                                            dexamethasone
28261                                                                                             ivermectin, pyrantel pamoate
28263                                                                                                               fluralaner
28264                                                                                             ivermectin, pyrantel pamoate
28269                                                                                             ivermectin, pyrantel pamoate
28277                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
28279                                                                                       chlorhexidine gluconate, ophytrium
28307                                                                                        trimeprazine tartrate, prednisone
28309                                                                                               milbemycin oxime, spinosad
28311                                                                                              lufenuron, milbemycin oxime
28316                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
28332                                                                                      ear cleaner (zymox), hydrocortisone
28333                                                                                      ear cleaner (zymox), hydrocortisone
28371                                                                                                                probiotic
28375                                                                                                               fluralaner
28390                                                                          betamethasone, clotrimazole, gentamicin sulfate
28392                                                                                                               afoxolaner
28396                                                                                           praziquantel, pyrantel pamoate
28397                                                                                              lufenuron, milbemycin oxime
28398                                                                                                               fluralaner
28399                                                                                           milbemycin oxime, praziquantel
28400                                                                                                               fluralaner
28401                                                                                           milbemycin oxime, praziquantel
28404                                                                                               milbemycin oxime, spinosad
28407                                                                                               milbemycin oxime, spinosad
28425                                                                                                             enrofloxacin
28427                                                                                                            dexamethasone
28437                                                                                              lufenuron, milbemycin oxime
28448                                                                                              lufenuron, milbemycin oxime
28449                                                                                               imidacloprid, pyriproxyfen
28453                                                                                                               ivermectin
28484                                                                                      ear cleaner (zymox), hydrocortisone
28486                                                                                        betamethasone, gentamicin sulfate
28505                                                                                                                probiotic
28507                                                                                                       miconazole nitrate
28508                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28516                                                                                lufenuron, milbemycin oxime, praziquantel
28517                                                                                                 fipronil, (s)-methoprene
28518                                                                                              lufenuron, milbemycin oxime
28519                                                                                             ivermectin, pyrantel pamoate
28520                                                                                                 fipronil, (s)-methoprene
28528                                                                                              lufenuron, milbemycin oxime
28531                                                                                                                probiotic
28533                                                                                              chloroxylenol, ketoconazole
28534                                                                                              lufenuron, milbemycin oxime
28535                                                                                                               afoxolaner
28536                                                                                                 fipronil, (s)-methoprene
28538                                                                                                                probiotic
28545                                                                                             ivermectin, pyrantel pamoate
28549                                                                                                               ivermectin
28552                                                                                                 imidacloprid, permethrin
28553                                                                                                               fluralaner
28554                                                                                                               ivermectin
28556                                                                                                               lokivetmab
28557                                                                                                               fluralaner
28571                                                                                             ivermectin, pyrantel pamoate
28572                                                                                                 flumethrin, imidacloprid
28573                                                                                             ivermectin, pyrantel pamoate
28574                                                                                                 flumethrin, imidacloprid
28576                                                                               dextromethorphan hydrobromide, guaifenesin
28577                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28580                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
28582                                                                                             ivermectin, pyrantel pamoate
28583                                                                                                 flumethrin, imidacloprid
28590                                                                                       joint supplement (glucosamine hcl)
28601                                                                                               imidacloprid, pyriproxyfen
28602                                                                                              lufenuron, milbemycin oxime
28605                                                                                                   unspecified medication
28610                                                                                           praziquantel, pyrantel pamoate
28621                                                                                               imidacloprid, pyriproxyfen
28624                                                                                                                meloxicam
28660                                                                                        betamethasone, gentamicin sulfate
28668                                                                                             ivermectin, pyrantel pamoate
28673                                                                          betamethasone, clotrimazole, gentamicin sulfate
28674                                                                                             ivermectin, pyrantel pamoate
28675                                                                                                 fipronil, (s)-methoprene
28685                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
28686                                                                                                                probiotic
28687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
28693                                                                                              lufenuron, milbemycin oxime
28694                                                                                                         milbemycin oxime
28696                                                                                              lufenuron, milbemycin oxime
28710                                                                                                 imidacloprid, moxidectin
28714                                                                          betamethasone, clotrimazole, gentamicin sulfate
28718                                                                                                               wind toxin
28719                                                                                                     long dan xie gan wan
28723                                                                                                               selamectin
28726                                                                                               milbemycin oxime, spinosad
28727                                                                          betamethasone, clotrimazole, gentamicin sulfate
28730                                                                                               milbemycin oxime, spinosad
28731                                                                          betamethasone, clotrimazole, gentamicin sulfate
28735                                                                                                         milbemycin oxime
28736                                                                                                                lotilaner
28750                                                                                                                   arnica
28751                                                                                                                vitamin b
28772                                                                                                                  omega 3
28773                                                                                                              di tan tang
28780                                                                                             ivermectin, pyrantel pamoate
28806                                                                                                 fipronil, (s)-methoprene
28809                                                                                             ivermectin, pyrantel pamoate
28819                                                                           dexamethasone, neomycin sulfate, thiabendazole
28826                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
28829                                                                                                                mupirocin
28855                                                                                                             fenbendazole
28873                                                                                                 fipronil, (s)-methoprene
28874                                                                                                               ivermectin
28882                                                                                                               afoxolaner
28883                                                                                                               afoxolaner
28884                                                                                                               afoxolaner
28888                                                                                                               afoxolaner
28897                                                                               ivermectin, praziquantel, pyrantel pamoate
28899                                                                                             ivermectin, pyrantel pamoate
28904                                                                                             ivermectin, pyrantel pamoate
28907                                                                                                               afoxolaner
28934                                                                                                               afoxolaner
28939                                                                                              lufenuron, milbemycin oxime
28940                                                                                                 homatropine, hydrocodone
28941                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
28946                                                                                         phytosphingosine, salicylic acid
28979                                                                                              lufenuron, milbemycin oxime
28980                                                                                       fipronil, permethrin, pyriproxyfen
28982                                                                                              lufenuron, milbemycin oxime
28986                                                                                             ivermectin, pyrantel pamoate
28987                                                                                                 fipronil, (s)-methoprene
29000                                                                                                               selamectin
29007                                                                                                 fipronil, (s)-methoprene
29015                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29022                                                                               dextromethorphan hydrobromide, guaifenesin
29023                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
29036                                                                             dexamethasone, neomycin sulfate, polymyxin b
29039                                                                                                                  taurine
29040                                                                                                                  taurine
29043                                                                                                                  taurine
29050                                                                                        betamethasone, gentamicin sulfate
29053                                                                                                           hydrocortisone
29056                                                                                               milbemycin oxime, spinosad
29060                                                                                                               benzocaine
29064                                                                                               milbemycin oxime, spinosad
29067                                                                                             ivermectin, pyrantel pamoate
29069                                                                                             ivermectin, pyrantel pamoate
29070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29071                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29072                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29073                                                                                                         atropine sulfate
29075                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29078                                                                                                     fipronil, permethrin
29079                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29081                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29083                                                                                                                probiotic
29086                                                                                               milbemycin oxime, spinosad
29087                                                                                               milbemycin oxime, spinosad
29091                                                                                               milbemycin oxime, spinosad
29095                                                                                               milbemycin oxime, spinosad
29096                                                                                                               afoxolaner
29098                                                                                                  ketoconazole, tris-edta
29099                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
29103                                                                                                                 fentanyl
29104                                                                                                                 ketamine
29108                                                                                        betamethasone, gentamicin sulfate
29136                                                                                                         milbemycin oxime
29139                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29143                                                                                             ivermectin, pyrantel pamoate
29151                                                                                                               selamectin
29153                                                                                                unspecified otic ear pack
29161                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29166                                                                                                               indoxacarb
29184                                                                                              lufenuron, milbemycin oxime
29196                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29197                                                                                                          cbd or hemp oil
29220                                                                                                                mupirocin
29232                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
29234                                                                                                  chlorhexidine gluconate
29235                                                                                                               penicillin
29244                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
29245                                                                                                                  omega 3
29248                                                                                                            dexamethasone
29283                                                                                                               lokivetmab
29285                                                                           dexamethasone, neomycin sulfate, thiabendazole
29291                                                                                       chlorhexidine gluconate, tris-edta
29298                                                                                              lufenuron, milbemycin oxime
29313                                                                                                                ketorolac
29315                                                                                             ivermectin, pyrantel pamoate
29321                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29324                                                                                               imidacloprid, pyriproxyfen
29327                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
29328                                                                                             ivermectin, pyrantel pamoate
29340                                                                                                               benzocaine
29342                                                                                                      ear cleaner (zymox)
29374                                                                                              lufenuron, milbemycin oxime
29375                                                                                                 imidacloprid, permethrin
29376                                                                                              lufenuron, milbemycin oxime
29377                                                                                               imidacloprid, pyriproxyfen
29378                                                                                              lufenuron, milbemycin oxime
29379                                                                                              lufenuron, milbemycin oxime
29380                                                                                              lufenuron, milbemycin oxime
29381                                                                                              lufenuron, milbemycin oxime
29382                                                                                              lufenuron, milbemycin oxime
29383                                                                                               imidacloprid, pyriproxyfen
29395                                                                                               acetaminophen, hydrocodone
29404                                                                                                               prednisone
29405                                                                                                              doxycycline
29406                                                                                                                 tramadol
29428                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
29438                                                                                                               isoflurane
29446                                                                                                               benzocaine
29447                                                                                              phytosphingosine, pramoxine
29453                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29469                                                                                                               ivermectin
29470                                                                                                 flumethrin, imidacloprid
29471                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29479                                                                                              lufenuron, milbemycin oxime
29480                                                                                              lufenuron, milbemycin oxime
29481                                                                                              lufenuron, milbemycin oxime
29482                                                                                              lufenuron, milbemycin oxime
29483                                                                                                               fluralaner
29490                                                                                              lufenuron, milbemycin oxime
29500                                                                                                 fipronil, (s)-methoprene
29501                                                                                             ivermectin, pyrantel pamoate
29502                                                                                                         milbemycin oxime
29504                                                                                                         milbemycin oxime
29505                                                                                   fipronil, pyriproxyfen, (s)-methoprene
29511                                                                                                         milbemycin oxime
29525                                                                                              lufenuron, milbemycin oxime
29526                                                                                                   cyphenothrin, fipronil
29531                                                                                              lufenuron, milbemycin oxime
29532                                                                                                                 fipronil
29533                                                                                                         milbemycin oxime
29534                                                                                               imidacloprid, pyriproxyfen
29535                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29536                                                                                                         milbemycin oxime
29537                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
29538                                                                                                         milbemycin oxime
29539                                                                                                 imidacloprid, permethrin
29540                                                                                                         milbemycin oxime
29567                                                                                             ivermectin, pyrantel pamoate
29568                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29572                                                                                    dinotefuran, permethrin, pyriproxyfen
29573                                                                                             ivermectin, pyrantel pamoate
29574                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
29575                                                                                                     cefpodoxime proxetil
29580                                                                                             ivermectin, pyrantel pamoate
29588                                                                                             ivermectin, pyrantel pamoate
29608                                                                                                 fipronil, (s)-methoprene
29617                                                                                                               afoxolaner
29633                                                                               ivermectin, praziquantel, pyrantel pamoate
29662                                                                                                                  omega 3
29666                                                                                                             multivitamin
29669                                                                                                                probiotic
29670                                                                                                 skin and coat supplement
29678                                                                                       amoxicillin, clavulanate potassium
29700                                                                                                             imidacloprid
29705                                                                                               imidacloprid, pyriproxyfen
29707                                                                                               imidacloprid, pyriproxyfen
29709                                                                                               imidacloprid, pyriproxyfen
29715                                                                                                 flumethrin, imidacloprid
29716                                                                                                 flumethrin, imidacloprid
29719                                                                                                 flumethrin, imidacloprid
29720                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
29722                                                                                                 flumethrin, imidacloprid
29724                                                                                                 flumethrin, imidacloprid
29726                                                                                                 flumethrin, imidacloprid
29734                                                                                              lufenuron, milbemycin oxime
29736                                                                                lufenuron, milbemycin oxime, praziquantel
29744                                                                                              lufenuron, milbemycin oxime
29749                                                                                        trimeprazine tartrate, prednisone
29753                                                                                             ivermectin, pyrantel pamoate
29764                                                                                                               moxidectin
29765                                                                                                               fluralaner
29767                                                                                                         milbemycin oxime
29770                                                                                             ivermectin, pyrantel pamoate
29794                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
29798                                                                                             ivermectin, pyrantel pamoate
29799                                                                                             ivermectin, pyrantel pamoate
29800                                                                                                               afoxolaner
29801                                                                                                  chlorhexidine gluconate
29802                                                                                             ivermectin, pyrantel pamoate
29803                                                                                                               afoxolaner
29822                                                                                             ivermectin, pyrantel pamoate
29823                                                                                                               afoxolaner
29824                                                                                             ivermectin, pyrantel pamoate
29825                                                                                                               afoxolaner
29827                                                                           mometasone furoate, orbifloxacin, posaconazole
29829                                                                                        betamethasone, gentamicin sulfate
29831                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29838                                                                                   joint supplement (glucosamine hcl/msm)
29839                                                                                                 joint supplement (other)
29840                                                                                                           wei qi booster
29847                                  betamethasone, burow's solution, gentamicin sulfate, hydrocortisone, miconazole nitrate
29858                                                                                                               ivermectin
29862                                                                                               milbemycin oxime, spinosad
29865                                                                                               milbemycin oxime, spinosad
29880                                                                                                               ivermectin
29882                                                                                             ivermectin, pyrantel pamoate
29883                                                                                                               afoxolaner
29940                                                                               ivermectin, praziquantel, pyrantel pamoate
29941                                                                               ivermectin, praziquantel, pyrantel pamoate
29948                                                                             florfenicol, mometasone furoate, terbinafine
29954                                                                                                               ivermectin
29955                                                                                               imidacloprid, pyriproxyfen
29956                                                                                                               ivermectin
29957                                                                                                 imidacloprid, permethrin
29963                                                                                               imidacloprid, pyriproxyfen
29964                                                                                             ivermectin, pyrantel pamoate
29966                                                                                        betamethasone, gentamicin sulfate
29969                                                                                               imidacloprid, pyriproxyfen
29970                                                                                             ivermectin, pyrantel pamoate
29978                                                                                              lufenuron, milbemycin oxime
29990                                                                                               imidacloprid, pyriproxyfen
29991                                                                                              lufenuron, milbemycin oxime
29993                                                                                              lufenuron, milbemycin oxime
30001                                                                                       amoxicillin, clavulanate potassium
30048                                                                                                         pyrantel pamoate
30070                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30075                                                                                                 fipronil, (s)-methoprene
30076                                                                                                               ivermectin
30081                                                                                                               ivermectin
30082                                                                                                 fipronil, (s)-methoprene
30083                                                                                             ivermectin, pyrantel pamoate
30099                                                                                              lufenuron, milbemycin oxime
30104                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30105                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30131                                                                                                                  omega 3
30132                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30138                                                                                             ivermectin, pyrantel pamoate
30142                                                                                               milbemycin oxime, spinosad
30143                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
30162                                                                                                   unspecified medication
30165                                                                                               milbemycin oxime, spinosad
30166                                                                                              lufenuron, milbemycin oxime
30169                                                                                                         tylosin tartrate
30172                                                                                              lufenuron, milbemycin oxime
30174                                                                                              lufenuron, milbemycin oxime
30178                                                                                                         neomycin sulfate
30179                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30185                                                                                             ivermectin, pyrantel pamoate
30191                                                                                               milbemycin oxime, spinosad
30192                                                                                               milbemycin oxime, spinosad
30193                                                                                               milbemycin oxime, spinosad
30198                                                                                                     prednisolone acetate
30211                                                                                              lufenuron, milbemycin oxime
30212                                                                                                               fluralaner
30214                                                                                    dinotefuran, permethrin, pyriproxyfen
30218                                                                                                               fluralaner
30221                                                                                              lufenuron, milbemycin oxime
30239                                                                                              lufenuron, milbemycin oxime
30241                                                                                              lufenuron, milbemycin oxime
30242                                                                                              lufenuron, milbemycin oxime
30246                                                                                                            yunnan baiyao
30263                                                                                                               ivermectin
30264                                                                                       fipronil, permethrin, pyriproxyfen
30268                                                                                                               ivermectin
30269                                                                                       fipronil, permethrin, pyriproxyfen
30270                                                                                                               ivermectin
30274                                                                                             ivermectin, pyrantel pamoate
30277                                                                                             ivermectin, pyrantel pamoate
30286                                                                                             ivermectin, pyrantel pamoate
30298                                                                                              lufenuron, milbemycin oxime
30299                                                                                              lufenuron, milbemycin oxime
30300                                                                                                 fipronil, (s)-methoprene
30310                                                                                              lufenuron, milbemycin oxime
30311                                                                             dexamethasone, neomycin sulfate, polymyxin b
30312                                                                                        betamethasone, gentamicin sulfate
30313                                                                                              lufenuron, milbemycin oxime
30317                                                                                                                mupirocin
30319                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30327                                                                                                               tobramycin
30329                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30337                                                                                        betamethasone, gentamicin sulfate
30338                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
30344                                                                                                               ivermectin
30347                                                                                               milbemycin oxime, spinosad
30351                                                                                                               fluralaner
30352                                                                                             ivermectin, pyrantel pamoate
30355                                                                                                  chlorhexidine gluconate
30357                                                                                        betamethasone, gentamicin sulfate
30360                                                                                                                probiotic
30361                                                                                   joint supplement (glucosamine hcl/msm)
30371                                                                                              lufenuron, milbemycin oxime
30372                                                                                                 flumethrin, imidacloprid
30373                                                                                                         milbemycin oxime
30374                                                                                                               fluralaner
30375                                                                                                 flumethrin, imidacloprid
30376                                                                                              lufenuron, milbemycin oxime
30377                                                                                                            metronidazole
30378                                                                                                   unspecified medication
30385                                                                                                         milbemycin oxime
30387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30388                                                                                                                  omega 3
30389                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30395                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
30396                                                                                                                  omega 3
30404                                                                                                         milbemycin oxime
30405                                                                                                         milbemycin oxime
30406                                                                                                 fipronil, (s)-methoprene
30418                                                                               ivermectin, praziquantel, pyrantel pamoate
30450                                                                             florfenicol, mometasone furoate, terbinafine
30464                                                                          betamethasone, clotrimazole, gentamicin sulfate
30471                                                                                              lufenuron, milbemycin oxime
30479                                                                                                 imidacloprid, permethrin
30480                                                                                             ivermectin, pyrantel pamoate
30483                                                                                               imidacloprid, pyriproxyfen
30484                                                                                               imidacloprid, pyriproxyfen
30485                                                                                        betamethasone, gentamicin sulfate
30492                                                                                              lufenuron, milbemycin oxime
30496                                                                                                             pantoprazole
30515                                                                                              lufenuron, milbemycin oxime
30528                                                                                              lufenuron, milbemycin oxime
30529                                                                                                       miconazole nitrate
30536                                                                                                      ear cleaner (zymox)
30590                                                                                               milbemycin oxime, spinosad
30604                                                                                               milbemycin oxime, spinosad
30623                                                                           dexamethasone, neomycin sulfate, thiabendazole
30644                                                                          betamethasone, clotrimazole, gentamicin sulfate
30685                                                                                                     digestive supplement
30689                                                                                                            yunnan baiyao
30692                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
30701                                                                                                               fluralaner
30702                                                                                              lufenuron, milbemycin oxime
30707                                                                                                               fluralaner
30708                                                                                              lufenuron, milbemycin oxime
30709                                                                                              lufenuron, milbemycin oxime
30710                                                                                                               fluralaner
30713                                                                                                  chlorhexidine gluconate
30714                                                                             dexamethasone, neomycin sulfate, polymyxin b
30717                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
30753                                                                                                         milbemycin oxime
30754                                                                                               imidacloprid, pyriproxyfen
30756                                                                                               imidacloprid, pyriproxyfen
30757                                                                                               imidacloprid, pyriproxyfen
30764                                                                                               milbemycin oxime, spinosad
30768                                                                                             ivermectin, pyrantel pamoate
30769                                                                                               bacitracin, hydrocortisone
30779                                                                                             ivermectin, pyrantel pamoate
30796                                                                                             ivermectin, pyrantel pamoate
30797                                                                                                                sarolaner
30799                                                                                             ivermectin, pyrantel pamoate
30803                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
30813                                                                                             ivermectin, pyrantel pamoate
30817                                                                                                       calming supplement
30819                                                                                    dinotefuran, permethrin, pyriproxyfen
30820                                                                                             ivermectin, pyrantel pamoate
30821                                                                                                            metronidazole
30822                                                                                                              amoxicillin
30823                                                                                                                carvacrol
30824                                                                                                   unspecified medication
30826                                                                                             ivermectin, pyrantel pamoate
30833                                                                                                               fluralaner
30834                                                                                  betamethasone, florfenicol, terbinafine
30840                                                                               dextromethorphan hydrobromide, guaifenesin
30844                                                                                             ivermectin, pyrantel pamoate
30876                                                                                                         pyrantel pamoate
30877                                                                                             ivermectin, pyrantel pamoate
30901                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
30909                                                                               ivermectin, praziquantel, pyrantel pamoate
30917                                                                                        betamethasone, gentamicin sulfate
30920                                                                                       fipronil, permethrin, pyriproxyfen
30936                                                                                                            yunnan baiyao
30943                                                                                lufenuron, milbemycin oxime, praziquantel
30945                                                                                              lufenuron, milbemycin oxime
30947                                                                                              lufenuron, milbemycin oxime
30948                                                                                                               fluralaner
30949                                                                                              lufenuron, milbemycin oxime
30953                                                                                                                probiotic
30963                                                                                                                carprofen
30998                                                                                                 imidacloprid, permethrin
31000                                                                                                 imidacloprid, permethrin
31001                                                                                             ivermectin, pyrantel pamoate
31003                                                                                                               selamectin
31004                                                                                               imidacloprid, pyriproxyfen
31010                                                                                             ivermectin, pyrantel pamoate
31011                                                                                               imidacloprid, pyriproxyfen
31022                                                                                             ivermectin, pyrantel pamoate
31023                                                                                                               fluralaner
31034                                                                                                         milbemycin oxime
31043                                                                                               imidacloprid, pyriproxyfen
31046                                                                                lufenuron, milbemycin oxime, praziquantel
31089                                                                                             ivermectin, pyrantel pamoate
31094                                                                                           milbemycin oxime, praziquantel
31095                                                                                                                carprofen
31096                                                                                           milbemycin oxime, praziquantel
31105                                                                                             ivermectin, pyrantel pamoate
31132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31133                                                                                              lufenuron, milbemycin oxime
31134                                                                                                               afoxolaner
31135                                                                                              lufenuron, milbemycin oxime
31139                                                                                                               afoxolaner
31148                                                                                             ivermectin, pyrantel pamoate
31149                                                                                             ivermectin, pyrantel pamoate
31152                                                                                                               ivermectin
31154                                                                                             ivermectin, pyrantel pamoate
31183                                                                                                               fluralaner
31186                                                                                                     dorzolamide, timolol
31195                                                                                lufenuron, milbemycin oxime, praziquantel
31196                                                                                                                deracoxib
31197                                                                                                                probiotic
31198                                                                                                               alprazolam
31203                                                                                                                probiotic
31209                                                                                                               gabapentin
31228                                                                                                               isoflurane
31232                                                                                                               isoflurane
31234                                                                                                 fipronil, (s)-methoprene
31247                                                                                                         milbemycin oxime
31248                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31249                                                                                                         milbemycin oxime
31250                                                                                                 fipronil, (s)-methoprene
31260                                                                                                         milbemycin oxime
31263                                                                                              lufenuron, milbemycin oxime
31265                                                                                    dinotefuran, permethrin, pyriproxyfen
31268                                                                                                              sevoflurane
31297                                                                                                               selamectin
31299                                                                                                               selamectin
31300                                                                                                               ivermectin
31301                                                                                                               fluralaner
31303                                                                                                               selamectin
31307                                                                                               imidacloprid, pyriproxyfen
31308                                                                                                         milbemycin oxime
31309                                                                                                               selamectin
31317                                                                                              rx diet - digestive support
31322                                                                                               milbemycin oxime, spinosad
31328                                                                                                               afoxolaner
31350                                                                           mometasone furoate, orbifloxacin, posaconazole
31353                                                                                                               prednisone
31356                                                                                                  ketoconazole, tris-edta
31357                                                                                             ivermectin, pyrantel pamoate
31358                                                                                                               afoxolaner
31359                                                                                   joint supplement (glucosamine hcl/msm)
31360                                                                                                                  omega 3
31361                                                                                             ivermectin, pyrantel pamoate
31365                                                                                                         milbemycin oxime
31366                                                                                                               afoxolaner
31367                                                                                                              robenacoxib
31369                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
31370                                                                                  betamethasone, florfenicol, terbinafine
31371                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31373                                                                                              lufenuron, milbemycin oxime
31374                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31375                                                                                              lufenuron, milbemycin oxime
31383                                                                                              lufenuron, milbemycin oxime
31384                                                                                               milbemycin oxime, spinosad
31385                                                                                                               afoxolaner
31386                                                                                             ivermectin, pyrantel pamoate
31408                                                                                                               ivermectin
31423                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31434                                                                                                  ketoconazole, tris-edta
31437                                                                                        trimeprazine tartrate, prednisone
31438                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31439                                                                          betamethasone, clotrimazole, gentamicin sulfate
31440                                                                                             ivermectin, pyrantel pamoate
31441                                                                                             ivermectin, pyrantel pamoate
31446                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31447                                                                                         phytosphingosine, salicylic acid
31449                                                                                             ivermectin, pyrantel pamoate
31450                                                                                                               afoxolaner
31452                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31457                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31463                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31471                                                                                                               ivermectin
31502                                                                                                               ivermectin
31503                                                                                                               afoxolaner
31504                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31506                                                                                                               afoxolaner
31508                                                                                   fipronil, pyriproxyfen, (s)-methoprene
31528                                                                                                               afoxolaner
31529                                                                                             ivermectin, pyrantel pamoate
31531                                                                                                               afoxolaner
31539                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31542                                                                                                 urinary tract supplement
31548                                                                                                               lokivetmab
31551                                                                                                  ketoconazole, tris-edta
31552                                                                                                 fipronil, (s)-methoprene
31553                                                                                                 fipronil, (s)-methoprene
31602                                                                                             ivermectin, pyrantel pamoate
31611                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
31612                                                                     dimethyl sulfoxide, flunixin, fluocinolone acetonide
31616                                                                                                                  omega 3
31617                                                                                                               ivermectin
31618                                                                                                               afoxolaner
31619                                                                                                                  omega 3
31637                                                                                             ivermectin, pyrantel pamoate
31640                                                                                                         phytosphingosine
31643                                                                                             ivermectin, pyrantel pamoate
31644                                                                                                                meloxicam
31645                                                                                                         phytosphingosine
31646                                                                                             ivermectin, pyrantel pamoate
31647                                                                                                               afoxolaner
31653                                                                                             ivermectin, pyrantel pamoate
31655                                                                                                               gabapentin
31656                                                                                                  ketoconazole, tris-edta
31657                                                                                                                meloxicam
31665                                                                                             ivermectin, pyrantel pamoate
31666                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31678                                                                                             ivermectin, pyrantel pamoate
31680                                                                                             ivermectin, pyrantel pamoate
31688                                                                                             ivermectin, pyrantel pamoate
31689                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
31696                                                                                                 fipronil, (s)-methoprene
31707                                                                                             ivermectin, pyrantel pamoate
31713                                                                                             ivermectin, pyrantel pamoate
31716                                                                                              lufenuron, milbemycin oxime
31725                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
31726                                                                                               imidacloprid, pyriproxyfen
31730                                                                                              lufenuron, milbemycin oxime
31731                                                                                               imidacloprid, pyriproxyfen
31734                                                                                              lufenuron, milbemycin oxime
31735                                                                                               imidacloprid, pyriproxyfen
31736                                                                                                                probiotic
31737                                                                                                             fenbendazole
31742                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
31747                                                                                                         milbemycin oxime
31748                                                                                                               gabapentin
31760                                                                                             ivermectin, pyrantel pamoate
31761                                                                                                             fenbendazole
31762                                                                                             ivermectin, pyrantel pamoate
31768                                                                                               milbemycin oxime, spinosad
31769                                                                                             ivermectin, pyrantel pamoate
31771                                                                                             ivermectin, pyrantel pamoate
31773                                                                                             ivermectin, pyrantel pamoate
31774                                                                                        betamethasone, gentamicin sulfate
31777                                                                                                               ivermectin
31780                                                                                              lufenuron, milbemycin oxime
31781                                                                                           milbemycin oxime, praziquantel
31798                                                                                             ivermectin, pyrantel pamoate
31803                                                                                           praziquantel, pyrantel pamoate
31804                                                                                                               afoxolaner
31807                                                                                                 fipronil, (s)-methoprene
31808                                                                                             ivermectin, pyrantel pamoate
31826                                                                                        betamethasone, gentamicin sulfate
31833                                                                                                 urinary tract supplement
31834                                                                                        betamethasone, gentamicin sulfate
31836                                                                                                 urinary tract supplement
31837                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
31840                                                                                              lufenuron, milbemycin oxime
31841                                                                                                                meloxicam
31843                                                                                                             fenbendazole
31844                                                                                              lufenuron, milbemycin oxime
31846                                                                                                 flumethrin, imidacloprid
31847                                                                                              lufenuron, milbemycin oxime
31849                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31850                                                                                    enrofloxacin, ketoconazole, tris-edta
31853                                                                                                 fipronil, (s)-methoprene
31861                                                                                           milbemycin oxime, praziquantel
31864                                                                                                         milbemycin oxime
31866                                                                                                         milbemycin oxime
31868                                                                                              lufenuron, milbemycin oxime
31869                                                                                                         milbemycin oxime
31874                                                                                                         milbemycin oxime
31876                                                                                                      ear cleaner (zymox)
31880                                                                                  transcranial magnetic stimulation (tms)
31888                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
31891                                                                               ivermectin, praziquantel, pyrantel pamoate
31892                                                                                                               afoxolaner
31895                                                                                                         milbemycin oxime
31896                                                                                                               afoxolaner
31898                                                                                                               afoxolaner
31907                                                                                                               fluralaner
31908                                                                                                               ivermectin
31909                                                                                                               ivermectin
31911                                                                                              lufenuron, milbemycin oxime
31916                                                                                              lufenuron, milbemycin oxime
31937                                                                                               milbemycin oxime, spinosad
31938                                                                                              lufenuron, milbemycin oxime
31939                                                                                              lufenuron, milbemycin oxime
31940                                                                                              lufenuron, milbemycin oxime
31941                                                                                              lufenuron, milbemycin oxime
31942                                                                                              lufenuron, milbemycin oxime
31946                                                                                             ivermectin, pyrantel pamoate
31947                                                                                             ivermectin, pyrantel pamoate
31948                                                                                                               fluralaner
31953                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
31954                                                                                                               fluralaner
31955                                                                                             ivermectin, pyrantel pamoate
31968                                                                                             ivermectin, pyrantel pamoate
31985                                                                                                               isoflurane
31990                                                                                              lufenuron, milbemycin oxime
32002                                                                                             ivermectin, pyrantel pamoate
32006                                                                               dextromethorphan hydrobromide, guaifenesin
32015                                                                                                 fipronil, (s)-methoprene
32016                                                                                             ivermectin, pyrantel pamoate
32020                                                                                                               ivermectin
32025                                                                                                                cisapride
32032                                                                                lufenuron, milbemycin oxime, praziquantel
32035                                                                                              lufenuron, milbemycin oxime
32040                                                                                              lufenuron, milbemycin oxime
32046                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32053                                                                                             ivermectin, pyrantel pamoate
32054                                                                                                 fipronil, (s)-methoprene
32055                                                                                                 fipronil, (s)-methoprene
32056                                                                                             ivermectin, pyrantel pamoate
32057                                                                                                               afoxolaner
32058                                                                                             ivermectin, pyrantel pamoate
32074                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32076                                                                                             ivermectin, pyrantel pamoate
32079                                                                                                               afoxolaner
32080                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32084                                                                             dexamethasone, neomycin sulfate, polymyxin b
32095                                                                                                               fluralaner
32097                                                                                                         milbemycin oxime
32098                                                                                           milbemycin oxime, praziquantel
32099                                                                                                               fluralaner
32100                                                                                           milbemycin oxime, praziquantel
32101                                                                                                               fluralaner
32102                                                                                                               fluralaner
32103                                                                                           milbemycin oxime, praziquantel
32105                                                                                           milbemycin oxime, praziquantel
32106                                                                                                               fluralaner
32108                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32114                                                                                                 flumethrin, imidacloprid
32116                                                                                                 flumethrin, imidacloprid
32119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32121                                                                                                               ivermectin
32122                                                                                                               afoxolaner
32123                                                                                                         tylosin tartrate
32128                                                                                                               ivermectin
32129                                                                                                               afoxolaner
32168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32171                                                                                      ear cleaner (zymox), hydrocortisone
32175                                                                                      ear cleaner (zymox), hydrocortisone
32179                                                                                             ivermectin, pyrantel pamoate
32180                                                                                                               afoxolaner
32183                                                                                      ear cleaner (zymox), hydrocortisone
32184                                                                                                         phytosphingosine
32187                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32196                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32222                                                                                                         milbemycin oxime
32233                                                                               ivermectin, praziquantel, pyrantel pamoate
32234                                                                                                               fluralaner
32236                                                                                             ivermectin, pyrantel pamoate
32237                                                                                                               afoxolaner
32266                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32276                                                                                        betamethasone, gentamicin sulfate
32290                                                                                                               isoflurane
32297                                                                                   cyphenothrin, fipronil, (s)-methoprene
32310                                                                                        betamethasone, gentamicin sulfate
32312                                                                                             ivermectin, pyrantel pamoate
32313                                                                                                               fluralaner
32315                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32320                                                                                                               isoflurane
32343                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32358                                                                                        betamethasone, gentamicin sulfate
32359                                                                                                 fipronil, (s)-methoprene
32360                                                                                              lufenuron, milbemycin oxime
32362                                                                                              lufenuron, milbemycin oxime
32363                                                                                                   unspecified medication
32370                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32390                                                                                                               moxidectin
32393                                                                                                               moxidectin
32394                                                                                                               fluralaner
32425                                                                                                 fipronil, (s)-methoprene
32426                                                                                             ivermectin, pyrantel pamoate
32427                                                                                                         milbemycin oxime
32445                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32447                                                                                              lufenuron, milbemycin oxime
32448                                                                                                         milbemycin oxime
32449                                                                                                               afoxolaner
32460                                                                                                               prednisone
32463                                                                                                         milbemycin oxime
32464                                                                                                               fluralaner
32466                                                                                             ivermectin, pyrantel pamoate
32467                                                                                                               fluralaner
32477                                                                                             ivermectin, pyrantel pamoate
32478                                                                                                               fluralaner
32504                                                                                              lufenuron, milbemycin oxime
32505                                                                                               imidacloprid, pyriproxyfen
32507                                                                                                                mupirocin
32509                                                                                              lufenuron, milbemycin oxime
32510                                                                                               imidacloprid, pyriproxyfen
32512                                                                                               imidacloprid, pyriproxyfen
32513                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32520                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32529                                                                                              lufenuron, milbemycin oxime
32530                                                                                              lufenuron, milbemycin oxime
32535                                                                                              lufenuron, milbemycin oxime
32536                                                                                                               fluralaner
32538                                                                          betamethasone, clotrimazole, gentamicin sulfate
32542                                                                          betamethasone, clotrimazole, gentamicin sulfate
32557                                                                                             ivermectin, pyrantel pamoate
32558                                                                                                 fipronil, (s)-methoprene
32561                                                                                             ivermectin, pyrantel pamoate
32562                                                                                               imidacloprid, pyriproxyfen
32575                                                                                       chlorhexidine gluconate, ophytrium
32576                                                                                       joint supplement (glucosamine hcl)
32629                                                                                                             multivitamin
32631                                                                                           milbemycin oxime, praziquantel
32633                                                                                                             multivitamin
32635                                                                                    dinotefuran, permethrin, pyriproxyfen
32642                                                                                              lufenuron, milbemycin oxime
32643                                                                                                         milbemycin oxime
32652                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
32654                                                                                                         pyrantel pamoate
32664                                                                                             ivermectin, pyrantel pamoate
32670                                                                                              lufenuron, milbemycin oxime
32672                                                                                                  chlorhexidine gluconate
32673                                                                                             ivermectin, pyrantel pamoate
32678                                                                                              lufenuron, milbemycin oxime
32680                                                                                              lufenuron, milbemycin oxime
32682                                                                                              lufenuron, milbemycin oxime
32685                                                                                              lufenuron, milbemycin oxime
32694                                                                                        betamethasone, gentamicin sulfate
32698                                                                                                                 spinosad
32726                                                                                                                ketorolac
32737                                                                             dexamethasone, neomycin sulfate, polymyxin b
32739                                                                               ivermectin, praziquantel, pyrantel pamoate
32742                                                                                                         milbemycin oxime
32743                                                                                                                lotilaner
32750                                                                                             ivermectin, pyrantel pamoate
32751                                                                                                               afoxolaner
32767                                                                                        allergy immunotherapy - injection
32769                                                                                                               moxidectin
32777                                                                                                                probiotic
32798                                                                             florfenicol, mometasone furoate, terbinafine
32815                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
32829                                                                                                 fipronil, (s)-methoprene
32841                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
32844                                                                                       amoxicillin, clavulanate potassium
32849                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
32850                                                                                                                trazodone
32856                                                                                                 fipronil, (s)-methoprene
32857                                                                                             ivermectin, pyrantel pamoate
32858                                                                                                 fipronil, (s)-methoprene
32859                                                                                             ivermectin, pyrantel pamoate
32862                                                                                                 fipronil, (s)-methoprene
32863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
32869                                                                                                               fluralaner
32870                                                                                             ivermectin, pyrantel pamoate
32871                                                                                                               lokivetmab
32879                                                                                                                  omega 3
32883                                                                                                               ivermectin
32884                                                                            attapulgite, bismuth subsalicylate, kanamycin
32887                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
32888                                                                                                  ketoconazole, tris-edta
32903                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
32923                                                                                             ivermectin, pyrantel pamoate
32930                                                                                              lufenuron, milbemycin oxime
32937                                                                                                 imidacloprid, permethrin
32938                                                                                             ivermectin, pyrantel pamoate
32940                                                                                                                ophytrium
32942                                                                                             ivermectin, pyrantel pamoate
32943                                                                                                               fluralaner
32944                                                                                                               afoxolaner
32949                                                                                                                ophytrium
32950                                                                                                                  omega 3
32951                                                                                             ivermectin, pyrantel pamoate
32952                                                                                                               afoxolaner
32954                                                                                       amoxicillin, clavulanate potassium
32955                                                                                             ivermectin, pyrantel pamoate
32956                                                                                                               afoxolaner
32964                                                                                    chlorhexidine gluconate, ketoconazole
32965                                                                           dexamethasone, neomycin sulfate, thiabendazole
32999                                                                                              lufenuron, milbemycin oxime
33004                                                                                              lufenuron, milbemycin oxime
33008                                                                                               imidacloprid, pyriproxyfen
33009                                                                                              lufenuron, milbemycin oxime
33010                                                                                              lufenuron, milbemycin oxime
33011                                                                                                               afoxolaner
33015                                                                                                             fenbendazole
33023                                                                                                 fipronil, (s)-methoprene
33043                                                                                             ivermectin, pyrantel pamoate
33047                                                                                       amoxicillin, clavulanate potassium
33066                                                                                                               selamectin
33068                                                                                                               selamectin
33073                                                                                                         pyrantel pamoate
33078                                                                                                               ivermectin
33081                                                                                                         milbemycin oxime
33085                                                                                    dinotefuran, permethrin, pyriproxyfen
33086                                                                                                         milbemycin oxime
33087                                                                                    dinotefuran, permethrin, pyriproxyfen
33088                                                                                                         milbemycin oxime
33089                                                                                    dinotefuran, permethrin, pyriproxyfen
33090                                                                                                         milbemycin oxime
33091                                                                                    dinotefuran, permethrin, pyriproxyfen
33092                                                                                                         milbemycin oxime
33096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33107                                                                                             ivermectin, pyrantel pamoate
33110                                                                                                         milbemycin oxime
33113                                                                                             ivermectin, pyrantel pamoate
33124                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
33126                                                                                        betamethasone, gentamicin sulfate
33128                                                                             florfenicol, mometasone furoate, terbinafine
33132                                                                                                               afoxolaner
33133                                                                                                               ivermectin
33138                                                                                             ivermectin, pyrantel pamoate
33157                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33159                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33166                                                                                                   cyphenothrin, fipronil
33187                                                                                             ivermectin, pyrantel pamoate
33190                                                                                               milbemycin oxime, spinosad
33191                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33209                                                                               chloroxylenol, lactic acid, salicylic acid
33211                                                                                              lufenuron, milbemycin oxime
33220                                                                                 febantel, praziquantel, pyrantel pamoate
33222                                                                                              lufenuron, milbemycin oxime
33226                                                                                                                  omega 3
33227                                                                                                                probiotic
33229                                                                                    dinotefuran, permethrin, pyriproxyfen
33230                                                                                              lufenuron, milbemycin oxime
33233                                                                                                                probiotic
33235                                                                                              lufenuron, milbemycin oxime
33236                                                                                    dinotefuran, permethrin, pyriproxyfen
33239                                                                                                                probiotic
33242                                                                                              lufenuron, milbemycin oxime
33271                                                                                                   unspecified medication
33286                                                                                             ivermectin, pyrantel pamoate
33289                                                                               ivermectin, praziquantel, pyrantel pamoate
33292                                                                                             ivermectin, pyrantel pamoate
33293                                                                                                 fipronil, (s)-methoprene
33318                                                                                                 fipronil, (s)-methoprene
33333                                                                                              lufenuron, milbemycin oxime
33335                                                                                              lufenuron, milbemycin oxime
33336                                                                                              lufenuron, milbemycin oxime
33347                                                                                                               lokivetmab
33354                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33355                                                                                        betamethasone, gentamicin sulfate
33358                                                                                             ivermectin, pyrantel pamoate
33363                                                                                             ivermectin, pyrantel pamoate
33364                                                                                                               fluralaner
33370                                                                                             ivermectin, pyrantel pamoate
33374                                                                                    chlorhexidine gluconate, ketoconazole
33375                                                                               coal tar solution, menthol, salicylic acid
33376                                                                                                 joint supplement (other)
33377                                                                                                                  omega 3
33385                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
33387                                                                                                       gentamicin sulfate
33389                                                                                               neomycin sulfate, nystatin
33410                                                                                             ivermectin, pyrantel pamoate
33411                                                                                                 flumethrin, imidacloprid
33412                                                                                             ivermectin, pyrantel pamoate
33414                                                                                                 flumethrin, imidacloprid
33456                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33468                                                                                                  ketoconazole, tris-edta
33471                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33479                                                                                                               afoxolaner
33480                                                                                             ivermectin, pyrantel pamoate
33482                                                                             dexamethasone, neomycin sulfate, polymyxin b
33489                                                                                                         pyrantel pamoate
33490                                                                                              lufenuron, milbemycin oxime
33491                                                                                              lufenuron, milbemycin oxime
33492                                                                                              lufenuron, milbemycin oxime
33493                                                                                              lufenuron, milbemycin oxime
33499                                                                                                 skin and coat supplement
33539                                                                                                             deltamethrin
33541                                                                                                             deltamethrin
33542                                                                           dexamethasone, neomycin sulfate, thiabendazole
33543                                                                                                             deltamethrin
33544                                                                                                             deltamethrin
33576                                                                                             ivermectin, pyrantel pamoate
33580                                                                                              lufenuron, milbemycin oxime
33581                                                                                                               indoxacarb
33582                                                                                                              doxycycline
33583                                                                                        trimeprazine tartrate, prednisone
33590                                                                                              lufenuron, milbemycin oxime
33591                                                                                              lufenuron, milbemycin oxime
33592                                                                                                         milbemycin oxime
33614                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
33644                                                                                lufenuron, milbemycin oxime, praziquantel
33645                                                                                              lufenuron, milbemycin oxime
33647                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33649                                                                                              lufenuron, milbemycin oxime
33651                                                                                lufenuron, milbemycin oxime, praziquantel
33655                                                                                              lufenuron, milbemycin oxime
33684                                                                                                 unspecified chemotherapy
33690                                                                                             ivermectin, pyrantel pamoate
33696                                                                                             ivermectin, pyrantel pamoate
33702                                                                                                                  omega 3
33706                                                                                              lufenuron, milbemycin oxime
33714                                                                                              lufenuron, milbemycin oxime
33717                                                                                                                probiotic
33722                                                                                       chlorhexidine gluconate, ophytrium
33723                                                                                              lufenuron, milbemycin oxime
33724                                                                                              lufenuron, milbemycin oxime
33725                                                                                                                sarolaner
33737                                                                                                                probiotic
33740                                                                                               milbemycin oxime, spinosad
33756                                                                                neomycin sulfate, polymyxin b, gramicidin
33767                                                                                                         milbemycin oxime
33797                                                                                               imidacloprid, pyriproxyfen
33798                                                                                             ivermectin, pyrantel pamoate
33804                                                                                             ivermectin, pyrantel pamoate
33805                                                                                               imidacloprid, pyriproxyfen
33815                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
33824                                                                                             ivermectin, pyrantel pamoate
33828                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33844                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
33868                                                                                                               ivermectin
33869                                                                                             ivermectin, pyrantel pamoate
33870                                                                                             ivermectin, pyrantel pamoate
33890                                                                                                               amantadine
33894                                                                                                  ketoconazole, tris-edta
33901                                                                                             testicular health supplement
33907                                                                                        betamethasone, gentamicin sulfate
33911                                                                                                 fipronil, (s)-methoprene
33916                                                                                        allergy immunotherapy - injection
33919                                                                                                                mupirocin
33927                                                                                                 skin and coat supplement
33939                                                                                                                mupirocin
33940                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
33991                                                                                          ear cleaner (epi-otic advanced)
33994                                                                                                  ketoconazole, tris-edta
33998                                                                                                  ketoconazole, tris-edta
34003                                                                                                  ketoconazole, tris-edta
34005                                                                                                       calming supplement
34011                                                                          betamethasone, clotrimazole, gentamicin sulfate
34012                                                                                                  ketoconazole, tris-edta
34014                                                                                 ceramide complex, coconut oil, safflower
34016                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34022                                                                                          ear cleaner (epi-otic advanced)
34024                                                                               dextromethorphan hydrobromide, guaifenesin
34029                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34030                                                                                              lufenuron, milbemycin oxime
34043                                                                                              lufenuron, milbemycin oxime
34046                                                                                                 fipronil, (s)-methoprene
34048                                                                                              lufenuron, milbemycin oxime
34049                                                                                                 flumethrin, imidacloprid
34051                                                                                              lufenuron, milbemycin oxime
34053                                                                                              lufenuron, milbemycin oxime
34054                                                                                                 flumethrin, imidacloprid
34069                                                                                             ivermectin, pyrantel pamoate
34073                                                                                                               diclofenac
34074                                                                                             ivermectin, pyrantel pamoate
34075                                                                                   imidacloprid, permethrin, pyriproxyfen
34077                                                                                              lufenuron, milbemycin oxime
34087                                                                                               milbemycin oxime, spinosad
34090                                                                                                      ear cleaner (zymox)
34091                                                                                             ivermectin, pyrantel pamoate
34093                                                                                                 flumethrin, imidacloprid
34094                                                                                                  acetic acid, boric acid
34095                                                                                                         milbemycin oxime
34096                                                                                           milbemycin oxime, praziquantel
34107                                                                                                 fipronil, (s)-methoprene
34108                                                                               ivermectin, praziquantel, pyrantel pamoate
34109                                                                                                             fenbendazole
34111                                                                                             ivermectin, pyrantel pamoate
34113                                                                                                 fipronil, (s)-methoprene
34125                                                                                    dinotefuran, permethrin, pyriproxyfen
34126                                                                                             ivermectin, pyrantel pamoate
34128                                                                                        betamethasone, gentamicin sulfate
34132                                                                                             ivermectin, pyrantel pamoate
34134                                                                                             ivermectin, pyrantel pamoate
34135                                                                                    dinotefuran, permethrin, pyriproxyfen
34138                                                                                                                probiotic
34140                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34147                                                                                             ivermectin, pyrantel pamoate
34148                                                                                                               afoxolaner
34152                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34155                                                                                                                probiotic
34156                                                                                                               loratadine
34157                                                                                                               famotidine
34161                                                                                             ivermectin, pyrantel pamoate
34227                                                                                                                  rx clay
34230                                                                                                                cisapride
34231                                                                                                              ondansetron
34232                                                                                                                probiotic
34233                                                                                                               famotidine
34234                                                                                                       maropitant citrate
34235                                                                                                              mirtazapine
34238                                                                                             ivermectin, pyrantel pamoate
34239                                                                                                 imidacloprid, permethrin
34240                                                                                               imidacloprid, pyriproxyfen
34241                                                                                             ivermectin, pyrantel pamoate
34242                                                                                                         milbemycin oxime
34243                                                                                               imidacloprid, pyriproxyfen
34246                                                                                               imidacloprid, pyriproxyfen
34247                                                                                                         milbemycin oxime
34249                                                                                                             fenbendazole
34254                                                                                              lufenuron, milbemycin oxime
34260                                                                                       amoxicillin, clavulanate potassium
34262                                                                                              lufenuron, milbemycin oxime
34264                                                                                       amoxicillin, clavulanate potassium
34267                                                                                              lufenuron, milbemycin oxime
34268                                                                                              lufenuron, milbemycin oxime
34269                                                                                                             multivitamin
34327                                                                                                                vitamin b
34332                                                                                                               ivermectin
34333                                                                          betamethasone, clotrimazole, gentamicin sulfate
34334                                                                                               imidacloprid, pyriproxyfen
34336                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34340                                                                                                               afoxolaner
34342                                                                                                                 geraniol
34343                                                                                      cedarwood oil, rosemary oil, sesame
34345                                                                                                 fipronil, (s)-methoprene
34359                                                                                                                 spinosad
34360                                                                                                               ivermectin
34361                                                                                             ivermectin, pyrantel pamoate
34362                                                                                                                 spinosad
34367                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34374                                                                                                         milbemycin oxime
34375                                                                                                               fluralaner
34378                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34379                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34388                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
34401                                                                                             ivermectin, pyrantel pamoate
34403                                                                                                               afoxolaner
34409                                                                                                               ivermectin
34410                                                                                                               afoxolaner
34418                                                                                              lufenuron, milbemycin oxime
34419                                                                                              lufenuron, milbemycin oxime
34430                                                                                                               moxidectin
34434                                                                                                               fluralaner
34436                                                                                                 endocrine system support
34467                                                                                lufenuron, milbemycin oxime, praziquantel
34474                                                                                lufenuron, milbemycin oxime, praziquantel
34493                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
34513                                                                                                 fipronil, (s)-methoprene
34536                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34545                                                                                                                vitamin b
34548                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34579                                                                                                            yunnan baiyao
34583                                                                                                               ivermectin
34584                                                                                             ivermectin, pyrantel pamoate
34587                                                                                        betamethasone, gentamicin sulfate
34588                                                                                                  ketoconazole, tris-edta
34593                                                                                                               ivermectin
34606                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34608                                                                                        trimeprazine tartrate, prednisone
34609                                                                           dexamethasone, neomycin sulfate, thiabendazole
34617                                                                                                 fipronil, (s)-methoprene
34624                                                                      neomycin sulfate, nystatin, triamcinolone acetonide
34629                                                                                               milbemycin oxime, spinosad
34630                                                                                                  ketoconazole, tris-edta
34635                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
34636                                                                                               milbemycin oxime, spinosad
34637                                                                                        trimeprazine tartrate, prednisone
34638                                                                                       chlorhexidine gluconate, ophytrium
34640                                                                                               milbemycin oxime, spinosad
34642                                                                                                               afoxolaner
34648                                                                                                               ivermectin
34669                                                                                             ivermectin, pyrantel pamoate
34672                                                                                        betamethasone, gentamicin sulfate
34673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
34674                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34675                                                                                                               lokivetmab
34676                                                                                           milbemycin oxime, praziquantel
34677                                                                                            allergy immunotherapy - drops
34678                                                                       chlorhexidine gluconate, hydrocortisone, tris-edta
34680                                                                                  betamethasone, florfenicol, terbinafine
34697                                                                                               milbemycin oxime, spinosad
34704                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34705                                                                                               milbemycin oxime, spinosad
34708                                                                                                    bismuth subsalicylate
34709                                                                                                             multivitamin
34710                                                                                                                probiotic
34727                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34728                                                                                                                  omega 3
34729                                                                                                      unspecified vitamin
34730                                                                                             ivermectin, pyrantel pamoate
34733                                                                                             ivermectin, pyrantel pamoate
34734                                                                                                               fluralaner
34741                                                                                    chlorhexidine gluconate, ketoconazole
34744                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
34747                                                                                                               fluralaner
34750                                                                                             ivermectin, pyrantel pamoate
34763                                                                                             ivermectin, pyrantel pamoate
34764                                                                                                               afoxolaner
34766                                                                                             ivermectin, pyrantel pamoate
34787                                                                                       joint supplement (glucosamine hcl)
34788                                                                                                                mupirocin
34789                                                                                             ivermectin, pyrantel pamoate
34791                                                                                             ivermectin, pyrantel pamoate
34797                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
34798                                                                                                                  omega 3
34799                                                                                                               ivermectin
34811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
34813                                                                                                     prebiotic, probiotic
34828                                                                                               milbemycin oxime, spinosad
34832                                                                                               milbemycin oxime, spinosad
34833                                                                                              lufenuron, milbemycin oxime
34845                                                                                                     prebiotic, probiotic
34887                                                                                                               ivermectin
34888                                                                                       fipronil, permethrin, pyriproxyfen
34890                                                                                                 fipronil, (s)-methoprene
34891                                                                                             ivermectin, pyrantel pamoate
34892                                                                                                 fipronil, (s)-methoprene
34900                                                                                                         milbemycin oxime
34901                                                                                                               fluralaner
34902                                                                                                               lokivetmab
34903                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34904                                                                                                                  omega 3
34905                                                                                                         milbemycin oxime
34906                                                                                                               fluralaner
34907                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
34908                                                                                                               lokivetmab
34917                                                                                                  triamcinolone acetonide
34918                                                                                                            difluprednate
34920                                                                               ivermectin, praziquantel, pyrantel pamoate
34922                                                                                                         milbemycin oxime
34923                                                                                                         milbemycin oxime
34924                                                                                                               fluralaner
34953                                                                                                   gut restore supplement
34955                                                                                                     digestive supplement
34956                                                                                                                  omega 3
34966                                                                                                         milbemycin oxime
34979                                                                                                               fluralaner
34981                                                                                                         milbemycin oxime
34982                                                                               ivermectin, praziquantel, pyrantel pamoate
34983                                                                               ivermectin, praziquantel, pyrantel pamoate
34991                                                                                             ivermectin, pyrantel pamoate
34992                                                                                                               ivermectin
34996                                                                                             ivermectin, pyrantel pamoate
35002                                                                                               imidacloprid, pyriproxyfen
35004                                                                                             ivermectin, pyrantel pamoate
35014                                                                                              lufenuron, milbemycin oxime
35025                                                                                lufenuron, milbemycin oxime, praziquantel
35027                                                                                              rx diet - digestive support
35034                                                                                                         milbemycin oxime
35049                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35069                                                                                              lufenuron, milbemycin oxime
35074                                                                                        betamethasone, gentamicin sulfate
35094                                                                                           milbemycin oxime, praziquantel
35103                                                                                                 fipronil, (s)-methoprene
35109                                                                                                                  calcium
35110                                                                                                         milbemycin oxime
35125                                                                                                               afoxolaner
35132                                                                                                               fluralaner
35134                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35143                                                                                              lufenuron, milbemycin oxime
35144                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35145                                                                                             ivermectin, pyrantel pamoate
35146                                                                                               milbemycin oxime, spinosad
35147                                                                                                         milbemycin oxime
35148                                                                                       joint supplement (glucosamine hcl)
35149                                                                                                         milbemycin oxime
35150                                                                                               milbemycin oxime, spinosad
35152                                                                                                         milbemycin oxime
35153                                                                                                               fluralaner
35154                                                                                                         milbemycin oxime
35160                                                                           mometasone furoate, orbifloxacin, posaconazole
35176                                                                                        trimeprazine tartrate, prednisone
35181                                                                                                               ivermectin
35182                                                                                             ivermectin, pyrantel pamoate
35183                                                                                                                  omega 3
35189                                                                                             ivermectin, pyrantel pamoate
35203                                                                                                               ivermectin
35204                                                                                       fipronil, permethrin, pyriproxyfen
35205                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35207                                                                                             ivermectin, pyrantel pamoate
35212                                                                                                               ivermectin
35214                                                                                             ivermectin, pyrantel pamoate
35232                                                                                             ivermectin, pyrantel pamoate
35245                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35252                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35262                                                                                             ivermectin, pyrantel pamoate
35264                                                                                             ivermectin, pyrantel pamoate
35278                                                                                             ivermectin, pyrantel pamoate
35279                                                                                                               afoxolaner
35283                                                                                             ivermectin, pyrantel pamoate
35284                                                                                                               afoxolaner
35291                                                                                              lufenuron, milbemycin oxime
35299                                                                                                 fipronil, (s)-methoprene
35300                                                                                             ivermectin, pyrantel pamoate
35314                                                                             dexamethasone, neomycin sulfate, polymyxin b
35315                                                                                                         milbemycin oxime
35354                                                                                              lufenuron, milbemycin oxime
35388                                                                                                                  menthol
35393                                                                                             ivermectin, pyrantel pamoate
35399                                                                                                               ivermectin
35400                                                                                             ivermectin, pyrantel pamoate
35401                                                                                             ivermectin, pyrantel pamoate
35404                                                                                             ivermectin, pyrantel pamoate
35405                                                                                             ivermectin, pyrantel pamoate
35406                                                                                             ivermectin, pyrantel pamoate
35414                                                                                              lufenuron, milbemycin oxime
35417                                                                                               milbemycin oxime, spinosad
35420                                                                                              lufenuron, milbemycin oxime
35421                                                                                                               fluralaner
35422                                                                                              lufenuron, milbemycin oxime
35423                                                                                              lufenuron, milbemycin oxime
35424                                                                                                               fluralaner
35425                                                                                              lufenuron, milbemycin oxime
35432                                                                                              lufenuron, milbemycin oxime
35434                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35443                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35450                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35453                                                                                                 joint supplement (other)
35454                                                                                                                  omega 3
35495                                                                                             ivermectin, pyrantel pamoate
35496                                                                                             ivermectin, pyrantel pamoate
35497                                                                                             ivermectin, pyrantel pamoate
35499                                                                                                                probiotic
35501                                                                                                               ivermectin
35504                                                                                                                probiotic
35506                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35509                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
35513                                                                               dextromethorphan hydrobromide, guaifenesin
35525                                                                                                 fipronil, (s)-methoprene
35526                                                                                                         milbemycin oxime
35528                                                                                                         milbemycin oxime
35539                                                                                           milbemycin oxime, praziquantel
35560                                                                                                               ivermectin
35561                                                                                                               afoxolaner
35565                                                                                             ivermectin, pyrantel pamoate
35566                                                                                                               afoxolaner
35569                                                                                             ivermectin, pyrantel pamoate
35571                                                                               ivermectin, praziquantel, pyrantel pamoate
35572                                                                                               imidacloprid, pyriproxyfen
35573                                                                                                                meloxicam
35574                                                                                                                firocoxib
35575                                                                                              lufenuron, milbemycin oxime
35576                                                                                                         milbemycin oxime
35577                                                                                                               fluralaner
35578                                                                                                               fluralaner
35579                                                                                              lufenuron, milbemycin oxime
35580                                                                                                               prednisone
35581                                                                                                               ivermectin
35582                                                                                              lufenuron, milbemycin oxime
35593                                                                                             ivermectin, pyrantel pamoate
35598                                                                                                         milbemycin oxime
35605                                                                              over-the-counter unmedicated shampoo/mousse
35620                                                                                                   cyphenothrin, fipronil
35621                                                                                                   cyphenothrin, fipronil
35624                                                                                                               selamectin
35626                                                                                                         tylosin tartrate
35628                                                                                                               selamectin
35633                                                                                                 joint supplement (other)
35639                                                                                             ivermectin, pyrantel pamoate
35641                                                                                                               afoxolaner
35642                                                                                          ear cleaner (epi-otic advanced)
35645                                                                                                         pyrantel pamoate
35656                                                                                         propylene glycol, salicylic acid
35659                                                                                                         milbemycin oxime
35662                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
35664                                                                                                         milbemycin oxime
35665                                                                                                                sarolaner
35668                                                                                        betamethasone, gentamicin sulfate
35673                                                                                        betamethasone, gentamicin sulfate
35674                                                                          betamethasone, clotrimazole, gentamicin sulfate
35696                                                                                                                probiotic
35697                                                                                                               afoxolaner
35699                                                                                                               afoxolaner
35721                                                                                                 fipronil, (s)-methoprene
35722                                                                                                             multivitamin
35725                                                                                             ivermectin, pyrantel pamoate
35727                                                                                             ivermectin, pyrantel pamoate
35740                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35743                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
35748                                                                                             ivermectin, pyrantel pamoate
35756                                                                                             ivermectin, pyrantel pamoate
35757                                                                                             ivermectin, pyrantel pamoate
35758                                                                                                               afoxolaner
35762                                                                                                  triamcinolone acetonide
35768                                                                                                 imidacloprid, permethrin
35770                                                                                               imidacloprid, pyriproxyfen
35771                                                                                             ivermectin, pyrantel pamoate
35772                                                                                                                  omega 3
35773                                                                                                 imidacloprid, permethrin
35774                                                                                             ivermectin, pyrantel pamoate
35775                                                                                                               ivermectin
35777                                                                                               imidacloprid, pyriproxyfen
35778                                                                                             ivermectin, pyrantel pamoate
35786                                                                                       fipronil, permethrin, pyriproxyfen
35791                                                                                                 fipronil, (s)-methoprene
35792                                                                                             ivermectin, pyrantel pamoate
35793                                                                                                                probiotic
35808                                                                                                                  rx clay
35809                                                                                       chlorhexidine gluconate, ophytrium
35810                                                                                                                probiotic
35812                                                                                               milbemycin oxime, spinosad
35821                                                                                       fipronil, permethrin, pyriproxyfen
35831                                                                                                         milbemycin oxime
35835                                                                                                         milbemycin oxime
35855                                                                                             ivermectin, pyrantel pamoate
35859                                                                                        trimeprazine tartrate, prednisone
35903                                                                                                               epsom salt
35908                                                                                              lufenuron, milbemycin oxime
35954                                                                                             ivermectin, pyrantel pamoate
35955                                                                                             ivermectin, pyrantel pamoate
35963                                                                          betamethasone, clotrimazole, gentamicin sulfate
35965                                                                                        enrofloxacin, silver sulfadiazine
35969                                                                                                         phytosphingosine
35973                                                                                               milbemycin oxime, spinosad
35982                                                                                             ivermectin, pyrantel pamoate
35983                                                                                                               afoxolaner
36019                                                                                                               afoxolaner
36021                                                                                                               afoxolaner
36023                                                                                        betamethasone, gentamicin sulfate
36030                                                                                        betamethasone, gentamicin sulfate
36042                                                                                               milbemycin oxime, spinosad
36043                                                                                               milbemycin oxime, spinosad
36044                                                                                               milbemycin oxime, spinosad
36065                                                                                             ivermectin, pyrantel pamoate
36069                                                                                             ivermectin, pyrantel pamoate
36078                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36081                                                                                                  ketoconazole, tris-edta
36082                                                                                                               ivermectin
36084                                                                                                               cetirizine
36108                                                                                                         milbemycin oxime
36110                                                                                               milbemycin oxime, spinosad
36112                                                                                                 joint supplement (other)
36113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36115                                                                                                 joint supplement (other)
36134                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36137                                                                                                   unspecified antiseptic
36144                                                                                                 fipronil, (s)-methoprene
36145                                                                                                               ivermectin
36150                                                                                             ivermectin, pyrantel pamoate
36153                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36156                                                                                             ivermectin, pyrantel pamoate
36159                                                                                                               afoxolaner
36171                                                                                                            metronidazole
36191                                                                                             ivermectin, pyrantel pamoate
36192                                                                                                               fluralaner
36200                                                                                               unspecified ear medication
36201                                                                                                             ketoconazole
36202                                                                                            allergy immunotherapy - drops
36203                                                                                            allergy immunotherapy - drops
36205                                                                                            allergy immunotherapy - drops
36218                                                                                                         milbemycin oxime
36220                                                                                             ivermectin, pyrantel pamoate
36221                                                                                                               fluralaner
36222                                                                                            silver oxide, type i collagen
36223                                                                                                                probiotic
36225                                                                                             ivermectin, pyrantel pamoate
36227                                                                                                               afoxolaner
36228                                                                                                               afoxolaner
36229                                                                                             ivermectin, pyrantel pamoate
36231                                                                             florfenicol, mometasone furoate, terbinafine
36232                                                                                                               afoxolaner
36233                                                                                                               ivermectin
36235                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
36237                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36238                                                                                                                carprofen
36240                                                                                                         milbemycin oxime
36254                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36256                                                                          betamethasone, clotrimazole, gentamicin sulfate
36264                                                                                                         milbemycin oxime
36268                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36271                                                                                               milbemycin oxime, spinosad
36272                                                                                               milbemycin oxime, spinosad
36273                                                                                               milbemycin oxime, spinosad
36275                                                                                                               selamectin
36276                                                                              chlorhexidine gluconate, miconazole nitrate
36280                                                                                                               selamectin
36283                                                                                                         milbemycin oxime
36288                                                                                                         milbemycin oxime
36293                                                                                                 fipronil, (s)-methoprene
36294                                                                                                         pyrantel pamoate
36295                                                                                                             fenbendazole
36296                                                                                                 fipronil, (s)-methoprene
36297                                                                                                         pyrantel pamoate
36298                                                                                                             fenbendazole
36299                                                                                                               ivermectin
36300                                                                                                 fipronil, (s)-methoprene
36301                                                                                                             fenbendazole
36302                                                                                                             fenbendazole
36303                                                                                                         pyrantel pamoate
36304                                                                                                               ivermectin
36305                                                                                                 fipronil, (s)-methoprene
36306                                                                                                             fenbendazole
36307                                                                                                         pyrantel pamoate
36308                                                                                                             fenbendazole
36309                                                                                                         pyrantel pamoate
36310                                                                                                         pyrantel pamoate
36311                                                                                                             fenbendazole
36322                                                                                                 fipronil, (s)-methoprene
36323                                                                                                         pyrantel pamoate
36324                                                                                                             fenbendazole
36325                                                                                                 fipronil, (s)-methoprene
36326                                                                                                         pyrantel pamoate
36327                                                                                                             fenbendazole
36328                                                                                                               ivermectin
36329                                                                                                 fipronil, (s)-methoprene
36330                                                                                                             fenbendazole
36331                                                                                                             fenbendazole
36332                                                                                                         pyrantel pamoate
36333                                                                                                 fipronil, (s)-methoprene
36334                                                                                                               ivermectin
36335                                                                                                             fenbendazole
36336                                                                                                         pyrantel pamoate
36337                                                                                                             fenbendazole
36338                                                                                                         pyrantel pamoate
36339                                                                                                             fenbendazole
36340                                                                                                         pyrantel pamoate
36358                                                                                                 fipronil, (s)-methoprene
36359                                                                                                         pyrantel pamoate
36360                                                                                                             fenbendazole
36361                                                                                                 fipronil, (s)-methoprene
36362                                                                                                         pyrantel pamoate
36363                                                                                                             fenbendazole
36364                                                                                                               ivermectin
36365                                                                                                 fipronil, (s)-methoprene
36366                                                                                                             fenbendazole
36367                                                                                                             fenbendazole
36368                                                                                                         pyrantel pamoate
36369                                                                                                               ivermectin
36370                                                                                                 fipronil, (s)-methoprene
36371                                                                                                             fenbendazole
36372                                                                                                         pyrantel pamoate
36373                                                                                                             fenbendazole
36374                                                                                                         pyrantel pamoate
36377                                                                                                 fipronil, (s)-methoprene
36378                                                                                                         pyrantel pamoate
36379                                                                                                             fenbendazole
36380                                                                                                 fipronil, (s)-methoprene
36381                                                                                                             fenbendazole
36382                                                                                                         pyrantel pamoate
36383                                                                                                               ivermectin
36384                                                                                                 fipronil, (s)-methoprene
36385                                                                                                             fenbendazole
36398                                                                                                 fipronil, (s)-methoprene
36399                                                                                             ivermectin, pyrantel pamoate
36403                                                                                                 fipronil, (s)-methoprene
36404                                                                                                             fenbendazole
36405                                                                                             ivermectin, pyrantel pamoate
36406                                                                                                 fipronil, (s)-methoprene
36410                                                                                                                vitamin b
36427                                                                                               imidacloprid, pyriproxyfen
36429                                                                                             ivermectin, pyrantel pamoate
36430                                                                                               imidacloprid, pyriproxyfen
36438                                                                                               imidacloprid, pyriproxyfen
36439                                                                                             ivermectin, pyrantel pamoate
36440                                                                                        trimeprazine tartrate, prednisone
36443                                                                                             ivermectin, pyrantel pamoate
36444                                                                                               imidacloprid, pyriproxyfen
36448                                                                                               imidacloprid, pyriproxyfen
36451                                                                                           praziquantel, pyrantel pamoate
36464                                                                                        betamethasone, gentamicin sulfate
36474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36491                                                                                             ivermectin, pyrantel pamoate
36497                                                                                             ivermectin, pyrantel pamoate
36513                                                                                                             ketoconazole
36533                                                                              chlorhexidine gluconate, miconazole nitrate
36535                                                                                       chlorhexidine gluconate, ophytrium
36559                                                                                             ivermectin, pyrantel pamoate
36560                                                                                                 fipronil, (s)-methoprene
36562                                                                                             ivermectin, pyrantel pamoate
36568                                                                                              lufenuron, milbemycin oxime
36571                                                                             dexamethasone, neomycin sulfate, polymyxin b
36574                                                                           mometasone furoate, orbifloxacin, posaconazole
36595                                                                               ivermectin, praziquantel, pyrantel pamoate
36600                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36601                                                                               ivermectin, praziquantel, pyrantel pamoate
36602                                                                                                         milbemycin oxime
36605                                                                                                         milbemycin oxime
36607                                                                                                         milbemycin oxime
36608                                                                                                         milbemycin oxime
36616                                                                               ivermectin, praziquantel, pyrantel pamoate
36624                                                                                                  acetic acid, boric acid
36626                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
36630                                                                                                         milbemycin oxime
36632                                                                                                         milbemycin oxime
36635                                                                                                         milbemycin oxime
36657                                                                                               milbemycin oxime, spinosad
36670                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36698                                                                                             ivermectin, pyrantel pamoate
36699                                                                                             ivermectin, pyrantel pamoate
36705                                                                                        betamethasone, gentamicin sulfate
36708                                                                                             ivermectin, pyrantel pamoate
36709                                                                              chlorhexidine gluconate, miconazole nitrate
36735                                                                                                                carprofen
36751                                                                                             ivermectin, pyrantel pamoate
36752                                                                                                 fipronil, (s)-methoprene
36753                                                                                                             fenbendazole
36772                                                                                        betamethasone, gentamicin sulfate
36816                                                                              rx diet - hypoallergenic hydrolyzed protein
36817                                                                               ivermectin, praziquantel, pyrantel pamoate
36818                                                                                  betamethasone, florfenicol, terbinafine
36819                                                                                                  ketoconazole, tris-edta
36824                                                                                             ivermectin, pyrantel pamoate
36833                                                                                              lufenuron, milbemycin oxime
36834                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
36835                                                                                       chlorhexidine gluconate, ophytrium
36840                                                                                              lufenuron, milbemycin oxime
36842                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36846                                                                                              lufenuron, milbemycin oxime
36847                                                                                                               fluralaner
36848                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
36849                                                                                                               afoxolaner
36850                                                                                              lufenuron, milbemycin oxime
36851                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36853                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
36855                                                                                                                probiotic
36859                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36875                                                                                                             acepromazine
36876                                                                                                                 tramadol
36877                                                                                                                firocoxib
36878                                                                                    dinotefuran, permethrin, pyriproxyfen
36880                                                                                                             acepromazine
36881                                                                                             ivermectin, pyrantel pamoate
36882                                                                                                              clindamycin
36883                                                                                                               afoxolaner
36892                                                                                          ear cleaner (epi-otic advanced)
36893                                                                                                               afoxolaner
36894                                                                                             ivermectin, pyrantel pamoate
36900                                                                                             ivermectin, pyrantel pamoate
36901                                                                                                               afoxolaner
36911                                                                                              lufenuron, milbemycin oxime
36919                                                                                              lufenuron, milbemycin oxime
36920                                                                                                   cyphenothrin, fipronil
36921                                                                                                                probiotic
36925                                                                                              lufenuron, milbemycin oxime
36945                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
36969                                                                                             ivermectin, pyrantel pamoate
36970                                                                                    dinotefuran, permethrin, pyriproxyfen
36982                                                                                               imidacloprid, pyriproxyfen
36983                                                                                                               ivermectin
36984                                                                                                                 spinosad
36985                                                                                                         milbemycin oxime
36994                                                                                                        hypochlorous acid
37007                                                                                              lufenuron, milbemycin oxime
37015                                                                               ivermectin, praziquantel, pyrantel pamoate
37017                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
37018                                                                                                         milbemycin oxime
37019                                                                                                 fipronil, (s)-methoprene
37020                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
37021                                                                               ivermectin, praziquantel, pyrantel pamoate
37036                                                                                   dexamethasone, ketoconazole, tris-edta
37038                                                                                       amoxicillin, clavulanate potassium
37046                                                                                                               afoxolaner
37054                                                                                              lufenuron, milbemycin oxime
37055                                                                                             ivermectin, pyrantel pamoate
37056                                                                                             ivermectin, pyrantel pamoate
37057                                                                                             ivermectin, pyrantel pamoate
37061                                                                                                 flumethrin, imidacloprid
37063                                                                                                 flumethrin, imidacloprid
37069                                                                                             ivermectin, pyrantel pamoate
37070                                                                                               imidacloprid, pyriproxyfen
37071                                                                                              lufenuron, milbemycin oxime
37073                                                                           beclomethasone, clotrimazole, neomycin sulfate
37074                                                                                              lufenuron, milbemycin oxime
37075                                                                          betamethasone, clotrimazole, gentamicin sulfate
37077                                                                                               imidacloprid, pyriproxyfen
37078                                                                                              lufenuron, milbemycin oxime
37087                                                                                               imidacloprid, pyriproxyfen
37088                                                                                                         milbemycin oxime
37098                                                                                               imidacloprid, pyriproxyfen
37099                                                                                                         milbemycin oxime
37104                                                                                                                ofloxacin
37116                                                                                                 fipronil, (s)-methoprene
37117                                                                                                         liver supplement
37135                                                                              chlorhexidine gluconate, miconazole nitrate
37157                                                                                        betamethasone, gentamicin sulfate
37164                                                                          betamethasone, clotrimazole, gentamicin sulfate
37165                                                                               ivermectin, praziquantel, pyrantel pamoate
37168                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37169                                                                                                  chlorhexidine gluconate
37193                                                                                             ivermectin, pyrantel pamoate
37194                                                                                                                 geraniol
37195                                                                                                               ivermectin
37197                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37200                                                                                             ivermectin, pyrantel pamoate
37201                                                                                                               afoxolaner
37202                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37219                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37221                                                                                                                trazodone
37259                                                                                                               cephalexin
37260                                                                           dexamethasone, neomycin sulfate, thiabendazole
37262                                                                                               imidacloprid, pyriproxyfen
37266                                                                                                         milbemycin oxime
37267                                                                                    dinotefuran, permethrin, pyriproxyfen
37270                                                                                    dinotefuran, permethrin, pyriproxyfen
37271                                                                                               imidacloprid, pyriproxyfen
37272                                                                                        trimeprazine tartrate, prednisone
37277                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
37278                                                                                                  chlorhexidine gluconate
37279                                                                              rx diet - hypoallergenic hydrolyzed protein
37302                                                                                             ivermectin, pyrantel pamoate
37303                                                                          betamethasone, clotrimazole, gentamicin sulfate
37309                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37316                                                                                                               ivermectin
37325                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37326                                                                                                               moxidectin
37332                                                                                                          dexmedetomidine
37337                                                                                                               lokivetmab
37344                                                                                                 joint supplement (other)
37349                                                                                             ivermectin, pyrantel pamoate
37359                                                                                                         milbemycin oxime
37373                                                                                              lufenuron, milbemycin oxime
37374                                                                                                               afoxolaner
37375                                                                                             ivermectin, pyrantel pamoate
37376                                                                                                               afoxolaner
37385                                                                                             ivermectin, pyrantel pamoate
37386                                                                                                               afoxolaner
37387                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37392                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
37396                                                                                                               ivermectin
37397                                                                                                               fluralaner
37434                                                                                   joint supplement (glucosamine hcl/msm)
37435                                                                                           polysulfated glycosaminoglycan
37439                                                                                                               ivermectin
37446                                                                                             ivermectin, pyrantel pamoate
37449                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37451                                                                                                                mupirocin
37454                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37457                                                                              rx diet - hypoallergenic hydrolyzed protein
37463                                                                                    chlorhexidine gluconate, ketoconazole
37464                                                                                                  chlorhexidine gluconate
37465                                                                                        betamethasone, gentamicin sulfate
37467                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37477                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37478                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
37485                                                                                lufenuron, milbemycin oxime, praziquantel
37491                                                                                        betamethasone, gentamicin sulfate
37493                                                                                lufenuron, milbemycin oxime, praziquantel
37495                                                                                        betamethasone, gentamicin sulfate
37510                                                                                                               alprazolam
37526                                                                                                              minocycline
37527                                                                             dexamethasone, neomycin sulfate, polymyxin b
37533                                                                                                         phytosphingosine
37536                                                                                                  chlorhexidine gluconate
37540                                                                                             ivermectin, pyrantel pamoate
37545                                                                                             ivermectin, pyrantel pamoate
37546                                                                                                               fluralaner
37547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37552                                                                                             ivermectin, pyrantel pamoate
37568                                                                                              lufenuron, milbemycin oxime
37569                                                                                                 imidacloprid, permethrin
37571                                                                                              lufenuron, milbemycin oxime
37576                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
37577                                                                                              lufenuron, milbemycin oxime
37578                                                                                               imidacloprid, pyriproxyfen
37579                                                                                               imidacloprid, pyriproxyfen
37580                                                                                                               ivermectin
37584                                                                                                                  omega 3
37585                                                                                                                probiotic
37586                                                                                       joint supplement (glucosamine hcl)
37597                                                                                               imidacloprid, pyriproxyfen
37598                                                                                                               ivermectin
37601                                                                                             ivermectin, pyrantel pamoate
37602                                                                                                               afoxolaner
37603                                                                                                               afoxolaner
37608                                                                                                               selamectin
37624                                                                                              lufenuron, milbemycin oxime
37627                                                                                             ivermectin, pyrantel pamoate
37628                                                                                             ivermectin, pyrantel pamoate
37629                                                                                             ivermectin, pyrantel pamoate
37630                                                                                             ivermectin, pyrantel pamoate
37639                                                                                                                probiotic
37648                                                                                    dinotefuran, permethrin, pyriproxyfen
37651                                                                                                 flumethrin, imidacloprid
37655                                                                                                 flumethrin, imidacloprid
37657                                                                                                 flumethrin, imidacloprid
37662                                                                                                 flumethrin, imidacloprid
37664                                                                                                 flumethrin, imidacloprid
37669                                                                                       chlorhexidine gluconate, ophytrium
37670                                                                                         burow's solution, hydrocortisone
37675                                                                                       chlorhexidine gluconate, ophytrium
37691                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37696                                                                   hydrocortisone, gentamicin sulfate, miconazole nitrate
37697                                                                                                                carprofen
37698                                                                                                              amoxicillin
37704                                                                                              lufenuron, milbemycin oxime
37705                                                                                    dinotefuran, permethrin, pyriproxyfen
37709                                                                                                                  omega 3
37710                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37712                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37713                                                                                                                  omega 3
37714                                                                                                                probiotic
37717                                                                                                                  omega 3
37718                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37731                                                                                              lufenuron, milbemycin oxime
37738                                                                                              lufenuron, milbemycin oxime
37739                                                                                              lufenuron, milbemycin oxime
37740                                                                                                                 fipronil
37742                                                                                              lufenuron, milbemycin oxime
37771                                                                             dexamethasone, neomycin sulfate, polymyxin b
37785                                                                                                               afoxolaner
37786                                                                                             ivermectin, pyrantel pamoate
37797                                                                               ivermectin, praziquantel, pyrantel pamoate
37798                                                                               ivermectin, praziquantel, pyrantel pamoate
37805                                                                                           milbemycin oxime, praziquantel
37806                                                                                                               afoxolaner
37809                                                                                                              sevoflurane
37816                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37817                                                                                                                  omega 3
37820                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
37821                                                                                    dinotefuran, permethrin, pyriproxyfen
37822                                                                                                                probiotic
37834                                                                                             ivermectin, pyrantel pamoate
37835                                                                                       fipronil, permethrin, pyriproxyfen
37837                                                                                             ivermectin, pyrantel pamoate
37838                                                                                             ivermectin, pyrantel pamoate
37839                                                                                                               fluralaner
37845                                                                                             ivermectin, pyrantel pamoate
37846                                                                                       fipronil, permethrin, pyriproxyfen
37847                                                                                             ivermectin, pyrantel pamoate
37848                                                                                                               fluralaner
37849                                                                                             ivermectin, pyrantel pamoate
37850                                                                                                               fluralaner
37851                                                                                                               fluralaner
37852                                                                                             ivermectin, pyrantel pamoate
37855                                                                                              lufenuron, milbemycin oxime
37858                                                                                lufenuron, milbemycin oxime, praziquantel
37865                                                                                                                 fipronil
37885                                                                                             ivermectin, pyrantel pamoate
37894                                                                                                               ivermectin
37895                                                                                                                sarolaner
37907                                                                                               milbemycin oxime, spinosad
37916                                                                                               milbemycin oxime, spinosad
37920                                                                                                 imidacloprid, permethrin
37929                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37930                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37935                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
37937                                                                          betamethasone, clotrimazole, gentamicin sulfate
37942                                                                                                  ketoconazole, tris-edta
37944                                                                                                    mycophenolate mofetil
37976                                                                                              lufenuron, milbemycin oxime
37977                                                                                                   cyphenothrin, fipronil
37978                                                                                              lufenuron, milbemycin oxime
37979                                                                                        betamethasone, gentamicin sulfate
37980                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
37984                                                                                              lufenuron, milbemycin oxime
37989                                                                                              lufenuron, milbemycin oxime
37990                                                                                        betamethasone, gentamicin sulfate
37992                                                                                              lufenuron, milbemycin oxime
37993                                                                                                               fluralaner
38018                                                                                               milbemycin oxime, spinosad
38036                                                                                                         milbemycin oxime
38041                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38046                                                                                                         milbemycin oxime
38048                                                                                       amoxicillin, clavulanate potassium
38050                                                                                                                lotilaner
38051                                                                                                         milbemycin oxime
38052                                                                                                                lotilaner
38056                                                                                                         tylosin tartrate
38070                                                                                             ivermectin, pyrantel pamoate
38071                                                                                               imidacloprid, pyriproxyfen
38072                                                                                                 flumethrin, imidacloprid
38074                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38075                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38102                                                                               dextromethorphan hydrobromide, guaifenesin
38123                                                                                             ivermectin, pyrantel pamoate
38126                                                                                             ivermectin, pyrantel pamoate
38132                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38134                                                                                                               cetirizine
38135                                                                                                       maropitant citrate
38136                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38141                                                                                                         milbemycin oxime
38142                                                                                                               afoxolaner
38151                                                                                                               afoxolaner
38156                                                                                                               afoxolaner
38165                                                                                             ivermectin, pyrantel pamoate
38166                                                                                                               afoxolaner
38177                                                                                               unspecified shampoo/mousse
38179                                                                                          ear cleaner (epi-otic advanced)
38181                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38182                                                                                                                  omega 3
38184                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38185                                                                             dexamethasone, neomycin sulfate, polymyxin b
38193                                                                                       fipronil, permethrin, pyriproxyfen
38204                                                                                                     digestive supplement
38211                                                                                      ear cleaner (zymox), hydrocortisone
38217                                                                                             ivermectin, pyrantel pamoate
38219                                                                                                                  omega 3
38240                                                                                    dinotefuran, permethrin, pyriproxyfen
38256                                                                                                         milbemycin oxime
38257                                                                                           milbemycin oxime, praziquantel
38259                                                                                                         milbemycin oxime
38262                                                                                                               afoxolaner
38268                                                                          betamethasone, clotrimazole, gentamicin sulfate
38273                                                                          betamethasone, clotrimazole, gentamicin sulfate
38284                                                                                             ivermectin, pyrantel pamoate
38287                                                                                                                probiotic
38288                                                                                           milbemycin oxime, praziquantel
38289                                                                                                               fluralaner
38293                                                                                              lufenuron, milbemycin oxime
38294                                                                           dexamethasone, neomycin sulfate, thiabendazole
38301                                                                                               imidacloprid, pyriproxyfen
38305                                                                                               imidacloprid, pyriproxyfen
38306                                                                                             ivermectin, pyrantel pamoate
38324                                                                                                  ketoconazole, tris-edta
38326                                                                                                         phytosphingosine
38330                                                                                             ivermectin, pyrantel pamoate
38339                                                                                                               fluralaner
38342                                                                                              lufenuron, milbemycin oxime
38351                                                                                                                sarolaner
38352                                                                                             ivermectin, pyrantel pamoate
38353                                                                                             ivermectin, pyrantel pamoate
38361                                                                             dexamethasone, neomycin sulfate, polymyxin b
38365                                                                                             ivermectin, pyrantel pamoate
38366                                                                                                 fipronil, (s)-methoprene
38367                                                                                               imidacloprid, pyriproxyfen
38369                                                                                               imidacloprid, pyriproxyfen
38372                                                                          betamethasone, clotrimazole, gentamicin sulfate
38373                                                                                                               lokivetmab
38377                                                                             florfenicol, mometasone furoate, terbinafine
38378                                                                           mometasone furoate, orbifloxacin, posaconazole
38386                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38387                                                                                     burow's solution, miconazole nitrate
38388                                                                                                               lokivetmab
38396                                                                                             ivermectin, pyrantel pamoate
38397                                                                                                               afoxolaner
38399                                                                                             ivermectin, pyrantel pamoate
38406                                                                                                                probiotic
38420                                                                                              lufenuron, milbemycin oxime
38422                                                                                              lufenuron, milbemycin oxime
38423                                                                                              lufenuron, milbemycin oxime
38427                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38431                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38436                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38438                                                                                           milbemycin oxime, praziquantel
38439                                                                                                               fluralaner
38442                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38461                                                                                    dinotefuran, permethrin, pyriproxyfen
38462                                                                                             ivermectin, pyrantel pamoate
38464                                                                                                         milbemycin oxime
38465                                                                                    dinotefuran, permethrin, pyriproxyfen
38466                                                                                                                sarolaner
38470                                                                                                                sarolaner
38471                                                                                                         milbemycin oxime
38472                                                                                           milbemycin oxime, praziquantel
38473                                                                                                                sarolaner
38499                                                                               dextromethorphan hydrobromide, guaifenesin
38504                                                                                    dinotefuran, permethrin, pyriproxyfen
38505                                                                                             ivermectin, pyrantel pamoate
38507                                                                                                         milbemycin oxime
38508                                                                                    dinotefuran, permethrin, pyriproxyfen
38509                                                                                                                sarolaner
38510                                                                                                         milbemycin oxime
38511                                                                                           milbemycin oxime, praziquantel
38512                                                                                                                sarolaner
38522                                                                                 febantel, praziquantel, pyrantel pamoate
38527                                                                                             ivermectin, pyrantel pamoate
38528                                                                                   fipronil, pyriproxyfen, (s)-methoprene
38529                                                                           dexamethasone, neomycin sulfate, thiabendazole
38531                                                                                                  ketoconazole, tris-edta
38533                                                                                                 fipronil, (s)-methoprene
38534                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
38536                                                                               toothpaste/dental health solution or chews
38544                                                                           dexamethasone, neomycin sulfate, thiabendazole
38550                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38551                                                                                                                  omega 3
38557                                                                                        betamethasone, gentamicin sulfate
38567                                                                                                               ivermectin
38568                                                                                             ivermectin, pyrantel pamoate
38569                                                                                                               ivermectin
38570                                                                                                   unspecified medication
38588                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38602                                                                                              lufenuron, milbemycin oxime
38605                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38606                                                                                              lufenuron, milbemycin oxime
38607                                                                                       chlorhexidine gluconate, tris-edta
38610                                                                                              lufenuron, milbemycin oxime
38611                                                                                        betamethasone, gentamicin sulfate
38618                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
38626                                                                                              lufenuron, milbemycin oxime
38630                                                                                                     digestive supplement
38636                                                                                                               ivermectin
38637                                                                                                 fipronil, (s)-methoprene
38643                                                                                             ivermectin, pyrantel pamoate
38647                                                                                                       maropitant citrate
38655                                                                                                      unspecified rx diet
38656                                                                                                 fipronil, (s)-methoprene
38665                                                                                                                vitamin b
38691                                                                                                                probiotic
38722                                                                          betamethasone, clotrimazole, gentamicin sulfate
38723                                                                                       chlorhexidine gluconate, ophytrium
38754                                                                                                            metronidazole
38772                                                                                                             ketoconazole
38775                                                                                                  unspecified ear cleaner
38779                                                                                                               fluralaner
38780                                                                                        betamethasone, gentamicin sulfate
38787                                                                                                                probiotic
38789                                                                                                             multivitamin
38796                                                                                                                probiotic
38802                                                                                                                probiotic
38809                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
38816                                                                                                                probiotic
38820                                                                                              lufenuron, milbemycin oxime
38821                                                                                                               fluralaner
38828                                                                                   chlorhexidine gluconate, dexamethasone
38839                                                                                                       miconazole nitrate
38841                                                                                                         phytosphingosine
38843                                                                             florfenicol, mometasone furoate, terbinafine
38845                                                                                                         tylosin tartrate
38847                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38850                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
38851                                                                                                                  taurine
38854                                                                             florfenicol, mometasone furoate, terbinafine
38855                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
38861                                                                             florfenicol, mometasone furoate, terbinafine
38864                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
38865                                                                                                  ketoconazole, tris-edta
38868                                                                     vitamin b, vitamin b complex, vitamin b12, vitamin e
38871                                                                                                         tylosin tartrate
38890                                                                                             ivermectin, pyrantel pamoate
38891                                                                                                               afoxolaner
38892                                                                                             ivermectin, pyrantel pamoate
38896                                                                                             ivermectin, pyrantel pamoate
38902                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38924                                                                               dextromethorphan hydrobromide, guaifenesin
38925                                                                                               imidacloprid, pyriproxyfen
38926                                                                                lufenuron, milbemycin oxime, praziquantel
38930                                                                                              lufenuron, milbemycin oxime
38931                                                                                                 flumethrin, imidacloprid
38940                                                                                               milbemycin oxime, spinosad
38941                                                                                                               afoxolaner
38945                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38946                                                                                lufenuron, milbemycin oxime, praziquantel
38950                                                                                lufenuron, milbemycin oxime, praziquantel
38951                                                                                                               afoxolaner
38952                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38956                                                                                       chlorhexidine gluconate, ophytrium
38963                                                                                                         milbemycin oxime
38964                                                                                                                sarolaner
38970                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38971                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
38974                                                                            ear cleaner (epi-otic advanced), ketoconazole
38976                                                                                                            yunnan baiyao
38997                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39004                                                                                                               fluralaner
39005                                                                                                         milbemycin oxime
39006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39035                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39083                                                                                lufenuron, milbemycin oxime, praziquantel
39099                                                                                             ivermectin, pyrantel pamoate
39117                                                                                               milbemycin oxime, spinosad
39120                                                                                             ivermectin, pyrantel pamoate
39121                                                                                                               ivermectin
39122                                                                                               imidacloprid, pyriproxyfen
39123                                                                                                               ivermectin
39125                                                                                           polysulfated glycosaminoglycan
39127                                                                             florfenicol, mometasone furoate, terbinafine
39128                                                                                        enrofloxacin, silver sulfadiazine
39158                                                                                           milbemycin oxime, praziquantel
39165                                                                                       amoxicillin, clavulanate potassium
39167                                                                                   joint supplement (glucosamine hcl/msm)
39171                                                                                    chlorhexidine gluconate, ketoconazole
39176                                                                                                               ivermectin
39181                                                                                    chlorhexidine gluconate, ketoconazole
39182                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
39198                                                                                        betamethasone, gentamicin sulfate
39201                                                                             florfenicol, mometasone furoate, terbinafine
39202                                                                                                  ketoconazole, tris-edta
39207                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39209                                                                                                 fipronil, (s)-methoprene
39210                                                                                                 fipronil, (s)-methoprene
39211                                                                                                 fipronil, (s)-methoprene
39212                                                                                                 fipronil, (s)-methoprene
39218                                                                                                 fipronil, (s)-methoprene
39259                                                                                                               ivermectin
39260                                                                                                               fluralaner
39262                                                                                             ivermectin, pyrantel pamoate
39273                                                                                             ivermectin, pyrantel pamoate
39316                                                                                               imidacloprid, pyriproxyfen
39325                                                                                                         milbemycin oxime
39326                                                                                                 fipronil, (s)-methoprene
39329                                                                                                         milbemycin oxime
39330                                                                                                                sarolaner
39331                                                                                                         milbemycin oxime
39332                                                                                                                sarolaner
39338                                                                                             ivermectin, pyrantel pamoate
39339                                                                                                 flumethrin, imidacloprid
39340                                                                                             ivermectin, pyrantel pamoate
39388                                                                                             ivermectin, pyrantel pamoate
39392                                                                             dexamethasone, neomycin sulfate, polymyxin b
39423                                                                                                                probiotic
39425                                                                                             silver sulfadiazine, insulin
39433                                                                                                  acetic acid, boric acid
39434                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39435                                                                                                                carvacrol
39438                                                                                             ivermectin, pyrantel pamoate
39440                                                                                             ivermectin, pyrantel pamoate
39443                                                                                             ivermectin, pyrantel pamoate
39444                                                                                             ivermectin, pyrantel pamoate
39445                                                                                                 fipronil, (s)-methoprene
39446                                                                                                 fipronil, (s)-methoprene
39447                                                                                             ivermectin, pyrantel pamoate
39450                                                                                                 fipronil, (s)-methoprene
39451                                                                                             ivermectin, pyrantel pamoate
39453                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39486                                                                                               imidacloprid, pyriproxyfen
39495                                                                                                 fipronil, (s)-methoprene
39496                                                                                             ivermectin, pyrantel pamoate
39511                                                                                                   cyphenothrin, fipronil
39513                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39516                                                                                                               ivermectin
39519                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39525                                                                                                               selamectin
39526                                                                                              lufenuron, milbemycin oxime
39528                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39531                                                                                 febantel, praziquantel, pyrantel pamoate
39534                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39536                                                                                                                probiotic
39539                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39541                                                                                                                  menthol
39542                                                                                                                mupirocin
39543                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39546                                                                                                               selamectin
39548                                                                                                                sarolaner
39566                                                                                                                probiotic
39567                                                                                                 joint supplement (other)
39573                                                                                        betamethasone, gentamicin sulfate
39581                                                                                                               ivermectin
39582                                                                                                               ivermectin
39586                                                                                             ivermectin, pyrantel pamoate
39591                                                                                                   unspecified medication
39599                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39607                                                                               dextromethorphan hydrobromide, guaifenesin
39609                                                                                             ivermectin, pyrantel pamoate
39617                                                                                                         pyrantel pamoate
39618                                                                                                               moxidectin
39635                                                                                               milbemycin oxime, spinosad
39637                                                                                               milbemycin oxime, spinosad
39639                                                                                         phytosphingosine, salicylic acid
39651                                                                                        betamethasone, gentamicin sulfate
39714                                                                                                     digestive supplement
39715                                                                                                                probiotic
39737                                                                                       joint supplement (glucosamine hcl)
39754                                                                                              lufenuron, milbemycin oxime
39756                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39759                                                                                              lufenuron, milbemycin oxime
39760                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
39763                                                                                              lufenuron, milbemycin oxime
39764                                                                                              lufenuron, milbemycin oxime
39776                                                                                                                  omega 3
39777                                                                                       joint supplement (glucosamine hcl)
39778                                                                                                                     kelp
39786                                                                                                             multivitamin
39787                                                                                    dinotefuran, permethrin, pyriproxyfen
39788                                                                                               milbemycin oxime, spinosad
39795                                                                                                               afoxolaner
39796                                                                                             ivermectin, pyrantel pamoate
39833                                                                                              lufenuron, milbemycin oxime
39849                                                                                              lufenuron, milbemycin oxime
39856                                                                                              lufenuron, milbemycin oxime
39860                                                                                             ivermectin, pyrantel pamoate
39871                                                                                             ivermectin, pyrantel pamoate
39875                                                                                             ivermectin, pyrantel pamoate
39877                                                                                             ivermectin, pyrantel pamoate
39881                                                                                                             fenbendazole
39909                                                                                               milbemycin oxime, spinosad
39919                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
39958                                                                                                               fluralaner
39973                                                                                           milbemycin oxime, praziquantel
39974                                                                                                   benzocaine, resorcinol
39975                                                                                         phytosphingosine, salicylic acid
39980                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
39981                                                                                       chlorhexidine gluconate, ophytrium
39982                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
39987                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
39988                                                      bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
40013                                                                                                             imidacloprid
40021                                                                                                   indoxacarb, permethrin
40038                                                                                                               ampicillin
40043                                                                                    dinotefuran, permethrin, pyriproxyfen
40092                                                                                                                 fipronil
40093                                                                                           milbemycin oxime, praziquantel
40102                                                                                                                probiotic
40108                                                                                             ivermectin, pyrantel pamoate
40109                                                                                                 fipronil, (s)-methoprene
40115                                                                                                             fenbendazole
40117                                                                                              lufenuron, milbemycin oxime
40121                                                                                             ivermectin, pyrantel pamoate
40123                                                                                                                probiotic
40124                                                                                             ivermectin, pyrantel pamoate
40125                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40133                                                                                lufenuron, milbemycin oxime, praziquantel
40134                                                                                lufenuron, milbemycin oxime, praziquantel
40138                                                                                                         viola clear fire
40141                                                                        grapefruit seed extract, lavender oil, noni fruit
40142                                                                                             ivermectin, pyrantel pamoate
40143                                                                             castor oil, cinnamon, lemongrass oil, sesame
40144                                                                                             ivermectin, pyrantel pamoate
40149                                                                                             ivermectin, pyrantel pamoate
40154                                                                                             ivermectin, pyrantel pamoate
40164                                                                                          ear cleaner (epi-otic advanced)
40165                                                                                             ivermectin, pyrantel pamoate
40180                                                                                                               ivermectin
40186                                                                                                         milbemycin oxime
40194                                                                                                               ivermectin
40196                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40206                                                                                               milbemycin oxime, spinosad
40209                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40214                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40216                                                                                                         milbemycin oxime
40217                                                                                                               afoxolaner
40218                                                                                                                sarolaner
40221                                                                                                         milbemycin oxime
40222                                                                                                               afoxolaner
40223                                                                                                                sarolaner
40224                                                                                                               fluralaner
40244                                                                                                 fipronil, (s)-methoprene
40290                                                                                             ivermectin, pyrantel pamoate
40296                                                                                                                probiotic
40297                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
40298                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40299                                                                                   dexamethasone, ketoconazole, tris-edta
40302                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40312                                                                                                                meloxicam
40317                                                                                  betamethasone, florfenicol, terbinafine
40331                                                                                                         milbemycin oxime
40343                                                                                                  acetic acid, boric acid
40390                                                                                                         milbemycin oxime
40391                                                                                                         milbemycin oxime
40392                                                                                                         milbemycin oxime
40394                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40403                                                                                                  ketoconazole, tris-edta
40406                                                                                                 homatropine, hydrocodone
40407                                                                                             ivermectin, pyrantel pamoate
40417                                                                                                               afoxolaner
40418                                                                                                               ivermectin
40422                                                                                                               afoxolaner
40451                                                                                                               ivermectin
40454                                                                                       amoxicillin, clavulanate potassium
40464                                                                               dextromethorphan hydrobromide, guaifenesin
40468                                                                                                               afoxolaner
40472                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40474                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40483                                                                                             ivermectin, pyrantel pamoate
40484                                                                                                               afoxolaner
40486                                                                                             ivermectin, pyrantel pamoate
40487                                                                                                               afoxolaner
40488                                                                                                 imidacloprid, permethrin
40489                                                                                               imidacloprid, pyriproxyfen
40494                                                                                                                carprofen
40503                                                                                                         milbemycin oxime
40504                                                                                                     fipronil, permethrin
40508                                                                                                               selamectin
40511                                                                                                             praziquantel
40519                                                                                              lufenuron, milbemycin oxime
40521                                                                                                                 fipronil
40535                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40541                                                                                                               ivermectin
40568                                                                                             ivermectin, pyrantel pamoate
40571                                                                             dexamethasone, neomycin sulfate, polymyxin b
40572                                                                                                     prebiotic, probiotic
40573                                                                                             ivermectin, pyrantel pamoate
40574                                                                                                               afoxolaner
40579                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
40580                                                                                                              amoxicillin
40581                                                                                           sulfamethoxazole, trimethoprim
40582                                                                             dexamethasone, neomycin sulfate, polymyxin b
40583                                                                                                         pyrantel pamoate
40595                                                                                        betamethasone, gentamicin sulfate
40600                                                                                              lufenuron, milbemycin oxime
40601                                                                                    dinotefuran, permethrin, pyriproxyfen
40603                                                                                                  chlorhexidine gluconate
40604                                                                                                     digestive supplement
40606                                                                                                  ketoconazole, tris-edta
40607                                                                                               unspecified shampoo/mousse
40611                                                                                              lufenuron, milbemycin oxime
40615                                                                                                               lokivetmab
40616                                                                                    dinotefuran, permethrin, pyriproxyfen
40617                                                                                              lufenuron, milbemycin oxime
40618                                                                                               unspecified shampoo/mousse
40619                                                                                                      ear cleaner (zymox)
40620                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40634                                                                             dexamethasone, neomycin sulfate, polymyxin b
40636                                                                                                             fenbendazole
40637                                                                                                                probiotic
40644                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40653                                                                                                                 fipronil
40654                                                                               ivermectin, praziquantel, pyrantel pamoate
40655                                                                                           milbemycin oxime, praziquantel
40656                                                                                                         milbemycin oxime
40684                                                                                lufenuron, milbemycin oxime, praziquantel
40686                                                                                             ivermectin, pyrantel pamoate
40687                                                                                                   indoxacarb, permethrin
40688                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40689                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40690                                                                                             ivermectin, pyrantel pamoate
40691                                                                                                               indoxacarb
40693                                                                                        trimeprazine tartrate, prednisone
40699                                                                                                              doxycycline
40700                                                                                             ivermectin, pyrantel pamoate
40701                                                                                                                sarolaner
40718                                                                          betamethasone, clotrimazole, gentamicin sulfate
40719                                                                                             ivermectin, pyrantel pamoate
40721                                                                                             ivermectin, pyrantel pamoate
40722                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40723                                                                          betamethasone, clotrimazole, gentamicin sulfate
40724                                                                                        enrofloxacin, silver sulfadiazine
40725                                                                                             ivermectin, pyrantel pamoate
40726                                                                                                       gentamicin sulfate
40727                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40744                                                                                              lufenuron, milbemycin oxime
40745                                                                                                  triamcinolone acetonide
40747                                                                                        trimeprazine tartrate, prednisone
40748                                                                                       chlorhexidine gluconate, ophytrium
40749                                                                                                               fluralaner
40750                                                                                              lufenuron, milbemycin oxime
40751                                                                                              lufenuron, milbemycin oxime
40754                                                                                              lufenuron, milbemycin oxime
40755                                                                                                               fluralaner
40756                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40758                                                                           mometasone furoate, orbifloxacin, posaconazole
40760                                                                                              lufenuron, milbemycin oxime
40775                                                                                             ivermectin, pyrantel pamoate
40776                                                                                                         milbemycin oxime
40781                                                                                                         milbemycin oxime
40783                                                                                                         milbemycin oxime
40794                                                                             dexamethasone, neomycin sulfate, polymyxin b
40796                                                                                               milbemycin oxime, spinosad
40799                                                                                             ivermectin, pyrantel pamoate
40800                                                                                             ivermectin, pyrantel pamoate
40801                                                                                                                sarolaner
40810                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40823                                                                                             ivermectin, pyrantel pamoate
40824                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
40825                                                                                    dinotefuran, permethrin, pyriproxyfen
40827                                                                                                               fluralaner
40828                                                                                             ivermectin, pyrantel pamoate
40829                                                                                                               fluralaner
40833                                                                                             ivermectin, pyrantel pamoate
40834                                                                                                                  omega 3
40838                                                                                        betamethasone, gentamicin sulfate
40839                                                                                                               lokivetmab
40840                                                                                                               lokivetmab
40843                                                                                        betamethasone, gentamicin sulfate
40846                                                                                                               fluralaner
40848                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
40866                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
40868                                                                                             ivermectin, pyrantel pamoate
40870                                                                                             ivermectin, pyrantel pamoate
40875                                                                                                                probiotic
40879                                                                                             ivermectin, pyrantel pamoate
40895                                                                                                            yunnan baiyao
40897                                                                                              lufenuron, milbemycin oxime
40899                                                                                              lufenuron, milbemycin oxime
40900                                                                                              lufenuron, milbemycin oxime
40902                                                                                              lufenuron, milbemycin oxime
40905                                                                                                         milbemycin oxime
40919                                                                                                                  omega 3
40943                                                                                                        vision supplement
40958                                                                                                             fenbendazole
40959                                                                                                         sulfadimethoxine
40960                                                                                                            metronidazole
40961                                                                                                               sucralfate
40962                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
40965                                                                                                         milbemycin oxime
40966                                                                                                               afoxolaner
40967                                                                                                         milbemycin oxime
40968                                                                                                               afoxolaner
40969                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40970                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
40971                                                                                                         milbemycin oxime
40972                                                                                                               afoxolaner
40974                                                                                           milbemycin oxime, praziquantel
40984                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
40987                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
40990                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
40992                                                                                                               ivermectin
40993                                                                                    dinotefuran, permethrin, pyriproxyfen
40994                                                                                          ear cleaner (epi-otic advanced)
40997                                                                                                         milbemycin oxime
40998                                                                                    dinotefuran, permethrin, pyriproxyfen
41003                                                                                                         tylosin tartrate
41004                                                                                                         milbemycin oxime
41005                                                                                    dinotefuran, permethrin, pyriproxyfen
41006                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41007                                                                                                         tylosin tartrate
41009                                                                                 febantel, praziquantel, pyrantel pamoate
41010                                                                                    dinotefuran, permethrin, pyriproxyfen
41011                                                                                                         milbemycin oxime
41014                                                                                                         tylosin tartrate
41015                                                                                                         milbemycin oxime
41016                                                                                    dinotefuran, permethrin, pyriproxyfen
41018                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
41020                                                                                                  acetic acid, boric acid
41021                                                                                                         milbemycin oxime
41022                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41023                                                                                    dinotefuran, permethrin, pyriproxyfen
41024                                                                                                                  omega 3
41025                                                                                                   bupivacaine, lidocaine
41057                                                                               dimethyl sulfoxide, fluocinolone acetonide
41068                                                                                    dinotefuran, permethrin, pyriproxyfen
41069                                                                                             ivermectin, pyrantel pamoate
41084                                                                                                                meloxicam
41087                                                                                                         milbemycin oxime
41088                                                                                    dinotefuran, permethrin, pyriproxyfen
41089                                                                                                               fluralaner
41090                                                                                                 skin and coat supplement
41091                                                                          betamethasone, clotrimazole, gentamicin sulfate
41094                                                                                                         milbemycin oxime
41095                                                                                                               fluralaner
41096                                                                                    dinotefuran, permethrin, pyriproxyfen
41097                                                                          betamethasone, clotrimazole, gentamicin sulfate
41098                                                                                    dinotefuran, permethrin, pyriproxyfen
41099                                                                                                               fluralaner
41101                                                                          betamethasone, clotrimazole, gentamicin sulfate
41102                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41103                                                                                                                meloxicam
41121                                                                                               milbemycin oxime, spinosad
41125                                                                                             ivermectin, pyrantel pamoate
41131                                                                                                         milbemycin oxime
41132                                                                                                               afoxolaner
41133                                                                                                         milbemycin oxime
41134                                                                                                               afoxolaner
41137                                                                                        betamethasone, gentamicin sulfate
41139                                                                                        enrofloxacin, silver sulfadiazine
41147                                                                                        enrofloxacin, silver sulfadiazine
41151                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41152                                                                                      ear cleaner (zymox), hydrocortisone
41170                                                                             dexamethasone, neomycin sulfate, polymyxin b
41198                                                                                             ivermectin, pyrantel pamoate
41199                                                                                             ivermectin, pyrantel pamoate
41200                                                                                             ivermectin, pyrantel pamoate
41201                                                                                             ivermectin, pyrantel pamoate
41203                                                                                             ivermectin, pyrantel pamoate
41204                                                                                               imidacloprid, pyriproxyfen
41206                                                                                                 fipronil, (s)-methoprene
41207                                                                                             ivermectin, pyrantel pamoate
41208                                                                                                               afoxolaner
41209                                                                                             ivermectin, pyrantel pamoate
41210                                                                                                               afoxolaner
41216                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41217                                                                                               milbemycin oxime, spinosad
41219                                                                                              lufenuron, milbemycin oxime
41221                                                                                              lufenuron, milbemycin oxime
41222                                                                                                         milbemycin oxime
41223                                                                                                         milbemycin oxime
41224                                                                                                               fluralaner
41240                                                                                               imidacloprid, pyriproxyfen
41242                                                                                                 imidacloprid, permethrin
41246                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41260                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
41267                                                                                             ivermectin, pyrantel pamoate
41278                                                                                        betamethasone, gentamicin sulfate
41279                                                                                                               afoxolaner
41281                                                                                                 fipronil, (s)-methoprene
41283                                                                                              lufenuron, milbemycin oxime
41313                                                                                    dinotefuran, permethrin, pyriproxyfen
41314                                                                                             ivermectin, pyrantel pamoate
41315                                                                                               imidacloprid, pyriproxyfen
41316                                                                                             ivermectin, pyrantel pamoate
41318                                                                                               imidacloprid, pyriproxyfen
41319                                                                                                         milbemycin oxime
41320                                                                                           milbemycin oxime, praziquantel
41325                                                                                              lufenuron, milbemycin oxime
41332                                                                                              lufenuron, milbemycin oxime
41335                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41340                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41343                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41360                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41371                                                                                                                 fipronil
41373                                                                                lufenuron, milbemycin oxime, praziquantel
41374                                                                                                               fluralaner
41376                                                                                lufenuron, milbemycin oxime, praziquantel
41377                                                                                lufenuron, milbemycin oxime, praziquantel
41378                                                                                                               fluralaner
41381                                                                                                                meloxicam
41384                                                                                              lufenuron, milbemycin oxime
41385                                                                                                               fluralaner
41386                                                                                              lufenuron, milbemycin oxime
41387                                                                                                               fluralaner
41388                                                                                          ear cleaner (epi-otic advanced)
41396                                                                           dexamethasone, neomycin sulfate, thiabendazole
41398                                                                                                   unspecified medication
41407                                                                                                               afoxolaner
41413                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41417                                                                                             ivermectin, pyrantel pamoate
41420                                                                                                               ivermectin
41421                                                                                                               ivermectin
41422                                                                                                               ivermectin
41424                                                                                                               fluralaner
41425                                                                                                               fluralaner
41430                                                                                               milbemycin oxime, spinosad
41431                                                                                               milbemycin oxime, spinosad
41432                                                                                               milbemycin oxime, spinosad
41433                                                                           mometasone furoate, orbifloxacin, posaconazole
41435                                                                                               milbemycin oxime, spinosad
41442                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41443                                                                                               milbemycin oxime, spinosad
41444                                                                                               milbemycin oxime, spinosad
41446                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
41447                                                                                               milbemycin oxime, spinosad
41451                                                                                               milbemycin oxime, spinosad
41464                                                                                                       miconazole nitrate
41466                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41470                                                                                        allergy immunotherapy - injection
41497                                                                                                               isoflurane
41500                                                                             florfenicol, mometasone furoate, terbinafine
41505                                                                                                               isoflurane
41525                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41531                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
41533                                                                                                               gabapentin
41557                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41572                                                                                             ivermectin, pyrantel pamoate
41573                                                                                                               afoxolaner
41612                                                                                                               cephalexin
41615                                                                                             ivermectin, pyrantel pamoate
41617                                                                                                         milbemycin oxime
41621                                                                                                               ampicillin
41629                                                                                                               isoflurane
41632                                                                                                 imidacloprid, moxidectin
41633                                                                                             ivermectin, pyrantel pamoate
41638                                                                                             ivermectin, pyrantel pamoate
41639                                                                                 febantel, praziquantel, pyrantel pamoate
41640                                                                                             ivermectin, pyrantel pamoate
41641                                                                                             ivermectin, pyrantel pamoate
41653                                                                                              lufenuron, milbemycin oxime
41655                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41674                                                                                             ivermectin, pyrantel pamoate
41724                                                                                                   unspecified medication
41725                                                                                                 fipronil, (s)-methoprene
41726                                                                                                               ivermectin
41727                                                                                                         milbemycin oxime
41728                                                                                   joint supplement (glucosamine hcl/msm)
41729                                                                                                             multivitamin
41731                                                                                                 fipronil, (s)-methoprene
41737                                                                                                 fipronil, (s)-methoprene
41738                                                                                                               ivermectin
41739                                                                                   joint supplement (glucosamine hcl/msm)
41740                                                                                                             multivitamin
41743                                                                                           sulfamethoxazole, trimethoprim
41746                                                                                             ivermectin, pyrantel pamoate
41747                                                                                                                  omega 3
41748                                                                                                                vitamin c
41749                                                                                       joint supplement (glucosamine hcl)
41750                                                                                                                vitamin e
41751                                                                                                 urinary tract supplement
41752                                                                                   joint supplement (glucosamine hcl/msm)
41753                                                                                   joint supplement (glucosamine hcl/msm)
41754                                                                                                 skin and coat supplement
41756                                                                                       amoxicillin, clavulanate potassium
41759                                                                                                         milbemycin oxime
41774                                                                                              lufenuron, milbemycin oxime
41781                                                                                             ivermectin, pyrantel pamoate
41803                                                                                                               ivermectin
41811                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41816                                                                           mometasone furoate, orbifloxacin, posaconazole
41819                                                                                              lufenuron, milbemycin oxime
41830                                                                                        trimeprazine tartrate, prednisone
41835                                                                                              lufenuron, milbemycin oxime
41837                                                                                              lufenuron, milbemycin oxime
41838                                                                                                                 fipronil
41840                                                                                              lufenuron, milbemycin oxime
41846                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
41849                                                                                              lufenuron, milbemycin oxime
41850                                                                                              lufenuron, milbemycin oxime
41851                                                                                              lufenuron, milbemycin oxime
41853                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
41854                                                                                             ivermectin, pyrantel pamoate
41863                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
41870                                                                                                         milbemycin oxime
41872                                                                                                                trazodone
41888                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
41891                                                                                             ivermectin, pyrantel pamoate
41893                                                                          betamethasone, clotrimazole, gentamicin sulfate
41894                                                                                                                    algae
41896                                                                                                 urinary tract supplement
41897                                                                                                                  omega 3
41898                                                                                                                    algae
41899                                                                                                               walnut oil
41900                                                                                                 kidney health supplement
41901                                                                                                                 curcumin
41902                                                                                                                probiotic
41903                                                                                                                  omega 3
41904                                                                                                                    algae
41905                                                                                                 kidney health supplement
41906                                                                                                                probiotic
41921                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41929                                                                                                               ivermectin
41930                                                                                             ivermectin, pyrantel pamoate
41937                                                                                             ivermectin, pyrantel pamoate
41938                                                                                                 fipronil, (s)-methoprene
41939                                                                                        betamethasone, gentamicin sulfate
41946                                                                                             ivermectin, pyrantel pamoate
41947                                                                                                 fipronil, (s)-methoprene
41950                                                                                             ivermectin, pyrantel pamoate
41973                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
41975                                                                                                            metronidazole
41988                                                                                              lufenuron, milbemycin oxime
42004                                                                                             ivermectin, pyrantel pamoate
42005                                                                                                 fipronil, (s)-methoprene
42011                                                                                             ivermectin, pyrantel pamoate
42012                                                                                                 fipronil, (s)-methoprene
42032                                                                                                         milbemycin oxime
42037                                                                                                         milbemycin oxime
42039                                                                                                         milbemycin oxime
42043                                                                                                         milbemycin oxime
42044                                                                                                         milbemycin oxime
42053                                                                                                               afoxolaner
42057                                                                                                              doxycycline
42061                                                                                             ivermectin, pyrantel pamoate
42063                                                                                                               ivermectin
42066                                                                                             ivermectin, pyrantel pamoate
42100                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
42101                                                                                        betamethasone, gentamicin sulfate
42112                                                                                             ivermectin, pyrantel pamoate
42116                                                                                                                 tramadol
42119                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42122                                                                             florfenicol, mometasone furoate, terbinafine
42147                                                                                              lufenuron, milbemycin oxime
42148                                                                                                               fluralaner
42149                                                                                              lufenuron, milbemycin oxime
42150                                                                                                               fluralaner
42151                                                                                                               fluralaner
42152                                                                                              lufenuron, milbemycin oxime
42154                                                                                                               fluralaner
42174                                                                                                         milbemycin oxime
42198                                                                                                 flumethrin, imidacloprid
42201                                                                                                 flumethrin, imidacloprid
42215                                                                                            unspecified herbal supplement
42218                                                                                             ivermectin, pyrantel pamoate
42219                                                                                               imidacloprid, pyriproxyfen
42221                                                                                                 imidacloprid, moxidectin
42227                                                                                                 imidacloprid, moxidectin
42229                                                                                                 imidacloprid, moxidectin
42240                                                                                                         liver supplement
42241                                                                                                                  omega 3
42242                                                                                                                vitamin b
42243                                                                                                             multivitamin
42256                                                                                   dexamethasone, enrofloxacin, tris-edta
42257                                                                                                                mupirocin
42259                                                                                                                mupirocin
42267                                                                     dexamethasone, enrofloxacin, ketoconazole, tris-edta
42272                                                                                              lufenuron, milbemycin oxime
42273                                                                                                               fluralaner
42278                                                                                                 urinary tract supplement
42284                                                                                             ivermectin, pyrantel pamoate
42286                                                                                                 imidacloprid, permethrin
42287                                                                                             ivermectin, pyrantel pamoate
42289                                                                                             ivermectin, pyrantel pamoate
42291                                                                                                       calming supplement
42313                                                                                                 fipronil, (s)-methoprene
42314                                                                                             ivermectin, pyrantel pamoate
42345                                                                                                         milbemycin oxime
42346                                                                                                                sarolaner
42348                                                                                                         milbemycin oxime
42349                                                                                                                sarolaner
42353                                                                                              lufenuron, milbemycin oxime
42354                                                                                                               afoxolaner
42356                                                                                                               afoxolaner
42357                                                                                              lufenuron, milbemycin oxime
42358                                                                                                               afoxolaner
42361                                                                                                                probiotic
42367                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
42368                                                                                             ivermectin, pyrantel pamoate
42378                                                                                             ivermectin, pyrantel pamoate
42379                                                                                             ivermectin, pyrantel pamoate
42384                                                                                             ivermectin, pyrantel pamoate
42386                                                                                             ivermectin, pyrantel pamoate
42387                                                                                             ivermectin, pyrantel pamoate
42399                                                                                                 flumethrin, imidacloprid
42402                                                                                             ivermectin, pyrantel pamoate
42417                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42425                                                                                                           hydrocortisone
42426                                                                                                           hydrocortisone
42433                                                                                             ivermectin, pyrantel pamoate
42451                                                                                              lufenuron, milbemycin oxime
42455                                                                                              lufenuron, milbemycin oxime
42463                                                                               ivermectin, praziquantel, pyrantel pamoate
42464                                                                                                    ear cleaner (aurocin)
42468                                                 joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
42474                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42475                                                                                                                  omega 3
42476                                                                                              lufenuron, milbemycin oxime
42477                                                                                               imidacloprid, pyriproxyfen
42480                                                                                          ear cleaner (epi-otic advanced)
42481                                                                                             ormetoprim, sulfadimethoxine
42482                                                                                               imidacloprid, pyriproxyfen
42483                                                                                              lufenuron, milbemycin oxime
42486                                                                                                                probiotic
42488                                                                                               imidacloprid, pyriproxyfen
42489                                                                                              lufenuron, milbemycin oxime
42502                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42506                                                                                                                probiotic
42512                                                                                           milbemycin oxime, praziquantel
42513                                                                                                 fipronil, (s)-methoprene
42522                                                                                                         liver supplement
42537                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42551                                                                                              lufenuron, milbemycin oxime
42552                                                                                              lufenuron, milbemycin oxime
42553                                                                                              lufenuron, milbemycin oxime
42570                                                                                                                 spinosad
42572                                                                                             ivermectin, pyrantel pamoate
42573                                                                                             ivermectin, pyrantel pamoate
42574                                                                                             ivermectin, pyrantel pamoate
42578                                                                                             ivermectin, pyrantel pamoate
42579                                                                                                               fluralaner
42593                                                                                             ivermectin, pyrantel pamoate
42594                                                                                                               fluralaner
42624                                                                                              lufenuron, milbemycin oxime
42626                                                                          betamethasone, clotrimazole, gentamicin sulfate
42627                                                                                              lufenuron, milbemycin oxime
42628                                                                                                               fluralaner
42632                                                                                                               fluralaner
42633                                                                                              lufenuron, milbemycin oxime
42634                                                                                                 flumethrin, imidacloprid
42637                                                                                              lufenuron, milbemycin oxime
42638                                                                                              lufenuron, milbemycin oxime
42640                                                                                                 flumethrin, imidacloprid
42646                                                                                                         pyrantel pamoate
42647                                                                                                                ponazuril
42648                                                                                                             fenbendazole
42652                                                                                                                 fipronil
42655                                                                                             ivermectin, pyrantel pamoate
42656                                                                                                                sarolaner
42666                                                                                             ivermectin, pyrantel pamoate
42668                                                                                             ivermectin, pyrantel pamoate
42675                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42678                                                                             dexamethasone, neomycin sulfate, polymyxin b
42679                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42694                                                                                   cyphenothrin, fipronil, (s)-methoprene
42695                                                                                             ivermectin, pyrantel pamoate
42696                                                                                                 fipronil, (s)-methoprene
42697                                                                                                               ivermectin
42700                                                                                   fipronil, pyriproxyfen, (s)-methoprene
42704                                                                                             ivermectin, pyrantel pamoate
42712                                                                                                               ivermectin
42716                                                                                             ivermectin, pyrantel pamoate
42721                                                                                             ivermectin, pyrantel pamoate
42725                                                                                                 fipronil, (s)-methoprene
42726                                                                                             ivermectin, pyrantel pamoate
42727                                                                                             ivermectin, pyrantel pamoate
42728                                                                                             ivermectin, pyrantel pamoate
42729                                                                                                         milbemycin oxime
42740                                                                                             ivermectin, pyrantel pamoate
42758                                                                                              lufenuron, milbemycin oxime
42760                                                                                                         milbemycin oxime
42761                                                                                                 fipronil, (s)-methoprene
42764                                                                                           milbemycin oxime, praziquantel
42766                                                                                           milbemycin oxime, praziquantel
42768                                                                                           milbemycin oxime, praziquantel
42785                                                                                                               afoxolaner
42786                                                                                                         milbemycin oxime
42787                                                                                       joint supplement (glucosamine hcl)
42791                                                                                                         milbemycin oxime
42792                                                                                                         milbemycin oxime
42799                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
42821                                                                               ivermectin, praziquantel, pyrantel pamoate
42833                                                                                                         milbemycin oxime
42860                                                                                                     rx diet - aging care
42876                                                                                                                  omega 3
42879                                                                                    dinotefuran, permethrin, pyriproxyfen
42887                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
42890                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42891                                                                                                                probiotic
42892                                                                                                                  omega 3
42893                                                                                                                  omega 3
42894                                                                                                 urinary tract supplement
42913                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42915                                                                                                 imidacloprid, permethrin
42920                                                                                             ivermectin, pyrantel pamoate
42923                                                                                                               selamectin
42926                                                                                                 fipronil, (s)-methoprene
42930                                                                                             ivermectin, pyrantel pamoate
42931                                                                                              lufenuron, milbemycin oxime
42932                                                                                                                sarolaner
42935                                                                                                                sarolaner
42936                                                                                              lufenuron, milbemycin oxime
42939                                                                                           milbemycin oxime, praziquantel
42940                                                                                                                sarolaner
42946                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
42952                                                                                               milbemycin oxime, spinosad
42956                                                                                              lufenuron, milbemycin oxime
42959                                                                                             ivermectin, pyrantel pamoate
42960                                                                                             ivermectin, pyrantel pamoate
42967                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
42994                                                                                               imidacloprid, pyriproxyfen
43013                                                                                             ivermectin, pyrantel pamoate
43045                                                                                             ivermectin, pyrantel pamoate
43064                                                                                             ivermectin, pyrantel pamoate
43065                                                                                               imidacloprid, pyriproxyfen
43069                                                                                               imidacloprid, pyriproxyfen
43072                                                                                               imidacloprid, pyriproxyfen
43081                                                                                                               selamectin
43086                                                                                        betamethasone, gentamicin sulfate
43105                                                                                    chlorhexidine gluconate, ketoconazole
43116                                                                                              lufenuron, milbemycin oxime
43119                                                                                           milbemycin oxime, praziquantel
43123                                                                                                         milbemycin oxime
43135                                                                                                               cephalexin
43136                                                                                                                carprofen
43151                                                                                           milbemycin oxime, praziquantel
43153                                                                           mometasone furoate, orbifloxacin, posaconazole
43169                                                                                                          dexmedetomidine
43173                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
43183                                                                                              lufenuron, milbemycin oxime
43184                                                                                              lufenuron, milbemycin oxime
43191                                                                                                              sevoflurane
43200                                                                                               milbemycin oxime, spinosad
43202                                                                                               imidacloprid, pyriproxyfen
43204                                                                                                               selamectin
43224                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43228                                                                                                 flumethrin, imidacloprid
43236                                                                                              lufenuron, milbemycin oxime
43238                                                                                           milbemycin oxime, praziquantel
43239                                                                                                 flumethrin, imidacloprid
43241                                                                                           milbemycin oxime, praziquantel
43242                                                                                                 flumethrin, imidacloprid
43243                                                                                           milbemycin oxime, praziquantel
43244                                                                                                 flumethrin, imidacloprid
43246                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43247                                                                                                                 curcumin
43258                                                                                              lufenuron, milbemycin oxime
43259                                                                                    dinotefuran, permethrin, pyriproxyfen
43270                                                                                                            metronidazole
43286                                                                                                            levetiracetam
43291                                                                                                 imidacloprid, moxidectin
43292                                                                                                  chlorhexidine gluconate
43293                                                                                                 imidacloprid, moxidectin
43310                                                                                              lufenuron, milbemycin oxime
43334                                                                                                         milbemycin oxime
43366                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43388                                                                                                               fluralaner
43405                                                                                                  ketoconazole, tris-edta
43412                                                                          betamethasone, clotrimazole, gentamicin sulfate
43423                                                                                                               afoxolaner
43424                                                                                                                  omega 3
43430                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
43467                                                                                                  ketoconazole, tris-edta
43469                                                                                       joint supplement (glucosamine hcl)
43470                                                                                                                  omega 3
43471                                                                                                      unspecified vitamin
43482                                                                                lufenuron, milbemycin oxime, praziquantel
43491                                                                                              lufenuron, milbemycin oxime
43493                                                                                                         milbemycin oxime
43494                                                                                                         milbemycin oxime
43496                                                                                                         milbemycin oxime
43497                                                                                                         milbemycin oxime
43510                                                                                              lufenuron, milbemycin oxime
43511                                                                                                               fluralaner
43512                                                                                                     fipronil, permethrin
43522                                                                                                               fluralaner
43527                                                                                             ivermectin, pyrantel pamoate
43531                                                                                           milbemycin oxime, praziquantel
43532                                                                                                               afoxolaner
43535                                                                                           milbemycin oxime, praziquantel
43538                                                                                           milbemycin oxime, praziquantel
43539                                                                                                               afoxolaner
43540                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43545                                                                                             ivermectin, pyrantel pamoate
43546                                                                                                 fipronil, (s)-methoprene
43547                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43548                                                                                                               ivermectin
43549                                                                                                 fipronil, (s)-methoprene
43550                                                                                                               ivermectin
43563                                                                                                               afoxolaner
43570                                                                                                 fipronil, (s)-methoprene
43610                                                                                             oxytetracycline, polymyxin b
43620                                                                                                                sarolaner
43621                                                                                                 flumethrin, imidacloprid
43636                                                                                                               selamectin
43637                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
43639                                                                                                                mupirocin
43640                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
43642                                                                                          ear cleaner (epi-otic advanced)
43643                                                                                                   unspecified antiseptic
43644                                                                                             ivermectin, pyrantel pamoate
43645                                                                                                               afoxolaner
43646                                                                                                             fenbendazole
43650                                                                             dexamethasone, neomycin sulfate, polymyxin b
43652                                                                                                 fipronil, (s)-methoprene
43653                                                                                             ivermectin, pyrantel pamoate
43669                                                                                       chlorhexidine gluconate, ophytrium
43678                                                                                        betamethasone, gentamicin sulfate
43683                                                                                             ivermectin, pyrantel pamoate
43684                                                                             dexamethasone, neomycin sulfate, polymyxin b
43685                                                                                                             ketoconazole
43686                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
43706                                                                                              lufenuron, milbemycin oxime
43707                                                                                                               fluralaner
43709                                                                                    dinotefuran, permethrin, pyriproxyfen
43714                                                                                       chlorhexidine gluconate, ophytrium
43715                                                                                                         phytosphingosine
43738                                                                                        betamethasone, gentamicin sulfate
43743                                                                                             ivermectin, pyrantel pamoate
43744                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43745                                                                                                                probiotic
43746                                                                                   fipronil, pyriproxyfen, (s)-methoprene
43747                                                                                             ivermectin, pyrantel pamoate
43751                                                                                                                probiotic
43783                                                                                             ivermectin, pyrantel pamoate
43784                                                                                                               afoxolaner
43785                                                                                   joint supplement (glucosamine hcl/msm)
43806                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
43807                                                                              chlorhexidine gluconate, miconazole nitrate
43838                                                                                                             capromorelin
43843                                                                                                         milbemycin oxime
43844                                                                                                               afoxolaner
43851                                                                                                 flumethrin, imidacloprid
43853                                                                                                               lokivetmab
43854                                                                                                                carprofen
43878                                                                               ivermectin, praziquantel, pyrantel pamoate
43884                                                                                  betamethasone, florfenicol, terbinafine
43887                                                                                  betamethasone, florfenicol, terbinafine
43893                                                                                             ivermectin, pyrantel pamoate
43894                                                                                                 flumethrin, imidacloprid
43896                                                                                             ivermectin, pyrantel pamoate
43919                                                                                                               ivermectin
43920                                                                                                               afoxolaner
43938                                                                                                         milbemycin oxime
43939                                                                                                               afoxolaner
43949                                                                                                         milbemycin oxime
43950                                                                                                               afoxolaner
43958                                                                                                         milbemycin oxime
43959                                                                                                         milbemycin oxime
43960                                                                                                               afoxolaner
43963                                                                                              lufenuron, milbemycin oxime
43965                                                                          betamethasone, clotrimazole, gentamicin sulfate
43975                                                                                                                probiotic
43976                                                                                             ivermectin, pyrantel pamoate
43977                                                                                             ivermectin, pyrantel pamoate
43980                                                                                             ivermectin, pyrantel pamoate
43997                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
44031                                                                                             ivermectin, pyrantel pamoate
44037                                                                                             ivermectin, pyrantel pamoate
44050                                                                                    chlorhexidine gluconate, ketoconazole
44055                                                                           dexamethasone, neomycin sulfate, thiabendazole
44084                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44087                                                                                            cedarwood oil, peppermint oil
44090                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44119                                                                                                                ofloxacin
44123                                                                                                  triamcinolone acetonide
44126                                                                                                               ivermectin
44127                                                                                                               afoxolaner
44129                                                                                             ivermectin, pyrantel pamoate
44131                                                                                              lufenuron, milbemycin oxime
44154                                                  fenbendazole, maropitant citrate, metronidazole, omeprazole, sucralfate
44155                                                                                lufenuron, milbemycin oxime, praziquantel
44157                                                                                lufenuron, milbemycin oxime, praziquantel
44158                                                                                                               fluralaner
44207                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
44209                                                                             florfenicol, mometasone furoate, terbinafine
44211                                                                                               milbemycin oxime, spinosad
44212                                                                                                       calming supplement
44214                                                                                               milbemycin oxime, spinosad
44216                                                                                               milbemycin oxime, spinosad
44218                                                                                               milbemycin oxime, spinosad
44219                                                                                               milbemycin oxime, spinosad
44222                                                                                        betamethasone, gentamicin sulfate
44223                                                                                                              latanoprost
44224                                                                                                              dorzolamide
44225                                                                                                                  timolol
44226                                                                                                                probiotic
44227                                                                                                               diclofenac
44234                                                                                               imidacloprid, pyriproxyfen
44235                                                                                                               ivermectin
44240                                                                                              ear cleaner (well and good)
44241                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44243                                                                                                                 turmeric
44244                                                                                                                  aspirin
44246                                                                                                               ivermectin
44247                                                                                                                 spinosad
44249                                                                                                               afoxolaner
44250                                                                                                               ivermectin
44251                                                                                                               ivermectin
44252                                                                                                               afoxolaner
44253                                                                               ivermectin, praziquantel, pyrantel pamoate
44268                                                                               ivermectin, praziquantel, pyrantel pamoate
44280                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44282                                                                                                  ketoconazole, tris-edta
44309                                                                                                        tigilanol tiglate
44330                                                                                              lufenuron, milbemycin oxime
44334                                                                                             ivermectin, pyrantel pamoate
44335                                                                                                               afoxolaner
44336                                                                                             ivermectin, pyrantel pamoate
44337                                                                                                               afoxolaner
44347                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
44350                                                                                       amoxicillin, clavulanate potassium
44363                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44372                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
44385                                                                                               milbemycin oxime, spinosad
44386                                                                                               milbemycin oxime, spinosad
44390                                                                                                         milbemycin oxime
44391                                                                                                         milbemycin oxime
44392                                                                                                         milbemycin oxime
44395                                                                                                         milbemycin oxime
44398                                                                                                                probiotic
44421                                                                               ivermectin, praziquantel, pyrantel pamoate
44428                                                                                               milbemycin oxime, spinosad
44429                                                                                               milbemycin oxime, spinosad
44431                                                                                                               fluralaner
44434                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44452                                                                                               milbemycin oxime, spinosad
44473                                                                                               imidacloprid, pyriproxyfen
44507                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44520                                                                                                                tris-edta
44524                                                                                             ivermectin, pyrantel pamoate
44531                                                                                                                meloxicam
44542                                                                                                 fipronil, (s)-methoprene
44543                                                                                                               ivermectin
44545                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44546                                                                                             ivermectin, pyrantel pamoate
44547                                                                                   fipronil, pyriproxyfen, (s)-methoprene
44558                                                                                             ivermectin, pyrantel pamoate
44559                                                                                                 fipronil, (s)-methoprene
44570                                                                                             ivermectin, pyrantel pamoate
44571                                                                                                 fipronil, (s)-methoprene
44576                                                                                             ivermectin, pyrantel pamoate
44577                                                                                                 fipronil, (s)-methoprene
44595                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
44607                                                                                    chlorhexidine gluconate, ketoconazole
44608                                                                                               milbemycin oxime, spinosad
44609                                                                                    chlorhexidine gluconate, ketoconazole
44616                                                                                              lufenuron, milbemycin oxime
44618                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44646                                                                                                               selamectin
44649                                                                                                               selamectin
44652                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44653                                                                                        betamethasone, gentamicin sulfate
44654                                                                                                 fipronil, (s)-methoprene
44655                                                                                                 flumethrin, imidacloprid
44658                                                                                                       calming supplement
44660                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44663                                                                                                     cefpodoxime proxetil
44671                                                                                               milbemycin oxime, spinosad
44672                                                                                               milbemycin oxime, spinosad
44677                                                                                               milbemycin oxime, spinosad
44679                                                                                                   acetaminophen, codeine
44683                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
44684                                                                                       joint supplement (glucosamine hcl)
44706                                                                                             oxytetracycline, polymyxin b
44732                                                                                              lufenuron, milbemycin oxime
44742                                                                                              lufenuron, milbemycin oxime
44743                                                                                                 fipronil, (s)-methoprene
44745                                                                                              lufenuron, milbemycin oxime
44746                                                                                              lufenuron, milbemycin oxime
44747                                                                                                 flumethrin, imidacloprid
44755                                                                                                                probiotic
44757                                                                                                                probiotic
44769                                                                                                 fipronil, (s)-methoprene
44771                                                                                                 fipronil, (s)-methoprene
44782                                                                                                         liver supplement
44795                                                                                             oxytetracycline, polymyxin b
44799                                                                                                                carprofen
44804                                                                                                                carprofen
44820                                                                                              lufenuron, milbemycin oxime
44827                                                                                                               ivermectin
44828                                                                                                               afoxolaner
44829                                                                                             ivermectin, pyrantel pamoate
44830                                                                                             ivermectin, pyrantel pamoate
44834                                                                             florfenicol, mometasone furoate, terbinafine
44843                                                                                             ivermectin, pyrantel pamoate
44844                                                                                                               afoxolaner
44857                                                                                        trimeprazine tartrate, prednisone
44858                                                                                        trimeprazine tartrate, prednisone
44862                                                                                                                  omega 3
44863                                                                                             ivermectin, pyrantel pamoate
44864                                                                                             ivermectin, pyrantel pamoate
44866                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
44867                                                                                                 imidacloprid, moxidectin
44868                                                                                                 imidacloprid, moxidectin
44869                                                                                                               afoxolaner
44875                                                                                              lufenuron, milbemycin oxime
44877                                                                                                         milbemycin oxime
44879                                                                                                         milbemycin oxime
44899                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
44905                                                                                                            metronidazole
44915                                                                                                 fipronil, (s)-methoprene
44916                                                                                             ivermectin, pyrantel pamoate
44917                                                                                               imidacloprid, pyriproxyfen
44918                                                                                             ivermectin, pyrantel pamoate
44920                                                                                               imidacloprid, pyriproxyfen
44922                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
44924                                                                                             ivermectin, pyrantel pamoate
44925                                                                                                 imidacloprid, permethrin
44933                                                                                           polysulfated glycosaminoglycan
44936                                                                                                               selamectin
44937                                                                                                               selamectin
44938                                                                                                               selamectin
44939                                                                                                               selamectin
44946                                                                                             ivermectin, pyrantel pamoate
44947                                                                                                               fluralaner
44949                                                                                             ivermectin, pyrantel pamoate
44950                                                                                                               fluralaner
44957                                                                                                               fluralaner
44958                                                                                             ivermectin, pyrantel pamoate
44997                                                                                                   rx diet - renal health
45005                                                                                                            levetiracetam
45007                                                                                                               afoxolaner
45014                                                                                               milbemycin oxime, spinosad
45017                                                                                                               lokivetmab
45023                                                                                                     prednisolone acetate
45027                                                                                   cyphenothrin, fipronil, (s)-methoprene
45034                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
45045                                                                                                               selamectin
45053                                                                                                               ivermectin
45054                                                                                                               afoxolaner
45055                                                                                                               afoxolaner
45059                                                                                                               ivermectin
45061                                                                                             ivermectin, pyrantel pamoate
45062                                                                                                                 spinosad
45063                                                                                               milbemycin oxime, spinosad
45064                                                                                               milbemycin oxime, spinosad
45066                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45072                                                                                               milbemycin oxime, spinosad
45073                                                                                               milbemycin oxime, spinosad
45076                                                                                                                probiotic
45116                                                                                                                carprofen
45117                                                                                                       calming supplement
45123                                                                                             ivermectin, pyrantel pamoate
45134                                                                                           sulfamethoxazole, trimethoprim
45139                                                                                             ivermectin, pyrantel pamoate
45149                                                                                              lufenuron, milbemycin oxime
45150                                                                                              lufenuron, milbemycin oxime
45154                                                                                              lufenuron, milbemycin oxime
45172                                                                               dimethyl sulfoxide, fluocinolone acetonide
45173                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
45174                                                                                                              bedinvetmab
45175                                                                                                               lokivetmab
45178                                                                                             ivermectin, pyrantel pamoate
45179                                                                                                 fipronil, (s)-methoprene
45180                                                                    acetic acid, boric acid, hydrocortisone, ketoconazole
45181                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
45182                                                                                             ivermectin, pyrantel pamoate
45185                                                                                                 fipronil, (s)-methoprene
45186                                                                                                         milbemycin oxime
45187                                                                                                                sarolaner
45188                                                                                                         milbemycin oxime
45189                                                                                                                sarolaner
45195                                                                                                               gabapentin
45199                                                                                                                trazodone
45208                                                                                        betamethasone, gentamicin sulfate
45209                                                                                           ketoconazole, phytosphingosine
45210                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45212                                                                                                         milbemycin oxime
45216                                                                                             ivermectin, pyrantel pamoate
45224                                                                                                  chlorhexidine gluconate
45225                                                                                             ivermectin, pyrantel pamoate
45236                                                                                             ivermectin, pyrantel pamoate
45255                                                                                               imidacloprid, pyriproxyfen
45263                                                                                                               afoxolaner
45268                                                                                                         milbemycin oxime
45273                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45280                                                                                             ivermectin, pyrantel pamoate
45283                                                                                             ivermectin, pyrantel pamoate
45286                                                                                             ivermectin, pyrantel pamoate
45294                                                                                               milbemycin oxime, spinosad
45295                                                                                                     digestive supplement
45297                                                                                                                meloxicam
45298                                                                                                               afoxolaner
45299                                                                                             ivermectin, pyrantel pamoate
45302                                                                                             ivermectin, pyrantel pamoate
45305                                                                                                                  taurine
45307                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
45309                                                                                                                  taurine
45310                                                                                             ivermectin, pyrantel pamoate
45311                                                                                                               afoxolaner
45312                                                                                                               afoxolaner
45313                                                                                             ivermectin, pyrantel pamoate
45322                                                                                       amoxicillin, clavulanate potassium
45327                                                                                                                carprofen
45335                                                                                              lufenuron, milbemycin oxime
45344                                                                                                                body sore
45345                                                                                                              liver happy
45358                                                                                                              liver happy
45359                                                                                                                body sore
45372                                                                          betamethasone, clotrimazole, gentamicin sulfate
45383                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45403                                                                                                                ophytrium
45406                                                                                              lufenuron, milbemycin oxime
45411                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
45425                                                                                             ivermectin, pyrantel pamoate
45426                                                                                            unspecified flea preventative
45434                                                                                                     cefpodoxime proxetil
45435                                                                                                     cefpodoxime proxetil
45443                                                                                             ivermectin, pyrantel pamoate
45445                                                                                             ivermectin, pyrantel pamoate
45451                                                                                                               ivermectin
45452                                                                                                               afoxolaner
45463                                                                                               milbemycin oxime, spinosad
45468                                                                                              lufenuron, milbemycin oxime
45470                                                                                               milbemycin oxime, spinosad
45471                                                                             dexamethasone, neomycin sulfate, polymyxin b
45476                                                                                               milbemycin oxime, spinosad
45479                                                                             dexamethasone, neomycin sulfate, polymyxin b
45480                                                                                               milbemycin oxime, spinosad
45484                                                                                               milbemycin oxime, spinosad
45503                                                                                        trimeprazine tartrate, prednisone
45504                                                                                              lufenuron, milbemycin oxime
45508                                                                                                                 fipronil
45531                                                                                                 imidacloprid, moxidectin
45534                                                                                               milbemycin oxime, spinosad
45555                                                                                                              coconut oil
45556                                                                                                               selamectin
45572                                                                                       fipronil, permethrin, pyriproxyfen
45582                                                                                                 fipronil, (s)-methoprene
45585                                                                                             ivermectin, pyrantel pamoate
45626                                                                                                         milbemycin oxime
45642                                                                                             ivermectin, pyrantel pamoate
45650                                                                                                               afoxolaner
45651                                                                                             ivermectin, pyrantel pamoate
45655                                                                                             ivermectin, pyrantel pamoate
45656                                                                                                               afoxolaner
45663                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45664                                                                                lufenuron, milbemycin oxime, praziquantel
45665                                                                                                   cyphenothrin, fipronil
45667                                                                                                   cyphenothrin, fipronil
45670                                                                                                         milbemycin oxime
45671                                                                                                                lotilaner
45675                                                                         dexamethasone, enrofloxacin, silver sulfadiazine
45676                                                                           mometasone furoate, orbifloxacin, posaconazole
45683                                                                                              lufenuron, milbemycin oxime
45699                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45700                                                                                                  acetic acid, boric acid
45704                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
45724                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
45725                                                                                                                probiotic
45726                                                                                                   joint supplement (msm)
45727                                                                                                                  omega 3
45728                                                                                                 joint supplement (other)
45729                                                                                                               cetirizine
45735                                                                                             ivermectin, pyrantel pamoate
45736                                                                                                 fipronil, (s)-methoprene
45751                                                                                                 fipronil, (s)-methoprene
45764                                                                                             ivermectin, pyrantel pamoate
45775                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
45776                                                                             florfenicol, mometasone furoate, terbinafine
45787                                                                                                 fipronil, (s)-methoprene
45791                                                                                              lufenuron, milbemycin oxime
45798                                                                                                         milbemycin oxime
45799                                                                                                         milbemycin oxime
45800                                                                                                                lotilaner
45816                                                                                                 flumethrin, imidacloprid
45820                                                                                             ivermectin, pyrantel pamoate
45843                                                                                                          povidone-iodine
45853                                                                                                               isoflurane
45862                                                                                                         milbemycin oxime
45863                                                                                                               afoxolaner
45864                                                                                                               fluralaner
45869                                                                                           milbemycin oxime, praziquantel
45872                                                                                                               fluralaner
45876                                                                                               milbemycin oxime, spinosad
45898                                                                                                         milbemycin oxime
45899                                                                                               imidacloprid, pyriproxyfen
45901                                                                                           milbemycin oxime, praziquantel
45908                                                                                                         milbemycin oxime
45909                                                                                                 imidacloprid, permethrin
45914                                                                                           milbemycin oxime, praziquantel
45924                                                                                             ivermectin, pyrantel pamoate
45968                                                                                              lufenuron, milbemycin oxime
45969                                                                                              lufenuron, milbemycin oxime
45970                                                                                                               afoxolaner
45971                                                                                              lufenuron, milbemycin oxime
45990                                                                                               milbemycin oxime, spinosad
45994                                                                                                 imidacloprid, permethrin
45995                                                                                                                probiotic
45996                                                                                              chloroxylenol, ketoconazole
45997                                                                                                         milbemycin oxime
46014                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46018                                                                                             ivermectin, pyrantel pamoate
46019                                                                                                               afoxolaner
46021                                                                                             ivermectin, pyrantel pamoate
46022                                                                                                               afoxolaner
46025                                                                                             ivermectin, pyrantel pamoate
46043                                                                                                               ivermectin
46044                                                                                                               afoxolaner
46075                                                                                             ivermectin, pyrantel pamoate
46076                                                                                                         milbemycin oxime
46078                                                                                                         milbemycin oxime
46085                                                                                        betamethasone, gentamicin sulfate
46091                                                                                             ivermectin, pyrantel pamoate
46092                                                                               ivermectin, praziquantel, pyrantel pamoate
46094                                                                                                         milbemycin oxime
46095                                                                                           milbemycin oxime, praziquantel
46100                                                                                                               ivermectin
46107                                                                                             ivermectin, pyrantel pamoate
46108                                                                                                               lokivetmab
46110                                                                                             ivermectin, pyrantel pamoate
46116                                                                               ivermectin, praziquantel, pyrantel pamoate
46119                                                                               ivermectin, praziquantel, pyrantel pamoate
46122                                                                               ivermectin, praziquantel, pyrantel pamoate
46131                                                                           mometasone furoate, orbifloxacin, posaconazole
46132                                                                                                                ofloxacin
46134                                                                                                                probiotic
46170                                                                                    dinotefuran, permethrin, pyriproxyfen
46171                                                                                                  ketoconazole, tris-edta
46173                                                                                    dinotefuran, permethrin, pyriproxyfen
46174                                                                                                         milbemycin oxime
46186                                                                                                                probiotic
46198                                                                                             ivermectin, pyrantel pamoate
46200                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46201                                                                               toothpaste/dental health solution or chews
46202                                                                                             ivermectin, pyrantel pamoate
46213                                                                                                 imidacloprid, permethrin
46218                                                                                                         milbemycin oxime
46219                                                                                                               afoxolaner
46227                                                                                                               afoxolaner
46255                                                                                           ketoconazole, phytosphingosine
46265                                                                                                              hydrocodone
46277                                                                                             ivermectin, pyrantel pamoate
46278                                                                                                               afoxolaner
46287                                                                                             ivermectin, pyrantel pamoate
46288                                                                                                               afoxolaner
46291                                                                                             ivermectin, pyrantel pamoate
46292                                                                                             ivermectin, pyrantel pamoate
46293                                                                                                               afoxolaner
46295                                                                                             ivermectin, pyrantel pamoate
46296                                                                                                               afoxolaner
46303                                                                                              lufenuron, milbemycin oxime
46305                                                                                              lufenuron, milbemycin oxime
46308                                                                                              lufenuron, milbemycin oxime
46311                                                                                           polysulfated glycosaminoglycan
46312                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46313                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46314                                                                                                                  omega 3
46319                                                                                      ear cleaner (zymox), hydrocortisone
46320                                                                                                         milbemycin oxime
46324                                                                                                      ear cleaner (zymox)
46325                                                                                                         milbemycin oxime
46345                                                                                             ivermectin, pyrantel pamoate
46350                                                                                           milbemycin oxime, praziquantel
46355                                                                                           milbemycin oxime, praziquantel
46358                                                                               dextromethorphan hydrobromide, guaifenesin
46360                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
46377                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
46379                                                                                               milbemycin oxime, spinosad
46399                                                                                               milbemycin oxime, spinosad
46406                                                                                                unspecified otic ear pack
46410                                                                                                               ivermectin
46411                                                                                                 imidacloprid, permethrin
46413                                                                                                 flumethrin, imidacloprid
46418                                                                                                 flumethrin, imidacloprid
46424                                                                                                 flumethrin, imidacloprid
46431                                                                                                 flumethrin, imidacloprid
46435                                                                                             ivermectin, pyrantel pamoate
46436                                                                                                 flumethrin, imidacloprid
46474                                                                                                               ivermectin
46475                                                                                    dinotefuran, permethrin, pyriproxyfen
46476                                                                                                         milbemycin oxime
46478                                                                                             ivermectin, pyrantel pamoate
46479                                                                               ivermectin, praziquantel, pyrantel pamoate
46482                                                                                             ivermectin, pyrantel pamoate
46483                                                                                    dinotefuran, permethrin, pyriproxyfen
46486                                                                                                               afoxolaner
46487                                                                                             ivermectin, pyrantel pamoate
46488                                                                                                               ivermectin
46489                                                                                             ivermectin, pyrantel pamoate
46490                                                                                             ivermectin, pyrantel pamoate
46493                                                                                              lufenuron, milbemycin oxime
46494                                                                                           milbemycin oxime, praziquantel
46499                                                                                                         milbemycin oxime
46504                                                                                                  chlorhexidine gluconate
46505                                                                               chloroxylenol, lactic acid, salicylic acid
46506                                                                           dexamethasone, neomycin sulfate, thiabendazole
46512                                                                                                               ivermectin
46517                                                                                                                probiotic
46521                                                                                        dexamethasone, miconazole nitrate
46526                                                                             dexamethasone, neomycin sulfate, polymyxin b
46528                                                                                                 fipronil, (s)-methoprene
46530                                                                                                  ketoconazole, tris-edta
46532                                                                                                         milbemycin oxime
46533                                                                             dexamethasone, neomycin sulfate, polymyxin b
46544                                                                                                         milbemycin oxime
46547                                                                                                 fipronil, (s)-methoprene
46551                                                                          betamethasone, clotrimazole, gentamicin sulfate
46553                                                                             florfenicol, mometasone furoate, terbinafine
46555                                                                                                                pramoxine
46568                                                                                             ivermectin, pyrantel pamoate
46569                                                                                               imidacloprid, pyriproxyfen
46570                                                                                 febantel, praziquantel, pyrantel pamoate
46571                                                                                               imidacloprid, pyriproxyfen
46572                                                                                             ivermectin, pyrantel pamoate
46573                                                                                             ivermectin, pyrantel pamoate
46574                                                                                               imidacloprid, pyriproxyfen
46575                                                                                             ivermectin, pyrantel pamoate
46579                                                                                                 imidacloprid, permethrin
46588                                                                                                               selamectin
46591                                                                                             ivermectin, pyrantel pamoate
46593                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46606                    dexamethasone, miconazole nitrate, neomycin sulfate, polymyxin b, prednisolone acetate, thiabendazole
46607                                                                                                               gabapentin
46615                                                                                                               fluralaner
46616                                                                                              lufenuron, milbemycin oxime
46617                                                                                              lufenuron, milbemycin oxime
46618                                                                                              lufenuron, milbemycin oxime
46676                                                                         chlorhexidine gluconate, ketoconazole, tris-edta
46680                                                                                               imidacloprid, pyriproxyfen
46687                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
46690                                                                                        betamethasone, gentamicin sulfate
46694                                                                                                               selamectin
46702                                                                                        betamethasone, gentamicin sulfate
46703                                                                                       chlorhexidine gluconate, ophytrium
46716                                                                                               milbemycin oxime, spinosad
46717                                                                                               milbemycin oxime, spinosad
46729                                                                                             ivermectin, pyrantel pamoate
46730                                                                                             ivermectin, pyrantel pamoate
46732                                                                                      allergy immunotherapy - unspecified
46737                                                                                                       calming supplement
46747                                                                                                                ophytrium
46753                                                                                        betamethasone, gentamicin sulfate
46763                                                                                                                carprofen
46766                                                                                                                deracoxib
46767                                                                                              lufenuron, milbemycin oxime
46775                                                                                             ivermectin, pyrantel pamoate
46776                                                                                                               afoxolaner
46777                                                                                           praziquantel, pyrantel pamoate
46783                                                                                                         phytosphingosine
46786                                                                                             ivermectin, pyrantel pamoate
46788                                                                                             ivermectin, pyrantel pamoate
46789                                                                                                               afoxolaner
46811                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
46812                                                                                             ivermectin, pyrantel pamoate
46816                                                                                             ivermectin, pyrantel pamoate
46827                                                                             dexamethasone, neomycin sulfate, polymyxin b
46849                                                                                             ivermectin, pyrantel pamoate
46853                                                                                             ivermectin, pyrantel pamoate
46874                                                                                             oxytetracycline, polymyxin b
46880                                                                                                            oxymetazoline
46883                                                                                                         milbemycin oxime
46884                                                                                                         milbemycin oxime
46885                                                                                                                lotilaner
46889                                                                                           sulfamethoxazole, trimethoprim
46891                                                                                           sulfamethoxazole, trimethoprim
46902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46903                                                                                               imidacloprid, pyriproxyfen
46904                                                                                             ivermectin, pyrantel pamoate
46905                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
46908                                                                                        betamethasone, gentamicin sulfate
46915                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
46931                                                                                                                probiotic
46938                                                                                                                probiotic
46944                                                                                                                probiotic
46961                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
46962                                          carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
46972                                                                                             ivermectin, pyrantel pamoate
46973                                                                                             ivermectin, pyrantel pamoate
46977                                                                                                 fipronil, (s)-methoprene
46981                                                                          betamethasone, clotrimazole, gentamicin sulfate
46982                                                                                                  ketoconazole, tris-edta
46983                                                                                                 fipronil, (s)-methoprene
46984                                                                                                 fipronil, (s)-methoprene
46985                                                                                             ivermectin, pyrantel pamoate
46986                                                                                             ivermectin, pyrantel pamoate
47000                                                                                                                sarolaner
47004                                                                                              lufenuron, milbemycin oxime
47010                                                                                              lufenuron, milbemycin oxime
47011                                                                                                               afoxolaner
47018                                                                                                         milbemycin oxime
47024                                                                                                         milbemycin oxime
47025                                                                                                                sarolaner
47041                                                                                              lufenuron, milbemycin oxime
47043                                                                                              lufenuron, milbemycin oxime
47049                                                                                                               selamectin
47060                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47076                                                                   gentamicin sulfate, hydrocortisone, miconazole nitrate
47080                                                                                                                  omega 3
47081                                                                                                immune support supplement
47085                                                                                             ivermectin, pyrantel pamoate
47086                                                                                                               afoxolaner
47090                                                                                        betamethasone, gentamicin sulfate
47095                                                                                               milbemycin oxime, spinosad
47096                                                                                             ivermectin, pyrantel pamoate
47097                                                                                                               afoxolaner
47098                                                               benzoyl peroxide, phytosphingosine, salicylic acid, sulfur
47104                                                                          betamethasone, clotrimazole, gentamicin sulfate
47105                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47106                                                                                    dinotefuran, permethrin, pyriproxyfen
47125                                                                                             ivermectin, pyrantel pamoate
47126                                                                                                               fluralaner
47128                                                                                        trimeprazine tartrate, prednisone
47137                                                                           mometasone furoate, orbifloxacin, posaconazole
47140                                                                                                               selamectin
47143                                                                                                               selamectin
47146                                                                                                               selamectin
47152                                                                          betamethasone, clotrimazole, gentamicin sulfate
47154                                                                                             ivermectin, pyrantel pamoate
47155                                                                                             ivermectin, pyrantel pamoate
47156                                                                                                               fluralaner
47162                                                                                                               indoxacarb
47164                                                                                                               indoxacarb
47178                                                                                             ivermectin, pyrantel pamoate
47180                                                                          betamethasone, clotrimazole, gentamicin sulfate
47183                                                                                                               fluralaner
47184                                                                                              lufenuron, milbemycin oxime
47193                                                                                             ivermectin, pyrantel pamoate
47194                                                                                                 fipronil, (s)-methoprene
47196                                                                                                 fipronil, (s)-methoprene
47197                                                                                             ivermectin, pyrantel pamoate
47204                                                                                                   unspecified medication
47208                                                                                                            yunnan baiyao
47209                                                                                              lufenuron, milbemycin oxime
47210                                                                                                         milbemycin oxime
47220                                                                                                 flumethrin, imidacloprid
47221                                                                                                     cefpodoxime proxetil
47222                                                                                        betamethasone, gentamicin sulfate
47240                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47248                                                                                                         pyrantel pamoate
47251                                                                                                             fenbendazole
47253                                                                                                         milbemycin oxime
47260                                                                                                         milbemycin oxime
47302                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
47323                                                                                                         milbemycin oxime
47325                                                                                           milbemycin oxime, praziquantel
47334                                                                                           milbemycin oxime, praziquantel
47343                                                                                                         milbemycin oxime
47345                                                                                           milbemycin oxime, praziquantel
47350                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47355                                                                                                      silver sulfadiazine
47360                                                                                                                probiotic
47390                                                                                             ivermectin, pyrantel pamoate
47407                                                                                                               prednisone
47409                                                                                                         milbemycin oxime
47411                                                                                                               afoxolaner
47412                                                                                           milbemycin oxime, praziquantel
47415                                                                                                                sarolaner
47416                                                                                                         milbemycin oxime
47417                                                                                                                sarolaner
47420                                                                                                         milbemycin oxime
47421                                                                                                                sarolaner
47433                                                                                             ivermectin, pyrantel pamoate
47439                                                                                        trimeprazine tartrate, prednisone
47451                                                                                             ivermectin, pyrantel pamoate
47478                                                                                lufenuron, milbemycin oxime, praziquantel
47479                                                                                              lufenuron, milbemycin oxime
47483                                                                                          ear cleaner (epi-otic advanced)
47484                                                                                                 flumethrin, imidacloprid
47486                                                                                                 flumethrin, imidacloprid
47493                                                                                                 flumethrin, imidacloprid
47496                                                                                                   unspecified medication
47497                                                                                                               ivermectin
47498                                                                                                 flumethrin, imidacloprid
47539                                                                                                 imidacloprid, permethrin
47540                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47544                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47547                                                                                              betamethasone, enrofloxacin
47557                                                                                                 flumethrin, imidacloprid
47562                                                                                                         milbemycin oxime
47563                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47576                                                                                    dinotefuran, permethrin, pyriproxyfen
47577                                                                                             ivermectin, pyrantel pamoate
47578                                                                                             ivermectin, pyrantel pamoate
47586                                                                                             ivermectin, pyrantel pamoate
47587                                                                                    dinotefuran, permethrin, pyriproxyfen
47588                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
47589                                                                                                         milbemycin oxime
47590                                                                                    dinotefuran, permethrin, pyriproxyfen
47592                                                                                                         milbemycin oxime
47593                                                                                    dinotefuran, permethrin, pyriproxyfen
47594                                                                                                               ivermectin
47595                                                                                    dinotefuran, permethrin, pyriproxyfen
47597                                                                                                 imidacloprid, moxidectin
47600                                                                                                 imidacloprid, moxidectin
47628                                                                                                 fipronil, (s)-methoprene
47629                                                                                             ivermectin, pyrantel pamoate
47630                                                                                               imidacloprid, pyriproxyfen
47635                                                                                                 imidacloprid, permethrin
47636                                                                                                               ivermectin
47658                                                                             florfenicol, mometasone furoate, terbinafine
47681                                                                                             ivermectin, pyrantel pamoate
47684                                                                                        betamethasone, gentamicin sulfate
47693                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47694                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47696                                                                                             ivermectin, pyrantel pamoate
47698                                                                       acetic acid, chlorhexidine gluconate, ketoconazole
47699                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47702                                                                                                       miconazole nitrate
47706                                                                                               milbemycin oxime, spinosad
47715                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47716                                                                                                  ketoconazole, tris-edta
47720                                                                                                  ketoconazole, tris-edta
47721                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47733                                                                                               milbemycin oxime, spinosad
47734                                                                             dexamethasone, neomycin sulfate, polymyxin b
47739                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47743                                                                                              lufenuron, milbemycin oxime
47744                                                                                              lufenuron, milbemycin oxime
47745                                                                                              lufenuron, milbemycin oxime
47746                                                                                              lufenuron, milbemycin oxime
47752                                                                             florfenicol, mometasone furoate, terbinafine
47755                                                                                                 fipronil, (s)-methoprene
47760                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
47800                                                                                             ivermectin, pyrantel pamoate
47801                                                                                                 fipronil, (s)-methoprene
47802                                                                                             ivermectin, pyrantel pamoate
47803                                                                                                 fipronil, (s)-methoprene
47808                                                                                             ivermectin, pyrantel pamoate
47810                                                                                                               afoxolaner
47811                                                                                             ivermectin, pyrantel pamoate
47812                                                                                                               afoxolaner
47815                                                                                             ivermectin, pyrantel pamoate
47816                                                                                                               afoxolaner
47817                                                                               clinical trial - cancer prevention vaccine
47825                                                                                                            yunnan baiyao
47835                                                                                lufenuron, milbemycin oxime, praziquantel
47836                                                                                lufenuron, milbemycin oxime, praziquantel
47840                                                                                lufenuron, milbemycin oxime, praziquantel
47860                                                                                                               fluralaner
47861                                                                                                    clorsulon, ivermectin
47877                                                                                                  triamcinolone acetonide
47887                                                                                                               fluralaner
47888                                                                                             ivermectin, pyrantel pamoate
47889                                                                                                                  omega 3
47890                                                                                       joint supplement (glucosamine hcl)
47891                                                                                                                probiotic
47894                                                                                        trimeprazine tartrate, prednisone
47900                                                                                        betamethasone, gentamicin sulfate
47910                                                                             florfenicol, mometasone furoate, terbinafine
47951                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
47952                                                                                                     cefpodoxime proxetil
47953                                                                                        betamethasone, gentamicin sulfate
47971                                                                                              lufenuron, milbemycin oxime
47975                                                                                lufenuron, milbemycin oxime, praziquantel
47976                                                                                              lufenuron, milbemycin oxime
47981                                                                                                         milbemycin oxime
47983                                                                                           milbemycin oxime, praziquantel
47984                                                                                       fipronil, permethrin, pyriproxyfen
47985                                                                                              lufenuron, milbemycin oxime
47989                                                                                              lufenuron, milbemycin oxime
47990                                                                                               imidacloprid, pyriproxyfen
47995                                                                      isoflupredone acetate, neomycin sulfate, tetracaine
47998                                                                                                       maropitant citrate
48001                                                                                                             enrofloxacin
48007                                                                                                                  sotalol
48013                                                                                                               afoxolaner
48014                                                                                                               afoxolaner
48016                                                                    miconazole nitrate, polymyxin b, prednisolone acetate
48020                                                                                             ivermectin, pyrantel pamoate
48021                                                                                                               afoxolaner
48028                                                                                             ivermectin, pyrantel pamoate
48029                                                                                                               afoxolaner
48031                                                                                                                  omega 3
48034                                                                                                     digestive supplement
48035                                                                                                                probiotic
48040                                                                                             ivermectin, pyrantel pamoate
48041                                                                                                               afoxolaner
48046                                                                                             ivermectin, pyrantel pamoate
48047                                                                                                               afoxolaner
48049                                                                                                                  omega 3
48069                                                                                                         tylosin tartrate
48072                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48087                                                                                             ivermectin, pyrantel pamoate
48088                                                                                                               fluralaner
48089                                                                                                                probiotic
48090                                                                                                                  omega 3
48094                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
48100                                                                             dexamethasone, neomycin sulfate, polymyxin b
48101                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48102                                                                                             ivermectin, pyrantel pamoate
48103                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48105                                                                                             ivermectin, pyrantel pamoate
48106                                                                                                 flumethrin, imidacloprid
48107                                                                  chlorhexidine gluconate, ketoconazole, phytosphingosine
48108                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48109                                                                                           milbemycin oxime, praziquantel
48110                                                                                                 flumethrin, imidacloprid
48114                                                                                      ear cleaner (zymox), hydrocortisone
48120                                                                                              lufenuron, milbemycin oxime
48121                                                                                               imidacloprid, pyriproxyfen
48127                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48131                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48142                                                                                              lufenuron, milbemycin oxime
48143                                                                                               imidacloprid, pyriproxyfen
48147                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48148                                                                                              lufenuron, milbemycin oxime
48155                                                                                              lufenuron, milbemycin oxime
48157                                                                                             ivermectin, pyrantel pamoate
48158                                                                                                               fluralaner
48159                                                                                             ivermectin, pyrantel pamoate
48160                                                                                                               fluralaner
48163                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48167                                                                                                               ivermectin
48169                                                                                                                trazodone
48182                                                                                             ivermectin, pyrantel pamoate
48185                                                                                                         sulfadimethoxine
48188                                                                          betamethasone, clotrimazole, gentamicin sulfate
48201                                                                          betamethasone, clotrimazole, gentamicin sulfate
48213                                                                                                         phytosphingosine
48214                                                                                                               afoxolaner
48215                                                                                             ivermectin, pyrantel pamoate
48217                                                                                             ivermectin, pyrantel pamoate
48220                                                                                                               ampicillin
48221                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48222                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48231                                                                                              lufenuron, milbemycin oxime
48237                                                                             dexamethasone, neomycin sulfate, polymyxin b
48238                                                                                              lufenuron, milbemycin oxime
48240                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48248                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48251                                                                                                         milbemycin oxime
48252                                                                                                               afoxolaner
48258                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
48265                                                                          betamethasone, clotrimazole, gentamicin sulfate
48266                                                                                                      sodium hypochlorite
48267                                                                          betamethasone, clotrimazole, gentamicin sulfate
48271                                                                                              lufenuron, milbemycin oxime
48274                                                                                                 imidacloprid, permethrin
48277                                                                                                 fipronil, (s)-methoprene
48285                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48287                                                                                                          interferon alfa
48288                                                                                      ear cleaner (zymox), hydrocortisone
48289                                                                                             ivermectin, pyrantel pamoate
48291                                                           bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
48292                                                                                             ivermectin, pyrantel pamoate
48294                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48297                                                                                             ivermectin, pyrantel pamoate
48298                                                                                                               afoxolaner
48299                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48300                                                                                             ivermectin, pyrantel pamoate
48306                                                                                              lufenuron, milbemycin oxime
48307                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
48310                                                                                              lufenuron, milbemycin oxime
48314                                                                                                              omega 3-6-9
48327                                                                                                 fipronil, (s)-methoprene
48334                                                                                                  triamcinolone acetonide
48336                                                                                        betamethasone, gentamicin sulfate
48337                                                                                                            dexamethasone
48338                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48339                                                                           dexamethasone, neomycin sulfate, thiabendazole
48342                                                                                                            dexamethasone
48343                                                                                        betamethasone, gentamicin sulfate
48344                                                                                              lufenuron, milbemycin oxime
48345                                                                             dexamethasone, neomycin sulfate, polymyxin b
48350                                                                                                                 ketamine
48351                                                                                                                 diazepam
48352                                                                                                             acepromazine
48353                                                                                                         atropine sulfate
48354                                                                                                            buprenorphine
48355                                                                                                               isoflurane
48376                                                                                                            dexamethasone
48383                                                                                                               afoxolaner
48384                                                                                             ivermectin, pyrantel pamoate
48394                                                                           mometasone furoate, orbifloxacin, posaconazole
48406                                                                                                                probiotic
48420                                                                                           sulfamethoxazole, trimethoprim
48438                                                                               ivermectin, praziquantel, pyrantel pamoate
48439                                                                                           milbemycin oxime, praziquantel
48441                                                                                             ivermectin, pyrantel pamoate
48442                                                                                                               fluralaner
48444                                                                                             ivermectin, pyrantel pamoate
48447                                                                                             ivermectin, pyrantel pamoate
48448                                                                                                               afoxolaner
48481                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48483                                                                                                      silver sulfadiazine
48496                                                                                                               fluralaner
48497                                                                                                          dexmedetomidine
48498                                                                                                         milbemycin oxime
48500                                                                                                         milbemycin oxime
48502                                                                                                            metronidazole
48504                                                                                                         milbemycin oxime
48505                                                                                                               fluralaner
48513                                                                                              lufenuron, milbemycin oxime
48540                                                                                              lufenuron, milbemycin oxime
48541                                                                                              lufenuron, milbemycin oxime
48542                                                                                                               fluralaner
48598                                                                                              lufenuron, milbemycin oxime
48602                                                                                                     prednisolone acetate
48610                                                                                                               ivermectin
48611                                                                                             ivermectin, pyrantel pamoate
48615                                                                                             ivermectin, pyrantel pamoate
48621                                                                                        betamethasone, gentamicin sulfate
48624                                                                                        betamethasone, gentamicin sulfate
48633                                                                                        betamethasone, gentamicin sulfate
48636                                                                                                                mupirocin
48661                                                                                                               ivermectin
48664                                                                                             ivermectin, pyrantel pamoate
48667                                                                                             ivermectin, pyrantel pamoate
48668                                                                                                 fipronil, (s)-methoprene
48673                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
48680                                                                                                               afoxolaner
48683                                                                                                 imidacloprid, permethrin
48684                                                                                             ivermectin, pyrantel pamoate
48692                                                                                                     cefpodoxime proxetil
48693                                                                                                                carprofen
48694                                                                           dexamethasone, neomycin sulfate, thiabendazole
48696                                                                                             ivermectin, pyrantel pamoate
48697                                                                                                               afoxolaner
48698                                                                                                 fipronil, (s)-methoprene
48712                                                                                             ivermectin, pyrantel pamoate
48713                                                                                                               afoxolaner
48718                                                                               ivermectin, praziquantel, pyrantel pamoate
48719                                                                             dexamethasone, neomycin sulfate, polymyxin b
48721                                                                                                         milbemycin oxime
48722                                                                                                 flumethrin, imidacloprid
48724                                                                                           milbemycin oxime, praziquantel
48725                                                                                                 flumethrin, imidacloprid
48729                                                                                           milbemycin oxime, praziquantel
48733                                                                                                               fluralaner
48734                                                                                           milbemycin oxime, praziquantel
48735                                                                                                               afoxolaner
48736                                                                                                 flumethrin, imidacloprid
48770                                                                             dexamethasone, neomycin sulfate, polymyxin b
48782                                                                                                 flumethrin, imidacloprid
48802                                                                             dexamethasone, neomycin sulfate, polymyxin b
48806                                                                          betamethasone, clotrimazole, gentamicin sulfate
48808                                                                          betamethasone, clotrimazole, gentamicin sulfate
48812                                                                                                 fipronil, (s)-methoprene
48819                                                                                              lufenuron, milbemycin oxime
48821                                                                                              lufenuron, milbemycin oxime
48845                                                                                             ivermectin, pyrantel pamoate
48855                                                                                               milbemycin oxime, spinosad
48859                                                                                          atropine sulfate, diphenoxylate
48862                                                                               dextromethorphan hydrobromide, guaifenesin
48889                                                                                                                probiotic
48890                                                                                             ivermectin, pyrantel pamoate
48891                                                                                                               fluralaner
48892                                                                          betamethasone, clotrimazole, gentamicin sulfate
48894                                                                                           milbemycin oxime, praziquantel
48902                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48906                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
48918                                                                                                 fipronil, (s)-methoprene
48935                                                                                                               ivermectin
48946                                                                                 febantel, praziquantel, pyrantel pamoate
48994                                                                                                 imidacloprid, moxidectin
48997                                                                                                 joint supplement (other)
49002                                                                                             ivermectin, pyrantel pamoate
49005                                                                                        betamethasone, gentamicin sulfate
49012                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
49016                                                                                   cyphenothrin, fipronil, (s)-methoprene
49017                                                                                             ivermectin, pyrantel pamoate
49018                                                                                                               nitenpyram
49025                                                                                             ivermectin, pyrantel pamoate
49026                                                                                   fipronil, pyriproxyfen, (s)-methoprene
49033                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49034                                                                                             ivermectin, pyrantel pamoate
49035                                                                                                               fluralaner
49036                                                                                                                  omega 3
49042                                                                                    chlorhexidine gluconate, ketoconazole
49044                                                            bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
49046                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49051                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49052                                                                             dexamethasone, neomycin sulfate, polymyxin b
49082                                                                                             ivermectin, pyrantel pamoate
49084                                                                                             ivermectin, pyrantel pamoate
49096                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49105                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49113                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49117                                                                                             ivermectin, pyrantel pamoate
49120                                                                                           sulfamethoxazole, trimethoprim
49123                                                                                               milbemycin oxime, spinosad
49127                                                                              mebendazole, praziquantel, pyrantel pamoate
49128                                                                                                               ivermectin
49129                                                                                                               afoxolaner
49130                                                                           beclomethasone, clotrimazole, neomycin sulfate
49163                                                                                        allergy immunotherapy - injection
49164                                                                                             ivermectin, pyrantel pamoate
49167                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49168                                                                                                   unspecified medication
49169                                                                                             ivermectin, pyrantel pamoate
49170                                                                                                 flumethrin, imidacloprid
49184                                                                                                                 fipronil
49193                                                                                                         liver supplement
49196                                                                                 febantel, praziquantel, pyrantel pamoate
49208                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49209                                                                                                          cbd or hemp oil
49216                                                                                               milbemycin oxime, spinosad
49217                                                                                               milbemycin oxime, spinosad
49218                                                                                               milbemycin oxime, spinosad
49219                                                                                               milbemycin oxime, spinosad
49220                                                                                               milbemycin oxime, spinosad
49227                                                                                                               benzocaine
49229                                                                                                               benzocaine
49231                                                                                         burow's solution, hydrocortisone
49232                                                                             dexamethasone, neomycin sulfate, polymyxin b
49248                                                                               ivermectin, praziquantel, pyrantel pamoate
49252                                                                                              lufenuron, milbemycin oxime
49253                                                                                                                sarolaner
49316                                                                                             ivermectin, pyrantel pamoate
49323                                                                                                 fipronil, (s)-methoprene
49324                                                                                             ivermectin, pyrantel pamoate
49343                                                                                              lufenuron, milbemycin oxime
49346                                                                                              lufenuron, milbemycin oxime
49348                                                                                              lufenuron, milbemycin oxime
49350                                                                                              lufenuron, milbemycin oxime
49351                                                                                                               afoxolaner
49352                                                                                              lufenuron, milbemycin oxime
49376                                                                                              lufenuron, milbemycin oxime
49377                                                                                                 fipronil, (s)-methoprene
49378                                                                                              lufenuron, milbemycin oxime
49379                                                                                               imidacloprid, pyriproxyfen
49388                                                                                              lufenuron, milbemycin oxime
49393                                                                             florfenicol, mometasone furoate, terbinafine
49394                                                                             florfenicol, mometasone furoate, terbinafine
49395                                                                      enrofloxacin, ketoconazole, triamcinolone acetonide
49398                                                                                                    gabapentin, trazodone
49403                                                                                           milbemycin oxime, praziquantel
49404                                                                                                               fluralaner
49408                                                                                             ivermectin, pyrantel pamoate
49409                                                                                                               afoxolaner
49437                                                                                                               afoxolaner
49438                                                                                             ivermectin, pyrantel pamoate
49442                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49460                                                                                    dinotefuran, permethrin, pyriproxyfen
49461                                                                                             ivermectin, pyrantel pamoate
49462                                                                                   joint supplement (glucosamine hcl/msm)
49463                                                                                             ivermectin, pyrantel pamoate
49473                                                                                                         milbemycin oxime
49509                                                                                               imidacloprid, pyriproxyfen
49510                                                                                             ivermectin, pyrantel pamoate
49518                                                                                             ivermectin, pyrantel pamoate
49520                                                                             florfenicol, mometasone furoate, terbinafine
49523                                                                                             ivermectin, pyrantel pamoate
49526                                                                    chlorhexidine gluconate, climbazole, phytosphingosine
49531                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49549                                                                                             ivermectin, pyrantel pamoate
49550                                                                                                               afoxolaner
49553                                                                                             ivermectin, pyrantel pamoate
49554                                                                                                               afoxolaner
49567                                                                                             ivermectin, pyrantel pamoate
49568                                                                                                               isoflurane
49572                                                                                             ivermectin, pyrantel pamoate
49588                                                                                             ivermectin, pyrantel pamoate
49590                                                                                               imidacloprid, pyriproxyfen
49591                                                                                             ivermectin, pyrantel pamoate
49593                                                                                              lufenuron, milbemycin oxime
49596                                                                                                               selamectin
49601                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49607                                                                                               milbemycin oxime, spinosad
49645                                                                                             ivermectin, pyrantel pamoate
49649                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49654                                                                           bacitracin zinc, neomycin sulfate, polymyxin b
49659                                                                             dexamethasone, neomycin sulfate, polymyxin b
49698                                                                                               milbemycin oxime, spinosad
49699                                                                                               imidacloprid, pyriproxyfen
49705                                                                              joint supplement (glucosamine hcl), omega 3
49748                                                                                                 imidacloprid, permethrin
49753                                                                                               imidacloprid, pyriproxyfen
49754                                                                                                 fipronil, (s)-methoprene
49755                                                                                                         milbemycin oxime
49756                                                                                                 fipronil, (s)-methoprene
49757                                                                                                         milbemycin oxime
49758                                                                                                         milbemycin oxime
49766                                                                                                  chlorhexidine gluconate
49767                                                                                                 fipronil, (s)-methoprene
49768                                                                                                               ivermectin
49769                                                                                                  chlorhexidine gluconate
49773                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
49792                                                                                             ivermectin, pyrantel pamoate
49793                                                                                                               afoxolaner
49799                                                                   joint supplement (chondroitin sulfate/glucosamine hcl)
49812                                                                             florfenicol, mometasone furoate, terbinafine
49849                                                                                    dinotefuran, permethrin, pyriproxyfen
49854                                                                                    dinotefuran, permethrin, pyriproxyfen
49855                                                                                                                probiotic
49857                                                                                    dinotefuran, permethrin, pyriproxyfen
49861                                                                                    dinotefuran, permethrin, pyriproxyfen
49862                                                                                    dinotefuran, permethrin, pyriproxyfen
49871                                                                                                             fenbendazole
49878                                                                                                               ivermectin
49883                                                                                                                probiotic
49886                                                                                             ivermectin, pyrantel pamoate
49889                                                                                             ivermectin, pyrantel pamoate
49890                                                                                    dinotefuran, permethrin, pyriproxyfen
49898                                                                                                             fenbendazole
49905                                                                                                               ivermectin
49906                                                                                                  acetic acid, boric acid
49907                                                                                           milbemycin oxime, praziquantel
49908                                                                                             ivermectin, pyrantel pamoate
49911                                                                                             ivermectin, pyrantel pamoate
49912                                                                                    dinotefuran, permethrin, pyriproxyfen
49963                                                                                             ivermectin, pyrantel pamoate
49966                                                                             dexamethasone, neomycin sulfate, polymyxin b
49978                                                                                              lufenuron, milbemycin oxime
49985                                                                                              lufenuron, milbemycin oxime
49986                                                                                                 fipronil, (s)-methoprene
49987                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49990                                                                                                                probiotic
49991                                                                                              lufenuron, milbemycin oxime
49992                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
49993                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
49996                                                                                                                 propofol
50001                                                                                              lufenuron, milbemycin oxime
50004                                                                                              lufenuron, milbemycin oxime
50006                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50007                                                                                                                  omega 3
50008                                                                                              lufenuron, milbemycin oxime
50009                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50011                                                                                                 fipronil, (s)-methoprene
50012                                                                                                                  omega 3
50014                                                               joint supplement (chondroitin sulfate/glucosamine hcl/msm)
50048                                                                                              lufenuron, milbemycin oxime
50050                                                                     clotrimazole, gentamicin sulfate, mometasone furoate
50077                                                                                                               ivermectin
50107                                                                                             ivermectin, pyrantel pamoate
50108                                                                                                               fluralaner
50115                                                                                                               ivermectin
50116                                                                                                               afoxolaner
50117                                                                                             ivermectin, pyrantel pamoate
50118                                                                                                               ivermectin
50154                                                                                                         milbemycin oxime
50159                                                        neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
50161                                                                   chlorhexidine gluconate, miconazole nitrate, tris-edta
50187                                                                                lufenuron, milbemycin oxime, praziquantel
50189                                                                                               imidacloprid, pyriproxyfen
50190                                                                                              lufenuron, milbemycin oxime
50194                                                                                              lufenuron, milbemycin oxime
50195                                                                                               imidacloprid, pyriproxyfen
50196                                                                                              lufenuron, milbemycin oxime
50198                                                                                              lufenuron, milbemycin oxime
50199                                                                                               imidacloprid, pyriproxyfen
                                                                                                 dose
22                                                                                        unspecified
40                                                                                        unspecified
41                                                                                        unspecified
42                                                                                        unspecified
46                                                                        based on weight (40-60 lbs)
48                                                                       based on weight (51-100 lbs)
49                                                                       based on weight (51-100 lbs)
51                                                                        based on weight (21-40 lbs)
59                                                                       based on weight (51-100 lbs)
60                                                                          based on weight (55+ lbs)
62                                                                       based on weight (51-100 lbs)
63                                                                       based on weight (51-100 lbs)
67                                                                                        application
70                                                                                        application
74                                                                                        bottle/vial
84                                                                                        application
87                                                                                        application
91                                                                                        application
111                                                                                       unspecified
112                                                                                       unspecified
113                                                                                       unspecified
114                                                                                       unspecified
149                                                                                       unspecified
150                                                                                       unspecified
151                                                                                       unspecified
152                                                                                       unspecified
153                                                                                       unspecified
155                                                                                       unspecified
167                                                                                       unspecified
188                                                                       based on weight (44-88 lbs)
192                                                                       based on weight (44-88 lbs)
220                                                                       based on weight (44-88 lbs)
230                                                              272 ivermectin, 227 pyrantel pamoate
233                                                                                               4-6
235                                                              272 ivermectin, 227 pyrantel pamoate
236                                                                                       unspecified
237                                                                                       unspecified
238                                                                                      small amount
242                                                                                          1 - 1 ml
257                                                                       based on weight (40-60 lbs)
275                                                                      based on weight (51-100 lbs)
276                                                                      based on weight (51-100 lbs)
277                                                                    based on weight (60.1-121 lbs)
279                                                                                      small amount
280                                                                                                  
310                                                                                       unspecified
317                                                                                       as directed
318                                                                      based on weight (51-100 lbs)
324                                                                                       as directed
328                                                                                   based on weight
329                                                                                   based on weight
332                                                                                   based on weight
333                                                                                   based on weight
347                                                                                           23, 460
348                                                                                          23 , 460
350                                                                                           23, 460
351                                                                                           23, 460
353                                                                                           23, 460
355                                                                                           23, 460
366                                                                                       unspecified
368                                                                      based on weight (60-121 lbs)
375                                                                      based on weight (51-100 lbs)
376                                                                       based on weight (44-88 lbs)
383                                                                      based on weight (51-100 lbs)
384                                                                      based on weight (51-100 lbs)
386                                                                      based on weight (51-100 lbs)
403                                                                                       unspecified
404                                                                                       unspecified
414                                                                                          23 , 460
447                                                                                       unspecified
449                                                                                       unspecified
453                                                                                       unspecified
496                                                              272 ivermectin, 227 pyrantel pamoate
498                                                                      based on weight (51-100 lbs)
519                                                                                          inhalant
537                                                                                                  
597                                                                         based on weight (60+ lbs)
598                                                                         based on weight (60+ lbs)
610                                                                                      small amount
619                                                                                       unspecified
637                                                                                   based on weight
642                                                                                      small amount
686                                                                                       unspecified
688                                                                                       unspecified
703                                                                      based on weight (51-100 lbs)
704                                                                     based on weight (44.1-88 lbs)
709                                                                                       unspecified
710                                                                                       unspecified
712                                                                                       unspecified
725                                                                27 milbemycin oxime, 1620 spinosad
728                                                                      based on weight (50-100 lbs)
729                                                                         based on weight (60+ lbs)
730                                                              272 ivermectin, 227 pyrantel pamoate
734                                                                                   0.25 inch strip
738                                                                                       unspecified
739                                                                                       unspecified
754                                                                      based on weight (51-100 lbs)
755                                                                         based on weight (45+ lbs)
757                                                                      based on weight (51-100 lbs)
778                                                                                       unspecified
785                                                                      based on weight (60-120 lbs)
790                                                                      based on weight (60-120 lbs)
792                                                                      based on weight (51-100 lbs)
797                                                                                       unspecified
798                                                                                       unspecified
799                                                                                       unspecified
800                                                                                       unspecified
801                                                                                       unspecified
802                                                                                       unspecified
803                                                                       based on weight (45-88 lbs)
804                                                                     based on weight (44.1-88 lbs)
810                                                                       based on weight (40-85 lbs)
816                                                                                       unspecified
819                                                                       based on weight (26-50 lbs)
820                                                                       based on weight (26-50 lbs)
823                                                                       based on weight (45-88 lbs)
824                                                                      based on weight (51-100 lbs)
832                                                                                       unspecified
851                                                                based on weight (50-100 lbs) - 272
862                                                                                   based on weight
871                                                                                         13.5, 810
874                                                                                          27, 1620
877                                                                                       application
878                                                                                          27, 1620
879                                                                                          27, 1620
880                                                                                          27, 1620
884                                                                                         13.5, 810
887                                                                                          27, 1620
891                                                                                          27, 1620
893                                                                                          27, 1620
899                                                                                          27, 1620
901                                                                                       unspecified
905                                                                                       unspecified
913                                                                         based on weight (55+ lbs)
921                                                                      based on weight (51-100 lbs)
955                                                                                            collar
958                                                              272 ivermectin, 227 pyrantel pamoate
969                                                                                       unspecified
977                                                                                       application
982                                                                                       unspecified
983                                                                                       unspecified
989                                                                                   based on weight
1001                                                                                      unspecified
1017                                                                     based on weight (50-100 lbs)
1018                                                                     based on weight (60-121 lbs)
1020                                                                                     small amount
1021                                                                                         wipe/pad
1027                                                                                      unspecified
1029                                                                                       1 wipe/pad
1030                                                                                     small amount
1031                                                                                     small amount
1033                                                                                  syringe/pipette
1036                                                                                     small amount
1039                                                                                    1 bottle/vial
1042                                                                                      unspecified
1050                                                                                  based on weight
1072                                                                                      unspecified
1073                                                                                      unspecified
1074                                                                                      unspecified
1087                                                                     based on weight (60-120 lbs)
1091                                                                                     small amount
1097                                                               27 milbemycin oxime, 1620 spinosad
1099                                                                     based on weight (51-100 lbs)
1100                                                                     based on weight (51-100 lbs)
1101                                                                        based on weight (55+ lbs)
1108                                                                                       1 wipe/pad
1111                                                               460 lufenuron, 23 milbemycin oxime
1112                                                                                         wipe/pad
1116                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
1129                                                                     based on weight (21-100 lbs)
1150                                                                                     small amount
1152                                                                                      unspecified
1153                                                                     based on weight (51-100 lbs)
1154                                                                     based on weight (51-100 lbs)
1155                                                                     based on weight (51-100 lbs)
1159                                                                   based on weight (50.1-100 lbs)
1160                                                                     based on weight (51-100 lbs)
1161                                                                        based on weight (60+ lbs)
1168                                                                                  based on weight
1169                                                                      based on weight (26-50 lbs)
1170                                                                      based on weight (44-88 lbs)
1173                                                                      based on weight (45-88 lbs)
1174                                                                                         272, 228
1175                                                                                       8.8%, 9.8%
1176                                                                                         272, 228
1177                                                                                         8.8, 9.8
1179                                                                                      unspecified
1185                                                                                      unspecified
1186                                                                                      unspecified
1187                                                                                      unspecified
1189                                                                                      unspecified
1190                                                                                      unspecified
1193                                                                     based on weight (51-100 lbs)
1194                                                                     based on weight (51-100 lbs)
1195                                                                   based on weight (50.1-100 lbs)
1208                                                                        based on weight (55+ lbs)
1217                                                             272 ivermectin, 227 pyrantel pamoate
1226                                                                        based on weight (55+ lbs)
1233                                                                                      unspecified
1247                                                                     based on weight (51-100 lbs)
1285                                                                                      unspecified
1336                                                                                      unspecified
1344                                                                   based on weight (50.1-100 lbs)
1346                                                                                  moderate amount
1355                                                                     based on weight (89-132 lbs)
1371                                                                     based on weight (51-100 lbs)
1398                                                                                              1-2
1404                                                                                      unspecified
1405                                                                                      unspecified
1415                                                                                      unspecified
1420                                                                                676 dha, 1030 epa
1422                                                                     based on weight (51-100 lbs)
1434                                                                      based on weight (45-88 lbs)
1435                                                                   based on weight (50.1-100 lbs)
1438                                                                     based on weight (51-100 lbs)
1441                                                                     based on weight (51-100 lbs)
1442                                                                   based on weight (50.1-100 lbs)
1443                                                                      based on weight (44-88 lbs)
1450                                                                      based on weight (45-88 lbs)
1451                                                                     based on weight (51-100 lbs)
1459                                                                       based on weight (2-55 lbs)
1462                                                                      based on weight (56-95 lbs)
1464                                                                     based on weight (51-100 lbs)
1473                                                                                      unspecified
1475                                                                                      unspecified
1499                                                                                        27 , 1620
1500                                                             27mg milbemycin oxime, 1620 spinosad
1501                                                                                      unspecified
1511                                                                    based on weight (24.1-60 lbs)
1512                                                                        based on weight (55+ lbs)
1514                                                                    based on weight (24.1-60 lbs)
1528                                                                        based on weight (55+ lbs)
1529                                                                     based on weight (51-100 lbs)
1532                                                                        based on weight (55+ lbs)
1534                                                                        based on weight (55+ lbs)
1535                                                                     based on weight (51-100 lbs)
1536                                                                        based on weight (55+ lbs)
1537                                                            23 milbemycin oxime, 228 praziquantel
1538                                                            23 milbemycin oxime, 228 praziquantel
1539                                                                        based on weight (55+ lbs)
1541                                                                                      unspecified
1542                                                                                      unspecified
1556                                                                                         inhalant
1572                                                            23 milbemycin oxime, 228 praziquantel
1586                                                                                     small amount
1587                                                                                      unspecified
1598                                                                     based on weight (51-100 lbs)
1599                                                             272 ivermectin, 227 pyrantel pamoate
1634                                                                      based on weight (45-88 lbs)
1635                                                                              tablet/pill/capsule
1650                                                                                      unspecified
1663                                                                     based on weight (60-120 lbs)
1668                                                                                      unspecified
1683                                                                                           collar
1684                                                                                      unspecified
1685                                                                                                 
1689                                                                                  moderate amount
1692                                                                                  moderate amount
1697                                                                                  based on weight
1708                                                                                          23, 460
1710                                                               460 lufenuron, 26 milbemycin oxime
1712                                                                     based on weight (50-100 lbs)
1715                                                                     based on weight (51-100 lbs)
1718                                                               460 lufenuron, 23 milbemycin oxime
1720                                                                     based on weight (51-100 lbs)
1743                                                                                  based on weight
1747                                                                                           1 bath
1748                                                                                      application
1749                                                                     based on weight (60-120 lbs)
1756                                                                                      unspecified
1757                                                                                      unspecified
1758                                                                     based on weight (51-100 lbs)
1759                                                                     based on weight (60-121 lbs)
1760                                                                                        80  - 4.1
1761                                                                                     0.284 , 0.57
1769                                                                                      application
1773                                                                         3 tablets/pills/capsules
1774                                                                                         23 , 460
1789                                                                                      unspecified
1791                                                                                      unspecified
1794                                                                                      unspecified
1795                                                                                      unspecified
1796                                                                                      unspecified
1798                                                                         based on weight (75 lbs)
1805                                                                                     small amount
1809                                                                                      unspecified
1819                                                                                      unspecified
1820                                                                                      unspecified
1823                                                                                      unspecified
1845                                                                        based on weight (55+ lbs)
1846                                                                     based on weight (51-100 lbs)
1847                                                                        based on weight (55+ lbs)
1848                                                                     based on weight (51-100 lbs)
1849                                                                     based on weight (51-100 lbs)
1850                                                                                  0.25 inch strip
1851                                                                                     small amount
1867                                                                     based on weight (51-100 lbs)
1872                                                                     based on weight (51-100 lbs)
1877                                                                                      unspecified
1887                                                                                                 
1888                                                                                       continuous
1917                                                                     based on weight (51-100 lbs)
1922                                                                                                 
1925                                                                                      unspecified
1926                                                                                     small amount
1928                                                                     based on weight (51-100 lbs)
1929                                                                                      unspecified
1931                                                                                     small amount
1939                                                                                      unspecified
1941                                                                                      application
1945                                                                                                 
1948                                                                                  based on weight
1962                                                                     based on weight (51-100 lbs)
1965                                                                                     small amount
1980                                                                                      application
1982                                                                     based on weight (51-100 lbs)
1983                                                                        based on weight (55+ lbs)
1984                                                                                  based on weight
1994                                                                                      unspecified
1998                                                                                     small amount
2006                                                             272 ivermectin, 227 pyrantel pamoate
2012                                                                                      unspecified
2013                                                                                      unspecified
2016                                                                     based on weight (51-100 lbs)
2022                                                                                      application
2025                                                                        based on weight (55+ lbs)
2026                                                                     based on weight (50-100 lbs)
2029                                                                     based on weight (51-100 lbs)
2030                                                                                  based on weight
2032                                                                                      unspecified
2033                                                                                      unspecified
2034                                                                                      unspecified
2041                                                                     based on weight (51-100 lbs)
2042                                                                      based on weight (26-50 lbs)
2050                                                                     based on weight (51-100 lbs)
2075                                                                     based on weight (51-100 lbs)
2083                                                                      based on weight (40-85 lbs)
2084                                                                     based on weight (51-100 lbs)
2085                                                                                  based on weight
2087                                                                     based on weight (51-100 lbs)
2088                                                                      based on weight (44-88 lbs)
2089                                                                        based on weight (80+ lbs)
2091                                                                     based on weight (51-100 lbs)
2093                                                                        based on weight (80+ lbs)
2107                                                                     based on weight (51-100 lbs)
2108                                                                                  based on weight
2109                                                                     based on weight (51-100 lbs)
2110                                                                     based on weight (51-100 lbs)
2113                                                                                         tapering
2115                                                                                      unspecified
2116                                                                                      unspecified
2126                                                                     based on weight (51-100 lbs)
2127                                                                     based on weight (51-100 lbs)
2149                                                                     based on weight (51-100 lbs)
2151                                                                     based on weight (51-100 lbs)
2161                                                                     based on weight (51-100 lbs)
2165                                                                                     small amount
2166                                                                                      as directed
2195                                                                                      unspecified
2199                                                                     based on weight (51-100 lbs)
2200                                                                    based on weight (24.1-60 lbs)
2201                                                                                  based on weight
2202                                                                                  based on weight
2203                                                                                  based on weight
2204                                                                     based on weight (51-100 lbs)
2205                                                                    based on weight (24.1-60 lbs)
2206                                                                         2 tablets/pills/capsules
2211                                                                                      unspecified
2219                                                                                         1 pellet
2220                                                                                         1 pellet
2224                                                                                      unspecified
2226                                                                                      unspecified
2229                                                                                      unspecified
2233                                                                     based on weight (50-100 lbs)
2241                                                                                      application
2243                                                                     based on weight (50-100 lbs)
2244                                                                      based on weight (44-88 lbs)
2250                                                                                      unspecified
2255                                                                      based on weight (21-55 lbs)
2258                                                                                      unspecified
2259                                                                                      unspecified
2260                                                                                      unspecified
2261                                                                                      unspecified
2262                                                                                      unspecified
2263                                                                                      unspecified
2264                                                                                      unspecified
2265                                                                                      unspecified
2266                                                                                      unspecified
2269                                                                                      unspecified
2270                                                                                      unspecified
2272                                                                                      unspecified
2278                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
2279                                                                     based on weight (51-100 lbs)
2280                                                                     based on weight (51-100 lbs)
2283                                                                     based on weight (51-100 lbs)
2301                                                                                  moderate amount
2302                                                                                       0.75, 0.75
2390                                                                                                 
2398                                                                                                 
2404                                                                     based on weight (51-100 lbs)
2405                                                                      based on weight (44-88 lbs)
2409                                                                     based on weight (51-100 lbs)
2418                                                             272 ivermectin, 227 pyrantel pamoate
2428                                                                   0.5-1 tablet/pill/capsule - 16
2463                                                                                          0.5 cup
2464                                                                              tablet/pill/capsule
2467                                                                              tablet/pill/capsule
2473                                                                                     small amount
2474                                                                                     small amount
2477                                                                                        injection
2478                                                                                        injection
2479                                                                              tablet/pill/capsule
2481                                                                                                 
2482                                                                     based on weight (51-100 lbs)
2486                                                                                      as directed
2487                                                                                      as directed
2491                                                                                      application
2492                                                                                      application
2499                                                                                      unspecified
2500                                                                     based on weight (51-100 lbs)
2501                                                                       1 tablet/pill/capsule - 75
2502                                                                     2 tablets/pills/capsules - 1
2503                                                                       1 tablet/pill/capsule - 16
2504                                                                   based on weight (60.1-120 lbs)
2508                                                                              tablet/pill/capsule
2517                                                                     based on weight (51-100 lbs)
2518                                                                         2 tablets/pills/capsules
2534                                                                                      unspecified
2539                                                                     based on weight (51-100 lbs)
2542                                                                     based on weight (51-100 lbs)
2543                                                                        based on weight (18+ lbs)
2545                                                                     based on weight (50-100 lbs)
2546                                                                        based on weight (18+ lbs)
2547                                                                     based on weight (51-100 lbs)
2548                                                                        based on weight (18+ lbs)
2549                                                                                      unspecified
2550                                                                                      unspecified
2558                                                                     based on weight (50-100 lbs)
2559                                                                     based on weight (50-100 lbs)
2560                                                                                  based on weight
2562                                                                     based on weight (50-100 lbs)
2566                                                                              tablet/pill/capsule
2575                                                                                      unspecified
2578                                                                                                 
2580                                                                                      application
2583                                                                                      unspecified
2599                                                                                      unspecified
2600                                                                                      unspecified
2642                                                                                      unspecified
2651                                                                                  based on weight
2652                                                                                      unspecified
2653                                                                                      unspecified
2655                                                                                      unspecified
2659                                                                                          1 scoop
2660                                                                                      unspecified
2661                                                                                      unspecified
2710                                                                     based on weight (51-100 lbs)
2721                                                                                      application
2726                                                                     based on weight (50-100 lbs)
2731                                                                                        13.5, 810
2735                                                                                        13.5, 810
2737                                                                                     23, 228, 460
2738                                                                     based on weight (51-100 lbs)
2739                                                                     based on weight (60-120 lbs)
2742                                                                     based on weight (51-100 lbs)
2743                                                                      based on weight (44-88 lbs)
2745                                                                     based on weight (50-100 lbs)
2746                                                                      based on weight (44-88 lbs)
2748                                                                     based on weight (51-100 lbs)
2749                                                                      based on weight (44-88 lbs)
2753                                                                     based on weight (50-100 lbs)
2756                                                                         based on weight (80 lbs)
2805                                                               based on weight (45-88 lbs) - 2.68
2815                                                                                         300, 600
2818                                                                                  0.25 inch strip
2825                                                                     based on weight (51-100 lbs)
2827                                                                     based on weight (51-100 lbs)
2828                                                                     based on weight (51-100 lbs)
2833                                                                     based on weight (51-100 lbs)
2838                                                                     based on weight (50-100 lbs)
2839                                                                                     small amount
2842                                                                                     small amount
2844                                                                                  0.25 inch strip
2846                                                                     based on weight (50-100 lbs)
2855                                                                                      unspecified
2897                                                                            lather and then rinse
2900                                                                                      application
2903                                                                                      unspecified
2904                                                                                  moderate amount
2905                                                                                             bath
2907                                                                                   1 pack/package
2913                                                                                   1 pack/package
2919                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
2920                                                    based on weight (60-120 lbs) - 136 afoxolaner
2921                                                                                   1 pack/package
2922                                                                     based on weight (50-100 lbs)
2923                                                                     based on weight (60-121 lbs)
2925                                                                                      unspecified
2941                                                               460 lufenuron, 23 milbemycin oxime
2942                                               8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                     based on weight (51-100 lbs)
2944                                                                        based on weight (55+ lbs)
2946                                                                                    1 bottle/vial
2958                                                                     based on weight (51-100 lbs)
2959                                                                     based on weight (51-100 lbs)
2961                                                                                      unspecified
2962                                                                                      unspecified
2963                                                                                      unspecified
2964                                                                                      unspecified
2974                                                                     based on weight (51-100 lbs)
2975                                                                      based on weight (45-88 lbs)
2978                                                                   based on weight (50.1-100 lbs)
2981                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
2988                                                                                  based on weight
2993                                                                                      unspecified
2997                                                                       1.5 tablets/pills/capsules
3002                                                                  1.5 tablets/pills/capsules - 20
3003                                                                                     small amount
3007                                                                      based on weight (45-88 lbs)
3028                                                                      based on weight (45-88 lbs)
3031                                                                                      unspecified
3055                                                                                      application
3058                                                                                      application
3060                                                                                      unspecified
3095                                                                         2 tablets/pills/capsules
3110                                                                                     small amount
3119                                                                                      as directed
3147                                                                                      unspecified
3180                                                                                      unspecified
3246                                                                     based on weight (50-100 lbs)
3247                                                                     based on weight (50-100 lbs)
3250                                                                     based on weight (50-100 lbs)
3251                                                                     based on weight (50-100 lbs)
3253                                                                     based on weight (50-100 lbs)
3257                                                                     based on weight (50-100 lbs)
3271                                                                     based on weight (51-100 lbs)
3278                                                                                  0.25 inch strip
3280                                                                     based on weight (50-100 lbs)
3284                                                                     based on weight (51-100 lbs)
3287                                                                                      application
3291                                                                                      application
3293                                                                                      application
3294                                                                     based on weight (51-100 lbs)
3300                                                                     based on weight (51-100 lbs)
3305                                                                                     small amount
3312                                                                                     small amount
3313                                                                                     small amount
3339                                                                     based on weight (51-100 lbs)
3342                                                                                      unspecified
3345                                                                                          23, 460
3346                                                               460 lufenuron, 23 milbemycin oxime
3350                                                                                      unspecified
3360                                                                                  based on weight
3366                                                                                      unspecified
3372                                                                                      unspecified
3375                                                                            based on weight - 1.5
3376                                                                                      application
3394                                                                                      unspecified
3399                                                              13.5 milbemycin oxime, 810 spinosad
3403                                                                                        13.5, 810
3421                                                                                      unspecified
3422                                                                                                 
3425                                                                                      unspecified
3426                                                                                      unspecified
3429                                                                       based on weight (4-60 lbs)
3437                                                                                     small amount
3445                                                                                      unspecified
3446                                                                                      unspecified
3447                                                                                      unspecified
3448                                                                                      unspecified
3449                                                                                      unspecified
3451                                                                                          23, 460
3455                                                                                          23, 460
3456                                                                      based on weight (45-88 lbs)
3457                                                                     based on weight (51-100 lbs)
3458                                                                      based on weight (45-88 lbs)
3459                                                                                          23, 460
3488                                                                        based on weight (25+ lbs)
3490                                                                    based on weight (44.1-88 lbs)
3491                                                                     based on weight (51-100 lbs)
3492                                                                    based on weight (44.1-88 lbs)
3495                                                                     based on weight (51-100 lbs)
3496                                                                    based on weight (44.1-88 lbs)
3497                                                                     based on weight (51-100 lbs)
3498                                                                    based on weight (44.1-88 lbs)
3512                                                                     based on weight (50-100 lbs)
3513                                                                     based on weight (50-100 lbs)
3514                                                                     based on weight (50-100 lbs)
3515                                                                     based on weight (50-100 lbs)
3516                                                                     based on weight (50-100 lbs)
3517                                                                                      unspecified
3519                                                                     based on weight (51-100 lbs)
3520                                                                                  based on weight
3522                                                                     based on weight (51-100 lbs)
3525                                                             272 ivermectin, 227 pyrantel pamoate
3530                                                                                         0.5%, 3%
3531                                                                                      unspecified
3535                                                                                      unspecified
3581                                                                              tablet/pill/capsule
3619                                                                                          23, 228
3622                                                                                     pack/package
3635                                                                      based on weight (44-88 lbs)
3639                                                                                      application
3640                                                                                      application
3641                                                                                      application
3649                                                                                        100 , 400
3650                                                                        based on weight (<80 lbs)
3652                                                                              tablet/pill/capsule
3666                                                                                                 
3667                                                                                     small amount
3675                                                                                     small amount
3684                                                                                      unspecified
3685                                                                                      unspecified
3691                                                                                      unspecified
3692                                                                                      unspecified
3693                                                                                                 
3698                                                                      based on weight (40-85 lbs)
3699                                                                      based on weight (40-85 lbs)
3701                                                                     based on weight (51-100 lbs)
3704                                                                     based on weight (50-100 lbs)
3705                                                                                  based on weight
3706                                                                     based on weight (50-100 lbs)
3710                                                                                      unspecified
3718                                                                                     small amount
3719                                                                     based on weight (51-100 lbs)
3725                                                                     based on weight (51-100 lbs)
3726                                                                     based on weight (51-100 lbs)
3735                                                                                             gtts
3741                                                                                      unspecified
3742                                                                                      unspecified
3743                                                                                      unspecified
3744                                                                                      unspecified
3745                                                                                      unspecified
3750                                                                                         23 , 460
3760                                                               27 milbemycin oxime, 1620 spinosad
3773                                                                                      application
3784                                                                      1 tablet/pill/capsule - 250
3785                                                                        1 tablet/pill/capsule - 5
3786                                                                       1 tablet/pill/capsule - 20
3789                                                                                      unspecified
3797                                                                                                 
3798                                                                                      as directed
3800                                                                                      application
3815                                                                                  based on weight
3829                                                                                     small amount
3835                                                                     based on weight (50-100 lbs)
3836                                                                     based on weight (60-120 lbs)
3838                                                                     based on weight (60-120 lbs)
3840                                                                                     small amount
3848                                                                                  0.25 inch strip
3857                                                                     based on weight (51-100 lbs)
3858                                                                      based on weight (23-44 lbs)
3859                                                                      based on weight (26-50 lbs)
3860                                                                    based on weight (24.1-60 lbs)
3861                                                                                      unspecified
3867                                                                                     small amount
3870                                                                     based on weight (50-100 lbs)
3871                                                                     based on weight (60-120 lbs)
3872                                                                     based on weight (60-120 lbs)
3874                                                                                     small amount
3881                                                                     based on weight (51-100 lbs)
3886                                                                     based on weight (51-100 lbs)
3889                                                                     based on weight (51-100 lbs)
3897                                                                     based on weight (51-100 lbs)
3898                                                                                      unspecified
3900                                                                     based on weight (51-100 lbs)
3903                                                                     based on weight (51-100 lbs)
3906                                                                     based on weight (51-100 lbs)
3911                                                                     based on weight (51-100 lbs)
3938                                                                     based on weight (51-100 lbs)
3943                                                                     based on weight (51-100 lbs)
3945                                                                                             8 oz
3946                                                                    based on weight (24.1-60 lbs)
3952                                                                     based on weight (51-100 lbs)
3972                                                                    based on weight (40.1-60 lbs)
3980                                                                     based on weight (51-100 lbs)
3984                                                                     based on weight (51-100 lbs)
3989                                                                     based on weight (51-100 lbs)
3990                                                                     based on weight (51-100 lbs)
4000                                                                                      unspecified
4017                                                                     based on weight (51-100 lbs)
4030                                                                                        27 , 1620
4031                                                                   based on weight (60.1-120 lbs)
4042                                                                                      unspecified
4058                                                                     based on weight (51-100 lbs)
4059                                                  2 prednisolone acetate, 5 trimeprazine tartrate
4060                                                             272 ivermectin, 227 pyrantel pamoate
4063                                                                     based on weight (51-100 lbs)
4064                                                                      based on weight (44-88 lbs)
4066                                                                                      unspecified
4067                                                                                      unspecified
4068                                                                                      unspecified
4069  2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
4070                                                                       1 tablet/pill/capsule - 16
4071                                                                                     small amount
4074                                                                                  based on weight
4075                                                                                  based on weight
4077                                                                                  based on weight
4087                                                                                      unspecified
4088                                                                                      unspecified
4089                                                                                      unspecified
4092                                                                                1 syringe/pipette
4097                                                                       1 tablet/pill/capsule - 80
4111                                                                     based on weight (60-120 lbs)
4112                                                                     based on weight (50-100 lbs)
4113                                                                                     small amount
4114                                                                                     small amount
4116                                                                                         tapering
4117                                                                      based on weight (45-88 lbs)
4118                                                                     based on weight (60-120 lbs)
4119                                                                                     small amount
4120                                                                     based on weight (60-120 lbs)
4125                                                                                         27, 1620
4127                                                                     based on weight (51-100 lbs)
4128                                                                   based on weight (60.1-121 lbs)
4131                                                                                                 
4132                                                                                      unspecified
4133                                                                                      unspecified
4134                                                                                      unspecified
4162                                                                     based on weight (50-100 lbs)
4172                                                                      based on weight (45-88 lbs)
4183                                                                      based on weight (40-85 lbs)
4184                                                                      based on weight (40-85 lbs)
4191                                                                     based on weight (60-120 lbs)
4193                                                                                      application
4198                                                                     based on weight (60-120 lbs)
4199                                                                     based on weight (50-100 lbs)
4210                                                                     based on weight (60-120 lbs)
4212                                                                                        13.5, 810
4213                                                                                     23, 228, 460
4215                                                                                          23, 460
4216                                                                                      unspecified
4218                                                                                      unspecified
4245                                                                                              4-5
4247                                                                                      unspecified
4266                                                                                      as directed
4274                                                                                      unspecified
4298                                                                      based on weight (45-88 lbs)
4299                                                                     based on weight (51-100 lbs)
4302                                                                     based on weight (51-100 lbs)
4304                                                                     based on weight (51-100 lbs)
4305                                                                      based on weight (45-88 lbs)
4306                                                                                      unspecified
4307                                                                     based on weight (51-100 lbs)
4308                                                                     based on weight (51-100 lbs)
4309                                                                      based on weight (45-88 lbs)
4311                                                                                      unspecified
4313                                                                     based on weight (50-100 lbs)
4314                                                                      based on weight (44-88 lbs)
4323                                                                      based on weight (40-85 lbs)
4324                                                                                     small amount
4325                                                                     based on weight (50-100 lbs)
4326                                                                                           powder
4336                                                                                      unspecified
4338                                                                   based on weight (50.1-100 lbs)
4348                                                                                  0.25 inch strip
4349                                                                      based on weight (40-60 lbs)
4350                                                                     based on weight (60-120 lbs)
4353                                                                      based on weight (40-60 lbs)
4354                                                                      based on weight (41-60 lbs)
4368                                                                                  based on weight
4371                                                                                  based on weight
4384                                                                                         350, 900
4389                                                                     based on weight (51-100 lbs)
4390                                                                     based on weight (88-123 lbs)
4395                                                             272 ivermectin, 227 pyrantel pamoate
4405                                                                                        13.5, 810
4409                                                                                   1 pack/package
4426                                                                     based on weight (51-100 lbs)
4427                                                                        based on weight (55+ lbs)
4428                                                                         based on weight (60 lbs)
4430                                                                                                 
4431                                                                                                 
4444                                                                        based on weight (<88 lbs)
4446                                                                                   1 pack/package
4454                                                                                         inhalant
4469                                                                                     small amount
4470                                                                                      application
4471                                                                                         wipe/pad
4472                                                                                     small amount
4480                                                                                     small amount
4481                                                                                       1 wipe/pad
4483                                                                                  based on weight
4486                                                                         3 tablets/pills/capsules
4497                                                                     based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
4500                                                    based on weight (60-120 lbs) - 136 afoxolaner
4501                                                                                      as directed
4502                                                                     based on weight (60-120 lbs)
4504                                                                                      as directed
4505                                                                     based on weight (50-100 lbs)
4511                                                                         3 tablets/pills/capsules
4517                                                                                   1 pack/package
4524                                                                     based on weight (50-100 lbs)
4532                                                                     based on weight (50-100 lbs)
4533                                                                                                 
4536                                                                     based on weight (50-100 lbs)
4544                                                                                      unspecified
4545                                                                     based on weight (51-100 lbs)
4547                                                                                     small amount
4558                                                                     based on weight (51-100 lbs)
4559                                                                        based on weight (50+ lbs)
4560                                                                        based on weight (50+ lbs)
4561                                                                                              1-2
4562                                                                      based on weight (45-88 lbs)
4564                                                                     based on weight (51-100 lbs)
4565                                                                      based on weight (44-88 lbs)
4566                                                                     based on weight (50-100 lbs)
4567                                                                      based on weight (44-88 lbs)
4568                                                                      based on weight (44-88 lbs)
4569                                                                        based on weight (50+ lbs)
4587                                                                     based on weight (51-100 lbs)
4597                                                                                      unspecified
4599                                                             272 ivermectin, 227 pyrantel pamoate
4611                                                                                         27, 1620
4627                                                                                      2.68of 9.7%
4628                                                                                      2.68of 8.8%
4629                                                               460 lufenuron, 23 milbemycin oxime
4631                                                                                      2.68of 9.8%
4634                                                                                      unspecified
4638                                                                                      2.68of 9.8%
4640                                                                                            15 au
4642                                                            23 milbemycin oxime, 228 praziquantel
4643                                                                                     small amount
4648                                                            23 milbemycin oxime, 228 praziquantel
4649                                                                                      2.68of 9.8%
4651                                                                                     small amount
4652                                                                                  moderate amount
4654                                                                      based on weight (44-88 lbs)
4655                                                            23 milbemycin oxime, 228 praziquantel
4695                                                                     based on weight (50-110 lbs)
4717                                                                     based on weight (60-120 lbs)
4719                                                                                                 
4720                                                                                                 
4726                                                                     based on weight (51-100 lbs)
4738                                                                     based on weight (60-120 lbs)
4739                                                                     based on weight (60-120 lbs)
4743                                                                                      application
4744                                                                                      application
4745                                                               27 milbemycin oxime, 1620 spinosad
4748                                                                                           1 unit
4757                                                                                  based on weight
4763                                                                        based on weight (55+ lbs)
4764                                                                      based on weight (21-55 lbs)
4766                                                                        based on weight (55+ lbs)
4777                                                                                      unspecified
4780                                                                                      unspecified
4782                                                                                      unspecified
4801                                                                                         tapering
4802                                                                     based on weight (51-110 lbs)
4805                                                                                                 
4806                                                                   based on weight (60.1-121 lbs)
4813                                                                                      unspecified
4824                                                                      based on weight (20-55 lbs)
4826                                                                                      unspecified
4828                                                                                      unspecified
4832                                                                                           0.1, 1
4853                                                                                     small amount
4855                                                                                         27, 1620
4858                                                                                         27, 1620
4859                                                             272 ivermectin, 227 pyrantel pamoate
4861                                                             272 ivermectin, 227 pyrantel pamoate
4862                                                             272 ivermectin, 227 pyrantel pamoate
4881                                                                                     small amount
4902                                                    5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                         27, 1620
4905                                                                                         27, 1620
4910                                                                                           collar
4912                                                                                          23, 228
4913                                                                                           collar
4914                                                                                          23, 228
4917                                                                                         23 , 228
4935                                                                     based on weight (51-100 lbs)
4956                                                                                      unspecified
4960                                                                                     small amount
4968                                                                                         27, 1620
4969                                                            2-3 tablets/pills/capsules - 400, 500
4980                                                                                     pack/package
4981                                                                                          23, 228
4996                                                                                      unspecified
4998                                                                                      unspecified
5043                                                                                                 
5046                                                                                                 
5078                                                                      based on weight (40-60 lbs)
5122                                                                     based on weight (51-100 lbs)
5123                                                                     based on weight (60-121 lbs)
5127                                                                                        injection
5134                                                                                  based on weight
5140                                                                                      750, 187, 5
5159                                                                                      unspecified
5160                                                                                      unspecified
5161                                                                                      unspecified
5173                                                                     based on weight (51-100 lbs)
5174                                                                     based on weight (60-120 lbs)
5191                                                                                         27, 1620
5193                                                                                      application
5195                                                                        based on weight (18+ lbs)
5203                                                                     based on weight (50-100 lbs)
5210                                                                                  moderate amount
5211                                                                                  moderate amount
5212                                                                                  moderate amount
5213                                                                                  moderate amount
5214                                                                     based on weight (51-100 lbs)
5220                                                                                                 
5221                                                                                                 
5222                                                                        based on weight (55+ lbs)
5223                                                                     based on weight (51-100 lbs)
5225                                                                     based on weight (51-100 lbs)
5234                                                                                  based on weight
5235                                                                     based on weight (51-100 lbs)
5243                                                                     based on weight (51-100 lbs)
5244                                                                        based on weight (55+ lbs)
5247                                                                     based on weight (51-100 lbs)
5248                                                                     based on weight (51-100 lbs)
5253                                                                     based on weight (51-100 lbs)
5255                                                                     based on weight (51-100 lbs)
5256                                                                     based on weight (51-100 lbs)
5257                                                                     based on weight (51-100 lbs)
5258                                                                     based on weight (51-100 lbs)
5261                                                                     based on weight (51-100 lbs)
5262                                                                                  based on weight
5264                                                                        based on weight (55+ lbs)
5265                                                                     based on weight (51-100 lbs)
5270                                                                     based on weight (51-100 lbs)
5271                                                                     based on weight (51-100 lbs)
5289                                                                     based on weight (50-100 lbs)
5332                                                                                         1 collar
5333                                                                                      unspecified
5334                                                                                  based on weight
5335                                                                                           collar
5336                                                                         2 tablets/pills/capsules
5337                                                                                      unspecified
5340                                                                     based on weight (51-100 lbs)
5354                                                                                           collar
5357                                                                                                 
5359                                                             272 ivermectin, 227 pyrantel pamoate
5360                                                             272 ivermectin, 227 pyrantel pamoate
5362                                                                         3 tablets/pills/capsules
5369                                                                     based on weight (50-100 lbs)
5377                                                             272 ivermectin, 227 pyrantel pamoate
5378                                                               8.8% (s)-methoprene, 9.8% fipronil
5379                                                                     based on weight (51-100 lbs)
5384                                                            23 milbemycin oxime, 228 praziquantel
5385                                                                                      unspecified
5386                                                                                      unspecified
5387                                                                                      unspecified
5388                                                                                      unspecified
5391                                                                     based on weight (60-121 lbs)
5392                                                                     based on weight (51-100 lbs)
5403                                                                        based on weight (100 lbs)
5424                                                                                     small amount
5428                                                                                                 
5440                                                                                      unspecified
5460                                                                                     small amount
5464                                                                                         27, 1620
5484                                                                  2 tablets/pills/capsules - 1200
5491                                                                      based on weight (45-88 lbs)
5492                                                                     based on weight (51-100 lbs)
5497                                                                     based on weight (51-100 lbs)
5498                                                                     based on weight (51-100 lbs)
5499                                                                      based on weight (45-88 lbs)
5500                                                                     based on weight (51-100 lbs)
5501                                                                                     small amount
5502                                                                                    1 bottle/vial
5507                                                                     based on weight (51-100 lbs)
5508                                                                     based on weight (51-100 lbs)
5509                                                                     based on weight (51-100 lbs)
5511                                                                     based on weight (51-100 lbs)
5513                                                                     based on weight (51-100 lbs)
5527                                                                                     small amount
5528                                                                                      application
5529                                                                                                 
5533                                                                                     small amount
5534                                                                                  based on weight
5535                                                                                     small amount
5537                                                                                     small amount
5541                                                                     based on weight (51-100 lbs)
5542                                                                      based on weight (45-88 lbs)
5545                                                                                  based on weight
5546                                                                                  based on weight
5552                                                                     based on weight (51-100 lbs)
5553                                                                                  based on weight
5557                                                                     based on weight (51-100 lbs)
5568                                                                     based on weight (51-100 lbs)
5571                                                                     based on weight (51-100 lbs)
5576                                                                     based on weight (51-100 lbs)
5577                                                                                      unspecified
5578                                                                     based on weight (51-100 lbs)
5595                                                                     based on weight (51-100 lbs)
5600                                                                     based on weight (51-100 lbs)
5602                                                                     based on weight (51-100 lbs)
5607                                                               460 lufenuron, 23 milbemycin oxime
5626                                                                     based on weight (51-100 lbs)
5627                                                                     based on weight (51-100 lbs)
5628                                                                     based on weight (61-120 lbs)
5629                                                                     based on weight (51-100 lbs)
5630                                                                     based on weight (60-120 lbs)
5631                                                                     based on weight (51-100 lbs)
5632                                                                      based on weight (24-60 lbs)
5649                                                                                    5 billion cfu
5681                                                                     based on weight (60-120 lbs)
5682                                                                     based on weight (51-100 lbs)
5695                                                                                      unspecified
5721                                                               27 milbemycin oxime, 1620 spinosad
5722                                                                                        27 , 1620
5723                                                               27 milbemycin oxime, 1620 spinosad
5724                                                               27 milbemycin oxime, 1620 spinosad
5725                                                                                         27, 1620
5728                                                               27 milbemycin oxime, 1620 spinosad
5729                                                                                      unspecified
5731                                                                                      unspecified
5747                                                                                  based on weight
5760                                                                                      unspecified
5762                                                                                  based on weight
5768                                                                     based on weight (51-100 lbs)
5771                                                            23 milbemycin oxime, 228 praziquantel
5777                                                                                      unspecified
5804                                                                                          13, 228
5814                                                                                      unspecified
5834                                                             272 ivermectin, 227 pyrantel pamoate
5839                                                                     based on weight (51-100 lbs)
5840                                                                                          23, 460
5858                                                                                  0.25 inch strip
5869                                                                     based on weight (51-100 lbs)
5877                                                                                  based on weight
5884                                                                                      unspecified
5887                                                                                     small amount
5913                                                                                  based on weight
5917                                                                                              6-8
5930                                                                     based on weight (51-100 lbs)
5932                                                                                      unspecified
5933                                                                      based on weight (44-88 lbs)
5934                                                                     based on weight (51-100 lbs)
5935                                                                                                 
5936                                                                     based on weight (51-100 lbs)
5937                                                                      based on weight (44-88 lbs)
5941                                                                     based on weight (51-100 lbs)
5942                                                                      based on weight (44-88 lbs)
5945                                                                                       1 wipe/pad
5963                                                                     based on weight (51-100 lbs)
5964                                                                   based on weight (60.1-121 lbs)
5965                                                               460 lufenuron, 23 milbemycin oxime
5967                                                                                    460 lufenuron
5976                                                                                      as directed
5981                                                                              tablet/pill/capsule
5988                                                                                  based on weight
5991                                                                                  based on weight
5992                                                                                  based on weight
5993                                                             272 ivermectin, 227 pyrantel pamoate
5994                                                                      based on weight (44-88 lbs)
6000                                                               460 lufenuron, 23 milbemycin oxime
6002                                                                        based on weight (55+ lbs)
6003                                                               460 lufenuron, 23 milbemycin oxime
6004                                                          8.8% imidacloprid, 44% permethrin - 4ml
6014                                                                                      unspecified
6015                                                                                      unspecified
6016                                                                                      unspecified
6017                                                                                      unspecified
6036                                                                                         27, 1620
6038                                                                     based on weight (51-100 lbs)
6059                                                                     based on weight (51-100 lbs)
6063                                                                                     small amount
6068                                                                     based on weight (50-100 lbs)
6069                                                                      based on weight (55-95 lbs)
6071                                                                                      unspecified
6072                                                                                  based on weight
6076                                                                                           collar
6078                                                                                           collar
6088                                                                                  0.25 inch strip
6090                                                                                  0.25 inch strip
6093                                                                                      unspecified
6095                                                                                              1-2
6101                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
6102                                           1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
6104                                                                                     23, 228, 460
6109                                                                                90, 350, 800, 900
6132                                                                     based on weight (51-100 lbs)
6133                                                                     based on weight (60-120 lbs)
6134                                                                     based on weight (51-100 lbs)
6135                                                                      based on weight (44-88 lbs)
6136                                                                     based on weight (51-100 lbs)
6137                                                                      based on weight (44-88 lbs)
6139                                                                     based on weight (51-100 lbs)
6140                                                                      based on weight (44-88 lbs)
6148                                                                   based on weight (60.1-120 lbs)
6161                                                                                          23, 460
6164                                                                                     small amount
6200                                                                     based on weight (88-132 lbs)
6202                                                                     based on weight (60-120 lbs)
6206                                                                                      application
6208                                                                                      application
6217                                                                                       14.8, 16.6
6218                                                                                           varies
6221                                                                                             5-10
6224                                                                     based on weight (50-100 lbs)
6225                                                                   based on weight (88.1-132 lbs)
6226                                                                        based on weight (60+ lbs)
6231                                                                     based on weight (50-100 lbs)
6232                                                                   based on weight (88.1-132 lbs)
6244                                                                                      unspecified
6257                                                                      based on weight (40-85 lbs)
6258                                                                     based on weight (50-100 lbs)
6266                                                                                      application
6267                                                                                     small amount
6275                                                                                      unspecified
6282                                                             272 ivermectin, 227 pyrantel pamoate
6283                                                                      based on weight (44-88 lbs)
6284                                                                                          410 epa
6293                                                                      based on weight (24-60 lbs)
6302                                                             272 ivermectin, 227 pyrantel pamoate
6307                                                                                        62.5, 437
6312                                                                                      unspecified
6319                                                                                      unspecified
6320                                                                                      unspecified
6326                                                                                      application
6328                                                                         2 tablets/pills/capsules
6331                                                                     based on weight (51-100 lbs)
6358                                                                                      unspecified
6390                                                                                      unspecified
6395                                                                      based on weight (45-88 lbs)
6405                                                                      based on weight (44-88 lbs)
6406                                                                                  based on weight
6411                                                                                     small amount
6437                                                             272 ivermectin, 227 pyrantel pamoate
6441                                                                                       1200, 1500
6444                                                                     based on weight (51-100 lbs)
6451                                                                                      unspecified
6459                                                                                       1200, 1500
6461                                                                                      unspecified
6474                                                                     based on weight (51-100 lbs)
6475                                                                      based on weight (44-88 lbs)
6486                                                         28.75 milbemycin oxime, 285 praziquantel
6495                                                                                                 
6499                                                                     based on weight (51-100 lbs)
6500                                                                      based on weight (44-88 lbs)
6522                                                                     based on weight (51-100 lbs)
6523                                                                    based on weight (24.1-60 lbs)
6527                                                                     based on weight (51-100 lbs)
6528                                                                    based on weight (24.1-60 lbs)
6555                                                                     based on weight (51-100 lbs)
6562                                                                                  moderate amount
6569                                                                     based on weight (51-100 lbs)
6570                                                                      based on weight (44-88 lbs)
6571                                                                                      unspecified
6573                                                                      based on weight (45-88 lbs)
6579                                                                                  based on weight
6581                                                             272 ivermectin, 227 pyrantel pamoate
6594                                                                     based on weight (51-100 lbs)
6602                                                                     based on weight (51-100 lbs)
6606                                                             272 ivermectin, 227 pyrantel pamoate
6612                                                                   based on weight (50.1-100 lbs)
6625                                                                     based on weight (51-100 lbs)
6636                                                                     based on weight (50-100 lbs)
6644                                                                     based on weight (51-100 lbs)
6647                                                                     based on weight (51-100 lbs)
6648                                                                      based on weight (44-88 lbs)
6650                                                                                      application
6658                                                                                  based on weight
6662                                                                                      unspecified
6663                                                                     based on weight (51-100 lbs)
6680                                                                                      unspecified
6683                                                                                     small amount
6687                                                                                      unspecified
6688                                                                                      unspecified
6694                                                                         2 tablets/pills/capsules
6696                                                                                  based on weight
6697                                                                         based on weight (58 lbs)
6698                                                                                      unspecified
6702                                                                                      unspecified
6703                                                                                  based on weight
6714                                                                                             5-10
6715                                                                      based on weight (26-50 lbs)
6716                                                                                      unspecified
6717                                                                                      unspecified
6733                                                             272 ivermectin, 227 pyrantel pamoate
6751                                                                                      unspecified
6759                                                                                      application
6760                                                                                      unspecified
6763                                                                     based on weight (51-100 lbs)
6764                                                                      based on weight (44-88 lbs)
6778                                                                     based on weight (51-100 lbs)
6779                                                                     based on weight (51-100 lbs)
6781                                                                     based on weight (51-100 lbs)
6783                                                                   based on weight (50.1-100 lbs)
6786                                                                        based on weight (55+ lbs)
6796                                                                     based on weight (51-100 lbs)
6797                                                                                          23, 228
6815                                                                     based on weight (51-100 lbs)
6816                                                                                  0.25 inch strip
6817                                                                                  0.25 inch strip
6818                                                                                              5-8
6824                                                                                      unspecified
6826                                                                                      unspecified
6828                                                                     based on weight (51-100 lbs)
6868                                                                                      as directed
6880                                                                                      as directed
6886                                                                                      application
6891                                                                                      application
6892                                                                                     small amount
6910                                                                     based on weight (50-100 lbs)
6928                                                                                      application
6934                                                                                     small amount
6935                                                                                      unspecified
6936                                                                                     small amount
6946                                                                                         27, 1620
6956                                                                                      unspecified
6957                                                                                      unspecified
6981                                                                      based on weight (44-88 lbs)
6982                                                                     based on weight (51-100 lbs)
6983                                                                     based on weight (55-100 lbs)
6986                                                                                      unspecified
7002                                                               27 milbemycin oxime, 1620 spinosad
7005                                                                                      unspecified
7006                                                                                      unspecified
7017                                                                      based on weight (44-88 lbs)
7021                                                                      based on weight (44-88 lbs)
7025                                                                                      unspecified
7027                                                                                  0.25 inch strip
7042                                                                                     small amount
7054                                                             272 ivermectin, 227 pyrantel pamoate
7071                                                                                      unspecified
7092                                                                                                 
7093                                                                     based on weight (60-120 lbs)
7095                                                                                         27, 1620
7096                                                                                         27, 1620
7116                                                                                      unspecified
7127                                                                                      unspecified
7130                                                                                         27, 1620
7131                                                                                         272, 228
7137                                                                                  based on weight
7149                                                                     based on weight (60-120 lbs)
7151                                                                                     small amount
7152                                                                                   1 pack/package
7153                                                                                     small amount
7154                                                                                     small amount
7155                                                                                     small amount
7172                                                                                           powder
7173                                                                                         wipe/pad
7175                                                                                      application
7177                                                                                                 
7180                                                                                                 
7189                                                                                      unspecified
7208                                                                                  0.25 inch strip
7218                                                               27 milbemycin oxime, 1620 spinosad
7243                                                             272 ivermectin, 227 pyrantel pamoate
7247                                                                                  based on weight
7248                                                                    based on weight (21.1-60 lbs)
7249                                                                     based on weight (50-110 lbs)
7260                                                        64000 amylase, 9000 lipase, 5700 protease
7262                                                                         5 tablets/pills/capsules
7291                                                                      based on weight (44-88 lbs)
7295                                                                      based on weight (44-88 lbs)
7297                                                                                      unspecified
7320                                                                     based on weight (51-100 lbs)
7342                                                                      based on weight (45-88 lbs)
7344                                                                                      unspecified
7345                                                                                      unspecified
7346                                                                      based on weight (45-88 lbs)
7371                                                                                     small amount
7413                                                                     based on weight (51-100 lbs)
7499                                                             272 ivermectin, 227 pyrantel pamoate
7503                                                                                  based on weight
7513                                                                              tablet/pill/capsule
7519                                                             272 ivermectin, 227 pyrantel pamoate
7521                                                             272 ivermectin, 227 pyrantel pamoate
7524                                                                                      unspecified
7525                                                             272 ivermectin, 227 pyrantel pamoate
7526                                                                      1 tablet/pill/capsule - 136
7555                                                                     based on weight (88-123 lbs)
7563                                                                     based on weight (51-100 lbs)
7564                                                                                      unspecified
7565                                                                     based on weight (51-100 lbs)
7566                                                                     based on weight (51-100 lbs)
7576                                                                                    1 bottle/vial
7577                                                               460 lufenuron, 23 milbemycin oxime
7580                                                                          0.5 tablet/pill/capsule
7583                                                                     based on weight (51-100 lbs)
7584                                                                                  based on weight
7585                                                                                      unspecified
7586                                                                                      unspecified
7587                                                                                      unspecified
7588                                                                                      unspecified
7589                                                                                      unspecified
7590                                                                                      unspecified
7598                                                                                       1 wipe/pad
7635                                                                                         10 , 100
7660                                                                     based on weight (51-100 lbs)
7671                                                                                          40, 200
7673                                                                                      unspecified
7674                                                                                      unspecified
7675                                                              13.5 milbemycin oxime, 810 spinosad
7678                                                                                  0.25 inch strip
7679                                                                                     small amount
7681                                                                      based on weight (40-60 lbs)
7692                                                                                         23 , 228
7696                                                                                          23, 228
7699                                                                                          23, 228
7701                                                                                          23, 228
7705                                                                                     small amount
7732                                                                                  based on weight
7742                                                                                      unspecified
7743                                                                      based on weight (44-88 lbs)
7746                                                                                  based on weight
7747                                                                      based on weight (44-88 lbs)
7748                                                                                      unspecified
7749                                                                     based on weight (51-100 lbs)
7750                                                                     based on weight (89-132 lbs)
7751                                                                                                 
7754                                                                    based on weight (61+ lbs) - 5
7759                                                                      based on weight (56-95 lbs)
7763                                                                     based on weight (51-100 lbs)
7772                                                                                      unspecified
7776                                                                                      unspecified
7783                                                                         based on weight (54 lbs)
7784                                                                         based on weight (54 lbs)
7795                                                                      based on weight (60-90 lbs)
7812                                                                                      unspecified
7818                                                                                      unspecified
7820                                                                                      unspecified
7822                                                                                      unspecified
7832                                                                                      2.68of 9.7%
7839                                                                                      application
7845                                                                                      unspecified
7846                                                                                      unspecified
7848                                                                                      unspecified
7852                                                                                      unspecified
7853                                                                                      unspecified
7854                                                                                      unspecified
7862                                                                       2-3 tablets/pills/capsules
7883                                                                                      unspecified
7884                                                                                      unspecified
7887                                                                                      unspecified
7889                                                                                      unspecified
7895                                                                                      unspecified
7926                                                                                     small amount
7929                                                                                     small amount
7944                                                                                     small amount
7946                                                                                     small amount
7961                                                                                  0.25 inch strip
7966                                                                     based on weight (51-100 lbs)
7967                                                                     based on weight (60-121 lbs)
7968                                                                                  based on weight
7969                                                                                  based on weight
7970                                                                                        62.5, 250
7973                                                                                      unspecified
7987                                                                                         27, 1620
7988                                                                     based on weight (51-100 lbs)
7993                                                                      based on weight (40-85 lbs)
7995                                                                                       500 , 5 ml
7998                                                                     based on weight (85-130 lbs)
8000                                                                     based on weight (85-130 lbs)
8009                                                                                     small amount
8012                                                                                     small amount
8014                                                                                     small amount
8017                                                                                     small amount
8029                                                             272 ivermectin, 227 pyrantel pamoate
8030                                                                     based on weight (51-100 lbs)
8040                                                             272 ivermectin, 227 pyrantel pamoate
8042                                                                                          23, 460
8043                                                                                          23, 228
8044                                                                                          23, 228
8045                                                                                          23, 228
8075                                                                                      unspecified
8086                                                                                     small amount
8091                                                                                         125, 375
8098                                                                      based on weight (45-88 lbs)
8099                                                                   based on weight (50.1-100 lbs)
8120                                                                     based on weight (51-100 lbs)
8121                                                                     based on weight (51-100 lbs)
8123                                                                     based on weight (50-100 lbs)
8125                                                                                      unspecified
8128                                                                                     small amount
8130                                                                     based on weight (51-100 lbs)
8131                                                                   based on weight (60.1-121 lbs)
8136                                                                     based on weight (50-100 lbs)
8137                                                                     based on weight (50-100 lbs)
8138                                                                     based on weight (51-100 lbs)
8139                                                                     based on weight (51-100 lbs)
8140                                                                                     small amount
8160                                                                         2 tablets/pills/capsules
8182                                                                                     small amount
8184                                                                                           powder
8185                                                                     based on weight (51-100 lbs)
8186                                                                     based on weight (51-100 lbs)
8187                                                                     based on weight (51-100 lbs)
8188                                                                     based on weight (61-120 lbs)
8195                                                                     based on weight (51-100 lbs)
8196                                                                    based on weight (24.1-60 lbs)
8205                                                                     based on weight (89-132 lbs)
8206                                                                     based on weight (51-100 lbs)
8207                                                                     based on weight (51-100 lbs)
8208                                                                     based on weight (89-132 lbs)
8209                                                                                     23, 228, 460
8210                                                                     based on weight (51-100 lbs)
8211                                                                    based on weight (45-88.9 lbs)
8212                                                                   based on weight (50.1-100 lbs)
8215                                                                     based on weight (89-132 lbs)
8221                                                                     based on weight (51-100 lbs)
8223                                                                     based on weight (51-100 lbs)
8224                                                                     based on weight (51-100 lbs)
8234                                                                                      application
8235                                                                                      application
8238                                                                                     small amount
8248                                                                      based on weight (44-88 lbs)
8251                                                                                         500, 750
8252                                                                                                 
8280                                                                                      unspecified
8284                                                                                      unspecified
8293                                                                                      unspecified
8296                                                                     based on weight (51-100 lbs)
8297                                                                      based on weight (44-88 lbs)
8298                                                                                     small amount
8314                                                                     based on weight (50-100 lbs)
8315                                                                        based on weight (55+ lbs)
8337                                                                                      unspecified
8338                                                                                      unspecified
8349                                                                                      unspecified
8354                                                                     based on weight (50-100 lbs)
8355                                                                      based on weight (45-88 lbs)
8358                                                                     based on weight (51-100 lbs)
8359                                                                      based on weight (44-88 lbs)
8362                                                                                     small amount
8369                                                                                  moderate amount
8370                                                                     based on weight (51-100 lbs)
8371                                                                      based on weight (44-88 lbs)
8376                                                                                     small amount
8377                                                                     based on weight (51-100 lbs)
8378                                                                      based on weight (44-88 lbs)
8389                                                             272 ivermectin, 227 pyrantel pamoate
8408                                                                     based on weight (50-100 lbs)
8410                                                                     based on weight (51-100 lbs)
8418                                                                                      unspecified
8420                                                                     based on weight (51-100 lbs)
8421                                                                                      unspecified
8424                                                                        based on weight (55+ lbs)
8425                                                                     based on weight (51-100 lbs)
8427                                                                     based on weight (51-100 lbs)
8435                                                                                   1 pack/package
8436                                                                                     small amount
8440                                                                                            45-60
8454                                                                     based on weight (50-100 lbs)
8466                                                                     based on weight (51-100 lbs)
8467                                                                                      application
8475                                                                                             bath
8478                                                                                             bath
8509                                                                              tablet/pill/capsule
8514                                                                     based on weight (51-100 lbs)
8515                                                                     based on weight (51-100 lbs)
8528                                                                   based on weight (50.1-100 lbs)
8531                                                                   based on weight (50.1-100 lbs)
8541                                                                                                 
8550                                                                     based on weight (50-100 lbs)
8554                                                                     based on weight (50-100 lbs)
8555                                                                        based on weight (<50 lbs)
8578                                                                                     small amount
8581                                                                                     small amount
8582                                                                     based on weight (50-100 lbs)
8583                                                                                     small amount
8584                                                                                     small amount
8585                                                                                  moderate amount
8586                                                                                       1 wipe/pad
8588                                                                                     small amount
8591                                                                     based on weight (60-120 lbs)
8607                                                                        based on weight (55+ lbs)
8609                                                                     based on weight (51-100 lbs)
8613                                                     0.284 betamethasone, 0.57 gentamicin sulfate
8673                                                               27 milbemycin oxime, 1620 spinosad
8674                                                                     based on weight (60-120 lbs)
8675                                                                     based on weight (60-120 lbs)
8676                                                                     based on weight (60-120 lbs)
8677                                                                     based on weight (60-120 lbs)
8694                                                                      based on weight (45-88 lbs)
8697                                                                                           varies
8702                                                                      based on weight (45-88 lbs)
8707                                                                      based on weight (45-88 lbs)
8731                                                                                  based on weight
8735                                                                                  moderate amount
8736                                                                                       1 wipe/pad
8744                                                                                      unspecified
8745                                                                                      unspecified
8756                                                                     based on weight (51-100 lbs)
8757                                                            23 milbemycin oxime, 228 praziquantel
8759                                                                        based on weight (55+ lbs)
8760                                                                     based on weight (51-100 lbs)
8768                                                                         based on weight (51 lbs)
8769                                                                                      unspecified
8770                                                                     based on weight (50-100 lbs)
8771                                                                                      unspecified
8777                                                                     based on weight (51-100 lbs)
8778                                                                     based on weight (51-100 lbs)
8779                                                                      based on weight (56-95 lbs)
8780                                                                     based on weight (51-100 lbs)
8781                                                                      based on weight (56-95 lbs)
8786                                                                     based on weight (51-100 lbs)
8790                                                                     based on weight (51-100 lbs)
8791                                                                      based on weight (44-88 lbs)
8792                                                                                     small amount
8793                                                                      based on weight (44-88 lbs)
8794                                                                     based on weight (51-100 lbs)
8795                                                                     based on weight (51-100 lbs)
8797                                                                                      unspecified
8805                                                                     based on weight (51-100 lbs)
8815                                                                                  0.25 inch strip
8819                                                                     based on weight (51-100 lbs)
8820                                                                     based on weight (60-121 lbs)
8825                                                                                         125, 500
8826                                                                                  0.25 inch strip
8828                                                                     based on weight (51-100 lbs)
8831                                                             272 ivermectin, 227 pyrantel pamoate
8833                                                                     based on weight (51-100 lbs)
8837                                                                                      unspecified
8843                                                                      based on weight (45-88 lbs)
8851                                                                                      unspecified
8852                                                                                      unspecified
8853                                                                                      unspecified
8860                                                                                     small amount
8875                                                                                      unspecified
8876                                                                                      unspecified
8877                                                                                      unspecified
8879                                                                     based on weight (51-100 lbs)
8885                                                             272 ivermectin, 227 pyrantel pamoate
8908                                                                                        13.5, 810
8911                                                                     based on weight (51-100 lbs)
8929                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8930                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8961                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8962                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9026                                                                     based on weight (50-100 lbs)
9046                                                                     based on weight (51-100 lbs)
9047                                                                                     small amount
9050                                                                                      as directed
9052                                                                                 0.125 inch strip
9054                                                                      based on weight (26-50 lbs)
9055                                                                     based on weight (51-100 lbs)
9060                                                                                      unspecified
9064                                                                                      as directed
9070                                                                                      unspecified
9071                                                                                      unspecified
9084                                                                                      unspecified
9094                                                                        based on weight (50+ lbs)
9095                                                                     based on weight (51-100 lbs)
9098                                                                     based on weight (51-100 lbs)
9099                                                                                      unspecified
9100                                                                                      unspecified
9101                                                                                      unspecified
9109                                                                                  0.25 inch strip
9118                                                                                  0.25 inch strip
9132                                                                        based on weight (60+ lbs)
9136                                                                                      application
9156                                                                                      unspecified
9160                                                                     based on weight (89-132 lbs)
9161                                         based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                     based on weight (51-100 lbs)
9187                                                                                      application
9193                                                                                   1 pack/package
9202                                                                     based on weight (51-100 lbs)
9230                                                                                     small amount
9236                                                                     based on weight (51-100 lbs)
9239                                                                                         tapering
9240                                                                                         tapering
9241                                                                                           varies
9242                                                                     based on weight (51-100 lbs)
9244                                                                                      unspecified
9252                                                                                      unspecified
9253                                                                                      application
9254                                                                     based on weight (50-100 lbs)
9259                                                                     based on weight (60-120 lbs)
9267                                                                     based on weight (51-100 lbs)
9269                                                             272 ivermectin, 227 pyrantel pamoate
9271                                                                                      unspecified
9292                                                                                         27, 1620
9294                                                                                         27, 1620
9295                                                                                         27, 1620
9297                                                                                      unspecified
9386                                                                     based on weight (51-100 lbs)
9387                                                                      based on weight (56-95 lbs)
9416                                                                                     small amount
9418                                                                                     small amount
9421                                                                                           collar
9422                                                                                  based on weight
9426                                                                     based on weight (50-100 lbs)
9429                                                                                      application
9432                                                                        based on weight (25+ lbs)
9433                                                                     based on weight (50-100 lbs)
9434                                                                     based on weight (51-100 lbs)
9435                                                                                        injection
9436                                                                     based on weight (51-100 lbs)
9438                                                                                        injection
9447                                                                                      unspecified
9452                                                             272 ivermectin, 227 pyrantel pamoate
9453                                                                                         8.8, 9.8
9454                                                                                  0.25 inch strip
9494                                                                                     small amount
9495                                                                                     small amount
9511                                                                                      unspecified
9516                                                                                 0.125 inch strip
9524                                                                                     small amount
9544                                                                    based on weight (24.1-60 lbs)
9546                                                                   based on weight (60.1-121 lbs)
9548                                                                    based on weight (44.1-88 lbs)
9549                                                                   based on weight (60.1-121 lbs)
9584                                                                     based on weight (51-100 lbs)
9588                                                                                     small amount
9592                                                                                      unspecified
9596                                                                                      unspecified
9600                                                                                      unspecified
9601                                                                                      unspecified
9602                                                                                  based on weight
9603                                                                                  based on weight
9604                                                                                  based on weight
9609                                                                     based on weight (51-100 lbs)
9610                                                                      based on weight (44-88 lbs)
9612                                                                                                 
9613                                                                                                 
9614                                                                                         wipe/pad
9615                                                                     based on weight (50-100 lbs)
9616                                                                      based on weight (44-88 lbs)
9617                                                                     based on weight (51-100 lbs)
9618                                                                      based on weight (44-80 lbs)
9619                                                                     based on weight (51-100 lbs)
9620                                                                      based on weight (44-88 lbs)
9621                                                                     based on weight (50-100 lbs)
9635                                                                                         27, 1620
9640                                                                                         27, 1620
9641                                                                     based on weight (60-120 lbs)
9643                                                                     based on weight (60-120 lbs)
9718                                                                                      unspecified
9723                                                                     based on weight (51-100 lbs)
9759                                                                     based on weight (51-100 lbs)
9760                                                                        based on weight (55+ lbs)
9761                                                                     based on weight (51-100 lbs)
9766                                                                     based on weight (51-100 lbs)
9770                                                                   based on weight (50.1-100 lbs)
9785                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9791                                                                     based on weight (50-100 lbs)
9807                                                                                      unspecified
9808                                                                                      unspecified
9809                                                                                      unspecified
9821                                                                                   1 pack/package
9826                                                                                     1 inch strip
9828                                                                                            5-7.5
9833                                                                                      application
9837                                                                                      unspecified
9840                                                                                      unspecified
9843                                                                                      unspecified
9863                                                                                         wipe/pad
9865                                                                                                 
9873                                                                                      unspecified
9877                                                                                      unspecified
9884                                                                                  0.25 inch strip
9889                                                                     based on weight (51-100 lbs)
9890                                                                      based on weight (45-88 lbs)
9891                                                                                  0.25 inch strip
9892                                                                                     small amount
9894                                                                   based on weight (50.1-100 lbs)
9895                                                                   based on weight (60.1-121 lbs)
9896                                                                                  0.25 inch strip
9897                                                                                      unspecified
9898                                                                                  based on weight
9901                                                                                  based on weight
9903                                                                                  0.25 inch strip
9907                                                                                      unspecified
9917                                                                     based on weight (51-100 lbs)
9928                                                                                      unspecified
9931                                                                     based on weight (50-100 lbs)
9935                                                                      based on weight (40-60 lbs)
9942                                                                                       4.125 cups
9943                                                                    based on weight (40.1-60 lbs)
9944                                                                      based on weight (40-60 lbs)
9945                                                                     based on weight (50-100 lbs)
9963                                                                        based on weight (55+ lbs)
9966                                                                        based on weight (55+ lbs)
9968                                                                        based on weight (55+ lbs)
9970                                                                                     small amount
9972                                                                        based on weight (55+ lbs)
10017                                                                    based on weight (51-100 lbs)
10026                                                                    based on weight (51-100 lbs)
10027                                                                       based on weight (18+ lbs)
10037                                                                                     unspecified
10042                                                                                     unspecified
10053                                                                    based on weight (50-100 lbs)
10061                                                                                     application
10063                                                                       based on weight (18+ lbs)
10066                                                                       based on weight (18+ lbs)
10075                                                            272 ivermectin, 227 pyrantel pamoate
10092                                                                                     unspecified
10093                                                                                     unspecified
10106                                                            272 ivermectin, 227 pyrantel pamoate
10107                                                              8.8% (s)-methoprene, 9.8% fipronil
10108                                                            272 ivermectin, 227 pyrantel pamoate
10109                                                              8.8% (s)-methoprene, 9.8% fipronil
10111                                                            272 ivermectin, 227 pyrantel pamoate
10113                                                                                   1 bottle/vial
10115                                                                                     unspecified
10116                                                                     based on weight (45-88 lbs)
10119                                                                                       272 , 228
10120                                                                                    small amount
10121                                                                             tablet/pill/capsule
10130                                                                                     unspecified
10131                                                                                     unspecified
10132                                                                                     unspecified
10133                                                                                     unspecified
10134                                                                                     unspecified
10151                                                                                     unspecified
10167                                                                    based on weight (51-100 lbs)
10170                                                                    based on weight (51-100 lbs)
10176                                                                                    small amount
10187                                                                                                
10188                                                                        2 tablets/pills/capsules
10195                                                                                     unspecified
10198                                                                       based on weight (55+ lbs)
10200                                                                        based on weight (60 lbs)
10209                                                                    based on weight (51-100 lbs)
10219                                                                    based on weight (51-100 lbs)
10232                                                                      1 tablet/pill/capsule - 10
10233                                                                        2 tablets/pills/capsules
10234                                                                      1 tablet/pill/capsule - 10
10235                                                                    based on weight (51-100 lbs)
10245                                                                    based on weight (50-100 lbs)
10249                                                                                     unspecified
10260                                                                                          collar
10264                                                                                    small amount
10273                                                                    based on weight (51-100 lbs)
10274                                                                     based on weight (40-60 lbs)
10275                                                                    based on weight (51-100 lbs)
10276                                                                     based on weight (41-60 lbs)
10301                                                                                         23, 460
10312                                                                     based on weight (40-85 lbs)
10313                                                                1.5 tablets/pills/capsules - 136
10314                                                                   0.5 tablet/pill/capsule - 250
10320                                                                     1 tablet/pill/capsule - 375
10324                                                                    based on weight (85-130 lbs)
10334                                                                    based on weight (60-120 lbs)
10335                                                                    based on weight (88-123 lbs)
10345                                                                             tablet/pill/capsule
10347                                                                                     unspecified
10348                                                                                     unspecified
10349                                                                                    small amount
10356                                                                                 based on weight
10365                                                                    based on weight (51-100 lbs)
10366                                                                     based on weight (44-88 lbs)
10370                                                            272 ivermectin, 227 pyrantel pamoate
10372                                                            272 ivermectin, 227 pyrantel pamoate
10374                                                            272 ivermectin, 227 pyrantel pamoate
10379                                                                                         23, 228
10400                                                                                     unspecified
10403                                                                     based on weight (45-88 lbs)
10405                                                                     based on weight (45-88 lbs)
10408                                                                    based on weight (50-100 lbs)
10409                                                           23 milbemycin oxime, 228 praziquantel
10410                                                                                         23, 228
10412                                                                                         23, 228
10429                                                                                                
10435                                                                                     unspecified
10436                                                                                     unspecified
10441                                                                                     unspecified
10445                                                                                     unspecified
10470                                                                                    small amount
10477                                                                                   1 bottle/vial
10478                                                                                 based on weight
10483                                                            272 ivermectin, 227 pyrantel pamoate
10485                                                                    based on weight (51-100 lbs)
10487                                                                    based on weight (51-100 lbs)
10499                                                                                         23, 228
10503                                                                    based on weight (50-100 lbs)
10505                                                                    based on weight (51-100 lbs)
10506                                                                    based on weight (51-100 lbs)
10529                                                                                     unspecified
10555                                                                                     unspecified
10557                                                                                     unspecified
10565                                                                                     unspecified
10573                                                                                     unspecified
10575                                                                                    small amount
10576                                                                   3 tablets/pills/capsules - 25
10577                                                                      1 tablet/pill/capsule - 20
10578                                                                     1 tablet/pill/capsule - 160
10579                                                                     1 tablet/pill/capsule - 500
10580                                                                                    1.9 , 1.9 ml
10583                                                                    based on weight (60-120 lbs)
10588                                                                    based on weight (50-100 lbs)
10590                                                                    based on weight (51-100 lbs)
10591                                                                    based on weight (50-100 lbs)
10610                                                            272 ivermectin, 227 pyrantel pamoate
10619                                                                      1.5 tablets/pills/capsules
10624                                                                                 based on weight
10628                                                                                 0.25 inch strip
10642                                                                                     unspecified
10655                                                                    based on weight (51-100 lbs)
10667                                                                    based on weight (51-100 lbs)
10671                                                                       based on weight (55+ lbs)
10678                                                                                     unspecified
10682                                                                                     unspecified
10683                                                                    based on weight (51-100 lbs)
10684                                                                    based on weight (51-100 lbs)
10685                                                                                 based on weight
10686                                                                                     unspecified
10687                                                                                      1-2 scoops
10689                                                                    based on weight (51-100 lbs)
10693                                                                                     unspecified
10694                                                                    based on weight (51-100 lbs)
10696                                                                                     unspecified
10697                                                                                     unspecified
10701                                                                                     unspecified
10706                                                                                     unspecified
10707                                                                    based on weight (51-100 lbs)
10711                                                                    based on weight (51-100 lbs)
10712                                                                                 based on weight
10713                                                                                     unspecified
10714                                                                                      1-2 scoops
10717                                                                    based on weight (51-100 lbs)
10718                                                                                    small amount
10725                                                                    based on weight (51-100 lbs)
10726                                                                                          powder
10727                                                                                     unspecified
10740                                                                                     unspecified
10743                                                                                     unspecified
10751                                                                                     unspecified
10755                                                            272 ivermectin, 227 pyrantel pamoate
10769                                                                                 based on weight
10780                                                                    based on weight (51-100 lbs)
10781                                                                  based on weight (60.1-121 lbs)
10792                                                            272 ivermectin, 227 pyrantel pamoate
10794                                                                    based on weight (51-100 lbs)
10796                                                            272 ivermectin, 227 pyrantel pamoate
10825                                                                                     unspecified
10827                                                                                          collar
10830                                                                    based on weight (51-100 lbs)
10837                                                                                     unspecified
10843                                                                                          1 dose
10846                                                                       based on weight (60+ lbs)
10849                                                                    based on weight (51-100 lbs)
10853                                                                                    small amount
10863                                                                                             1-2
10865                                                                    based on weight (51-100 lbs)
10866                                                                     based on weight (44-88 lbs)
10870                                                                    based on weight (51-100 lbs)
10871                                                                     based on weight (45-88 lbs)
10874                                                                    based on weight (51-100 lbs)
10877                                                                    based on weight (51-100 lbs)
10878                                                                   based on weight (24.1-60 lbs)
10892                                                                     based on weight (45-88 lbs)
10896                                                                                             6-8
10898                                                                     based on weight (45-88 lbs)
10899                                                                                                
10901                                                                                     application
10905                                                                                     application
10928                                                                    based on weight (60-120 lbs)
10929                                                                    based on weight (50-100 lbs)
10934                                                                                 based on weight
10938                                                                    based on weight (50-100 lbs)
10953                                                                    based on weight (89-132 lbs)
10959                                                                    based on weight (89-132 lbs)
10970                                                                    based on weight (50-100 lbs)
10971                                                                     based on weight (44-88 lbs)
11003                                                                    based on weight (60-121 lbs)
11008                                                                                     unspecified
11009                                                                    based on weight (50-100 lbs)
11010                                                                    based on weight (51-100 lbs)
11011                                                                    based on weight (51-100 lbs)
11016                                                                                     unspecified
11021                                                                                     unspecified
11035                                                                    based on weight (51-100 lbs)
11036                                                                  based on weight (60.1-121 lbs)
11037                                                                    based on weight (51-100 lbs)
11038                                                                  based on weight (60.1-120 lbs)
11065                                                              460 lufenuron, 23 milbemycin oxime
11085                                                                                     unspecified
11088                                                                                     unspecified
11093                                                               8 dexamethasone, 400 enrofloxacin
11134                                                                     based on weight (45-88 lbs)
11142                                                                                     unspecified
11144                                                                                     unspecified
11145                                                                                     unspecified
11152                                                                                     unspecified
11153                                                                                     unspecified
11155                                                                                     unspecified
11156                                                                                     unspecified
11158                                                                                     unspecified
11159                                                                                     unspecified
11163                                                                                     unspecified
11165                                                                                     unspecified
11182                                                                                     unspecified
11186                                                                    based on weight (50-100 lbs)
11189                                                                                     unspecified
11208                                                                  based on weight (50.1-100 lbs)
11210                                                                                     unspecified
11211                                                                                     unspecified
11212                                                                    based on weight (51-100 lbs)
11213                                                                                     unspecified
11224                                                                                     unspecified
11228                                                                                     unspecified
11229                                                                    based on weight (51-100 lbs)
11241                                                              27 milbemycin oxime, 1620 spinosad
11242                                                                    based on weight (51-100 lbs)
11276                                                                                        23 , 460
11291                                                                    based on weight (51-100 lbs)
11292                                                                    based on weight (60-120 lbs)
11293                                                                    based on weight (51-100 lbs)
11294                                                                     based on weight (24-60 lbs)
11295                                                                    based on weight (51-100 lbs)
11296                                                                    based on weight (60-120 lbs)
11307                                                                    based on weight (50-100 lbs)
11311                                                                    based on weight (50-100 lbs)
11312                                                                     based on weight (44-88 lbs)
11315                                                                             tablet/pill/capsule
11316                                                                             tablet/pill/capsule
11317                                                                             tablet/pill/capsule
11318                                                                             tablet/pill/capsule
11326                                                                    based on weight (51-100 lbs)
11327                                                                    based on weight (60-120 lbs)
11338                                                                                    small amount
11340                                                                                         10, 100
11346                                                                                 moderate amount
11349                                                                                 moderate amount
11350                                                                                    small amount
11353                                                                                 136, 136, 680.4
11356                                                                                     unspecified
11360                                                                                     unspecified
11368                                                                    based on weight (50-100 lbs)
11385                                                                                 based on weight
11386                                                                                 based on weight
11387                                                                                    pack/package
11388                                                                        based on weight (40 lbs)
11394                                                                                    small amount
11415                                                                                     unspecified
11436                                                                    based on weight (51-100 lbs)
11437                                                                    based on weight (51-100 lbs)
11441                                                              460 lufenuron, 23 milbemycin oxime
11464                                                                                     unspecified
11470                                                                                     unspecified
11471                                                                                     unspecified
11473                                                                       based on weight (50+ lbs)
11477                                                                    based on weight (51-100 lbs)
11493                                                                                     unspecified
11509                                                                    based on weight (50-100 lbs)
11536                                                                                         23, 460
11537                                                                    based on weight (51-100 lbs)
11538                                                                    based on weight (51-100 lbs)
11545                                                                    based on weight (50-100 lbs)
11546                                                                                     unspecified
11547                                                                                         23, 460
11551                                                                                     unspecified
11560                                                                    based on weight (51-100 lbs)
11561                                                                    based on weight (51-100 lbs)
11562                                                                    based on weight (60-121 lbs)
11567                                                                    based on weight (51-100 lbs)
11568                                                                    based on weight (60-121 lbs)
11570                                                                                     unspecified
11575                                                                                     unspecified
11576                                                                                     unspecified
11577                                                                                     unspecified
11578                                                                                     unspecified
11589                                                                       based on weight (50+ lbs)
11593                                                                    based on weight (51-100 lbs)
11596                                                                    based on weight (51-100 lbs)
11599                                                                     based on weight (43-88 lbs)
11600                                                                    based on weight (51-100 lbs)
11620                                                                                     unspecified
11621                                                                                     unspecified
11633                                                            272 ivermectin, 227 pyrantel pamoate
11637                                                                                     unspecified
11641                                                           23 milbemycin oxime, 228 praziquantel
11651                                                                    based on weight (51-100 lbs)
11652                                                                    based on weight (51-100 lbs)
11653                                                                    based on weight (60-120 lbs)
11654                                                                    based on weight (51-100 lbs)
11655                                                                    based on weight (60-120 lbs)
11656                                                                    based on weight (51-100 lbs)
11660                                                                    based on weight (50-100 lbs)
11661                                                                    based on weight (51-100 lbs)
11662                                                                     based on weight (44-88 lbs)
11664                                                                    based on weight (88-123 lbs)
11666                                                                                     application
11667                                                                                     application
11671                                                                                     application
11673                                                                                                
11678                                                                    based on weight (51-100 lbs)
11680                                                                                 based on weight
11681                                                                    based on weight (51-100 lbs)
11683                                                                    based on weight (51-100 lbs)
11691                                                                                     unspecified
11692                                                                                     unspecified
11693                                                                                     as directed
11695                                                                                    small amount
11701                                                                                     unspecified
11702                                                            272 ivermectin, 227 pyrantel pamoate
11709                                                                                     unspecified
11710                                                                                     unspecified
11719                                                                                     as directed
11722                                                                                     unspecified
11723                                                                                     unspecified
11735                                                                    based on weight (51-100 lbs)
11742                                                                                   1 bottle/vial
11802                                                                                         23, 460
11806                                                                                     unspecified
11813                                                                                         23, 460
11814                                                                       based on weight (55+ lbs)
11817                                                              460 lufenuron, 23 milbemycin oxime
11822                                                                    based on weight (51-100 lbs)
11823                                                                                          25 lbs
11824                                                                    based on weight (89-132 lbs)
11825                                                                  based on weight (60.1-121 lbs)
11832                                                            272 ivermectin, 227 pyrantel pamoate
11833                                                                                          57, 68
11835                                                                    based on weight (51-100 lbs)
11836                                                                      based on weight (0-25 lbs)
11837                                                                  based on weight (60.1-121 lbs)
11840                                                                                         20, 200
11844                                                                                         20, 200
11846                                                                                         10, 325
11847                                                                    based on weight (51-100 lbs)
11848                                                                       based on weight (<25 lbs)
11850                                                                                      1200, 1500
11861                                                            272 ivermectin, 227 pyrantel pamoate
11862                                                              68 ivermectin, 57 pyrantel pamoate
11873                                                                    based on weight (50-100 lbs)
11874                                                                       based on weight (<25 lbs)
11875                                                                    based on weight (60-121 lbs)
11881                                                                       based on weight (125 lbs)
11882                                                                    based on weight (60-121 lbs)
11889                                                                    based on weight (51-100 lbs)
11898                                                                    based on weight (51-100 lbs)
11911                                                                                    small amount
11919                                                                                     unspecified
11930                                                                                   5 billion cfu
11959                                                              460 lufenuron, 23 milbemycin oxime
11960                                                                                     as directed
11962                                                              460 lufenuron, 23 milbemycin oxime
11964                                                                    based on weight (51-100 lbs)
11978                                                                                     application
11979                                                                    based on weight (89-132 lbs)
11980                                                                    based on weight (89-132 lbs)
11983                                                                    based on weight (89-132 lbs)
11993                                                                                     unspecified
12009                                                                                     unspecified
12010                                                                                     unspecified
12014                                                                    based on weight (51-100 lbs)
12018                                                                                     unspecified
12019                                                                                     unspecified
12020                                                                    based on weight (51-100 lbs)
12043                                                                                     unspecified
12047                                                                                     unspecified
12048                                                              based on weight (45-88 lbs) - 2.68
12051                                                                                  1 pack/package
12054                                                                                     unspecified
12090                                                                    based on weight (51-100 lbs)
12108                                                                                 moderate amount
12111                                                                                     unspecified
12120                                                                                     unspecified
12128                                                                     based on weight (44-88 lbs)
12129                                                                    based on weight (51-100 lbs)
12130                                                                                     application
12135                                                                     based on weight (44-88 lbs)
12136                                                                    based on weight (51-100 lbs)
12154                                                                                     unspecified
12155                                                                                     unspecified
12159                                                                                     unspecified
12160                                                                                     unspecified
12164                                                                                     unspecified
12173                                                                                     unspecified
12215                                                            272 ivermectin, 227 pyrantel pamoate
12223                                                                                                
12261                                                                  based on weight (60.1-120 lbs)
12271                                                                     based on weight (45-88 lbs)
12273                                                                                    small amount
12279                                                                                    small amount
12283                                                                                         23, 228
12299                                                                                     unspecified
12306                                                                                     unspecified
12309                                                                                     unspecified
12313                                                                                         23, 460
12314                                                                                        27, 1620
12322                                                                                      1200, 1500
12324                                                                    based on weight (60-120 lbs)
12334                                                                                       injection
12336                                                                                       injection
12337                                                                                     unspecified
12342                                                                    based on weight (60-120 lbs)
12343                                                                                     unspecified
12346                                                                                       155, 1200
12349                                                                                 2 bottles/vials
12351                                                                                       150, 1200
12353                                                                                     unspecified
12364                                                                                      1200, 1500
12366                                                                    based on weight (60-120 lbs)
12376                                                                                       155, 1200
12379                                                                                       200, 1500
12394                                                                                     unspecified
12398                                                            272 ivermectin, 227 pyrantel pamoate
12402                                                                    based on weight (51-100 lbs)
12409                                                                                  1 pack/package
12410                                                                    based on weight (51-100 lbs)
12411                                                                     based on weight (41-88 lbs)
12414                                                                    based on weight (51-100 lbs)
12415                                                                  based on weight (60.1-121 lbs)
12417                                                                    based on weight (51-100 lbs)
12418                                                                    based on weight (60-121 lbs)
12420                                                                                     application
12421                                                                    based on weight (51-100 lbs)
12422                                                                   based on weight (44.1-88 lbs)
12423                                                                                     application
12427                                                                                     unspecified
12453                                                            272 ivermectin, 227 pyrantel pamoate
12454                                                                    based on weight (51-100 lbs)
12455                                                                                 based on weight
12456                                                                    based on weight (51-100 lbs)
12457                                                                    based on weight (60-120 lbs)
12461                                                                                     unspecified
12462                                                                                     unspecified
12463                                                                                     unspecified
12473                                                                   based on weight (40.1-85 lbs)
12474                                                                   based on weight (40.1-85 lbs)
12475                                                                                        5.4 , 16
12477                                                                                     unspecified
12481                                                                                     unspecified
12485                                                                                     unspecified
12487                                                                                     unspecified
12495                                                                    based on weight (51-100 lbs)
12497                                                                                  10 billion cfu
12498                                                                    based on weight (51-100 lbs)
12500                                                                    based on weight (50-100 lbs)
12506                                                                                     unspecified
12514                                                                                             6-8
12516                                                                    based on weight (51-100 lbs)
12520                                                                    based on weight (51-100 lbs)
12521                                                                    based on weight (60-120 lbs)
12523                                                                    based on weight (51-100 lbs)
12529                                                                                   1 bottle/vial
12530                                                                    based on weight (51-100 lbs)
12535                                                                                     unspecified
12536                                                                                    small amount
12540                                                                    based on weight (51-100 lbs)
12541                                                                     based on weight (21-55 lbs)
12543                                                                                   1 bottle/vial
12546                                                                                     as directed
12549                                                                                     application
12550                                                                    based on weight (50-100 lbs)
12551                                                                                 based on weight
12552                                                                                 based on weight
12553                                                                                 based on weight
12554                                                                                 based on weight
12569                                                                                        27, 1610
12571                                                                                            7-10
12578                                                            272 ivermectin, 227 pyrantel pamoate
12580                                                            272 ivermectin, 227 pyrantel pamoate
12585                                                            272 ivermectin, 227 pyrantel pamoate
12588                                                                                       1, 32, 40
12589                                                            272 ivermectin, 227 pyrantel pamoate
12595                                                                                     unspecified
12596                                                                                     unspecified
12605                                                                                       11.5, 114
12608                                                                                        23 , 228
12615                                                                                     unspecified
12616                                                                    based on weight (51-100 lbs)
12620                                                                                     unspecified
12623                                                                    based on weight (51-100 lbs)
12630                                                                                     unspecified
12632                                                                                     unspecified
12636                                                                    based on weight (50-100 lbs)
12638                                                                    based on weight (51-100 lbs)
12639                                                                    based on weight (50-100 lbs)
12642                                                                    based on weight (50-100 lbs)
12645                                                                                        125, 500
12686                                                                    based on weight (51-100 lbs)
12692                                                           23 milbemycin oxime, 228 praziquantel
12693                                                                    based on weight (51-100 lbs)
12714                                                                    based on weight (51-100 lbs)
12730                                                                                     unspecified
12732                                                                                     application
12735                                                                                     as directed
12738                                                                    1 tablet/pill/capsule - 1000
12740                                                                                       13.5, 810
12744                                                                                      13.5 , 810
12749                                                                                       13.5, 810
12754                                                                                      13.5 , 810
12755                                                                    based on weight (60-120 lbs)
12756                                                                                    small amount
12771                                                                                 based on weight
12774                                                                                 based on weight
12780                                                                    based on weight (51-100 lbs)
12784                                                                                  1 pack/package
12787                                                                                        1 collar
12788                                                                                 0.25 inch strip
12795                                                                                     unspecified
12796                                                                                          collar
12797                                                                                  1 pack/package
12801                                                                                     application
12826                                                                                     unspecified
12828                                                                                     unspecified
12836                                                                    based on weight (60-120 lbs)
12849                                                                                                
12850                                                                                                
12861                                                                                    small amount
12865                                                                                    small amount
12866                                                                                    small amount
12870                                                                                     application
12873                                                                                 moderate amount
12879                                                                    based on weight (51-100 lbs)
12880                                                                  based on weight (60.1-120 lbs)
12881                                                                                    small amount
12882                                                                                    small amount
12894                                                                                    small amount
12895                                                                                            bath
12901                                                                                     unspecified
12902                                                                                     unspecified
12903                                                                                     as directed
12905                                                                                       injection
12906                                                                                     unspecified
12907                                                                                     unspecified
12908                                                                                     unspecified
12911                                                                                     unspecified
12916                                                                    based on weight (51-100 lbs)
12920                                                                    based on weight (51-100 lbs)
12929                                                                    based on weight (51-100 lbs)
12942                                                                    based on weight (50-100 lbs)
12943                                                                    based on weight (51-100 lbs)
12945                                                                    based on weight (51-100 lbs)
12948                                                                    based on weight (51-100 lbs)
12949                                                                    based on weight (51-100 lbs)
12952                                                                    based on weight (51-100 lbs)
12955                                                                                     unspecified
12956                                                                     based on weight (44-88 lbs)
12957                                                                    based on weight (51-100 lbs)
12962                                                                     based on weight (45-88 lbs)
12963                                                                             tablet/pill/capsule
12966                                                                     based on weight (45-88 lbs)
12994                                                                       based on weight (55+ lbs)
13005                                                                                     unspecified
13006                                                                                     unspecified
13008                                                                                     unspecified
13010                                                                                     unspecified
13013                                                                                     unspecified
13020                                                                                     unspecified
13041                                                                                    small amount
13049                                                                                     application
13061                                                                     based on weight (44-80 lbs)
13062                                                                                     as directed
13074                                                                                     unspecified
13075                                                                    based on weight (51-100 lbs)
13076                                                                       based on weight (19+ lbs)
13081                                                                                     unspecified
13084                                                                                         23, 460
13086                                                                    based on weight (51-100 lbs)
13096                                                                                    small amount
13104                                                                                     unspecified
13108                                                                                       13.5, 810
13109                                                                                      13.5, 1620
13114                                                                    based on weight (60-120 lbs)
13115                                                                    based on weight (60-120 lbs)
13116                                                               27 milbemycin oxime, 620 spinosad
13124                                                                                    small amount
13126                                                                                    small amount
13127                                                                                    small amount
13129                                                                                    small amount
13130                                                                                    small amount
13133                                                                                    small amount
13136                                                                    based on weight (50-100 lbs)
13137                                                                     based on weight (45-88 lbs)
13139                                                            272 ivermectin, 227 pyrantel pamoate
13142                                                                    based on weight (51-100 lbs)
13143                                                                     based on weight (45-88 lbs)
13148                                                                                        125, 875
13149                                                                    based on weight (51-100 lbs)
13150                                                                     based on weight (45-88 lbs)
13151                                                                    based on weight (51-100 lbs)
13152                                                                     based on weight (44-88 lbs)
13154                                                                                        125, 875
13157                                                                    based on weight (50-100 lbs)
13159                                                                                     unspecified
13160                                                                                     unspecified
13168                                                                    based on weight (51-100 lbs)
13169                                                                    based on weight (51-100 lbs)
13170                                                                    based on weight (60-120 lbs)
13187                                                                                     application
13188                                                                     based on weight (45-88 lbs)
13189                                                                    based on weight (51-100 lbs)
13195                                                                                                
13196                                                                                            bath
13198                                                                                 moderate amount
13199                                                                                        tapering
13233                                                                                     unspecified
13246                                                                                 0.25 inch strip
13248                                                                    based on weight (51-100 lbs)
13249                                                                     based on weight (45-88 lbs)
13264                                                            272 ivermectin, 227 pyrantel pamoate
13277                                                                                 moderate amount
13278                                                                                    small amount
13279                                                                                     application
13286                                                                                    small amount
13287                                                                                     application
13297                                                                    based on weight (51-100 lbs)
13298                                                                  based on weight (60.1-120 lbs)
13299                                                            272 ivermectin, 227 pyrantel pamoate
13307                                                                  based on weight (60.1-120 lbs)
13308                                                                    based on weight (51-100 lbs)
13313                                                                    based on weight (50-100 lbs)
13314                                                                    based on weight (60-120 lbs)
13321                                                                                            bath
13331                                                                    based on weight (60-120 lbs)
13332                                                                                             2-3
13334                                                              27 milbemycin oxime, 1620 spinosad
13340                                                                                    small amount
13341                                                                                     unspecified
13343                                                                                     unspecified
13344                                                                    based on weight (60-120 lbs)
13349                                                                    based on weight (51-100 lbs)
13353                                                                                             5-6
13354                                                                                 based on weight
13355                                                                     based on weight (60-80 lbs)
13356                                                                                       27 , 1620
13357                                                                                     unspecified
13376                                                                                     unspecified
13405                                                                                     unspecified
13411                                                                                     unspecified
13454                                                                    based on weight (51-100 lbs)
13455                                                                  based on weight (60.1-121 lbs)
13456                                                                     based on weight (25-75 lbs)
13459                                                                                 moderate amount
13460                                                                                     application
13461                                                                    based on weight (51-100 lbs)
13462                                                                  based on weight (60.1-121 lbs)
13464                                                            272 ivermectin, 227 pyrantel pamoate
13468                                                                                     unspecified
13470                                                                                 based on weight
13471                                                                    based on weight (51-100 lbs)
13475                                                                    based on weight (51-100 lbs)
13476                                                                             tablet/pill/capsule
13479                                                                        based on weight (70 lbs)
13483                                                                    based on weight (51-100 lbs)
13484                                                                     based on weight (44-88 lbs)
13496                                                                                 based on weight
13502                                                                                     unspecified
13503                                                                       based on weight (55+ lbs)
13506                                                                    based on weight (50-100 lbs)
13532                                                                                  1 pack/package
13537                                                                    based on weight (50-100 lbs)
13538                                                                    based on weight (51-100 lbs)
13562                                                                                        27, 1620
13563                                                                                     as directed
13564                                                                                        27, 1620
13575                                                                                     unspecified
13576                                                                    based on weight (60-120 lbs)
13579                                                                                    small amount
13581                                                                                       27 , 1620
13585                                                                                        27, 1620
13590                                                                                            bath
13594                                                                                     unspecified
13595                                                                                     unspecified
13601                                                                                     unspecified
13603                                                                                     unspecified
13605                                                                                     unspecified
13609                                                                                 0.25 inch strip
13615                                                                                    small amount
13623                                                                     based on weight (21-55 lbs)
13624                                                                     based on weight (21-55 lbs)
13625                                                                     based on weight (21-55 lbs)
13628                                                                     based on weight (21-55 lbs)
13631                                                                                    small amount
13654                                                                                    small amount
13657                                                                                    small amount
13666                                                                                     application
13693                                                                    based on weight (60-120 lbs)
13723                                                                     based on weight (44-88 lbs)
13724                                                                                 based on weight
13730                                                                             tablet/pill/capsule
13737                                                                    based on weight (50-100 lbs)
13740                                                                                     unspecified
13741                                                                                     unspecified
13747                                                                                         23, 460
13756                                                                                     unspecified
13768                                                                                     application
13769                                                                                                
13776                                                                       based on weight (50+ lbs)
13782                                                                        based on weight (50 lbs)
13783                                                                    based on weight (50-100 lbs)
13796                                                                                      1 wipe/pad
13893                                                                    based on weight (51-100 lbs)
13894                                                                    based on weight (51-100 lbs)
13896                                                                  based on weight (50.1-100 lbs)
13902                                                                                     unspecified
13905                                                                    based on weight (51-100 lbs)
13906                                                                    based on weight (51-100 lbs)
13910                                                                  based on weight (50.1-100 lbs)
13912                                                                                     unspecified
13913                                                                                     unspecified
13925                                                                                        27, 1620
13943                                                                    based on weight (51-100 lbs)
13946                                                                                                
13996                                                                                 0.25 inch strip
13998                                                                                     unspecified
14006                                                                                                
14007                                                                    based on weight (50-100 lbs)
14050                                                                                     unspecified
14051                                                                    based on weight (50-100 lbs)
14055                                                                    based on weight (50-100 lbs)
14059                                                                     based on weight (40-85 lbs)
14060                                                                    based on weight (51-100 lbs)
14061                                                                    based on weight (51-100 lbs)
14062                                                                    based on weight (50-100 lbs)
14063                                                                     based on weight (44-88 lbs)
14064                                                                    based on weight (51-100 lbs)
14106                                                                    based on weight (51-100 lbs)
14114                                                                    based on weight (60-120 lbs)
14118                                                              27 milbemycin oxime, 1620 spinosad
14123                                                                                             1 l
14128                                                                                        27, 1620
14129                                                                    based on weight (60-120 lbs)
14131                                                                                    small amount
14147                                                                    based on weight (51-100 lbs)
14148                                                                     based on weight (44-88 lbs)
14151                                                                    based on weight (50-100 lbs)
14154                                                                    based on weight (50-100 lbs)
14162                                                                    based on weight (50-100 lbs)
14163                                                                                     unspecified
14164                                                                    based on weight (51-100 lbs)
14165                                                                                    small amount
14170                                                                                    small amount
14172                                                                    based on weight (51-100 lbs)
14173                                                                      based on weight (0-25 lbs)
14174                                                                    based on weight (89-132 lbs)
14175                                                                                     as directed
14177                                                                    based on weight (50-100 lbs)
14178                                                                    based on weight (89-132 lbs)
14180                                                                    based on weight (88-120 lbs)
14181                                                                    based on weight (51-100 lbs)
14190                                  1 dexamethasone, 3.5 neomycin sulfate, 10000 units polymyxin b
14219                                                                    based on weight (51-100 lbs)
14221                                                                                     unspecified
14228                                                                                     unspecified
14238                                                                                     unspecified
14241                                                                     based on weight (44-88 lbs)
14242                                                                     based on weight (26-50 lbs)
14245                                                                     based on weight (22-44 lbs)
14282                                                                    based on weight (50-100 lbs)
14284                                                                    based on weight (50-100 lbs)
14291                                                                                     unspecified
14301                                                                    based on weight (50-100 lbs)
14302                                                                       based on weight (25+ lbs)
14319                                                            272 ivermectin, 227 pyrantel pamoate
14323                                                                                     application
14324                                                                                             3-4
14330                                                                                     unspecified
14334                                                                   based on weight (20.1-55 lbs)
14336                                                                                             2-3
14365                                                            272 ivermectin, 227 pyrantel pamoate
14373                                                                                 based on weight
14376                                                                                 based on weight
14378                                                                       based on weight (60+ lbs)
14380                                                                                 based on weight
14385                                                                    based on weight (51-100 lbs)
14386                                                                    based on weight (60-120 lbs)
14387                                                                    based on weight (51-100 lbs)
14388                                                                     based on weight (24-60 lbs)
14404                                                              460 lufenuron, 23 milbemycin oxime
14408                                                                    based on weight (51-100 lbs)
14412                                                                    based on weight (60-120 lbs)
14413                                                                     based on weight (44-88 lbs)
14414                                                                        based on weight (60 lbs)
14426                                                                                     unspecified
14428                                                                                     unspecified
14429                                                                    based on weight (51-100 lbs)
14431                                                                    based on weight (51-100 lbs)
14432                                                                                 based on weight
14433                                                                                     unspecified
14434                                                                                         1 scoop
14443                                                                    based on weight (51-100 lbs)
14444                                                                                     unspecified
14445                                                                                     unspecified
14446                                                                                     unspecified
14447                                                                                     unspecified
14448                                                                    based on weight (51-100 lbs)
14449                                                                    based on weight (51-100 lbs)
14451                                                                    based on weight (51-100 lbs)
14455                                                                                 0.25 inch strip
14471                                                                                     unspecified
14473                                                                                     unspecified
14477                                                                                     unspecified
14479                                                                                 based on weight
14488                                                                    based on weight (51-100 lbs)
14489                                                                    based on weight (51-100 lbs)
14490                                                                    based on weight (51-100 lbs)
14495                                                                    based on weight (51-100 lbs)
14498                                                                    based on weight (51-100 lbs)
14499                                                                    based on weight (50-100 lbs)
14512                                                                    based on weight (51-100 lbs)
14513                                                                     based on weight (60-70 lbs)
14528                                                                                   1 bottle/vial
14563                                                                                     unspecified
14576                                                                    based on weight (51-100 lbs)
14578                                                                       based on weight (25+ lbs)
14582                                                                   based on weight (44.1-88 lbs)
14583                                                                    based on weight (51-100 lbs)
14584                                                                   based on weight (44.1-88 lbs)
14585                                                                    based on weight (51-100 lbs)
14586                                                                   based on weight (44.1-88 lbs)
14587                                                                    based on weight (51-100 lbs)
14588                                                                   based on weight (44.1-88 lbs)
14601                                                                                     unspecified
14605                                                           25 milbemycin oxime, 228 praziquantel
14608                                                           23 milbemycin oxime, 228 praziquantel
14637                                                                     based on weight (44-88 lbs)
14645                                                                                        27, 1620
14654                                                                                    0.1%, 1%, 2%
14656                                                           23 milbemycin oxime, 228 praziquantel
14658                                                            272 ivermectin, 227 pyrantel pamoate
14664                                                                    based on weight (50-100 lbs)
14665                                                                    based on weight (60-121 lbs)
14697                                                                                    small amount
14699                                                                                 based on weight
14700                                                                    based on weight (50-100 lbs)
14701                                                                                 based on weight
14702                                                            272 ivermectin, 227 pyrantel pamoate
14711                                                                    based on weight (51-100 lbs)
14712                                                                     based on weight (56-95 lbs)
14713                                                                        based on weight (85 lbs)
14720                                                                    based on weight (51-100 lbs)
14721                                                                     based on weight (56-95 lbs)
14722                                                                    based on weight (51-100 lbs)
14723                                                                    based on weight (51-100 lbs)
14726                                                                     based on weight (45-88 lbs)
14728                                                                                         23, 228
14730                                                           23 milbemycin oxime, 228 praziquantel
14733                                                           23 milbemycin oxime, 228 praziquantel
14737                                                                    based on weight (51-100 lbs)
14738                                                                     based on weight (45-88 lbs)
14744                                                                                 based on weight
14748                                                                                            5-10
14754                                                                       based on weight (22+ lbs)
14755                                                                    based on weight (51-100 lbs)
14756                                                                                            5-10
14757                                                                                            5-10
14760                                                                    based on weight (51-100 lbs)
14764                                                                                    small amount
14775                                                                                     unspecified
14777                                                                                     unspecified
14778                                                                                     unspecified
14833                                                                                        350, 900
14834                                                                                        27, 1620
14838                                                                                        350, 900
14839                                                                                         23, 228
14857                                                                                     unspecified
14858                                                                                         23, 460
14862                                                                                     unspecified
14863                                                                                     unspecified
14864                                                                  based on weight (50.1-100 lbs)
14867                                                                                        23 , 228
14870                                                                    based on weight (50-100 lbs)
14871                                                                    based on weight (50-100 lbs)
14878                                                                                     unspecified
14899                                                                                     unspecified
14911                                                                                        27, 1620
14913                                                              27 milbemycin oxime, 1620 spinosad
14914                                                            272 ivermectin, 227 pyrantel pamoate
14934                                                                    based on weight (60-120 lbs)
14943                                                                     based on weight (44-88 lbs)
14944                                                                                     unspecified
14949                                                                                     unspecified
14972                                                                     based on weight (41-60 lbs)
14973                                                                                     unspecified
14974                                                                     based on weight (41-60 lbs)
14975                                                                     based on weight (41-60 lbs)
14981                                                                     based on weight (40-60 lbs)
14982                                                                                     unspecified
14983                                                                                  1 pack/package
15001                                                                    based on weight (50-100 lbs)
15002                                                                     based on weight (45-88 lbs)
15004                                                                       based on weight (55+ lbs)
15005                                                                     based on weight (45-88 lbs)
15006                                                                    based on weight (51-100 lbs)
15007                                                                    based on weight (50-100 lbs)
15008                                                                       based on weight (55+ lbs)
15009                                                                     based on weight (45-88 lbs)
15010                                                                     based on weight (45-88 lbs)
15011                                                                  based on weight (50.1-100 lbs)
15017                                                                    based on weight (50-100 lbs)
15021                                                                    based on weight (50-100 lbs)
15022                                                                     based on weight (44-88 lbs)
15023                                                                     based on weight (45-88 lbs)
15027                                                                     based on weight (45-88 lbs)
15028                                                                  based on weight (50.1-100 lbs)
15029                                                                  based on weight (50.1-100 lbs)
15030                                                                     based on weight (44-88 lbs)
15035                                                                                     unspecified
15036                                                                                     unspecified
15045                                                                                 based on weight
15048                                                                    based on weight (50-100 lbs)
15055                                                                                     unspecified
15059                                                                    based on weight (51-100 lbs)
15061                                                                    based on weight (51-100 lbs)
15077                                                                                     unspecified
15102                                                                                    small amount
15129                                                                                             6-8
15139                                                                    based on weight (51-100 lbs)
15140                                                                     based on weight (45-88 lbs)
15144                                                                     based on weight (26-50 lbs)
15145                                                                     based on weight (45-88 lbs)
15150                                                                                 based on weight
15151                                                                                 based on weight
15155                                                                                     unspecified
15179                                                                     based on weight (25-75 lbs)
15196                                                                                     application
15197                                                                                    small amount
15209                                                                     based on weight (44-88 lbs)
15213                                                                                     unspecified
15244                                                                                          0.3, 1
15250                                                                                 based on weight
15256                                                                                 based on weight
15259                                                                        1.25 tablet/pill/capsule
15268                                                                    based on weight (50-100 lbs)
15269                                                                     based on weight (24-60 lbs)
15274                                                                                     unspecified
15308                                                                    based on weight (50-100 lbs)
15309                                                                  based on weight (60.1-121 lbs)
15310                                                                    based on weight (50-100 lbs)
15311                                                                                 based on weight
15314                                                                    based on weight (50-100 lbs)
15315                                                                                 based on weight
15317                                                                    based on weight (50-100 lbs)
15321                                                                                 based on weight
15322                                                                                 based on weight
15323                                                                                     unspecified
15332                                                                                     unspecified
15333                                                                                  1 pack/package
15339                                                                                        27, 1620
15345                                                                                        27, 1620
15348                                                                                        27, 1620
15361                                                                    based on weight (50-100 lbs)
15362                                                                                     unspecified
15363                                                                                             3-5
15365                                                                                     unspecified
15366                                                                    based on weight (50-100 lbs)
15367                                                                                     unspecified
15373                                                                    based on weight (51-100 lbs)
15374                                                                     based on weight (44-88 lbs)
15375                                                                    based on weight (51-100 lbs)
15376                                                                     based on weight (44-88 lbs)
15377                                                                    based on weight (51-100 lbs)
15378                                                                     based on weight (45-88 lbs)
15383                                                                                     unspecified
15384                                                                                     unspecified
15402                                                                                    small amount
15412                                                                                       22.7, 272
15441                                                                                     unspecified
15445                                                                                     unspecified
15451                                                                    based on weight (51-100 lbs)
15453                                                                                     unspecified
15454                                                                                     unspecified
15512                                                                   based on weight (44.1-88 lbs)
15513                                                                                     unspecified
15515                                                                   based on weight (44.1-88 lbs)
15528                                                                                         23, 228
15530                                                                     based on weight (56-95 lbs)
15531                                                                                         23, 228
15533                                                                        based on weight (25 lbs)
15551                                                                        based on weight (50 lbs)
15552                                                                     based on weight (44-88 lbs)
15554                                                                                 based on weight
15555                                                                                 based on weight
15556                                                                                 based on weight
15563                                                                                 0.25 inch strip
15581                                                                                     unspecified
15584                                                                                             4-6
15585                                                                    based on weight (51-100 lbs)
15586                                                                     based on weight (45-88 lbs)
15589                                                                    based on weight (51-100 lbs)
15590                                                                    based on weight (51-100 lbs)
15591                                                                        based on weight (77 lbs)
15592                                                                        based on weight (77 lbs)
15593                                                                    based on weight (51-100 lbs)
15594                                                                  based on weight (60.1-121 lbs)
15597                                                                    based on weight (51-100 lbs)
15598                                                                    based on weight (60-121 lbs)
15599                                                                                     application
15600                                                                    based on weight (51-100 lbs)
15601                                                                   based on weight (44.1-88 lbs)
15603                                                                                     unspecified
15604                                                                                     unspecified
15613                                                            272 ivermectin, 227 pyrantel pamoate
15618                                                            272 ivermectin, 227 pyrantel pamoate
15633                                                                                        tapering
15636                                                                    based on weight (51-100 lbs)
15649                                                                    based on weight (51-100 lbs)
15650                                                                    based on weight (89-132 lbs)
15661                                                                    based on weight (51-100 lbs)
15663                                                                    based on weight (89-132 lbs)
15667                                                                                    small amount
15669                                                            272 ivermectin, 227 pyrantel pamoate
15672                                                                    based on weight (51-100 lbs)
15673                                                                      based on weight (1-25 lbs)
15674                                                                    based on weight (88-132 lbs)
15689                                                                    based on weight (60-120 lbs)
15690                                                                    based on weight (60-120 lbs)
15693                                                                    based on weight (60-120 lbs)
15701                                                                                     unspecified
15706                                                                                    small amount
15707                                                                                        27, 1620
15712                                                                                     unspecified
15715                                                                                        27, 1620
15733                                                            272 ivermectin, 227 pyrantel pamoate
15750                                                                                     unspecified
15757                                                                    based on weight (51-100 lbs)
15758                                                                     based on weight (45-88 lbs)
15767                                                                                     unspecified
15768                                                                                     unspecified
15769                                                                                     unspecified
15770                                                                                     unspecified
15778                                                                                     unspecified
15781                                                                                     unspecified
15782                                                                                     unspecified
15790                                                                                     unspecified
15796                                                                                        125, 500
15799                                                                                     unspecified
15811                                                                     based on weight (44-88 lbs)
15815                                                                  based on weight (50.1-100 lbs)
15818                                                                    based on weight (51-100 lbs)
15829                                                            272 ivermectin, 227 pyrantel pamoate
15839                                                                                     unspecified
15840                                                                                     unspecified
15841                                                                    based on weight (51-100 lbs)
15842                                                                    based on weight (51-100 lbs)
15844                                                                    based on weight (51-100 lbs)
15849                                                                    based on weight (51-100 lbs)
15850                                                                    based on weight (51-100 lbs)
15856                                                                       based on weight (55+ lbs)
15858                                                                    0.5 tablet/pill/capsule - 75
15859                                                                    based on weight (55-100 lbs)
15862                                                                                 0.25 inch strip
15863                                                                                 0.25 inch strip
15868                                                                             tablet/pill/capsule
15869                                                                    based on weight (51-100 lbs)
15870                                                                                     unspecified
15886                                                                                     unspecified
15888                                                                                     unspecified
15889                                                                                     unspecified
15890                                                                                     unspecified
15891                                                                     based on weight (26-50 lbs)
15892                                                                    based on weight (51-100 lbs)
15907                                                                                    small amount
15911                                                                        based on weight (40 lbs)
15917                                                                                     unspecified
15921                                                                                     unspecified
15922                                                                    based on weight (51-100 lbs)
15927                                                                                         2000 iu
15928                                                                                0.5 pack/package
15930                                                                    based on weight (51-100 lbs)
15933                                                                                         2000 iu
15935                                                                                0.5 pack/package
15937                                                                    based on weight (51-100 lbs)
15944                                                                    based on weight (51-100 lbs)
15945                                                                                    pack/package
15981                                                                    based on weight (51-100 lbs)
15983                                                                                    small amount
15986                                                                     based on weight (56-95 lbs)
15992                                                                    based on weight (51-100 lbs)
15993                                                                     based on weight (56-95 lbs)
15995                                                                    based on weight (51-100 lbs)
15996                                                                     based on weight (56-95 lbs)
15997                                                                     based on weight (45-88 lbs)
15998                                                                                   1 bottle/vial
15999                                                                    based on weight (51-100 lbs)
16000                                                                     based on weight (45-88 lbs)
16005                                                           23 milbemycin oxime, 228 praziquantel
16007                                                           23 milbemycin oxime, 228 praziquantel
16009                               0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                     application
16026                                                                                    small amount
16033                                                                                 based on weight
16036                                                                    based on weight (51-100 lbs)
16038                                                                    based on weight (51-100 lbs)
16039                                                                     based on weight (44-88 lbs)
16052                                                                                 based on weight
16053                                                                                 based on weight
16094                                                            272 ivermectin, 227 pyrantel pamoate
16097                                                                    based on weight (50-100 lbs)
16098                                                                    based on weight (60-120 lbs)
16105                                                                                         23, 460
16107                                                                                     application
16108                                                                    based on weight (51-100 lbs)
16109                                                                    based on weight (50-100 lbs)
16110                                                                                   1 bottle/vial
16112                                                                   2 tablets/pills/capsules - 20
16113                                                                                    small amount
16114                                                                                     application
16116                                                                        2 tablets/pills/capsules
16117                                                                        2 tablets/pills/capsules
16118                                                                                        tapering
16150                                                                                     unspecified
16155                                                                                            8 oz
16156                                                                                  1 pack/package
16157                                                                    based on weight (51-100 lbs)
16158                                                                     based on weight (44-88 lbs)
16159                                                                    based on weight (51-100 lbs)
16160                                                                     based on weight (44-88 lbs)
16163                                                                    based on weight (51-100 lbs)
16164                                                                     based on weight (44-88 lbs)
16165                                                                    based on weight (51-100 lbs)
16177                                                                                     unspecified
16179                                                                                     unspecified
16199                                                                                     unspecified
16229                                                                    based on weight (51-100 lbs)
16230                                                                    based on weight (51-100 lbs)
16239                                                                                     unspecified
16240                                                                                     unspecified
16241                                                                                     unspecified
16242                                                                                     unspecified
16251                                                                                    small amount
16253                                                                                     unspecified
16286                                                                                     unspecified
16287                                                                             tablet/pill/capsule
16288                                                                                     application
16289                                                                     based on weight (26-50 lbs)
16290                                                                     based on weight (44-88 lbs)
16292                                                                             tablet/pill/capsule
16293                                                                                     application
16294                                                                    based on weight (51-100 lbs)
16295                                                                     based on weight (45-88 lbs)
16296                                                                    based on weight (51-100 lbs)
16312                                                                    based on weight (51-100 lbs)
16313                                                                   based on weight (24.1-60 lbs)
16315                                                                    based on weight (51-100 lbs)
16316                                                                   based on weight (24.1-60 lbs)
16318                                                                    based on weight (50-100 lbs)
16319                                                                     based on weight (24-60 lbs)
16321                                                                  based on weight (50.1-100 lbs)
16322                                                                  based on weight (60.1-120 lbs)
16324                                                                    based on weight (51-100 lbs)
16325                                                                    based on weight (60-121 lbs)
16340                                                                    based on weight (51-100 lbs)
16347                                           4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                           350 chondroitin sulfate, 900 glucosamine hcl, 800 msm
16355                                                                                     unspecified
16356                                                                                     unspecified
16367                                                                                     unspecified
16371                                                                                     unspecified
16374                                                                                     unspecified
16376                                                                                     unspecified
16378                                                                                     unspecified
16382                                                                                     unspecified
16387                                                                                     as directed
16388                                                                                     as directed
16389                                                            272 ivermectin, 227 pyrantel pamoate
16400                                                                    based on weight (51-100 lbs)
16401                                                                    based on weight (60-120 lbs)
16403                                                                    based on weight (51-100 lbs)
16404                                                                    based on weight (60-120 lbs)
16408                                                            272 ivermectin, 227 pyrantel pamoate
16413                                                                    based on weight (50-100 lbs)
16414                                                                     based on weight (44-88 lbs)
16418                                                                                     unspecified
16419                                                                                     unspecified
16420                                                                                     unspecified
16425                                                                     based on weight (45-88 lbs)
16426                                                                     based on weight (45-88 lbs)
16434                                                                                     unspecified
16435                                                                                     unspecified
16436                                                                                     unspecified
16437                                                                                     unspecified
16440                                                                    based on weight (51-100 lbs)
16441                                                                    based on weight (51-100 lbs)
16442                                                                                     unspecified
16443                                                                                     unspecified
16447                                                                    based on weight (51-100 lbs)
16448                                                                                     unspecified
16450                                                                    based on weight (51-100 lbs)
16462                                                                                          0.5/kg
16472                                                              460 lufenuron, 23 milbemycin oxime
16474                                                                               1 syringe/pipette
16477                                                                                         23, 460
16478                                                              8.8% (s)-methoprene, 9.8% fipronil
16479                                                                               1 syringe/pipette
16497                                                                                     bottle/vial
16522                                                                    based on weight (51-100 lbs)
16523                                                                    based on weight (51-100 lbs)
16524                                                                     based on weight (44-88 lbs)
16525                                                                    based on weight (51-100 lbs)
16526                                                                     based on weight (56-95 lbs)
16544                                                                     based on weight (44-88 lbs)
16546                                                                  based on weight (50.1-100 lbs)
16553                                                                  based on weight (50.1-100 lbs)
16579         based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                
16596                                                                    based on weight (51-100 lbs)
16597                                                                    based on weight (51-100 lbs)
16598                                                                    based on weight (88-132 lbs)
16599                                                                    based on weight (51-100 lbs)
16601                                                                    based on weight (89-132 lbs)
16605                                                                       based on weight (45+ lbs)
16606                                                                    based on weight (51-100 lbs)
16608                                                                    based on weight (51-100 lbs)
16624                                                              27 milbemycin oxime, 1620 spinosad
16635                                                                                 0.25 inch strip
16636                                                                    based on weight (51-100 lbs)
16639                                                                    based on weight (51-100 lbs)
16657                                                                                             6-8
16684                                                                                    small amount
16685                                                                                        wipe/pad
16687                                                            272 ivermectin, 227 pyrantel pamoate
16694                                                            272 ivermectin, 227 pyrantel pamoate
16702                                                                                 0.25 inch strip
16703                                                                                          powder
16704                                                                    based on weight (51-100 lbs)
16705                                                                    based on weight (60-120 lbs)
16711                                                                                    small amount
16712                                                                                    small amount
16714                                                                                    small amount
16717                                                                                    small amount
16718                                                                                    small amount
16721                                                                    based on weight (51-100 lbs)
16723                                                                                     application
16724                                                                                     application
16726                                                                                                
16749                                                              460 lufenuron, 23 milbemycin oxime
16751                                                                                        23 , 460
16774                                                                                     unspecified
16777                                                                                     as directed
16778                                                                                     as directed
16779                                                                                     as directed
16783                                                                                     unspecified
16784                                                                                     unspecified
16785                                                                                     unspecified
16791                                                                     based on weight (44-88 lbs)
16793                                                                     based on weight (24-60 lbs)
16798                                                                                     unspecified
16805                                                                    based on weight (50-100 lbs)
16807                                                                       based on weight (55+ lbs)
16809                                                                                                
16810                                                            272 ivermectin, 227 pyrantel pamoate
16811                                                               4.5% flumethrin, 10% imidacloprid
16814                                                                                     unspecified
16815                                                                                     unspecified
16816                                                                                     unspecified
16821                                                                                     unspecified
16823                                                                                     unspecified
16834                                                                                     unspecified
16838                                                                                     unspecified
16840                                                                                     unspecified
16841                                                                                     unspecified
16847                                                                                     unspecified
16869                                                                    based on weight (50-100 lbs)
16877                                                                                       13.5, 810
16882                                                                                 based on weight
16918                                                                                     unspecified
16931                                                                                       13.5, 810
16933                                                                                       13.5, 810
16939                                                                                    small amount
16970                                                                    based on weight (51-100 lbs)
16983                                                                                        6 months
16993                                                                                     as directed
16994                                                                                     application
16998                                                                     based on weight (56-95 lbs)
16999                                                            272 ivermectin, 227 pyrantel pamoate
17000                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                            272 ivermectin, 227 pyrantel pamoate
17012                                                                     based on weight (56-80 lbs)
17013                                                                    based on weight (51-100 lbs)
17014                                                                    based on weight (51-100 lbs)
17018                                                                                     as directed
17019                                                                                     unspecified
17020                                                                                     unspecified
17022                                                                                     unspecified
17042                                                                  based on weight (50.1-100 lbs)
17062                                                                                     unspecified
17088                                                            272 ivermectin, 227 pyrantel pamoate
17090                                                                    based on weight (51-100 lbs)
17091                                                                    based on weight (60-120 lbs)
17098                                                                                     unspecified
17099                                                                                 based on weight
17120                                                                                    small amount
17121                                                                                    small amount
17126                                                                                    small amount
17127                                                                                     as directed
17138                                                                    based on weight (51-100 lbs)
17143                                                                    based on weight (51-100 lbs)
17153                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
17156                                                                    based on weight (50-100 lbs)
17157                                                                    based on weight (60-121 lbs)
17173                                                                                     unspecified
17177                                                                                     unspecified
17180                                                                                     unspecified
17209                                                                                     unspecified
17218                                                                     based on weight (56-95 lbs)
17220                                                                    based on weight (50-100 lbs)
17221                                                                    based on weight (60-120 lbs)
17225                                                                    based on weight (51-100 lbs)
17226                                                                    based on weight (60-120 lbs)
17227                                                                    based on weight (50-100 lbs)
17228                                                                    based on weight (60-100 lbs)
17229                                                                                     unspecified
17232                                                                    based on weight (50-100 lbs)
17233                                                                       based on weight (55+ lbs)
17234                                                                    based on weight (51-100 lbs)
17236                                                                       based on weight (55+ lbs)
17237                                                                    based on weight (50-100 lbs)
17239                                                                    based on weight (50-100 lbs)
17252                                                                                 based on weight
17254                                                                                     application
17255                                                                                 based on weight
17263                                                                                       13.5, 810
17264                                                                                        27, 1620
17268                                                                    based on weight (51-100 lbs)
17283                                                                                          57, 68
17285                                                              68 ivermectin, 57 pyrantel pamoate
17297                                                                      1.5 tablets/pills/capsules
17298                                                                    based on weight (51-100 lbs)
17307                                                                                           6, 15
17308                                                                                           6, 15
17309                                                                                          3, 7.5
17310                                                                                          3, 7.5
17314                                                                                     application
17327                                                                                     application
17329                                                                                     application
17330                                                                                     application
17335                                                                                     application
17352                                                                                     unspecified
17355                                                                                     unspecified
17387                                                                                     unspecified
17389                                                            272 ivermectin, 227 pyrantel pamoate
17390                                                                                     unspecified
17391                                                            272 ivermectin, 227 pyrantel pamoate
17393                                                                                     application
17399                                                                  based on weight (50.1-100 lbs)
17406                                                                    based on weight (51-100 lbs)
17407                                                                                             1-2
17412                                                                                     unspecified
17417                                                                                          collar
17418                                                                        3 tablets/pills/capsules
17426                                                                                     unspecified
17427                                                                                     unspecified
17446                                                                                     bottle/vial
17461                                                              460 lufenuron, 23 milbemycin oxime
17463                                                                                  1 pack/package
17468                                                                                         23, 460
17470                                                                                  1 pack/package
17482                                                                                    small amount
17486                                                                    based on weight (51-100 lbs)
17487                                                                     based on weight (45-88 lbs)
17488                                                                    based on weight (51-100 lbs)
17489                                                                     based on weight (45-88 lbs)
17490                                                                     based on weight (45-88 lbs)
17491                                                                    based on weight (50-100 lbs)
17492                                                                    based on weight (50-100 lbs)
17493                                                                    based on weight (51-100 lbs)
17495                                                                    based on weight (50-100 lbs)
17496                                                                     based on weight (45-88 lbs)
17518                                                                    based on weight (50-100 lbs)
17519                                                                    based on weight (51-100 lbs)
17576                                                                                     unspecified
17583                                                                                     application
17588                                                                                                
17602                                                                                    small amount
17605                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
17611                                                                     based on weight (44-88 lbs)
17615                                                                     based on weight (45-88 lbs)
17627                                                                   based on weight (44.1-88 lbs)
17659                                                                    based on weight (50-100 lbs)
17672                                                              27 milbemycin oxime, 1620 spinosad
17673                                                              27 milbemycin oxime, 1620 spinosad
17680                                                                                     unspecified
17697                                                                                        27, 1620
17702                                                                                         10, 100
17703                                                                                         23, 460
17719                                                                                         23, 460
17720                                                                                    small amount
17722                                                                    based on weight (51-100 lbs)
17742                                                                                     application
17755                                                                     based on weight (45-88 lbs)
17779                                                                                     unspecified
17780                                                           2 prednisone, 5 trimeprazine tartrate
17781                                                                                             4-6
17782                                                                     based on weight (44-88 lbs)
17798                                                                                             6-8
17802                                                                                     unspecified
17803                                                                                     unspecified
17804                                                                                     unspecified
17818                                                                    based on weight (60-120 lbs)
17832                                                                                     unspecified
17845                                                                                     unspecified
17853                                                                                     unspecified
17855                                                                                     unspecified
17856                                                                                     unspecified
17860                                                                                     unspecified
17863                                                                                     unspecified
17865                                                                                     unspecified
17882                                                    0.284 betamethasone, 0.57 gentamicin sulfate
18023                                                                    based on weight (50-100 lbs)
18024                                                                    based on weight (60-121 lbs)
18057                                                                  based on weight (60.1-121 lbs)
18058                                                                    based on weight (51-100 lbs)
18072                                                                   based on weight (40.1-60 lbs)
18074                                                                                 moderate amount
18075                                                                    based on weight (51-100 lbs)
18094                                                                                     unspecified
18095                                                                                 based on weight
18096                                                                                     application
18098                                                                                     unspecified
18114                                                                                     unspecified
18115                                                                                         23, 460
18116                                                                       based on weight (55+ lbs)
18118                                                                                   1 bottle/vial
18124                                                                       based on weight (50+ lbs)
18134                                                                                     unspecified
18141                                                                                     unspecified
18147                                                                                     unspecified
18165                                                                                    small amount
18192                                                                    based on weight (51-100 lbs)
18193                                                                    based on weight (51-100 lbs)
18195                                                                                     unspecified
18199                                                                                            5, 2
18202                                                                    based on weight (51-100 lbs)
18205                                                                    based on weight (51-100 lbs)
18213                                                                                     unspecified
18214                                                                                     unspecified
18217                                                                    based on weight (50-100 lbs)
18218                                                                    based on weight (50-100 lbs)
18238                                                                                     unspecified
18251                                                                                          powder
18258                                                                               0.44, 4.95, 36.08
18260                                                                                        27, 1620
18262                                                                               0.44, 4.95, 36.08
18263                                                                                     unspecified
18264                                                                                        27, 1620
18266                                                                                        27, 1620
18271                                                                                              iu
18275                                                                                     unspecified
18276                                                                                     unspecified
18323                                                                                    small amount
18325                                                                                     unspecified
18326                                                                                     unspecified
18337                                                                    based on weight (51-100 lbs)
18338                                                                                        compound
18339                                                                                 based on weight
18340                                                                                 based on weight
18341                                                                                     unspecified
18342                                                                                 based on weight
18344                                                                    based on weight (51-100 lbs)
18365                                                                    based on weight (51-100 lbs)
18366                                                                    based on weight (60-120 lbs)
18370                                                                    based on weight (51-100 lbs)
18371                                                                     based on weight (24-60 lbs)
18373                                                                    based on weight (51-100 lbs)
18374                                                                    based on weight (60-121 lbs)
18404                                                                                                
18415                                                                    based on weight (51-100 lbs)
18427                                                                                    small amount
18441                                                                        2 tablets/pills/capsules
18459                                                                    based on weight (51-100 lbs)
18460                                                                    based on weight (51-100 lbs)
18461                                                                     based on weight (44-88 lbs)
18469                                                                                 0.25 inch strip
18471                                                                                     application
18479                                                                                        27, 1610
18480                                                                                        27, 1610
18483                                                                                        27, 1610
18489                                                                                 based on weight
18490                                                                                 based on weight
18494                                                                                 based on weight
18495                                                                                 based on weight
18500                                                                                 based on weight
18502                                                                    based on weight (50-100 lbs)
18514                                                                     based on weight (21-55 lbs)
18520                                                                        based on weight (60 lbs)
18525                                                                     based on weight (44-88 lbs)
18534                                                                                     unspecified
18565                                                                       based on weight (55+ lbs)
18571                                                                    based on weight (51-100 lbs)
18572                                                                    based on weight (60-120 lbs)
18576                                                                    based on weight (51-100 lbs)
18577                                                                  based on weight (60.1-121 lbs)
18580                                                                    based on weight (50-100 lbs)
18588                                                                                     unspecified
18591                                                                                                
18595                                                                                     as directed
18609                                                                                     unspecified
18612                                                                                     unspecified
18621                                                                                     unspecified
18649                                                                       based on weight (25+ lbs)
18687                                                                                             5-8
18689                                                                2-3 tablets/pills/capsules - 4mg
18690                                                                                     unspecified
18694                                                                                       11.5, 230
18696                                                                     based on weight (45-88 lbs)
18697                                                                    based on weight (50-100 lbs)
18703                                                                    based on weight (51-100 lbs)
18707                                                            132 ivermectin, 114 pyrantel pamoate
18716                                                                                     unspecified
18718                                                                                     unspecified
18729                                                                                     unspecified
18734                                                                      based on weight (5-10 lbs)
18735                                                                      based on weight (0-25 lbs)
18736                                                                   based on weight (20.1-40 lbs)
18743                                                                     based on weight (26-50 lbs)
18750                                                            272 ivermectin, 227 pyrantel pamoate
18774                                                                                       13.5, 810
18775                                                             13.5 milbemycin oxime, 810 spinosad
18795                                                                                     as directed
18796                                                                                     as directed
18797                                                                                     as directed
18798                                                                                     as directed
18799                                                                                        114, 136
18800                                                                    based on weight (51-100 lbs)
18820                                                                                    small amount
18829                                                                                     unspecified
18837                                                                    based on weight (60-120 lbs)
18838                                                                                 based on weight
18839                                                                     based on weight (45-90 lbs)
18844                                                                     based on weight (45-90 lbs)
18845                                                                  based on weight (50.1-100 lbs)
18847                                                                                 based on weight
18850                                                                                 based on weight
18882                                                                                     application
18908                                                                    based on weight (51-100 lbs)
18909                                                                       based on weight (55+ lbs)
18919                                                                                          collar
18921                                                                       based on weight (18+ lbs)
18924                                                                                     unspecified
18933                                                                                     unspecified
18935                                                                  based on weight (50.1-100 lbs)
18936                                                                                 based on weight
18937                                                                                 based on weight
18961                                                                        2 tablets/pills/capsules
18964                                                                                     unspecified
18991                                                                    based on weight (51-100 lbs)
18993                                                                                        2 scoops
18997                                                                                     unspecified
18998                                                                                     unspecified
19003                                                                                     unspecified
19004                                                                                     unspecified
19005                                                                                     unspecified
19006                                                                                     unspecified
19008                                                                                     unspecified
19009                                                                                     unspecified
19015                                                                                     unspecified
19019                                                                                     unspecified
19021                                                                                     unspecified
19022                                                                    based on weight (60-120 lbs)
19023                                                                                    small amount
19040                                                              27 milbemycin oxime, 1620 spinosad
19041                                                           23 milbemycin oxime, 228 praziquantel
19055                                                                     based on weight (45-88 lbs)
19056                                                                                     unspecified
19057                                                                                    2 , 1%, 22.7
19061                                                                                 based on weight
19062                                                                    based on weight (50-100 lbs)
19068                                                                        based on weight (50 lbs)
19070                                                                       based on weight (50+ lbs)
19072                                                                     based on weight (45-88 lbs)
19073                                                                    based on weight (51-100 lbs)
19078                                                                    based on weight (51-100 lbs)
19082                                                                     based on weight (45-88 lbs)
19122                                                                       based on weight (55+ lbs)
19130                                                                     based on weight (44-88 lbs)
19152                                                                                     application
19153                                                                   based on weight (24.1-60 lbs)
19154                                                                  based on weight (50.1-100 lbs)
19159                                                                                     unspecified
19165                                                                    based on weight (51-100 lbs)
19169                                                                    based on weight (51-100 lbs)
19170                                                                     based on weight (45-88 lbs)
19183                                                                                          collar
19184                                                                                     unspecified
19213                                                                                     unspecified
19214                                                                                     unspecified
19215                                                                    based on weight (51-100 lbs)
19216                                                                    based on weight (51-100 lbs)
19220                                                                                 based on weight
19221                                                                    based on weight (51-100 lbs)
19222                                                                     based on weight (44-88 lbs)
19223                                                                    based on weight (51-100 lbs)
19224                                                                                          collar
19246                                                                                     as directed
19252                                                                         0.5 tablet/pill/capsule
19253                                                                         1.5 tablet/pill/capsule
19254                                                                         1-2 tablet/pill/capsule
19271                                                                    based on weight (51-100 lbs)
19272                                                                   based on weight (44.1-88 lbs)
19273                                                                    based on weight (50-100 lbs)
19278                                                                    based on weight (51-100 lbs)
19281                                                                     based on weight (44-88 lbs)
19282                                                                     based on weight (44-88 lbs)
19288                                                                                     unspecified
19298                                                                                     unspecified
19299                                                                                     unspecified
19318                                                                     based on weight (44-88 lbs)
19325                                                                                     unspecified
19326                                                                        based on weight (50 lbs)
19327                                                                        based on weight (50 lbs)
19338                                                                                     unspecified
19350                                                                                 0.25 inch strip
19353                                                                                     unspecified
19354                                                                                     unspecified
19356                                                                    based on weight (50-100 lbs)
19357                                                                       based on weight (55+ lbs)
19373                                                                    based on weight (51-100 lbs)
19386                                                                    based on weight (51-100 lbs)
19387                                                                    based on weight (51-100 lbs)
19390                                                                                     application
19391                                                                    based on weight (51-100 lbs)
19423                                                                    based on weight (51-100 lbs)
19427                                                                                 based on weight
19445                                                                    based on weight (51-100 lbs)
19446                                                                     based on weight (45-88 lbs)
19447                                                                    based on weight (51-100 lbs)
19448                                                                     based on weight (44-88 lbs)
19449                                                                                 based on weight
19450                                                                     based on weight (61-80 lbs)
19452                                                                                     unspecified
19453                                                                                     unspecified
19454                                                                                     unspecified
19457                                                                    based on weight (51-100 lbs)
19462                                                                    based on weight (51-100 lbs)
19463                                                                     based on weight (44-88 lbs)
19464                                                                                     unspecified
19465                                                                                     unspecified
19476                                                                        based on weight (35 lbs)
19482                                                                    based on weight (51-100 lbs)
19486                                                                    based on weight (50-100 lbs)
19487                                                                    based on weight (60-120 lbs)
19492                                                                    based on weight (50-100 lbs)
19493                                                                    based on weight (60-121 lbs)
19495                                                                       based on weight (50+ lbs)
19537                                                                                 based on weight
19596                                                                    based on weight (51-100 lbs)
19603                                                                     based on weight (40-60 lbs)
19617                                                                                     2.68of 9.8%
19641                                                                                     unspecified
19662                                                                                  1 pack/package
19663                                                                                        125, 500
19673                                                                    based on weight (51-100 lbs)
19674                                                                     based on weight (44-88 lbs)
19685                                                                    based on weight (51-100 lbs)
19686                                                              460 lufenuron, 25 milbemycin oxime
19688                                                                    based on weight (51-100 lbs)
19689                                                              460 lufenuron, 23 milbemycin oxime
19710                                                                    based on weight (51-100 lbs)
19711                                                                    based on weight (50-100 lbs)
19712                                                                                 based on weight
19713                                                                    based on weight (50-100 lbs)
19714                                                                                 based on weight
19715                                                                    based on weight (51-100 lbs)
19716                                                                                 based on weight
19717                                                                    based on weight (51-100 lbs)
19718                                                                                 based on weight
19722                                                                                     unspecified
19735                                                                                    small amount
19737                                                                                    small amount
19741                                                                    based on weight (51-100 lbs)
19754                                                                                         23, 228
19768                                                                     based on weight (40-80 lbs)
19771                                                                                       13.5, 810
19776                                                                     based on weight (40-60 lbs)
19777                                                                             tablet/pill/capsule
19778                                                                                    small amount
19788                                                                                     unspecified
19790                                                                                     unspecified
19792                                                                                     unspecified
19801                                                                     based on weight (44-88 lbs)
19803                                                                    based on weight (51-100 lbs)
19823                                                                                    small amount
19828                                                                    based on weight (50-100 lbs)
19829                                                                     based on weight (56-95 lbs)
19838                                                                                     unspecified
19843                                                                                     unspecified
19844                                                                                     unspecified
19845                                                                                     unspecified
19851                                                                    based on weight (60-100 lbs)
19856                                                                  based on weight (50.1-100 lbs)
19876                                                                                     unspecified
19881                                                                                     unspecified
19888                                                                    based on weight (50-100 lbs)
19907                                                              27 milbemycin oxime, 1620 spinosad
19909                                                           23 milbemycin oxime, 228 praziquantel
19911                                                                                 based on weight
19912                                                                                     unspecified
19914                                                                                     unspecified
19917                                                                                     application
19925                                                                                     unspecified
19926                                                                                     unspecified
19927                                                                                     unspecified
19928                                                                                     unspecified
19930                                                                                       13.5, 810
19932                                                                    based on weight (60-120 lbs)
19933                                                                    based on weight (60-120 lbs)
19944                                                                                     unspecified
19945                                                                                     unspecified
19946                                                                    based on weight (60-120 lbs)
19947                                                                                     unspecified
19948                                                                                     unspecified
19949                                                                                     unspecified
19950                                                                                     unspecified
19952                                                                                     unspecified
19958                                                                                          collar
19975                                                            272 ivermectin, 227 pyrantel pamoate
19984                                                                                     unspecified
20003                                                                                 based on weight
20006                                                                                     unspecified
20007                                                                                     unspecified
20019                                                                    based on weight (51-100 lbs)
20020                                                                    based on weight (60-121 lbs)
20027                                                                    based on weight (60-121 lbs)
20028                                                                    based on weight (51-100 lbs)
20065                                                                                     unspecified
20068                                                                                     unspecified
20069                                                                                     unspecified
20070                                                                                     unspecified
20072                                                                                     unspecified
20074                                                                                     unspecified
20096                                                                                     unspecified
20099                                                                                     unspecified
20105                                                                                     unspecified
20106                                                                                     unspecified
20125                                                                                     0.3 (10mg/)
20126                                                                    based on weight (50-100 lbs)
20127                                                                  based on weight (60.1-121 lbs)
20130                                                                                    small amount
20131                                                                       based on weight (50+ lbs)
20135                                                                                         23, 228
20144                                                                    based on weight (50-100 lbs)
20145                                                                                         30 , 40
20149                                                                                     unspecified
20150                                                                                     unspecified
20164                                                                                             5-6
20173                                                                       based on weight (55+ lbs)
20174                                                                    based on weight (51-100 lbs)
20175                                                                                    small amount
20182                                                                                    small amount
20218                                                                                 based on weight
20219                                                                    based on weight (51-100 lbs)
20220                                                                     based on weight (51-60 lbs)
20221                                                                    based on weight (60-120 lbs)
20222                                                                    based on weight (60-120 lbs)
20224                                                                    based on weight (60-120 lbs)
20232                                                                                     as directed
20233                                                                    based on weight (51-100 lbs)
20234                                                                                    small amount
20240                                                                       based on weight (55+ lbs)
20241                                                                       based on weight (55+ lbs)
20243                                                                     based on weight (44-88 lbs)
20244                                                                    based on weight (51-100 lbs)
20245                                                                    based on weight (51-100 lbs)
20251                                                                                    pack/package
20275                                                                                        23 , 460
20282                                                                                         23, 460
20292                                                            272 ivermectin, 227 pyrantel pamoate
20293                                                                                     unspecified
20295                                                                     based on weight (56-90 lbs)
20297                                                                    based on weight (88-110 lbs)
20298                                                                                 0.25 inch strip
20300                                                                    based on weight (88-110 lbs)
20301                                                                       based on weight (18+ lbs)
20302                                                                400 imidacloprid, 100 moxidectin
20303                                                               4.5% flumethrin, 10% imidacloprid
20306                                                                                 based on weight
20315                                                                                     unspecified
20337                                                                                     unspecified
20339                                                                                     unspecified
20340                                                                                     unspecified
20342                                                                                     unspecified
20343                                                                                     unspecified
20344                                                                                        27, 1620
20348                                                                    based on weight (51-100 lbs)
20356                                                           23 milbemycin oxime, 228 praziquantel
20374                                                                        based on weight (55 lbs)
20376                                                                                     as directed
20377                                                                    based on weight (51-100 lbs)
20380                                                                                     as directed
20382                                                                                     unspecified
20387                                                                    based on weight (51-100 lbs)
20388                                                                    based on weight (51-100 lbs)
20390                                                                    based on weight (51-100 lbs)
20392                                                                                    small amount
20393                                                                                    small amount
20402                                                                    based on weight (51-100 lbs)
20405                                                                    based on weight (51-100 lbs)
20409                                                                                         23, 228
20411                                                           23 milbemycin oxime, 228 praziquantel
20413                                                           23 milbemycin oxime, 228 praziquantel
20425                                                                    based on weight (51-100 lbs)
20426                                                                    based on weight (51-100 lbs)
20441                                                                                     application
20444                                                                                     unspecified
20446                                                                                     unspecified
20453                                                                                       5.75, 115
20460                                                                                       11.5, 230
20485                                                                                    small amount
20490                                                                     based on weight (26-50 lbs)
20491                                                                     based on weight (24-60 lbs)
20510                                                                                     unspecified
20511                                                                    based on weight (51-100 lbs)
20512                                                                     based on weight (24-60 lbs)
20516                                                                    based on weight (51-100 lbs)
20517                                                                     based on weight (24-60 lbs)
20518                                                                                     unspecified
20554                                                                    based on weight (60-120 lbs)
20555                                                                    based on weight (60-120 lbs)
20561                                                                    based on weight (60-120 lbs)
20565                                                                    based on weight (60-120 lbs)
20568                                                                    based on weight (60-120 lbs)
20574                                                                                     unspecified
20577                                                                                     unspecified
20579                                                                   based on weight (40.1-60 lbs)
20585                                                                                    small amount
20615                                                                                     unspecified
20623                                                                                     unspecified
20636                                                                     based on weight (44-88 lbs)
20638                                                                                     2.68of 9.8%
20641                                                                                     unspecified
20642                                                                     based on weight (45-88 lbs)
20645                                                                     based on weight (45-88 lbs)
20648                                                                     based on weight (45-88 lbs)
20651                                                                     based on weight (45-88 lbs)
20659                                                                                     unspecified
20666                                                                                     unspecified
20667                                                                                     unspecified
20678                                                                                     unspecified
20698                                                                                 0.25 inch strip
20701                                                                                     unspecified
20702                                                                                     unspecified
20704                                                                                     application
20705                                                                                        wipe/pad
20707                                                                    based on weight (60-120 lbs)
20708                                                                                     unspecified
20709                                                                                     unspecified
20712                                                                                        wipe/pad
20717                                                                  based on weight (50.1-100 lbs)
20718                                                           23 milbemycin oxime, 228 praziquantel
20728                                                                                     unspecified
20738                                                                                        tapering
20748                                                            272 ivermectin, 227 pyrantel pamoate
20761                                                                                       13.5, 810
20762                                                                                        27, 1620
20763                                                                                        27, 1610
20766                                                                                        27, 1620
20767                                                                                        27, 1620
20771                                                                                        125, 500
20783                                                                                        27, 1620
20791                                                                                     unspecified
20796                                                                                     unspecified
20800                                                                  based on weight (50.1-100 lbs)
20808                                                                    based on weight (51-100 lbs)
20809                                                                  based on weight (60.1-120 lbs)
20814                                                                                     unspecified
20817                                                                                       13.5, 810
20819                                                             13.5 milbemycin oxime, 810 spinosad
20849                                                                                                
20852                                                                                        tapering
20854                                                                    based on weight (51-100 lbs)
20855                                                                    based on weight (60-121 lbs)
20858                                                            272 ivermectin, 227 pyrantel pamoate
20861                                                                                     application
20862                                                                    based on weight (51-100 lbs)
20863                                                                    based on weight (60-120 lbs)
20872                                                                     based on weight (40-85 lbs)
20897                                                                                    small amount
20918                                                                                          2.5, 5
20939                                                                       based on weight (18+ lbs)
20940                                                                                 based on weight
20947                                                                                 based on weight
20949                                                                                 based on weight
20962                                                                    based on weight (50-100 lbs)
20963                                                                     based on weight (45-88 lbs)
20964                                                                    based on weight (50-100 lbs)
20965                                                                    based on weight (88-132 lbs)
20966                                                                    based on weight (50-100 lbs)
21003                                                                                     unspecified
21013                                                                                 0.25 inch strip
21022                                                              27 milbemycin oxime, 1620 spinosad
21025                                                           2 prednisone, 5 trimeprazine tartrate
21029                                                                                       13.5, 810
21074                                                                    based on weight (60-120 lbs)
21078                                                                  based on weight (60.1-120 lbs)
21080                                                                                        27, 1620
21088                                                                                     unspecified
21102                                                                     based on weight (40-80 lbs)
21109                                                                                    small amount
21110                                                                    based on weight (51-100 lbs)
21111                                                                                    small amount
21112                                                                                    small amount
21114                                                                    based on weight (51-100 lbs)
21115                                                                     based on weight (44-88 lbs)
21119                                                             10 dextromethorphan, 10 guaifenesin
21122                                                                    based on weight (51-100 lbs)
21123                                                                     based on weight (44-88 lbs)
21125                                                                                    small amount
21127                                                                    based on weight (51-100 lbs)
21130                                                                        3 tablets/pills/capsules
21131                                                                                 moderate amount
21133                                                                    based on weight (51-100 lbs)
21168                                                                    based on weight (51-100 lbs)
21169                                                                     based on weight (45-88 lbs)
21178                                                                                     unspecified
21179                                                                                         23, 460
21180                                                                                       27 , 1620
21181                                                                    based on weight (51-100 lbs)
21182                                                                                        23 , 460
21190                                                                    based on weight (60-120 lbs)
21201                                                                                         23, 228
21224                                                                                 0.25 inch strip
21253                                                              27 milbemycin oxime, 1620 spinosad
21254                                                                    based on weight (51-100 lbs)
21256                                                                                         23, 460
21267                                                              27 milbemycin oxime, 1620 spinosad
21268                                                                                     bottle/vial
21269                                                                    based on weight (60-120 lbs)
21273                                                                                         23, 460
21278                                                                                    small amount
21282                                                                                    small amount
21287                                                                                    small amount
21309                                                                                          2.5, 5
21326                                                                                             6-8
21331                                                                                     unspecified
21338                                                                       based on weight (55+ lbs)
21359                                                                                         23, 460
21361                                                                                         23, 460
21369                                                                    based on weight (51-100 lbs)
21384                                                                    based on weight (51-100 lbs)
21385                                                                  based on weight (60.1-121 lbs)
21386                                                                                             7-8
21387                                                                                     unspecified
21388                                                                                     unspecified
21389                                                                                     unspecified
21403                                                                                         23, 228
21413                                                                                     unspecified
21416                                                                                     unspecified
21442                                                                                      1200, 1500
21445                                                                    based on weight (51-100 lbs)
21448                                                                    based on weight (51-100 lbs)
21449                                                                   based on weight (24.1-60 lbs)
21465                                                                                     unspecified
21472                                                      500 amoxicillin, 125 clavulanate potassium
21481                                                                                     unspecified
21492                                                                                     unspecified
21493                                                                                     unspecified
21495                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21504                                                                        based on weight (45 lbs)
21507                                                                        based on weight (50 lbs)
21508                                                                                     application
21509                                                                                     unspecified
21527                                                                     based on weight (20-55 lbs)
21528                                                                                 based on weight
21531                                                            272 ivermectin, 227 pyrantel pamoate
21532                                                                    based on weight (51-100 lbs)
21533                                                                    based on weight (60-120 lbs)
21549 2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
21552                                                                                     unspecified
21553                                                                                     unspecified
21555                                                                                     unspecified
21558                                                                                         23, 460
21562                                                                       based on weight (55+ lbs)
21563                                                                    based on weight (50-100 lbs)
21564                                                                       based on weight (55+ lbs)
21585                                                                    based on weight (60-120 lbs)
21586                                                                    based on weight (50-100 lbs)
21593                                                                                     unspecified
21600                                                                        based on weight (55 lbs)
21602                                                              460 lufenuron, 23 milbemycin oxime
21605                                                                       based on weight (55+ lbs)
21607                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
21608                                                                    based on weight (51-100 lbs)
21609                                                                     based on weight (44-88 lbs)
21612                                                                                     unspecified
21614                                                                     based on weight (44-88 lbs)
21615                                                                    based on weight (51-100 lbs)
21616                                                                                    small amount
21617                                                                    based on weight (51-100 lbs)
21618                                                                     based on weight (44-88 lbs)
21619                                                                    based on weight (51-100 lbs)
21620                                                                     based on weight (44-88 lbs)
21621                                                                    based on weight (51-100 lbs)
21622                                                                     based on weight (44-88 lbs)
21625                                                                                    small amount
21632                                                                                     unspecified
21642                                                                    based on weight (51-100 lbs)
21643                                                                                         23, 460
21644                                                                    based on weight (51-100 lbs)
21645                                                                    based on weight (51-100 lbs)
21646                                                                    based on weight (51-100 lbs)
21648                                                                     based on weight (44-88 lbs)
21649                                                                    based on weight (51-100 lbs)
21650                                                                                     unspecified
21651                                                              460 lufenuron, 23 milbemycin oxime
21652                                                               4.5% flumethrin, 10% imidacloprid
21653                                                                                    small amount
21654                                                                                        23 , 460
21655                                                                       based on weight (18+ lbs)
21658                                                                                          collar
21659                                                                                    small amount
21660                                                                                    small amount
21661                                                                                                
21666                                                                       based on weight (18+ lbs)
21673                                                                                     unspecified
21677                                                                                     unspecified
21678                                                                                     unspecified
21680                                                                                     unspecified
21685                                                                                     unspecified
21701                                                                                 based on weight
21705                                                                                 based on weight
21707                                                                                          collar
21708                                                                                     unspecified
21723                                                                                        27, 1620
21725                                                                    based on weight (51-100 lbs)
21727                                                                                     unspecified
21739                                                              460 lufenuron, 23 milbemycin oxime
21748                                                                                     unspecified
21749                                                                                     unspecified
21753                                                           23 milbemycin oxime, 228 praziquantel
21754                                                                    based on weight (50-100 lbs)
21755                                                                     based on weight (44-88 lbs)
21757                                                                    based on weight (51-100 lbs)
21767                                                                                     unspecified
21783                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                            272 ivermectin, 227 pyrantel pamoate
21809                                                                                     unspecified
21810                                                                                     unspecified
21814                                                                    based on weight (51-100 lbs)
21815                                                                     based on weight (45-88 lbs)
21833                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
21851                                                                                         23, 228
21865                                                            272 ivermectin, 227 pyrantel pamoate
21869                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
21872                                                                                     as directed
21873                                                                                     as directed
21875                                                                                     unspecified
21876                                                                                     unspecified
21877                                                                                     unspecified
21878                                                                                     unspecified
21886                                                                                     unspecified
21894                                                                    based on weight (51-100 lbs)
21897                                                                    based on weight (51-100 lbs)
21898                                                                    based on weight (60-121 lbs)
21912                                                            272 ivermectin, 227 pyrantel pamoate
21918                                                                                    pack/package
21921                                                                                    small amount
21925                                                                                     as directed
21949                                                                                     unspecified
21955                                                                     based on weight (44-88 lbs)
21956                                                                    based on weight (51-100 lbs)
21959                                                                                        160, 800
21982                                                                     based on weight (45-88 lbs)
21993                                                                    based on weight (50-100 lbs)
22020                                                                                     as directed
22023                                                                    based on weight (51-100 lbs)
22025                                                                    based on weight (51-100 lbs)
22026                                                                    based on weight (51-100 lbs)
22037                                                                    based on weight (51-100 lbs)
22038                                                                  based on weight (60.1-121 lbs)
22041                                                                    based on weight (51-100 lbs)
22042                                                                    based on weight (60-120 lbs)
22043                                                                        based on weight (65 lbs)
22045                                                                    based on weight (51-100 lbs)
22046                                                                    based on weight (60-120 lbs)
22048                                                                                                
22050                                                                                   2 billion cfu
22051                                                              27 milbemycin oxime, 1620 spinosad
22060                                                                                        27, 1620
22062                                                                    based on weight (51-100 lbs)
22064                                                                                     unspecified
22088                                                                    based on weight (51-100 lbs)
22089                                                                  based on weight (60.1-121 lbs)
22092                                                                    based on weight (51-100 lbs)
22093                                                                  based on weight (60.1-121 lbs)
22118                                                                    based on weight (51-100 lbs)
22120                                                                                     application
22121                                                                                                
22125                                                                    based on weight (51-100 lbs)
22128                                                                                                
22136                                                                    based on weight (51-100 lbs)
22140                                                                    based on weight (51-100 lbs)
22141                                                                     based on weight (44-88 lbs)
22151                                                                                     unspecified
22160                                                                    based on weight (50-100 lbs)
22161                                                                    based on weight (51-100 lbs)
22163                                                                    based on weight (51-100 lbs)
22173                                                                    based on weight (51-100 lbs)
22175                                                                                    small amount
22176                                                                    based on weight (51-100 lbs)
22177                                                                  based on weight (60.1-121 lbs)
22179                                                                                     application
22189                                                                                    small amount
22190                                                                                    small amount
22196                                                                                    small amount
22199                                                                                 based on weight
22201                                                                                     unspecified
22216                                                                    based on weight (51-100 lbs)
22217                                                                  based on weight (60.1-121 lbs)
22218                                                                                    small amount
22219                                                                                     unspecified
22222                                                                    based on weight (51-100 lbs)
22223                                                                    based on weight (51-100 lbs)
22224                                                                    based on weight (89-132 lbs)
22225                                                                    based on weight (51-100 lbs)
22226                                                                  based on weight (60.1-121 lbs)
22227                                                                    based on weight (51-100 lbs)
22228                                                                  based on weight (60.1-121 lbs)
22229                                                                    based on weight (51-100 lbs)
22230                                                            based on weight (50.1-100 lbs) - 900
22237                                                                                       13.5, 810
22238                                                                                         13, 810
22239                                                                                     unspecified
22240                                                                                     unspecified
22241                                                                                     unspecified
22243                                                                                     unspecified
22245                                                                                     unspecified
22253                                                                    based on weight (60-120 lbs)
22261                                                                    based on weight (50-100 lbs)
22262                                                                    based on weight (60-120 lbs)
22265                                                                    based on weight (51-100 lbs)
22267                                                                    based on weight (51-100 lbs)
22268                                                                    based on weight (60-120 lbs)
22270                                                                                     unspecified
22272                                                                                     unspecified
22289                                                                                         23, 228
22299                                                                                        27, 1620
22306                                                                    based on weight (51-100 lbs)
22308                                                                                         23, 460
22311                                                                                         23, 460
22313                                                                                     unspecified
22315                                                                                    pack/package
22316                                                                                         23, 460
22321                                                                    based on weight (51-100 lbs)
22323                                                                                 based on weight
22341                                                                                          1 dose
22342                                                                                   30 wipes/pads
22343                                                                                     application
22345                                                                                     unspecified
22346                                                                                     unspecified
22347                                                                                     unspecified
22349                                                                                     unspecified
22351                                                                                        4.5, 270
22352                                                                                        9.3, 560
22353                                                                                       13.5, 810
22367                                                                            100000, 2.5, 2500, 1
22404                                                                                     application
22407                                                                1.5 tablets/pills/capsules - 100
22408                                                                                    small amount
22410                                                                                    small amount
22413                                                                    based on weight (51-100 lbs)
22417                                                                    based on weight (51-100 lbs)
22430                                                                        based on weight (64 lbs)
22439                                                                    based on weight (60-120 lbs)
22440                                                                                        27, 1620
22441                                                                    based on weight (51-100 lbs)
22459                                                                                     unspecified
22463                                                                                     unspecified
22530                                                                                     unspecified
22531                                                                    based on weight (51-100 lbs)
22532                                                                    based on weight (51-100 lbs)
22533                                                                                          collar
22534                                                              460 lufenuron, 23 milbemycin oxime
22537                                                                                     unspecified
22540                                                                                     unspecified
22541                                                                    based on weight (51-100 lbs)
22545                                                                    based on weight (51-100 lbs)
22546                                                                    based on weight (51-100 lbs)
22547                                                                       based on weight (55+ lbs)
22548                                                                             tablet/pill/capsule
22549                                                                                     unspecified
22552                                                                                     unspecified
22557                                                                    based on weight (51-100 lbs)
22558                                                                      based on weight (0-25 lbs)
22574                                                                                     application
22575                                                                                 0.25 inch strip
22577                                                            272 ivermectin, 227 pyrantel pamoate
22578                                                                    based on weight (51-100 lbs)
22579                                                            272 ivermectin, 227 pyrantel pamoate
22583                                                                                     unspecified
22585                                                                                     unspecified
22598                                                                     based on weight (44-88 lbs)
22601                                                                     based on weight (44-88 lbs)
22606                                                                    based on weight (51-100 lbs)
22607                                                                     based on weight (45-88 lbs)
22610                                                                                        2.3, 140
22611                                                                                        9.3, 560
22625                                                                    based on weight (51-100 lbs)
22653                                                                    based on weight (50-100 lbs)
22655                                                                     based on weight (45-88 lbs)
22656                                                                    based on weight (51-100 lbs)
22662                                                                                    small amount
22667                                                                                     application
22669                                                                                    small amount
22672                                                                                                
22673                                                                             tablet/pill/capsule
22681                                                                                    small amount
22682                                                                    based on weight (50-100 lbs)
22683                                                                     based on weight (45-88 lbs)
22690                                                                       based on weight (18+ lbs)
22691                                                                       based on weight (18+ lbs)
22692                                                                    based on weight (51-100 lbs)
22693                                                                    based on weight (51-100 lbs)
22704                                                                                     unspecified
22705                                                                                     unspecified
22707                                                                                     unspecified
22708                                                                                     unspecified
22711                                                                                     unspecified
22713                                                                                     unspecified
22714                                                                                     unspecified
22716                                                                                     unspecified
22717                                                                                     unspecified
22718                                                                    based on weight (51-100 lbs)
22719                                                                    based on weight (51-100 lbs)
22733                                                                                          collar
22748                                                                    based on weight (51-100 lbs)
22749                                                                                         23, 460
22750                                                                                   0.44, 8.8, 44
22751                                                                                         23, 460
22752                                                                                   0.44, 8.8, 44
22754                                                                    based on weight (51-100 lbs)
22763                                                                    based on weight (51-100 lbs)
22764                                                                       based on weight (55+ lbs)
22765                                                                                    small amount
22766                                                                    based on weight (50-100 lbs)
22770                                                                                         23, 228
22777                                                                                        27, 1620
22778                                                                                        27, 1620
22779                                                                                        27, 1620
22780                                                                                        27, 1620
22795                                                                    based on weight (51-100 lbs)
22796                                                                       based on weight (55+ lbs)
22797                                                                                     unspecified
22798                                                                                     unspecified
22799                                                                    based on weight (51-100 lbs)
22800                                                                    based on weight (60-121 lbs)
22801                                                                    based on weight (51-100 lbs)
22802                                                                                     application
22803                                                                    based on weight (51-100 lbs)
22804                                                                    based on weight (60-121 lbs)
22830                                                                                 0.25 inch strip
22840                                                                    based on weight (51-100 lbs)
22848                                                                                    small amount
22853                                                                                    small amount
22858                                                                                            bath
22875                                                                       based on weight (55+ lbs)
22886                                                                                    small amount
22909                                                            272 ivermectin, 227 pyrantel pamoate
22919                                                                    based on weight (60-121 lbs)
22920                                                                        based on weight (90 lbs)
22922                                                                                     application
22923                                                                        2 tablets/pills/capsules
22926                                                                                    small amount
22929                                                                                    small amount
22936                                                                                     unspecified
22938                                                                                     unspecified
22939                                                                                     unspecified
22954                                                                                   1 bottle/vial
22963                                                                    based on weight (51-100 lbs)
22965                                                                                     unspecified
22966                                                                                 based on weight
22971                                                                    based on weight (51-100 lbs)
22990                                                                                        wipe/pad
22992                                                                    based on weight (88-110 lbs)
22994                                                                       based on weight (60+ lbs)
23006                                                                                 moderate amount
23007                                                                                 moderate amount
23018                                                                   0.5 tablet/pill/capsule - 250
23019                                                                   0.75 tablet/pill/capsule - 75
23024                                                                                  1 pack/package
23043                                                                                     unspecified
23049                                                            272 ivermectin, 227 pyrantel pamoate
23051                                                            272 ivermectin, 227 pyrantel pamoate
23053                                                                                     unspecified
23055                                                                    based on weight (88-123 lbs)
23059                                                                    based on weight (50-100 lbs)
23060                                                                    based on weight (50-100 lbs)
23061                                                                    based on weight (88-123 lbs)
23064                                                                    based on weight (51-100 lbs)
23066                                                                    based on weight (51-100 lbs)
23083                                                                                        27, 1620
23095                                                                  based on weight (60.1-120 lbs)
23096                                                                   based on weight (44.1-88 lbs)
23100                                                                                     unspecified
23102                                                                                     unspecified
23103                                                                                     unspecified
23108                                                                                     unspecified
23122                                                                    based on weight (51-100 lbs)
23123                                                                       based on weight (55+ lbs)
23124                                                                    based on weight (51-100 lbs)
23125                                                                    based on weight (51-100 lbs)
23134                                                                    based on weight (51-100 lbs)
23137                                                                    based on weight (51-100 lbs)
23138                                                                    based on weight (51-100 lbs)
23143                                                                    based on weight (50-100 lbs)
23144                                                                     based on weight (44-88 lbs)
23153                                                                                     unspecified
23154                                                                                     unspecified
23163                                                                                     unspecified
23169                                                                        based on weight (62 lbs)
23173                                                                      based on weight (68.5 lbs)
23175                                                            272 ivermectin, 227 pyrantel pamoate
23202                                                                    based on weight (51-100 lbs)
23237                                                                                     unspecified
23249                                                                                 moderate amount
23250                                                                    based on weight (60-120 lbs)
23251                                                                    based on weight (51-100 lbs)
23258                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23259                                                                     based on weight (56-95 lbs)
23266                                                                   0.5-1.0% (50 minute duration)
23267                                                            272 ivermectin, 227 pyrantel pamoate
23268                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                     unspecified
23278                                                                                    small amount
23279                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23280                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
23283                                                                                     as directed
23284                                                     250 amoxicillin, 62.5 clavulanate potassium
23286                                                            272 ivermectin, 227 pyrantel pamoate
23288                                                                                          0.5 oz
23294                                                            272 ivermectin, 227 pyrantel pamoate
23299                                                       375 amoxicillin, 94 clavulanate potassium
23304                                                                                    small amount
23308                                                                                     unspecified
23321                                                                                     unspecified
23322                                                                                     unspecified
23325                                                                                     unspecified
23333                                                                    based on weight (51-100 lbs)
23336                                                                    based on weight (51-100 lbs)
23337                                                                     based on weight (44-88 lbs)
23338                                                                     based on weight (56-95 lbs)
23340                                                                                    small amount
23341                                                            272 ivermectin, 227 pyrantel pamoate
23342                                                                     based on weight (56-95 lbs)
23344                                                            272 ivermectin, 227 pyrantel pamoate
23345                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                    small amount
23350                           based on weight (50.1-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
23353                                                     250 amoxicillin, 62.5 clavulanate potassium
23355                                                                                 moderate amount
23356                                                            172 ivermectin, 227 pyrantel pamoate
23360                                                            272 ivermectin, 227 pyrantel pamoate
23364                                                                                    small amount
23366                                                                                     unspecified
23384                                                                     based on weight (45-88 lbs)
23388                                                                    based on weight (51-100 lbs)
23403                                                                    based on weight (51-100 lbs)
23404                                                                     based on weight (44-88 lbs)
23413                                                                    based on weight (51-100 lbs)
23414                                                                    based on weight (51-100 lbs)
23419                                                                                    small amount
23427                                                                    based on weight (51-100 lbs)
23428                                                                    based on weight (51-100 lbs)
23437                                                                    based on weight (60-120 lbs)
23450                                                                     based on weight (45-88 lbs)
23456                                                                                                
23472                                                                     based on weight (21-55 lbs)
23482                                                                     based on weight (55-90 lbs)
23484                                                                    based on weight (50-100 lbs)
23485                                                                     based on weight (21-55 lbs)
23487                                                                     based on weight (56-95 lbs)
23491                                                                                         57, 400
23507                                                                    based on weight (51-100 lbs)
23520                                                                     based on weight (56-95 lbs)
23533                                                                                     unspecified
23534                                                                                     unspecified
23540                                                                    based on weight (51-100 lbs)
23541                                                                  based on weight (60.1-121 lbs)
23552                                                                    based on weight (51-100 lbs)
23553                                                                    based on weight (51-100 lbs)
23557                                                                    based on weight (51-100 lbs)
23565                                                                                    small amount
23566                                                                                    small amount
23568                                                                                 based on weight
23571                                                                    based on weight (51-100 lbs)
23572                                                                     based on weight (45-88 lbs)
23588                                                                    based on weight (60-120 lbs)
23590                                                                                     unspecified
23610                                                                                        23 , 460
23617                                                                    based on weight (51-100 lbs)
23618                                                                    based on weight (51-100 lbs)
23619                                                                                         23, 460
23620                                                                    based on weight (51-100 lbs)
23622                                                                    based on weight (51-100 lbs)
23646                                                                    based on weight (60-120 lbs)
23647                                                                    based on weight (60-120 lbs)
23651                                                                    based on weight (50-100 lbs)
23657                                                                  based on weight (50.1-100 lbs)
23659                                                                    based on weight (88-123 lbs)
23685                                                                    based on weight (51-100 lbs)
23686                                                                     based on weight (44-88 lbs)
23688                                                                   based on weight (44.1-88 lbs)
23707                                                                                     unspecified
23718                                                                                     unspecified
23721                                                                    based on weight (50-100 lbs)
23722                                                                  based on weight (60.1-120 lbs)
23724                                                                                     unspecified
23730                                                                    based on weight (51-100 lbs)
23732                                                                    based on weight (51-100 lbs)
23740                                                                    based on weight (51-100 lbs)
23747                                                                                       11.5, 230
23749                                                                                     unspecified
23757                                                                    based on weight (51-100 lbs)
23804                                                                                         23, 460
23805                                                                    based on weight (51-100 lbs)
23808                                                                    based on weight (51-100 lbs)
23809                                                                                          collar
23819                                                                    based on weight (51-100 lbs)
23861                                                                    based on weight (51-100 lbs)
23862                                                                     based on weight (24-60 lbs)
23866                                                                       based on weight (55+ lbs)
23868                                                                                     as directed
23871                                                                       based on weight (55+ lbs)
23872                                                                                     unspecified
23873                                                                                     unspecified
23898                                                                                 based on weight
23899                                                                                        0.25 cup
23900                                                                                     unspecified
23901                                                                    based on weight (50-100 lbs)
23902                                                                                 based on weight
23905                                                                    based on weight (50-100 lbs)
23906                                                                                          collar
23909                                                                                     application
23910                                                                    based on weight (50-100 lbs)
23914                                                                                                
23917                                                                                     unspecified
23933                                                                                   1 bottle/vial
23942                                                                                     unspecified
23955                                                                    based on weight (50-100 lbs)
23956                                                                    based on weight (50-100 lbs)
23957                                                                                     unspecified
23958                                                                                     unspecified
23959                                                                                     unspecified
23965                                                                                    small amount
23969                                                                                 based on weight
23974                                                                        based on weight (55 lbs)
23976                                                                   based on weight (55+ lbs) - 4
23980                                                                                     unspecified
24010                                                                                       13.5, 810
24012                                                                                    small amount
24017                                                                                       13.5, 810
24018                                                             13.5 milbemycin oxime, 810 spinosad
24019                                                             13.5 milbemycin oxime, 810 spinosad
24020                                                                                        27, 1620
24022                                                                                        27, 1620
24029                                                                                        27, 1620
24045                                                                                     unspecified
24046                                                                                     unspecified
24062                                                                    based on weight (51-100 lbs)
24068                                                                                     unspecified
24072                                                                                         23, 460
24075                                                                    based on weight (51-100 lbs)
24076                                                                    based on weight (51-100 lbs)
24077                                                                    based on weight (51-100 lbs)
24079                                                                     based on weight (45-88 lbs)
24104                                                                         0.5 tablet/pill/capsule
24106                                                                        2 tablets/pills/capsules
24116                                                                                 based on weight
24117                                                                                     unspecified
24139                                                                                 0.25 inch strip
24142                                                                    based on weight (51-100 lbs)
24144                                                                    based on weight (51-100 lbs)
24145                                                                                     unspecified
24149                                                           23 milbemycin oxime, 228 praziquantel
24154                                                                                     unspecified
24155                                                                                     unspecified
24157                                                                                     unspecified
24162                                                                  based on weight (50.1-100 lbs)
24165                                                                    based on weight (51-100 lbs)
24166                                                                       based on weight (64+ lbs)
24172                                                                                 0.25 inch strip
24174                                                                    based on weight (50-100 lbs)
24185                                                                                1.5-7.5, 2.25, 5
24189                                                                                     0.284, 0.57
24192                                                                                     unspecified
24193                                                                                     unspecified
24194                                                                                     unspecified
24195                                                                                     unspecified
24203                                                                                     application
24205                                                                                     unspecified
24206                                                                                     unspecified
24207                                                                                     unspecified
24208                                                                                     unspecified
24209                                                                                     application
24215                                                                                    small amount
24217                                                                                     application
24221                                                                                    small amount
24222                                                                                     unspecified
24246                                                                        2 tablets/pills/capsules
24253                                                                                     unspecified
24257                                                                    based on weight (51-100 lbs)
24258                                                                    based on weight (51-100 lbs)
24259                                                                                     unspecified
24267                                                                                          150/hr
24268                                                                                           75/hr
24269                                                                                          16-116
24276                                                                    based on weight (51-100 lbs)
24282                                                                                     unspecified
24312                                                                                     unspecified
24313                                                                                     unspecified
24314                                                                                     unspecified
24319                                                                   0.5 tablet/pill/capsule - 227
24322                                                                                 moderate amount
24328                                                                        2 tablets/pills/capsules
24343                                                                                       13.5, 810
24375                                                                                        114, 136
24393                                                                    based on weight (51-100 lbs)
24400                                                                    based on weight (50-100 lbs)
24402                                                                    based on weight (51-100 lbs)
24403                                                                    based on weight (51-100 lbs)
24405                                                                 2 tablets/pills/capsules - 2000
24406                                                                  1.5 tablets/pills/capsules - 5
24407                                                                  2 tablets/pills/capsules - 300
24409                                                                                            bath
24413                                                                                     unspecified
24416                                                                                     unspecified
24417                                                                                          3 /tsp
24420                                                                                          powder
24421                                                                    based on weight (50-100 lbs)
24422                                                                                 based on weight
24424                                                                                     unspecified
24425                                                                                 based on weight
24426                                                                    based on weight (60-121 lbs)
24431                                                                    based on weight (50-100 lbs)
24432                                                                     based on weight (24-60 lbs)
24435                                                                    based on weight (50-100 lbs)
24437                                                                    based on weight (60-120 lbs)
24451                                                                                     unspecified
24452                                                                                     unspecified
24453                                                                                     unspecified
24455                                                                                     unspecified
24459                                                                                     unspecified
24460                                                                                     unspecified
24468                                                                                     unspecified
24473                                                              27 milbemycin oxime, 1620 spinosad
24475                                                              27 milbemycin oxime, 1620 spinosad
24476                                                                    based on weight (50-100 lbs)
24477                                                                    based on weight (50-100 lbs)
24478                                                                                  1 pack/package
24480                                                                    based on weight (50-100 lbs)
24481                                                                    based on weight (51-100 lbs)
24486                                                                                     unspecified
24514                                                                                     unspecified
24520                                                                     based on weight (45-88 lbs)
24521                                                                     based on weight (25-50 lbs)
24526                                                                                                
24534                                                                     based on weight (45-88 lbs)
24536                                                                                 based on weight
24593                                                                                    small amount
24597                                                                                        27, 1620
24598                                                                                         35, 425
24599                                                                                        27, 1620
24601                                                                                        27, 1610
24602                                                                                        27, 1610
24605                                                                  based on weight (60.1-120 lbs)
24610                                                                                    small amount
24647                                                                                     unspecified
24648                                                                                     application
24653                                                                                 moderate amount
24660                                                                                 based on weight
24669                                                                    based on weight (60-121 lbs)
24688                                                                                 0.25 inch strip
24707                                                                                     unspecified
24733                                                                    based on weight (51-100 lbs)
24734                                                                    based on weight (60-120 lbs)
24758                                                                                 0.25 inch strip
24762                                                                    based on weight (51-100 lbs)
24768                                                                    based on weight (50-100 lbs)
24769                                                                     based on weight (24-60 lbs)
24802                                                                     based on weight (40-80 lbs)
24804                                                                                     unspecified
24805                                                                                     unspecified
24806                                                                                     unspecified
24817                                                                                    small amount
24819                                                                                     application
24824                                                                    based on weight (51-100 lbs)
24825                                                                                 based on weight
24827                                                                                     as directed
24828                                                                                 based on weight
24829                                                                    based on weight (51-100 lbs)
24830                                                                                     unspecified
24850                                                                    based on weight (50-100 lbs)
24867                                                                    based on weight (51-100 lbs)
24878                                                                                     application
24898                                                                                          powder
24902                                                                    based on weight (51-100 lbs)
24917                                                                                     unspecified
24918                                                                                     unspecified
24919                                                                                     unspecified
24935                                                              460 lufenuron, 23 milbemycin oxime
24937                                                              460 lufenuron, 23 milbemycin oxime
24938                                                              460 lufenuron, 23 milbemycin oxime
24940                                                              460 lufenuron, 23 milbemycin oxime
24942                                                              460 lufenuron, 23 milbemycin oxime
24948                                                                                    small amount
24949                                                              460 lufenuron, 23 milbemycin oxime
24950                                                                     based on weight (45-88 lbs)
24963                                                                                         23, 460
24964                                                                                         23, 228
24968                                                                    based on weight (51-100 lbs)
24969                                                                                 based on weight
24971                                                                    based on weight (51-100 lbs)
24973                                                                             tablet/pill/capsule
24974                                                                                        1 collar
24975                                                                                    small amount
24982                                                                     based on weight (45-88 lbs)
24984                                                              460 lufenuron, 23 milbemycin oxime
24985                                                                                     unspecified
24987                                                                    based on weight (51-100 lbs)
24988                                                                                            8-10
24989                                                                                    small amount
24993                                                                                 based on weight
25020                                                                                         23, 460
25021                                                                     based on weight (44-88 lbs)
25022                                                                                         23, 460
25059                                                            272 ivermectin, 227 pyrantel pamoate
25079                                                                    based on weight (51-100 lbs)
25087                                                                                          collar
25094                                                                                        27, 1620
25099                                                                                     unspecified
25100                                                                                     unspecified
25118                                                                    based on weight (51-100 lbs)
25119                                                                    based on weight (51-100 lbs)
25120                                                                    based on weight (51-100 lbs)
25124                                                                                 moderate amount
25129                                                                             tablet/pill/capsule
25191                                                                    based on weight (51-100 lbs)
25196                                                                    based on weight (51-100 lbs)
25198                                                                                             10+
25233                                                                    based on weight (51-100 lbs)
25234                                                                    based on weight (51-100 lbs)
25241                                                                                    small amount
25255                                                                                    small amount
25258                                                                                    small amount
25262                                                                                     unspecified
25269                                                                                     unspecified
25270                                                                                     unspecified
25296                                                            272 ivermectin, 227 pyrantel pamoate
25299                                                                                 based on weight
25300                                                                   based on weight (24.1-60 lbs)
25310                                                                                          1 dose
25311                                                                                     application
25315                                                                    based on weight (51-100 lbs)
25316                                                                    based on weight (51-100 lbs)
25317                                                                    based on weight (60-120 lbs)
25342                                                                    based on weight (61-120 lbs)
25343                                                                    based on weight (51-100 lbs)
25345                                                                                    small amount
25346                                                                                    small amount
25347                                                                                     unspecified
25367                                                                                     unspecified
25405                                                                   based on weight (40.1-85 lbs)
25409                                                                                 0.25 inch strip
25410                                                                                     as directed
25417                                                                                            8 oz
25421                                                                   based on weight (40.1-85 lbs)
25424                                                                                     as directed
25425                                                                                     as directed
25437                                                                                        23 , 460
25444                                                                                         23, 460
25473                                                                    based on weight (51-100 lbs)
25482                                                                                     unspecified
25493                                                                    based on weight (51-100 lbs)
25494                                                                    based on weight (51-100 lbs)
25501                                                                    based on weight (51-100 lbs)
25514                                                                                     unspecified
25515                                                                                     unspecified
25516                                                                    based on weight (51-100 lbs)
25520                                                                    based on weight (51-100 lbs)
25521                                                                    based on weight (60-120 lbs)
25523                                                                       based on weight (59+ lbs)
25547                                                                                    small amount
25554                                                                                       27 , 1620
25555                                                                                        27, 1620
25556                                                                                        4.5, 270
25557                                                                                        27, 1620
25575                                                                    based on weight (50-100 lbs)
25576                                                                    based on weight (51-100 lbs)
25577                                                                    based on weight (51-100 lbs)
25589                                                           23 milbemycin oxime, 228 praziquantel
25591                                                           23 milbemycin oxime, 228 praziquantel
25612                                                                                        27, 1620
25617                                                                                   1 application
25619                                                                                     unspecified
25622                                                                                     unspecified
25660                                                                                 moderate amount
25663                                                                                    small amount
25666                                                                             tablet/pill/capsule
25670                                                                    based on weight (88-110 lbs)
25671                                                                                    small amount
25674                                                                    based on weight (88-110 lbs)
25683                                                              based on weight (51-100 lbs) - 7.7
25706                                                                       based on weight (55+ lbs)
25707                                                                                     unspecified
25708                                                                    based on weight (51-100 lbs)
25725                                                                                        5 x 10^7
25727                                                                    based on weight (51-100 lbs)
25730                                                                                            bath
25737                                                                                     unspecified
25740                                                                   based on weight (24.1-60 lbs)
25741                                                                    based on weight (51-100 lbs)
25743                                                                     based on weight (21-55 lbs)
25744                                                                                     unspecified
25748                                                                     based on weight (26-50 lbs)
25749                                                                      based on weight (0-25 lbs)
25750                                                                      based on weight (0-22 lbs)
25751                                                                                 0.25 inch strip
25753                                                                                    small amount
25754                                                                    based on weight (51-100 lbs)
25755                                                                     based on weight (44-88 lbs)
25756                                                                     based on weight (56-95 lbs)
25757                                                                   based on weight (24.1-60 lbs)
25765                                                                                    small amount
25795                                                                        based on weight (60 lbs)
25804                                                              460 lufenuron, 23 milbemycin oxime
25806                                                                    based on weight (51-100 lbs)
25807                                                                    based on weight (51-100 lbs)
25819                                                                     based on weight (40-60 lbs)
25820                                                                   based on weight (40.1-60 lbs)
25827                                                                    based on weight (51-100 lbs)
25828                                                           23 milbemycin oxime, 228 praziquantel
25830                                                                                        23 , 228
25837                                                                                    small amount
25846                                                                    based on weight (88-123 lbs)
25884                                                                    based on weight (51-100 lbs)
25887                                                                    based on weight (51-100 lbs)
25888                                                                  based on weight (60.1-121 lbs)
25919                                     10 clotrimazole, 3 gentamicin sulfate, 1 mometasone furoate
25936                                                                                     unspecified
25937                                                                                     unspecified
25939                                                                    based on weight (51-100 lbs)
25940                                                                     based on weight (44-88 lbs)
25941                                                                    based on weight (50-100 lbs)
25943                                                                     based on weight (40-85 lbs)
25948                                                                                         57, 227
25949                                         based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                    based on weight (88-123 lbs)
25951                                        based on weight (2-25 lbs), based on weight (50-100 lbs)
25953                                                                                     unspecified
25954                                                                    based on weight (85-130 lbs)
25964                                                                    based on weight (51-100 lbs)
25965                                                                  based on weight (60.1-121 lbs)
25966                                                                    based on weight (51-100 lbs)
25981                                                                                             3-5
25983                                                                                             4-5
25985                                                                       based on weight (55+ lbs)
25986                                                                     based on weight (55-88 lbs)
25998                                                                                     unspecified
26004                                                            272 ivermectin, 227 pyrantel pamoate
26022                                                                                       62.5, 437
26024                                                                     based on weight (44-88 lbs)
26027                                                                                       62.5, 437
26031                                                                    based on weight (50-100 lbs)
26033                                                                     based on weight (44-88 lbs)
26037                                                                     based on weight (44-88 lbs)
26039                                                                     based on weight (44-88 lbs)
26047                                                                     based on weight (44-88 lbs)
26048                                                                    based on weight (51-100 lbs)
26050                                                                     based on weight (44-88 lbs)
26054                                                                     based on weight (44-88 lbs)
26056                                                                     based on weight (44-88 lbs)
26064                                                                                  1 pack/package
26075                                                                                    50, 125, 250
26078                                                                                     unspecified
26084                                                                                     unspecified
26085                                                                                     unspecified
26093                                                                                     application
26114                                                                    based on weight (51-100 lbs)
26115                                                                                                
26127                                                                                     unspecified
26128                                                                                     unspecified
26129                                                                                     unspecified
26133                                                                                     unspecified
26134                                                                                     unspecified
26138                                                                     based on weight (56-95 lbs)
26139                                                                                            bath
26141                                                                     based on weight (21-55 lbs)
26148                                                                     based on weight (56-95 lbs)
26151                                                                    based on weight (50-100 lbs)
26152                                                                     based on weight (56-95 lbs)
26156                                                                                 based on weight
26157                                                                                 based on weight
26158                                                                                     unspecified
26159                                                                                     unspecified
26165                                                                                 based on weight
26166                                                                                 based on weight
26184                                                                                     unspecified
26187                                                                                  0.5 inch strip
26190                                                                                            bath
26192                                                                     based on weight (21-55 lbs)
26197                                                                                  0.5 inch strip
26199                                                                     based on weight (54-95 lbs)
26203                                                                    based on weight (50-100 lbs)
26204                                                                     based on weight (21-55 lbs)
26207                                                                                 based on weight
26208                                                                                 based on weight
26211                                                                     based on weight (25-50 lbs)
26212                                                                     based on weight (21-55 lbs)
26214                                                                                 based on weight
26215                                                                                 based on weight
26227                                                                                     unspecified
26229                                                                                     unspecified
26258                                                                                     application
26265                                                                                     unspecified
26278                                                                                             2-3
26279                                                                    based on weight (60-120 lbs)
26280                                                                     based on weight (56-95 lbs)
26281                                                                    based on weight (60-120 lbs)
26282                                                                    based on weight (50-100 lbs)
26287                                                                    based on weight (50-100 lbs)
26295                                                                    based on weight (60-121 lbs)
26300                                                                    based on weight (50-100 lbs)
26307                                                                      based on weight (7.5+ lbs)
26315                                                                    based on weight (51-100 lbs)
26336                                                                                     unspecified
26337                                                                                     unspecified
26355                                                                                     unspecified
26375                                                                    based on weight (51-100 lbs)
26380                                                                                     unspecified
26386                                                                     based on weight (26-50 lbs)
26387                                                                     based on weight (44-88 lbs)
26391                                                                                     unspecified
26393                                                                                             2-3
26395                                                                                        27, 1620
26399                                                                                        27, 1620
26400                                                                                       27 , 1620
26401                                                                                        27, 1620
26433                                                                                     unspecified
26454                                                                             tablet/pill/capsule
26464                                                                                 based on weight
26471                                                                    based on weight (51-100 lbs)
26473                                                                    based on weight (60-121 lbs)
26475                                                                    based on weight (51-100 lbs)
26476                                                                    based on weight (60-121 lbs)
26488                                                                   based on weight (24.1-60 lbs)
26489                                                                     based on weight (25-50 lbs)
26490                                                                    based on weight (51-100 lbs)
26502                                                                                    small amount
26505                                                                                     as directed
26517                                                                    based on weight (51-100 lbs)
26518                                                                     based on weight (45-88 lbs)
26519                                                                    based on weight (51-100 lbs)
26520                                                                    based on weight (51-100 lbs)
26521                                                                                     unspecified
26522                                                                    based on weight (51-100 lbs)
26534                                                                                     unspecified
26543                                                                    based on weight (51-100 lbs)
26544                                                                        based on weight (58 lbs)
26546                                                                    based on weight (51-100 lbs)
26551                                                           23 milbemycin oxime, 228 praziquantel
26553                                                           23 milbemycin oxime, 228 praziquantel
26568                                                                  based on weight (50.1-100 lbs)
26574                                                                  based on weight (50.1-100 lbs)
26583                                                                                     unspecified
26590                                                                    based on weight (51-100 lbs)
26591                                                                    based on weight (51-100 lbs)
26592                                                                     based on weight (44-88 lbs)
26610                                                                                    small amount
26611                                                                    based on weight (51-100 lbs)
26615                                                                    based on weight (51-100 lbs)
26629                                                                     based on weight (44-88 lbs)
26631                                                                    based on weight (51-100 lbs)
26637                                                              based on weight (50-100 lbs) - 272
26638                                                                    based on weight (51-100 lbs)
26643                                       1 isoflupredone acetate, 5 neomycin sulfate, 1 tetracaine
26644                             2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                     unspecified
26647                                                                                     unspecified
26650                                                                     based on weight (11-25 lbs)
26651                                                                     based on weight (11-25 lbs)
26655                                                             13.5 milbemycin oxime, 810 spinosad
26662                                                                    based on weight (51-100 lbs)
26663                                                                     based on weight (24-60 lbs)
26668                                                                                     bottle/vial
26669                                                                                     unspecified
26670                                                                                          collar
26675                                                                     1 tablet/pill/capsule - 200
26676                                                                     based on weight (44-88 lbs)
26677                                                                    based on weight (50-100 lbs)
26694                                                                                     unspecified
26720                      2 tablets/pills/capsules - 2 prednisolone acetate, 5 trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 lufenuron, 23 milbemycin oxime
26722                                                                    based on weight (51-100 lbs)
26723                                                                    based on weight (51-100 lbs)
26724                                                                                      1200, 1500
26726                                                                                     unspecified
26734                                                                                 based on weight
26735                                                                    based on weight (60-120 lbs)
26736                                                            272 ivermectin, 227 pyrantel pamoate
26738                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26740                                                           23 milbemycin oxime, 228 praziquantel
26742                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26744                                                           23 milbemycin oxime, 228 praziquantel
26745                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26747   1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                            90 asu, 350 chondroitin sulfate, 900 glucosamine hcl
26750                                                            272 ivermectin, 227 pyrantel pamoate
26760                                                                    based on weight (51-100 lbs)
26769                                                                    based on weight (50-100 lbs)
26780                                                         11.5 milbemycin oxime, 114 praziquantel
26803                                                                                            1 oz
26823                                                                        based on weight (60 lbs)
26825                                                                                     application
26827                                                                                    small amount
26830                                                                                     1 injection
26831                                                                                     1 injection
26833                                                                                           17/lb
26837                                                                                    pack/package
26839                                                                                     application
26841                                                                                     application
26842                                                                             tablet/pill/capsule
26843                                                                                  1 pack/package
26844                                                                                    small amount
26846                                                                    based on weight (51-100 lbs)
26847                                                                     based on weight (45-88 lbs)
26848                                                                                    pack/package
26849                                                                    based on weight (51-100 lbs)
26850                                                                     based on weight (45-88 lbs)
26851                                                                                    pack/package
26852                                                                                     unspecified
26853                                                                    based on weight (60-120 lbs)
26861                                                                    based on weight (51-100 lbs)
26862                                                                                 based on weight
26863                                                                                     unspecified
26865                                                                                 based on weight
26867                                                                                 based on weight
26868                                                                                     unspecified
26869                                                                  based on weight (50.1-100 lbs)
26870                                                                       based on weight (55+ lbs)
26871                                                                                     unspecified
26872                                                                                     unspecified
26905                                                                                    small amount
26926                                                                    based on weight (51-100 lbs)
26930                                                                    based on weight (51-100 lbs)
26931                                                                     based on weight (51-95 lbs)
26932                                                                                         23, 460
26944                                                                    based on weight (56-110 lbs)
26948                                                                    based on weight (55-100 lbs)
26972                                                                                         23, 460
26974                                                                                     unspecified
26975                                                                     based on weight (26-50 lbs)
26976                                                                                    small amount
26977                                                                     based on weight (11-25 lbs)
26978                                                                                     unspecified
26979                                                                    based on weight (51-100 lbs)
26980                                                                    based on weight (51-100 lbs)
26981                                                                    based on weight (51-100 lbs)
26983                                                                                     unspecified
26984                                                                     based on weight (45-88 lbs)
26986                                                                     based on weight (44-88 lbs)
26988                                                           23 milbemycin oxime, 228 praziquantel
26990                                                           23 milbemycin oxime, 228 praziquantel
26992                                                           23 milbemycin oxime, 228 praziquantel
27020                                                                                     unspecified
27021                                                                                     unspecified
27022                                                                                     unspecified
27030                                                           23 milbemycin oxime, 228 praziquantel
27047                                                                                     unspecified
27058                                                                                     unspecified
27062                                                                                     unspecified
27063                                                                                     unspecified
27065                                                                    based on weight (51-100 lbs)
27082                                                                                     as directed
27092                                                                                  1 pack/package
27095                                                                                                
27100                                                                                     unspecified
27117                                                                                     application
27118                                                                                     application
27124                                                                                  1 pack/package
27128                                                                                    small amount
27134                                                                                     application
27136                                                                    based on weight (51-100 lbs)
27140                                                                                    small amount
27158                                                                                    small amount
27170                                                                    based on weight (51-100 lbs)
27172                                                                                 based on weight
27173                                                                                     unspecified
27174                                                                    based on weight (51-100 lbs)
27203                                                            272 ivermectin, 227 pyrantel pamoate
27212                                                                                     unspecified
27213                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27214                                                                                          collar
27217                                                                                                
27219                                                                                          powder
27220                                                                                          collar
27222                                                                                          powder
27223                                                                                                
27224                                                                                     unspecified
27226                                                                                 based on weight
27228                                                                                          collar
27229                                                                             tablet/pill/capsule
27231                                                                    based on weight (60-121 lbs)
27232                                                                  based on weight (50.1-100 lbs)
27247                                                                                         23, 460
27257                                                                       based on weight (18+ lbs)
27258                                                                    based on weight (51-100 lbs)
27262                                                                                                
27265                                                                    based on weight (55-100 lbs)
27268                                                                                     application
27270                                                                                          collar
27273                                                                    based on weight (51-100 lbs)
27274                                                                    based on weight (51-100 lbs)
27275                                                                    based on weight (51-100 lbs)
27280                                                                                 based on weight
27281                                                                    based on weight (51-100 lbs)
27282                                                                                          powder
27285                                                                    based on weight (51-100 lbs)
27306                                                                    based on weight (51-100 lbs)
27309                                                                     based on weight (44-88 lbs)
27311                                                                    based on weight (51-100 lbs)
27315                                                            272 ivermectin, 227 pyrantel pamoate
27322                                                                                                
27333                                                                5 neomycin sulfate, 1 tetracaine
27348                                                                        based on weight (70 lbs)
27349                                                                        based on weight (70 lbs)
27350                                                                       based on weight (55+ lbs)
27358                                                                    based on weight (51-100 lbs)
27360                                                                                     unspecified
27361                                                                    based on weight (51-100 lbs)
27364                                                                    based on weight (51-100 lbs)
27368                                                                    based on weight (51-100 lbs)
27384                                                                                       11.5, 114
27407                                                                                     unspecified
27413                                                                                     unspecified
27414                                                                                     unspecified
27421                                                                                 based on weight
27422                                                                    based on weight (50-100 lbs)
27423                                                            272 ivermectin, 227 pyrantel pamoate
27425                                                                                    small amount
27427                                                                                    small amount
27431                                                                                    small amount
27432                                                                        based on weight (50 lbs)
27434                                                                                 based on weight
27445                                                                        based on weight (46 lbs)
27446                                                                                 based on weight
27447                                                                                     as directed
27459                                                                                        27, 1620
27465                                                                                 0.25 inch strip
27474                                                            272 ivermectin, 227 pyrantel pamoate
27481                                                            272 ivermectin, 227 pyrantel pamoate
27492                                                                                     unspecified
27494                                                                                     unspecified
27500                                                                                    small amount
27501                                                                                    small amount
27502                                                                    based on weight (51-100 lbs)
27506                                                                    based on weight (51-100 lbs)
27507                                                                     based on weight (45-88 lbs)
27511                                                                    based on weight (51-100 lbs)
27512                                                                     based on weight (45-88 lbs)
27523                                                                    based on weight (51-100 lbs)
27529                                                                    based on weight (51-100 lbs)
27589                                                                                        27, 1620
27594                                                                    based on weight (60-120 lbs)
27596                                                                                        27, 1620
27598                                                                                     unspecified
27620                                                                     based on weight (44-88 lbs)
27640                                                                     based on weight (26-50 lbs)
27646                                                                                     unspecified
27659                                                                                     as directed
27674                                                                                     unspecified
27697                                                                                    small amount
27699                                                                                 350 , 800 , 900
27700                                                                    based on weight (50-100 lbs)
27701                                                                     based on weight (44-85 lbs)
27704                                                                    based on weight (51-100 lbs)
27710                                                                     based on weight (45-88 lbs)
27713                                                                                     unspecified
27714                                                                                     unspecified
27715                                                                                     unspecified
27722                                                                                     unspecified
27736                                                                                     unspecified
27745                                                            272 ivermectin, 227 pyrantel pamoate
27747                                     1 isoflupredone acetate, 3.5 neomycin sulfate, 1 tetracaine
27748                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27750                                                            272 ivermectin, 227 pyrantel pamoate
27769                                                            272 ivermectin, 227 pyrantel pamoate
27770                                                                                         23, 460
27772                                                                                         23, 460
27776                                                                                     unspecified
27791                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27794                                                            272 ivermectin, 227 pyrantel pamoate
27802                                                                                     unspecified
27824                                                            272 ivermectin, 227 pyrantel pamoate
27826                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
27828                                                            272 ivermectin, 227 pyrantel pamoate
27833                                                                                     unspecified
27834                                                                                          varies
27836                                                                                     unspecified
27878                                                                                     unspecified
27880                                                                                     unspecified
27886                                                                    based on weight (51-100 lbs)
27895                                                                                          varies
27896                                                                                          varies
27897                                                                                     unspecified
27898                                                                                 based on weight
27899                                                                                    small amount
27910                                                                                         23, 460
27913                                                                                         23, 460
27917                                                                    based on weight (51-100 lbs)
27921                                                                    based on weight (51-100 lbs)
27922                                                                    based on weight (50-100 lbs)
27923                                                                    based on weight (51-100 lbs)
27927                                                                                     unspecified
27929                                                                                     unspecified
27939                                                                                       8.8%, 44%
27940                                                                                        23 , 460
27941                                                                                             4-6
27942                                                                        2 tablets/pills/capsules
27954                                                                     based on weight (56-95 lbs)
27957                                                                     based on weight (45-88 lbs)
27958                                                               1.25 tablets/pills/capsules - 375
27959                                                                 1.5 tablets/pills/capsules - 50
27961                                                                                 based on weight
27962                                                                    based on weight (50-100 lbs)
27973                                                                                    small amount
27974                                                                                     application
27981                                                                       based on weight (55+ lbs)
27982                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                     unspecified
27999                                                                       based on weight (55+ lbs)
28000                                        based on weight (1-25 lbs), based on weight (51-100 lbs)
28008                                                                                  1 pack/package
28010                                                                                  1 pack/package
28014                                                                                                
28015                                                                  2 tablets/pills/capsules - 425
28016                                                                    based on weight (50-100 lbs)
28018                                                                                 based on weight
28023                                                                                     unspecified
28024                                                                    based on weight (60-121 lbs)
28025                                                                                     unspecified
28029                                                                    based on weight (51-100 lbs)
28040                                                                    based on weight (51-100 lbs)
28045                                                                                         68, 272
28046                                                                                     unspecified
28047                                                                                     unspecified
28048                                                                    based on weight (51-100 lbs)
28049                                                                    based on weight (51-100 lbs)
28087                                                                    based on weight (50-100 lbs)
28088                                                                     based on weight (44-88 lbs)
28090                                                                                    small amount
28094                                                                                     unspecified
28096                                                                                     unspecified
28098                                                                                     unspecified
28100                                                                     based on weight (44-88 lbs)
28101                                                                  based on weight (50.1-100 lbs)
28102                                                                  based on weight (50.1-100 lbs)
28103                                                                     based on weight (44-88 lbs)
28104                                                                     based on weight (44-88 lbs)
28105                                                                  based on weight (50.1-100 lbs)
28106                                                           23 milbemycin oxime, 228 praziquantel
28108                                                                     based on weight (44-88 lbs)
28109                                                                    based on weight (50-100 lbs)
28116                                                                                  1 pack/package
28119                                                                    based on weight (51-100 lbs)
28120                                                                    based on weight (50-100 lbs)
28128                                                              460 lufenuron, 23 milbemycin oxime
28130                                                            272 ivermectin, 227 pyrantel pamoate
28134                                                                    based on weight (51-100 lbs)
28135                                                                    based on weight (51-100 lbs)
28137                                                                    based on weight (51-100 lbs)
28138                                                                                         7000 iu
28144                                                                    based on weight (51-100 lbs)
28154                                                                     based on weight (45-88 lbs)
28155                                                                    based on weight (51-100 lbs)
28158                                                                                 based on weight
28162                                                                       based on weight (60+ lbs)
28163                                                                                 based on weight
28164                                                                                 based on weight
28165                                                                                     as directed
28166                                                                                     unspecified
28167                                                                                     unspecified
28168                                                                                     unspecified
28174                                                                                 0.25 inch strip
28176                                                                                 0.25 inch strip
28246                                                           2 prednisone, 5 trimeprazine tartrate
28260                                                                                    1 inch strip
28261                                                            272 ivermectin, 227 pyrantel pamoate
28263                                                                   based on weight (44.1-88 lbs)
28264                                                            272 ivermectin, 227 pyrantel pamoate
28269                                                                    based on weight (51-100 lbs)
28277                                                                                     unspecified
28279                                                                                     unspecified
28307                                                                                     unspecified
28309                                                                    based on weight (61-120 lbs)
28311                                                                    based on weight (50-100 lbs)
28316                                                                                    small amount
28332                                                                                     application
28333                                                                                    small amount
28371                                                                                    pack/package
28375                                                                     based on weight (44-88 lbs)
28390                                                                                    small amount
28392                                                                    based on weight (60-121 lbs)
28396                                                                        2 tablets/pills/capsules
28397                                                                  based on weight (50.1-100 lbs)
28398                                                                     based on weight (44-88 lbs)
28399                                                                    based on weight (50-100 lbs)
28400                                                                     based on weight (44-88 lbs)
28401                                                                  based on weight (50.1-100 lbs)
28404                                                                     based on weight (40-60 lbs)
28407                                                                     based on weight (40-60 lbs)
28425                                                                                     unspecified
28427                                                                                     unspecified
28437                                                                    based on weight (51-100 lbs)
28448                                                                    based on weight (51-100 lbs)
28449                                                                       based on weight (55+ lbs)
28453                                                            272 ivermectin, 227 pyrantel pamoate
28484                                                                                 moderate amount
28486                                                                                    small amount
28505                                                                                     unspecified
28507                                                                                     unspecified
28508                                                                                     unspecified
28516                                                                                     unspecified
28517                                                                                     unspecified
28518                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28519                                                            272 ivermectin, 227 pyrantel pamoate
28520                                                              8.8% (s)-methoprene, 9.8% fipronil
28528                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
28531                                                                                   5 billion cfu
28533                                                               3% chloroxylenol, 3% ketoconazole
28534                                                   based on weight (50-100 lbs) - 23 , 228 , 460
28535                                                              based on weight (60-121 lbs) - 136
28536                                based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                   5 billion cfu
28545                                                            272 ivermectin, 227 pyrantel pamoate
28549                                                                    based on weight (51-100 lbs)
28552                                                                                 based on weight
28553                                                                     based on weight (44-88 lbs)
28554                                                                       based on weight (50+ lbs)
28556                                                                                 based on weight
28557                                                                                 based on weight
28571                                                                    based on weight (51-100 lbs)
28572                                                                                     unspecified
28573                                                                                 based on weight
28574                                                                                        1 collar
28576                                               10 dextromethorphan hydrobromide, 100 guaifenesin
28577                                                                                    small amount
28580                                                                                 0.25 inch strip
28582                                                                    based on weight (51-100 lbs)
28583                                                                                 based on weight
28590                                                                                     unspecified
28601                                                                                 based on weight
28602                                                                    based on weight (50-100 lbs)
28605                                                                                          collar
28610                                                                1.5 tablets/pills/capsules - 136
28621                                                                                 based on weight
28624                                                                        based on weight (80 lbs)
28660                                                                                     unspecified
28668                                                            272 ivermectin, 227 pyrantel pamoate
28673                                                                                             5-8
28674                                                                    based on weight (51-100 lbs)
28675                                                                     based on weight (44-88 lbs)
28685                                                                                     unspecified
28686                                                                                     unspecified
28687                                                                                     unspecified
28693                                                                    based on weight (50-100 lbs)
28694                                                                                   1 bottle/vial
28696                                                                    based on weight (50-100 lbs)
28710                                                                                     unspecified
28714                                                                                    small amount
28718                                                                  4 tablets/pills/capsules - 0.5
28719                                                                  4 tablets/pills/capsules - 0.5
28723                                                                     based on weight (45-80 lbs)
28726                                                                    based on weight (60-120 lbs)
28727                                                                                     application
28730                                                                    based on weight (60-120 lbs)
28731                                                                                     application
28735                                                                    based on weight (50-100 lbs)
28736                                                                    based on weight (50-100 lbs)
28750                                                                                     unspecified
28751                                                                                     unspecified
28772                                                                                     unspecified
28773                                                                                     unspecified
28780                                                                                        114, 136
28806                                                                     based on weight (45-88 lbs)
28809                                                                    based on weight (51-100 lbs)
28819                                                                                     unspecified
28826                                                                                                
28829                                                                                     application
28855                                                                                     unspecified
28873                                                                     based on weight (44-88 lbs)
28874                                                                    based on weight (51-100 lbs)
28882                                                                     based on weight (24-60 lbs)
28883                                                                     based on weight (20-60 lbs)
28884                                                                                 based on weight
28888                                                                     based on weight (24-60 lbs)
28897                                                                    based on weight (51-100 lbs)
28899                                                                    based on weight (50-100 lbs)
28904                                                                    based on weight (51-100 lbs)
28907                                                                   based on weight (24.1-60 lbs)
28934                                                                                     unspecified
28939                                                                                         23, 460
28940                                                                      1.5 tablets/pills/capsules
28941                                                                                    small amount
28946                                                                                    small amount
28979                                                                                 based on weight
28980                                                                                 based on weight
28982                                                                    based on weight (51-100 lbs)
28986                                                                     based on weight (40-60 lbs)
28987                                                                     based on weight (40-60 lbs)
29000                                                                     based on weight (40-85 lbs)
29007                                                                     based on weight (44-88 lbs)
29015                                                                                 moderate amount
29022                                                                                     unspecified
29023                                                                                     unspecified
29036                                                                                                
29039                                                                                     unspecified
29040                                                                                     unspecified
29043                                                                                     unspecified
29050                                                                                                
29053                                                                                    small amount
29056                                                                    based on weight (60-120 lbs)
29060                                                                                     unspecified
29064                                                                    based on weight (60-120 lbs)
29067                                                            272 ivermectin, 227 pyrantel pamoate
29069                                                            272 ivermectin, 227 pyrantel pamoate
29070                                                                                0.125 inch strip
29071                                                                                    small amount
29072                                                                                 0.25 inch strip
29073                                                                                    small amount
29075                                                                                    small amount
29078                                                                                        1 - 4 ml
29079                                                                                    1 inch strip
29081                                                                                 0.25 inch strip
29083                                                                                  1 pack/package
29086                                                              27 milbemycin oxime, 1620 spinosad
29087                                                              27 milbemycin oxime, 1620 spinosad
29091                                                              27 milbemycin oxime, 1620 spinosad
29095                                                                  based on weight (60.1-120 lbs)
29096                                                                  based on weight (60.1-121 lbs)
29098                                                                                                
29099                                                                                                
29103                                                                                    10 ucg/kg/hr
29104                                                                                        1021 /hr
29108                                                                                     unspecified
29136                                                                    based on weight (50-100 lbs)
29139                                                                                    small amount
29143                                                            272 ivermectin, 227 pyrantel pamoate
29151                                                                     based on weight (40-88 lbs)
29153                                                                                     unspecified
29161                                                                                     application
29166                                                                      based on weight (74.1 lbs)
29184                                                                        based on weight (64 lbs)
29196                                                                                 0.25 inch strip
29197                                                                                     unspecified
29220                                                                                    small amount
29232                                                                                     unspecified
29234                                                                                     unspecified
29235                                                                                     unspecified
29244                                                                                     unspecified
29245                                                                                     unspecified
29248                                                                                     unspecified
29283                                                                                     unspecified
29285                                                                                     unspecified
29291                                                                                                
29298                                                              460 lufenuron, 23 milbemycin oxime
29313                                                                                     unspecified
29315                                                                    based on weight (51-100 lbs)
29321                                                                                    small amount
29324                                                                                     unspecified
29327                                                                                     unspecified
29328                                                                    based on weight (51-100 lbs)
29340                                                                                     application
29342                                                                                 moderate amount
29374                                                                                         23, 460
29375                                                                                     unspecified
29376                                                                                     unspecified
29377                                                                                 based on weight
29378                                                                                     unspecified
29379                                                                                     unspecified
29380                                                                                     unspecified
29381                                                                                     unspecified
29382                                                                    based on weight (51-100 lbs)
29383                                                                     based on weight (21-55 lbs)
29395                                                                                        5, 162.5
29404                                                                                     unspecified
29405                                                                                     unspecified
29406                                                                                     unspecified
29428                                                                                            1 au
29438                                                                                    small amount
29446                                                                                     unspecified
29447                                                                                     unspecified
29453                                                                                     unspecified
29469                                                                    based on weight (51-100 lbs)
29470                                                                                 based on weight
29471                                                                                     application
29479                                                                    based on weight (51-100 lbs)
29480                                                                    based on weight (51-100 lbs)
29481                                                                    based on weight (51-100 lbs)
29482                                                                    based on weight (51-100 lbs)
29483                                                                   based on weight (44.1-88 lbs)
29490                                                                    based on weight (51-100 lbs)
29500                                                                                  1 pack/package
29501                                                                    based on weight (51-100 lbs)
29502                                                                  based on weight (50.1-100 lbs)
29504                                                                    based on weight (50-100 lbs)
29505                                                                     based on weight (45-88 lbs)
29511                                                                     based on weight (45-88 lbs)
29525                                                                             tablet/pill/capsule
29526                                                                                     application
29531                                                                    based on weight (51-100 lbs)
29532                                                                     based on weight (45-88 lbs)
29533                                                                    based on weight (51-100 lbs)
29534                                                                       based on weight (55+ lbs)
29535                                                                                                
29536                                                                    based on weight (51-100 lbs)
29537                                                                                     unspecified
29538                                                                    based on weight (51-100 lbs)
29539                                                                       based on weight (55+ lbs)
29540                                                                    based on weight (51-100 lbs)
29567                                                                    based on weight (51-100 lbs)
29568                                                                                     unspecified
29572                                                                                     unspecified
29573                                                                                     unspecified
29574                                                                                     as directed
29575                                                                                     unspecified
29580                                                                    based on weight (51-100 lbs)
29588                                                                    based on weight (51-100 lbs)
29608                                                                     based on weight (44-88 lbs)
29617                                                                                     unspecified
29633                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
29662                                                                                     unspecified
29666                                                                                     unspecified
29669                                                                                     unspecified
29670                                                                                     unspecified
29678                                                              0.5 tablet/pill/capsule - 125, 500
29700                                                                       based on weight (55+ lbs)
29705                                                                       based on weight (55+ lbs)
29707                                                                       based on weight (55+ lbs)
29709                                                                       based on weight (55+ lbs)
29715                                                                                 based on weight
29716                                                                                 based on weight
29719                                                                                 based on weight
29720                                                                                 based on weight
29722                                                                                 based on weight
29724                                                                                 based on weight
29726                                                                                 based on weight
29734                                                                                         23, 460
29736                                                                    based on weight (51-100 lbs)
29744                                                                    based on weight (51-100 lbs)
29749                                                                                          6 , 15
29753                                                                    based on weight (51-100 lbs)
29764                                                                                     unspecified
29765                                                                                     unspecified
29767                                                                    based on weight (51-100 lbs)
29770                                                                    based on weight (51-100 lbs)
29794                                                                                     unspecified
29798                                                              based on weight (51-100 lbs) - 272
29799                                                              based on weight (51-100 lbs) - 272
29800                                                            based on weight (60.1-121 lbs) - 136
29801                                                                                        wipe/pad
29802                                                              based on weight (51-100 lbs) - 272
29803                                                            based on weight (60.1-121 lbs) - 136
29822                                                                    based on weight (51-100 lbs)
29823                                                                    based on weight (60-120 lbs)
29824                                                                    based on weight (51-100 lbs)
29825                                                                  based on weight (60.1-121 lbs)
29827                                                                                             3-4
29829                                                                                             1-2
29831                                                                                                
29838                                                                                     unspecified
29839                                                                                     unspecified
29840                                                                                     unspecified
29847                                                                                                
29858                                                                                     unspecified
29862                                                                                        27, 1620
29865                                                                                        37, 1620
29880                                                                    based on weight (51-100 lbs)
29882                                                                    based on weight (51-100 lbs)
29883                                                                    based on weight (60-121 lbs)
29940                                                                    based on weight (50-100 lbs)
29941                                                                    based on weight (50-100 lbs)
29948                                                                                     unspecified
29954                                                                    based on weight (51-100 lbs)
29955                                                                       based on weight (55+ lbs)
29956                                                                    based on weight (51-100 lbs)
29957                                                                       based on weight (55+ lbs)
29963                                                                       based on weight (55+ lbs)
29964                                                                    based on weight (51-100 lbs)
29966                                                                                     unspecified
29969                                                                       based on weight (55+ lbs)
29970                                                                    based on weight (51-100 lbs)
29978                                                                    based on weight (51-100 lbs)
29990                                                                                 based on weight
29991                                                                                         23, 460
29993                                                                                         23, 460
30001                                                                                     unspecified
30048                                                                                     unspecified
30070                                                                                 0.25 inch strip
30075                                                                     based on weight (45-88 lbs)
30076                                                                     based on weight (26-50 lbs)
30081                                                                    based on weight (50-100 lbs)
30082                                                                    based on weight (50-100 lbs)
30083                                                                    based on weight (51-100 lbs)
30099                                                                    based on weight (51-100 lbs)
30104                                                                                     unspecified
30105                                                                                     unspecified
30131                                                                                     unspecified
30132                                                                                     unspecified
30138                                                            272 ivermectin, 227 pyrantel pamoate
30142                                                                    based on weight (60-120 lbs)
30143                                                                                    small amount
30162                                                                                     unspecified
30165                                                                                        27, 1620
30166                                                                                         23, 460
30169                                                                                    small amount
30172                                                                                         23, 460
30174                                                                                         23, 460
30178                                                                                 0.25 inch strip
30179                                                                                     unspecified
30185                                                                    based on weight (50-100 lbs)
30191                                                                1 tablet/pill/capsule - 27, 1620
30192                                                                                        27, 1620
30193                                                                                        27, 1620
30198                                                                                     unspecified
30211                                                                    based on weight (51-100 lbs)
30212                                                                   based on weight (44.1-88 lbs)
30214                                                                     based on weight (56-95 lbs)
30218                                                                     based on weight (44-88 lbs)
30221                                                                    based on weight (51-100 lbs)
30239                                                            230 lufenuron, 11.5 milbemycin oxime
30241                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30242                                                                    based on weight (50-100 lbs)
30246                                                                                     unspecified
30263                                                                    based on weight (51-100 lbs)
30264                                                                     based on weight (44-88 lbs)
30268                                                                    based on weight (51-100 lbs)
30269                                                                     based on weight (45-88 lbs)
30270                                                                    based on weight (51-100 lbs)
30274                                                                    based on weight (51-100 lbs)
30277                                                                    based on weight (51-100 lbs)
30286                                                                    based on weight (51-100 lbs)
30298                                                                    based on weight (51-100 lbs)
30299                                                                    based on weight (51-100 lbs)
30300                                                                                   1 bottle/vial
30310                                                                    based on weight (51-100 lbs)
30311                                                                                 0.25 inch strip
30312                                                                                                
30313                                                                    based on weight (51-100 lbs)
30317                                                                                     application
30319                                                                                     application
30327                                                                                     unspecified
30329                                                                                     unspecified
30337                                                                                     unspecified
30338                                                                                     unspecified
30344                                                                    based on weight (51-100 lbs)
30347                                                                    based on weight (60-120 lbs)
30351                                                                     based on weight (44-88 lbs)
30352                                                                    based on weight (51-100 lbs)
30355                                                                                    small amount
30357                                                                                                
30360                                                                                  1 pack/package
30361                                                                        2 tablets/pills/capsules
30371                                                                    based on weight (51-100 lbs)
30372                                                                                 based on weight
30373                                                                                 based on weight
30374                                                                                 based on weight
30375                                                                                 based on weight
30376                                                                    based on weight (51-100 lbs)
30377                                                                                     unspecified
30378                                                                                     unspecified
30385                                                                    based on weight (51-100 lbs)
30387                                                                       based on weight (60+ lbs)
30388                                                                        2 tablets/pills/capsules
30389                                                                                     application
30395                                                                       based on weight (60+ lbs)
30396                                                                       based on weight (<60 lbs)
30404                                                                    based on weight (51-100 lbs)
30405                                                                       based on weight (55+ lbs)
30406                                                                    based on weight (51-100 lbs)
30418                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
30450                                                                                     unspecified
30464                                                                                     unspecified
30471                                                                                         23, 228
30479                                                                       based on weight (55+ lbs)
30480                                                                    based on weight (51-100 lbs)
30483                                                                       based on weight (55+ lbs)
30484                                                                                     unspecified
30485                                                                                     unspecified
30492                                                              460 lufenuron, 23 milbemycin oxime
30496                                                                                     unspecified
30515                                                                    based on weight (51-100 lbs)
30528                                                                                         23, 460
30529                                                                                             4-5
30536                                                                                             4-5
30590                                                                     based on weight (40-60 lbs)
30604                                                                   based on weight (40-60.1 lbs)
30623                                                                                                
30644                                          1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
30685                                                                                     unspecified
30689                                                                                     unspecified
30692                                                                                    small amount
30701                                                                     based on weight (44-88 lbs)
30702                                                                                         23, 460
30707                                                                     based on weight (44-88 lbs)
30708                                                                    based on weight (51-100 lbs)
30709                                                                    based on weight (51-100 lbs)
30710                                                                     based on weight (44-88 lbs)
30713                                                                                     unspecified
30714                                                                                     unspecified
30717                                                                                     unspecified
30753                                                                    based on weight (50-100 lbs)
30754                                                                     based on weight (20-50 lbs)
30756                                                                     based on weight (21-55 lbs)
30757                                                                     based on weight (22-55 lbs)
30764                                                              27 milbemycin oxime, 1620 spinosad
30768                                                                    based on weight (51-100 lbs)
30769                                                                                     unspecified
30779                                                                    based on weight (51-100 lbs)
30796                                                                       based on weight (50+ lbs)
30797                                                                       based on weight (60+ lbs)
30799                                                                    based on weight (51-100 lbs)
30803                                                                                     unspecified
30813                                                                    based on weight (51-100 lbs)
30817                                                                                        1 collar
30819                                                                     based on weight (56-95 lbs)
30820                                                                    based on weight (51-100 lbs)
30821                                                                        2 tablets/pills/capsules
30822                                                                        2 tablets/pills/capsules
30823                                                                       based on weight (61+ lbs)
30824                                                                                     unspecified
30826                                                                    based on weight (55-100 lbs)
30833                                                                    based on weight (55-100 lbs)
30834                                                                                                
30840                                                                                      100/10 /dm
30844                                                            272 ivermectin, 227 pyrantel pamoate
30876                                                                                 based on weight
30877                                                                                 based on weight
30901                                                                                0.125 inch strip
30909                                                                    based on weight (50-100 lbs)
30917                                                                                     unspecified
30920                                                                    based on weight (50-100 lbs)
30936                                                                                     unspecified
30943                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
30945                                                                                         23, 460
30947                                                                    based on weight (51-100 lbs)
30948                                                                    based on weight (88-123 lbs)
30949                                                                                         23, 460
30953                                                                                     unspecified
30963                                                                      1 tablet/pill/capsule - 75
30998                                                                       based on weight (55+ lbs)
31000                                                                        based on weight (59 lbs)
31001                                                                        based on weight (59 lbs)
31003                                                                        based on weight (59 lbs)
31004                                                                       based on weight (55+ lbs)
31010                                                                    based on weight (50-100 lbs)
31011                                                                       based on weight (55+ lbs)
31022                                                                    based on weight (51-100 lbs)
31023                                                                     based on weight (44-88 lbs)
31034                                                                    based on weight (50-100 lbs)
31043                                                                               1 syringe/pipette
31046                                                                  based on weight (50.1-100 lbs)
31089                                                                                 based on weight
31094                                                           23 milbemycin oxime, 228 praziquantel
31095                                                                         0.5 tablet/pill/capsule
31096                                                                    based on weight (51-100 lbs)
31105                                                                    based on weight (51-100 lbs)
31132                                                                                     application
31133                                                                    based on weight (51-100 lbs)
31134                                                                    based on weight (60-120 lbs)
31135                                                                    based on weight (51-100 lbs)
31139                                                                  based on weight (60.1-121 lbs)
31148                                                            272 ivermectin, 227 pyrantel pamoate
31149                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31152                                                            272 ivermectin, 227 pyrantel pamoate
31154                                                            272 ivermectin, 227 pyrantel pamoate
31183                                                                     based on weight (44-88 lbs)
31186                                                                                     unspecified
31195                                                                                    23, 228, 460
31196                                                                                     unspecified
31197                                                                                  1 pack/package
31198                                                                                           1.5-2
31203                                                                             tablet/pill/capsule
31209                                                                                     unspecified
31228                                                                                     as directed
31232                                                                                          varies
31234                                                              8.8% (s)-methoprene, 9.8% fipronil
31247                                                           23 milbemycin oxime, 228 praziquantel
31248                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 milbemycin oxime, 228 praziquantel
31250                                          8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                    based on weight (51-100 lbs)
31263                                                                    based on weight (51-100 lbs)
31265                                                                                 based on weight
31268                                                                                     as directed
31297                                                                     based on weight (40-85 lbs)
31299                                                                    based on weight (85-130 lbs)
31300                                                                    based on weight (50-100 lbs)
31301                                                                     based on weight (44-88 lbs)
31303                                                                                       120 , 360
31307                                                                       based on weight (55+ lbs)
31308                                                                    based on weight (51-100 lbs)
31309                                                                  based on weight (85.1-130 lbs)
31317                                                                                     unspecified
31322                                                              27 milbemycin oxime, 1620 spinosad
31328                                                                                     unspecified
31350                                                                                     unspecified
31353                                                                                           10-20
31356                                                                                    small amount
31357                                                                    based on weight (51-100 lbs)
31358                                                                    based on weight (60-121 lbs)
31359                                                                    based on weight (61-100 lbs)
31360                                                                     based on weight (60-80 lbs)
31361                                                                    based on weight (51-100 lbs)
31365                                                                    based on weight (50-100 lbs)
31366                                                                    based on weight (60-121 lbs)
31367                                                                                    small amount
31369                                               2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                     application
31371                                                                                    small amount
31373                                                                    based on weight (51-100 lbs)
31374                                                                                     as directed
31375                                                                    based on weight (51-100 lbs)
31383                                                                     based on weight (26-50 lbs)
31384                                                                     based on weight (40-60 lbs)
31385                                                                     based on weight (24-60 lbs)
31386                                                                     based on weight (26-50 lbs)
31408                                                            272 ivermectin, 227 pyrantel pamoate
31423                                                                                     unspecified
31434                                                                                     unspecified
31437                                                                                     unspecified
31438                                                                                     unspecified
31439                                                                                            8-10
31440                                                                       based on weight (50+ lbs)
31441                                                                    based on weight (51-100 lbs)
31446                                                                                     application
31447                                                                                    small amount
31449                                                                    based on weight (51-100 lbs)
31450                                                                   based on weight (24.1-60 lbs)
31452                                                                                     application
31457                                                                                     unspecified
31463                                                                                     unspecified
31471                                                                                     unspecified
31502                                                                     based on weight (26-50 lbs)
31503                                                                    based on weight (60-120 lbs)
31504                                                                     based on weight (45-88 lbs)
31506                                                                    based on weight (60-121 lbs)
31508                                                                     based on weight (45-88 lbs)
31528                                                                    based on weight (60-121 lbs)
31529                                                                     based on weight (26-50 lbs)
31531                                                                    based on weight (60-121 lbs)
31539                                                                                 syringe/pipette
31542                                                                                     unspecified
31548                                                                                     unspecified
31551                                                                                     unspecified
31552                                                                     based on weight (45-88 lbs)
31553                                                                     based on weight (45-88 lbs)
31602                                                                    based on weight (51-100 lbs)
31611                                                                                    small amount
31612                                                       100 flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 dha, 75 epa
31617                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31618                                                                  based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 dha, 155 epa
31637                                                            272 ivermectin, 227 pyrantel pamoate
31640                                                                                    small amount
31643                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31644                                                                  based on weight (60 lbs) - 2.7
31645                                                                                    small amount
31646                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
31647                                                 based on weight (60.1-121 lbs) - 136 afoxolaner
31653                                                            272 ivermectin, 227 pyrantel pamoate
31655                                                                                     unspecified
31656                                                                                     unspecified
31657                                                                                     unspecified
31665                                                                    based on weight (51-100 lbs)
31666                                                                       based on weight (60+ lbs)
31678                                                                    based on weight (51-100 lbs)
31680                                                                    based on weight (51-100 lbs)
31688                                                                    based on weight (51-100 lbs)
31689                                                                       based on weight (60+ lbs)
31696                                                                                     unspecified
31707                                                                    based on weight (51-100 lbs)
31713                                                            272 ivermectin, 227 pyrantel pamoate
31716                                                                                         23, 460
31725                                                                                    small amount
31726                                                                                 based on weight
31730                                                                                     unspecified
31731                                                                                     unspecified
31734                                                                    based on weight (51-100 lbs)
31735                                                                       based on weight (55+ lbs)
31736                                                                                  1 pack/package
31737                                                                     based on weight (41-70 lbs)
31742                                                                                     unspecified
31747                                                                    based on weight (51-100 lbs)
31748                                                                                     unspecified
31760                                                                    based on weight (51-100 lbs)
31761                                                                       based on weight (10+ lbs)
31762                                                                    based on weight (51-100 lbs)
31768                                                                                 based on weight
31769                                                            272 ivermectin, 227 pyrantel pamoate
31771                                                            272 ivermectin, 227 pyrantel pamoate
31773                                                            272 ivermectin, 227 pyrantel pamoate
31774                                                                                     application
31777                                                                    based on weight (51-100 lbs)
31780                                                                                        23 , 469
31781                                                                                         23, 228
31798                                                                    based on weight (51-100 lbs)
31803                                                                                 based on weight
31804                                                                    based on weight (60-121 lbs)
31807                                                                     based on weight (45-88 lbs)
31808                                                                    based on weight (51-100 lbs)
31826                                                                                                
31833                                                                                     unspecified
31834                                                                                     unspecified
31836                                                                                     unspecified
31837                                                                                     unspecified
31840                                                                    based on weight (51-100 lbs)
31841                                                                        based on weight (40 lbs)
31843                                                                                 based on weight
31844                                                                                 based on weight
31846                                                                                          collar
31847                                                                    based on weight (51-100 lbs)
31849                                                                                 moderate amount
31850                                                                                     unspecified
31853                                                                     based on weight (45-88 lbs)
31861                                                           23 milbemycin oxime, 228 praziquantel
31864                                                           25 milbemycin oxime, 228 praziquantel
31866                                                           25 milbemycin oxime, 228 praziquantel
31868                                                                    based on weight (51-100 lbs)
31869                                                                    based on weight (51-100 lbs)
31874                                                                    based on weight (50-100 lbs)
31876                                                                                    small amount
31880                                                                                        160, 800
31888                                                                                     application
31891                                                                    based on weight (51-100 lbs)
31892                                                                    based on weight (60-121 lbs)
31895                                                                    based on weight (50-100 lbs)
31896                                                                    based on weight (60-121 lbs)
31898                                                                    based on weight (60-121 lbs)
31907                                                                     based on weight (44-88 lbs)
31908                                                                    based on weight (51-100 lbs)
31909                                                                    based on weight (51-100 lbs)
31911                                                                    based on weight (51-100 lbs)
31916                                                                    based on weight (51-100 lbs)
31937                                                                                       13.5, 810
31938                                                                                         23, 460
31939                                                                                         23, 460
31940                                                                                         23, 460
31941                                                                                         23, 460
31942                                                                                     unspecified
31946                                                                       based on weight (50+ lbs)
31947                                                                    based on weight (51-100 lbs)
31948                                                                     based on weight (44-88 lbs)
31953                                                                                     unspecified
31954                                                                     based on weight (44-88 lbs)
31955                                                                    based on weight (51-100 lbs)
31968                                                            272 ivermectin, 227 pyrantel pamoate
31985                                                                                     unspecified
31990                                                                    based on weight (51-100 lbs)
32002                                                                    based on weight (51-100 lbs)
32006                                                                                         10, 100
32015                                                                                                
32016                                                                             tablet/pill/capsule
32020                                                                    based on weight (51-100 lbs)
32025                                                                                     unspecified
32032                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32035                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
32040                                                                       based on weight (100 lbs)
32046                                                                                     unspecified
32053                                                                    based on weight (51-100 lbs)
32054                                                                     based on weight (45-88 lbs)
32055                                                                     based on weight (45-88 lbs)
32056                                                                    based on weight (50-100 lbs)
32057                                                                    based on weight (60-121 lbs)
32058                                                                    based on weight (51-100 lbs)
32074                                                                                    small amount
32076                                                                    based on weight (51-100 lbs)
32079                                                                  based on weight (60.1-121 lbs)
32080                                                                                 based on weight
32084                                                                                 0.25 inch strip
32095                                                                     based on weight (44-88 lbs)
32097                                                                    based on weight (51-100 lbs)
32098                                                                    based on weight (50-100 lbs)
32099                                                                     based on weight (44-88 lbs)
32100                                                                    based on weight (50-100 lbs)
32101                                                                   based on weight (44.1-88 lbs)
32102                                                                     based on weight (44-88 lbs)
32103                                                                    based on weight (50-100 lbs)
32105                                                                    based on weight (50-100 lbs)
32106                                                                     based on weight (44-88 lbs)
32108                                                                                 based on weight
32114                                                               4.5% flumethrin, 10% imidacloprid
32116                                                               4.5% flumethrin, 10% imidacloprid
32119                                                                                     unspecified
32121                                                                                 based on weight
32122                                                                                 based on weight
32123                                                                                     unspecified
32128                                                                                 based on weight
32129                                                                                 based on weight
32168                                                                                    small amount
32171                                                                                    small amount
32175                                                                                    small amount
32179                                                                    based on weight (51-100 lbs)
32180                                                                    based on weight (60-120 lbs)
32183                                                                                     unspecified
32184                                                                                     unspecified
32187                                                                                     unspecified
32196                                                                                     unspecified
32222                                                                  based on weight (50.1-100 lbs)
32233                                                                  based on weight (50.1-100 lbs)
32234                                                                     based on weight (44-88 lbs)
32236                                                                    based on weight (51-100 lbs)
32237                                                                     based on weight (24-60 lbs)
32266                                                                                    small amount
32276                                                                                     unspecified
32290                                                                                        inhalant
32297                                                                     based on weight (45-88 lbs)
32310                                                                                                
32312                                                                    based on weight (51-100 lbs)
32313                                                                     based on weight (44-88 lbs)
32315                                                                                    1 inch strip
32320                                                                                        inhalant
32343                                                                                     unspecified
32358                                                    0.284 betamethasone, 0.57 gentamicin sulfate
32359                                                                     based on weight (45-88 lbs)
32360                                                                    based on weight (51-100 lbs)
32362                                                                    based on weight (50-100 lbs)
32363                                                                                     unspecified
32370                                                                                     unspecified
32390                                                                                 based on weight
32393                                                                                                
32394                                                                     based on weight (44-88 lbs)
32425                                                                     based on weight (45-88 lbs)
32426                                                                    based on weight (51-100 lbs)
32427                                                                  based on weight (50.1-100 lbs)
32445                                                                                     unspecified
32447                                                                                     unspecified
32448                                                                                     unspecified
32449                                                                                     unspecified
32460                                                                                            5-10
32463                                                                                     unspecified
32464                                                                                     unspecified
32466                                                                    based on weight (51-100 lbs)
32467                                                                   based on weight (44.1-88 lbs)
32477                                                                    based on weight (51-100 lbs)
32478                                                                   based on weight (44.1-88 lbs)
32504                                                                    based on weight (50-100 lbs)
32505                                                                       based on weight (56+ lbs)
32507                                                                                     application
32509                                                                    based on weight (50-100 lbs)
32510                                                                       based on weight (56+ lbs)
32512                                                                                     bottle/vial
32513                                                                                     unspecified
32520                                                                                           10-15
32529                                                                    based on weight (51-100 lbs)
32530                                                                    based on weight (51-100 lbs)
32535                                                                    based on weight (51-100 lbs)
32536                                                                     based on weight (44-88 lbs)
32538                                                                                 moderate amount
32542                                                                                     unspecified
32557                                                                                       136 , 114
32558                                                                     based on weight (45-88 lbs)
32561                                                                    based on weight (50-100 lbs)
32562                                                                                 based on weight
32575                                                                                     unspecified
32576                                                                                     unspecified
32629                                                                                     unspecified
32631                                                                    based on weight (51-100 lbs)
32633                                                                                     unspecified
32635                                                                                     application
32642                                                                  based on weight (50.1-100 lbs)
32643                                                                    based on weight (50-100 lbs)
32652                                                                                     unspecified
32654                                                                                     unspecified
32664                                                                    based on weight (51-100 lbs)
32670                                                                                         57, 460
32672                                                                                 moderate amount
32673                                                                                        272, 228
32678                                                                                       25.3, 506
32680                                                                                        23 , 460
32682                                                                                         23, 460
32685                                                                                         23, 460
32694                                                                                                
32698                                                                    based on weight (60-120 lbs)
32726                                                                                     unspecified
32737                                                                                     unspecified
32739                                                                                     unspecified
32742                                                                    based on weight (50-100 lbs)
32743                                                                    based on weight (50-100 lbs)
32750                                                                       based on weight (50+ lbs)
32751                                                                     based on weight (24-60 lbs)
32767                                                                                     unspecified
32769                                                                        based on weight (54 lbs)
32777                                                                                     unspecified
32798                                                                                   1 bottle/vial
32815                                                                                    small amount
32829                                                                    based on weight (89-132 lbs)
32841                                                                                                
32844                                                                                        125, 500
32849                                                                                     unspecified
32850                                                                                     unspecified
32856                                                              8.8% (s)-methoprene, 9.8% fipronil
32857                                                            272 ivermectin, 227 pyrantel pamoate
32858                                                                     based on weight (60-80 lbs)
32859                                                                     based on weight (60-80 lbs)
32862                                                                     based on weight (44-88 lbs)
32863                                                                                                
32869                                                                     based on weight (44-88 lbs)
32870                                                                     based on weight (44-88 lbs)
32871                                                                                     unspecified
32879                                                                                     unspecified
32883                                                                    based on weight (50-100 lbs)
32884                                                                                 500, 1250, 2500
32887                                                                                     unspecified
32888                                                                                     unspecified
32903                                                                                            3 au
32923                                                            272 ivermectin, 227 pyrantel pamoate
32930                                                                  based on weight (50.1-100 lbs)
32937                                                                        based on weight (66 lbs)
32938                                                                    based on weight (51-100 lbs)
32940                                                                                     application
32942                                                                    based on weight (51-100 lbs)
32943                                                                     based on weight (44-88 lbs)
32944                                                                  based on weight (60.1-121 lbs)
32949                                                                                    small amount
32950                                                                                     as directed
32951                                                                    based on weight (51-100 lbs)
32952                                                                    based on weight (60-121 lbs)
32954                                                                                        125, 500
32955                                                                    based on weight (51-100 lbs)
32956                                                                  based on weight (60.1-121 lbs)
32964                                                                                     unspecified
32965                                                                                     unspecified
32999                                                                    based on weight (51-100 lbs)
33004                                                                    based on weight (51-100 lbs)
33008                                                                       based on weight (55+ lbs)
33009                                                                    based on weight (51-100 lbs)
33010                                                                    based on weight (50-100 lbs)
33011                                                                     based on weight (24-60 lbs)
33015                                                                        based on weight (30 lbs)
33023                                                                                 based on weight
33043                                                            272 ivermectin, 227 pyrantel pamoate
33047                                                                                        125, 875
33066                                                                     based on weight (40-85 lbs)
33068                                                                   based on weight (40.1-85 lbs)
33073                                                                                     unspecified
33078                                                                    based on weight (51-100 lbs)
33081                                                                    based on weight (51-100 lbs)
33085                                                                     based on weight (56-95 lbs)
33086                                                                    based on weight (51-100 lbs)
33087                                                                     based on weight (56-95 lbs)
33088                                                                    based on weight (51-100 lbs)
33089                                                                     based on weight (56-95 lbs)
33090                                                                    based on weight (50-100 lbs)
33091                                                                     based on weight (56-95 lbs)
33092                                                                    based on weight (50-100 lbs)
33096                                                                                     unspecified
33107                                                                    based on weight (51-100 lbs)
33110                                                                    based on weight (51-100 lbs)
33113                                                                    based on weight (51-100 lbs)
33124                                                                                    small amount
33126                                                                                    small amount
33128                                                                                     unspecified
33132                                                                    based on weight (60-120 lbs)
33133                                                                    based on weight (51-100 lbs)
33138                                                                    based on weight (51-100 lbs)
33157                                                                                     unspecified
33159                                                                                     unspecified
33166                                                                     based on weight (45-80 lbs)
33187                                                            272 ivermectin, 227 pyrantel pamoate
33190                                                             13.5 milbemycin oxime, 810 spinosad
33191                                                                                     unspecified
33209                                                                                                
33211                                                                    based on weight (51-100 lbs)
33220                                                                    based on weight (45-120 lbs)
33222                                                                    based on weight (51-100 lbs)
33226                                                                             tablet/pill/capsule
33227                                                                                  1 pack/package
33229                                                                     based on weight (56-95 lbs)
33230                                                                    based on weight (51-100 lbs)
33233                                                                                  1 pack/package
33235                                                                     based on weight (56-95 lbs)
33236                                                                                   1 bottle/vial
33239                                                                                  1 pack/package
33242                                                                    based on weight (51-100 lbs)
33271                                                                                     unspecified
33286                                                                                 based on weight
33289                                                                                 based on weight
33292                                                                             tablet/pill/capsule
33293                                                                                     bottle/vial
33318                                                              8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                        23 , 460
33335                                                                                        23 , 460
33336                                                                    based on weight (51-100 lbs)
33347                                                                                     unspecified
33354                                                                                                
33355                                                                                     bottle/vial
33358                                                                                     unspecified
33363                                                                    based on weight (51-100 lbs)
33364                                                                     based on weight (44-88 lbs)
33370                                                                                     unspecified
33374                                                                                     unspecified
33375                                                                                     unspecified
33376                                                                                     unspecified
33377                                                                                     unspecified
33385                                                                                     unspecified
33387                                                                                     unspecified
33389                                                                                     unspecified
33410                                                                    based on weight (51-100 lbs)
33411                                                                       based on weight (30+ lbs)
33412                                                                    based on weight (51-100 lbs)
33414                                                                       based on weight (18+ lbs)
33456                                                                                     unspecified
33468                                                                                     unspecified
33471                                                                                     unspecified
33479                                                                    based on weight (60-120 lbs)
33480                                                                    based on weight (50-100 lbs)
33482                                                                                     unspecified
33489                                                                                     unspecified
33490                                                                                         23, 460
33491                                                                                         23, 460
33492                                                                                         23, 460
33493                                                                                         23, 460
33499                                                                                     unspecified
33539                                                                                     unspecified
33541                                                                                          collar
33542                                                                                             6-8
33543                                                                                          collar
33544                                                                                          collar
33576                                                            272 ivermectin, 227 pyrantel pamoate
33580                                                                             tablet/pill/capsule
33581                                                                                                
33582                                                                  2 tablets/pills/capsules - 100
33583                                                                        3 tablets/pills/capsules
33590                                                                                     unspecified
33591                                                                    based on weight (51-100 lbs)
33592                                                                    based on weight (51-100 lbs)
33614                                                                                     unspecified
33644                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8
33649                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                       based on weight (25-50 lbs), based on weight (50-100 lbs)
33684                                                                                     unspecified
33690                                                            272 ivermectin, 227 pyrantel pamoate
33696                                                            272 ivermectin, 227 pyrantel pamoate
33702                                                                                     unspecified
33706                                                                                         23, 460
33714                                                                    based on weight (50-100 lbs)
33717                                                                                     as directed
33722                                                                                     application
33723                                                                    based on weight (50-100 lbs)
33724                                                                    based on weight (50-100 lbs)
33725                                                                     based on weight (44-88 lbs)
33737                                                                                     unspecified
33740                                                                    based on weight (60-120 lbs)
33756                                                                                             1-2
33767                                                                                         23, 228
33797                                                                       based on weight (55+ lbs)
33798                                                                    based on weight (51-100 lbs)
33804                                                                    based on weight (51-100 lbs)
33805                                                                       based on weight (55+ lbs)
33815                                                                                     unspecified
33824                                                            272 ivermectin, 227 pyrantel pamoate
33828                             1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                     unspecified
33868                                                                    based on weight (51-100 lbs)
33869                                                            272 ivermectin, 227 pyrantel pamoate
33870                                                                    based on weight (51-100 lbs)
33890                                                                                     unspecified
33894                                                                                    small amount
33901                                                                                     unspecified
33907                                                                                                
33911                                                                     based on weight (44-88 lbs)
33916                                                                                       injection
33919                                                                                    small amount
33927                                                                                   1 application
33939                                                                                    small amount
33940                                                                                    small amount
33991                                                                                    small amount
33994                                                                                     application
33998                                                                                    small amount
34003                                                                                     application
34005                                                                                     unspecified
34011                                                                                     unspecified
34012                                                                                     unspecified
34014                                                                                     unspecified
34016                                                                                     unspecified
34022                                                                                     unspecified
34024                                                                                     unspecified
34029                                                                                     unspecified
34030                                                                    based on weight (51-100 lbs)
34043                                                                    based on weight (50-100 lbs)
34046                                                                     based on weight (44-88 lbs)
34048                                                                    based on weight (51-100 lbs)
34049                                                                       based on weight (50+ lbs)
34051                                                                    based on weight (51-100 lbs)
34053                                                                    based on weight (51-100 lbs)
34054                                                                                 based on weight
34069                                                            272 ivermectin, 227 pyrantel pamoate
34073                                                                                             1-2
34074                                                                                        114, 136
34075                                                                                 0.22, 1.1, 0.01
34077                                                                    based on weight (51-100 lbs)
34087                                                                  based on weight (60.1-120 lbs)
34090                                                                                 moderate amount
34091                                                                    based on weight (51-100 lbs)
34093                                                                                        1 collar
34094                                                                                 moderate amount
34095                                                                  based on weight (60.1-120 lbs)
34096                                                                    based on weight (50-100 lbs)
34107                                                                     based on weight (45-88 lbs)
34108                                                                    based on weight (51-100 lbs)
34109                                                                                    pack/package
34111                                                                    based on weight (51-100 lbs)
34113                                                                                                
34125                                                                    based on weight (55-100 lbs)
34126                                                                    based on weight (51-100 lbs)
34128                                                                                             1-2
34132                                                                    based on weight (51-100 lbs)
34134                                                                    based on weight (51-100 lbs)
34135                                                                     based on weight (56-95 lbs)
34138                                                                                  1 pack/package
34140                                                    350 chondroitin sulfate, 900 glucosamine hcl
34147                                                                    based on weight (51-100 lbs)
34148                                                                    based on weight (60-121 lbs)
34152                                                                                    small amount
34155                                                                                     unspecified
34156                                                                                     unspecified
34157                                                                                     unspecified
34161                                                            272 ivermectin, 227 pyrantel pamoate
34227                                                                                     unspecified
34230                                                                                     unspecified
34231                                                                                     unspecified
34232                                                                                     unspecified
34233                                                                                     unspecified
34234                                                                                     unspecified
34235                                                                                     unspecified
34238                                                                                 based on weight
34239                                                                        based on weight (66 lbs)
34240                                                                                 based on weight
34241                                                                                 based on weight
34242                                                                    based on weight (50-100 lbs)
34243                                                                                 based on weight
34246                                                                        based on weight (70 lbs)
34247                                                                        based on weight (70 lbs)
34249                                                                        based on weight (50 lbs)
34254                                                                    based on weight (51-100 lbs)
34260                                                                                       62.5, 437
34262                                                                                         23, 460
34264                                                                                       62.5, 437
34267                                                                    based on weight (51-100 lbs)
34268                                                                    based on weight (51-100 lbs)
34269                                                                                     unspecified
34327                                                                                     unspecified
34332                                                            272 ivermectin, 227 pyrantel pamoate
34333                                                                                    small amount
34334                                                                                     unspecified
34336                                                                                    small amount
34340                                                                   based on weight (24.1-60 lbs)
34342                                                                                     unspecified
34343                                                                                     unspecified
34345                                                                     based on weight (45-88 lbs)
34359                                                                                 based on weight
34360                                                                                 based on weight
34361                                                                                 based on weight
34362                                                                                 based on weight
34367                                                                                    small amount
34374                                                                    based on weight (50-100 lbs)
34375                                                                    based on weight (88-123 lbs)
34378                                                                                     unspecified
34379                                                                                     unspecified
34388                                                                                    small amount
34401                                                                    based on weight (51-100 lbs)
34403                                                                     based on weight (24-60 lbs)
34409                                                                                     unspecified
34410                                                                                     unspecified
34418                                                                    based on weight (51-100 lbs)
34419                                                                    based on weight (51-100 lbs)
34430                                                                                 based on weight
34434                                                                     based on weight (44-88 lbs)
34436                                                                                         1 scoop
34467                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
34474                                                                    based on weight (50-100 lbs)
34493                                                                                   0.5293, 5, 23
34513                                                                     based on weight (45-88 lbs)
34536                                                                                     unspecified
34545                                                                                     unspecified
34548                                                                                     unspecified
34579                                                                                     unspecified
34583                                                                    based on weight (51-100 lbs)
34584                                                                    based on weight (51-100 lbs)
34587                                                                                                
34588                                                                                    small amount
34593                                                                    based on weight (51-100 lbs)
34606                                                                                     unspecified
34608                                                                                        tapering
34609                                                                                    small amount
34617                                                                                   1 bottle/vial
34624                                                                                     unspecified
34629                                                                     based on weight (40-60 lbs)
34630                                                                                     as directed
34635                                                                                     application
34636                                                                     based on weight (41-60 lbs)
34637                                                                                        tapering
34638                                                                                      1 wipe/pad
34640                                                                     based on weight (41-60 lbs)
34642                                                                    based on weight (60-120 lbs)
34648                                                                    based on weight (50-100 lbs)
34669                                                                    based on weight (51-100 lbs)
34672                                                                                     application
34673                                                                                     application
34674                                                                                     application
34675                                                                                                
34676                                                           23 milbemycin oxime, 228 praziquantel
34677                                                                                     unspecified
34678                                                                                     unspecified
34680                                                                                     unspecified
34697                                                                  based on weight (60.1-120 lbs)
34704                                                                                 based on weight
34705                                                              27 milbemycin oxime, 1620 spinosad
34708                                                                        2 tablets/pills/capsules
34709                                                                        2 tablets/pills/capsules
34710                                                                                     unspecified
34727                                                                                     unspecified
34728                                                                                     unspecified
34729                                                                                     unspecified
34730                                                                    based on weight (51-100 lbs)
34733                                                                    based on weight (51-100 lbs)
34734                                                                     based on weight (44-88 lbs)
34741                                                                                    small amount
34744                                                                                    small amount
34747                                                                     based on weight (44-88 lbs)
34750                                                            272 ivermectin, 227 pyrantel pamoate
34763                                                                    based on weight (51-100 lbs)
34764                                                                  based on weight (60.1-120 lbs)
34766                                                            272 ivermectin, 227 pyrantel pamoate
34787                                                                                     unspecified
34788                                                                                    small amount
34789                                                            272 ivermectin, 227 pyrantel pamoate
34791                                                                    based on weight (50-100 lbs)
34797                                                                                     unspecified
34798                                                                                     unspecified
34799                                                                    based on weight (50-100 lbs)
34811                                                                       based on weight (60+ lbs)
34813                                                                             tablet/pill/capsule
34828                                                                   based on weight (40.1-60 lbs)
34832                                                                                        27, 1610
34833                                                                    based on weight (51-100 lbs)
34845                                                                             tablet/pill/capsule
34887                                                                                 based on weight
34888                                                                                     unspecified
34890                                                                               1 syringe/pipette
34891                                                                                 based on weight
34892                                                                     based on weight (44-88 lbs)
34900                                                                    based on weight (50-100 lbs)
34901                                                                     based on weight (44-88 lbs)
34902                                                                based on weight (70-80 lbs) - 80
34903                                                                                    small amount
34904                                                                                 based on weight
34905                                                                  based on weight (50.1-100 lbs)
34906                                                                   based on weight (44.1-88 lbs)
34907                                                                                    small amount
34908                                                                                 based on weight
34917                                                                                     unspecified
34918                                                                                     unspecified
34920                                                                  based on weight (50.1-100 lbs)
34922                                                                                         23, 228
34923                                                                      1 tablet/pill/capsule - 23
34924                                                                    1 tablet/pill/capsule - 1000
34953                                                                                     unspecified
34955                                                                                     unspecified
34956                                                                                     unspecified
34966                                                                    based on weight (51-100 lbs)
34979                                                                     based on weight (44-88 lbs)
34981                                                                  based on weight (50.1-100 lbs)
34982                                                                  based on weight (50.1-100 lbs)
34983                                                                    based on weight (51-100 lbs)
34991                                                                    based on weight (51-100 lbs)
34992                                                                    based on weight (51-100 lbs)
34996                                                                    based on weight (51-100 lbs)
35002                                                                       based on weight (55+ lbs)
35004                                                                    based on weight (51-100 lbs)
35014                                                                    based on weight (51-100 lbs)
35025                                                                    based on weight (50-100 lbs)
35027                                                                                        2.5 cups
35034                                                                                         23, 228
35049                                                                                        ointment
35069                                                                    based on weight (51-100 lbs)
35074                                                                                     unspecified
35094                                                                    based on weight (51-100 lbs)
35103                                                                                 based on weight
35109                                                                                     unspecified
35110                                                                    based on weight (50-100 lbs)
35125                                                                    based on weight (60-121 lbs)
35132                                                                    based on weight (88-123 lbs)
35134                                                                                    small amount
35143                                                                    based on weight (51-100 lbs)
35144                                                                                    small amount
35145                                                                    based on weight (51-100 lbs)
35146                                                                     based on weight (40-60 lbs)
35147                                                                    based on weight (51-100 lbs)
35148                                                                                     unspecified
35149                                                                     based on weight (25-50 lbs)
35150                                                                     based on weight (40-60 lbs)
35152                                                                                 based on weight
35153                                                                                 based on weight
35154                                                                    based on weight (51-100 lbs)
35160                                                                                     unspecified
35176                                                                                          1, 2.5
35181                                                                    based on weight (51-100 lbs)
35182                                                                    based on weight (51-100 lbs)
35183                                                                                     unspecified
35189                                                                    based on weight (51-100 lbs)
35203                                                                    based on weight (51-100 lbs)
35204                                                                    based on weight (51-100 lbs)
35205                                                                                    small amount
35207                                                            272 ivermectin, 227 pyrantel pamoate
35212                                                                    based on weight (51-100 lbs)
35214                                                                    based on weight (51-100 lbs)
35232                                                                                     unspecified
35245                                                                                                
35252                                                                                     unspecified
35262                                                            272 ivermectin, 227 pyrantel pamoate
35264                                                            272 ivermectin, 227 pyrantel pamoate
35278                                                                    based on weight (50-100 lbs)
35279                                                                    based on weight (60-120 lbs)
35283                                                                    based on weight (51-100 lbs)
35284                                                                  based on weight (60.1-121 lbs)
35291                                                                    based on weight (51-100 lbs)
35299                                                                     based on weight (45-88 lbs)
35300                                                                    based on weight (51-100 lbs)
35314                                                                                    small amount
35315                                                                                        23 , 228
35354                                                                                         23, 460
35388                                                                                                
35393                                                                                     unspecified
35399                                                                    based on weight (51-100 lbs)
35400                                                                                     unspecified
35401                                                                                     unspecified
35404                                                                                     unspecified
35405                                                                                     unspecified
35406                                                                                     unspecified
35414                                                                                         23, 460
35417                                                                                        4.5, 270
35420                                                                    based on weight (51-100 lbs)
35421                                                                     based on weight (44-88 lbs)
35422                                                                    based on weight (51-100 lbs)
35423                                                                    based on weight (51-100 lbs)
35424                                                                    based on weight (88-123 lbs)
35425                                                                                         23, 460
35432                                                              460 lufenuron, 23 milbemycin oxime
35434                                                                                     unspecified
35443                                                                                     unspecified
35450                                                                                     unspecified
35453                                                                                     unspecified
35454                                                                                     unspecified
35495                                                                                 based on weight
35496                                                                    based on weight (51-100 lbs)
35497                                                            272 ivermectin, 227 pyrantel pamoate
35499                                                                                  1 pack/package
35501                                                            272 ivermectin, 227 pyrantel pamoate
35504                                                                                    pack/package
35506                                                                                    small amount
35509                                                                                     unspecified
35513                                                                                     unspecified
35525                                                                     based on weight (41-88 lbs)
35526                                                                    based on weight (51-100 lbs)
35528                                                                                         23, 228
35539                                                                                         23, 228
35560                                                                    based on weight (51-100 lbs)
35561                                                                     based on weight (24-60 lbs)
35565                                                                    based on weight (51-100 lbs)
35566                                                                  based on weight (60.1-121 lbs)
35569                                                                    based on weight (51-100 lbs)
35571                                                                    based on weight (51-100 lbs)
35572                                                                       based on weight (55+ lbs)
35573                                                                        based on weight (45 lbs)
35574                                                                         0.5 tablet/pill/capsule
35575                                                                    based on weight (51-100 lbs)
35576                                                                    based on weight (51-100 lbs)
35577                                                                     based on weight (44-88 lbs)
35578                                                                     based on weight (44-88 lbs)
35579                                                                    based on weight (51-100 lbs)
35580                                                                                          varies
35581                                                                                          varies
35582                                                                                          varies
35593                                                                    based on weight (51-100 lbs)
35598                                                                    based on weight (51-100 lbs)
35605                                                                                     unspecified
35620                                                                     based on weight (45-88 lbs)
35621                                                                    based on weight (89-132 lbs)
35624                                                                    based on weight (89-132 lbs)
35626                                                                                    small amount
35628                                                                                 based on weight
35633                                                                                     unspecified
35639                                                                                 based on weight
35641                                                                    based on weight (60-121 lbs)
35642                                                                                     application
35645                                                                                                
35656                                                                                     application
35659                                                                                         23, 228
35662                                                                                     unspecified
35664                                                                    based on weight (50-100 lbs)
35665                                                                     based on weight (44-88 lbs)
35668                                                                                     unspecified
35673                                                                                     unspecified
35674                                                                                     unspecified
35696                                                                                    pack/package
35697                                                                       based on weight (60+ lbs)
35699                                                                  based on weight (60.1-121 lbs)
35721                                                                     based on weight (45-88 lbs)
35722                                                                                     unspecified
35725                                                            272 ivermectin, 227 pyrantel pamoate
35727                                                            272 ivermectin, 227 pyrantel pamoate
35740                                                                                     application
35743                                                                                     unspecified
35748                                                            272 ivermectin, 227 pyrantel pamoate
35756                                                                    based on weight (51-100 lbs)
35757                                                                    based on weight (51-100 lbs)
35758                                                                  based on weight (60.1-121 lbs)
35762                                                                                     unspecified
35768                                                                       based on weight (55+ lbs)
35770                                                                     based on weight (21-55 lbs)
35771                                                                    based on weight (51-100 lbs)
35772                                                                                     unspecified
35773                                                                     based on weight (21-55 lbs)
35774                                                                    based on weight (50-100 lbs)
35775                                                                    based on weight (51-100 lbs)
35777                                                                     based on weight (20-55 lbs)
35778                                                                     based on weight (25-50 lbs)
35786                                                                                     application
35791                                                              based on weight (44-88 lbs) - 2.68
35792                                                              based on weight (50-100 lbs) - 227
35793                                                                    based on weight (50-100 lbs)
35808                                                                                     unspecified
35809                                                                                     unspecified
35810                                                                                     unspecified
35812                                                                    based on weight (60-120 lbs)
35821                                                                                          1 dose
35831                                                           23 milbemycin oxime, 228 praziquantel
35835                                                           23 milbemycin oxime, 228 praziquantel
35855                                                                    based on weight (50-100 lbs)
35859                                                                        3 tablets/pills/capsules
35903                                                                                   5 minute soak
35908                                                                    based on weight (50-100 lbs)
35954                                                                    based on weight (51-100 lbs)
35955                                                                    based on weight (51-100 lbs)
35963                                                                                    small amount
35965                                                                                    small amount
35969                                                                                    small amount
35973                                                                    based on weight (60-120 lbs)
35982                                                                    based on weight (51-100 lbs)
35983                                                                  based on weight (60.1-121 lbs)
36019                                                                   based on weight (24.1-60 lbs)
36021                                                                  based on weight (60.1-121 lbs)
36023                                                                                    small amount
36030                                                                                     unspecified
36042                                                                                     unspecified
36043                                                              27 milbemycin oxime, 1620 spinosad
36044                                                                    based on weight (60-120 lbs)
36065                                                                    based on weight (51-100 lbs)
36069                                                                    based on weight (51-100 lbs)
36078                                                                                    small amount
36081                                                                                    small amount
36082                                                                                        68 , 272
36084                                                                                     unspecified
36108                                                           23 milbemycin oxime, 228 praziquantel
36110                                                            13. 5 milbemycin oxime, 810 spinosad
36112                                                                                     unspecified
36113                                                                                     unspecified
36115                                                                                     unspecified
36134                                                                                     unspecified
36137                                                                                     unspecified
36144                                                                     based on weight (45-88 lbs)
36145                                                                    based on weight (51-100 lbs)
36150                                                                    based on weight (51-100 lbs)
36153                                                                                    small amount
36156                                                                    based on weight (51-100 lbs)
36159                                                                    based on weight (60-121 lbs)
36171                                                                                     unspecified
36191                                                                    based on weight (50-100 lbs)
36192                                                                     based on weight (44-88 lbs)
36200                                                                                     unspecified
36201                                                                                     unspecified
36202                                                                                                
36203                                                                                     unspecified
36205                                                                                     unspecified
36218                                                                    based on weight (50-100 lbs)
36220                                                                    based on weight (51-100 lbs)
36221                                                                                 based on weight
36222                                                                                    small amount
36223                                                                                  1 pack/package
36225                                                                    based on weight (51-100 lbs)
36227                                                                                 based on weight
36228                                                                                 based on weight
36229                                                                    based on weight (51-100 lbs)
36231                                                                                   1 bottle/vial
36232                                                                                 based on weight
36233                                                                                 based on weight
36235                                                                                    small amount
36237                                                                                     unspecified
36238                                                                                     unspecified
36240                                                                                         23, 228
36254                                                                                     unspecified
36256                                                                                     unspecified
36264                                                                  based on weight (50.1-100 lbs)
36268                                                                                     unspecified
36271                                                              27 milbemycin oxime, 1620 spinosad
36272                                                             13.5 milbemycin oxime, 810 spinosad
36273                                                                     based on weight (40-60 lbs)
36275                                                                    based on weight (80-135 lbs)
36276                                                                                     as directed
36280                                                                    based on weight (85-130 lbs)
36283                                                                                 based on weight
36288                                                                                 based on weight
36293                                                                                     as directed
36294                                                                                     as directed
36295                                                                                     as directed
36296                                                                                 based on weight
36297                                                                                 based on weight
36298                                                                                 based on weight
36299                                                                                 based on weight
36300                                                                                 based on weight
36301                                                                                 based on weight
36302                                                                                 based on weight
36303                                                                                 based on weight
36304                                                                                 based on weight
36305                                                                                 based on weight
36306                                                                                     unspecified
36307                                                                                     unspecified
36308                                                                                     unspecified
36309                                                                                     unspecified
36310                                                                                     unspecified
36311                                                                                     unspecified
36322                                                                                     as directed
36323                                                                                     as directed
36324                                                                                          varies
36325                                                                                 based on weight
36326                                                                                 based on weight
36327                                                                                 based on weight
36328                                                                                 based on weight
36329                                                                                 based on weight
36330                                                                                 based on weight
36331                                                                                 based on weight
36332                                                                                 based on weight
36333                                                                                 based on weight
36334                                                                                 based on weight
36335                                                                                     unspecified
36336                                                                                     unspecified
36337                                                                                     unspecified
36338                                                                                     unspecified
36339                                                                                     unspecified
36340                                                                                     unspecified
36358                                                                                     as directed
36359                                                                                          varies
36360                                                                                          varies
36361                                                                                 based on weight
36362                                                                                 based on weight
36363                                                                                 based on weight
36364                                                                                 based on weight
36365                                                                                 based on weight
36366                                                                                 based on weight
36367                                                                                 based on weight
36368                                                                                 based on weight
36369                                                                                 based on weight
36370                                                                                 based on weight
36371                                                                                     unspecified
36372                                                                                     unspecified
36373                                                                                     unspecified
36374                                                                                     unspecified
36377                                                                                     as directed
36378                                                                                     as directed
36379                                                                                          varies
36380                                                                                 based on weight
36381                                                                                 based on weight
36382                                                                                 based on weight
36383                                                                                 based on weight
36384                                                                                 based on weight
36385                                                                                 based on weight
36398                                                                                 based on weight
36399                                                                                 based on weight
36403                                                                                 based on weight
36404                                                                                 based on weight
36405                                                                    based on weight (51-100 lbs)
36406                                                                                 based on weight
36410                                                                                     unspecified
36427                                                                       based on weight (55+ lbs)
36429                                                                                 based on weight
36430                                                                                     as directed
36438                                                                                     as directed
36439                                                                    based on weight (51-100 lbs)
36440                                                                       based on weight (40+ lbs)
36443                                                                                 based on weight
36444                                                                                 based on weight
36448                                                                                     as directed
36451                                                                                     unspecified
36464                                                                                     as directed
36474                                                                                     unspecified
36491                                                            272 ivermectin, 227 pyrantel pamoate
36497                                                            272 ivermectin, 227 pyrantel pamoate
36513                                                                                     unspecified
36533                                                                                    small amount
36535                                                                                        wipe/pad
36559                                                                    based on weight (51-100 lbs)
36560                                                                     based on weight (45-88 lbs)
36562                                                                    based on weight (51-100 lbs)
36568                                                                    based on weight (51-100 lbs)
36571                                                                                 0.25 inch strip
36574                                                                                     unspecified
36595                                                                    based on weight (50-100 lbs)
36600                                                                                    small amount
36601                                                                    based on weight (50-100 lbs)
36602                                                                                     unspecified
36605                                                                    based on weight (50-100 lbs)
36607                                                                    based on weight (50-100 lbs)
36608                                                                    based on weight (50-100 lbs)
36616                                                                    based on weight (50-100 lbs)
36624                                                                                     application
36626                                                                                    small amount
36630                                                                    based on weight (50-100 lbs)
36632                                                                    based on weight (50-100 lbs)
36635                                                                    based on weight (50-100 lbs)
36657                                                            27mg milbemycin oxime, 1620 spinosad
36670                                                                       based on weight (<60 lbs)
36698                                                                    based on weight (51-100 lbs)
36699                                                                    based on weight (51-100 lbs)
36705                                                                                     0.284, 0.57
36708                                                            272 ivermectin, 227 pyrantel pamoate
36709                                                                                     unspecified
36735                                                                                     unspecified
36751                                                                    based on weight (51-100 lbs)
36752                                                                     based on weight (45-88 lbs)
36753                                                                        based on weight (75 lbs)
36772                                                                                     application
36816                                                                                        1.5 cups
36817                                                                    based on weight (51-100 lbs)
36818                                                                                     application
36819                                                                                     application
36824                                                                    based on weight (51-100 lbs)
36833                                        based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                 0.25 inch strip
36835                                                                                        wipe/pad
36840                                                                    based on weight (51-100 lbs)
36842                                                                                    small amount
36846                                                                    based on weight (51-100 lbs)
36847                                                                       based on weight (50+ lbs)
36848                                                                                 based on weight
36849                                                                    based on weight (60-120 lbs)
36850                                                                    based on weight (51-100 lbs)
36851                                                                                    small amount
36853                                                                                     unspecified
36855                                                                                     unspecified
36859                                                                                     unspecified
36875                                                                 2.5 tablets/pills/capsules - 10
36876                                                                 1.5 tablets/pills/capsules - 50
36877                                                                                        0.5, 227
36878                                                                     based on weight (56-95 lbs)
36880                                                                 2.5 tablets/pills/capsules - 10
36881                                                                    based on weight (51-100 lbs)
36882                                                                  2 tablets/pills/capsules - 150
36883                                                                  based on weight (60.1-121 lbs)
36892                                                                                    small amount
36893                                                                  based on weight (60.1-121 lbs)
36894                                                                    based on weight (51-100 lbs)
36900                                                                    based on weight (51-100 lbs)
36901                                                                  based on weight (60.1-121 lbs)
36911                                                                    based on weight (51-100 lbs)
36919                                                                                         23, 460
36920                                                                     based on weight (45-88 lbs)
36921                                                                                     application
36925                                                                                         23, 460
36945                                                                                    small amount
36969                                                                    based on weight (51-100 lbs)
36970                                                                     based on weight (56-95 lbs)
36982                                                                     based on weight (21-55 lbs)
36983                                                                    based on weight (51-100 lbs)
36984                                                                        based on weight (60 lbs)
36985                                                                    based on weight (51-100 lbs)
36994                                                                                     unspecified
37007                                                                                         23, 460
37015                                                                    based on weight (50-100 lbs)
37017                                                     2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                    based on weight (50-100 lbs)
37019                                                                     based on weight (45-88 lbs)
37020                                                                                0.125 inch strip
37021                                                                    based on weight (50-100 lbs)
37036                                                                                     application
37038                                                                                       125 , 500
37046                                                                                     unspecified
37054                                                                    based on weight (50-100 lbs)
37055                                                                    based on weight (51-100 lbs)
37056                                                                                     unspecified
37057                                                            136 ivermectin, 114 pyrantel pamoate
37061                                                                       based on weight (18+ lbs)
37063                                                               4.5% flumethrin, 10% imidacloprid
37069                                                            272 ivermectin, 227 pyrantel pamoate
37070                                                                                     unspecified
37071                                                                                     unspecified
37073                                                                                    small amount
37074                                                                                        23 , 460
37075                                                                                    small amount
37077                                                                       based on weight (55+ lbs)
37078                                                                    based on weight (51-100 lbs)
37087                                                                    based on weight (51-100 lbs)
37088                                                                    based on weight (51-100 lbs)
37098                                                                       based on weight (55+ lbs)
37099                                                                    based on weight (51-100 lbs)
37104                                                                                             1-2
37116                                                                                 based on weight
37117                                                                                     unspecified
37135                                                                                 moderate amount
37157                                                                                     unspecified
37164                                                                                    small amount
37165                                                                    based on weight (50-100 lbs)
37168                                                                                     application
37169                                                                                     application
37193                                                                    based on weight (51-100 lbs)
37194                                                                                          collar
37195                                                                     based on weight (26-50 lbs)
37197                                                                       based on weight (60+ lbs)
37200                                                                    based on weight (51-100 lbs)
37201                                                                    based on weight (60-121 lbs)
37202                                                                       based on weight (60+ lbs)
37219                                                                                     unspecified
37221                                                                                     unspecified
37259                                                                             tablet/pill/capsule
37260                                                                                                
37262                                                                       based on weight (55+ lbs)
37266                                                                    based on weight (50-100 lbs)
37267                                                                     based on weight (55-95 lbs)
37270                                                                     based on weight (56-95 lbs)
37271                                                                       based on weight (55+ lbs)
37272                                                                        3 tablets/pills/capsules
37277                                                                                     unspecified
37278                                                                                     unspecified
37279                                                                                     unspecified
37302                                                            272 ivermectin, 227 pyrantel pamoate
37303                                                                                    small amount
37309                                                                                    small amount
37316                                                                    based on weight (50-100 lbs)
37325                                                                                     application
37326                                                                                     unspecified
37332                                                                                     unspecified
37337                                                                                     unspecified
37344                                                                                     unspecified
37349                                                                    based on weight (51-100 lbs)
37359                                                                                         23, 228
37373                                                                    based on weight (51-100 lbs)
37374                                                                  based on weight (60.1-121 lbs)
37375                                                                    based on weight (51-100 lbs)
37376                                                                  based on weight (60.1-120 lbs)
37385                                                                    based on weight (51-100 lbs)
37386                                                                  based on weight (60.1-121 lbs)
37387                                                                                 based on weight
37392                                                                                     unspecified
37396                                                                                     unspecified
37397                                                                     based on weight (44-88 lbs)
37434                                                                                     unspecified
37435                                                                                     unspecified
37439                                                                    based on weight (51-100 lbs)
37446                                                                    based on weight (51-100 lbs)
37449                                                                                 moderate amount
37451                                                                                     application
37454                                                                                 moderate amount
37457                                                                                     as directed
37463                                                                                     unspecified
37464                                                                                                
37465                                                                                                
37467                                                                                 moderate amount
37477                                                                                 moderate amount
37478                                                                                 moderate amount
37485                                                                    based on weight (51-100 lbs)
37491                                                                                                
37493                                                                    based on weight (51-100 lbs)
37495                                                                                                
37510                                                                                     unspecified
37526                                                                                         100-200
37527                                                                                 0.25 inch strip
37533                                                                                    small amount
37536                                                                           1:10 part water ratio
37540                                                                    based on weight (51-100 lbs)
37545                                                                    based on weight (51-100 lbs)
37546                                                                     based on weight (44-88 lbs)
37547                                                                    based on weight (60-120 lbs)
37552                                                                    based on weight (51-100 lbs)
37568                                                                                         23, 460
37569                                                                       based on weight (55+ lbs)
37571                                                                                         23, 460
37576                                                                                    small amount
37577                                                                                         23, 460
37578                                                                                     0.135 fl oz
37579                                                                                     unspecified
37580                                                                                     unspecified
37584                                                                                     unspecified
37585                                                                                     unspecified
37586                                                                                     unspecified
37597                                                                                     unspecified
37598                                                                                     unspecified
37601                                                                    based on weight (51-100 lbs)
37602                                                                    based on weight (60-121 lbs)
37603                                                                    based on weight (60-121 lbs)
37608                                                                                     unspecified
37624                                                                    based on weight (50-100 lbs)
37627                                                                                 based on weight
37628                                                                                 based on weight
37629                                                                    based on weight (50-100 lbs)
37630                                                                    based on weight (50-100 lbs)
37639                                                                                     unspecified
37648                                                                     based on weight (56-95 lbs)
37651                                                                                          collar
37655                                                                                          collar
37657                                                                                          collar
37662                                                                                 based on weight
37664                                                                                 based on weight
37669                                                                                     unspecified
37670                                                                                     unspecified
37675                                                                                     unspecified
37691                                                                                     application
37696                                                                                 1.11, 1.5, 15.1
37697                                                                         0.5 tablet/pill/capsule
37698                                                                        2 tablets/pills/capsules
37704                                                                    based on weight (51-100 lbs)
37705                                                                                 based on weight
37709                                                                        2 tablets/pills/capsules
37710                                                                             tablet/pill/capsule
37712                                                                                     unspecified
37713                                                                                     unspecified
37714                                                                                     unspecified
37717                                                                                     unspecified
37718                                                                                     unspecified
37731                                                                    based on weight (51-100 lbs)
37738                                                                    based on weight (51-100 lbs)
37739                                                                    based on weight (51-100 lbs)
37740                                                                    based on weight (89-132 lbs)
37742                                                                    based on weight (51-100 lbs)
37771                                                                                                
37785                                                                    based on weight (60-121 lbs)
37786                                                                    based on weight (50-100 lbs)
37797                                                                    based on weight (50-100 lbs)
37798                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
37805                                                                     based on weight (26-50 lbs)
37806                                                                    based on weight (60-120 lbs)
37809                                                                                        inhalant
37816                                                                                     unspecified
37817                                                                                     unspecified
37820                                                                                     unspecified
37821                                                                                     unspecified
37822                                                                                     unspecified
37834                                                                                 based on weight
37835                                                                                 based on weight
37837                                                                                 based on weight
37838                                                                    based on weight (50-100 lbs)
37839                                                                     based on weight (44-88 lbs)
37845                                                                                 based on weight
37846                                                                                 based on weight
37847                                                                                 based on weight
37848                                                                                 based on weight
37849                                                                    based on weight (50-100 lbs)
37850                                                                     based on weight (44-88 lbs)
37851                                                                     based on weight (44-88 lbs)
37852                                                                       based on weight (50+ lbs)
37855                                                                    based on weight (51-100 lbs)
37858                                                                    based on weight (51-100 lbs)
37865                                                                      based on weight (0-22 lbs)
37885                                                                                 based on weight
37894                                                                                 based on weight
37895                                                                     based on weight (44-88 lbs)
37907                                                              27 milbemycin oxime, 1620 spinosad
37916                                                                    based on weight (60-120 lbs)
37920                                                                                 based on weight
37929                                                                                             3-5
37930                                                                                     application
37935                                                                                     application
37937                                                                                             3-5
37942                                                                                    small amount
37944                                                                                     1000 to 250
37976                                                                    based on weight (51-100 lbs)
37977                                                                     based on weight (45-88 lbs)
37978                                                                    based on weight (51-100 lbs)
37979                                                                                     unspecified
37980                                                                                     unspecified
37984                                                                    based on weight (51-100 lbs)
37989                                                                    based on weight (51-100 lbs)
37990                                                                                    small amount
37992                                                                    based on weight (51-100 lbs)
37993                                                                     based on weight (44-88 lbs)
38018                                                                                       13.5, 810
38036                                                                    based on weight (51-100 lbs)
38041                                                                                 based on weight
38046                                                                    based on weight (50-100 lbs)
38048                                                                                       62.5, 375
38050                                                                                  12.5-25, 25-50
38051                                                                    based on weight (51-100 lbs)
38052                                                                                     unspecified
38056                                                                                     unspecified
38070                                                                    based on weight (51-100 lbs)
38071                                                                       based on weight (55+ lbs)
38072                                                                                     unspecified
38074                                                                                     unspecified
38075                                                                                     unspecified
38102                                                                                           5, 50
38123                                                                    based on weight (51-100 lbs)
38126                                                                    based on weight (51-100 lbs)
38132                                                                                     unspecified
38134                                                                                     unspecified
38135                                                                                     unspecified
38136                                                                                     unspecified
38141                                                                  based on weight (51.1-100 lbs)
38142                                                                   based on weight (24.1-60 lbs)
38151                                                                   based on weight (24.1-60 lbs)
38156                                                                   based on weight (24.1-60 lbs)
38165                                                                    based on weight (51-100 lbs)
38166                                                                    based on weight (60-120 lbs)
38177                                                                                     unspecified
38179                                                                                     unspecified
38181                                                                                     unspecified
38182                                                                                     unspecified
38184                                                                                     unspecified
38185                                                                                     unspecified
38193                                                                     based on weight (44-88 lbs)
38204                                                                                           scoop
38211                                                                                    small amount
38217                                                                    based on weight (50-100 lbs)
38219                                                                                270 dha, 425 epa
38240                                                                     based on weight (22-55 lbs)
38256                                                                    based on weight (50-100 lbs)
38257                                                           23 milbemycin oxime, 228 praziquantel
38259                                                           23 milbemycin oxime, 228 praziquantel
38262                                                                      based on weight (60.1 lbs)
38268                                                                                     unspecified
38273                                                                                 moderate amount
38284                                                            272 ivermectin, 227 pyrantel pamoate
38287                                                                                     as directed
38288                                                                    based on weight (50-100 lbs)
38289                                                                     based on weight (44-88 lbs)
38293                                                                                         23, 460
38294                                                                                             3-4
38301                                                                       based on weight (55+ lbs)
38305                                                                       based on weight (55+ lbs)
38306                                                                    based on weight (51-100 lbs)
38324                                                                                     unspecified
38326                                                                                     unspecified
38330                                                                    based on weight (51-100 lbs)
38339                                                                     based on weight (44-88 lbs)
38342                                                                    based on weight (51-100 lbs)
38351                                                                    based on weight (88-132 lbs)
38352                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                    based on weight (51-100 lbs)
38361                                                                                 0.25 inch strip
38365                                                                                     unspecified
38366                                                                                     unspecified
38367                                                                                     unspecified
38369                                                                                 based on weight
38372                                                                                                
38373                                                                                     unspecified
38377                                                                                     unspecified
38378                                                                                     unspecified
38386                                                                                     unspecified
38387                                                                                     unspecified
38388                                                                                     unspecified
38396                                                                    based on weight (50-100 lbs)
38397                                                                    based on weight (60-121 lbs)
38399                                                                    based on weight (51-100 lbs)
38406                                                                                     unspecified
38420                                                                    based on weight (51-100 lbs)
38422                                                                    based on weight (51-100 lbs)
38423                                                                    based on weight (51-100 lbs)
38427                                                                                     unspecified
38431                                                                                    small amount
38436                                                                                     as directed
38438                                                                    based on weight (50-100 lbs)
38439                                                                    based on weight (88-123 lbs)
38442                                                                                    small amount
38461                                                                                 based on weight
38462                                                                                 based on weight
38464                                                                    based on weight (50-100 lbs)
38465                                                                     based on weight (56-95 lbs)
38466                                                                    based on weight (88-132 lbs)
38470                                                                        based on weight (92 lbs)
38471                                                                        based on weight (92 lbs)
38472                                                                  based on weight (50.1-100 lbs)
38473                                                                  based on weight (88.1-132 lbs)
38499                                                                                         10, 100
38504                                                                                 based on weight
38505                                                                                 based on weight
38507                                                                    based on weight (50-100 lbs)
38508                                                                     based on weight (56-95 lbs)
38509                                                                        based on weight (86 lbs)
38510                                                                        based on weight (86 lbs)
38511                                                                  based on weight (50.1-100 lbs)
38512                                                                  based on weight (88.1-132 lbs)
38522                                                                                     unspecified
38527                                                                    based on weight (50-100 lbs)
38528                                                                     based on weight (45-88 lbs)
38529                                                                                     bottle/vial
38531                                                                                     bottle/vial
38533                                                                                     unspecified
38534                                                                        2 tablets/pills/capsules
38536                                                                                     as directed
38544                                                                                     unspecified
38550                                                                                     unspecified
38551                                                                                     unspecified
38557                                                                                     unspecified
38567                                                                    based on weight (50-100 lbs)
38568                                                                    based on weight (50-100 lbs)
38569                                                                                 based on weight
38570                                                                                     unspecified
38588                                                                                 moderate amount
38602                                                                    based on weight (51-100 lbs)
38605                                                                                    small amount
38606                                                                                         23, 460
38607                                                                                            bath
38610                                                                    based on weight (51-100 lbs)
38611                                                                                             1-2
38618                                                                                 moderate amount
38626                                                                    based on weight (51-100 lbs)
38630                                                                                     unspecified
38636                                                                    based on weight (51-100 lbs)
38637                                                                     based on weight (44-88 lbs)
38643                                                                    based on weight (51-100 lbs)
38647                                                                                            2, 4
38655                                                                                     unspecified
38656                                                                     based on weight (44-88 lbs)
38665                                                                                       100, 1000
38691                                                                                     unspecified
38722                                                                                    small amount
38723                                                                                        wipe/pad
38754                                                                                     unspecified
38772                                                                                    small amount
38775                                                                                    small amount
38779                                                                     based on weight (44-88 lbs)
38780                                                                                     unspecified
38787                                                                                     unspecified
38789                                                                                     unspecified
38796                                                                                     unspecified
38802                                                                                     unspecified
38809                                                                                     unspecified
38816                                                                                  1 pack/package
38820                                                                    based on weight (51-100 lbs)
38821                                                                     based on weight (44-88 lbs)
38828                                                                                     unspecified
38839                                                                                     unspecified
38841                                                                                     unspecified
38843                                                                                     unspecified
38845                                                                                     unspecified
38847                                                                                     unspecified
38850                                                                                     unspecified
38851                                                                                     unspecified
38854                                                                                     unspecified
38855                                                                                     unspecified
38861                                                                                     unspecified
38864                                                                                     unspecified
38865                                                                                     unspecified
38868                                                                                     unspecified
38871                                                                                     unspecified
38890                                                                    based on weight (51-100 lbs)
38891                                                                     based on weight (24-60 lbs)
38892                                                                    based on weight (51-100 lbs)
38896                                                                    based on weight (51-100 lbs)
38902                                                                                 based on weight
38924                                                                                         10, 100
38925                                                                     based on weight (21-55 lbs)
38926                                                                    based on weight (50-100 lbs)
38930                                                                    based on weight (50-100 lbs)
38931                                                                       based on weight (18+ lbs)
38940                                                                  based on weight (60.1-121 lbs)
38941                                                                  based on weight (60.1-121 lbs)
38945                                                                       based on weight (60+ lbs)
38946                                                                  based on weight (50.1-100 lbs)
38950                                                                  based on weight (50.1-100 lbs)
38951                                                                  based on weight (60.1-121 lbs)
38952                                                                                 based on weight
38956                                                                                        wipe/pad
38963                                                                  based on weight (50.1-100 lbs)
38964                                                                   based on weight (44.1-88 lbs)
38970                                                                                     unspecified
38971                                                                                     unspecified
38974                                                                                     unspecified
38976                                                                                     unspecified
38997                                                                                     unspecified
39004                                                                     based on weight (41-88 lbs)
39005                                                                    based on weight (51-100 lbs)
39006                                                                                             5-7
39035                                                                                     unspecified
39083                                                                                    23, 228, 460
39099                                                                    based on weight (51-100 lbs)
39117                                                                                        27, 1620
39120                                                            272 ivermectin, 227 pyrantel pamoate
39121                                                                    based on weight (51-100 lbs)
39122                                                                       based on weight (55+ lbs)
39123                                                                    based on weight (51-100 lbs)
39125                                                                                          1.25 l
39127                                                                                     unspecified
39128                                                                                     unspecified
39158                                                                                         23, 228
39165                                                                                     unspecified
39167                                                                                     unspecified
39171                                                                                            8 oz
39176                                                                    based on weight (51-100 lbs)
39181                                                                                            bath
39182                                                                                                
39198                                                                                     unspecified
39201                                                                                                
39202                                                                                    small amount
39207                                                                                     unspecified
39209                                                                     based on weight (44-88 lbs)
39210                                                                     based on weight (45-88 lbs)
39211                                                                  based on weight (50.1-100 lbs)
39212                                                                    based on weight (51-100 lbs)
39218                                                                     based on weight (45-88 lbs)
39259                                                                                     unspecified
39260                                                                   based on weight (44.1-88 lbs)
39262                                                                                        227, 277
39273                             based on weight (50-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
39316                                                                                 based on weight
39325                                                                  based on weight (50.1-100 lbs)
39326                                                                     based on weight (45-88 lbs)
39329                                                                  based on weight (50.1-100 lbs)
39330                                                                   based on weight (44.1-88 lbs)
39331                                                                  based on weight (50.1-100 lbs)
39332                                                                     based on weight (44-88 lbs)
39338                                                                    based on weight (51-100 lbs)
39339                                                                                      continuous
39340                                                                    based on weight (51-100 lbs)
39388                                                                    based on weight (51-100 lbs)
39392                                                                                     unspecified
39423                                                                                     unspecified
39425                                                                                     unspecified
39433                                                                                     unspecified
39434                                                                                    small amount
39435                                                                                 based on weight
39438                                                                    based on weight (51-100 lbs)
39440                                                                    based on weight (51-100 lbs)
39443                                                                    based on weight (51-100 lbs)
39444                                                                    based on weight (51-100 lbs)
39445                                                                     based on weight (44-88 lbs)
39446                                                                     based on weight (44-88 lbs)
39447                                                                    based on weight (51-100 lbs)
39450                                                                     based on weight (44-88 lbs)
39451                                                                    based on weight (51-100 lbs)
39453                                                                                     unspecified
39486                                                                       based on weight (55+ lbs)
39495                                                                     based on weight (45-88 lbs)
39496                                                                    based on weight (50-100 lbs)
39511                                                                     based on weight (44-88 lbs)
39513                                                                                    small amount
39516                                                                                     unspecified
39519                                                                                     unspecified
39525                                                                   based on weight (40.1-85 lbs)
39526                                                                  based on weight (50.1-100 lbs)
39528                                                                                     application
39531                                                                      1.5 tablets/pills/capsules
39534                                                                                     application
39536                                                                                    pack/package
39539                                                                                     application
39541                                                                                                
39542                                                                                     application
39543                                                                                     application
39546                                                                     based on weight (44-88 lbs)
39548                                                                     based on weight (44-88 lbs)
39566                                                                                     unspecified
39567                                                                                     unspecified
39573                                                                                     unspecified
39581                                                                    based on weight (51-100 lbs)
39582                                                                    based on weight (51-100 lbs)
39586                                                                    based on weight (51-100 lbs)
39591                                                                                     unspecified
39599                                                                                     unspecified
39607                                                                                         10, 100
39609                                                                    based on weight (50-100 lbs)
39617                                                                                     as directed
39618                                                                                     unspecified
39635                                                                    based on weight (60-120 lbs)
39637                                                              27 milbemycin oxime, 1620 spinosad
39639                                                                                     unspecified
39651                                                                                     unspecified
39714                                                                                     unspecified
39715                                                                                     unspecified
39737                                                                                     unspecified
39754                                                                    based on weight (51-100 lbs)
39756                                                                                     application
39759                                                              460 lufenuron, 23 milbemycin oxime
39760                                                              100000 nystatin, 2500 thiostrepton
39763                                                              460 lufenuron, 23 milbemycin oxime
39764                                                                    based on weight (51-100 lbs)
39776                                                                                     unspecified
39777                                                                                     unspecified
39778                                                                                     unspecified
39786                                                                                                
39787                                                                                                
39788                                                                                                
39795                                                                    based on weight (60-120 lbs)
39796                                                                    based on weight (50-100 lbs)
39833                                                                                         23, 460
39849                                                                                         23, 460
39856                                                                                         23, 460
39860                                                            272 ivermectin, 227 pyrantel pamoate
39871                                                            272 ivermectin, 227 pyrantel pamoate
39875                                                            272 ivermectin, 227 pyrantel pamoate
39877                                                            272 ivermectin, 227 pyrantel pamoate
39881                                                                        based on weight (60 lbs)
39909                                                                     based on weight (41-60 lbs)
39919                                                                                 0.25 inch strip
39958                                                                                     unspecified
39973                                                                    based on weight (50-100 lbs)
39974                                                                                    small amount
39975                                                                                    small amount
39980                                                                                          powder
39981                                                                                        wipe/pad
39982                                                                                     application
39987                                                                                     unspecified
39988                                                                                     unspecified
40013                                                                      based on weight (0-10 lbs)
40021                                                                                      0.14 fl oz
40038                                                                                        250, 500
40043                                                                       based on weight (95+ lbs)
40092                                                                     based on weight (45-88 lbs)
40093                                                                    based on weight (51-100 lbs)
40102                                                                                     unspecified
40108                                                                                     unspecified
40109                                                                                     unspecified
40115                                                                                  1 pack/package
40117                                                                    based on weight (51-100 lbs)
40121                             based on weight (51-100 lbs) - 272 ivermectin, 227 pyrantel pamoate
40123                                                                                     unspecified
40124                                                                    based on weight (51-100 lbs)
40125                                                                                     unspecified
40133                                                                                    23, 228, 460
40134                                                                                    23, 228, 460
40138                                                                        2 tablets/pills/capsules
40141                                                                                     unspecified
40142                                                            272 ivermectin, 227 pyrantel pamoate
40143                                                                                                
40144                                                                    based on weight (51-100 lbs)
40149                                                                    based on weight (51-100 lbs)
40154                                                                    based on weight (51-100 lbs)
40164                                                                                 moderate amount
40165                                                                    based on weight (51-100 lbs)
40180                                                                    based on weight (51-100 lbs)
40186                                                                    based on weight (51-100 lbs)
40194                                                            272 ivermectin, 227 pyrantel pamoate
40196                                                                                     unspecified
40206                                                                   based on weight (40.1-60 lbs)
40209                                                                                     unspecified
40214                                                                                    small amount
40216                                                                    based on weight (50-100 lbs)
40217                                                                     based on weight (24-60 lbs)
40218                                                                     based on weight (44-88 lbs)
40221                                                                    based on weight (50-100 lbs)
40222                                                                     based on weight (24-60 lbs)
40223                                                                                 based on weight
40224                                                                                 based on weight
40244                                                                     based on weight (45-88 lbs)
40290                                                            272 ivermectin, 227 pyrantel pamoate
40296                                                                                     unspecified
40297                                                                                     unspecified
40298                                                                                     unspecified
40299                                                                                     unspecified
40302                                                                                     unspecified
40312                                                                        based on weight (70 lbs)
40317                                                                                    small amount
40331                                                                                         23, 228
40343                                                                                 moderate amount
40390                                                                    based on weight (51-100 lbs)
40391                                                                    based on weight (50-100 lbs)
40392                                         based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                     unspecified
40403                                                                                     as directed
40406                                                                  1.5 homatropine, 5 hydrocodone
40407                                                                    based on weight (51-100 lbs)
40417                                                                  based on weight (60.1-121 lbs)
40418                                                                    based on weight (51-100 lbs)
40422                                                                  based on weight (60.1-121 lbs)
40451                                                                                 based on weight
40454                                                                                     unspecified
40464                                                                                          10/100
40468                                                                    based on weight (60-120 lbs)
40472                                                                                     unspecified
40474                                                                                     unspecified
40483                                                                    based on weight (50-100 lbs)
40484                                                                    based on weight (60-120 lbs)
40486                                                                    based on weight (50-100 lbs)
40487                                                                    based on weight (60-120 lbs)
40488                                                                        based on weight (55 lbs)
40489                                                                       based on weight (55+ lbs)
40494                                                                                     unspecified
40503                                                                    based on weight (50-100 lbs)
40504                                                                     based on weight (45-89 lbs)
40508                                                                     based on weight (40-80 lbs)
40511                                                                        5 tablets/pills/capsules
40519                                                                    based on weight (51-100 lbs)
40521                                                                    based on weight (50-100 lbs)
40535                                                                                        800, 900
40541                                                                    based on weight (51-100 lbs)
40568                                                                    based on weight (51-100 lbs)
40571                                                                                             1-2
40572                                                                      3.5 tablets/pills/capsules
40573                                                                    based on weight (51-100 lbs)
40574                                                                   based on weight (24.1-60 lbs)
40579                                                                                 based on weight
40580                                                                                     unspecified
40581                                                                                         80, 400
40582                                                                                 0.25 inch strip
40583                                                                                     unspecified
40595                                                                                                
40600                                                                    based on weight (51-100 lbs)
40601                                                                     based on weight (56-95 lbs)
40603                                                                                     concentrate
40604                                                                                  1 pack/package
40606                                                                                    small amount
40607                                                                                    small amount
40611                                                                    based on weight (51-100 lbs)
40615                                                                                      10, 40, 40
40616                                                                     based on weight (56-95 lbs)
40617                                                                    based on weight (51-100 lbs)
40618                                                                                     unspecified
40619                                                                                     unspecified
40620                                                                                     unspecified
40634                                                                                 0.25 inch strip
40636                                                                                    pack/package
40637                                                                                    pack/package
40644                                                                                     unspecified
40653                                                                     based on weight (45-88 lbs)
40654                                                                    based on weight (51-100 lbs)
40655                                                                    based on weight (50-100 lbs)
40656                                                                    based on weight (50-100 lbs)
40684                                                                    based on weight (51-100 lbs)
40686                                                                    based on weight (51-100 lbs)
40687                                                                                 based on weight
40688                                                                                        wipe/pad
40689                                                                                     application
40690                                                                    based on weight (51-100 lbs)
40691                                                                                 based on weight
40693                                                                                        tapering
40699                                                                                     unspecified
40700                                                                    based on weight (51-100 lbs)
40701                                                                     based on weight (44-88 lbs)
40718                                                                                            8 au
40719                                                                    based on weight (51-100 lbs)
40721                                                                                 based on weight
40722                                                                                     application
40723                                                                                             7-9
40724                                                                                            8-10
40725                                       based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                     unspecified
40727                                                                                     unspecified
40744                                                                    based on weight (51-100 lbs)
40745                                                                                                
40747                                                                                           6, 15
40748                                                                                        wipe/pad
40749                                                                   based on weight (44.1-88 lbs)
40750                                                                    based on weight (51-100 lbs)
40751                                                                    based on weight (51-100 lbs)
40754                                                                    based on weight (51-100 lbs)
40755                                                                   based on weight (44.1-88 lbs)
40756                                                                                 0.25 inch strip
40758                                                                                             3-4
40760                                                                    based on weight (51-100 lbs)
40775                                                                    based on weight (51-100 lbs)
40776                                                                    based on weight (51-100 lbs)
40781                                                                    based on weight (50-100 lbs)
40783                                                                    based on weight (50-100 lbs)
40794                                                                                  0.5 inch strip
40796                                                                    based on weight (60-120 lbs)
40799                                                                    based on weight (50-100 lbs)
40800                                                                    based on weight (50-100 lbs)
40801                                                                     based on weight (44-88 lbs)
40810                                                                                     unspecified
40823                                                                    based on weight (51-100 lbs)
40824                                                                                             2-3
40825                                                                     based on weight (56-95 lbs)
40827                                                                     based on weight (44-88 lbs)
40828                                                                    based on weight (51-100 lbs)
40829                                                                     based on weight (44-88 lbs)
40833                                                                                     unspecified
40834                                                                                        epa, dha
40838                                                                                     unspecified
40839                                                                                     unspecified
40840                                                                                     unspecified
40843                                                                                     unspecified
40846                                                                                 based on weight
40848                                                                                 0.25 inch strip
40866                                                                                     unspecified
40868                                                                                 based on weight
40870                                                                                 based on weight
40875                                                                             tablet/pill/capsule
40879                                                                    based on weight (51-100 lbs)
40895                                                                                     unspecified
40897                                                                    based on weight (51-100 lbs)
40899                                                                                         57, 460
40900                                                                                         23, 460
40902                                                                                         23, 460
40905                                                                                         23, 460
40919                                                                                     unspecified
40943                                                                                     unspecified
40958                                                                                     unspecified
40959                                                                                     unspecified
40960                                                                                     unspecified
40961                                                                                     unspecified
40962                                                                                 0.25 inch strip
40965                                                                    based on weight (51-100 lbs)
40966                                                                    based on weight (60-121 lbs)
40967                                                                    based on weight (50-100 lbs)
40968                                                                    based on weight (60-121 lbs)
40969                                                                                    small amount
40970                                                                                    small amount
40971                                                                    based on weight (51-100 lbs)
40972                                                                    based on weight (60-120 lbs)
40974                                                                    based on weight (51-100 lbs)
40984                                                                                     unspecified
40987                                                                                     unspecified
40990                                                                                     unspecified
40992                                                                      based on weight (0-25 lbs)
40993                                                                     based on weight (11-20 lbs)
40994                                                                                     as directed
40997                                                                    based on weight (51-100 lbs)
40998                                                                     based on weight (56-95 lbs)
41003                                                                                    small amount
41004                                                                    based on weight (51-100 lbs)
41005                                                                     based on weight (56-95 lbs)
41006                                                                                            8-10
41007                                                                                    small amount
41009                                                                 1.5 tablets/pills/capsules - 68
41010                                                                     based on weight (56-95 lbs)
41011                                                                    based on weight (51-100 lbs)
41014                                                                                    small amount
41015                                                                  based on weight (50.1-100 lbs)
41016                                                                     based on weight (56-95 lbs)
41018                                                                                 based on weight
41020                                                                                     unspecified
41021                                                                             tablet/pill/capsule
41022                                                                                     unspecified
41023                                                                                     unspecified
41024                                                                                     unspecified
41025                                                                                  1.4 ml, 2.8 ml
41057                                                                                     unspecified
41068                                                                     based on weight (21-55 lbs)
41069                                                                     based on weight (26-50 lbs)
41084                                                                        based on weight (70 lbs)
41087                                                                    based on weight (51-100 lbs)
41088                                                                     based on weight (56-95 lbs)
41089                                                                     based on weight (44-88 lbs)
41090                                                                                     unspecified
41091                                                                                     application
41094                                                                    based on weight (51-100 lbs)
41095                                                                     based on weight (44-88 lbs)
41096                                                                     based on weight (56-95 lbs)
41097                                                                                                
41098                                                                     based on weight (56-95 lbs)
41099                                                                     based on weight (44-88 lbs)
41101                                                                                    small amount
41102                                                                      1.5 tablets/pills/capsules
41103                                                                        based on weight (75 lbs)
41121                                                                                        27, 1620
41125                                                                    based on weight (51-100 lbs)
41131                                                                  based on weight (50.1-100 lbs)
41132                                                                  based on weight (60.1-121 lbs)
41133                                                                  based on weight (50.1-100 lbs)
41134                                                                  based on weight (60.1-120 lbs)
41137                                                                                                
41139                                                                                     unspecified
41147                                                                                     unspecified
41151                                                                                     unspecified
41152                                                                                     unspecified
41170                                                                                    small amount
41198                                                            272 ivermectin, 227 pyrantel pamoate
41199                                                            272 ivermectin, 227 pyrantel pamoate
41200                                                            272 ivermectin, 227 pyrantel pamoate
41201                                                            272 ivermectin, 227 pyrantel pamoate
41203                                                                    based on weight (51-100 lbs)
41204                                                                     based on weight (21-55 lbs)
41206                                                                     based on weight (45-88 lbs)
41207                                                                    based on weight (51-100 lbs)
41208                                                                     based on weight (24-60 lbs)
41209                                                                    based on weight (51-100 lbs)
41210                                                                     based on weight (24-60 lbs)
41216                                                                                      1000 units
41217                                                                     based on weight (40-60 lbs)
41219                                                                    based on weight (51-100 lbs)
41221                                                                     based on weight (40-60 lbs)
41222                                                                    based on weight (50-100 lbs)
41223                                                                    based on weight (50-100 lbs)
41224                                                                    based on weight (50-100 lbs)
41240                                                                                     application
41242                                                                                     unspecified
41246                                                                                     application
41260                                                                                     unspecified
41267                                                                    based on weight (51-100 lbs)
41278                                                                                                
41279                                                                                     unspecified
41281                                                                                     unspecified
41283                                                                                         23, 460
41313                                                                     based on weight (56-95 lbs)
41314                                                                    based on weight (50-100 lbs)
41315                                                                       based on weight (55+ lbs)
41316                                                                    based on weight (55-100 lbs)
41318                                                                    based on weight (51-100 lbs)
41319                                                                    based on weight (51-100 lbs)
41320                                                                    based on weight (50-100 lbs)
41325                                                                                        23 , 460
41332                                                               based on weight (51-100 lbs) - 23
41335                                                                                    small amount
41340                                                                                    small amount
41343                                                                                     unspecified
41360                                                                                     unspecified
41371                                                                                     application
41373                                                                    based on weight (51-100 lbs)
41374                                                                     based on weight (44-88 lbs)
41376                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41377                                                                    based on weight (51-100 lbs)
41378                                                                   based on weight (44.1-88 lbs)
41381                                                                        based on weight (80 lbs)
41384                                                                  based on weight (50.1-100 lbs)
41385                                                                     based on weight (44-88 lbs)
41386                                                                    based on weight (51-100 lbs)
41387                                                                       based on weight (44+ lbs)
41388                                                                                     as directed
41396                                                                                     unspecified
41398                                                                                     application
41407                                                                    based on weight (60-121 lbs)
41413                                                                                     unspecified
41417                                                                                       136 , 114
41420                                                                    based on weight (51-100 lbs)
41421                                                                    based on weight (51-100 lbs)
41422                                                                    based on weight (50-100 lbs)
41424                                                                       based on weight (50+ lbs)
41425                                                                                     as directed
41430                                                                                        27, 1620
41431                                                                                        27, 1620
41432                                                                    based on weight (60-120 lbs)
41433                                                                                             6-8
41435                                                              27 milbemycin oxime, 1620 spinosad
41442                                                                                     unspecified
41443                                                                                        27, 1620
41444                                                                                        27, 1620
41446                                                                                     application
41447                                                                    based on weight (60-120 lbs)
41451                                                              27 milbemycin oxime, 1620 spinosad
41464                                                                                     unspecified
41466                                                                                     unspecified
41470                                                                                     unspecified
41497                                                                                     unspecified
41500                                                                                                
41505                                                                                        inhalant
41525                                                                                     as directed
41531                                                                                     as directed
41533                                                                                        100, 200
41557                                                                                     unspecified
41572                                                                    based on weight (50-100 lbs)
41573                                                                    based on weight (60-120 lbs)
41612                                                                     1 tablet/pill/capsule - 500
41615                                                                    based on weight (51-100 lbs)
41617                                                           23 milbemycin oxime, 228 praziquantel
41621                                                                                     unspecified
41629                                                                                          0.5 hr
41632                                                                     based on weight (55-88 lbs)
41633                                                                    based on weight (50-100 lbs)
41638                                                                    based on weight (51-100 lbs)
41639                                                                        based on weight (86 lbs)
41640                                                                    based on weight (50-100 lbs)
41641                                                            272 ivermectin, 227 pyrantel pamoate
41653                                                                                         23, 460
41655                                                                                     unspecified
41674                                                                                        114, 136
41724                                                                                     unspecified
41725                                                                     based on weight (45-88 lbs)
41726                                                                    based on weight (51-100 lbs)
41727                                                                    based on weight (51-100 lbs)
41728                                                                             tablet/pill/capsule
41729                                                                                     unspecified
41731                                                                    based on weight (51-100 lbs)
41737                                                                     based on weight (45-88 lbs)
41738                                                                    based on weight (51-100 lbs)
41739                                                                                     unspecified
41740                                                                                     unspecified
41743                                                                                         80, 400
41746                                                                    based on weight (51-100 lbs)
41747                                                                                     unspecified
41748                                                                                     unspecified
41749                                                                                     unspecified
41750                                                                                     unspecified
41751                                                                                     unspecified
41752                                                                                     unspecified
41753                                                                                     unspecified
41754                                                                                     unspecified
41756                                                                                     62.5, 312.5
41759                                                                    based on weight (51-100 lbs)
41774                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
41781                                                                    based on weight (51-100 lbs)
41803                                                                                     unspecified
41811                                                                                     unspecified
41816                                                                                     unspecified
41819                                                                                        23 , 460
41830                                                                        3 tablets/pills/capsules
41835                                                                    based on weight (51-100 lbs)
41837                                                                    based on weight (51-100 lbs)
41838                                                                    based on weight (89-132 lbs)
41840                                                                    based on weight (51-100 lbs)
41846                                                                                     unspecified
41849                                                                    based on weight (51-100 lbs)
41850                                                                    based on weight (51-100 lbs)
41851                                                                                         23, 460
41853                                                                                        400, 500
41854                                                                    based on weight (51-100 lbs)
41863                                                                                 moderate amount
41870                                                                                         23, 228
41872                                                                                     unspecified
41888                                                                                 0.25 inch strip
41891                                                                                       136 , 114
41893                                                                                     application
41894                                                                        2 tablets/pills/capsules
41896                                                                                          powder
41897                                                                                     unspecified
41898                                                                                     unspecified
41899                                                                                     unspecified
41900                                                                                     unspecified
41901                                                                                     unspecified
41902                                                                                     unspecified
41903                                                                                     unspecified
41904                                                                        2 tablets/pills/capsules
41905                                                                                     unspecified
41906                                                                                     unspecified
41921                                                                                     unspecified
41929                                                                                 based on weight
41930                                                                                 based on weight
41937                                                                                 based on weight
41938                                                                                 based on weight
41939                                                                                     bottle/vial
41946                                                                                 based on weight
41947                                                                                 based on weight
41950                                                                                 based on weight
41973                                                                                     application
41975                                                                    based on weight (51-100 lbs)
41988                                                                    based on weight (51-100 lbs)
42004                                                                    based on weight (51-100 lbs)
42005                                                                     based on weight (48-88 lbs)
42011                                                                    based on weight (50-100 lbs)
42012                                                                     based on weight (45-88 lbs)
42032                                                                    based on weight (51-100 lbs)
42037                                                                    based on weight (51-100 lbs)
42039                                                                    based on weight (51-100 lbs)
42043                                                                    based on weight (51-100 lbs)
42044                                                                    based on weight (51-100 lbs)
42053                                                                    based on weight (60-121 lbs)
42057                                                                                     unspecified
42061                                                                    based on weight (50-100 lbs)
42063                                                                    based on weight (50-100 lbs)
42066                                                                    based on weight (50-100 lbs)
42100                                                                                     application
42101                                                                                     application
42112                                                            272 ivermectin, 227 pyrantel pamoate
42116                                                                   2 tablets/pills/capsules - 50
42119                                                                                     unspecified
42122                                                                                     unspecified
42147                                                                    based on weight (50-100 lbs)
42148                                                                     based on weight (44-88 lbs)
42149                                                                    based on weight (51-100 lbs)
42150                                                                    based on weight (51-100 lbs)
42151                                                                     based on weight (44-88 lbs)
42152                                                                    based on weight (51-100 lbs)
42154                                                                     based on weight (44-88 lbs)
42174                                                                    based on weight (51-100 lbs)
42198                                                                                 based on weight
42201                                                                       based on weight (18+ lbs)
42215                                                                                     unspecified
42218                                                                    based on weight (51-100 lbs)
42219                                                                     based on weight (21-55 lbs)
42221                                                                     based on weight (55-88 lbs)
42227                                                                     based on weight (55-89 lbs)
42229                                                                     based on weight (55-88 lbs)
42240                                                                                     unspecified
42241                                                                                     unspecified
42242                                                                                     unspecified
42243                                                                                     unspecified
42256                                                                                    small amount
42257                                                                                    small amount
42259                                                                                    small amount
42267                                                                                    small amount
42272                                                                    based on weight (51-100 lbs)
42273                                                                     based on weight (44-88 lbs)
42278                                                                                     unspecified
42284                                                            272 ivermectin, 227 pyrantel pamoate
42286                                                                     based on weight (55.1+ lbs)
42287                                                                    based on weight (51-100 lbs)
42289                                                                    based on weight (51-100 lbs)
42291                                                                                     unspecified
42313                                                                     based on weight (22-44 lbs)
42314                                                                     based on weight (26-50 lbs)
42345                                                                                 based on weight
42346                                                                                 based on weight
42348                                                                                 based on weight
42349                                                                                 based on weight
42353                                                                    based on weight (50-100 lbs)
42354                                                                       based on weight (60+ lbs)
42356                                                                    based on weight (60-121 lbs)
42357                                                                    based on weight (51-100 lbs)
42358                                                                    based on weight (60-120 lbs)
42361                                                                                     unspecified
42367                                                                                     as directed
42368                                                                    based on weight (51-100 lbs)
42378                                                                    based on weight (51-100 lbs)
42379                                                                    based on weight (51-100 lbs)
42384                                                                    based on weight (51-100 lbs)
42386                                                                    based on weight (51-100 lbs)
42387                                                                    based on weight (51-100 lbs)
42399                                                                                          collar
42402                                                                    based on weight (51-100 lbs)
42417                                                                                    small amount
42425                                                                                                
42426                                                                                                
42433                                                                                     unspecified
42451                                                                    based on weight (50-100 lbs)
42455                                                                                         23, 460
42463                                                                    based on weight (51-100 lbs)
42464                                                                                    small amount
42468                                                                                     unspecified
42474                                                100000 units nystatin, 1 triamcinolone acetonide
42475                                                                                338 dha, 515 epa
42476                                                                    based on weight (50-100 lbs)
42477                                                                       based on weight (56+ lbs)
42480                                                                                 moderate amount
42481                                                                       0.5-1 tablet/pill/capsule
42482                                                                                     bottle/vial
42483                                                                             tablet/pill/capsule
42486                                                                             tablet/pill/capsule
42488                                                                                         8.8, 44
42489                                                              460 lufenuron, 23 milbemycin oxime
42502                                                                                     unspecified
42506                                                                                     unspecified
42512                                                                    based on weight (51-100 lbs)
42513                                                                     based on weight (45-88 lbs)
42522                                                                                 based on weight
42537                                                                                     unspecified
42551                                                                    based on weight (51-100 lbs)
42552                                                                    based on weight (51-100 lbs)
42553                                                                    based on weight (51-100 lbs)
42570                                                                   based on weight (40.1-60 lbs)
42572                                                            272 ivermectin, 227 pyrantel pamoate
42573                                                                    based on weight (51-100 lbs)
42574                                                                    based on weight (51-100 lbs)
42578                                                                    based on weight (51-100 lbs)
42579                                                                    based on weight (88-123 lbs)
42593                                                                   based on weight (100-125 lbs)
42594                                                                    based on weight (88-123 lbs)
42624                                                                    based on weight (51-100 lbs)
42626                                                                                             6-8
42627                                                                    based on weight (51-100 lbs)
42628                                                                     based on weight (44-88 lbs)
42632                                                                     based on weight (44-88 lbs)
42633                                                                    based on weight (51-100 lbs)
42634                                                                                 based on weight
42637                                                                       based on weight (100 lbs)
42638                                                                                        23 , 460
42640                                                                                     unspecified
42646                                                                                     unspecified
42647                                                                                     unspecified
42648                                                                                     unspecified
42652                                                                                          1 dose
42655                                                                    based on weight (51-100 lbs)
42656                                                                     based on weight (44-88 lbs)
42666                                                                    based on weight (51-100 lbs)
42668                                                            272 ivermectin, 227 pyrantel pamoate
42675                                                                                     unspecified
42678                                                                                     unspecified
42679                                                                                     unspecified
42694                                                                     based on weight (44-88 lbs)
42695                                                                    based on weight (51-100 lbs)
42696                                                                     based on weight (44-88 lbs)
42697                                                                    based on weight (51-100 lbs)
42700                                                                     based on weight (45-88 lbs)
42704                                                                    based on weight (51-100 lbs)
42712                                                                    based on weight (51-100 lbs)
42716                                                                    based on weight (51-100 lbs)
42721                                                                    based on weight (51-100 lbs)
42725                                                                     based on weight (44-88 lbs)
42726                                                                     based on weight (25-50 lbs)
42727                                                                    based on weight (51-100 lbs)
42728                                                                    based on weight (51-100 lbs)
42729                                                                    based on weight (51-100 lbs)
42740                                                                    based on weight (51-100 lbs)
42758                                                                                         23, 460
42760                                                                    based on weight (50-100 lbs)
42761                                                                     based on weight (44-88 lbs)
42764                                                                                       11.5, 114
42766                                                           23 milbemycin oxime, 228 praziquantel
42768                                                           23 milbemycin oxime, 228 praziquantel
42785                                                                       based on weight (50+ lbs)
42786                                                                       based on weight (50+ lbs)
42787                                                                                     unspecified
42791                                                                                         23, 228
42792                                                                                         23, 228
42799                                                                                     unspecified
42821                                                                    based on weight (50-100 lbs)
42833                                                                                         23, 228
42860                                                                                     as directed
42876                                                                                     unspecified
42879                                                                                     unspecified
42887                                                                                     unspecified
42890                                                                                     unspecified
42891                                                                                     unspecified
42892                                                                                     unspecified
42893                                                                                     unspecified
42894                                                                                     unspecified
42913                                                                                 based on weight
42915                                                                                     unspecified
42920                                                            272 ivermectin, 227 pyrantel pamoate
42923                                                                   based on weight (40.1-85 lbs)
42926                                                                     based on weight (45-88 lbs)
42930                                                                    based on weight (51-100 lbs)
42931                                                                    based on weight (51-100 lbs)
42932                                                                   based on weight (44.1-88 lbs)
42935                                                                   based on weight (44.1-88 lbs)
42936                                                                    based on weight (51-100 lbs)
42939                                                                    based on weight (50-100 lbs)
42940                                                                   based on weight (44.1-88 lbs)
42946                                                                                     unspecified
42952                                                                                        27, 1620
42956                                                                    based on weight (51-100 lbs)
42959                                                                    based on weight (51-100 lbs)
42960                                                                    based on weight (51-100 lbs)
42967                                                                                     unspecified
42994                                                                                     application
43013                                                            272 ivermectin, 227 pyrantel pamoate
43045                                                                    based on weight (51-100 lbs)
43064                                                                    based on weight (51-100 lbs)
43065                                                                       based on weight (55+ lbs)
43069                                                                                 based on weight
43072                                                                                 based on weight
43081                                                                     based on weight (40-85 lbs)
43086                                                                                             1-2
43105                                                                                     unspecified
43116                                                                                     unspecified
43119                                                                    based on weight (50-100 lbs)
43123                                                                                         23, 228
43135                                                                        2 tablets/pills/capsules
43136                                                                     1.25 tablets/pills/capsules
43151                                                           23 milbemycin oxime, 228 praziquantel
43153                                           1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                     unspecified
43173                                                                                     unspecified
43183                                                                                         23, 460
43184                                                                                         23, 460
43191                                                                                          varies
43200                                                                                        27, 1620
43202                                                                        based on weight (55 lbs)
43204                                                                   based on weight (40.1-85 lbs)
43224                                                                                     unspecified
43228                                                                                 based on weight
43236                                                                    based on weight (51-100 lbs)
43238                                                                    based on weight (51-100 lbs)
43239                                                                                          collar
43241                                                                    based on weight (51-100 lbs)
43242                                                                       based on weight (18+ lbs)
43243                                                                    based on weight (51-100 lbs)
43244                                                                                          collar
43246                                                                                     unspecified
43247                                                                                     unspecified
43258                                                                    based on weight (51-100 lbs)
43259                                                                    based on weight (51-100 lbs)
43270                                                                                     unspecified
43286                                                                                     unspecified
43291                                                                400 imidacloprid, 100 moxidectin
43292                                                                                     as directed
43293                                                                     based on weight (55-88 lbs)
43310                                                                    based on weight (50-100 lbs)
43334                                                                                         23, 228
43366                                                                                    small amount
43388                                                                                     unspecified
43405                                                                                    small amount
43412                                                                                    small amount
43423                                                                                 based on weight
43424                                                                                 based on weight
43430                                                                                          powder
43467                                                                                     unspecified
43469                                                                                     unspecified
43470                                                                                     unspecified
43471                                                                                     unspecified
43482                                                                    based on weight (50-100 lbs)
43491                                                                    based on weight (51-100 lbs)
43493                                                           23 milbemycin oxime, 228 praziquantel
43494                                                                                         23, 228
43496                                                           23 milbemycin oxime, 228 praziquantel
43497                                                           23 milbemycin oxime, 228 praziquantel
43510                                                                  based on weight (50.1-100 lbs)
43511                                                                    based on weight (88-123 lbs)
43512                                                                    based on weight (89-132 lbs)
43522                                                                    based on weight (88-123 lbs)
43527                                                            272 ivermectin, 227 pyrantel pamoate
43531                                                                  based on weight (50.1-100 lbs)
43532                                                                  based on weight (60.1-121 lbs)
43535                                                                    based on weight (51-100 lbs)
43538                                                                    based on weight (51-100 lbs)
43539                                                                    based on weight (60-121 lbs)
43540                                                                                            8 au
43545                                                                                 based on weight
43546                                                                     based on weight (44-88 lbs)
43547                                                                                 250 , 300 , 600
43548                                                                                 based on weight
43549                                                                     based on weight (44-88 lbs)
43550                                                                                 based on weight
43563                                                                    based on weight (51-100 lbs)
43570                                                                    based on weight (51-100 lbs)
43610                                                                                0.125 inch strip
43620                                                                                     unspecified
43621                                                                                     unspecified
43636                                                                                     unspecified
43637                                                                                 based on weight
43639                                                                                    small amount
43640                                                                                             2-4
43642                                                                                    small amount
43643                                                                                      1 wipe/pad
43644                                                                    based on weight (51-100 lbs)
43645                                                                    based on weight (60-120 lbs)
43646                                                                        based on weight (60 lbs)
43650                                                                                 0.25 inch strip
43652                                                                     based on weight (45-88 lbs)
43653                                                                    based on weight (51-100 lbs)
43669                                                                                      1 wipe/pad
43678                                                                                    small amount
43683                                                                     based on weight (26-50 lbs)
43684                                                                                 0.25 inch strip
43685                                                                                    small amount
43686                                                                                    small amount
43706                                                                    based on weight (51-100 lbs)
43707                                                                     based on weight (44-88 lbs)
43709                                                                     based on weight (56-95 lbs)
43714                                                                                 moderate amount
43715                                                                                    small amount
43738                                                                                     unspecified
43743                                                                    based on weight (51-100 lbs)
43744                                                                     based on weight (45-88 lbs)
43745                                                                                  1 pack/package
43746                                                                     based on weight (45-88 lbs)
43747                                                                    based on weight (51-100 lbs)
43751                                                                                     unspecified
43783                                                                    based on weight (50-100 lbs)
43784                                                                    based on weight (60-120 lbs)
43785                                                                                 based on weight
43806                                                                                                
43807                                                                                     unspecified
43838                                                                                     unspecified
43843                                                                    based on weight (51-100 lbs)
43844                                                                  based on weight (60.1-120 lbs)
43851                                                                                     unspecified
43853                                                                                     unspecified
43854                                                                                     unspecified
43878                                                                    based on weight (50-100 lbs)
43884                                                                                                
43887                                                                                                
43893                                                                    based on weight (50-100 lbs)
43894                                                                                          collar
43896                                                                    based on weight (50-100 lbs)
43919                                                                    based on weight (51-100 lbs)
43920                                                                  based on weight (60.1-121 lbs)
43938                                                                    based on weight (50-100 lbs)
43939                                                                     based on weight (24-60 lbs)
43949                                                                    based on weight (50-100 lbs)
43950                                                                     based on weight (24-60 lbs)
43958                                                                    based on weight (50-100 lbs)
43959                                                                    based on weight (50-100 lbs)
43960                                                                    based on weight (60-100 lbs)
43963                                                                    based on weight (51-100 lbs)
43965                                                                                    small amount
43975                                                                                     unspecified
43976                                                            222 ivermectin, 227 pyrantel pamoate
43977                                                            222 ivermectin, 227 pyrantel pamoate
43980                                                            222 ivermectin, 227 pyrantel pamoate
43997                                                                                     unspecified
44031                                                            272 ivermectin, 227 pyrantel pamoate
44037                                                            272 ivermectin, 227 pyrantel pamoate
44050                                                                                        wipe/pad
44055                                                                                             2-3
44084                                                                                  0.5 inch strip
44087                                                                                     unspecified
44090                                                                                     unspecified
44119                                                                                     unspecified
44123                                                                                     unspecified
44126                                                                    based on weight (51-100 lbs)
44127                                                                    based on weight (60-121 lbs)
44129                                                                    based on weight (51-100 lbs)
44131                                                                    based on weight (51-100 lbs)
44154                                                                                     unspecified
44155                                                                  based on weight (50.1-100 lbs)
44157                                                                  based on weight (50.1-100 lbs)
44158                                                                     based on weight (44-88 lbs)
44207                                                                                     unspecified
44209                                                                                     unspecified
44211                                                                    based on weight (60-120 lbs)
44212                                                                        2 tablets/pills/capsules
44214                                                                    based on weight (60-120 lbs)
44216                                                                    based on weight (60-120 lbs)
44218                                                                    based on weight (60-120 lbs)
44219                                                                    based on weight (60-120 lbs)
44222                                                                                     unspecified
44223                                                                                     unspecified
44224                                                                                     unspecified
44225                                                                                     unspecified
44226                                                                                     unspecified
44227                                                                                     unspecified
44234                                                                       based on weight (55+ lbs)
44235                                                                    based on weight (51-100 lbs)
44240                                                                                    small amount
44241                                                                        3 tablets/pills/capsules
44243                                                                                     unspecified
44244                                                                                     unspecified
44246                                                                    based on weight (51-100 lbs)
44247                                                                    based on weight (60-120 lbs)
44249                                                                    based on weight (60-120 lbs)
44250                                                                    based on weight (51-100 lbs)
44251                                                                    based on weight (50-100 lbs)
44252                                                                    based on weight (60-120 lbs)
44253                                                                  based on weight (50.1-100 lbs)
44268                                                                  based on weight (50.1-100 lbs)
44280                                                                                     unspecified
44282                                                                                     unspecified
44309                                                                                     unspecified
44330                                                                    based on weight (51-100 lbs)
44334                                                                    based on weight (50-100 lbs)
44335                                                                    based on weight (60-121 lbs)
44336                                                                    based on weight (50-100 lbs)
44337                                                                    based on weight (60-121 lbs)
44347                                                                                     unspecified
44350                                                                                        125, 500
44363                                                                                    small amount
44372                                                                                    small amount
44385                                                                                        27, 1620
44386                                                                                        27, 1620
44390                                                                    based on weight (50-100 lbs)
44391                                                                                         23, 228
44392                                                                    based on weight (50-100 lbs)
44395                                                                    based on weight (50-100 lbs)
44398                                                                                     unspecified
44421                                                                  based on weight (50.1-100 lbs)
44428                                                                  based on weight (60.1-120 lbs)
44429                                                              27 milbemycin oxime, 1620 spinosad
44431                                                                     based on weight (44-88 lbs)
44434                                                                                    small amount
44452                                                                  based on weight (60.1-120 lbs)
44473                                                                       based on weight (55+ lbs)
44507                                                                                    small amount
44520                                                                                     unspecified
44524                                                                     based on weight (26-50 lbs)
44531                                                                        based on weight (70 lbs)
44542                                                                     based on weight (45-88 lbs)
44543                                                                    based on weight (51-100 lbs)
44545                                                              based on weight (45-88 lbs) - 2.68
44546                                                                    based on weight (51-100 lbs)
44547                                                                     based on weight (45-88 lbs)
44558                                                                                     unspecified
44559                                                                     based on weight (45-88 lbs)
44570                                                                                     unspecified
44571                                                                                     unspecified
44576                                                                                     unspecified
44577                                                                                     unspecified
44595                                                                                     unspecified
44607                                                                                      1 wipe/pad
44608                                                                    based on weight (60-120 lbs)
44609                                                                                       1-2 wipes
44616                                                                    based on weight (51-100 lbs)
44618                                                                                 based on weight
44646                                                                     based on weight (45-80 lbs)
44649                                                                    based on weight (85-130 lbs)
44652                                                                                     unspecified
44653                                                                                     unspecified
44654                                                                                     unspecified
44655                                                                                     unspecified
44658                                                                                     unspecified
44660                                                                                     unspecified
44663                                                                                     unspecified
44671                                                                    based on weight (60-120 lbs)
44672                                                              27 milbemycin oxime, 1620 spinosad
44677                                                                                        27, 1610
44679                                                                                         45, 450
44683                                                                                     unspecified
44684                                                                                     unspecified
44706                                                                                 0.25 inch strip
44732                                                                                         23, 460
44742                                                                    based on weight (51-100 lbs)
44743                                                                     based on weight (44-88 lbs)
44745                                                                    based on weight (50-100 lbs)
44746                                                                                     unspecified
44747                                                                                          collar
44755                                                                                     unspecified
44757                                                                                     unspecified
44769                                                                     based on weight (44-88 lbs)
44771                                                                     based on weight (44-88 lbs)
44782                                                                                     unspecified
44795                                                                                 0.25 inch strip
44799                                                                                     unspecified
44804                                                                                     unspecified
44820                                                                    based on weight (51-100 lbs)
44827                                                                    based on weight (51-100 lbs)
44828                                                                    based on weight (60-120 lbs)
44829                                                                     based on weight (51-99 lbs)
44830                                                                    based on weight (51-100 lbs)
44834                                                                                     unspecified
44843                                                                    based on weight (51-100 lbs)
44844                                                                  based on weight (60.1-121 lbs)
44857                                                                                           6, 15
44858                                                                                           6, 15
44862                                                                                     unspecified
44863                                                                       based on weight (50+ lbs)
44864                                                                                     unspecified
44866                                                                                     unspecified
44867                                                                   based on weight (55.1-88 lbs)
44868                                                                   based on weight (55.1-88 lbs)
44869                                                                    based on weight (60-121 lbs)
44875                                                                                         23, 460
44877                                                                    based on weight (50-100 lbs)
44879                                                                    based on weight (50-100 lbs)
44899                                                                                     unspecified
44905                                                                                     unspecified
44915                                                                     based on weight (45-88 lbs)
44916                                                            272 ivermectin, 227 pyrantel pamoate
44917                                                                       based on weight (55+ lbs)
44918                                                            272 ivermectin, 227 pyrantel pamoate
44920                                                                       based on weight (55+ lbs)
44922                                                                                     unspecified
44924                                                                    based on weight (51-100 lbs)
44925                                                                       based on weight (55+ lbs)
44933                                                                                     unspecified
44936                                                                     based on weight (40-85 lbs)
44937                                                                     based on weight (40-85 lbs)
44938                                                                   based on weight (40.1-85 lbs)
44939                                                                   based on weight (40.1-65 lbs)
44946                                                                    based on weight (51-100 lbs)
44947                                                                     based on weight (44-88 lbs)
44949                                                                    based on weight (51-100 lbs)
44950                                                                     based on weight (44-88 lbs)
44957                                                                     based on weight (44-88 lbs)
44958                                                                    based on weight (51-100 lbs)
44997                                                                                     as directed
45005                                                                                     unspecified
45007                                                                                     unspecified
45014                                                                    based on weight (60-120 lbs)
45017                                                                      based on weight (81.1 lbs)
45023                                                                                     unspecified
45027                                                                     based on weight (45-88 lbs)
45034                                                                                     unspecified
45045                                                                    based on weight (50-100 lbs)
45053                                                                      based on weight (0-25 lbs)
45054                                                                     based on weight (10-24 lbs)
45055                                                                     based on weight (25-60 lbs)
45059                                                                    based on weight (51-100 lbs)
45061                                                                    based on weight (51-100 lbs)
45062                                                                  based on weight (60.1-120 lbs)
45063                                                                                        27, 1620
45064                                                                  based on weight (60.1-120 lbs)
45066                                                                                    small amount
45072                                                                    based on weight (60-120 lbs)
45073                                                                                        27, 1620
45076                                                                             tablet/pill/capsule
45116                                                                   0.5 tablet/pill/capsule - 100
45117                                                                                  1 pack/package
45123                                                                    based on weight (50-100 lbs)
45134                                                                                     unspecified
45139                                                            272 ivermectin, 227 pyrantel pamoate
45149                                                                    based on weight (51-100 lbs)
45150                                                                    based on weight (51-100 lbs)
45154                                                                    based on weight (51-100 lbs)
45172                                                                                     unspecified
45173                                                                                     unspecified
45174                                                                                     unspecified
45175                                                                                     unspecified
45178                                                                    based on weight (51-100 lbs)
45179                                                                     based on weight (45-88 lbs)
45180                                                                                 moderate amount
45181                                                                                    small amount
45182                                                                    based on weight (51-100 lbs)
45185                                                                                   1 bottle/vial
45186                                                                    based on weight (51-100 lbs)
45187                                                                     based on weight (44-88 lbs)
45188                                                                    based on weight (51-100 lbs)
45189                                                                     based on weight (44-88 lbs)
45195                                                                                     unspecified
45199                                                                                     unspecified
45208                                                                                     unspecified
45209                                                                                     unspecified
45210                                                                                     unspecified
45212                                                                    based on weight (51-100 lbs)
45216                                                                    based on weight (51-100 lbs)
45224                                                                                     unspecified
45225                                                                    based on weight (51-100 lbs)
45236                                                                    based on weight (51-100 lbs)
45255                                                                                 based on weight
45263                                                                                 based on weight
45268                                                                                     unspecified
45273                                                                                     application
45280                                                                                     unspecified
45283                                                                    based on weight (51-100 lbs)
45286                                                                    based on weight (51-100 lbs)
45294                                                                     based on weight (40-60 lbs)
45295                                                                        2 tablets/pills/capsules
45297                                                                        based on weight (50 lbs)
45298                                                                    based on weight (51-100 lbs)
45299                                                                    based on weight (51-100 lbs)
45302                                                                    based on weight (51-100 lbs)
45305                                                                                     unspecified
45307                                                                                          varies
45309                                                                                     unspecified
45310                                                                    based on weight (51-100 lbs)
45311                                                                                 based on weight
45312                                                                   based on weight (24.1-60 lbs)
45313                                                                    based on weight (51-100 lbs)
45322                                                                                     unspecified
45327                                                                                     unspecified
45335                                                              460 lufenuron, 23 milbemycin oxime
45344                                                                                     unspecified
45345                                                                                     unspecified
45358                                                                                     unspecified
45359                                                                                     unspecified
45372                                                                                     application
45383                                                                                     unspecified
45403                                                                                     unspecified
45406                                                                    based on weight (51-100 lbs)
45411                                                                                    small amount
45425                                                                    based on weight (51-100 lbs)
45426                                                                                          collar
45434                                                                                     unspecified
45435                                                                                     unspecified
45443                                                            272 ivermectin, 227 pyrantel pamoate
45445                                                                    based on weight (51-100 lbs)
45451                                                                    based on weight (51-100 lbs)
45452                                                                   based on weight (24.1-60 lbs)
45463                                                                  based on weight (60.1-120 lbs)
45468                                                                    based on weight (51-100 lbs)
45470                                                                    based on weight (60-120 lbs)
45471                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 milbemycin oxime, 1620 spinosad
45479                           0.1% dexamethasone, 3.5  neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 milbemycin oxime, 1620 spinosad
45484                                                                    based on weight (51-100 lbs)
45503                                                                        2 tablets/pills/capsules
45504                                                                    based on weight (50-100 lbs)
45508                                                                     based on weight (45-88 lbs)
45531                                                               250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 milbemycin oxime, 810 spinosad
45555                                                                                     unspecified
45556                                                                     based on weight (40-85 lbs)
45572                                                                     based on weight (44-88 lbs)
45582                                                                                     unspecified
45585                                                                    based on weight (50-100 lbs)
45626                                                                  based on weight (50.1-100 lbs)
45642                                                            272 ivermectin, 227 pyrantel pamoate
45650                                                                    based on weight (60-120 lbs)
45651                                                                    based on weight (51-100 lbs)
45655                                                                    based on weight (51-100 lbs)
45656                                                                  based on weight (60.1-121 lbs)
45663                                                                                    small amount
45664                                                                    based on weight (51-100 lbs)
45665                                                                     based on weight (45-88 lbs)
45667                                                                                     unspecified
45670                                                                    based on weight (50-100 lbs)
45671                                                                    based on weight (50-100 lbs)
45675                                                                                             4-6
45676                                                                                             4-6
45683                                                                        based on weight (51 lbs)
45699                                                                                 moderate amount
45700                                                                                 moderate amount
45704                                                                                    small amount
45724                                                                                     unspecified
45725                                                                                     unspecified
45726                                                                                     unspecified
45727                                                                                     unspecified
45728                                                                                     unspecified
45729                                                                                     unspecified
45735                                                                                     unspecified
45736                                                                                     unspecified
45751                                                                                     unspecified
45764                                                                    based on weight (51-100 lbs)
45775                                                                                     unspecified
45776                                                                                     unspecified
45787                                                                     based on weight (45-88 lbs)
45791                                                                    based on weight (51-100 lbs)
45798                                                                                         23, 228
45799                                                                    based on weight (50-100 lbs)
45800                                                                    based on weight (50-100 lbs)
45816                                                                                        1 collar
45820                                                                    based on weight (51-100 lbs)
45843                                                                                     as directed
45853                                                                                        inhalant
45862                                                                  based on weight (50.1-100 lbs)
45863                                                                  based on weight (60.1-121 lbs)
45864                                                                    based on weight (88-123 lbs)
45869                                                                  based on weight (50.1-100 lbs)
45872                                                                    based on weight (88-123 lbs)
45876                                                                                       13.5, 810
45898                                                                    based on weight (51-100 lbs)
45899                                                                       based on weight (55+ lbs)
45901                                                                    based on weight (51-100 lbs)
45908                                                                    based on weight (51-100 lbs)
45909                                                                       based on weight (55+ lbs)
45914                                                                    based on weight (51-100 lbs)
45924                                                                             tablet/pill/capsule
45968                                                                                         11, 230
45969                                                                    based on weight (50-100 lbs)
45970                                                                  based on weight (60.1-121 lbs)
45971                                                                                        23 , 460
45990                                                                     based on weight (40-60 lbs)
45994                                                                       based on weight (55+ lbs)
45995                                                                                  1 pack/package
45996                                                                                     application
45997                                                                  based on weight (50.1-100 lbs)
46014                                                                                 0.25 inch strip
46018                                                                    based on weight (51-100 lbs)
46019                                                                  based on weight (50.1-121 lbs)
46021                                                                    based on weight (51-100 lbs)
46022                                                                    based on weight (60-121 lbs)
46025                                                                    based on weight (51-100 lbs)
46043                                                                    based on weight (51-100 lbs)
46044                                                                  based on weight (60.1-120 lbs)
46075                                                                    based on weight (51-100 lbs)
46076                                                                    based on weight (50-100 lbs)
46078                                                           23 milbemycin oxime, 228 praziquantel
46085                                                                                     unspecified
46091                                                                    based on weight (51-100 lbs)
46092                                                                    based on weight (51-100 lbs)
46094                                                                    based on weight (50-100 lbs)
46095                                                                    based on weight (50-100 lbs)
46100                                                                    based on weight (50-100 lbs)
46107                                                                    based on weight (51-100 lbs)
46108                                                                        based on weight (60 lbs)
46110                                                                    based on weight (51-100 lbs)
46116                                                                    based on weight (51-100 lbs)
46119                                                                    based on weight (51-100 lbs)
46122                                                                    based on weight (51-100 lbs)
46131                                                                                     unspecified
46132                                                                                     unspecified
46134                                                                                     unspecified
46170                                                                     based on weight (21-55 lbs)
46171                                                                                    small amount
46173                                                                     based on weight (21-55 lbs)
46174                                                                    based on weight (51-100 lbs)
46186                                                                                     unspecified
46198                                                                    based on weight (51-100 lbs)
46200                                                                                 based on weight
46201                                                                       based on weight (50+ lbs)
46202                                                                    based on weight (51-100 lbs)
46213                                                                       based on weight (55+ lbs)
46218                                                                    based on weight (50-100 lbs)
46219                                                                   based on weight (24.1-60 lbs)
46227                                                                    based on weight (60-120 lbs)
46255                                                                                    small amount
46265                                                                                     unspecified
46277                                                                     based on weight (26-50 lbs)
46278                                                                     based on weight (24-60 lbs)
46287                                                                     based on weight (26-50 lbs)
46288                                                                     based on weight (24-60 lbs)
46291                                                                     based on weight (26-50 lbs)
46292                                                                    based on weight (50-110 lbs)
46293                                                                     based on weight (24-60 lbs)
46295                                                                    based on weight (51-100 lbs)
46296                                                                     based on weight (24-60 lbs)
46303                                                                                       11.5, 230
46305                                                                                       11.5, 230
46308                                                                                       11.5, 235
46311                                                                                     unspecified
46312                                                                                     unspecified
46313                                                                                     unspecified
46314                                                                                     unspecified
46319                                                                                    small amount
46320                                                           23 milbemycin oxime, 228 praziquantel
46324                                                                                     unspecified
46325                                                           23 milbemycin oxime, 228 praziquantel
46345                                                            272 ivermectin, 227 pyrantel pamoate
46350                                                                                         23, 228
46355                                                                                         23, 228
46358                                                                                         10, 100
46360                                                                                     unspecified
46377                                                                                     unspecified
46379                                                                                        27, 1620
46399                                                                    based on weight (60-120 lbs)
46406                                                                                     unspecified
46410                                                                        based on weight (70 lbs)
46411                                                                        based on weight (70 lbs)
46413                                                                                 based on weight
46418                                                                                 based on weight
46424                                                                                          collar
46431                                                                                          collar
46435                                                            272 ivermectin, 227 pyrantel pamoate
46436                                                                                          collar
46474                                                                    based on weight (51-100 lbs)
46475                                                                     based on weight (21-55 lbs)
46476                                                                  based on weight (50.1-100 lbs)
46478                                                                    based on weight (51-100 lbs)
46479                                                                    based on weight (51-100 lbs)
46482                                                                    based on weight (50-100 lbs)
46483                                                                     based on weight (56-95 lbs)
46486                                                                                 based on weight
46487                                                                    based on weight (51-100 lbs)
46488                                                                    based on weight (51-100 lbs)
46489                                                                     based on weight (26-50 lbs)
46490                                                                     based on weight (26-50 lbs)
46493                                                                    based on weight (51-100 lbs)
46494                                                                    based on weight (50-100 lbs)
46499                                                           23 milbemycin oxime, 228 praziquantel
46504                                                                                     application
46505                                                                                     application
46506                                                                                     application
46512                                                                    based on weight (51-100 lbs)
46517                                                                                          8 cfu/
46521                                                                                          10 100
46526                                                                                 0.25 inch strip
46528                                                                     based on weight (45-88 lbs)
46530                                                                                     as directed
46532                                                                    based on weight (51-100 lbs)
46533                                                                                 0.25 inch strip
46544                                                                    based on weight (51-100 lbs)
46547                                                                                        0.8, 9.8
46551                                                                                     unspecified
46553                                                                                     unspecified
46555                                                                                     unspecified
46568                                                                                       227 , 227
46569                                                         8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                1.5 tablets/pills/capsules - 204
46571                                                                                               %
46572                                                            272 ivermectin, 227 pyrantel pamoate
46573                                                                                     as directed
46574                                                                                     unspecified
46575                                                                                     unspecified
46579                                                                                     unspecified
46588                                                                                                
46591                                                            272 ivermectin, 227 pyrantel pamoate
46593                                                                                     bottle/vial
46606                                                                                     unspecified
46607                                                                                     unspecified
46615                                                                     based on weight (44-88 lbs)
46616                                                                    based on weight (51-100 lbs)
46617                                                                    based on weight (51-100 lbs)
46618                                                                                         23, 460
46676                                                                                     as directed
46680                                                                                 based on weight
46687                                                                                     unspecified
46690                                                                                                
46694                                                                     based on weight (10-20 lbs)
46702                                                                                                
46703                                                                                     as directed
46716                                                                                        27, 1620
46717                                                                                        27, 1620
46729                                                            272 ivermectin, 227 pyrantel pamoate
46730                                                            272 ivermectin, 227 pyrantel pamoate
46732                                                                                          varies
46737                                                                                     unspecified
46747                                                                                     unspecified
46753                                                                                     unspecified
46763                                                                                     unspecified
46766                                                                                     unspecified
46767                                                                    based on weight (51-100 lbs)
46775                                                                    based on weight (51-100 lbs)
46776                                                                     based on weight (24-60 lbs)
46777                                                                                 based on weight
46783                                                                                    small amount
46786                                                                    based on weight (51-100 lbs)
46788                                                                    based on weight (51-100 lbs)
46789                                                                    based on weight (60-121 lbs)
46811                                                                                 based on weight
46812                                                                    based on weight (51-100 lbs)
46816                                                                    based on weight (51-100 lbs)
46827                                                                                             1-2
46849                                                                                        112, 272
46853                                                            272 ivermectin, 227 pyrantel pamoate
46874                                                                                    small amount
46880                                                                                    small amount
46883                                                                                         23, 228
46884                                                                    based on weight (50-100 lbs)
46885                                                                    based on weight (50-100 lbs)
46889                                                                                        160, 800
46891                                                                                     unspecified
46902                                                                                    small amount
46903                                                                       based on weight (55+ lbs)
46904                                                                    based on weight (51-100 lbs)
46905                                                                                    small amount
46908                                                                                                
46915                                                                                    small amount
46931                                                                                  1 pack/package
46938                                                                                  1 pack/package
46944                                                                                  1 pack/package
46961                                                                                     unspecified
46962                                                                                     unspecified
46972                                                                    based on weight (51-100 lbs)
46973                                                                    based on weight (51-100 lbs)
46977                                                                                   1 application
46981                                                                                             3-5
46982                                                                                    small amount
46983                                                                     based on weight (45-88 lbs)
46984                                                                    based on weight (89-132 lbs)
46985                                                                    based on weight (51-100 lbs)
46986                                                                    based on weight (51-100 lbs)
47000                                                              based on weight (44.1-88 lbs) - 80
47004                                                                    based on weight (51-100 lbs)
47010                                                                    based on weight (51-100 lbs)
47011                                                                    based on weight (60-121 lbs)
47018                                                                    based on weight (51-100 lbs)
47024                                                                    based on weight (51-100 lbs)
47025                                                                     based on weight (44-88 lbs)
47041                                                              460 lufenuron, 23 milbemycin oxime
47043                                                                    based on weight (51-100 lbs)
47049                                                                     based on weight (40-85 lbs)
47060                                                                                     unspecified
47076                                                                                     unspecified
47080                                                                                     unspecified
47081                                                                                     unspecified
47085                                                                    based on weight (51-100 lbs)
47086                                                                   based on weight (24.1-60 lbs)
47090                                                                                    0.285 , 0.57
47095                                                                     based on weight (41-60 lbs)
47096                                                                    based on weight (51-100 lbs)
47097                                                                   based on weight (24.1-60 lbs)
47098                                                                                 moderate amount
47104                                                                                    small amount
47105                                                                                     application
47106                                                                                     application
47125                                                                                     unspecified
47126                                                                                     unspecified
47128                                                                        3 tablets/pills/capsules
47137                                                                                             4-5
47140                                                                     based on weight (60-85 lbs)
47143                                                                     based on weight (40-85 lbs)
47146                                                                                     unspecified
47152                                                                                 moderate amount
47154                                                                    based on weight (51-100 lbs)
47155                                                                    based on weight (50-100 lbs)
47156                                                                     based on weight (44-88 lbs)
47162                                                                     based on weight (44-88 lbs)
47164                                                                     based on weight (44-88 lbs)
47178                                                                    based on weight (50-100 lbs)
47180                                                                                 moderate amount
47183                                                                     based on weight (44-88 lbs)
47184                                                                    based on weight (51-100 lbs)
47193                                                                    based on weight (51-100 lbs)
47194                                                                     based on weight (45-88 lbs)
47196                                                                     based on weight (44-88 lbs)
47197                                                                    based on weight (50-100 lbs)
47204                                                                                     unspecified
47208                                                                                     unspecified
47209                                                                    based on weight (51-100 lbs)
47210                                                                    based on weight (51-100 lbs)
47220                                                                                          collar
47221                                                                                     unspecified
47222                                                                                     unspecified
47240                                                                                     unspecified
47248                                                                                     unspecified
47251                                                                                     unspecified
47253                                                                    based on weight (50-100 lbs)
47260                                                                    based on weight (50-100 lbs)
47302                                                                                    small amount
47323                                                                                         23, 228
47325                                                                                         23, 228
47334                                                                     based on weight (26-50 lbs)
47343                                                         11.5 milbemycin oxime, 114 praziquantel
47345                                                                                       11.5, 114
47350                                                                                     unspecified
47355                                                                                     application
47360                                                                                     unspecified
47390                                                            222 ivermectin, 227 pyrantel pamoate
47407                                                                                     unspecified
47409                                                           23 milbemycin oxime, 228 praziquantel
47411                                                                  based on weight (60.1-121 lbs)
47412                                                                    based on weight (51-100 lbs)
47415                                                                   based on weight (44.1-88 lbs)
47416                                                                  based on weight (50.1-100 lbs)
47417                                                                   based on weight (44.1-88 lbs)
47420                                                                  based on weight (50.1-100 lbs)
47421                                                                   based on weight (44.1-88 lbs)
47433                                                                                        114, 136
47439                                                                                           6, 15
47451                                                            272 ivermectin, 227 pyrantel pamoate
47478                                                                    based on weight (50-100 lbs)
47479                                                                    based on weight (51-100 lbs)
47483                                                                                    small amount
47484                                                                                 based on weight
47486                                                                                 based on weight
47493                                                                                 based on weight
47496                                                                                     unspecified
47497                                                                    based on weight (51-100 lbs)
47498                                                                                 based on weight
47539                                                                                     as directed
47540                                                                                     unspecified
47544                                                                                     unspecified
47547                                                                                     application
47557                                                                                     unspecified
47562                                                                    based on weight (50-100 lbs)
47563                                                                       based on weight (60+ lbs)
47576                                                                    based on weight (2.5-20 lbs)
47577                                                                       based on weight (<25 lbs)
47578                                                                       based on weight (<25 lbs)
47586                                                                     based on weight (26-50 lbs)
47587                                                                     based on weight (21-55 lbs)
47588                                                                                 3.5, 400, 10000
47589                                                                    based on weight (51-100 lbs)
47590                                                                     based on weight (21-55 lbs)
47592                                                                    based on weight (51-100 lbs)
47593                                                                     based on weight (21-55 lbs)
47594                                                                    based on weight (51-100 lbs)
47595                                                                     based on weight (21-55 lbs)
47597                                                                                        100, 400
47600                                                                                        100, 400
47628                                                                     based on weight (45-88 lbs)
47629                                                            272 ivermectin, 227 pyrantel pamoate
47630                                                                     based on weight (22-55 lbs)
47635                                                                       based on weight (55+ lbs)
47636                                                                     based on weight (25-50 lbs)
47658                                                                                     unspecified
47681                                                            272 ivermectin, 227 pyrantel pamoate
47684                                                                                                
47693                                                                                        wipe/pad
47694                                                                                          powder
47696                                                                    based on weight (50-100 lbs)
47698                                                                                        wipe/pad
47699                                                                                          powder
47702                                                                                     application
47706                                                              27 milbemycin oxime, 1620 spinosad
47715                                                                                     unspecified
47716                                                                                     unspecified
47720                                                                                     unspecified
47721                                                                                     unspecified
47733                                                                                     unspecified
47734                                                                                     application
47739                                                                                     unspecified
47743                               based on weight (51-100 lbs) - 460 lufenuron, 23 milbemycin oxime
47744                                                                    based on weight (51-100 lbs)
47745                                                              460 lufenuron, 23 milbemycin oxime
47746                                                                    based on weight (51-100 lbs)
47752                                                                                     unspecified
47755                                                                     based on weight (45-88 lbs)
47760                                                                                 based on weight
47800                                                                    based on weight (51-100 lbs)
47801                                                                     based on weight (45-88 lbs)
47802                                                                    based on weight (51-100 lbs)
47803                                                                     based on weight (45-88 lbs)
47808                                                                    based on weight (51-100 lbs)
47810                                                                  based on weight (60.1-121 lbs)
47811                                                                    based on weight (51-100 lbs)
47812                                                                  based on weight (60.1-121 lbs)
47815                                                                    based on weight (51-100 lbs)
47816                                                                  based on weight (60.1-121 lbs)
47817                                                                                     unspecified
47825                                                                                     unspecified
47835                                                                    based on weight (51-100 lbs)
47836                                                                    based on weight (51-100 lbs)
47840                                                                    based on weight (50-100 lbs)
47860                                                                     based on weight (44-88 lbs)
47861                                                                                       10  - 0.1
47877                                                                                     unspecified
47887                                                                     based on weight (44-88 lbs)
47888                                                                    based on weight (51-100 lbs)
47889                                                                                     unspecified
47890                                                                                     unspecified
47891                                                                                     unspecified
47894                                                                                           2 , 5
47900                                                                                     unspecified
47910                                                                                     unspecified
47951                                                                                     unspecified
47952                                                                                     unspecified
47953                                                                                     unspecified
47971                                                                    based on weight (50-100 lbs)
47975                                                                    based on weight (50-100 lbs)
47976                                                                    based on weight (50-100 lbs)
47981                                                                  based on weight (50.1-100 lbs)
47983                                                                                         23, 228
47984                                                                                 based on weight
47985                                                                                 based on weight
47989                                                                    based on weight (51-100 lbs)
47990                                                                       based on weight (55+ lbs)
47995                                                                                          powder
47998                                                                        2 tablets/pills/capsules
48001                                                                      1.5 tablets/pills/capsules
48007                                                                        0.75 tablet/pill/capsule
48013                                                                  based on weight (60.1-121 lbs)
48014                                                                  based on weight (60.1-121 lbs)
48016                                                                                     unspecified
48020                                                                    based on weight (51-100 lbs)
48021                                                                    based on weight (60-120 lbs)
48028                                                                    based on weight (51-100 lbs)
48029                                                                  based on weight (60.1-120 lbs)
48031                                                                        3 tablets/pills/capsules
48034                                                                                          powder
48035                                                                                          powder
48040                                                                    based on weight (51-100 lbs)
48041                                                                    based on weight (60-120 lbs)
48046                                                                    based on weight (51-100 lbs)
48047                                                                  based on weight (60.1-120 lbs)
48049                                                                        2 tablets/pills/capsules
48069                                                                                     unspecified
48072                                                                                 0.25 inch strip
48087                                                                    based on weight (51-100 lbs)
48088                                                                     based on weight (44-88 lbs)
48089                                                                                  1 pack/package
48090                                                                                      1.5 scoops
48094                                                                                     as directed
48100                                                                                 0.25 inch strip
48101                                                                                    small amount
48102                                                                    based on weight (51-100 lbs)
48103                                                                                    small amount
48105                                                                    based on weight (51-100 lbs)
48106                                                                                        1 collar
48107                                                                                    small amount
48108                                                                                    small amount
48109                                                                    based on weight (51-100 lbs)
48110                                                                                        1 collar
48114                                                                                    small amount
48120                                                                    based on weight (51-100 lbs)
48121                                                                       based on weight (55+ lbs)
48127                                                                             tablet/pill/capsule
48131                                                                             tablet/pill/capsule
48142                                                                    based on weight (50-100 lbs)
48143                                                                       based on weight (55+ lbs)
48147                                                                             tablet/pill/capsule
48148                                                                    based on weight (51-100 lbs)
48155                                                                                         23, 460
48157                                                                    based on weight (51-100 lbs)
48158                                                                   based on weight (44.1-88 lbs)
48159                                                                    based on weight (51-100 lbs)
48160                                                                    based on weight (88-123 lbs)
48163                                                                                     unspecified
48167                                                                    based on weight (51-100 lbs)
48169                                                                                     unspecified
48182                                                                                       136 , 114
48185                                                                                        tapering
48188                                                                                    small amount
48201                                                                                     unspecified
48213                                                                                    small amount
48214                                                                    based on weight (60-121 lbs)
48215                                                                    based on weight (51-100 lbs)
48217                                                            272 ivermectin, 227 pyrantel pamoate
48220                                                                                     unspecified
48221                                                                                     unspecified
48222                                                                                     unspecified
48231                                                              460 lufenuron, 23 milbemycin oxime
48237                                                                                    small amount
48238                                                              460 lufenuron, 23 milbemycin oxime
48240                                                                                         60, 500
48248                                                                                         60, 500
48251                                                                  based on weight (50.1-100 lbs)
48252                                                                  based on weight (60.1-121 lbs)
48258                                                                                     unspecified
48265                                                                                    small amount
48266                                                                                    small amount
48267                                                                                    small amount
48271                                                              460 lufenuron, 23 milbemycin oxime
48274                                                                                     unspecified
48277                                                                                     unspecified
48285                                                                                     unspecified
48287                                                                                         3000 u/
48288                                                                                                
48289                                                            272 ivermectin, 227 pyrantel pamoate
48291                                                                                     application
48292                                                            272 ivermectin, 227 pyrantel pamoate
48294                                                                                 0.25 inch strip
48297                                                                    based on weight (51-100 lbs)
48298                                                                    based on weight (60-120 lbs)
48299                                                                                 0.25 inch strip
48300                                                                    based on weight (51-100 lbs)
48306                                                                    based on weight (51-100 lbs)
48307                                                                                             5-6
48310                                                                    based on weight (51-100 lbs)
48314                                                                                     unspecified
48327                                                                                     application
48334                                                                                     unspecified
48336                                                                                     unspecified
48337                                                                                     unspecified
48338                                                                                     unspecified
48339                                                                                     unspecified
48342                                                                                     unspecified
48343                                                                                     unspecified
48344                                                                                         23, 460
48345                                                                                             1-2
48350                                                                                     unspecified
48351                                                                                     unspecified
48352                                                                                     unspecified
48353                                                                                     unspecified
48354                                                                                     unspecified
48355                                                                                     unspecified
48376                                                                                                
48383                                                                                 based on weight
48384                                                                    based on weight (51-100 lbs)
48394                                                                                     unspecified
48406                                                                                     unspecified
48420                                                                                         80, 400
48438                                                                    based on weight (50-100 lbs)
48439                                                           23 milbemycin oxime, 228 praziquantel
48441                                                                    based on weight (51-100 lbs)
48442                                                                     based on weight (44-88 lbs)
48444                                                            272 ivermectin, 227 pyrantel pamoate
48447                                                                                 based on weight
48448                                                                    based on weight (60-120 lbs)
48481                                                                                    small amount
48483                                                                                    small amount
48496                                                                                 based on weight
48497                                                                                 based on weight
48498                                                                                 based on weight
48500                                                                  based on weight (50.1-100 lbs)
48502                                                                1.5 tablets/pills/capsules - 500
48504                                                                                 based on weight
48505                                                                                 based on weight
48513                                                                    based on weight (51-100 lbs)
48540                                                                                         23, 460
48541                                                                    based on weight (51-100 lbs)
48542                                                                     based on weight (44-88 lbs)
48598                                                                                     unspecified
48602                                                                                        tapering
48610                                                                                        114, 136
48611                                                            272 ivermectin, 227 pyrantel pamoate
48615                                                            272 ivermectin, 227 pyrantel pamoate
48621                                                                                     application
48624                                                                                     as directed
48633                                                                                     unspecified
48636                                                                                     unspecified
48661                                                                    based on weight (51-100 lbs)
48664                                                                    based on weight (51-100 lbs)
48667                                                                    based on weight (51-100 lbs)
48668                                                                     based on weight (45-88 lbs)
48673                                                                                     unspecified
48680                                                                                 based on weight
48683                                                                       based on weight (55+ lbs)
48684                                                                       based on weight (50+ lbs)
48692                                                                                     unspecified
48693                                                                                     unspecified
48694                                                                                     unspecified
48696                                                                    based on weight (50-100 lbs)
48697                                                                   based on weight (24.1-60 lbs)
48698                                                                     based on weight (45-88 lbs)
48712                                                                    based on weight (50-100 lbs)
48713                                                                   based on weight (24.1-60 lbs)
48718                                                                    based on weight (51-100 lbs)
48719                                                                                             1-2
48721                                                                    based on weight (50-100 lbs)
48722                                                                                 based on weight
48724                                                                    based on weight (50-100 lbs)
48725                                                                                          collar
48729                                                                                     unspecified
48733                                                                                 based on weight
48734                                                                    based on weight (50-100 lbs)
48735                                                                    based on weight (50-100 lbs)
48736                                                                                          collar
48770                                                                                0.125 inch strip
48782                                                                                     unspecified
48802                                                                                     unspecified
48806                                                                                    small amount
48808                                                                                            8-10
48812                                                                                     2.68of 9.8%
48819                                                                                         23, 460
48821                                                                                         23, 460
48845                                                                    based on weight (51-100 lbs)
48855                                                                                        27, 1620
48859                                                                                      0.025, 2.5
48862                                                                                         10, 100
48889                                                                                  1 pack/package
48890                                                                    based on weight (51-100 lbs)
48891                                                                                 based on weight
48892                                                                                     application
48894                                                           23 milbemycin oxime, 228 praziquantel
48902                                                                                     unspecified
48906                                                                                     unspecified
48918                                                                                     unspecified
48935                                                                                     unspecified
48946                                                                      1.5 tablets/pills/capsules
48994                                                                                        100, 400
48997                                                                                     unspecified
49002                                                            272 ivermectin, 227 pyrantel pamoate
49005                                                                                     unspecified
49012                                                                                     application
49016                                                                     based on weight (44-88 lbs)
49017                                                                    based on weight (50-100 lbs)
49018                                                                       based on weight (25+ lbs)
49025                                                                    based on weight (50-100 lbs)
49026                                                                     based on weight (44-88 lbs)
49033                                                                                     as directed
49034                                                                                     as directed
49035                                                                                     as directed
49036                                                                                     unspecified
49042                                                                                     unspecified
49044                                                                                     unspecified
49046                                                                                     unspecified
49051                                                                                     unspecified
49052                                                                                     unspecified
49082                                        based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                    based on weight (51-100 lbs)
49096                                                                                     unspecified
49105                                                                                     unspecified
49113                                                                                     application
49117                                                            272 ivermectin, 227 pyrantel pamoate
49120                                                                                        160, 800
49123                                                                    based on weight (60-120 lbs)
49127                                                                                     unspecified
49128                                                                    based on weight (51-100 lbs)
49129                                                                  based on weight (60.1-121 lbs)
49130                                                                                    small amount
49163                                                                                     unspecified
49164                                                                    based on weight (51-100 lbs)
49167                                                                                     unspecified
49168                                                                                     unspecified
49169                                                                    based on weight (51-100 lbs)
49170                                                                                 based on weight
49184                                                                                     unspecified
49193                                             425 s-adenosylmethionine, 35 silybin a + b, 120 spc
49196                                          680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                     unspecified
49209                                                                                     unspecified
49216                                                                     based on weight (20-40 lbs)
49217                                                                    based on weight (60-120 lbs)
49218                                                                    based on weight (60-120 lbs)
49219                                                              27 milbemycin oxime, 1620 spinosad
49220                                                                                        27, 1620
49227                                                                                    small amount
49229                                                                                    small amount
49231                                                                                    small amount
49232                                                                                  0.5 inch strip
49248                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
49252                                                                    based on weight (51-100 lbs)
49253                                                                     based on weight (44-88 lbs)
49316                                                                                     unspecified
49323                                                                     based on weight (45-88 lbs)
49324                                                                    based on weight (51-100 lbs)
49343                                                                    based on weight (51-100 lbs)
49346                                                                    based on weight (51-100 lbs)
49348                                                                    based on weight (51-100 lbs)
49350                                                                    based on weight (51-100 lbs)
49351                                                                    based on weight (60-120 lbs)
49352                                                                    based on weight (51-100 lbs)
49376                                                                    based on weight (51-100 lbs)
49377                                                                     based on weight (45-88 lbs)
49378                                                                    based on weight (51-100 lbs)
49379                                                                       based on weight (55+ lbs)
49388                                                                    based on weight (51-100 lbs)
49393                                                                                     unspecified
49394                                                                                     unspecified
49395                                                                                     unspecified
49398                                                                                     unspecified
49403                                                                                     unspecified
49404                                                                                     unspecified
49408                                                                       based on weight (50+ lbs)
49409                                                                       based on weight (50+ lbs)
49437                                                                    based on weight (61-100 lbs)
49438                                                                    based on weight (50-100 lbs)
49442                                                                                 based on weight
49460                                                                     based on weight (56-95 lbs)
49461                                                                    based on weight (50-100 lbs)
49462                                                                        2 tablets/pills/capsules
49463                                                                    based on weight (51-100 lbs)
49473                                                                    based on weight (51-100 lbs)
49509                                                                      based on weight (100+ lbs)
49510                                                                    based on weight (50-100 lbs)
49518                                                            272 ivermectin, 227 pyrantel pamoate
49520                                                                                 2.2, 14.8, 16.6
49523                                                            272 ivermectin, 227 pyrantel pamoate
49526                                                                                 0.05%, 0.5%, 3%
49531                                                                                     unspecified
49549                                                                    based on weight (50-100 lbs)
49550                                                                    based on weight (60-121 lbs)
49553                                                                    based on weight (50-100 lbs)
49554                                                                  based on weight (60.1-121 lbs)
49567                                                                    based on weight (51-100 lbs)
49568                                                                                        inhalant
49572                                                                    based on weight (51-100 lbs)
49588                                                            272 ivermectin, 227 pyrantel pamoate
49590                                                                   based on weight (55.1-88 lbs)
49591                                                                    based on weight (51-100 lbs)
49593                                                                                     unspecified
49596                                                                                     unspecified
49601                                                                                     unspecified
49607                                                                                       27 , 1620
49645                                                                    based on weight (51-100 lbs)
49649                                                                                     application
49654                                                                                     unspecified
49659                                                                                 0.25 inch strip
49698                                                                    based on weight (60-120 lbs)
49699                                                                       based on weight (55+ lbs)
49705                                                                                     unspecified
49748                                                                                                
49753                                                                       based on weight (55+ lbs)
49754                                                                     based on weight (45-88 lbs)
49755                                                                    based on weight (51-100 lbs)
49756                                                                     based on weight (45-88 lbs)
49757                                                                  based on weight (50.1-100 lbs)
49758                                                                    based on weight (50-100 lbs)
49766                                                                                     unspecified
49767                                                                     based on weight (45-88 lbs)
49768                                                                                 based on weight
49769                                                                                     unspecified
49773                                                                                     unspecified
49792                                                                    based on weight (51-100 lbs)
49793                                                                  based on weight (60.1-121 lbs)
49799                                                                                     unspecified
49812                                                                                     unspecified
49849                                                                                     application
49854                                                                                  1 pack/package
49855                                                                        2 tablets/pills/capsules
49857                                                                                 based on weight
49861                                                                     based on weight (56-90 lbs)
49862                                                                     based on weight (56-90 lbs)
49871                                                                        based on weight (20 lbs)
49878                                                                    based on weight (51-100 lbs)
49883                                                                                  1 pack/package
49886                                                                    based on weight (51-100 lbs)
49889                                                                    based on weight (51-100 lbs)
49890                                                                     based on weight (56-95 lbs)
49898                                                                        based on weight (20 lbs)
49905                                                                    based on weight (51-100 lbs)
49906                                                                                    small amount
49907                                                                    based on weight (51-100 lbs)
49908                                                                    based on weight (51-100 lbs)
49911                                                                    based on weight (51-100 lbs)
49912                                                                     based on weight (56-95 lbs)
49963                                                              based on weight (51-100 lbs) - 272
49966                                                                                     application
49978                                                                    based on weight (51-100 lbs)
49985                                                                    based on weight (51-100 lbs)
49986                                                                                 based on weight
49987                                                                                 based on weight
49990                                                                                  1 pack/package
49991                                                                    based on weight (51-100 lbs)
49992                                                                                             4-6
49993                                                                                 based on weight
49996                                                                                     as directed
50001                                                                    based on weight (51-100 lbs)
50004                                                                    based on weight (51-100 lbs)
50006                                                                                 based on weight
50007                                                                                     unspecified
50008                                                                    based on weight (51-100 lbs)
50009                                                                                 based on weight
50011                                                                                     unspecified
50012                                                                                     unspecified
50014                                                                                     unspecified
50048                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
50050                                                                                     unspecified
50077                                                                                 based on weight
50107                                                                    based on weight (51-100 lbs)
50108                                                                     based on weight (44-88 lbs)
50115                                                                                     unspecified
50116                                                                     based on weight (20-60 lbs)
50117                                                                    based on weight (50-100 lbs)
50118                                                                    based on weight (50-100 lbs)
50154                                                           23 milbemycin oxime, 228 praziquantel
50159                                                                                     unspecified
50161                                                                                     unspecified
50187                                                                    based on weight (51-100 lbs)
50189                                                                    based on weight (51-100 lbs)
50190                                                                    based on weight (51-100 lbs)
50194                                                                    based on weight (51-100 lbs)
50195                                                                       based on weight (55+ lbs)
50196                                                                    based on weight (51-100 lbs)
50198                                                                    based on weight (51-100 lbs)
50199                                                                       based on weight (55+ lbs)
          dose_unit
22      unspecified
40            tube 
41      unspecified
42             tube
46            spray
48             tube
49            drops
51             drop
59             drop
60             drop
62               ml
63             drop
67             drop
70             pump
74             pump
84             pump
87             pump
91            drops
111           drops
112           drops
113           drops
114           drops
149            tube
150             tsp
151           spray
152           spray
153            drop
155            tube
167     unspecified
188             tsp
192            tbsp
220           spray
230             mcg
233           spray
235             mcg
236           spray
237              ml
238            tbsp
242              ml
257           units
275             tsp
276           spray
277           drops
279           spray
280          sprays
310             mcg
317           units
318           units
324            pump
328            tube
329           drops
332            tube
333            tube
347              mg
348              mg
350              mg
351              mg
353              mg
355              mg
366     unspecified
368              mg
375           spray
376            drop
383            drop
384            drop
386              ml
403             mcg
404              mg
414              mg
447           drops
449     unspecified
453           drops
496             mcg
498              ml
519              ml
537           drops
597           drops
598            drop
610           drops
619           spray
637              ml
642              ml
686     unspecified
688              mg
703          sprays
704             ml 
709     unspecified
710     unspecified
712     unspecified
725              mg
728            drop
729            drop
730             mcg
734            drop
738            drop
739           drops
754           drops
755             tsp
757            drop
778     unspecified
785           spray
790           spray
792              ml
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803           spray
804              ml
810           drops
816           drops
819             mcg
820             mcg
823              ml
824          sprays
832     unspecified
851             mcg
862            tube
871              mg
874              mg
877           drops
878              mg
879              mg
880              mg
884              mg
887              mg
891              mg
893              mg
899              mg
901           drops
905              ml
913           drops
921            drop
955            tube
958             mcg
969           drops
977           drops
982           spray
983           spray
989           drops
1001    unspecified
1017             ml
1018           tube
1020             ml
1021             ml
1027          spray
1029             ml
1030           drop
1031          drops
1033          drops
1036           drop
1039           drop
1042           drop
1050           tube
1072          drops
1073          drops
1074             ml
1087             ml
1091          drops
1097             mg
1099          drops
1100          drops
1101          spray
1108          spray
1111             mg
1112             ml
1116            mcg
1129          drops
1150          drops
1152          spray
1153           tube
1154           drop
1155          drops
1159             ml
1160          drops
1161          drops
1168          units
1169          units
1170             ml
1173             ml
1174             mg
1175  other specify
1176            mcg
1177  other specify
1179           tbsp
1185           tbsp
1186         sprays
1187             mg
1189          drops
1190           tube
1193             mg
1194          units
1195          spray
1208             gm
1217            mcg
1226          drops
1233    unspecified
1247             ml
1285             mg
1336    unspecified
1344            tsp
1346             ml
1355           tube
1371          drops
1398          drops
1404          drops
1405          drops
1415             ml
1420             mg
1422          drops
1434           drop
1435          spray
1438          drops
1441          drops
1442          drops
1443          drops
1450          drops
1451             gm
1459             gm
1462             ml
1464          spray
1473    unspecified
1475    unspecified
1499             mg
1500             mg
1501          spray
1511          drops
1512             ml
1514             ml
1528             ml
1529             ml
1532           tube
1534          units
1535          units
1536          drops
1537             mg
1538             mg
1539           tube
1541    unspecified
1542    unspecified
1556          drops
1572             mg
1586             oz
1587             ml
1598           tube
1599            mcg
1634          drops
1635         sprays
1650    unspecified
1663          drops
1668          drops
1683          drops
1684           drop
1685           tube
1689          drops
1692           drop
1697            tsp
1708             mg
1710             mg
1712            tsp
1715            tsp
1718             mg
1720            tsp
1743            mcg
1747           tube
1748             ml
1749             ml
1756             ml
1757             ml
1758          drops
1759             gm
1760          mg/ml
1761             mg
1769             mg
1773          spray
1774             mg
1789          drops
1791    unspecified
1794    unspecified
1795    unspecified
1796           tube
1798             ml
1805          drops
1809             mg
1819          drops
1820          drops
1823          drops
1845          drops
1846          drops
1847          drops
1848          drops
1849             ml
1850             ml
1851             ml
1867          drops
1872          drops
1877           drop
1887          drops
1888             ml
1917          spray
1922          drops
1925          drops
1926            tsp
1928           tube
1929           tube
1931           pump
1939            ml 
1941           drop
1945             gm
1948           drop
1962         sprays
1965             ml
1980             ml
1982           drop
1983           tbsp
1984           tube
1994    unspecified
1998           pump
2006            mcg
2012    unspecified
2013    unspecified
2016             ml
2022          spray
2025          drops
2026             ml
2029            mcg
2030             mg
2032             ml
2033          drops
2034           drop
2041           tube
2042             ml
2050          drops
2075           drop
2083          spray
2084             ml
2085           tube
2087             gm
2088          spray
2089          drops
2091          drops
2093           tube
2107           tube
2108             gm
2109           pump
2110           tube
2113           tube
2115          drops
2116             ml
2126             ml
2127           drop
2149           drop
2151             ml
2161             ml
2165           pump
2166          drops
2195           tube
2199           tube
2200         sprays
2201          spray
2202           tube
2203          drops
2204           tube
2205             ml
2206             ml
2211          drops
2219           drop
2220             ml
2224             ml
2226             ml
2229             gm
2233             mg
2241             gm
2243            tsp
2244           drop
2250           drop
2255          drops
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2269    unspecified
2270    unspecified
2272             ml
2278            mcg
2279          units
2280             ml
2283          drops
2301            tsp
2302             ml
2390           tube
2398          drops
2404             ml
2405          drops
2409             mg
2418            mcg
2428             mg
2463          drops
2464          units
2467            tbs
2473          drops
2474          drops
2477             mg
2478             mg
2479         sprays
2481             gm
2482           pump
2486           pump
2487          drops
2491             ml
2492             ml
2499             ml
2500             ml
2501             mg
2502             mg
2503             mg
2504          drops
2508             ml
2517             mg
2518          drops
2534          drops
2539          spray
2542          spray
2543          drops
2545          spray
2546           tube
2547             ml
2548             ml
2549    unspecified
2550    unspecified
2558          drops
2559           pump
2560           pump
2562             mg
2566             mg
2575    unspecified
2578           tube
2580          drops
2583             ml
2599          drops
2600             ml
2642          drops
2651             gm
2652          drops
2653          drops
2655    unspecified
2659           drop
2660          spray
2661           drop
2710             ml
2721          drops
2726          spray
2731             mg
2735             mg
2737             mg
2738             mg
2739             mg
2742             ml
2743             ml
2745             ml
2746          spray
2748           tube
2749             gm
2753             gm
2756             gm
2805             mg
2815             mg
2818          drops
2825          pumps
2827          drops
2828             ml
2833          units
2838             ml
2839             ml
2842             oz
2844             mg
2846             ml
2855             gm
2897           drop
2900          drops
2903          spray
2904          drops
2905          drops
2907           tube
2913             gm
2919             mg
2920             mg
2921           tube
2922             gm
2923             ml
2925            tsp
2941             mg
2942  other specify
2943            tsp
2944          drops
2946          drops
2958          drops
2959             ml
2961           tube
2962           tube
2963          spray
2964           pump
2974             ml
2975           tbsp
2978           tube
2981             mg
2988          drops
2993    unspecified
2997             mg
3002             mg
3003           pump
3007          drops
3028          drops
3031    unspecified
3055           drop
3058           tube
3060          drops
3095          spray
3110          drops
3119          drops
3147          drops
3180             mg
3246          spray
3247           tube
3250          drops
3251           tube
3253          spray
3257            mcg
3271         sprays
3278           pump
3280           drop
3284           tube
3287             ml
3291           tube
3293           tube
3294          drops
3300          pumps
3305             gm
3312             gm
3313          spray
3339             ml
3342          drops
3345             mg
3346             mg
3350          units
3360             ml
3366          drops
3372          units
3375          units
3376          drops
3394    unspecified
3399             mg
3403             mg
3421          drops
3422          drops
3425             ml
3426           tube
3429          units
3437          drops
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3451             mg
3455             mg
3456             gm
3457             gm
3458             gm
3459             mg
3488             gm
3490           pump
3491           tube
3492           tube
3495          drops
3496          drops
3497          drops
3498          drops
3512           pump
3513           pump
3514          spray
3515          units
3516          spray
3517    unspecified
3519          drops
3520             mg
3522             mg
3525            mcg
3530  other specify
3531          drops
3535          drops
3581          drops
3619             mg
3622          drops
3635             mg
3639          drops
3640          drops
3641          drops
3649             mg
3650          units
3652             mg
3666             gm
3667             gm
3675          drops
3684             ml
3685           tube
3691          drops
3692          spray
3693             gm
3698           tube
3699            tsp
3701           pump
3704          spray
3705             gm
3706             mg
3710    unspecified
3718          drops
3719          drops
3725            mcg
3726          drops
3735          drops
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3750             mg
3760             mg
3773          drops
3784             mg
3785             mg
3786             mg
3789    unspecified
3797           tube
3798          spray
3800           pump
3815          units
3829          drops
3835            tbs
3836            tbs
3838          units
3840           drop
3848          drops
3857          drops
3858             gm
3859             ml
3860          drops
3861             gm
3867          drops
3870             mg
3871             mg
3872          units
3874           tube
3881            mcg
3886          spray
3889           tube
3897           tbsp
3898    unspecified
3900            mcg
3903          pumps
3906             gm
3911             gm
3938             gm
3943           drop
3945          drops
3946           pump
3952          spray
3972             ml
3980           tube
3984           tube
3989             gm
3990          drops
4000    unspecified
4017           tube
4030             mg
4031            tsp
4042    unspecified
4058           drop
4059             mg
4060            mcg
4063            mcg
4064             mg
4066             gm
4067           tube
4068             ml
4069             mg
4070             mg
4071          drops
4074             ml
4075             mg
4077             mg
4087          drops
4088             ml
4089          drops
4092          drops
4097             mg
4111          drops
4112           pump
4113          drops
4114          drops
4116             mg
4117          drops
4118          drops
4119          drops
4120          drops
4125             mg
4127           tube
4128          drops
4131           tube
4132    unspecified
4133    unspecified
4134          drops
4162             ml
4172             gm
4183           tube
4184          units
4191           drop
4193          drops
4198          spray
4199            tsp
4210             ml
4212             mg
4213             mg
4215             mg
4216          drops
4218          drops
4245          drops
4247            mcg
4266          drops
4274    unspecified
4298           drop
4299          drops
4302           tube
4304            tsp
4305             ml
4306           tube
4307             ml
4308             mg
4309             mg
4311             mg
4313          drops
4314           drop
4323             ml
4324             ml
4325             ml
4326             gm
4336           pump
4338             ml
4348           tube
4349           tube
4350             ml
4353             ml
4354          drops
4368             mg
4371             mg
4384             mg
4389           tube
4390          drops
4395            mcg
4405             mg
4409          tube 
4426           tube
4427           tube
4428          spray
4430           tube
4431          drops
4444           drop
4446           drop
4454             ml
4469           drop
4470           drop
4471           pump
4472           pump
4480           pump
4481           pump
4483             ml
4486          drops
4497          drops
4499             mg
4500             mg
4501            tsp
4502          spray
4504          spray
4505           drop
4511            tsp
4517             gm
4524          spray
4532             ml
4533            tsp
4536           drop
4544          units
4545          spray
4547          drops
4558          spray
4559          drops
4560          spray
4561         sprays
4562           tube
4564           drop
4565          pumps
4566           pump
4567           tube
4568          drops
4569           tube
4587          units
4597             ml
4599            mcg
4611             mg
4627             ml
4628             ml
4629             mg
4631             ml
4634           drop
4638             ml
4640             gm
4642             mg
4643             ml
4648             mg
4649             ml
4651             ml
4652             ml
4654             ml
4655             mg
4695             ml
4717             mg
4719          drops
4720          drops
4726          spray
4738          spray
4739             ml
4743          drops
4744          drops
4745             mg
4748          units
4757          drops
4763            ml 
4764             oz
4766           drop
4777           drop
4780           drop
4782           drop
4801             mg
4802           drop
4805          drops
4806            tsp
4813    unspecified
4824             ml
4826           drop
4828          spray
4832  other specify
4853             ml
4855             mg
4858             mg
4859            mcg
4861            mcg
4862            mcg
4881          spray
4902  other specify
4904  other specify
4905             mg
4910          spray
4912             mg
4913           pump
4914             mg
4917            mcg
4935          drops
4956          spray
4960             ml
4968             mg
4969             mg
4980          spray
4981             mg
4996             ml
4998          drops
5043          units
5046          units
5078          spray
5122          units
5123          units
5127             ml
5134          units
5140             mg
5159    unspecified
5160    unspecified
5161    unspecified
5173           tube
5174          drops
5191             mg
5193          drops
5195          drops
5203             ml
5210           pump
5211           tube
5212             ml
5213             ml
5214          spray
5220          spray
5221          spray
5222          drops
5223          drops
5225             ml
5234           tube
5235            ml 
5243             ml
5244             ml
5247          spray
5248          spray
5253             ml
5255           drop
5256             ml
5257         sprays
5258           drop
5261          drops
5262           drop
5264           drop
5265           tube
5270          spray
5271          drops
5289             ml
5332             ml
5333             ml
5334          drops
5335          drops
5336          drops
5337            mcg
5340          spray
5354          drops
5357          drops
5359            mcg
5360            mcg
5362          drops
5369          spray
5377            mcg
5378  other specify
5379           tube
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5391          drops
5392           tube
5403             ml
5424             ml
5428             ml
5440             mg
5460          drops
5464             mg
5484             mg
5491          drops
5492          pumps
5497           tube
5498          spray
5499             gm
5500          drops
5501          drops
5502             ml
5507           pump
5508            tsp
5509            tsp
5511          drops
5513             ml
5527            tsp
5528           tube
5529          drops
5533          drops
5534          drops
5535          drops
5537          drops
5541           tube
5542          drops
5545          drops
5546             ml
5552            tbs
5553            tbs
5557          drops
5568           drop
5571          spray
5576          drops
5577          drops
5578          drops
5595          drops
5600          drops
5602             gm
5607             mg
5626             gm
5627          units
5628          units
5629             mg
5630             mg
5631         sprays
5632          spray
5649          drops
5681             ml
5682             ml
5695             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5728             mg
5729          drops
5731          drops
5747           tube
5760          drops
5762             mg
5768           tube
5771             mg
5777             ml
5804             mg
5814            tsp
5834            mcg
5839             mg
5840             mg
5858          drops
5869            mcg
5877           tube
5884           tube
5887          drops
5913         sprays
5917          drops
5930          spray
5932    unspecified
5933          drops
5934          drops
5935          drops
5936           tube
5937          drops
5941          spray
5942           drop
5945           tube
5963            tsp
5964            tsp
5965             mg
5967             mg
5976          drops
5981             ml
5988             mg
5991           tube
5992             ml
5993            mcg
5994          drops
6000             mg
6002             ml
6003             mg
6004             ml
6014            mcg
6015            mcg
6016             mg
6017             mg
6036             mg
6038          spray
6059             ml
6063           tube
6068          units
6069           tube
6071           tube
6072             ml
6076          spray
6078             ml
6088           drop
6090          drops
6093          drops
6095          drops
6101             mg
6102             mg
6104             mg
6109             mg
6132             ml
6133             ml
6134          units
6135          units
6136          drops
6137           drop
6139          drops
6140             ml
6148             mg
6161             mg
6164            tsp
6200           tube
6202           tube
6206           pump
6208            ml 
6217             mg
6218             gm
6221          drops
6224         sprays
6225          drops
6226             ml
6231          drops
6232           drop
6244          drops
6257             ml
6258            ml 
6266          drops
6267          drops
6275          spray
6282            mcg
6283          drops
6284             mg
6293           pump
6302            mcg
6307             mg
6312    unspecified
6319    unspecified
6320    unspecified
6326             ml
6328             mg
6331           drop
6358             gm
6390    unspecified
6395          drops
6405           tube
6406             gm
6411          units
6437            mcg
6441             mg
6444           tube
6451             gm
6459             mg
6461          drops
6474             gm
6475             ml
6486             mg
6495           drop
6499             ml
6500             ml
6522           pump
6523           pump
6527           tube
6528           tube
6555         sprays
6562          spray
6569          drops
6570           tube
6571             ml
6573             ml
6579          drops
6581            mcg
6594          drops
6602           drop
6606            mcg
6612             ml
6625             ml
6636             ml
6644             ml
6647             gm
6648             ml
6650             ml
6658           drop
6662           drop
6663          drops
6680          drops
6683          spray
6687           tube
6688           tube
6694             mg
6696          drops
6697          drops
6698          drops
6702           drop
6703          drops
6714             mg
6715          drops
6716             ml
6717          drops
6733            mcg
6751    unspecified
6759          drops
6760             ml
6763            mcg
6764          drops
6778             ml
6779          drops
6781          drops
6783          drops
6786          drops
6796          drops
6797             mg
6815             mg
6816             ml
6817           tube
6818          drops
6824    unspecified
6826             mg
6828         sprays
6868           pump
6880           pump
6886          drops
6891             ml
6892             ml
6910             ml
6928             ml
6934          drops
6935          drops
6936          drops
6946             mg
6956    unspecified
6957            tsp
6981             ml
6982          drops
6983          drops
6986             mg
7002             mg
7005    unspecified
7006    unspecified
7017          spray
7021             ml
7025          drops
7027             gm
7042          drops
7054            mcg
7071          drops
7092           tube
7093          drops
7095             mg
7096             mg
7116          drops
7127    unspecified
7130             mg
7131            mcg
7137           tube
7149          spray
7151             ml
7152          drops
7153             gm
7154             gm
7155             gm
7172             ml
7173           drop
7175             oz
7177             oz
7180           tube
7189             ml
7208          drops
7218             mg
7243            mcg
7247          tube 
7248             ml
7249             ml
7260  other specify
7262             ml
7291          spray
7295           tube
7297             gm
7320             gm
7342             gm
7344             gm
7345          drops
7346          drops
7371          drops
7413             ml
7499            mcg
7503          drops
7513             ml
7519            mcg
7521            mcg
7524             ml
7525            mcg
7526             mg
7555           drop
7563          drops
7564    unspecified
7565            mcg
7566          drops
7576             ml
7577             mg
7580             mg
7583           tube
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7598             gm
7635             mg
7660          drops
7671             mg
7673             ml
7674           tube
7675             mg
7678           tube
7679           tube
7681             mg
7692             mg
7696             mg
7699             mg
7701             mg
7705           pump
7732             ml
7742          units
7743          units
7746          spray
7747             ml
7748          units
7749          units
7750          units
7751          drops
7754             ml
7759          spray
7763          drops
7772    unspecified
7776    unspecified
7783          drops
7784          spray
7795          drops
7812           tube
7818    unspecified
7820    unspecified
7822    unspecified
7832             ml
7839          spray
7845          drops
7846          drops
7848             ml
7852    unspecified
7853           tube
7854    unspecified
7862             mg
7883         sprays
7884           pump
7887          units
7889          units
7895          drops
7926           tube
7929          drops
7944          drops
7946          drops
7961          spray
7966             ml
7967          drops
7968            tsp
7969             ml
7970             mg
7973          drops
7987             mg
7988             gm
7993          drops
7995             mg
7998          drops
8000          spray
8009           drop
8012          drops
8014             ml
8017             ml
8029            mcg
8030          spray
8040            mcg
8042             mg
8043             mg
8044             mg
8045             mg
8075    unspecified
8086             ml
8091             mg
8098             oz
8099             oz
8120          drops
8121             ml
8123             ml
8125          units
8128           tube
8130             gm
8131             gm
8136             gm
8137             gm
8138             gm
8139             gm
8140           pump
8160           tube
8182           tube
8184          drops
8185          drops
8186          drops
8187          drops
8188           pump
8195           pump
8196          spray
8205          spray
8206          spray
8207          spray
8208          drops
8209             mg
8210          units
8211          units
8212          drops
8215          drops
8221          drops
8223          units
8224            mcg
8234          spray
8235           tube
8238          units
8248          drops
8251             mg
8252           tbsp
8280    unspecified
8284             gm
8293             gm
8296          drops
8297             ml
8298          drops
8314             mg
8315             mg
8337             mg
8338             mg
8349          drops
8354          drops
8355          drops
8358          spray
8359          drops
8362             ml
8369          drops
8370          spray
8371          drops
8376          drops
8377          spray
8378          drops
8389            mcg
8408          drops
8410          drops
8418          spray
8420           tube
8421          spray
8424           pump
8425          drops
8427             ml
8435             ml
8436          drops
8440            mcg
8454           tube
8466           drop
8467          drops
8475          drops
8478             gm
8509             ml
8514          drops
8515          drops
8528           tube
8531          drops
8541             oz
8550             mg
8554          spray
8555          spray
8578           tube
8581           tbsp
8582          drops
8583          drops
8584          drops
8585             gm
8586             gm
8588          drops
8591           drop
8607          drops
8609          spray
8613             mg
8673             mg
8674           pump
8675          spray
8676             ml
8677           tube
8694           tube
8697             ml
8702          drops
8707          drops
8731           tube
8735            tsp
8736          drops
8744    unspecified
8745    unspecified
8756           drop
8757             mg
8759           drop
8760           drop
8768             gm
8769           tube
8770          drops
8771             ml
8777          drops
8778          drops
8779           tube
8780          drops
8781          drops
8786          drops
8790             ml
8791             ml
8792    unspecified
8793          drops
8794          drops
8795             ml
8797             mg
8805          drops
8815           pump
8819          pumps
8820             gm
8825             mg
8826             ml
8828          drops
8831            mcg
8833          drops
8837             mg
8843             ml
8851    unspecified
8852    unspecified
8853    unspecified
8860          drops
8875    unspecified
8876    unspecified
8877          drops
8879           drop
8885            mcg
8908             mg
8911          drops
8929            mcg
8930            mcg
8961            mcg
8962            mcg
9026           tube
9046          drops
9047          drops
9050          spray
9052             oz
9054             ml
9055             ml
9060             ml
9064          drops
9070          drops
9071          drops
9084    unspecified
9094             ml
9095          drops
9098           drop
9099             mg
9100           tube
9101            tsp
9109             ml
9118           tube
9132             ml
9136          drops
9156          drops
9160           drop
9161  other specify
9170             ml
9187          drops
9193             gm
9202          drops
9230           pump
9236             ml
9239             ml
9240           tube
9241             ml
9242             ml
9244          drops
9252          pumps
9253           tube
9254           tube
9259          units
9267          drops
9269            mcg
9271             mg
9292             mg
9294             mg
9295             mg
9297             mg
9386           tube
9387          drops
9416             ml
9418          drops
9421           drop
9422             ml
9426           drop
9429           drop
9432           pump
9433            tbs
9434           pump
9435           pump
9436             ml
9438          drops
9447          drops
9452            mcg
9453  other specify
9454         sprays
9494          drops
9495           tube
9511             mg
9516          spray
9524             ml
9544           drop
9546           tube
9548             ml
9549            tsp
9584           tbsp
9588          drops
9592    unspecified
9596          drops
9600             ml
9601           tbsp
9602             mg
9603             mg
9604             mg
9609          spray
9610            tsp
9612          spray
9613          drops
9614          spray
9615         sprays
9616           tube
9617           drop
9618          pumps
9619           pump
9620           tube
9621          drops
9635             mg
9640  other specify
9641           tube
9643           tube
9718             ml
9723          units
9759          spray
9760             ml
9761           drop
9766             ml
9770             ml
9785            mcg
9791             mg
9807          drops
9808          drops
9809          drops
9821             ml
9826             ml
9828             mg
9833          spray
9837    unspecified
9840    unspecified
9843    unspecified
9863           tbsp
9865         sprays
9873    unspecified
9877    unspecified
9884            ml 
9889            ml 
9890           drop
9891           drop
9892           drop
9894          units
9895          units
9896          units
9897          drops
9898            tsp
9901           drop
9903          spray
9907    unspecified
9917          spray
9928    unspecified
9931           pump
9935          drops
9942          spray
9943             mg
9944          spray
9945             ml
9963          drops
9966             gm
9968          spray
9970             ml
9972          units
10017          pump
10026            mg
10027           tsp
10037         drops
10042   unspecified
10053         drops
10061          tube
10063         drops
10066          drop
10075           mcg
10092         drops
10093   unspecified
10106           mcg
10107            ml
10108           mcg
10109            ml
10111           mcg
10113            ml
10115            ml
10116         drops
10119           mcg
10120         drops
10121         spray
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134           ml 
10151         drops
10167         spray
10170            ml
10176          drop
10187            ml
10188        sprays
10195            mg
10198            ml
10200          drop
10209          drop
10219          tube
10232            mg
10233            mg
10234            mg
10235           mcg
10245         drops
10249         drops
10260   unspecified
10264         spray
10273            ml
10274         drops
10275            ml
10276         drops
10301            mg
10312         drops
10313            mg
10314            mg
10320            mg
10324            ml
10334         drops
10335          tube
10345            ml
10347            ml
10348            ml
10349          tbsp
10356          tbsp
10365        sprays
10366         drops
10370           mcg
10372           mcg
10374           mcg
10379            mg
10400            ml
10403          tube
10405         pumps
10408          tube
10409            mg
10410            mg
10412            mg
10429         drops
10435            ml
10436         drops
10441   unspecified
10445          pump
10470            gm
10477           tsp
10478         drops
10483           mcg
10485           mcg
10487           mcg
10499            mg
10503          tube
10505         drops
10506           mcg
10529         drops
10555          tube
10557   unspecified
10565   unspecified
10573   unspecified
10575         drops
10576            mg
10577            mg
10578            mg
10579            mg
10580            mg
10583         drops
10588         drops
10590         drops
10591         drops
10610           mcg
10619            ml
10624         spray
10628          tube
10642            oz
10655         spray
10667            mg
10671            mg
10678            mg
10682            mg
10683            ml
10684            ml
10685          tube
10686          tube
10687         drops
10689          tube
10693            mg
10694         drops
10696         drops
10697           tbs
10701            mg
10706            mg
10707          tube
10711         drops
10712        sprays
10713         drops
10714         spray
10717         drops
10718         drops
10725          drop
10726          tube
10727         drops
10740   unspecified
10743          drop
10751   unspecified
10755           mcg
10769           mcg
10780           tsp
10781           tsp
10792           mcg
10794            ml
10796           mcg
10825            ml
10827         drops
10830          tube
10837            ml
10843            ml
10846         drops
10849            gm
10853         drops
10863         drops
10865         units
10866         units
10870            ml
10871          tube
10874          pump
10877          tube
10878          tube
10892         drops
10896         drops
10898            ml
10899         drops
10901         drops
10905         drops
10928         drops
10929         drops
10934         drops
10938         drops
10953         drops
10959         drops
10970            ml
10971            ml
11003         drops
11008         drops
11009          drop
11010         drops
11011            ml
11016         spray
11021   unspecified
11035         drops
11036           tsp
11037          tube
11038          tube
11065            mg
11085   unspecified
11088   unspecified
11093            mg
11134        sprays
11142   unspecified
11144            oz
11145            oz
11152          drop
11153          tbsp
11155         units
11156         units
11158           ml 
11159         units
11163         units
11165         drops
11182   unspecified
11186         spray
11189            mg
11208            mg
11210          pump
11211         drops
11212            ml
11213   unspecified
11224          drop
11228          tube
11229           mcg
11241            mg
11242         drops
11276            mg
11291          drop
11292         spray
11293            ml
11294          tube
11295            gm
11296         spray
11307          tube
11311           mcg
11312           mcg
11315            mg
11316            mg
11317            mg
11318            mg
11326            ml
11327            gm
11338            ml
11340            mg
11346          drop
11349          drop
11350         units
11353            mg
11356          tube
11360   unspecified
11368        sprays
11385         spray
11386          tube
11387         drops
11388          tube
11394            ml
11415            ml
11436         drops
11437         drops
11441            mg
11464          drop
11470   unspecified
11471   unspecified
11473            ml
11477            ml
11493   unspecified
11509            ml
11536            mg
11537         units
11538         units
11545            mg
11546          drop
11547            mg
11551   unspecified
11560         drops
11561         spray
11562          tube
11567         drops
11568         drops
11570         drops
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11589         drops
11593         drops
11596            ml
11599         drops
11600           tsp
11620         drops
11621         drops
11633           mcg
11637         drops
11641            mg
11651         drops
11652         drops
11653         spray
11654         drops
11655          drop
11656            ml
11660          tube
11661            ml
11662         drops
11664         drops
11666         drops
11667         drops
11671         drops
11673         drops
11678         drops
11680            ml
11681            ml
11683            ml
11691            ml
11692         drops
11693           tbs
11695            gm
11701            ml
11702           mcg
11709         drops
11710            ml
11719         units
11722         drops
11723            mg
11735         drops
11742            ml
11802            mg
11806         spray
11813            mg
11814         spray
11817            mg
11822          tube
11823            ml
11824            ml
11825            ml
11832           mcg
11833 other specify
11835            ml
11836         drops
11837          pump
11840            mg
11844            mg
11846            mg
11847          pump
11848         drops
11850            mg
11861           mcg
11862           mcg
11873         drops
11874          tube
11875         drops
11881            ml
11882         drops
11889            gm
11898           mcg
11911            mg
11919            ml
11930          drop
11959            mg
11960         spray
11962            mg
11964          drop
11978          tube
11979            ml
11980         drops
11983         units
11993         drops
12009         drops
12010         drops
12014            ml
12018            ml
12019         spray
12020          tube
12043            mg
12047            mg
12048            ml
12051            gm
12054         drops
12090         pumps
12108         drops
12111            ml
12120   unspecified
12128            ml
12129            ml
12130         drops
12135            ml
12136            ml
12154            gm
12155         spray
12159          drop
12160         drops
12164         spray
12173         drops
12215           mcg
12223          tube
12261          tube
12271          tube
12273          tube
12279         drops
12283            mg
12299            mg
12306           tsp
12309           tsp
12313            mg
12314            mg
12322            mg
12324         drops
12334            mg
12336            mg
12337         drops
12342            ml
12343          tube
12346            mg
12349          tube
12351            mg
12353            mg
12364            mg
12366         spray
12376            mg
12379            mg
12394   unspecified
12398           mcg
12402          tbsp
12409            ml
12410            ml
12411         drops
12414          drop
12415          pump
12417         spray
12418         spray
12420         drops
12421         units
12422         units
12423         drops
12427   unspecified
12453           mcg
12454         spray
12455           mcg
12456          tube
12457         drops
12461          tube
12462         spray
12463           tbs
12473          pump
12474          drop
12475            mg
12477   unspecified
12481            ml
12485         drops
12487            mg
12495         drops
12497         pumps
12498            gm
12500            gm
12506         drops
12514         drops
12516         units
12520            ml
12521            gm
12523         drops
12529         spray
12530          drop
12535         drops
12536         units
12540            ml
12541         spray
12543            ml
12546          tube
12549         units
12550            ml
12551           tsp
12552          tube
12553            gm
12554            gm
12569            mg
12571            gm
12578           mcg
12580           mcg
12585           mcg
12588            mg
12589           mcg
12595            mg
12596            mg
12605            mg
12608            mg
12615            ml
12616          tube
12620          tube
12623         drops
12630         units
12632         drops
12636   unspecified
12638          pump
12639          pump
12642           mcg
12645            mg
12686         spray
12692            mg
12693         spray
12714         drops
12730         drops
12732         drops
12735         drops
12738            mg
12740            mg
12744            mg
12749            mg
12754            mg
12755            mg
12756         drops
12771            gm
12774         drops
12780         spray
12784            ml
12787         drops
12788          tbsp
12795         pumps
12796            gm
12797            gm
12801         drops
12826            ml
12828          tube
12836            mg
12849         drops
12850         drops
12861         drops
12865         drops
12866          pump
12870         spray
12873         drops
12879          tube
12880         drops
12881          tube
12882         drops
12894         drops
12895         drops
12901           mcg
12902            mg
12903            mg
12905            ml
12906         drops
12907         spray
12908         drops
12911   unspecified
12916         spray
12920         drops
12929         drops
12942         drops
12943         drops
12945         spray
12948          tube
12949           mcg
12952          pump
12955            ml
12956            ml
12957         drops
12962         drops
12963          drop
12966         drops
12994            gm
13005            ml
13006         drops
13008         drops
13010   unspecified
13013   unspecified
13020   unspecified
13041         drops
13049          tube
13061         spray
13062            ml
13074   unspecified
13075         units
13076         units
13081   unspecified
13084            mg
13086            mg
13096            gm
13104   unspecified
13108            mg
13109            mg
13114            mg
13115            mg
13116            mg
13124         drops
13126         drops
13127            ml
13129         spray
13130            ml
13133         drops
13136          tube
13137            gm
13139           mcg
13142         drops
13143          tube
13148            mg
13149           tsp
13150         drops
13151            ml
13152            ml
13154            mg
13157          drop
13159   unspecified
13160   unspecified
13168            gm
13169          tube
13170         drops
13187         drops
13188            ml
13189           mcg
13195         drops
13196         drops
13198         drops
13199            ml
13233         drops
13246         drops
13248         units
13249         units
13264           mcg
13277         drops
13278            gm
13279            ml
13286            gm
13287            oz
13297         drops
13298          tube
13299           mcg
13307         drops
13308          tube
13313         spray
13314         drops
13321         drops
13331            gm
13332          tube
13334            mg
13340         drops
13341          tube
13343         drops
13344          drop
13349            mg
13353         drops
13354            ml
13355            ml
13356            mg
13357            ml
13376         units
13405            mg
13411   unspecified
13454         drops
13455         drops
13456            mg
13459         drops
13460            ml
13461         drops
13462          drop
13464           mcg
13468         drops
13470          tube
13471           tsp
13475            ml
13476          tube
13479            ml
13483         drops
13484         drops
13496         drops
13502         units
13503         units
13506            ml
13532            ml
13537            mg
13538            gm
13562            mg
13563         drops
13564            mg
13575          pump
13576            ml
13579         drops
13581            mg
13585            mg
13590          tube
13594         drops
13595         drops
13601         drops
13603            mg
13605            mg
13609          tube
13615         drops
13623         drops
13624         tube 
13625          tube
13628          tube
13631         spray
13654          tube
13657         drops
13666          drop
13693          drop
13723          drop
13724          pump
13730          pump
13737          pump
13740   unspecified
13741   unspecified
13747            mg
13756         drops
13768         drops
13769        sprays
13776         drops
13782          tube
13783           tsp
13796         spray
13893            mg
13894            mg
13896          tbsp
13902            mg
13905            mg
13906            mg
13910            ml
13912   unspecified
13913   unspecified
13925            mg
13943         units
13946         spray
13996         drops
13998         drops
14006         spray
14007        sprays
14050          drop
14051         pumps
14055            mg
14059         drops
14060         drops
14061            mg
14062            mg
14063         drops
14064         spray
14106         spray
14114          drop
14118            mg
14123            ml
14128            mg
14129            ml
14131            ml
14147         spray
14148            ml
14151            ml
14154            ml
14162            ml
14163            ml
14164         drops
14165         units
14170         spray
14172         spray
14173            ml
14174            ml
14175         drops
14177          tbsp
14178        sprays
14180         drops
14181           ml 
14190            mg
14219           ml 
14221         drops
14228   unspecified
14238          drop
14241            ml
14242           mcg
14245            ml
14282            mg
14284         units
14291           tsp
14301          drop
14302          drop
14319           mcg
14323         spray
14324         drops
14330         drops
14334         spray
14336         drops
14365           mcg
14373         spray
14376            ml
14378         spray
14380            ml
14385            mg
14386            mg
14387            mg
14388            mg
14404            mg
14408          pump
14412            mg
14413            ml
14414          tube
14426            mg
14428            mg
14429          drop
14431         drops
14432            ml
14433          pump
14434          tube
14443            ml
14444            ml
14445         spray
14446         spray
14447         spray
14448         drops
14449         drops
14451            ml
14455          tube
14471           ml 
14473            ml
14477         units
14479         spray
14488         spray
14489            ml
14490          drop
14495            ml
14498        sprays
14499          drop
14512         units
14513         units
14528          drop
14563            mg
14576            ml
14578            ml
14582            ml
14583         drops
14584         drops
14585         drops
14586         spray
14587         spray
14588            ml
14601         drops
14605            mg
14608            mg
14637         drops
14645            mg
14654 other specify
14656            mg
14658           mcg
14664         spray
14665          tube
14697          drop
14699         drops
14700            ml
14701         drops
14702           mcg
14711         drops
14712          tube
14713            ml
14720            ml
14721            ml
14722          tbsp
14723          tbsp
14726        sprays
14728            mg
14730            mg
14733            mg
14737         drops
14738         drops
14744          tube
14748         pumps
14754          tube
14755         spray
14756         drops
14757         drops
14760         drops
14764         drops
14775   unspecified
14777   unspecified
14778   unspecified
14833            mg
14834            mg
14838            mg
14839            mg
14857         units
14858            mg
14862            mg
14863            mg
14864         units
14867            mg
14870         units
14871         units
14878   unspecified
14899            ml
14911            mg
14913            mg
14914           mcg
14934         units
14943         units
14944            ml
14949            mg
14972         drops
14973          drop
14974         spray
14975         drops
14981         drops
14982         drops
14983            gm
15001           mcg
15002            oz
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15017            ml
15021           mcg
15022            oz
15023          tube
15027            oz
15028            mg
15029            mg
15030            ml
15035         units
15036         units
15045            mg
15048          tube
15055            mg
15059         drops
15061        sprays
15077         drops
15102         drops
15129         drops
15139         drops
15140         spray
15144         units
15145         units
15150           tsp
15151         units
15155   unspecified
15179            mg
15196            ml
15197         drops
15209          tube
15213            ml
15244            mg
15250            ml
15256         units
15259           tsp
15268            gm
15269         drops
15274   unspecified
15308         spray
15309            ml
15310            ml
15311          tube
15314         units
15315          tube
15317          tube
15321        sprays
15322         spray
15323            oz
15332          drop
15333            gm
15339            mg
15345            mg
15348            mg
15361         drops
15362         drops
15363         drops
15365         drops
15366            ml
15367            ml
15373            ml
15374         drops
15375         drops
15376          drop
15377         drops
15378            ml
15383            mg
15384            mg
15402            oz
15412           mcg
15441            mg
15445         drops
15451          pump
15453           ml 
15454   unspecified
15512         units
15513         units
15515        sprays
15528            mg
15530            ml
15531            mg
15533         drops
15551          drop
15552          tbsp
15554          tube
15555            ml
15556           ml 
15563          pump
15581         drops
15584         drops
15585            ml
15586         spray
15589         drops
15590            ml
15591          pump
15592         drops
15593            ml
15594         drops
15597          drop
15598          tube
15599            ml
15600          tube
15601         drops
15603   unspecified
15604   unspecified
15613           mcg
15618           mcg
15633            mg
15636         units
15649         spray
15650         drops
15661         drops
15663          tube
15667         drops
15669           mcg
15672           mcg
15673           mcg
15674            mg
15689            ml
15690         units
15693         units
15701            ml
15706          pump
15707            mg
15712          tube
15715            mg
15733           mcg
15750   unspecified
15757        sprays
15758         spray
15767         drops
15768         drops
15769         drops
15770         drops
15778            ml
15781         drops
15782         drops
15790          drop
15796            mg
15799   unspecified
15811            ml
15815            ml
15818         units
15829           mcg
15839            gm
15840            ml
15841            gm
15842           tsp
15844          drop
15849         drops
15850         drops
15856         spray
15858            mg
15859         drops
15862        sprays
15863         drops
15868         drops
15869         drops
15870            ml
15886           tsp
15888   unspecified
15889         drops
15890            mg
15891         drops
15892            mg
15907         drops
15911         units
15917         drops
15921          drop
15922            ml
15927            iu
15928         drops
15930         units
15933            iu
15935         units
15937            ml
15944            mg
15945         units
15981            ml
15983            ml
15986            ml
15992            gm
15993            ml
15995         drops
15996            ml
15997           tsp
15998            ml
15999         drops
16000         drops
16005            mg
16007            mg
16009            ml
16016          tube
16026         spray
16033           mcg
16036         spray
16038         drops
16039         spray
16052          tube
16053            ml
16094           mcg
16097            ml
16098            ml
16105            mg
16107            ml
16108            mg
16109            mg
16110         units
16112         mg/kg
16113         drops
16114         drops
16116            mg
16117            mg
16118            mg
16150         drops
16155            ml
16156          drop
16157         spray
16158          drop
16159          tube
16160            ml
16163         tube 
16164            ml
16165            ml
16177            ml
16179            ml
16199            mg
16229          tube
16230            gm
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16251         drops
16253            gm
16286   unspecified
16287            ml
16288            ml
16289            ml
16290         drops
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16312         spray
16313         drops
16315         drops
16316          tube
16318         drops
16319          tube
16321          tube
16322          tube
16324          tube
16325            gm
16340           tsp
16347 other specify
16352            mg
16355           tsp
16356         drops
16367         drops
16371         drops
16374         drops
16376   unspecified
16378         drops
16382         drops
16387          tube
16388         spray
16389           mcg
16400          pump
16401            ml
16403          tbsp
16404          tube
16408           mcg
16413         spray
16414            ml
16418            ml
16419         drops
16420          drop
16425          pump
16426         spray
16434            mg
16435            mg
16436            mg
16437            mg
16440         drops
16441         spray
16442          tube
16443         drops
16447          tube
16448         drops
16450         drops
16462            ml
16472            mg
16474         spray
16477            mg
16478         drops
16479         spray
16497         drops
16522         drops
16523          tube
16524         spray
16525            mg
16526            ml
16544          pump
16546         units
16553          tube
16579 other specify
16580            ml
16596          tube
16597         drops
16598         pumps
16599            gm
16601            gm
16605           tbs
16606            ml
16608         drops
16624            mg
16635            gm
16636         drops
16639         drops
16657         drops
16684         drops
16685            ml
16687           mcg
16694           mcg
16702            ml
16703         spray
16704            ml
16705            ml
16711          tube
16712            ml
16714         drops
16717            ml
16718            ml
16721           tsp
16723          tube
16724           tbs
16726            gm
16749            mg
16751            mg
16774            gm
16777            gm
16778            gm
16779            gm
16783   unspecified
16784   unspecified
16785   unspecified
16791            ml
16793            mg
16798         drops
16805          pump
16807         spray
16809         spray
16810           mcg
16811 other specify
16814            ml
16815         spray
16816         drops
16821            ml
16823         drops
16834   unspecified
16838   unspecified
16840   unspecified
16841   unspecified
16847   unspecified
16869         spray
16877            mg
16882          tube
16918            ml
16931            mg
16933            mg
16939         drops
16970           mcg
16983         drops
16993            ml
16994          tube
16998         drops
16999           mcg
17000            ml
17010           mcg
17012         spray
17013            gm
17014          tube
17018           tsp
17019          pump
17020   unspecified
17022         drops
17042          tube
17062         drops
17088           mcg
17090         drops
17091         drops
17098           mcg
17099            mg
17120            ml
17121         drops
17126         spray
17127         drops
17138         drops
17143         spray
17153           mcg
17156         drops
17157         drops
17173         drops
17177         drops
17180         spray
17209          tube
17218           mcg
17220           mcg
17221           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17232          drop
17233         drops
17234         drops
17236            gm
17237            ml
17239         drops
17252           tsp
17254          pump
17255          tube
17263            mg
17264            mg
17268         spray
17283           mcg
17285           mcg
17297            mg
17298          tbsp
17307            mg
17308            mg
17309            mg
17310            mg
17314            mg
17327            gm
17329            gm
17330            gm
17335          drop
17352         drops
17355         spray
17387           mcg
17389           mcg
17390            ml
17391           mcg
17393          tube
17399          tube
17406            gm
17407         drops
17412   unspecified
17417          tube
17418           tsp
17426   unspecified
17427   unspecified
17446         drops
17461            mg
17463          drop
17468            mg
17470            gm
17482            oz
17486         drops
17487            ml
17488         drops
17489         drops
17490          tube
17491         drops
17492         drops
17493         drops
17495            ml
17496            ml
17518            ml
17519         drops
17576         drops
17583            ml
17588         drops
17602         drops
17605            mg
17611         pumps
17615            gm
17627            ml
17659         drops
17672            mg
17673            mg
17680   unspecified
17697            mg
17702            mg
17703            mg
17719            mg
17720         drops
17722          tube
17742         drops
17755         spray
17779         spray
17780            mg
17781         drops
17782         spray
17798         drops
17802         drops
17803   unspecified
17804   unspecified
17818         drops
17832          tube
17845         drops
17853   unspecified
17855         drops
17856         drops
17860   unspecified
17863            ml
17865   unspecified
17882            mg
18023            gm
18024            ml
18057         drops
18058         drops
18072         drops
18074         drops
18075            ml
18094         drops
18095          drop
18096            ml
18098         drops
18114            mg
18115            mg
18116            mg
18118          tube
18124         drops
18134   unspecified
18141   unspecified
18147         drops
18165            ml
18192            iu
18193            mg
18195            mg
18199            mg
18202            ml
18205          tube
18213         units
18214            ml
18217           mcg
18218           mcg
18238          tube
18251         drops
18258 other specify
18260            mg
18262 other specify
18263            iu
18264            mg
18266            mg
18271            ml
18275          tube
18276         drops
18323   unspecified
18325   unspecified
18326   unspecified
18337            ml
18338         drops
18339          drop
18340          pump
18341          pump
18342         units
18344            ml
18365         drops
18366         drops
18370        sprays
18371         drops
18373          tube
18374           tsp
18404         drops
18415         spray
18427          drop
18441            mg
18459            ml
18460           tsp
18461          tbsp
18469         spray
18471         spray
18479            mg
18480            mg
18483            mg
18489            ml
18490          tbsp
18494          drop
18495          drop
18500         spray
18502         spray
18514           tsp
18520         spray
18525            mg
18534         spray
18565          drop
18571         pumps
18572          pump
18576          tube
18577         drops
18580          tube
18588   unspecified
18591            ml
18595         spray
18609            mg
18612          drop
18621         drops
18649          drop
18687         drops
18689            mg
18690           mcg
18694            mg
18696            ml
18697         spray
18703            ml
18707           mcg
18716            ml
18718            ml
18729            ml
18734            ml
18735         drops
18736          drop
18743            ml
18750           mcg
18774            mg
18775            mg
18795         spray
18796         spray
18797         spray
18798            ml
18799           mcg
18800           mcg
18820         drops
18829            mg
18837           ml 
18838           ml 
18839           ml 
18844           ml 
18845          drop
18847          drop
18850          drop
18882         drops
18908         drops
18909           tsp
18919          drop
18921          drop
18924          drop
18933            mg
18935         spray
18936            ml
18937         spray
18961         spray
18964          pump
18991            ml
18993           tbs
18997            mg
18998   unspecified
19003   unspecified
19004         drops
19005        sprays
19006          pump
19008            ml
19009           tsp
19015            mg
19019            mg
19021   unspecified
19022          tube
19023         drops
19040            mg
19041            mg
19055         drops
19056            ml
19057         mg/ml
19061          pump
19062            mg
19068            mg
19070            ml
19072         spray
19073         spray
19078         spray
19082         drops
19122         drops
19130            ml
19152         drops
19153           ml 
19154            ml
19159   unspecified
19165         spray
19169         spray
19170            ml
19183          drop
19184            ml
19213        sprays
19214          drop
19215         drops
19216          drop
19220           mcg
19221         spray
19222         drops
19223            ml
19224            ml
19246            ml
19252            mg
19253            mg
19254            mg
19271         spray
19272         spray
19273            ml
19278            ml
19281         drops
19282         spray
19288         drops
19298         drops
19299         drops
19318            ml
19325         drops
19326         drops
19327          tube
19338            ml
19350            ml
19353   unspecified
19354   unspecified
19356           mcg
19357        sprays
19373         drops
19386         drops
19387          tube
19390         pumps
19391          tube
19423         spray
19427            gm
19445         drops
19446         drops
19447            ml
19448          pump
19449           tsp
19450           tsp
19452   unspecified
19453   unspecified
19454   unspecified
19457          tube
19462         drops
19463         drops
19464         drops
19465         drops
19476         drops
19482          tube
19486         units
19487         drops
19492            ml
19493         drops
19495         spray
19537         drops
19596            mg
19603         drops
19617            ml
19641   unspecified
19662         drops
19663            mg
19673            gm
19674            gm
19685            ml
19686            mg
19688         spray
19689            mg
19710            ml
19711        sprays
19712         spray
19713         spray
19714         drops
19715            ml
19716            ml
19717            ml
19718            ml
19722          tube
19735          tube
19737         drops
19741         units
19754            mg
19768            ml
19771            mg
19776         drops
19777         drops
19778         drops
19788            ml
19790            oz
19792   unspecified
19801         drops
19803        sprays
19823         drops
19828         spray
19829         drops
19838   unspecified
19843         drops
19844            ml
19845         drops
19851         units
19856         spray
19876            mg
19881   unspecified
19888           tsp
19907            mg
19909            mg
19911           tsp
19912         drops
19914            ml
19917            ml
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19930            mg
19932         units
19933            ml
19944            mg
19945            mg
19946         drops
19947            mg
19948            mg
19949            mg
19950            mg
19952          tube
19958          pump
19975           mcg
19984   unspecified
20003           mcg
20006            mg
20007         spray
20019            ml
20020          drop
20027         drops
20028         drops
20065            ml
20068            mg
20069         drops
20070            ml
20072           mcg
20074            mg
20096            ml
20099         spray
20105            ml
20106            ml
20125            ml
20126          tube
20127          tube
20130         drops
20131            mg
20135            mg
20144          drop
20145            mg
20149         drops
20150          drop
20164         drops
20173         drops
20174            ml
20175            gm
20182          drop
20218          tbsp
20219          tube
20220            mg
20221           ml 
20222          pump
20224         drops
20232         drops
20233         spray
20234         drops
20240            ml
20241          pump
20243         drops
20244            ml
20245         drops
20251          drop
20275            mg
20282            mg
20292           mcg
20293            ml
20295          tube
20297         units
20298         drops
20300            ml
20301          tube
20302            mg
20303 other specify
20306         units
20315   unspecified
20337         drops
20339         drops
20340          tube
20342          tube
20343            gm
20344            mg
20348          pump
20356            mg
20374          tube
20376          tube
20377            gm
20380            ml
20382            mg
20387            ml
20388          drop
20390          drop
20392         drops
20393         drops
20402          pump
20405          pump
20409            mg
20411            mg
20413            mg
20425          tube
20426        sprays
20441         spray
20444          tube
20446            ml
20453            mg
20460            mg
20485          tube
20490            ml
20491            ml
20510         drops
20511         drops
20512          drop
20516            ml
20517            ml
20518            ml
20554            ml
20555            gm
20561            ml
20565            gm
20568           tsp
20574         drops
20577   unspecified
20579         drops
20585         spray
20615   unspecified
20623          tube
20636            ml
20638            ml
20641         drops
20642            ml
20645         drops
20648            ml
20651            ml
20659   unspecified
20666   unspecified
20667   unspecified
20678   unspecified
20698           tsp
20701            gm
20702            ml
20704          tube
20705         drops
20707            ml
20708         drops
20709         drops
20712         drops
20717         spray
20718            mg
20728            mg
20738            mg
20748           mcg
20761            mg
20762            mg
20763            mg
20766            mg
20767            mg
20771            mg
20783           mcg
20791   unspecified
20796   unspecified
20800         drops
20808        sprays
20809            gm
20814          pump
20817            mg
20819            mg
20849         drops
20852            mg
20854            mg
20855            mg
20858           mcg
20861         drops
20862            ml
20863            ml
20872            ml
20897            oz
20918            mg
20939            ml
20940         drops
20947           tsp
20949            ml
20962         units
20963         units
20964          tube
20965         units
20966         units
21003         drops
21013         spray
21022            mg
21025            mg
21029            mg
21074            ml
21078            ml
21080            mg
21088            ml
21102         units
21109         drops
21110          pump
21111            gm
21112         drops
21114          tube
21115         drops
21119            mg
21122          tube
21123         drops
21125            mg
21127         drops
21130            mg
21131            ml
21133         spray
21168            mg
21169            ml
21178            ml
21179            mg
21180            mg
21181         drops
21182            mg
21190            ml
21201            mg
21224            ml
21253            mg
21254            ml
21256            mg
21267            mg
21268         drops
21269          tube
21273            mg
21278         drops
21282         drops
21287         drops
21309            mg
21326         drops
21331   unspecified
21338         pumps
21359            mg
21361            mg
21369            ml
21384           mcg
21385            mg
21386         drops
21387            gm
21388            gm
21389            gm
21403            mg
21413   unspecified
21416         spray
21442            mg
21445          drop
21448         drops
21449         spray
21465            mg
21472            mg
21481         drops
21492         drops
21493          tube
21495            mg
21504          tube
21507          tube
21508         drops
21509            gm
21527         drops
21528           tsp
21531           mcg
21532         drops
21533          pump
21549            mg
21552          tube
21553         drops
21555            ml
21558            mg
21562         spray
21563          pump
21564            ml
21585          tbsp
21586          tube
21593   unspecified
21600            ml
21602            mg
21605         units
21607            mg
21608            mg
21609            mg
21612            mg
21614         spray
21615         drops
21616          drop
21617            mg
21618            mg
21619         spray
21620          tube
21621         drops
21622          tube
21625           tsp
21632   unspecified
21642         spray
21643            mg
21644         spray
21645         spray
21646         spray
21648          tube
21649         drops
21650          tube
21651            mg
21652 other specify
21653         spray
21654            mg
21655          tube
21658        sprays
21659          pump
21660          drop
21661          tube
21666            ml
21673   unspecified
21677   unspecified
21678         drops
21680         drops
21685            gm
21701            gm
21705         spray
21707            ml
21708         drops
21723            mg
21725           tsp
21727            ml
21739            mg
21748            ml
21749            gm
21753            mg
21754            mg
21755            mg
21757            mg
21767            mg
21783 other specify
21796           mcg
21809   unspecified
21810   unspecified
21814            ml
21815         drops
21833            mg
21851            mg
21865           mcg
21869           mcg
21872            ml
21873            mg
21875           mcg
21876           mcg
21877            ml
21878   unspecified
21886   unspecified
21894           tbs
21897            gm
21898            gm
21912           mcg
21918            gm
21921         drops
21925          pump
21949         drops
21955           tbs
21956           tbs
21959            mg
21982         drops
21993         drops
22020          pump
22023         spray
22025         spray
22026         spray
22037         spray
22038         drops
22041            ml
22042          drop
22043            ml
22045         drops
22046         drops
22048         drops
22050         units
22051            mg
22060            mg
22062         drops
22064         spray
22088          tube
22089            ml
22092            ml
22093         drops
22118          tbsp
22120         pumps
22121         drops
22125         units
22128            ml
22136            ml
22140          tube
22141         drops
22151   unspecified
22160         units
22161          tube
22163         units
22173          pump
22175         spray
22176           mcg
22177            mg
22179         drops
22189          tube
22190         drops
22196         drops
22199         spray
22201   unspecified
22216            ml
22217         drops
22218         drops
22219         drops
22222         drops
22223         spray
22224         drops
22225            mg
22226            mg
22227            mg
22228            mg
22229          tube
22230            mg
22237            mg
22238            mg
22239            mg
22240            ml
22241            ml
22243   unspecified
22245            mg
22253          tube
22261          tube
22262          drop
22265         drops
22267         drops
22268            gm
22270            ml
22272         drops
22289            mg
22299            mg
22306         drops
22308            mg
22311            mg
22313          tube
22315           tsp
22316            mg
22321          tube
22323         spray
22341         spray
22342          tube
22343          tbsp
22345   unspecified
22346   unspecified
22347   unspecified
22349   unspecified
22351            mg
22352            mg
22353            mg
22367         units
22404            gm
22407            mg
22408          drop
22410         drops
22413         spray
22417          pump
22430         spray
22439            ml
22440            mg
22441          tube
22459   unspecified
22463   unspecified
22530            mg
22531          tube
22532           tsp
22533         drops
22534            mg
22537            ml
22540   unspecified
22541          drop
22545          drop
22546          drop
22547         drops
22548            mg
22549         drops
22552   unspecified
22557         drops
22558          tube
22574         units
22575         drops
22577           mcg
22578         drops
22579           mcg
22583            ml
22585   unspecified
22598            ml
22601         units
22606         drops
22607            ml
22610            mg
22611            mg
22625         drops
22653         drops
22655          pump
22656         pumps
22662            gm
22667            ml
22669         drops
22672         drops
22673            mg
22681          tube
22682         drops
22683          tube
22690         spray
22691            mg
22692         drops
22693         spray
22704          drop
22705         drops
22707            gm
22708          tube
22711         drops
22713          drop
22714            gm
22716           tsp
22717            ml
22718            ml
22719            ml
22733            ml
22748            ml
22749            mg
22750 other specify
22751            mg
22752            mg
22754         drops
22763         drops
22764         drops
22765         drops
22766            mg
22770            mg
22777            mg
22778            mg
22779            mg
22780            mg
22795         drops
22796         drops
22797         drops
22798          tube
22799           tsp
22800            ml
22801          tube
22802            ml
22803         drops
22804         drops
22830            mg
22840           mcg
22848          drop
22853            ml
22858            ml
22875            ml
22886            gm
22909           mcg
22919         drops
22920          pump
22922         drops
22923          tube
22926          tube
22929            ml
22936            ml
22938            ml
22939         drops
22954            ml
22963          tube
22965         drops
22966         tube 
22971          tube
22990         spray
22992         drops
22994          drop
23006         drops
23007         drops
23018            mg
23019            mg
23024          pump
23043            ml
23049           mcg
23051           mcg
23053         drops
23055         units
23059        sprays
23060         drops
23061          tube
23064            mg
23066         spray
23083            mg
23095         spray
23096          drop
23100         drops
23102            mg
23103         drops
23108   unspecified
23122         spray
23123         spray
23124         spray
23125            ml
23134            mg
23137            mg
23138          drop
23143            mg
23144            mg
23153   unspecified
23154         drops
23163   unspecified
23169            mg
23173        sprays
23175           mcg
23202          tube
23237            mg
23249         drops
23250          pump
23251         units
23258           mcg
23259          tube
23266          tube
23267           mcg
23268 other specify
23276            ml
23278         spray
23279           mcg
23280            mg
23283            ml
23284            mg
23286           mcg
23288          drop
23294           mcg
23299            mg
23304         drops
23308            ml
23321            mg
23322            ml
23325         spray
23333         units
23336            ml
23337            ml
23338            ml
23340            ml
23341           mcg
23342         drops
23344           mcg
23345 other specify
23349          drop
23350           mcg
23353            mg
23355            ml
23356           mcg
23360           mcg
23364         drops
23366   unspecified
23384            ml
23388            ml
23403            ml
23404           tsp
23413          tbsp
23414        sprays
23419           ml 
23427           ml 
23428            mg
23437          drop
23450          drop
23456           ml 
23472          drop
23482         drops
23484         drops
23485           tsp
23487          drop
23491            mg
23507          drop
23520          drop
23533         drops
23534         spray
23540            ml
23541         spray
23552         units
23553          pump
23557         drops
23565         drops
23566         drops
23568         spray
23571            ml
23572         drops
23588         drops
23590         spray
23610            mg
23617            ml
23618        sprays
23619            mg
23620          pump
23622            ml
23646           tsp
23647          tube
23651          drop
23657         drops
23659          tube
23685         drops
23686          drop
23688         drops
23707            ml
23718           mcg
23721          tube
23722            ml
23724            ml
23730         spray
23732         spray
23740         drops
23747            mg
23749           mcg
23757           mcg
23804            mg
23805          tube
23808           ml 
23809            ml
23819            ml
23861         spray
23862         spray
23866          drop
23868         drops
23871         drops
23872          drop
23873         drops
23898          drop
23899          drop
23900          tube
23901         spray
23902         drops
23905            ml
23906            ml
23909            ml
23910         drops
23914         drops
23917         drops
23933         drops
23942            gm
23955            ml
23956         drops
23957   unspecified
23958   unspecified
23959   unspecified
23965         drops
23969           tbs
23974         drops
23976            ml
23980         units
24010            mg
24012            ml
24017            mg
24018            mg
24019            mg
24020            mg
24022            mg
24029            mg
24045           mcg
24046            mg
24062          tbsp
24068          tbsp
24072            mg
24075        sprays
24076         drops
24077         drops
24079          tube
24104            mg
24106            mg
24116         spray
24117            gm
24139            mg
24142         drops
24144            mg
24145          pump
24149            mg
24154   unspecified
24155   unspecified
24157            ml
24162           tsp
24165          tube
24166         drops
24172         drops
24174         drops
24185            mg
24189            mg
24192            mg
24193            mg
24194            mg
24195            mg
24203         drops
24205   unspecified
24206   unspecified
24207   unspecified
24208   unspecified
24209         drops
24215         drops
24217         drops
24221         drops
24222         drops
24246            mg
24253         spray
24257          tube
24258            ml
24259        sprays
24267            ml
24268            ml
24269            mg
24276         units
24282          tube
24312         drops
24313         drops
24314          tube
24319            mg
24322         drops
24328            mg
24343            mg
24375            mg
24393         drops
24400            mg
24402        sprays
24403         drops
24405            mg
24406            mg
24407            mg
24409            oz
24413         drops
24416         spray
24417          drop
24420           tsp
24421           tsp
24422           tsp
24424           tsp
24425           tsp
24426            ml
24431         units
24432         units
24435            ml
24437            ml
24451         drops
24452            gm
24453         drops
24455         drops
24459            mg
24460            mg
24468            mg
24473            mg
24475            mg
24476          tube
24477          pump
24478          tube
24480            ml
24481        sprays
24486            ml
24514         drops
24520         drops
24521         drops
24526         drops
24534            ml
24536           mcg
24593         drops
24597            mg
24598            mg
24599            mg
24601            mg
24602            mg
24605            ml
24610            ml
24647         drops
24648            ml
24653         drops
24660         spray
24669         drops
24688         drops
24707           tsp
24733           mcg
24734            mg
24758          pump
24762           mcg
24768          drop
24769            gm
24802            ml
24804            mg
24805            mg
24806            mg
24817          tbsp
24819          tube
24824            ml
24825           ml 
24827         units
24828         drops
24829         drops
24830            ml
24850            mg
24867          pump
24878         drops
24898         drops
24902            mg
24917          tube
24918            ml
24919            mg
24935            mg
24937            mg
24938            mg
24940            mg
24942            mg
24948         drops
24949            mg
24950          drop
24963            mg
24964            mg
24968            ml
24969          tube
24971            gm
24973         spray
24974         drops
24975         drops
24982          tube
24984            mg
24985          tube
24987            gm
24988         drops
24989          tube
24993         drops
25020            mg
25021            gm
25022            mg
25059           mcg
25079          drop
25087          drop
25094            mg
25099           mcg
25100            mg
25118          tube
25119          tube
25120        sprays
25124         drops
25129          tube
25191         drops
25196          tube
25198         drops
25233            ml
25234         drops
25241         drops
25255          drop
25258            ml
25262   unspecified
25269            mg
25270            mg
25296           mcg
25299            gm
25300            ml
25310         units
25311         drops
25315         units
25316         units
25317         units
25342          tube
25343         drops
25345         drops
25346         drops
25347   unspecified
25367            ml
25405            gm
25409            ml
25410          tube
25417         drops
25421            ml
25424            mg
25425            mg
25437            mg
25444            mg
25473         drops
25482   unspecified
25493         drops
25494          drop
25501            ml
25514            mg
25515            mg
25516            mg
25520         drops
25521        sprays
25523            gm
25547            ml
25554            mg
25555            mg
25556            mg
25557            mg
25575            mg
25576         drops
25577            ml
25589            mg
25591            mg
25612            mg
25617            ml
25619            ml
25622   unspecified
25660            ml
25663            gm
25666            ml
25670         drops
25671            ml
25674         drops
25683        mcg/kg
25706         drops
25707          tube
25708         spray
25725         spray
25727         spray
25730          tube
25737   unspecified
25740            ml
25741            ml
25743            ml
25744         drops
25748          pump
25749          pump
25750         drops
25751          tube
25753         drops
25754          tube
25755         drops
25756          tube
25757         spray
25765            ml
25795         drops
25804            mg
25806            gm
25807            gm
25819            mg
25820          drop
25827          drop
25828            mg
25830            mg
25837          tube
25846            ml
25884         drops
25887         spray
25888         tube 
25919            mg
25936   unspecified
25937   unspecified
25939            ml
25940            ml
25941           mcg
25943         drops
25948            mg
25949 other specify
25950            gm
25951           mcg
25953           mcg
25954         drops
25964           mcg
25965            mg
25966           mcg
25981         drops
25983         drops
25985            ml
25986            ml
25998   unspecified
26004           mcg
26022            mg
26024            ml
26027            mg
26031            gm
26033         spray
26037          drop
26039         drops
26047         spray
26048         drops
26050         drops
26054          tube
26056         drops
26064          tube
26075            mg
26078            mg
26084   unspecified
26085   unspecified
26093            gm
26114           tsp
26115           tsp
26127         drops
26128          pump
26129            gm
26133         drops
26134            ml
26138         units
26139          tube
26141          tube
26148         spray
26151          pump
26152            ml
26156         spray
26157            ml
26158         units
26159         units
26165          drop
26166          pump
26184         spray
26187         spray
26190          drop
26192          tube
26197         drops
26199         spray
26203          tube
26204         drops
26207         drops
26208         drops
26211         units
26212         units
26214         spray
26215         spray
26227            mg
26229   unspecified
26258            oz
26265            mg
26278         drops
26279          drop
26280         drops
26281            ml
26282          tube
26287          tube
26295         drops
26300         units
26307            gm
26315            gm
26336   unspecified
26337   unspecified
26355         drops
26375            ml
26380            ml
26386            gm
26387            mg
26391   unspecified
26393         spray
26395            mg
26399            mg
26400            mg
26401            mg
26433   unspecified
26454            mg
26464            ml
26471            mg
26473            mg
26475            ml
26476          tube
26488            ml
26489         drops
26490            ml
26502            ml
26505           tsp
26517            gm
26518            gm
26519            gm
26520            gm
26521            mg
26522            gm
26534   unspecified
26543          tube
26544         drops
26546         drops
26551            mg
26553            mg
26568         drops
26574         drops
26583         drops
26590          pump
26591         spray
26592         spray
26610         drops
26611         drops
26615            ml
26629          drop
26631         drops
26637           mcg
26638         drops
26643            mg
26644 other specify
26645         drops
26647   unspecified
26650         drops
26651         spray
26655            mg
26662            ml
26663         drops
26668          tbsp
26669         pumps
26670            gm
26675            mg
26676          tube
26677           mcg
26694            mg
26720            mg
26721            mg
26722          tube
26723            mg
26724            mg
26726          tube
26734         drops
26735         drops
26736           mcg
26738            mg
26740            mg
26742            mg
26744            mg
26745            mg
26747            ml
26749            mg
26750           mcg
26760         drops
26769            ml
26780            mg
26803            oz
26823            ml
26825            gm
26827            mg
26830            mg
26831            mg
26833            ml
26837            ml
26839         drops
26841         drops
26842          drop
26843         drops
26844         drops
26846            gm
26847         drops
26848         drops
26849         drops
26850          tube
26851         drops
26852           mcg
26853            mg
26861          tube
26862         units
26863         units
26865         units
26867         drops
26868         drops
26869         pumps
26870            ml
26871         drops
26872            oz
26905            ml
26926         drops
26930         spray
26931          pump
26932            mg
26944         spray
26948            ml
26972            mg
26974          tube
26975          tube
26976            gm
26977         drops
26978            mg
26979          tube
26980           tsp
26981         drops
26983            mg
26984            ml
26986            mg
26988            mg
26990            mg
26992            mg
27020            gm
27021         drops
27022         drops
27030            mg
27047         drops
27058         drops
27062   unspecified
27063   unspecified
27065         drops
27082            ml
27092            ml
27095         drops
27100            ml
27117         drops
27118         drops
27124          pump
27128         drops
27134            gm
27136            ml
27140         drops
27158            gm
27170          tube
27172         drops
27173          tube
27174         spray
27203           mcg
27212         units
27213           mcg
27214         drops
27217         spray
27219          drop
27220         drops
27222            gm
27223          tube
27224         drops
27226          tube
27228         units
27229          drop
27231            gm
27232         units
27247            mg
27257            ml
27258            ml
27262         drops
27265         units
27268         drops
27270         units
27273         drops
27274         drops
27275         drops
27280         drops
27281         units
27282         units
27285          drop
27306         drops
27309          tube
27311           tsp
27315           mcg
27322            ml
27333            mg
27348          tube
27349            ml
27350         drops
27358         drops
27360           ml 
27361            mg
27364            mg
27368            ml
27384            mg
27407         drops
27413            gm
27414         drops
27421          pump
27422            ml
27423           mcg
27425          tube
27427         drops
27431            ml
27432            ml
27434         drops
27445         drops
27446            ml
27447          tube
27459            mg
27465          tube
27474           mcg
27481           mcg
27492         drops
27494         drops
27500         drops
27501         drops
27502         spray
27506          tube
27507         drops
27511          drop
27512          drop
27523          drop
27529            ml
27589 other specify
27594            mg
27596            mg
27598         drops
27620          pump
27640          pump
27646          pump
27659            mg
27674   unspecified
27697        sprays
27699            mg
27700         drops
27701          tube
27704           tsp
27710         spray
27713            mg
27714   unspecified
27715   unspecified
27722         drops
27736           tsp
27745           mcg
27747            mg
27748           mcg
27750           mcg
27769           mcg
27770            mg
27772            mg
27776   unspecified
27791           mcg
27794           mcg
27802   unspecified
27824           mcg
27826           mcg
27828           mcg
27833         spray
27834         spray
27836   unspecified
27878          tbsp
27880          drop
27886         spray
27895         spray
27896           tsp
27897            ml
27898         drops
27899         drops
27910            mg
27913            mg
27917         units
27921         units
27922         units
27923         units
27927   unspecified
27929          tube
27939            mg
27940            mg
27941         drops
27942            mg
27954         spray
27957            mg
27958            mg
27959            mg
27961         spray
27962            ml
27973         drops
27974            ml
27981            ml
27982 other specify
27992         spray
27999            ml
28000 other specify
28008            ml
28010            ml
28014         drops
28015            mg
28016         spray
28018         spray
28023            ml
28024            ml
28025           tsp
28029          tbsp
28040        sprays
28045           mcg
28046           ml 
28047           ml 
28048           ml 
28049           ml 
28087          drop
28088          drop
28090         drops
28094         drops
28096   unspecified
28098            mg
28100         drops
28101           tsp
28102          drop
28103          drop
28104          drop
28105         spray
28106            mg
28108         spray
28109            ml
28116         spray
28119         spray
28120          pump
28128            mg
28130           mcg
28134         drops
28135         spray
28137            ml
28138            iu
28144         drops
28154            ml
28155            ml
28158         spray
28162            ml
28163        sprays
28164          pump
28165            mg
28166           tsp
28167   unspecified
28168         drops
28174         drops
28176          tube
28246            mg
28260         drops
28261           mcg
28263          drop
28264           mcg
28269         drops
28277            ml
28279          pump
28307          tube
28309            ml
28311            ml
28316         spray
28332         spray
28333         spray
28371         drops
28375         drops
28390         units
28392          tube
28396            mg
28397            ml
28398            ml
28399         spray
28400         spray
28401            ml
28404          drop
28407            mg
28425   unspecified
28427         drops
28437            mg
28448            mg
28449            mg
28453           mcg
28484         drops
28486         drops
28505            ml
28507            ml
28508         drops
28516         drops
28517         drops
28518            mg
28519           mcg
28520            ml
28528            mg
28531         spray
28533 other specify
28534            mg
28535            mg
28536 other specify
28538            ml
28545           mcg
28549         drops
28552            ml
28553         drops
28554         spray
28556          tube
28557          drop
28571         drops
28572   unspecified
28573         drops
28574         drops
28576            mg
28577         drops
28580            ml
28582            ml
28583            ml
28590   unspecified
28601          tbsp
28602        sprays
28605         drops
28610            mg
28621            ml
28624            ml
28660         drops
28668           mcg
28673         drops
28674           tsp
28675          tube
28685   unspecified
28686   unspecified
28687   unspecified
28693         drops
28694          tube
28696         drops
28710         drops
28714         drops
28718            gm
28719            gm
28723          drop
28726         spray
28727         drops
28730         units
28731         units
28735            mg
28736            mg
28750            gm
28751            gm
28772   unspecified
28773   unspecified
28780 other specify
28806        sprays
28809         spray
28819         spray
28826         drops
28829           tsp
28855            ml
28873         drops
28874            mg
28882         drops
28883         drops
28884         units
28888            ml
28897         drops
28899         drops
28904         drops
28907          tube
28934          tube
28939            mg
28940            mg
28941        sprays
28946            ml
28979         spray
28980         drops
28982         drops
28986          drop
28987          tube
29000         spray
29007            ml
29015          tube
29022   unspecified
29023   unspecified
29036           tsp
29039            ml
29040   unspecified
29043   unspecified
29050          tube
29053            ml
29056            ml
29060            ml
29064            ml
29067           mcg
29069           mcg
29070         drops
29071            gm
29072         drops
29073         drops
29075         spray
29078            ml
29079            ml
29081          pump
29083          tube
29086            mg
29087            mg
29091            mg
29095        sprays
29096         spray
29098            ml
29099            ml
29103           mcg
29104        mcg/kg
29108         drops
29136         drops
29139         drops
29143           mcg
29151            ml
29153            ml
29161            ml
29166         drops
29184         drops
29196          drop
29197         drops
29220            ml
29232   unspecified
29234   unspecified
29235   unspecified
29244   unspecified
29245   unspecified
29248   unspecified
29283            mg
29285         drops
29291          drop
29298            mg
29313         drops
29315        sprays
29321         drops
29324            ml
29327         drops
29328          drop
29340            oz
29342         drops
29374            mg
29375         units
29376           ml 
29377         units
29378         units
29379         units
29380            ml
29381         spray
29382         drops
29383            ml
29395            mg
29404            mg
29405            mg
29406            mg
29428         drops
29438          drop
29446          tube
29447            ml
29453          tube
29469         drops
29470          drop
29471         drops
29479            ml
29480          tube
29481            gm
29482         spray
29483         drops
29490         drops
29500         units
29501            gm
29502          pump
29504          tube
29505          tube
29511            gm
29525            ml
29526            gm
29531            ml
29532         drops
29533           tbs
29534         drops
29535         drops
29536          pump
29537         drops
29538            mg
29539            oz
29540        sprays
29567         spray
29568         drops
29572         drops
29573          tube
29574            oz
29575            mg
29580         drops
29588          drop
29608            ml
29617            ml
29633           mcg
29662   unspecified
29666           tsp
29669   unspecified
29670   unspecified
29678            mg
29700         drops
29705         drops
29707         drops
29709         drops
29715         drops
29716         spray
29719          tube
29720            mg
29722         drops
29724            ml
29726         drops
29734            mg
29736          drop
29744            ml
29749            mg
29753            mg
29764         drops
29765            ml
29767         drops
29770           tsp
29794         drops
29798           mcg
29799           mcg
29800            mg
29801            ml
29802           mcg
29803            mg
29822         drops
29823         spray
29824           mcg
29825            mg
29827            mg
29829         units
29831         drops
29838   unspecified
29839   unspecified
29840   unspecified
29847            ml
29858            ml
29862            mg
29865            mg
29880         units
29882            ml
29883            ml
29940            ml
29941         drops
29948            ml
29954           tsp
29955            ml
29956         drops
29957         drops
29963          tube
29964         spray
29966   unspecified
29969         spray
29970         drops
29978            mg
29990          tube
29991            mg
29993            mg
30001            mg
30048            ml
30070            ml
30075            ml
30076         drops
30081          pump
30082          pump
30083         drops
30099          tube
30104   unspecified
30105   unspecified
30131            mg
30132   unspecified
30138           mcg
30142         units
30143            ml
30162   unspecified
30165            mg
30166            mg
30169            gm
30172            mg
30174            mg
30178            gm
30179         drops
30185          drop
30191            mg
30192            mg
30193            mg
30198         drops
30211          drop
30212          tube
30214         drops
30218         spray
30221         tube 
30239            mg
30241            mg
30242            mg
30246   unspecified
30263            ml
30264            ml
30268         spray
30269          tube
30270            gm
30274            gm
30277            gm
30286            gm
30298         drops
30299         units
30300         drops
30310            ml
30311         drops
30312            ml
30313            ml
30317            ml
30319            ml
30327            ml
30329         drops
30337         spray
30338         drops
30344         drops
30347         spray
30351         drops
30352         drops
30355          tube
30357          tube
30360          tube
30361          tube
30371            mg
30372           tsp
30373         drops
30374          pump
30375            gm
30376         drops
30377            mg
30378           tsp
30385          tube
30387          tube
30388   unspecified
30389          pump
30395            ml
30396          tbsp
30404          tube
30405            mg
30406            ml
30418           mcg
30450   unspecified
30464         drops
30471            mg
30479          drop
30480          pump
30483         spray
30484   unspecified
30485   unspecified
30492            mg
30496          drop
30515            mg
30528            mg
30529         drops
30536         spray
30590         drops
30604         drops
30623         drops
30644            mg
30685         spray
30689         spray
30692         spray
30701         spray
30702            mg
30707          tube
30708         drops
30709          tube
30710         spray
30713            ml
30714         drops
30717   unspecified
30753          drop
30754         drops
30756         units
30757         units
30764            mg
30768           mcg
30769         drops
30779            gm
30796         drops
30797           tsp
30799            ml
30803            ml
30813         units
30817         units
30819            ml
30820            ml
30821         spray
30822            ml
30823            ml
30824          tube
30826            ml
30833         drops
30834            ml
30840            mg
30844           mcg
30876            ml
30877           mcg
30901            gm
30909           mcg
30917            gm
30920         drops
30936   unspecified
30943            mg
30945            mg
30947          pump
30948          tube
30949            mg
30953   unspecified
30963            mg
30998          pump
31000          pump
31001         spray
31003         spray
31004         spray
31010         spray
31011         drops
31022          drop
31023         drops
31034            mg
31043         drops
31046         drops
31089            mg
31094            mg
31095         drops
31096         spray
31105          tube
31132            ml
31133            ml
31134         drops
31135          tbsp
31139            mg
31148           mcg
31149           mcg
31152           mcg
31154           mcg
31183         units
31186         drops
31195            mg
31196   unspecified
31197            ml
31198            mg
31203         units
31209            mg
31228          tube
31232           tsp
31234 other specify
31247            mg
31248 other specify
31249            mg
31250 other specify
31260         spray
31263            gm
31265         drops
31268         drops
31297         units
31299         units
31300         units
31301         units
31303         mg/ml
31307         drops
31308         spray
31309         drops
31317            ml
31322            mg
31328   unspecified
31350   unspecified
31353            mg
31356         spray
31357         drops
31358         drops
31359         drops
31360         drops
31361         spray
31365          tube
31366         spray
31367          pump
31369 other specify
31370         drops
31371           tsp
31373            mg
31374            gm
31375          tube
31383          drop
31384         drops
31385         drops
31386            gm
31408           mcg
31423         drops
31434         drops
31437          tube
31438         drops
31439         drops
31440         units
31441          tube
31446         spray
31447         spray
31449          tube
31450          tbsp
31452         units
31457   unspecified
31463   unspecified
31471            gm
31502            gm
31503            gm
31504          drop
31506         drops
31508         spray
31528          pump
31529         spray
31531            ml
31539          tube
31542   unspecified
31548         units
31551            ml
31552         drops
31553         drops
31602           tsp
31611         drops
31612            mg
31616            mg
31617           mcg
31618            ml
31619            mg
31637           mcg
31640            ml
31643           mcg
31644            mg
31645            ml
31646           mcg
31647            mg
31653           mcg
31655            mg
31656            ml
31657         units
31665         drops
31666         drops
31678          tube
31680         drops
31688         drops
31689         drops
31696            ml
31707            ml
31713           mcg
31716            mg
31725         drops
31726         drops
31730            mg
31731         drops
31734         drops
31735         drops
31736          pump
31737         pumps
31742         drops
31747            ml
31748            mg
31760         drops
31761            ml
31762         drops
31768            mg
31769           mcg
31771           mcg
31773           mcg
31774            ml
31777         spray
31780            mg
31781            mg
31798         drops
31803         spray
31804          drop
31807         drops
31808            gm
31826         spray
31833   unspecified
31834            ml
31836   unspecified
31837            ml
31840            gm
31841         units
31843            ml
31844            mg
31846         drops
31847            ml
31849         drops
31850         drops
31853         drops
31861            mg
31864            mg
31866            mg
31868          tube
31869           tsp
31874            ml
31876          tube
31880            mg
31888            ml
31891         drops
31892         drops
31895           ml 
31896         drops
31898          drop
31907         units
31908         units
31909            gm
31911         drops
31916          pump
31937            mg
31938            mg
31939            mg
31940            mg
31941            mg
31942            ml
31946         units
31947         units
31948         units
31953         drops
31954         pumps
31955          tube
31968           mcg
31985   unspecified
31990          tube
32002            mg
32006            mg
32015         drops
32016          tube
32020            mg
32025         spray
32032            mg
32035            mg
32040          tube
32046         drops
32053          drop
32054          drop
32055         drops
32056            ml
32057          drop
32058          drop
32074          pump
32076          pump
32079            ml
32080         drops
32084         drops
32095        sprays
32097         drops
32098          tube
32099           tsp
32100         spray
32101         spray
32102          drop
32103          tube
32105           tsp
32106          tbsp
32108         spray
32114 other specify
32116 other specify
32119         drops
32121         spray
32122            ml
32123            mg
32128            mg
32129            mg
32168         spray
32171         drops
32175         drops
32179        sprays
32180          tube
32183         drops
32184         drops
32187   unspecified
32196          tube
32222         drops
32233            ml
32234         spray
32236         spray
32237          drop
32266          drop
32276   unspecified
32290         spray
32297         drops
32310            ml
32312         spray
32313            ml
32315            ml
32320            ml
32343            ml
32358            mg
32359         drops
32360            mg
32362            oz
32363            ml
32370         spray
32390            ml
32393         mg/kg
32394            mg
32425            ml
32426            mg
32427            mg
32445   unspecified
32447            mg
32448            mg
32449            mg
32460            mg
32463          drop
32464           ml 
32466          drop
32467         drops
32477         drops
32478           tsp
32504          drop
32505          drop
32507            oz
32509         spray
32510         spray
32512         spray
32513         spray
32520         drops
32529         spray
32530            ml
32535         spray
32536            ml
32538         drops
32542   unspecified
32557           mcg
32558            gm
32561         spray
32562            ml
32575   unspecified
32576   unspecified
32629            ml
32631           tsp
32633          tube
32635          drop
32642          tube
32643         drops
32652   unspecified
32654         drops
32664            ml
32670            mg
32672          pump
32673 other specify
32678            mg
32680            mg
32682            mg
32685            mg
32694          tube
32698            ml
32726         drops
32737         drops
32739         spray
32742         drops
32743         drops
32750            ml
32751          tube
32767           ml 
32769            ml
32777            mg
32798            ml
32815          drop
32829            ml
32841         drops
32844            mg
32849          drop
32850         drops
32856 other specify
32857           mcg
32858            ml
32859           mcg
32862         drops
32863         drops
32869         drops
32870            mg
32871            ml
32879            ml
32883         drops
32884            mg
32887         drops
32888         drops
32903         drops
32923           mcg
32930            ml
32937         drops
32938            ml
32940         drops
32942         spray
32943          tube
32944          drop
32949         drops
32950            ml
32951         drops
32952         drops
32954            mg
32955         units
32956         units
32964   unspecified
32965         drops
32999          tbsp
33004          tbsp
33008        sprays
33009         drops
33010   unspecified
33011   unspecified
33015          tube
33023         spray
33043           mcg
33047            mg
33066            gm
33068         units
33073            ml
33078          pump
33081           tsp
33085           tsp
33086            mg
33087            ml
33088            mg
33089            ml
33090            mg
33091            ml
33092         drops
33096          drop
33107            mg
33110          tube
33113         drops
33124         drops
33126            ml
33128         drops
33132         spray
33133         drops
33138          drop
33157   unspecified
33159   unspecified
33166         drops
33187           mcg
33190            mg
33191         drops
33209         drops
33211         drops
33220            gm
33222            gm
33226         units
33227         spray
33229          tube
33230            ml
33233        sprays
33235         spray
33236         units
33239         units
33242            ml
33271   unspecified
33286         units
33289            ml
33292          tube
33293         drops
33318 other specify
33333            mg
33335            mg
33336         drops
33347         drops
33354            oz
33355            oz
33358         drops
33363         drops
33364         drops
33370         units
33374         units
33375         units
33376         units
33377         units
33385         drops
33387   unspecified
33389   unspecified
33410         drops
33411         drops
33412          drop
33414          tube
33456   unspecified
33468         spray
33471         drops
33479          tube
33480           tsp
33482   unspecified
33489           tsp
33490            mg
33491            mg
33492            mg
33493            mg
33499           mcg
33539         drops
33541          tube
33542         drops
33543            ml
33544            ml
33576           mcg
33580            ml
33581         drops
33582            mg
33583            mg
33590         drops
33591         spray
33592            ml
33614   unspecified
33644 other specify
33645 other specify
33647         drops
33649 other specify
33651 other specify
33655 other specify
33684          tube
33690           mcg
33696           mcg
33702            ml
33706            mg
33714        sprays
33717         spray
33722            ml
33723          drop
33724         drops
33725         drops
33737         drops
33740         drops
33756         drops
33767            mg
33797            ml
33798            ml
33804            ml
33805         drops
33815   unspecified
33824           mcg
33828            mg
33844         drops
33868         drops
33869           mcg
33870            ml
33890            mg
33894         drops
33901         drops
33907          tube
33911          pump
33916            ml
33919          drop
33927        sprays
33939            ml
33940         drops
33991          tbsp
33994            ml
33998         drops
34003         drops
34005         drops
34011   unspecified
34012            ml
34014         drops
34016            ml
34022         drops
34024          drop
34029          tube
34030            ml
34043          tube
34046         drops
34048          drop
34049         spray
34051         units
34053          tube
34054            gm
34069           mcg
34073         drops
34074           mcg
34075            ml
34077         drops
34087         drops
34090          tube
34091          tube
34093          pump
34094            oz
34095         units
34096            gm
34107         drops
34108           mcg
34109          drop
34111            mg
34113         drops
34125            ml
34126          pump
34128          pump
34132          tube
34134          tube
34135        sprays
34138         spray
34140            mg
34147          tube
34148         drops
34152          tube
34155            ml
34156            mg
34157            mg
34161           mcg
34227         drops
34230            mg
34231            mg
34232           tsp
34233            mg
34234            mg
34235            mg
34238            ml
34239            ml
34240            ml
34241            mg
34242            mg
34243            ml
34246            ml
34247            mg
34249          tube
34254          tube
34260            mg
34262            mg
34264            mg
34267            mg
34268         drops
34269         drops
34327           mcg
34332           mcg
34333         drops
34334           tsp
34336            gm
34340            ml
34342          tube
34343         drops
34345            ml
34359         drops
34360         drops
34361            mg
34362            mg
34367          drop
34374            ml
34375          tube
34378   unspecified
34379   unspecified
34388         drops
34401        sprays
34403            gm
34409            mg
34410            mg
34418         drops
34419            ml
34430            ml
34434            ml
34436           tbs
34467            mg
34474            mg
34493            mg
34513            ml
34536           tsp
34545   unspecified
34548   unspecified
34579   unspecified
34583          tube
34584           tbs
34587         spray
34588         drops
34593            mg
34606   unspecified
34608          tube
34609            ml
34617            ml
34624            gm
34629         drops
34630          pump
34635          pump
34636         drops
34637          tube
34638         drops
34640          tube
34642         drops
34648         units
34669         spray
34672         drops
34673            gm
34674            gm
34675         drops
34676            mg
34677         drops
34678          drop
34680         drops
34697          drop
34704          tube
34705            mg
34708         drops
34709         spray
34710         tube 
34727   unspecified
34728   unspecified
34729   unspecified
34730            ml
34733         spray
34734          tube
34741         drops
34744         drops
34747            gm
34750           mcg
34763            gm
34764         drops
34766           mcg
34787         pumps
34788         drops
34789           mcg
34791            ml
34797         drops
34798            ml
34799            ml
34811            ml
34813            ml
34828            ml
34832            mg
34833            gm
34845         spray
34887         spray
34888         drops
34890          tube
34891         drops
34892          tube
34900            mg
34901            mg
34902            mg
34903         drops
34904            mg
34905           tsp
34906           tsp
34907         drops
34908            ml
34917   unspecified
34918         drops
34920           mcg
34922            mg
34923            mg
34924            mg
34953   unspecified
34955   unspecified
34956   unspecified
34966            ml
34979          tbsp
34981          tube
34982         spray
34983            ml
34991           mcg
34992         drops
34996          drop
35002         units
35004         units
35014         spray
35025         drops
35027          tube
35034            mg
35049         drops
35069         spray
35074   unspecified
35094         drops
35103          tube
35109   unspecified
35110         drops
35125         spray
35132         spray
35134          tube
35143         drops
35144          tube
35145         spray
35146          tube
35147        sprays
35148          pump
35149   unspecified
35150          tube
35152            ml
35153          tube
35154          tube
35160   unspecified
35176            mg
35181         pumps
35182           mcg
35183            mg
35189         spray
35203            ml
35204         drops
35205           tsp
35207           mcg
35212            ml
35214            ml
35232            mg
35245         drops
35252         drops
35262           mcg
35264           mcg
35278          drop
35279         drops
35283            ml
35284            ml
35291         spray
35299            ml
35300            ml
35314          tube
35315            mg
35354            mg
35388            ml
35393            ml
35399            ml
35400            mg
35401          tube
35404            gm
35405            gm
35406            gm
35414            mg
35417            mg
35420            mg
35421            mg
35422            gm
35423          pump
35424          tube
35425            mg
35432            mg
35434         drops
35443         drops
35450         drops
35453         drops
35454         drops
35495          pump
35496          pump
35497           mcg
35499         units
35501           mcg
35504         units
35506         drops
35509         drops
35513            mg
35525          drop
35526         drops
35528            mg
35539            mg
35560         drops
35561         drops
35565         units
35566         units
35569           mcg
35571            ml
35572            ml
35573         drops
35574            mg
35575         pumps
35576         units
35577         units
35578         drops
35579            ml
35580            mg
35581         drops
35582         spray
35593          tube
35598           tsp
35605          pump
35620         drops
35621            gm
35624         drops
35626         drops
35628         drops
35633         drops
35639         drops
35641         drops
35642         drops
35645            ml
35656            ml
35659            mg
35662         drops
35664         spray
35665         drops
35668   unspecified
35673         spray
35674         drops
35696            oz
35697         drops
35699         drops
35721          tube
35722         spray
35725           mcg
35727           mcg
35740            ml
35743         drops
35748           mcg
35756         units
35757            mg
35758            mg
35762          tube
35768          tube
35770          drop
35771         drops
35772         drops
35773            gm
35774            ml
35775         drops
35777         drops
35778          tube
35786           tsp
35791            ml
35792           mcg
35793         units
35808   unspecified
35809   unspecified
35810   unspecified
35812         drops
35821         pumps
35831            mg
35835            mg
35855            gm
35859            mg
35903           tbs
35908            mg
35954          tube
35955            gm
35963         drops
35965         drops
35969          tube
35973           tsp
35982         drops
35983            ml
36019            ml
36021          drop
36023          drop
36030            oz
36042            gm
36043            mg
36044          tube
36065         drops
36069            ml
36078         drops
36081         drops
36082            mg
36084          tube
36108            mg
36110            mg
36112         drops
36113   unspecified
36115         drops
36134            mg
36137            ml
36144            ml
36145         drops
36150         drops
36153            mg
36156         drops
36159          pump
36171   unspecified
36191            gm
36192            oz
36200            ml
36201            gm
36202         drops
36203         drops
36205         drops
36218          tube
36220         spray
36221         spray
36222         drops
36223         spray
36225          drop
36227         drops
36228            gm
36229          tube
36231         drops
36232          tube
36233         drops
36235          drop
36237            gm
36238            mg
36240            mg
36254   unspecified
36256         drops
36264         units
36268   unspecified
36271            mg
36272            mg
36273            gm
36275            ml
36276            ml
36280         drops
36283            mg
36288         units
36293         drops
36294            ml
36295           tbs
36296            ml
36297            ml
36298            ml
36299            ml
36300         drops
36301           tsp
36302            ml
36303            ml
36304            ml
36305            ml
36306          drop
36307            ml
36308            ml
36309            ml
36310            ml
36311   unspecified
36322         drops
36323            ml
36324            ml
36325            ml
36326            ml
36327            ml
36328            ml
36329         drops
36330           tsp
36331            ml
36332            ml
36333         drops
36334            ml
36335          tube
36336          tube
36337            ml
36338            ml
36339   unspecified
36340   unspecified
36358         drops
36359            ml
36360            ml
36361            ml
36362            ml
36363            ml
36364            ml
36365         drops
36366           tsp
36367            ml
36368            ml
36369            ml
36370         drops
36371          tube
36372           tsp
36373   unspecified
36374   unspecified
36377         drops
36378            ml
36379            ml
36380         drops
36381            ml
36382            ml
36383            ml
36384         drops
36385           tsp
36398            ml
36399            mg
36403         drops
36404           tsp
36405         units
36406         units
36410   unspecified
36427        sprays
36429           mcg
36430          drop
36438         units
36439          pump
36440          tube
36443            mg
36444          tube
36448          tube
36451            ml
36464         units
36474   unspecified
36491           mcg
36497           mcg
36513   unspecified
36533            ml
36535            ml
36559            ml
36560            ml
36562         spray
36568            ml
36571            ml
36574   unspecified
36595            ml
36600          drop
36601            ml
36602         spray
36605         spray
36607            ml
36608            ml
36616           tsp
36624        sprays
36626           ml 
36630           ml 
36632           ml 
36635          drop
36657            mg
36670          drop
36698           ml 
36699          drop
36705            mg
36708           mcg
36709         drops
36735            mg
36751           tsp
36752          drop
36753          drop
36772          drop
36816         spray
36817            ml
36818         drops
36819         drops
36824          pump
36833 other specify
36834         drops
36835         spray
36840            mg
36842            gm
36846            mg
36847            mg
36848            mg
36849            gm
36850         spray
36851            gm
36853         drops
36855   unspecified
36859   unspecified
36875            mg
36876            mg
36877            mg
36878          drop
36880            mg
36881          tube
36882            mg
36883          drop
36892         drops
36893          pump
36894          tube
36900            ml
36901            ml
36911         spray
36919            mg
36920         spray
36921         spray
36925           mcg
36945            gm
36969         units
36970         units
36982          tube
36983           ml 
36984            ml
36985            ml
36994         spray
37007            mg
37015         spray
37017 other specify
37018            ml
37019          drop
37020         drops
37021        sprays
37036          drop
37038            mg
37046         units
37054          drop
37055          drop
37056          tube
37057           mcg
37061         spray
37063 other specify
37069           mcg
37070         drops
37071            ml
37073            ml
37074            mg
37075            ml
37077         drops
37078         drops
37087         spray
37088            ml
37098         drops
37099            ml
37104         drops
37116            mg
37117          drop
37135         drops
37157   unspecified
37164         drops
37165         drops
37168          tube
37169            ml
37193           tbs
37194          tbsp
37195            mg
37197            mg
37200         drops
37201         drops
37202          tube
37219         pumps
37221            mg
37259            mg
37260            ml
37262         drops
37266         drops
37267         drops
37270          pump
37271           tsp
37272            mg
37277            ml
37278   unspecified
37279   unspecified
37302           mcg
37303         drops
37309         drops
37316         drops
37325            gm
37326            ml
37332         drops
37337         drops
37344            ml
37349         drops
37359            mg
37373         spray
37374         drops
37375         units
37376         units
37385         drops
37386         drops
37387         drops
37392         drops
37396            gm
37397            gm
37434   unspecified
37435   unspecified
37439          tube
37446            ml
37449         spray
37451         spray
37454            ml
37457            ml
37463            ml
37464            ml
37465          tube
37467          tube
37477         drops
37478         drops
37485         drops
37491         drops
37493         drops
37495            ml
37510            mg
37526            mg
37527        sprays
37533         drops
37536         spray
37540         drops
37545         drops
37546         drops
37547          drop
37552          tube
37568            mg
37569         drops
37571            mg
37576         spray
37577            mg
37578            oz
37579           mcg
37580            mg
37584   unspecified
37585   unspecified
37586   unspecified
37597   unspecified
37598   unspecified
37601         drops
37602          tube
37603            ml
37608            ml
37624         drops
37627            gm
37628         drops
37629         drops
37630         spray
37639   unspecified
37648            ml
37651          pump
37655          tube
37657          tube
37662            ml
37664        sprays
37669         spray
37670            ml
37675          drop
37691         drops
37696            mg
37697            mg
37698            mg
37704         drops
37705         drops
37709            mg
37710            mg
37712   unspecified
37713   unspecified
37714   unspecified
37717   unspecified
37718   unspecified
37731            ml
37738         spray
37739         drops
37740         drops
37742           tsp
37771         drops
37785          tube
37786          pump
37797           ml 
37798           mcg
37805            mg
37806            mg
37809          drop
37816   unspecified
37817   unspecified
37820            iu
37821   unspecified
37822          drop
37834          tbsp
37835          tube
37837            mg
37838           ml 
37839          pump
37845         drops
37846         drops
37847            ml
37848         spray
37849         drops
37850            ml
37851          pump
37852         drops
37855            ml
37858         drops
37865          drop
37885          tube
37894            ml
37895          tube
37907            mg
37916         drops
37920          drop
37929         drops
37930         drops
37935         drops
37937         drops
37942         drops
37944            mg
37976          pump
37977          tube
37978          tube
37979            gm
37980            ml
37984            gm
37989            ml
37990          drop
37992          drop
37993            ml
38018            mg
38036            ml
38041          pump
38046          pump
38048            mg
38050 other specify
38051          tube
38052   unspecified
38056           tsp
38070         spray
38071         drops
38072         drops
38074         drops
38075         drops
38102            mg
38123            ml
38126         drops
38132   unspecified
38134          drop
38135            ml
38136            ml
38141            ml
38142            ml
38151            gm
38156            mg
38165            mg
38166            mg
38177          drop
38179         drops
38181   unspecified
38182   unspecified
38184   unspecified
38185         drops
38193         drops
38204           tsp
38211         drops
38217         drops
38219            mg
38240            ml
38256           tbs
38257            mg
38259            mg
38262         drops
38268         drops
38273         units
38284           mcg
38287           tsp
38288            gm
38289            ml
38293            mg
38294          tube
38301         drops
38305         drops
38306         drops
38324            ml
38326         drops
38330         spray
38339         drops
38342            ml
38351            ml
38352 other specify
38353         drops
38361         drops
38365        sprays
38366            gm
38367          pump
38369         drops
38372            ml
38373            ml
38377   unspecified
38378         drops
38386   unspecified
38387   unspecified
38388            ml
38396         drops
38397            ml
38399           tsp
38406            ml
38420         drops
38422         drops
38423          tube
38427            gm
38431         spray
38436         spray
38438         drops
38439         spray
38442            ml
38461            ml
38462            mg
38464            mg
38465            ml
38466            mg
38470            mg
38471            mg
38472            mg
38473            mg
38499            mg
38504            ml
38505            mg
38507            mg
38508            ml
38509            mg
38510            mg
38511            mg
38512            mg
38522            mg
38527            gm
38528            ml
38529          drop
38531         spray
38533         drops
38534            ml
38536         spray
38544         tube 
38550   unspecified
38551   unspecified
38557   unspecified
38567            ml
38568         spray
38569          tube
38570   unspecified
38588            gm
38602            gm
38605         drops
38606            mg
38607            oz
38610         pumps
38611         drops
38618           tsp
38626         drops
38630            ml
38636            ml
38637            ml
38643            ml
38647            ml
38655            gm
38656         spray
38665            mg
38691          drop
38722         drops
38723         drops
38754   unspecified
38772          tube
38775            ml
38779            gm
38780            oz
38787            gm
38789   unspecified
38796           tsp
38802   unspecified
38809         drops
38816            gm
38820            mg
38821            mg
38828          tube
38839         drops
38841         drops
38843         drops
38845           tsp
38847            ml
38850          tbsp
38851   unspecified
38854         drops
38855            ml
38861            ml
38864         drops
38865         drops
38868           mcg
38871   unspecified
38890         spray
38891         drops
38892          drop
38896          tube
38902         drops
38924            mg
38925         spray
38926          tube
38930         drops
38931          tube
38940         drops
38941         drops
38945         spray
38946         spray
38950         spray
38951         spray
38952         spray
38956   unspecified
38963         drops
38964          tube
38970   unspecified
38971   unspecified
38974   unspecified
38976   unspecified
38997   unspecified
39004            ml
39005          tube
39006         drops
39035   unspecified
39083            mg
39099            gm
39117            mg
39120           mcg
39121            gm
39122         spray
39123            ml
39125            ml
39127         drops
39128         drops
39158            mg
39165            mg
39167            gm
39171         drops
39176         drops
39181         spray
39182          drop
39198            ml
39201         drops
39202         spray
39207         drops
39209         drops
39210         drops
39211            ml
39212         drops
39218         drops
39259           tsp
39260          tube
39262            mg
39273           mcg
39316            gm
39325            mg
39326            oz
39329            mg
39330            mg
39331            mg
39332            mg
39338          tube
39339         drops
39340         drops
39388         drops
39392         drops
39423   unspecified
39425         spray
39433            oz
39434         drops
39435         spray
39438         drops
39440         units
39443         units
39444         units
39445         units
39446         units
39447         units
39450         units
39451         units
39453         spray
39486          tube
39495         drops
39496           mcg
39511         units
39513         drops
39516         pumps
39519         drops
39525            gm
39526         drops
39528         drops
39531          tube
39534         drops
39536         spray
39539         drops
39541          tube
39542           tsp
39543          pump
39546         spray
39548            mg
39566   unspecified
39567   unspecified
39573   unspecified
39581         drops
39582         drops
39586         drops
39591   unspecified
39599   unspecified
39607            mg
39609            ml
39617            mg
39618            mg
39635         drops
39637            mg
39639         drops
39651         spray
39714         drops
39715         spray
39737   unspecified
39754            ml
39756            mg
39759            mg
39760         units
39763            mg
39764          tube
39776            mg
39777            mg
39778            mg
39786           mcg
39787           mcg
39788            mg
39795            mg
39796           mcg
39833            mg
39849            mg
39856            mg
39860           mcg
39871           mcg
39875           mcg
39877           mcg
39881          tube
39909         drops
39919         spray
39958          tbsp
39973         drops
39974         drops
39975         pumps
39980            gm
39981            gm
39982            gm
39987         drops
39988         drops
40013         spray
40021         drops
40038            mg
40043            ml
40092            gm
40093         drops
40102   unspecified
40108           mcg
40109            mg
40115         drops
40117            ml
40121           mcg
40123            ml
40124          drop
40125          drop
40133            mg
40134            mg
40138          drop
40141         drops
40142           mcg
40143          tube
40144         drops
40149            ml
40154         drops
40164         drops
40165          tube
40180         drops
40186         drops
40194           mcg
40196         drops
40206            ml
40209            ml
40214            ml
40216         drops
40217         drops
40218            ml
40221         drops
40222         drops
40223          pump
40224         pumps
40244            gm
40290           mcg
40296            mg
40297            ml
40298            ml
40299            gm
40302         drops
40312          tube
40317         drops
40331            mg
40343         drops
40390         spray
40391         spray
40392            mg
40394   unspecified
40403         spray
40406            mg
40407           mcg
40417         drops
40418            gm
40422          tube
40451            mg
40454            mg
40464            mg
40468         units
40472            ml
40474            ml
40483            ml
40484            gm
40486         units
40487         units
40488         drops
40489         drops
40494            mg
40503         drops
40504            ml
40508         drops
40511            mg
40519         drops
40521         drops
40535            mg
40541         units
40568          tube
40571         drops
40572         units
40573         drops
40574           ml 
40579         drops
40580            mg
40581            mg
40582            ml
40583            ml
40595            ml
40600            gm
40601         drops
40603          pump
40604            ml
40606          tube
40607          tube
40611            ml
40615            mg
40616            ml
40617         drops
40618   unspecified
40619   unspecified
40620   unspecified
40634          tube
40636         units
40637         units
40644   unspecified
40653          tube
40654         spray
40655          tube
40656            mg
40684          drop
40686          drop
40687          drop
40688            ml
40689          drop
40690          drop
40691          pump
40693          pump
40699            mg
40700         drops
40701         drops
40718         drops
40719         drops
40721          tube
40722           tsp
40723         drops
40724         drops
40725 other specify
40726         drops
40727         drops
40744            ml
40745           tsp
40747            mg
40748          tbsp
40749         spray
40750           tbs
40751         spray
40754            ml
40755          tbsp
40756          drop
40758         drops
40760         spray
40775         spray
40776           tsp
40781         spray
40783         units
40794         drops
40796        sprays
40799          tube
40800          drop
40801         pumps
40810          pump
40823          tube
40824         drops
40825          tube
40827          tube
40828            ml
40829         spray
40833         spray
40834 other specify
40838          drop
40839          drop
40840          drop
40843         spray
40846            mg
40848            ml
40866            ml
40868            ml
40870         spray
40875            ml
40879            ml
40895   unspecified
40897            mg
40899            mg
40900            mg
40902           mcg
40905           mcg
40919   unspecified
40943            ml
40958            ml
40959         spray
40960         spray
40961         spray
40962            ml
40965            ml
40966           tsp
40967          tbsp
40968        sprays
40969           ml 
40970           ml 
40971           ml 
40972           ml 
40974          drop
40984   unspecified
40987   unspecified
40990   unspecified
40992         units
40993         units
40994         units
40997         drops
40998            ml
41003            mg
41004            mg
41005            oz
41006            gm
41007            gm
41009            mg
41010            ml
41011            mg
41014            gm
41015            mg
41016            ml
41018            ml
41020   unspecified
41021            ml
41022         drops
41023         drops
41024            gm
41025            ml
41057         drops
41068            ml
41069        sprays
41084            ml
41087            mg
41088            ml
41089            mg
41090           tsp
41091         drops
41094            mg
41095            mg
41096            ml
41097         drops
41098            ml
41099            mg
41101            gm
41102            mg
41103            ml
41121 other specify
41125         spray
41131         drops
41132            ml
41133          tube
41134           ml 
41137            ml
41139         drops
41147         drops
41151         drops
41152   unspecified
41170          drop
41198           mcg
41199           mcg
41200           mcg
41201           mcg
41203            ml
41204        sprays
41206          drop
41207         drops
41208          drop
41209          drop
41210          tube
41216         drops
41217         drops
41219            ml
41221            ml
41222           mcg
41223         units
41224         units
41240         spray
41242            ml
41246         drops
41260   unspecified
41267          tube
41278          drop
41279         drops
41281            ml
41283            mg
41313         drops
41314            mg
41315         drops
41316            mg
41318         drops
41319           mcg
41320          tbsp
41325            mg
41332            mg
41335        sprays
41340         drops
41343         drops
41360   unspecified
41371         units
41373         spray
41374            gm
41376            mg
41377         drops
41378         drops
41381            ml
41384          pump
41385           tsp
41386           tsp
41387         drops
41388         drops
41396         drops
41398         units
41407            mg
41413         drops
41417           mcg
41420            mg
41421         drops
41422         drops
41424            ml
41425         drops
41430            mg
41431            mg
41432         spray
41433         drops
41435            mg
41442          drop
41443            mg
41444            mg
41446         spray
41447            mg
41451            mg
41464         drops
41466         drops
41470   unspecified
41497         drops
41500         units
41505            ml
41525         spray
41531          tube
41533            mg
41557            ml
41572        sprays
41573         spray
41612            mg
41615            ml
41617            mg
41621            mg
41629            ml
41632            mg
41633            mg
41638         drops
41639          tube
41640            ml
41641           mcg
41653            mg
41655         drops
41674            mg
41724   unspecified
41725         drops
41726            ml
41727          tube
41728          tube
41729         drops
41731         units
41737         drops
41738         spray
41739         drops
41740         drops
41743            mg
41746         drops
41747          drop
41748          tube
41749         drops
41750         spray
41751          drop
41752          tube
41753           tsp
41754           tsp
41756           mcg
41759           tsp
41774            mg
41781         units
41803         drops
41811         drops
41816         drops
41819            mg
41830            mg
41835            ml
41837            ml
41838         drops
41840            gm
41846            gm
41849         spray
41850            ml
41851            mg
41853            mg
41854            ml
41863         drops
41870            mg
41872            mg
41888          tube
41891           mcg
41893         drops
41894            mg
41896            mg
41897            mg
41898            mg
41899            mg
41900            mg
41901            mg
41902            mg
41903            mg
41904            mg
41905            mg
41906            mg
41921   unspecified
41929          drop
41930         drops
41937            ml
41938         spray
41939         drops
41946           mcg
41947           mcg
41950           mcg
41973          tube
41975            mg
41988          drop
42004         units
42005         units
42011        sprays
42012         drops
42032         drops
42037          tbsp
42039          tube
42043           ml 
42044          pump
42053         drops
42057            mg
42061         spray
42063         drops
42066            ml
42100          pump
42101         drops
42112           mcg
42116            mg
42119   unspecified
42122   unspecified
42147          tube
42148            ml
42149          tube
42150         drops
42151          drop
42152         spray
42154            ml
42174            gm
42198         spray
42201         drops
42215   unspecified
42218         units
42219         units
42221            gm
42227          pump
42229          tube
42240   unspecified
42241   unspecified
42242   unspecified
42243   unspecified
42256            ml
42257          drop
42259          drop
42267         drops
42272            mg
42273            mg
42278          pump
42284           mcg
42286          tube
42287          tube
42289        sprays
42291         spray
42313          tube
42314         drops
42345          tube
42346            ml
42348            ml
42349         drops
42353         drops
42354          drop
42356            ml
42357            ml
42358            ml
42361            gm
42367           tsp
42368         units
42378          drop
42379         drops
42384         drops
42386         spray
42387          tube
42399          tube
42402         drops
42417          drop
42425            ml
42426         drops
42433         drops
42451            ml
42455            mg
42463         drops
42464           tsp
42468   unspecified
42474            mg
42475            mg
42476         drops
42477            ml
42480            oz
42481            mg
42482         drops
42483          drop
42486            ml
42488 other specify
42489            mg
42502            mg
42506            ml
42512         drops
42513         units
42522        sprays
42537            gm
42551          pump
42552          pump
42553         drops
42570            ml
42572           mcg
42573            ml
42574            ml
42578            mg
42579            mg
42593           mcg
42594           mcg
42624         drops
42626         drops
42627           tsp
42628            ml
42632         drops
42633         drops
42634          tube
42637         spray
42638            mg
42640         spray
42646            ml
42647            ml
42648            ml
42652            ml
42655            ml
42656            ml
42666            ml
42668           mcg
42675   unspecified
42678         drops
42679         drops
42694         drops
42695          tube
42696         drops
42697          tube
42700         drops
42704          tube
42712         spray
42716            ml
42721         units
42725            gm
42726            gm
42727         units
42728            ml
42729          drop
42740         spray
42758            mg
42760            ml
42761         drops
42764            mg
42766            mg
42768            mg
42785            mg
42786            mg
42787            mg
42791            mg
42792            mg
42799   unspecified
42821            ml
42833            mg
42860         spray
42876            mg
42879         drops
42887   unspecified
42890            gm
42891            gm
42892   unspecified
42893   unspecified
42894   unspecified
42913            ml
42915         drops
42920           mcg
42923            ml
42926            ml
42930            ml
42931            ml
42932            ml
42935            gm
42936         spray
42939          drop
42940         drops
42946   unspecified
42952            mg
42956         drops
42959         drops
42960           mcg
42967         drops
42994          tube
43013           mcg
43045          tube
43064          tube
43065          tube
43069            gm
43072            ml
43081           tsp
43086           tsp
43105         drops
43116          pump
43119            gm
43123            mg
43135            mg
43136            mg
43151            mg
43153            mg
43169         spray
43173          pump
43183            mg
43184            mg
43191            ml
43200            mg
43202            ml
43204          tube
43224         drops
43228            ml
43236            mg
43238         drops
43239          drop
43241          pump
43242         spray
43243         spray
43244         drops
43246          drop
43247   unspecified
43258            mg
43259            mg
43270            mg
43286            mg
43291            mg
43292            oz
43293         drops
43310         drops
43334            mg
43366         drops
43388         spray
43405         spray
43412          tube
43423           mcg
43424            mg
43430          tube
43467          pump
43469          drop
43470          tube
43471            ml
43482          tube
43491          tube
43493            mg
43494            mg
43496            mg
43497            mg
43510         drops
43511         pumps
43512            gm
43522            gm
43527           mcg
43531         spray
43532            ml
43535         drops
43538           tsp
43539            ml
43540         drops
43545            gm
43546         drops
43547            mg
43548         drops
43549         spray
43550          drop
43563         drops
43570         drops
43610         spray
43620            mg
43621            ml
43636          tube
43637            ml
43639            gm
43640         drops
43642         drops
43643           tsp
43644         units
43645         units
43646         units
43650            oz
43652            gm
43653            gm
43669            gm
43678          pump
43683          tube
43684          tube
43685         drops
43686         drops
43706         spray
43707         spray
43709         spray
43714         drops
43715            ml
43738   unspecified
43743         drops
43744         drops
43745         drops
43746         drops
43747            gm
43751         drops
43783          tube
43784            ml
43785            ml
43806          tbsp
43807         pumps
43838   unspecified
43843            mg
43844            mg
43851            mg
43853   unspecified
43854   unspecified
43878            gm
43884         units
43887         drops
43893          pump
43894         spray
43896            gm
43919         drops
43920          tube
43938         drops
43939         drops
43949         drops
43950         drops
43958         spray
43959         drops
43960            ml
43963            mg
43965         drops
43975         drops
43976           mcg
43977           mcg
43980           mcg
43997         drops
44031           mcg
44037           mcg
44050         spray
44055         drops
44084         drops
44087         drops
44090         spray
44119         drops
44123         spray
44126          pump
44127         drops
44129            ml
44131            ml
44154         drops
44155          tube
44157          tube
44158          drop
44207         drops
44209         drops
44211            gm
44212            ml
44214            mg
44216         drops
44218          tube
44219            mg
44222   unspecified
44223         drops
44224         drops
44225         drops
44226         units
44227         drops
44234         units
44235         units
44240         drops
44241            mg
44243   unspecified
44244   unspecified
44246         units
44247         units
44249          pump
44250         spray
44251            ml
44252          tube
44253          tube
44268            gm
44280         drops
44282         drops
44309   unspecified
44330           tsp
44334         drops
44335            ml
44336            ml
44337          drop
44347   unspecified
44350            mg
44363            mg
44372            gm
44385            mg
44386            mg
44390          tube
44391            mg
44392            mg
44395            ml
44398         drops
44421         drops
44428          tube
44429            mg
44431         drops
44434            gm
44452         drops
44473            ml
44507         drops
44520         drops
44524         units
44531         units
44542         drops
44543         drops
44545            ml
44546            gm
44547            ml
44558         drops
44559            gm
44570         drops
44571          tube
44576         drops
44577          tube
44595         spray
44607         spray
44608         drops
44609         spray
44616         drops
44618            gm
44646            ml
44649         drops
44652   unspecified
44653   unspecified
44654   unspecified
44655   unspecified
44658   unspecified
44660            mg
44663            mg
44671            ml
44672            mg
44677            mg
44679            mg
44683         drops
44684            gm
44706            ml
44732            mg
44742            ml
44743         drops
44745         drops
44746            mg
44747         drops
44755   unspecified
44757   unspecified
44769         drops
44771         drops
44782   unspecified
44795           tsp
44799            mg
44804            mg
44820         drops
44827           ml 
44828         drops
44829          drop
44830         units
44834            ml
44843            gm
44844         drops
44857            mg
44858            mg
44862          pump
44863           mcg
44864           mcg
44866   unspecified
44867            ml
44868            ml
44869         drops
44875            mg
44877           mcg
44879          tube
44899   unspecified
44905   unspecified
44915         drops
44916           mcg
44917         tube 
44918           mcg
44920         drops
44922            mg
44924         spray
44925         drops
44933            ml
44936            mg
44937            ml
44938            ml
44939            oz
44946          drop
44947          drop
44949          pump
44950          pump
44957          pump
44958            ml
44997         drops
45005            mg
45007         drops
45014          tube
45017            mg
45023         drops
45027         drops
45034            ml
45045           tsp
45053         spray
45054         spray
45055         spray
45059            ml
45061          tbsp
45062          drop
45063            mg
45064          drop
45066         drops
45072            mg
45073            mg
45076           tsp
45116            mg
45117        sprays
45123         units
45134            mg
45139           mcg
45149         pumps
45150          pump
45154          tube
45172         drops
45173         drops
45174            ml
45175            ml
45178         spray
45179         spray
45180          drop
45181          drop
45182          drop
45185            ml
45186            ml
45187            ml
45188            ml
45189         spray
45195            mg
45199            mg
45208            ml
45209         drops
45210            ml
45212         drops
45216          drop
45224   unspecified
45225         spray
45236         spray
45255            mg
45263            ml
45268           tsp
45273         drops
45280           mcg
45283           ml 
45286           mcg
45294           mcg
45295            gm
45297         drops
45298          drop
45299          drop
45302           ml 
45305            mg
45307         drops
45309            mg
45310           tsp
45311          drop
45312          drop
45313          drop
45322            mg
45327            mg
45335            mg
45344            ml
45345         spray
45358   unspecified
45359   unspecified
45372         drops
45383            ml
45403   unspecified
45406         spray
45411            ml
45425         drops
45426         drops
45434   unspecified
45435         drops
45443           mcg
45445            ml
45451        sprays
45452          pump
45463            mg
45468            mg
45470          tube
45471         mg/ml
45476            mg
45479         mg/ml
45480            mg
45484          drop
45503            mg
45504          drop
45508         drops
45531            mg
45534            mg
45555            ml
45556          pump
45572         drops
45582            ml
45585            ml
45626            mg
45642           mcg
45650         drops
45651         drops
45655            ml
45656          tube
45663         drops
45664            ml
45665            ml
45667         spray
45670            mg
45671            mg
45675            ml
45676        sprays
45683          drop
45699         drops
45700         drops
45704         drops
45724         units
45725         units
45726         units
45727            oz
45728         units
45729            mg
45735         drops
45736         drops
45751   unspecified
45764         units
45775         drops
45776         drops
45787            ml
45791         drops
45798            mg
45799         spray
45800          tube
45816          drop
45820         drops
45843            ml
45853         drops
45862         drops
45863          tube
45864            ml
45869            ml
45872          tbsp
45876            mg
45898         drops
45899         drops
45901          tube
45908         pumps
45909          tube
45914         spray
45924            mg
45968            mg
45969         drops
45970         drops
45971            mg
45990          pump
45994         units
45995           tsp
45996         drops
45997            ml
46014           tsp
46018          tube
46019         drops
46021         drops
46022          drop
46025         drops
46043          tube
46044         drops
46075            mg
46076         drops
46078            mg
46085   unspecified
46091         drops
46092          drop
46094            mg
46095         units
46100         drops
46107         drops
46108            gm
46110            gm
46116            ml
46119         spray
46122          tube
46131         drops
46132         drops
46134         spray
46170         spray
46171         drops
46173            ml
46174            ml
46186   unspecified
46198          tube
46200          tube
46201         drops
46202            mg
46213          tube
46218            ml
46219         drops
46227         drops
46255         drops
46265            mg
46277          tube
46278          tube
46287         drops
46288        sprays
46291         drops
46292         spray
46293         drops
46295         drops
46296         drops
46303            mg
46305            mg
46308            mg
46311   unspecified
46312         drops
46313   unspecified
46314   unspecified
46319          tube
46320            mg
46324         drops
46325            mg
46345           mcg
46350            mg
46355            mg
46358            mg
46360           tsp
46377           tsp
46379            mg
46399           tsp
46406            ml
46410            mg
46411         drops
46413          tube
46418            ml
46424            ml
46431            ml
46435           mcg
46436         drops
46474            gm
46475         drops
46476         drops
46478         spray
46479            ml
46482            ml
46483          tube
46486          pump
46487          tube
46488          tube
46489            ml
46490            mg
46493         spray
46494            ml
46499            mg
46504            ml
46505         drops
46506         drops
46512            mg
46517         units
46521           mg/
46526            mg
46528         drops
46530         drops
46532            mg
46533            mg
46544            mg
46547            ml
46551         drops
46553         drops
46555          tube
46568           mcg
46569            ml
46570            mg
46571         drops
46572           mcg
46573            mg
46574           mcg
46575           mcg
46579   unspecified
46588            ml
46591           mcg
46593         drops
46606         drops
46607            mg
46615          tbsp
46616          tube
46617            ml
46618            mg
46676         drops
46680         units
46687         drops
46690         spray
46694         drops
46702            ml
46703          pump
46716            mg
46717            mg
46729           mcg
46730           mcg
46732            ml
46737   unspecified
46747   unspecified
46753          drop
46763            mg
46766            mg
46767          tube
46775         drops
46776          drop
46777         spray
46783            gm
46786         drops
46788          tube
46789          tube
46811          pump
46812          tube
46816          tube
46827         drops
46849           mcg
46853           mcg
46874            ml
46880            gm
46883            mg
46884            ml
46885          drop
46889            mg
46891          drop
46902         drops
46903            ml
46904          pump
46905         drops
46908          tube
46915          tube
46931        sprays
46938         spray
46944          tube
46961         drops
46962         drops
46972            ml
46973            ml
46977         drops
46981         drops
46982            ml
46983            ml
46984            ml
46985            gm
46986            ml
47000            mg
47004           tsp
47010          drop
47011          drop
47018         drops
47024         drops
47025         spray
47041            mg
47043          tube
47049         drops
47060   unspecified
47076         drops
47080            oz
47081           tsp
47085          drop
47086            ml
47090         mg/ml
47095         drops
47096         drops
47097            ml
47098         drops
47104           tsp
47105            gm
47106            ml
47125           mcg
47126            mg
47128            mg
47137         drops
47140            ml
47143         spray
47146            mg
47152         drops
47154            ml
47155          tube
47156            ml
47162         drops
47164         drops
47178        sprays
47180         drops
47183          pump
47184         drops
47193            ml
47194            ml
47196            ml
47197            ml
47204   unspecified
47208            gm
47209            ml
47210         drops
47220            ml
47221            mg
47222            ml
47240         drops
47248         drops
47251          tube
47253         spray
47260         spray
47302         drops
47323            mg
47325            mg
47334         drops
47343            mg
47345            mg
47350         spray
47355          tube
47360   unspecified
47390           mcg
47407            mg
47409            mg
47411            ml
47412            ml
47415         drops
47416          pump
47417          pump
47420         drops
47421          tube
47433            mg
47439            mg
47451           mcg
47478         drops
47479          tube
47483         drops
47484          tube
47486         spray
47493            ml
47496         drops
47497            gm
47498            gm
47539         drops
47540          drop
47544   unspecified
47547         drops
47557          tube
47562         spray
47563         tube 
47576            ml
47577            ml
47578            ml
47586            ml
47587         spray
47588 other specify
47589            mg
47590            ml
47592            mg
47593            ml
47594            mg
47595            ml
47597            mg
47600            mg
47628         pumps
47629           mcg
47630         drops
47635         units
47636            mg
47658         drops
47681           mcg
47684            ml
47693            ml
47694            ml
47696            ml
47698            gm
47699         spray
47702         drops
47706            mg
47715   unspecified
47716   unspecified
47720         drops
47721         drops
47733          tube
47734         drops
47739   unspecified
47743            mg
47744          tube
47745            mg
47746         units
47752          tube
47755            gm
47760            ml
47800           tsp
47801           tsp
47802         drops
47803          pump
47808            gm
47810         drops
47811            ml
47812          tube
47815          tube
47816          tube
47817         spray
47825   unspecified
47835            ml
47836          tbsp
47840          tube
47860            mg
47861         mg/ml
47877            mg
47887         spray
47888         spray
47889         drops
47890            mg
47891           tsp
47894            mg
47900         drops
47910         drops
47951         drops
47952            mg
47953         drops
47971         spray
47975         spray
47976         spray
47981         spray
47983            mg
47984          tube
47985         drops
47989          tube
47990         spray
47995          tube
47998            mg
48001            mg
48007            mg
48013         spray
48014            ml
48016         drops
48020           tsp
48021            ml
48028            ml
48029            gm
48031         drops
48034         spray
48035          drop
48040         drops
48041            oz
48046            ml
48047         spray
48049            ml
48069          tube
48072            ml
48087         drops
48088            ml
48089         units
48090         units
48094         units
48100            gm
48101         drops
48102            gm
48103            ml
48105            gm
48106            gm
48107          pump
48108          tube
48109          tube
48110         drops
48114         drops
48120         drops
48121         units
48127          pump
48131         units
48142         spray
48143         units
48147         drops
48148            ml
48155            mg
48157         drops
48158         drops
48159         drops
48160            gm
48163   unspecified
48167         spray
48169            mg
48182           mcg
48185            mg
48188         drops
48201            mg
48213         pumps
48214            gm
48215            gm
48217           mcg
48220         drops
48221            ml
48222          tube
48231            mg
48237         spray
48238            mg
48240            mg
48248            mg
48251            gm
48252          tube
48258           tsp
48265            oz
48266            oz
48267         drops
48271            mg
48274         drops
48277         drops
48285            gm
48287            ml
48288         drops
48289           mcg
48291            gm
48292           mcg
48294         drops
48297         spray
48298         drops
48299            ml
48300         drops
48306         spray
48307         drops
48310         drops
48314            mg
48327            ml
48334            ml
48336            mg
48337            mg
48338            mg
48339            mg
48342            mg
48343            ml
48344            mg
48345         drops
48350            mg
48351            mg
48352            mg
48353            mg
48354            mg
48355            gm
48376         drops
48383           tsp
48384          pump
48394         drops
48406         spray
48420            mg
48438           mcg
48439            mg
48441          tube
48442          tbsp
48444           mcg
48447         drops
48448         drops
48481         drops
48483         drops
48496            mg
48497            mg
48498            mg
48500            mg
48502            mg
48504            mg
48505            mg
48513         drops
48540            mg
48541           tsp
48542         drops
48598            ml
48602            mg
48610            mg
48611           mcg
48615           mcg
48621          drop
48624          drop
48633   unspecified
48636          tube
48661            ml
48664         drops
48667          tube
48668         drops
48673   unspecified
48680         drops
48683            ml
48684            ml
48692            mg
48693            mg
48694         drops
48696            ml
48697         drops
48698         drops
48712          pump
48713         pumps
48718            mg
48719         drops
48721         drops
48722            gm
48724         drops
48725          tube
48729         drops
48733          tube
48734         spray
48735         spray
48736         drops
48770         units
48782   unspecified
48802         drops
48806         drops
48808         drops
48812            ml
48819            mg
48821            mg
48845         drops
48855            mg
48859            mg
48862            mg
48889          drop
48890            gm
48891         spray
48892           tsp
48894            mg
48902            ml
48906            ml
48918            gm
48935            ml
48946            mg
48994            mg
48997   unspecified
49002           mcg
49005         drops
49012         drops
49016         drops
49017           mcg
49018           mcg
49025           mcg
49026         drops
49033            ml
49034         drops
49035         drops
49036           ml 
49042         drops
49044          drop
49046            ml
49051   unspecified
49052   unspecified
49082 other specify
49084            gm
49096         drops
49105   unspecified
49113            ml
49117           mcg
49120            mg
49123          tube
49127            mg
49128            ml
49129            ml
49130         drops
49163            mg
49164          tube
49167            mg
49168           mcg
49169            mg
49170            mg
49184          tube
49193            mg
49196            mg
49208          tube
49209         spray
49216          tube
49217         drops
49218          drop
49219            mg
49220            mg
49227          drop
49229          drop
49231            ml
49232          drop
49248           mcg
49252          drop
49253          pump
49316          pump
49323          pump
49324            ml
49343         drops
49346        sprays
49348         drops
49350          tube
49351           tsp
49352         spray
49376          tube
49377            ml
49378           tsp
49379          tbsp
49388         spray
49393         units
49394         units
49395         units
49398            mg
49403            mg
49404            mg
49408         spray
49409         spray
49437           tsp
49438         spray
49442         drops
49460         spray
49461        sprays
49462         units
49463          drop
49473         pumps
49509          pump
49510          tube
49518           mcg
49520            mg
49523           mcg
49526 other specify
49531   unspecified
49549          tube
49550          tube
49553           mcg
49554           mcg
49567         spray
49568          drop
49572          drop
49588           mcg
49590         spray
49591            ml
49593            ml
49596            ml
49601         drops
49607            mg
49645            ml
49649            ml
49654            ml
49659         drops
49698            mg
49699            ml
49705   unspecified
49748            ml
49753            oz
49754            oz
49755            mg
49756            ml
49757            mg
49758            mg
49766         drops
49767          drop
49768          drop
49769          drop
49773          drop
49792           ml 
49793          drop
49799   unspecified
49812            mg
49849         spray
49854            ml
49855         spray
49857            mg
49861         drops
49862         spray
49871            ml
49878         spray
49883            ml
49886         drops
49889         drops
49890            gm
49898         spray
49905            ml
49906        sprays
49907          pump
49908            ml
49911           tsp
49912          tube
49963            mg
49966            iu
49978          tube
49985         drops
49986          drop
49987         drops
49990            ml
49991          pump
49992          tube
49993            ml
49996            ml
50001         spray
50004         drops
50006         drops
50007            ml
50008          tube
50009           ml 
50011         drops
50012   unspecified
50014   unspecified
50048            mg
50050            mg
50077         units
50107          drop
50108          drop
50115          tube
50116         spray
50117         drops
50118           mcg
50154            mg
50159   unspecified
50161   unspecified
50187         drops
50189         drops
50190         drops
50194         spray
50195         spray
50196            ml
50198         drops
50199            ml
                                                  dose_unit_specify
22                                                             <NA>
40                                                  based on weight
41                                                             <NA>
42                                                  based on weight
46                                              tablet/pill/capsule
48                                                             tube
49                                                             tube
51                                              tablet/pill/capsule
59                                            1 tablet/pill/capsule
60                                                      bottle/vial
62                                                      application
63                                              tablet/pill/capsule
67                                                     small amount
70                                                     small amount
74                                                            drops
84                                                            spray
87                                                  0.25 inch strip
91                                                             <NA>
111                                                            <NA>
112                                                            <NA>
113                                                            <NA>
114                                                            <NA>
149                                                  shampoo/mousse
150                                                    small amount
151                                                     application
152                                             tablet/pill/capsule
153                                             tablet/pill/capsule
155                                             tablet/pill/capsule
167                                                            <NA>
188                                             tablet/pill/capsule
192                                             tablet/pill/capsule
220                                             tablet/pill/capsule
230                     272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                           drops
235                                                            <NA>
236                                                            tube
237                                                            tube
238                                                    small amount
242                                                            <NA>
257                                                            <NA>
275                                             tablet/pill/capsule
276                                             tablet/pill/capsule
277                                             tablet/pill/capsule
279                                                 moderate amount
280                                                    small amount
310                                                            <NA>
317                                                            <NA>
318                                                            <NA>
324                                                 based on weight
328                                                 based on weight
329                                                 based on weight
332                                                 based on weight
333                                                 based on weight
347                                                            <NA>
348                                                            <NA>
350                                                            <NA>
351                                                            <NA>
353                                                            <NA>
355                                                            <NA>
366                                                            <NA>
368                                                            <NA>
375                                             tablet/pill/capsule
376                                             tablet/pill/capsule
383                                             tablet/pill/capsule
384                                    based on weight (50-100 lbs)
386                                             tablet/pill/capsule
403                                                            <NA>
404                                                            <NA>
414                                                            <NA>
447                                                            <NA>
449                                                            <NA>
453                                                            <NA>
496                                                            <NA>
498                                                 based on weight
519                                                     unspecified
537                                                            <NA>
597                                                               1
598                                                               1
610                                                            <NA>
619                                             tablet/pill/capsule
637                                                 based on weight
642                                                            <NA>
686                                                            <NA>
688                                                            <NA>
703                                                 based on weight
704                                                 based on weight
709                                                            <NA>
710                                                            <NA>
712                                                            <NA>
725                                                            <NA>
728                                             tablet/pill/capsule
729                                             tablet/pill/capsule
730                                                            <NA>
734                                                      inch strip
738                                    based on weight (50-100 lbs)
739                                    based on weight (60-120 lbs)
754                                             tablet/pill/capsule
755                                                 based on weight
757                                                 based on weight
778                                                            <NA>
785                                             tablet/pill/capsule
790                                             tablet/pill/capsule
792                                             tablet/pill/capsule
797                                                            <NA>
798                                                            <NA>
799                                                            <NA>
800                                                            <NA>
801                                                            <NA>
802                                                            <NA>
803                                                 based on weight
804                                                     unspecified
810                                                     bottle/vial
816                                                    pack/package
819                                                            <NA>
820                                                            <NA>
823                                                            <NA>
824                                             tablet/pill/capsule
832                                                            <NA>
851                                                            <NA>
862                                             tablet/pill/capsule
871                                                            <NA>
874                                                            <NA>
877                                                            <NA>
878                                                            <NA>
879                                                            <NA>
880                                                            <NA>
884                                                            <NA>
887                                                            <NA>
891                                                            <NA>
893                                                            <NA>
899                                                            <NA>
901                                                            <NA>
905                                                            <NA>
913                                                 based on weight
921                                                 based on weight
955                                                          collar
958                                                            <NA>
969                                                            <NA>
977                                                            <NA>
982                                             tablet/pill/capsule
983                                             tablet/pill/capsule
989                                                 based on weight
1001                                                           <NA>
1017                                            tablet/pill/capsule
1018                                            tablet/pill/capsule
1020                                                     inch strip
1021                                                       wipe/pad
1027                                                 shampoo/mousse
1029                                                       wipe/pad
1030                                                 shampoo/mousse
1031                                                           <NA>
1033                                                           <NA>
1036                                                   small amount
1039                                                    bottle/vial
1042                                                       wipe/pad
1050                                                based on weight
1072                                                           <NA>
1073                                                           pump
1074                                            tablet/pill/capsule
1087                       27 mg milbemycin oxime, 1620 mg spinosad
1091                                                           <NA>
1097                                                           <NA>
1099                                            tablet/pill/capsule
1100                                            tablet/pill/capsule
1101                                            tablet/pill/capsule
1108                                                       wipe/pad
1111                                                           <NA>
1112                                                    unspecified
1116                                                    unspecified
1129                                            tablet/pill/capsule
1150                                                   small amount
1152                                   based on weight (50-100 lbs)
1153                                   based on weight (50-100 lbs)
1154                                   based on weight (50-100 lbs)
1155                                            tablet/pill/capsule
1159  460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                   based on weight (50-100 lbs)
1161                                      based on weight (60+ lbs)
1168                                                           <NA>
1169                                                           <NA>
1170                                                           dose
1173                                                    application
1174                                                           <NA>
1175                                                              %
1176                                                           <NA>
1177                                                              %
1179                                                   small amount
1185                                                based on weight
1186                                                based on weight
1187                                                           <NA>
1189                                                based on weight
1190                                                based on weight
1193                                                           <NA>
1194                                                           <NA>
1195                                                based on weight
1208                                                 1 pack/package
1217                                                    combination
1226                                                based on weight
1233                                                           <NA>
1247                                                based on weight
1285                                                           <NA>
1336                                                           <NA>
1344                                            tablet/pill/capsule
1346                                                   small amount
1355                                                based on weight
1371                                          1 tablet/pill/capsule
1398                                                           <NA>
1404                                                          spray
1405                                                           <NA>
1415                                                   small amount
1420                                                           <NA>
1422                                            tablet/pill/capsule
1434                                                           tube
1435                                            tablet/pill/capsule
1438                                            tablet/pill/capsule
1441                                            tablet/pill/capsule
1442                                            tablet/pill/capsule
1443                                                    bottle/vial
1450                                                           tube
1451                                            tablet/pill/capsule
1459                                                    application
1462                                                    bottle/vial
1464                                                based on weight
1473                                                           <NA>
1475                                                           <NA>
1499                                                           <NA>
1500                                                           <NA>
1501                                          1 tablet/pill/capsule
1511                                                based on weight
1512                                                based on weight
1514                                                based on weight
1528                                                based on weight
1529                                                based on weight
1532                                                         1 tube
1534                                                           <NA>
1535                                                           <NA>
1536                                                    application
1537                                            tablet/pill/capsule
1538                                                           <NA>
1539                                                           tube
1541                                                           <NA>
1542                                                           <NA>
1556                                                       inhalant
1572                                   based on weight (50-100 lbs)
1586                                                           <NA>
1587                                                    combination
1598                                                based on weight
1599                                                           <NA>
1634                                                           <NA>
1635                                       4 tablets/pills/capsules
1650                                                           <NA>
1663                                   based on weight (60-120 lbs)
1668                                                moderate amount
1683                                                         collar
1684                                                 shampoo/mousse
1685                                                          spray
1689                                                moderate amount
1692                                                moderate amount
1697                                                         collar
1708                                                           <NA>
1710                                                           <NA>
1712                                   based on weight (50-100 lbs)
1715                                   based on weight (50-100 lbs)
1718                                                           <NA>
1720                                   based on weight (50-100 lbs)
1743                                                           <NA>
1747                                                    bottle/vial
1748                                                  1 bottle/vial
1749                                                based on weight
1756                                                    unspecified
1757                                                    unspecified
1758                                                based on weight
1759                                                based on weight
1760                                                           <NA>
1761                                                          spray
1769                                                           <NA>
1773                                            tablet/pill/capsule
1774                                                           <NA>
1789                                                           <NA>
1791                                                           <NA>
1794                                                           <NA>
1795                                                           <NA>
1796                                            tablet/pill/capsule
1798                                                           <NA>
1805                                                           <NA>
1809                                                           <NA>
1819                                                           <NA>
1820                                                    unspecified
1823                                                           <NA>
1845                                                           tube
1846                                            tablet/pill/capsule
1847                                                           tube
1848                                            tablet/pill/capsule
1849                                                based on weight
1850                                                     inch strip
1851                                                0.25 inch strip
1867                                                based on weight
1872                                                based on weight
1877                                                    unspecified
1887                                                          spray
1888                                                         collar
1917                                                based on weight
1922                                                          spray
1925                                                 shampoo/mousse
1926                                                   small amount
1928                                                based on weight
1929                                                based on weight
1931                                                   small amount
1939                                                    unspecified
1941                                                   small amount
1945                                                          daily
1948                                            tablet/pill/capsule
1962                                                based on weight
1965                                                           <NA>
1980                                                           tube
1982                                          1 tablet/pill/capsule
1983                                                         1 tube
1984                                        0.5 tablet/pill/capsule
1994                                                           <NA>
1998                                                           puff
2006                                                           <NA>
2012                                                           <NA>
2013                                                           <NA>
2016                                                based on weight
2022                                                   small amount
2025                                                    bottle/vial
2026                                            tablet/pill/capsule
2029                                                           <NA>
2030                                                           <NA>
2032                                                    unspecified
2033                                                    unspecified
2034                                                    unspecified
2041                                                    as directed
2042                                                    as directed
2050                                                based on weight
2075                                   based on weight (50-100 lbs)
2083                                    based on weight (40-88 lbs)
2084                                   based on weight (50-100 lbs)
2085                                                based on weight
2087                                   based on weight (50-100 lbs)
2088                                    based on weight (44-88 lbs)
2089                                      based on weight (80+ lbs)
2091                                                based on weight
2093                                                based on weight
2107                                            tablet/pill/capsule
2108                                          1 tablet/pill/capsule
2109                                          1 tablet/pill/capsule
2110                                                based on weight
2113                                            tablet/pill/capsule
2115                                                           <NA>
2116                                                   small amount
2126                                            tablet/pill/capsule
2127                                            tablet/pill/capsule
2149                                                based on weight
2151                                                based on weight
2161                                                based on weight
2165                                                          drops
2166                                                           <NA>
2195                                                    unspecified
2199                                                based on weight
2200                                                based on weight
2201                                            tablet/pill/capsule
2202                                            tablet/pill/capsule
2203                                            tablet/pill/capsule
2204                                            tablet/pill/capsule
2205                                            tablet/pill/capsule
2206                                          1 tablet/pill/capsule
2211                                                           <NA>
2219                                          1 tablet/pill/capsule
2220                                          1 tablet/pill/capsule
2224                                          1 tablet/pill/capsule
2226                                          1 tablet/pill/capsule
2229                                          1 tablet/pill/capsule
2233                                                           <NA>
2241                                                    application
2243                                                based on weight
2244                                                based on weight
2250                                                    unspecified
2255                                                           tube
2258                                                           <NA>
2259                                                           <NA>
2260                                                           <NA>
2261                                                           <NA>
2262                                                           <NA>
2263                                                           <NA>
2264                                                           <NA>
2265                                                           <NA>
2266                                                           <NA>
2269                                                           <NA>
2270                                                           <NA>
2272                                                           <NA>
2278                                                           <NA>
2279                                                           <NA>
2280                                                based on weight
2283                                                based on weight
2301                                                         liquid
2302                                                           <NA>
2390                                                          spray
2398                                                          spray
2404                                            tablet/pill/capsule
2405                                                    application
2409                                                           <NA>
2418                                                           <NA>
2428                                                           <NA>
2463                                                   pack/package
2464                                                           <NA>
2467                                                           <NA>
2473                                                           <NA>
2474                                                           <NA>
2477                                                           <NA>
2478                                                           <NA>
2479                                            tablet/pill/capsule
2481                                                          spray
2482                                   based on weight (50-100 lbs)
2486                                                      as needed
2487                                                       biweekly
2491                                                   small amount
2492                                                     1 wipe/pad
2499                                                   pack/package
2500                                          1 tablet/pill/capsule
2501                                                           <NA>
2502                                                           <NA>
2503                                                           <NA>
2504                                          1 tablet/pill/capsule
2508                                            tablet/pill/capsule
2517                                                           <NA>
2518                                            tablet/pill/capsule
2534                                                           <NA>
2539                                                based on weight
2542                                   based on weight (50-100 lbs)
2543                                                         collar
2545                                            tablet/pill/capsule
2546                                                         collar
2547                                          1 tablet/pill/capsule
2548                                      based on weight (18+ lbs)
2549                                                           <NA>
2550                                                           <NA>
2558                                                based on weight
2559                                                based on weight
2560                                                based on weight
2562                                                           <NA>
2566                                                           <NA>
2575                                                           <NA>
2578                                                          spray
2580                                                       ointment
2583                                                           <NA>
2599                                                           <NA>
2600                                                based on weight
2642                                                          spray
2651                                                    unspecified
2652                                                           <NA>
2653                                                           <NA>
2655                                                           <NA>
2659                                                    unspecified
2660                                                    unspecified
2661                                                    unspecified
2710                                                based on weight
2721                                                           <NA>
2726                                                           dose
2731                                                           <NA>
2735                                                           <NA>
2737                                                           <NA>
2738                                                           <NA>
2739                                                           <NA>
2742                                                based on weight
2743                                                based on weight
2745                                                based on weight
2746                                                based on weight
2748                                                based on weight
2749                                                based on weight
2753                                                based on weight
2756                                                based on weight
2805                                                           <NA>
2815                                                           <NA>
2818                                                   pack/package
2825                                                based on weight
2827                                                based on weight
2828                                            tablet/pill/capsule
2833                                                           <NA>
2838                                          1 tablet/pill/capsule
2839                                                           <NA>
2842                                                           <NA>
2844                                                           <NA>
2846                                          1 tablet/pill/capsule
2855                                            tablet/pill/capsule
2897                                                 shampoo/mousse
2900                                                   small amount
2903                                                 shampoo/mousse
2904                                                moderate amount
2905                                                         weekly
2907                                                   pack/package
2913                                                           <NA>
2919                                          1 tablet/pill/capsule
2920                                          1 tablet/pill/capsule
2921                                                             gm
2922                                            tablet/pill/capsule
2923                                            tablet/pill/capsule
2925                                                    unspecified
2941                                                           <NA>
2942                                                              %
2943                                          1 tablet/pill/capsule
2944                                                           <NA>
2946                                                           <NA>
2958                                            tablet/pill/capsule
2959                                            tablet/pill/capsule
2961                                            tablet/pill/capsule
2962                                            tablet/pill/capsule
2963                                            tablet/pill/capsule
2964                                            tablet/pill/capsule
2974                                            tablet/pill/capsule
2975                                                    application
2978                                            tablet/pill/capsule
2981                                                           <NA>
2988                                                           <NA>
2993                                                           <NA>
2997                                                           <NA>
3002                                                           <NA>
3003                                                   small amount
3007                                                           <NA>
3028                                                           <NA>
3031                                                           <NA>
3055                                                       ointment
3058                                                   small amount
3060                                    based on weight (26-50 lbs)
3095                                                    unspecified
3110                                                           <NA>
3119                                                           <NA>
3147                                                           <NA>
3180                                                           <NA>
3246                                                based on weight
3247                                            tablet/pill/capsule
3250                                                based on weight
3251                                                based on weight
3253                                   based on weight (50-100 lbs)
3257                                                           <NA>
3271                                            tablet/pill/capsule
3278                                                     inch strip
3280                                          1 tablet/pill/capsule
3284                                                based on weight
3287                                                   small amount
3291                                                   small amount
3293                                                   small amount
3294                                            tablet/pill/capsule
3300                                            tablet/pill/capsule
3305                                                   small amount
3312                                                moderate amount
3313                                                   small amount
3339                                            tablet/pill/capsule
3342                                                    application
3345                                                           <NA>
3346                                                           <NA>
3350                                                           <NA>
3360                                                based on weight
3366                                                           <NA>
3372                                                           <NA>
3375                                                           <NA>
3376                                                    application
3394                                                           <NA>
3399                                                           <NA>
3403                                                           <NA>
3421                                                           <NA>
3422                                                           <NA>
3425                                                based on weight
3426                                                    as directed
3429                                                           <NA>
3437                                                           <NA>
3445                                                           <NA>
3446                                                           <NA>
3447                                                           <NA>
3448                                                           <NA>
3449                                                           <NA>
3451                                                           <NA>
3455                                                           <NA>
3456                                                         1 tube
3457                                            tablet/pill/capsule
3458                                                           tube
3459                                                           <NA>
3488                                      based on weight (25+ lbs)
3490                                                based on weight
3491                                                based on weight
3492                                                based on weight
3495                                                based on weight
3496                                                based on weight
3497                                                based on weight
3498                                                based on weight
3512                                          1 tablet/pill/capsule
3513                                                based on weight
3514                                   based on weight (50-100 lbs)
3515                                                           <NA>
3516                                            tablet/pill/capsule
3517                                                           <NA>
3519                                                based on weight
3520                                                           <NA>
3522                                                           <NA>
3525                                                           <NA>
3530                                                           pump
3531                                                           <NA>
3535                                                           <NA>
3581                                            tablet/pill/capsule
3619                                                           <NA>
3622                                                   pack/package
3635                                                           <NA>
3639                                                           <NA>
3640                                                           <NA>
3641                                                          spray
3649                                                           <NA>
3650                                                           <NA>
3652                                                           <NA>
3666                                                          spray
3667                                                   small amount
3675                                                          spray
3684                                            tablet/pill/capsule
3685                                                           tube
3691                                                    bottle/vial
3692                                            tablet/pill/capsule
3693                                                          spray
3698                                                based on weight
3699                                                based on weight
3701                                                based on weight
3704                                                based on weight
3705                                            tablet/pill/capsule
3706                                                           <NA>
3710                                                           <NA>
3718                                                           <NA>
3719                                          1 tablet/pill/capsule
3725                                                           <NA>
3726                                            tablet/pill/capsule
3735                                                           <NA>
3741                                                           <NA>
3742                                                           <NA>
3743                                                           <NA>
3744                                                           <NA>
3745                                                           <NA>
3750                                                           <NA>
3760                                                           <NA>
3773                                                           <NA>
3784                                                           <NA>
3785                                                           <NA>
3786                                                           <NA>
3789                                                           <NA>
3797                                                          spray
3798                                                   small amount
3800                                                   small amount
3815                                                           <NA>
3829                                                           <NA>
3835                                                           <NA>
3836                                                           <NA>
3838                                                           <NA>
3840                                                    application
3848                                                     inch strip
3857                                          1 tablet/pill/capsule
3858                                                         1 tube
3859                                          1 tablet/pill/capsule
3860                                            tablet/pill/capsule
3861                                                           <NA>
3867                                                           <NA>
3870                                                           <NA>
3871                                                           <NA>
3872                                                           <NA>
3874                                                    application
3881                                                           <NA>
3886                                                based on weight
3889                                                based on weight
3897                                                based on weight
3898                                                           <NA>
3900                                                           <NA>
3903                                                based on weight
3906                                                based on weight
3911                                                based on weight
3938                                                based on weight
3943                                                based on weight
3945                                                           <NA>
3946                                                based on weight
3952                                                based on weight
3972                                                based on weight
3980                                                based on weight
3984                                                based on weight
3989                                            tablet/pill/capsule
3990                                            tablet/pill/capsule
4000                                                           <NA>
4017                                          1 tablet/pill/capsule
4030                                                           <NA>
4031                                            tablet/pill/capsule
4042                                                           <NA>
4058                                                based on weight
4059                                                           <NA>
4060                                                           <NA>
4063                                                           <NA>
4064                                                           <NA>
4066                                                based on weight
4067                                                based on weight
4068                                                           <NA>
4069                                                           <NA>
4070                                                           <NA>
4071                                                   small amount
4074                                                           <NA>
4075                                                           <NA>
4077                                                           <NA>
4087                                                           <NA>
4088                                                       ointment
4089                                                           <NA>
4092                                                syringe/pipette
4097                                                           <NA>
4111                                            tablet/pill/capsule
4112                                            tablet/pill/capsule
4113                                                           <NA>
4114                                                           <NA>
4116                                                           <NA>
4117                                                    bottle/vial
4118                                            tablet/pill/capsule
4119                                                           <NA>
4120                                            tablet/pill/capsule
4125                                                           <NA>
4127                                                based on weight
4128                                                based on weight
4131                                                          spray
4132                                                           <NA>
4133                                                           <NA>
4134                                                           <NA>
4162                                                           <NA>
4172                                    based on weight (44-88 lbs)
4183                                                    as directed
4184                                                           <NA>
4191                                                based on weight
4193                                                           <NA>
4198                                                based on weight
4199                                                based on weight
4210                                   based on weight (60-120 lbs)
4212                                                           <NA>
4213                                                           <NA>
4215                                                           <NA>
4216                                                           <NA>
4218                                                           <NA>
4245                                                           <NA>
4247                                                           <NA>
4266                                                           <NA>
4274                                                           <NA>
4298                                    based on weight (44-88 lbs)
4299                                   based on weight (50-100 lbs)
4302                                   based on weight (50-100 lbs)
4304                                                    unspecified
4305                                                    unspecified
4306                                                    unspecified
4307                                            tablet/pill/capsule
4308                                                           <NA>
4309                                                           <NA>
4311                                                           <NA>
4313                                                based on weight
4314                                                based on weight
4323                                                based on weight
4324                                                         powder
4325                                                based on weight
4326                                                         powder
4336                                            tablet/pill/capsule
4338                                            tablet/pill/capsule
4348                                                     inch strip
4349                                                based on weight
4350                                                based on weight
4353                                                based on weight
4354                                            tablet/pill/capsule
4368                                                           <NA>
4371                                                           <NA>
4384                                                           <NA>
4389                                            tablet/pill/capsule
4390                                            tablet/pill/capsule
4395                                                           <NA>
4405                                                           <NA>
4409                                                   small amount
4426                                            tablet/pill/capsule
4427                                                           tube
4428                                          1 tablet/pill/capsule
4430                                                           pump
4431                                                           pump
4444                                                           tube
4446                                                    1 gm/sachet
4454                                                       inhalant
4469                                                   small amount
4470                                                   small amount
4471                                                       wipe/pad
4472                                                   small amount
4480                                                   small amount
4481                                                       wipe/pad
4483                                            tablet/pill/capsule
4486                                            tablet/pill/capsule
4497                                                based on weight
4499                                            tablet/pill/capsule
4500                                            tablet/pill/capsule
4501                                                    as directed
4502                                            tablet/pill/capsule
4504                                                    unspecified
4505                                          1 tablet/pill/capsule
4511                                            tablet/pill/capsule
4517                                                           <NA>
4524                                                based on weight
4532                                                based on weight
4533                                                           <NA>
4536                                                based on weight
4544                                                           <NA>
4545                                            tablet/pill/capsule
4547                                                           <NA>
4558                                                based on weight
4559                                                based on weight
4560                                            tablet/pill/capsule
4561                                                          spray
4562                                            tablet/pill/capsule
4564                                                based on weight
4565                                                based on weight
4566                                                based on weight
4567                                                based on weight
4568                                                    unspecified
4569                                                based on weight
4587                                                           <NA>
4597                                                    unspecified
4599                                                           <NA>
4611                                                           <NA>
4627                                                           <NA>
4628                                                           <NA>
4629                                                           <NA>
4631                                                           <NA>
4634                                                   pack/package
4638                                                           <NA>
4640                                                           <NA>
4642                                                           <NA>
4643                                                          0.20%
4648                                                           <NA>
4649                                                           <NA>
4651                                                       ointment
4652                                                moderate amount
4654                                                           <NA>
4655                                                           <NA>
4695                                            tablet/pill/capsule
4717                                                           <NA>
4719                                                           <NA>
4720                                                           <NA>
4726                                                based on weight
4738                                   based on weight (60-120 lbs)
4739                                                based on weight
4743                                                           <NA>
4744                                                           <NA>
4745                                                           <NA>
4748                                                           <NA>
4757                                                           <NA>
4763                                      based on weight (55+ lbs)
4764                                                           <NA>
4766                                                based on weight
4777                                                 shampoo/mousse
4780                                      based on weight (88+ lbs)
4782                                            tablet/pill/capsule
4801                                                           <NA>
4802                                            tablet/pill/capsule
4805                                                           <NA>
4806                                   based on weight (60-120 lbs)
4813                                                           <NA>
4824                                                           <NA>
4826                                                          units
4828                                                         powder
4832                                                              %
4853                                                   small amount
4855                                                           <NA>
4858                                                           <NA>
4859                                                           <NA>
4861                                                           <NA>
4862                                                           <NA>
4881                                                     inch strip
4902                                                              %
4904                                                    combination
4905                                                           <NA>
4910                                                         collar
4912                                                           <NA>
4913                                                         collar
4914                                                           <NA>
4917                                                           <NA>
4935                                                based on weight
4956                                                   small amount
4960                                                   small amount
4968                                                           <NA>
4969                                                           <NA>
4980                                                   pack/package
4981                                                           <NA>
4996                                                    unspecified
4998                                                           <NA>
5043                                                           <NA>
5046                                                           <NA>
5078                                                based on weight
5122                                                           <NA>
5123                                                           <NA>
5127                                                    unspecified
5134                                                           <NA>
5140                                                           <NA>
5159                                                           <NA>
5160                                                           <NA>
5161                                                           <NA>
5173                                            tablet/pill/capsule
5174                                            tablet/pill/capsule
5191                                                           <NA>
5193                                                           <NA>
5195                                                based on weight
5203                                            tablet/pill/capsule
5210                                                moderate amount
5211                                                moderate amount
5212                                                          spray
5213                                                moderate amount
5214                                                based on weight
5220                                                          spray
5221                                                          spray
5222                                                based on weight
5223                                                based on weight
5225                                            tablet/pill/capsule
5234                                       2 tablets/pills/capsules
5235                                                based on weight
5243                                                based on weight
5244                                                based on weight
5247                                                based on weight
5248                                                based on weight
5253                                                based on weight
5255                                                based on weight
5256                                                based on weight
5257                                                based on weight
5258                                            tablet/pill/capsule
5261                                                based on weight
5262                                            tablet/pill/capsule
5264                                                based on weight
5265                                                based on weight
5270                                                based on weight
5271                                                based on weight
5289                                                           dose
5332                                                based on weight
5333                                                    unspecified
5334                                            tablet/pill/capsule
5335                                                         collar
5336                                            tablet/pill/capsule
5337                                                           <NA>
5340                                                        monthly
5354                                                         collar
5357                                                           <NA>
5359                                                           <NA>
5360                                                           <NA>
5362                                            tablet/pill/capsule
5369                                            tablet/pill/capsule
5377                                                    combination
5378                                                              %
5379                                                based on weight
5384                                                           <NA>
5385                                                           <NA>
5386                                                           <NA>
5387                                                           <NA>
5388                                                           <NA>
5391                                          1 tablet/pill/capsule
5392                                          1 tablet/pill/capsule
5403                                            tablet/pill/capsule
5424                                                         3.5 gm
5428                                                    bottle/vial
5440                                                           <NA>
5460                                                           <NA>
5464                                                           <NA>
5484                                                           <NA>
5491                                                           <NA>
5492                                            tablet/pill/capsule
5497                                            tablet/pill/capsule
5498                                            tablet/pill/capsule
5499                                                           dose
5500                                            tablet/pill/capsule
5501                                                   small amount
5502                                                    bottle/vial
5507                                            tablet/pill/capsule
5508                                            tablet/pill/capsule
5509                                                based on weight
5511                                                based on weight
5513                                            tablet/pill/capsule
5527                                                   small amount
5528                                                    application
5529                                                    application
5533                                                   small amount
5534                                   based on weight (50-100 lbs)
5535                                                           <NA>
5537                                                          spray
5541                                            tablet/pill/capsule
5542                                                syringe/pipette
5545                                          1 tablet/pill/capsule
5546                                       2 tablets/pills/capsules
5552                                                           <NA>
5553                                                           <NA>
5557                                            tablet/pill/capsule
5568                                                based on weight
5571                                                based on weight
5576                                            tablet/pill/capsule
5577                                                         collar
5578                                            tablet/pill/capsule
5595                                   based on weight (50-100 lbs)
5600                                                based on weight
5602                                                based on weight
5607                                                           <NA>
5626                                                based on weight
5627                                                           <NA>
5628                                                           <NA>
5629                                                           <NA>
5630                                                           <NA>
5631                                                based on weight
5632                                                based on weight
5649                                                    billion cfu
5681                                            tablet/pill/capsule
5682                                            tablet/pill/capsule
5695                                                           <NA>
5721                                                           <NA>
5722                                                           <NA>
5723                                                           <NA>
5724                                                           <NA>
5725                                                           <NA>
5728                                                           <NA>
5729                                                           <NA>
5731                                                           <NA>
5747                                            tablet/pill/capsule
5760                                                based on weight
5762                                                           <NA>
5768                                   based on weight (50-100 lbs)
5771                                                           <NA>
5777                                                    unspecified
5804                                                           <NA>
5814                                                           <NA>
5834                                                           <NA>
5839                                                           <NA>
5840                                                           <NA>
5858                                                     inch strip
5869                                                           <NA>
5877                                                based on weight
5884                                                    unspecified
5887                                                           <NA>
5913                                            tablet/pill/capsule
5917                                                           <NA>
5930                                                based on weight
5932                                                           <NA>
5933                                                based on weight
5934                                                based on weight
5935                                                           <NA>
5936                                                based on weight
5937                                                based on weight
5941                                                based on weight
5942                                                based on weight
5945                                                       wipe/pad
5963                                                based on weight
5964                                                based on weight
5965                                                           <NA>
5967                                                           <NA>
5976                                                           <NA>
5981                                            tablet/pill/capsule
5988                                                           <NA>
5991                                                syringe/pipette
5992                                            tablet/pill/capsule
5993                                                           <NA>
5994                                                           <NA>
6000                                                           <NA>
6002                                                              %
6003                                                           <NA>
6004                                                           <NA>
6014                                                           <NA>
6015                                                           <NA>
6016                                                           <NA>
6017                                                           <NA>
6036                                                           <NA>
6038                                            tablet/pill/capsule
6059                                                based on weight
6063                                                    as directed
6068                                                           <NA>
6069                                                    application
6071                                   based on weight (50-100 lbs)
6072                                                    unspecified
6076                                                         collar
6078                                                         collar
6088                                                0.25 inch strip
6090                                                0.25 inch strip
6093                                   based on weight (50-100 lbs)
6095                                                          spray
6101                                                           <NA>
6102                                                           <NA>
6104                                                           <NA>
6109                                                           <NA>
6132                                            tablet/pill/capsule
6133                                            tablet/pill/capsule
6134                                                           <NA>
6135                                                           <NA>
6136                                            tablet/pill/capsule
6137                                            tablet/pill/capsule
6139                                            tablet/pill/capsule
6140                                            tablet/pill/capsule
6148                                                           <NA>
6161                                                           <NA>
6164                                                      as needed
6200                                            tablet/pill/capsule
6202                                            tablet/pill/capsule
6206                                                         1 tube
6208                                                           tube
6217                                                           <NA>
6218                                                         joules
6221                                                           <NA>
6224                                                based on weight
6225                                                based on weight
6226                                                based on weight
6231                                                based on weight
6232                                                based on weight
6244                                                           <NA>
6257                                                    application
6258                                            tablet/pill/capsule
6266                                                           <NA>
6267                                                           <NA>
6275                                                    application
6282                                                           <NA>
6283                                                    application
6284                                                           <NA>
6293                                            tablet/pill/capsule
6302                                                           <NA>
6307                                                           <NA>
6312                                                           <NA>
6319                                                           <NA>
6320                                                           <NA>
6326                                                    application
6328                                                           <NA>
6331                                                based on weight
6358                                                 shampoo/mousse
6390                                                           <NA>
6395                                                based on weight
6405                                                based on weight
6406                                                         collar
6411                                                           <NA>
6437                                                           <NA>
6441                                                           <NA>
6444                                          1 tablet/pill/capsule
6451                                                    unspecified
6459                                                           <NA>
6461                                                           <NA>
6474                                            tablet/pill/capsule
6475                                          1 tablet/pill/capsule
6486                                                           <NA>
6495                                                          drops
6499                                            tablet/pill/capsule
6500                                                based on weight
6522                                                based on weight
6523                                                based on weight
6527                                                based on weight
6528                                                based on weight
6555                                                based on weight
6562                                                   small amount
6569                                            tablet/pill/capsule
6570                                                           tube
6571                                                    unspecified
6573                                                    bottle/vial
6579                                                based on weight
6581                                                    unspecified
6594                                   based on weight (50-100 lbs)
6602                                          1 tablet/pill/capsule
6606                                     1-2 tablets/pills/capsules
6612                                            tablet/pill/capsule
6625                                          1 tablet/pill/capsule
6636                                            tablet/pill/capsule
6644                                                based on weight
6647                                          1 tablet/pill/capsule
6648                                          1 tablet/pill/capsule
6650                                                           <NA>
6658                                            tablet/pill/capsule
6662                                   based on weight (50-100 lbs)
6663                                            tablet/pill/capsule
6680                                                based on weight
6683                                                   small amount
6687                                                based on weight
6688                                                based on weight
6694                                                           <NA>
6696                                                based on weight
6697                                                           <NA>
6698                                            tablet/pill/capsule
6702                                            tablet/pill/capsule
6703                                                           <NA>
6714                                                           <NA>
6715                                    based on weight (26-50 lbs)
6716                                                    unspecified
6717                                                    unspecified
6733                                                           <NA>
6751                                                           <NA>
6759                                                           <NA>
6760                                      based on weight (51+ lbs)
6763                                                           <NA>
6764                                                based on weight
6778                                            tablet/pill/capsule
6779                                            tablet/pill/capsule
6781                                            tablet/pill/capsule
6783                                            tablet/pill/capsule
6786                                                           <NA>
6796                                                based on weight
6797                                                           <NA>
6815                                                           <NA>
6816                                                     inch strip
6817                                                     inch strip
6818                                                           <NA>
6824                                                           <NA>
6826                                                           <NA>
6828                                                           dose
6868                                                       inhalant
6880                                                       inhalant
6886                                                moderate amount
6891                                                    application
6892                                                   small amount
6910                                            tablet/pill/capsule
6928                                                 shampoo/mousse
6934                                                           <NA>
6935                                                           <NA>
6936                                                           <NA>
6946                                                           <NA>
6956                                                           <NA>
6957                                                based on weight
6981                                            tablet/pill/capsule
6982                                            tablet/pill/capsule
6983                                            tablet/pill/capsule
6986                                                           <NA>
7002                                                           <NA>
7005                                                           <NA>
7006                                                           <NA>
7017                                            tablet/pill/capsule
7021                                            tablet/pill/capsule
7025                                                           <NA>
7027                                                           <NA>
7042                                                           <NA>
7054                                                           <NA>
7071                                                           <NA>
7092                                                          spray
7093                                            tablet/pill/capsule
7095                                                           <NA>
7096                                                           <NA>
7116                                                           <NA>
7127                                                           <NA>
7130                                                           <NA>
7131                                                           <NA>
7137                                                          scoop
7149                                          1 tablet/pill/capsule
7151                                                       ointment
7152                                                 1 pack/package
7153                                                   small amount
7154                                                         liquid
7155                                                         powder
7172                                                         powder
7173                                                       wipe/pad
7175                                                           <NA>
7177                                                           <NA>
7180                                                           pump
7189                                                          spray
7208                                                0.25 inch strip
7218                                                           <NA>
7243                                                           <NA>
7247                                            tablet/pill/capsule
7248                                            tablet/pill/capsule
7249                                            tablet/pill/capsule
7260                                            tablet/pill/capsule
7262                                            tablet/pill/capsule
7291                                            tablet/pill/capsule
7295                                            tablet/pill/capsule
7297                                       2 tablets/pills/capsules
7320                                                based on weight
7342                                                syringe/pipette
7344                                                    unspecified
7345                                                    unspecified
7346                                                           <NA>
7371                                                   small amount
7413                                                based on weight
7499                                                           <NA>
7503                                            tablet/pill/capsule
7513                                            tablet/pill/capsule
7519                                                           <NA>
7521                                                    combination
7524                                                    unspecified
7525                                                           <NA>
7526                                                           <NA>
7555                                            tablet/pill/capsule
7563                                            tablet/pill/capsule
7564                                                           <NA>
7565                                                           <NA>
7566                                   based on weight (50-100 lbs)
7576                                                           <NA>
7577                                                           <NA>
7580                                                           <NA>
7583                                   based on weight (50-100 lbs)
7584                                                           <NA>
7585                                                           <NA>
7586                                                           <NA>
7587                                                           <NA>
7588                                                           <NA>
7589                                                           <NA>
7590                                                           <NA>
7598                                                       wipe/pad
7635                                                           <NA>
7660                                   based on weight (50-100 lbs)
7671                                                           <NA>
7673                                                    unspecified
7674                                                    unspecified
7675                                                           <NA>
7678                                                0.25 inch strip
7679                                                         1 pump
7681                                                           <NA>
7692                                                           <NA>
7696                                                           <NA>
7699                                                           <NA>
7701                                                           <NA>
7705                                                          daily
7732                                    based on weight (25-50 lbs)
7742                                                           <NA>
7743                                                           <NA>
7746                                            tablet/pill/capsule
7747                                                    application
7748                                                           <NA>
7749                                                           <NA>
7750                                                           <NA>
7751                                                           <NA>
7754                                                           <NA>
7759                                                         1 tube
7763                                          1 tablet/pill/capsule
7772                                                           <NA>
7776                                                           <NA>
7783                                                         1 tube
7784                                          1 tablet/pill/capsule
7795                                            tablet/pill/capsule
7812                                                   small amount
7818                                                           <NA>
7820                                                           <NA>
7822                                                           <NA>
7832                                                           <NA>
7839                                                         powder
7845                                                           <NA>
7846                                                           <NA>
7848                                                           <NA>
7852                                                           <NA>
7853                                                           pump
7854                                                           <NA>
7862                                                           <NA>
7883                                          1 tablet/pill/capsule
7884                                          1 tablet/pill/capsule
7887                                                           <NA>
7889                                                           <NA>
7895                                                           <NA>
7926                                                         powder
7929                                                   small amount
7944                                                           <NA>
7946                                                           <NA>
7961                                                       ointment
7966                                            tablet/pill/capsule
7967                                            tablet/pill/capsule
7968                                            tablet/pill/capsule
7969                                            tablet/pill/capsule
7970                                                           <NA>
7973                                                           <NA>
7987                                                           <NA>
7988                                                based on weight
7993                                                based on weight
7995                                                           <NA>
7998                                                   pack/package
8000                                                based on weight
8009                                                    unspecified
8012                                                       ointment
8014                                                   small amount
8017                                                   small amount
8029                                                    combination
8030                                                based on weight
8040                                                           <NA>
8042                                                           <NA>
8043                                                           <NA>
8044                                                           <NA>
8045                                                           <NA>
8075                                                           <NA>
8086                                                   small amount
8091                                                           <NA>
8098                                                           <NA>
8099                                                           <NA>
8120                                                based on weight
8121                                   based on weight (50-100 lbs)
8123                                            tablet/pill/capsule
8125                                                           <NA>
8128                                                   small amount
8130                                                based on weight
8131                                                based on weight
8136                                                based on weight
8137                                                based on weight
8138                                                based on weight
8139                                                based on weight
8140                                                   small amount
8160                                                    unspecified
8182                                                   small amount
8184                                                         powder
8185                                   based on weight (50-100 lbs)
8186                                   based on weight (50-100 lbs)
8187                                   based on weight (50-100 lbs)
8188                                   based on weight (60-120 lbs)
8195                                                based on weight
8196                                                based on weight
8205                                                based on weight
8206                                                based on weight
8207                                                based on weight
8208                                                based on weight
8209                                                           <NA>
8210                                                           <NA>
8211                                                           <NA>
8212                                                based on weight
8215                                                based on weight
8221                                          1 tablet/pill/capsule
8223                                                           <NA>
8224                                                           <NA>
8234                                                        8 drops
8235                                                   small amount
8238                                                           <NA>
8248                                            tablet/pill/capsule
8251                                                           <NA>
8252                                                          spray
8280                                                           <NA>
8284                                                   small amount
8293                                                   small amount
8296                                   based on weight (50-100 lbs)
8297                                    based on weight (44-88 lbs)
8298                                                           <NA>
8314                                                           <NA>
8315                                                           <NA>
8337                                                           <NA>
8338                                                           <NA>
8349                                                based on weight
8354                                            tablet/pill/capsule
8355                                                  1 application
8358                                                based on weight
8359                                                based on weight
8362                                                   small amount
8369                                                   small amount
8370                                            tablet/pill/capsule
8371                                            tablet/pill/capsule
8376                                                   small amount
8377                                            tablet/pill/capsule
8378                                            tablet/pill/capsule
8389                                                           <NA>
8408                                                              1
8410                                                based on weight
8418                                                       inhalant
8420                                                based on weight
8421                                            tablet/pill/capsule
8424                                                         1 tube
8425                                            tablet/pill/capsule
8427                                            tablet/pill/capsule
8435                                                 1 pack/package
8436                                                   small amount
8440                                                           <NA>
8454                                            tablet/pill/capsule
8466                                          1 tablet/pill/capsule
8467                                                   small amount
8475                                                 shampoo/mousse
8478                                                 shampoo/mousse
8509                                            tablet/pill/capsule
8514                                            tablet/pill/capsule
8515                                            tablet/pill/capsule
8528                                            tablet/pill/capsule
8531                                            tablet/pill/capsule
8541                                                           <NA>
8550                                                           <NA>
8554                                                based on weight
8555                                                based on weight
8578                                                   small amount
8581                                                   small amount
8582                                          1 tablet/pill/capsule
8583                                                           <NA>
8584                                                           <NA>
8585                                                         powder
8586                                                     1 wipe/pad
8588                                                           <NA>
8591                                            tablet/pill/capsule
8607                                                based on weight
8609                                                based on weight
8613                                                           <NA>
8673                                                           <NA>
8674                                                based on weight
8675                                            tablet/pill/capsule
8676                                            tablet/pill/capsule
8677                                            tablet/pill/capsule
8694                                                  1 bottle/vial
8697                                                           <NA>
8702                                                    bottle/vial
8707                                                  1 bottle/vial
8731                                                         collar
8735                                                   small amount
8736                                                       wipe/pad
8744                                                           <NA>
8745                                                           <NA>
8756                                          1 tablet/pill/capsule
8757                                                           <NA>
8759                                                based on weight
8760                                                based on weight
8768                                      based on weight (51+ lbs)
8769                                      based on weight (56+ lbs)
8770                                          1 tablet/pill/capsule
8771                                                         1 tube
8777                                                based on weight
8778                                          1 tablet/pill/capsule
8779                                                  1 application
8780                                          1 tablet/pill/capsule
8781                                                  1 application
8786                                                based on weight
8790                                                based on weight
8791                                                based on weight
8792                                                           <NA>
8793                                            tablet/pill/capsule
8794                                            tablet/pill/capsule
8795                                                based on weight
8797                                                           <NA>
8805                                            tablet/pill/capsule
8815                                                     inch strip
8819                                                based on weight
8820                                                based on weight
8825                                                           <NA>
8826                                                           dose
8828                                                based on weight
8831                                                           <NA>
8833                                                based on weight
8837                                                           <NA>
8843                                                           <NA>
8851                                                           <NA>
8852                                                           <NA>
8853                                                           <NA>
8860                                                           <NA>
8875                                                           <NA>
8876                                                           <NA>
8877                                                           <NA>
8879                                                based on weight
8885                                                           <NA>
8908                                                           <NA>
8911                                                based on weight
8929                                                    as directed
8930                                                           <NA>
8961                                                    as directed
8962                                                           <NA>
9026                                   based on weight (50-100 lbs)
9046                                          1 tablet/pill/capsule
9047                                                           <NA>
9050                                            tablet/pill/capsule
9052                                                           <NA>
9054                                            tablet/pill/capsule
9055                                                based on weight
9060                                          1 tablet/pill/capsule
9064                                                           <NA>
9070                                            tablet/pill/capsule
9071                                            tablet/pill/capsule
9084                                                           <NA>
9094                                                based on weight
9095                                                based on weight
9098                                                based on weight
9099                                                           <NA>
9100                                                    unspecified
9101                                                    unspecified
9109                                                0.25 inch strip
9118                                                     inch strip
9132                                            tablet/pill/capsule
9136                                                   small amount
9156                                                           <NA>
9160                                                based on weight
9161                                                based on weight
9170                                                based on weight
9187                                                           <NA>
9193                                                   pack/package
9202                                          1 tablet/pill/capsule
9230                                                   small amount
9236                                                based on weight
9239                                                           <NA>
9240                                                    as directed
9241                                                    unspecified
9242                                            tablet/pill/capsule
9244                                                           <NA>
9252                                                   pack/package
9253                                                      as needed
9254                                            tablet/pill/capsule
9259                                                           <NA>
9267                                                based on weight
9269                                          1 tablet/pill/capsule
9271                                                           <NA>
9292                                                           <NA>
9294                                                           <NA>
9295                                                           <NA>
9297                                                           <NA>
9386                                            tablet/pill/capsule
9387                                                    bottle/vial
9416                                                           <NA>
9418                                                           <NA>
9421                                                         collar
9422                                            tablet/pill/capsule
9426                                          1 tablet/pill/capsule
9429                                                    application
9432                                                         collar
9433                                                           <NA>
9434                                                based on weight
9435                                                    unspecified
9436                                            tablet/pill/capsule
9438                                                   small amount
9447                                                           <NA>
9452                                                           <NA>
9453                                                              %
9454                                                     inch strip
9494                                                    unspecified
9495                                                    unspecified
9511                                                           <NA>
9516                                               0.125 inch strip
9524                                                           <NA>
9544                                                based on weight
9546                                                based on weight
9548                                                based on weight
9549                                                based on weight
9584                                          1 tablet/pill/capsule
9588                                                           <NA>
9592                                                           <NA>
9596                                                           <NA>
9600                                                based on weight
9601                                                based on weight
9602                                                           <NA>
9603                                                           <NA>
9604                                                           <NA>
9609                                            tablet/pill/capsule
9610                                            tablet/pill/capsule
9612                                                          spray
9613                                                          spray
9614                                                       wipe/pad
9615                                            tablet/pill/capsule
9616                                            tablet/pill/capsule
9617                                            tablet/pill/capsule
9618                                            tablet/pill/capsule
9619                                            tablet/pill/capsule
9620                                            tablet/pill/capsule
9621                                   based on weight (50-100 lbs)
9635                                                           <NA>
9640                                            tablet/pill/capsule
9641                                            tablet/pill/capsule
9643                                            tablet/pill/capsule
9718                                                    unspecified
9723                                                           <NA>
9759                    272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                           <NA>
9761                                                based on weight
9766                                                based on weight
9770                                                based on weight
9785                                                           <NA>
9791                                                           <NA>
9807                                                           <NA>
9808                                                           <NA>
9809                                                           <NA>
9821                                                   pack/package
9826                                                     inch strip
9828                                                           <NA>
9833                                                0.25 inch strip
9837                                                           <NA>
9840                                                           <NA>
9843                                                           <NA>
9863                                                       wipe/pad
9865                                                           pump
9873                                                           <NA>
9877                                                           <NA>
9884                                                             1%
9889                                            tablet/pill/capsule
9890                                                    bottle/vial
9891                                                     inch strip
9892                                                   small amount
9894                                                           <NA>
9895                                                           <NA>
9896                                                           <NA>
9897                                   based on weight (50-100 lbs)
9898                                   based on weight (60-120 lbs)
9901                                          1 tablet/pill/capsule
9903                                                0.25 inch strip
9907                                                           <NA>
9917                                                based on weight
9928                                                           <NA>
9931                                          1 tablet/pill/capsule
9935                                            tablet/pill/capsule
9942                                                         cup(s)
9943                                                           <NA>
9944                                                    unspecified
9945                                                based on weight
9963                                                based on weight
9966                                                based on weight
9968                                                based on weight
9970                                                   small amount
9972                                                           <NA>
10017                                               based on weight
10026                                                          <NA>
10027                                                   application
10037                                                          <NA>
10042                                                          <NA>
10053                                               based on weight
10061                                                  small amount
10063                                               based on weight
10066                                               based on weight
10075                                                          <NA>
10092                                                          <NA>
10093                                                          <NA>
10106                                                          <NA>
10107                                                          <NA>
10108                                                          <NA>
10109                                                          <NA>
10111                                                          <NA>
10113                                                          <NA>
10115                                           tablet/pill/capsule
10116                                                          <NA>
10119                                                   combination
10120                                                          <NA>
10121                                           tablet/pill/capsule
10130                                                          <NA>
10131                                                          <NA>
10132                                                          <NA>
10133                                                          <NA>
10134                                           tablet/pill/capsule
10151                                                          <NA>
10167                                  based on weight (50-100 lbs)
10170                                  based on weight (50-100 lbs)
10176                                                  small amount
10187                                                  small amount
10188                                           tablet/pill/capsule
10195                                                          <NA>
10198                                                          <NA>
10200                                           tablet/pill/capsule
10209                                               based on weight
10219                                               based on weight
10232                                                          <NA>
10233                                                          <NA>
10234                                                          <NA>
10235                                                          <NA>
10245                                           tablet/pill/capsule
10249                                   based on weight (44-88 lbs)
10260                                                          <NA>
10264                                               moderate amount
10273                                               based on weight
10274                                               based on weight
10275                                               based on weight
10276                                               based on weight
10301                                                          <NA>
10312                                                          <NA>
10313                                                          <NA>
10314                                                          <NA>
10320                                                          <NA>
10324                                                          <NA>
10334                                           tablet/pill/capsule
10335                                           tablet/pill/capsule
10345                                                  small amount
10347                                           tablet/pill/capsule
10348                                           tablet/pill/capsule
10349                                                  small amount
10356                                                  small amount
10365                                           tablet/pill/capsule
10366                                                          tube
10370                                                          <NA>
10372                                                   combination
10374                                                   combination
10379                                                          <NA>
10400                                                          <NA>
10403                                                        1 tube
10405                                               based on weight
10408                                           tablet/pill/capsule
10409                                                          <NA>
10410                                                          <NA>
10412                                                          <NA>
10429                                                          <NA>
10435                                                          <NA>
10436                                                      wipe/pad
10441                                                          <NA>
10445                                                         spray
10470                                                          <NA>
10477                                                   bottle/vial
10478                                  based on weight (50-100 lbs)
10483                                                          <NA>
10485                                                          <NA>
10487                                                          <NA>
10499                                                          <NA>
10503                                         1 tablet/pill/capsule
10505                                         1 tablet/pill/capsule
10506                                                          <NA>
10529                                                  small amount
10555                                                   application
10557                                                          <NA>
10565                                                          <NA>
10573                                                          <NA>
10575                                                  small amount
10576                                                          <NA>
10577                                                          <NA>
10578                                                          <NA>
10579                                                          <NA>
10580                                                          <NA>
10583                                               based on weight
10588                                           tablet/pill/capsule
10590                                           tablet/pill/capsule
10591                                         1 tablet/pill/capsule
10610                                                          <NA>
10619                                           tablet/pill/capsule
10624                                               based on weight
10628                                                    inch strip
10642                                                          <NA>
10655                                  based on weight (50-100 lbs)
10667                                                          <NA>
10671                                                          <NA>
10678                                                          <NA>
10682                                                          <NA>
10683                                  based on weight (50-100 lbs)
10684                                  based on weight (50-100 lbs)
10685                                               based on weight
10686                                                   unspecified
10687                                                    1-2 scoops
10689                                  based on weight (50-100 lbs)
10693                                                          <NA>
10694                                  based on weight (50-100 lbs)
10696                                                          <NA>
10697                                                          <NA>
10701                                                          <NA>
10706                                                          <NA>
10707                                  based on weight (50-100 lbs)
10711                                  based on weight (50-100 lbs)
10712                                               based on weight
10713                                                   unspecified
10714                                                    1-2 scoops
10717                                  based on weight (50-100 lbs)
10718                                                          <NA>
10725                                  based on weight (50-100 lbs)
10726                                                        powder
10727                                                   unspecified
10740                                                          <NA>
10743                                                      wipe/pad
10751                                                          <NA>
10755                                                          <NA>
10769                                                          <NA>
10780                                               based on weight
10781                                               based on weight
10792                                                          <NA>
10794                                               based on weight
10796                                                   combination
10825                                                        collar
10827                                                        collar
10830                                           tablet/pill/capsule
10837                                                125 mg, 500 mg
10843                                  based on weight (85-130 lbs)
10846                                           tablet/pill/capsule
10849                                               based on weight
10853                                                  small amount
10863                                                          pump
10865                                                          <NA>
10866                                                          <NA>
10870                                           tablet/pill/capsule
10871                                                   bottle/vial
10874                                           tablet/pill/capsule
10877                                           tablet/pill/capsule
10878                                           tablet/pill/capsule
10892                                                          <NA>
10896                                                          <NA>
10898                                                          <NA>
10899                                                          <NA>
10901                                                          <NA>
10905                                                         spray
10928                                                          tube
10929                                                          tube
10934                                               based on weight
10938                                           tablet/pill/capsule
10953                                                          <NA>
10959                                                          <NA>
10970                                           tablet/pill/capsule
10971                                           tablet/pill/capsule
11003                                           tablet/pill/capsule
11008                                         1 tablet/pill/capsule
11009                                         1 tablet/pill/capsule
11010                                               based on weight
11011                                               based on weight
11016                                                  small amount
11021                                                          <NA>
11035                                           tablet/pill/capsule
11036                                           tablet/pill/capsule
11037                                           tablet/pill/capsule
11038                                           tablet/pill/capsule
11065                                                          <NA>
11085                                                          <NA>
11088                                                          <NA>
11093                                                          <NA>
11134                                               based on weight
11142                                                          <NA>
11144                                                          <NA>
11145                                                          <NA>
11152                                               based on weight
11153                                               based on weight
11155                                                          <NA>
11156                                                          <NA>
11158                                               based on weight
11159                                                          <NA>
11163                                                          <NA>
11165                                               based on weight
11182                                                          <NA>
11186                                           tablet/pill/capsule
11189                                                          <NA>
11208                                                          <NA>
11210                                                   unspecified
11211                                                   unspecified
11212                                               based on weight
11213                                                          <NA>
11224                                           tablet/pill/capsule
11228                                           tablet/pill/capsule
11229                                                          <NA>
11241                                                          <NA>
11242                      460 mg lufenuron, 23 mg milbemycin oxime
11276                                                          <NA>
11291                                               based on weight
11292                                               based on weight
11293                                         1 tablet/pill/capsule
11294                                         1 tablet/pill/capsule
11295                                         1 tablet/pill/capsule
11296                                         1 tablet/pill/capsule
11307                                           tablet/pill/capsule
11311                                                          <NA>
11312                                                          <NA>
11315                                                          <NA>
11316                                                          <NA>
11317                                                          <NA>
11318                                                          <NA>
11326                                           tablet/pill/capsule
11327                                           tablet/pill/capsule
11338                                                  small amount
11340                                                          <NA>
11346                                                        liquid
11349                                                        liquid
11350                                                          <NA>
11353                                                          <NA>
11356                                                  small amount
11360                                                          <NA>
11368                                           tablet/pill/capsule
11385                                           tablet/pill/capsule
11386                                           tablet/pill/capsule
11387                                                  pack/package
11388                                                  pack/package
11394                                                  small amount
11415                                                  small amount
11436                                               based on weight
11437                                               based on weight
11441                                                          <NA>
11464                                                  small amount
11470                                                          <NA>
11471                                                          <NA>
11473                                               based on weight
11477                                           tablet/pill/capsule
11493                                                          <NA>
11509                                  based on weight (50-100 lbs)
11536                                                          <NA>
11537                                                          <NA>
11538                                                          <NA>
11545                                                          <NA>
11546                                               based on weight
11547                                                          <NA>
11551                                                          <NA>
11560                                         1 tablet/pill/capsule
11561                                               based on weight
11562                                               based on weight
11567                                           tablet/pill/capsule
11568                                           tablet/pill/capsule
11570                                           tablet/pill/capsule
11575                                                          <NA>
11576                                                          <NA>
11577                                                          <NA>
11578                                                          <NA>
11589                                               based on weight
11593                                           tablet/pill/capsule
11596                                               based on weight
11599                                                          tube
11600                                           tablet/pill/capsule
11620                                                          <NA>
11621                                                          <NA>
11633                                                          <NA>
11637                                   based on weight (25-60 lbs)
11641                                                          <NA>
11651                                           tablet/pill/capsule
11652                                                          tube
11653                                  based on weight (60-120 lbs)
11654                                         1 tablet/pill/capsule
11655                                           tablet/pill/capsule
11656                                               based on weight
11660                                               based on weight
11661                                         1 tablet/pill/capsule
11662                                         1 tablet/pill/capsule
11664                                               based on weight
11666                                                          <NA>
11667                                                          <NA>
11671                                                          <NA>
11673                                                          <NA>
11678                                               based on weight
11680                                               based on weight
11681                                               based on weight
11683                                               based on weight
11691                                     based on weight (51+ lbs)
11692                                                          <NA>
11693                                                          <NA>
11695                                                  small amount
11701                                           tablet/pill/capsule
11702                                                          <NA>
11709                                           tablet/pill/capsule
11710                                           tablet/pill/capsule
11719                                                          <NA>
11722                                                          <NA>
11723                                                          <NA>
11735                                               based on weight
11742                                                          <NA>
11802                                                          <NA>
11806                                                   unspecified
11813                                                          <NA>
11814                                               based on weight
11817                                                          <NA>
11822                                           tablet/pill/capsule
11823                                           tablet/pill/capsule
11824                                                   application
11825                                           tablet/pill/capsule
11832                                                   combination
11833                                                   combination
11835                                           tablet/pill/capsule
11836                                           tablet/pill/capsule
11837                                           tablet/pill/capsule
11840                                                          <NA>
11844                                                          <NA>
11846                                                          <NA>
11847                                           tablet/pill/capsule
11848                                           tablet/pill/capsule
11850                                                          <NA>
11861                                                   combination
11862                                                   combination
11873                                           tablet/pill/capsule
11874                                           tablet/pill/capsule
11875                                           tablet/pill/capsule
11881                                               based on weight
11882                                               based on weight
11889                                               based on weight
11898                                                          <NA>
11911                                                          <NA>
11919                                           tablet/pill/capsule
11930                                                   billion cfu
11959                                                          <NA>
11960                                                   as directed
11962                                                          <NA>
11964                                               based on weight
11978                                                         spray
11979                                                          <NA>
11980                                                        1 tube
11983                                                          <NA>
11993                                                          <NA>
12009                                                          <NA>
12010                                                          <NA>
12014                                               based on weight
12018                                                          tube
12019                                           tablet/pill/capsule
12020                                  based on weight (50-100 lbs)
12043                                                          <NA>
12047                                                          <NA>
12048                                                          <NA>
12051                                                  pack/package
12054                                                   unspecified
12090                                               based on weight
12108                                                          <NA>
12111                                               moderate amount
12120                                                          <NA>
12128                                               based on weight
12129                                               based on weight
12130                                                          <NA>
12135                                           tablet/pill/capsule
12136                                           tablet/pill/capsule
12154                                         1 tablet/pill/capsule
12155                                         1 tablet/pill/capsule
12159                                                   unspecified
12160                                                   unspecified
12164                                                   unspecified
12173                                         1 tablet/pill/capsule
12215                                                          <NA>
12223                                                     0.5 drops
12261                                           tablet/pill/capsule
12271                                               based on weight
12273                                                      ointment
12279                                                          <NA>
12283                                                          <NA>
12299                                                          <NA>
12306                                                  small amount
12309                                                          pump
12313                                                          <NA>
12314                                                          <NA>
12322                                                          <NA>
12324                                           tablet/pill/capsule
12334                                                          <NA>
12336                                                          <NA>
12337                                                   unspecified
12342                                           tablet/pill/capsule
12343                                                   unspecified
12346                                                          <NA>
12349                                                   bottle/vial
12351                                                          <NA>
12353                                                          <NA>
12364                                                          <NA>
12366                                           tablet/pill/capsule
12376                                                          <NA>
12379                                                          <NA>
12394                                                          <NA>
12398                                                          <NA>
12402                                               based on weight
12409                                                1 pack/package
12410                                         1 tablet/pill/capsule
12411                                                         drops
12414                                               based on weight
12415                                               based on weight
12417                                           tablet/pill/capsule
12418                                           tablet/pill/capsule
12420                                                      ointment
12421                                                          <NA>
12422                                                          <NA>
12423                                                  small amount
12427                                                          <NA>
12453                                                   combination
12454                                  based on weight (50-100 lbs)
12455                                                          <NA>
12456                                               based on weight
12457                                               based on weight
12461                                                      wipe/pad
12462                                           tablet/pill/capsule
12463                                                          <NA>
12473                                               based on weight
12474                                               based on weight
12475                                                          <NA>
12477                                                          <NA>
12481                                               based on weight
12485                                                          <NA>
12487                                                          <NA>
12495                                               based on weight
12497                                                   billion cfu
12498                                               based on weight
12500                                           tablet/pill/capsule
12506                                                          <NA>
12514                                                          <NA>
12516                                                          <NA>
12520                                               based on weight
12521                                         1 tablet/pill/capsule
12523                                               based on weight
12529                                                  small amount
12530                                               based on weight
12535                                                  small amount
12536                                                          <NA>
12540                                                          dose
12541                                                          dose
12543                                                   bottle/vial
12546                                                         scoop
12549                                                          <NA>
12550                                           tablet/pill/capsule
12551                                                          tube
12552                                           tablet/pill/capsule
12553                                                  small amount
12554                                                  small amount
12569                                                          <NA>
12571                                                            1%
12578                                                          <NA>
12580                                                          <NA>
12585                                                          <NA>
12588                                                          <NA>
12589                                                          <NA>
12595                                                          <NA>
12596                                                          <NA>
12605                                                          <NA>
12608                                                          <NA>
12615                                                          <NA>
12616                                  based on weight (50-100 lbs)
12620                                         1 tablet/pill/capsule
12623                                         1 tablet/pill/capsule
12630                                                          <NA>
12632                                                          <NA>
12636                                                          <NA>
12638                                               based on weight
12639                                         1 tablet/pill/capsule
12642                                                          <NA>
12645                                                          <NA>
12686                                         1 tablet/pill/capsule
12692                                                          <NA>
12693                                           tablet/pill/capsule
12714                                               based on weight
12730                                                          <NA>
12732                                                          <NA>
12735                                                  small amount
12738                                                          <NA>
12740                                                          <NA>
12744                                                          <NA>
12749                                                          <NA>
12754                                                          <NA>
12755                                                          <NA>
12756                                                          <NA>
12771                                                     injection
12774                                           tablet/pill/capsule
12780                                                  pack/package
12784                                                  pack/package
12787                                                        collar
12788                                               0.25 inch strip
12795                                         1 tablet/pill/capsule
12796                                                        collar
12797                                                1 pack/package
12801                                                        powder
12826                                                   application
12828                                                   application
12836                                                          <NA>
12849                                                          <NA>
12850                                                          <NA>
12861                                                          <NA>
12865                                                          <NA>
12866                                                   unspecified
12870                                                        powder
12873                                                          <NA>
12879                                  based on weight (50-100 lbs)
12880                                  based on weight (60-120 lbs)
12881                                                  small amount
12882                                                  small amount
12894                                                          <NA>
12895                                                   unspecified
12901                                                          <NA>
12902                                                          <NA>
12903                                                          <NA>
12905                                                          <NA>
12906                                                            ml
12907                                                   unspecified
12908                                                   unspecified
12911                                                          <NA>
12916                                               based on weight
12920                                               based on weight
12929                                               based on weight
12942                                           tablet/pill/capsule
12943                                               based on weight
12945                                           tablet/pill/capsule
12948                                           tablet/pill/capsule
12949                                                          <NA>
12952                                           tablet/pill/capsule
12955                                           tablet/pill/capsule
12956                                                   as directed
12957                                  based on weight (50-100 lbs)
12962                                                          <NA>
12963                                      2 tablets/pills/capsules
12966                                               based on weight
12994                                                          tube
13005                                  based on weight (50-100 lbs)
13006                                  based on weight (60-120 lbs)
13008                                         1 tablet/pill/capsule
13010                                                          <NA>
13013                                                          <NA>
13020                                                          <NA>
13041                                                          <NA>
13049                                                  small amount
13061                                           tablet/pill/capsule
13062                                                          <NA>
13074                                                          <NA>
13075                                                          <NA>
13076                                                          <NA>
13081                                                          <NA>
13084                                                          <NA>
13086                                                          <NA>
13096                                                  small amount
13104                                                          <NA>
13108                                                          <NA>
13109                                                          <NA>
13114                                                          <NA>
13115                                                          <NA>
13116                                                          <NA>
13124                                                  small amount
13126                                                          <NA>
13127                                                          <NA>
13129                                                  small amount
13130                                                  small amount
13133                                                          <NA>
13136                                               based on weight
13137                                   based on weight (44-88 lbs)
13139                                                          <NA>
13142                                               based on weight
13143                                               based on weight
13148                                                          <NA>
13149                                         1 tablet/pill/capsule
13150                                         1 tablet/pill/capsule
13151                                         1 tablet/pill/capsule
13152                                         1 tablet/pill/capsule
13154                                                          <NA>
13157                                         1 tablet/pill/capsule
13159                                                          <NA>
13160                                                          <NA>
13168                                           tablet/pill/capsule
13169                                           tablet/pill/capsule
13170                                           tablet/pill/capsule
13187                                                         spray
13188                                                          <NA>
13189                                                          <NA>
13195                                                         spray
13196                                                shampoo/mousse
13198                                                  small amount
13199                                           tablet/pill/capsule
13233                                                   application
13246                                                    inch strip
13248                                                          <NA>
13249                                                          <NA>
13264                                                          <NA>
13277                                                          <NA>
13278                                                      ointment
13279                                                      ointment
13286                                                          <NA>
13287                                                          <NA>
13297                                           tablet/pill/capsule
13298                                           tablet/pill/capsule
13299                                                          <NA>
13307                                           tablet/pill/capsule
13308                                               based on weight
13313                                               based on weight
13314                                               based on weight
13321                                               moderate amount
13331                                               based on weight
13332                                                     2-3 drops
13334                                                          <NA>
13340                                                          <NA>
13341                                           tablet/pill/capsule
13343                                           tablet/pill/capsule
13344                                           tablet/pill/capsule
13349                                                          <NA>
13353                                                          <NA>
13354                                           tablet/pill/capsule
13355                                           tablet/pill/capsule
13356                                                          <NA>
13357                                                   unspecified
13376                                                          <NA>
13405                                                          <NA>
13411                                                          <NA>
13454                                               based on weight
13455                                               based on weight
13456                                                          <NA>
13459                                               based on weight
13460                                                  small amount
13461                                           tablet/pill/capsule
13462                                           tablet/pill/capsule
13464                                                          <NA>
13468                                                   unspecified
13470                                           tablet/pill/capsule
13471                                               based on weight
13475                                               based on weight
13476                                           tablet/pill/capsule
13479                                               based on weight
13483                                               based on weight
13484                                               based on weight
13496                                                          <NA>
13502                                                          <NA>
13503                                                          <NA>
13506                                           tablet/pill/capsule
13532                                                  pack/package
13537                                                          <NA>
13538                                           tablet/pill/capsule
13562                                                          <NA>
13563                                                shampoo/mousse
13564                                                          <NA>
13575                                                      titrated
13576                                         1 tablet/pill/capsule
13579                                                          <NA>
13581                                                          <NA>
13585                                                          <NA>
13590                                                     as needed
13594                                                          <NA>
13595                                                          <NA>
13601                                                    inch strip
13603                                                          <NA>
13605                                                          <NA>
13609                                               0.25 inch strip
13615                                                          <NA>
13623                                                   bottle/vial
13624                                               based on weight
13625                                                          tube
13628                                               based on weight
13631                                                  small amount
13654                                                  small amount
13657                                                  small amount
13666                                                 1 bottle/vial
13693                                           tablet/pill/capsule
13723                                   based on weight (44-88 lbs)
13724                                               based on weight
13730                                           tablet/pill/capsule
13737                                           tablet/pill/capsule
13740                                                          <NA>
13741                                                          <NA>
13747                                                          <NA>
13756                                                          <NA>
13768                                                          <NA>
13769                                                         spray
13776                                               based on weight
13782                                               syringe/pipette
13783                                               based on weight
13796                                                      wipe/pad
13893                                                          <NA>
13894                                                          <NA>
13896                                               based on weight
13902                                                          <NA>
13905                                                          <NA>
13906                                                          <NA>
13910                                               based on weight
13912                                                          <NA>
13913                                                          <NA>
13925                                                          <NA>
13943                                                          <NA>
13946                                                         spray
13996                                                          <NA>
13998                                         1 tablet/pill/capsule
14006                                                         spray
14007                                           tablet/pill/capsule
14050                                               0.25 inch strip
14051                                           tablet/pill/capsule
14055                                                          <NA>
14059                                                          <NA>
14060                                           tablet/pill/capsule
14061                                                          <NA>
14062                                                          <NA>
14063                                                          <NA>
14064                                               based on weight
14106                                               based on weight
14114                                           tablet/pill/capsule
14118                                                          <NA>
14123                                                          <NA>
14128                                                          <NA>
14129                                               based on weight
14131                                                  small amount
14147                                           tablet/pill/capsule
14148                                                   bottle/vial
14151                                           tablet/pill/capsule
14154                                           tablet/pill/capsule
14162                                           tablet/pill/capsule
14163                                           tablet/pill/capsule
14164                                           tablet/pill/capsule
14165                                                          <NA>
14170                                                  small amount
14172                                               based on weight
14173                                               based on weight
14174                                                          tube
14175                                                          <NA>
14177                                         1 tablet/pill/capsule
14178                                                          tube
14180                                                          <NA>
14181                                           tablet/pill/capsule
14190                                                          <NA>
14219                                               based on weight
14221                                                          <NA>
14228                                                          <NA>
14238                                                  small amount
14241                                                          <NA>
14242                                                          <NA>
14245                                                          <NA>
14282                                                          <NA>
14284                                                          <NA>
14291                                                          pump
14301                                  based on weight (50-100 lbs)
14302                                     based on weight (25+ lbs)
14319                                                          <NA>
14323                                                    inch strip
14324                                                          <NA>
14330                                                          <NA>
14334                                                          tube
14336                                                          <NA>
14365                                                   combination
14373                                     based on weight (18+ lbs)
14376                                                        collar
14378                                           tablet/pill/capsule
14380                                                        collar
14385                                                          <NA>
14386                                                          <NA>
14387                                                          <NA>
14388                                                          <NA>
14404                                                          <NA>
14408                                           tablet/pill/capsule
14412                                                          <NA>
14413                                                          <NA>
14414                                                   unspecified
14426                                                          <NA>
14428                                                          <NA>
14429                                  based on weight (50-100 lbs)
14431                                  based on weight (50-100 lbs)
14432                                               based on weight
14433                                                   unspecified
14434                                                         scoop
14443                                  based on weight (50-100 lbs)
14444                                                   unspecified
14445                                                   unspecified
14446                                                   unspecified
14447                                                   unspecified
14448                                  based on weight (50-100 lbs)
14449                                  based on weight (50-100 lbs)
14451                                           tablet/pill/capsule
14455                                               0.25 inch strip
14471                                                   unspecified
14473                                                   unspecified
14477                                                          <NA>
14479                                               based on weight
14488                                         1 tablet/pill/capsule
14489                                           tablet/pill/capsule
14490                                  based on weight (50-100 lbs)
14495                                         1 tablet/pill/capsule
14498                                           tablet/pill/capsule
14499                                  based on weight (50-100 lbs)
14512                                                          <NA>
14513                                                          <NA>
14528                                   based on weight (44-88 lbs)
14563                                                          <NA>
14576                                               based on weight
14578                                     based on weight (25+ lbs)
14582                                               based on weight
14583                                               based on weight
14584                                               based on weight
14585                                               based on weight
14586                                               based on weight
14587                                               based on weight
14588                                               based on weight
14601                                                   unspecified
14605                                                          <NA>
14608                                                          <NA>
14637                                                          <NA>
14645                                                          <NA>
14654                                                             %
14656                                                          <NA>
14658                   272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                  based on weight (50-100 lbs)
14665                                  based on weight (60-120 lbs)
14697                                                      ointment
14699                                                   application
14700                                               based on weight
14701                                               based on weight
14702                                                          <NA>
14711                                  based on weight (50-100 lbs)
14712                                   based on weight (56-95 lbs)
14713                                      based on weight (85 lbs)
14720                                  based on weight (50-100 lbs)
14721                                   based on weight (56-95 lbs)
14722                                  based on weight (50-100 lbs)
14723                                  based on weight (50-100 lbs)
14726                                   based on weight (44-88 lbs)
14728                                                          <NA>
14730                                                          <NA>
14733                                                          <NA>
14737                                  based on weight (50-100 lbs)
14738                                   based on weight (44-88 lbs)
14744                                               based on weight
14748                                                         drops
14754                                     based on weight (22+ lbs)
14755                                  based on weight (50-100 lbs)
14756                                                          <NA>
14757                                                          <NA>
14760                                               based on weight
14764                                                          <NA>
14775                                                          <NA>
14777                                                          <NA>
14778                                                          <NA>
14833                                                          <NA>
14834                                                          <NA>
14838                                                          <NA>
14839                                                          <NA>
14857                                                          <NA>
14858                                                          <NA>
14862                                                          <NA>
14863                                                          <NA>
14864                                                          <NA>
14867                                                          <NA>
14870                                                          <NA>
14871                                                          <NA>
14878                                                          <NA>
14899                                                          <NA>
14911                                                          <NA>
14913                                                          <NA>
14914                                                          <NA>
14934                                                          <NA>
14943                                                          <NA>
14944                                                          <NA>
14949                                                          <NA>
14972                                           tablet/pill/capsule
14973                                                   unspecified
14974                                           tablet/pill/capsule
14975                                           tablet/pill/capsule
14981                                               based on weight
14982                                           tablet/pill/capsule
14983                                                   as directed
15001                                                          <NA>
15002                                                          <NA>
15004                                                          <NA>
15005                                                          <NA>
15006                                                          <NA>
15007                                                          <NA>
15008                                                          <NA>
15009                                                          <NA>
15010                                                          <NA>
15011                                                          <NA>
15017                                  based on weight (50-100 lbs)
15021                                                          <NA>
15022                                                          <NA>
15023                                                 1 bottle/vial
15027                                                          <NA>
15028                                                          <NA>
15029                                                          <NA>
15030                                                          <NA>
15035                                                          <NA>
15036                                                          <NA>
15045                                                          <NA>
15048                                               based on weight
15055                                                          <NA>
15059                                         1 tablet/pill/capsule
15061                                           tablet/pill/capsule
15077                                                        collar
15102                                                          <NA>
15129                                                         drops
15139                                                   combination
15140                                                   combination
15144                                                          <NA>
15145                                                          <NA>
15150                                               based on weight
15151                                                          <NA>
15155                                                          <NA>
15179                                                          <NA>
15196                                                   unspecified
15197                                                  small amount
15209                                                   bottle/vial
15213                                                          pump
15244                                                          <NA>
15250                                                          tube
15256                                                          <NA>
15259                                                          <NA>
15268                                  based on weight (50-100 lbs)
15269                                   based on weight (24-60 lbs)
15274                                                          <NA>
15308                                           tablet/pill/capsule
15309                                           tablet/pill/capsule
15310                                         1 tablet/pill/capsule
15311                                                        collar
15314                                                          <NA>
15315                                                        collar
15317                                           tablet/pill/capsule
15321                                         1 tablet/pill/capsule
15322                                                        collar
15323                                                          <NA>
15332                                                   as directed
15333                                                          <NA>
15339                                                          <NA>
15345                                                          <NA>
15348                                                          <NA>
15361                                           tablet/pill/capsule
15362                                           tablet/pill/capsule
15363                                                          <NA>
15365                                           tablet/pill/capsule
15366                                           tablet/pill/capsule
15367                                         1 tablet/pill/capsule
15373                                               based on weight
15374                                               based on weight
15375                                         1 tablet/pill/capsule
15376                                                        1 tube
15377                                         1 tablet/pill/capsule
15378                                                   bottle/vial
15383                                                          <NA>
15384                                                          <NA>
15402                                                          <NA>
15412                                                          <NA>
15441                                                          <NA>
15445                                                          <NA>
15451                                           tablet/pill/capsule
15453                                               moderate amount
15454                                                          <NA>
15512                                                          <NA>
15513                                                          <NA>
15515                                         1 tablet/pill/capsule
15528                                                          <NA>
15530                                               based on weight
15531                                                          <NA>
15533                                           tablet/pill/capsule
15551                                               based on weight
15552                                           tablet/pill/capsule
15554                                               based on weight
15555                                               based on weight
15556                                               based on weight
15563                                                      ointment
15581                                                        liquid
15584                                                          <NA>
15585                                         1 tablet/pill/capsule
15586                                                   application
15589                                               based on weight
15590                                           tablet/pill/capsule
15591                                           tablet/pill/capsule
15592                                                          <NA>
15593                                           tablet/pill/capsule
15594                                           tablet/pill/capsule
15597                                           tablet/pill/capsule
15598                                           tablet/pill/capsule
15599                                                      ointment
15600                                         1 tablet/pill/capsule
15601                                         1 tablet/pill/capsule
15603                                                          <NA>
15604                                                          <NA>
15613                                                          <NA>
15618                                                          <NA>
15633                                                          <NA>
15636                                                          <NA>
15649                                               based on weight
15650                                               based on weight
15661                                           tablet/pill/capsule
15663                                                   bottle/vial
15667                                                          <NA>
15669                                                          <NA>
15672                                                          <NA>
15673                                                          <NA>
15674                                                          <NA>
15689                                           tablet/pill/capsule
15690                                                          <NA>
15693                                                          <NA>
15701                                               13.5 mg, 810 mg
15706                                                  small amount
15707                                                          <NA>
15712                                           tablet/pill/capsule
15715                                                          <NA>
15733                                                          <NA>
15750                                                          <NA>
15757                                           tablet/pill/capsule
15758                                                   bottle/vial
15767                                                          <NA>
15768                                                          <NA>
15769                                                          <NA>
15770                                                          <NA>
15778                                                         spray
15781                                               0.25 inch strip
15782                                                         spray
15790                                                   unspecified
15796                                                          <NA>
15799                                                          <NA>
15811                                                  pack/package
15815                                               based on weight
15818                                                          <NA>
15829                                                          <NA>
15839                                                   unspecified
15840                                                   unspecified
15841                                  based on weight (50-100 lbs)
15842                                  based on weight (50-100 lbs)
15844                                  based on weight (50-100 lbs)
15849                                  based on weight (50-100 lbs)
15850                                  based on weight (50-100 lbs)
15856                                                        1 tube
15858                                                          <NA>
15859                                         1 tablet/pill/capsule
15862                                                    inch strip
15863                                                    inch strip
15868                                         1 tablet/pill/capsule
15869                                               based on weight
15870                                               based on weight
15886                                           tablet/pill/capsule
15888                                                          <NA>
15889                                                          <NA>
15890                                                          <NA>
15891                                               based on weight
15892                                                          <NA>
15907                                                          <NA>
15911                                                          <NA>
15917                                           tablet/pill/capsule
15921                                           tablet/pill/capsule
15922                                               based on weight
15927                                                          <NA>
15928                                                  pack/package
15930                                                          <NA>
15933                                                          <NA>
15935                                                          <NA>
15937                                               based on weight
15944                                                          <NA>
15945                                                          <NA>
15981                                  based on weight (50-100 lbs)
15983                                                  small amount
15986                                   based on weight (56-95 lbs)
15992                                  based on weight (50-100 lbs)
15993                                   based on weight (56-95 lbs)
15995                                  based on weight (50-100 lbs)
15996                                   based on weight (56-95 lbs)
15997                                   based on weight (44-88 lbs)
15998                                                 1 bottle/vial
15999                                  based on weight (50-100 lbs)
16000                                   based on weight (44-88 lbs)
16005                                                          <NA>
16007                                                          <NA>
16009                                                          <NA>
16016                                                      ointment
16026                                                  small amount
16033                                                          <NA>
16036                                               based on weight
16038                                               based on weight
16039                                                   application
16052                                           tablet/pill/capsule
16053                                                          tube
16094                   272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                           tablet/pill/capsule
16098                                           tablet/pill/capsule
16105                                                          <NA>
16107                                                     6-8 drops
16108                                                          <NA>
16109                                                          <NA>
16110                                                          <NA>
16112                                                          <NA>
16113                                                   unspecified
16114                                                          <NA>
16116                                                          <NA>
16117                                                          <NA>
16118                                                          <NA>
16150                                                   bottle/vial
16155                                                   bottle/vial
16156                                                  pack/package
16157                                           tablet/pill/capsule
16158                                           tablet/pill/capsule
16159                                           tablet/pill/capsule
16160                                           tablet/pill/capsule
16163                                           tablet/pill/capsule
16164                                           tablet/pill/capsule
16165                                           tablet/pill/capsule
16177                                                  small amount
16179                                                      wipe/pad
16199                                                          <NA>
16229                                           tablet/pill/capsule
16230                                  based on weight (50-100 lbs)
16239                                                          <NA>
16240                                                          <NA>
16241                                                          <NA>
16242                                                          <NA>
16251                                                          <NA>
16253                                                          <NA>
16286                                                          <NA>
16287                                   based on weight (26-50 lbs)
16288                                   based on weight (44-88 lbs)
16289                                           tablet/pill/capsule
16290                                                          <NA>
16292                                                          <NA>
16293                                                          <NA>
16294                                                          <NA>
16295                                                          <NA>
16296                                                          <NA>
16312                                           tablet/pill/capsule
16313                                           tablet/pill/capsule
16315                                           tablet/pill/capsule
16316                                           tablet/pill/capsule
16318                                         1 tablet/pill/capsule
16319                                         1 tablet/pill/capsule
16321                                         1 tablet/pill/capsule
16322                                         1 tablet/pill/capsule
16324                                         1 tablet/pill/capsule
16325                                         1 tablet/pill/capsule
16340                                               based on weight
16347                                                             %
16352                                                          <NA>
16355                                                  small amount
16356                                                   as directed
16367                                                          <NA>
16371                                                          <NA>
16374                                                          <NA>
16376                                                          <NA>
16378                                                          <NA>
16382                                                          <NA>
16387                                                shampoo/mousse
16388                                                         spray
16389                                                          <NA>
16400                                           tablet/pill/capsule
16401                                           tablet/pill/capsule
16403                                               based on weight
16404                                               based on weight
16408                                                          <NA>
16413                                           tablet/pill/capsule
16414                                           tablet/pill/capsule
16418                                                   unspecified
16419                                                   unspecified
16420                                                   unspecified
16425                                   based on weight (44-88 lbs)
16426                                   based on weight (44-88 lbs)
16434                                                          <NA>
16435                                                          <NA>
16436                                                          <NA>
16437                                                          <NA>
16440                                  based on weight (50-100 lbs)
16441                                  based on weight (50-100 lbs)
16442                                                   unspecified
16443                                                   unspecified
16447                                  based on weight (50-100 lbs)
16448                                                   unspecified
16450                                  based on weight (50-100 lbs)
16462                                                          <NA>
16472                                                          <NA>
16474                                               syringe/pipette
16477                                                          <NA>
16478                                                          <NA>
16479                                               syringe/pipette
16497                                                          <NA>
16522                                           tablet/pill/capsule
16523                                           tablet/pill/capsule
16524                                                   bottle/vial
16525                                                          <NA>
16526                                                          <NA>
16544                                                   bottle/vial
16546                                                          <NA>
16553                                               based on weight
16579                                               based on weight
16580                                                  small amount
16596                                               based on weight
16597                                               based on weight
16598                                               based on weight
16599                                               based on weight
16601                                               based on weight
16605                                                          <NA>
16606                                               based on weight
16608                                               based on weight
16624                                                          <NA>
16635                                                      ointment
16636                                           tablet/pill/capsule
16639                                           tablet/pill/capsule
16657                                                          <NA>
16684                                                        powder
16685                                                      wipe/pad
16687                                                          dose
16694                                           tablet/pill/capsule
16702                                               0.25 inch strip
16703                                                        powder
16704                                           tablet/pill/capsule
16705                                           tablet/pill/capsule
16711                                                  small amount
16712                                                shampoo/mousse
16714                                                  small amount
16717                                                  small amount
16718                                                  small amount
16721                                           tablet/pill/capsule
16723                                                        powder
16724                                                          <NA>
16726                                                         spray
16749                                                          <NA>
16751                                                          <NA>
16774                                           tablet/pill/capsule
16777                                           tablet/pill/capsule
16778                                                   bottle/vial
16779                                                         mg/kg
16783                                                          <NA>
16784                                                          <NA>
16785                                                          <NA>
16791                                                          <NA>
16793                                                          <NA>
16798                                                          <NA>
16805                                               based on weight
16807                                                   application
16809                                                          tube
16810                                                   combination
16811                                               based on weight
16814                                                          <NA>
16815                                                   unspecified
16816                                                          <NA>
16821                                           tablet/pill/capsule
16823                                                          <NA>
16834                                                          <NA>
16838                                                          <NA>
16840                                                          <NA>
16841                                                          <NA>
16847                                                          <NA>
16869                                               based on weight
16877                                                          <NA>
16882                                                        collar
16918                                                   unspecified
16931                                                          <NA>
16933                                                          <NA>
16939                                                          <NA>
16970                                                          <NA>
16983                                           tablet/pill/capsule
16993                                                  small amount
16994                                                  small amount
16998                                                         tubes
16999                                                          <NA>
17000                                                          <NA>
17010                                                   combination
17012                                                   bottle/vial
17013                                           tablet/pill/capsule
17014                                               based on weight
17018                                                   unspecified
17019                                           tablet/pill/capsule
17020                                                          <NA>
17022                                                          <NA>
17042                                               based on weight
17062                                                          <NA>
17088                                                   combination
17090                                         1 tablet/pill/capsule
17091                                         1 tablet/pill/capsule
17098                                                          <NA>
17099                                                          <NA>
17120                                                  small amount
17121                                                  small amount
17126                                                     as needed
17127                                                     as needed
17138                                           tablet/pill/capsule
17143                                               based on weight
17153                                                          <NA>
17156                                           tablet/pill/capsule
17157                                           tablet/pill/capsule
17173                                                          <NA>
17177                                           tablet/pill/capsule
17180                                           tablet/pill/capsule
17209                                           tablet/pill/capsule
17218                                                          <NA>
17220                                                          <NA>
17221                                                          <NA>
17225                                                          <NA>
17226                                                          <NA>
17227                                                          <NA>
17228                                                          <NA>
17229                                                          <NA>
17232                                           tablet/pill/capsule
17233                                                          tube
17234                                           tablet/pill/capsule
17236                                                        1 tube
17237                                           tablet/pill/capsule
17239                                           tablet/pill/capsule
17252                                               syringe/pipette
17254                                                  small amount
17255                                         1 tablet/pill/capsule
17263                                                          <NA>
17264                                                          <NA>
17268                                               based on weight
17283                                                          <NA>
17285                                                          <NA>
17297                                                          <NA>
17298                                               based on weight
17307                                                          <NA>
17308                                                          <NA>
17309                                                          <NA>
17310                                                          <NA>
17314                                                          <NA>
17327                                                   application
17329                                                   application
17330                                                   application
17335                                                   application
17352                                                         spray
17355                                                  small amount
17387                                                          <NA>
17389                                                          <NA>
17390                                           tablet/pill/capsule
17391                                                          <NA>
17393                                                      ointment
17399                                           tablet/pill/capsule
17406                                               based on weight
17407                                                         spray
17412                                                          <NA>
17417                                                        collar
17418                                           tablet/pill/capsule
17426                                                          <NA>
17427                                                          <NA>
17446                                                          <NA>
17461                                                          <NA>
17463                                                  pack/package
17468                                                          <NA>
17470                                                          <NA>
17482                                                          <NA>
17486                                               based on weight
17487                                               based on weight
17488                                               based on weight
17489                                               based on weight
17490                                               based on weight
17491                                               based on weight
17492                                               based on weight
17493                                               based on weight
17495                                               based on weight
17496                                               based on weight
17518                                               based on weight
17519                                         1 tablet/pill/capsule
17576                                               0.25 inch strip
17583                                                          <NA>
17588                                                         spray
17602                                                  small amount
17605                                                          <NA>
17611                                               based on weight
17615                                               based on weight
17627                                               based on weight
17659                                           tablet/pill/capsule
17672                                                          <NA>
17673                                                          <NA>
17680                                                          <NA>
17697                                                          <NA>
17702                                                          <NA>
17703                                                          <NA>
17719                                                          <NA>
17720                                                  small amount
17722                                               based on weight
17742                                                          <NA>
17755                                               syringe/pipette
17779                                                   application
17780                                                          <NA>
17781                                                          <NA>
17782                                                   application
17798                                                          <NA>
17802                                                         paste
17803                                                          <NA>
17804                                                          <NA>
17818                                               based on weight
17832                                      based on weight (80 lbs)
17845                                               based on weight
17853                                                          <NA>
17855                                                          <NA>
17856                                                          <NA>
17860                                                          <NA>
17863                                           tablet/pill/capsule
17865                                                          <NA>
17882                                                          <NA>
18023                                               based on weight
18024                                               based on weight
18057                                               based on weight
18058                                               based on weight
18072                                           tablet/pill/capsule
18074                                                          <NA>
18075                                                          dose
18094                                           tablet/pill/capsule
18095                                           tablet/pill/capsule
18096                                                          <NA>
18098                                                          <NA>
18114                                                          <NA>
18115                                                          <NA>
18116                                                          <NA>
18118                                     based on weight (55+ lbs)
18124                                               based on weight
18134                                                          <NA>
18141                                                          <NA>
18147                                                          hour
18165                                                  small amount
18192                                                          <NA>
18193                                                          <NA>
18195                                                          <NA>
18199                                                          <NA>
18202                                               based on weight
18205                                               based on weight
18213                                                          <NA>
18214                                               based on weight
18217                                                          <NA>
18218                                                          <NA>
18238                                                   unspecified
18251                                                        powder
18258                                                             %
18260                                                          <NA>
18262                                                             %
18263                                                          <NA>
18264                                                          <NA>
18266                                                          <NA>
18271                                                          <NA>
18275                                                  small amount
18276                                                          <NA>
18323                                                          <NA>
18325                                                          <NA>
18326                                                          <NA>
18337                                           tablet/pill/capsule
18338                                                          <NA>
18339                                           tablet/pill/capsule
18340                                           tablet/pill/capsule
18341                                                   unspecified
18342                                                          <NA>
18344                                         1 tablet/pill/capsule
18365                                           tablet/pill/capsule
18366                                           tablet/pill/capsule
18370                                           tablet/pill/capsule
18371                                           tablet/pill/capsule
18373                                         1 tablet/pill/capsule
18374                                         1 tablet/pill/capsule
18404                                                          <NA>
18415                                               based on weight
18427                                                    inch strip
18441                                                          <NA>
18459                                               based on weight
18460                                                          dose
18461                                                          dose
18469                                               0.25 inch strip
18471                                               0.25 inch strip
18479                                                          <NA>
18480                                                          <NA>
18483                                                          <NA>
18489                                           tablet/pill/capsule
18490                                           tablet/pill/capsule
18494                                           tablet/pill/capsule
18495                                           tablet/pill/capsule
18500                                           tablet/pill/capsule
18502                                           tablet/pill/capsule
18514                                   based on weight (21-55 lbs)
18520                                      based on weight (60 lbs)
18525                                                          <NA>
18534                                                         daily
18565                                                        1 tube
18571                                           tablet/pill/capsule
18572                                           tablet/pill/capsule
18576                                           tablet/pill/capsule
18577                                           tablet/pill/capsule
18580                                           tablet/pill/capsule
18588                                                          <NA>
18591                                                         spray
18595                                               based on weight
18609                                                          <NA>
18612                                                   unspecified
18621                                                          <NA>
18649                                               based on weight
18687                                                          <NA>
18689                                                          <NA>
18690                                                          <NA>
18694                                                          <NA>
18696                                                   combination
18697                                                   combination
18703                   272 mcg ivermectin, 227 mg pyrantel pamoate
18707                                                          <NA>
18716                                                      ointment
18718                                                         spray
18729                                                      ointment
18734                                           tablet/pill/capsule
18735                                           tablet/pill/capsule
18736                                           tablet/pill/capsule
18743                                           tablet/pill/capsule
18750                                                          <NA>
18774                                                          <NA>
18775                                                          <NA>
18795                                           tablet/pill/capsule
18796                                                   bottle/vial
18797                                           tablet/pill/capsule
18798                                                   bottle/vial
18799                                                          <NA>
18800                                                          <NA>
18820                                                          <NA>
18829                                                          <NA>
18837                                           tablet/pill/capsule
18838                                      2 tablets/pills/capsules
18839                                         1 tablet/pill/capsule
18844                                               syringe/pipette
18845                                           tablet/pill/capsule
18847                                      2 tablets/pills/capsules
18850                                         1 tablet/pill/capsule
18882                                                          dose
18908                                               based on weight
18909                                               based on weight
18919                                                        collar
18921                                                        collar
18924                                               based on weight
18933                                                          <NA>
18935                                  based on weight (50-100 lbs)
18936                                                        collar
18937                                           tablet/pill/capsule
18961                                      2 tablets/pills/capsules
18964                                           tablet/pill/capsule
18991                                                  small amount
18993                                                          <NA>
18997                                                          <NA>
18998                                                          <NA>
19003                                                          <NA>
19004                                                          <NA>
19005                                                         spray
19006                                                         spray
19008                                    1-2 tablets/pills/capsules
19009                                    1-2 tablets/pills/capsules
19015                                                          <NA>
19019                                                          <NA>
19021                                                          <NA>
19022                                           tablet/pill/capsule
19023                                                  small amount
19040                                                          <NA>
19041                                                          <NA>
19055                                               based on weight
19056                                                   unspecified
19057                                                          <NA>
19061                                               based on weight
19062                                                          <NA>
19068                                                          <NA>
19070                                           tablet/pill/capsule
19072                                                          tube
19073                                           tablet/pill/capsule
19078                                               based on weight
19082                                                        1 tube
19122                                               based on weight
19130                                           tablet/pill/capsule
19152                                                          <NA>
19153                                           tablet/pill/capsule
19154                                           tablet/pill/capsule
19159                                                          <NA>
19165                                           tablet/pill/capsule
19169                                         1 tablet/pill/capsule
19170                                                        1 tube
19183                                                             1
19184                                                   unspecified
19213                                                   unspecified
19214                                                   unspecified
19215                                                   as directed
19216                                                   as directed
19220                                                          <NA>
19221                                         1 tablet/pill/capsule
19222                                         1 tablet/pill/capsule
19223                                         1 tablet/pill/capsule
19224                                                        collar
19246                                                   as directed
19252                                                          <NA>
19253                                                          <NA>
19254                                                          <NA>
19271                                               based on weight
19272                                               based on weight
19273                                               based on weight
19278                                                   combination
19281                                               based on weight
19282                                               based on weight
19288                                                          <NA>
19298                                                          <NA>
19299                                                          dose
19318                                               based on weight
19325                                                          <NA>
19326                                               based on weight
19327                                               based on weight
19338                                               based on weight
19350                                                    inch strip
19353                                                          <NA>
19354                                                          <NA>
19356                                                          <NA>
19357                                     based on weight (55+ lbs)
19373                                           tablet/pill/capsule
19386                                               based on weight
19387                                               based on weight
19390                                                  small amount
19391                                               based on weight
19423                                               based on weight
19427                                           tablet/pill/capsule
19445                                           tablet/pill/capsule
19446                                                   application
19447                                               based on weight
19448                                               based on weight
19449                                               based on weight
19450                                               based on weight
19452                                                          <NA>
19453                                                          <NA>
19454                                                          <NA>
19457                                               based on weight
19462                                         1 tablet/pill/capsule
19463                                         1 tablet/pill/capsule
19464                                                          <NA>
19465                                                          <NA>
19476                                               syringe/pipette
19482                   272 mcg ivermectin, 227 mg pyrantel pamoate
19486                                                          <NA>
19487                                           tablet/pill/capsule
19492                                           tablet/pill/capsule
19493                                           tablet/pill/capsule
19495                                           tablet/pill/capsule
19537                                           tablet/pill/capsule
19596                                                          <NA>
19603                                           tablet/pill/capsule
19617                                                          <NA>
19641                                                          <NA>
19662                                                  pack/package
19663                                                          <NA>
19673                                               based on weight
19674                                               based on weight
19685                                               based on weight
19686                                                          <NA>
19688                                           tablet/pill/capsule
19689                                                          <NA>
19710                                               based on weight
19711                                               based on weight
19712                                               based on weight
19713                                         1 tablet/pill/capsule
19714                                                        collar
19715                                           tablet/pill/capsule
19716                                                        collar
19717                                               based on weight
19718                                               based on weight
19722                                           tablet/pill/capsule
19735                                                  small amount
19737                                                          <NA>
19741                                                          <NA>
19754                                                          <NA>
19768                                                          dose
19771                                                          <NA>
19776                                   based on weight (40-60 lbs)
19777                                         1 tablet/pill/capsule
19778                                               based on weight
19788                                                      wipe/pad
19790                                                          <NA>
19792                                                          <NA>
19801                                               based on weight
19803                                           tablet/pill/capsule
19823                                                      ointment
19828                                               based on weight
19829                                               based on weight
19838                                                          <NA>
19843                                                          <NA>
19844                                                          <NA>
19845                                                          <NA>
19851                                                          <NA>
19856                                               based on weight
19876                                                          <NA>
19881                                                          <NA>
19888                                           tablet/pill/capsule
19907                                                          <NA>
19909                                                          <NA>
19911                                               based on weight
19912                                                          <NA>
19914                                                   unspecified
19917                                                  small amount
19925                                                          <NA>
19926                                                          <NA>
19927                                                          <NA>
19928                                                          <NA>
19930                                                          <NA>
19932                                                          <NA>
19933                                               based on weight
19944                                                          <NA>
19945                                                          <NA>
19946                                               based on weight
19947                                                          <NA>
19948                                                          <NA>
19949                                                          <NA>
19950                                                          <NA>
19952                                                   unspecified
19958                                                        collar
19975                                                   combination
19984                                                          <NA>
20003                                                          <NA>
20006                                                          <NA>
20007                                                         spray
20019                                         1 tablet/pill/capsule
20020                                         1 tablet/pill/capsule
20027                                           tablet/pill/capsule
20028                                           tablet/pill/capsule
20065                                                          <NA>
20068                                                          <NA>
20069                                               moderate amount
20070                                                          <NA>
20072                                                          <NA>
20074                                                          <NA>
20096                                                        powder
20099                                                   combination
20105                                                          <NA>
20106                                                          <NA>
20125                                                          <NA>
20126                                         1 tablet/pill/capsule
20127                                         1 tablet/pill/capsule
20130                                                          <NA>
20131                                                          <NA>
20135                                                          <NA>
20144                                           tablet/pill/capsule
20145                                                     injection
20149                                                          <NA>
20150                                                  small amount
20164                                                          <NA>
20173                                                          tube
20174                                         1 tablet/pill/capsule
20175                                                          <NA>
20182                                               moderate amount
20218                                               based on weight
20219                                           tablet/pill/capsule
20220                                                          <NA>
20221                                           tablet/pill/capsule
20222                                               based on weight
20224                                                   unspecified
20232                                                          <NA>
20233                                           tablet/pill/capsule
20234                                                      ointment
20240                                                 1 bottle/vial
20241                                     based on weight (55+ lbs)
20243                                                          <NA>
20244                                               based on weight
20245                                               based on weight
20251                                                  pack/package
20275                                                          <NA>
20282                                                          <NA>
20292                                                          <NA>
20293                                                             %
20295                                                          tube
20297                                                          <NA>
20298                                                          <NA>
20300                                                  pack/package
20301                                                        collar
20302                                                          <NA>
20303                                                             %
20306                                                          <NA>
20315                                                          <NA>
20337                                                     as needed
20339                                                      wipe/pad
20340                                                  small amount
20342                                                shampoo/mousse
20343                                                 tapering dose
20344                                                          <NA>
20348                   272 mcg ivermectin, 227 mg pyrantel pamoate
20356                                                          <NA>
20374                                               based on weight
20376                                                   as directed
20377                                               based on weight
20380                                                   as directed
20382                                                          <NA>
20387                                  based on weight (50-100 lbs)
20388                                  based on weight (50-100 lbs)
20390                                  based on weight (50-100 lbs)
20392                                                          <NA>
20393                                                          <NA>
20402                                  based on weight (50-100 lbs)
20405                                  based on weight (50-100 lbs)
20409                                                          <NA>
20411                                                          <NA>
20413                                                          <NA>
20425                                               based on weight
20426                                               based on weight
20441                                                  small amount
20444                                      based on weight (90 lbs)
20446                                                          <NA>
20453                                                          <NA>
20460                                                          <NA>
20485                                                   application
20490                                         1 tablet/pill/capsule
20491                                         1 tablet/pill/capsule
20510                                           tablet/pill/capsule
20511                                         1 tablet/pill/capsule
20512                                         1 tablet/pill/capsule
20516                                         1 tablet/pill/capsule
20517                                         1 tablet/pill/capsule
20518                                                          pump
20554                                               based on weight
20555                                               based on weight
20561                                               based on weight
20565                                  based on weight (60-120 lbs)
20568                                  based on weight (60-120 lbs)
20574                                                          <NA>
20577                                                          <NA>
20579                                         1 tablet/pill/capsule
20585                                                  small amount
20615                                                          <NA>
20623                                                  pack/package
20636                                                          <NA>
20638                                                          <NA>
20641                                                        collar
20642                                                          <NA>
20645                                                   unspecified
20648                                                          <NA>
20651                                                          <NA>
20659                                                          <NA>
20666                                                          <NA>
20667                                                          <NA>
20678                                                          <NA>
20698                                                    inch strip
20701                                               based on weight
20702                                  based on weight (50-100 lbs)
20704                                                  small amount
20705                                                   application
20707                                           tablet/pill/capsule
20708                                                      wipe/pad
20709                                                        powder
20712                                                      wipe/pad
20717                                               based on weight
20718                                                          <NA>
20728                                                          <NA>
20738                                                          <NA>
20748                                                          <NA>
20761                                                          <NA>
20762                                                          <NA>
20763                                                          <NA>
20766                                                          <NA>
20767                                                          <NA>
20771                                                          <NA>
20783                                                          <NA>
20791                                                          <NA>
20796                                                          <NA>
20800                                           tablet/pill/capsule
20808                                           tablet/pill/capsule
20809                                           tablet/pill/capsule
20814                                                         spray
20817                                                          <NA>
20819                                                          <NA>
20849                                                          <NA>
20852                                                          <NA>
20854                                                          <NA>
20855                                                          <NA>
20858                                                          <NA>
20861                                                          <NA>
20862                                                             l
20863                                               based on weight
20872                                               based on weight
20897                                                          <NA>
20918                                                          <NA>
20939                                               based on weight
20940                                               based on weight
20947                                                        collar
20949                                               based on weight
20962                                                          <NA>
20963                                                          <NA>
20964                                           tablet/pill/capsule
20965                                                          <NA>
20966                                                          <NA>
21003                                                      ointment
21013                                                    inch strip
21022                                                          <NA>
21025                                                          <NA>
21029                                                          <NA>
21074                                               based on weight
21078                                           tablet/pill/capsule
21080                                                          <NA>
21088                                                   unspecified
21102                                                          <NA>
21109                                                   as directed
21110                                               based on weight
21111                                                          <NA>
21112                                                          <NA>
21114                                           tablet/pill/capsule
21115                                                   application
21119                                                          <NA>
21122                                           tablet/pill/capsule
21123                                                          tube
21125                                                          <NA>
21127                                           tablet/pill/capsule
21130                                                          <NA>
21131                                                shampoo/mousse
21133                                               based on weight
21168                                                          <NA>
21169                                                          <NA>
21178                                               0.25 inch strip
21179                                                          <NA>
21180                                                          <NA>
21181                                           tablet/pill/capsule
21182                                                          <NA>
21190                                           tablet/pill/capsule
21201                                                          <NA>
21224                                                      ointment
21253                                                          <NA>
21254                                           tablet/pill/capsule
21256                                                          <NA>
21267                                                          <NA>
21268                                                          <NA>
21269                                         1 tablet/pill/capsule
21273                                                          <NA>
21278                                                          <NA>
21282                                                          <NA>
21287                                                          <NA>
21309                                                          <NA>
21326                                                          <NA>
21331                                                          <NA>
21338                                               based on weight
21359                                                          <NA>
21361                                                          <NA>
21369                                               based on weight
21384                                                          <NA>
21385                                                          <NA>
21386                                                          <NA>
21387                                                          <NA>
21388                                                          <NA>
21389                                                          <NA>
21403                                                          <NA>
21413                                                          <NA>
21416                                                          tube
21442                                                          <NA>
21445                                               based on weight
21448                                               based on weight
21449                                               based on weight
21465                                                          <NA>
21472                                                          <NA>
21481                                                          <NA>
21492                                         1 tablet/pill/capsule
21493                                         1 tablet/pill/capsule
21495                                                          <NA>
21504                                                  pack/package
21507                                                  pack/package
21508                                                          <NA>
21509                                                   unspecified
21527                                                          <NA>
21528                                               based on weight
21531                                                          <NA>
21532                                         1 tablet/pill/capsule
21533                                         1 tablet/pill/capsule
21549                                                          <NA>
21552                                                          3 ml
21553                                                          <NA>
21555                                                          <NA>
21558                                                          <NA>
21562                                               based on weight
21563                                               based on weight
21564                                               based on weight
21585                                           tablet/pill/capsule
21586                                           tablet/pill/capsule
21593                                                          <NA>
21600                                      based on weight (55 lbs)
21602                                                          <NA>
21605                                                          <NA>
21607                                                          <NA>
21608                                                          <NA>
21609                                                          <NA>
21612                                                          <NA>
21614                                   based on weight (44-88 lbs)
21615                                  based on weight (50-100 lbs)
21616                                                    inch strip
21617                                                          <NA>
21618                                                          <NA>
21619                                  based on weight (50-100 lbs)
21620                                   based on weight (44-88 lbs)
21621                                  based on weight (50-100 lbs)
21622                                   based on weight (44-88 lbs)
21625                                                          <NA>
21632                                                          <NA>
21642                                               based on weight
21643                                                          <NA>
21644                                               based on weight
21645                   272 mcg ivermectin, 227 mg pyrantel pamoate
21646                                           tablet/pill/capsule
21648                                               based on weight
21649                                               based on weight
21650                                                   as directed
21651                                                          <NA>
21652                                               based on weight
21653                                                  small amount
21654                                                          <NA>
21655                                               based on weight
21658                                                        collar
21659                                                  small amount
21660                                               0.25 inch strip
21661                                                         spray
21666                                                        collar
21673                                                          <NA>
21677                                                          <NA>
21678                                                         spray
21680                                                          <NA>
21685                                                   application
21701                                                        collar
21705                                                        collar
21707                                                        collar
21708                                                   unspecified
21723                                                          <NA>
21725                                               based on weight
21727                                           tablet/pill/capsule
21739                                                          <NA>
21748                                                         23 mg
21749                                                      0.135 ml
21753                                                          <NA>
21754                                                          <NA>
21755                                                          <NA>
21757                                                          <NA>
21767                                                          <NA>
21783                                                             %
21796                                                          <NA>
21809                                                          <NA>
21810                                                          <NA>
21814                                           tablet/pill/capsule
21815                                                          <NA>
21833                                                          <NA>
21851                                                          <NA>
21865                                                   combination
21869                                                          <NA>
21872                                                          <NA>
21873                                                          <NA>
21875                                                          <NA>
21876                                                          <NA>
21877                                                          <NA>
21878                                                          <NA>
21886                                                          <NA>
21894                                                          <NA>
21897                                           tablet/pill/capsule
21898                                           tablet/pill/capsule
21912                                                          <NA>
21918                                                  pack/package
21921                                                          <NA>
21925                                                  pack/package
21949                                                          <NA>
21955                                                          <NA>
21956                                                          <NA>
21959                                                          <NA>
21982                                                  pack/package
21993                                           tablet/pill/capsule
22020                                                  small amount
22023                                           tablet/pill/capsule
22025                                  based on weight (50-100 lbs)
22026                                               based on weight
22037                                               based on weight
22038                                               based on weight
22041                                           tablet/pill/capsule
22042                                           tablet/pill/capsule
22043                                                          <NA>
22045                                               based on weight
22046                                               based on weight
22048                                                         spray
22050                                                          <NA>
22051                                                          <NA>
22060                                                          <NA>
22062                                               based on weight
22064                                           tablet/pill/capsule
22088                                           tablet/pill/capsule
22089                                         1 tablet/pill/capsule
22092                                         1 tablet/pill/capsule
22093                                         1 tablet/pill/capsule
22118                                               based on weight
22120                                                      ointment
22121                                                          <NA>
22125                                                          <NA>
22128                                                          <NA>
22136                                               based on weight
22140                                               based on weight
22141                                               based on weight
22151                                                          <NA>
22160                                                          <NA>
22161                                               based on weight
22163                                                          <NA>
22173                                         1 tablet/pill/capsule
22175                                                   application
22176                                                          <NA>
22177                                                          <NA>
22179                                                      ointment
22189                                                  small amount
22190                                                        liquid
22196                                                            ml
22199                                           tablet/pill/capsule
22201                                                          <NA>
22216                                               based on weight
22217                                               based on weight
22218                                                          <NA>
22219                                                          <NA>
22222                                         1 tablet/pill/capsule
22223                                           tablet/pill/capsule
22224                                                          tube
22225                                                          <NA>
22226                                                          <NA>
22227                                                          <NA>
22228                                                          <NA>
22229                                  based on weight (50-100 lbs)
22230                                                          <NA>
22237                                                          <NA>
22238                                                          <NA>
22239                                                          <NA>
22240                                                          <NA>
22241                                                          <NA>
22243                                                          <NA>
22245                                                          <NA>
22253                                           tablet/pill/capsule
22261                                           tablet/pill/capsule
22262                                           tablet/pill/capsule
22265                                           tablet/pill/capsule
22267                                               based on weight
22268                                               based on weight
22270                                                   unspecified
22272                                                  small amount
22289                                                          <NA>
22299                                                          <NA>
22306                      460 mg lufenuron, 23 mg milbemycin oxime
22308                                                          <NA>
22311                                                          <NA>
22313                                                  small amount
22315                                                1 pack/package
22316                                                          <NA>
22321                                               based on weight
22323                                           tablet/pill/capsule
22341                                                          tube
22342                                                      wipe/pad
22343                                                          dose
22345                                                          <NA>
22346                                                          <NA>
22347                                                          <NA>
22349                                                          <NA>
22351                                                          <NA>
22352                                                          <NA>
22353                                                          <NA>
22367                                                          <NA>
22404                                                  small amount
22407                                                          <NA>
22408                                                  small amount
22410                                                  small amount
22413                                               based on weight
22417                                               based on weight
22430                                               based on weight
22439                                           tablet/pill/capsule
22440                                                          <NA>
22441                                               based on weight
22459                                                          <NA>
22463                                                          <NA>
22530                                                          <NA>
22531                                           tablet/pill/capsule
22532                                           tablet/pill/capsule
22533                                                        collar
22534                                                          <NA>
22537                                                shampoo/mousse
22540                                                          <NA>
22541                                           tablet/pill/capsule
22545                                           tablet/pill/capsule
22546                                           tablet/pill/capsule
22547                                                          <NA>
22548                                                          <NA>
22549                                           tablet/pill/capsule
22552                                                          <NA>
22557                                               based on weight
22558                                               based on weight
22574                                                          <NA>
22575                                               0.25 inch strip
22577                   272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                         1 tablet/pill/capsule
22579                                                          <NA>
22583                                      2 tablets/pills/capsules
22585                                                          <NA>
22598                                                        1 tube
22601                                                          <NA>
22606                                                   as directed
22607                                                   as directed
22610                                                          <NA>
22611                                                          <NA>
22625                                               based on weight
22653                                                   unspecified
22655                                   based on weight (44-88 lbs)
22656                                               based on weight
22662                                                  small amount
22667                                                  small amount
22669                                                          <NA>
22672                                                          <NA>
22673                                                          <NA>
22681                                                  small amount
22682                                           tablet/pill/capsule
22683                                                          tube
22690                                                        collar
22691                                                          <NA>
22692                                               based on weight
22693                                               based on weight
22704                                         1 tablet/pill/capsule
22705                                                          tube
22707                                           tablet/pill/capsule
22708                                                          tube
22711                                           tablet/pill/capsule
22713                                           tablet/pill/capsule
22714                                           tablet/pill/capsule
22716                                           tablet/pill/capsule
22717                                           tablet/pill/capsule
22718                                  based on weight (50-100 lbs)
22719                                           tablet/pill/capsule
22733                                                        collar
22748                                           tablet/pill/capsule
22749                                                          <NA>
22750                                               based on weight
22751                                                          <NA>
22752                                                          <NA>
22754                                               based on weight
22763                                               based on weight
22764                                                          tube
22765                                                  small amount
22766                                                          <NA>
22770                                                          <NA>
22777                                                          <NA>
22778                                                          <NA>
22779                                                          <NA>
22780                                                          <NA>
22795                                           tablet/pill/capsule
22796                                                          <NA>
22797                                                       monthly
22798                                                       monthly
22799                                               based on weight
22800                                               based on weight
22801                                               based on weight
22802                                                  small amount
22803                                               based on weight
22804                                               based on weight
22830                                                          <NA>
22840                                                          <NA>
22848                                                  small amount
22853                                                      ointment
22858                                                shampoo/mousse
22875                                                             %
22886                                                  small amount
22909                                                          <NA>
22919                                  based on weight (60-120 lbs)
22920                                  based on weight (50-100 lbs)
22922                                                          <NA>
22923                                           tablet/pill/capsule
22926                                                  small amount
22929                                                  small amount
22936                                                          pump
22938                                                          <NA>
22939                                                          <NA>
22954                                                          <NA>
22963                                                          tube
22965                                  based on weight (50-100 lbs)
22966                                               based on weight
22971                                               based on weight
22990                                                      wipe/pad
22992                                                          <NA>
22994                                           tablet/pill/capsule
23006                                                          <NA>
23007                                                          <NA>
23018                                                          <NA>
23019                                                          <NA>
23024                                                  pack/package
23043                                           tablet/pill/capsule
23049                                                          <NA>
23051                                                          <NA>
23053                                           tablet/pill/capsule
23055                                                          <NA>
23059                                           tablet/pill/capsule
23060                                               based on weight
23061                                               based on weight
23064                                                          <NA>
23066                                               based on weight
23083                                                          <NA>
23095                                           tablet/pill/capsule
23096                                           tablet/pill/capsule
23100                                                          <NA>
23102                                                          <NA>
23103                                                          <NA>
23108                                                          <NA>
23122                                               based on weight
23123                                               based on weight
23124                                               based on weight
23125                                               based on weight
23134                                                          <NA>
23137                                                          <NA>
23138                                           tablet/pill/capsule
23143                                                          <NA>
23144                                                          <NA>
23153                                                          <NA>
23154                                                          <NA>
23163                                                          <NA>
23169                                                          <NA>
23173                                               based on weight
23175                                                          <NA>
23202                                           tablet/pill/capsule
23237                                                          <NA>
23249                                                          <NA>
23250                                               based on weight
23251                                                          <NA>
23258                                         1 tablet/pill/capsule
23259                                                        1 tube
23266                                                      inhalant
23267                                                          <NA>
23268                                   based on weight (56-95 lbs)
23276                                                      inhalant
23278                                                  small amount
23279                                         1 tablet/pill/capsule
23280                                         1 tablet/pill/capsule
23283                                                          <NA>
23284                                                          <NA>
23286                                                          <NA>
23288                                                  small amount
23294                                                          <NA>
23299                                                          <NA>
23304                                                          <NA>
23308                                                shampoo/mousse
23321                                                          <NA>
23322                                                  small amount
23325                                      based on weight (80 lbs)
23333                                                          <NA>
23336                                                          dose
23337                                                 1 bottle/vial
23338                                                 1 bottle/vial
23340                                                  small amount
23341                                         1 tablet/pill/capsule
23342                                                        1 tube
23344                                                          <NA>
23345                                   based on weight (56-95 lbs)
23349                                                  small amount
23350                                                          <NA>
23353                                                          <NA>
23355                                                          <NA>
23356                                                          <NA>
23360                                                          <NA>
23364                                                          <NA>
23366                                                          <NA>
23384                                                          <NA>
23388                                           tablet/pill/capsule
23403                                               based on weight
23404                                               based on weight
23413                                               based on weight
23414                                               based on weight
23419                                                   unspecified
23427                                               based on weight
23428                                                          <NA>
23437                                               based on weight
23450                                                          dose
23456                                                         spray
23472                                                          dose
23482                                                          tube
23484                                                   as directed
23485                                                   as directed
23487                                                   0.159 fl oz
23491                                                          <NA>
23507                                                  pack/package
23520                                                   0.159 fl oz
23533                                                          <NA>
23534                                                         spray
23540                                               based on weight
23541                                               based on weight
23552                                                          <NA>
23553                                               based on weight
23557                                               based on weight
23565                                                          <NA>
23566                                                          <NA>
23568                                               based on weight
23571                   272 mcg ivermectin, 227 mg pyrantel pamoate
23572      9.80% fipronil, 8.80% (s)-methoprene, 0.25% pyriproxyfen
23588                                           tablet/pill/capsule
23590                                           tablet/pill/capsule
23610                                                          <NA>
23617                                               based on weight
23618                                         1 tablet/pill/capsule
23619                                                          <NA>
23620                                               based on weight
23622                                  based on weight (50-100 lbs)
23646                                               based on weight
23647                                               based on weight
23651                                               based on weight
23657                                               based on weight
23659                                               based on weight
23685                                           tablet/pill/capsule
23686                                           tablet/pill/capsule
23688                                           tablet/pill/capsule
23707                                                         spray
23718                                                          <NA>
23721                                           tablet/pill/capsule
23722                                           tablet/pill/capsule
23724                                                            60
23730                                               based on weight
23732                                         1 tablet/pill/capsule
23740                                               based on weight
23747                                                          <NA>
23749                                                          <NA>
23757                                                          <NA>
23804                                                          <NA>
23805                                               based on weight
23808                                           tablet/pill/capsule
23809                                                        collar
23819                                               based on weight
23861                                               based on weight
23862                                               based on weight
23866                                                          tube
23868                                                          <NA>
23871                                                          <NA>
23872                                                shampoo/mousse
23873                                                      wipe/pad
23898                                                        collar
23899                                                shampoo/mousse
23900                                           tablet/pill/capsule
23901                                                       monthly
23902                                               based on weight
23905                                         1 tablet/pill/capsule
23906                                                        collar
23909                                                     as needed
23910                                           tablet/pill/capsule
23914                                                   application
23917                                                      ointment
23933                                                          <NA>
23942                                                          <NA>
23955                                               based on weight
23956                                               based on weight
23957                                                          <NA>
23958                                                          <NA>
23959                                                          <NA>
23965                                                          <NA>
23969                                                          <NA>
23974                                     based on weight (55+ lbs)
23976                                                          <NA>
23980                                                          <NA>
24010                                                          <NA>
24012                                                  small amount
24017                                                          <NA>
24018                                                          <NA>
24019                                                          <NA>
24020                                                          <NA>
24022                                                          <NA>
24029                                                          <NA>
24045                                                          <NA>
24046                                                          <NA>
24062                                           tablet/pill/capsule
24068                                                   unspecified
24072                                                          <NA>
24075                                               based on weight
24076                                               based on weight
24077                                           tablet/pill/capsule
24079                                                          dose
24104                                                          <NA>
24106                                                          <NA>
24116                                           tablet/pill/capsule
24117                                           tablet/pill/capsule
24139                                                          <NA>
24142                                           tablet/pill/capsule
24144                                                          <NA>
24145                                                   unspecified
24149                                                          <NA>
24154                                                          <NA>
24155                                                          <NA>
24157                                               based on weight
24162                                               based on weight
24165                                               based on weight
24166                                               based on weight
24172                                               0.25 inch strip
24174                                           tablet/pill/capsule
24185                                                          <NA>
24189                                                          <NA>
24192                                                          <NA>
24193                                                          <NA>
24194                                                          <NA>
24195                                                          <NA>
24203                                                  small amount
24205                                                          <NA>
24206                                                          <NA>
24207                                                          <NA>
24208                                                          <NA>
24209                                                         spray
24215                                                  small amount
24217                                                     as needed
24221                                               moderate amount
24222                                                  small amount
24246                                                          <NA>
24253                                           tablet/pill/capsule
24257                                               based on weight
24258                                           tablet/pill/capsule
24259                                           tablet/pill/capsule
24267                                                          <NA>
24268                                                          <NA>
24269                                                          <NA>
24276                                                          <NA>
24282                                           tablet/pill/capsule
24312                                                         spray
24313                                                          <NA>
24314                                           tablet/pill/capsule
24319                                                          <NA>
24322                                                         spray
24328                                                          <NA>
24343                                                          <NA>
24375                                                          <NA>
24393                                           tablet/pill/capsule
24400                                                          <NA>
24402                                         1 tablet/pill/capsule
24403                                         1 tablet/pill/capsule
24405                                                          <NA>
24406                                                          <NA>
24407                                                          <NA>
24409                                                          <NA>
24413                                         1 tablet/pill/capsule
24416                                                         drops
24417                                                      0.25 tsp
24420                                                          <NA>
24421                                           tablet/pill/capsule
24422                                                          tube
24424                                                   unspecified
24425                                               based on weight
24426                                               based on weight
24431                                                          <NA>
24432                                                          <NA>
24435                                           tablet/pill/capsule
24437                                           tablet/pill/capsule
24451                                                  small amount
24452                                                        1 drop
24453                                                        1 drop
24455                                                1 pack/package
24459                                                          <NA>
24460                                                          <NA>
24468                                                          <NA>
24473                                                          <NA>
24475                                                          <NA>
24476                                           tablet/pill/capsule
24477                                           tablet/pill/capsule
24478                                                  pack/package
24480                                           tablet/pill/capsule
24481                                           tablet/pill/capsule
24486                                           tablet/pill/capsule
24514                                                  pack/package
24520                                                   bottle/vial
24521                                               based on weight
24526                                                         spray
24534                                                          <NA>
24536                                                          <NA>
24593                                                          <NA>
24597                                                          <NA>
24598                                                          <NA>
24599                                                          <NA>
24601                                                          <NA>
24602                                                          <NA>
24605                                               based on weight
24610                                                  small amount
24647                                                  small amount
24648                                                          <NA>
24653                                                          <NA>
24660                                           tablet/pill/capsule
24669                                               based on weight
24688                                                    inch strip
24707                                               0.25 inch strip
24733                                                          <NA>
24734                                                          <NA>
24758                                               0.25 inch strip
24762                                                          <NA>
24768                                               based on weight
24769                                               based on weight
24802                                                          <NA>
24804                                                          <NA>
24805                                                          <NA>
24806                                                          <NA>
24817                                                  small amount
24819                                                   application
24824                                           tablet/pill/capsule
24825                                           tablet/pill/capsule
24827                                                          <NA>
24828                                       0.5 tablet/pill/capsule
24829                                               based on weight
24830                                                      wipe/pad
24850                                                          <NA>
24867                                               based on weight
24878                                               moderate amount
24898                                                          puff
24902                                                          <NA>
24917                                                         spray
24918                                                      wipe/pad
24919                                                          <NA>
24935                                                          <NA>
24937                                                          <NA>
24938                                                          <NA>
24940                                                          <NA>
24942                                                          <NA>
24948                                                  small amount
24949                                                          <NA>
24950                                   based on weight (44-88 lbs)
24963                                                          <NA>
24964                                                          <NA>
24968                                               based on weight
24969                                               based on weight
24971                                               based on weight
24973                                           tablet/pill/capsule
24974                                                        collar
24975                                                  small amount
24982                                   based on weight (44-88 lbs)
24984                                                          <NA>
24985                                   based on weight (44-88 lbs)
24987                                  based on weight (50-100 lbs)
24988                                                          <NA>
24989                                                  small amount
24993                                                          <NA>
25020                                                          <NA>
25021                                               based on weight
25022                                                          <NA>
25059                   272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                               based on weight
25087                                                        collar
25094                                                          <NA>
25099                                                          <NA>
25100                                                          <NA>
25118                                               based on weight
25119                                               based on weight
25120                                               based on weight
25124                                                          <NA>
25129                                           tablet/pill/capsule
25191                                               based on weight
25196                                               based on weight
25198                                                          <NA>
25233                                               based on weight
25234                                               based on weight
25241                                                  small amount
25255                                                            ml
25258                                                  small amount
25262                                                          <NA>
25269                                                          <NA>
25270                                                          <NA>
25296                                                          <NA>
25299                                           tablet/pill/capsule
25300                                           tablet/pill/capsule
25310                                                          <NA>
25311                                                          <NA>
25315                                                          <NA>
25316                                                          <NA>
25317                                                          <NA>
25342                                               based on weight
25343                                               based on weight
25345                                                             2
25346                                                             1
25347                                                          <NA>
25367                                           tablet/pill/capsule
25405                                               based on weight
25409                                                    inch strip
25410                                                    1 wipe/pad
25417                                                   bottle/vial
25421                                               based on weight
25424                                                          <NA>
25425                                                          <NA>
25437                                                          <NA>
25444                                                          <NA>
25473                                               based on weight
25482                                                          <NA>
25493                                               based on weight
25494                                               based on weight
25501                                               based on weight
25514                                                          <NA>
25515                                                          <NA>
25516                                                          <NA>
25520                                         1 tablet/pill/capsule
25521                                         1 tablet/pill/capsule
25523                                         1 tablet/pill/capsule
25547                                                          <NA>
25554                                                          <NA>
25555                                                          <NA>
25556                                                          <NA>
25557                                                          <NA>
25575                                                          <NA>
25576                                           tablet/pill/capsule
25577                                               based on weight
25589                                                          <NA>
25591                                                          <NA>
25612                                                          <NA>
25617                                                  small amount
25619                                                         drops
25622                                                          <NA>
25660                                                  small amount
25663                                                  small amount
25666                                      3 tablets/pills/capsules
25670                                                          tube
25671                                                        liquid
25674                                                          <NA>
25683                                                          <NA>
25706                                                        1 tube
25707                                                   unspecified
25708                                         1 tablet/pill/capsule
25725                                                   billion cfu
25727                                           tablet/pill/capsule
25730                                                shampoo/mousse
25737                                                          <NA>
25740                                           tablet/pill/capsule
25741                                           tablet/pill/capsule
25743                                                          tube
25744                                                     as needed
25748                                           tablet/pill/capsule
25749                                           tablet/pill/capsule
25750                                                        1 tube
25751                                                    inch strip
25753                                                          <NA>
25754                                         1 tablet/pill/capsule
25755                                         1 tablet/pill/capsule
25756                                                        1 tube
25757                                         1 tablet/pill/capsule
25765                                                          <NA>
25795                                      based on weight (60 lbs)
25804                                                          <NA>
25806                                           tablet/pill/capsule
25807                                         1 tablet/pill/capsule
25819                                                          <NA>
25820                                           tablet/pill/capsule
25827                                         1 tablet/pill/capsule
25828                                                          <NA>
25830                                                          <NA>
25837                                                          puff
25846                                                          dose
25884                                           tablet/pill/capsule
25887                                           tablet/pill/capsule
25888                                           tablet/pill/capsule
25919                                                          <NA>
25936                                                          <NA>
25937                                                          <NA>
25939                                           tablet/pill/capsule
25940                                           tablet/pill/capsule
25941                                                          <NA>
25943                                                          <NA>
25948                                                          <NA>
25949                                           tablet/pill/capsule
25950                                           tablet/pill/capsule
25951                                                          <NA>
25953                                                          <NA>
25954                                                          <NA>
25964                                                          <NA>
25965                                                          <NA>
25966                                                          <NA>
25981                                                          <NA>
25983                                                          <NA>
25985                                               based on weight
25986                                               based on weight
25998                                                          <NA>
26004                                                          <NA>
26022                                                          <NA>
26024                                           tablet/pill/capsule
26027                                                          <NA>
26031                                           tablet/pill/capsule
26033                                           tablet/pill/capsule
26037                                           tablet/pill/capsule
26039                                           tablet/pill/capsule
26047                                           tablet/pill/capsule
26048                                           tablet/pill/capsule
26050                                           tablet/pill/capsule
26054                                           tablet/pill/capsule
26056                                           tablet/pill/capsule
26064                                                1 pack/package
26075                                                          <NA>
26078                                                          <NA>
26084                                                          <NA>
26085                                                          <NA>
26093                                                         spray
26114                                               based on weight
26115                                                       5 drops
26127                                                  small amount
26128                                                  small amount
26129                                                  small amount
26133                                                  small amount
26134                                                  small amount
26138                                                          <NA>
26139                                                shampoo/mousse
26141                                                          dose
26148                                               based on weight
26151                                                  small amount
26152                                                  small amount
26156                                           tablet/pill/capsule
26157                                                   bottle/vial
26158                                                          <NA>
26159                                                          <NA>
26165                                                  small amount
26166                                                  small amount
26184                                               0.25 inch strip
26187                                                0.5 inch strip
26190                                                shampoo/mousse
26192                                                          dose
26197                                                          <NA>
26199                                               based on weight
26203                                           tablet/pill/capsule
26204                                                  small amount
26207                                                  small amount
26208                                                   bottle/vial
26211                                                          <NA>
26212                                                          <NA>
26214                                                  small amount
26215                                                   bottle/vial
26227                                                          <NA>
26229                                                          <NA>
26258                                                          <NA>
26265                                                          <NA>
26278                                                          <NA>
26279                                           tablet/pill/capsule
26280                                                          <NA>
26281                                           tablet/pill/capsule
26282                                           tablet/pill/capsule
26287                                                          dose
26295                                           tablet/pill/capsule
26300                                                          <NA>
26307                                                         mg/kg
26315                                               based on weight
26336                                                          <NA>
26337                                                          <NA>
26355                                                shampoo/mousse
26375                                               based on weight
26380                                                        1 tube
26386                                                114 mg, 136 mg
26387                                                          <NA>
26391                                                          <NA>
26393                                                         spray
26395                                                          <NA>
26399                                                          <NA>
26400                                                          <NA>
26401                                                          <NA>
26433                                                          <NA>
26454                                                          <NA>
26464                                                          dose
26471                                                          <NA>
26473                                                          <NA>
26475                                           tablet/pill/capsule
26476                                           tablet/pill/capsule
26488                                           tablet/pill/capsule
26489                                           tablet/pill/capsule
26490                                           tablet/pill/capsule
26502                                                  small amount
26505                                                     as needed
26517                                               based on weight
26518                                               based on weight
26519                                               based on weight
26520                                           tablet/pill/capsule
26521                                                          <NA>
26522                                           tablet/pill/capsule
26534                                                          <NA>
26543                                               based on weight
26544                                               based on weight
26546                                               based on weight
26551                                                          <NA>
26553                                                          <NA>
26568                                               based on weight
26574                                               based on weight
26583                                                          <NA>
26590                                                   as directed
26591                                                          dose
26592                                                          dose
26610                                                          <NA>
26611                                           tablet/pill/capsule
26615                                           tablet/pill/capsule
26629                                               based on weight
26631                                               based on weight
26637                                                   application
26638                                  based on weight (50-100 lbs)
26643                                                          <NA>
26644                                                             %
26645                                               based on weight
26647                                                          <NA>
26650                                               based on weight
26651                                               based on weight
26655                                                          <NA>
26662                                           tablet/pill/capsule
26663                                           tablet/pill/capsule
26668                                                   bottle/vial
26669                                               based on weight
26670                                                        collar
26675                                                          <NA>
26676                                                          dose
26677                                                          <NA>
26694                                                          <NA>
26720                                                          <NA>
26721                                                          <NA>
26722                                               based on weight
26723                                                          <NA>
26724                                                          <NA>
26726                                           tablet/pill/capsule
26734                                           tablet/pill/capsule
26735                                           tablet/pill/capsule
26736                                                          <NA>
26738                                                          <NA>
26740                                                          <NA>
26742                                                          <NA>
26744                                                          <NA>
26745                                                          <NA>
26747                                                          <NA>
26749                                                          <NA>
26750                                                   combination
26760                                         1 tablet/pill/capsule
26769                                           tablet/pill/capsule
26780                                         1 tablet/pill/capsule
26803                                                          <NA>
26823                                                          <NA>
26825                                                          <NA>
26827                                                          <NA>
26830                                                          <NA>
26831                                                          <NA>
26833                                                          <NA>
26837                                                1 pack/package
26839                                                        powder
26841                                                          <NA>
26842                                           tablet/pill/capsule
26843                                                  pack/package
26844                                                          <NA>
26846                                           tablet/pill/capsule
26847                                                          <NA>
26848                                                        powder
26849                                           tablet/pill/capsule
26850                                                       monthly
26851                                                        powder
26852                                                          <NA>
26853                                                          <NA>
26861                                               based on weight
26862                                                          <NA>
26863                                                          <NA>
26865                                                          <NA>
26867                                                   application
26868                                           tablet/pill/capsule
26869                                           tablet/pill/capsule
26870                                                          <NA>
26871                                                          <NA>
26872                                                          <NA>
26905                                                          <NA>
26926                                               based on weight
26930                                               based on weight
26931                                               based on weight
26932                                                          <NA>
26944                                                          dose
26948                                               based on weight
26972                                                          <NA>
26974                                                   unspecified
26975                                               based on weight
26976                                           tablet/pill/capsule
26977                                               based on weight
26978                                                          <NA>
26979                                  based on weight (50-100 lbs)
26980                                  based on weight (50-100 lbs)
26981                                  based on weight (50-100 lbs)
26983                                                          <NA>
26984                                   based on weight (44-88 lbs)
26986                                                          <NA>
26988                                                          <NA>
26990                                                          <NA>
26992                                                          <NA>
27020                                                   as directed
27021                                                          <NA>
27022                                                          <NA>
27030                                                          <NA>
27047                                                          <NA>
27058                                                          pump
27062                                                          <NA>
27063                                                          <NA>
27065                                           tablet/pill/capsule
27082                                                       monthly
27092                                                  pack/package
27095                                                          <NA>
27100                                           tablet/pill/capsule
27117                                                   application
27118                                                   application
27124                                                  pack/package
27128                                                          <NA>
27134                                                  small amount
27136                                               based on weight
27140                                                  small amount
27158                                                  small amount
27170                                           tablet/pill/capsule
27172                                           tablet/pill/capsule
27173                                                    1.5 scoops
27174                                           tablet/pill/capsule
27203                                                          <NA>
27212                                                          <NA>
27213                                                          <NA>
27214                                                        collar
27217                                                         spray
27219                                                  small amount
27220                                                        collar
27222                                                        powder
27223                                                         spray
27224                                                  small amount
27226                                                        collar
27228                                                          <NA>
27229                                               based on weight
27231                                           tablet/pill/capsule
27232                                                          <NA>
27247                                                          <NA>
27257                                               based on weight
27258                                               based on weight
27262                                                          <NA>
27265                                                          <NA>
27268                                                          <NA>
27270                                                          <NA>
27273                                               based on weight
27274                                               based on weight
27275                                               based on weight
27280                                           tablet/pill/capsule
27281                                                          <NA>
27282                                                          <NA>
27285                                               based on weight
27306                                               based on weight
27309                                               based on weight
27311                                               based on weight
27315                                                          <NA>
27322                                                          pump
27333                                                          <NA>
27348                                               based on weight
27349                                               based on weight
27350                                                          <NA>
27358                                           tablet/pill/capsule
27360                                           tablet/pill/capsule
27361                                                          <NA>
27364                                                          <NA>
27368                                           tablet/pill/capsule
27384                                                          <NA>
27407                                                          <NA>
27413                                           tablet/pill/capsule
27414                                           tablet/pill/capsule
27421                                                          tube
27422                                           tablet/pill/capsule
27423                                                          <NA>
27425                                                  small amount
27427                                                          <NA>
27431                                                  small amount
27432                                      based on weight (50 lbs)
27434                                                          <NA>
27445                                                          <NA>
27446                                                          <NA>
27447                                           tablet/pill/capsule
27459                                                          <NA>
27465                                                    inch strip
27474                                                          <NA>
27481                                                          <NA>
27492                                           tablet/pill/capsule
27494                                                          <NA>
27500                                                          <NA>
27501                                                          <NA>
27502                                               based on weight
27506                                         1 tablet/pill/capsule
27507                                                        1 tube
27511                                               based on weight
27512                                               based on weight
27523                                               based on weight
27529                                               based on weight
27589                                           tablet/pill/capsule
27594                                                          <NA>
27596                                                          <NA>
27598                                                          <NA>
27620                                           tablet/pill/capsule
27640                                                       monthly
27646                                                      ointment
27659                                                          <NA>
27674                                                          <NA>
27697                                                  small amount
27699                                                          <NA>
27700                                               based on weight
27701                                               based on weight
27704                                               based on weight
27710                                   based on weight (44-88 lbs)
27713                                                          <NA>
27714                                                          <NA>
27715                                                          <NA>
27722                                                          <NA>
27736                                                            90
27745                                                   combination
27747                                                          puff
27748                                                   combination
27750                                                   combination
27769                                                   combination
27770                                                          <NA>
27772                                                          <NA>
27776                                                          <NA>
27791                                                   combination
27794                                                   combination
27802                                                          <NA>
27824                                                   combination
27826                                                   combination
27828                                                   combination
27833                                           tablet/pill/capsule
27834                                           tablet/pill/capsule
27836                                                          <NA>
27878                                               based on weight
27880                                                   unspecified
27886                                           tablet/pill/capsule
27895                                               based on weight
27896                                               based on weight
27897                                                          <NA>
27898                                               based on weight
27899                                                          <NA>
27910                                                          <NA>
27913                                                          <NA>
27917                                                          <NA>
27921                                                          <NA>
27922                                                          <NA>
27923                                                          <NA>
27927                                                          <NA>
27929                                                  small amount
27939                                                          <NA>
27940                                                          <NA>
27941                                                          <NA>
27942                                                          <NA>
27954                                               based on weight
27957                                                          <NA>
27958                                                          <NA>
27959                                                          <NA>
27961                                               based on weight
27962                                                          tube
27973                                                          <NA>
27974                                                  small amount
27981                                                 1 bottle/vial
27982                                         1 tablet/pill/capsule
27992                                                          dose
27999                                                 1 bottle/vial
28000                                         1 tablet/pill/capsule
28008                                                1 pack/package
28010                                                  pack/package
28014                                                          <NA>
28015                                                          <NA>
28016                                           tablet/pill/capsule
28018                                           tablet/pill/capsule
28023                                           tablet/pill/capsule
28024                                           tablet/pill/capsule
28025                                                  pack/package
28029                                               based on weight
28040                                               based on weight
28045                                                          <NA>
28046                                                   unspecified
28047                                                   unspecified
28048                                               based on weight
28049                                               based on weight
28087                                                          dose
28088                                                          dose
28090                                                          <NA>
28094                                                          <NA>
28096                                                          <NA>
28098                                                          <NA>
28100                                               based on weight
28101                                               based on weight
28102                                           tablet/pill/capsule
28103                                           tablet/pill/capsule
28104                                           tablet/pill/capsule
28105                                           tablet/pill/capsule
28106                                                          <NA>
28108                                               based on weight
28109                                               based on weight
28116                                                1 pack/package
28119                                               based on weight
28120                                           tablet/pill/capsule
28128                                                          <NA>
28130                                                   combination
28134                                           tablet/pill/capsule
28135                                         1 tablet/pill/capsule
28137                                               based on weight
28138                                                          <NA>
28144                                               based on weight
28154                                                          <NA>
28155                                                          <NA>
28158                                                        collar
28162                                               based on weight
28163                                                   as directed
28164                                      based on weight (60 lbs)
28165                                                          <NA>
28166                                         1 tablet/pill/capsule
28167                                                          <NA>
28168                                                          <NA>
28174                                                      ointment
28176                                                      ointment
28246                                           tablet/pill/capsule
28260                                                      ointment
28261                   272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                           tablet/pill/capsule
28264                                                   combination
28269                                           tablet/pill/capsule
28277                                           tablet/pill/capsule
28279                                                  small amount
28307                   2 mg prednisone, 5 mg trimeprazine tartrate
28309                      27 mg milbemycin oxime, 1620 mg spinosad
28311                      460 mg lufenuron, 23 mg milbemycin oxime
28316                                                        powder
28332                                                  small amount
28333                                                   unspecified
28371                                                  pack/package
28375                                           tablet/pill/capsule
28390                                                          <NA>
28392                                           tablet/pill/capsule
28396                                                          <NA>
28397                                           tablet/pill/capsule
28398                                           tablet/pill/capsule
28399                                           tablet/pill/capsule
28400                                           tablet/pill/capsule
28401                                           tablet/pill/capsule
28404                                           tablet/pill/capsule
28407                                                          <NA>
28425                                                          <NA>
28427                                                          <NA>
28437                                                          <NA>
28448                                                          <NA>
28449                                                          <NA>
28453                                                          <NA>
28484                                                          <NA>
28486                                                         spray
28505                                                 5 billion cfu
28507                                                            1%
28508                                                  small amount
28516 460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28517                                                   application
28518                                                          <NA>
28519                                                          <NA>
28520                                                          <NA>
28528                                                          <NA>
28531                                                   billion cfu
28533                                                             %
28534                                                          <NA>
28535                                                          <NA>
28536                                                             %
28538                                                   billion cfu
28545                                                          <NA>
28549                                         1 tablet/pill/capsule
28552                                               based on weight
28553                                               based on weight
28554                                               based on weight
28556                                               based on weight
28557                                     based on weight (50+ lbs)
28571                                               based on weight
28572                                                          <NA>
28573                                           tablet/pill/capsule
28574                                                        collar
28576                                           tablet/pill/capsule
28577                                                          <NA>
28580                                                    inch strip
28582                                               based on weight
28583                                                        collar
28590                                                          <NA>
28601                                                   unspecified
28602                                               based on weight
28605                                                        collar
28610                                                          <NA>
28621                                                          <NA>
28624                                               syringe/pipette
28660                                                       2 pumps
28668                                                   combination
28673                                                          <NA>
28674                                           tablet/pill/capsule
28675                                                          tube
28685                                                          <NA>
28686                                                          <NA>
28687                                                          <NA>
28693                                           tablet/pill/capsule
28694                                                 1 bottle/vial
28696                                           tablet/pill/capsule
28710                                                          <NA>
28714                                                          <NA>
28718                                                          <NA>
28719                                                          <NA>
28723                                               based on weight
28726                                               based on weight
28727                                                      ointment
28730                                                          <NA>
28731                                                          <NA>
28735                                                          <NA>
28736                                                          <NA>
28750                                                   unspecified
28751                                                   unspecified
28772                                                          <NA>
28773                                                          <NA>
28780                                                   combination
28806                                               based on weight
28809                                               based on weight
28819                                                         drops
28826                                                         spray
28829                                                          <NA>
28855                                               based on weight
28873                                                          <NA>
28874                                                          <NA>
28882                                           tablet/pill/capsule
28883                                           tablet/pill/capsule
28884                                                          <NA>
28888                                               based on weight
28897                                               based on weight
28899                                               based on weight
28904                                               based on weight
28907                                               based on weight
28934                                           tablet/pill/capsule
28939                                                          <NA>
28940                                                          <NA>
28941                                                      ointment
28946                                                          <NA>
28979                                               based on weight
28980                                               based on weight
28982                                               based on weight
28986                                         1 tablet/pill/capsule
28987                                                 1 application
29000                                                          tube
29007                                                          <NA>
29015                                                      ointment
29022                                                          <NA>
29023                                                          <NA>
29036                                                   application
29039                                           tablet/pill/capsule
29040                                                          <NA>
29043                                                          <NA>
29050                                                         spray
29053                                                   application
29056                                  based on weight (60-120 lbs)
29060                                                   unspecified
29064                                               based on weight
29067                                                          <NA>
29069                                                          <NA>
29070                                                    inch strip
29071                                                  small amount
29072                                                    inch strip
29073                                                    inch strip
29075                                                    inch strip
29078                                                          <NA>
29079                                               0.25 inch strip
29081                                                    inch strip
29083                                                  pack/package
29086                                                          <NA>
29087                                                          <NA>
29091                                                          <NA>
29095                                               based on weight
29096                                               based on weight
29098                                                          <NA>
29099                                                          <NA>
29103                                                          <NA>
29104                                                          <NA>
29108                                                         spray
29136                                               based on weight
29139                                                  small amount
29143                                                          <NA>
29151                                                   bottle/vial
29153                                                          <NA>
29161                                                  small amount
29166                                                   application
29184                                  based on weight (50-100 lbs)
29196                                                    inch strip
29197                                           tablet/pill/capsule
29220                                                  small amount
29232                                                          <NA>
29234                                                          <NA>
29235                                                          <NA>
29244                                                          <NA>
29245                                                          <NA>
29248                                                          <NA>
29283                                                          <NA>
29285                                                          <NA>
29291                                                         spray
29298                                                          <NA>
29313                                                          <NA>
29315                                           tablet/pill/capsule
29321                                                    inch strip
29324                                                   unspecified
29327                                                   unspecified
29328                                               based on weight
29340                                                          <NA>
29342                                                          <NA>
29374                                                          <NA>
29375                                                          <NA>
29376                                               based on weight
29377                                                          <NA>
29378                                                          <NA>
29379                                                          <NA>
29380                                                   unspecified
29381                                               based on weight
29382                                               based on weight
29383                                               based on weight
29395                                                          <NA>
29404                                                          <NA>
29405                                                          <NA>
29406                                                          <NA>
29428                                                          pump
29438                                                  small amount
29446                                                  small amount
29447                                                  small amount
29453                                                  small amount
29469                                           tablet/pill/capsule
29470                                                        collar
29471                                                          <NA>
29479                                               based on weight
29480                                               based on weight
29481                                               based on weight
29482                                               based on weight
29483                                               based on weight
29490                                               based on weight
29500                                                          <NA>
29501                                         1 tablet/pill/capsule
29502                                         1 tablet/pill/capsule
29504                                           tablet/pill/capsule
29505                                                          tube
29511                                         1 tablet/pill/capsule
29525                                               based on weight
29526                                               based on weight
29531                                           tablet/pill/capsule
29532                                                          <NA>
29533                                                          <NA>
29534                                                          <NA>
29535                                                          <NA>
29536                                           tablet/pill/capsule
29537                                                          <NA>
29538                                                          <NA>
29539                                                          <NA>
29540                                           tablet/pill/capsule
29567                                               based on weight
29568                                                          <NA>
29572                                                          dose
29573                                           tablet/pill/capsule
29574                                                          <NA>
29575                                                          <NA>
29580                                         1 tablet/pill/capsule
29588                                               based on weight
29608                                   based on weight (44-88 lbs)
29617                                         1 tablet/pill/capsule
29633                                                          <NA>
29662                                                          <NA>
29666                                                          <NA>
29669                                                          <NA>
29670                                                          <NA>
29678                                                          <NA>
29700                                                          <NA>
29705                                                          <NA>
29707                                                          <NA>
29709                                                          tube
29715                                                        collar
29716                                                        collar
29719                                                        collar
29720                                                          <NA>
29722                                                        collar
29724                                                          <NA>
29726                                                        collar
29734                                                          <NA>
29736                                               based on weight
29744                                               based on weight
29749                                                            mg
29753                                                          <NA>
29764                                                   unspecified
29765                                                   unspecified
29767                                               based on weight
29770                                               based on weight
29794                                                          <NA>
29798                                                          <NA>
29799                                                          <NA>
29800                                                          <NA>
29801                                                      wipe/pad
29802                                                          <NA>
29803                                                          <NA>
29822                                           tablet/pill/capsule
29823                                           tablet/pill/capsule
29824                                                          <NA>
29825                                                          <NA>
29827                                                          <NA>
29829                                                          <NA>
29831                                                          <NA>
29838                                                          <NA>
29839                                                          <NA>
29840                                                          <NA>
29847                                                          <NA>
29858                                                          <NA>
29862                                                          <NA>
29865                                                          <NA>
29880                                                          <NA>
29882                                               based on weight
29883                                               based on weight
29940                                  based on weight (50-100 lbs)
29941                                               based on weight
29948                                                       2 tubes
29954                                         1 tablet/pill/capsule
29955                                                        1 tube
29956                                  based on weight (50-100 lbs)
29957                                               based on weight
29963                                               based on weight
29964                                               based on weight
29966                                                          <NA>
29969                                               based on weight
29970                                               based on weight
29978                                                          <NA>
29990                                     based on weight (55+ lbs)
29991                                                          <NA>
29993                                                          <NA>
30001                                                          <NA>
30048                                                          <NA>
30070                                                    inch strip
30075                                                  pack/package
30076                                           tablet/pill/capsule
30081                                               based on weight
30082                                               based on weight
30083                                               based on weight
30099                                               based on weight
30104                                                          <NA>
30105                                                          <NA>
30131                                                          <NA>
30132                                                          <NA>
30138                                                          <NA>
30142                                                          <NA>
30143                                                  small amount
30162                                                          <NA>
30165                                                          <NA>
30166                                                          <NA>
30169                                                  pack/package
30172                                                          <NA>
30174                                                          <NA>
30178                                                      ointment
30179                                                          <NA>
30185                   272 mcg ivermectin, 227 mg pyrantel pamoate
30191                                                          <NA>
30192                                                          <NA>
30193                                                          <NA>
30198                                                          <NA>
30211                                           tablet/pill/capsule
30212                                           tablet/pill/capsule
30214                                                          tube
30218                                         1 tablet/pill/capsule
30221                                         1 tablet/pill/capsule
30239                                                          <NA>
30241                                                          <NA>
30242                                                          <NA>
30246                                                          <NA>
30263                                         1 tablet/pill/capsule
30264                                         1 tablet/pill/capsule
30268                                         1 tablet/pill/capsule
30269                                                        1 tube
30270                                               based on weight
30274                                               based on weight
30277                                               based on weight
30286                                               based on weight
30298                                               based on weight
30299                                                          <NA>
30300                                                          <NA>
30310                                               based on weight
30311                                                    inch strip
30312                                                     1-2 pumps
30313                                               based on weight
30317                                                  small amount
30319                                                  small amount
30327                                               0.25 inch strip
30329                                                          <NA>
30337                                                         spray
30338                                                          <NA>
30344                                               based on weight
30347                      27 mg milbemycin oxime, 1620 mg spinosad
30351                                               based on weight
30352                                               based on weight
30355                                                  small amount
30357                                                         spray
30360                                                  pack/package
30361                                           tablet/pill/capsule
30371                                                          <NA>
30372                                               based on weight
30373                                                             1
30374                                                             1
30375                                                             1
30376                                           tablet/pill/capsule
30377                                                          <NA>
30378                                                          <NA>
30385                                               based on weight
30387                                                   unspecified
30388                                                          <NA>
30389                                                   unspecified
30395                                               based on weight
30396                                               based on weight
30404                                               based on weight
30405                                                          <NA>
30406                                                          <NA>
30418                                                          <NA>
30450                                                          <NA>
30464                                                          <NA>
30471                                                          <NA>
30479                                     based on weight (55+ lbs)
30480                   272 mcg ivermectin, 227 mg pyrantel pamoate
30483                                     based on weight (55+ lbs)
30484                                                          <NA>
30485                                                          <NA>
30492                                                          <NA>
30496                                                           50%
30515                                                          <NA>
30528                                                          <NA>
30529                                                          <NA>
30536                                                         drops
30590                                               based on weight
30604                                               based on weight
30623                                                          <NA>
30644                                                          <NA>
30685                                           tablet/pill/capsule
30689                                           tablet/pill/capsule
30692                                                  small amount
30701                                           tablet/pill/capsule
30702                                                          <NA>
30707                                               based on weight
30708                                               based on weight
30709                                           tablet/pill/capsule
30710                                           tablet/pill/capsule
30713                                                          <NA>
30714                                                          <NA>
30717                                                          <NA>
30753                                               based on weight
30754                                                          <NA>
30756                                                          <NA>
30757                                                          <NA>
30764                                                          <NA>
30768                                                          <NA>
30769                                                          <NA>
30779                                               based on weight
30796                                           tablet/pill/capsule
30797                                           tablet/pill/capsule
30799                                               based on weight
30803                                                         scoop
30813                                                          <NA>
30817                                                          <NA>
30819                                                          tube
30820                                           tablet/pill/capsule
30821                                                        250 mg
30822                                           tablet/pill/capsule
30823                                               syringe/pipette
30824                                               syringe/pipette
30826                                           tablet/pill/capsule
30833                                           tablet/pill/capsule
30834                                                          tube
30840                                                          <NA>
30844                                                   combination
30876                                                          <NA>
30877                                                          <NA>
30901                                                    inch strip
30909                                                          <NA>
30917                                                         spray
30920                                                          <NA>
30936                                                          <NA>
30943                                                          <NA>
30945                                                          <NA>
30947                                           tablet/pill/capsule
30948                                           tablet/pill/capsule
30949                                                          <NA>
30953                                                          <NA>
30963                                                          <NA>
30998                                               based on weight
31000                                                        1 tube
31001                                           tablet/pill/capsule
31003                                                        1 tube
31004                                               based on weight
31010                                  based on weight (50-100 lbs)
31011                                     based on weight (55+ lbs)
31022                                               based on weight
31023                                               based on weight
31034                                                          <NA>
31043                                               based on weight
31046                                         1 tablet/pill/capsule
31089                                                          <NA>
31094                                           tablet/pill/capsule
31095                                           tablet/pill/capsule
31096                                           tablet/pill/capsule
31105                                               based on weight
31132                                                  small amount
31133                                           tablet/pill/capsule
31134                                           tablet/pill/capsule
31135                                           tablet/pill/capsule
31139                                                          <NA>
31148                                                          <NA>
31149                                                          <NA>
31152                                                          <NA>
31154                                                          <NA>
31183                                                          <NA>
31186                                                          <NA>
31195                                                          <NA>
31196                                                          <NA>
31197                                                  pack/package
31198                                                          <NA>
31203                                                          <NA>
31209                                                          <NA>
31228                                                             %
31232                                                             %
31234                                                             %
31247                                                          <NA>
31248                                                             %
31249                                                          <NA>
31250                                                             %
31260                                               based on weight
31263                                               based on weight
31265                                                          <NA>
31268                                                      inhalant
31297                                                          <NA>
31299                                                          <NA>
31300                                                          <NA>
31301                                                          <NA>
31303                                                          <NA>
31307                                                          tube
31308                                           tablet/pill/capsule
31309                                                     2.6 mg/lb
31317                                                        cup(s)
31322                                                          <NA>
31328                                                          <NA>
31350                                                          <NA>
31353                                                          <NA>
31356                                                  small amount
31357                                         1 tablet/pill/capsule
31358                                         1 tablet/pill/capsule
31359                                         1 tablet/pill/capsule
31360                                         1 tablet/pill/capsule
31361                                               based on weight
31365                                         1 tablet/pill/capsule
31366                                         1 tablet/pill/capsule
31367                                                          tube
31369                                                      wipe/pad
31370                                                   application
31371                                                          <NA>
31373                                                          <NA>
31374                                                          <NA>
31375                                               based on weight
31383                                         1 tablet/pill/capsule
31384                                         1 tablet/pill/capsule
31385                                         1 tablet/pill/capsule
31386                                         1 tablet/pill/capsule
31408                   272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                          <NA>
31434                                                          <NA>
31437                                      2 tablets/pills/capsules
31438                                                  small amount
31439                                                          <NA>
31440                                                          <NA>
31441                                                          dose
31446                                                  small amount
31447                                                  small amount
31449                                           tablet/pill/capsule
31450                                           tablet/pill/capsule
31452                                                          <NA>
31457                                                          <NA>
31463                                                          <NA>
31471                                           tablet/pill/capsule
31502                                               based on weight
31503                                               based on weight
31504                                               based on weight
31506                                           tablet/pill/capsule
31508                                                          dose
31528                                               based on weight
31529                                               based on weight
31531                                           tablet/pill/capsule
31539                                                             %
31542                                                          <NA>
31548                                                          <NA>
31551                                                          <NA>
31552                                                          <NA>
31553                                                          <NA>
31602                                  based on weight (50-100 lbs)
31611                                                  small amount
31612                                                  small amount
31616                                         1 tablet/pill/capsule
31617                                                          dose
31618                                                          dose
31619                                         1 tablet/pill/capsule
31637                                         1 tablet/pill/capsule
31640                                                  small amount
31643                                           tablet/pill/capsule
31644                                                          <NA>
31645                                                          <NA>
31646                                         1 tablet/pill/capsule
31647                                         1 tablet/pill/capsule
31653                                                          <NA>
31655                                                          <NA>
31656                                                          <NA>
31657                                                          <NA>
31665                                           tablet/pill/capsule
31666                                           tablet/pill/capsule
31678                                               based on weight
31680                                           tablet/pill/capsule
31688                                               based on weight
31689                                               based on weight
31696                                   based on weight (44-88 lbs)
31707                                           tablet/pill/capsule
31713                   272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                          <NA>
31725                                                          <NA>
31726                                                        1 tube
31730                                                          <NA>
31731                                                          <NA>
31734                                           tablet/pill/capsule
31735                                                          <NA>
31736                                                  pack/package
31737                                                        powder
31742                                                          <NA>
31747                                           tablet/pill/capsule
31748                                                          <NA>
31760                                           tablet/pill/capsule
31761                                                          <NA>
31762                                               based on weight
31768                                                          <NA>
31769                                                          <NA>
31771                                                          <NA>
31773                                                          <NA>
31774                                                          <NA>
31777                                           tablet/pill/capsule
31780                                                          <NA>
31781                                                          <NA>
31798                                               based on weight
31803                                               based on weight
31804                                         1 tablet/pill/capsule
31807                                                        1 tube
31808                                         1 tablet/pill/capsule
31826                                                  small amount
31833                                                          <NA>
31834                                                         spray
31836                                                          <NA>
31837                                               0.25 inch strip
31840                                               based on weight
31841                                                          <NA>
31843                                                          <NA>
31844                                                          <NA>
31846                                                        collar
31847                      460 mg lufenuron, 23 mg milbemycin oxime
31849                                                          1 ml
31850                                                          <NA>
31853                                                          <NA>
31861                                                          <NA>
31864                                                          <NA>
31866                                                          <NA>
31868                                               based on weight
31869                                         1 tablet/pill/capsule
31874                                               based on weight
31876                                                  small amount
31880                                                          <NA>
31888                                                   unspecified
31891                                               based on weight
31892                                               based on weight
31895                                                     per month
31896                                                     per month
31898                                         1 tablet/pill/capsule
31907                                                          <NA>
31908                                                          <NA>
31909                                         1 tablet/pill/capsule
31911                                           tablet/pill/capsule
31916                                               based on weight
31937                                                          <NA>
31938                                                          <NA>
31939                                                          <NA>
31940                                                          <NA>
31941                                                          <NA>
31942                                         1 tablet/pill/capsule
31946                                                          <NA>
31947                                                          <NA>
31948                                                          <NA>
31953                                                          <NA>
31954                                           tablet/pill/capsule
31955                                           tablet/pill/capsule
31968                                                          <NA>
31985                                                          <NA>
31990                                               based on weight
32002                                                          <NA>
32006                                                          <NA>
32015                                                          <NA>
32016                                           tablet/pill/capsule
32020                                                          <NA>
32025                                                   unspecified
32032                                                          <NA>
32035                                                          <NA>
32040                                           tablet/pill/capsule
32046                                                          <NA>
32053                                         1 tablet/pill/capsule
32054                                                 1 application
32055                                                          <NA>
32056                                         1 tablet/pill/capsule
32057                                         1 tablet/pill/capsule
32058                                         1 tablet/pill/capsule
32074                                                  small amount
32076                                               based on weight
32079                                               based on weight
32080                                               based on weight
32084                                                    inch strip
32095                                           tablet/pill/capsule
32097                                           tablet/pill/capsule
32098                                           tablet/pill/capsule
32099                                           tablet/pill/capsule
32100                                               based on weight
32101                                               based on weight
32102                                           tablet/pill/capsule
32103                                           tablet/pill/capsule
32105                                               based on weight
32106                                               based on weight
32108                                               based on weight
32114                                                             %
32116                                                             %
32119                                                          <NA>
32121                                                       monthly
32122                                                       monthly
32123                                                          <NA>
32128                                                          <NA>
32129                                                          <NA>
32168                                                        powder
32171                                                          <NA>
32175                                                          <NA>
32179                                         1 tablet/pill/capsule
32180                                         1 tablet/pill/capsule
32183                                                          <NA>
32184                                                          <NA>
32187                                                          <NA>
32196                                                        powder
32222                                               based on weight
32233                                         1 tablet/pill/capsule
32234                                         1 tablet/pill/capsule
32236                                  based on weight (50-100 lbs)
32237                                   based on weight (24-60 lbs)
32266                                                          puff
32276                                                          <NA>
32290                                                      inhalant
32297                                                          <NA>
32310                                                         spray
32312                                           tablet/pill/capsule
32313                                           tablet/pill/capsule
32315                                                    inch strip
32320                                                          <NA>
32343                                                    inch strip
32358                                                          <NA>
32359                                                          <NA>
32360                                                          <NA>
32362                                                          <NA>
32363                                                   unspecified
32370                                                      ointment
32390                                                          <NA>
32393                                               based on weight
32394                                                          <NA>
32425                                                          <NA>
32426                                                          <NA>
32427                                                          <NA>
32445                                                          <NA>
32447                                                          <NA>
32448                                                          <NA>
32449                                                          <NA>
32460                                                          <NA>
32463                                           tablet/pill/capsule
32464                                           tablet/pill/capsule
32466                                         1 tablet/pill/capsule
32467                                         1 tablet/pill/capsule
32477                                           tablet/pill/capsule
32478                                           tablet/pill/capsule
32504                                           tablet/pill/capsule
32505                                                   application
32507                                                          <NA>
32509                                           tablet/pill/capsule
32510                                                  small amount
32512                                     based on weight (56+ lbs)
32513                                                  small amount
32520                                                          <NA>
32529                                                          dose
32530                                  based on weight (50-100 lbs)
32535                                               based on weight
32536                                               based on weight
32538                                               moderate amount
32542                                                          <NA>
32557                   272 mcg ivermectin, 227 mg pyrantel pamoate
32558                                               based on weight
32561                                                   as directed
32562                                                   as directed
32575                                                          <NA>
32576                                                          <NA>
32629                                                   unspecified
32631                                               based on weight
32633                                                   unspecified
32635                                               based on weight
32642                                  based on weight (50-100 lbs)
32643                                  based on weight (50-100 lbs)
32652                                                          <NA>
32654                                                   unspecified
32664                                               based on weight
32670                                                          <NA>
32672                                                shampoo/mousse
32673                                                   combination
32678                                                          <NA>
32680                                                          <NA>
32682                                                          <NA>
32685                                                          <NA>
32694                                                         spray
32698                                           tablet/pill/capsule
32726                                                          <NA>
32737                                                          <NA>
32739                                           tablet/pill/capsule
32742                                           tablet/pill/capsule
32743                                           tablet/pill/capsule
32750                                         1 tablet/pill/capsule
32751                                         1 tablet/pill/capsule
32767                                                   unspecified
32769                                                          <NA>
32777                                                          <NA>
32798                                                   bottle/vial
32815                                                        powder
32829                                               syringe/pipette
32841                                                          <NA>
32844                                                          <NA>
32849                                           tablet/pill/capsule
32850                                           tablet/pill/capsule
32856                                   based on weight (44-88 lbs)
32857                                                          <NA>
32858                                                          <NA>
32859                                                          <NA>
32862                                                          <NA>
32863                                                          <NA>
32869                                                   unspecified
32870                                                          <NA>
32871                                                          <NA>
32879                                           tablet/pill/capsule
32883                                           tablet/pill/capsule
32884                                                          <NA>
32887                                               0.25 inch strip
32888                                                  small amount
32903                                                          <NA>
32923                                                   unspecified
32930 460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32937                                                          <NA>
32938                                           tablet/pill/capsule
32940                                                   application
32942                                           tablet/pill/capsule
32943                                           tablet/pill/capsule
32944                                           tablet/pill/capsule
32949                                                   application
32950                                                          <NA>
32951                                         1 tablet/pill/capsule
32952                                         1 tablet/pill/capsule
32954                                                          <NA>
32955                                                          <NA>
32956                                                          <NA>
32964                                                          <NA>
32965                                                          <NA>
32999                                               based on weight
33004                                               based on weight
33008                                                   bottle/vial
33009                                           tablet/pill/capsule
33010                                                          <NA>
33011                                                          <NA>
33015                                               based on weight
33023                                                  pack/package
33043                                                          <NA>
33047                                                          <NA>
33066                                                   bottle/vial
33068                                                          <NA>
33073                                                          <NA>
33078                                               based on weight
33081                                           tablet/pill/capsule
33085                                                   bottle/vial
33086                                                          <NA>
33087                                                          <NA>
33088                                                          <NA>
33089                                                          <NA>
33090                                                          <NA>
33091                                                          <NA>
33092                                           tablet/pill/capsule
33096                                           tablet/pill/capsule
33107                                                          <NA>
33110                                               based on weight
33113                                               based on weight
33124                                                         spray
33126                                                         spray
33128                                                          dose
33132                                  based on weight (60-120 lbs)
33133                                  based on weight (50-100 lbs)
33138                                         1 tablet/pill/capsule
33157                                                          <NA>
33159                                                          <NA>
33166                                               based on weight
33187                                                          <NA>
33190                                                          <NA>
33191                                                  small amount
33209                                                         spray
33211                                               based on weight
33220                                           tablet/pill/capsule
33222                                               based on weight
33226                                                          <NA>
33227                                                  pack/package
33229                                                        1 tube
33230                                           tablet/pill/capsule
33233                                                  pack/package
33235                                         1 tablet/pill/capsule
33236                                                          <NA>
33239                                                          <NA>
33242                                               based on weight
33271                                                          <NA>
33286                                                          <NA>
33289                                           tablet/pill/capsule
33292                                           tablet/pill/capsule
33293                                                          <NA>
33318                                                       2.68 ml
33333                                                          <NA>
33335                                                          <NA>
33336                                           tablet/pill/capsule
33347                                   based on weight (70-80 lbs)
33354                                                          <NA>
33355                                                          <NA>
33358                                  based on weight (50-100 lbs)
33363                                           tablet/pill/capsule
33364                                           tablet/pill/capsule
33370                                                          <NA>
33374                                                          <NA>
33375                                                          <NA>
33376                                                          <NA>
33377                                                          <NA>
33385                                                          <NA>
33387                                                          <NA>
33389                                                          <NA>
33410                                           tablet/pill/capsule
33411                                                        collar
33412                                           tablet/pill/capsule
33414                                                        collar
33456                                                          <NA>
33468                                                   bottle/vial
33471                                                          <NA>
33479                                  based on weight (60-120 lbs)
33480                                                       monthly
33482                                                          <NA>
33489                                                   unspecified
33490                                                          <NA>
33491                                                          <NA>
33492                                                          <NA>
33493                                                          <NA>
33499                                                          <NA>
33539                                                        collar
33541                                                        collar
33542                                                          <NA>
33543                                                        collar
33544                                                        collar
33576                                                          <NA>
33580                                           tablet/pill/capsule
33581                                                   application
33582                                                          <NA>
33583                                                          <NA>
33590                                  based on weight (50-100 lbs)
33591                                           tablet/pill/capsule
33592                   23 mg milbemycin oxime, 228 mg praziquantel
33614                                                          <NA>
33644                                               based on weight
33645                                               based on weight
33647                                                          <NA>
33649                                           tablet/pill/capsule
33651                                           tablet/pill/capsule
33655                                           tablet/pill/capsule
33684                                                   unspecified
33690                                                          <NA>
33696                                                   combination
33702                                                      3 scoops
33706                                                          <NA>
33714                                                          dose
33717                                           tablet/pill/capsule
33722                                                   application
33723                                                          dose
33724                                               based on weight
33725                                               based on weight
33737                                                   as directed
33740                                  based on weight (60-120 lbs)
33756                                                          <NA>
33767                                                          <NA>
33797                                               based on weight
33798                                               based on weight
33804                                                          dose
33805                                                          dose
33815                                                          <NA>
33824                                                          <NA>
33828                                                          <NA>
33844                                                          <NA>
33868                                               based on weight
33869                                                          <NA>
33870                                               based on weight
33890                                                          <NA>
33894                                                  small amount
33901                                                   unspecified
33907                                                         spray
33911                                                   application
33916                                                          <NA>
33919                                                  small amount
33927                                                          tube
33939                                                      ointment
33940                                                        powder
33991                                                  small amount
33994                                                          <NA>
33998                                                     as needed
34003                                                          <NA>
34005                                           tablet/pill/capsule
34011                                                          <NA>
34012                                                          <NA>
34014                                                   unspecified
34016                                                   unspecified
34022                                                   unspecified
34024                                                   unspecified
34029                                                   unspecified
34030                                               based on weight
34043                                               based on weight
34046                                                          <NA>
34048                                           tablet/pill/capsule
34049                                                        collar
34051                                                          <NA>
34053                                           tablet/pill/capsule
34054                                                        collar
34069                                                          <NA>
34073                                                          <NA>
34074                                                          <NA>
34075                                                          <NA>
34077                                               based on weight
34087                                         1 tablet/pill/capsule
34090                                                  small amount
34091                                         1 tablet/pill/capsule
34093                                                        collar
34094                                                          <NA>
34095                                                          <NA>
34096                                               based on weight
34107                                                          <NA>
34108                                                          <NA>
34109                                                  pack/package
34111                                                          <NA>
34113                                                          <NA>
34125                                                        1 tube
34126                                         1 tablet/pill/capsule
34128                                              1-2 applications
34132                                  based on weight (50-100 lbs)
34134                                           tablet/pill/capsule
34135                                                 1 application
34138                                                  pack/package
34140                                                          <NA>
34147                                           tablet/pill/capsule
34148                                           tablet/pill/capsule
34152                                                        powder
34155                                                   unspecified
34156                                                          <NA>
34157                                                          <NA>
34161                                                          <NA>
34227                                                         scoop
34230                                                          <NA>
34231                                                          <NA>
34232                                                          <NA>
34233                                                          <NA>
34234                                                          <NA>
34235                                                          <NA>
34238                                           tablet/pill/capsule
34239                                                          <NA>
34240                                                          <NA>
34241                                                          <NA>
34242                                                          <NA>
34243                                                          <NA>
34246                                                          <NA>
34247                                                          <NA>
34249                                               based on weight
34254                                         1 tablet/pill/capsule
34260                                                          <NA>
34262                                                          <NA>
34264                                                          <NA>
34267                                                          <NA>
34268                                                  small amount
34269                                                  small amount
34327                                                          <NA>
34332                                                          <NA>
34333                                                  small amount
34334                                                        1 tube
34336                                                  small amount
34340                                                          dose
34342                                                        collar
34343                                                         spray
34345                                               based on weight
34359                                               based on weight
34360                                               based on weight
34361                                                          <NA>
34362                                                          <NA>
34367                                                        powder
34374                                           tablet/pill/capsule
34375                                           tablet/pill/capsule
34378                                                          <NA>
34379                                                          <NA>
34388                                                  small amount
34401                                               based on weight
34403                                               based on weight
34409                                                          <NA>
34410                                                          <NA>
34418                                               based on weight
34419                                               based on weight
34430                                                          <NA>
34434                                               based on weight
34436                                                          <NA>
34467                                                          <NA>
34474                                                          <NA>
34493                                                          <NA>
34513                                               based on weight
34536                                         1 tablet/pill/capsule
34545                                                          <NA>
34548                                                          <NA>
34579                                                          <NA>
34583                                         1 tablet/pill/capsule
34584                                                          <NA>
34587                                                     as needed
34588                                                          <NA>
34593                                                          <NA>
34606                                                          <NA>
34608                                           tablet/pill/capsule
34609                                                          1 ml
34617                                                   bottle/vial
34624                                                          <NA>
34629                                   based on weight (40-60 lbs)
34630                                                     as needed
34635                                                      wipe/pad
34636                                               based on weight
34637                                                   unspecified
34638                                                      wipe/pad
34640                                               based on weight
34642                                           tablet/pill/capsule
34648                                                          <NA>
34669                                           tablet/pill/capsule
34672                                                         spray
34673                                                      ointment
34674                                                      ointment
34675                                                          <NA>
34676                                                          <NA>
34677                                                          <NA>
34678                                                         spray
34680                                                          <NA>
34697                                               based on weight
34704                                                   unspecified
34705                                                          <NA>
34708                                                   unspecified
34709                                                   unspecified
34710                                                      biweekly
34727                                                          <NA>
34728                                                          <NA>
34729                                                          <NA>
34730                                               based on weight
34733                                           tablet/pill/capsule
34734                                           tablet/pill/capsule
34741                                                          <NA>
34744                                                          <NA>
34747                                           tablet/pill/capsule
34750                                                          <NA>
34763                                               based on weight
34764                                               based on weight
34766                                                          <NA>
34787                                           tablet/pill/capsule
34788                                                  small amount
34789                                                          <NA>
34791                                               based on weight
34797                                                            mg
34798                                                            mg
34799                                               based on weight
34811                                           tablet/pill/capsule
34813                                                   unspecified
34828                                               based on weight
34832                                                          <NA>
34833                                           tablet/pill/capsule
34845                                           tablet/pill/capsule
34887                                           tablet/pill/capsule
34888                                                        1 tube
34890                                               based on weight
34891                                         1 tablet/pill/capsule
34892                                             1 syringe/pipette
34900                                                          <NA>
34901                                                          <NA>
34902                                                          <NA>
34903                                                          <NA>
34904                                                          <NA>
34905                                               based on weight
34906                                               based on weight
34907                                                          <NA>
34908                                                          <NA>
34917                                                          <NA>
34918                                                          <NA>
34920                                                          <NA>
34922                                                          <NA>
34923                                                          <NA>
34924                                                          <NA>
34953                                                          <NA>
34955                                                          <NA>
34956                                                          <NA>
34966                                               based on weight
34979                                                             1
34981                                           tablet/pill/capsule
34982                                           tablet/pill/capsule
34983                                           tablet/pill/capsule
34991                                                          <NA>
34992                                               based on weight
34996                                               based on weight
35002                                                          <NA>
35004                                                          <NA>
35014                                           tablet/pill/capsule
35025                                               based on weight
35027                                                        cup(s)
35034                                                          <NA>
35049                                                  small amount
35069                                           tablet/pill/capsule
35074                                                          <NA>
35094                                               based on weight
35103                                                 1 application
35109                                                          <NA>
35110                                               based on weight
35125                                           tablet/pill/capsule
35132                                           tablet/pill/capsule
35134                                                      ointment
35143 460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
35144                                                  small amount
35145                                                   unspecified
35146                                           tablet/pill/capsule
35147                                               based on weight
35148                                                   unspecified
35149                                                          <NA>
35150                                               based on weight
35152                                               based on weight
35153                                               based on weight
35154                                           tablet/pill/capsule
35160                                                          <NA>
35176                                                          <NA>
35181                                           tablet/pill/capsule
35182                                                          <NA>
35183                                                          <NA>
35189                                               based on weight
35203                                           tablet/pill/capsule
35204                                                   bottle/vial
35205                                                  small amount
35207                                                          <NA>
35212                                               based on weight
35214                                               based on weight
35232                                                          <NA>
35245                                                         drops
35252                                                          <NA>
35262                                                          <NA>
35264                                                          <NA>
35278                                           tablet/pill/capsule
35279                                           tablet/pill/capsule
35283                                           tablet/pill/capsule
35284                                           tablet/pill/capsule
35291                                         1 tablet/pill/capsule
35299                                                   bottle/vial
35300                                           tablet/pill/capsule
35314                                               0.25 inch strip
35315                                                          <NA>
35354                                                          <NA>
35388                                                          <NA>
35393                                                   unspecified
35399                                           tablet/pill/capsule
35400                                                          <NA>
35401                                           tablet/pill/capsule
35404                                           tablet/pill/capsule
35405                                           tablet/pill/capsule
35406                                         1 tablet/pill/capsule
35414                                                          <NA>
35417                                                          <NA>
35420                                                          <NA>
35421                                                          <NA>
35422                      460 mg lufenuron, 23 mg milbemycin oxime
35423                                  based on weight (50-100 lbs)
35424                                  based on weight (88-123 lbs)
35425                                                          <NA>
35432                                                          <NA>
35434                                                          <NA>
35443                                                          <NA>
35450                                                          <NA>
35453                                           tablet/pill/capsule
35454                                           tablet/pill/capsule
35495                                  based on weight (55-100 lbs)
35496                                            272 mcg ivermectin
35497                                                          <NA>
35499                                                          <NA>
35501                                                          <NA>
35504                                                          <NA>
35506                                                          <NA>
35509                                               0.25 inch strip
35513                                                          <NA>
35525                                               based on weight
35526                                               based on weight
35528                                                          <NA>
35539                                                          <NA>
35560                                           tablet/pill/capsule
35561                                           tablet/pill/capsule
35565                                                          <NA>
35566                                                          <NA>
35569                                                          <NA>
35571                                               based on weight
35572                                               based on weight
35573                                               based on weight
35574                                                          <NA>
35575                                               based on weight
35576                                                          <NA>
35577                                                          <NA>
35578                                               based on weight
35579                                               based on weight
35580                                                          <NA>
35581                                               based on weight
35582                                               based on weight
35593                                               based on weight
35598                                               based on weight
35605                                                         spray
35620                                                          <NA>
35621                                                 1 bottle/vial
35624                                                          <NA>
35626                                                        powder
35628                                                          <NA>
35633                                           tablet/pill/capsule
35639                                           tablet/pill/capsule
35641                                           tablet/pill/capsule
35642                                                   application
35645                                                          <NA>
35656                                                   unspecified
35659                                                          <NA>
35662                                           tablet/pill/capsule
35664                                               based on weight
35665                                               based on weight
35668                                                          <NA>
35673                                                         spray
35674                                                          <NA>
35696                                                          <NA>
35697                                           tablet/pill/capsule
35699                                         1 tablet/pill/capsule
35721                                               based on weight
35722                                                   unspecified
35725                                                          <NA>
35727                                                          <NA>
35740                                                          <NA>
35743                                                          <NA>
35748                                                          <NA>
35756                                                          <NA>
35757                                                          <NA>
35758                                                          <NA>
35762                                                         daily
35768                                                          tube
35770                                                          tube
35771                                           tablet/pill/capsule
35772                                                   unspecified
35773                                                  pack/package
35774                                           tablet/pill/capsule
35775                                               based on weight
35777                                                   unspecified
35778                                                   unspecified
35786                                                   application
35791                                                          <NA>
35792                                                          <NA>
35793                                                          <NA>
35808                                                          <NA>
35809                                                          <NA>
35810                                                          <NA>
35812                                  based on weight (60-120 lbs)
35821                                                   application
35831                                                          <NA>
35835                                                          <NA>
35855                                           tablet/pill/capsule
35859                                                          <NA>
35903                                                          <NA>
35908                                                          <NA>
35954                                               based on weight
35955                                           tablet/pill/capsule
35963                                                  small amount
35965                                                          <NA>
35969                                                     as needed
35973                                                   combination
35982                                               based on weight
35983                                               based on weight
36019                                               based on weight
36021                                               based on weight
36023                                                  small amount
36030                                                          <NA>
36042                                           tablet/pill/capsule
36043                                                          <NA>
36044                                           tablet/pill/capsule
36065                                         1 tablet/pill/capsule
36069                                               based on weight
36078                                                          <NA>
36081                                                          <NA>
36082                                                          <NA>
36084                                                   unspecified
36108                                                          <NA>
36110                                                          <NA>
36112                                               based on weight
36113                                                          <NA>
36115                                               based on weight
36134                                                          <NA>
36137                                                          pump
36144                                                 1 bottle/vial
36145                                         1 tablet/pill/capsule
36150                                               based on weight
36153                                                          <NA>
36156                                           tablet/pill/capsule
36159                                               based on weight
36171                                                          <NA>
36191                                           tablet/pill/capsule
36192                                                          <NA>
36200                                                          <NA>
36201                                                            ml
36202                                                          <NA>
36203                                                          <NA>
36205                                                          <NA>
36218                                           tablet/pill/capsule
36220                                               based on weight
36221                                           tablet/pill/capsule
36222                                                  small amount
36223                                                1 pack/package
36225                                               based on weight
36227                                           tablet/pill/capsule
36228                                           tablet/pill/capsule
36229                                           tablet/pill/capsule
36231                                                   bottle/vial
36232                                           tablet/pill/capsule
36233                                           tablet/pill/capsule
36235                                                      ointment
36237                                                    inch strip
36238                                                          <NA>
36240                                                          <NA>
36254                                                          <NA>
36256                                                          <NA>
36264                                                          <NA>
36268                                                          <NA>
36271                                                          <NA>
36272                                                          <NA>
36273                                   based on weight (40-60 lbs)
36275                                               based on weight
36276                                                   unspecified
36280                                  based on weight (85-130 lbs)
36283                                                          <NA>
36288                                                          <NA>
36293                                                          <NA>
36294                                                          <NA>
36295                                                          <NA>
36296                                                          <NA>
36297                                                          <NA>
36298                                                          <NA>
36299                                                          <NA>
36300                                                          <NA>
36301                                                          <NA>
36302                                                          <NA>
36303                                                          <NA>
36304                                                          <NA>
36305                                                          <NA>
36306                                               based on weight
36307                                               based on weight
36308                                                          <NA>
36309                                                          <NA>
36310                                                          <NA>
36311                                                          <NA>
36322                                                          <NA>
36323                                                          <NA>
36324                                                          <NA>
36325                                                          <NA>
36326                                                          <NA>
36327                                                          <NA>
36328                                                          <NA>
36329                                                          <NA>
36330                                                          <NA>
36331                                                          <NA>
36332                                                          <NA>
36333                                                          <NA>
36334                                                          <NA>
36335                                               based on weight
36336                                               based on weight
36337                                                          <NA>
36338                                                          <NA>
36339                                                          <NA>
36340                                                          <NA>
36358                                                          <NA>
36359                                                          <NA>
36360                                                          <NA>
36361                                                          <NA>
36362                                                          <NA>
36363                                                          <NA>
36364                                                          <NA>
36365                                                          <NA>
36366                                                          <NA>
36367                                                          <NA>
36368                                                          <NA>
36369                                                          <NA>
36370                                                          <NA>
36371                                               based on weight
36372                                               based on weight
36373                                                          <NA>
36374                                                          <NA>
36377                                                          <NA>
36378                                                          <NA>
36379                                                          <NA>
36380                                                          <NA>
36381                                                          <NA>
36382                                                          <NA>
36383                                                          <NA>
36384                                                          <NA>
36385                                                          <NA>
36398                                                          <NA>
36399                                                          <NA>
36403                                                          <NA>
36404                                                          <NA>
36405                                                          <NA>
36406                                                          <NA>
36410                                                          <NA>
36427                                               based on weight
36429                                                          <NA>
36430                                                             %
36438                                                          <NA>
36439                                               based on weight
36440                                               based on weight
36443                                                          <NA>
36444                                               based on weight
36448                                               based on weight
36451                                                   unspecified
36464                                                          <NA>
36474                                                          <NA>
36491                                                   unspecified
36497                                                          <NA>
36513                                                          <NA>
36533                                                  small amount
36535                                                      wipe/pad
36559                                               based on weight
36560                                               based on weight
36562                                               based on weight
36568                                           tablet/pill/capsule
36571                                                    inch strip
36574                                                          <NA>
36595                                           tablet/pill/capsule
36600                                                          pump
36601                                           tablet/pill/capsule
36602                                           tablet/pill/capsule
36605                                           tablet/pill/capsule
36607                                           tablet/pill/capsule
36608                                           tablet/pill/capsule
36616                                           tablet/pill/capsule
36624                                                            25
36626                                                          pump
36630                                           tablet/pill/capsule
36632                                           tablet/pill/capsule
36635                                           tablet/pill/capsule
36657                                                          <NA>
36670                                           tablet/pill/capsule
36698                                               based on weight
36699                                               based on weight
36705                                                          <NA>
36708                                                   unspecified
36709                                                      wipe/pad
36735                                                          <NA>
36751                                           tablet/pill/capsule
36752                                                   application
36753                                                        powder
36772                                                         spray
36816                                                  pack/package
36817                                               based on weight
36818                                                          <NA>
36819                                                          <NA>
36824                                           tablet/pill/capsule
36833                                               based on weight
36834                                               0.25 inch strip
36835                                                      wipe/pad
36840                                                          <NA>
36842                                                          <NA>
36846                                                          <NA>
36847                                                          <NA>
36848                                                          <NA>
36849                                               based on weight
36850                                               based on weight
36851                                                          <NA>
36853                                                          <NA>
36855                                                          <NA>
36859                                                          <NA>
36875                                                          <NA>
36876                                                          <NA>
36877                                                          <NA>
36878                                                        1 tube
36880                                                          <NA>
36881                                           tablet/pill/capsule
36882                                                          <NA>
36883                                           tablet/pill/capsule
36892                                                          <NA>
36893                                         1 tablet/pill/capsule
36894                                         1 tablet/pill/capsule
36900                                           tablet/pill/capsule
36901                                           tablet/pill/capsule
36911                                               based on weight
36919                                                          <NA>
36920                                               based on weight
36921                                                   unspecified
36925                                                          <NA>
36945                                                          <NA>
36969                                                          <NA>
36970                                                          <NA>
36982                                                 1 bottle/vial
36983                                         1 tablet/pill/capsule
36984                                         1 tablet/pill/capsule
36985                                         1 tablet/pill/capsule
36994                                                         spray
37007                                                          <NA>
37015                                           tablet/pill/capsule
37017                                                      wipe/pad
37018                                               based on weight
37019                                               based on weight
37020                                                          <NA>
37021                                           tablet/pill/capsule
37036                                                          1 ml
37038                                                          <NA>
37046                                                          <NA>
37054                                           tablet/pill/capsule
37055                                         1 tablet/pill/capsule
37056                                                   unspecified
37057                                                          <NA>
37061                                                        collar
37063                                                             %
37069                                                          <NA>
37070                                     based on weight (55+ lbs)
37071                                  based on weight (50-100 lbs)
37073                                                  small amount
37074                                                          <NA>
37075                                                  small amount
37077                                               based on weight
37078                                               based on weight
37087                                               based on weight
37088                                               based on weight
37098                                                          tube
37099                                           tablet/pill/capsule
37104                                                          <NA>
37116                                                          <NA>
37117                                               based on weight
37135                                               moderate amount
37157                                                          <NA>
37164                                                          <NA>
37165                                           tablet/pill/capsule
37168                                                        powder
37169                                                  small amount
37193                                                          <NA>
37194                                                        collar
37195                                                          <NA>
37197                                                          <NA>
37200                                               based on weight
37201                                               based on weight
37202                                               based on weight
37219                                           tablet/pill/capsule
37221                                                          <NA>
37259                                                          <NA>
37260                                                          <NA>
37262                                                   application
37266                                           tablet/pill/capsule
37267                                                          <NA>
37270                                                   application
37271                                                   application
37272                                                          <NA>
37277                                                shampoo/mousse
37278                                                          <NA>
37279                                                          <NA>
37302                                                          <NA>
37303                                                          <NA>
37309                                                  small amount
37316                                               based on weight
37325                                                          <NA>
37326                                                          <NA>
37332                                                  small amount
37337                                               based on weight
37344                                           tablet/pill/capsule
37349                   272 mcg ivermectin, 227 mg pyrantel pamoate
37359                                                          <NA>
37373                                           tablet/pill/capsule
37374                                           tablet/pill/capsule
37375                                                          <NA>
37376                                                          <NA>
37385                                           tablet/pill/capsule
37386                                           tablet/pill/capsule
37387                                           tablet/pill/capsule
37392                                                         spray
37396                                               based on weight
37397                                   based on weight (44-88 lbs)
37434                                                          <NA>
37435                                                          <NA>
37439                                               based on weight
37446                                                          dose
37449                                               moderate amount
37451                                                  small amount
37454                                               moderate amount
37457                                                   as directed
37463                                                   application
37464                                                         spray
37465                                                         spray
37467                                               moderate amount
37477                                                          <NA>
37478                                                          <NA>
37485                                               based on weight
37491                                                        1 pump
37493                                           tablet/pill/capsule
37495                                                         spray
37510                                                          <NA>
37526                                                          <NA>
37527                                                    inch strip
37533                                                  small amount
37536                                         1:10 part water ratio
37540                                               based on weight
37545                                           tablet/pill/capsule
37546                                           tablet/pill/capsule
37547                                           tablet/pill/capsule
37552                                           tablet/pill/capsule
37568                                                          <NA>
37569                                                       monthly
37571                                                          <NA>
37576                                                  small amount
37577                                                          <NA>
37578                                                          <NA>
37579                                                          <NA>
37580                                                          <NA>
37584                                                          <NA>
37585                                                          <NA>
37586                                                          <NA>
37597                                                          <NA>
37598                                                          <NA>
37601                                               based on weight
37602                                               based on weight
37603                                           tablet/pill/capsule
37608                                                   unspecified
37624                                               based on weight
37627                                               based on weight
37628                                               based on weight
37629                                                   unspecified
37630                                           tablet/pill/capsule
37639                                                          <NA>
37648                                               based on weight
37651                                                        collar
37655                                                        collar
37657                                                        collar
37662                                                        collar
37664                                                        collar
37669                                                      wipe/pad
37670                                                   application
37675                                                   application
37691                                                      ointment
37696                                                          <NA>
37697                                                          <NA>
37698                                                          <NA>
37704                                         1 tablet/pill/capsule
37705                                                        1 tube
37709                                                          <NA>
37710                                                          <NA>
37712                                                          <NA>
37713                                                          <NA>
37714                                                          <NA>
37717                                                          <NA>
37718                                                          <NA>
37731                                               based on weight
37738                                               based on weight
37739                                         1 tablet/pill/capsule
37740                                                        1 tube
37742                                         1 tablet/pill/capsule
37771                                                          <NA>
37785                                               based on weight
37786                                               based on weight
37797                                               based on weight
37798                                                          <NA>
37805                                                          <NA>
37806                                                          <NA>
37809                                                      inhalant
37816                                                          <NA>
37817                                                          <NA>
37820                                                          <NA>
37821                                                          <NA>
37822                                         1 tablet/pill/capsule
37834                                               based on weight
37835                                               based on weight
37837                                                          <NA>
37838                                           tablet/pill/capsule
37839                                           tablet/pill/capsule
37845                                               based on weight
37846                                               based on weight
37847                                           tablet/pill/capsule
37848                                           tablet/pill/capsule
37849                                           tablet/pill/capsule
37850                                           tablet/pill/capsule
37851                                           tablet/pill/capsule
37852                                           tablet/pill/capsule
37855                                               based on weight
37858                                               based on weight
37865                                               based on weight
37885                                           tablet/pill/capsule
37894                                           tablet/pill/capsule
37895                                           tablet/pill/capsule
37907                                                          <NA>
37916                                               based on weight
37920                                                 1 bottle/vial
37929                                                          <NA>
37930                                                          <NA>
37935                                                          <NA>
37937                                                          <NA>
37942                                                          <NA>
37944                                                          <NA>
37976                                           tablet/pill/capsule
37977                                                         drops
37978                                           tablet/pill/capsule
37979                                                         spray
37980                                                  small amount
37984                                           tablet/pill/capsule
37989                                         1 tablet/pill/capsule
37990                                                  small amount
37992                                           tablet/pill/capsule
37993                                           tablet/pill/capsule
38018                                                          <NA>
38036                                           tablet/pill/capsule
38041                                           tablet/pill/capsule
38046                                               based on weight
38048                                                          <NA>
38050                                               based on weight
38051                                               based on weight
38052                                                          <NA>
38056                                                          <NA>
38070                                           tablet/pill/capsule
38071                                                          <NA>
38072                                                             %
38074                                                          <NA>
38075                                                          <NA>
38102                                                          <NA>
38123                                           tablet/pill/capsule
38126                                           tablet/pill/capsule
38132                                                          <NA>
38134                                           tablet/pill/capsule
38135                                           tablet/pill/capsule
38136                                                   application
38141                                           tablet/pill/capsule
38142                                           tablet/pill/capsule
38151                                                          dose
38156                                                          <NA>
38165                                                          <NA>
38166                                                          <NA>
38177                                                          pump
38179                                                          <NA>
38181                                                          <NA>
38182                                                          <NA>
38184                                                          <NA>
38185                                                          <NA>
38193                                                          tube
38204                                                          <NA>
38211                                                          <NA>
38217                                         1 tablet/pill/capsule
38219                                                          <NA>
38240                                                          dose
38256                                                          <NA>
38257                                                          <NA>
38259                                                          <NA>
38262                                               based on weight
38268                                                          <NA>
38273                                                          <NA>
38284                                                   combination
38287                                                          pump
38288                                           tablet/pill/capsule
38289                                           tablet/pill/capsule
38293                                                          <NA>
38294                                                         drops
38301                                                          tube
38305                                                          <NA>
38306                                           tablet/pill/capsule
38324                                                          <NA>
38326                                                         spray
38330                                           tablet/pill/capsule
38339                                         1 tablet/pill/capsule
38342                                         1 tablet/pill/capsule
38351                                           tablet/pill/capsule
38352                                           tablet/pill/capsule
38353                                           tablet/pill/capsule
38361                                               0.25 inch strip
38365                                               based on weight
38366                                               based on weight
38367                                               based on weight
38369                                                          <NA>
38372                                                         drops
38373                                               based on weight
38377                                                          <NA>
38378                                                          <NA>
38386                                                          <NA>
38387                                                          <NA>
38388                                               based on weight
38396                                           tablet/pill/capsule
38397                                           tablet/pill/capsule
38399                                           tablet/pill/capsule
38406                                                  pack/package
38420                                           tablet/pill/capsule
38422                                               based on weight
38423                                               based on weight
38427                                                          <NA>
38431                                                  small amount
38436                                                          pump
38438                                           tablet/pill/capsule
38439                                           tablet/pill/capsule
38442                                                          <NA>
38461                                                          <NA>
38462                                                          <NA>
38464                                                          <NA>
38465                                                          <NA>
38466                                                          <NA>
38470                                                          <NA>
38471                                                          <NA>
38472                                                          <NA>
38473                                                          <NA>
38499                                                          <NA>
38504                                                          <NA>
38505                                                          <NA>
38507                                                          <NA>
38508                                                          <NA>
38509                                                          <NA>
38510                                                          <NA>
38511                                                          <NA>
38512                                                          <NA>
38522                                                          <NA>
38527                                               based on weight
38528                                               based on weight
38529                                                     as needed
38531                                                  small amount
38533                                                          <NA>
38534                                      2 tablets/pills/capsules
38536                                         1 tablet/pill/capsule
38544                                                  small amount
38550                                                          <NA>
38551                                                          <NA>
38557                                                          <NA>
38567                                           tablet/pill/capsule
38568                                               based on weight
38569                                               based on weight
38570                                                          <NA>
38588                                               moderate amount
38602                                           tablet/pill/capsule
38605                                                          <NA>
38606                                                          <NA>
38607                                                          <NA>
38610                                           tablet/pill/capsule
38611                                                          pump
38618                                                          <NA>
38626                                         1 tablet/pill/capsule
38630                                           tablet/pill/capsule
38636                                               based on weight
38637                                               based on weight
38643                                               based on weight
38647                                                          <NA>
38655                                                  pack/package
38656                                                 1 application
38665                                                          <NA>
38691                                               based on weight
38722                                                          <NA>
38723                                                      wipe/pad
38754                                                          <NA>
38772                                                  small amount
38775                                                          <NA>
38779                                                          <NA>
38780                                                          <NA>
38787                                           tablet/pill/capsule
38789                                                          <NA>
38796                                           tablet/pill/capsule
38802                                                          <NA>
38809                                                          <NA>
38816                                                  pack/package
38820                                                          <NA>
38821                                                          <NA>
38828                                                         spray
38839                                                          <NA>
38841                                                          <NA>
38843                                                          <NA>
38845                                                          <NA>
38847                                                   application
38850                                                      ointment
38851                                                          <NA>
38854                                                          <NA>
38855                                                   application
38861                                                          <NA>
38864                                                          <NA>
38865                                                          <NA>
38868                                                          <NA>
38871                                                          <NA>
38890                                           tablet/pill/capsule
38891                                           tablet/pill/capsule
38892                                               based on weight
38896                                               based on weight
38902                                                  small amount
38924                                                          <NA>
38925                                   based on weight (21-55 lbs)
38926                                  based on weight (50-100 lbs)
38930                                               based on weight
38931                                               based on weight
38940                                               based on weight
38941                                               based on weight
38945                                               based on weight
38946                                               based on weight
38950                                         1 tablet/pill/capsule
38951                                         1 tablet/pill/capsule
38952                                         1 tablet/pill/capsule
38956                                                          <NA>
38963                                               based on weight
38964                                               based on weight
38970                                                          <NA>
38971                                                          <NA>
38974                                                          <NA>
38976                                                          <NA>
38997                                                          <NA>
39004                                           tablet/pill/capsule
39005                                           tablet/pill/capsule
39006                                                          <NA>
39035                                                          <NA>
39083                                                          <NA>
39099                                         1 tablet/pill/capsule
39117                                                          <NA>
39120                                                   combination
39121                                               based on weight
39122                                                 1 application
39123                                           tablet/pill/capsule
39125                                                          <NA>
39127                                                          <NA>
39128                                                          <NA>
39158                                                          <NA>
39165                                                          <NA>
39167                                           tablet/pill/capsule
39171                                                  small amount
39176                                  based on weight (50-100 lbs)
39181                                                shampoo/mousse
39182                                                         spray
39198                                                         spray
39201                                                          <NA>
39202                                                        liquid
39207                                                          <NA>
39209                                                          <NA>
39210                                                          <NA>
39211                                                  pack/package
39212                                                          <NA>
39218                                                          <NA>
39259                                           tablet/pill/capsule
39260                                           tablet/pill/capsule
39262                                                          <NA>
39273                                                          <NA>
39316                                                   unspecified
39325                                                          <NA>
39326                                                          <NA>
39329                                                          <NA>
39330                                                          <NA>
39331                                                          <NA>
39332                                                          <NA>
39338                                               based on weight
39339                                                        collar
39340                                               based on weight
39388                                               based on weight
39392                                                          <NA>
39423                                                          <NA>
39425                                                      ointment
39433                                                          <NA>
39434                                                          <NA>
39435                                               syringe/pipette
39438                                               based on weight
39440                                                          <NA>
39443                                                          <NA>
39444                                                          <NA>
39445                                                          <NA>
39446                                                          <NA>
39447                                                          <NA>
39450                                                          <NA>
39451                                                          <NA>
39453                                                   application
39486                                                        1 tube
39495                                                          <NA>
39496                                                          <NA>
39511                                                          <NA>
39513                                                          <NA>
39516                                                   unspecified
39519                                                          <NA>
39525                                                   bottle/vial
39526                                                   unspecified
39528                                                          <NA>
39531                                                   combination
39534                                                          <NA>
39536                                                  pack/package
39539                                                          <NA>
39541                                                         spray
39542                                                   application
39543                                                    inch strip
39546                                                   bottle/vial
39548                                                          <NA>
39566                                                          <NA>
39567                                                          <NA>
39573                                                          <NA>
39581                                               based on weight
39582                                               based on weight
39586                                         1 tablet/pill/capsule
39591                                                          <NA>
39599                                                          <NA>
39607                                                          <NA>
39609                                         1 tablet/pill/capsule
39617                                                          <NA>
39618                                                          <NA>
39635                                           tablet/pill/capsule
39637                                                          <NA>
39639                                                  small amount
39651                                                         spray
39714                                         1 tablet/pill/capsule
39715                                         1 tablet/pill/capsule
39737                                                          <NA>
39754                                               based on weight
39756                                                          <NA>
39759                                                          <NA>
39760                                                          <NA>
39763                                                          <NA>
39764                                  based on weight (50-100 lbs)
39776                                                          <NA>
39777                                                          <NA>
39778                                                          <NA>
39786                                           tablet/pill/capsule
39787                                                   application
39788                                               based on weight
39795                                                          <NA>
39796                                                          <NA>
39833                                                          <NA>
39849                                                          <NA>
39856                                                          <NA>
39860                                                          <NA>
39871                                                          <NA>
39875                                                          <NA>
39877                                                          <NA>
39881                                      based on weight (60 lbs)
39909                                   based on weight (40-60 lbs)
39919                                                    inch strip
39958                                               based on weight
39973                                         1 tablet/pill/capsule
39974                                                  small amount
39975                                                  small amount
39980                                                        powder
39981                                                      wipe/pad
39982                                               0.25 inch strip
39987                                                          <NA>
39988                                                          <NA>
40013                                               based on weight
40021                                                          <NA>
40038                                                          <NA>
40043                                                          <NA>
40092                                   based on weight (44-88 lbs)
40093                                  based on weight (50-100 lbs)
40102                                                          <NA>
40108                                                          <NA>
40109                                                          <NA>
40115                                               based on weight
40117                                           tablet/pill/capsule
40121                                                          <NA>
40123                                                   unspecified
40124                                           tablet/pill/capsule
40125                                                   unspecified
40133                                                          <NA>
40134                                                          <NA>
40138                                           tablet/pill/capsule
40141                                                          <NA>
40142                                                          <NA>
40143                                                         spray
40144                                           tablet/pill/capsule
40149                                  based on weight (50-100 lbs)
40154                                               based on weight
40164                                                  small amount
40165                                               based on weight
40180                                               based on weight
40186                                               based on weight
40194                                                   combination
40196                                                   as directed
40206                                               based on weight
40209                                                  small amount
40214                                                   application
40216                                           tablet/pill/capsule
40217                                           tablet/pill/capsule
40218                                           tablet/pill/capsule
40221                                               based on weight
40222                                               based on weight
40223                                               based on weight
40224                                               based on weight
40244                                                   application
40290                                                          <NA>
40296                                                          <NA>
40297                                                          <NA>
40298                                                          <NA>
40299                                                  small amount
40302                                                          <NA>
40312                                      based on weight (70 lbs)
40317                                                  small amount
40331                                                          <NA>
40343                                                          <NA>
40390                                           tablet/pill/capsule
40391                                               based on weight
40392                                                          <NA>
40394                                                          <NA>
40403                                                  small amount
40406                                                          <NA>
40407                                                          <NA>
40417                                           tablet/pill/capsule
40418                                           tablet/pill/capsule
40422                                               based on weight
40451                                                          <NA>
40454                                                          <NA>
40464                                                          <NA>
40468                                                          <NA>
40472                                           tablet/pill/capsule
40474                                               based on weight
40483                                           tablet/pill/capsule
40484                                           tablet/pill/capsule
40486                                                          <NA>
40487                                                          <NA>
40488                                                        1 tube
40489                                                          <NA>
40494                                                          <NA>
40503                                           tablet/pill/capsule
40504                                           tablet/pill/capsule
40508                                                          <NA>
40511                                                          <NA>
40519                                           tablet/pill/capsule
40521                                                          <NA>
40535                                                          <NA>
40541                                                          <NA>
40568                                               based on weight
40571                                                          <NA>
40572                                                          <NA>
40573                                               based on weight
40574                                               based on weight
40579                                         1 tablet/pill/capsule
40580                                                          <NA>
40581                                                          <NA>
40582                                                    inch strip
40583                                                          <NA>
40595                                                      2 sprays
40600                                               based on weight
40601                                               based on weight
40603                                                   bottle/vial
40604                                                        powder
40606                                                  small amount
40607                                               moderate amount
40611                                               based on weight
40615                                                          <NA>
40616                                               based on weight
40617                                               based on weight
40618                                                          <NA>
40619                                                          <NA>
40620                                                          <NA>
40634                                                    inch strip
40636                                                          <NA>
40637                                                          <NA>
40644                                                          <NA>
40653                                                   bottle/vial
40654                                           tablet/pill/capsule
40655                                           tablet/pill/capsule
40656                                                          <NA>
40684                                               based on weight
40686                                               based on weight
40687                                               based on weight
40688                                                      wipe/pad
40689                                                      ointment
40690                                               based on weight
40691                                               based on weight
40693                                                 tapering dose
40699                                                          <NA>
40700                                           tablet/pill/capsule
40701                                           tablet/pill/capsule
40718                                                          <NA>
40719                                         1 tablet/pill/capsule
40721                                           tablet/pill/capsule
40722                                                      ointment
40723                                                          <NA>
40724                                                          <NA>
40725                                           tablet/pill/capsule
40726                                                          <NA>
40727                                                          <NA>
40744                                               based on weight
40745                                                         spray
40747                                                          <NA>
40748                                                      wipe/pad
40749                                           tablet/pill/capsule
40750                                                          <NA>
40751                                               based on weight
40754                                               based on weight
40755                                               based on weight
40756                                                    inch strip
40758                                                          <NA>
40760                                               based on weight
40775                                           tablet/pill/capsule
40776                                           tablet/pill/capsule
40781                                           tablet/pill/capsule
40783                                                          <NA>
40794                                                          <NA>
40796                                           tablet/pill/capsule
40799                                           tablet/pill/capsule
40800                                           tablet/pill/capsule
40801                                           tablet/pill/capsule
40810                                                  small amount
40823                                               based on weight
40824                                                         drops
40825                                                          dose
40827                                               based on weight
40828                                               based on weight
40829                                               based on weight
40833                   272 mcg ivermectin, 227 mg pyrantel pamoate
40834                                                240 mg, 360 mg
40838                                                         spray
40839                                                   bottle/vial
40840                                                   bottle/vial
40843                                                         spray
40846                                                          <NA>
40848                                               0.25 inch strip
40866                                                      wipe/pad
40868                                           tablet/pill/capsule
40870                                               based on weight
40875                                           tablet/pill/capsule
40879                                           tablet/pill/capsule
40895                                                          <NA>
40897                                                          <NA>
40899                                                          <NA>
40900                                                          <NA>
40902                                                          <NA>
40905                                                          <NA>
40919                                                          <NA>
40943                                                          <NA>
40958                                                   unspecified
40959                                                   unspecified
40960                                                   unspecified
40961                                                   unspecified
40962                                                    inch strip
40965                                           tablet/pill/capsule
40966                                           tablet/pill/capsule
40967                                           tablet/pill/capsule
40968                                           tablet/pill/capsule
40969                                                shampoo/mousse
40970                                                      ointment
40971                                           tablet/pill/capsule
40972                                           tablet/pill/capsule
40974                                               based on weight
40984                                                          <NA>
40987                                                          <NA>
40990                                                          <NA>
40992                                                          <NA>
40993                                                          <NA>
40994                                                          <NA>
40997                                           tablet/pill/capsule
40998                                                          <NA>
41003                                                          <NA>
41004                                                          <NA>
41005                                                          <NA>
41006                                                          <NA>
41007                                                          <NA>
41009                                                          <NA>
41010                                                          <NA>
41011                                                          <NA>
41014                                                          <NA>
41015                                                          <NA>
41016                                                          <NA>
41018                                           tablet/pill/capsule
41020                                                          <NA>
41021                                  based on weight (50-100 lbs)
41022                                                          <NA>
41023                                   based on weight (56-95 lbs)
41024                                           tablet/pill/capsule
41025                                                          <NA>
41057                                                          <NA>
41068                                                   bottle/vial
41069                                           tablet/pill/capsule
41084                                                          <NA>
41087                                                          <NA>
41088                                                          <NA>
41089                                                          <NA>
41090                                                          <NA>
41091                                                          <NA>
41094                                                          <NA>
41095                                                          <NA>
41096                                                          <NA>
41097                                                          <NA>
41098                                                          <NA>
41099                                                          <NA>
41101                                                          <NA>
41102                                                          <NA>
41103                                                          <NA>
41121                      27 mg milbemycin oxime, 1620 mg spinosad
41125                                               based on weight
41131                                               based on weight
41132                                               based on weight
41133                                  based on weight (50-100 lbs)
41134                                  based on weight (60-120 lbs)
41137                                                         spray
41139                                                          <NA>
41147                                                          <NA>
41151                                                          <NA>
41152                                                          <NA>
41170                                                    inch strip
41198                                                          <NA>
41199                                                          <NA>
41200                                                          <NA>
41201                                                          <NA>
41203                                           tablet/pill/capsule
41204                                                          tube
41206                                                          tube
41207                                           tablet/pill/capsule
41208                                           tablet/pill/capsule
41209                                           tablet/pill/capsule
41210                                           tablet/pill/capsule
41216                                                          <NA>
41217                                           tablet/pill/capsule
41219                                  based on weight (50-100 lbs)
41221                                               based on weight
41222                                                          <NA>
41223                                                          <NA>
41224                                                          <NA>
41240                                                        1 tube
41242                                               based on weight
41246                                                      ointment
41260                                                          <NA>
41267                                               based on weight
41278                                                         spray
41279                                   based on weight (1-121 lbs)
41281                                   based on weight (44-88 lbs)
41283                                                          <NA>
41313                                                          <NA>
41314                                                          <NA>
41315                                                          <NA>
41316                                                          <NA>
41318                                                          <NA>
41319                                                          <NA>
41320                                               based on weight
41325                                                          <NA>
41332                                                          <NA>
41335                                                  small amount
41340                                                  small amount
41343                                                          <NA>
41360                                                          <NA>
41371                                                          <NA>
41373                                           tablet/pill/capsule
41374                                           tablet/pill/capsule
41376                                                          <NA>
41377                                               based on weight
41378                                               based on weight
41381                                                          <NA>
41384                                           tablet/pill/capsule
41385                                           tablet/pill/capsule
41386                                           tablet/pill/capsule
41387                                           tablet/pill/capsule
41388                                                          <NA>
41396                                                          <NA>
41398                                                          <NA>
41407                                                          <NA>
41413                                                          <NA>
41417                                                          <NA>
41420                                                          <NA>
41421                                               based on weight
41422                                  based on weight (50-100 lbs)
41424                                                   unspecified
41425                                                  small amount
41430                                                          <NA>
41431                                                          <NA>
41432                                               based on weight
41433                                                          <NA>
41435                                                          <NA>
41442                                                      wipe/pad
41443                                                          <NA>
41444                                                          <NA>
41446                                                        1 pump
41447                                                          <NA>
41451                                                          <NA>
41464                                                  small amount
41466                                                  small amount
41470                                                          <NA>
41497                                                   unspecified
41500                                                          <NA>
41505                                                      inhalant
41525                                                  small amount
41531                                                  small amount
41533                                                          <NA>
41557                                                    inch strip
41572                                           tablet/pill/capsule
41573                                           tablet/pill/capsule
41612                                                          <NA>
41615                                         1 tablet/pill/capsule
41617                                                          <NA>
41621                                                          <NA>
41629                                                      per hour
41632                                                          <NA>
41633                                                          <NA>
41638                                           tablet/pill/capsule
41639                                           tablet/pill/capsule
41640                                         1 tablet/pill/capsule
41641                                                          <NA>
41653                                                          <NA>
41655                                                          <NA>
41674                                                          <NA>
41724                                                          <NA>
41725                                                        1 tube
41726                                         1 tablet/pill/capsule
41727                                         1 tablet/pill/capsule
41728                                         1 tablet/pill/capsule
41729                                                             1
41731                                                          <NA>
41737                                                        1 tube
41738                                         1 tablet/pill/capsule
41739                                         1 tablet/pill/capsule
41740                                         1 tablet/pill/capsule
41743                                                          <NA>
41746                                         1 tablet/pill/capsule
41747                                                   unspecified
41748                                                   unspecified
41749                                                   unspecified
41750                                                   unspecified
41751                                                   unspecified
41752                                                   unspecified
41753                                                   unspecified
41754                                                   unspecified
41756                                                          <NA>
41759                                           tablet/pill/capsule
41774                                                          <NA>
41781                                                          <NA>
41803                                           tablet/pill/capsule
41811                                                          <NA>
41816                                                          <NA>
41819                                                          <NA>
41830                                                          <NA>
41835                                               based on weight
41837                                  based on weight (50-100 lbs)
41838                                  based on weight (89-132 lbs)
41840                                  based on weight (50-100 lbs)
41846                                                          <NA>
41849                                               based on weight
41850                                               based on weight
41851                                                          <NA>
41853                                                          <NA>
41854                                               based on weight
41863                                                          <NA>
41870                                                          <NA>
41872                                                          <NA>
41888                                                    inch strip
41891                                                          <NA>
41893                                                          <NA>
41894                                                          <NA>
41896                                                          <NA>
41897                                                          <NA>
41898                                                          <NA>
41899                                                          <NA>
41900                                                          <NA>
41901                                                          <NA>
41902                                                          <NA>
41903                                                          <NA>
41904                                                          <NA>
41905                                                          <NA>
41906                                                          <NA>
41921                                                          <NA>
41929                                           tablet/pill/capsule
41930                                           tablet/pill/capsule
41937                                           tablet/pill/capsule
41938                                                          tube
41939                                                         spray
41946                                                          <NA>
41947                                                          <NA>
41950                                                          <NA>
41973                                                  small amount
41975                                                          <NA>
41988                                               based on weight
42004                                                          <NA>
42005                                                          <NA>
42011                                               based on weight
42012                                               based on weight
42032                                               based on weight
42037                                               based on weight
42039                                         1 tablet/pill/capsule
42043                                               based on weight
42044                                               based on weight
42053                                               based on weight
42057                                                          <NA>
42061                                                             %
42063                                               based on weight
42066                                               based on weight
42100                                                  small amount
42101                                                         spray
42112                                                   combination
42116                                                          <NA>
42119                                                          <NA>
42122                                                          <NA>
42147                                           tablet/pill/capsule
42148                                           tablet/pill/capsule
42149                                           tablet/pill/capsule
42150                                           tablet/pill/capsule
42151                                           tablet/pill/capsule
42152                                           tablet/pill/capsule
42154                                   based on weight (44-88 lbs)
42174                                               based on weight
42198                                                        collar
42201                                                        collar
42215                                                          <NA>
42218                                                          <NA>
42219                                                          <NA>
42221                                                   application
42227                                                   application
42229                                                   application
42240                                                          <NA>
42241                                                          <NA>
42242                                                          <NA>
42243                                                          <NA>
42256                                                  small amount
42257                                                  small amount
42259                                                  small amount
42267                                                          <NA>
42272                                                          <NA>
42273                                                          <NA>
42278                                           tablet/pill/capsule
42284                                                          <NA>
42286                                                            kg
42287                                               based on weight
42289                                               based on weight
42291                                                   unspecified
42313                                                   application
42314                                           tablet/pill/capsule
42345                                               based on weight
42346                                               based on weight
42348                                           tablet/pill/capsule
42349                                           tablet/pill/capsule
42353                                           tablet/pill/capsule
42354                                           tablet/pill/capsule
42356                                           tablet/pill/capsule
42357                                  based on weight (50-100 lbs)
42358                                  based on weight (60-120 lbs)
42361                                                  pack/package
42367                                                  small amount
42368                                                          <NA>
42378                                               based on weight
42379                                               based on weight
42384                                               based on weight
42386                                               based on weight
42387                                               based on weight
42399                                                        collar
42402                                           tablet/pill/capsule
42417                                                      ointment
42425                                                         spray
42426                                                         spray
42433                                           tablet/pill/capsule
42451                                               based on weight
42455                                                          <NA>
42463                                                   as directed
42464                                                  small amount
42468                                                          <NA>
42474                                                   unspecified
42475                                                          <NA>
42476                                                   unspecified
42477                                                   unspecified
42480                                                          <NA>
42481                                                          <NA>
42482                                                        1 tube
42483                                           tablet/pill/capsule
42486                                           tablet/pill/capsule
42488                                                   unspecified
42489                                                          <NA>
42502                                                          <NA>
42506                                                1 pack/package
42512                                           tablet/pill/capsule
42513                                                          <NA>
42522                                           tablet/pill/capsule
42537                                                   application
42551                                           tablet/pill/capsule
42552                                           tablet/pill/capsule
42553                                               based on weight
42570                                               based on weight
42572                                                          <NA>
42573                                               based on weight
42574                                               based on weight
42578                                                          <NA>
42579                                                          <NA>
42593                                                          <NA>
42594                                                          <NA>
42624                                               based on weight
42626                                                          <NA>
42627                                           tablet/pill/capsule
42628                                           tablet/pill/capsule
42632                                           tablet/pill/capsule
42633                                           tablet/pill/capsule
42634                                                        collar
42637                                                       monthly
42638                                                          <NA>
42640                                                           10%
42646                                                          <NA>
42647                                                          <NA>
42648                                                          <NA>
42652                                   based on weight (22-44 lbs)
42655                                           tablet/pill/capsule
42656                                           tablet/pill/capsule
42666                                               based on weight
42668                                                          <NA>
42675                                                          <NA>
42678                                                          <NA>
42679                                                          <NA>
42694                                               based on weight
42695                                               based on weight
42696                                               based on weight
42697                                               based on weight
42700                                                          <NA>
42704                                               based on weight
42712                                           tablet/pill/capsule
42716                                                  small amount
42721                                                          <NA>
42725                                                   bottle/vial
42726                                                          dose
42727                                                          <NA>
42728                                           tablet/pill/capsule
42729                                           tablet/pill/capsule
42740                                               based on weight
42758                                                          <NA>
42760                                           tablet/pill/capsule
42761                                                   application
42764                                                          <NA>
42766                                           tablet/pill/capsule
42768                                                          <NA>
42785                                                          <NA>
42786                                                          <NA>
42787                                                          <NA>
42791                                                          <NA>
42792                                                          <NA>
42799                                                          <NA>
42821                                           tablet/pill/capsule
42833                                                          <NA>
42860                                                        cup(s)
42876                                                          <NA>
42879                                                          <NA>
42887                                                          <NA>
42890                                           tablet/pill/capsule
42891                                           tablet/pill/capsule
42892                                                          <NA>
42893                                                          <NA>
42894                                                          <NA>
42913                                     based on weight (60+ lbs)
42915                                                   application
42920                                                          <NA>
42923                                               based on weight
42926                                               based on weight
42930                                               based on weight
42931                                               based on weight
42932                                               based on weight
42935                                               based on weight
42936                                               based on weight
42939                                               based on weight
42940                                               based on weight
42946                                                          <NA>
42952                                                          <NA>
42956                                               based on weight
42959                                           tablet/pill/capsule
42960                                                          <NA>
42967                                               based on weight
42994                                               based on weight
43013                                                          <NA>
43045                                               based on weight
43064                                         1 tablet/pill/capsule
43065                                                          dose
43069                                                   application
43072                                                   unspecified
43081                                                          tube
43086                                                          pump
43105                                                      wipe/pad
43116                                           tablet/pill/capsule
43119                                               based on weight
43123                                                          <NA>
43135                                                          <NA>
43136                                                          <NA>
43151                                                          <NA>
43153                                                          <NA>
43169                                                  small amount
43173                                                  small amount
43183                                                          <NA>
43184                                                          <NA>
43191                                                     as needed
43200                                                          <NA>
43202                                                          <NA>
43204                                               based on weight
43224                                                          <NA>
43228                                                        collar
43236                                                          <NA>
43238                                  based on weight (50-100 lbs)
43239                                                        collar
43241                                  based on weight (50-100 lbs)
43242                                     based on weight (18+ lbs)
43243                                           tablet/pill/capsule
43244                                                        collar
43246                                               based on weight
43247                                                          <NA>
43258                                                          <NA>
43259                                                          <NA>
43270                                                          <NA>
43286                                                          <NA>
43291                                                          <NA>
43292                                                          <NA>
43293                                   based on weight (55-88 lbs)
43310                                           tablet/pill/capsule
43334                                                          <NA>
43366                                                          <NA>
43388                                               based on weight
43405                                                  small amount
43412                                                  small amount
43423                                                          <NA>
43424                                                          <NA>
43430                                                        powder
43467                                                   unspecified
43469                                                   unspecified
43470                                                   unspecified
43471                                                   unspecified
43482                                           tablet/pill/capsule
43491                                               based on weight
43493                                                          <NA>
43494                                                          <NA>
43496                                                          <NA>
43497                                                          <NA>
43510                                               based on weight
43511                                               based on weight
43512                                               based on weight
43522                                               based on weight
43527                   272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                           tablet/pill/capsule
43532                                           tablet/pill/capsule
43535                                           tablet/pill/capsule
43538                                           tablet/pill/capsule
43539                                           tablet/pill/capsule
43540                                                          <NA>
43545                                               based on weight
43546                                   based on weight (44-88 lbs)
43547                                               based on weight
43548                                           tablet/pill/capsule
43549                                                   bottle/vial
43550                                                  small amount
43563                                           tablet/pill/capsule
43570                                                          <NA>
43610                                              0.125 inch strip
43620                                                          <NA>
43621                                                             %
43636                                   based on weight (40-85 lbs)
43637                                         1 tablet/pill/capsule
43639                                                          <NA>
43640                                                          <NA>
43642                                                          <NA>
43643                                                      wipe/pad
43644                                                          <NA>
43645                                                          <NA>
43646                                                          <NA>
43650                                                          <NA>
43652                                                          tube
43653                                           tablet/pill/capsule
43669                                                      wipe/pad
43678                                                   application
43683                                           tablet/pill/capsule
43684                                               0.25 inch strip
43685                                                  small amount
43686                                                  small amount
43706                                         1 tablet/pill/capsule
43707                                         1 tablet/pill/capsule
43709                                                        1 tube
43714                                               moderate amount
43715                                                  small amount
43738                                                          <NA>
43743                                           tablet/pill/capsule
43744                                                        liquid
43745                                                1 pack/package
43746                                               based on weight
43747                                               based on weight
43751                                                  pack/package
43783                                               based on weight
43784                                               based on weight
43785                                               based on weight
43806                                                         spray
43807                                                shampoo/mousse
43838                                                          <NA>
43843                                                          <NA>
43844                                                          <NA>
43851                                                          <NA>
43853                                                          <NA>
43854                                                          <NA>
43878                                           tablet/pill/capsule
43884                                                          <NA>
43887                                                          <NA>
43893                                           tablet/pill/capsule
43894                                                        collar
43896                                           tablet/pill/capsule
43919                                           tablet/pill/capsule
43920                                                          tube
43938                                               based on weight
43939                                               based on weight
43949                                               based on weight
43950                                               based on weight
43958                                               based on weight
43959                                               based on weight
43960                                               based on weight
43963                                                          <NA>
43965                                                          <NA>
43975                                               1.5 billion cfu
43976                                                          <NA>
43977                                                          <NA>
43980                                                          <NA>
43997                                                    inch strip
44031                                                          <NA>
44037                                                          <NA>
44050                                                    1 wipe/pad
44055                                                          <NA>
44084                                                    inch strip
44087                                                   unspecified
44090                                                   unspecified
44119                                                          <NA>
44123                                                         spray
44126                                           tablet/pill/capsule
44127                                           tablet/pill/capsule
44129                                         1 tablet/pill/capsule
44131                                               based on weight
44154                                                   unspecified
44155                                               based on weight
44157                                               based on weight
44158                                               based on weight
44207                                                  small amount
44209                                                          1 ml
44211                                  based on weight (60-120 lbs)
44212                                           tablet/pill/capsule
44214                                                          <NA>
44216                                  based on weight (60-120 lbs)
44218                                  based on weight (60-120 lbs)
44219                                                          <NA>
44222                                                          <NA>
44223                                                          <NA>
44224                                                          <NA>
44225                                                          <NA>
44226                                                          <NA>
44227                                                          <NA>
44234                                                          <NA>
44235                                                          <NA>
44240                                                          <NA>
44241                                                          <NA>
44243                                                          <NA>
44244                                                          <NA>
44246                                                          <NA>
44247                                                          <NA>
44249                                         1 tablet/pill/capsule
44250                                         1 tablet/pill/capsule
44251                                         1 tablet/pill/capsule
44252                                         1 tablet/pill/capsule
44253                                               based on weight
44268                                               based on weight
44280                                                  small amount
44282                                                  small amount
44309                                                          <NA>
44330                                           tablet/pill/capsule
44334                                           tablet/pill/capsule
44335                                           tablet/pill/capsule
44336                                           tablet/pill/capsule
44337                                           tablet/pill/capsule
44347                                                          <NA>
44350                                                          <NA>
44363                                                          <NA>
44372                                                      ointment
44385                                                          <NA>
44386                                                          <NA>
44390                                           tablet/pill/capsule
44391                                                          <NA>
44392                                                          <NA>
44395                                           tablet/pill/capsule
44398                                                  pack/package
44421                                               based on weight
44428                                           tablet/pill/capsule
44429                                                          <NA>
44431                                               based on weight
44434                                                          <NA>
44452                                               based on weight
44473                                               based on weight
44507                                                          <NA>
44520                                                          <NA>
44524                                                          <NA>
44531                                                          <NA>
44542                                                  pack/package
44543                                           tablet/pill/capsule
44545                                                          <NA>
44546                                               based on weight
44547                                               based on weight
44558                                           tablet/pill/capsule
44559                                                   bottle/vial
44570                                           tablet/pill/capsule
44571                                                   bottle/vial
44576                                           tablet/pill/capsule
44577                                                   bottle/vial
44595                                               0.25 inch strip
44607                                                 1 application
44608                                           tablet/pill/capsule
44609                                                   unspecified
44616                                           tablet/pill/capsule
44618                                           tablet/pill/capsule
44646                                                          <NA>
44649                                  based on weight (85-130 lbs)
44652                                                          <NA>
44653                                                          <NA>
44654                                                          <NA>
44655                                                          <NA>
44658                                                          <NA>
44660                                                          <NA>
44663                                                          <NA>
44671                                               based on weight
44672                                                          <NA>
44677                                                          <NA>
44679                                                          <NA>
44683                                                          <NA>
44684                                           tablet/pill/capsule
44706                                                      ointment
44732                                                          <NA>
44742                                               based on weight
44743                                               based on weight
44745                                               based on weight
44746                                                          <NA>
44747                                                        collar
44755                                                          <NA>
44757                                                          <NA>
44769                                                          <NA>
44771                                               based on weight
44782                                                          <NA>
44795                                                    inch strip
44799                                                          <NA>
44804                                                          <NA>
44820                                           tablet/pill/capsule
44827                                           tablet/pill/capsule
44828                                           tablet/pill/capsule
44829                                           tablet/pill/capsule
44830                                                          <NA>
44834                                                          tube
44843                                         1 tablet/pill/capsule
44844                                         1 tablet/pill/capsule
44857                                                          <NA>
44858                                                          <NA>
44862                                           tablet/pill/capsule
44863                                                          <NA>
44864                                                          <NA>
44866                                                          <NA>
44867                                                        1 tube
44868                                                        1 tube
44869                                         1 tablet/pill/capsule
44875                                                          <NA>
44877                                                          <NA>
44879                                           tablet/pill/capsule
44899                                                          <NA>
44905                                                          <NA>
44915                                                          <NA>
44916                                                          <NA>
44917                                                        1 tube
44918                                                   combination
44920                                                          <NA>
44922                                                          <NA>
44924                                           tablet/pill/capsule
44925                                                          <NA>
44933                                                          <NA>
44936                                                          <NA>
44937                                                          <NA>
44938                                                          <NA>
44939                                                          <NA>
44946                                           tablet/pill/capsule
44947                                           tablet/pill/capsule
44949                                           tablet/pill/capsule
44950                                           tablet/pill/capsule
44957                                         1 tablet/pill/capsule
44958                                         1 tablet/pill/capsule
44997                                                  pack/package
45005                                                          <NA>
45007                                               based on weight
45014                                               based on weight
45017                                                          <NA>
45023                                                          <NA>
45027                                                          <NA>
45034                                               0.25 inch strip
45045                                               based on weight
45053                                      based on weight (25 lbs)
45054                                   based on weight (10-24 lbs)
45055                                   based on weight (25-60 lbs)
45059                                  based on weight (50-100 lbs)
45061                                               based on weight
45062                                               based on weight
45063                                                          <NA>
45064                                               based on weight
45066                                                          <NA>
45072                                                          <NA>
45073                                                          <NA>
45076                                           tablet/pill/capsule
45116                                                          <NA>
45117                                                  pack/package
45123                                                          <NA>
45134                                                          <NA>
45139                                                          <NA>
45149                                           tablet/pill/capsule
45150                                           tablet/pill/capsule
45154                                               based on weight
45172                                                          <NA>
45173                                                          <NA>
45174                                                          <NA>
45175                                                          <NA>
45178                                         1 tablet/pill/capsule
45179                                                 1 bottle/vial
45180                                                  small amount
45181                                                  small amount
45182                                               based on weight
45185                                   based on weight (44-88 lbs)
45186                                               based on weight
45187                                               based on weight
45188                                               based on weight
45189                                               based on weight
45195                                                          <NA>
45199                                                          <NA>
45208                                                          pump
45209                                                          <NA>
45210                                                  small amount
45212                                               based on weight
45216                                               based on weight
45224                                                          <NA>
45225                                               based on weight
45236                                               based on weight
45255                                                          <NA>
45263                                           tablet/pill/capsule
45268                                                   unspecified
45273                                                          <NA>
45280                                                          <NA>
45283                                               based on weight
45286                                                          <NA>
45294                                                          <NA>
45295                                                          <NA>
45297                                                          <NA>
45298                                               based on weight
45299                                               based on weight
45302                                               based on weight
45305                                                          <NA>
45307                                                   unspecified
45309                                                          <NA>
45310                                               based on weight
45311                                               based on weight
45312                                               based on weight
45313                                               based on weight
45322                                                          <NA>
45327                                                          <NA>
45335                                                          <NA>
45344                                           tablet/pill/capsule
45345                                           tablet/pill/capsule
45358                                                          <NA>
45359                                                          <NA>
45372                                                  small amount
45383                                                          <NA>
45403                                                          <NA>
45406                                               based on weight
45411                                                      ointment
45425                   272 mcg ivermectin, 227 mg pyrantel pamoate
45426                                                   unspecified
45434                                                          <NA>
45435                                                          <NA>
45443                                                   combination
45445                                           tablet/pill/capsule
45451                                               based on weight
45452                                               based on weight
45463                                                          <NA>
45468                                                          <NA>
45470                                               based on weight
45471                                                         mg/ml
45476                                                          <NA>
45479                                                          <NA>
45480                                                          <NA>
45484                                               based on weight
45503                                                          <NA>
45504                                           tablet/pill/capsule
45508                                                        1 tube
45531                                                          <NA>
45534                                                          <NA>
45555                                                   unspecified
45556                                               based on weight
45572                                                          <NA>
45582                                               based on weight
45585                                           tablet/pill/capsule
45626                                                          <NA>
45642                                                          <NA>
45650                                               based on weight
45651                                           tablet/pill/capsule
45655                                               based on weight
45656                                               based on weight
45663                                                          <NA>
45664                                               based on weight
45665                                               based on weight
45667                                                             %
45670                                                          <NA>
45671                                                          <NA>
45675                                                         drops
45676                                                         drops
45683                                               based on weight
45699                                                          <NA>
45700                                                          <NA>
45704                                                          <NA>
45724                                                          <NA>
45725                                                          <NA>
45726                                                          <NA>
45727                                                          <NA>
45728                                                          <NA>
45729                                                          <NA>
45735                                           tablet/pill/capsule
45736                                                          tube
45751                                                          <NA>
45764                                                          <NA>
45775                                                          <NA>
45776                                                          <NA>
45787                                               based on weight
45791                                               based on weight
45798                                                          <NA>
45799                                         1 tablet/pill/capsule
45800                                         1 tablet/pill/capsule
45816                                                        collar
45820                                               based on weight
45843                                                     as needed
45853                                                      inhalant
45862                                           tablet/pill/capsule
45863                                           tablet/pill/capsule
45864                                           tablet/pill/capsule
45869                                               based on weight
45872                                         1 tablet/pill/capsule
45876                                                          <NA>
45898                                           tablet/pill/capsule
45899                                                          tube
45901                                  based on weight (50-100 lbs)
45908                                           tablet/pill/capsule
45909                                                          tube
45914                                  based on weight (50-100 lbs)
45924                                                          <NA>
45968                                                          <NA>
45969                                               based on weight
45970                                               based on weight
45971                                                          <NA>
45990                                               based on weight
45994                                                          <NA>
45995                                                  pack/package
45996                                                          <NA>
45997                                               based on weight
46014                                                    inch strip
46018                                               based on weight
46019                                               based on weight
46021                                           tablet/pill/capsule
46022                                           tablet/pill/capsule
46025                                           tablet/pill/capsule
46043                                           tablet/pill/capsule
46044                                           tablet/pill/capsule
46075                                                          <NA>
46076                                           tablet/pill/capsule
46078                                  based on weight (50-100 lbs)
46085                                                          <NA>
46091                                               based on weight
46092                                               based on weight
46094                                                          <NA>
46095                                                          <NA>
46100                                  based on weight (50-100 lbs)
46107                                           tablet/pill/capsule
46108                                                     injection
46110                                               based on weight
46116                                  based on weight (50-100 lbs)
46119                                               based on weight
46122                                               based on weight
46131                                                          <NA>
46132                                                          <NA>
46134                                                  pack/package
46170                                                  small amount
46171                                                  small amount
46173                                               based on weight
46174                                               based on weight
46186                                                          <NA>
46198                                               based on weight
46200                                           tablet/pill/capsule
46201                                           tablet/pill/capsule
46202                                                          <NA>
46213                                                        1 tube
46218                                           tablet/pill/capsule
46219                                           tablet/pill/capsule
46227                                               based on weight
46255                                                  small amount
46265                                                          <NA>
46277                                         1 tablet/pill/capsule
46278                                         1 tablet/pill/capsule
46287                                         1 tablet/pill/capsule
46288                                         1 tablet/pill/capsule
46291                                         1 tablet/pill/capsule
46292                                         1 tablet/pill/capsule
46293                                         1 tablet/pill/capsule
46295                                         1 tablet/pill/capsule
46296                                         1 tablet/pill/capsule
46303                                                          <NA>
46305                                                          <NA>
46308                                                          <NA>
46311                                                          <NA>
46312                                           tablet/pill/capsule
46313                                                          <NA>
46314                                                          <NA>
46319                                                  small amount
46320                                                          <NA>
46324                                                          <NA>
46325                                                          <NA>
46345                                                          <NA>
46350                                                          <NA>
46355                                                          <NA>
46358                                                          <NA>
46360                                                          pump
46377                                                          pump
46379                                                          <NA>
46399                                           tablet/pill/capsule
46406                                                          3 ml
46410                                                          <NA>
46411                                                          <NA>
46413                                                        collar
46418                                                        collar
46424                                                        collar
46431                                                        collar
46435                                                          <NA>
46436                                                   application
46474                                               based on weight
46475                                               based on weight
46476                                               based on weight
46478                                               based on weight
46479                                               based on weight
46482                                  based on weight (50-100 lbs)
46483                                   based on weight (56-95 lbs)
46486                                               based on weight
46487                                           tablet/pill/capsule
46488                                           tablet/pill/capsule
46489                                           tablet/pill/capsule
46490                                                          <NA>
46493                                               based on weight
46494                                           tablet/pill/capsule
46499                                                          <NA>
46504                                                          <NA>
46505                                                          <NA>
46506                                                          <NA>
46512                                                          <NA>
46517                                                          <NA>
46521                                                          <NA>
46526                                                          <NA>
46528                                                          <NA>
46530                                                          <NA>
46532                                                          <NA>
46533                                                          <NA>
46544                                                          <NA>
46547                                                          <NA>
46551                                                          <NA>
46553                                                          <NA>
46555                                                         spray
46568                                                          <NA>
46569                                                          <NA>
46570                                                          <NA>
46571                                                          <NA>
46572                                                   combination
46573                                                          <NA>
46574                                                          <NA>
46575                                                          <NA>
46579                                                          <NA>
46588                                                          <NA>
46591                                                          <NA>
46593                                                          <NA>
46606                                                          <NA>
46607                                                          <NA>
46615                                               based on weight
46616                                               based on weight
46617                                           tablet/pill/capsule
46618                                                          <NA>
46676                                                  small amount
46680                                                          <NA>
46687                                                          <NA>
46690                                                         spray
46694                                                   application
46702                                                         spray
46703                                                      wipe/pad
46716                                                          <NA>
46717                                                          <NA>
46729                                                   combination
46730                                                   combination
46732                                                          <NA>
46737                                                          <NA>
46747                                                          <NA>
46753                                                  small amount
46763                                                          <NA>
46766                                                          <NA>
46767                                               based on weight
46775                                               based on weight
46776                                               based on weight
46777                                               based on weight
46783                                                  small amount
46786                                               based on weight
46788                                         1 tablet/pill/capsule
46789                                         1 tablet/pill/capsule
46811                                         1 tablet/pill/capsule
46812                                         1 tablet/pill/capsule
46816                                               based on weight
46827                                                          <NA>
46849                                                          <NA>
46853                                                          <NA>
46874                                                    inch strip
46880                                                      ointment
46883                                                          <NA>
46884                                         1 tablet/pill/capsule
46885                                         1 tablet/pill/capsule
46889                                                          <NA>
46891                                                160 mg, 800 mg
46902                                                          <NA>
46903                                                   application
46904                                           tablet/pill/capsule
46905                                                          <NA>
46908                                                         spray
46915                                                      ointment
46931                                                  pack/package
46938                                                  pack/package
46944                                                  pack/package
46961                                                      ointment
46962                                                          <NA>
46972                                         1 tablet/pill/capsule
46973                                         1 tablet/pill/capsule
46977                                                             %
46981                                                          <NA>
46982                                                  small amount
46983                                                          <NA>
46984                                                          dose
46985                                                          dose
46986                                               based on weight
47000                                                          <NA>
47004                                  based on weight (50-100 lbs)
47010                                               based on weight
47011                                               based on weight
47018                                               based on weight
47024                                               based on weight
47025                                               based on weight
47041                                                          <NA>
47043                                               based on weight
47049                                                          <NA>
47060                                                          <NA>
47076                                                          <NA>
47080                                                          <NA>
47081                                                          <NA>
47085                                               based on weight
47086                                               based on weight
47090                                                          <NA>
47095                                               based on weight
47096                                               based on weight
47097                                               based on weight
47098                                                   unspecified
47104                                                  small amount
47105                                                  small amount
47106                                                          tube
47125                                                          <NA>
47126                                                          <NA>
47128                                                          <NA>
47137                                                          <NA>
47140                                                          <NA>
47143                                               based on weight
47146                                                          <NA>
47152                                                          <NA>
47154                                               based on weight
47155                                         1 tablet/pill/capsule
47156                                         1 tablet/pill/capsule
47162                                                   application
47164                                                         units
47178                                               based on weight
47180                                                          <NA>
47183                                           tablet/pill/capsule
47184                                           tablet/pill/capsule
47193                                               based on weight
47194                                               based on weight
47196                                               based on weight
47197                                           tablet/pill/capsule
47204                                                          <NA>
47208                                           tablet/pill/capsule
47209                                         1 tablet/pill/capsule
47210                                         1 tablet/pill/capsule
47220                                                        collar
47221                                                          <NA>
47222                                                         spray
47240                                                          <NA>
47248                                                   unspecified
47251                                                   unspecified
47253                                               based on weight
47260                                               based on weight
47302                                                          <NA>
47323                                                          <NA>
47325                                                          <NA>
47334                                               based on weight
47343                                                          <NA>
47345                                                          <NA>
47350                                                          puff
47355                                                  small amount
47360                                                          <NA>
47390                                                   combination
47407                                                          <NA>
47409                                                          <NA>
47411                                               based on weight
47412                                         1 tablet/pill/capsule
47415                                         1 tablet/pill/capsule
47416                                               based on weight
47417                                               based on weight
47420                                               based on weight
47421                                               based on weight
47433                                                          <NA>
47439                                                          <NA>
47451                                                          <NA>
47478                                               based on weight
47479                                           tablet/pill/capsule
47483                                                  small amount
47484                                                        collar
47486                                               based on weight
47493                                               based on weight
47496                                           tablet/pill/capsule
47497                                         1 tablet/pill/capsule
47498                                                        collar
47539                                                          <NA>
47540                                               moderate amount
47544                                                          <NA>
47547                                                          <NA>
47557                                                        collar
47562                                               based on weight
47563                                               based on weight
47576                                                   bottle/vial
47577                                           tablet/pill/capsule
47578                                           tablet/pill/capsule
47586                                           tablet/pill/capsule
47587                                                   bottle/vial
47588                                                   combination
47589                                                          <NA>
47590                                                          <NA>
47592                                                          <NA>
47593                                                          <NA>
47594                                                          <NA>
47595                                                          <NA>
47597                                                          <NA>
47600                                                          <NA>
47628                                                          tube
47629                                                          <NA>
47630                                                          <NA>
47635                                                          <NA>
47636                                                          <NA>
47658                                                          <NA>
47681                                           tablet/pill/capsule
47684                                                         spray
47693                                                      wipe/pad
47694                                                        powder
47696                                           tablet/pill/capsule
47698                                                      wipe/pad
47699                                                        powder
47702                                                          <NA>
47706                                                          <NA>
47715                                                          <NA>
47716                                                          <NA>
47720                                                  small amount
47721                                                          <NA>
47733                                               based on weight
47734                                                          <NA>
47739                                                          <NA>
47743                                                          <NA>
47744                                           tablet/pill/capsule
47745                                                          <NA>
47746                                                          <NA>
47752                                                        1 tube
47755                                                        1 tube
47760                                         1 tablet/pill/capsule
47800                                           tablet/pill/capsule
47801                                                   application
47802                                           tablet/pill/capsule
47803                                                  small amount
47808                                               based on weight
47810                                               based on weight
47811                                               based on weight
47812                                               based on weight
47815                                               based on weight
47816                                               based on weight
47817                                                   unspecified
47825                                                          <NA>
47835                                         1 tablet/pill/capsule
47836                                               based on weight
47840                                         23 mg, 228 mg, 460 mg
47860                                                          <NA>
47861                                                          <NA>
47877                                                          <NA>
47887                                               based on weight
47888                                               based on weight
47889                                                          <NA>
47890                                                          <NA>
47891                                                          <NA>
47894                                                          <NA>
47900                                                  small amount
47910                                                          <NA>
47951                                                          <NA>
47952                                                          <NA>
47953                                                         spray
47971                                               based on weight
47975                                           tablet/pill/capsule
47976                                         1 tablet/pill/capsule
47981                                               based on weight
47983                                                          <NA>
47984                                               based on weight
47985                                               based on weight
47989                                               based on weight
47990                                               based on weight
47995                                                  small amount
47998                                                          <NA>
48001                                                          <NA>
48007                                                          <NA>
48013                                               based on weight
48014                                               based on weight
48016                                                          <NA>
48020                                         1 tablet/pill/capsule
48021                                         1 tablet/pill/capsule
48028                                         1 tablet/pill/capsule
48029                                         1 tablet/pill/capsule
48031                                      2 tablets/pills/capsules
48034                                                      0.25 tsp
48035                                             0.25 pack/package
48040                                           tablet/pill/capsule
48041                                                          <NA>
48046                                         1 tablet/pill/capsule
48047                                         1 tablet/pill/capsule
48049                                           tablet/pill/capsule
48069                                                   unspecified
48072                                                  small amount
48087                                           tablet/pill/capsule
48088                                           tablet/pill/capsule
48089                                                          <NA>
48090                                                          <NA>
48094                                                          <NA>
48100                                                    inch strip
48101                                                          <NA>
48102                                           tablet/pill/capsule
48103                                                          <NA>
48105                                           tablet/pill/capsule
48106                                                  small amount
48107                                                  small amount
48108                                                  small amount
48109                                           tablet/pill/capsule
48110                                                        collar
48114                                                  small amount
48120                                           tablet/pill/capsule
48121                                                          <NA>
48127                                           tablet/pill/capsule
48131                                                          <NA>
48142                                           tablet/pill/capsule
48143                                                          <NA>
48147                                           tablet/pill/capsule
48148                                           tablet/pill/capsule
48155                                                          <NA>
48157                                           tablet/pill/capsule
48158                                           tablet/pill/capsule
48159                                         1 tablet/pill/capsule
48160                                         1 tablet/pill/capsule
48163                                                          <NA>
48167                                           tablet/pill/capsule
48169                                                          <NA>
48182                                                   combination
48185                                                          <NA>
48188                                                  small amount
48201                                                          <NA>
48213                                                        liquid
48214                                           tablet/pill/capsule
48215                                           tablet/pill/capsule
48217                                                          <NA>
48220                                                   unspecified
48221                                                   unspecified
48222                                                   unspecified
48231                                                          <NA>
48237                                                    inch strip
48238                                                          <NA>
48240                                                          <NA>
48248                                                          <NA>
48251                                               based on weight
48252                                               based on weight
48258                                         1 tablet/pill/capsule
48265                                                          <NA>
48266                                                          <NA>
48267                                                          <NA>
48271                                                          <NA>
48274                                                          <NA>
48277                                                          <NA>
48285                                                          <NA>
48287                                                          <NA>
48288                                                          <NA>
48289                                                          <NA>
48291                                                          <NA>
48292                                                          <NA>
48294                                                      ointment
48297                                           tablet/pill/capsule
48298                                           tablet/pill/capsule
48299                                                      ointment
48300                                           tablet/pill/capsule
48306                                               based on weight
48307                                                          <NA>
48310                                               based on weight
48314                                                          <NA>
48327                                                          <NA>
48334                                                          <NA>
48336                                                          <NA>
48337                                                          <NA>
48338                                                          <NA>
48339                                                          <NA>
48342                                                          <NA>
48343                                                         spray
48344                                                          <NA>
48345                                                   application
48350                                                          <NA>
48351                                                          <NA>
48352                                                          <NA>
48353                                                          <NA>
48354                                                          <NA>
48355                                                             %
48376                                                          <NA>
48383                                           tablet/pill/capsule
48384                                           tablet/pill/capsule
48394                                                          <NA>
48406                                           tablet/pill/capsule
48420                                                          <NA>
48438                                                          <NA>
48439                                           tablet/pill/capsule
48441                                           tablet/pill/capsule
48442                                           tablet/pill/capsule
48444                                         1 tablet/pill/capsule
48447                                               based on weight
48448                                               based on weight
48481                                                          <NA>
48483                                                          <NA>
48496                                                          <NA>
48497                                                          <NA>
48498                                                          <NA>
48500                                                          <NA>
48502                                                          <NA>
48504                                                          <NA>
48505                                                          <NA>
48513                                           tablet/pill/capsule
48540                                                          <NA>
48541                                           tablet/pill/capsule
48542                                           tablet/pill/capsule
48598                                           tablet/pill/capsule
48602                                                          <NA>
48610                                                          <NA>
48611                                                          <NA>
48615                                                          <NA>
48621                                                  small amount
48624                                                         spray
48633                                                          <NA>
48636                                                            2%
48661                                           tablet/pill/capsule
48664                                         1 tablet/pill/capsule
48667                                         1 tablet/pill/capsule
48668                                                 1 application
48673                                                          <NA>
48680                                           tablet/pill/capsule
48683                                               based on weight
48684                                               based on weight
48692                                                          <NA>
48693                                                          <NA>
48694                                                          <NA>
48696                                               based on weight
48697                                               based on weight
48698                                               based on weight
48712                                         1 tablet/pill/capsule
48713                                         1 tablet/pill/capsule
48718                                                          <NA>
48719                                                          <NA>
48721                                               based on weight
48722                                                        collar
48724                                           tablet/pill/capsule
48725                                                        collar
48729                                           tablet/pill/capsule
48733                                           tablet/pill/capsule
48734                                         1 tablet/pill/capsule
48735                                         1 tablet/pill/capsule
48736                                                        collar
48770                                                          <NA>
48782                                                          <NA>
48802                                                          <NA>
48806                                                          <NA>
48808                                                          <NA>
48812                                                          <NA>
48819                                                          <NA>
48821                                                          <NA>
48845                                               based on weight
48855                                                          <NA>
48859                                                          <NA>
48862                                                          <NA>
48889                                                  pack/package
48890                                           tablet/pill/capsule
48891                                           tablet/pill/capsule
48892                                                      ointment
48894                                                          <NA>
48902                                                  small amount
48906                                                  small amount
48918                                  based on weight (50-100 lbs)
48935                                  based on weight (50-100 lbs)
48946                                                          <NA>
48994                                                          <NA>
48997                                                          <NA>
49002                                                          <NA>
49005                                                          <NA>
49012                                                   application
49016                                                          <NA>
49017                                                          <NA>
49018                                                          <NA>
49025                                                          <NA>
49026                                                          <NA>
49033                                           tablet/pill/capsule
49034                                           tablet/pill/capsule
49035                                           tablet/pill/capsule
49036                                                   unspecified
49042                                                   unspecified
49044                                                   unspecified
49046                                                   unspecified
49051                                                          <NA>
49052                                                          <NA>
49082                                               based on weight
49084                                               based on weight
49096                                               based on weight
49105                                                          <NA>
49113                                                  small amount
49117                                                          <NA>
49120                                                          <NA>
49123                                           tablet/pill/capsule
49127                                                          <NA>
49128                                  based on weight (50-100 lbs)
49129                                  based on weight (60-120 lbs)
49130                                                  small amount
49163                                                          <NA>
49164                                               based on weight
49167                                                          <NA>
49168                                                          <NA>
49169                                                          <NA>
49170                                                          <NA>
49184                                                   application
49193                                                          <NA>
49196                                                          <NA>
49208                                           tablet/pill/capsule
49209                                           tablet/pill/capsule
49216                                           tablet/pill/capsule
49217                                           tablet/pill/capsule
49218                      27 mg milbemycin oxime, 1620 mg spinosad
49219                                                          <NA>
49220                                                          <NA>
49227                                                  small amount
49229                                                  small amount
49231                                                  small amount
49232                                                0.5 inch strip
49248                                                          <NA>
49252                                         1 tablet/pill/capsule
49253                                         1 tablet/pill/capsule
49316                                           tablet/pill/capsule
49323                                                        1 tube
49324                                         1 tablet/pill/capsule
49343                                           tablet/pill/capsule
49346                                               based on weight
49348                                               based on weight
49350                                           tablet/pill/capsule
49351                                           tablet/pill/capsule
49352                                               based on weight
49376                                           tablet/pill/capsule
49377                                                          tube
49378                                           tablet/pill/capsule
49379                                                        1 tube
49388                      460 mg lufenuron, 23 mg milbemycin oxime
49393                                                          <NA>
49394                                                          <NA>
49395                                                          <NA>
49398                                                          <NA>
49403                                                          <NA>
49404                                                          <NA>
49408                                           tablet/pill/capsule
49409                                           tablet/pill/capsule
49437                                           tablet/pill/capsule
49438                                           tablet/pill/capsule
49442                                           tablet/pill/capsule
49460                                               based on weight
49461                                               based on weight
49462                                                          <NA>
49463                                               based on weight
49473                                               based on weight
49509                                                   bottle/vial
49510                                           tablet/pill/capsule
49518                                                          <NA>
49520                                                          <NA>
49523                                                          <NA>
49526                                                  small amount
49531                                                          <NA>
49549                                               based on weight
49550                                               based on weight
49553                                                          <NA>
49554                                                          <NA>
49567                                               based on weight
49568                                                      inhalant
49572                                               based on weight
49588                                                          <NA>
49590                                               based on weight
49591                                               based on weight
49593                                               based on weight
49596                                                          tube
49601                                                          <NA>
49607                                                          <NA>
49645                                               based on weight
49649                                               0.25 inch strip
49654                                               0.25 inch strip
49659                                                    inch strip
49698                                                          <NA>
49699                                                        1 tube
49705                                                          <NA>
49748                                   based on weight (21-55 lbs)
49753                                                          <NA>
49754                                                          <NA>
49755                                                          <NA>
49756                                                          <NA>
49757                                                          <NA>
49758                                                          <NA>
49766                                                          <NA>
49767                                                   application
49768                                           tablet/pill/capsule
49769                                                  small amount
49773                                                      ointment
49792                                               based on weight
49793                                               based on weight
49799                                                          <NA>
49812                                                          <NA>
49849                                                   application
49854                                                  pack/package
49855                                               based on weight
49857                                                          <NA>
49861                                               based on weight
49862                                               based on weight
49871                                                      222 mg/g
49878                                               based on weight
49883                                                  pack/package
49886                                               based on weight
49889                                           tablet/pill/capsule
49890                                                   application
49898                                                      222 mg/g
49905                                               based on weight
49906                                               based on weight
49907                                               based on weight
49908                                               based on weight
49911                                           tablet/pill/capsule
49912                                                   application
49963                                                          <NA>
49966                                                          <NA>
49978                                               based on weight
49985                                         1 tablet/pill/capsule
49986                                                 1 bottle/vial
49987                                         1 tablet/pill/capsule
49990                                                1 pack/package
49991                                               based on weight
49992                                                         drops
49993                                         1 tablet/pill/capsule
49996                                                   unspecified
50001                                  based on weight (50-100 lbs)
50004                                               based on weight
50006                                               based on weight
50007                                                       2 pumps
50008                                               based on weight
50009                                               based on weight
50011                                                          <NA>
50012                                                          <NA>
50014                                                          <NA>
50048                                                          <NA>
50050                                                          <NA>
50077                                                          <NA>
50107                                               based on weight
50108                                               based on weight
50115                                           tablet/pill/capsule
50116                                           tablet/pill/capsule
50117                                               based on weight
50118                                                          <NA>
50154                                                          <NA>
50159                                                          <NA>
50161                                                          <NA>
50187                                               based on weight
50189                                               based on weight
50190                                               based on weight
50194                                               based on weight
50195                                               based on weight
50196                                               based on weight
50198                                         1 tablet/pill/capsule
50199                                                          dose
                                                                                              dose_original
22                                                                                              unspecified
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
46                                                                              based on weight (40-60 lbs)
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
51                                                                              based on weight (21-40 lbs)
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
67                                                                                              application
70                                                                                              application
74                                                                                              bottle/vial
84                                                                                              application
87                                                                                              application
91                                                                                              application
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
155                                                                                             unspecified
167                                                                                             unspecified
188                                                                             based on weight (44-88 lbs)
192                                                                             based on weight (44-88 lbs)
220                                                                             based on weight (44-88 lbs)
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
233                                                                                               4-6 drops
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
242                                                                                           1 tube - 1 ml
257                                                                             based on weight (40-60 lbs)
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
279                                                                                            small amount
280                                                                                                   spray
310                                                                                             unspecified
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
324                                                                                             as directed
328                                                                                         based on weight
329                                                                                         based on weight
332                                                                                         based on weight
333                                                                                         based on weight
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
350                                                                                                 23, 460
351                                                                                                 23, 460
353                                                                                                 23, 460
355                                                                                                 23, 460
366                                                                                             unspecified
368                                                                            based on weight (60-121 lbs)
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
386                                                                            based on weight (51-100 lbs)
403                                                                                             unspecified
404                                                                                             unspecified
414                                                                                           23 mg, 460 mg
447                                                                                             unspecified
449                                                                                             unspecified
453                                                                                             unspecified
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
498                                                                            based on weight (51-100 lbs)
519                                                                                                inhalant
537                                                                                                   drops
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
610                                                                                            small amount
619                                                                                             unspecified
637                                                                                         based on weight
642                                                                                            small amount
686                                                                                             unspecified
688                                                                                             unspecified
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
709                                                                                             unspecified
710                                                                                             unspecified
712                                                                                             unspecified
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
734                                                                                         0.25 inch strip
738                                                                                             unspecified
739                                                                                             unspecified
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
757                                                                            based on weight (51-100 lbs)
778                                                                                             unspecified
785                                                                            based on weight (60-120 lbs)
790                                                                            based on weight (60-120 lbs)
792                                                                            based on weight (51-100 lbs)
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
810                                                                             based on weight (40-85 lbs)
816                                                                                             unspecified
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
832                                                                                             unspecified
851                                                                  based on weight (50-100 lbs) - 272 mcg
862                                                                                         based on weight
871                                                                                               13.5, 810
874                                                                                                27, 1620
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
884                                                                                               13.5, 810
887                                                                                                27, 1620
891                                                                                                27, 1620
893                                                                                                27, 1620
899                                                                                                27, 1620
901                                                                                             unspecified
905                                                                                             unspecified
913                                                                               based on weight (55+ lbs)
921                                                                            based on weight (51-100 lbs)
955                                                                                                  collar
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
969                                                                                             unspecified
977                                                                                             application
982                                                                                             unspecified
983                                                                                             unspecified
989                                                                                         based on weight
1001                                                                                            unspecified
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1020                                                                                           small amount
1021                                                                                               wipe/pad
1027                                                                                            unspecified
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1033                                                                                        syringe/pipette
1036                                                                                           small amount
1039                                                                                          1 bottle/vial
1042                                                                                            unspecified
1050                                                                                        based on weight
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1087                                                                           based on weight (60-120 lbs)
1091                                                                                           small amount
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1108                                                                                             1 wipe/pad
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1129                                                                           based on weight (21-100 lbs)
1150                                                                                           small amount
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1179                                                                                            unspecified
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1189                                                                                            unspecified
1190                                                                                            unspecified
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1208                                                                              based on weight (55+ lbs)
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1226                                                                              based on weight (55+ lbs)
1233                                                                                            unspecified
1247                                                                           based on weight (51-100 lbs)
1285                                                                                            unspecified
1336                                                                                            unspecified
1344                                                                         based on weight (50.1-100 lbs)
1346                                                                                        moderate amount
1355                                                                           based on weight (89-132 lbs)
1371                                                                           based on weight (51-100 lbs)
1398                                                                                              1-2 drops
1404                                                                                            unspecified
1405                                                                                            unspecified
1415                                                                                            unspecified
1420                                                                                676 mg dha, 1030 mg epa
1422                                                                           based on weight (51-100 lbs)
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1438                                                                           based on weight (51-100 lbs)
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1459                                                                             based on weight (2-55 lbs)
1462                                                                            based on weight (56-95 lbs)
1464                                                                           based on weight (51-100 lbs)
1473                                                                                            unspecified
1475                                                                                            unspecified
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1514                                                                          based on weight (24.1-60 lbs)
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1532                                                                              based on weight (55+ lbs)
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1541                                                                                            unspecified
1542                                                                                            unspecified
1556                                                                                               inhalant
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1586                                                                                           small amount
1587                                                                                            unspecified
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1650                                                                                            unspecified
1663                                                                           based on weight (60-120 lbs)
1668                                                                                            unspecified
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1689                                                                                        moderate amount
1692                                                                                        moderate amount
1697                                                                                        based on weight
1708                                                                                                23, 460
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1712                                                                           based on weight (50-100 lbs)
1715                                                                           based on weight (51-100 lbs)
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1720                                                                           based on weight (51-100 lbs)
1743                                                                                        based on weight
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1769                                                                                            application
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1789                                                                                            unspecified
1791                                                                                            unspecified
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1798                                                                               based on weight (75 lbs)
1805                                                                                           small amount
1809                                                                                            unspecified
1819                                                                                            unspecified
1820                                                                                            unspecified
1823                                                                                            unspecified
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1867                                                                           based on weight (51-100 lbs)
1872                                                                           based on weight (51-100 lbs)
1877                                                                                            unspecified
1887                                                                                                  spray
1888                                                                                             continuous
1917                                                                           based on weight (51-100 lbs)
1922                                                                                                  spray
1925                                                                                            unspecified
1926                                                                                           small amount
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1931                                                                                           small amount
1939                                                                                            unspecified
1941                                                                                            application
1945                                                                                                  spray
1948                                                                                        based on weight
1962                                                                           based on weight (51-100 lbs)
1965                                                                                           small amount
1980                                                                                            application
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1994                                                                                            unspecified
1998                                                                                           small amount
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2012                                                                                            unspecified
2013                                                                                            unspecified
2016                                                                           based on weight (51-100 lbs)
2022                                                                                            application
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2050                                                                           based on weight (51-100 lbs)
2075                                                                           based on weight (51-100 lbs)
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2091                                                                           based on weight (51-100 lbs)
2093                                                                              based on weight (80+ lbs)
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2113                                                                                               tapering
2115                                                                                            unspecified
2116                                                                                            unspecified
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2149                                                                           based on weight (51-100 lbs)
2151                                                                           based on weight (51-100 lbs)
2161                                                                           based on weight (51-100 lbs)
2165                                                                                           small amount
2166                                                                                            as directed
2195                                                                                            unspecified
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2211                                                                                            unspecified
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2224                                                                                            unspecified
2226                                                                                            unspecified
2229                                                                                            unspecified
2233                                                                           based on weight (50-100 lbs)
2241                                                                                            application
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2250                                                                                            unspecified
2255                                                                            based on weight (21-55 lbs)
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2269                                                                                            unspecified
2270                                                                                            unspecified
2272                                                                                            unspecified
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2283                                                                           based on weight (51-100 lbs)
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2390                                                                                                  spray
2398                                                                                                  spray
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2409                                                                           based on weight (51-100 lbs)
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2467                                                                                    tablet/pill/capsule
2473                                                                                           small amount
2474                                                                                           small amount
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2486                                                                                            as directed
2487                                                                                            as directed
2491                                                                                            application
2492                                                                                            application
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2508                                                                                    tablet/pill/capsule
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2534                                                                                            unspecified
2539                                                                           based on weight (51-100 lbs)
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2562                                                                           based on weight (50-100 lbs)
2566                                                                                    tablet/pill/capsule
2575                                                                                            unspecified
2578                                                                                                  spray
2580                                                                                            application
2583                                                                                            unspecified
2599                                                                                            unspecified
2600                                                                                            unspecified
2642                                                                                            unspecified
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2655                                                                                            unspecified
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2710                                                                           based on weight (51-100 lbs)
2721                                                                                            application
2726                                                                           based on weight (50-100 lbs)
2731                                                                                              13.5, 810
2735                                                                                              13.5, 810
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2753                                                                           based on weight (50-100 lbs)
2756                                                                               based on weight (80 lbs)
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2815                                                                                               300, 600
2818                                                                                        0.25 inch strip
2825                                                                           based on weight (51-100 lbs)
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2833                                                                           based on weight (51-100 lbs)
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2842                                                                                           small amount
2844                                                                                        0.25 inch strip
2846                                                                           based on weight (50-100 lbs)
2855                                                                                            unspecified
2897                                                                                  lather and then rinse
2900                                                                                            application
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2907                                                                                         1 pack/package
2913                                                                                         1 pack/package
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2925                                                                                            unspecified
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2946                                                                                          1 bottle/vial
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2978                                                                         based on weight (50.1-100 lbs)
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2988                                                                                        based on weight
2993                                                                                            unspecified
2997                                                                             1.5 tablets/pills/capsules
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3007                                                                            based on weight (45-88 lbs)
3028                                                                            based on weight (45-88 lbs)
3031                                                                                            unspecified
3055                                                                                            application
3058                                                                                            application
3060                                                                                            unspecified
3095                                                                               2 tablets/pills/capsules
3110                                                                                           small amount
3119                                                                                            as directed
3147                                                                                            unspecified
3180                                                                                            unspecified
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3253                                                                           based on weight (50-100 lbs)
3257                                                                           based on weight (50-100 lbs)
3271                                                                           based on weight (51-100 lbs)
3278                                                                                        0.25 inch strip
3280                                                                           based on weight (50-100 lbs)
3284                                                                           based on weight (51-100 lbs)
3287                                                                                            application
3291                                                                                            application
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3300                                                                           based on weight (51-100 lbs)
3305                                                                                           small amount
3312                                                                                           small amount
3313                                                                                           small amount
3339                                                                           based on weight (51-100 lbs)
3342                                                                                            unspecified
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3350                                                                                            unspecified
3360                                                                                        based on weight
3366                                                                                            unspecified
3372                                                                                            unspecified
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3394                                                                                            unspecified
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3403                                                                                              13.5, 810
3421                                                                                            unspecified
3422                                                                                                  drops
3425                                                                                            unspecified
3426                                                                                            unspecified
3429                                                                             based on weight (4-60 lbs)
3437                                                                                           small amount
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3451                                                                                                23, 460
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3488                                                                              based on weight (25+ lbs)
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3522                                                                           based on weight (51-100 lbs)
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3535                                                                                            unspecified
3581                                                                                    tablet/pill/capsule
3619                                                                                                23, 228
3622                                                                                           pack/package
3635                                                                            based on weight (44-88 lbs)
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3652                                                                                    tablet/pill/capsule
3666                                                                                                  spray
3667                                                                                           small amount
3675                                                                                           small amount
3684                                                                                            unspecified
3685                                                                                            unspecified
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3701                                                                           based on weight (51-100 lbs)
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3710                                                                                            unspecified
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3735                                                                                                   gtts
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3750                                                                                          23 mg, 460 mg
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3773                                                                                            application
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3789                                                                                            unspecified
3797                                                                                                  spray
3798                                                                                            as directed
3800                                                                                            application
3815                                                                                        based on weight
3829                                                                                           small amount
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3838                                                                           based on weight (60-120 lbs)
3840                                                                                           small amount
3848                                                                                        0.25 inch strip
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3867                                                                                           small amount
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3874                                                                                           small amount
3881                                                                           based on weight (51-100 lbs)
3886                                                                           based on weight (51-100 lbs)
3889                                                                           based on weight (51-100 lbs)
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3900                                                                           based on weight (51-100 lbs)
3903                                                                           based on weight (51-100 lbs)
3906                                                                           based on weight (51-100 lbs)
3911                                                                           based on weight (51-100 lbs)
3938                                                                           based on weight (51-100 lbs)
3943                                                                           based on weight (51-100 lbs)
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3952                                                                           based on weight (51-100 lbs)
3972                                                                          based on weight (40.1-60 lbs)
3980                                                                           based on weight (51-100 lbs)
3984                                                                           based on weight (51-100 lbs)
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
4000                                                                                            unspecified
4017                                                                           based on weight (51-100 lbs)
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4042                                                                                            unspecified
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4074                                                                                        based on weight
4075                                                                                        based on weight
4077                                                                                        based on weight
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4092                                                                                      1 syringe/pipette
4097                                                                          1 tablet/pill/capsule - 80 mg
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4125                                                                                               27, 1620
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4162                                                                           based on weight (50-100 lbs)
4172                                                                            based on weight (45-88 lbs)
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4191                                                                           based on weight (60-120 lbs)
4193                                                                                            application
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4210                                                                           based on weight (60-120 lbs)
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4215                                                                                                23, 460
4216                                                                                            unspecified
4218                                                                                            unspecified
4245                                                                                              4-5 drops
4247                                                                                            unspecified
4266                                                                                            as directed
4274                                                                                            unspecified
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4302                                                                           based on weight (51-100 lbs)
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4311                                                                                            unspecified
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4336                                                                                            unspecified
4338                                                                         based on weight (50.1-100 lbs)
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4368                                                                                        based on weight
4371                                                                                        based on weight
4384                                                                                               350, 900
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4405                                                                                              13.5, 810
4409                                                                                         1 pack/package
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4430                                                                                                  spray
4431                                                                                                  spray
4444                                                                              based on weight (<88 lbs)
4446                                                                                         1 pack/package
4454                                                                                               inhalant
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4483                                                                                        based on weight
4486                                                                               3 tablets/pills/capsules
4497                                                                           based on weight (51-100 lbs)
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4511                                                                               3 tablets/pills/capsules
4517                                                                                         1 pack/package
4524                                                                           based on weight (50-100 lbs)
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4536                                                                           based on weight (50-100 lbs)
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4547                                                                                           small amount
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4587                                                                           based on weight (51-100 lbs)
4597                                                                                            unspecified
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4611                                                                                               27, 1620
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4631                                                                                        2.68 ml of 9.8%
4634                                                                                            unspecified
4638                                                                                        2.68 ml of 9.8%
4640                                                                                                  15 au
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4651                                                                                           small amount
4652                                                                                        moderate amount
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4695                                                                           based on weight (50-110 lbs)
4717                                                                           based on weight (60-120 lbs)
4719                                                                                                  drops
4720                                                                                                  drops
4726                                                                           based on weight (51-100 lbs)
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4748                                                                                                 1 unit
4757                                                                                        based on weight
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4766                                                                              based on weight (55+ lbs)
4777                                                                                            unspecified
4780                                                                                            unspecified
4782                                                                                            unspecified
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4813                                                                                            unspecified
4824                                                                            based on weight (20-55 lbs)
4826                                                                                            unspecified
4828                                                                                            unspecified
4832                                                                                                 0.1, 1
4853                                                                                           small amount
4855                                                                                               27, 1620
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4881                                                                                           small amount
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4910                                                                                                 collar
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4917                                                                                        23 mcg, 228 mcg
4935                                                                           based on weight (51-100 lbs)
4956                                                                                            unspecified
4960                                                                                           small amount
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4980                                                                                           pack/package
4981                                                                                                23, 228
4996                                                                                            unspecified
4998                                                                                            unspecified
5043                                                                                                  spray
5046                                                                                                  spray
5078                                                                            based on weight (40-60 lbs)
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5127                                                                                              injection
5134                                                                                        based on weight
5140                                                                                            750, 187, 5
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5191                                                                                               27, 1620
5193                                                                                            application
5195                                                                              based on weight (18+ lbs)
5203                                                                           based on weight (50-100 lbs)
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5225                                                                           based on weight (51-100 lbs)
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5253                                                                           based on weight (51-100 lbs)
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5289                                                                           based on weight (50-100 lbs)
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5340                                                                           based on weight (51-100 lbs)
5354                                                                                                 collar
5357                                                                                                  drops
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5362                                                                               3 tablets/pills/capsules
5369                                                                           based on weight (50-100 lbs)
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5403                                                                              based on weight (100 lbs)
5424                                                                                           small amount
5428                                                                                                  spray
5440                                                                                            unspecified
5460                                                                                           small amount
5464                                                                                               27, 1620
5484                                                                     2 tablets/pills/capsules - 1200 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5511                                                                           based on weight (51-100 lbs)
5513                                                                           based on weight (51-100 lbs)
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5537                                                                                           small amount
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5545                                                                                        based on weight
5546                                                                                        based on weight
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5557                                                                           based on weight (51-100 lbs)
5568                                                                           based on weight (51-100 lbs)
5571                                                                           based on weight (51-100 lbs)
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5595                                                                           based on weight (51-100 lbs)
5600                                                                           based on weight (51-100 lbs)
5602                                                                           based on weight (51-100 lbs)
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5649                                                                                          5 billion cfu
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5695                                                                                            unspecified
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5731                                                                                            unspecified
5747                                                                                        based on weight
5760                                                                                            unspecified
5762                                                                                        based on weight
5768                                                                           based on weight (51-100 lbs)
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5777                                                                                            unspecified
5804                                                                                                13, 228
5814                                                                                            unspecified
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5858                                                                                        0.25 inch strip
5869                                                                           based on weight (51-100 lbs)
5877                                                                                        based on weight
5884                                                                                            unspecified
5887                                                                                           small amount
5913                                                                                        based on weight
5917                                                                                              6-8 drops
5930                                                                           based on weight (51-100 lbs)
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5945                                                                                             1 wipe/pad
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5967                                                                                       460 mg lufenuron
5976                                                                                            as directed
5981                                                                                    tablet/pill/capsule
5988                                                                                        based on weight
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6036                                                                                               27, 1620
6038                                                                           based on weight (51-100 lbs)
6059                                                                           based on weight (51-100 lbs)
6063                                                                                           small amount
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6071                                                                                            unspecified
6072                                                                                        based on weight
6076                                                                                                 collar
6078                                                                                                 collar
6088                                                                                        0.25 inch strip
6090                                                                                        0.25 inch strip
6093                                                                                            unspecified
6095                                                                                             1-2 sprays
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6104                                                                                           23, 228, 460
6109                                                                                      90, 350, 800, 900
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6148                                                                         based on weight (60.1-120 lbs)
6161                                                                                                23, 460
6164                                                                                           small amount
6200                                                                           based on weight (88-132 lbs)
6202                                                                           based on weight (60-120 lbs)
6206                                                                                            application
6208                                                                                            application
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6221                                                                                                5-10 ml
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6244                                                                                            unspecified
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6266                                                                                            application
6267                                                                                           small amount
6275                                                                                            unspecified
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6293                                                                            based on weight (24-60 lbs)
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6307                                                                                              62.5, 437
6312                                                                                            unspecified
6319                                                                                            unspecified
6320                                                                                            unspecified
6326                                                                                            application
6328                                                                               2 tablets/pills/capsules
6331                                                                           based on weight (51-100 lbs)
6358                                                                                            unspecified
6390                                                                                            unspecified
6395                                                                            based on weight (45-88 lbs)
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6411                                                                                           small amount
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6441                                                                                             1200, 1500
6444                                                                           based on weight (51-100 lbs)
6451                                                                                            unspecified
6459                                                                                             1200, 1500
6461                                                                                            unspecified
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6495                                                                                                  drops
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6555                                                                           based on weight (51-100 lbs)
6562                                                                                        moderate amount
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6573                                                                            based on weight (45-88 lbs)
6579                                                                                        based on weight
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6594                                                                           based on weight (51-100 lbs)
6602                                                                           based on weight (51-100 lbs)
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6612                                                                         based on weight (50.1-100 lbs)
6625                                                                           based on weight (51-100 lbs)
6636                                                                           based on weight (50-100 lbs)
6644                                                                           based on weight (51-100 lbs)
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6650                                                                                            application
6658                                                                                        based on weight
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6680                                                                                            unspecified
6683                                                                                           small amount
6687                                                                                            unspecified
6688                                                                                            unspecified
6694                                                                               2 tablets/pills/capsules
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6702                                                                                            unspecified
6703                                                                                        based on weight
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6751                                                                                            unspecified
6759                                                                                            application
6760                                                                                            unspecified
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6781                                                                           based on weight (51-100 lbs)
6783                                                                         based on weight (50.1-100 lbs)
6786                                                                              based on weight (55+ lbs)
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6824                                                                                            unspecified
6826                                                                                            unspecified
6828                                                                           based on weight (51-100 lbs)
6868                                                                                            as directed
6880                                                                                            as directed
6886                                                                                            application
6891                                                                                            application
6892                                                                                           small amount
6910                                                                           based on weight (50-100 lbs)
6928                                                                                            application
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6946                                                                                               27, 1620
6956                                                                                            unspecified
6957                                                                                            unspecified
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6986                                                                                            unspecified
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7005                                                                                            unspecified
7006                                                                                            unspecified
7017                                                                            based on weight (44-88 lbs)
7021                                                                            based on weight (44-88 lbs)
7025                                                                                            unspecified
7027                                                                                        0.25 inch strip
7042                                                                                           small amount
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7071                                                                                            unspecified
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7116                                                                                            unspecified
7127                                                                                            unspecified
7130                                                                                               27, 1620
7131                                                                                               272, 228
7137                                                                                        based on weight
7149                                                                           based on weight (60-120 lbs)
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7172                                                                                                 powder
7173                                                                                               wipe/pad
7175                                                                                            application
7177                                                                                                  spray
7180                                                                                                  spray
7189                                                                                            unspecified
7208                                                                                        0.25 inch strip
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7262                                                                               5 tablets/pills/capsules
7291                                                                            based on weight (44-88 lbs)
7295                                                                            based on weight (44-88 lbs)
7297                                                                                            unspecified
7320                                                                           based on weight (51-100 lbs)
7342                                                                            based on weight (45-88 lbs)
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7371                                                                                           small amount
7413                                                                           based on weight (51-100 lbs)
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7503                                                                                        based on weight
7513                                                                                    tablet/pill/capsule
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7555                                                                           based on weight (88-123 lbs)
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7580                                                                                0.5 tablet/pill/capsule
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7598                                                                                             1 wipe/pad
7635                                                                                          10 mg, 100 mg
7660                                                                           based on weight (51-100 lbs)
7671                                                                                                40, 200
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7681                                                                            based on weight (40-60 lbs)
7692                                                                                          23 mg, 228 mg
7696                                                                                                23, 228
7699                                                                                                23, 228
7701                                                                                                23, 228
7705                                                                                           small amount
7732                                                                                        based on weight
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7754                                                                       based on weight (61+ lbs) - 5 ml
7759                                                                            based on weight (56-95 lbs)
7763                                                                           based on weight (51-100 lbs)
7772                                                                                            unspecified
7776                                                                                            unspecified
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7795                                                                            based on weight (60-90 lbs)
7812                                                                                            unspecified
7818                                                                                            unspecified
7820                                                                                            unspecified
7822                                                                                            unspecified
7832                                                                                        2.68 ml of 9.7%
7839                                                                                            application
7845                                                                                            unspecified
7846                                                                                            unspecified
7848                                                                                            unspecified
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7862                                                                             2-3 tablets/pills/capsules
7883                                                                                            unspecified
7884                                                                                            unspecified
7887                                                                                            unspecified
7889                                                                                            unspecified
7895                                                                                            unspecified
7926                                                                                           small amount
7929                                                                                           small amount
7944                                                                                           small amount
7946                                                                                           small amount
7961                                                                                        0.25 inch strip
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7973                                                                                            unspecified
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7993                                                                            based on weight (40-85 lbs)
7995                                                                                           500 mg, 5 ml
7998                                                                           based on weight (85-130 lbs)
8000                                                                           based on weight (85-130 lbs)
8009                                                                                           small amount
8012                                                                                           small amount
8014                                                                                           small amount
8017                                                                                           small amount
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8075                                                                                            unspecified
8086                                                                                           small amount
8091                                                                                               125, 375
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8123                                                                           based on weight (50-100 lbs)
8125                                                                                            unspecified
8128                                                                                           small amount
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8160                                                                               2 tablets/pills/capsules
8182                                                                                           small amount
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8215                                                                           based on weight (89-132 lbs)
8221                                                                           based on weight (51-100 lbs)
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8234                                                                                            application
8235                                                                                            application
8238                                                                                           small amount
8248                                                                            based on weight (44-88 lbs)
8251                                                                                               500, 750
8252                                                                                                  spray
8280                                                                                            unspecified
8284                                                                                            unspecified
8293                                                                                            unspecified
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8337                                                                                            unspecified
8338                                                                                            unspecified
8349                                                                                            unspecified
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8362                                                                                           small amount
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8408                                                                           based on weight (50-100 lbs)
8410                                                                           based on weight (51-100 lbs)
8418                                                                                            unspecified
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8427                                                                           based on weight (51-100 lbs)
8435                                                                                         1 pack/package
8436                                                                                           small amount
8440                                                                                              45-60 mcg
8454                                                                           based on weight (50-100 lbs)
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8475                                                                                                   bath
8478                                                                                                   bath
8509                                                                                    tablet/pill/capsule
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8528                                                                         based on weight (50.1-100 lbs)
8531                                                                         based on weight (50.1-100 lbs)
8541                                                                                                  spray
8550                                                                           based on weight (50-100 lbs)
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8578                                                                                           small amount
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8588                                                                                           small amount
8591                                                                           based on weight (60-120 lbs)
8607                                                                              based on weight (55+ lbs)
8609                                                                           based on weight (51-100 lbs)
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8694                                                                            based on weight (45-88 lbs)
8697                                                                                                 varies
8702                                                                            based on weight (45-88 lbs)
8707                                                                            based on weight (45-88 lbs)
8731                                                                                        based on weight
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8744                                                                                            unspecified
8745                                                                                            unspecified
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8786                                                                           based on weight (51-100 lbs)
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8797                                                                                            unspecified
8805                                                                           based on weight (51-100 lbs)
8815                                                                                        0.25 inch strip
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8828                                                                           based on weight (51-100 lbs)
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8833                                                                           based on weight (51-100 lbs)
8837                                                                                            unspecified
8843                                                                            based on weight (45-88 lbs)
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8860                                                                                           small amount
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8879                                                                           based on weight (51-100 lbs)
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8908                                                                                              13.5, 810
8911                                                                           based on weight (51-100 lbs)
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9026                                                                           based on weight (50-100 lbs)
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9050                                                                                            as directed
9052                                                                                       0.125 inch strip
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9060                                                                                            unspecified
9064                                                                                            as directed
9070                                                                                            unspecified
9071                                                                                            unspecified
9084                                                                                            unspecified
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9109                                                                                        0.25 inch strip
9118                                                                                        0.25 inch strip
9132                                                                              based on weight (60+ lbs)
9136                                                                                            application
9156                                                                                            unspecified
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9170                                                                           based on weight (51-100 lbs)
9187                                                                                            application
9193                                                                                         1 pack/package
9202                                                                           based on weight (51-100 lbs)
9230                                                                                           small amount
9236                                                                           based on weight (51-100 lbs)
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9244                                                                                            unspecified
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9259                                                                           based on weight (60-120 lbs)
9267                                                                           based on weight (51-100 lbs)
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9271                                                                                            unspecified
9292                                                                                               27, 1620
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9297                                                                                            unspecified
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9416                                                                                           small amount
9418                                                                                           small amount
9421                                                                                                 collar
9422                                                                                        based on weight
9426                                                                           based on weight (50-100 lbs)
9429                                                                                            application
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9438                                                                                              injection
9447                                                                                            unspecified
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9494                                                                                           small amount
9495                                                                                           small amount
9511                                                                                            unspecified
9516                                                                                       0.125 inch strip
9524                                                                                           small amount
9544                                                                          based on weight (24.1-60 lbs)
9546                                                                         based on weight (60.1-121 lbs)
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9584                                                                           based on weight (51-100 lbs)
9588                                                                                           small amount
9592                                                                                            unspecified
9596                                                                                            unspecified
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9635                                                                                               27, 1620
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9643                                                                           based on weight (60-120 lbs)
9718                                                                                            unspecified
9723                                                                           based on weight (51-100 lbs)
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9766                                                                           based on weight (51-100 lbs)
9770                                                                         based on weight (50.1-100 lbs)
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9791                                                                           based on weight (50-100 lbs)
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9821                                                                                         1 pack/package
9826                                                                                           1 inch strip
9828                                                                                               5-7.5 mg
9833                                                                                            application
9837                                                                                            unspecified
9840                                                                                            unspecified
9843                                                                                            unspecified
9863                                                                                               wipe/pad
9865                                                                                                  spray
9873                                                                                            unspecified
9877                                                                                            unspecified
9884                                                                                        0.25 inch strip
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9901                                                                                        based on weight
9903                                                                                        0.25 inch strip
9907                                                                                            unspecified
9917                                                                           based on weight (51-100 lbs)
9928                                                                                            unspecified
9931                                                                           based on weight (50-100 lbs)
9935                                                                            based on weight (40-60 lbs)
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9963                                                                              based on weight (55+ lbs)
9966                                                                              based on weight (55+ lbs)
9968                                                                              based on weight (55+ lbs)
9970                                                                                           small amount
9972                                                                              based on weight (55+ lbs)
10017                                                                          based on weight (51-100 lbs)
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10037                                                                                           unspecified
10042                                                                                           unspecified
10053                                                                          based on weight (50-100 lbs)
10061                                                                                           application
10063                                                                             based on weight (18+ lbs)
10066                                                                             based on weight (18+ lbs)
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10092                                                                                           unspecified
10093                                                                                           unspecified
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10113                                                                                         1 bottle/vial
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10151                                                                                           unspecified
10167                                                                          based on weight (51-100 lbs)
10170                                                                          based on weight (51-100 lbs)
10176                                                                                          small amount
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10195                                                                                           unspecified
10198                                                                             based on weight (55+ lbs)
10200                                                                              based on weight (60 lbs)
10209                                                                          based on weight (51-100 lbs)
10219                                                                          based on weight (51-100 lbs)
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10245                                                                          based on weight (50-100 lbs)
10249                                                                                           unspecified
10260                                                                                                collar
10264                                                                                          small amount
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10301                                                                                               23, 460
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10320                                                                           1 tablet/pill/capsule - 375
10324                                                                          based on weight (85-130 lbs)
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10345                                                                                   tablet/pill/capsule
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10356                                                                                       based on weight
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10379                                                                                               23, 228
10400                                                                                           unspecified
10403                                                                           based on weight (45-88 lbs)
10405                                                                           based on weight (45-88 lbs)
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10412                                                                                               23, 228
10429                                                                                                 drops
10435                                                                                           unspecified
10436                                                                                           unspecified
10441                                                                                           unspecified
10445                                                                                           unspecified
10470                                                                                          small amount
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10485                                                                          based on weight (51-100 lbs)
10487                                                                          based on weight (51-100 lbs)
10499                                                                                               23, 228
10503                                                                          based on weight (50-100 lbs)
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10529                                                                                           unspecified
10555                                                                                           unspecified
10557                                                                                           unspecified
10565                                                                                           unspecified
10573                                                                                           unspecified
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10583                                                                          based on weight (60-120 lbs)
10588                                                                          based on weight (50-100 lbs)
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10619                                                                            1.5 tablets/pills/capsules
10624                                                                                       based on weight
10628                                                                                       0.25 inch strip
10642                                                                                           unspecified
10655                                                                          based on weight (51-100 lbs)
10667                                                                          based on weight (51-100 lbs)
10671                                                                             based on weight (55+ lbs)
10678                                                                                           unspecified
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10689                                                                          based on weight (51-100 lbs)
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10696                                                                                           unspecified
10697                                                                                           unspecified
10701                                                                                           unspecified
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10740                                                                                           unspecified
10743                                                                                           unspecified
10751                                                                                           unspecified
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10769                                                                                       based on weight
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10794                                                                          based on weight (51-100 lbs)
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10825                                                                                           unspecified
10827                                                                                                collar
10830                                                                          based on weight (51-100 lbs)
10837                                                                                           unspecified
10843                                                                                                1 dose
10846                                                                             based on weight (60+ lbs)
10849                                                                          based on weight (51-100 lbs)
10853                                                                                          small amount
10863                                                                                            1-2 sprays
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10874                                                                          based on weight (51-100 lbs)
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10892                                                                           based on weight (45-88 lbs)
10896                                                                                             6-8 drops
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10901                                                                                           application
10905                                                                                           application
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10934                                                                                       based on weight
10938                                                                          based on weight (50-100 lbs)
10953                                                                          based on weight (89-132 lbs)
10959                                                                          based on weight (89-132 lbs)
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
11003                                                                          based on weight (60-121 lbs)
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11016                                                                                           unspecified
11021                                                                                           unspecified
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11085                                                                                           unspecified
11088                                                                                           unspecified
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11134                                                                           based on weight (45-88 lbs)
11142                                                                                           unspecified
11144                                                                                           unspecified
11145                                                                                           unspecified
11152                                                                                           unspecified
11153                                                                                           unspecified
11155                                                                                           unspecified
11156                                                                                           unspecified
11158                                                                                           unspecified
11159                                                                                           unspecified
11163                                                                                           unspecified
11165                                                                                           unspecified
11182                                                                                           unspecified
11186                                                                          based on weight (50-100 lbs)
11189                                                                                           unspecified
11208                                                                        based on weight (50.1-100 lbs)
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11224                                                                                           unspecified
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11276                                                                                         23 mg, 460 mg
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11307                                                                          based on weight (50-100 lbs)
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11338                                                                                          small amount
11340                                                                                               10, 100
11346                                                                                       moderate amount
11349                                                                                       moderate amount
11350                                                                                          small amount
11353                                                                                       136, 136, 680.4
11356                                                                                           unspecified
11360                                                                                           unspecified
11368                                                                          based on weight (50-100 lbs)
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11394                                                                                          small amount
11415                                                                                           unspecified
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11464                                                                                           unspecified
11470                                                                                           unspecified
11471                                                                                           unspecified
11473                                                                             based on weight (50+ lbs)
11477                                                                          based on weight (51-100 lbs)
11493                                                                                           unspecified
11509                                                                          based on weight (50-100 lbs)
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11551                                                                                           unspecified
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11570                                                                                           unspecified
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11589                                                                             based on weight (50+ lbs)
11593                                                                          based on weight (51-100 lbs)
11596                                                                          based on weight (51-100 lbs)
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11620                                                                                           unspecified
11621                                                                                           unspecified
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11637                                                                                           unspecified
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11664                                                                          based on weight (88-123 lbs)
11666                                                                                           application
11667                                                                                           application
11671                                                                                           application
11673                                                                                                 spray
11678                                                                          based on weight (51-100 lbs)
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11683                                                                          based on weight (51-100 lbs)
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11695                                                                                          small amount
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11709                                                                                           unspecified
11710                                                                                           unspecified
11719                                                                                           as directed
11722                                                                                           unspecified
11723                                                                                           unspecified
11735                                                                          based on weight (51-100 lbs)
11742                                                                                         1 bottle/vial
11802                                                                                               23, 460
11806                                                                                           unspecified
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11840                                                                                               20, 200
11844                                                                                               20, 200
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11850                                                                                            1200, 1500
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11889                                                                          based on weight (51-100 lbs)
11898                                                                          based on weight (51-100 lbs)
11911                                                                                          small amount
11919                                                                                           unspecified
11930                                                                                         5 billion cfu
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11964                                                                          based on weight (51-100 lbs)
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11983                                                                          based on weight (89-132 lbs)
11993                                                                                           unspecified
12009                                                                                           unspecified
12010                                                                                           unspecified
12014                                                                          based on weight (51-100 lbs)
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12043                                                                                           unspecified
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12051                                                                                        1 pack/package
12054                                                                                           unspecified
12090                                                                          based on weight (51-100 lbs)
12108                                                                                       moderate amount
12111                                                                                           unspecified
12120                                                                                           unspecified
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12154                                                                                           unspecified
12155                                                                                           unspecified
12159                                                                                           unspecified
12160                                                                                           unspecified
12164                                                                                           unspecified
12173                                                                                           unspecified
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12223                                                                                                 drops
12261                                                                        based on weight (60.1-120 lbs)
12271                                                                           based on weight (45-88 lbs)
12273                                                                                          small amount
12279                                                                                          small amount
12283                                                                                               23, 228
12299                                                                                           unspecified
12306                                                                                           unspecified
12309                                                                                           unspecified
12313                                                                                               23, 460
12314                                                                                              27, 1620
12322                                                                                            1200, 1500
12324                                                                          based on weight (60-120 lbs)
12334                                                                                             injection
12336                                                                                             injection
12337                                                                                           unspecified
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12346                                                                                             155, 1200
12349                                                                                       2 bottles/vials
12351                                                                                             150, 1200
12353                                                                                           unspecified
12364                                                                                            1200, 1500
12366                                                                          based on weight (60-120 lbs)
12376                                                                                             155, 1200
12379                                                                                             200, 1500
12394                                                                                           unspecified
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12402                                                                          based on weight (51-100 lbs)
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12427                                                                                           unspecified
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12477                                                                                           unspecified
12481                                                                                           unspecified
12485                                                                                           unspecified
12487                                                                                           unspecified
12495                                                                          based on weight (51-100 lbs)
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12500                                                                          based on weight (50-100 lbs)
12506                                                                                           unspecified
12514                                                                                             6-8 drops
12516                                                                          based on weight (51-100 lbs)
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12523                                                                          based on weight (51-100 lbs)
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12535                                                                                           unspecified
12536                                                                                          small amount
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12543                                                                                         1 bottle/vial
12546                                                                                           as directed
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12569                                                                                              27, 1610
12571                                                                                            7-10 drops
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12595                                                                                           unspecified
12596                                                                                           unspecified
12605                                                                                             11.5, 114
12608                                                                                         23 mg, 228 mg
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12620                                                                                           unspecified
12623                                                                          based on weight (51-100 lbs)
12630                                                                                           unspecified
12632                                                                                           unspecified
12636                                                                          based on weight (50-100 lbs)
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12642                                                                          based on weight (50-100 lbs)
12645                                                                                              125, 500
12686                                                                          based on weight (51-100 lbs)
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12714                                                                          based on weight (51-100 lbs)
12730                                                                                           unspecified
12732                                                                                           application
12735                                                                                           as directed
12738                                                                          1 tablet/pill/capsule - 1000
12740                                                                                             13.5, 810
12744                                                                                       13.5 mg, 810 mg
12749                                                                                             13.5, 810
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12771                                                                                       based on weight
12774                                                                                       based on weight
12780                                                                          based on weight (51-100 lbs)
12784                                                                                        1 pack/package
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12801                                                                                           application
12826                                                                                           unspecified
12828                                                                                           unspecified
12836                                                                          based on weight (60-120 lbs)
12849                                                                                                 drops
12850                                                                                                 drops
12861                                                                                          small amount
12865                                                                                          small amount
12866                                                                                          small amount
12870                                                                                           application
12873                                                                                       moderate amount
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12894                                                                                          small amount
12895                                                                                                  bath
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12911                                                                                           unspecified
12916                                                                          based on weight (51-100 lbs)
12920                                                                          based on weight (51-100 lbs)
12929                                                                          based on weight (51-100 lbs)
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12945                                                                          based on weight (51-100 lbs)
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12952                                                                          based on weight (51-100 lbs)
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12966                                                                           based on weight (45-88 lbs)
12994                                                                             based on weight (55+ lbs)
13005                                                                                           unspecified
13006                                                                                           unspecified
13008                                                                                           unspecified
13010                                                                                           unspecified
13013                                                                                           unspecified
13020                                                                                           unspecified
13041                                                                                          small amount
13049                                                                                           application
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13081                                                                                           unspecified
13084                                                                                               23, 460
13086                                                                          based on weight (51-100 lbs)
13096                                                                                          small amount
13104                                                                                           unspecified
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13124                                                                                          small amount
13126                                                                                          small amount
13127                                                                                          small amount
13129                                                                                          small amount
13130                                                                                          small amount
13133                                                                                          small amount
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13154                                                                                              125, 875
13157                                                                          based on weight (50-100 lbs)
13159                                                                                           unspecified
13160                                                                                           unspecified
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13195                                                                                                 spray
13196                                                                                                  bath
13198                                                                                       moderate amount
13199                                                                                              tapering
13233                                                                                           unspecified
13246                                                                                       0.25 inch strip
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13286                                                                                          small amount
13287                                                                                           application
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13321                                                                                                  bath
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13340                                                                                          small amount
13341                                                                                           unspecified
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13349                                                                          based on weight (51-100 lbs)
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13376                                                                                           unspecified
13405                                                                                           unspecified
13411                                                                                           unspecified
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13468                                                                                           unspecified
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13479                                                                              based on weight (70 lbs)
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13496                                                                                       based on weight
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13506                                                                          based on weight (50-100 lbs)
13532                                                                                        1 pack/package
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13579                                                                                          small amount
13581                                                                                        27 mg, 1620 mg
13585                                                                                              27, 1620
13590                                                                                                  bath
13594                                                                                           unspecified
13595                                                                                           unspecified
13601                                                                                           unspecified
13603                                                                                           unspecified
13605                                                                                           unspecified
13609                                                                                       0.25 inch strip
13615                                                                                          small amount
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13628                                                                           based on weight (21-55 lbs)
13631                                                                                          small amount
13654                                                                                          small amount
13657                                                                                          small amount
13666                                                                                           application
13693                                                                          based on weight (60-120 lbs)
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13730                                                                                   tablet/pill/capsule
13737                                                                          based on weight (50-100 lbs)
13740                                                                                           unspecified
13741                                                                                           unspecified
13747                                                                                               23, 460
13756                                                                                           unspecified
13768                                                                                           application
13769                                                                                                 spray
13776                                                                             based on weight (50+ lbs)
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13796                                                                                            1 wipe/pad
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13896                                                                        based on weight (50.1-100 lbs)
13902                                                                                           unspecified
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13910                                                                        based on weight (50.1-100 lbs)
13912                                                                                           unspecified
13913                                                                                           unspecified
13925                                                                                              27, 1620
13943                                                                          based on weight (51-100 lbs)
13946                                                                                                 spray
13996                                                                                       0.25 inch strip
13998                                                                                           unspecified
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14055                                                                          based on weight (50-100 lbs)
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14106                                                                          based on weight (51-100 lbs)
14114                                                                          based on weight (60-120 lbs)
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14123                                                                                                   1 l
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14131                                                                                          small amount
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14151                                                                          based on weight (50-100 lbs)
14154                                                                          based on weight (50-100 lbs)
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14170                                                                                          small amount
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14219                                                                          based on weight (51-100 lbs)
14221                                                                                           unspecified
14228                                                                                           unspecified
14238                                                                                           unspecified
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14245                                                                           based on weight (22-44 lbs)
14282                                                                          based on weight (50-100 lbs)
14284                                                                          based on weight (50-100 lbs)
14291                                                                                           unspecified
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14323                                                                                           application
14324                                                                                             3-4 drops
14330                                                                                           unspecified
14334                                                                         based on weight (20.1-55 lbs)
14336                                                                                             2-3 drops
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14373                                                                                       based on weight
14376                                                                                       based on weight
14378                                                                             based on weight (60+ lbs)
14380                                                                                       based on weight
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14408                                                                          based on weight (51-100 lbs)
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14426                                                                                           unspecified
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14451                                                                          based on weight (51-100 lbs)
14455                                                                                       0.25 inch strip
14471                                                                                           unspecified
14473                                                                                           unspecified
14477                                                                                           unspecified
14479                                                                                       based on weight
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14495                                                                          based on weight (51-100 lbs)
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14528                                                                                         1 bottle/vial
14563                                                                                           unspecified
14576                                                                          based on weight (51-100 lbs)
14578                                                                             based on weight (25+ lbs)
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14601                                                                                           unspecified
14605                                                                 25 milbemycin oxime, 228 praziquantel
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14637                                                                           based on weight (44-88 lbs)
14645                                                                                              27, 1620
14654                                                                                          0.1%, 1%, 2%
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14697                                                                                          small amount
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14726                                                                           based on weight (45-88 lbs)
14728                                                                                               23, 228
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14744                                                                                       based on weight
14748                                                                                            5-10 drops
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14760                                                                          based on weight (51-100 lbs)
14764                                                                                          small amount
14775                                                                                           unspecified
14777                                                                                           unspecified
14778                                                                                           unspecified
14833                                                                                              350, 900
14834                                                                                              27, 1620
14838                                                                                              350, 900
14839                                                                                               23, 228
14857                                                                                           unspecified
14858                                                                                               23, 460
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14867                                                                                         23 mg, 228 mg
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14878                                                                                           unspecified
14899                                                                                           unspecified
14911                                                                                              27, 1620
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14934                                                                          based on weight (60-120 lbs)
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14949                                                                                           unspecified
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15017                                                                          based on weight (50-100 lbs)
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15035                                                                                           unspecified
15036                                                                                           unspecified
15045                                                                                       based on weight
15048                                                                          based on weight (50-100 lbs)
15055                                                                                           unspecified
15059                                                                          based on weight (51-100 lbs)
15061                                                                          based on weight (51-100 lbs)
15077                                                                                           unspecified
15102                                                                                          small amount
15129                                                                                             6-8 drops
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15150                                                                                       based on weight
15151                                                                                       based on weight
15155                                                                                           unspecified
15179                                                                           based on weight (25-75 lbs)
15196                                                                                           application
15197                                                                                          small amount
15209                                                                           based on weight (44-88 lbs)
15213                                                                                           unspecified
15244                                                                                                0.3, 1
15250                                                                                       based on weight
15256                                                                                       based on weight
15259                                                                              1.25 tablet/pill/capsule
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15274                                                                                           unspecified
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15317                                                                          based on weight (50-100 lbs)
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15339                                                                                              27, 1620
15345                                                                                              27, 1620
15348                                                                                              27, 1620
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15383                                                                                           unspecified
15384                                                                                           unspecified
15402                                                                                          small amount
15412                                                                                             22.7, 272
15441                                                                                           unspecified
15445                                                                                           unspecified
15451                                                                          based on weight (51-100 lbs)
15453                                                                                           unspecified
15454                                                                                           unspecified
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15515                                                                         based on weight (44.1-88 lbs)
15528                                                                                               23, 228
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15533                                                                              based on weight (25 lbs)
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15563                                                                                       0.25 inch strip
15581                                                                                           unspecified
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15603                                                                                           unspecified
15604                                                                                           unspecified
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15633                                                                                              tapering
15636                                                                          based on weight (51-100 lbs)
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15661                                                                          based on weight (51-100 lbs)
15663                                                                          based on weight (89-132 lbs)
15667                                                                                          small amount
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15693                                                                          based on weight (60-120 lbs)
15701                                                                                           unspecified
15706                                                                                          small amount
15707                                                                                              27, 1620
15712                                                                                           unspecified
15715                                                                                              27, 1620
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15750                                                                                           unspecified
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15778                                                                                           unspecified
15781                                                                                           unspecified
15782                                                                                           unspecified
15790                                                                                           unspecified
15796                                                                                              125, 500
15799                                                                                           unspecified
15811                                                                           based on weight (44-88 lbs)
15815                                                                        based on weight (50.1-100 lbs)
15818                                                                          based on weight (51-100 lbs)
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15844                                                                          based on weight (51-100 lbs)
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15856                                                                             based on weight (55+ lbs)
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15886                                                                                           unspecified
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15907                                                                                          small amount
15911                                                                              based on weight (40 lbs)
15917                                                                                           unspecified
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15930                                                                          based on weight (51-100 lbs)
15933                                                                                               2000 iu
15935                                                                                      0.5 pack/package
15937                                                                          based on weight (51-100 lbs)
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15981                                                                          based on weight (51-100 lbs)
15983                                                                                          small amount
15986                                                                           based on weight (56-95 lbs)
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16016                                                                                           application
16026                                                                                          small amount
16033                                                                                       based on weight
16036                                                                          based on weight (51-100 lbs)
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16052                                                                                       based on weight
16053                                                                                       based on weight
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16105                                                                                               23, 460
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16150                                                                                           unspecified
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16177                                                                                           unspecified
16179                                                                                           unspecified
16199                                                                                           unspecified
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16251                                                                                          small amount
16253                                                                                           unspecified
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16340                                                                          based on weight (51-100 lbs)
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16355                                                                                           unspecified
16356                                                                                           unspecified
16367                                                                                           unspecified
16371                                                                                           unspecified
16374                                                                                           unspecified
16376                                                                                           unspecified
16378                                                                                           unspecified
16382                                                                                           unspecified
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16450                                                                          based on weight (51-100 lbs)
16462                                                                                             0.5 ml/kg
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16474                                                                                     1 syringe/pipette
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16497                                                                                           bottle/vial
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16544                                                                           based on weight (44-88 lbs)
16546                                                                        based on weight (50.1-100 lbs)
16553                                                                        based on weight (50.1-100 lbs)
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16601                                                                          based on weight (89-132 lbs)
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16608                                                                          based on weight (51-100 lbs)
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16639                                                                          based on weight (51-100 lbs)
16657                                                                                             6-8 drops
16684                                                                                          small amount
16685                                                                                              wipe/pad
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16711                                                                                          small amount
16712                                                                                          small amount
16714                                                                                          small amount
16717                                                                                          small amount
16718                                                                                          small amount
16721                                                                          based on weight (51-100 lbs)
16723                                                                                           application
16724                                                                                           application
16726                                                                                                 spray
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16751                                                                                         23 mg, 460 mg
16774                                                                                           unspecified
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16791                                                                           based on weight (44-88 lbs)
16793                                                                           based on weight (24-60 lbs)
16798                                                                                           unspecified
16805                                                                          based on weight (50-100 lbs)
16807                                                                             based on weight (55+ lbs)
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16821                                                                                           unspecified
16823                                                                                           unspecified
16834                                                                                           unspecified
16838                                                                                           unspecified
16840                                                                                           unspecified
16841                                                                                           unspecified
16847                                                                                           unspecified
16869                                                                          based on weight (50-100 lbs)
16877                                                                                             13.5, 810
16882                                                                                       based on weight
16918                                                                                           unspecified
16931                                                                                             13.5, 810
16933                                                                                             13.5, 810
16939                                                                                          small amount
16970                                                                          based on weight (51-100 lbs)
16983                                                                                              6 months
16993                                                                                           as directed
16994                                                                                           application
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17022                                                                                           unspecified
17042                                                                        based on weight (50.1-100 lbs)
17062                                                                                           unspecified
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17098                                                                                           unspecified
17099                                                                                       based on weight
17120                                                                                          small amount
17121                                                                                          small amount
17126                                                                                          small amount
17127                                                                                           as directed
17138                                                                          based on weight (51-100 lbs)
17143                                                                          based on weight (51-100 lbs)
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17173                                                                                           unspecified
17177                                                                                           unspecified
17180                                                                                           unspecified
17209                                                                                           unspecified
17218                                                                           based on weight (56-95 lbs)
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17239                                                                          based on weight (50-100 lbs)
17252                                                                                       based on weight
17254                                                                                           application
17255                                                                                       based on weight
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17268                                                                          based on weight (51-100 lbs)
17283                                                                                                57, 68
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17314                                                                                           application
17327                                                                                           application
17329                                                                                           application
17330                                                                                           application
17335                                                                                           application
17352                                                                                           unspecified
17355                                                                                           unspecified
17387                                                                                           unspecified
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17393                                                                                           application
17399                                                                        based on weight (50.1-100 lbs)
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17412                                                                                           unspecified
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17426                                                                                           unspecified
17427                                                                                           unspecified
17446                                                                                           bottle/vial
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17463                                                                                        1 pack/package
17468                                                                                               23, 460
17470                                                                                        1 pack/package
17482                                                                                          small amount
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17576                                                                                           unspecified
17583                                                                                           application
17588                                                                                                 spray
17602                                                                                          small amount
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17611                                                                           based on weight (44-88 lbs)
17615                                                                           based on weight (45-88 lbs)
17627                                                                         based on weight (44.1-88 lbs)
17659                                                                          based on weight (50-100 lbs)
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17680                                                                                           unspecified
17697                                                                                              27, 1620
17702                                                                                               10, 100
17703                                                                                               23, 460
17719                                                                                               23, 460
17720                                                                                          small amount
17722                                                                          based on weight (51-100 lbs)
17742                                                                                           application
17755                                                                           based on weight (45-88 lbs)
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17798                                                                                             6-8 drops
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17818                                                                          based on weight (60-120 lbs)
17832                                                                                           unspecified
17845                                                                                           unspecified
17853                                                                                           unspecified
17855                                                                                           unspecified
17856                                                                                           unspecified
17860                                                                                           unspecified
17863                                                                                           unspecified
17865                                                                                           unspecified
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18072                                                                         based on weight (40.1-60 lbs)
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18098                                                                                           unspecified
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18118                                                                                         1 bottle/vial
18124                                                                             based on weight (50+ lbs)
18134                                                                                           unspecified
18141                                                                                           unspecified
18147                                                                                           unspecified
18165                                                                                          small amount
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18195                                                                                           unspecified
18199                                                                                                  5, 2
18202                                                                          based on weight (51-100 lbs)
18205                                                                          based on weight (51-100 lbs)
18213                                                                                           unspecified
18214                                                                                           unspecified
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18238                                                                                           unspecified
18251                                                                                                powder
18258                                                                                     0.44, 4.95, 36.08
18260                                                                                              27, 1620
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18266                                                                                              27, 1620
18271                                                                                                    iu
18275                                                                                           unspecified
18276                                                                                           unspecified
18323                                                                                          small amount
18325                                                                                           unspecified
18326                                                                                           unspecified
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18344                                                                          based on weight (51-100 lbs)
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18404                                                                                                 drops
18415                                                                          based on weight (51-100 lbs)
18427                                                                                          small amount
18441                                                                              2 tablets/pills/capsules
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18469                                                                                       0.25 inch strip
18471                                                                                           application
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18483                                                                                              27, 1610
18489                                                                                       based on weight
18490                                                                                       based on weight
18494                                                                                       based on weight
18495                                                                                       based on weight
18500                                                                                       based on weight
18502                                                                          based on weight (50-100 lbs)
18514                                                                           based on weight (21-55 lbs)
18520                                                                              based on weight (60 lbs)
18525                                                                           based on weight (44-88 lbs)
18534                                                                                           unspecified
18565                                                                             based on weight (55+ lbs)
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18580                                                                          based on weight (50-100 lbs)
18588                                                                                           unspecified
18591                                                                                                 spray
18595                                                                                           as directed
18609                                                                                           unspecified
18612                                                                                           unspecified
18621                                                                                           unspecified
18649                                                                             based on weight (25+ lbs)
18687                                                                                             5-8 drops
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18694                                                                                             11.5, 230
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18703                                                                          based on weight (51-100 lbs)
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18716                                                                                           unspecified
18718                                                                                           unspecified
18729                                                                                           unspecified
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18743                                                                           based on weight (26-50 lbs)
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18820                                                                                          small amount
18829                                                                                           unspecified
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18847                                                                                       based on weight
18850                                                                                       based on weight
18882                                                                                           application
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18919                                                                                                collar
18921                                                                             based on weight (18+ lbs)
18924                                                                                           unspecified
18933                                                                                           unspecified
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18961                                                                              2 tablets/pills/capsules
18964                                                                                           unspecified
18991                                                                          based on weight (51-100 lbs)
18993                                                                                              2 scoops
18997                                                                                           unspecified
18998                                                                                           unspecified
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19008                                                                                           unspecified
19009                                                                                           unspecified
19015                                                                                           unspecified
19019                                                                                           unspecified
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19068                                                                              based on weight (50 lbs)
19070                                                                             based on weight (50+ lbs)
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19078                                                                          based on weight (51-100 lbs)
19082                                                                           based on weight (45-88 lbs)
19122                                                                             based on weight (55+ lbs)
19130                                                                           based on weight (44-88 lbs)
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19159                                                                                           unspecified
19165                                                                          based on weight (51-100 lbs)
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19183                                                                                                collar
19184                                                                                           unspecified
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19246                                                                                           as directed
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19278                                                                          based on weight (51-100 lbs)
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19288                                                                                           unspecified
19298                                                                                           unspecified
19299                                                                                           unspecified
19318                                                                           based on weight (44-88 lbs)
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19338                                                                                           unspecified
19350                                                                                       0.25 inch strip
19353                                                                                           unspecified
19354                                                                                           unspecified
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19373                                                                          based on weight (51-100 lbs)
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19423                                                                          based on weight (51-100 lbs)
19427                                                                                       based on weight
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19457                                                                          based on weight (51-100 lbs)
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19476                                                                              based on weight (35 lbs)
19482                                                                          based on weight (51-100 lbs)
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19495                                                                             based on weight (50+ lbs)
19537                                                                                       based on weight
19596                                                                          based on weight (51-100 lbs)
19603                                                                           based on weight (40-60 lbs)
19617                                                                                       2.68 ml of 9.8%
19641                                                                                           unspecified
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19722                                                                                           unspecified
19735                                                                                          small amount
19737                                                                                          small amount
19741                                                                          based on weight (51-100 lbs)
19754                                                                                               23, 228
19768                                                                           based on weight (40-80 lbs)
19771                                                                                             13.5, 810
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19788                                                                                           unspecified
19790                                                                                           unspecified
19792                                                                                           unspecified
19801                                                                           based on weight (44-88 lbs)
19803                                                                          based on weight (51-100 lbs)
19823                                                                                          small amount
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19838                                                                                           unspecified
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19851                                                                          based on weight (60-100 lbs)
19856                                                                        based on weight (50.1-100 lbs)
19876                                                                                           unspecified
19881                                                                                           unspecified
19888                                                                          based on weight (50-100 lbs)
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19911                                                                                       based on weight
19912                                                                                           unspecified
19914                                                                                           unspecified
19917                                                                                           application
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19930                                                                                             13.5, 810
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19952                                                                                           unspecified
19958                                                                                                collar
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19984                                                                                           unspecified
20003                                                                                       based on weight
20006                                                                                           unspecified
20007                                                                                           unspecified
20019                                                                          based on weight (51-100 lbs)
20020                                                                          based on weight (60-121 lbs)
20027                                                                          based on weight (60-121 lbs)
20028                                                                          based on weight (51-100 lbs)
20065                                                                                           unspecified
20068                                                                                           unspecified
20069                                                                                           unspecified
20070                                                                                           unspecified
20072                                                                                           unspecified
20074                                                                                           unspecified
20096                                                                                           unspecified
20099                                                                                           unspecified
20105                                                                                           unspecified
20106                                                                                           unspecified
20125                                                                                         0.3 (10mg/ml)
20126                                                                          based on weight (50-100 lbs)
20127                                                                        based on weight (60.1-121 lbs)
20130                                                                                          small amount
20131                                                                             based on weight (50+ lbs)
20135                                                                                               23, 228
20144                                                                          based on weight (50-100 lbs)
20145                                                                                          30 mg, 40 mg
20149                                                                                           unspecified
20150                                                                                           unspecified
20164                                                                                             5-6 drops
20173                                                                             based on weight (55+ lbs)
20174                                                                          based on weight (51-100 lbs)
20175                                                                                          small amount
20182                                                                                          small amount
20218                                                                                       based on weight
20219                                                                          based on weight (51-100 lbs)
20220                                                                           based on weight (51-60 lbs)
20221                                                                          based on weight (60-120 lbs)
20222                                                                          based on weight (60-120 lbs)
20224                                                                          based on weight (60-120 lbs)
20232                                                                                           as directed
20233                                                                          based on weight (51-100 lbs)
20234                                                                                          small amount
20240                                                                             based on weight (55+ lbs)
20241                                                                             based on weight (55+ lbs)
20243                                                                           based on weight (44-88 lbs)
20244                                                                          based on weight (51-100 lbs)
20245                                                                          based on weight (51-100 lbs)
20251                                                                                          pack/package
20275                                                                                         23 mg, 460 mg
20282                                                                                               23, 460
20292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20293                                                                                           unspecified
20295                                                                           based on weight (56-90 lbs)
20297                                                                          based on weight (88-110 lbs)
20298                                                                                       0.25 inch strip
20300                                                                          based on weight (88-110 lbs)
20301                                                                             based on weight (18+ lbs)
20302                                                                400 mg imidacloprid, 100 mg moxidectin
20303                                                                     4.5% flumethrin, 10% imidacloprid
20306                                                                                       based on weight
20315                                                                                           unspecified
20337                                                                                           unspecified
20339                                                                                           unspecified
20340                                                                                           unspecified
20342                                                                                           unspecified
20343                                                                                           unspecified
20344                                                                                              27, 1620
20348                                                                          based on weight (51-100 lbs)
20356                                                           23 mg milbemycin oxime, 228 mg praziquantel
20374                                                                              based on weight (55 lbs)
20376                                                                                           as directed
20377                                                                          based on weight (51-100 lbs)
20380                                                                                           as directed
20382                                                                                           unspecified
20387                                                                          based on weight (51-100 lbs)
20388                                                                          based on weight (51-100 lbs)
20390                                                                          based on weight (51-100 lbs)
20392                                                                                          small amount
20393                                                                                          small amount
20402                                                                          based on weight (51-100 lbs)
20405                                                                          based on weight (51-100 lbs)
20409                                                                                               23, 228
20411                                                           23 mg milbemycin oxime, 228 mg praziquantel
20413                                                           23 mg milbemycin oxime, 228 mg praziquantel
20425                                                                          based on weight (51-100 lbs)
20426                                                                          based on weight (51-100 lbs)
20441                                                                                           application
20444                                                                                           unspecified
20446                                                                                           unspecified
20453                                                                                             5.75, 115
20460                                                                                             11.5, 230
20485                                                                                          small amount
20490                                                                           based on weight (26-50 lbs)
20491                                                                           based on weight (24-60 lbs)
20510                                                                                           unspecified
20511                                                                          based on weight (51-100 lbs)
20512                                                                           based on weight (24-60 lbs)
20516                                                                          based on weight (51-100 lbs)
20517                                                                           based on weight (24-60 lbs)
20518                                                                                           unspecified
20554                                                                          based on weight (60-120 lbs)
20555                                                                          based on weight (60-120 lbs)
20561                                                                          based on weight (60-120 lbs)
20565                                                                          based on weight (60-120 lbs)
20568                                                                          based on weight (60-120 lbs)
20574                                                                                           unspecified
20577                                                                                           unspecified
20579                                                                         based on weight (40.1-60 lbs)
20585                                                                                          small amount
20615                                                                                           unspecified
20623                                                                                           unspecified
20636                                                                           based on weight (44-88 lbs)
20638                                                                                       2.68 ml of 9.8%
20641                                                                                           unspecified
20642                                                                           based on weight (45-88 lbs)
20645                                                                           based on weight (45-88 lbs)
20648                                                                           based on weight (45-88 lbs)
20651                                                                           based on weight (45-88 lbs)
20659                                                                                           unspecified
20666                                                                                           unspecified
20667                                                                                           unspecified
20678                                                                                           unspecified
20698                                                                                       0.25 inch strip
20701                                                                                           unspecified
20702                                                                                           unspecified
20704                                                                                           application
20705                                                                                              wipe/pad
20707                                                                          based on weight (60-120 lbs)
20708                                                                                           unspecified
20709                                                                                           unspecified
20712                                                                                              wipe/pad
20717                                                                        based on weight (50.1-100 lbs)
20718                                                           23 mg milbemycin oxime, 228 mg praziquantel
20728                                                                                           unspecified
20738                                                                                              tapering
20748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20761                                                                                             13.5, 810
20762                                                                                              27, 1620
20763                                                                                              27, 1610
20766                                                                                              27, 1620
20767                                                                                              27, 1620
20771                                                                                              125, 500
20783                                                                                              27, 1620
20791                                                                                           unspecified
20796                                                                                           unspecified
20800                                                                        based on weight (50.1-100 lbs)
20808                                                                          based on weight (51-100 lbs)
20809                                                                        based on weight (60.1-120 lbs)
20814                                                                                           unspecified
20817                                                                                             13.5, 810
20819                                                             13.5 mg milbemycin oxime, 810 mg spinosad
20849                                                                                                 drops
20852                                                                                              tapering
20854                                                                          based on weight (51-100 lbs)
20855                                                                          based on weight (60-121 lbs)
20858                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
20861                                                                                           application
20862                                                                          based on weight (51-100 lbs)
20863                                                                          based on weight (60-120 lbs)
20872                                                                           based on weight (40-85 lbs)
20897                                                                                          small amount
20918                                                                                                2.5, 5
20939                                                                             based on weight (18+ lbs)
20940                                                                                       based on weight
20947                                                                                       based on weight
20949                                                                                       based on weight
20962                                                                          based on weight (50-100 lbs)
20963                                                                           based on weight (45-88 lbs)
20964                                                                          based on weight (50-100 lbs)
20965                                                                          based on weight (88-132 lbs)
20966                                                                          based on weight (50-100 lbs)
21003                                                                                           unspecified
21013                                                                                       0.25 inch strip
21022                                                              27 mg milbemycin oxime, 1620 mg spinosad
21025                                                                 2 prednisone, 5 trimeprazine tartrate
21029                                                                                             13.5, 810
21074                                                                          based on weight (60-120 lbs)
21078                                                                        based on weight (60.1-120 lbs)
21080                                                                                              27, 1620
21088                                                                                           unspecified
21102                                                                           based on weight (40-80 lbs)
21109                                                                                          small amount
21110                                                                          based on weight (51-100 lbs)
21111                                                                                          small amount
21112                                                                                          small amount
21114                                                                          based on weight (51-100 lbs)
21115                                                                           based on weight (44-88 lbs)
21119                                                                   10 dextromethorphan, 10 guaifenesin
21122                                                                          based on weight (51-100 lbs)
21123                                                                           based on weight (44-88 lbs)
21125                                                                                          small amount
21127                                                                          based on weight (51-100 lbs)
21130                                                                              3 tablets/pills/capsules
21131                                                                                       moderate amount
21133                                                                          based on weight (51-100 lbs)
21168                                                                          based on weight (51-100 lbs)
21169                                                                           based on weight (45-88 lbs)
21178                                                                                           unspecified
21179                                                                                               23, 460
21180                                                                                       27 mg, 1620 mcg
21181                                                                          based on weight (51-100 lbs)
21182                                                                                         23 mg, 460 mg
21190                                                                          based on weight (60-120 lbs)
21201                                                                                               23, 228
21224                                                                                       0.25 inch strip
21253                                                              27 mg milbemycin oxime, 1620 mg spinosad
21254                                                                          based on weight (51-100 lbs)
21256                                                                                               23, 460
21267                                                              27 mg milbemycin oxime, 1620 mg spinosad
21268                                                                                           bottle/vial
21269                                                                          based on weight (60-120 lbs)
21273                                                                                               23, 460
21278                                                                                          small amount
21282                                                                                          small amount
21287                                                                                          small amount
21309                                                                                                2.5, 5
21326                                                                                             6-8 drops
21331                                                                                           unspecified
21338                                                                             based on weight (55+ lbs)
21359                                                                                               23, 460
21361                                                                                               23, 460
21369                                                                          based on weight (51-100 lbs)
21384                                                                          based on weight (51-100 lbs)
21385                                                                        based on weight (60.1-121 lbs)
21386                                                                                             7-8 drops
21387                                                                                           unspecified
21388                                                                                           unspecified
21389                                                                                           unspecified
21403                                                                                               23, 228
21413                                                                                           unspecified
21416                                                                                           unspecified
21442                                                                                            1200, 1500
21445                                                                          based on weight (51-100 lbs)
21448                                                                          based on weight (51-100 lbs)
21449                                                                         based on weight (24.1-60 lbs)
21465                                                                                           unspecified
21472                                                      500 mg amoxicillin, 125 mg clavulanate potassium
21481                                                                                           unspecified
21492                                                                                           unspecified
21493                                                                                           unspecified
21495                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21504                                                                              based on weight (45 lbs)
21507                                                                              based on weight (50 lbs)
21508                                                                                           application
21509                                                                                           unspecified
21527                                                                           based on weight (20-55 lbs)
21528                                                                                       based on weight
21531                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21532                                                                          based on weight (51-100 lbs)
21533                                                                          based on weight (60-120 lbs)
21549 2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
21552                                                                                           unspecified
21553                                                                                           unspecified
21555                                                                                           unspecified
21558                                                                                               23, 460
21562                                                                             based on weight (55+ lbs)
21563                                                                          based on weight (50-100 lbs)
21564                                                                             based on weight (55+ lbs)
21585                                                                          based on weight (60-120 lbs)
21586                                                                          based on weight (50-100 lbs)
21593                                                                                           unspecified
21600                                                                              based on weight (55 lbs)
21602                                                              460 mg lufenuron, 23 mg milbemycin oxime
21605                                                                             based on weight (55+ lbs)
21607                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
21608                                                                          based on weight (51-100 lbs)
21609                                                                           based on weight (44-88 lbs)
21612                                                                                           unspecified
21614                                                                           based on weight (44-88 lbs)
21615                                                                          based on weight (51-100 lbs)
21616                                                                                          small amount
21617                                                                          based on weight (51-100 lbs)
21618                                                                           based on weight (44-88 lbs)
21619                                                                          based on weight (51-100 lbs)
21620                                                                           based on weight (44-88 lbs)
21621                                                                          based on weight (51-100 lbs)
21622                                                                           based on weight (44-88 lbs)
21625                                                                                          small amount
21632                                                                                           unspecified
21642                                                                          based on weight (51-100 lbs)
21643                                                                                               23, 460
21644                                                                          based on weight (51-100 lbs)
21645                                                                          based on weight (51-100 lbs)
21646                                                                          based on weight (51-100 lbs)
21648                                                                           based on weight (44-88 lbs)
21649                                                                          based on weight (51-100 lbs)
21650                                                                                           unspecified
21651                                                              460 mg lufenuron, 23 mg milbemycin oxime
21652                                                                     4.5% flumethrin, 10% imidacloprid
21653                                                                                          small amount
21654                                                                                         23 mg, 460 mg
21655                                                                             based on weight (18+ lbs)
21658                                                                                                collar
21659                                                                                          small amount
21660                                                                                          small amount
21661                                                                                                 spray
21666                                                                             based on weight (18+ lbs)
21673                                                                                           unspecified
21677                                                                                           unspecified
21678                                                                                           unspecified
21680                                                                                           unspecified
21685                                                                                           unspecified
21701                                                                                       based on weight
21705                                                                                       based on weight
21707                                                                                                collar
21708                                                                                           unspecified
21723                                                                                              27, 1620
21725                                                                          based on weight (51-100 lbs)
21727                                                                                           unspecified
21739                                                              460 mg lufenuron, 23 mg milbemycin oxime
21748                                                                                           unspecified
21749                                                                                           unspecified
21753                                                           23 mg milbemycin oxime, 228 mg praziquantel
21754                                                                          based on weight (50-100 lbs)
21755                                                                           based on weight (44-88 lbs)
21757                                                                          based on weight (51-100 lbs)
21767                                                                                           unspecified
21783                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
21796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21809                                                                                           unspecified
21810                                                                                           unspecified
21814                                                                          based on weight (51-100 lbs)
21815                                                                           based on weight (45-88 lbs)
21833                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
21851                                                                                               23, 228
21865                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21869                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
21872                                                                                           as directed
21873                                                                                           as directed
21875                                                                                           unspecified
21876                                                                                           unspecified
21877                                                                                           unspecified
21878                                                                                           unspecified
21886                                                                                           unspecified
21894                                                                          based on weight (51-100 lbs)
21897                                                                          based on weight (51-100 lbs)
21898                                                                          based on weight (60-121 lbs)
21912                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
21918                                                                                          pack/package
21921                                                                                          small amount
21925                                                                                           as directed
21949                                                                                           unspecified
21955                                                                           based on weight (44-88 lbs)
21956                                                                          based on weight (51-100 lbs)
21959                                                                                              160, 800
21982                                                                           based on weight (45-88 lbs)
21993                                                                          based on weight (50-100 lbs)
22020                                                                                           as directed
22023                                                                          based on weight (51-100 lbs)
22025                                                                          based on weight (51-100 lbs)
22026                                                                          based on weight (51-100 lbs)
22037                                                                          based on weight (51-100 lbs)
22038                                                                        based on weight (60.1-121 lbs)
22041                                                                          based on weight (51-100 lbs)
22042                                                                          based on weight (60-120 lbs)
22043                                                                              based on weight (65 lbs)
22045                                                                          based on weight (51-100 lbs)
22046                                                                          based on weight (60-120 lbs)
22048                                                                                                 spray
22050                                                                                         2 billion cfu
22051                                                              27 mg milbemycin oxime, 1620 mg spinosad
22060                                                                                              27, 1620
22062                                                                          based on weight (51-100 lbs)
22064                                                                                           unspecified
22088                                                                          based on weight (51-100 lbs)
22089                                                                        based on weight (60.1-121 lbs)
22092                                                                          based on weight (51-100 lbs)
22093                                                                        based on weight (60.1-121 lbs)
22118                                                                          based on weight (51-100 lbs)
22120                                                                                           application
22121                                                                                                 drops
22125                                                                          based on weight (51-100 lbs)
22128                                                                                                 drops
22136                                                                          based on weight (51-100 lbs)
22140                                                                          based on weight (51-100 lbs)
22141                                                                           based on weight (44-88 lbs)
22151                                                                                           unspecified
22160                                                                          based on weight (50-100 lbs)
22161                                                                          based on weight (51-100 lbs)
22163                                                                          based on weight (51-100 lbs)
22173                                                                          based on weight (51-100 lbs)
22175                                                                                          small amount
22176                                                                          based on weight (51-100 lbs)
22177                                                                        based on weight (60.1-121 lbs)
22179                                                                                           application
22189                                                                                          small amount
22190                                                                                          small amount
22196                                                                                          small amount
22199                                                                                       based on weight
22201                                                                                           unspecified
22216                                                                          based on weight (51-100 lbs)
22217                                                                        based on weight (60.1-121 lbs)
22218                                                                                          small amount
22219                                                                                           unspecified
22222                                                                          based on weight (51-100 lbs)
22223                                                                          based on weight (51-100 lbs)
22224                                                                          based on weight (89-132 lbs)
22225                                                                          based on weight (51-100 lbs)
22226                                                                        based on weight (60.1-121 lbs)
22227                                                                          based on weight (51-100 lbs)
22228                                                                        based on weight (60.1-121 lbs)
22229                                                                          based on weight (51-100 lbs)
22230                                                               based on weight (50.1-100 lbs) - 900 mg
22237                                                                                             13.5, 810
22238                                                                                               13, 810
22239                                                                                           unspecified
22240                                                                                           unspecified
22241                                                                                           unspecified
22243                                                                                           unspecified
22245                                                                                           unspecified
22253                                                                          based on weight (60-120 lbs)
22261                                                                          based on weight (50-100 lbs)
22262                                                                          based on weight (60-120 lbs)
22265                                                                          based on weight (51-100 lbs)
22267                                                                          based on weight (51-100 lbs)
22268                                                                          based on weight (60-120 lbs)
22270                                                                                           unspecified
22272                                                                                           unspecified
22289                                                                                               23, 228
22299                                                                                              27, 1620
22306                                                                          based on weight (51-100 lbs)
22308                                                                                               23, 460
22311                                                                                               23, 460
22313                                                                                           unspecified
22315                                                                                          pack/package
22316                                                                                               23, 460
22321                                                                          based on weight (51-100 lbs)
22323                                                                                       based on weight
22341                                                                                                1 dose
22342                                                                                         30 wipes/pads
22343                                                                                           application
22345                                                                                           unspecified
22346                                                                                           unspecified
22347                                                                                           unspecified
22349                                                                                           unspecified
22351                                                                                              4.5, 270
22352                                                                                              9.3, 560
22353                                                                                             13.5, 810
22367                                                                                  100000, 2.5, 2500, 1
22404                                                                                           application
22407                                                                      1.5 tablets/pills/capsules - 100
22408                                                                                          small amount
22410                                                                                          small amount
22413                                                                          based on weight (51-100 lbs)
22417                                                                          based on weight (51-100 lbs)
22430                                                                              based on weight (64 lbs)
22439                                                                          based on weight (60-120 lbs)
22440                                                                                              27, 1620
22441                                                                          based on weight (51-100 lbs)
22459                                                                                           unspecified
22463                                                                                           unspecified
22530                                                                                           unspecified
22531                                                                          based on weight (51-100 lbs)
22532                                                                          based on weight (51-100 lbs)
22533                                                                                                collar
22534                                                              460 mg lufenuron, 23 mg milbemycin oxime
22537                                                                                           unspecified
22540                                                                                           unspecified
22541                                                                          based on weight (51-100 lbs)
22545                                                                          based on weight (51-100 lbs)
22546                                                                          based on weight (51-100 lbs)
22547                                                                             based on weight (55+ lbs)
22548                                                                                   tablet/pill/capsule
22549                                                                                           unspecified
22552                                                                                           unspecified
22557                                                                          based on weight (51-100 lbs)
22558                                                                            based on weight (0-25 lbs)
22574                                                                                           application
22575                                                                                       0.25 inch strip
22577                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22578                                                                          based on weight (51-100 lbs)
22579                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22583                                                                                           unspecified
22585                                                                                           unspecified
22598                                                                           based on weight (44-88 lbs)
22601                                                                           based on weight (44-88 lbs)
22606                                                                          based on weight (51-100 lbs)
22607                                                                           based on weight (45-88 lbs)
22610                                                                                              2.3, 140
22611                                                                                              9.3, 560
22625                                                                          based on weight (51-100 lbs)
22653                                                                          based on weight (50-100 lbs)
22655                                                                           based on weight (45-88 lbs)
22656                                                                          based on weight (51-100 lbs)
22662                                                                                          small amount
22667                                                                                           application
22669                                                                                          small amount
22672                                                                                                  tube
22673                                                                                   tablet/pill/capsule
22681                                                                                          small amount
22682                                                                          based on weight (50-100 lbs)
22683                                                                           based on weight (45-88 lbs)
22690                                                                             based on weight (18+ lbs)
22691                                                                             based on weight (18+ lbs)
22692                                                                          based on weight (51-100 lbs)
22693                                                                          based on weight (51-100 lbs)
22704                                                                                           unspecified
22705                                                                                           unspecified
22707                                                                                           unspecified
22708                                                                                           unspecified
22711                                                                                           unspecified
22713                                                                                           unspecified
22714                                                                                           unspecified
22716                                                                                           unspecified
22717                                                                                           unspecified
22718                                                                          based on weight (51-100 lbs)
22719                                                                          based on weight (51-100 lbs)
22733                                                                                                collar
22748                                                                          based on weight (51-100 lbs)
22749                                                                                               23, 460
22750                                                                                         0.44, 8.8, 44
22751                                                                                               23, 460
22752                                                                                         0.44, 8.8, 44
22754                                                                          based on weight (51-100 lbs)
22763                                                                          based on weight (51-100 lbs)
22764                                                                             based on weight (55+ lbs)
22765                                                                                          small amount
22766                                                                          based on weight (50-100 lbs)
22770                                                                                               23, 228
22777                                                                                              27, 1620
22778                                                                                              27, 1620
22779                                                                                              27, 1620
22780                                                                                              27, 1620
22795                                                                          based on weight (51-100 lbs)
22796                                                                             based on weight (55+ lbs)
22797                                                                                           unspecified
22798                                                                                           unspecified
22799                                                                          based on weight (51-100 lbs)
22800                                                                          based on weight (60-121 lbs)
22801                                                                          based on weight (51-100 lbs)
22802                                                                                           application
22803                                                                          based on weight (51-100 lbs)
22804                                                                          based on weight (60-121 lbs)
22830                                                                                       0.25 inch strip
22840                                                                          based on weight (51-100 lbs)
22848                                                                                          small amount
22853                                                                                          small amount
22858                                                                                                  bath
22875                                                                             based on weight (55+ lbs)
22886                                                                                          small amount
22909                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
22919                                                                          based on weight (60-121 lbs)
22920                                                                              based on weight (90 lbs)
22922                                                                                           application
22923                                                                              2 tablets/pills/capsules
22926                                                                                          small amount
22929                                                                                          small amount
22936                                                                                           unspecified
22938                                                                                           unspecified
22939                                                                                           unspecified
22954                                                                                         1 bottle/vial
22963                                                                          based on weight (51-100 lbs)
22965                                                                                           unspecified
22966                                                                                       based on weight
22971                                                                          based on weight (51-100 lbs)
22990                                                                                              wipe/pad
22992                                                                          based on weight (88-110 lbs)
22994                                                                             based on weight (60+ lbs)
23006                                                                                       moderate amount
23007                                                                                       moderate amount
23018                                                                      0.5 tablet/pill/capsule - 250 mg
23019                                                                      0.75 tablet/pill/capsule - 75 mg
23024                                                                                        1 pack/package
23043                                                                                           unspecified
23049                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23051                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23053                                                                                           unspecified
23055                                                                          based on weight (88-123 lbs)
23059                                                                          based on weight (50-100 lbs)
23060                                                                          based on weight (50-100 lbs)
23061                                                                          based on weight (88-123 lbs)
23064                                                                          based on weight (51-100 lbs)
23066                                                                          based on weight (51-100 lbs)
23083                                                                                              27, 1620
23095                                                                        based on weight (60.1-120 lbs)
23096                                                                         based on weight (44.1-88 lbs)
23100                                                                                           unspecified
23102                                                                                           unspecified
23103                                                                                           unspecified
23108                                                                                           unspecified
23122                                                                          based on weight (51-100 lbs)
23123                                                                             based on weight (55+ lbs)
23124                                                                          based on weight (51-100 lbs)
23125                                                                          based on weight (51-100 lbs)
23134                                                                          based on weight (51-100 lbs)
23137                                                                          based on weight (51-100 lbs)
23138                                                                          based on weight (51-100 lbs)
23143                                                                          based on weight (50-100 lbs)
23144                                                                           based on weight (44-88 lbs)
23153                                                                                           unspecified
23154                                                                                           unspecified
23163                                                                                           unspecified
23169                                                                              based on weight (62 lbs)
23173                                                                            based on weight (68.5 lbs)
23175                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23202                                                                          based on weight (51-100 lbs)
23237                                                                                           unspecified
23249                                                                                       moderate amount
23250                                                                          based on weight (60-120 lbs)
23251                                                                          based on weight (51-100 lbs)
23258                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23259                                                                           based on weight (56-95 lbs)
23266                                                                         0.5-1.0% (50 minute duration)
23267                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23268                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23276                                                                                           unspecified
23278                                                                                          small amount
23279                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23280                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
23283                                                                                           as directed
23284                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23286                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23288                                                                                                0.5 oz
23294                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23299                                                       375 mg amoxicillin, 94 mg clavulanate potassium
23304                                                                                          small amount
23308                                                                                           unspecified
23321                                                                                           unspecified
23322                                                                                           unspecified
23325                                                                                           unspecified
23333                                                                          based on weight (51-100 lbs)
23336                                                                          based on weight (51-100 lbs)
23337                                                                           based on weight (44-88 lbs)
23338                                                                           based on weight (56-95 lbs)
23340                                                                                          small amount
23341                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23342                                                                           based on weight (56-95 lbs)
23344                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23345                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
23349                                                                                          small amount
23350                          based on weight (50.1-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
23353                                                     250 mg amoxicillin, 62.5 mg clavulanate potassium
23355                                                                                       moderate amount
23356                                                           172 mcg ivermectin, 227 mg pyrantel pamoate
23360                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
23364                                                                                          small amount
23366                                                                                           unspecified
23384                                                                           based on weight (45-88 lbs)
23388                                                                          based on weight (51-100 lbs)
23403                                                                          based on weight (51-100 lbs)
23404                                                                           based on weight (44-88 lbs)
23413                                                                          based on weight (51-100 lbs)
23414                                                                          based on weight (51-100 lbs)
23419                                                                                          small amount
23427                                                                          based on weight (51-100 lbs)
23428                                                                          based on weight (51-100 lbs)
23437                                                                          based on weight (60-120 lbs)
23450                                                                           based on weight (45-88 lbs)
23456                                                                                                 spray
23472                                                                           based on weight (21-55 lbs)
23482                                                                           based on weight (55-90 lbs)
23484                                                                          based on weight (50-100 lbs)
23485                                                                           based on weight (21-55 lbs)
23487                                                                           based on weight (56-95 lbs)
23491                                                                                               57, 400
23507                                                                          based on weight (51-100 lbs)
23520                                                                           based on weight (56-95 lbs)
23533                                                                                           unspecified
23534                                                                                           unspecified
23540                                                                          based on weight (51-100 lbs)
23541                                                                        based on weight (60.1-121 lbs)
23552                                                                          based on weight (51-100 lbs)
23553                                                                          based on weight (51-100 lbs)
23557                                                                          based on weight (51-100 lbs)
23565                                                                                          small amount
23566                                                                                          small amount
23568                                                                                       based on weight
23571                                                                          based on weight (51-100 lbs)
23572                                                                           based on weight (45-88 lbs)
23588                                                                          based on weight (60-120 lbs)
23590                                                                                           unspecified
23610                                                                                         23 mg, 460 mg
23617                                                                          based on weight (51-100 lbs)
23618                                                                          based on weight (51-100 lbs)
23619                                                                                               23, 460
23620                                                                          based on weight (51-100 lbs)
23622                                                                          based on weight (51-100 lbs)
23646                                                                          based on weight (60-120 lbs)
23647                                                                          based on weight (60-120 lbs)
23651                                                                          based on weight (50-100 lbs)
23657                                                                        based on weight (50.1-100 lbs)
23659                                                                          based on weight (88-123 lbs)
23685                                                                          based on weight (51-100 lbs)
23686                                                                           based on weight (44-88 lbs)
23688                                                                         based on weight (44.1-88 lbs)
23707                                                                                           unspecified
23718                                                                                           unspecified
23721                                                                          based on weight (50-100 lbs)
23722                                                                        based on weight (60.1-120 lbs)
23724                                                                                           unspecified
23730                                                                          based on weight (51-100 lbs)
23732                                                                          based on weight (51-100 lbs)
23740                                                                          based on weight (51-100 lbs)
23747                                                                                             11.5, 230
23749                                                                                           unspecified
23757                                                                          based on weight (51-100 lbs)
23804                                                                                               23, 460
23805                                                                          based on weight (51-100 lbs)
23808                                                                          based on weight (51-100 lbs)
23809                                                                                                collar
23819                                                                          based on weight (51-100 lbs)
23861                                                                          based on weight (51-100 lbs)
23862                                                                           based on weight (24-60 lbs)
23866                                                                             based on weight (55+ lbs)
23868                                                                                           as directed
23871                                                                             based on weight (55+ lbs)
23872                                                                                           unspecified
23873                                                                                           unspecified
23898                                                                                       based on weight
23899                                                                                              0.25 cup
23900                                                                                           unspecified
23901                                                                          based on weight (50-100 lbs)
23902                                                                                       based on weight
23905                                                                          based on weight (50-100 lbs)
23906                                                                                                collar
23909                                                                                           application
23910                                                                          based on weight (50-100 lbs)
23914                                                                                                  tube
23917                                                                                           unspecified
23933                                                                                         1 bottle/vial
23942                                                                                           unspecified
23955                                                                          based on weight (50-100 lbs)
23956                                                                          based on weight (50-100 lbs)
23957                                                                                           unspecified
23958                                                                                           unspecified
23959                                                                                           unspecified
23965                                                                                          small amount
23969                                                                                       based on weight
23974                                                                              based on weight (55 lbs)
23976                                                                      based on weight (55+ lbs) - 4 ml
23980                                                                                           unspecified
24010                                                                                             13.5, 810
24012                                                                                          small amount
24017                                                                                             13.5, 810
24018                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24019                                                             13.5 mg milbemycin oxime, 810 mg spinosad
24020                                                                                              27, 1620
24022                                                                                              27, 1620
24029                                                                                              27, 1620
24045                                                                                           unspecified
24046                                                                                           unspecified
24062                                                                          based on weight (51-100 lbs)
24068                                                                                           unspecified
24072                                                                                               23, 460
24075                                                                          based on weight (51-100 lbs)
24076                                                                          based on weight (51-100 lbs)
24077                                                                          based on weight (51-100 lbs)
24079                                                                           based on weight (45-88 lbs)
24104                                                                               0.5 tablet/pill/capsule
24106                                                                              2 tablets/pills/capsules
24116                                                                                       based on weight
24117                                                                                           unspecified
24139                                                                                       0.25 inch strip
24142                                                                          based on weight (51-100 lbs)
24144                                                                          based on weight (51-100 lbs)
24145                                                                                           unspecified
24149                                                           23 mg milbemycin oxime, 228 mg praziquantel
24154                                                                                           unspecified
24155                                                                                           unspecified
24157                                                                                           unspecified
24162                                                                        based on weight (50.1-100 lbs)
24165                                                                          based on weight (51-100 lbs)
24166                                                                             based on weight (64+ lbs)
24172                                                                                       0.25 inch strip
24174                                                                          based on weight (50-100 lbs)
24185                                                                                      1.5-7.5, 2.25, 5
24189                                                                                           0.284, 0.57
24192                                                                                           unspecified
24193                                                                                           unspecified
24194                                                                                           unspecified
24195                                                                                           unspecified
24203                                                                                           application
24205                                                                                           unspecified
24206                                                                                           unspecified
24207                                                                                           unspecified
24208                                                                                           unspecified
24209                                                                                           application
24215                                                                                          small amount
24217                                                                                           application
24221                                                                                          small amount
24222                                                                                           unspecified
24246                                                                              2 tablets/pills/capsules
24253                                                                                           unspecified
24257                                                                          based on weight (51-100 lbs)
24258                                                                          based on weight (51-100 lbs)
24259                                                                                           unspecified
24267                                                                                             150 ml/hr
24268                                                                                              75 ml/hr
24269                                                                                             16-116 mg
24276                                                                          based on weight (51-100 lbs)
24282                                                                                           unspecified
24312                                                                                           unspecified
24313                                                                                           unspecified
24314                                                                                           unspecified
24319                                                                      0.5 tablet/pill/capsule - 227 mg
24322                                                                                       moderate amount
24328                                                                              2 tablets/pills/capsules
24343                                                                                             13.5, 810
24375                                                                                              114, 136
24393                                                                          based on weight (51-100 lbs)
24400                                                                          based on weight (50-100 lbs)
24402                                                                          based on weight (51-100 lbs)
24403                                                                          based on weight (51-100 lbs)
24405                                                                    2 tablets/pills/capsules - 2000 mg
24406                                                                     1.5 tablets/pills/capsules - 5 mg
24407                                                                     2 tablets/pills/capsules - 300 mg
24409                                                                                                  bath
24413                                                                                           unspecified
24416                                                                                           unspecified
24417                                                                                              3 gm/tsp
24420                                                                                                powder
24421                                                                          based on weight (50-100 lbs)
24422                                                                                       based on weight
24424                                                                                           unspecified
24425                                                                                       based on weight
24426                                                                          based on weight (60-121 lbs)
24431                                                                          based on weight (50-100 lbs)
24432                                                                           based on weight (24-60 lbs)
24435                                                                          based on weight (50-100 lbs)
24437                                                                          based on weight (60-120 lbs)
24451                                                                                           unspecified
24452                                                                                           unspecified
24453                                                                                           unspecified
24455                                                                                           unspecified
24459                                                                                           unspecified
24460                                                                                           unspecified
24468                                                                                           unspecified
24473                                                              27 mg milbemycin oxime, 1620 mg spinosad
24475                                                              27 mg milbemycin oxime, 1620 mg spinosad
24476                                                                          based on weight (50-100 lbs)
24477                                                                          based on weight (50-100 lbs)
24478                                                                                        1 pack/package
24480                                                                          based on weight (50-100 lbs)
24481                                                                          based on weight (51-100 lbs)
24486                                                                                           unspecified
24514                                                                                           unspecified
24520                                                                           based on weight (45-88 lbs)
24521                                                                           based on weight (25-50 lbs)
24526                                                                                                 spray
24534                                                                           based on weight (45-88 lbs)
24536                                                                                       based on weight
24593                                                                                          small amount
24597                                                                                              27, 1620
24598                                                                                               35, 425
24599                                                                                              27, 1620
24601                                                                                              27, 1610
24602                                                                                              27, 1610
24605                                                                        based on weight (60.1-120 lbs)
24610                                                                                          small amount
24647                                                                                           unspecified
24648                                                                                           application
24653                                                                                       moderate amount
24660                                                                                       based on weight
24669                                                                          based on weight (60-121 lbs)
24688                                                                                       0.25 inch strip
24707                                                                                           unspecified
24733                                                                          based on weight (51-100 lbs)
24734                                                                          based on weight (60-120 lbs)
24758                                                                                       0.25 inch strip
24762                                                                          based on weight (51-100 lbs)
24768                                                                          based on weight (50-100 lbs)
24769                                                                           based on weight (24-60 lbs)
24802                                                                           based on weight (40-80 lbs)
24804                                                                                           unspecified
24805                                                                                           unspecified
24806                                                                                           unspecified
24817                                                                                          small amount
24819                                                                                           application
24824                                                                          based on weight (51-100 lbs)
24825                                                                                       based on weight
24827                                                                                           as directed
24828                                                                                       based on weight
24829                                                                          based on weight (51-100 lbs)
24830                                                                                           unspecified
24850                                                                          based on weight (50-100 lbs)
24867                                                                          based on weight (51-100 lbs)
24878                                                                                           application
24898                                                                                                powder
24902                                                                          based on weight (51-100 lbs)
24917                                                                                           unspecified
24918                                                                                           unspecified
24919                                                                                           unspecified
24935                                                              460 mg lufenuron, 23 mg milbemycin oxime
24937                                                              460 mg lufenuron, 23 mg milbemycin oxime
24938                                                              460 mg lufenuron, 23 mg milbemycin oxime
24940                                                              460 mg lufenuron, 23 mg milbemycin oxime
24942                                                              460 mg lufenuron, 23 mg milbemycin oxime
24948                                                                                          small amount
24949                                                              460 mg lufenuron, 23 mg milbemycin oxime
24950                                                                           based on weight (45-88 lbs)
24963                                                                                               23, 460
24964                                                                                               23, 228
24968                                                                          based on weight (51-100 lbs)
24969                                                                                       based on weight
24971                                                                          based on weight (51-100 lbs)
24973                                                                                   tablet/pill/capsule
24974                                                                                              1 collar
24975                                                                                          small amount
24982                                                                           based on weight (45-88 lbs)
24984                                                              460 mg lufenuron, 23 mg milbemycin oxime
24985                                                                                           unspecified
24987                                                                          based on weight (51-100 lbs)
24988                                                                                            8-10 drops
24989                                                                                          small amount
24993                                                                                       based on weight
25020                                                                                               23, 460
25021                                                                           based on weight (44-88 lbs)
25022                                                                                               23, 460
25059                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25079                                                                          based on weight (51-100 lbs)
25087                                                                                                collar
25094                                                                                              27, 1620
25099                                                                                           unspecified
25100                                                                                           unspecified
25118                                                                          based on weight (51-100 lbs)
25119                                                                          based on weight (51-100 lbs)
25120                                                                          based on weight (51-100 lbs)
25124                                                                                       moderate amount
25129                                                                                   tablet/pill/capsule
25191                                                                          based on weight (51-100 lbs)
25196                                                                          based on weight (51-100 lbs)
25198                                                                                                   10+
25233                                                                          based on weight (51-100 lbs)
25234                                                                          based on weight (51-100 lbs)
25241                                                                                          small amount
25255                                                                                          small amount
25258                                                                                          small amount
25262                                                                                           unspecified
25269                                                                                           unspecified
25270                                                                                           unspecified
25296                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
25299                                                                                       based on weight
25300                                                                         based on weight (24.1-60 lbs)
25310                                                                                                1 dose
25311                                                                                           application
25315                                                                          based on weight (51-100 lbs)
25316                                                                          based on weight (51-100 lbs)
25317                                                                          based on weight (60-120 lbs)
25342                                                                          based on weight (61-120 lbs)
25343                                                                          based on weight (51-100 lbs)
25345                                                                                          small amount
25346                                                                                          small amount
25347                                                                                           unspecified
25367                                                                                           unspecified
25405                                                                         based on weight (40.1-85 lbs)
25409                                                                                       0.25 inch strip
25410                                                                                           as directed
25417                                                                                                  8 oz
25421                                                                         based on weight (40.1-85 lbs)
25424                                                                                           as directed
25425                                                                                           as directed
25437                                                                                         23 mg, 460 mg
25444                                                                                               23, 460
25473                                                                          based on weight (51-100 lbs)
25482                                                                                           unspecified
25493                                                                          based on weight (51-100 lbs)
25494                                                                          based on weight (51-100 lbs)
25501                                                                          based on weight (51-100 lbs)
25514                                                                                           unspecified
25515                                                                                           unspecified
25516                                                                          based on weight (51-100 lbs)
25520                                                                          based on weight (51-100 lbs)
25521                                                                          based on weight (60-120 lbs)
25523                                                                             based on weight (59+ lbs)
25547                                                                                          small amount
25554                                                                                        27 mg, 1620 mg
25555                                                                                              27, 1620
25556                                                                                              4.5, 270
25557                                                                                              27, 1620
25575                                                                          based on weight (50-100 lbs)
25576                                                                          based on weight (51-100 lbs)
25577                                                                          based on weight (51-100 lbs)
25589                                                           23 mg milbemycin oxime, 228 mg praziquantel
25591                                                           23 mg milbemycin oxime, 228 mg praziquantel
25612                                                                                              27, 1620
25617                                                                                         1 application
25619                                                                                           unspecified
25622                                                                                           unspecified
25660                                                                                       moderate amount
25663                                                                                          small amount
25666                                                                                   tablet/pill/capsule
25670                                                                          based on weight (88-110 lbs)
25671                                                                                          small amount
25674                                                                          based on weight (88-110 lbs)
25683                                                             based on weight (51-100 lbs) - 7.7 mcg/kg
25706                                                                             based on weight (55+ lbs)
25707                                                                                           unspecified
25708                                                                          based on weight (51-100 lbs)
25725                                                                                              5 x 10^7
25727                                                                          based on weight (51-100 lbs)
25730                                                                                                  bath
25737                                                                                           unspecified
25740                                                                         based on weight (24.1-60 lbs)
25741                                                                          based on weight (51-100 lbs)
25743                                                                           based on weight (21-55 lbs)
25744                                                                                           unspecified
25748                                                                           based on weight (26-50 lbs)
25749                                                                            based on weight (0-25 lbs)
25750                                                                            based on weight (0-22 lbs)
25751                                                                                       0.25 inch strip
25753                                                                                          small amount
25754                                                                          based on weight (51-100 lbs)
25755                                                                           based on weight (44-88 lbs)
25756                                                                           based on weight (56-95 lbs)
25757                                                                         based on weight (24.1-60 lbs)
25765                                                                                          small amount
25795                                                                              based on weight (60 lbs)
25804                                                              460 mg lufenuron, 23 mg milbemycin oxime
25806                                                                          based on weight (51-100 lbs)
25807                                                                          based on weight (51-100 lbs)
25819                                                                           based on weight (40-60 lbs)
25820                                                                         based on weight (40.1-60 lbs)
25827                                                                          based on weight (51-100 lbs)
25828                                                           23 mg milbemycin oxime, 228 mg praziquantel
25830                                                                                         23 mg, 228 mg
25837                                                                                          small amount
25846                                                                          based on weight (88-123 lbs)
25884                                                                          based on weight (51-100 lbs)
25887                                                                          based on weight (51-100 lbs)
25888                                                                        based on weight (60.1-121 lbs)
25919                                  10 mg clotrimazole, 3 mg gentamicin sulfate, 1 mg mometasone furoate
25936                                                                                           unspecified
25937                                                                                           unspecified
25939                                                                          based on weight (51-100 lbs)
25940                                                                           based on weight (44-88 lbs)
25941                                                                          based on weight (50-100 lbs)
25943                                                                           based on weight (40-85 lbs)
25948                                                                                               57, 227
25949                                               based on weight (2-8 lbs), based on weight (51-100 lbs)
25950                                                                          based on weight (88-123 lbs)
25951                                              based on weight (2-25 lbs), based on weight (50-100 lbs)
25953                                                                                           unspecified
25954                                                                          based on weight (85-130 lbs)
25964                                                                          based on weight (51-100 lbs)
25965                                                                        based on weight (60.1-121 lbs)
25966                                                                          based on weight (51-100 lbs)
25981                                                                                             3-5 drops
25983                                                                                             4-5 drops
25985                                                                             based on weight (55+ lbs)
25986                                                                           based on weight (55-88 lbs)
25998                                                                                           unspecified
26004                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26022                                                                                             62.5, 437
26024                                                                           based on weight (44-88 lbs)
26027                                                                                             62.5, 437
26031                                                                          based on weight (50-100 lbs)
26033                                                                           based on weight (44-88 lbs)
26037                                                                           based on weight (44-88 lbs)
26039                                                                           based on weight (44-88 lbs)
26047                                                                           based on weight (44-88 lbs)
26048                                                                          based on weight (51-100 lbs)
26050                                                                           based on weight (44-88 lbs)
26054                                                                           based on weight (44-88 lbs)
26056                                                                           based on weight (44-88 lbs)
26064                                                                                        1 pack/package
26075                                                                                          50, 125, 250
26078                                                                                           unspecified
26084                                                                                           unspecified
26085                                                                                           unspecified
26093                                                                                           application
26114                                                                          based on weight (51-100 lbs)
26115                                                                                                 drops
26127                                                                                           unspecified
26128                                                                                           unspecified
26129                                                                                           unspecified
26133                                                                                           unspecified
26134                                                                                           unspecified
26138                                                                           based on weight (56-95 lbs)
26139                                                                                                  bath
26141                                                                           based on weight (21-55 lbs)
26148                                                                           based on weight (56-95 lbs)
26151                                                                          based on weight (50-100 lbs)
26152                                                                           based on weight (56-95 lbs)
26156                                                                                       based on weight
26157                                                                                       based on weight
26158                                                                                           unspecified
26159                                                                                           unspecified
26165                                                                                       based on weight
26166                                                                                       based on weight
26184                                                                                           unspecified
26187                                                                                        0.5 inch strip
26190                                                                                                  bath
26192                                                                           based on weight (21-55 lbs)
26197                                                                                        0.5 inch strip
26199                                                                           based on weight (54-95 lbs)
26203                                                                          based on weight (50-100 lbs)
26204                                                                           based on weight (21-55 lbs)
26207                                                                                       based on weight
26208                                                                                       based on weight
26211                                                                           based on weight (25-50 lbs)
26212                                                                           based on weight (21-55 lbs)
26214                                                                                       based on weight
26215                                                                                       based on weight
26227                                                                                           unspecified
26229                                                                                           unspecified
26258                                                                                           application
26265                                                                                           unspecified
26278                                                                                             2-3 drops
26279                                                                          based on weight (60-120 lbs)
26280                                                                           based on weight (56-95 lbs)
26281                                                                          based on weight (60-120 lbs)
26282                                                                          based on weight (50-100 lbs)
26287                                                                          based on weight (50-100 lbs)
26295                                                                          based on weight (60-121 lbs)
26300                                                                          based on weight (50-100 lbs)
26307                                                                            based on weight (7.5+ lbs)
26315                                                                          based on weight (51-100 lbs)
26336                                                                                           unspecified
26337                                                                                           unspecified
26355                                                                                           unspecified
26375                                                                          based on weight (51-100 lbs)
26380                                                                                           unspecified
26386                                                                           based on weight (26-50 lbs)
26387                                                                           based on weight (44-88 lbs)
26391                                                                                           unspecified
26393                                                                                            2-3 sprays
26395                                                                                              27, 1620
26399                                                                                              27, 1620
26400                                                                                        27 mg, 1620 mg
26401                                                                                              27, 1620
26433                                                                                           unspecified
26454                                                                                   tablet/pill/capsule
26464                                                                                       based on weight
26471                                                                          based on weight (51-100 lbs)
26473                                                                          based on weight (60-121 lbs)
26475                                                                          based on weight (51-100 lbs)
26476                                                                          based on weight (60-121 lbs)
26488                                                                         based on weight (24.1-60 lbs)
26489                                                                           based on weight (25-50 lbs)
26490                                                                          based on weight (51-100 lbs)
26502                                                                                          small amount
26505                                                                                           as directed
26517                                                                          based on weight (51-100 lbs)
26518                                                                           based on weight (45-88 lbs)
26519                                                                          based on weight (51-100 lbs)
26520                                                                          based on weight (51-100 lbs)
26521                                                                                           unspecified
26522                                                                          based on weight (51-100 lbs)
26534                                                                                           unspecified
26543                                                                          based on weight (51-100 lbs)
26544                                                                              based on weight (58 lbs)
26546                                                                          based on weight (51-100 lbs)
26551                                                           23 mg milbemycin oxime, 228 mg praziquantel
26553                                                           23 mg milbemycin oxime, 228 mg praziquantel
26568                                                                        based on weight (50.1-100 lbs)
26574                                                                        based on weight (50.1-100 lbs)
26583                                                                                           unspecified
26590                                                                          based on weight (51-100 lbs)
26591                                                                          based on weight (51-100 lbs)
26592                                                                           based on weight (44-88 lbs)
26610                                                                                          small amount
26611                                                                          based on weight (51-100 lbs)
26615                                                                          based on weight (51-100 lbs)
26629                                                                           based on weight (44-88 lbs)
26631                                                                          based on weight (51-100 lbs)
26637                                                                based on weight (50-100 lbs) - 272 mcg
26638                                                                          based on weight (51-100 lbs)
26643                                    1 mg isoflupredone acetate, 5 mg neomycin sulfate, 1 mg tetracaine
26644                                   2% chlorhexidine gluconate, 1% ketoconazole, 0.02% phytosphingosine
26645                                                                                           unspecified
26647                                                                                           unspecified
26650                                                                           based on weight (11-25 lbs)
26651                                                                           based on weight (11-25 lbs)
26655                                                             13.5 mg milbemycin oxime, 810 mg spinosad
26662                                                                          based on weight (51-100 lbs)
26663                                                                           based on weight (24-60 lbs)
26668                                                                                           bottle/vial
26669                                                                                           unspecified
26670                                                                                                collar
26675                                                                        1 tablet/pill/capsule - 200 mg
26676                                                                           based on weight (44-88 lbs)
26677                                                                          based on weight (50-100 lbs)
26694                                                                                           unspecified
26720                      2 tablets/pills/capsules - 2 mg prednisolone acetate, 5 mg trimeprazine tartrate
26721                                      1 tablet/pill/capsule - 460 mg lufenuron, 23 mg milbemycin oxime
26722                                                                          based on weight (51-100 lbs)
26723                                                                          based on weight (51-100 lbs)
26724                                                                                            1200, 1500
26726                                                                                           unspecified
26734                                                                                       based on weight
26735                                                                          based on weight (60-120 lbs)
26736                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26738                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26740                                                           23 mg milbemycin oxime, 228 mg praziquantel
26742                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26744                                                           23 mg milbemycin oxime, 228 mg praziquantel
26745                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26747         1.67% clavulanate potassium, 1% ketoconazole, 1.67% ticarcillin, 0.1% triamcinolone acetonide
26749                                         90 mg asu, 350 mg chondroitin sulfate, 900 mg glucosamine hcl
26750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
26760                                                                          based on weight (51-100 lbs)
26769                                                                          based on weight (50-100 lbs)
26780                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
26803                                                                                                  1 oz
26823                                                                              based on weight (60 lbs)
26825                                                                                           application
26827                                                                                          small amount
26830                                                                                           1 injection
26831                                                                                           1 injection
26833                                                                                              17 ml/lb
26837                                                                                          pack/package
26839                                                                                           application
26841                                                                                           application
26842                                                                                   tablet/pill/capsule
26843                                                                                        1 pack/package
26844                                                                                          small amount
26846                                                                          based on weight (51-100 lbs)
26847                                                                           based on weight (45-88 lbs)
26848                                                                                          pack/package
26849                                                                          based on weight (51-100 lbs)
26850                                                                           based on weight (45-88 lbs)
26851                                                                                          pack/package
26852                                                                                           unspecified
26853                                                                          based on weight (60-120 lbs)
26861                                                                          based on weight (51-100 lbs)
26862                                                                                       based on weight
26863                                                                                           unspecified
26865                                                                                       based on weight
26867                                                                                       based on weight
26868                                                                                           unspecified
26869                                                                        based on weight (50.1-100 lbs)
26870                                                                             based on weight (55+ lbs)
26871                                                                                           unspecified
26872                                                                                           unspecified
26905                                                                                          small amount
26926                                                                          based on weight (51-100 lbs)
26930                                                                          based on weight (51-100 lbs)
26931                                                                           based on weight (51-95 lbs)
26932                                                                                               23, 460
26944                                                                          based on weight (56-110 lbs)
26948                                                                          based on weight (55-100 lbs)
26972                                                                                               23, 460
26974                                                                                           unspecified
26975                                                                           based on weight (26-50 lbs)
26976                                                                                          small amount
26977                                                                           based on weight (11-25 lbs)
26978                                                                                           unspecified
26979                                                                          based on weight (51-100 lbs)
26980                                                                          based on weight (51-100 lbs)
26981                                                                          based on weight (51-100 lbs)
26983                                                                                           unspecified
26984                                                                           based on weight (45-88 lbs)
26986                                                                           based on weight (44-88 lbs)
26988                                                           23 mg milbemycin oxime, 228 mg praziquantel
26990                                                           23 mg milbemycin oxime, 228 mg praziquantel
26992                                                           23 mg milbemycin oxime, 228 mg praziquantel
27020                                                                                           unspecified
27021                                                                                           unspecified
27022                                                                                           unspecified
27030                                                           23 mg milbemycin oxime, 228 mg praziquantel
27047                                                                                           unspecified
27058                                                                                           unspecified
27062                                                                                           unspecified
27063                                                                                           unspecified
27065                                                                          based on weight (51-100 lbs)
27082                                                                                           as directed
27092                                                                                        1 pack/package
27095                                                                                                 drops
27100                                                                                           unspecified
27117                                                                                           application
27118                                                                                           application
27124                                                                                        1 pack/package
27128                                                                                          small amount
27134                                                                                           application
27136                                                                          based on weight (51-100 lbs)
27140                                                                                          small amount
27158                                                                                          small amount
27170                                                                          based on weight (51-100 lbs)
27172                                                                                       based on weight
27173                                                                                           unspecified
27174                                                                          based on weight (51-100 lbs)
27203                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27212                                                                                           unspecified
27213                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27214                                                                                                collar
27217                                                                                                 spray
27219                                                                                                powder
27220                                                                                                collar
27222                                                                                                powder
27223                                                                                                 spray
27224                                                                                           unspecified
27226                                                                                       based on weight
27228                                                                                                collar
27229                                                                                   tablet/pill/capsule
27231                                                                          based on weight (60-121 lbs)
27232                                                                        based on weight (50.1-100 lbs)
27247                                                                                               23, 460
27257                                                                             based on weight (18+ lbs)
27258                                                                          based on weight (51-100 lbs)
27262                                                                                                 drops
27265                                                                          based on weight (55-100 lbs)
27268                                                                                           application
27270                                                                                                collar
27273                                                                          based on weight (51-100 lbs)
27274                                                                          based on weight (51-100 lbs)
27275                                                                          based on weight (51-100 lbs)
27280                                                                                       based on weight
27281                                                                          based on weight (51-100 lbs)
27282                                                                                                powder
27285                                                                          based on weight (51-100 lbs)
27306                                                                          based on weight (51-100 lbs)
27309                                                                           based on weight (44-88 lbs)
27311                                                                          based on weight (51-100 lbs)
27315                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27322                                                                                                 spray
27333                                                                5 mg neomycin sulfate, 1 mg tetracaine
27348                                                                              based on weight (70 lbs)
27349                                                                              based on weight (70 lbs)
27350                                                                             based on weight (55+ lbs)
27358                                                                          based on weight (51-100 lbs)
27360                                                                                           unspecified
27361                                                                          based on weight (51-100 lbs)
27364                                                                          based on weight (51-100 lbs)
27368                                                                          based on weight (51-100 lbs)
27384                                                                                             11.5, 114
27407                                                                                           unspecified
27413                                                                                           unspecified
27414                                                                                           unspecified
27421                                                                                       based on weight
27422                                                                          based on weight (50-100 lbs)
27423                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27425                                                                                          small amount
27427                                                                                          small amount
27431                                                                                          small amount
27432                                                                              based on weight (50 lbs)
27434                                                                                       based on weight
27445                                                                              based on weight (46 lbs)
27446                                                                                       based on weight
27447                                                                                           as directed
27459                                                                                              27, 1620
27465                                                                                       0.25 inch strip
27474                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27481                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27492                                                                                           unspecified
27494                                                                                           unspecified
27500                                                                                          small amount
27501                                                                                          small amount
27502                                                                          based on weight (51-100 lbs)
27506                                                                          based on weight (51-100 lbs)
27507                                                                           based on weight (45-88 lbs)
27511                                                                          based on weight (51-100 lbs)
27512                                                                           based on weight (45-88 lbs)
27523                                                                          based on weight (51-100 lbs)
27529                                                                          based on weight (51-100 lbs)
27589                                                                                              27, 1620
27594                                                                          based on weight (60-120 lbs)
27596                                                                                              27, 1620
27598                                                                                           unspecified
27620                                                                           based on weight (44-88 lbs)
27640                                                                           based on weight (26-50 lbs)
27646                                                                                           unspecified
27659                                                                                           as directed
27674                                                                                           unspecified
27697                                                                                          small amount
27699                                                                                350 mg, 800 mg, 900 mg
27700                                                                          based on weight (50-100 lbs)
27701                                                                           based on weight (44-85 lbs)
27704                                                                          based on weight (51-100 lbs)
27710                                                                           based on weight (45-88 lbs)
27713                                                                                           unspecified
27714                                                                                           unspecified
27715                                                                                           unspecified
27722                                                                                           unspecified
27736                                                                                           unspecified
27745                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27747                                  1 mg isoflupredone acetate, 3.5 mg neomycin sulfate, 1 mg tetracaine
27748                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27770                                                                                               23, 460
27772                                                                                               23, 460
27776                                                                                           unspecified
27791                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27794                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27802                                                                                           unspecified
27824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27826                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
27828                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
27833                                                                                           unspecified
27834                                                                                                varies
27836                                                                                           unspecified
27878                                                                                           unspecified
27880                                                                                           unspecified
27886                                                                          based on weight (51-100 lbs)
27895                                                                                                varies
27896                                                                                                varies
27897                                                                                           unspecified
27898                                                                                       based on weight
27899                                                                                          small amount
27910                                                                                               23, 460
27913                                                                                               23, 460
27917                                                                          based on weight (51-100 lbs)
27921                                                                          based on weight (51-100 lbs)
27922                                                                          based on weight (50-100 lbs)
27923                                                                          based on weight (51-100 lbs)
27927                                                                                           unspecified
27929                                                                                           unspecified
27939                                                                                             8.8%, 44%
27940                                                                                         23 mg, 460 mg
27941                                                                                             4-6 drops
27942                                                                              2 tablets/pills/capsules
27954                                                                           based on weight (56-95 lbs)
27957                                                                           based on weight (45-88 lbs)
27958                                                                  1.25 tablets/pills/capsules - 375 mg
27959                                                                    1.5 tablets/pills/capsules - 50 mg
27961                                                                                       based on weight
27962                                                                          based on weight (50-100 lbs)
27973                                                                                          small amount
27974                                                                                           application
27981                                                                             based on weight (55+ lbs)
27982                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
27992                                                                                           unspecified
27999                                                                             based on weight (55+ lbs)
28000                                              based on weight (1-25 lbs), based on weight (51-100 lbs)
28008                                                                                        1 pack/package
28010                                                                                        1 pack/package
28014                                                                                                  tube
28015                                                                        2 tablets/pills/capsules - 425
28016                                                                          based on weight (50-100 lbs)
28018                                                                                       based on weight
28023                                                                                           unspecified
28024                                                                          based on weight (60-121 lbs)
28025                                                                                           unspecified
28029                                                                          based on weight (51-100 lbs)
28040                                                                          based on weight (51-100 lbs)
28045                                                                                               68, 272
28046                                                                                           unspecified
28047                                                                                           unspecified
28048                                                                          based on weight (51-100 lbs)
28049                                                                          based on weight (51-100 lbs)
28087                                                                          based on weight (50-100 lbs)
28088                                                                           based on weight (44-88 lbs)
28090                                                                                          small amount
28094                                                                                           unspecified
28096                                                                                           unspecified
28098                                                                                           unspecified
28100                                                                           based on weight (44-88 lbs)
28101                                                                        based on weight (50.1-100 lbs)
28102                                                                        based on weight (50.1-100 lbs)
28103                                                                           based on weight (44-88 lbs)
28104                                                                           based on weight (44-88 lbs)
28105                                                                        based on weight (50.1-100 lbs)
28106                                                           23 mg milbemycin oxime, 228 mg praziquantel
28108                                                                           based on weight (44-88 lbs)
28109                                                                          based on weight (50-100 lbs)
28116                                                                                        1 pack/package
28119                                                                          based on weight (51-100 lbs)
28120                                                                          based on weight (50-100 lbs)
28128                                                              460 mg lufenuron, 23 mg milbemycin oxime
28130                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28134                                                                          based on weight (51-100 lbs)
28135                                                                          based on weight (51-100 lbs)
28137                                                                          based on weight (51-100 lbs)
28138                                                                                               7000 iu
28144                                                                          based on weight (51-100 lbs)
28154                                                                           based on weight (45-88 lbs)
28155                                                                          based on weight (51-100 lbs)
28158                                                                                       based on weight
28162                                                                             based on weight (60+ lbs)
28163                                                                                       based on weight
28164                                                                                       based on weight
28165                                                                                           as directed
28166                                                                                           unspecified
28167                                                                                           unspecified
28168                                                                                           unspecified
28174                                                                                       0.25 inch strip
28176                                                                                       0.25 inch strip
28246                                                           2 mg prednisone, 5 mg trimeprazine tartrate
28260                                                                                          1 inch strip
28261                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28263                                                                         based on weight (44.1-88 lbs)
28264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28269                                                                          based on weight (51-100 lbs)
28277                                                                                           unspecified
28279                                                                                           unspecified
28307                                                                                           unspecified
28309                                                                          based on weight (61-120 lbs)
28311                                                                          based on weight (50-100 lbs)
28316                                                                                          small amount
28332                                                                                           application
28333                                                                                          small amount
28371                                                                                          pack/package
28375                                                                           based on weight (44-88 lbs)
28390                                                                                          small amount
28392                                                                          based on weight (60-121 lbs)
28396                                                                              2 tablets/pills/capsules
28397                                                                        based on weight (50.1-100 lbs)
28398                                                                           based on weight (44-88 lbs)
28399                                                                          based on weight (50-100 lbs)
28400                                                                           based on weight (44-88 lbs)
28401                                                                        based on weight (50.1-100 lbs)
28404                                                                           based on weight (40-60 lbs)
28407                                                                           based on weight (40-60 lbs)
28425                                                                                           unspecified
28427                                                                                           unspecified
28437                                                                          based on weight (51-100 lbs)
28448                                                                          based on weight (51-100 lbs)
28449                                                                             based on weight (55+ lbs)
28453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28484                                                                                       moderate amount
28486                                                                                          small amount
28505                                                                                           unspecified
28507                                                                                           unspecified
28508                                                                                           unspecified
28516                                                                                           unspecified
28517                                                                                           unspecified
28518                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28519                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28520                                                                    8.8% (s)-methoprene, 9.8% fipronil
28528                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
28531                                                                                         5 billion cfu
28533                                                                     3% chloroxylenol, 3% ketoconazole
28534                                                  based on weight (50-100 lbs) - 23 mg, 228 mg, 460 mg
28535                                                                 based on weight (60-121 lbs) - 136 mg
28536                                      based on weight (45-88 lbs) - 8.8% (s)-methoprene, 9.8% fipronil
28538                                                                                         5 billion cfu
28545                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28549                                                                          based on weight (51-100 lbs)
28552                                                                                       based on weight
28553                                                                           based on weight (44-88 lbs)
28554                                                                             based on weight (50+ lbs)
28556                                                                                       based on weight
28557                                                                                       based on weight
28571                                                                          based on weight (51-100 lbs)
28572                                                                                           unspecified
28573                                                                                       based on weight
28574                                                                                              1 collar
28576                                               10 mg dextromethorphan hydrobromide, 100 mg guaifenesin
28577                                                                                          small amount
28580                                                                                       0.25 inch strip
28582                                                                          based on weight (51-100 lbs)
28583                                                                                       based on weight
28590                                                                                           unspecified
28601                                                                                       based on weight
28602                                                                          based on weight (50-100 lbs)
28605                                                                                                collar
28610                                                                   1.5 tablets/pills/capsules - 136 mg
28621                                                                                       based on weight
28624                                                                              based on weight (80 lbs)
28660                                                                                           unspecified
28668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
28673                                                                                             5-8 drops
28674                                                                          based on weight (51-100 lbs)
28675                                                                           based on weight (44-88 lbs)
28685                                                                                           unspecified
28686                                                                                           unspecified
28687                                                                                           unspecified
28693                                                                          based on weight (50-100 lbs)
28694                                                                                         1 bottle/vial
28696                                                                          based on weight (50-100 lbs)
28710                                                                                           unspecified
28714                                                                                          small amount
28718                                                                     4 tablets/pills/capsules - 0.5 gm
28719                                                                     4 tablets/pills/capsules - 0.5 gm
28723                                                                           based on weight (45-80 lbs)
28726                                                                          based on weight (60-120 lbs)
28727                                                                                           application
28730                                                                          based on weight (60-120 lbs)
28731                                                                                           application
28735                                                                          based on weight (50-100 lbs)
28736                                                                          based on weight (50-100 lbs)
28750                                                                                           unspecified
28751                                                                                           unspecified
28772                                                                                           unspecified
28773                                                                                           unspecified
28780                                                                                              114, 136
28806                                                                           based on weight (45-88 lbs)
28809                                                                          based on weight (51-100 lbs)
28819                                                                                           unspecified
28826                                                                                                 spray
28829                                                                                           application
28855                                                                                           unspecified
28873                                                                           based on weight (44-88 lbs)
28874                                                                          based on weight (51-100 lbs)
28882                                                                           based on weight (24-60 lbs)
28883                                                                           based on weight (20-60 lbs)
28884                                                                                       based on weight
28888                                                                           based on weight (24-60 lbs)
28897                                                                          based on weight (51-100 lbs)
28899                                                                          based on weight (50-100 lbs)
28904                                                                          based on weight (51-100 lbs)
28907                                                                         based on weight (24.1-60 lbs)
28934                                                                                           unspecified
28939                                                                                               23, 460
28940                                                                            1.5 tablets/pills/capsules
28941                                                                                          small amount
28946                                                                                          small amount
28979                                                                                       based on weight
28980                                                                                       based on weight
28982                                                                          based on weight (51-100 lbs)
28986                                                                           based on weight (40-60 lbs)
28987                                                                           based on weight (40-60 lbs)
29000                                                                           based on weight (40-85 lbs)
29007                                                                           based on weight (44-88 lbs)
29015                                                                                       moderate amount
29022                                                                                           unspecified
29023                                                                                           unspecified
29036                                                                                                 drops
29039                                                                                           unspecified
29040                                                                                           unspecified
29043                                                                                           unspecified
29050                                                                                                 spray
29053                                                                                          small amount
29056                                                                          based on weight (60-120 lbs)
29060                                                                                           unspecified
29064                                                                          based on weight (60-120 lbs)
29067                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29070                                                                                      0.125 inch strip
29071                                                                                          small amount
29072                                                                                       0.25 inch strip
29073                                                                                          small amount
29075                                                                                          small amount
29078                                                                                         1 tube - 4 ml
29079                                                                                          1 inch strip
29081                                                                                       0.25 inch strip
29083                                                                                        1 pack/package
29086                                                              27 mg milbemycin oxime, 1620 mg spinosad
29087                                                              27 mg milbemycin oxime, 1620 mg spinosad
29091                                                              27 mg milbemycin oxime, 1620 mg spinosad
29095                                                                        based on weight (60.1-120 lbs)
29096                                                                        based on weight (60.1-121 lbs)
29098                                                                                                    ml
29099                                                                                                    ml
29103                                                                                          10 ucg/kg/hr
29104                                                                                        1021 mcg/kg/hr
29108                                                                                           unspecified
29136                                                                          based on weight (50-100 lbs)
29139                                                                                          small amount
29143                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
29151                                                                           based on weight (40-88 lbs)
29153                                                                                           unspecified
29161                                                                                           application
29166                                                                            based on weight (74.1 lbs)
29184                                                                              based on weight (64 lbs)
29196                                                                                       0.25 inch strip
29197                                                                                           unspecified
29220                                                                                          small amount
29232                                                                                           unspecified
29234                                                                                           unspecified
29235                                                                                           unspecified
29244                                                                                           unspecified
29245                                                                                           unspecified
29248                                                                                           unspecified
29283                                                                                           unspecified
29285                                                                                           unspecified
29291                                                                                                 spray
29298                                                              460 mg lufenuron, 23 mg milbemycin oxime
29313                                                                                           unspecified
29315                                                                          based on weight (51-100 lbs)
29321                                                                                          small amount
29324                                                                                           unspecified
29327                                                                                           unspecified
29328                                                                          based on weight (51-100 lbs)
29340                                                                                           application
29342                                                                                       moderate amount
29374                                                                                               23, 460
29375                                                                                           unspecified
29376                                                                                           unspecified
29377                                                                                       based on weight
29378                                                                                           unspecified
29379                                                                                           unspecified
29380                                                                                           unspecified
29381                                                                                           unspecified
29382                                                                          based on weight (51-100 lbs)
29383                                                                           based on weight (21-55 lbs)
29395                                                                                              5, 162.5
29404                                                                                           unspecified
29405                                                                                           unspecified
29406                                                                                           unspecified
29428                                                                                                  1 au
29438                                                                                          small amount
29446                                                                                           unspecified
29447                                                                                           unspecified
29453                                                                                           unspecified
29469                                                                          based on weight (51-100 lbs)
29470                                                                                       based on weight
29471                                                                                           application
29479                                                                          based on weight (51-100 lbs)
29480                                                                          based on weight (51-100 lbs)
29481                                                                          based on weight (51-100 lbs)
29482                                                                          based on weight (51-100 lbs)
29483                                                                         based on weight (44.1-88 lbs)
29490                                                                          based on weight (51-100 lbs)
29500                                                                                        1 pack/package
29501                                                                          based on weight (51-100 lbs)
29502                                                                        based on weight (50.1-100 lbs)
29504                                                                          based on weight (50-100 lbs)
29505                                                                           based on weight (45-88 lbs)
29511                                                                           based on weight (45-88 lbs)
29525                                                                                   tablet/pill/capsule
29526                                                                                           application
29531                                                                          based on weight (51-100 lbs)
29532                                                                           based on weight (45-88 lbs)
29533                                                                          based on weight (51-100 lbs)
29534                                                                             based on weight (55+ lbs)
29535                                                                                                  tube
29536                                                                          based on weight (51-100 lbs)
29537                                                                                           unspecified
29538                                                                          based on weight (51-100 lbs)
29539                                                                             based on weight (55+ lbs)
29540                                                                          based on weight (51-100 lbs)
29567                                                                          based on weight (51-100 lbs)
29568                                                                                           unspecified
29572                                                                                           unspecified
29573                                                                                           unspecified
29574                                                                                           as directed
29575                                                                                           unspecified
29580                                                                          based on weight (51-100 lbs)
29588                                                                          based on weight (51-100 lbs)
29608                                                                           based on weight (44-88 lbs)
29617                                                                                           unspecified
29633                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
29662                                                                                           unspecified
29666                                                                                           unspecified
29669                                                                                           unspecified
29670                                                                                           unspecified
29678                                                                    0.5 tablet/pill/capsule - 125, 500
29700                                                                             based on weight (55+ lbs)
29705                                                                             based on weight (55+ lbs)
29707                                                                             based on weight (55+ lbs)
29709                                                                             based on weight (55+ lbs)
29715                                                                                       based on weight
29716                                                                                       based on weight
29719                                                                                       based on weight
29720                                                                                       based on weight
29722                                                                                       based on weight
29724                                                                                       based on weight
29726                                                                                       based on weight
29734                                                                                               23, 460
29736                                                                          based on weight (51-100 lbs)
29744                                                                          based on weight (51-100 lbs)
29749                                                                                           6 mg, 15 mg
29753                                                                          based on weight (51-100 lbs)
29764                                                                                           unspecified
29765                                                                                           unspecified
29767                                                                          based on weight (51-100 lbs)
29770                                                                          based on weight (51-100 lbs)
29794                                                                                           unspecified
29798                                                                based on weight (51-100 lbs) - 272 mcg
29799                                                                based on weight (51-100 lbs) - 272 mcg
29800                                                               based on weight (60.1-121 lbs) - 136 mg
29801                                                                                              wipe/pad
29802                                                                based on weight (51-100 lbs) - 272 mcg
29803                                                               based on weight (60.1-121 lbs) - 136 mg
29822                                                                          based on weight (51-100 lbs)
29823                                                                          based on weight (60-120 lbs)
29824                                                                          based on weight (51-100 lbs)
29825                                                                        based on weight (60.1-121 lbs)
29827                                                                                             3-4 drops
29829                                                                                             1-2 pumps
29831                                                                                                 drops
29838                                                                                           unspecified
29839                                                                                           unspecified
29840                                                                                           unspecified
29847                                                                                                 drops
29858                                                                                           unspecified
29862                                                                                              27, 1620
29865                                                                                              37, 1620
29880                                                                          based on weight (51-100 lbs)
29882                                                                          based on weight (51-100 lbs)
29883                                                                          based on weight (60-121 lbs)
29940                                                                          based on weight (50-100 lbs)
29941                                                                          based on weight (50-100 lbs)
29948                                                                                           unspecified
29954                                                                          based on weight (51-100 lbs)
29955                                                                             based on weight (55+ lbs)
29956                                                                          based on weight (51-100 lbs)
29957                                                                             based on weight (55+ lbs)
29963                                                                             based on weight (55+ lbs)
29964                                                                          based on weight (51-100 lbs)
29966                                                                                           unspecified
29969                                                                             based on weight (55+ lbs)
29970                                                                          based on weight (51-100 lbs)
29978                                                                          based on weight (51-100 lbs)
29990                                                                                       based on weight
29991                                                                                               23, 460
29993                                                                                               23, 460
30001                                                                                           unspecified
30048                                                                                           unspecified
30070                                                                                       0.25 inch strip
30075                                                                           based on weight (45-88 lbs)
30076                                                                           based on weight (26-50 lbs)
30081                                                                          based on weight (50-100 lbs)
30082                                                                          based on weight (50-100 lbs)
30083                                                                          based on weight (51-100 lbs)
30099                                                                          based on weight (51-100 lbs)
30104                                                                                           unspecified
30105                                                                                           unspecified
30131                                                                                           unspecified
30132                                                                                           unspecified
30138                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30142                                                                          based on weight (60-120 lbs)
30143                                                                                          small amount
30162                                                                                           unspecified
30165                                                                                              27, 1620
30166                                                                                               23, 460
30169                                                                                          small amount
30172                                                                                               23, 460
30174                                                                                               23, 460
30178                                                                                       0.25 inch strip
30179                                                                                           unspecified
30185                                                                          based on weight (50-100 lbs)
30191                                                                      1 tablet/pill/capsule - 27, 1620
30192                                                                                              27, 1620
30193                                                                                              27, 1620
30198                                                                                           unspecified
30211                                                                          based on weight (51-100 lbs)
30212                                                                         based on weight (44.1-88 lbs)
30214                                                                           based on weight (56-95 lbs)
30218                                                                           based on weight (44-88 lbs)
30221                                                                          based on weight (51-100 lbs)
30239                                                            230 mg lufenuron, 11.5 mg milbemycin oxime
30241                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30242                                                                          based on weight (50-100 lbs)
30246                                                                                           unspecified
30263                                                                          based on weight (51-100 lbs)
30264                                                                           based on weight (44-88 lbs)
30268                                                                          based on weight (51-100 lbs)
30269                                                                           based on weight (45-88 lbs)
30270                                                                          based on weight (51-100 lbs)
30274                                                                          based on weight (51-100 lbs)
30277                                                                          based on weight (51-100 lbs)
30286                                                                          based on weight (51-100 lbs)
30298                                                                          based on weight (51-100 lbs)
30299                                                                          based on weight (51-100 lbs)
30300                                                                                         1 bottle/vial
30310                                                                          based on weight (51-100 lbs)
30311                                                                                       0.25 inch strip
30312                                                                                                 spray
30313                                                                          based on weight (51-100 lbs)
30317                                                                                           application
30319                                                                                           application
30327                                                                                           unspecified
30329                                                                                           unspecified
30337                                                                                           unspecified
30338                                                                                           unspecified
30344                                                                          based on weight (51-100 lbs)
30347                                                                          based on weight (60-120 lbs)
30351                                                                           based on weight (44-88 lbs)
30352                                                                          based on weight (51-100 lbs)
30355                                                                                          small amount
30357                                                                                                 spray
30360                                                                                        1 pack/package
30361                                                                              2 tablets/pills/capsules
30371                                                                          based on weight (51-100 lbs)
30372                                                                                       based on weight
30373                                                                                       based on weight
30374                                                                                       based on weight
30375                                                                                       based on weight
30376                                                                          based on weight (51-100 lbs)
30377                                                                                           unspecified
30378                                                                                           unspecified
30385                                                                          based on weight (51-100 lbs)
30387                                                                             based on weight (60+ lbs)
30388                                                                              2 tablets/pills/capsules
30389                                                                                           application
30395                                                                             based on weight (60+ lbs)
30396                                                                             based on weight (<60 lbs)
30404                                                                          based on weight (51-100 lbs)
30405                                                                             based on weight (55+ lbs)
30406                                                                          based on weight (51-100 lbs)
30418                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
30450                                                                                           unspecified
30464                                                                                           unspecified
30471                                                                                               23, 228
30479                                                                             based on weight (55+ lbs)
30480                                                                          based on weight (51-100 lbs)
30483                                                                             based on weight (55+ lbs)
30484                                                                                           unspecified
30485                                                                                           unspecified
30492                                                              460 mg lufenuron, 23 mg milbemycin oxime
30496                                                                                           unspecified
30515                                                                          based on weight (51-100 lbs)
30528                                                                                               23, 460
30529                                                                                             4-5 drops
30536                                                                                             4-5 drops
30590                                                                           based on weight (40-60 lbs)
30604                                                                         based on weight (40-60.1 lbs)
30623                                                                                                 drops
30644                                       1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
30685                                                                                           unspecified
30689                                                                                           unspecified
30692                                                                                          small amount
30701                                                                           based on weight (44-88 lbs)
30702                                                                                               23, 460
30707                                                                           based on weight (44-88 lbs)
30708                                                                          based on weight (51-100 lbs)
30709                                                                          based on weight (51-100 lbs)
30710                                                                           based on weight (44-88 lbs)
30713                                                                                           unspecified
30714                                                                                           unspecified
30717                                                                                           unspecified
30753                                                                          based on weight (50-100 lbs)
30754                                                                           based on weight (20-50 lbs)
30756                                                                           based on weight (21-55 lbs)
30757                                                                           based on weight (22-55 lbs)
30764                                                              27 mg milbemycin oxime, 1620 mg spinosad
30768                                                                          based on weight (51-100 lbs)
30769                                                                                           unspecified
30779                                                                          based on weight (51-100 lbs)
30796                                                                             based on weight (50+ lbs)
30797                                                                             based on weight (60+ lbs)
30799                                                                          based on weight (51-100 lbs)
30803                                                                                           unspecified
30813                                                                          based on weight (51-100 lbs)
30817                                                                                              1 collar
30819                                                                           based on weight (56-95 lbs)
30820                                                                          based on weight (51-100 lbs)
30821                                                                              2 tablets/pills/capsules
30822                                                                              2 tablets/pills/capsules
30823                                                                             based on weight (61+ lbs)
30824                                                                                           unspecified
30826                                                                          based on weight (55-100 lbs)
30833                                                                          based on weight (55-100 lbs)
30834                                                                                                  tube
30840                                                                                          100/10 gm/dm
30844                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
30876                                                                                       based on weight
30877                                                                                       based on weight
30901                                                                                      0.125 inch strip
30909                                                                          based on weight (50-100 lbs)
30917                                                                                           unspecified
30920                                                                          based on weight (50-100 lbs)
30936                                                                                           unspecified
30943                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
30945                                                                                               23, 460
30947                                                                          based on weight (51-100 lbs)
30948                                                                          based on weight (88-123 lbs)
30949                                                                                               23, 460
30953                                                                                           unspecified
30963                                                                         1 tablet/pill/capsule - 75 mg
30998                                                                             based on weight (55+ lbs)
31000                                                                              based on weight (59 lbs)
31001                                                                              based on weight (59 lbs)
31003                                                                              based on weight (59 lbs)
31004                                                                             based on weight (55+ lbs)
31010                                                                          based on weight (50-100 lbs)
31011                                                                             based on weight (55+ lbs)
31022                                                                          based on weight (51-100 lbs)
31023                                                                           based on weight (44-88 lbs)
31034                                                                          based on weight (50-100 lbs)
31043                                                                                     1 syringe/pipette
31046                                                                        based on weight (50.1-100 lbs)
31089                                                                                       based on weight
31094                                                           23 mg milbemycin oxime, 228 mg praziquantel
31095                                                                               0.5 tablet/pill/capsule
31096                                                                          based on weight (51-100 lbs)
31105                                                                          based on weight (51-100 lbs)
31132                                                                                           application
31133                                                                          based on weight (51-100 lbs)
31134                                                                          based on weight (60-120 lbs)
31135                                                                          based on weight (51-100 lbs)
31139                                                                        based on weight (60.1-121 lbs)
31148                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31149                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31152                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31154                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31183                                                                           based on weight (44-88 lbs)
31186                                                                                           unspecified
31195                                                                                          23, 228, 460
31196                                                                                           unspecified
31197                                                                                        1 pack/package
31198                                                                                              1.5-2 mg
31203                                                                                   tablet/pill/capsule
31209                                                                                           unspecified
31228                                                                                           as directed
31232                                                                                                varies
31234                                                                    8.8% (s)-methoprene, 9.8% fipronil
31247                                                           23 mg milbemycin oxime, 228 mg praziquantel
31248                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31249                                                           23 mg milbemycin oxime, 228 mg praziquantel
31250                                                8.8% (s)-methoprene, 9.8% fipronil, 0.25% pyriproxyfen
31260                                                                          based on weight (51-100 lbs)
31263                                                                          based on weight (51-100 lbs)
31265                                                                                       based on weight
31268                                                                                           as directed
31297                                                                           based on weight (40-85 lbs)
31299                                                                          based on weight (85-130 lbs)
31300                                                                          based on weight (50-100 lbs)
31301                                                                           based on weight (44-88 lbs)
31303                                                                                     120 mg/ml, 360 mg
31307                                                                             based on weight (55+ lbs)
31308                                                                          based on weight (51-100 lbs)
31309                                                                        based on weight (85.1-130 lbs)
31317                                                                                           unspecified
31322                                                              27 mg milbemycin oxime, 1620 mg spinosad
31328                                                                                           unspecified
31350                                                                                           unspecified
31353                                                                                              10-20 mg
31356                                                                                          small amount
31357                                                                          based on weight (51-100 lbs)
31358                                                                          based on weight (60-121 lbs)
31359                                                                          based on weight (61-100 lbs)
31360                                                                           based on weight (60-80 lbs)
31361                                                                          based on weight (51-100 lbs)
31365                                                                          based on weight (50-100 lbs)
31366                                                                          based on weight (60-121 lbs)
31367                                                                                          small amount
31369                                                     2% chlorhexidine gluconate, 2% miconazole nitrate
31370                                                                                           application
31371                                                                                          small amount
31373                                                                          based on weight (51-100 lbs)
31374                                                                                           as directed
31375                                                                          based on weight (51-100 lbs)
31383                                                                           based on weight (26-50 lbs)
31384                                                                           based on weight (40-60 lbs)
31385                                                                           based on weight (24-60 lbs)
31386                                                                           based on weight (26-50 lbs)
31408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31423                                                                                           unspecified
31434                                                                                           unspecified
31437                                                                                           unspecified
31438                                                                                           unspecified
31439                                                                                            8-10 drops
31440                                                                             based on weight (50+ lbs)
31441                                                                          based on weight (51-100 lbs)
31446                                                                                           application
31447                                                                                          small amount
31449                                                                          based on weight (51-100 lbs)
31450                                                                         based on weight (24.1-60 lbs)
31452                                                                                           application
31457                                                                                           unspecified
31463                                                                                           unspecified
31471                                                                                           unspecified
31502                                                                           based on weight (26-50 lbs)
31503                                                                          based on weight (60-120 lbs)
31504                                                                           based on weight (45-88 lbs)
31506                                                                          based on weight (60-121 lbs)
31508                                                                           based on weight (45-88 lbs)
31528                                                                          based on weight (60-121 lbs)
31529                                                                           based on weight (26-50 lbs)
31531                                                                          based on weight (60-121 lbs)
31539                                                                                       syringe/pipette
31542                                                                                           unspecified
31548                                                                                           unspecified
31551                                                                                           unspecified
31552                                                                           based on weight (45-88 lbs)
31553                                                                           based on weight (45-88 lbs)
31602                                                                          based on weight (51-100 lbs)
31611                                                                                          small amount
31612                                                          100 mg flunixin, 8 ml fluocinolone acetonide
31616                                                                                  90 mg dha, 75 mg epa
31617                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31618                                                                        based on weight (60.1-121 lbs)
31619                                                        1 tablet/pill/capsule - 100 mg dha, 155 mg epa
31637                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31640                                                                                          small amount
31643                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31644                                                                     based on weight (60 lbs) - 2.7 mg
31645                                                                                          small amount
31646                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
31647                                                    based on weight (60.1-121 lbs) - 136 mg afoxolaner
31653                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31655                                                                                           unspecified
31656                                                                                           unspecified
31657                                                                                           unspecified
31665                                                                          based on weight (51-100 lbs)
31666                                                                             based on weight (60+ lbs)
31678                                                                          based on weight (51-100 lbs)
31680                                                                          based on weight (51-100 lbs)
31688                                                                          based on weight (51-100 lbs)
31689                                                                             based on weight (60+ lbs)
31696                                                                                           unspecified
31707                                                                          based on weight (51-100 lbs)
31713                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31716                                                                                               23, 460
31725                                                                                          small amount
31726                                                                                       based on weight
31730                                                                                           unspecified
31731                                                                                           unspecified
31734                                                                          based on weight (51-100 lbs)
31735                                                                             based on weight (55+ lbs)
31736                                                                                        1 pack/package
31737                                                                           based on weight (41-70 lbs)
31742                                                                                           unspecified
31747                                                                          based on weight (51-100 lbs)
31748                                                                                           unspecified
31760                                                                          based on weight (51-100 lbs)
31761                                                                             based on weight (10+ lbs)
31762                                                                          based on weight (51-100 lbs)
31768                                                                                       based on weight
31769                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31771                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31773                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31774                                                                                           application
31777                                                                          based on weight (51-100 lbs)
31780                                                                                         23 mg, 469 mg
31781                                                                                               23, 228
31798                                                                          based on weight (51-100 lbs)
31803                                                                                       based on weight
31804                                                                          based on weight (60-121 lbs)
31807                                                                           based on weight (45-88 lbs)
31808                                                                          based on weight (51-100 lbs)
31826                                                                                                 spray
31833                                                                                           unspecified
31834                                                                                           unspecified
31836                                                                                           unspecified
31837                                                                                           unspecified
31840                                                                          based on weight (51-100 lbs)
31841                                                                              based on weight (40 lbs)
31843                                                                                       based on weight
31844                                                                                       based on weight
31846                                                                                                collar
31847                                                                          based on weight (51-100 lbs)
31849                                                                                       moderate amount
31850                                                                                           unspecified
31853                                                                           based on weight (45-88 lbs)
31861                                                           23 mg milbemycin oxime, 228 mg praziquantel
31864                                                                 25 milbemycin oxime, 228 praziquantel
31866                                                                 25 milbemycin oxime, 228 praziquantel
31868                                                                          based on weight (51-100 lbs)
31869                                                                          based on weight (51-100 lbs)
31874                                                                          based on weight (50-100 lbs)
31876                                                                                          small amount
31880                                                                                              160, 800
31888                                                                                           application
31891                                                                          based on weight (51-100 lbs)
31892                                                                          based on weight (60-121 lbs)
31895                                                                          based on weight (50-100 lbs)
31896                                                                          based on weight (60-121 lbs)
31898                                                                          based on weight (60-121 lbs)
31907                                                                           based on weight (44-88 lbs)
31908                                                                          based on weight (51-100 lbs)
31909                                                                          based on weight (51-100 lbs)
31911                                                                          based on weight (51-100 lbs)
31916                                                                          based on weight (51-100 lbs)
31937                                                                                             13.5, 810
31938                                                                                               23, 460
31939                                                                                               23, 460
31940                                                                                               23, 460
31941                                                                                               23, 460
31942                                                                                           unspecified
31946                                                                             based on weight (50+ lbs)
31947                                                                          based on weight (51-100 lbs)
31948                                                                           based on weight (44-88 lbs)
31953                                                                                           unspecified
31954                                                                           based on weight (44-88 lbs)
31955                                                                          based on weight (51-100 lbs)
31968                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
31985                                                                                           unspecified
31990                                                                          based on weight (51-100 lbs)
32002                                                                          based on weight (51-100 lbs)
32006                                                                                               10, 100
32015                                                                                                  tube
32016                                                                                   tablet/pill/capsule
32020                                                                          based on weight (51-100 lbs)
32025                                                                                           unspecified
32032                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32035                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
32040                                                                             based on weight (100 lbs)
32046                                                                                           unspecified
32053                                                                          based on weight (51-100 lbs)
32054                                                                           based on weight (45-88 lbs)
32055                                                                           based on weight (45-88 lbs)
32056                                                                          based on weight (50-100 lbs)
32057                                                                          based on weight (60-121 lbs)
32058                                                                          based on weight (51-100 lbs)
32074                                                                                          small amount
32076                                                                          based on weight (51-100 lbs)
32079                                                                        based on weight (60.1-121 lbs)
32080                                                                                       based on weight
32084                                                                                       0.25 inch strip
32095                                                                           based on weight (44-88 lbs)
32097                                                                          based on weight (51-100 lbs)
32098                                                                          based on weight (50-100 lbs)
32099                                                                           based on weight (44-88 lbs)
32100                                                                          based on weight (50-100 lbs)
32101                                                                         based on weight (44.1-88 lbs)
32102                                                                           based on weight (44-88 lbs)
32103                                                                          based on weight (50-100 lbs)
32105                                                                          based on weight (50-100 lbs)
32106                                                                           based on weight (44-88 lbs)
32108                                                                                       based on weight
32114                                                                     4.5% flumethrin, 10% imidacloprid
32116                                                                     4.5% flumethrin, 10% imidacloprid
32119                                                                                           unspecified
32121                                                                                       based on weight
32122                                                                                       based on weight
32123                                                                                           unspecified
32128                                                                                       based on weight
32129                                                                                       based on weight
32168                                                                                          small amount
32171                                                                                          small amount
32175                                                                                          small amount
32179                                                                          based on weight (51-100 lbs)
32180                                                                          based on weight (60-120 lbs)
32183                                                                                           unspecified
32184                                                                                           unspecified
32187                                                                                           unspecified
32196                                                                                           unspecified
32222                                                                        based on weight (50.1-100 lbs)
32233                                                                        based on weight (50.1-100 lbs)
32234                                                                           based on weight (44-88 lbs)
32236                                                                          based on weight (51-100 lbs)
32237                                                                           based on weight (24-60 lbs)
32266                                                                                          small amount
32276                                                                                           unspecified
32290                                                                                              inhalant
32297                                                                           based on weight (45-88 lbs)
32310                                                                                                 spray
32312                                                                          based on weight (51-100 lbs)
32313                                                                           based on weight (44-88 lbs)
32315                                                                                          1 inch strip
32320                                                                                              inhalant
32343                                                                                           unspecified
32358                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
32359                                                                           based on weight (45-88 lbs)
32360                                                                          based on weight (51-100 lbs)
32362                                                                          based on weight (50-100 lbs)
32363                                                                                           unspecified
32370                                                                                           unspecified
32390                                                                                       based on weight
32393                                                                                                 mg/kg
32394                                                                           based on weight (44-88 lbs)
32425                                                                           based on weight (45-88 lbs)
32426                                                                          based on weight (51-100 lbs)
32427                                                                        based on weight (50.1-100 lbs)
32445                                                                                           unspecified
32447                                                                                           unspecified
32448                                                                                           unspecified
32449                                                                                           unspecified
32460                                                                                               5-10 mg
32463                                                                                           unspecified
32464                                                                                           unspecified
32466                                                                          based on weight (51-100 lbs)
32467                                                                         based on weight (44.1-88 lbs)
32477                                                                          based on weight (51-100 lbs)
32478                                                                         based on weight (44.1-88 lbs)
32504                                                                          based on weight (50-100 lbs)
32505                                                                             based on weight (56+ lbs)
32507                                                                                           application
32509                                                                          based on weight (50-100 lbs)
32510                                                                             based on weight (56+ lbs)
32512                                                                                           bottle/vial
32513                                                                                           unspecified
32520                                                                                           10-15 drops
32529                                                                          based on weight (51-100 lbs)
32530                                                                          based on weight (51-100 lbs)
32535                                                                          based on weight (51-100 lbs)
32536                                                                           based on weight (44-88 lbs)
32538                                                                                       moderate amount
32542                                                                                           unspecified
32557                                                                                       136 mcg, 114 mg
32558                                                                           based on weight (45-88 lbs)
32561                                                                          based on weight (50-100 lbs)
32562                                                                                       based on weight
32575                                                                                           unspecified
32576                                                                                           unspecified
32629                                                                                           unspecified
32631                                                                          based on weight (51-100 lbs)
32633                                                                                           unspecified
32635                                                                                           application
32642                                                                        based on weight (50.1-100 lbs)
32643                                                                          based on weight (50-100 lbs)
32652                                                                                           unspecified
32654                                                                                           unspecified
32664                                                                          based on weight (51-100 lbs)
32670                                                                                               57, 460
32672                                                                                       moderate amount
32673                                                                                              272, 228
32678                                                                                             25.3, 506
32680                                                                                         23 mg, 460 mg
32682                                                                                               23, 460
32685                                                                                               23, 460
32694                                                                                                 spray
32698                                                                          based on weight (60-120 lbs)
32726                                                                                           unspecified
32737                                                                                           unspecified
32739                                                                                           unspecified
32742                                                                          based on weight (50-100 lbs)
32743                                                                          based on weight (50-100 lbs)
32750                                                                             based on weight (50+ lbs)
32751                                                                           based on weight (24-60 lbs)
32767                                                                                           unspecified
32769                                                                              based on weight (54 lbs)
32777                                                                                           unspecified
32798                                                                                         1 bottle/vial
32815                                                                                          small amount
32829                                                                          based on weight (89-132 lbs)
32841                                                                                                 spray
32844                                                                                              125, 500
32849                                                                                           unspecified
32850                                                                                           unspecified
32856                                                                    8.8% (s)-methoprene, 9.8% fipronil
32857                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32858                                                                           based on weight (60-80 lbs)
32859                                                                           based on weight (60-80 lbs)
32862                                                                           based on weight (44-88 lbs)
32863                                                                                                 drops
32869                                                                           based on weight (44-88 lbs)
32870                                                                           based on weight (44-88 lbs)
32871                                                                                           unspecified
32879                                                                                           unspecified
32883                                                                          based on weight (50-100 lbs)
32884                                                                                       500, 1250, 2500
32887                                                                                           unspecified
32888                                                                                           unspecified
32903                                                                                                  3 au
32923                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
32930                                                                        based on weight (50.1-100 lbs)
32937                                                                              based on weight (66 lbs)
32938                                                                          based on weight (51-100 lbs)
32940                                                                                           application
32942                                                                          based on weight (51-100 lbs)
32943                                                                           based on weight (44-88 lbs)
32944                                                                        based on weight (60.1-121 lbs)
32949                                                                                          small amount
32950                                                                                           as directed
32951                                                                          based on weight (51-100 lbs)
32952                                                                          based on weight (60-121 lbs)
32954                                                                                              125, 500
32955                                                                          based on weight (51-100 lbs)
32956                                                                        based on weight (60.1-121 lbs)
32964                                                                                           unspecified
32965                                                                                           unspecified
32999                                                                          based on weight (51-100 lbs)
33004                                                                          based on weight (51-100 lbs)
33008                                                                             based on weight (55+ lbs)
33009                                                                          based on weight (51-100 lbs)
33010                                                                          based on weight (50-100 lbs)
33011                                                                           based on weight (24-60 lbs)
33015                                                                              based on weight (30 lbs)
33023                                                                                       based on weight
33043                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33047                                                                                              125, 875
33066                                                                           based on weight (40-85 lbs)
33068                                                                         based on weight (40.1-85 lbs)
33073                                                                                           unspecified
33078                                                                          based on weight (51-100 lbs)
33081                                                                          based on weight (51-100 lbs)
33085                                                                           based on weight (56-95 lbs)
33086                                                                          based on weight (51-100 lbs)
33087                                                                           based on weight (56-95 lbs)
33088                                                                          based on weight (51-100 lbs)
33089                                                                           based on weight (56-95 lbs)
33090                                                                          based on weight (50-100 lbs)
33091                                                                           based on weight (56-95 lbs)
33092                                                                          based on weight (50-100 lbs)
33096                                                                                           unspecified
33107                                                                          based on weight (51-100 lbs)
33110                                                                          based on weight (51-100 lbs)
33113                                                                          based on weight (51-100 lbs)
33124                                                                                          small amount
33126                                                                                          small amount
33128                                                                                           unspecified
33132                                                                          based on weight (60-120 lbs)
33133                                                                          based on weight (51-100 lbs)
33138                                                                          based on weight (51-100 lbs)
33157                                                                                           unspecified
33159                                                                                           unspecified
33166                                                                           based on weight (45-80 lbs)
33187                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33190                                                             13.5 mg milbemycin oxime, 810 mg spinosad
33191                                                                                           unspecified
33209                                                                                                 spray
33211                                                                          based on weight (51-100 lbs)
33220                                                                          based on weight (45-120 lbs)
33222                                                                          based on weight (51-100 lbs)
33226                                                                                   tablet/pill/capsule
33227                                                                                        1 pack/package
33229                                                                           based on weight (56-95 lbs)
33230                                                                          based on weight (51-100 lbs)
33233                                                                                        1 pack/package
33235                                                                           based on weight (56-95 lbs)
33236                                                                                         1 bottle/vial
33239                                                                                        1 pack/package
33242                                                                          based on weight (51-100 lbs)
33271                                                                                           unspecified
33286                                                                                       based on weight
33289                                                                                       based on weight
33292                                                                                   tablet/pill/capsule
33293                                                                                           bottle/vial
33318                                                                    8.8% (s)-methoprene, 9.8% fipronil
33333                                                                                         23 mg, 460 mg
33335                                                                                         23 mg, 460 mg
33336                                                                          based on weight (51-100 lbs)
33347                                                                                           unspecified
33354                                                                                                  tube
33355                                                                                           bottle/vial
33358                                                                                           unspecified
33363                                                                          based on weight (51-100 lbs)
33364                                                                           based on weight (44-88 lbs)
33370                                                                                           unspecified
33374                                                                                           unspecified
33375                                                                                           unspecified
33376                                                                                           unspecified
33377                                                                                           unspecified
33385                                                                                           unspecified
33387                                                                                           unspecified
33389                                                                                           unspecified
33410                                                                          based on weight (51-100 lbs)
33411                                                                             based on weight (30+ lbs)
33412                                                                          based on weight (51-100 lbs)
33414                                                                             based on weight (18+ lbs)
33456                                                                                           unspecified
33468                                                                                           unspecified
33471                                                                                           unspecified
33479                                                                          based on weight (60-120 lbs)
33480                                                                          based on weight (50-100 lbs)
33482                                                                                           unspecified
33489                                                                                           unspecified
33490                                                                                               23, 460
33491                                                                                               23, 460
33492                                                                                               23, 460
33493                                                                                               23, 460
33499                                                                                           unspecified
33539                                                                                           unspecified
33541                                                                                                collar
33542                                                                                             6-8 drops
33543                                                                                                collar
33544                                                                                                collar
33576                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33580                                                                                   tablet/pill/capsule
33581                                                                                                  tube
33582                                                                     2 tablets/pills/capsules - 100 mg
33583                                                                              3 tablets/pills/capsules
33590                                                                                           unspecified
33591                                                                          based on weight (51-100 lbs)
33592                                                                          based on weight (51-100 lbs)
33614                                                                                           unspecified
33644                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
33645                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33647                                                                                             6-8 drops
33649                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33651                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33655                                             based on weight (25-50 lbs), based on weight (50-100 lbs)
33684                                                                                           unspecified
33690                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33696                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33702                                                                                           unspecified
33706                                                                                               23, 460
33714                                                                          based on weight (50-100 lbs)
33717                                                                                           as directed
33722                                                                                           application
33723                                                                          based on weight (50-100 lbs)
33724                                                                          based on weight (50-100 lbs)
33725                                                                           based on weight (44-88 lbs)
33737                                                                                           unspecified
33740                                                                          based on weight (60-120 lbs)
33756                                                                                             1-2 drops
33767                                                                                               23, 228
33797                                                                             based on weight (55+ lbs)
33798                                                                          based on weight (51-100 lbs)
33804                                                                          based on weight (51-100 lbs)
33805                                                                             based on weight (55+ lbs)
33815                                                                                           unspecified
33824                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33828                                   1 isoflupredone acetate, 5 neomycin sulfate, unspecified tetracaine
33844                                                                                           unspecified
33868                                                                          based on weight (51-100 lbs)
33869                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
33870                                                                          based on weight (51-100 lbs)
33890                                                                                           unspecified
33894                                                                                          small amount
33901                                                                                           unspecified
33907                                                                                                 spray
33911                                                                           based on weight (44-88 lbs)
33916                                                                                             injection
33919                                                                                          small amount
33927                                                                                         1 application
33939                                                                                          small amount
33940                                                                                          small amount
33991                                                                                          small amount
33994                                                                                           application
33998                                                                                          small amount
34003                                                                                           application
34005                                                                                           unspecified
34011                                                                                           unspecified
34012                                                                                           unspecified
34014                                                                                           unspecified
34016                                                                                           unspecified
34022                                                                                           unspecified
34024                                                                                           unspecified
34029                                                                                           unspecified
34030                                                                          based on weight (51-100 lbs)
34043                                                                          based on weight (50-100 lbs)
34046                                                                           based on weight (44-88 lbs)
34048                                                                          based on weight (51-100 lbs)
34049                                                                             based on weight (50+ lbs)
34051                                                                          based on weight (51-100 lbs)
34053                                                                          based on weight (51-100 lbs)
34054                                                                                       based on weight
34069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34073                                                                                             1-2 drops
34074                                                                                              114, 136
34075                                                                                       0.22, 1.1, 0.01
34077                                                                          based on weight (51-100 lbs)
34087                                                                        based on weight (60.1-120 lbs)
34090                                                                                       moderate amount
34091                                                                          based on weight (51-100 lbs)
34093                                                                                              1 collar
34094                                                                                       moderate amount
34095                                                                        based on weight (60.1-120 lbs)
34096                                                                          based on weight (50-100 lbs)
34107                                                                           based on weight (45-88 lbs)
34108                                                                          based on weight (51-100 lbs)
34109                                                                                          pack/package
34111                                                                          based on weight (51-100 lbs)
34113                                                                                                  tube
34125                                                                          based on weight (55-100 lbs)
34126                                                                          based on weight (51-100 lbs)
34128                                                                                            1-2 sprays
34132                                                                          based on weight (51-100 lbs)
34134                                                                          based on weight (51-100 lbs)
34135                                                                           based on weight (56-95 lbs)
34138                                                                                        1 pack/package
34140                                                    350 mg chondroitin sulfate, 900 mg glucosamine hcl
34147                                                                          based on weight (51-100 lbs)
34148                                                                          based on weight (60-121 lbs)
34152                                                                                          small amount
34155                                                                                           unspecified
34156                                                                                           unspecified
34157                                                                                           unspecified
34161                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34227                                                                                           unspecified
34230                                                                                           unspecified
34231                                                                                           unspecified
34232                                                                                           unspecified
34233                                                                                           unspecified
34234                                                                                           unspecified
34235                                                                                           unspecified
34238                                                                                       based on weight
34239                                                                              based on weight (66 lbs)
34240                                                                                       based on weight
34241                                                                                       based on weight
34242                                                                          based on weight (50-100 lbs)
34243                                                                                       based on weight
34246                                                                              based on weight (70 lbs)
34247                                                                              based on weight (70 lbs)
34249                                                                              based on weight (50 lbs)
34254                                                                          based on weight (51-100 lbs)
34260                                                                                             62.5, 437
34262                                                                                               23, 460
34264                                                                                             62.5, 437
34267                                                                          based on weight (51-100 lbs)
34268                                                                          based on weight (51-100 lbs)
34269                                                                                           unspecified
34327                                                                                           unspecified
34332                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34333                                                                                          small amount
34334                                                                                           unspecified
34336                                                                                          small amount
34340                                                                         based on weight (24.1-60 lbs)
34342                                                                                           unspecified
34343                                                                                           unspecified
34345                                                                           based on weight (45-88 lbs)
34359                                                                                       based on weight
34360                                                                                       based on weight
34361                                                                                       based on weight
34362                                                                                       based on weight
34367                                                                                          small amount
34374                                                                          based on weight (50-100 lbs)
34375                                                                          based on weight (88-123 lbs)
34378                                                                                           unspecified
34379                                                                                           unspecified
34388                                                                                          small amount
34401                                                                          based on weight (51-100 lbs)
34403                                                                           based on weight (24-60 lbs)
34409                                                                                           unspecified
34410                                                                                           unspecified
34418                                                                          based on weight (51-100 lbs)
34419                                                                          based on weight (51-100 lbs)
34430                                                                                       based on weight
34434                                                                           based on weight (44-88 lbs)
34436                                                                                               1 scoop
34467                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
34474                                                                          based on weight (50-100 lbs)
34493                                                                                         0.5293, 5, 23
34513                                                                           based on weight (45-88 lbs)
34536                                                                                           unspecified
34545                                                                                           unspecified
34548                                                                                           unspecified
34579                                                                                           unspecified
34583                                                                          based on weight (51-100 lbs)
34584                                                                          based on weight (51-100 lbs)
34587                                                                                                 spray
34588                                                                                          small amount
34593                                                                          based on weight (51-100 lbs)
34606                                                                                           unspecified
34608                                                                                              tapering
34609                                                                                          small amount
34617                                                                                         1 bottle/vial
34624                                                                                           unspecified
34629                                                                           based on weight (40-60 lbs)
34630                                                                                           as directed
34635                                                                                           application
34636                                                                           based on weight (41-60 lbs)
34637                                                                                              tapering
34638                                                                                            1 wipe/pad
34640                                                                           based on weight (41-60 lbs)
34642                                                                          based on weight (60-120 lbs)
34648                                                                          based on weight (50-100 lbs)
34669                                                                          based on weight (51-100 lbs)
34672                                                                                           application
34673                                                                                           application
34674                                                                                           application
34675                                                                                                 drops
34676                                                           23 mg milbemycin oxime, 228 mg praziquantel
34677                                                                                           unspecified
34678                                                                                           unspecified
34680                                                                                           unspecified
34697                                                                        based on weight (60.1-120 lbs)
34704                                                                                       based on weight
34705                                                              27 mg milbemycin oxime, 1620 mg spinosad
34708                                                                              2 tablets/pills/capsules
34709                                                                              2 tablets/pills/capsules
34710                                                                                           unspecified
34727                                                                                           unspecified
34728                                                                                           unspecified
34729                                                                                           unspecified
34730                                                                          based on weight (51-100 lbs)
34733                                                                          based on weight (51-100 lbs)
34734                                                                           based on weight (44-88 lbs)
34741                                                                                          small amount
34744                                                                                          small amount
34747                                                                           based on weight (44-88 lbs)
34750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34763                                                                          based on weight (51-100 lbs)
34764                                                                        based on weight (60.1-120 lbs)
34766                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34787                                                                                           unspecified
34788                                                                                          small amount
34789                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
34791                                                                          based on weight (50-100 lbs)
34797                                                                                           unspecified
34798                                                                                           unspecified
34799                                                                          based on weight (50-100 lbs)
34811                                                                             based on weight (60+ lbs)
34813                                                                                   tablet/pill/capsule
34828                                                                         based on weight (40.1-60 lbs)
34832                                                                                              27, 1610
34833                                                                          based on weight (51-100 lbs)
34845                                                                                   tablet/pill/capsule
34887                                                                                       based on weight
34888                                                                                           unspecified
34890                                                                                     1 syringe/pipette
34891                                                                                       based on weight
34892                                                                           based on weight (44-88 lbs)
34900                                                                          based on weight (50-100 lbs)
34901                                                                           based on weight (44-88 lbs)
34902                                                                   based on weight (70-80 lbs) - 80 mg
34903                                                                                          small amount
34904                                                                                       based on weight
34905                                                                        based on weight (50.1-100 lbs)
34906                                                                         based on weight (44.1-88 lbs)
34907                                                                                          small amount
34908                                                                                       based on weight
34917                                                                                           unspecified
34918                                                                                           unspecified
34920                                                                        based on weight (50.1-100 lbs)
34922                                                                                               23, 228
34923                                                                         1 tablet/pill/capsule - 23 mg
34924                                                                       1 tablet/pill/capsule - 1000 mg
34953                                                                                           unspecified
34955                                                                                           unspecified
34956                                                                                           unspecified
34966                                                                          based on weight (51-100 lbs)
34979                                                                           based on weight (44-88 lbs)
34981                                                                        based on weight (50.1-100 lbs)
34982                                                                        based on weight (50.1-100 lbs)
34983                                                                          based on weight (51-100 lbs)
34991                                                                          based on weight (51-100 lbs)
34992                                                                          based on weight (51-100 lbs)
34996                                                                          based on weight (51-100 lbs)
35002                                                                             based on weight (55+ lbs)
35004                                                                          based on weight (51-100 lbs)
35014                                                                          based on weight (51-100 lbs)
35025                                                                          based on weight (50-100 lbs)
35027                                                                                              2.5 cups
35034                                                                                               23, 228
35049                                                                                              ointment
35069                                                                          based on weight (51-100 lbs)
35074                                                                                           unspecified
35094                                                                          based on weight (51-100 lbs)
35103                                                                                       based on weight
35109                                                                                           unspecified
35110                                                                          based on weight (50-100 lbs)
35125                                                                          based on weight (60-121 lbs)
35132                                                                          based on weight (88-123 lbs)
35134                                                                                          small amount
35143                                                                          based on weight (51-100 lbs)
35144                                                                                          small amount
35145                                                                          based on weight (51-100 lbs)
35146                                                                           based on weight (40-60 lbs)
35147                                                                          based on weight (51-100 lbs)
35148                                                                                           unspecified
35149                                                                           based on weight (25-50 lbs)
35150                                                                           based on weight (40-60 lbs)
35152                                                                                       based on weight
35153                                                                                       based on weight
35154                                                                          based on weight (51-100 lbs)
35160                                                                                           unspecified
35176                                                                                                1, 2.5
35181                                                                          based on weight (51-100 lbs)
35182                                                                          based on weight (51-100 lbs)
35183                                                                                           unspecified
35189                                                                          based on weight (51-100 lbs)
35203                                                                          based on weight (51-100 lbs)
35204                                                                          based on weight (51-100 lbs)
35205                                                                                          small amount
35207                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35212                                                                          based on weight (51-100 lbs)
35214                                                                          based on weight (51-100 lbs)
35232                                                                                           unspecified
35245                                                                                                 drops
35252                                                                                           unspecified
35262                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35278                                                                          based on weight (50-100 lbs)
35279                                                                          based on weight (60-120 lbs)
35283                                                                          based on weight (51-100 lbs)
35284                                                                        based on weight (60.1-121 lbs)
35291                                                                          based on weight (51-100 lbs)
35299                                                                           based on weight (45-88 lbs)
35300                                                                          based on weight (51-100 lbs)
35314                                                                                          small amount
35315                                                                                         23 mg, 228 mg
35354                                                                                               23, 460
35388                                                                                                 spray
35393                                                                                           unspecified
35399                                                                          based on weight (51-100 lbs)
35400                                                                                           unspecified
35401                                                                                           unspecified
35404                                                                                           unspecified
35405                                                                                           unspecified
35406                                                                                           unspecified
35414                                                                                               23, 460
35417                                                                                              4.5, 270
35420                                                                          based on weight (51-100 lbs)
35421                                                                           based on weight (44-88 lbs)
35422                                                                          based on weight (51-100 lbs)
35423                                                                          based on weight (51-100 lbs)
35424                                                                          based on weight (88-123 lbs)
35425                                                                                               23, 460
35432                                                              460 mg lufenuron, 23 mg milbemycin oxime
35434                                                                                           unspecified
35443                                                                                           unspecified
35450                                                                                           unspecified
35453                                                                                           unspecified
35454                                                                                           unspecified
35495                                                                                       based on weight
35496                                                                          based on weight (51-100 lbs)
35497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35499                                                                                        1 pack/package
35501                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35504                                                                                          pack/package
35506                                                                                          small amount
35509                                                                                           unspecified
35513                                                                                           unspecified
35525                                                                           based on weight (41-88 lbs)
35526                                                                          based on weight (51-100 lbs)
35528                                                                                               23, 228
35539                                                                                               23, 228
35560                                                                          based on weight (51-100 lbs)
35561                                                                           based on weight (24-60 lbs)
35565                                                                          based on weight (51-100 lbs)
35566                                                                        based on weight (60.1-121 lbs)
35569                                                                          based on weight (51-100 lbs)
35571                                                                          based on weight (51-100 lbs)
35572                                                                             based on weight (55+ lbs)
35573                                                                              based on weight (45 lbs)
35574                                                                               0.5 tablet/pill/capsule
35575                                                                          based on weight (51-100 lbs)
35576                                                                          based on weight (51-100 lbs)
35577                                                                           based on weight (44-88 lbs)
35578                                                                           based on weight (44-88 lbs)
35579                                                                          based on weight (51-100 lbs)
35580                                                                                                varies
35581                                                                                                varies
35582                                                                                                varies
35593                                                                          based on weight (51-100 lbs)
35598                                                                          based on weight (51-100 lbs)
35605                                                                                           unspecified
35620                                                                           based on weight (45-88 lbs)
35621                                                                          based on weight (89-132 lbs)
35624                                                                          based on weight (89-132 lbs)
35626                                                                                          small amount
35628                                                                                       based on weight
35633                                                                                           unspecified
35639                                                                                       based on weight
35641                                                                          based on weight (60-121 lbs)
35642                                                                                           application
35645                                                                                                    ml
35656                                                                                           application
35659                                                                                               23, 228
35662                                                                                           unspecified
35664                                                                          based on weight (50-100 lbs)
35665                                                                           based on weight (44-88 lbs)
35668                                                                                           unspecified
35673                                                                                           unspecified
35674                                                                                           unspecified
35696                                                                                          pack/package
35697                                                                             based on weight (60+ lbs)
35699                                                                        based on weight (60.1-121 lbs)
35721                                                                           based on weight (45-88 lbs)
35722                                                                                           unspecified
35725                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35727                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35740                                                                                           application
35743                                                                                           unspecified
35748                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
35756                                                                          based on weight (51-100 lbs)
35757                                                                          based on weight (51-100 lbs)
35758                                                                        based on weight (60.1-121 lbs)
35762                                                                                           unspecified
35768                                                                             based on weight (55+ lbs)
35770                                                                           based on weight (21-55 lbs)
35771                                                                          based on weight (51-100 lbs)
35772                                                                                           unspecified
35773                                                                           based on weight (21-55 lbs)
35774                                                                          based on weight (50-100 lbs)
35775                                                                          based on weight (51-100 lbs)
35777                                                                           based on weight (20-55 lbs)
35778                                                                           based on weight (25-50 lbs)
35786                                                                                           application
35791                                                                 based on weight (44-88 lbs) - 2.68 ml
35792                                                                based on weight (50-100 lbs) - 227 mcg
35793                                                                          based on weight (50-100 lbs)
35808                                                                                           unspecified
35809                                                                                           unspecified
35810                                                                                           unspecified
35812                                                                          based on weight (60-120 lbs)
35821                                                                                                1 dose
35831                                                           23 mg milbemycin oxime, 228 mg praziquantel
35835                                                           23 mg milbemycin oxime, 228 mg praziquantel
35855                                                                          based on weight (50-100 lbs)
35859                                                                              3 tablets/pills/capsules
35903                                                                                         5 minute soak
35908                                                                          based on weight (50-100 lbs)
35954                                                                          based on weight (51-100 lbs)
35955                                                                          based on weight (51-100 lbs)
35963                                                                                          small amount
35965                                                                                          small amount
35969                                                                                          small amount
35973                                                                          based on weight (60-120 lbs)
35982                                                                          based on weight (51-100 lbs)
35983                                                                        based on weight (60.1-121 lbs)
36019                                                                         based on weight (24.1-60 lbs)
36021                                                                        based on weight (60.1-121 lbs)
36023                                                                                          small amount
36030                                                                                           unspecified
36042                                                                                           unspecified
36043                                                              27 mg milbemycin oxime, 1620 mg spinosad
36044                                                                          based on weight (60-120 lbs)
36065                                                                          based on weight (51-100 lbs)
36069                                                                          based on weight (51-100 lbs)
36078                                                                                          small amount
36081                                                                                          small amount
36082                                                                                         68 mg, 272 mg
36084                                                                                           unspecified
36108                                                           23 mg milbemycin oxime, 228 mg praziquantel
36110                                                            13. 5 mg milbemycin oxime, 810 mg spinosad
36112                                                                                           unspecified
36113                                                                                           unspecified
36115                                                                                           unspecified
36134                                                                                           unspecified
36137                                                                                           unspecified
36144                                                                           based on weight (45-88 lbs)
36145                                                                          based on weight (51-100 lbs)
36150                                                                          based on weight (51-100 lbs)
36153                                                                                          small amount
36156                                                                          based on weight (51-100 lbs)
36159                                                                          based on weight (60-121 lbs)
36171                                                                                           unspecified
36191                                                                          based on weight (50-100 lbs)
36192                                                                           based on weight (44-88 lbs)
36200                                                                                           unspecified
36201                                                                                           unspecified
36202                                                                                                 drops
36203                                                                                           unspecified
36205                                                                                           unspecified
36218                                                                          based on weight (50-100 lbs)
36220                                                                          based on weight (51-100 lbs)
36221                                                                                       based on weight
36222                                                                                          small amount
36223                                                                                        1 pack/package
36225                                                                          based on weight (51-100 lbs)
36227                                                                                       based on weight
36228                                                                                       based on weight
36229                                                                          based on weight (51-100 lbs)
36231                                                                                         1 bottle/vial
36232                                                                                       based on weight
36233                                                                                       based on weight
36235                                                                                          small amount
36237                                                                                           unspecified
36238                                                                                           unspecified
36240                                                                                               23, 228
36254                                                                                           unspecified
36256                                                                                           unspecified
36264                                                                        based on weight (50.1-100 lbs)
36268                                                                                           unspecified
36271                                                              27 mg milbemycin oxime, 1620 mg spinosad
36272                                                             13.5 mg milbemycin oxime, 810 mg spinosad
36273                                                                           based on weight (40-60 lbs)
36275                                                                          based on weight (80-135 lbs)
36276                                                                                           as directed
36280                                                                          based on weight (85-130 lbs)
36283                                                                                       based on weight
36288                                                                                       based on weight
36293                                                                                           as directed
36294                                                                                           as directed
36295                                                                                           as directed
36296                                                                                       based on weight
36297                                                                                       based on weight
36298                                                                                       based on weight
36299                                                                                       based on weight
36300                                                                                       based on weight
36301                                                                                       based on weight
36302                                                                                       based on weight
36303                                                                                       based on weight
36304                                                                                       based on weight
36305                                                                                       based on weight
36306                                                                                           unspecified
36307                                                                                           unspecified
36308                                                                                           unspecified
36309                                                                                           unspecified
36310                                                                                           unspecified
36311                                                                                           unspecified
36322                                                                                           as directed
36323                                                                                           as directed
36324                                                                                                varies
36325                                                                                       based on weight
36326                                                                                       based on weight
36327                                                                                       based on weight
36328                                                                                       based on weight
36329                                                                                       based on weight
36330                                                                                       based on weight
36331                                                                                       based on weight
36332                                                                                       based on weight
36333                                                                                       based on weight
36334                                                                                       based on weight
36335                                                                                           unspecified
36336                                                                                           unspecified
36337                                                                                           unspecified
36338                                                                                           unspecified
36339                                                                                           unspecified
36340                                                                                           unspecified
36358                                                                                           as directed
36359                                                                                                varies
36360                                                                                                varies
36361                                                                                       based on weight
36362                                                                                       based on weight
36363                                                                                       based on weight
36364                                                                                       based on weight
36365                                                                                       based on weight
36366                                                                                       based on weight
36367                                                                                       based on weight
36368                                                                                       based on weight
36369                                                                                       based on weight
36370                                                                                       based on weight
36371                                                                                           unspecified
36372                                                                                           unspecified
36373                                                                                           unspecified
36374                                                                                           unspecified
36377                                                                                           as directed
36378                                                                                           as directed
36379                                                                                                varies
36380                                                                                       based on weight
36381                                                                                       based on weight
36382                                                                                       based on weight
36383                                                                                       based on weight
36384                                                                                       based on weight
36385                                                                                       based on weight
36398                                                                                       based on weight
36399                                                                                       based on weight
36403                                                                                       based on weight
36404                                                                                       based on weight
36405                                                                          based on weight (51-100 lbs)
36406                                                                                       based on weight
36410                                                                                           unspecified
36427                                                                             based on weight (55+ lbs)
36429                                                                                       based on weight
36430                                                                                           as directed
36438                                                                                           as directed
36439                                                                          based on weight (51-100 lbs)
36440                                                                             based on weight (40+ lbs)
36443                                                                                       based on weight
36444                                                                                       based on weight
36448                                                                                           as directed
36451                                                                                           unspecified
36464                                                                                           as directed
36474                                                                                           unspecified
36491                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36497                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36513                                                                                           unspecified
36533                                                                                          small amount
36535                                                                                              wipe/pad
36559                                                                          based on weight (51-100 lbs)
36560                                                                           based on weight (45-88 lbs)
36562                                                                          based on weight (51-100 lbs)
36568                                                                          based on weight (51-100 lbs)
36571                                                                                       0.25 inch strip
36574                                                                                           unspecified
36595                                                                          based on weight (50-100 lbs)
36600                                                                                          small amount
36601                                                                          based on weight (50-100 lbs)
36602                                                                                           unspecified
36605                                                                          based on weight (50-100 lbs)
36607                                                                          based on weight (50-100 lbs)
36608                                                                          based on weight (50-100 lbs)
36616                                                                          based on weight (50-100 lbs)
36624                                                                                           application
36626                                                                                          small amount
36630                                                                          based on weight (50-100 lbs)
36632                                                                          based on weight (50-100 lbs)
36635                                                                          based on weight (50-100 lbs)
36657                                                               27mg milbemycin oxime, 1620 mg spinosad
36670                                                                             based on weight (<60 lbs)
36698                                                                          based on weight (51-100 lbs)
36699                                                                          based on weight (51-100 lbs)
36705                                                                                           0.284, 0.57
36708                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
36709                                                                                           unspecified
36735                                                                                           unspecified
36751                                                                          based on weight (51-100 lbs)
36752                                                                           based on weight (45-88 lbs)
36753                                                                              based on weight (75 lbs)
36772                                                                                           application
36816                                                                                              1.5 cups
36817                                                                          based on weight (51-100 lbs)
36818                                                                                           application
36819                                                                                           application
36824                                                                          based on weight (51-100 lbs)
36833                                              based on weight (0-10 lbs), based on weight (51-100 lbs)
36834                                                                                       0.25 inch strip
36835                                                                                              wipe/pad
36840                                                                          based on weight (51-100 lbs)
36842                                                                                          small amount
36846                                                                          based on weight (51-100 lbs)
36847                                                                             based on weight (50+ lbs)
36848                                                                                       based on weight
36849                                                                          based on weight (60-120 lbs)
36850                                                                          based on weight (51-100 lbs)
36851                                                                                          small amount
36853                                                                                           unspecified
36855                                                                                           unspecified
36859                                                                                           unspecified
36875                                                                    2.5 tablets/pills/capsules - 10 mg
36876                                                                       1.5 tablets/pills/capsules - 50
36877                                                                                              0.5, 227
36878                                                                           based on weight (56-95 lbs)
36880                                                                    2.5 tablets/pills/capsules - 10 mg
36881                                                                          based on weight (51-100 lbs)
36882                                                                     2 tablets/pills/capsules - 150 mg
36883                                                                        based on weight (60.1-121 lbs)
36892                                                                                          small amount
36893                                                                        based on weight (60.1-121 lbs)
36894                                                                          based on weight (51-100 lbs)
36900                                                                          based on weight (51-100 lbs)
36901                                                                        based on weight (60.1-121 lbs)
36911                                                                          based on weight (51-100 lbs)
36919                                                                                               23, 460
36920                                                                           based on weight (45-88 lbs)
36921                                                                                           application
36925                                                                                               23, 460
36945                                                                                          small amount
36969                                                                          based on weight (51-100 lbs)
36970                                                                           based on weight (56-95 lbs)
36982                                                                           based on weight (21-55 lbs)
36983                                                                          based on weight (51-100 lbs)
36984                                                                              based on weight (60 lbs)
36985                                                                          based on weight (51-100 lbs)
36994                                                                                           unspecified
37007                                                                                               23, 460
37015                                                                          based on weight (50-100 lbs)
37017                                                           2% chlorhexidine gluconate, 1% ketoconazole
37018                                                                          based on weight (50-100 lbs)
37019                                                                           based on weight (45-88 lbs)
37020                                                                                      0.125 inch strip
37021                                                                          based on weight (50-100 lbs)
37036                                                                                           application
37038                                                                                        125 mg, 500 mg
37046                                                                                           unspecified
37054                                                                          based on weight (50-100 lbs)
37055                                                                          based on weight (51-100 lbs)
37056                                                                                           unspecified
37057                                                           136 mcg ivermectin, 114 mg pyrantel pamoate
37061                                                                             based on weight (18+ lbs)
37063                                                                     4.5% flumethrin, 10% imidacloprid
37069                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37070                                                                                           unspecified
37071                                                                                           unspecified
37073                                                                                          small amount
37074                                                                                         23 mg, 460 mg
37075                                                                                          small amount
37077                                                                             based on weight (55+ lbs)
37078                                                                          based on weight (51-100 lbs)
37087                                                                          based on weight (51-100 lbs)
37088                                                                          based on weight (51-100 lbs)
37098                                                                             based on weight (55+ lbs)
37099                                                                          based on weight (51-100 lbs)
37104                                                                                             1-2 drops
37116                                                                                       based on weight
37117                                                                                           unspecified
37135                                                                                       moderate amount
37157                                                                                           unspecified
37164                                                                                          small amount
37165                                                                          based on weight (50-100 lbs)
37168                                                                                           application
37169                                                                                           application
37193                                                                          based on weight (51-100 lbs)
37194                                                                                                collar
37195                                                                           based on weight (26-50 lbs)
37197                                                                             based on weight (60+ lbs)
37200                                                                          based on weight (51-100 lbs)
37201                                                                          based on weight (60-121 lbs)
37202                                                                             based on weight (60+ lbs)
37219                                                                                           unspecified
37221                                                                                           unspecified
37259                                                                                   tablet/pill/capsule
37260                                                                                                 drops
37262                                                                             based on weight (55+ lbs)
37266                                                                          based on weight (50-100 lbs)
37267                                                                           based on weight (55-95 lbs)
37270                                                                           based on weight (56-95 lbs)
37271                                                                             based on weight (55+ lbs)
37272                                                                              3 tablets/pills/capsules
37277                                                                                           unspecified
37278                                                                                           unspecified
37279                                                                                           unspecified
37302                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
37303                                                                                          small amount
37309                                                                                          small amount
37316                                                                          based on weight (50-100 lbs)
37325                                                                                           application
37326                                                                                           unspecified
37332                                                                                           unspecified
37337                                                                                           unspecified
37344                                                                                           unspecified
37349                                                                          based on weight (51-100 lbs)
37359                                                                                               23, 228
37373                                                                          based on weight (51-100 lbs)
37374                                                                        based on weight (60.1-121 lbs)
37375                                                                          based on weight (51-100 lbs)
37376                                                                        based on weight (60.1-120 lbs)
37385                                                                          based on weight (51-100 lbs)
37386                                                                        based on weight (60.1-121 lbs)
37387                                                                                       based on weight
37392                                                                                           unspecified
37396                                                                                           unspecified
37397                                                                           based on weight (44-88 lbs)
37434                                                                                           unspecified
37435                                                                                           unspecified
37439                                                                          based on weight (51-100 lbs)
37446                                                                          based on weight (51-100 lbs)
37449                                                                                       moderate amount
37451                                                                                           application
37454                                                                                       moderate amount
37457                                                                                           as directed
37463                                                                                           unspecified
37464                                                                                                 spray
37465                                                                                                 spray
37467                                                                                       moderate amount
37477                                                                                       moderate amount
37478                                                                                       moderate amount
37485                                                                          based on weight (51-100 lbs)
37491                                                                                                 spray
37493                                                                          based on weight (51-100 lbs)
37495                                                                                                 spray
37510                                                                                           unspecified
37526                                                                                            100-200 mg
37527                                                                                       0.25 inch strip
37533                                                                                          small amount
37536                                                                                 1:10 part water ratio
37540                                                                          based on weight (51-100 lbs)
37545                                                                          based on weight (51-100 lbs)
37546                                                                           based on weight (44-88 lbs)
37547                                                                          based on weight (60-120 lbs)
37552                                                                          based on weight (51-100 lbs)
37568                                                                                               23, 460
37569                                                                             based on weight (55+ lbs)
37571                                                                                               23, 460
37576                                                                                          small amount
37577                                                                                               23, 460
37578                                                                                           0.135 fl oz
37579                                                                                           unspecified
37580                                                                                           unspecified
37584                                                                                           unspecified
37585                                                                                           unspecified
37586                                                                                           unspecified
37597                                                                                           unspecified
37598                                                                                           unspecified
37601                                                                          based on weight (51-100 lbs)
37602                                                                          based on weight (60-121 lbs)
37603                                                                          based on weight (60-121 lbs)
37608                                                                                           unspecified
37624                                                                          based on weight (50-100 lbs)
37627                                                                                       based on weight
37628                                                                                       based on weight
37629                                                                          based on weight (50-100 lbs)
37630                                                                          based on weight (50-100 lbs)
37639                                                                                           unspecified
37648                                                                           based on weight (56-95 lbs)
37651                                                                                                collar
37655                                                                                                collar
37657                                                                                                collar
37662                                                                                       based on weight
37664                                                                                       based on weight
37669                                                                                           unspecified
37670                                                                                           unspecified
37675                                                                                           unspecified
37691                                                                                           application
37696                                                                                       1.11, 1.5, 15.1
37697                                                                               0.5 tablet/pill/capsule
37698                                                                              2 tablets/pills/capsules
37704                                                                          based on weight (51-100 lbs)
37705                                                                                       based on weight
37709                                                                              2 tablets/pills/capsules
37710                                                                                   tablet/pill/capsule
37712                                                                                           unspecified
37713                                                                                           unspecified
37714                                                                                           unspecified
37717                                                                                           unspecified
37718                                                                                           unspecified
37731                                                                          based on weight (51-100 lbs)
37738                                                                          based on weight (51-100 lbs)
37739                                                                          based on weight (51-100 lbs)
37740                                                                          based on weight (89-132 lbs)
37742                                                                          based on weight (51-100 lbs)
37771                                                                                                 drops
37785                                                                          based on weight (60-121 lbs)
37786                                                                          based on weight (50-100 lbs)
37797                                                                          based on weight (50-100 lbs)
37798                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
37805                                                                           based on weight (26-50 lbs)
37806                                                                          based on weight (60-120 lbs)
37809                                                                                              inhalant
37816                                                                                           unspecified
37817                                                                                           unspecified
37820                                                                                           unspecified
37821                                                                                           unspecified
37822                                                                                           unspecified
37834                                                                                       based on weight
37835                                                                                       based on weight
37837                                                                                       based on weight
37838                                                                          based on weight (50-100 lbs)
37839                                                                           based on weight (44-88 lbs)
37845                                                                                       based on weight
37846                                                                                       based on weight
37847                                                                                       based on weight
37848                                                                                       based on weight
37849                                                                          based on weight (50-100 lbs)
37850                                                                           based on weight (44-88 lbs)
37851                                                                           based on weight (44-88 lbs)
37852                                                                             based on weight (50+ lbs)
37855                                                                          based on weight (51-100 lbs)
37858                                                                          based on weight (51-100 lbs)
37865                                                                            based on weight (0-22 lbs)
37885                                                                                       based on weight
37894                                                                                       based on weight
37895                                                                           based on weight (44-88 lbs)
37907                                                              27 mg milbemycin oxime, 1620 mg spinosad
37916                                                                          based on weight (60-120 lbs)
37920                                                                                       based on weight
37929                                                                                             3-5 drops
37930                                                                                           application
37935                                                                                           application
37937                                                                                             3-5 drops
37942                                                                                          small amount
37944                                                                                        1000 to 250 mg
37976                                                                          based on weight (51-100 lbs)
37977                                                                           based on weight (45-88 lbs)
37978                                                                          based on weight (51-100 lbs)
37979                                                                                           unspecified
37980                                                                                           unspecified
37984                                                                          based on weight (51-100 lbs)
37989                                                                          based on weight (51-100 lbs)
37990                                                                                          small amount
37992                                                                          based on weight (51-100 lbs)
37993                                                                           based on weight (44-88 lbs)
38018                                                                                             13.5, 810
38036                                                                          based on weight (51-100 lbs)
38041                                                                                       based on weight
38046                                                                          based on weight (50-100 lbs)
38048                                                                                             62.5, 375
38050                                                                                        12.5-25, 25-50
38051                                                                          based on weight (51-100 lbs)
38052                                                                                           unspecified
38056                                                                                           unspecified
38070                                                                          based on weight (51-100 lbs)
38071                                                                             based on weight (55+ lbs)
38072                                                                                           unspecified
38074                                                                                           unspecified
38075                                                                                           unspecified
38102                                                                                                 5, 50
38123                                                                          based on weight (51-100 lbs)
38126                                                                          based on weight (51-100 lbs)
38132                                                                                           unspecified
38134                                                                                           unspecified
38135                                                                                           unspecified
38136                                                                                           unspecified
38141                                                                        based on weight (51.1-100 lbs)
38142                                                                         based on weight (24.1-60 lbs)
38151                                                                         based on weight (24.1-60 lbs)
38156                                                                         based on weight (24.1-60 lbs)
38165                                                                          based on weight (51-100 lbs)
38166                                                                          based on weight (60-120 lbs)
38177                                                                                           unspecified
38179                                                                                           unspecified
38181                                                                                           unspecified
38182                                                                                           unspecified
38184                                                                                           unspecified
38185                                                                                           unspecified
38193                                                                           based on weight (44-88 lbs)
38204                                                                                                 scoop
38211                                                                                          small amount
38217                                                                          based on weight (50-100 lbs)
38219                                                                                270 mg dha, 425 mg epa
38240                                                                           based on weight (22-55 lbs)
38256                                                                          based on weight (50-100 lbs)
38257                                                           23 mg milbemycin oxime, 228 mg praziquantel
38259                                                           23 mg milbemycin oxime, 228 mg praziquantel
38262                                                                            based on weight (60.1 lbs)
38268                                                                                           unspecified
38273                                                                                       moderate amount
38284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
38287                                                                                           as directed
38288                                                                          based on weight (50-100 lbs)
38289                                                                           based on weight (44-88 lbs)
38293                                                                                               23, 460
38294                                                                                             3-4 drops
38301                                                                             based on weight (55+ lbs)
38305                                                                             based on weight (55+ lbs)
38306                                                                          based on weight (51-100 lbs)
38324                                                                                           unspecified
38326                                                                                           unspecified
38330                                                                          based on weight (51-100 lbs)
38339                                                                           based on weight (44-88 lbs)
38342                                                                          based on weight (51-100 lbs)
38351                                                                          based on weight (88-132 lbs)
38352                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
38353                                                                          based on weight (51-100 lbs)
38361                                                                                       0.25 inch strip
38365                                                                                           unspecified
38366                                                                                           unspecified
38367                                                                                           unspecified
38369                                                                                       based on weight
38372                                                                                                 drops
38373                                                                                           unspecified
38377                                                                                           unspecified
38378                                                                                           unspecified
38386                                                                                           unspecified
38387                                                                                           unspecified
38388                                                                                           unspecified
38396                                                                          based on weight (50-100 lbs)
38397                                                                          based on weight (60-121 lbs)
38399                                                                          based on weight (51-100 lbs)
38406                                                                                           unspecified
38420                                                                          based on weight (51-100 lbs)
38422                                                                          based on weight (51-100 lbs)
38423                                                                          based on weight (51-100 lbs)
38427                                                                                           unspecified
38431                                                                                          small amount
38436                                                                                           as directed
38438                                                                          based on weight (50-100 lbs)
38439                                                                          based on weight (88-123 lbs)
38442                                                                                          small amount
38461                                                                                       based on weight
38462                                                                                       based on weight
38464                                                                          based on weight (50-100 lbs)
38465                                                                           based on weight (56-95 lbs)
38466                                                                          based on weight (88-132 lbs)
38470                                                                              based on weight (92 lbs)
38471                                                                              based on weight (92 lbs)
38472                                                                        based on weight (50.1-100 lbs)
38473                                                                        based on weight (88.1-132 lbs)
38499                                                                                               10, 100
38504                                                                                       based on weight
38505                                                                                       based on weight
38507                                                                          based on weight (50-100 lbs)
38508                                                                           based on weight (56-95 lbs)
38509                                                                              based on weight (86 lbs)
38510                                                                              based on weight (86 lbs)
38511                                                                        based on weight (50.1-100 lbs)
38512                                                                        based on weight (88.1-132 lbs)
38522                                                                                           unspecified
38527                                                                          based on weight (50-100 lbs)
38528                                                                           based on weight (45-88 lbs)
38529                                                                                           bottle/vial
38531                                                                                           bottle/vial
38533                                                                                           unspecified
38534                                                                              2 tablets/pills/capsules
38536                                                                                           as directed
38544                                                                                           unspecified
38550                                                                                           unspecified
38551                                                                                           unspecified
38557                                                                                           unspecified
38567                                                                          based on weight (50-100 lbs)
38568                                                                          based on weight (50-100 lbs)
38569                                                                                       based on weight
38570                                                                                           unspecified
38588                                                                                       moderate amount
38602                                                                          based on weight (51-100 lbs)
38605                                                                                          small amount
38606                                                                                               23, 460
38607                                                                                                  bath
38610                                                                          based on weight (51-100 lbs)
38611                                                                                             1-2 pumps
38618                                                                                       moderate amount
38626                                                                          based on weight (51-100 lbs)
38630                                                                                           unspecified
38636                                                                          based on weight (51-100 lbs)
38637                                                                           based on weight (44-88 lbs)
38643                                                                          based on weight (51-100 lbs)
38647                                                                                                  2, 4
38655                                                                                           unspecified
38656                                                                           based on weight (44-88 lbs)
38665                                                                                             100, 1000
38691                                                                                           unspecified
38722                                                                                          small amount
38723                                                                                              wipe/pad
38754                                                                                           unspecified
38772                                                                                          small amount
38775                                                                                          small amount
38779                                                                           based on weight (44-88 lbs)
38780                                                                                           unspecified
38787                                                                                           unspecified
38789                                                                                           unspecified
38796                                                                                           unspecified
38802                                                                                           unspecified
38809                                                                                           unspecified
38816                                                                                        1 pack/package
38820                                                                          based on weight (51-100 lbs)
38821                                                                           based on weight (44-88 lbs)
38828                                                                                           unspecified
38839                                                                                           unspecified
38841                                                                                           unspecified
38843                                                                                           unspecified
38845                                                                                           unspecified
38847                                                                                           unspecified
38850                                                                                           unspecified
38851                                                                                           unspecified
38854                                                                                           unspecified
38855                                                                                           unspecified
38861                                                                                           unspecified
38864                                                                                           unspecified
38865                                                                                           unspecified
38868                                                                                           unspecified
38871                                                                                           unspecified
38890                                                                          based on weight (51-100 lbs)
38891                                                                           based on weight (24-60 lbs)
38892                                                                          based on weight (51-100 lbs)
38896                                                                          based on weight (51-100 lbs)
38902                                                                                       based on weight
38924                                                                                               10, 100
38925                                                                           based on weight (21-55 lbs)
38926                                                                          based on weight (50-100 lbs)
38930                                                                          based on weight (50-100 lbs)
38931                                                                             based on weight (18+ lbs)
38940                                                                        based on weight (60.1-121 lbs)
38941                                                                        based on weight (60.1-121 lbs)
38945                                                                             based on weight (60+ lbs)
38946                                                                        based on weight (50.1-100 lbs)
38950                                                                        based on weight (50.1-100 lbs)
38951                                                                        based on weight (60.1-121 lbs)
38952                                                                                       based on weight
38956                                                                                              wipe/pad
38963                                                                        based on weight (50.1-100 lbs)
38964                                                                         based on weight (44.1-88 lbs)
38970                                                                                           unspecified
38971                                                                                           unspecified
38974                                                                                           unspecified
38976                                                                                           unspecified
38997                                                                                           unspecified
39004                                                                           based on weight (41-88 lbs)
39005                                                                          based on weight (51-100 lbs)
39006                                                                                             5-7 drops
39035                                                                                           unspecified
39083                                                                                          23, 228, 460
39099                                                                          based on weight (51-100 lbs)
39117                                                                                              27, 1620
39120                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39121                                                                          based on weight (51-100 lbs)
39122                                                                             based on weight (55+ lbs)
39123                                                                          based on weight (51-100 lbs)
39125                                                                                                1.25 l
39127                                                                                           unspecified
39128                                                                                           unspecified
39158                                                                                               23, 228
39165                                                                                           unspecified
39167                                                                                           unspecified
39171                                                                                                  8 oz
39176                                                                          based on weight (51-100 lbs)
39181                                                                                                  bath
39182                                                                                                 spray
39198                                                                                           unspecified
39201                                                                                                  tube
39202                                                                                          small amount
39207                                                                                           unspecified
39209                                                                           based on weight (44-88 lbs)
39210                                                                           based on weight (45-88 lbs)
39211                                                                        based on weight (50.1-100 lbs)
39212                                                                          based on weight (51-100 lbs)
39218                                                                           based on weight (45-88 lbs)
39259                                                                                           unspecified
39260                                                                         based on weight (44.1-88 lbs)
39262                                                                                              227, 277
39273                            based on weight (50-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
39316                                                                                       based on weight
39325                                                                        based on weight (50.1-100 lbs)
39326                                                                           based on weight (45-88 lbs)
39329                                                                        based on weight (50.1-100 lbs)
39330                                                                         based on weight (44.1-88 lbs)
39331                                                                        based on weight (50.1-100 lbs)
39332                                                                           based on weight (44-88 lbs)
39338                                                                          based on weight (51-100 lbs)
39339                                                                                            continuous
39340                                                                          based on weight (51-100 lbs)
39388                                                                          based on weight (51-100 lbs)
39392                                                                                           unspecified
39423                                                                                           unspecified
39425                                                                                           unspecified
39433                                                                                           unspecified
39434                                                                                          small amount
39435                                                                                       based on weight
39438                                                                          based on weight (51-100 lbs)
39440                                                                          based on weight (51-100 lbs)
39443                                                                          based on weight (51-100 lbs)
39444                                                                          based on weight (51-100 lbs)
39445                                                                           based on weight (44-88 lbs)
39446                                                                           based on weight (44-88 lbs)
39447                                                                          based on weight (51-100 lbs)
39450                                                                           based on weight (44-88 lbs)
39451                                                                          based on weight (51-100 lbs)
39453                                                                                           unspecified
39486                                                                             based on weight (55+ lbs)
39495                                                                           based on weight (45-88 lbs)
39496                                                                          based on weight (50-100 lbs)
39511                                                                           based on weight (44-88 lbs)
39513                                                                                          small amount
39516                                                                                           unspecified
39519                                                                                           unspecified
39525                                                                         based on weight (40.1-85 lbs)
39526                                                                        based on weight (50.1-100 lbs)
39528                                                                                           application
39531                                                                            1.5 tablets/pills/capsules
39534                                                                                           application
39536                                                                                          pack/package
39539                                                                                           application
39541                                                                                                 spray
39542                                                                                           application
39543                                                                                           application
39546                                                                           based on weight (44-88 lbs)
39548                                                                           based on weight (44-88 lbs)
39566                                                                                           unspecified
39567                                                                                           unspecified
39573                                                                                           unspecified
39581                                                                          based on weight (51-100 lbs)
39582                                                                          based on weight (51-100 lbs)
39586                                                                          based on weight (51-100 lbs)
39591                                                                                           unspecified
39599                                                                                           unspecified
39607                                                                                               10, 100
39609                                                                          based on weight (50-100 lbs)
39617                                                                                           as directed
39618                                                                                           unspecified
39635                                                                          based on weight (60-120 lbs)
39637                                                              27 mg milbemycin oxime, 1620 mg spinosad
39639                                                                                           unspecified
39651                                                                                           unspecified
39714                                                                                           unspecified
39715                                                                                           unspecified
39737                                                                                           unspecified
39754                                                                          based on weight (51-100 lbs)
39756                                                                                           application
39759                                                              460 mg lufenuron, 23 mg milbemycin oxime
39760                                                                    100000 nystatin, 2500 thiostrepton
39763                                                              460 mg lufenuron, 23 mg milbemycin oxime
39764                                                                          based on weight (51-100 lbs)
39776                                                                                           unspecified
39777                                                                                           unspecified
39778                                                                                           unspecified
39786                                                                                                   mcg
39787                                                                                                   mcg
39788                                                                                                    mg
39795                                                                          based on weight (60-120 lbs)
39796                                                                          based on weight (50-100 lbs)
39833                                                                                               23, 460
39849                                                                                               23, 460
39856                                                                                               23, 460
39860                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39871                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39875                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39877                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
39881                                                                              based on weight (60 lbs)
39909                                                                           based on weight (41-60 lbs)
39919                                                                                       0.25 inch strip
39958                                                                                           unspecified
39973                                                                          based on weight (50-100 lbs)
39974                                                                                          small amount
39975                                                                                          small amount
39980                                                                                                powder
39981                                                                                              wipe/pad
39982                                                                                           application
39987                                                                                           unspecified
39988                                                                                           unspecified
40013                                                                            based on weight (0-10 lbs)
40021                                                                                            0.14 fl oz
40038                                                                                              250, 500
40043                                                                             based on weight (95+ lbs)
40092                                                                           based on weight (45-88 lbs)
40093                                                                          based on weight (51-100 lbs)
40102                                                                                           unspecified
40108                                                                                           unspecified
40109                                                                                           unspecified
40115                                                                                        1 pack/package
40117                                                                          based on weight (51-100 lbs)
40121                            based on weight (51-100 lbs) - 272 mcg ivermectin, 227 mg pyrantel pamoate
40123                                                                                           unspecified
40124                                                                          based on weight (51-100 lbs)
40125                                                                                           unspecified
40133                                                                                          23, 228, 460
40134                                                                                          23, 228, 460
40138                                                                              2 tablets/pills/capsules
40141                                                                                           unspecified
40142                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40143                                                                                                 spray
40144                                                                          based on weight (51-100 lbs)
40149                                                                          based on weight (51-100 lbs)
40154                                                                          based on weight (51-100 lbs)
40164                                                                                       moderate amount
40165                                                                          based on weight (51-100 lbs)
40180                                                                          based on weight (51-100 lbs)
40186                                                                          based on weight (51-100 lbs)
40194                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40196                                                                                           unspecified
40206                                                                         based on weight (40.1-60 lbs)
40209                                                                                           unspecified
40214                                                                                          small amount
40216                                                                          based on weight (50-100 lbs)
40217                                                                           based on weight (24-60 lbs)
40218                                                                           based on weight (44-88 lbs)
40221                                                                          based on weight (50-100 lbs)
40222                                                                           based on weight (24-60 lbs)
40223                                                                                       based on weight
40224                                                                                       based on weight
40244                                                                           based on weight (45-88 lbs)
40290                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
40296                                                                                           unspecified
40297                                                                                           unspecified
40298                                                                                           unspecified
40299                                                                                           unspecified
40302                                                                                           unspecified
40312                                                                              based on weight (70 lbs)
40317                                                                                          small amount
40331                                                                                               23, 228
40343                                                                                       moderate amount
40390                                                                          based on weight (51-100 lbs)
40391                                                                          based on weight (50-100 lbs)
40392                                               based on weight (0-8 lbs), based on weight (50-100 lbs)
40394                                                                                           unspecified
40403                                                                                           as directed
40406                                                                  1.5 mg homatropine, 5 mg hydrocodone
40407                                                                          based on weight (51-100 lbs)
40417                                                                        based on weight (60.1-121 lbs)
40418                                                                          based on weight (51-100 lbs)
40422                                                                        based on weight (60.1-121 lbs)
40451                                                                                       based on weight
40454                                                                                           unspecified
40464                                                                                                10/100
40468                                                                          based on weight (60-120 lbs)
40472                                                                                           unspecified
40474                                                                                           unspecified
40483                                                                          based on weight (50-100 lbs)
40484                                                                          based on weight (60-120 lbs)
40486                                                                          based on weight (50-100 lbs)
40487                                                                          based on weight (60-120 lbs)
40488                                                                              based on weight (55 lbs)
40489                                                                             based on weight (55+ lbs)
40494                                                                                           unspecified
40503                                                                          based on weight (50-100 lbs)
40504                                                                           based on weight (45-89 lbs)
40508                                                                           based on weight (40-80 lbs)
40511                                                                              5 tablets/pills/capsules
40519                                                                          based on weight (51-100 lbs)
40521                                                                          based on weight (50-100 lbs)
40535                                                                                              800, 900
40541                                                                          based on weight (51-100 lbs)
40568                                                                          based on weight (51-100 lbs)
40571                                                                                             1-2 drops
40572                                                                            3.5 tablets/pills/capsules
40573                                                                          based on weight (51-100 lbs)
40574                                                                         based on weight (24.1-60 lbs)
40579                                                                                       based on weight
40580                                                                                           unspecified
40581                                                                                               80, 400
40582                                                                                       0.25 inch strip
40583                                                                                           unspecified
40595                                                                                                 spray
40600                                                                          based on weight (51-100 lbs)
40601                                                                           based on weight (56-95 lbs)
40603                                                                                           concentrate
40604                                                                                        1 pack/package
40606                                                                                          small amount
40607                                                                                          small amount
40611                                                                          based on weight (51-100 lbs)
40615                                                                                            10, 40, 40
40616                                                                           based on weight (56-95 lbs)
40617                                                                          based on weight (51-100 lbs)
40618                                                                                           unspecified
40619                                                                                           unspecified
40620                                                                                           unspecified
40634                                                                                       0.25 inch strip
40636                                                                                          pack/package
40637                                                                                          pack/package
40644                                                                                           unspecified
40653                                                                           based on weight (45-88 lbs)
40654                                                                          based on weight (51-100 lbs)
40655                                                                          based on weight (50-100 lbs)
40656                                                                          based on weight (50-100 lbs)
40684                                                                          based on weight (51-100 lbs)
40686                                                                          based on weight (51-100 lbs)
40687                                                                                       based on weight
40688                                                                                              wipe/pad
40689                                                                                           application
40690                                                                          based on weight (51-100 lbs)
40691                                                                                       based on weight
40693                                                                                              tapering
40699                                                                                           unspecified
40700                                                                          based on weight (51-100 lbs)
40701                                                                           based on weight (44-88 lbs)
40718                                                                                                  8 au
40719                                                                          based on weight (51-100 lbs)
40721                                                                                       based on weight
40722                                                                                           application
40723                                                                                             7-9 drops
40724                                                                                            8-10 drops
40725                                             based on weight (25-50 lbs), based on weight (51-100 lbs)
40726                                                                                           unspecified
40727                                                                                           unspecified
40744                                                                          based on weight (51-100 lbs)
40745                                                                                                 spray
40747                                                                                                 6, 15
40748                                                                                              wipe/pad
40749                                                                         based on weight (44.1-88 lbs)
40750                                                                          based on weight (51-100 lbs)
40751                                                                          based on weight (51-100 lbs)
40754                                                                          based on weight (51-100 lbs)
40755                                                                         based on weight (44.1-88 lbs)
40756                                                                                       0.25 inch strip
40758                                                                                             3-4 drops
40760                                                                          based on weight (51-100 lbs)
40775                                                                          based on weight (51-100 lbs)
40776                                                                          based on weight (51-100 lbs)
40781                                                                          based on weight (50-100 lbs)
40783                                                                          based on weight (50-100 lbs)
40794                                                                                        0.5 inch strip
40796                                                                          based on weight (60-120 lbs)
40799                                                                          based on weight (50-100 lbs)
40800                                                                          based on weight (50-100 lbs)
40801                                                                           based on weight (44-88 lbs)
40810                                                                                           unspecified
40823                                                                          based on weight (51-100 lbs)
40824                                                                                             2-3 drops
40825                                                                           based on weight (56-95 lbs)
40827                                                                           based on weight (44-88 lbs)
40828                                                                          based on weight (51-100 lbs)
40829                                                                           based on weight (44-88 lbs)
40833                                                                                           unspecified
40834                                                                                              epa, dha
40838                                                                                           unspecified
40839                                                                                           unspecified
40840                                                                                           unspecified
40843                                                                                           unspecified
40846                                                                                       based on weight
40848                                                                                       0.25 inch strip
40866                                                                                           unspecified
40868                                                                                       based on weight
40870                                                                                       based on weight
40875                                                                                   tablet/pill/capsule
40879                                                                          based on weight (51-100 lbs)
40895                                                                                           unspecified
40897                                                                          based on weight (51-100 lbs)
40899                                                                                               57, 460
40900                                                                                               23, 460
40902                                                                                               23, 460
40905                                                                                               23, 460
40919                                                                                           unspecified
40943                                                                                           unspecified
40958                                                                                           unspecified
40959                                                                                           unspecified
40960                                                                                           unspecified
40961                                                                                           unspecified
40962                                                                                       0.25 inch strip
40965                                                                          based on weight (51-100 lbs)
40966                                                                          based on weight (60-121 lbs)
40967                                                                          based on weight (50-100 lbs)
40968                                                                          based on weight (60-121 lbs)
40969                                                                                          small amount
40970                                                                                          small amount
40971                                                                          based on weight (51-100 lbs)
40972                                                                          based on weight (60-120 lbs)
40974                                                                          based on weight (51-100 lbs)
40984                                                                                           unspecified
40987                                                                                           unspecified
40990                                                                                           unspecified
40992                                                                            based on weight (0-25 lbs)
40993                                                                           based on weight (11-20 lbs)
40994                                                                                           as directed
40997                                                                          based on weight (51-100 lbs)
40998                                                                           based on weight (56-95 lbs)
41003                                                                                          small amount
41004                                                                          based on weight (51-100 lbs)
41005                                                                           based on weight (56-95 lbs)
41006                                                                                            8-10 drops
41007                                                                                          small amount
41009                                                                    1.5 tablets/pills/capsules - 68 mg
41010                                                                           based on weight (56-95 lbs)
41011                                                                          based on weight (51-100 lbs)
41014                                                                                          small amount
41015                                                                        based on weight (50.1-100 lbs)
41016                                                                           based on weight (56-95 lbs)
41018                                                                                       based on weight
41020                                                                                           unspecified
41021                                                                                   tablet/pill/capsule
41022                                                                                           unspecified
41023                                                                                           unspecified
41024                                                                                           unspecified
41025                                                                                        1.4 ml, 2.8 ml
41057                                                                                           unspecified
41068                                                                           based on weight (21-55 lbs)
41069                                                                           based on weight (26-50 lbs)
41084                                                                              based on weight (70 lbs)
41087                                                                          based on weight (51-100 lbs)
41088                                                                           based on weight (56-95 lbs)
41089                                                                           based on weight (44-88 lbs)
41090                                                                                           unspecified
41091                                                                                           application
41094                                                                          based on weight (51-100 lbs)
41095                                                                           based on weight (44-88 lbs)
41096                                                                           based on weight (56-95 lbs)
41097                                                                                                 drops
41098                                                                           based on weight (56-95 lbs)
41099                                                                           based on weight (44-88 lbs)
41101                                                                                          small amount
41102                                                                            1.5 tablets/pills/capsules
41103                                                                              based on weight (75 lbs)
41121                                                                                              27, 1620
41125                                                                          based on weight (51-100 lbs)
41131                                                                        based on weight (50.1-100 lbs)
41132                                                                        based on weight (60.1-121 lbs)
41133                                                                        based on weight (50.1-100 lbs)
41134                                                                        based on weight (60.1-120 lbs)
41137                                                                                                 spray
41139                                                                                           unspecified
41147                                                                                           unspecified
41151                                                                                           unspecified
41152                                                                                           unspecified
41170                                                                                          small amount
41198                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41199                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41200                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41201                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41203                                                                          based on weight (51-100 lbs)
41204                                                                           based on weight (21-55 lbs)
41206                                                                           based on weight (45-88 lbs)
41207                                                                          based on weight (51-100 lbs)
41208                                                                           based on weight (24-60 lbs)
41209                                                                          based on weight (51-100 lbs)
41210                                                                           based on weight (24-60 lbs)
41216                                                                                            1000 units
41217                                                                           based on weight (40-60 lbs)
41219                                                                          based on weight (51-100 lbs)
41221                                                                           based on weight (40-60 lbs)
41222                                                                          based on weight (50-100 lbs)
41223                                                                          based on weight (50-100 lbs)
41224                                                                          based on weight (50-100 lbs)
41240                                                                                           application
41242                                                                                           unspecified
41246                                                                                           application
41260                                                                                           unspecified
41267                                                                          based on weight (51-100 lbs)
41278                                                                                                 spray
41279                                                                                           unspecified
41281                                                                                           unspecified
41283                                                                                               23, 460
41313                                                                           based on weight (56-95 lbs)
41314                                                                          based on weight (50-100 lbs)
41315                                                                             based on weight (55+ lbs)
41316                                                                          based on weight (55-100 lbs)
41318                                                                          based on weight (51-100 lbs)
41319                                                                          based on weight (51-100 lbs)
41320                                                                          based on weight (50-100 lbs)
41325                                                                                         23 mg, 460 mg
41332                                                                  based on weight (51-100 lbs) - 23 mg
41335                                                                                          small amount
41340                                                                                          small amount
41343                                                                                           unspecified
41360                                                                                           unspecified
41371                                                                                           application
41373                                                                          based on weight (51-100 lbs)
41374                                                                           based on weight (44-88 lbs)
41376                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41377                                                                          based on weight (51-100 lbs)
41378                                                                         based on weight (44.1-88 lbs)
41381                                                                              based on weight (80 lbs)
41384                                                                        based on weight (50.1-100 lbs)
41385                                                                           based on weight (44-88 lbs)
41386                                                                          based on weight (51-100 lbs)
41387                                                                             based on weight (44+ lbs)
41388                                                                                           as directed
41396                                                                                           unspecified
41398                                                                                           application
41407                                                                          based on weight (60-121 lbs)
41413                                                                                           unspecified
41417                                                                                       136 mcg, 114 mg
41420                                                                          based on weight (51-100 lbs)
41421                                                                          based on weight (51-100 lbs)
41422                                                                          based on weight (50-100 lbs)
41424                                                                             based on weight (50+ lbs)
41425                                                                                           as directed
41430                                                                                              27, 1620
41431                                                                                              27, 1620
41432                                                                          based on weight (60-120 lbs)
41433                                                                                             6-8 drops
41435                                                              27 mg milbemycin oxime, 1620 mg spinosad
41442                                                                                           unspecified
41443                                                                                              27, 1620
41444                                                                                              27, 1620
41446                                                                                           application
41447                                                                          based on weight (60-120 lbs)
41451                                                              27 mg milbemycin oxime, 1620 mg spinosad
41464                                                                                           unspecified
41466                                                                                           unspecified
41470                                                                                           unspecified
41497                                                                                           unspecified
41500                                                                                                  tube
41505                                                                                              inhalant
41525                                                                                           as directed
41531                                                                                           as directed
41533                                                                                              100, 200
41557                                                                                           unspecified
41572                                                                          based on weight (50-100 lbs)
41573                                                                          based on weight (60-120 lbs)
41612                                                                           1 tablet/pill/capsule - 500
41615                                                                          based on weight (51-100 lbs)
41617                                                           23 mg milbemycin oxime, 228 mg praziquantel
41621                                                                                           unspecified
41629                                                                                                0.5 hr
41632                                                                           based on weight (55-88 lbs)
41633                                                                          based on weight (50-100 lbs)
41638                                                                          based on weight (51-100 lbs)
41639                                                                              based on weight (86 lbs)
41640                                                                          based on weight (50-100 lbs)
41641                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
41653                                                                                               23, 460
41655                                                                                           unspecified
41674                                                                                              114, 136
41724                                                                                           unspecified
41725                                                                           based on weight (45-88 lbs)
41726                                                                          based on weight (51-100 lbs)
41727                                                                          based on weight (51-100 lbs)
41728                                                                                   tablet/pill/capsule
41729                                                                                           unspecified
41731                                                                          based on weight (51-100 lbs)
41737                                                                           based on weight (45-88 lbs)
41738                                                                          based on weight (51-100 lbs)
41739                                                                                           unspecified
41740                                                                                           unspecified
41743                                                                                               80, 400
41746                                                                          based on weight (51-100 lbs)
41747                                                                                           unspecified
41748                                                                                           unspecified
41749                                                                                           unspecified
41750                                                                                           unspecified
41751                                                                                           unspecified
41752                                                                                           unspecified
41753                                                                                           unspecified
41754                                                                                           unspecified
41756                                                                                           62.5, 312.5
41759                                                                          based on weight (51-100 lbs)
41774                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
41781                                                                          based on weight (51-100 lbs)
41803                                                                                           unspecified
41811                                                                                           unspecified
41816                                                                                           unspecified
41819                                                                                         23 mg, 460 mg
41830                                                                              3 tablets/pills/capsules
41835                                                                          based on weight (51-100 lbs)
41837                                                                          based on weight (51-100 lbs)
41838                                                                          based on weight (89-132 lbs)
41840                                                                          based on weight (51-100 lbs)
41846                                                                                           unspecified
41849                                                                          based on weight (51-100 lbs)
41850                                                                          based on weight (51-100 lbs)
41851                                                                                               23, 460
41853                                                                                              400, 500
41854                                                                          based on weight (51-100 lbs)
41863                                                                                       moderate amount
41870                                                                                               23, 228
41872                                                                                           unspecified
41888                                                                                       0.25 inch strip
41891                                                                                       136 mcg, 114 mg
41893                                                                                           application
41894                                                                              2 tablets/pills/capsules
41896                                                                                                powder
41897                                                                                           unspecified
41898                                                                                           unspecified
41899                                                                                           unspecified
41900                                                                                           unspecified
41901                                                                                           unspecified
41902                                                                                           unspecified
41903                                                                                           unspecified
41904                                                                              2 tablets/pills/capsules
41905                                                                                           unspecified
41906                                                                                           unspecified
41921                                                                                           unspecified
41929                                                                                       based on weight
41930                                                                                       based on weight
41937                                                                                       based on weight
41938                                                                                       based on weight
41939                                                                                           bottle/vial
41946                                                                                       based on weight
41947                                                                                       based on weight
41950                                                                                       based on weight
41973                                                                                           application
41975                                                                          based on weight (51-100 lbs)
41988                                                                          based on weight (51-100 lbs)
42004                                                                          based on weight (51-100 lbs)
42005                                                                           based on weight (48-88 lbs)
42011                                                                          based on weight (50-100 lbs)
42012                                                                           based on weight (45-88 lbs)
42032                                                                          based on weight (51-100 lbs)
42037                                                                          based on weight (51-100 lbs)
42039                                                                          based on weight (51-100 lbs)
42043                                                                          based on weight (51-100 lbs)
42044                                                                          based on weight (51-100 lbs)
42053                                                                          based on weight (60-121 lbs)
42057                                                                                           unspecified
42061                                                                          based on weight (50-100 lbs)
42063                                                                          based on weight (50-100 lbs)
42066                                                                          based on weight (50-100 lbs)
42100                                                                                           application
42101                                                                                           application
42112                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42116                                                                      2 tablets/pills/capsules - 50 mg
42119                                                                                           unspecified
42122                                                                                           unspecified
42147                                                                          based on weight (50-100 lbs)
42148                                                                           based on weight (44-88 lbs)
42149                                                                          based on weight (51-100 lbs)
42150                                                                          based on weight (51-100 lbs)
42151                                                                           based on weight (44-88 lbs)
42152                                                                          based on weight (51-100 lbs)
42154                                                                           based on weight (44-88 lbs)
42174                                                                          based on weight (51-100 lbs)
42198                                                                                       based on weight
42201                                                                             based on weight (18+ lbs)
42215                                                                                           unspecified
42218                                                                          based on weight (51-100 lbs)
42219                                                                           based on weight (21-55 lbs)
42221                                                                           based on weight (55-88 lbs)
42227                                                                           based on weight (55-89 lbs)
42229                                                                           based on weight (55-88 lbs)
42240                                                                                           unspecified
42241                                                                                           unspecified
42242                                                                                           unspecified
42243                                                                                           unspecified
42256                                                                                          small amount
42257                                                                                          small amount
42259                                                                                          small amount
42267                                                                                          small amount
42272                                                                          based on weight (51-100 lbs)
42273                                                                           based on weight (44-88 lbs)
42278                                                                                           unspecified
42284                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42286                                                                           based on weight (55.1+ lbs)
42287                                                                          based on weight (51-100 lbs)
42289                                                                          based on weight (51-100 lbs)
42291                                                                                           unspecified
42313                                                                           based on weight (22-44 lbs)
42314                                                                           based on weight (26-50 lbs)
42345                                                                                       based on weight
42346                                                                                       based on weight
42348                                                                                       based on weight
42349                                                                                       based on weight
42353                                                                          based on weight (50-100 lbs)
42354                                                                             based on weight (60+ lbs)
42356                                                                          based on weight (60-121 lbs)
42357                                                                          based on weight (51-100 lbs)
42358                                                                          based on weight (60-120 lbs)
42361                                                                                           unspecified
42367                                                                                           as directed
42368                                                                          based on weight (51-100 lbs)
42378                                                                          based on weight (51-100 lbs)
42379                                                                          based on weight (51-100 lbs)
42384                                                                          based on weight (51-100 lbs)
42386                                                                          based on weight (51-100 lbs)
42387                                                                          based on weight (51-100 lbs)
42399                                                                                                collar
42402                                                                          based on weight (51-100 lbs)
42417                                                                                          small amount
42425                                                                                                 spray
42426                                                                                                 spray
42433                                                                                           unspecified
42451                                                                          based on weight (50-100 lbs)
42455                                                                                               23, 460
42463                                                                          based on weight (51-100 lbs)
42464                                                                                          small amount
42468                                                                                           unspecified
42474                                                   100000 units nystatin, 1 mg triamcinolone acetonide
42475                                                                                338 mg dha, 515 mg epa
42476                                                                          based on weight (50-100 lbs)
42477                                                                             based on weight (56+ lbs)
42480                                                                                       moderate amount
42481                                                                             0.5-1 tablet/pill/capsule
42482                                                                                           bottle/vial
42483                                                                                   tablet/pill/capsule
42486                                                                                   tablet/pill/capsule
42488                                                                                               8.8, 44
42489                                                              460 mg lufenuron, 23 mg milbemycin oxime
42502                                                                                           unspecified
42506                                                                                           unspecified
42512                                                                          based on weight (51-100 lbs)
42513                                                                           based on weight (45-88 lbs)
42522                                                                                       based on weight
42537                                                                                           unspecified
42551                                                                          based on weight (51-100 lbs)
42552                                                                          based on weight (51-100 lbs)
42553                                                                          based on weight (51-100 lbs)
42570                                                                         based on weight (40.1-60 lbs)
42572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42573                                                                          based on weight (51-100 lbs)
42574                                                                          based on weight (51-100 lbs)
42578                                                                          based on weight (51-100 lbs)
42579                                                                          based on weight (88-123 lbs)
42593                                                                         based on weight (100-125 lbs)
42594                                                                          based on weight (88-123 lbs)
42624                                                                          based on weight (51-100 lbs)
42626                                                                                             6-8 drops
42627                                                                          based on weight (51-100 lbs)
42628                                                                           based on weight (44-88 lbs)
42632                                                                           based on weight (44-88 lbs)
42633                                                                          based on weight (51-100 lbs)
42634                                                                                       based on weight
42637                                                                             based on weight (100 lbs)
42638                                                                                         23 mg, 460 mg
42640                                                                                           unspecified
42646                                                                                           unspecified
42647                                                                                           unspecified
42648                                                                                           unspecified
42652                                                                                                1 dose
42655                                                                          based on weight (51-100 lbs)
42656                                                                           based on weight (44-88 lbs)
42666                                                                          based on weight (51-100 lbs)
42668                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42675                                                                                           unspecified
42678                                                                                           unspecified
42679                                                                                           unspecified
42694                                                                           based on weight (44-88 lbs)
42695                                                                          based on weight (51-100 lbs)
42696                                                                           based on weight (44-88 lbs)
42697                                                                          based on weight (51-100 lbs)
42700                                                                           based on weight (45-88 lbs)
42704                                                                          based on weight (51-100 lbs)
42712                                                                          based on weight (51-100 lbs)
42716                                                                          based on weight (51-100 lbs)
42721                                                                          based on weight (51-100 lbs)
42725                                                                           based on weight (44-88 lbs)
42726                                                                           based on weight (25-50 lbs)
42727                                                                          based on weight (51-100 lbs)
42728                                                                          based on weight (51-100 lbs)
42729                                                                          based on weight (51-100 lbs)
42740                                                                          based on weight (51-100 lbs)
42758                                                                                               23, 460
42760                                                                          based on weight (50-100 lbs)
42761                                                                           based on weight (44-88 lbs)
42764                                                                                             11.5, 114
42766                                                           23 mg milbemycin oxime, 228 mg praziquantel
42768                                                           23 mg milbemycin oxime, 228 mg praziquantel
42785                                                                             based on weight (50+ lbs)
42786                                                                             based on weight (50+ lbs)
42787                                                                                           unspecified
42791                                                                                               23, 228
42792                                                                                               23, 228
42799                                                                                           unspecified
42821                                                                          based on weight (50-100 lbs)
42833                                                                                               23, 228
42860                                                                                           as directed
42876                                                                                           unspecified
42879                                                                                           unspecified
42887                                                                                           unspecified
42890                                                                                           unspecified
42891                                                                                           unspecified
42892                                                                                           unspecified
42893                                                                                           unspecified
42894                                                                                           unspecified
42913                                                                                       based on weight
42915                                                                                           unspecified
42920                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
42923                                                                         based on weight (40.1-85 lbs)
42926                                                                           based on weight (45-88 lbs)
42930                                                                          based on weight (51-100 lbs)
42931                                                                          based on weight (51-100 lbs)
42932                                                                         based on weight (44.1-88 lbs)
42935                                                                         based on weight (44.1-88 lbs)
42936                                                                          based on weight (51-100 lbs)
42939                                                                          based on weight (50-100 lbs)
42940                                                                         based on weight (44.1-88 lbs)
42946                                                                                           unspecified
42952                                                                                              27, 1620
42956                                                                          based on weight (51-100 lbs)
42959                                                                          based on weight (51-100 lbs)
42960                                                                          based on weight (51-100 lbs)
42967                                                                                           unspecified
42994                                                                                           application
43013                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43045                                                                          based on weight (51-100 lbs)
43064                                                                          based on weight (51-100 lbs)
43065                                                                             based on weight (55+ lbs)
43069                                                                                       based on weight
43072                                                                                       based on weight
43081                                                                           based on weight (40-85 lbs)
43086                                                                                             1-2 pumps
43105                                                                                           unspecified
43116                                                                                           unspecified
43119                                                                          based on weight (50-100 lbs)
43123                                                                                               23, 228
43135                                                                              2 tablets/pills/capsules
43136                                                                           1.25 tablets/pills/capsules
43151                                                           23 mg milbemycin oxime, 228 mg praziquantel
43153                                                 1 mometasone furoate, 10 orbifloxacin, 1 posaconazole
43169                                                                                           unspecified
43173                                                                                           unspecified
43183                                                                                               23, 460
43184                                                                                               23, 460
43191                                                                                                varies
43200                                                                                              27, 1620
43202                                                                              based on weight (55 lbs)
43204                                                                         based on weight (40.1-85 lbs)
43224                                                                                           unspecified
43228                                                                                       based on weight
43236                                                                          based on weight (51-100 lbs)
43238                                                                          based on weight (51-100 lbs)
43239                                                                                                collar
43241                                                                          based on weight (51-100 lbs)
43242                                                                             based on weight (18+ lbs)
43243                                                                          based on weight (51-100 lbs)
43244                                                                                                collar
43246                                                                                           unspecified
43247                                                                                           unspecified
43258                                                                          based on weight (51-100 lbs)
43259                                                                          based on weight (51-100 lbs)
43270                                                                                           unspecified
43286                                                                                           unspecified
43291                                                                400 mg imidacloprid, 100 mg moxidectin
43292                                                                                           as directed
43293                                                                           based on weight (55-88 lbs)
43310                                                                          based on weight (50-100 lbs)
43334                                                                                               23, 228
43366                                                                                          small amount
43388                                                                                           unspecified
43405                                                                                          small amount
43412                                                                                          small amount
43423                                                                                       based on weight
43424                                                                                       based on weight
43430                                                                                                powder
43467                                                                                           unspecified
43469                                                                                           unspecified
43470                                                                                           unspecified
43471                                                                                           unspecified
43482                                                                          based on weight (50-100 lbs)
43491                                                                          based on weight (51-100 lbs)
43493                                                           23 mg milbemycin oxime, 228 mg praziquantel
43494                                                                                               23, 228
43496                                                           23 mg milbemycin oxime, 228 mg praziquantel
43497                                                           23 mg milbemycin oxime, 228 mg praziquantel
43510                                                                        based on weight (50.1-100 lbs)
43511                                                                          based on weight (88-123 lbs)
43512                                                                          based on weight (89-132 lbs)
43522                                                                          based on weight (88-123 lbs)
43527                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
43531                                                                        based on weight (50.1-100 lbs)
43532                                                                        based on weight (60.1-121 lbs)
43535                                                                          based on weight (51-100 lbs)
43538                                                                          based on weight (51-100 lbs)
43539                                                                          based on weight (60-121 lbs)
43540                                                                                                  8 au
43545                                                                                       based on weight
43546                                                                           based on weight (44-88 lbs)
43547                                                                                250 mg, 300 mg, 600 mg
43548                                                                                       based on weight
43549                                                                           based on weight (44-88 lbs)
43550                                                                                       based on weight
43563                                                                          based on weight (51-100 lbs)
43570                                                                          based on weight (51-100 lbs)
43610                                                                                      0.125 inch strip
43620                                                                                           unspecified
43621                                                                                           unspecified
43636                                                                                           unspecified
43637                                                                                       based on weight
43639                                                                                          small amount
43640                                                                                             2-4 drops
43642                                                                                          small amount
43643                                                                                            1 wipe/pad
43644                                                                          based on weight (51-100 lbs)
43645                                                                          based on weight (60-120 lbs)
43646                                                                              based on weight (60 lbs)
43650                                                                                       0.25 inch strip
43652                                                                           based on weight (45-88 lbs)
43653                                                                          based on weight (51-100 lbs)
43669                                                                                            1 wipe/pad
43678                                                                                          small amount
43683                                                                           based on weight (26-50 lbs)
43684                                                                                       0.25 inch strip
43685                                                                                          small amount
43686                                                                                          small amount
43706                                                                          based on weight (51-100 lbs)
43707                                                                           based on weight (44-88 lbs)
43709                                                                           based on weight (56-95 lbs)
43714                                                                                       moderate amount
43715                                                                                          small amount
43738                                                                                           unspecified
43743                                                                          based on weight (51-100 lbs)
43744                                                                           based on weight (45-88 lbs)
43745                                                                                        1 pack/package
43746                                                                           based on weight (45-88 lbs)
43747                                                                          based on weight (51-100 lbs)
43751                                                                                           unspecified
43783                                                                          based on weight (50-100 lbs)
43784                                                                          based on weight (60-120 lbs)
43785                                                                                       based on weight
43806                                                                                                 spray
43807                                                                                           unspecified
43838                                                                                           unspecified
43843                                                                          based on weight (51-100 lbs)
43844                                                                        based on weight (60.1-120 lbs)
43851                                                                                           unspecified
43853                                                                                           unspecified
43854                                                                                           unspecified
43878                                                                          based on weight (50-100 lbs)
43884                                                                                                  tube
43887                                                                                                  tube
43893                                                                          based on weight (50-100 lbs)
43894                                                                                                collar
43896                                                                          based on weight (50-100 lbs)
43919                                                                          based on weight (51-100 lbs)
43920                                                                        based on weight (60.1-121 lbs)
43938                                                                          based on weight (50-100 lbs)
43939                                                                           based on weight (24-60 lbs)
43949                                                                          based on weight (50-100 lbs)
43950                                                                           based on weight (24-60 lbs)
43958                                                                          based on weight (50-100 lbs)
43959                                                                          based on weight (50-100 lbs)
43960                                                                          based on weight (60-100 lbs)
43963                                                                          based on weight (51-100 lbs)
43965                                                                                          small amount
43975                                                                                           unspecified
43976                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43977                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43980                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
43997                                                                                           unspecified
44031                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44037                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44050                                                                                              wipe/pad
44055                                                                                             2-3 drops
44084                                                                                        0.5 inch strip
44087                                                                                           unspecified
44090                                                                                           unspecified
44119                                                                                           unspecified
44123                                                                                           unspecified
44126                                                                          based on weight (51-100 lbs)
44127                                                                          based on weight (60-121 lbs)
44129                                                                          based on weight (51-100 lbs)
44131                                                                          based on weight (51-100 lbs)
44154                                                                                           unspecified
44155                                                                        based on weight (50.1-100 lbs)
44157                                                                        based on weight (50.1-100 lbs)
44158                                                                           based on weight (44-88 lbs)
44207                                                                                           unspecified
44209                                                                                           unspecified
44211                                                                          based on weight (60-120 lbs)
44212                                                                              2 tablets/pills/capsules
44214                                                                          based on weight (60-120 lbs)
44216                                                                          based on weight (60-120 lbs)
44218                                                                          based on weight (60-120 lbs)
44219                                                                          based on weight (60-120 lbs)
44222                                                                                           unspecified
44223                                                                                           unspecified
44224                                                                                           unspecified
44225                                                                                           unspecified
44226                                                                                           unspecified
44227                                                                                           unspecified
44234                                                                             based on weight (55+ lbs)
44235                                                                          based on weight (51-100 lbs)
44240                                                                                          small amount
44241                                                                              3 tablets/pills/capsules
44243                                                                                           unspecified
44244                                                                                           unspecified
44246                                                                          based on weight (51-100 lbs)
44247                                                                          based on weight (60-120 lbs)
44249                                                                          based on weight (60-120 lbs)
44250                                                                          based on weight (51-100 lbs)
44251                                                                          based on weight (50-100 lbs)
44252                                                                          based on weight (60-120 lbs)
44253                                                                        based on weight (50.1-100 lbs)
44268                                                                        based on weight (50.1-100 lbs)
44280                                                                                           unspecified
44282                                                                                           unspecified
44309                                                                                           unspecified
44330                                                                          based on weight (51-100 lbs)
44334                                                                          based on weight (50-100 lbs)
44335                                                                          based on weight (60-121 lbs)
44336                                                                          based on weight (50-100 lbs)
44337                                                                          based on weight (60-121 lbs)
44347                                                                                           unspecified
44350                                                                                              125, 500
44363                                                                                          small amount
44372                                                                                          small amount
44385                                                                                              27, 1620
44386                                                                                              27, 1620
44390                                                                          based on weight (50-100 lbs)
44391                                                                                               23, 228
44392                                                                          based on weight (50-100 lbs)
44395                                                                          based on weight (50-100 lbs)
44398                                                                                           unspecified
44421                                                                        based on weight (50.1-100 lbs)
44428                                                                        based on weight (60.1-120 lbs)
44429                                                              27 mg milbemycin oxime, 1620 mg spinosad
44431                                                                           based on weight (44-88 lbs)
44434                                                                                          small amount
44452                                                                        based on weight (60.1-120 lbs)
44473                                                                             based on weight (55+ lbs)
44507                                                                                          small amount
44520                                                                                           unspecified
44524                                                                           based on weight (26-50 lbs)
44531                                                                              based on weight (70 lbs)
44542                                                                           based on weight (45-88 lbs)
44543                                                                          based on weight (51-100 lbs)
44545                                                                 based on weight (45-88 lbs) - 2.68 ml
44546                                                                          based on weight (51-100 lbs)
44547                                                                           based on weight (45-88 lbs)
44558                                                                                           unspecified
44559                                                                           based on weight (45-88 lbs)
44570                                                                                           unspecified
44571                                                                                           unspecified
44576                                                                                           unspecified
44577                                                                                           unspecified
44595                                                                                           unspecified
44607                                                                                            1 wipe/pad
44608                                                                          based on weight (60-120 lbs)
44609                                                                                             1-2 wipes
44616                                                                          based on weight (51-100 lbs)
44618                                                                                       based on weight
44646                                                                           based on weight (45-80 lbs)
44649                                                                          based on weight (85-130 lbs)
44652                                                                                           unspecified
44653                                                                                           unspecified
44654                                                                                           unspecified
44655                                                                                           unspecified
44658                                                                                           unspecified
44660                                                                                           unspecified
44663                                                                                           unspecified
44671                                                                          based on weight (60-120 lbs)
44672                                                              27 mg milbemycin oxime, 1620 mg spinosad
44677                                                                                              27, 1610
44679                                                                                               45, 450
44683                                                                                           unspecified
44684                                                                                           unspecified
44706                                                                                       0.25 inch strip
44732                                                                                               23, 460
44742                                                                          based on weight (51-100 lbs)
44743                                                                           based on weight (44-88 lbs)
44745                                                                          based on weight (50-100 lbs)
44746                                                                                           unspecified
44747                                                                                                collar
44755                                                                                           unspecified
44757                                                                                           unspecified
44769                                                                           based on weight (44-88 lbs)
44771                                                                           based on weight (44-88 lbs)
44782                                                                                           unspecified
44795                                                                                       0.25 inch strip
44799                                                                                           unspecified
44804                                                                                           unspecified
44820                                                                          based on weight (51-100 lbs)
44827                                                                          based on weight (51-100 lbs)
44828                                                                          based on weight (60-120 lbs)
44829                                                                           based on weight (51-99 lbs)
44830                                                                          based on weight (51-100 lbs)
44834                                                                                           unspecified
44843                                                                          based on weight (51-100 lbs)
44844                                                                        based on weight (60.1-121 lbs)
44857                                                                                                 6, 15
44858                                                                                                 6, 15
44862                                                                                           unspecified
44863                                                                             based on weight (50+ lbs)
44864                                                                                           unspecified
44866                                                                                           unspecified
44867                                                                         based on weight (55.1-88 lbs)
44868                                                                         based on weight (55.1-88 lbs)
44869                                                                          based on weight (60-121 lbs)
44875                                                                                               23, 460
44877                                                                          based on weight (50-100 lbs)
44879                                                                          based on weight (50-100 lbs)
44899                                                                                           unspecified
44905                                                                                           unspecified
44915                                                                           based on weight (45-88 lbs)
44916                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44917                                                                             based on weight (55+ lbs)
44918                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
44920                                                                             based on weight (55+ lbs)
44922                                                                                           unspecified
44924                                                                          based on weight (51-100 lbs)
44925                                                                             based on weight (55+ lbs)
44933                                                                                           unspecified
44936                                                                           based on weight (40-85 lbs)
44937                                                                           based on weight (40-85 lbs)
44938                                                                         based on weight (40.1-85 lbs)
44939                                                                         based on weight (40.1-65 lbs)
44946                                                                          based on weight (51-100 lbs)
44947                                                                           based on weight (44-88 lbs)
44949                                                                          based on weight (51-100 lbs)
44950                                                                           based on weight (44-88 lbs)
44957                                                                           based on weight (44-88 lbs)
44958                                                                          based on weight (51-100 lbs)
44997                                                                                           as directed
45005                                                                                           unspecified
45007                                                                                           unspecified
45014                                                                          based on weight (60-120 lbs)
45017                                                                            based on weight (81.1 lbs)
45023                                                                                           unspecified
45027                                                                           based on weight (45-88 lbs)
45034                                                                                           unspecified
45045                                                                          based on weight (50-100 lbs)
45053                                                                            based on weight (0-25 lbs)
45054                                                                           based on weight (10-24 lbs)
45055                                                                           based on weight (25-60 lbs)
45059                                                                          based on weight (51-100 lbs)
45061                                                                          based on weight (51-100 lbs)
45062                                                                        based on weight (60.1-120 lbs)
45063                                                                                              27, 1620
45064                                                                        based on weight (60.1-120 lbs)
45066                                                                                          small amount
45072                                                                          based on weight (60-120 lbs)
45073                                                                                              27, 1620
45076                                                                                   tablet/pill/capsule
45116                                                                      0.5 tablet/pill/capsule - 100 mg
45117                                                                                        1 pack/package
45123                                                                          based on weight (50-100 lbs)
45134                                                                                           unspecified
45139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45149                                                                          based on weight (51-100 lbs)
45150                                                                          based on weight (51-100 lbs)
45154                                                                          based on weight (51-100 lbs)
45172                                                                                           unspecified
45173                                                                                           unspecified
45174                                                                                           unspecified
45175                                                                                           unspecified
45178                                                                          based on weight (51-100 lbs)
45179                                                                           based on weight (45-88 lbs)
45180                                                                                       moderate amount
45181                                                                                          small amount
45182                                                                          based on weight (51-100 lbs)
45185                                                                                         1 bottle/vial
45186                                                                          based on weight (51-100 lbs)
45187                                                                           based on weight (44-88 lbs)
45188                                                                          based on weight (51-100 lbs)
45189                                                                           based on weight (44-88 lbs)
45195                                                                                           unspecified
45199                                                                                           unspecified
45208                                                                                           unspecified
45209                                                                                           unspecified
45210                                                                                           unspecified
45212                                                                          based on weight (51-100 lbs)
45216                                                                          based on weight (51-100 lbs)
45224                                                                                           unspecified
45225                                                                          based on weight (51-100 lbs)
45236                                                                          based on weight (51-100 lbs)
45255                                                                                       based on weight
45263                                                                                       based on weight
45268                                                                                           unspecified
45273                                                                                           application
45280                                                                                           unspecified
45283                                                                          based on weight (51-100 lbs)
45286                                                                          based on weight (51-100 lbs)
45294                                                                           based on weight (40-60 lbs)
45295                                                                              2 tablets/pills/capsules
45297                                                                              based on weight (50 lbs)
45298                                                                          based on weight (51-100 lbs)
45299                                                                          based on weight (51-100 lbs)
45302                                                                          based on weight (51-100 lbs)
45305                                                                                           unspecified
45307                                                                                                varies
45309                                                                                           unspecified
45310                                                                          based on weight (51-100 lbs)
45311                                                                                       based on weight
45312                                                                         based on weight (24.1-60 lbs)
45313                                                                          based on weight (51-100 lbs)
45322                                                                                           unspecified
45327                                                                                           unspecified
45335                                                              460 mg lufenuron, 23 mg milbemycin oxime
45344                                                                                           unspecified
45345                                                                                           unspecified
45358                                                                                           unspecified
45359                                                                                           unspecified
45372                                                                                           application
45383                                                                                           unspecified
45403                                                                                           unspecified
45406                                                                          based on weight (51-100 lbs)
45411                                                                                          small amount
45425                                                                          based on weight (51-100 lbs)
45426                                                                                                collar
45434                                                                                           unspecified
45435                                                                                           unspecified
45443                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45445                                                                          based on weight (51-100 lbs)
45451                                                                          based on weight (51-100 lbs)
45452                                                                         based on weight (24.1-60 lbs)
45463                                                                        based on weight (60.1-120 lbs)
45468                                                                          based on weight (51-100 lbs)
45470                                                                          based on weight (60-120 lbs)
45471                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45476                                                              27 mg milbemycin oxime, 1620 mg spinosad
45479                            0.1% dexamethasone, 3.5 mg/ml neomycin sulfate, 10000 units/ml polymyxin b
45480                                                              27 mg milbemycin oxime, 1620 mg spinosad
45484                                                                          based on weight (51-100 lbs)
45503                                                                              2 tablets/pills/capsules
45504                                                                          based on weight (50-100 lbs)
45508                                                                           based on weight (45-88 lbs)
45531                                                                     250 imidacloprid, 62.5 moxidectin
45534                                                             13.5 mg milbemycin oxime, 810 mg spinosad
45555                                                                                           unspecified
45556                                                                           based on weight (40-85 lbs)
45572                                                                           based on weight (44-88 lbs)
45582                                                                                           unspecified
45585                                                                          based on weight (50-100 lbs)
45626                                                                        based on weight (50.1-100 lbs)
45642                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
45650                                                                          based on weight (60-120 lbs)
45651                                                                          based on weight (51-100 lbs)
45655                                                                          based on weight (51-100 lbs)
45656                                                                        based on weight (60.1-121 lbs)
45663                                                                                          small amount
45664                                                                          based on weight (51-100 lbs)
45665                                                                           based on weight (45-88 lbs)
45667                                                                                           unspecified
45670                                                                          based on weight (50-100 lbs)
45671                                                                          based on weight (50-100 lbs)
45675                                                                                             4-6 drops
45676                                                                                             4-6 drops
45683                                                                              based on weight (51 lbs)
45699                                                                                       moderate amount
45700                                                                                       moderate amount
45704                                                                                          small amount
45724                                                                                           unspecified
45725                                                                                           unspecified
45726                                                                                           unspecified
45727                                                                                           unspecified
45728                                                                                           unspecified
45729                                                                                           unspecified
45735                                                                                           unspecified
45736                                                                                           unspecified
45751                                                                                           unspecified
45764                                                                          based on weight (51-100 lbs)
45775                                                                                           unspecified
45776                                                                                           unspecified
45787                                                                           based on weight (45-88 lbs)
45791                                                                          based on weight (51-100 lbs)
45798                                                                                               23, 228
45799                                                                          based on weight (50-100 lbs)
45800                                                                          based on weight (50-100 lbs)
45816                                                                                              1 collar
45820                                                                          based on weight (51-100 lbs)
45843                                                                                           as directed
45853                                                                                              inhalant
45862                                                                        based on weight (50.1-100 lbs)
45863                                                                        based on weight (60.1-121 lbs)
45864                                                                          based on weight (88-123 lbs)
45869                                                                        based on weight (50.1-100 lbs)
45872                                                                          based on weight (88-123 lbs)
45876                                                                                             13.5, 810
45898                                                                          based on weight (51-100 lbs)
45899                                                                             based on weight (55+ lbs)
45901                                                                          based on weight (51-100 lbs)
45908                                                                          based on weight (51-100 lbs)
45909                                                                             based on weight (55+ lbs)
45914                                                                          based on weight (51-100 lbs)
45924                                                                                   tablet/pill/capsule
45968                                                                                               11, 230
45969                                                                          based on weight (50-100 lbs)
45970                                                                        based on weight (60.1-121 lbs)
45971                                                                                         23 mg, 460 mg
45990                                                                           based on weight (40-60 lbs)
45994                                                                             based on weight (55+ lbs)
45995                                                                                        1 pack/package
45996                                                                                           application
45997                                                                        based on weight (50.1-100 lbs)
46014                                                                                       0.25 inch strip
46018                                                                          based on weight (51-100 lbs)
46019                                                                        based on weight (50.1-121 lbs)
46021                                                                          based on weight (51-100 lbs)
46022                                                                          based on weight (60-121 lbs)
46025                                                                          based on weight (51-100 lbs)
46043                                                                          based on weight (51-100 lbs)
46044                                                                        based on weight (60.1-120 lbs)
46075                                                                          based on weight (51-100 lbs)
46076                                                                          based on weight (50-100 lbs)
46078                                                           23 mg milbemycin oxime, 228 mg praziquantel
46085                                                                                           unspecified
46091                                                                          based on weight (51-100 lbs)
46092                                                                          based on weight (51-100 lbs)
46094                                                                          based on weight (50-100 lbs)
46095                                                                          based on weight (50-100 lbs)
46100                                                                          based on weight (50-100 lbs)
46107                                                                          based on weight (51-100 lbs)
46108                                                                              based on weight (60 lbs)
46110                                                                          based on weight (51-100 lbs)
46116                                                                          based on weight (51-100 lbs)
46119                                                                          based on weight (51-100 lbs)
46122                                                                          based on weight (51-100 lbs)
46131                                                                                           unspecified
46132                                                                                           unspecified
46134                                                                                           unspecified
46170                                                                           based on weight (21-55 lbs)
46171                                                                                          small amount
46173                                                                           based on weight (21-55 lbs)
46174                                                                          based on weight (51-100 lbs)
46186                                                                                           unspecified
46198                                                                          based on weight (51-100 lbs)
46200                                                                                       based on weight
46201                                                                             based on weight (50+ lbs)
46202                                                                          based on weight (51-100 lbs)
46213                                                                             based on weight (55+ lbs)
46218                                                                          based on weight (50-100 lbs)
46219                                                                         based on weight (24.1-60 lbs)
46227                                                                          based on weight (60-120 lbs)
46255                                                                                          small amount
46265                                                                                           unspecified
46277                                                                           based on weight (26-50 lbs)
46278                                                                           based on weight (24-60 lbs)
46287                                                                           based on weight (26-50 lbs)
46288                                                                           based on weight (24-60 lbs)
46291                                                                           based on weight (26-50 lbs)
46292                                                                          based on weight (50-110 lbs)
46293                                                                           based on weight (24-60 lbs)
46295                                                                          based on weight (51-100 lbs)
46296                                                                           based on weight (24-60 lbs)
46303                                                                                             11.5, 230
46305                                                                                             11.5, 230
46308                                                                                             11.5, 235
46311                                                                                           unspecified
46312                                                                                           unspecified
46313                                                                                           unspecified
46314                                                                                           unspecified
46319                                                                                          small amount
46320                                                           23 mg milbemycin oxime, 228 mg praziquantel
46324                                                                                           unspecified
46325                                                           23 mg milbemycin oxime, 228 mg praziquantel
46345                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46350                                                                                               23, 228
46355                                                                                               23, 228
46358                                                                                               10, 100
46360                                                                                           unspecified
46377                                                                                           unspecified
46379                                                                                              27, 1620
46399                                                                          based on weight (60-120 lbs)
46406                                                                                           unspecified
46410                                                                              based on weight (70 lbs)
46411                                                                              based on weight (70 lbs)
46413                                                                                       based on weight
46418                                                                                       based on weight
46424                                                                                                collar
46431                                                                                                collar
46435                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46436                                                                                                collar
46474                                                                          based on weight (51-100 lbs)
46475                                                                           based on weight (21-55 lbs)
46476                                                                        based on weight (50.1-100 lbs)
46478                                                                          based on weight (51-100 lbs)
46479                                                                          based on weight (51-100 lbs)
46482                                                                          based on weight (50-100 lbs)
46483                                                                           based on weight (56-95 lbs)
46486                                                                                       based on weight
46487                                                                          based on weight (51-100 lbs)
46488                                                                          based on weight (51-100 lbs)
46489                                                                           based on weight (26-50 lbs)
46490                                                                           based on weight (26-50 lbs)
46493                                                                          based on weight (51-100 lbs)
46494                                                                          based on weight (50-100 lbs)
46499                                                           23 mg milbemycin oxime, 228 mg praziquantel
46504                                                                                           application
46505                                                                                           application
46506                                                                                           application
46512                                                                          based on weight (51-100 lbs)
46517                                                                                              8 cfu/gm
46521                                                                                          10 mg/100 ml
46526                                                                                       0.25 inch strip
46528                                                                           based on weight (45-88 lbs)
46530                                                                                           as directed
46532                                                                          based on weight (51-100 lbs)
46533                                                                                       0.25 inch strip
46544                                                                          based on weight (51-100 lbs)
46547                                                                                              0.8, 9.8
46551                                                                                           unspecified
46553                                                                                           unspecified
46555                                                                                           unspecified
46568                                                                                       227 mcg, 227 mg
46569                                                               8.8% imidacloprid, 44% permethrin - 4ml
46570                                                                   1.5 tablets/pills/capsules - 204 mg
46571                                                                                                     %
46572                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46573                                                                                           as directed
46574                                                                                           unspecified
46575                                                                                           unspecified
46579                                                                                           unspecified
46588                                                                                                  tube
46591                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46593                                                                                           bottle/vial
46606                                                                                           unspecified
46607                                                                                           unspecified
46615                                                                           based on weight (44-88 lbs)
46616                                                                          based on weight (51-100 lbs)
46617                                                                          based on weight (51-100 lbs)
46618                                                                                               23, 460
46676                                                                                           as directed
46680                                                                                       based on weight
46687                                                                                           unspecified
46690                                                                                                 spray
46694                                                                           based on weight (10-20 lbs)
46702                                                                                                 spray
46703                                                                                           as directed
46716                                                                                              27, 1620
46717                                                                                              27, 1620
46729                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46730                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46732                                                                                                varies
46737                                                                                           unspecified
46747                                                                                           unspecified
46753                                                                                           unspecified
46763                                                                                           unspecified
46766                                                                                           unspecified
46767                                                                          based on weight (51-100 lbs)
46775                                                                          based on weight (51-100 lbs)
46776                                                                           based on weight (24-60 lbs)
46777                                                                                       based on weight
46783                                                                                          small amount
46786                                                                          based on weight (51-100 lbs)
46788                                                                          based on weight (51-100 lbs)
46789                                                                          based on weight (60-121 lbs)
46811                                                                                       based on weight
46812                                                                          based on weight (51-100 lbs)
46816                                                                          based on weight (51-100 lbs)
46827                                                                                             1-2 drops
46849                                                                                              112, 272
46853                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
46874                                                                                          small amount
46880                                                                                          small amount
46883                                                                                               23, 228
46884                                                                          based on weight (50-100 lbs)
46885                                                                          based on weight (50-100 lbs)
46889                                                                                              160, 800
46891                                                                                           unspecified
46902                                                                                          small amount
46903                                                                             based on weight (55+ lbs)
46904                                                                          based on weight (51-100 lbs)
46905                                                                                          small amount
46908                                                                                                 spray
46915                                                                                          small amount
46931                                                                                        1 pack/package
46938                                                                                        1 pack/package
46944                                                                                        1 pack/package
46961                                                                                           unspecified
46962                                                                                           unspecified
46972                                                                          based on weight (51-100 lbs)
46973                                                                          based on weight (51-100 lbs)
46977                                                                                         1 application
46981                                                                                             3-5 drops
46982                                                                                          small amount
46983                                                                           based on weight (45-88 lbs)
46984                                                                          based on weight (89-132 lbs)
46985                                                                          based on weight (51-100 lbs)
46986                                                                          based on weight (51-100 lbs)
47000                                                                 based on weight (44.1-88 lbs) - 80 mg
47004                                                                          based on weight (51-100 lbs)
47010                                                                          based on weight (51-100 lbs)
47011                                                                          based on weight (60-121 lbs)
47018                                                                          based on weight (51-100 lbs)
47024                                                                          based on weight (51-100 lbs)
47025                                                                           based on weight (44-88 lbs)
47041                                                              460 mg lufenuron, 23 mg milbemycin oxime
47043                                                                          based on weight (51-100 lbs)
47049                                                                           based on weight (40-85 lbs)
47060                                                                                           unspecified
47076                                                                                           unspecified
47080                                                                                           unspecified
47081                                                                                           unspecified
47085                                                                          based on weight (51-100 lbs)
47086                                                                         based on weight (24.1-60 lbs)
47090                                                                                  0.285 mg/ml, 0.57 mg
47095                                                                           based on weight (41-60 lbs)
47096                                                                          based on weight (51-100 lbs)
47097                                                                         based on weight (24.1-60 lbs)
47098                                                                                       moderate amount
47104                                                                                          small amount
47105                                                                                           application
47106                                                                                           application
47125                                                                                           unspecified
47126                                                                                           unspecified
47128                                                                              3 tablets/pills/capsules
47137                                                                                             4-5 drops
47140                                                                           based on weight (60-85 lbs)
47143                                                                           based on weight (40-85 lbs)
47146                                                                                           unspecified
47152                                                                                       moderate amount
47154                                                                          based on weight (51-100 lbs)
47155                                                                          based on weight (50-100 lbs)
47156                                                                           based on weight (44-88 lbs)
47162                                                                           based on weight (44-88 lbs)
47164                                                                           based on weight (44-88 lbs)
47178                                                                          based on weight (50-100 lbs)
47180                                                                                       moderate amount
47183                                                                           based on weight (44-88 lbs)
47184                                                                          based on weight (51-100 lbs)
47193                                                                          based on weight (51-100 lbs)
47194                                                                           based on weight (45-88 lbs)
47196                                                                           based on weight (44-88 lbs)
47197                                                                          based on weight (50-100 lbs)
47204                                                                                           unspecified
47208                                                                                           unspecified
47209                                                                          based on weight (51-100 lbs)
47210                                                                          based on weight (51-100 lbs)
47220                                                                                                collar
47221                                                                                           unspecified
47222                                                                                           unspecified
47240                                                                                           unspecified
47248                                                                                           unspecified
47251                                                                                           unspecified
47253                                                                          based on weight (50-100 lbs)
47260                                                                          based on weight (50-100 lbs)
47302                                                                                          small amount
47323                                                                                               23, 228
47325                                                                                               23, 228
47334                                                                           based on weight (26-50 lbs)
47343                                                         11.5 mg milbemycin oxime, 114 mg praziquantel
47345                                                                                             11.5, 114
47350                                                                                           unspecified
47355                                                                                           application
47360                                                                                           unspecified
47390                                                           222 mcg ivermectin, 227 mg pyrantel pamoate
47407                                                                                           unspecified
47409                                                           23 mg milbemycin oxime, 228 mg praziquantel
47411                                                                        based on weight (60.1-121 lbs)
47412                                                                          based on weight (51-100 lbs)
47415                                                                         based on weight (44.1-88 lbs)
47416                                                                        based on weight (50.1-100 lbs)
47417                                                                         based on weight (44.1-88 lbs)
47420                                                                        based on weight (50.1-100 lbs)
47421                                                                         based on weight (44.1-88 lbs)
47433                                                                                              114, 136
47439                                                                                                 6, 15
47451                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47478                                                                          based on weight (50-100 lbs)
47479                                                                          based on weight (51-100 lbs)
47483                                                                                          small amount
47484                                                                                       based on weight
47486                                                                                       based on weight
47493                                                                                       based on weight
47496                                                                                           unspecified
47497                                                                          based on weight (51-100 lbs)
47498                                                                                       based on weight
47539                                                                                           as directed
47540                                                                                           unspecified
47544                                                                                           unspecified
47547                                                                                           application
47557                                                                                           unspecified
47562                                                                          based on weight (50-100 lbs)
47563                                                                             based on weight (60+ lbs)
47576                                                                          based on weight (2.5-20 lbs)
47577                                                                             based on weight (<25 lbs)
47578                                                                             based on weight (<25 lbs)
47586                                                                           based on weight (26-50 lbs)
47587                                                                           based on weight (21-55 lbs)
47588                                                                                       3.5, 400, 10000
47589                                                                          based on weight (51-100 lbs)
47590                                                                           based on weight (21-55 lbs)
47592                                                                          based on weight (51-100 lbs)
47593                                                                           based on weight (21-55 lbs)
47594                                                                          based on weight (51-100 lbs)
47595                                                                           based on weight (21-55 lbs)
47597                                                                                              100, 400
47600                                                                                              100, 400
47628                                                                           based on weight (45-88 lbs)
47629                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47630                                                                           based on weight (22-55 lbs)
47635                                                                             based on weight (55+ lbs)
47636                                                                           based on weight (25-50 lbs)
47658                                                                                           unspecified
47681                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
47684                                                                                                 spray
47693                                                                                              wipe/pad
47694                                                                                                powder
47696                                                                          based on weight (50-100 lbs)
47698                                                                                              wipe/pad
47699                                                                                                powder
47702                                                                                           application
47706                                                              27 mg milbemycin oxime, 1620 mg spinosad
47715                                                                                           unspecified
47716                                                                                           unspecified
47720                                                                                           unspecified
47721                                                                                           unspecified
47733                                                                                           unspecified
47734                                                                                           application
47739                                                                                           unspecified
47743                               based on weight (51-100 lbs) - 460 mg lufenuron, 23 mg milbemycin oxime
47744                                                                          based on weight (51-100 lbs)
47745                                                              460 mg lufenuron, 23 mg milbemycin oxime
47746                                                                          based on weight (51-100 lbs)
47752                                                                                           unspecified
47755                                                                           based on weight (45-88 lbs)
47760                                                                                       based on weight
47800                                                                          based on weight (51-100 lbs)
47801                                                                           based on weight (45-88 lbs)
47802                                                                          based on weight (51-100 lbs)
47803                                                                           based on weight (45-88 lbs)
47808                                                                          based on weight (51-100 lbs)
47810                                                                        based on weight (60.1-121 lbs)
47811                                                                          based on weight (51-100 lbs)
47812                                                                        based on weight (60.1-121 lbs)
47815                                                                          based on weight (51-100 lbs)
47816                                                                        based on weight (60.1-121 lbs)
47817                                                                                           unspecified
47825                                                                                           unspecified
47835                                                                          based on weight (51-100 lbs)
47836                                                                          based on weight (51-100 lbs)
47840                                                                          based on weight (50-100 lbs)
47860                                                                           based on weight (44-88 lbs)
47861                                                                                     10 mg/ml - 0.1 ml
47877                                                                                           unspecified
47887                                                                           based on weight (44-88 lbs)
47888                                                                          based on weight (51-100 lbs)
47889                                                                                           unspecified
47890                                                                                           unspecified
47891                                                                                           unspecified
47894                                                                                            2 mg, 5 mg
47900                                                                                           unspecified
47910                                                                                           unspecified
47951                                                                                           unspecified
47952                                                                                           unspecified
47953                                                                                           unspecified
47971                                                                          based on weight (50-100 lbs)
47975                                                                          based on weight (50-100 lbs)
47976                                                                          based on weight (50-100 lbs)
47981                                                                        based on weight (50.1-100 lbs)
47983                                                                                               23, 228
47984                                                                                       based on weight
47985                                                                                       based on weight
47989                                                                          based on weight (51-100 lbs)
47990                                                                             based on weight (55+ lbs)
47995                                                                                                powder
47998                                                                              2 tablets/pills/capsules
48001                                                                            1.5 tablets/pills/capsules
48007                                                                              0.75 tablet/pill/capsule
48013                                                                        based on weight (60.1-121 lbs)
48014                                                                        based on weight (60.1-121 lbs)
48016                                                                                           unspecified
48020                                                                          based on weight (51-100 lbs)
48021                                                                          based on weight (60-120 lbs)
48028                                                                          based on weight (51-100 lbs)
48029                                                                        based on weight (60.1-120 lbs)
48031                                                                              3 tablets/pills/capsules
48034                                                                                                powder
48035                                                                                                powder
48040                                                                          based on weight (51-100 lbs)
48041                                                                          based on weight (60-120 lbs)
48046                                                                          based on weight (51-100 lbs)
48047                                                                        based on weight (60.1-120 lbs)
48049                                                                              2 tablets/pills/capsules
48069                                                                                           unspecified
48072                                                                                       0.25 inch strip
48087                                                                          based on weight (51-100 lbs)
48088                                                                           based on weight (44-88 lbs)
48089                                                                                        1 pack/package
48090                                                                                            1.5 scoops
48094                                                                                           as directed
48100                                                                                       0.25 inch strip
48101                                                                                          small amount
48102                                                                          based on weight (51-100 lbs)
48103                                                                                          small amount
48105                                                                          based on weight (51-100 lbs)
48106                                                                                              1 collar
48107                                                                                          small amount
48108                                                                                          small amount
48109                                                                          based on weight (51-100 lbs)
48110                                                                                              1 collar
48114                                                                                          small amount
48120                                                                          based on weight (51-100 lbs)
48121                                                                             based on weight (55+ lbs)
48127                                                                                   tablet/pill/capsule
48131                                                                                   tablet/pill/capsule
48142                                                                          based on weight (50-100 lbs)
48143                                                                             based on weight (55+ lbs)
48147                                                                                   tablet/pill/capsule
48148                                                                          based on weight (51-100 lbs)
48155                                                                                               23, 460
48157                                                                          based on weight (51-100 lbs)
48158                                                                         based on weight (44.1-88 lbs)
48159                                                                          based on weight (51-100 lbs)
48160                                                                          based on weight (88-123 lbs)
48163                                                                                           unspecified
48167                                                                          based on weight (51-100 lbs)
48169                                                                                           unspecified
48182                                                                                       136 mcg, 114 mg
48185                                                                                              tapering
48188                                                                                          small amount
48201                                                                                           unspecified
48213                                                                                          small amount
48214                                                                          based on weight (60-121 lbs)
48215                                                                          based on weight (51-100 lbs)
48217                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48220                                                                                           unspecified
48221                                                                                           unspecified
48222                                                                                           unspecified
48231                                                              460 mg lufenuron, 23 mg milbemycin oxime
48237                                                                                          small amount
48238                                                              460 mg lufenuron, 23 mg milbemycin oxime
48240                                                                                               60, 500
48248                                                                                               60, 500
48251                                                                        based on weight (50.1-100 lbs)
48252                                                                        based on weight (60.1-121 lbs)
48258                                                                                           unspecified
48265                                                                                          small amount
48266                                                                                          small amount
48267                                                                                          small amount
48271                                                              460 mg lufenuron, 23 mg milbemycin oxime
48274                                                                                           unspecified
48277                                                                                           unspecified
48285                                                                                           unspecified
48287                                                                                             3000 u/ml
48288                                                                                                 drops
48289                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48291                                                                                           application
48292                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48294                                                                                       0.25 inch strip
48297                                                                          based on weight (51-100 lbs)
48298                                                                          based on weight (60-120 lbs)
48299                                                                                       0.25 inch strip
48300                                                                          based on weight (51-100 lbs)
48306                                                                          based on weight (51-100 lbs)
48307                                                                                             5-6 drops
48310                                                                          based on weight (51-100 lbs)
48314                                                                                           unspecified
48327                                                                                           application
48334                                                                                           unspecified
48336                                                                                           unspecified
48337                                                                                           unspecified
48338                                                                                           unspecified
48339                                                                                           unspecified
48342                                                                                           unspecified
48343                                                                                           unspecified
48344                                                                                               23, 460
48345                                                                                             1-2 drops
48350                                                                                           unspecified
48351                                                                                           unspecified
48352                                                                                           unspecified
48353                                                                                           unspecified
48354                                                                                           unspecified
48355                                                                                           unspecified
48376                                                                                                 drops
48383                                                                                       based on weight
48384                                                                          based on weight (51-100 lbs)
48394                                                                                           unspecified
48406                                                                                           unspecified
48420                                                                                               80, 400
48438                                                                          based on weight (50-100 lbs)
48439                                                           23 mg milbemycin oxime, 228 mg praziquantel
48441                                                                          based on weight (51-100 lbs)
48442                                                                           based on weight (44-88 lbs)
48444                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48447                                                                                       based on weight
48448                                                                          based on weight (60-120 lbs)
48481                                                                                          small amount
48483                                                                                          small amount
48496                                                                                       based on weight
48497                                                                                       based on weight
48498                                                                                       based on weight
48500                                                                        based on weight (50.1-100 lbs)
48502                                                                   1.5 tablets/pills/capsules - 500 mg
48504                                                                                       based on weight
48505                                                                                       based on weight
48513                                                                          based on weight (51-100 lbs)
48540                                                                                               23, 460
48541                                                                          based on weight (51-100 lbs)
48542                                                                           based on weight (44-88 lbs)
48598                                                                                           unspecified
48602                                                                                              tapering
48610                                                                                              114, 136
48611                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48615                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
48621                                                                                           application
48624                                                                                           as directed
48633                                                                                           unspecified
48636                                                                                           unspecified
48661                                                                          based on weight (51-100 lbs)
48664                                                                          based on weight (51-100 lbs)
48667                                                                          based on weight (51-100 lbs)
48668                                                                           based on weight (45-88 lbs)
48673                                                                                           unspecified
48680                                                                                       based on weight
48683                                                                             based on weight (55+ lbs)
48684                                                                             based on weight (50+ lbs)
48692                                                                                           unspecified
48693                                                                                           unspecified
48694                                                                                           unspecified
48696                                                                          based on weight (50-100 lbs)
48697                                                                         based on weight (24.1-60 lbs)
48698                                                                           based on weight (45-88 lbs)
48712                                                                          based on weight (50-100 lbs)
48713                                                                         based on weight (24.1-60 lbs)
48718                                                                          based on weight (51-100 lbs)
48719                                                                                             1-2 drops
48721                                                                          based on weight (50-100 lbs)
48722                                                                                       based on weight
48724                                                                          based on weight (50-100 lbs)
48725                                                                                                collar
48729                                                                                           unspecified
48733                                                                                       based on weight
48734                                                                          based on weight (50-100 lbs)
48735                                                                          based on weight (50-100 lbs)
48736                                                                                                collar
48770                                                                                      0.125 inch strip
48782                                                                                           unspecified
48802                                                                                           unspecified
48806                                                                                          small amount
48808                                                                                            8-10 drops
48812                                                                                       2.68 ml of 9.8%
48819                                                                                               23, 460
48821                                                                                               23, 460
48845                                                                          based on weight (51-100 lbs)
48855                                                                                              27, 1620
48859                                                                                            0.025, 2.5
48862                                                                                               10, 100
48889                                                                                        1 pack/package
48890                                                                          based on weight (51-100 lbs)
48891                                                                                       based on weight
48892                                                                                           application
48894                                                           23 mg milbemycin oxime, 228 mg praziquantel
48902                                                                                           unspecified
48906                                                                                           unspecified
48918                                                                                           unspecified
48935                                                                                           unspecified
48946                                                                            1.5 tablets/pills/capsules
48994                                                                                              100, 400
48997                                                                                           unspecified
49002                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49005                                                                                           unspecified
49012                                                                                           application
49016                                                                           based on weight (44-88 lbs)
49017                                                                          based on weight (50-100 lbs)
49018                                                                             based on weight (25+ lbs)
49025                                                                          based on weight (50-100 lbs)
49026                                                                           based on weight (44-88 lbs)
49033                                                                                           as directed
49034                                                                                           as directed
49035                                                                                           as directed
49036                                                                                           unspecified
49042                                                                                           unspecified
49044                                                                                           unspecified
49046                                                                                           unspecified
49051                                                                                           unspecified
49052                                                                                           unspecified
49082                                              based on weight (0-25 lbs), based on weight (51-100 lbs)
49084                                                                          based on weight (51-100 lbs)
49096                                                                                           unspecified
49105                                                                                           unspecified
49113                                                                                           application
49117                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49120                                                                                              160, 800
49123                                                                          based on weight (60-120 lbs)
49127                                                                                           unspecified
49128                                                                          based on weight (51-100 lbs)
49129                                                                        based on weight (60.1-121 lbs)
49130                                                                                          small amount
49163                                                                                           unspecified
49164                                                                          based on weight (51-100 lbs)
49167                                                                                           unspecified
49168                                                                                           unspecified
49169                                                                          based on weight (51-100 lbs)
49170                                                                                       based on weight
49184                                                                                           unspecified
49193                                          425 mg s-adenosylmethionine, 35 mg silybin a + b, 120 mg spc
49196                                                680.4 febantel, 136 praziquantel, 136 pyrantel pamoate
49208                                                                                           unspecified
49209                                                                                           unspecified
49216                                                                           based on weight (20-40 lbs)
49217                                                                          based on weight (60-120 lbs)
49218                                                                          based on weight (60-120 lbs)
49219                                                              27 mg milbemycin oxime, 1620 mg spinosad
49220                                                                                              27, 1620
49227                                                                                          small amount
49229                                                                                          small amount
49231                                                                                          small amount
49232                                                                                        0.5 inch strip
49248                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
49252                                                                          based on weight (51-100 lbs)
49253                                                                           based on weight (44-88 lbs)
49316                                                                                           unspecified
49323                                                                           based on weight (45-88 lbs)
49324                                                                          based on weight (51-100 lbs)
49343                                                                          based on weight (51-100 lbs)
49346                                                                          based on weight (51-100 lbs)
49348                                                                          based on weight (51-100 lbs)
49350                                                                          based on weight (51-100 lbs)
49351                                                                          based on weight (60-120 lbs)
49352                                                                          based on weight (51-100 lbs)
49376                                                                          based on weight (51-100 lbs)
49377                                                                           based on weight (45-88 lbs)
49378                                                                          based on weight (51-100 lbs)
49379                                                                             based on weight (55+ lbs)
49388                                                                          based on weight (51-100 lbs)
49393                                                                                           unspecified
49394                                                                                           unspecified
49395                                                                                           unspecified
49398                                                                                           unspecified
49403                                                                                           unspecified
49404                                                                                           unspecified
49408                                                                             based on weight (50+ lbs)
49409                                                                             based on weight (50+ lbs)
49437                                                                          based on weight (61-100 lbs)
49438                                                                          based on weight (50-100 lbs)
49442                                                                                       based on weight
49460                                                                           based on weight (56-95 lbs)
49461                                                                          based on weight (50-100 lbs)
49462                                                                              2 tablets/pills/capsules
49463                                                                          based on weight (51-100 lbs)
49473                                                                          based on weight (51-100 lbs)
49509                                                                            based on weight (100+ lbs)
49510                                                                          based on weight (50-100 lbs)
49518                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49520                                                                                       2.2, 14.8, 16.6
49523                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49526                                                                                       0.05%, 0.5%, 3%
49531                                                                                           unspecified
49549                                                                          based on weight (50-100 lbs)
49550                                                                          based on weight (60-121 lbs)
49553                                                                          based on weight (50-100 lbs)
49554                                                                        based on weight (60.1-121 lbs)
49567                                                                          based on weight (51-100 lbs)
49568                                                                                              inhalant
49572                                                                          based on weight (51-100 lbs)
49588                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
49590                                                                         based on weight (55.1-88 lbs)
49591                                                                          based on weight (51-100 lbs)
49593                                                                                           unspecified
49596                                                                                           unspecified
49601                                                                                           unspecified
49607                                                                                        27 mg, 1620 mg
49645                                                                          based on weight (51-100 lbs)
49649                                                                                           application
49654                                                                                           unspecified
49659                                                                                       0.25 inch strip
49698                                                                          based on weight (60-120 lbs)
49699                                                                             based on weight (55+ lbs)
49705                                                                                           unspecified
49748                                                                                                  tube
49753                                                                             based on weight (55+ lbs)
49754                                                                           based on weight (45-88 lbs)
49755                                                                          based on weight (51-100 lbs)
49756                                                                           based on weight (45-88 lbs)
49757                                                                        based on weight (50.1-100 lbs)
49758                                                                          based on weight (50-100 lbs)
49766                                                                                           unspecified
49767                                                                           based on weight (45-88 lbs)
49768                                                                                       based on weight
49769                                                                                           unspecified
49773                                                                                           unspecified
49792                                                                          based on weight (51-100 lbs)
49793                                                                        based on weight (60.1-121 lbs)
49799                                                                                           unspecified
49812                                                                                           unspecified
49849                                                                                           application
49854                                                                                        1 pack/package
49855                                                                              2 tablets/pills/capsules
49857                                                                                       based on weight
49861                                                                           based on weight (56-90 lbs)
49862                                                                           based on weight (56-90 lbs)
49871                                                                              based on weight (20 lbs)
49878                                                                          based on weight (51-100 lbs)
49883                                                                                        1 pack/package
49886                                                                          based on weight (51-100 lbs)
49889                                                                          based on weight (51-100 lbs)
49890                                                                           based on weight (56-95 lbs)
49898                                                                              based on weight (20 lbs)
49905                                                                          based on weight (51-100 lbs)
49906                                                                                          small amount
49907                                                                          based on weight (51-100 lbs)
49908                                                                          based on weight (51-100 lbs)
49911                                                                          based on weight (51-100 lbs)
49912                                                                           based on weight (56-95 lbs)
49963                                                                 based on weight (51-100 lbs) - 272 mg
49966                                                                                           application
49978                                                                          based on weight (51-100 lbs)
49985                                                                          based on weight (51-100 lbs)
49986                                                                                       based on weight
49987                                                                                       based on weight
49990                                                                                        1 pack/package
49991                                                                          based on weight (51-100 lbs)
49992                                                                                             4-6 drops
49993                                                                                       based on weight
49996                                                                                           as directed
50001                                                                          based on weight (51-100 lbs)
50004                                                                          based on weight (51-100 lbs)
50006                                                                                       based on weight
50007                                                                                           unspecified
50008                                                                          based on weight (51-100 lbs)
50009                                                                                       based on weight
50011                                                                                           unspecified
50012                                                                                           unspecified
50014                                                                                           unspecified
50048                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
50050                                                                                           unspecified
50077                                                                                       based on weight
50107                                                                          based on weight (51-100 lbs)
50108                                                                           based on weight (44-88 lbs)
50115                                                                                           unspecified
50116                                                                           based on weight (20-60 lbs)
50117                                                                          based on weight (50-100 lbs)
50118                                                                          based on weight (50-100 lbs)
50154                                                           23 mg milbemycin oxime, 228 mg praziquantel
50159                                                                                           unspecified
50161                                                                                           unspecified
50187                                                                          based on weight (51-100 lbs)
50189                                                                          based on weight (51-100 lbs)
50190                                                                          based on weight (51-100 lbs)
50194                                                                          based on weight (51-100 lbs)
50195                                                                             based on weight (55+ lbs)
50196                                                                          based on weight (51-100 lbs)
50198                                                                          based on weight (51-100 lbs)
50199                                                                             based on weight (55+ lbs)
print(nrow(non_numeric_dose5))
[1] 8821
# futher tweaks sprays -> spray, drops -> drop, tbs -> tbsp

dose <- dose %>%
  mutate(
    dose = as.character(dose),  # Convert to character if it's not already
    
    # Update dose_unit column based on the presence of specific units
    dose_unit = case_when(
      grepl("\\bsprays\\b", dose, ignore.case = TRUE) ~ "spray",
      grepl("\\bdrops\\b", dose, ignore.case = TRUE) ~ "drop",
      grepl("\\btbs\\b", dose, ignore.case = TRUE) ~ "tbsp",
      TRUE ~ dose_unit  # Keep the original value if no match is found
    ),
    
    # Remove unit words from the dose column
    dose = gsub("\\bsprays\\b", "", dose),
    dose = gsub("\\bdrops\\b", "", dose),
    dose = gsub("\\btbs\\b", "", dose)
  )
#rerun again 1)
dash_pattern <- grepl("^\\d+(\\.\\d+)?\\s*-\\s*\\d+(\\.\\d+)?$", dose$dose)

# Calculate the average for rows matching the pattern
dose$dose[dash_pattern] <- sapply(dose$dose[dash_pattern], function(x) {
  # Split the string by '-'
  nums <- as.numeric(unlist(strsplit(x, "-")))
  # Return the average
  mean(nums)
})


###5) deal with rows where there is a dose in dose unit just in unusable format eg. 1.5 tablet/capsule/pill-136 which is 1.5 x 136mg tablet
# Example input data

# Regex to match the pattern NUM STRING NUM with a dash (e.g., 1.5 tablets/pills/capsules - 136)
unit_pattern <- "(\\d+(\\.\\d+)?)\\s+[a-zA-Z/]+\\s*-\\s*(\\d+(\\.\\d+)?)"

# Identify rows matching the pattern NUM STRING NUM with a dash
matches <- grep(unit_pattern, dose$dose, value = TRUE)

# Extract numbers, multiply, and replace in `dose` column
dose$dose[grep(unit_pattern, dose$dose)] <- sapply(
  dose$dose[grep(unit_pattern, dose$dose)],
  function(x) {
    # Extract numbers using regex
    nums <- regmatches(x, regexec(unit_pattern, x))
    
    # Get the first and second number (convert to numeric)
    num1 <- as.numeric(nums[[1]][2])  # First number
    num2 <- as.numeric(nums[[1]][4])  # Second number
    
    # Perform multiplication
    result <- num1 * num2
    
    # Replace original value with result
    return(as.character(result))
  }
)

# Output the updated data frame
print(dose)
                                                                                                                            medication_ingredients
1                                                                                                                                      amoxicillin
2                                                                                                                                         tramadol
3                                                                                                                                         dextrose
4                                                                                                                                          calcium
5                                                                                                                                         oxytocin
6                                                                                                                                      doxycycline
7                                                                                                                                        carprofen
8                                                                                                                                        meloxicam
9                                                                                                                                       gabapentin
10                                                                                                                                atropine sulfate
11                                                                                                                                      tobramycin
12                                                                                                                                      tacrolimus
13                                                                                                                                        tramadol
14                                                                                                                                       meloxicam
15                                                                                                                                       cefazolin
16                                                                                                                              maropitant citrate
17                                                                                                                                       meloxicam
18                                                                                                                                       ofloxacin
19                                                                                                                                      tobramycin
20                                                                                                                                      tacrolimus
21                                                                                                                                        tramadol
22                                                                                                                                       meloxicam
23                                                                                                                                      gabapentin
24                                                                                                                                       meloxicam
25                                                                                                                                      gabapentin
26                                                                                                                                         aspirin
27                                                                                                              amoxicillin, clavulanate potassium
28                                                                                                               enrofloxacin, silver sulfadiazine
29                                                                                                                            cefpodoxime proxetil
30                                                                                                                              maropitant citrate
31                                                                                                                                      ampicillin
32                                                                                                                                       meloxicam
33                                                                                                                                      alfaxalone
34                                                                               neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
35                                                                                                             ear cleaner (zymox), hydrocortisone
36                                                                                                              amoxicillin, clavulanate potassium
37                                                                                                                                       meloxicam
38                                                                                                                                milbemycin oxime
39                                                                                                                                      ivermectin
40                                                                                                                  polysulfated glycosaminoglycan
41                                                                                                          joint supplement (glucosamine hcl/msm)
42                                                                                                                                       meloxicam
43                                                                                                                                     hydroxyzine
44                                                                                                                                     amoxicillin
45                                                                                                                                       firocoxib
46                                                                                                                                        spinosad
47                                                                                                                    ivermectin, pyrantel pamoate
48                                                                                                                        imidacloprid, moxidectin
49                                                                                                                                    imidacloprid
50                                                                                                                                     minocycline
51                                                                                          joint supplement (chondroitin sulfate/glucosamine hcl)
52                                                                                                                                       vitamin c
53                                                                                                                    ivermectin, pyrantel pamoate
54                                                                                                                                     amoxicillin
55                                                                                                                                       firocoxib
56                                                                                                                   unspecified herbal supplement
57                                                                               neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
58                                                                                                  dexamethasone, neomycin sulfate, thiabendazole
59                                                                                                                                      ivermectin
60                                                                                                                      imidacloprid, pyriproxyfen
61                                                                                                                                       vitamin c
62                                                                                                                      imidacloprid, pyriproxyfen
63                                                                                                                                      ivermectin
64                                                                                                                                         taurine
65                                                                                                                                     l-carnitine
66                                                                                                                   unspecified herbal supplement
67                                                                                                                                       mupirocin
68                                                                                                                            prednisolone acetate
69                                                                                                                                     amoxicillin
70                                                                                                                                       mupirocin
71                                                                                                                                    ketoconazole
72                                                                                                  dexamethasone, neomycin sulfate, thiabendazole
73                                                                                                                                      fluralaner
74                                                                                                                      imidacloprid, pyriproxyfen
75                                                                                                                    ivermectin, pyrantel pamoate
76                                                                                                                                     amoxicillin
77                                                                                                                                       vitamin c
78                                                                                                 betamethasone, clotrimazole, gentamicin sulfate
79                                                                                                                                 diphenhydramine
80                                                                                                                                         taurine
81                                                                                                                                    coenzyme q10
82                                                                                                                                     l-carnitine
83                                                                                                                               vision supplement
84                                                                                                               betamethasone, gentamicin sulfate
85                                                                                                                            prednisolone acetate
86                                                                                                                                     doxycycline
87                                                                                                                                   dexamethasone
88                                                                                                                                        tramadol
89                                                                                                                            cefpodoxime proxetil
90                                                                                                                                       carprofen
91                                                                                                 betamethasone, clotrimazole, gentamicin sulfate
92                                                                                                                                         taurine
93                                                                                                                                     l-carnitine
94                                                                                                                                    coenzyme q10
95                                                                                                                                       vitamin e
96                                                                                                                                       vitamin c
97                                                                                                                                         omega 3
98                                                                                                          joint supplement (glucosamine hcl/msm)
99                                                                                                                                      gabapentin
100                                                                                                                                  acetaminophen
101                                                                                                                                      carprofen
102                                                                                                                           cefpodoxime proxetil
103                                                                                                                           cefpodoxime proxetil
104                                                                                                                                chloramphenicol
105                                                                                                                                       rifampin
106                                                                                                                                     gabapentin
107                                                                                                                                     gabapentin
108                                                                                                                                  buprenorphine
109                                                                                                                                       fentanyl
110                                                                                                                                   cyclosporine
111                                                                                                betamethasone, clotrimazole, gentamicin sulfate
112                                                                                                              enrofloxacin, silver sulfadiazine
113                                                                                                   florfenicol, mometasone furoate, terbinafine
114                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
115                                                                                                              dexamethasone, miconazole nitrate
116                                                                                                                amikacin sulfate, dexamethasone
117                                                                                                                 polysulfated glycosaminoglycan
118                                                                                                                                      probiotic
119                                                                                                                                   multivitamin
120                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
121                                                                                                                                        omega 3
122                                                                                                                                cbd or hemp oil
123                                                                                                                                        taurine
124                                                                                                                       urinary tract supplement
125                                                                                                                                   coenzyme q10
126                                                                                                                                      vitamin c
127                                                                                                                                      vitamin c
128                                                                                                                       joint supplement (other)
129                                                                                                                      immune support supplement
130                                                                                                                      immune support supplement
131                                                                                                                      immune support supplement
132                                                                                                                        nourish essence formula
133                                                                                                                                      firocoxib
134                                                                                                                                      carprofen
135                                                                                                                             methylprednisolone
136                                                                                                                             methylprednisolone
137                                                                                                                                   enrofloxacin
138                                                                                                                                    doxycycline
139                                                                                                                                     cephalexin
140                                                                                                                                   chlorambucil
141                                                                                                                                     gabapentin
142                                                                                                                             maropitant citrate
143                                                                                                                                     amantadine
144                                                                                                                                  acetaminophen
145                                                                                                                                       fentanyl
146                                                                                                                                diphenhydramine
147                                                                                                                                   cyclosporine
148                                                                                                                 polysulfated glycosaminoglycan
149                                                                                                    chlorhexidine gluconate, miconazole nitrate
150                                                                                                                                      tris-edta
151                                                                                                                        chlorhexidine gluconate
152                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
153                                                                                                                                   multivitamin
154                                                                                                                      immune support supplement
155                                                                                                                      immune support supplement
156                                                                                                                                        omega 3
157                                                                                                                                      vitamin e
158                                                                                                                                        taurine
159                                                                                                                                    l-carnitine
160                                                                                                                                   coenzyme q10
161                                                                                                                              vision supplement
162                                                                                                                                cbd or hemp oil
163                                                                                                                       urinary tract supplement
164                                                                                                                                      probiotic
165                                                                                                                                     ca support
166                                                                                                                                      vitamin c
167                                                                                                                       joint supplement (other)
168                                                                                                                                      carprofen
169                                                                                                                                     prednisone
170                                                                                                                                  dexamethasone
171                                                                                                                                   enrofloxacin
172                                                                                                                                     gabapentin
173                                                                                                                 polysulfated glycosaminoglycan
174                                                                                                                                   chlorambucil
175                                                                                                    chlorhexidine gluconate, miconazole nitrate
176                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
177                                                                                                                                      carprofen
178                                                                                                                                     prednisone
179                                                                                                                                   fenbendazole
180                                                                                                                                     ivermectin
181                                                                                                                                     ivermectin
182                                                                                                                                     ivermectin
183                                                                                                                                     ivermectin
184                                                                                                                                     fluralaner
185                                                                                                                                     ivermectin
186                                                                                                                                     fluralaner
187                                                                                                                                     fluralaner
188                                                                                                                                     fluralaner
189                                                                                                                                     ivermectin
190                                                                                                                                   fenbendazole
191                                                                                                                                     ivermectin
192                                                                                                                                     fluralaner
193                                                                                                                                     ivermectin
194                                                                                                                                     ivermectin
195                                                                                                                       fipronil, (s)-methoprene
196                                                                                                                                     ivermectin
197                                                                                                                                     ivermectin
198                                                                                                                                     fluralaner
199                                                                                                                                       propofol
200                                                                                                                                       oxytocin
201                                                                                                                                   penicillin g
202                                                                                                                                      cefazolin
203                                                                                                                                      carprofen
204                                                                                                                                  buprenorphine
205                                                                                                                                      carprofen
206                                                                                                             amoxicillin, clavulanate potassium
207                                                                                                                                     fluralaner
208                                                                                                                                     ivermectin
209                                                                                                                                  levothyroxine
210                                                                                                                                     fluralaner
211                                                                                                                                       propofol
212                                                                                                                                      carprofen
213                                                                                                                                      cefazolin
214                                                                                                             amoxicillin, clavulanate potassium
215                                                                                                                                      carprofen
216                                                                                                                                     ivermectin
217                                                                                                                                     fluralaner
218                                                                                                                                   fenbendazole
219                                                                                                                                     ivermectin
220                                                                                                                                     fluralaner
221                                                                                                             amoxicillin, clavulanate potassium
222                                                                                                                                     gabapentin
223                                                                                                                                   capromorelin
224                                                                                                                                      carprofen
225                                                                                                                                     cephalexin
226                                                                                                                                     prednisone
227                                                                                                                   ivermectin, pyrantel pamoate
228                                                                                                                                     cephalexin
229                                                                                                            ear cleaner (zymox), hydrocortisone
230                                                                                                                   ivermectin, pyrantel pamoate
231                                                                                                                                    amoxicillin
232                                                                                                                                      meloxicam
233                                                                                                            ear cleaner (zymox), hydrocortisone
234                                                                                                                       fipronil, (s)-methoprene
235                                                                                                                   ivermectin, pyrantel pamoate
236                                                                                                        betamethasone, florfenicol, terbinafine
237                                                                                                        betamethasone, florfenicol, terbinafine
238                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
239                                                                                                                                     afoxolaner
240                                                                                                                       fipronil, (s)-methoprene
241                                                                                                                                     lokivetmab
242                                                                                                        betamethasone, florfenicol, terbinafine
243                                                                                                        betamethasone, florfenicol, terbinafine
244                                                                                                                       fipronil, (s)-methoprene
245                                                                                                                                     lokivetmab
246                                                                                                                                     lokivetmab
247                                                                                                                                     lokivetmab
248                                                                                                   florfenicol, mometasone furoate, terbinafine
249                                                                                                                                     lokivetmab
250                                                                                                   florfenicol, mometasone furoate, terbinafine
251                                                                                                                                       tramadol
252                                                                                                                                      carprofen
253                                                                                                             amoxicillin, clavulanate potassium
254                                                                                                                           cefpodoxime proxetil
255                                                                                                                 sulfamethoxazole, trimethoprim
256                                                                                                                     milbemycin oxime, spinosad
257                                                                                                                     milbemycin oxime, spinosad
258                                                                                                                 milbemycin oxime, praziquantel
259                                                                                                                                     fluralaner
260                                                                                                                                     ranitidine
261                                                                                                                               milbemycin oxime
262                                                                                                                                     famotidine
263                                                                                                                                        omega 3
264                                                                                                                                     fluoxetine
265                                                                                                                                     fluoxetine
266                                                                                                                                     alprazolam
267                                                                                                                                    amoxicillin
268                                                                                                                                  metronidazole
269                                                                                                                             maropitant citrate
270                                                                                                                               liver supplement
271                                                                                                                                     gabapentin
272                                                                                                                                    ondansetron
273                                                                                                                                     ivermectin
274                                                                                                                                       spinosad
275                                                                                                                   ivermectin, pyrantel pamoate
276                                                                                                                                     ivermectin
277                                                                                                                                     afoxolaner
278                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
279                                                                                        chlorhexidine gluconate, ketoconazole, phytosphingosine
280                                                                                                                        triamcinolone acetonide
281                                                                                                                                     cephalexin
282                                                                                                              dexamethasone, methylprednisolone
283                                                                                                                               sulfamethoxazole
284                                                                                        chlorhexidine gluconate, ketoconazole, phytosphingosine
285                                                                                                betamethasone, clotrimazole, gentamicin sulfate
286                                                                                                                                     afoxolaner
287                                                                                                                                     ivermectin
288                                                                                                                                     ivermectin
289                                                                                                             amoxicillin, clavulanate potassium
290                                                                                                                               milbemycin oxime
291                                                                                                                                  metronidazole
292                                                                                                                                   fenbendazole
293                                                                                                                                    doxycycline
294                                                                                                                                       tramadol
295                                                                                                                                   penicillin g
296                                                                                                                                    amoxicillin
297                                                                                                             amoxicillin, clavulanate potassium
298                                                                                                                                  metronidazole
299                                                                                                             amoxicillin, clavulanate potassium
300                                                                                                                                   fenbendazole
301                                                                                                                                    doxycycline
302                                                                                                                                    doxycycline
303                                                                                                betamethasone, clotrimazole, gentamicin sulfate
304                                                                                                                                  metronidazole
305                                                                                                                                      deracoxib
306                                                                                                                                  metronidazole
307                                                                                                             amoxicillin, clavulanate potassium
308                                                                                                                             miconazole nitrate
309                                                                                                                     imidacloprid, pyriproxyfen
310                                                                                                                   ivermectin, pyrantel pamoate
311                                                                                                                                   ketoconazole
312                                                                                                                             miconazole nitrate
313                                                                                                                                  metronidazole
314                                                                                                                                   fenbendazole
315                                                                                                                                      vitamin b
316                                                                                                                               tylosin tartrate
317                                                                                                                     imidacloprid, pyriproxyfen
318                                                                                                                   ivermectin, pyrantel pamoate
319                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
320                                                                                                                                  metronidazole
321                                                                                                                                    doxycycline
322                                                                                                                                     cephalexin
323                                                                                                                   ivermectin, pyrantel pamoate
324                                                                                                                     imidacloprid, pyriproxyfen
325                                                                                                                                   enrofloxacin
326                                                                                                                                    doxycycline
327                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
328                                                                                                                       imidacloprid, permethrin
329                                                                                                                   ivermectin, pyrantel pamoate
330                                                                                                                                    fluconazole
331                                                                                                                                    doxycycline
332                                                                                                                     imidacloprid, pyriproxyfen
333                                                                                                                   ivermectin, pyrantel pamoate
334                                                                                                                             maropitant citrate
335                                                                                                                                     famotidine
336                                                                                                                                     famotidine
337                                                                                                                                      carprofen
338                                                                                                                                    doxycycline
339                                                                                                                                  metronidazole
340                                                                                                                                      carprofen
341                                                                                                                   ivermectin, pyrantel pamoate
342                                                                                                                    lufenuron, milbemycin oxime
343                                                                                                                                      cefazolin
344                                                                                                                                      carprofen
345                                                                                                             amoxicillin, clavulanate potassium
346                                                                                                                                   enrofloxacin
347                                                                                                                    lufenuron, milbemycin oxime
348                                                                                                                    lufenuron, milbemycin oxime
349                                                                                                                    lufenuron, milbemycin oxime
350                                                                                                                    lufenuron, milbemycin oxime
351                                                                                                                    lufenuron, milbemycin oxime
352                                                                                                                                      sarolaner
353                                                                                                                    lufenuron, milbemycin oxime
354                                                                                                                                      sarolaner
355                                                                                                                    lufenuron, milbemycin oxime
356                                                                                                                                    clindamycin
357                                                                                                                                    doxycycline
358                                                                                                                                  methocarbamol
359                                                                                                                                     gabapentin
360                                                                                                                                       tramadol
361                                                                                                                                     grapiprant
362                                                                                                                                      trazodone
363                                                                                                                                     grapiprant
364                                                                                                                                  metronidazole
365                                                                                                                                    l-carnitine
366                                                                                                                                   coenzyme q10
367                                                                                                 mometasone furoate, orbifloxacin, posaconazole
368                                                                                                                                     afoxolaner
369                                                                                                                                     afoxolaner
370                                                                                                                           prednisolone acetate
371                                                                                                                           prednisolone acetate
372                                                                                                                                     afoxolaner
373                                                                                                                           prednisolone acetate
374                                                                                                                                     fluralaner
375                                                                                                                   ivermectin, pyrantel pamoate
376                                                                                                                                     fluralaner
377                                                                                                                           prednisolone acetate
378                                                                                                                          ampicillin, sulbactam
379                                                                                                                                   enrofloxacin
380                                                                                                                                    ondansetron
381                                                                                                                                       fentanyl
382                                                                                                                           prednisolone acetate
383                                                                                                                    lufenuron, milbemycin oxime
384                                                                                                                    lufenuron, milbemycin oxime
385                                                                                                                    lufenuron, milbemycin oxime
386                                                                                                                    lufenuron, milbemycin oxime
387                                                                                                                                  metronidazole
388                                                                                                                                   fenbendazole
389                                                                                                                    lufenuron, milbemycin oxime
390                                                                                                                   ivermectin, pyrantel pamoate
391                                                                                                                     imidacloprid, pyriproxyfen
392                                                                                                                   ivermectin, pyrantel pamoate
393                                                                                                                     imidacloprid, pyriproxyfen
394                                                                                                             amoxicillin, clavulanate potassium
395                                                                                                                          amitraz, metaflurimon
396                                                                                                                                     benzocaine
397                                                                                                                                      probiotic
398                                                                                                                                     cephalexin
399                                                                                                                                   fenbendazole
400                                                                                                                                     alprazolam
401                                                                                                                                        omega 3
402                                                                                                                                     ivermectin
403                                                                                                                                     ivermectin
404                                                                                                                                     ivermectin
405                                                                                                                                    hydroxyzine
406                                                                                                                                     ivermectin
407                                                                                                                    lufenuron, milbemycin oxime
408                                                                                                                                       tramadol
409                                                                                                                           cefpodoxime proxetil
410                                                                                                                                  buprenorphine
411                                                                                                                                      deracoxib
412                                                                                                                                   ketoconazole
413                                                                                                                                diphenhydramine
414                                                                                                                    lufenuron, milbemycin oxime
415                                                                                                                                    oclacitinib
416                                                                                                            allergy immunotherapy - unspecified
417                                                                                                                    lufenuron, milbemycin oxime
418                                                                                                                   ivermectin, pyrantel pamoate
419                                                                                                                                    oclacitinib
420                                                                                                                                    hydroxyzine
421                                                                                                            allergy immunotherapy - unspecified
422                                                                                                                                  buprenorphine
423                                                                                                                                       propofol
424                                                                                                                                      carprofen
425                                                                                                                                       tramadol
426                                                                                                                           cefpodoxime proxetil
427                                                                                                                               ceftiofur sodium
428                                                                                                                                     lokivetmab
429                                                                                                                   ivermectin, pyrantel pamoate
430                                                                                                                                     afoxolaner
431                                                                                                                                    oclacitinib
432                                                                                                                                     lokivetmab
433                                                                                                                   ivermectin, pyrantel pamoate
434                                                                                                                   ivermectin, pyrantel pamoate
435                                                                                                                                    oclacitinib
436                                                                                                                                     fluralaner
437                                                                                                                       skin and coat supplement
438                                                                                                                                     lokivetmab
439                                                                                                                   ivermectin, pyrantel pamoate
440                                                                                                                                     afoxolaner
441                                                                                                                                    oclacitinib
442                                                                                                                                     lokivetmab
443                                                                                                                                    oclacitinib
444                                                                                                                                    oclacitinib
445                                                                                                                           cefpodoxime proxetil
446                                                                                                                                    oclacitinib
447                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
448                                                                                                                                   ketoconazole
449                                                                                      activated charcoal, bismuth subsalicylate, kaolin, pectin
450                                                                                                                                      carprofen
451                                                                                                                                     prednisone
452                                                                                                                                    oclacitinib
453                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
454                                                                                                                                      carprofen
455                                                                                                                           cefpodoxime proxetil
456                                                                                                                                    oclacitinib
457                                                                                                                                  yunnan baiyao
458                                                                                                                                    bedinvetmab
459                                                                                                                                      carprofen
460                                                                                                                                     prednisone
461                                                                                                                     milbemycin oxime, spinosad
462                                                                                            enrofloxacin, ketoconazole, triamcinolone acetonide
463                                                                                                                   ivermectin, pyrantel pamoate
464                                                                                                                   ivermectin, pyrantel pamoate
465                                                                                                                                     afoxolaner
466                                                                                                                   ivermectin, pyrantel pamoate
467                                                                                                                                     afoxolaner
468                                                                                                                                      sarolaner
469                                                                                                                           cefpodoxime proxetil
470                                                                                                                                      carprofen
471                                                                                                                                      cefovecin
472                                                                                                                                    oclacitinib
473                                                                                                        betamethasone, florfenicol, terbinafine
474                                                                                                                                     ivermectin
475                                                                                                                                apomorphine hcl
476                                                                                                                             maropitant citrate
477                                                                                                           activated charcoal, kaolin, sorbitol
478                                                                                                                   ivermectin, pyrantel pamoate
479                                                                                                                                     afoxolaner
480                                                                                                   florfenicol, mometasone furoate, terbinafine
481                                                                                                                           cefpodoxime proxetil
482                                                                                                                                     lokivetmab
483                                                                                                                                  metronidazole
484                                                                                                                                      cefovecin
485                                                                                                                                     lokivetmab
486                                                                                                                                      carprofen
487                                                                                                                   ivermectin, pyrantel pamoate
488                                                                                                                                     afoxolaner
489                                                                                                                                     lokivetmab
490                                                                                                                                  metronidazole
491                                                                                                   florfenicol, mometasone furoate, terbinafine
492                                                                                                                                     ivermectin
493                                                                                                             amoxicillin, clavulanate potassium
494                                                                                                                                     ivermectin
495                                                                                                                                     afoxolaner
496                                                                                                                                     ivermectin
497                                                                                                                                     afoxolaner
498                                                                                                                   ivermectin, pyrantel pamoate
499                                                                                                                                     fluralaner
500                                                                                                                                     fluralaner
501                                                                                                                                      trazodone
502                                                                                                                                 benazepril hcl
503                                                                                                                                      carprofen
504                                                                                                                   ivermectin, pyrantel pamoate
505                                                                                                                                      ophytrium
506                                                                                                                                    amoxicillin
507                                                                                                                                      carprofen
508                                                                                                                          tiletamine, zolazepam
509                                                                                                                                      cefazolin
510                                                                                                                                       morphine
511                                                                                                                                     cephalexin
512                                                                                                                                      carprofen
513                                                                                                                                     ivermectin
514                                                                                                                          tiletamine, zolazepam
515                                                                                                                                       morphine
516                                                                                                                                      cefazolin
517                                                                                                                                      carprofen
518                                                                                                                                     cephalexin
519                                                                                                                                     isoflurane
520                                                                                                                                    clindamycin
521                                                                                                                                apomorphine hcl
522                                                                                                                             maropitant citrate
523                                                                                                                   ivermectin, pyrantel pamoate
524                                                                                                                                     afoxolaner
525                                                                                                             amoxicillin, clavulanate potassium
526                                                                                                                   ivermectin, pyrantel pamoate
527                                                                                                                                     afoxolaner
528                                                                                                                                    oclacitinib
529                                                                                                                                    oclacitinib
530                                                                                                        betamethasone, florfenicol, terbinafine
531                                                                                                                                     cephalexin
532                                                                                                                   ivermectin, pyrantel pamoate
533                                                                                                                                     afoxolaner
534                                                                                                                   ivermectin, pyrantel pamoate
535                                                                                                                                     afoxolaner
536                                                                                                                                     cephalexin
537                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
538                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
539                                                                                                                                        omega 3
540                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
541                                                                                                                                        omega 3
542                                                                                                                                        omega 3
543                                                                                                                                      carprofen
544                                                                                                                                      carprofen
545                                                                                                                                      cefazolin
546                                                                                                                                   enrofloxacin
547                                                                                                                                    amoxicillin
548                                                                                                                               liver supplement
549                                                                                                                                       ursodiol
550                                                                                                                                       ursodiol
551                                                                                                                                  yunnan baiyao
552                                                                                                                                       tramadol
553                                                                                                                                     gabapentin
554                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
555                                                                                                                      immune support supplement
556                                                                                                                             maropitant citrate
557                                                                                                                                      probiotic
558                                                                                                                                  buprenorphine
559                                                                                                                           prebiotic, probiotic
560                                                                                                                                     prednisone
561                                                                                                                                     prednisone
562                                                                                                                                     prednisone
563                                                                                                                                   enrofloxacin
564                                                                                                                                    amoxicillin
565                                                                                                                                    amoxicillin
566                                                                                                                                    doxycycline
567                                                                                                                                       ursodiol
568                                                                                                                                  yunnan baiyao
569                                                                                                                                 metoclopramide
570                                                                                                                                 metoclopramide
571                                                                                                                                  levothyroxine
572                                                                                                                                  levothyroxine
573                                                                                                                                  levothyroxine
574                                                                                                                                      probiotic
575                                                                                                                 polysulfated glycosaminoglycan
576                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
577                                                                                                                             maropitant citrate
578                                                                                                                                     prednisone
579                                                                                                                                     prednisone
580                                                                                                                                     prednisone
581                                                                                                                                     prednisone
582                                                                                                                               pyrantel pamoate
583                                                                                                                                     cephalexin
584                                                                                                             amoxicillin, clavulanate potassium
585                                                                                                                           cefpodoxime proxetil
586                                                                                                                                    hydroxyzine
587                                                                                                                           cefpodoxime proxetil
588                                                                                                                                    hydroxyzine
589                                                                                                                                   enrofloxacin
590                                                                                                                                     cephalexin
591                                                                                                                                    hydroxyzine
592                                                                                                                                     prednisone
593                                                                                                                           cefpodoxime proxetil
594                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
595                                                                                                                           cefpodoxime proxetil
596                                                                                                                                    hydroxyzine
597                                                                                                                       fipronil, (s)-methoprene
598                                                                                                                                     afoxolaner
599                                                                                                                   ivermectin, pyrantel pamoate
600                                                                                                                                     afoxolaner
601                                                                                                                                    hydroxyzine
602                                                                                                                           cefpodoxime proxetil
603                                                                                                                   ivermectin, pyrantel pamoate
604                                                                                                                                     afoxolaner
605                                                                                                                   ivermectin, pyrantel pamoate
606                                                                                                                                     afoxolaner
607                                                                                                                                    hydroxyzine
608                                                                                                                   ivermectin, pyrantel pamoate
609                                                                                                                                     afoxolaner
610                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
611                                                                                                                                    hydroxyzine
612                                                                                                                           cefpodoxime proxetil
613                                                                                                                           cefpodoxime proxetil
614                                                                                                                                    oclacitinib
615                                                                                                                                       tramadol
616                                                                                                                                     gabapentin
617                                                                                                                                      carprofen
618                                                                                                                           cefpodoxime proxetil
619                                                                                                                           cognitive supplement
620                                                                                                                                      trazodone
621                                                                                                                                      melatonin
622                                                                                                                                      carprofen
623                                                                                                                                     prednisone
624                                                                                                                             maropitant citrate
625                                                                                                                                    mirtazapine
626                                                                                                                                      carprofen
627                                                                                                                                     prednisone
628                                                                                                                                     cephalexin
629                                                                                                                                       propofol
630                                                                                                                                      midazolam
631                                                                                                                                   acepromazine
632                                                                                                                               atropine sulfate
633                                                                                                                                  ciprofloxacin
634                                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm)
635                                                                                                                                      melatonin
636                                                                                                                                     ivermectin
637                                                                                                                                      omega 3-6
638                                                                                                                                      melatonin
639                                                                                                                                        omega 3
640                                                                                                                                      vitamin c
641                                                                                                                                     ivermectin
642                                                                                  bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
643                                                                                                                                     prednisone
644                                                                                                                   ivermectin, pyrantel pamoate
645                                                                                                                                      melatonin
646                                                                                                                                     prednisone
647                                                                                                                                     prednisone
648                                                                                                                        triamcinolone acetonide
649                                                                                                                                diphenhydramine
650                                                                                                                       fipronil, (s)-methoprene
651                                                                                                                   ivermectin, pyrantel pamoate
652                                                                                                                                     prednisone
653                                                                                                                        triamcinolone acetonide
654                                                                                                                                diphenhydramine
655                                                                                                                                      firocoxib
656                                                                                                                                     prednisone
657                                                                                                                           cefpodoxime proxetil
658                                                                                            enrofloxacin, ketoconazole, triamcinolone acetonide
659                                                                                                                   ivermectin, pyrantel pamoate
660                                                                                                                                      firocoxib
661                                                                                                                          clorsulon, ivermectin
662                                                                                                             amoxicillin, clavulanate potassium
663                                                                                                                                     omeprazole
664                                                                                                                     lactated ringer's solution
665                                                                                                                             maropitant citrate
666                                                                                                                                     famotidine
667                                                                                                                                    pilocarpine
668                                                                                                                  sodium carboxymethylcellulose
669                                                                                                                                   azithromycin
670                                                                                                                                    doxycycline
671                                                                                                                   ivermectin, pyrantel pamoate
672                                                                                                                                    pilocarpine
673                                                                                                                                    doxycycline
674                                                                                                                   ivermectin, pyrantel pamoate
675                                                                                                                                     afoxolaner
676                                                                                                                                    pilocarpine
677                                                                                                                                cbd or hemp oil
678                                                                                                                                   tetracycline
679                                                                                                                                  metronidazole
680                                                                                                                                     lokivetmab
681                                                                                                                                    doxycycline
682                                                                                                                               liver supplement
683                                                                                                                                     grapiprant
684                                                                                                             amoxicillin, clavulanate potassium
685                                                                                                                                     famotidine
686                                                                                                                                     afoxolaner
687                                                                                                                                     grapiprant
688                                                                                                             amoxicillin, clavulanate potassium
689                                                                                                                                   enrofloxacin
690                                                                                                                                     grapiprant
691                                                                                                                               cyclophosphamide
692                                                                                                                                     grapiprant
693                                                                                                                                     prednisone
694                                                                                                              betamethasone, gentamicin sulfate
695                                                                                                                                      cefovecin
696                                                                                                                           prednisolone acetate
697                                                                                                                                       tramadol
698                                                                                                                                      carprofen
699                                                                                                              betamethasone, gentamicin sulfate
700                                                                                                                                     ivermectin
701                                                                                                                                      carprofen
702                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
703                                                                                                                   ivermectin, pyrantel pamoate
704                                                                                                                                      sarolaner
705                                                                                                                    lufenuron, milbemycin oxime
706                                                                                                                                      sarolaner
707                                                                                                                    lufenuron, milbemycin oxime
708                                                                                                                                      sarolaner
709                                                                                                                               liver supplement
710                                                                                                                                      lomustine
711                                                                                                                                   procarbazine
712                                                                                                                           prednisolone acetate
713                                                                                                                                      carprofen
714                                                                                                                                      carprofen
715                                                                                                                                  metronidazole
716                                                                                                                               liver supplement
717                                                                                                                                     sucralfate
718                                                                                                                                   procarbazine
719                                                                                                                                    vincristine
720                                                                                                                                      carprofen
721                                                                                                                                     prednisone
722                                                                                                                                    ondansetron
723                                                                                                                                     prednisone
724                                                                                                                       homatropine, hydrocodone
725                                                                                                                     milbemycin oxime, spinosad
726                                                                                                                       homatropine, hydrocodone
727                                                                                                                     milbemycin oxime, spinosad
728                                                                                                                   ivermectin, pyrantel pamoate
729                                                                                                                                     afoxolaner
730                                                                                                                   ivermectin, pyrantel pamoate
731                                                                                                                                      sarolaner
732                                                                                                                                    oclacitinib
733                                                                                                                                      ketorolac
734                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
735                                                                                                                                     prednisone
736                                                                                                                          mycophenolate mofetil
737                                                                                                                           dorzolamide, timolol
738                                                                                                                   ivermectin, pyrantel pamoate
739                                                                                                                                     afoxolaner
740                                                                                                                                     prednisone
741                                                                                                                                      ketorolac
742                                                                                                                          mycophenolate mofetil
743                                                                                                                                   enrofloxacin
744                                                                                                                                      ketorolac
745                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
746                                                                                                                          mycophenolate mofetil
747                                                                                                                           dorzolamide, timolol
748                                                                                                                                  levothyroxine
749                                                                                                                                     prednisone
750                                                                                                                                   enrofloxacin
751                                                                                                                                       tramadol
752                                                                                                                                  dexamethasone
753                                                                                                                                     cephalexin
754                                                                                                                   ivermectin, pyrantel pamoate
755                                                                                                                       fipronil, (s)-methoprene
756                                                                                                                       fipronil, (s)-methoprene
757                                                                                                      lufenuron, milbemycin oxime, praziquantel
758                                                                                                                                    doxycycline
759                                                                                                                                    tropicamide
760                                                                                                                                    tropicamide
761                                                                                                                                    tropicamide
762                                                                                                                                    doxycycline
763                                                                                                                                    tropicamide
764                                                                                                                   ivermectin, pyrantel pamoate
765                                                                                                                                     lokivetmab
766                                                                                                                                     lokivetmab
767                                                                                                                                    tropicamide
768                                                                                                                                cbd or hemp oil
769                                                                                                                                      meloxicam
770                                                                                                                               milbemycin oxime
771                                                                                                                                      carprofen
772                                                                                                                    lufenuron, milbemycin oxime
773                                                                                                                    lufenuron, milbemycin oxime
774                                                                                                                    lufenuron, milbemycin oxime
775                                                                                                                    lufenuron, milbemycin oxime
776                                                                                                                                     cephalexin
777                                                                                                                                       tramadol
778                                                                              neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
779                                                                                                                 sulfamethoxazole, trimethoprim
780                                                                                                                                      carprofen
781                                                                                                                                     prednisone
782                                                                                                                 sulfamethoxazole, trimethoprim
783                                                                                                                                      carprofen
784                                                                                                                    lufenuron, milbemycin oxime
785                                                                                                                     milbemycin oxime, spinosad
786                                                                                                                               milbemycin oxime
787                                                                                                                                       spinosad
788                                                                                                                                       fipronil
789                                                                                                                            ear cleaner (zymox)
790                                                                                                                     milbemycin oxime, spinosad
791                                                                                                                                     cephalexin
792                                                                                                                    lufenuron, milbemycin oxime
793                                                                                                                   ormetoprim, sulfadimethoxine
794                                                                                                                   ormetoprim, sulfadimethoxine
795                                                                                                                           cefpodoxime proxetil
796                                                                                                                                      carprofen
797                                                                                                                               liver supplement
798                                                                                                                             maropitant citrate
799                                                                                                                                    bedinvetmab
800                                                                                                                                    mirtazapine
801                                                                                                                                     furosemide
802                                                                                                                                      carprofen
803                                                                                                                                     fluralaner
804                                                                                                                                     fluralaner
805                                                                                                                                      carprofen
806                                                                                                                   ivermectin, pyrantel pamoate
807                                                                                                                       fipronil, (s)-methoprene
808                                                                                                                   ivermectin, pyrantel pamoate
809                                                                                                                                     cephalexin
810                                                                                                                                     selamectin
811                                                                                                                               pyrantel pamoate
812                                                                                                                            phenylpropanolamine
813                                                                                                                            phenylpropanolamine
814                                                                                                                                  metronidazole
815                                                                                                                                    doxycycline
816                                                                                                                         rx diet - renal health
817                                                                                                                                     prednisone
818                                                                                                                   ivermectin, pyrantel pamoate
819                                                                                                                   ivermectin, pyrantel pamoate
820                                                                                                                   ivermectin, pyrantel pamoate
821                                                                                                                   ivermectin, pyrantel pamoate
822                                                                                                                       fipronil, (s)-methoprene
823                                                                                                                       fipronil, (s)-methoprene
824                                                                                                                   ivermectin, pyrantel pamoate
825                                                                                                                   ivermectin, pyrantel pamoate
826                                                                                                                                     afoxolaner
827                                                                                                                   ivermectin, pyrantel pamoate
828                                                                                                                                     afoxolaner
829                                                                                                                   ivermectin, pyrantel pamoate
830                                                                                                                                     afoxolaner
831                                                                                                                                     famotidine
832                                                                                                                                        omega 3
833                                                                                                                                      carprofen
834                                                                                                                                      carprofen
835                                                                                                                           cefpodoxime proxetil
836                                                                                                                                     gabapentin
837                                                                                                                           prebiotic, probiotic
838                                                                                                                             maropitant citrate
839                                                                                                                                    latanoprost
840                                                                                           clotrimazole, gentamicin sulfate, mometasone furoate
841                                                                                                                                      meclizine
842                                                                                                                             maropitant citrate
843                                                                                          miconazole nitrate, polymyxin b, prednisolone acetate
844                                                                                                                           prebiotic, probiotic
845                                                                                                                                  metronidazole
846                                                                                                                                      probiotic
847                                                                                                                           digestive supplement
848                                                                                                   dexamethasone, neomycin sulfate, polymyxin b
849                                                                                                                   ivermectin, pyrantel pamoate
850                                                                                                         fipronil, pyriproxyfen, (s)-methoprene
851                                                                                                                   ivermectin, pyrantel pamoate
852                                                                                                                   ivermectin, pyrantel pamoate
853                                                                                                                                     afoxolaner
854                                                                                                                   ivermectin, pyrantel pamoate
855                                                                                                                                     afoxolaner
856                                                                                                                   ivermectin, pyrantel pamoate
857                                                                                                                                     afoxolaner
858                                                                                                                                       tramadol
859                                                                                                                                      carprofen
860                                                                                                                                     omeprazole
861                                                                                                                                 metoclopramide
862                                                                                                                                     ivermectin
863                                                                                                                                    doxycycline
864                                                                                                                                    ondansetron
865                                                                                                                                     ivermectin
866                                                                                                                           cefpodoxime proxetil
867                                                                                                                                      firocoxib
868                                                                                                                                      deracoxib
869                                                                                                                                     gabapentin
870                                                                                                                                     grapiprant
871                                                                                                                     milbemycin oxime, spinosad
872                                                                                                                                       spinosad
873                                                                                                                               milbemycin oxime
874                                                                                                                     milbemycin oxime, spinosad
875                                                                                                                     milbemycin oxime, spinosad
876                                                                                                                                     cephalexin
877                                                                                                                             miconazole nitrate
878                                                                                                                     milbemycin oxime, spinosad
879                                                                                                                     milbemycin oxime, spinosad
880                                                                                                                     milbemycin oxime, spinosad
881                                                                                                                     milbemycin oxime, spinosad
882                                                                                                                                      carprofen
883                                                                                                                                      trazodone
884                                                                                                                     milbemycin oxime, spinosad
885                                                                                                                                       spinosad
886                                                                                                                               milbemycin oxime
887                                                                                                                     milbemycin oxime, spinosad
888                                                                                                                                     cephalexin
889                                                                                                                     milbemycin oxime, spinosad
890                                                                                                                                      deracoxib
891                                                                                                                     milbemycin oxime, spinosad
892                                                                                                                                   enrofloxacin
893                                                                                                                     milbemycin oxime, spinosad
894                                                                                                                           butorphanol tartrate
895                                                                                                                                     prednisone
896                                                                                                                                     prednisone
897                                                                                                                                     prednisone
898                                                                                                                                      carprofen
899                                                                                                                     milbemycin oxime, spinosad
900                                                                                                                     milbemycin oxime, spinosad
901                                                                                                                        chlorhexidine gluconate
902                                                                                                                   ivermectin, pyrantel pamoate
903                                                                                                                            clemastine fumarate
904                                                                                                                                     ivermectin
905                                                                                                              allergy immunotherapy - injection
906                                                                                                                                    oclacitinib
907                                                                                                                                     ivermectin
908                                                                                                                                    oclacitinib
909                                                                                                                   ivermectin, pyrantel pamoate
910                                                                                                                   ivermectin, pyrantel pamoate
911                                                                                                                   ivermectin, pyrantel pamoate
912                                                                                                                   ivermectin, pyrantel pamoate
913                                                                                                                     imidacloprid, pyriproxyfen
914                                                                                                                   ivermectin, pyrantel pamoate
915                                                                                                                                       tramadol
916                                                                                                                           cefpodoxime proxetil
917                                                                                                                                      firocoxib
918                                                                                                                                  metronidazole
919                                                                                                                                      carprofen
920                                                                                                             amoxicillin, clavulanate potassium
921                                                                                                                   ivermectin, pyrantel pamoate
922                                                                                                                                     diclofenac
923                                                                                                                           butorphanol tartrate
924                                                                                                                               atropine sulfate
925                                                                                                                                      midazolam
926                                                                                                                                       propofol
927                                                                                                                                  hydromorphone
928                                                                                                                                       tramadol
929                                                                                                                                      ketorolac
930                                                                                                                                    dorzolamide
931                                                                                                                   ivermectin, pyrantel pamoate
932                                                                                                                                     afoxolaner
933                                                                                                                                     afoxolaner
934                                                                                                                   ivermectin, pyrantel pamoate
935                                                                                                                                      carprofen
936                                                                                                                           dorzolamide, timolol
937                                                                                                                           prednisolone acetate
938                                                                                                                                      carprofen
939                                                                                                                                     cephalexin
940                                                                                                                                   acepromazine
941                                                                                                                                     famotidine
942                                                                                                                                  metronidazole
943                                                                                                                                      carprofen
944                                                                                                                           cefpodoxime proxetil
945                                                                                                                                       tramadol
946                                                                                                                                      carprofen
947                                                                                                                           cefpodoxime proxetil
948                                                                                                                                     grapiprant
949                                                                                                                                        omega 3
950                                                                                                                                     ivermectin
951                                                                                                                       flumethrin, imidacloprid
952                                                                                                                   ivermectin, pyrantel pamoate
953                                                                                                                                        omega 3
954                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
955                                                                                                                       flumethrin, imidacloprid
956                                                                                                                   ivermectin, pyrantel pamoate
957                                                                                                                                        omega 3
958                                                                                                                   ivermectin, pyrantel pamoate
959                                                                                                     ivermectin, praziquantel, pyrantel pamoate
960                                                                                                                       flumethrin, imidacloprid
961                                                                                                     ivermectin, praziquantel, pyrantel pamoate
962                                                                                                                       flumethrin, imidacloprid
963                                                                                                betamethasone, clotrimazole, gentamicin sulfate
964                                                                                                                                      carprofen
965                                                                                                                                     cephalexin
966                                                                                                              trimeprazine tartrate, prednisone
967                                                                                                                   ivermectin, pyrantel pamoate
968                                                                                                betamethasone, clotrimazole, gentamicin sulfate
969                                                                                                                        acetic acid, boric acid
970                                                                                         hydrocortisone, gentamicin sulfate, miconazole nitrate
971                                                                                                                                    amoxicillin
972                                                                                                                                   enrofloxacin
973                                                                                                                                     sucralfate
974                                                                                                                                       tramadol
975                                                                                                                                    oclacitinib
976                                                                                                                                     cephalexin
977                                                                                                                                      ophytrium
978                                                                                                                                    oclacitinib
979                                                                                                                   ivermectin, pyrantel pamoate
980                                                                                                                                     afoxolaner
981                                                                                                                                    oclacitinib
982                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
983                                                                                                                                      probiotic
984                                                                                                                                  metronidazole
985                                                                                                                   ivermectin, pyrantel pamoate
986                                                                                                                                     afoxolaner
987                                                                                                                                      mupirocin
988                                                                                                                                    oclacitinib
989                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
990                                                                                                                               tylosin tartrate
991                                                                                                                   ivermectin, pyrantel pamoate
992                                                                                                                                     afoxolaner
993                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
994                                                                                                                                    oclacitinib
995                                                                                                                                     afoxolaner
996                                                                                                                   ivermectin, pyrantel pamoate
997                                                                                                                             maropitant citrate
998                                                                                                                                  metronidazole
999                                                                                         joint supplement (chondroitin sulfate/glucosamine hcl)
1000                                                                                                                                   oclacitinib
1001                                                                                                                                 yunnan baiyao
1002                                                                                                                                   mirtazapine
1003                                                                                                                                   ondansetron
1004                                                                                                                                  chlorambucil
1005                                                                                                                                    prednisone
1006                                                                                                                                    cephalexin
1007                                                                                                                                 metronidazole
1008                                                                                                                                   amoxicillin
1009                                                                                                                                    cephalexin
1010                                                                                                                                     carprofen
1011                                                                                                                            maropitant citrate
1012                                                                                                                                  enrofloxacin
1013                                                                                                             trimeprazine tartrate, prednisone
1014                                                                                                                  ivermectin, pyrantel pamoate
1015                                                                                                                                    cephalexin
1016                                                                                                                                     carprofen
1017                                                                                                                                    ivermectin
1018                                                                                                                                    afoxolaner
1019                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
1020                                                                                                                              neomycin sulfate
1021                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1022                                                                                                                                 metronidazole
1023                                                                                                                                     probiotic
1024                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
1025                                                                                                            chlorhexidine gluconate, ophytrium
1026                                                                                                                                  ketoconazole
1027                                                                                                            chlorhexidine gluconate, ophytrium
1028                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1029                                                                                                            chlorhexidine gluconate, ophytrium
1030                                                                                                                    unspecified shampoo/mousse
1031                                                                                                                       enrofloxacin, tris-edta
1032                                                                                                                                    cephalexin
1033                                                                                                  florfenicol, mometasone furoate, terbinafine
1034                                                                                                                                    prednisone
1035                                                                                                                                    fluoxetine
1036                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1037                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1038                                                                                                                                   clindamycin
1039                                                                                                  florfenicol, mometasone furoate, terbinafine
1040                                                                                                                                   oclacitinib
1041                                                                                                                                   oclacitinib
1042                                                                                                                       chlorhexidine gluconate
1043                                                                                                                            miconazole nitrate
1044                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1045                                                                                                                                    grapiprant
1046                                                                                                                  ivermectin, pyrantel pamoate
1047                                                                                                                                    afoxolaner
1048                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1049                                                                                                                                   oclacitinib
1050                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1051                                                                                                                  ivermectin, pyrantel pamoate
1052                                                                                                                                    afoxolaner
1053                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
1054                                                                                                              burow's solution, hydrocortisone
1055                                                                                                                                   clindamycin
1056                                                                                                                            maropitant citrate
1057                                                                                                                                   clindamycin
1058                                                                                                                                    gabapentin
1059                                                                                                                                   oclacitinib
1060                                                                                                                                    afoxolaner
1061                                                                                                                  ivermectin, pyrantel pamoate
1062                                                                                                                                 metronidazole
1063                                                                                                                                 metronidazole
1064                                                                                                  florfenicol, mometasone furoate, terbinafine
1065                                                                                                                          desmopressin acetate
1066                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1067                                                                                         acetic acid, boric acid, hydrocortisone, ketoconazole
1068                                                                                                                                    lokivetmab
1069                                                                                                                       chlorhexidine gluconate
1070                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1071                                                                                                                                     carprofen
1072                                                                                                              burow's solution, hydrocortisone
1073                                                                                                            chlorhexidine gluconate, tris-edta
1074                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1075                                                                                                                                     carprofen
1076                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
1077                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1078                                                                                                                                     probiotic
1079                                                                                                                              liver supplement
1080                                                                                         acetic acid, boric acid, hydrocortisone, ketoconazole
1081                                                                                                                                     carprofen
1082                                                                                                                                    grapiprant
1083                                                                                                                                   mirtazapine
1084                                                                                                                                  capromorelin
1085                                                                                                                            maropitant citrate
1086                                                                                                                                 yunnan baiyao
1087                                                                                                                    milbemycin oxime, spinosad
1088                                                                                                                                  acepromazine
1089                                                                                                                                  clomipramine
1090                                                                                                                    milbemycin oxime, spinosad
1091                                                                                                               ear cleaner (epi-otic advanced)
1092                                                                                                                                    prednisone
1093                                                                                                                                    cephalexin
1094                                                                                                                                       omega 3
1095                                                                                                               ear cleaner (epi-otic advanced)
1096                                                                                                             betamethasone, gentamicin sulfate
1097                                                                                                                    milbemycin oxime, spinosad
1098                                                                                                                      imidacloprid, permethrin
1099                                                                                                                  ivermectin, pyrantel pamoate
1100                                                                                                                   lufenuron, milbemycin oxime
1101                                                                                                                                    fluralaner
1102                                                                                                                                    cephalexin
1103                                                                                                                                       omega 3
1104                                                                                                                                chlorphenamine
1105                                                                                                                                     carprofen
1106                                                                                                                                   amoxicillin
1107                                                                                                                                  enrofloxacin
1108                                                                                                            chlorhexidine gluconate, ophytrium
1109                                                                                                                                  enrofloxacin
1110                                                                                                                                    fluralaner
1111                                                                                                                   lufenuron, milbemycin oxime
1112                                                                                                            chlorhexidine gluconate, ophytrium
1113                                                                                                                                  enrofloxacin
1114                                                                                                                                    cephalexin
1115                                                                                                                                   oclacitinib
1116                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1117                                                                                                                                    fluralaner
1118                                                                                                                                    fluralaner
1119                                                                                                                                    fluralaner
1120                                                                                                                  ivermectin, pyrantel pamoate
1121                                                                                                                                    fluoxetine
1122                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1123                                                                                                                                    cephalexin
1124                                                                                                                                    gabapentin
1125                                                                                                                                    fluoxetine
1126                                                                                                                                    fluoxetine
1127                                                                                                                              liver supplement
1128                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1129                                                                                                                                  imidacloprid
1130                                                                                                                                   amoxicillin
1131                                                                                                                           ear cleaner (zymox)
1132                                                                                                                                 metronidazole
1133                                                                                                                                    cephalexin
1134                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
1135                                                                                                                                    cephalexin
1136                                                                                                                                    cephalexin
1137                                                                                                                                      tramadol
1138                                                                                                                                     carprofen
1139                                                                                                                                    selamectin
1140                                                                                                                                    selamectin
1141                                                                                                                                 metronidazole
1142                                                                                                                                     firocoxib
1143                                                                                                                                    selamectin
1144                                                                                                                                    afoxolaner
1145                                                                                                                  ivermectin, pyrantel pamoate
1146                                                                                                                    imidacloprid, pyriproxyfen
1147                                                                                                                  ivermectin, pyrantel pamoate
1148                                                                                                                              pyrantel pamoate
1149                                                                                                                                   doxycycline
1150                                                                                                                       ketoconazole, tris-edta
1151                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1152                                                                                                                              milbemycin oxime
1153                                                                                                                                    ivermectin
1154                                                                                                                   lufenuron, milbemycin oxime
1155                                                                                                                   lufenuron, milbemycin oxime
1156                                                                                                                   lufenuron, milbemycin oxime
1157                                                                                                                   lufenuron, milbemycin oxime
1158                                                                                                            amoxicillin, clavulanate potassium
1159                                                                                                                   lufenuron, milbemycin oxime
1160                                                                                                                   lufenuron, milbemycin oxime
1161                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1162                                                                                                            amoxicillin, clavulanate potassium
1163                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1164                                                                                                                              milbemycin oxime
1165                                                                                                                                      fipronil
1166                                                                                                                                (s)-methoprene
1167                                                                                                                                       omega 3
1168                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1169                                                                                                                  ivermectin, pyrantel pamoate
1170                                                                                                                      fipronil, (s)-methoprene
1171                                                                                                                                    ivermectin
1172                                                                                                                              pyrantel pamoate
1173                                                                                                                      fipronil, (s)-methoprene
1174                                                                                                                  ivermectin, pyrantel pamoate
1175                                                                                                                      fipronil, (s)-methoprene
1176                                                                                                                  ivermectin, pyrantel pamoate
1177                                                                                                                      fipronil, (s)-methoprene
1178                                                                                                                  ivermectin, pyrantel pamoate
1179                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1180                                                                                                                                     carprofen
1181                                                                                                                                    gabapentin
1182                                                                                                                                     trazodone
1183                                                                                                                                   doxorubicin
1184                                                                                                                                     carprofen
1185                                                                                                                                    ivermectin
1186                                                                                                                  ivermectin, pyrantel pamoate
1187                                                                                                                             megestrol acetate
1188                                                                                                                                   doxycycline
1189                                                                                                                  ivermectin, pyrantel pamoate
1190                                                                                                                  ivermectin, pyrantel pamoate
1191                                                                                                                                 metronidazole
1192                                                                                                                                     firocoxib
1193                                                                                                                                    ivermectin
1194                                                                                                                  ivermectin, pyrantel pamoate
1195                                                                                                                              milbemycin oxime
1196                                                                                                                                 marbofloxacin
1197                                                                                                                              milbemycin oxime
1198                                                                                                                  ivermectin, pyrantel pamoate
1199                                                                                                                                     cefovecin
1200                                                                                                                                     carprofen
1201                                                                                                             dexamethasone, miconazole nitrate
1202                                                                                                                               diphenhydramine
1203                                                                                                                                      tramadol
1204                                                                                                                                     carprofen
1205                                                                                                                                    ivermectin
1206                                                                                                                                    ivermectin
1207                                                                                                                                   oclacitinib
1208                                                                                                                      imidacloprid, permethrin
1209                                                                                                                              milbemycin oxime
1210                                                                                                                          cefpodoxime proxetil
1211                                                                                                                                   oclacitinib
1212                                                                                                                                     carprofen
1213                                                                                                                  ivermectin, pyrantel pamoate
1214                                                                                                                  ivermectin, pyrantel pamoate
1215                                                                                                                  ivermectin, pyrantel pamoate
1216                                                                                                                  ivermectin, pyrantel pamoate
1217                                                                                                                  ivermectin, pyrantel pamoate
1218                                                                                                                                   clindamycin
1219                                                                                                                                      tramadol
1220                                                                                                                   chloroxylenol, ketoconazole
1221                                                                                                                  ivermectin, pyrantel pamoate
1222                                                                                                                    imidacloprid, pyriproxyfen
1223                                                                                                                                     carprofen
1224                                                                                                                                   clindamycin
1225                                                                                                                  ivermectin, pyrantel pamoate
1226                                                                                                                    imidacloprid, pyriproxyfen
1227                                                                                                                  ivermectin, pyrantel pamoate
1228                                                                                                                  ivermectin, pyrantel pamoate
1229                                                                                                                  ivermectin, pyrantel pamoate
1230                                                                                                                                    cephalexin
1231                                                                                                                               diphenhydramine
1232                                                                                                                                  enrofloxacin
1233                                                                                                                           silver sulfadiazine
1234                                                                                                                                     deracoxib
1235                                                                                                                                     deracoxib
1236                                                                                                                                    fluoxetine
1237                                                                                                                                   doxycycline
1238                                                                                                                                    alprazolam
1239                                                                                                                          cefpodoxime proxetil
1240                                                                                                             trimeprazine tartrate, prednisone
1241                                                                                                             trimeprazine tartrate, prednisone
1242                                                                                                             trimeprazine tartrate, prednisone
1243                                                                                                                                    fluoxetine
1244                                                                                                                   lufenuron, milbemycin oxime
1245                                                                                                             trimeprazine tartrate, prednisone
1246                                                                                                                                    fluoxetine
1247                                                                                                                   lufenuron, milbemycin oxime
1248                                                                                                                                    afoxolaner
1249                                                                                                                                   oclacitinib
1250                                                                                                                   lufenuron, milbemycin oxime
1251                                                                                                                                    afoxolaner
1252                                                                                                                                   oclacitinib
1253                                                                                                                                    prednisone
1254                                                                                                                   lufenuron, milbemycin oxime
1255                                                                                                                                    afoxolaner
1256                                                                                                                                   oclacitinib
1257                                                                                                                   lufenuron, milbemycin oxime
1258                                                                                                                                    afoxolaner
1259                                                                                                             betamethasone, gentamicin sulfate
1260                                                                                                            amoxicillin, clavulanate potassium
1261                                                                                                                                 marbofloxacin
1262                                                                                                                                    lokivetmab
1263                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
1264                                                                                                                                    lokivetmab
1265                                                                                                                                   doxycycline
1266                                                                                                                                    prednisone
1267                                                                                                                                    cephalexin
1268                                                                                                                              milbemycin oxime
1269                                                                                                                                    afoxolaner
1270                                                                                                                                    afoxolaner
1271                                                                                                                                    ivermectin
1272                                                                                                                                    cephalexin
1273                                                                                                                                    prednisone
1274                                                                                                                              milbemycin oxime
1275                                                                                                                                    lokivetmab
1276                                                                                                                    imidacloprid, pyriproxyfen
1277                                                                                                                                    afoxolaner
1278                                                                                                                              milbemycin oxime
1279                                                                                                                                    lokivetmab
1280                                                                                                                          cefpodoxime proxetil
1281                                                                                                            amoxicillin, clavulanate potassium
1282                                                                                                                                 methocarbamol
1283                                                                                                                                     firocoxib
1284                                                                                                                                  enrofloxacin
1285                                                                                                                sulfamethoxazole, trimethoprim
1286                                                                                      dimethyl sulfoxide, enrofloxacin, fluocinolone acetonide
1287                                                                                                                                   doxycycline
1288                                                                                                                                    lokivetmab
1289                                                                                                                                    tobramycin
1290                                                                                                                              tylosin tartrate
1291                                                                                                                            maropitant citrate
1292                                                                                                                                   amoxicillin
1293                                                                                                                              milbemycin oxime
1294                                                                                                                              tylosin tartrate
1295                                                                                                                      fipronil, (s)-methoprene
1296                                                                                                                              milbemycin oxime
1297                                                                                                                                       estriol
1298                                                                                                                      fipronil, (s)-methoprene
1299                                                                                                                              milbemycin oxime
1300                                                                                                            amoxicillin, clavulanate potassium
1301                                                                                                                              milbemycin oxime
1302                                                                                                                      fipronil, (s)-methoprene
1303                                                                                                                                       estriol
1304                                                                                                                           phenylpropanolamine
1305                                                                                                                                     enalapril
1306                                                                                                                                    cephalexin
1307                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1308                                                                                                         dinotefuran, permethrin, pyriproxyfen
1309                                                                                                                      fipronil, (s)-methoprene
1310                                                                                                                              milbemycin oxime
1311                                                                                                                   lufenuron, milbemycin oxime
1312                                                                                                                                     sarolaner
1313                                                                                                                           phenylpropanolamine
1314                                                                                                                                     enalapril
1315                                                                                                                                       estriol
1316                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1317                                                                                                                                     carprofen
1318                                                                                                                                   telmisartan
1319                                                                                                                                 marbofloxacin
1320                                                                                                                            maropitant citrate
1321                                                                                                                                    omeprazole
1322                                                                                                                                     sevelamer
1323                                                                                                                                  capromorelin
1324                                                                                                                           phenylpropanolamine
1325                                                                                                                                     enalapril
1326                                                                                                                                       estriol
1327                                                                                                                                   telmisartan
1328                                                                                                                   lufenuron, milbemycin oxime
1329                                                                                                                                     sarolaner
1330                                                                                                                          cefpodoxime proxetil
1331                                                                                                                           phenylpropanolamine
1332                                                                                                                polysulfated glycosaminoglycan
1333                                                                                                                                    amantadine
1334                                                                                                                                       estriol
1335                                                                                                                                   telmisartan
1336                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1337                                                                                                        joint supplement (glucosamine hcl/msm)
1338                                                                                                                      joint supplement (other)
1339                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1340                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1341                                                                                                                              tylosin tartrate
1342                                                                                                                    unspecified shampoo/mousse
1343                                                                                                                                    grapiprant
1344                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1345                                                                                                dexamethasone, neomycin sulfate, thiabendazole
1346                                                                                                               ear cleaner (epi-otic advanced)
1347                                                                                                                                    cephalexin
1348                                                                                                                       triamcinolone acetonide
1349                                                                                                                                    cephalexin
1350                                                                                                                                    prednisone
1351                                                                                                                      fipronil, (s)-methoprene
1352                                                                                                               ear cleaner (epi-otic advanced)
1353                                                                                                                                chlorphenamine
1354                                                                                                                                    cephalexin
1355                                                                                                                      fipronil, (s)-methoprene
1356                                                                                                                                   oclacitinib
1357                                                                                                                      fipronil, (s)-methoprene
1358                                                                                                                                   oclacitinib
1359                                                                                                                      fipronil, (s)-methoprene
1360                                                                                                                              milbemycin oxime
1361                                                                                                                                   oclacitinib
1362                                                                                                                                    lokivetmab
1363                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1364                                                                                                         dinotefuran, permethrin, pyriproxyfen
1365                                                                                                                      fipronil, (s)-methoprene
1366                                                                                                                              milbemycin oxime
1367                                                                                                                   lufenuron, milbemycin oxime
1368                                                                                                                                     sarolaner
1369                                                                                                                                 metronidazole
1370                                                                                                                          cefpodoxime proxetil
1371                                                                                                                  ivermectin, pyrantel pamoate
1372                                                                                                                                 metronidazole
1373                                                                                                                  ivermectin, pyrantel pamoate
1374                                                                                                                                 metronidazole
1375                                                                                                                          cefpodoxime proxetil
1376                                                                                                                                 metronidazole
1377                                                                                                                                 levothyroxine
1378                                                                                                                          cefpodoxime proxetil
1379                                                                                                                                     carprofen
1380                                                                                                                                 metronidazole
1381                                                                                                                                 metronidazole
1382                                                                                                                                     carprofen
1383                                                                                                                                 metronidazole
1384                                                                                                                              tylosin tartrate
1385                                                                                                                                 levothyroxine
1386                                                                                                                                    gabapentin
1387                                                                                                                                     carprofen
1388                                                                                                                          cefpodoxime proxetil
1389                                                                                                                                    loratadine
1390                                                                                                                                   oclacitinib
1391                                                                                                             betamethasone, gentamicin sulfate
1392                                                                                                                                   oclacitinib
1393                                                                                                                  ivermectin, pyrantel pamoate
1394                                                                                                                                   oclacitinib
1395                                                                                                                          prednisolone acetate
1396                                                                                                                          cefpodoxime proxetil
1397                                                                                                                                 metronidazole
1398                                                                                                             dexamethasone, miconazole nitrate
1399                                                                                                                                   oclacitinib
1400                                                                                                                                    lokivetmab
1401                                                                                                                                    prednisone
1402                                                                                                                            methylprednisolone
1403                                                                                                                                    cephalexin
1404                                                                                                             betamethasone, gentamicin sulfate
1405                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1406                                                                                                                                 metronidazole
1407                                                                                                                                  cyclosporine
1408                                                                                                                                  ketoconazole
1409                                                                                                                          cefpodoxime proxetil
1410                                                                                                                                     carprofen
1411                                                                                                                                 metronidazole
1412                                                                                                                                    prednisone
1413                                                                                                                          cefpodoxime proxetil
1414                                                                                                                                   oclacitinib
1415                                                                                                             dexamethasone, miconazole nitrate
1416                                                                                                                                    lokivetmab
1417                                                                                                       betamethasone, florfenicol, terbinafine
1418                                                                                                                                 metronidazole
1419                                                                                                                   lufenuron, milbemycin oxime
1420                                                                                                                                       omega 3
1421                                                                                                                                   hydroxyzine
1422                                                                                                                   lufenuron, milbemycin oxime
1423                                                                                                                                    cephalexin
1424                                                                                                                                   hydroxyzine
1425                                                                                                                                    prednisone
1426                                                                                                                               diphenhydramine
1427                                                                                                                                   amoxicillin
1428                                                                                                                                 metronidazole
1429                                                                                                                                     carprofen
1430                                                                                                                                   hydroxyzine
1431                                                                                                                                       omega 3
1432                                                                                                                                   oclacitinib
1433                                                                                                                                   oclacitinib
1434                                                                                                                      fipronil, (s)-methoprene
1435                                                                                                                   lufenuron, milbemycin oxime
1436                                                                                                                                   oclacitinib
1437                                                                                                                                      tramadol
1438                                                                                                                   lufenuron, milbemycin oxime
1439                                                                                                                                   hydroxyzine
1440                                                                                                           allergy immunotherapy - unspecified
1441                                                                                                                   lufenuron, milbemycin oxime
1442                                                                                                    ivermectin, praziquantel, pyrantel pamoate
1443                                                                                                                      fipronil, (s)-methoprene
1444                                                                                                                                    lokivetmab
1445                                                                                                           allergy immunotherapy - unspecified
1446                                                                                                                              milbemycin oxime
1447                                                                                                                                     sarolaner
1448                                                                                                           allergy immunotherapy - unspecified
1449                                                                                                                                    lokivetmab
1450                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
1451                                                                                                                              milbemycin oxime
1452                                                                                                                                    lokivetmab
1453                                                                                                           allergy immunotherapy - unspecified
1454                                                                                                                                    lokivetmab
1455                                                                                                                                   clindamycin
1456                                                                                                                                     carprofen
1457                                                                                                                                   clindamycin
1458                                                                                                                                      tramadol
1459                                                                                                         dinotefuran, permethrin, pyriproxyfen
1460                                                                                                                                     trazodone
1461                                                                                                                                  acepromazine
1462                                                                                                         dinotefuran, permethrin, pyriproxyfen
1463                                                                                                            joint supplement (glucosamine hcl)
1464                                                                                                                   lufenuron, milbemycin oxime
1465                                                                                                                               dexmedetomidine
1466                                                                                                                                    alprazolam
1467                                                                                                                                    alprazolam
1468                                                                                                                                    alprazolam
1469                                                                                                                   lufenuron, milbemycin oxime
1470                                                                                                                                     trazodone
1471                                                                                                                                    gabapentin
1472                                                                                                                              ceftiofur sodium
1473                                                                                                                        unspecified medication
1474                                                                                                                                     carprofen
1475                                                                                                                      imidacloprid, permethrin
1476                                                                                                                                    cephalexin
1477                                                                                                                          digestive supplement
1478                                                                                                                              tylosin tartrate
1479                                                                                                                                    famotidine
1480                                                                                                                                     pramoxine
1481                                                                                                                                    prednisone
1482                                                                                                                                    cephalexin
1483                                                                                                                          digestive supplement
1484                                                                                                                                    famotidine
1485                                                                                                                              tylosin tartrate
1486                                                                                                                                    prednisone
1487                                                                                                                                 levothyroxine
1488                                                                                                                    imidacloprid, pyriproxyfen
1489                                                                                                                      fipronil, (s)-methoprene
1490                                                                                                                  ivermectin, pyrantel pamoate
1491                                                                                                                  ivermectin, pyrantel pamoate
1492                                                                                                                  ivermectin, pyrantel pamoate
1493                                                                                                                          cefpodoxime proxetil
1494                                                                                                                                     carprofen
1495                                                                                                                          cefpodoxime proxetil
1496                                                                                                                                     probiotic
1497                                                                                                                          cefpodoxime proxetil
1498                                                                                                                                 marbofloxacin
1499                                                                                                                    milbemycin oxime, spinosad
1500                                                                                                                    milbemycin oxime, spinosad
1501                                                                                                                  ivermectin, pyrantel pamoate
1502                                                                                                                  ivermectin, pyrantel pamoate
1503                                                                                                         dinotefuran, permethrin, pyriproxyfen
1504                                                                                                                                     vitamin c
1505                                                                                                                                     vitamin e
1506                                                                                                                                    bee pollen
1507                                                                                                                         brewers yeast, garlic
1508                                                                                                                                     vitamin a
1509                                                                                                                                     vitamin d
1510                                                                                                                  ivermectin, pyrantel pamoate
1511                                                                                                                                    afoxolaner
1512                                                                                                         dinotefuran, permethrin, pyriproxyfen
1513                                                                                                                  ivermectin, pyrantel pamoate
1514                                                                                                                                    afoxolaner
1515                                                                                                                  ivermectin, pyrantel pamoate
1516                                                                                                                                    afoxolaner
1517                                                                                                                                    ivermectin
1518                                                                                                                                    afoxolaner
1519                                                                                                                                    ivermectin
1520                                                                                                                                    afoxolaner
1521                                                                                                                                     meloxicam
1522                                                                                                            amoxicillin, clavulanate potassium
1523                                                                                                                xiao chai hu jia qin jiao tang
1524                                                                                                                                   unspecified
1525                                                                                                                               liu jun zi tang
1526                                                                                                                                     carprofen
1527                                                                                                                  ivermectin, pyrantel pamoate
1528                                                                                                                      imidacloprid, permethrin
1529                                                                                                                                    ivermectin
1530                                                                                                                  ivermectin, pyrantel pamoate
1531                                                                                                                                    ivermectin
1532                                                                                                                    imidacloprid, pyriproxyfen
1533                                                                                                                  ivermectin, pyrantel pamoate
1534                                                                                                                    imidacloprid, pyriproxyfen
1535                                                                                                                              milbemycin oxime
1536                                                                                                                    imidacloprid, pyriproxyfen
1537                                                                                                                              milbemycin oxime
1538                                                                                                                              milbemycin oxime
1539                                                                                                                    imidacloprid, pyriproxyfen
1540                                                                                                                                     ketorolac
1541                                                                                                                    imidacloprid, pyriproxyfen
1542                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1543                                                                                                                                     ketorolac
1544                                                                                                            amoxicillin, clavulanate potassium
1545                                                                                                            amoxicillin, clavulanate potassium
1546                                                                                                                          cefpodoxime proxetil
1547                                                                                                                                     carprofen
1548                                                                                                                                     carprofen
1549                                                                                                                                    yi zhi ren
1550                                                                                                                                    ivermectin
1551                                                                                                                                      spinosad
1552                                                                                                                                   doxycycline
1553                                                                                                                                   oclacitinib
1554                                                                                                                                      propofol
1555                                                                                                                                  enrofloxacin
1556                                                                                                                                   sevoflurane
1557                                                                                                                                   oclacitinib
1558                                                                                                                                   amoxicillin
1559                                                                                                            amoxicillin, clavulanate potassium
1560                                                                                                                                     carprofen
1561                                                                                                                                      tramadol
1562                                                                                                                                   amoxicillin
1563                                                                                                                                     carprofen
1564                                                                                                                                   amoxicillin
1565                                                                                                                                     carprofen
1566                                                                                                            amoxicillin, clavulanate potassium
1567                                                                                                                                 diphenoxylate
1568                                                                                                                                 metronidazole
1569                                                                                                                                     probiotic
1570                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1571                                                                                                                                     sarolaner
1572                                                                                                                milbemycin oxime, praziquantel
1573                                                                                                                                  enrofloxacin
1574                                                                                                                                     sarolaner
1575                                                                                                                                     carprofen
1576                                                                                                                                  ketoconazole
1577                                                                                                                                 levothyroxine
1578                                                                                                                                    gabapentin
1579                                                                                                                                     carprofen
1580                                                                                                                                 levothyroxine
1581                                                                                                                                    omeprazole
1582                                                                                                                                     carprofen
1583                                                                                                                                    ivermectin
1584                                                                                                                  ivermectin, pyrantel pamoate
1585                                                                                                                    imidacloprid, pyriproxyfen
1586                                                                                                                                  ketoconazole
1587                                                                                                                  ivermectin, pyrantel pamoate
1588                                                                                                                                    cephalexin
1589                                                                                                                                     carprofen
1590                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1591                                                                                                                                   epsiprantel
1592                                                                                                                               diphenhydramine
1593                                                                                                                                    famotidine
1594                                                                                                                                      tramadol
1595                                                                                                                                    cephalexin
1596                                                                                                                                     meloxicam
1597                                                                                                                                     meloxicam
1598                                                                                                                  ivermectin, pyrantel pamoate
1599                                                                                                                  ivermectin, pyrantel pamoate
1600                                                                                                                                    afoxolaner
1601                                                                                                  florfenicol, mometasone furoate, terbinafine
1602                                                                                                                       triamcinolone acetonide
1603                                                                                                                               diphenhydramine
1604                                                                                                                                     meloxicam
1605                                                                                                                          cefpodoxime proxetil
1606                                                                                                                               dexmedetomidine
1607                                                                                                                                 hydromorphone
1608                                                                                                                                      ketamine
1609                                                                                                                                      diazepam
1610                                                                                                                                  enrofloxacin
1611                                                                                                  florfenicol, mometasone furoate, terbinafine
1612                                                                                                                                    lokivetmab
1613                                                                                                                          cefpodoxime proxetil
1614                                                                                                                                    lokivetmab
1615                                                                                                                       triamcinolone acetonide
1616                                                                                                                          cefpodoxime proxetil
1617                                                                                                                                  enrofloxacin
1618                                                                                                                                    lokivetmab
1619                                                                                                                                     carprofen
1620                                                                                                                                 metronidazole
1621                                                                                                                       acetic acid, boric acid
1622                                                                                                                                   hydroxyzine
1623                                                                                                                               diphenhydramine
1624                                                                                                                                   hydroxyzine
1625                                                                                                                       triamcinolone acetonide
1626                                                                                                                                   hydroxyzine
1627                                                                                                                                    ivermectin
1628                                                                                                                      fipronil, (s)-methoprene
1629                                                                                                                                   hydroxyzine
1630                                                                                                                                    ivermectin
1631                                                                                                                      fipronil, (s)-methoprene
1632                                                                                                                                  fenbendazole
1633                                                                                                                              milbemycin oxime
1634                                                                                                                      fipronil, (s)-methoprene
1635                                                                                                        joint supplement (glucosamine hcl/msm)
1636                                                                                                                                       omega 3
1637                                                                                                                      fipronil, (s)-methoprene
1638                                                                                                                              milbemycin oxime
1639                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
1640                                                                                                                            calming supplement
1641                                                                                                                                     carprofen
1642                                                                                                                                   amoxicillin
1643                                                                                                                                 metronidazole
1644                                                                                                                                    omeprazole
1645                                                                                                                         bismuth subsalicylate
1646                                                                                                                                     carprofen
1647                                                                                                                                 metronidazole
1648                                                                                                                                   amoxicillin
1649                                                                                                                          cefpodoxime proxetil
1650                                                                                                                      fipronil, (s)-methoprene
1651                                                                                                                                     trazodone
1652                                                                                                                                     carprofen
1653                                                                                                                                     carprofen
1654                                                                                                                  ivermectin, pyrantel pamoate
1655                                                                                                                  ivermectin, pyrantel pamoate
1656                                                                                                                      fipronil, (s)-methoprene
1657                                                                                                                  ivermectin, pyrantel pamoate
1658                                                                                                                      fipronil, (s)-methoprene
1659                                                                                                                  ivermectin, pyrantel pamoate
1660                                                                                                                                    afoxolaner
1661                                                                                                                                     carprofen
1662                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1663                                                                                                                    milbemycin oxime, spinosad
1664                                                                                                                                      tramadol
1665                                                                                                                                   amoxicillin
1666                                                                                                                                 metronidazole
1667                                                                                                                                 metronidazole
1668                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1669                                                                                                                                    ivermectin
1670                                                                                                                                    ivermectin
1671                                                                                                            fipronil, permethrin, pyriproxyfen
1672                                                                                                                      fipronil, (s)-methoprene
1673                                                                                                                                    prednisone
1674                                                                                                                                    cephalexin
1675                                                                                                                                       omega 3
1676                                                                                                                  ivermectin, pyrantel pamoate
1677                                                                                                                  ivermectin, pyrantel pamoate
1678                                                                                                                                 metronidazole
1679                                                                                                                                     probiotic
1680                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1681                                                                                                                      flumethrin, imidacloprid
1682                                                                                                                  ivermectin, pyrantel pamoate
1683                                                                                                                      flumethrin, imidacloprid
1684                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
1685                                                                                                             betamethasone, gentamicin sulfate
1686                                                                                                                                 metronidazole
1687                                                                                                                            maropitant citrate
1688                                                                                                                  ivermectin, pyrantel pamoate
1689                                                                                                         chlorhexidine gluconate, ketoconazole
1690                                                                                                             betamethasone, gentamicin sulfate
1691                                                                                                                                 metronidazole
1692                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1693                                                                                                                                     carprofen
1694                                                                                                                                     carprofen
1695                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1696                                                                                                                                     carprofen
1697                                                                                                                      flumethrin, imidacloprid
1698                                                                                                                              milbemycin oxime
1699                                                                                                            fipronil, permethrin, pyriproxyfen
1700                                                                                                                        cyphenothrin, fipronil
1701                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1702                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1703                                                                                                                                 metronidazole
1704                                                                                                                                  fenbendazole
1705                                                                                                                                     carprofen
1706                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1707                                                                                                                        cyphenothrin, fipronil
1708                                                                                                                   lufenuron, milbemycin oxime
1709                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1710                                                                                                                   lufenuron, milbemycin oxime
1711                                                                                                                        cyphenothrin, fipronil
1712                                                                                                                   lufenuron, milbemycin oxime
1713                                                                                                                        cyphenothrin, fipronil
1714                                                                                                                                 metronidazole
1715                                                                                                                   lufenuron, milbemycin oxime
1716                                                                                                                        cyphenothrin, fipronil
1717                                                                                                                                    fluralaner
1718                                                                                                                   lufenuron, milbemycin oxime
1719                                                                                                                                     sarolaner
1720                                                                                                                   lufenuron, milbemycin oxime
1721                                                                                                                                     sarolaner
1722                                                                                                                                       taurine
1723                                                                                                                                   l-carnitine
1724                                                                                                                                    pimobendan
1725                                                                                                                                    ivermectin
1726                                                                                                                                  imidacloprid
1727                                                                                                                                    ivermectin
1728                                                                                                                                  imidacloprid
1729                                                                                                                                  imidacloprid
1730                                                                                                                                    ivermectin
1731                                                                                                                    imidacloprid, pyriproxyfen
1732                                                                                                                  ivermectin, pyrantel pamoate
1733                                                                                                                  ivermectin, pyrantel pamoate
1734                                                                                                                  ivermectin, pyrantel pamoate
1735                                                                                                                  ivermectin, pyrantel pamoate
1736                                                                                                                  ivermectin, pyrantel pamoate
1737                                                                                                                                     firocoxib
1738                                                                                                                          cefpodoxime proxetil
1739                                                                                                                                     firocoxib
1740                                                                                                                                    prednisone
1741                                                                                                                                     firocoxib
1742                                                                                                                                    ivermectin
1743                                                                                                                                  imidacloprid
1744                                                                                                                                    ivermectin
1745                                                                                                                    milbemycin oxime, spinosad
1746                                                                                                                                 dexamethasone
1747                                                                                             chloroxylenol, salicylic acid, sodium thiosulfate
1748                                                                                                                                hydrocortisone
1749                                                                                                                    milbemycin oxime, spinosad
1750                                                                                                                                 metronidazole
1751                                                                                                                            maropitant citrate
1752                                                                                                                                  ketoconazole
1753                                                                                                                       chlorhexidine gluconate
1754                                                                                                                                   oclacitinib
1755                                                                                                                                     cefovecin
1756                                                                                                                                     probiotic
1757                                                                                                                        coprophagia supplement
1758                                                                                                                  ivermectin, pyrantel pamoate
1759                                                                                                                                    afoxolaner
1760                                                                                                                                     cefovecin
1761                                                                                                             betamethasone, gentamicin sulfate
1762                                                                                                            amoxicillin, clavulanate potassium
1763                                                                                                                                     carprofen
1764                                                                                                                          cefpodoxime proxetil
1765                                                                                                                          cefpodoxime proxetil
1766                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1767                                                                                                                                 dexamethasone
1768                                                                                                                          cefpodoxime proxetil
1769                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1770                                                                                                                   lufenuron, milbemycin oxime
1771                                                                                                                                    fluralaner
1772                                                                                                                          cefpodoxime proxetil
1773                                                                                                             trimeprazine tartrate, prednisone
1774                                                                                                                   lufenuron, milbemycin oxime
1775                                                                                                                                    fluralaner
1776                                                                                                                                    fluralaner
1777                                                                                                                   lufenuron, milbemycin oxime
1778                                                                                                                  ivermectin, pyrantel pamoate
1779                                                                                                                                    fluralaner
1780                                                                                                                  ivermectin, pyrantel pamoate
1781                                                                                                                                    fluralaner
1782                                                                                                                      joint supplement (other)
1783                                                                                                                                       omega 3
1784                                                                                                                                     carprofen
1785                                                                                                                  ivermectin, pyrantel pamoate
1786                                                                                                                                    fluralaner
1787                                                                                                                      joint supplement (other)
1788                                                                                                                                       omega 3
1789                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1790                                                                                                            amoxicillin, clavulanate potassium
1791                                                                                                                                     mupirocin
1792                                                                                                                          cefpodoxime proxetil
1793                                                                                                                                    gabapentin
1794                                                                                                         chlorhexidine gluconate, ketoconazole
1795                                                                                                                    unspecified shampoo/mousse
1796                                                                                                            joint supplement (glucosamine hcl)
1797                                                                                                                                     carprofen
1798                                                                                                                                     meloxicam
1799                                                                                                                                     probiotic
1800                                                                                                                                 metronidazole
1801                                                                                                                                   clindamycin
1802                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1803                                                                                                             trimeprazine tartrate, prednisone
1804                                                                                                                                     mupirocin
1805                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1806                                                                                                                                  enrofloxacin
1807                                                                                                                                  enrofloxacin
1808                                                                                                                                     vitamin c
1809                                                                                                                      joint supplement (other)
1810                                                                                                                                       omega 3
1811                                                                                                            joint supplement (glucosamine hcl)
1812                                                                                                                                          kelp
1813                                                                                                                                       omega 3
1814                                                                                                                                   doxycycline
1815                                                                                                                                      tramadol
1816                                                                                                                polysulfated glycosaminoglycan
1817                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1818                                                                                                                                 levothyroxine
1819                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1820                                                                                                 unspecified herbal thyroid support supplement
1821                                                                                                                                   doxycycline
1822                                                                                                                                   doxycycline
1823                                                                                                mometasone furoate, orbifloxacin, posaconazole
1824                                                                                                                                      tramadol
1825                                                                                                                                   oclacitinib
1826                                                                                                                polysulfated glycosaminoglycan
1827                                                                                               betamethasone, clotrimazole, gentamicin sulfate
1828                                                                                                                  ivermectin, pyrantel pamoate
1829                                                                                                                                 metronidazole
1830                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1831                                                                                                                          digestive supplement
1832                                                                                                                polysulfated glycosaminoglycan
1833                                                                                                                                   oclacitinib
1834                                                                                                                                    ivermectin
1835                                                                                                                                    afoxolaner
1836                                                                                                                  ivermectin, pyrantel pamoate
1837                                                                                                                                    afoxolaner
1838                                                                                                                  ivermectin, pyrantel pamoate
1839                                                                                                                                    afoxolaner
1840                                                                                                                                     carprofen
1841                                                                                                                                    ivermectin
1842                                                                                                                      imidacloprid, permethrin
1843                                                                                                                  ivermectin, pyrantel pamoate
1844                                                                                                                  ivermectin, pyrantel pamoate
1845                                                                                                                      imidacloprid, permethrin
1846                                                                                                                  ivermectin, pyrantel pamoate
1847                                                                                                                    imidacloprid, pyriproxyfen
1848                                                                                                                  ivermectin, pyrantel pamoate
1849                                                                                                                  ivermectin, pyrantel pamoate
1850                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1851                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
1852                                                                                                                                   minocycline
1853                                                                                                                                   hydrocodone
1854                                                                                                                                   amoxicillin
1855                                                                                                                                 metronidazole
1856                                                                                                                                    famotidine
1857                                                                                                                                 metronidazole
1858                                                                                                                                  enrofloxacin
1859                                                                                                                            miconazole nitrate
1860                                                                                                                                   hydroxyzine
1861                                                                                                                                     vitamin k
1862                                                                                                                                     deracoxib
1863                                                                                                                                    ivermectin
1864                                                                                                         dinotefuran, permethrin, pyriproxyfen
1865                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1866                                                                                                         dinotefuran, permethrin, pyriproxyfen
1867                                                                                                                  ivermectin, pyrantel pamoate
1868                                                                                                                                   amoxicillin
1869                                                                                                                                wei qi booster
1870                                                                                                                                   doxycycline
1871                                                                                                           ear cleaner (zymox), hydrocortisone
1872                                                                                                                  ivermectin, pyrantel pamoate
1873                                                                                                         dinotefuran, permethrin, pyriproxyfen
1874                                                                                                                               dexmedetomidine
1875                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1876                                                                                                                  ivermectin, pyrantel pamoate
1877                                                                                                     unspecified herbal flea/tick preventative
1878                                                                                                                                     carprofen
1879                                                                                                            amoxicillin, clavulanate potassium
1880                                                                                                                  ivermectin, pyrantel pamoate
1881                                                                                                            amoxicillin, clavulanate potassium
1882                                                                                                                                     tris-edta
1883                                                                                                                           ear cleaner (zymox)
1884                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
1885                                                                                                                                        garlic
1886                                                                                                                            calming supplement
1887                                                                                                           cedarwood oil, rosemary oil, sesame
1888                                                                                                     unspecified herbal flea/tick preventative
1889                                                                                                                  ivermectin, pyrantel pamoate
1890                                                                                                         dinotefuran, permethrin, pyriproxyfen
1891                                                                                                                                  ba zheng wan
1892                                                                                                                                wei qi booster
1893                                                                                                                                     probiotic
1894                                                                                                                      urinary tract supplement
1895                                                                                                                                     carprofen
1896                                                                                                                            maropitant citrate
1897                                                                                                                           jin gui shen qi wan
1898                                                                                                            amoxicillin, clavulanate potassium
1899                                                                                                            amoxicillin, clavulanate potassium
1900                                                                                                                                     trazodone
1901                                                                                                                                    gabapentin
1902                                                                                                                          cefpodoxime proxetil
1903                                                                                                                                   hydroxyzine
1904                                                                                                                                    loratadine
1905                                                                                                                                     vitamin k
1906                                                                                                                                 metronidazole
1907                                                                                                                               diphenhydramine
1908                                                                                                                                    ivermectin
1909                                                                                                         dinotefuran, permethrin, pyriproxyfen
1910                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1911                                                                                                             trimeprazine tartrate, prednisone
1912                                                                                                             trimeprazine tartrate, prednisone
1913                                                                                                             trimeprazine tartrate, prednisone
1914                                                                                                                          cefpodoxime proxetil
1915                                                                                                                                 external wind
1916                                                                                                         dinotefuran, permethrin, pyriproxyfen
1917                                                                                                                  ivermectin, pyrantel pamoate
1918                                                                                                                          digestive supplement
1919                                                                                                                                 external wind
1920                                                                                                            chlorhexidine gluconate, ophytrium
1921                                                                                                                 allergy immunotherapy - drops
1922                                                                                                             betamethasone, gentamicin sulfate
1923                                                                                                                                  enrofloxacin
1924                                                                                                             enrofloxacin, silver sulfadiazine
1925                                                                                                                              benzoyl peroxide
1926                                                                                                         chlorhexidine gluconate, ketoconazole
1927                                                                                                                                   oclacitinib
1928                                                                                                                                    ivermectin
1929                                                                                                         dinotefuran, permethrin, pyriproxyfen
1930                                                                                                             betamethasone, gentamicin sulfate
1931                                                                                                                              benzoyl peroxide
1932                                                                                                                                   doxycycline
1933                                                                                                                                     carprofen
1934                                                                                                                 allergy immunotherapy - drops
1935                                                                                                                            maropitant citrate
1936                                                                                                                                    ivermectin
1937                                                                                                                                     carprofen
1938                                                                                                                 allergy immunotherapy - drops
1939                                                                                                     unspecified herbal flea/tick preventative
1940                                                                                                                                    gabapentin
1941                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
1942                                                                                                                                    ivermectin
1943                                                                                                                                     carprofen
1944                                                                                                                 allergy immunotherapy - drops
1945                                                                                                           cedarwood oil, rosemary oil, sesame
1946                                                                                                                                    ivermectin
1947                                                                                                         dinotefuran, permethrin, pyriproxyfen
1948                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1949                                                                                                                 allergy immunotherapy - drops
1950                                                                                                                                     carprofen
1951                                                                                                                                    gabapentin
1952                                                                                                                                     body sore
1953                                                                                                                                     carprofen
1954                                                                                                            fipronil, permethrin, pyriproxyfen
1955                                                                                                            fipronil, permethrin, pyriproxyfen
1956                                                                                                                              milbemycin oxime
1957                                                                                                                                 metronidazole
1958                                                                                                                                     probiotic
1959                                                                                                                                  fenbendazole
1960                                                                                                            fipronil, permethrin, pyriproxyfen
1961                                                                                                                                     deracoxib
1962                                                                                                                                    ivermectin
1963                                                                                                                                    ivermectin
1964                                                                                                            fipronil, permethrin, pyriproxyfen
1965                                                                                                               ear cleaner (epi-otic advanced)
1966                                                                                                                                    selamectin
1967                                                                                                                                       omega 3
1968                                                                                                        joint supplement (glucosamine hcl/msm)
1969                                                                                                                             vision supplement
1970                                                                                                                  ivermectin, pyrantel pamoate
1971                                                                                                                      imidacloprid, permethrin
1972                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1973                                                                                                                             vision supplement
1974                                                                                                                                       omega 3
1975                                                                                                                    imidacloprid, pyriproxyfen
1976                                                                                                                                    ivermectin
1977                                                                                                                                       omega 3
1978                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1979                                                                                                                             vision supplement
1980                                                                                                                    imidacloprid, pyriproxyfen
1981                                                                                                                  ivermectin, pyrantel pamoate
1982                                                                                                                  ivermectin, pyrantel pamoate
1983                                                                                                                    imidacloprid, pyriproxyfen
1984                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
1985                                                                                                                                       omega 3
1986                                                                                                                  ivermectin, pyrantel pamoate
1987                                                                                                                                    afoxolaner
1988                                                                                                                                     trazodone
1989                                                                                                                polysulfated glycosaminoglycan
1990                                                                                                                                    gabapentin
1991                                                                                                                                     carprofen
1992                                                                                                            amoxicillin, clavulanate potassium
1993                                                                                                                                  enrofloxacin
1994                                                                                                                                   doxorubicin
1995                                                                                                                                     toceranib
1996                                                                                                                                     carprofen
1997                                                                                                                                   amoxicillin
1998                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
1999                                                                                                                  ivermectin, pyrantel pamoate
2000                                                                                                                                    fluralaner
2001                                                                                                                  ivermectin, pyrantel pamoate
2002                                                                                                                                    fluralaner
2003                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2004                                                                                                                                     carprofen
2005                                                                                                                                    fluralaner
2006                                                                                                                  ivermectin, pyrantel pamoate
2007                                                                                                                                 levetiracetam
2008                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2009                                                                                                            amoxicillin, clavulanate potassium
2010                                                                                                                      fipronil, (s)-methoprene
2011                                                                                                                                 levetiracetam
2012                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2013                                                                                                                                       omega 3
2014                                                                                                                          cefpodoxime proxetil
2015                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2016                                                                                                                   lufenuron, milbemycin oxime
2017                                                                                                                  ivermectin, pyrantel pamoate
2018                                                                                                                                    gabapentin
2019                                                                                                                                    amantadine
2020                                                                                                                                    gabapentin
2021                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2022                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2023                                                                                                                      imidacloprid, permethrin
2024                                                                                                                                    ivermectin
2025                                                                                                                    imidacloprid, pyriproxyfen
2026                                                                                                                  ivermectin, pyrantel pamoate
2027                                                                                                                      urinary tract supplement
2028                                                                                                                                   amoxicillin
2029                                                                                                                  ivermectin, pyrantel pamoate
2030                                                                                                                                     sarolaner
2031                                                                                                                                    ivermectin
2032                                                                                                                              pyrantel pamoate
2033                                                                                                                              milbemycin oxime
2034                                                                                                                                  fenbendazole
2035                                                                                                                                    ivermectin
2036                                                                                                                      fipronil, (s)-methoprene
2037                                                                                                                                 metronidazole
2038                                                                                                                        unspecified medication
2039                                                                                                                                    ivermectin
2040                                                                                                                                    ivermectin
2041                                                                                                                                    ivermectin
2042                                                                                                                                    ivermectin
2043                                                                                                                                  fenbendazole
2044                                                                                                                                     ponazuril
2045                                                                                                                                     carprofen
2046                                                                                                                                      propofol
2047                                                                                                                                 hydromorphone
2048                                                                                                                               dexmedetomidine
2049                                                                                                                                   atipamezole
2050                                                                                                                  ivermectin, pyrantel pamoate
2051                                                                                                                      fipronil, (s)-methoprene
2052                                                                                                                                     ponazuril
2053                                                                                                                                  fenbendazole
2054                                                                                                                              sulfadimethoxine
2055                                                                                                                                 metronidazole
2056                                                                                                                                     carprofen
2057                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2058                                                                                                                                   doxycycline
2059                                                                                                                  ivermectin, pyrantel pamoate
2060                                                                                                                  ivermectin, pyrantel pamoate
2061                                                                                                                                   doxycycline
2062                                                                                                                  ivermectin, pyrantel pamoate
2063                                                                                                                  ivermectin, pyrantel pamoate
2064                                                                                                                                    tobramycin
2065                                                                                                                  ivermectin, pyrantel pamoate
2066                                                                                                                      fipronil, (s)-methoprene
2067                                                                                                                                    cephalexin
2068                                                                                                                          cefpodoxime proxetil
2069                                                                                                                  ivermectin, pyrantel pamoate
2070                                                                                                                      fipronil, (s)-methoprene
2071                                                                                                                            maropitant citrate
2072                                                                                                                                 metronidazole
2073                                                                                                                  ivermectin, pyrantel pamoate
2074                                                                                                                                    ivermectin
2075                                                                                                                                    ivermectin
2076                                                                                                                  ivermectin, pyrantel pamoate
2077                                                                                                                                    fluralaner
2078                                                                                                                                     carprofen
2079                                                                                                                   lufenuron, milbemycin oxime
2080                                                                                                                polysulfated glycosaminoglycan
2081                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2082                                                                                                                                    fluralaner
2083                                                                                                                                    selamectin
2084                                                                                                                                    ivermectin
2085                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2086                                                                                                                                    fluralaner
2087                                                                                                                   lufenuron, milbemycin oxime
2088                                                                                                                                    fluralaner
2089                                                                                                                      joint supplement (other)
2090                                                                                                                polysulfated glycosaminoglycan
2091                                                                                                                                    ivermectin
2092                                                                                                                                    fluralaner
2093                                                                                                                      joint supplement (other)
2094                                                                                                                polysulfated glycosaminoglycan
2095                                                                                                                polysulfated glycosaminoglycan
2096                                                                                                                      joint supplement (other)
2097                                                                                                                                     meloxicam
2098                                                                                                                polysulfated glycosaminoglycan
2099                                                                                                                      joint supplement (other)
2100                                                                                                                                     meloxicam
2101                                                                                                                polysulfated glycosaminoglycan
2102                                                                                                                                     meloxicam
2103                                                                                                                                  enrofloxacin
2104                                                                                                                                   amoxicillin
2105                                                                                                                                     cisapride
2106                                                                                                                                     meloxicam
2107                                                                                                                  ivermectin, pyrantel pamoate
2108                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2109                                                                                                                  ivermectin, pyrantel pamoate
2110                                                                                                                  ivermectin, pyrantel pamoate
2111                                                                                                                          cefpodoxime proxetil
2112                                                                                                                          cefpodoxime proxetil
2113                                                                                                             trimeprazine tartrate, prednisone
2114                                                                                                                                   oclacitinib
2115                                                                                                                     unspecified otic ointment
2116                                                                                                                        unspecified otic flush
2117                                                                                                                                    omeprazole
2118                                                                                                                                     probiotic
2119                                                                                                                                      ursodiol
2120                                                                                                                                   bedinvetmab
2121                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2122                                                                                                                        unspecified medication
2123                                                                                                                                     probiotic
2124                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
2125                                                                                                                                    cephalexin
2126                                                                                                                   lufenuron, milbemycin oxime
2127                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2128                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2129                                                                                                                    lactated ringer's solution
2130                                                                                                                                      propofol
2131                                                                                                                                  penicillin g
2132                                                                                                                                     meloxicam
2133                                                                                                                                      oxytocin
2134                                                                                                                                     meloxicam
2135                                                                                                                                    cephalexin
2136                                                                                                                    lactated ringer's solution
2137                                                                                                                              tylosin tartrate
2138                                                                                                                          digestive supplement
2139                                                                                                                          prebiotic, probiotic
2140                                                                                                               atropine sulfate, diphenoxylate
2141                                                                                                                                     carvacrol
2142                                                                                                                              atropine sulfate
2143                                                                                                                              tylosin tartrate
2144                                                                                                           high calorie nutritional supplement
2145                                                                                                                                 metronidazole
2146                                                                                                                                  fenbendazole
2147                                                                                                     lufenuron, milbemycin oxime, praziquantel
2148                                                                                                                         bismuth subsalicylate
2149                                                                                                                   lufenuron, milbemycin oxime
2150                                                                                                                      joint supplement (other)
2151                                                                                                                   lufenuron, milbemycin oxime
2152                                                                                                                      joint supplement (other)
2153                                                                                                                                 hydromorphone
2154                                                                                                                                      propofol
2155                                                                                                                                     cefovecin
2156                                                                                                                                     meloxicam
2157                                                                                                                                      oxytocin
2158                                                                                                                    lactated ringer's solution
2159                                                                                                                                     meloxicam
2160                                                                                                                                      tramadol
2161                                                                                                                   lufenuron, milbemycin oxime
2162                                                                                                                                     sarolaner
2163                                                                                                                      joint supplement (other)
2164                                                                                                                            calming supplement
2165                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2166                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2167                                                                                                                                     probiotic
2168                                                                                                                                 metronidazole
2169                                                                                                                                     vitamin b
2170                                                                                                                                  fenbendazole
2171                                                                                                                            maropitant citrate
2172                                                                                                                                    selamectin
2173                                                                                                                                     vitamin b
2174                                                                                                                                 metronidazole
2175                                                                                                                                     probiotic
2176                                                                                                                                   hydroxyzine
2177                                                                                                                          cefpodoxime proxetil
2178                                                                                                                              milbemycin oxime
2179                                                                                                                    milbemycin oxime, spinosad
2180                                                                                                                                     carprofen
2181                                                                                                                                 metronidazole
2182                                                                                                                      urinary tract supplement
2183                                                                                                                  ormetoprim, sulfadimethoxine
2184                                                                                                                                   amoxicillin
2185                                                                                                                              sulfadimethoxine
2186                                                                                                                                  fenbendazole
2187                                                                                                        joint supplement (glucosamine hcl/msm)
2188                                                                                                                      urinary tract supplement
2189                                                                                                                                  enrofloxacin
2190                                                                                                                                  enrofloxacin
2191                                                                                                                          cefpodoxime proxetil
2192                                                                                                                                     carprofen
2193                                                                                                        joint supplement (glucosamine hcl/msm)
2194                                                                                                                      urinary tract supplement
2195                                                                                                    digestive supplement, prebiotic, probiotic
2196                                                                                                                  ivermectin, pyrantel pamoate
2197                                                                                                                                    afoxolaner
2198                                                                                                                  ivermectin, pyrantel pamoate
2199                                                                                                                  ivermectin, pyrantel pamoate
2200                                                                                                                                    afoxolaner
2201                                                                                                                  ivermectin, pyrantel pamoate
2202                                                                                                                                    afoxolaner
2203                                                                                                                      urinary tract supplement
2204                                                                                                                  ivermectin, pyrantel pamoate
2205                                                                                                                                    afoxolaner
2206                                                                                                                      urinary tract supplement
2207                                                                                                        joint supplement (glucosamine hcl/msm)
2208                                                                                                                                    tobramycin
2209                                                                                                                      urinary tract supplement
2210                                                                                                                                     carprofen
2211                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2212                                                                                                                                     carprofen
2213                                                                                                                                     carprofen
2214                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2215                                                                                                                                      tramadol
2216                                                                                                                                    afoxolaner
2217                                                                                                                      urinary tract supplement
2218                                                                                                                                     carprofen
2219                                                                                                                                        arnica
2220                                                                                                                                     hypericum
2221                                                                                                                                 metronidazole
2222                                                                                                         dinotefuran, permethrin, pyriproxyfen
2223                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2224                                                                                                                     spinal support supplement
2225                                                                                                                                       omega 3
2226                                                                                                                                     probiotic
2227                                                                                                                                    cephalexin
2228                                                                                                                            mangosteen extract
2229                                                                                                                                     shu jin i
2230                                                                                                                                 metronidazole
2231                                                                                                                                    famotidine
2232                                                                                                                                    sucralfate
2233                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2234                                                                                                                              milbemycin oxime
2235                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2236                                                                                                                                   doxycycline
2237                                                                                                                                wei qi booster
2238                                                                                                                                     juan bi 1
2239                                                                                                                milbemycin oxime, praziquantel
2240                                                                                                         dinotefuran, permethrin, pyriproxyfen
2241                                                                                                         dinotefuran, permethrin, pyriproxyfen
2242                                                                                                                                    ivermectin
2243                                                                                                                              milbemycin oxime
2244                                                                                                         dinotefuran, permethrin, pyriproxyfen
2245                                                                                                                                 levothyroxine
2246                                                                                                                                    grapiprant
2247                                                                                                                                    ivermectin
2248                                                                                                                                   minocycline
2249                                                                                                                                     carprofen
2250                                                                                                                                    ivermectin
2251                                                                                                                         clorsulon, ivermectin
2252                                                                                                         dinotefuran, permethrin, pyriproxyfen
2253                                                                                                                                    afoxolaner
2254                                                                                                                                    fluralaner
2255                                                                                                         dinotefuran, permethrin, pyriproxyfen
2256                                                                                                                         ampicillin, sulbactam
2257                                                                                                                      kidney health supplement
2258                                                                                                                                     probiotic
2259                                                                                                                                     vitamin d
2260                                                                                                                                     vitamin a
2261                                                                                                                                     vitamin c
2262                                                                                                                                  multivitamin
2263                                                                                                                      kidney health supplement
2264                                                                                                                 unspecified herbal supplement
2265                                                                                                                                      turmeric
2266                                                                                                    toothpaste/dental health solution or chews
2267                                                                                                            amoxicillin, clavulanate potassium
2268                                                                                                            amoxicillin, clavulanate potassium
2269                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2270                                                                                                                                      turmeric
2271                                                                                                                                    grapiprant
2272                                                                                                mometasone furoate, orbifloxacin, posaconazole
2273                                                                                                                          prednisolone acetate
2274                                                                                                            amoxicillin, clavulanate potassium
2275                                                                                                                            maropitant citrate
2276                                                                                                                                   mirtazapine
2277                                                                                                                                    ivermectin
2278                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2279                                                                                                                  ivermectin, pyrantel pamoate
2280                                                                                                                  ivermectin, pyrantel pamoate
2281                                                                                                                                 metronidazole
2282                                                                                                                  ivermectin, pyrantel pamoate
2283                                                                                                                  ivermectin, pyrantel pamoate
2284                                                                                                                  ivermectin, pyrantel pamoate
2285                                                                                                                                   doxycycline
2286                                                                                                                                   hydrocodone
2287                                                                                                                  ivermectin, pyrantel pamoate
2288                                                                                                                                 metronidazole
2289                                                                                                                              tylosin tartrate
2290                                                                                                                                    gabapentin
2291                                                                                                                                    prednisone
2292                                                                                                                                    gabapentin
2293                                                                                                                                     carprofen
2294                                                                                                            amoxicillin, clavulanate potassium
2295                                                                                                                                     carprofen
2296                                                                                                                                     carprofen
2297                                                                                                                  ivermectin, pyrantel pamoate
2298                                                                                                                                     carprofen
2299                                                                                                                   sulfadimidine, trimethoprim
2300                                                                                                                                   amoxicillin
2301                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
2302                                                                                                         butorphanol tartrate, dexmedetomidine
2303                                                                                                                                    cephalexin
2304                                                                                                                                 dexamethasone
2305                                                                                                                                 dexamethasone
2306                                                                                                                                    cephalexin
2307                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
2308                                                                                                                  ivermectin, pyrantel pamoate
2309                                                                                                                                    afoxolaner
2310                                                                                                                                   doxycycline
2311                                                                                                                  ivermectin, pyrantel pamoate
2312                                                                                                                                    afoxolaner
2313                                                                                                                                 metronidazole
2314                                                                                                                                    cephalexin
2315                                                                                                                                   doxycycline
2316                                                                                                                                   hydrocodone
2317                                                                                                                                   amoxicillin
2318                                                                                                                                    cephalexin
2319                                                                                                                                 methocarbamol
2320                                                                                                                                     carprofen
2321                                                                                                                                    alprazolam
2322                                                                                                                                    gabapentin
2323                                                                                                                                     trazodone
2324                                                                                                                                 methocarbamol
2325                                                                                                                                   bedinvetmab
2326                                                                                                                                     carprofen
2327                                                                                                                                     cefazolin
2328                                                                                                                                    cephalexin
2329                                                                                                                                 yunnan baiyao
2330                                                                                                                                     carprofen
2331                                                                                                                                     carprofen
2332                                                                                                                                    cephalexin
2333                                                                                                                  ivermectin, pyrantel pamoate
2334                                                                                                                                    ivermectin
2335                                                                                                                                    ivermectin
2336                                                                                                                              pyrantel pamoate
2337                                                                                                                                  imidacloprid
2338                                                                                                                                    famotidine
2339                                                                                                                                 dexamethasone
2340                                                                                                                  ivermectin, pyrantel pamoate
2341                                                                                                                  ivermectin, pyrantel pamoate
2342                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2343                                                                                                                  ivermectin, pyrantel pamoate
2344                                                                                                                              pyrantel pamoate
2345                                                                                                                  ivermectin, pyrantel pamoate
2346                                                                                                                  ivermectin, pyrantel pamoate
2347                                                                                                                  ivermectin, pyrantel pamoate
2348                                                                                                                  ivermectin, pyrantel pamoate
2349                                                                                                                                    prednisone
2350                                                                                                                              tylosin tartrate
2351                                                                                                   rx diet - hypoallergenic hydrolyzed protein
2352                                                                                                                  ivermectin, pyrantel pamoate
2353                                                                                                                  ivermectin, pyrantel pamoate
2354                                                                                                                                    prednisone
2355                                                                                                                              tylosin tartrate
2356                                                                                                                  ivermectin, pyrantel pamoate
2357                                                                                                                                    prednisone
2358                                                                                                                                  enrofloxacin
2359                                                                                                                                 metronidazole
2360                                                                                                                            maropitant citrate
2361                                                                                                                                 dexamethasone
2362                                                                                                                                       omega 3
2363                                                                                                                                     vitamin c
2364                                                                                                                                    prednisone
2365                                                                                                                                   clindamycin
2366                                                                                                                                    omeprazole
2367                                                                                                                                    cephalexin
2368                                                                                                                                    prednisone
2369                                                                                                                                    ampicillin
2370                                                                                                                                  enrofloxacin
2371                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
2372                                                                                                                                   doxycycline
2373                                                                                                                                 metronidazole
2374                                                                                                                                    diclofenac
2375                                                                                                                                 metronidazole
2376                                                                                                                                   doxycycline
2377                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2378                                                                                                                                   doxycycline
2379                                                                                                                                     carprofen
2380                                                                                                                                    benzocaine
2381                                                                                                                                 metronidazole
2382                                                                                                                                    cephalexin
2383                                                                                                                                   amoxicillin
2384                                                                                                                  ivermectin, pyrantel pamoate
2385                                                                                                                                    cephalexin
2386                                                                                                                  ivermectin, pyrantel pamoate
2387                                                                                                                                 levothyroxine
2388                                                                                                                            maropitant citrate
2389                                                                                                                            maropitant citrate
2390                                                                                                             betamethasone, gentamicin sulfate
2391                                                                                                                                 metronidazole
2392                                                                                                                                    ranitidine
2393                                                                                                                                    sucralfate
2394                                                                                                                                 dexamethasone
2395                                                                                                                                    ivermectin
2396                                                                                                                            maropitant citrate
2397                                                                                                                                    sucralfate
2398                                                                                                             betamethasone, gentamicin sulfate
2399                                                                                                                                    ivermectin
2400                                                                                                                            maropitant citrate
2401                                                                                                                  ivermectin, pyrantel pamoate
2402                                                                                                                      fipronil, (s)-methoprene
2403                                                                                                                  ivermectin, pyrantel pamoate
2404                                                                                                                  ivermectin, pyrantel pamoate
2405                                                                                                                      fipronil, (s)-methoprene
2406                                                                                                                                       omega 3
2407                                                                                                                  ivermectin, pyrantel pamoate
2408                                                                                                                      fipronil, (s)-methoprene
2409                                                                                                                  ivermectin, pyrantel pamoate
2410                                                                                                                                    cephalexin
2411                                                                                                                                    ivermectin
2412                                                                                                                                   clindamycin
2413                                                                                                                                    gabapentin
2414                                                                                                                                     carprofen
2415                                                                                                                                    gabapentin
2416                                                                                                                  ivermectin, pyrantel pamoate
2417                                                                                                                  ivermectin, pyrantel pamoate
2418                                                                                                                  ivermectin, pyrantel pamoate
2419                                                                                                                  ivermectin, pyrantel pamoate
2420                                                                                                                  ivermectin, pyrantel pamoate
2421                                                                                                                                   oclacitinib
2422                                                                                                                                   oclacitinib
2423                                                                                                            amoxicillin, clavulanate potassium
2424                                                                                                                            maropitant citrate
2425                                                                                                                                    omeprazole
2426                                                                                                                                   amoxicillin
2427                                                                                                                                 metronidazole
2428                                                                                                                                   oclacitinib
2429                                                                                                                                   oclacitinib
2430                                                                                                                                 metronidazole
2431                                                                                                                                     carprofen
2432                                                                                                                                   oclacitinib
2433                                                                                                                                     carprofen
2434                                                                                                            amoxicillin, clavulanate potassium
2435                                                                                                                                     carprofen
2436                                                                                                                                   doxycycline
2437                                                                                                                                    ivermectin
2438                                                                                                                                 metronidazole
2439                                                                                                                                 metronidazole
2440                                                                                                                                  azithromycin
2441                                                                                                                     amylase, lipase, protease
2442                                                                                                                                  fenbendazole
2443                                                                                                      febantel, praziquantel, pyrantel pamoate
2444                                                                                                                                     ponazuril
2445                                                                                                                              sulfadimethoxine
2446                                                                                                                   lufenuron, milbemycin oxime
2447                                                                                                                                      tramadol
2448                                                                                                            fipronil, permethrin, pyriproxyfen
2449                                                                                                                                    ivermectin
2450                                                                                                                                   clindamycin
2451                                                                                                                            maropitant citrate
2452                                                                                                                            maropitant citrate
2453                                                                                                                            maropitant citrate
2454                                                                                                                            maropitant citrate
2455                                                                                                                                    famotidine
2456                                                                                                                            maropitant citrate
2457                                                                                                                                 methocarbamol
2458                                                                                                                                      tramadol
2459                                                                                                                                      diazepam
2460                                                                                                                                      diazepam
2461                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2462                                                                                                                       ketoconazole, tris-edta
2463                                                                                                             rx diet - selected protein (duck)
2464                                                                                                                  ivermectin, pyrantel pamoate
2465                                                                                                                                    ivermectin
2466                                                                                                                                    cephalexin
2467                                                                                                             trimeprazine tartrate, prednisone
2468                                                                                                                                   clindamycin
2469                                                                                                                            maropitant citrate
2470                                                                                                                                 methocarbamol
2471                                                                                                                                      diazepam
2472                                                                                                                                      diazepam
2473                                                                                                dexamethasone, neomycin sulfate, thiabendazole
2474                                                                                                                       ketoconazole, tris-edta
2475                                                                                                                                   doxycycline
2476                                                                                                                                     probiotic
2477                                                                                                                                 buprenorphine
2478                                                                                                                                    ampicillin
2479                                                                                                                                     probiotic
2480                                                                                                                                     carprofen
2481                                                                                                                                      fipronil
2482                                                                                                                  ivermectin, pyrantel pamoate
2483                                                                                                                                    afoxolaner
2484                                                                                                                                  ketoconazole
2485                                                                                                                                   oclacitinib
2486                                                                                                                       acetic acid, boric acid
2487                                                                                                                       ketoconazole, tris-edta
2488                                                                                                            amoxicillin, clavulanate potassium
2489                                                                                                                                     carprofen
2490                                                                                                                               dexmedetomidine
2491                                                                                                                            miconazole nitrate
2492                                                                                                                       acetic acid, boric acid
2493                                                                                                                                   oclacitinib
2494                                                                                                                                  ketoconazole
2495                                                                                                                                    afoxolaner
2496                                                                                                                                    omeprazole
2497                                                                                                                                    sucralfate
2498                                                                                                                                   amoxicillin
2499                                                                                                             rx diet - selected protein (duck)
2500                                                                                                                  ivermectin, pyrantel pamoate
2501                                                                                                                                     carprofen
2502                                                                                                                                    alprazolam
2503                                                                                                                                   oclacitinib
2504                                                                                                                                    afoxolaner
2505                                                                                                                                    ivermectin
2506                                                                                                                                    afoxolaner
2507                                                                                                                                 metronidazole
2508                                                                                                                                     probiotic
2509                                                                                                                            maropitant citrate
2510                                                                                                                                    ivermectin
2511                                                                                                                                    ivermectin
2512                                                                                                                  ivermectin, pyrantel pamoate
2513                                                                                                                                    ivermectin
2514                                                                                                                  ivermectin, pyrantel pamoate
2515                                                                                                                                 metronidazole
2516                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2517                                                                                                                   lufenuron, milbemycin oxime
2518                                                                                                                      joint supplement (other)
2519                                                                                                                   lufenuron, milbemycin oxime
2520                                                                                                                                     carprofen
2521                                                                                                                   lufenuron, milbemycin oxime
2522                                                                                                                   lufenuron, milbemycin oxime
2523                                                                                                                    thyroid support supplement
2524                                                                                                                    thyroid support supplement
2525                                                                                                                                     carprofen
2526                                                                                                                polysulfated glycosaminoglycan
2527                                                                                                                                     carprofen
2528                                                                                                                                  enrofloxacin
2529                                                                                                                polysulfated glycosaminoglycan
2530                                                                                                                                     carprofen
2531                                                                                                                                  enrofloxacin
2532                                                                                                                                    prednisone
2533                                                                                                                                   doxycycline
2534                                                                                                                unspecified eye dilation drops
2535                                                                                                                                   doxycycline
2536                                                                                                    dextromethorphan hydrobromide, guaifenesin
2537                                                                                                                  ivermectin, pyrantel pamoate
2538                                                                                                    ivermectin, praziquantel, pyrantel pamoate
2539                                                                                                     lufenuron, milbemycin oxime, praziquantel
2540                                                                                                                   lufenuron, milbemycin oxime
2541                                                                                                                              milbemycin oxime
2542                                                                                                                milbemycin oxime, praziquantel
2543                                                                                                                      flumethrin, imidacloprid
2544                                                                                                                                 metronidazole
2545                                                                                                                milbemycin oxime, praziquantel
2546                                                                                                                      flumethrin, imidacloprid
2547                                                                                                                              milbemycin oxime
2548                                                                                                                      flumethrin, imidacloprid
2549                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2550                                                                                                                                       omega 3
2551                                                                                                                                     carprofen
2552                                                                                                            amoxicillin, clavulanate potassium
2553                                                                                                                                     carprofen
2554                                                                                                            amoxicillin, clavulanate potassium
2555                                                                                                                                     carprofen
2556                                                                                                                                    cephalexin
2557                                                                                                                                    fluoxetine
2558                                                                                                                  ivermectin, pyrantel pamoate
2559                                                                                                                  ivermectin, pyrantel pamoate
2560                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2561                                                                                                                                    fluoxetine
2562                                                                                                                  ivermectin, pyrantel pamoate
2563                                                                                                                                   oclacitinib
2564                                                                                                                  ivermectin, pyrantel pamoate
2565                                                                                                                                    fluoxetine
2566                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2567                                                                                                                                    fluoxetine
2568                                                                                                                                   oclacitinib
2569                                                                                                                                   oclacitinib
2570                                                                                                                    thyroid support supplement
2571                                                                                                                                    ivermectin
2572                                                                                                                    imidacloprid, pyriproxyfen
2573                                                                                                                         clorsulon, ivermectin
2574                                                                                                            amoxicillin, clavulanate potassium
2575                                                                                                             betamethasone, gentamicin sulfate
2576                                                                                                                                    prednisone
2577                                                                                                                          cefpodoxime proxetil
2578                                                                                                             betamethasone, gentamicin sulfate
2579                                                                                                                                   oclacitinib
2580                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2581                                                                                                            amoxicillin, clavulanate potassium
2582                                                                                                mometasone furoate, orbifloxacin, posaconazole
2583                                                                                                                                    ivermectin
2584                                                                                                                      fipronil, (s)-methoprene
2585                                                                                                                                    ivermectin
2586                                                                                                                      imidacloprid, permethrin
2587                                                                                                                                   doxycycline
2588                                                                                                                                    fluralaner
2589                                                                                                                                    grapiprant
2590                                                                                                                                     probiotic
2591                                                                                                                                  multivitamin
2592                                                                                                                             vision supplement
2593                                                                                                                                  flurbiprofen
2594                                                                                                                                       omega 3
2595                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2596                                                                                                                      urinary tract supplement
2597                                                                                                                                      curcumin
2598                                                                                                                                     ketorolac
2599                                                                                                                           polyethylene glycol
2600                                                                                                                             vision supplement
2601                                                                                                                              sulfadimethoxine
2602                                                                                                                                  fenbendazole
2603                                                                                                                                   doxycycline
2604                                                                                                                                     ketorolac
2605                                                                                                                           polyethylene glycol
2606                                                                                                                             vision supplement
2607                                                                                                                                      tramadol
2608                                                                                                                                     carprofen
2609                                                                                                                                     piroxicam
2610                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2611                                                                                                                                  fenbendazole
2612                                                                                                                              sulfadimethoxine
2613                                                                                                                                  praziquantel
2614                                                                                                                                    ivermectin
2615                                                                                                                              pyrantel pamoate
2616                                                                                                                                   mebendazole
2617                                                                                                                                     lufenuron
2618                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2619                                                                                                                                  praziquantel
2620                                                                                                                                    ivermectin
2621                                                                                                                              pyrantel pamoate
2622                                                                                                                                   mebendazole
2623                                                                                                                                     lufenuron
2624                                                                                                                          prednisolone acetate
2625                                                                                                                                  enrofloxacin
2626                                                                                                                                    alprazolam
2627                                                                                                             betamethasone, gentamicin sulfate
2628                                                                                                                          prednisolone acetate
2629                                                                                                                          prednisolone acetate
2630                                                                                                                          prednisolone acetate
2631                                                                                                                                  praziquantel
2632                                                                                                                                    ivermectin
2633                                                                                                                              pyrantel pamoate
2634                                                                                                                                   mebendazole
2635                                                                                                                                     lufenuron
2636                                                                                                                                   oclacitinib
2637                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2638                                                                                                                                    cephalexin
2639                                                                                                                                   oclacitinib
2640                                                                                                                                   oclacitinib
2641                                                                                                                                      tramadol
2642                                                                                                             betamethasone, gentamicin sulfate
2643                                                                                                                                    lokivetmab
2644                                                                                                                                 metronidazole
2645                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2646                                                                                                                                  praziquantel
2647                                                                                                                                    ivermectin
2648                                                                                                                              pyrantel pamoate
2649                                                                                                                                   mebendazole
2650                                                                                                                                     lufenuron
2651                                                                            ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate
2652                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2653                                                                                                                           ear cleaner (zymox)
2654                                                                                                                                    cephalexin
2655                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2656                                                                                                                                     carprofen
2657                                                                                                                                    gabapentin
2658                                                                                                                                     trazodone
2659                                                                                                                      skin and coat supplement
2660                                                                                                                       unspecified ear cleaner
2661                                                                                                                              colloidal silver
2662                                                                                                                                    prednisone
2663                                                                                                                               diphenhydramine
2664                                                                                                             betamethasone, gentamicin sulfate
2665                                                                                                                          prednisolone acetate
2666                                                                                                                          prednisolone acetate
2667                                                                                                                          prednisolone acetate
2668                                                                                                                                    cephalexin
2669                                                                                                                                  praziquantel
2670                                                                                                                                    ivermectin
2671                                                                                                                              pyrantel pamoate
2672                                                                                                                                   mebendazole
2673                                                                                                                                     lufenuron
2674                                                                                                                                  praziquantel
2675                                                                                                                                    ivermectin
2676                                                                                                                              pyrantel pamoate
2677                                                                                                                                   mebendazole
2678                                                                                                                                     lufenuron
2679                                                                                                                                  praziquantel
2680                                                                                                                                    ivermectin
2681                                                                                                                              pyrantel pamoate
2682                                                                                                                                   mebendazole
2683                                                                                                                                     lufenuron
2684                                                                                                                                  praziquantel
2685                                                                                                                                    ivermectin
2686                                                                                                                              pyrantel pamoate
2687                                                                                                                                   mebendazole
2688                                                                                                                                     lufenuron
2689                                                                                                                                  praziquantel
2690                                                                                                                                    ivermectin
2691                                                                                                                              pyrantel pamoate
2692                                                                                                                                   mebendazole
2693                                                                                                                                     lufenuron
2694                                                                                                                                    lokivetmab
2695                                                                                                             betamethasone, gentamicin sulfate
2696                                                                                                                                 dexamethasone
2697                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2698                                                                                                                          prednisolone acetate
2699                                                                                                             betamethasone, gentamicin sulfate
2700                                                                                                                                    lokivetmab
2701                                                                                                                                  praziquantel
2702                                                                                                                                    ivermectin
2703                                                                                                                              pyrantel pamoate
2704                                                                                                                                   mebendazole
2705                                                                                                                                     lufenuron
2706                                                                                                                                 phenobarbital
2707                                                                                                                                 levetiracetam
2708                                                                                                                                     cefovecin
2709                                                                                                                      imidacloprid, moxidectin
2710                                                                                                                      imidacloprid, moxidectin
2711                                                                                                                                   amoxicillin
2712                                                                                                                                     cefovecin
2713                                                                                                  florfenicol, mometasone furoate, terbinafine
2714                                                                                                                                    lokivetmab
2715                                                                                                                                     meloxicam
2716                                                                                                                                     cefovecin
2717                                                                                                                               cbd or hemp oil
2718                                                                                                                                    lokivetmab
2719                                                                                                                  ivermectin, pyrantel pamoate
2720                                                                                                                                    afoxolaner
2721                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2722                                                                                                                                    prednisone
2723                                                                                                                                    prednisone
2724                                                                                                                                    afoxolaner
2725                                                                                                                  ivermectin, pyrantel pamoate
2726                                                                                                                  ivermectin, pyrantel pamoate
2727                                                                                                                                    prednisone
2728                                                                                                                                    prednisone
2729                                                                                                                                   ondansetron
2730                                                                                                                                    famotidine
2731                                                                                                                    milbemycin oxime, spinosad
2732                                                                                                                                 ciprofloxacin
2733                                                                                                                          cefpodoxime proxetil
2734                                                                                                                                 metronidazole
2735                                                                                                                    milbemycin oxime, spinosad
2736                                                                                                                                    afoxolaner
2737                                                                                                                   lufenuron, milbemycin oxime
2738                                                                                                                              milbemycin oxime
2739                                                                                                                                    afoxolaner
2740                                                                                                                                  enrofloxacin
2741                                                                                                                          cefpodoxime proxetil
2742                                                                                                                   lufenuron, milbemycin oxime
2743                                                                                                                                    fluralaner
2744                                                                                                                                   oclacitinib
2745                                                                                                                   lufenuron, milbemycin oxime
2746                                                                                                                                    fluralaner
2747                                                                                                                                    lokivetmab
2748                                                                                                                   lufenuron, milbemycin oxime
2749                                                                                                                                    fluralaner
2750                                                                                                                                   oclacitinib
2751                                                                                                                                    lokivetmab
2752                                                                                                                          cefpodoxime proxetil
2753                                                                                                     lufenuron, milbemycin oxime, praziquantel
2754                                                                                                                                    fluralaner
2755                                                                                                                                   oclacitinib
2756                                                                                                                                    lokivetmab
2757                                                                                                                          cefpodoxime proxetil
2758                                                                                                                                    lokivetmab
2759                                                                                                                                   oclacitinib
2760                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
2761                                                                                                                                 metronidazole
2762                                                                                                                          cefpodoxime proxetil
2763                                                                                                                                 metronidazole
2764                                                                                                                                   oclacitinib
2765                                                                                                                                    lokivetmab
2766                                                                                                                                    gabapentin
2767                                                                                                                                     carprofen
2768                                                                                                                                 metronidazole
2769                                                                                                                                    cephalexin
2770                                                                                                                                    cephalexin
2771                                                                                                                      fipronil, (s)-methoprene
2772                                                                                                                  ivermectin, pyrantel pamoate
2773                                                                                                                                    cephalexin
2774                                                                                                                  ivermectin, pyrantel pamoate
2775                                                                                                                                    afoxolaner
2776                                                                                                mometasone furoate, orbifloxacin, posaconazole
2777                                                                                                                  ivermectin, pyrantel pamoate
2778                                                                                                                                    afoxolaner
2779                                                                                                mometasone furoate, orbifloxacin, posaconazole
2780                                                                                                                                   doxycycline
2781                                                                                                                  ivermectin, pyrantel pamoate
2782                                                                                                                                     sarolaner
2783                                                                                                mometasone furoate, orbifloxacin, posaconazole
2784                                                                                                            amoxicillin, clavulanate potassium
2785                                                                                                                            maropitant citrate
2786                                                                                                                    lactated ringer's solution
2787                                                                                                                                  enrofloxacin
2788                                                                                                                                   amoxicillin
2789                                                                                                                          butorphanol tartrate
2790                                                                                                                                    gabapentin
2791                                                                                                                  ivermectin, pyrantel pamoate
2792                                                                                                                                    afoxolaner
2793                                                                                                                                    gabapentin
2794                                                                                                                                    cephalexin
2795                                                                                                                                    cetirizine
2796                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2797                                                                                                                                    ivermectin
2798                                                                                                                                    ivermectin
2799                                                                                                                      fipronil, (s)-methoprene
2800                                                                                                                                    ivermectin
2801                                                                                                                      fipronil, (s)-methoprene
2802                                                                                                                                    ivermectin
2803                                                                                                                      fipronil, (s)-methoprene
2804                                                                                                                                       omega 3
2805                                                                                                                      fipronil, (s)-methoprene
2806                                                                                                                                    ivermectin
2807                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
2808                                                                                                                                       omega 3
2809                                                                                                                                    ivermectin
2810                                                                                                                                       omega 3
2811                                                                                                                                       taurine
2812                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2813                                                                                                                         clorsulon, ivermectin
2814                                                                                                                                       taurine
2815                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2816                                                                                                                                       omega 3
2817                                                                                                                  ivermectin, pyrantel pamoate
2818                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2819                                                                                                                              pyrantel pamoate
2820                                                                                                                              pyrantel pamoate
2821                                                                                                                                      tramadol
2822                                                                                                                                     meloxicam
2823                                                                                                                                    prednisone
2824                                                                                                                          cefpodoxime proxetil
2825                                                                                                                              milbemycin oxime
2826                                                                                                                  ivermectin, pyrantel pamoate
2827                                                                                                                  ivermectin, pyrantel pamoate
2828                                                                                                                  ivermectin, pyrantel pamoate
2829                                                                                                                                  azithromycin
2830                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
2831                                                                                                                  ivermectin, pyrantel pamoate
2832                                                                                                                       acetic acid, boric acid
2833                                                                                                                   lufenuron, milbemycin oxime
2834                                                                                                                                 metronidazole
2835                                                                                                                                  ketoconazole
2836                                                                                                             dexamethasone, miconazole nitrate
2837                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
2838                                                                                                                              milbemycin oxime
2839                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
2840                                                                                                                          cefpodoxime proxetil
2841                                                                                                                          cefpodoxime proxetil
2842                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
2843                                                                                                                                   oclacitinib
2844                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
2845                                                                                                                                     carprofen
2846                                                                                                                              milbemycin oxime
2847                                                                                                                          cefpodoxime proxetil
2848                                                                                                                                    cephalexin
2849                                                                                                                                    prednisone
2850                                                                                                                                   doxycycline
2851                                                                                                                                    diclofenac
2852                                                                                                                                    prednisone
2853                                                                                                                                   fluticasone
2854                                                                                                                                      tramadol
2855                                                                                                                                 yunnan baiyao
2856                                                                                                                                 metronidazole
2857                                                                                                                                    ivermectin
2858                                                                                                                                chlorphenamine
2859                                                                                                                                    prednisone
2860                                                                                                                                    cephalexin
2861                                                                                                                                chlorphenamine
2862                                                                                                                                    prednisone
2863                                                                                                                                    ivermectin
2864                                                                                                                      fipronil, (s)-methoprene
2865                                                                                                                  ivermectin, pyrantel pamoate
2866                                                                                                                      fipronil, (s)-methoprene
2867                                                                                                                                    ranitidine
2868                                                                                                                                    ivermectin
2869                                                                                                            unspecified heartworm preventative
2870                                                                                                                  ivermectin, pyrantel pamoate
2871                                                                                                                                  praziquantel
2872                                                                                                                                     carprofen
2873                                                                                                                                     carprofen
2874                                                                                                                                     carprofen
2875                                                                                                                                     carprofen
2876                                                                                                                                    fluralaner
2877                                                                                                                    milbemycin oxime, spinosad
2878                                                                                                                              pyrantel pamoate
2879                                                                                                                       ketoconazole, tris-edta
2880                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2881                                                                                                                            miconazole nitrate
2882                                                                                                                          butorphanol tartrate
2883                                                                                                                               dexmedetomidine
2884                                                                                                                                   atipamezole
2885                                                                                                            amoxicillin, clavulanate potassium
2886                                                                                                                                    ampicillin
2887                                                                                                                   lufenuron, milbemycin oxime
2888                                                                                                                                     carprofen
2889                                                                                                                          cefpodoxime proxetil
2890                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2891                                                                                                                                 buprenorphine
2892                                                                                                                                     midazolam
2893                                                                                                                                      ketamine
2894                                                                                                            amoxicillin, clavulanate potassium
2895                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2896                                                                                                                                      ketamine
2897                                                                                                         chlorhexidine gluconate, ketoconazole
2898                                                                                                                          cefpodoxime proxetil
2899                                                                                                                                    prednisone
2900                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
2901                                                                                                                          cefpodoxime proxetil
2902                                                                                                                                    prednisone
2903                                                                                                         chlorhexidine gluconate, ketoconazole
2904                                                                                                         chlorhexidine gluconate, ketoconazole
2905                                                                                                         chlorhexidine gluconate, ketoconazole
2906                                                                                                                                    prednisone
2907                                                                                                                                     probiotic
2908                                                                                                         chlorhexidine gluconate, ketoconazole
2909                                                                                                                   lufenuron, milbemycin oxime
2910                                                                                                                                    afoxolaner
2911                                                                                                                   lufenuron, milbemycin oxime
2912                                                                                                                                    afoxolaner
2913                                                                                                                                     probiotic
2914                                                                                                                                     carprofen
2915                                                                                                            amoxicillin, clavulanate potassium
2916                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
2917                                                                                                                                      ketamine
2918                                                                                                                                     midazolam
2919                                                                                                                milbemycin oxime, praziquantel
2920                                                                                                                                    afoxolaner
2921                                                                                                                                     probiotic
2922                                                                                                                              milbemycin oxime
2923                                                                                                                                    afoxolaner
2924                                                                                                                                       omega 3
2925                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
2926                                                                                                                              milbemycin oxime
2927                                                                                                                                    afoxolaner
2928                                                                                                                                    cephalexin
2929                                                                                                                                    cephalexin
2930                                                                                                                                    cephalexin
2931                                                                                                                                    lokivetmab
2932                                                                                                       betamethasone, florfenicol, terbinafine
2933                                                                                                                                    prednisone
2934                                                                                                                                    lokivetmab
2935                                                                                                                                    prednisone
2936                                                                                                                                    cephalexin
2937                                                                                                                                    prednisone
2938                                                                                                                                   oclacitinib
2939                                                                                                                                    prednisone
2940                                                                                                                                    cephalexin
2941                                                                                                                   lufenuron, milbemycin oxime
2942                                                                                                                      imidacloprid, permethrin
2943                                                                                                                   lufenuron, milbemycin oxime
2944                                                                                                                    imidacloprid, pyriproxyfen
2945                                                                                                                   lufenuron, milbemycin oxime
2946                                                                                                                    imidacloprid, pyriproxyfen
2947                                                                                                                    imidacloprid, pyriproxyfen
2948                                                                                                                milbemycin oxime, praziquantel
2949                                                                                                                    imidacloprid, pyriproxyfen
2950                                                                                                                milbemycin oxime, praziquantel
2951                                                                                                                    imidacloprid, pyriproxyfen
2952                                                                                                                                    prednisone
2953                                                                                                                            maropitant citrate
2954                                                                                                                                  procarbazine
2955                                                                                                                                    gabapentin
2956                                                                                                                                    amantadine
2957                                                                                                                                    ivermectin
2958                                                                                                                                    ivermectin
2959                                                                                                                                    ivermectin
2960                                                                                                                  ivermectin, pyrantel pamoate
2961                                                                                                                  ivermectin, pyrantel pamoate
2962                                                                                                                  ivermectin, pyrantel pamoate
2963                                                                                                                  ivermectin, pyrantel pamoate
2964                                                                                                                  ivermectin, pyrantel pamoate
2965                                                                                                                                    gabapentin
2966                                                                                                                          cefpodoxime proxetil
2967                                                                                                                   lufenuron, milbemycin oxime
2968                                                                                                                      fipronil, (s)-methoprene
2969                                                                                                                              pyrantel pamoate
2970                                                                                                                               apomorphine hcl
2971                                                                                                                                     carprofen
2972                                                                                               betamethasone, clotrimazole, gentamicin sulfate
2973                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
2974                                                                                                                   lufenuron, milbemycin oxime
2975                                                                                                                      fipronil, (s)-methoprene
2976                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
2977                                                                                                                   lufenuron, milbemycin oxime
2978                                                                                                     lufenuron, milbemycin oxime, praziquantel
2979                                                                                                                                    afoxolaner
2980                                                                                                                          prednisolone acetate
2981                                                                                                     lufenuron, milbemycin oxime, praziquantel
2982                                                                                                                                    afoxolaner
2983                                                                                                                          prednisolone acetate
2984                                                                                                     lufenuron, milbemycin oxime, praziquantel
2985                                                                                                                                    afoxolaner
2986                                                                                                                          prednisolone acetate
2987                                                                                                                                 metronidazole
2988                                                                                                                                  fenbendazole
2989                                                                                                                                   clindamycin
2990                                                                                                                                  enrofloxacin
2991                                                                                                                              tylosin tartrate
2992                                                                                                                                 metronidazole
2993                                                                                                                                  fenbendazole
2994                                                                                                                                     carprofen
2995                                                                                                                                     carprofen
2996                                                                                                                                    ivermectin
2997                                                                                                                                 metronidazole
2998                                                                                                                                     probiotic
2999                                                                                                                                 dexamethasone
3000                                                                                                                      homatropine, hydrocodone
3001                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3002                                                                                                                          prednisolone acetate
3003                                                                                                               ear cleaner (epi-otic advanced)
3004                                                                                                                  ivermectin, pyrantel pamoate
3005                                                                                                                      fipronil, (s)-methoprene
3006                                                                                                                  ivermectin, pyrantel pamoate
3007                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
3008                                                                                                                                 metronidazole
3009                                                                                                                                  azathioprine
3010                                                                                                                            maropitant citrate
3011                                                                                                                                  capromorelin
3012                                                                                                                                     vitamin b
3013                                                                                                                                     probiotic
3014                                                                                                                                  chlorambucil
3015                                                                                                                                   mirtazapine
3016                                                                                                                                    prednisone
3017                                                                                                                          cefpodoxime proxetil
3018                                                                                                                  ivermectin, pyrantel pamoate
3019                                                                                                                  ivermectin, pyrantel pamoate
3020                                                                                                                  ivermectin, pyrantel pamoate
3021                                                                                                                  ivermectin, pyrantel pamoate
3022                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3023                                                                                                                                   doxycycline
3024                                                                                                                                   doxycycline
3025                                                                                                                              liver supplement
3026                                                                                                                                      ursodiol
3027                                                                                                                                    ivermectin
3028                                                                                                                      fipronil, (s)-methoprene
3029                                                                                                                                   doxycycline
3030                                                                                                                                     thyroxine
3031                                                                                                                              liver supplement
3032                                                                                                                                      ursodiol
3033                                                                                                                              liver supplement
3034                                                                                                                                   doxycycline
3035                                                                                                                                   doxycycline
3036                                                                                                                                     thyroxine
3037                                                                                                                                  theophylline
3038                                                                                                                                    grapiprant
3039                                                                                                            fipronil, permethrin, pyriproxyfen
3040                                                                                                                                    ivermectin
3041                                                                                                                                    ivermectin
3042                                                                                                                      fipronil, (s)-methoprene
3043                                                                                                                      fipronil, (s)-methoprene
3044                                                                                                                  ivermectin, pyrantel pamoate
3045                                                                                                                                    cephalexin
3046                                                                                                                                    gabapentin
3047                                                                                                                                 metronidazole
3048                                                                                                                            maropitant citrate
3049                                                                                                                              sulfadimethoxine
3050                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3051                                                                                                                                    ivermectin
3052                                                                                                                  ivermectin, pyrantel pamoate
3053                                                                                                                  ivermectin, pyrantel pamoate
3054                                                                                                                                 metronidazole
3055                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
3056                                                                                                                                      tramadol
3057                                                                                                                                     carprofen
3058                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3059                                                                                                                                    cephalexin
3060                                                                                                                                    ivermectin
3061                                                                                                                  ivermectin, pyrantel pamoate
3062                                                                                                                  ivermectin, pyrantel pamoate
3063                                                                                                                  ivermectin, pyrantel pamoate
3064                                                                                                                  ivermectin, pyrantel pamoate
3065                                                                                                                                    cetirizine
3066                                                                                                                  ivermectin, pyrantel pamoate
3067                                                                                                                  ivermectin, pyrantel pamoate
3068                                                                                                                                    cetirizine
3069                                                                                                                  ivermectin, pyrantel pamoate
3070                                                                                                                                    cetirizine
3071                                                                                                                                   amoxicillin
3072                                                                                                                                  enrofloxacin
3073                                                                                                mometasone furoate, orbifloxacin, posaconazole
3074                                                                                                                                   oclacitinib
3075                                                                                                                  ivermectin, pyrantel pamoate
3076                                                                                                                                     carprofen
3077                                                                                                                                   clindamycin
3078                                                                                                                                   amoxicillin
3079                                                                                                                                  enrofloxacin
3080                                                                                                                                   clindamycin
3081                                                                                                                                     carprofen
3082                                                                                                                  ivermectin, pyrantel pamoate
3083                                                                                                                                    lokivetmab
3084                                                                                                                                     piroxicam
3085                                                                                                                              cyclophosphamide
3086                                                                                                                                    furosemide
3087                                                                                                                                      tramadol
3088                                                                                                                                    gabapentin
3089                                                                                                         dinotefuran, permethrin, pyriproxyfen
3090                                                                                                                              milbemycin oxime
3091                                                                                                                                    selamectin
3092                                                                                                                                   minocycline
3093                                                                                                                                    cephalexin
3094                                                                                                                                    prednisone
3095                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
3096                                                                                                                                 metronidazole
3097                                                                                                                  ivermectin, pyrantel pamoate
3098                                                                                                                                  acepromazine
3099                                                                                                                                     carprofen
3100                                                                                                                               diphenhydramine
3101                                                                                                                                    selamectin
3102                                                                                                                                    afoxolaner
3103                                                                                                                  ivermectin, pyrantel pamoate
3104                                                                                                                                    afoxolaner
3105                                                                                                                               diphenhydramine
3106                                                                                                                  ivermectin, pyrantel pamoate
3107                                                                                                                                    afoxolaner
3108                                                                                                                               diphenhydramine
3109                                                                                                                              tylosin tartrate
3110                                                                                                mometasone furoate, orbifloxacin, posaconazole
3111                                                                                                                                 metronidazole
3112                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3113                                                                                                                                   oclacitinib
3114                                                                                                                                    prednisone
3115                                                                                                                                    prednisone
3116                                                                                                                                 metronidazole
3117                                                                                                                          cefpodoxime proxetil
3118                                                                                                                                  acepromazine
3119                                                                                                    dimethyl sulfoxide, fluocinolone acetonide
3120                                                                                                                              tylosin tartrate
3121                                                                                                                  ivermectin, pyrantel pamoate
3122                                                                                                                                    afoxolaner
3123                                                                                                                                   oclacitinib
3124                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3125                                                                                                                                   oclacitinib
3126                                                                                                                                     carprofen
3127                                                                                                                            methylprednisolone
3128                                                                                                                                    cetirizine
3129                                                                                                                            methylprednisolone
3130                                                                                                                                    cetirizine
3131                                                                                                                unspecified allergy medication
3132                                                                                                                            methylprednisolone
3133                                                                                                           allergy immunotherapy - unspecified
3134                                                                                                                                    cetirizine
3135                                                                                                                            methylprednisolone
3136                                                                                                                                    selamectin
3137                                                                                                                      fipronil, (s)-methoprene
3138                                                                                                                                    cetirizine
3139                                                                                                                            methylprednisolone
3140                                                                                                                 allergy immunotherapy - drops
3141                                                                                                                                    selamectin
3142                                                                                                                                     sarolaner
3143                                                                                                                            methylprednisolone
3144                                                                                                                                    cetirizine
3145                                                                                                                 allergy immunotherapy - drops
3146                                                                                                                                    cetirizine
3147                                                                                                                 allergy immunotherapy - drops
3148                                                                                                                                  fexofenadine
3149                                                                                                                               dexmedetomidine
3150                                                                                                                          butorphanol tartrate
3151                                                                                                                                   atipamezole
3152                                                                                                                               diphenhydramine
3153                                                                                                                                    cephalexin
3154                                                                                                                                    grapiprant
3155                                                                                                                              tylosin tartrate
3156                                                                                                                                       omega 3
3157                                                                                                                                     probiotic
3158                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3159                                                                                                                 allergy immunotherapy - drops
3160                                                                                                                                     carprofen
3161                                                                                                                                    gabapentin
3162                                                                                                                 allergy immunotherapy - drops
3163                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3164                                                                                                                                       omega 3
3165                                                                                                                                     probiotic
3166                                                                                                                                    cetirizine
3167                                                                                                                              pyrantel pamoate
3168                                                                                                                                     carprofen
3169                                                                                                                                    budesonide
3170                                                                                                                                 metronidazole
3171                                                                                                                            maropitant citrate
3172                                                                                                                                     carvacrol
3173                                                                                                                                    ivermectin
3174                                                                                                                              pyrantel pamoate
3175                                                                                                                    milbemycin oxime, spinosad
3176                                                                                                                    milbemycin oxime, spinosad
3177                                                                                                                              tylosin tartrate
3178                                                                                                                          digestive supplement
3179                                                                                                                  ivermectin, pyrantel pamoate
3180                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
3181                                                                                                                                    fluralaner
3182                                                                                                                  ivermectin, pyrantel pamoate
3183                                                                                                                      imidacloprid, permethrin
3184                                                                                                                                    cephalexin
3185                                                                                                                                    gabapentin
3186                                                                                                                  ivermectin, pyrantel pamoate
3187                                                                                                                                    cephalexin
3188                                                                                                                            maropitant citrate
3189                                                                                                                                     cefazolin
3190                                                                                                                                    gabapentin
3191                                                                                                                                 buprenorphine
3192                                                                                                                    lactated ringer's solution
3193                                                                                                                                      tramadol
3194                                                                                                                                    fluralaner
3195                                                                                                                  ivermectin, pyrantel pamoate
3196                                                                                                                                    fluralaner
3197                                                                                                                              tylosin tartrate
3198                                                                                                                          digestive supplement
3199                                                                                                                                    gabapentin
3200                                                                                                                                    omeprazole
3201                                                                                                                                    sucralfate
3202                                                                                                                                     methadone
3203                                                                                                                                     cefazolin
3204                                                                                                                                     midazolam
3205                                                                                                                                      ketamine
3206                                                                                                                                 hydromorphone
3207                                                                                                                                    isoflurane
3208                                                                                                                  ivermectin, pyrantel pamoate
3209                                                                                                                                    fluralaner
3210                                                                                                                  ivermectin, pyrantel pamoate
3211                                                                                                                                    fluralaner
3212                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3213                                                                                                                           silver sulfadiazine
3214                                                                                                                                 metronidazole
3215                                                                                                                                 metronidazole
3216                                                                                                                          digestive supplement
3217                                                                                                                                     trazodone
3218                                                                                                                                     carprofen
3219                                                                                                                          digestive supplement
3220                                                                                                                                     carprofen
3221                                                                                                                                 levothyroxine
3222                                                                                                                                 levothyroxine
3223                                                                                                                                 levothyroxine
3224                                                                                                                                 levothyroxine
3225                                                                                                                                 levothyroxine
3226                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3227                                                                                                                                    sucralfate
3228                                                                                                                                 levothyroxine
3229                                                                                                                                 levothyroxine
3230                                                                                                                                     vitamin b
3231                                                                                                                                 metronidazole
3232                                                                                                                                 levothyroxine
3233                                                                                                                                    diclofenac
3234                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3235                                                                                                                                     vitamin b
3236                                                                                                                                 levothyroxine
3237                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3238                                                                                                                                    diclofenac
3239                                                                                                                                     deracoxib
3240                                                                                                                                  enrofloxacin
3241                                                                                                                                     vitamin b
3242                                                                                                                                 levothyroxine
3243                                                                                                                                    diclofenac
3244                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3245                                                                                                      febantel, praziquantel, pyrantel pamoate
3246                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3247                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3248                                                                                                                                    cephalexin
3249                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3250                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3251                                                                                                                milbemycin oxime, praziquantel
3252                                                                                                                                  fenbendazole
3253                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3254                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3255                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3256                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3257                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3258                                                                                                                                    gabapentin
3259                                                                                                                                    amantadine
3260                                                                                                                                     carprofen
3261                                                                                                                                       omega 3
3262                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3263                                                                                                                      fipronil, (s)-methoprene
3264                                                                                                                                     probiotic
3265                                                                                                                              phytosphingosine
3266                                                                                                                          cefpodoxime proxetil
3267                                                                                                                              sulfadimethoxine
3268                                                                                                                                  fenbendazole
3269                                                                                                                              milbemycin oxime
3270                                                                                                                                 metronidazole
3271                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3272                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3273                                                                                                               ear cleaner (epi-otic advanced)
3274                                                                                                                                 metronidazole
3275                                                                                                                                 metronidazole
3276                                                                                                                                  fenbendazole
3277                                                                                                                              sulfadimethoxine
3278                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3279                                                                                                                                     carprofen
3280                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3281                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3282                                                                                                            amoxicillin, clavulanate potassium
3283                                                                                                                                     carprofen
3284                                                                                                                              milbemycin oxime
3285                                                                                                                                    cephalexin
3286                                                                                                                                     carprofen
3287                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3288                                                                                                                          cefpodoxime proxetil
3289                                                                                                                                    prednisone
3290                                                                                                                                  clomipramine
3291                                                                                                                                     mupirocin
3292                                                                                                                                 metronidazole
3293                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3294                                                                                                                              milbemycin oxime
3295                                                                                                                                 metronidazole
3296                                                                                                    dextromethorphan hydrobromide, guaifenesin
3297                                                                                                                                   doxycycline
3298                                                                                                                                  clomipramine
3299                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3300                                                                                                                              milbemycin oxime
3301                                                                                                                                     carprofen
3302                                                                                                                                     carprofen
3303                                                                                                                                      tramadol
3304                                                                                                                                  fenbendazole
3305                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3306                                                                                                                                    ivermectin
3307                                                                                                                                    fluralaner
3308                                                                                                                  ivermectin, pyrantel pamoate
3309                                                                                                                                    fluralaner
3310                                                                                                                  ivermectin, pyrantel pamoate
3311                                                                                                                                    fluralaner
3312                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3313                                                                                                                                     mupirocin
3314                                                                                                                milbemycin oxime, praziquantel
3315                                                                                                                                     probiotic
3316                                                                                                                                     sarolaner
3317                                                                                                                          cefpodoxime proxetil
3318                                                                                                                                     carprofen
3319                                                                                                                          cefpodoxime proxetil
3320                                                                                                                                  enrofloxacin
3321                                                                                                                                    ampicillin
3322                                                                                                                                   vincristine
3323                                                                                                                                  capromorelin
3324                                                                                                                                   mirtazapine
3325                                                                                                                            maropitant citrate
3326                                                                                                                                    prednisone
3327                                                                                                                                    prednisone
3328                                                                                                                              milbemycin oxime
3329                                                                                                                                     deracoxib
3330                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
3331                                                                                                     lufenuron, milbemycin oxime, praziquantel
3332                                                                                                                                 metronidazole
3333                                                                                     activated charcoal, bismuth subsalicylate, kaolin, pectin
3334                                                                                                                            maropitant citrate
3335                                                                                                     lufenuron, milbemycin oxime, praziquantel
3336                                                                                     activated charcoal, bismuth subsalicylate, kaolin, pectin
3337                                                                                                                                 metronidazole
3338                                                                                                                              milbemycin oxime
3339                                                                                                                milbemycin oxime, praziquantel
3340                                                                                                                                     deracoxib
3341                                                                                                                                      tramadol
3342                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3343                                                                                                                                    cephalexin
3344                                                                                                                                    cephalexin
3345                                                                                                                   lufenuron, milbemycin oxime
3346                                                                                                                   lufenuron, milbemycin oxime
3347                                                                                                                                    cephalexin
3348                                                                                                            amoxicillin, clavulanate potassium
3349                                                                                                                    milbemycin oxime, spinosad
3350                                                                                                                                    ivermectin
3351                                                                                                                  ivermectin, pyrantel pamoate
3352                                                                                                                  ivermectin, pyrantel pamoate
3353                                                                                                                                     firocoxib
3354                                                                                                                praziquantel, pyrantel pamoate
3355                                                                                                                  ivermectin, pyrantel pamoate
3356                                                                                                                      fipronil, (s)-methoprene
3357                                                                                                                                     carprofen
3358                                                                                                                  ivermectin, pyrantel pamoate
3359                                                                                                                      fipronil, (s)-methoprene
3360                                                                                                                      joint supplement (other)
3361                                                                                                                                     carprofen
3362                                                                                                                  ivermectin, pyrantel pamoate
3363                                                                                                                      fipronil, (s)-methoprene
3364                                                                                                                                     carprofen
3365                                                                                                        joint supplement (glucosamine hcl/msm)
3366                                                                                                                                  enrofloxacin
3367                                                                                                                                   terbinafine
3368                                                                                                                                     carprofen
3369                                                                                                                    milbemycin oxime, spinosad
3370                                                                                                                              sulfadimethoxine
3371                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3372                                                                                                                                    ivermectin
3373                                                                                                                  ivermectin, pyrantel pamoate
3374                                                                                                                  ivermectin, pyrantel pamoate
3375                                                                                                      febantel, praziquantel, pyrantel pamoate
3376                                                                                                                                     mupirocin
3377                                                                                                      febantel, praziquantel, pyrantel pamoate
3378                                                                                                                  ivermectin, pyrantel pamoate
3379                                                                                                                      fipronil, (s)-methoprene
3380                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3381                                                                                                                                    cephalexin
3382                                                                                                                                    prednisone
3383                                                                                                                  ivermectin, pyrantel pamoate
3384                                                                                                                      fipronil, (s)-methoprene
3385                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3386                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
3387                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
3388                                                                                                                  ivermectin, pyrantel pamoate
3389                                                                                                                      fipronil, (s)-methoprene
3390                                                                                                                                 levothyroxine
3391                                                                                                                                  enrofloxacin
3392                                                                                                                                    gabapentin
3393                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
3394                                                                                                                       triamcinolone acetonide
3395                                                                                                            amoxicillin, clavulanate potassium
3396                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3397                                                                                                                                       omega 3
3398                                                                                                                                     vitamin e
3399                                                                                                                    milbemycin oxime, spinosad
3400                                                                                                                              milbemycin oxime
3401                                                                                                                                    afoxolaner
3402                                                                                                                                    fluralaner
3403                                                                                                                    milbemycin oxime, spinosad
3404                                                                                                                                    afoxolaner
3405                                                                                                                  ivermectin, pyrantel pamoate
3406                                                                                                  florfenicol, mometasone furoate, terbinafine
3407                                                                                                                  ivermectin, pyrantel pamoate
3408                                                                                                                                    afoxolaner
3409                                                                                                                                 yunnan baiyao
3410                                                                                                                                     trazodone
3411                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
3412                                                                                                                                     firocoxib
3413                                                                                                                                    gabapentin
3414                                                                                                                                    grapiprant
3415                                                                                                                                     firocoxib
3416                                                                                                      febantel, praziquantel, pyrantel pamoate
3417                                                                                                                                    grapiprant
3418                                                                                                                                    pimobendan
3419                                                                                                                                    grapiprant
3420                                                                                                                                  acepromazine
3421                                                                                                                 allergy immunotherapy - drops
3422                                                                                                                 allergy immunotherapy - drops
3423                                                                                                                                    selamectin
3424                                                                                                                                    selamectin
3425                                                                                                                                    selamectin
3426                                                                                                                 allergy immunotherapy - drops
3427                                                                                                                                     meloxicam
3428                                                                                                                    milbemycin oxime, spinosad
3429                                                                                                                    milbemycin oxime, spinosad
3430                                                                                                                              milbemycin oxime
3431                                                                                                                                    fluralaner
3432                                                                                                                              milbemycin oxime
3433                                                                                                                                    fluralaner
3434                                                                                                                  ivermectin, pyrantel pamoate
3435                                                                                                                                    fluralaner
3436                                                                                                                                    lokivetmab
3437                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3438                                                                                                                                    lokivetmab
3439                                                                                                  florfenicol, mometasone furoate, terbinafine
3440                                                                                                                  ivermectin, pyrantel pamoate
3441                                                                                                                                    fluralaner
3442                                                                                                                  ivermectin, pyrantel pamoate
3443                                                                                                                                    afoxolaner
3444                                                                                                                                    lokivetmab
3445                                                                                                                                    cephalexin
3446                                                                                                                                    lokivetmab
3447                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3448                                                                                                  florfenicol, mometasone furoate, terbinafine
3449                                                                                                                                     carprofen
3450                                                                                                                   lufenuron, milbemycin oxime
3451                                                                                                                   lufenuron, milbemycin oxime
3452                                                                                                                   lufenuron, milbemycin oxime
3453                                                                                                                   lufenuron, milbemycin oxime
3454                                                                                                                      fipronil, (s)-methoprene
3455                                                                                                                   lufenuron, milbemycin oxime
3456                                                                                                                      fipronil, (s)-methoprene
3457                                                                                                                   lufenuron, milbemycin oxime
3458                                                                                                                    imidacloprid, pyriproxyfen
3459                                                                                                                   lufenuron, milbemycin oxime
3460                                                                                                                   lufenuron, milbemycin oxime
3461                                                                                                                      fipronil, (s)-methoprene
3462                                                                                                                                    ivermectin
3463                                                                                                                                    ivermectin
3464                                                                                                                                    ivermectin
3465                                                                                                                           phenylpropanolamine
3466                                                                                                                  ivermectin, pyrantel pamoate
3467                                                                                                                           phenylpropanolamine
3468                                                                                                                            maropitant citrate
3469                                                                                                                  ivermectin, pyrantel pamoate
3470                                                                                                                           phenylpropanolamine
3471                                                                                                                           phenylpropanolamine
3472                                                                                                                  ivermectin, pyrantel pamoate
3473                                                                                                                           phenylpropanolamine
3474                                                                                                                          cefpodoxime proxetil
3475                                                                                                                           phenylpropanolamine
3476                                                                                                                                   clindamycin
3477                                                                                                                                     carprofen
3478                                                                                                            joint supplement (glucosamine hcl)
3479                                                                                                                   lufenuron, milbemycin oxime
3480                                                                                                                       ketoconazole, tris-edta
3481                                                                                                                                 metronidazole
3482                                                                                                                                  fenbendazole
3483                                                                                                                   lufenuron, milbemycin oxime
3484                                                                                                                   lufenuron, milbemycin oxime
3485                                                                                                                   lufenuron, milbemycin oxime
3486                                                                                                                                   doxycycline
3487                                                                                                                      fipronil, (s)-methoprene
3488                                                                                                                                    nitenpyram
3489                                                                                                                                  praziquantel
3490                                                                                                                                     sarolaner
3491                                                                                                                   lufenuron, milbemycin oxime
3492                                                                                                                                     sarolaner
3493                                                                                                                            maropitant citrate
3494                                                                                                                                 metronidazole
3495                                                                                                     lufenuron, milbemycin oxime, praziquantel
3496                                                                                                                                     sarolaner
3497                                                                                                     lufenuron, milbemycin oxime, praziquantel
3498                                                                                                                                     sarolaner
3499                                                                                                            amoxicillin, clavulanate potassium
3500                                                                                                                                     carprofen
3501                                                                                                                          cefpodoxime proxetil
3502                                                                                                                                    cephalexin
3503                                                                                                                                      tramadol
3504                                                                                                                                     carprofen
3505                                                                                                                             aminocaproic acid
3506                                                                                                                                       sotalol
3507                                                                                                            amoxicillin, clavulanate potassium
3508                                                                                                                                       sotalol
3509                                                                                                                                 yunnan baiyao
3510                                                                                                                                   vinblastine
3511                                                                                                                                     carprofen
3512                                                                                                                  ivermectin, pyrantel pamoate
3513                                                                                                                  ivermectin, pyrantel pamoate
3514                                                                                                                  ivermectin, pyrantel pamoate
3515                                                                                                                  ivermectin, pyrantel pamoate
3516                                                                                                                  ivermectin, pyrantel pamoate
3517                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
3518                                                                                                                                     carprofen
3519                                                                                                                                    ivermectin
3520                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3521                                                                                                                                    cephalexin
3522                                                                                                                  ivermectin, pyrantel pamoate
3523                                                                                                                                    cephalexin
3524                                                                                                                              pyrantel pamoate
3525                                                                                                                  ivermectin, pyrantel pamoate
3526                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3527                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3528                                                                                                                          cefpodoxime proxetil
3529                                                                                                                                    lokivetmab
3530                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
3531                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3532                                                                                                                                    lokivetmab
3533                                                                                                                                     carprofen
3534                                                                                                                                    lokivetmab
3535                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3536                                                                                                                                     carprofen
3537                                                                                                                                    amantadine
3538                                                                                                                                   doxycycline
3539                                                                                                                                    omeprazole
3540                                                                                                                                  azathioprine
3541                                                                                                                                    prednisone
3542                                                                                                                                    nitenpyram
3543                                                                                                                      fipronil, (s)-methoprene
3544                                                                                                                    milbemycin oxime, spinosad
3545                                                                                                                                      spinosad
3546                                                                                                                              milbemycin oxime
3547                                                                                                                  ivermectin, pyrantel pamoate
3548                                                                                                                   lufenuron, milbemycin oxime
3549                                                                                                                   lufenuron, milbemycin oxime
3550                                                                                                                   lufenuron, milbemycin oxime
3551                                                                                                                  ivermectin, pyrantel pamoate
3552                                                                                                                                    afoxolaner
3553                                                                                                                                    cephalexin
3554                                                                                                                                    prednisone
3555                                                                                                                  ivermectin, pyrantel pamoate
3556                                                                                                                                    afoxolaner
3557                                                                                                                  ivermectin, pyrantel pamoate
3558                                                                                                                                    alprazolam
3559                                                                                                                                 metronidazole
3560                                                                                                                                       timolol
3561                                                                                                                          prednisolone acetate
3562                                                                                                                                    alprazolam
3563                                                                                                                          prednisolone acetate
3564                                                                                                                                    alprazolam
3565                                                                                                                                     trazodone
3566                                                                                                                                       timolol
3567                                                                                                                                     carprofen
3568                                                                                                                                      spinosad
3569                                                                                                                              milbemycin oxime
3570                                                                                                                          cefpodoxime proxetil
3571                                                                                                                                     meloxicam
3572                                                                                                                                     carprofen
3573                                                                                                                                 metronidazole
3574                                                                                                                                  fenbendazole
3575                                                                                                      febantel, praziquantel, pyrantel pamoate
3576                                                                                                                                      spinosad
3577                                                                                                                              milbemycin oxime
3578                                                                                                                                 metronidazole
3579                                                                                                                                      spinosad
3580                                                                                                                              milbemycin oxime
3581                                                                                                                                  multivitamin
3582                                                                                                                                 hydromorphone
3583                                                                                                                                  acepromazine
3584                                                                                                                                      diazepam
3585                                                                                                                              atropine sulfate
3586                                                                                                                                      propofol
3587                                                                                                                                   doxycycline
3588                                                                                                                                   sevoflurane
3589                                                                                                                                      spinosad
3590                                                                                                                              milbemycin oxime
3591                                                                                                                                 hydromorphone
3592                                                                                                                                     midazolam
3593                                                                                                                               dexmedetomidine
3594                                                                                                                                   atipamezole
3595                                                                                                                                     carprofen
3596                                                                                                                                     carprofen
3597                                                                                                                          cefpodoxime proxetil
3598                                                                                                                                 marbofloxacin
3599                                                                                                                          cefpodoxime proxetil
3600                                                                                                                            gentamicin sulfate
3601                                                                                                                                     carprofen
3602                                                                                                                                     carprofen
3603                                                                                                                                 marbofloxacin
3604                                                                                                                            gentamicin sulfate
3605                                                                                                                                     sarolaner
3606                                                                                                                               chloramphenicol
3607                                                                                                                               chloramphenicol
3608                                                                                                                                   oclacitinib
3609                                                                                                                                     carprofen
3610                                                                                                                                     mupirocin
3611                                                                                                                                      spinosad
3612                                                                                                                              milbemycin oxime
3613                                                                                                                                   oclacitinib
3614                                                                                                                                      spinosad
3615                                                                                                                              milbemycin oxime
3616                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3617                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3618                                                                                                                                     sarolaner
3619                                                                                                                milbemycin oxime, praziquantel
3620                                                                                                                                 metronidazole
3621                                                                                                                                   oclacitinib
3622                                                                                                                                     probiotic
3623                                                                                                                                     sarolaner
3624                                                                                                                              milbemycin oxime
3625                                                                                                                            maropitant citrate
3626                                                                                                                                    prednisone
3627                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3628                                                                                                                                    prednisone
3629                                                                                                                                    cephalexin
3630                                                                                                                            methylprednisolone
3631                                                                                                                                    ivermectin
3632                                                                                                                                    ivermectin
3633                                                                                                                                     carprofen
3634                                                                                                                              milbemycin oxime
3635                                                                                                                                    fluralaner
3636                                                                                                                polysulfated glycosaminoglycan
3637                                                                                                                                       aspirin
3638                                                                                                                                    prednisone
3639                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
3640                                                                                                                       acetic acid, boric acid
3641                                                                                                             betamethasone, gentamicin sulfate
3642                                                                                                                                 metronidazole
3643                                                                                                                                    famotidine
3644                                                                                                                                  fenbendazole
3645                                                                                                dexamethasone, neomycin sulfate, thiabendazole
3646                                                                                                                      imidacloprid, moxidectin
3647                                                                                                                      imidacloprid, moxidectin
3648                                                                                                                    imidacloprid, pyriproxyfen
3649                                                                                                                      imidacloprid, moxidectin
3650                                                                                                                      imidacloprid, moxidectin
3651                                                                                                                                 metronidazole
3652                                                                                                                          prebiotic, probiotic
3653                                                                                                                                  fenbendazole
3654                                                                                                                                 metronidazole
3655                                                                                                      febantel, praziquantel, pyrantel pamoate
3656                                                                                                                                 metronidazole
3657                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3658                                                                                                      febantel, praziquantel, pyrantel pamoate
3659                                                                                                                                 metronidazole
3660                                                                                                                      fipronil, (s)-methoprene
3661                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3662                                                                                                                      fipronil, (s)-methoprene
3663                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3664                                                                                                                                    ivermectin
3665                                                                                                                                    afoxolaner
3666                                                                                                             betamethasone, gentamicin sulfate
3667                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
3668                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3669                                                                                                                              milbemycin oxime
3670                                                                                                                                    afoxolaner
3671                                                                                                                              milbemycin oxime
3672                                                                                                                                    afoxolaner
3673                                                                                                                                   oclacitinib
3674                                                                                                                                   oclacitinib
3675                                                                                                             betamethasone, gentamicin sulfate
3676                                                                                                                                    cephalexin
3677                                                                                                                              milbemycin oxime
3678                                                                                                    toothpaste/dental health solution or chews
3679                                                                                                                                     carprofen
3680                                                                                                                                    cephalexin
3681                                                                                                                            ketamine, xylazine
3682                                                                                                                                     carprofen
3683                                                                                                                                 buprenorphine
3684                                                                                                                              milbemycin oxime
3685                                                                                                                      fipronil, (s)-methoprene
3686                                                                                                                                    cephalexin
3687                                                                                                                                     carprofen
3688                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3689                                                                                                  florfenicol, mometasone furoate, terbinafine
3690                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
3691                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
3692                                                                                                                              milbemycin oxime
3693                                                                                                             betamethasone, gentamicin sulfate
3694                                                                                                                                   oclacitinib
3695                                                                                                                                   oclacitinib
3696                                                                                                    ivermectin, praziquantel, pyrantel pamoate
3697                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3698                                                                                                                                    selamectin
3699                                                                                                                                    selamectin
3700                                                                                                                                 marbofloxacin
3701                                                                                                                              milbemycin oxime
3702                                                                                                                                    cephalexin
3703                                                                                                                                 metronidazole
3704                                                                                                                              milbemycin oxime
3705                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3706                                                                                                                                    lokivetmab
3707                                                                                                                          cefpodoxime proxetil
3708                                                                                                                                    gabapentin
3709                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
3710                                                                                                                               cbd or hemp oil
3711                                                                                                                                     carprofen
3712                                                                                                            amoxicillin, clavulanate potassium
3713                                                                                                            amoxicillin, clavulanate potassium
3714                                                                                                            amoxicillin, clavulanate potassium
3715                                                                                                            amoxicillin, clavulanate potassium
3716                                                                                                                           phenylpropanolamine
3717                                                                                                                                  fenbendazole
3718                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
3719                                                                                                                  ivermectin, pyrantel pamoate
3720                                                                                                                  ivermectin, pyrantel pamoate
3721                                                                                                                  ivermectin, pyrantel pamoate
3722                                                                                                                                    afoxolaner
3723                                                                                                                                     ponazuril
3724                                                                                                                                  fenbendazole
3725                                                                                                                  ivermectin, pyrantel pamoate
3726                                                                                                                  ivermectin, pyrantel pamoate
3727                                                                                                                  ivermectin, pyrantel pamoate
3728                                                                                                                      fipronil, (s)-methoprene
3729                                                                                                             trimeprazine tartrate, prednisone
3730                                                                                                                                    prednisone
3731                                                                                                                                  azathioprine
3732                                                                                                                  ivermectin, pyrantel pamoate
3733                                                                                                             betamethasone, gentamicin sulfate
3734                                                                                                                                    cetirizine
3735                                                                                                                                     ketotifen
3736                                                                                                                                   niacinamide
3737                                                                                                                                   doxycycline
3738                                                                                                                            maropitant citrate
3739                                                                                                                                   amoxicillin
3740                                                                                                                                     carprofen
3741                                                                                                                                   amoxicillin
3742                                                                                                                                  azathioprine
3743                                                                                                                                    cetirizine
3744                                                                                                                                     lactulose
3745                                                                                                                                     carprofen
3746                                                                                                                                  azithromycin
3747                                                                                                                 dextromethorphan hydrobromide
3748                                                                                                                                   guaifenesin
3749                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3750                                                                                                                              milbemycin oxime
3751                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3752                                                                                                                  ivermectin, pyrantel pamoate
3753                                                                                                                  ivermectin, pyrantel pamoate
3754                                                                                                                       chlorhexidine gluconate
3755                                                                                                                                    cephalexin
3756                                                                                                                             hypochlorous acid
3757                                                                                                                                  ketoconazole
3758                                                                                                            miconazole nitrate, salicylic acid
3759                                                                                                         chlorhexidine gluconate, ketoconazole
3760                                                                                                                    milbemycin oxime, spinosad
3761                                                                                                                          prednisolone acetate
3762                                                                                                                                   doxycycline
3763                                                                                                                                     nepafenac
3764                                                                                                                                    prednisone
3765                                                                                                                                    famotidine
3766                                                                                                                                   clindamycin
3767                                                                                                                                  azathioprine
3768                                                                                                                                  cyclosporine
3769                                                                                                                         mycophenolate mofetil
3770                                                                                                                    milbemycin oxime, spinosad
3771                                                                                                                                    prednisone
3772                                                                                                  florfenicol, mometasone furoate, terbinafine
3773                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3774                                                                                                                                     ofloxacin
3775                                                                                                                    milbemycin oxime, spinosad
3776                                                                                                            amoxicillin, clavulanate potassium
3777                                                                                                                                   oclacitinib
3778                                                                                                  florfenicol, mometasone furoate, terbinafine
3779                                                                                                                    milbemycin oxime, spinosad
3780                                                                                                                          pentosan polysulfate
3781                                                                                                                                     ketorolac
3782                                                                                                                                     ofloxacin
3783                                                                                                                                   tropicamide
3784                                                                                                                         mycophenolate mofetil
3785                                                                                                                                    prednisone
3786                                                                                                                                    famotidine
3787                                                                                                                    milbemycin oxime, spinosad
3788                                                                                                                                    lokivetmab
3789                                                                                                             betamethasone, gentamicin sulfate
3790                                                                                                                                   oclacitinib
3791                                                                                                                                   tropicamide
3792                                                                                                                         mycophenolate mofetil
3793                                                                                                                                     ketorolac
3794                                                                                                                                    prednisone
3795                                                                                                  florfenicol, mometasone furoate, terbinafine
3796                                                                                                mometasone furoate, orbifloxacin, posaconazole
3797                                                                                                                       triamcinolone acetonide
3798                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3799                                                                                                                                   oclacitinib
3800                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3801                                                                                                                                   oclacitinib
3802                                                                                                                                     carprofen
3803                                                                                                                  ormetoprim, sulfadimethoxine
3804                                                                                                                          cefpodoxime proxetil
3805                                                                                                                                   oclacitinib
3806                                                                                                            amoxicillin, clavulanate potassium
3807                                                                                                                      homatropine, hydrocodone
3808                                                                                                                                     carprofen
3809                                                                                                                  ivermectin, pyrantel pamoate
3810                                                                                                                                    ivermectin
3811                                                                                                                                     carprofen
3812                                                                                                                                      tramadol
3813                                                                                                                                    ivermectin
3814                                                                                                                  ivermectin, pyrantel pamoate
3815                                                                                                                  ivermectin, pyrantel pamoate
3816                                                                                                                                    sucralfate
3817                                                                                                                            maropitant citrate
3818                                                                                                                                    alfaxalone
3819                                                                                                                                 buprenorphine
3820                                                                                                                                    grapiprant
3821                                                                                                                                     firocoxib
3822                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3823                                                                                                                            maropitant citrate
3824                                                                                                                                    sucralfate
3825                                                                                                                                    famotidine
3826                                                                                                                                      tramadol
3827                                                                                                                                      spinosad
3828                                                                                                                                    cephalexin
3829                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3830                                                                                                                                     meloxicam
3831                                                                                                                                    afoxolaner
3832                                                                                                                                   hydroxyzine
3833                                                                                                                                     meloxicam
3834                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3835                                                                                                                  ivermectin, pyrantel pamoate
3836                                                                                                                                    afoxolaner
3837                                                                                                                                     thyroxine
3838                                                                                                                                    afoxolaner
3839                                                                                                                                     thyroxine
3840                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3841                                                                                                                  ivermectin, pyrantel pamoate
3842                                                                                                                                    afoxolaner
3843                                                                                                                                     thyroxine
3844                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3845                                                                                                                                     thyroxine
3846                                                                                                                                     carprofen
3847                                                                                                                                     carprofen
3848                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3849                                                                                                                  ivermectin, pyrantel pamoate
3850                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
3851                                                                                                                                     carprofen
3852                                                                                                                                    cephalexin
3853                                                                                                                                     carprofen
3854                                                                                                                              sulfadimethoxine
3855                                                                                                                                  ketoconazole
3856                                                                                                                                     carprofen
3857                                                                                                                  ivermectin, pyrantel pamoate
3858                                                                                                                      fipronil, (s)-methoprene
3859                                                                                                                              milbemycin oxime
3860                                                                                                                                    afoxolaner
3861                                                                                                                            gentamicin sulfate
3862                                                                                                                                     carprofen
3863                                                                                                                                      spinosad
3864                                                                                                                                    cephalexin
3865                                                                                                                                 metronidazole
3866                                                                                                                                      tramadol
3867                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3868                                                                                                                                    ivermectin
3869                                                                                                                                    afoxolaner
3870                                                                                                                  ivermectin, pyrantel pamoate
3871                                                                                                                                    afoxolaner
3872                                                                                                                                    afoxolaner
3873                                                                                                                                     thyroxine
3874                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3875                                                                                                                  ivermectin, pyrantel pamoate
3876                                                                                                                                    afoxolaner
3877                                                                                                                                     thyroxine
3878                                                                                                                                     thyroxine
3879                                                                                                                                     thyroxine
3880                                                                                                                                     thyroxine
3881                                                                                                                                    ivermectin
3882                                                                                                                              sulfamethoxazole
3883                                                                                                                  ivermectin, pyrantel pamoate
3884                                                                                                                      fipronil, (s)-methoprene
3885                                                                                                                      fipronil, (s)-methoprene
3886                                                                                                                  ivermectin, pyrantel pamoate
3887                                                                                                                                     firocoxib
3888                                                                                                                            maropitant citrate
3889                                                                                                                  ivermectin, pyrantel pamoate
3890                                                                                                                      fipronil, (s)-methoprene
3891                                                                                                                  ivermectin, pyrantel pamoate
3892                                                                                                                      fipronil, (s)-methoprene
3893                                                                                                                          cefpodoxime proxetil
3894                                                                                                                                    prednisone
3895                                                                                                                                    cephalexin
3896                                                                                                                      fipronil, (s)-methoprene
3897                                                                                                                  ivermectin, pyrantel pamoate
3898                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
3899                                                                                                                                     carprofen
3900                                                                                                                                    ivermectin
3901                                                                                                                  ivermectin, pyrantel pamoate
3902                                                                                                                      fipronil, (s)-methoprene
3903                                                                                                                  ivermectin, pyrantel pamoate
3904                                                                                                                      fipronil, (s)-methoprene
3905                                                                                               betamethasone, clotrimazole, gentamicin sulfate
3906                                                                                                                  ivermectin, pyrantel pamoate
3907                                                                                                                      fipronil, (s)-methoprene
3908                                                                                                                  ivermectin, pyrantel pamoate
3909                                                                                                                      fipronil, (s)-methoprene
3910                                                                                                                                    cephalexin
3911                                                                                                                  ivermectin, pyrantel pamoate
3912                                                                                                                      fipronil, (s)-methoprene
3913                                                                                                                                  enrofloxacin
3914                                                                                                                                    ivermectin
3915                                                                                                                              milbemycin oxime
3916                                                                                                                                     lufenuron
3917                                                                                                                                    ivermectin
3918                                                                                                                              pyrantel pamoate
3919                                                                                                                  ivermectin, pyrantel pamoate
3920                                                                                                                  ivermectin, pyrantel pamoate
3921                                                                                                                      fipronil, (s)-methoprene
3922                                                                                                                    imidacloprid, pyriproxyfen
3923                                                                                                                      fipronil, (s)-methoprene
3924                                                                                                                              milbemycin oxime
3925                                                                                                                   lufenuron, milbemycin oxime
3926                                                                                                                   lufenuron, milbemycin oxime
3927                                                                                                                                  ketoconazole
3928                                                                                                                                     deracoxib
3929                                                                                                                                      tramadol
3930                                                                                                                    milbemycin oxime, spinosad
3931                                                                                                                                 ciprofloxacin
3932                                                                                                                                 ciprofloxacin
3933                                                                                                                                     carprofen
3934                                                                                                         dinotefuran, permethrin, pyriproxyfen
3935                                                                                                                    milbemycin oxime, spinosad
3936                                                                                                                    milbemycin oxime, spinosad
3937                                                                                                                    milbemycin oxime, spinosad
3938                                                                                                                  ivermectin, pyrantel pamoate
3939                                                                                                                                     trazodone
3940                                                                                                                      homatropine, hydrocodone
3941                                                                                                                          cefpodoxime proxetil
3942                                                                                                                                    afoxolaner
3943                                                                                                                  ivermectin, pyrantel pamoate
3944                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
3945                                                                                                              propylene glycol, salicylic acid
3946                                                                                                                                    afoxolaner
3947                                                                                                    toothpaste/dental health solution or chews
3948                                                                                                                                    prednisone
3949                                                                                                                                    isoflurane
3950                                                                                                            amoxicillin, clavulanate potassium
3951                                                                                                                                     carprofen
3952                                                                                                                  ivermectin, pyrantel pamoate
3953                                                                                                                                     carprofen
3954                                                                                                            amoxicillin, clavulanate potassium
3955                                                                                                                                    afoxolaner
3956                                                                                                                                  fenbendazole
3957                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
3958                                                                                                                          cognitive supplement
3959                                                                                                                                    gabapentin
3960                                                                                                  florfenicol, mometasone furoate, terbinafine
3961                                                                                                                                    gabapentin
3962                                                                                                            amoxicillin, clavulanate potassium
3963                                                                                                                                     trazodone
3964                                                                                                                            maropitant citrate
3965                                                                                                                                     carprofen
3966                                                                                                                    milbemycin oxime, spinosad
3967                                                                                                                           phenylpropanolamine
3968                                                                                                                           phenylpropanolamine
3969                                                                                                                           phenylpropanolamine
3970                                                                                                                    milbemycin oxime, spinosad
3971                                                                                                         dinotefuran, permethrin, pyriproxyfen
3972                                                                                                                    milbemycin oxime, spinosad
3973                                                                                                                           phenylpropanolamine
3974                                                                                                                    milbemycin oxime, spinosad
3975                                                                                                                           phenylpropanolamine
3976                                                                                                                                     carprofen
3977                                                                                                                          cefpodoxime proxetil
3978                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
3979                                                                                                                            methylprednisolone
3980                                                                                                                  ivermectin, pyrantel pamoate
3981                                                                                                                                    afoxolaner
3982                                                                                                                           phenylpropanolamine
3983                                                                                                                           phenylpropanolamine
3984                                                                                                                  ivermectin, pyrantel pamoate
3985                                                                                                                                    afoxolaner
3986                                                                                                                                    gabapentin
3987                                                                                                                                      tramadol
3988                                                                                                                                   clindamycin
3989                                                                                                                  ivermectin, pyrantel pamoate
3990                                                                                                                                    afoxolaner
3991                                                                                                                           phenylpropanolamine
3992                                                                                                                                   clindamycin
3993                                                                                                            amoxicillin, clavulanate potassium
3994                                                                                                                                    gabapentin
3995                                                                                                                polysulfated glycosaminoglycan
3996                                                                                                                           phenylpropanolamine
3997                                                                                                                                  fenbendazole
3998                                                                                                                           phenylpropanolamine
3999                                                                                                                polysulfated glycosaminoglycan
4000                                                                                                                                     meloxicam
4001                                                                                                                        joint supplement (msm)
4002                                                                                                                polysulfated glycosaminoglycan
4003                                                                                                                           phenylpropanolamine
4004                                                                                                                           phenylpropanolamine
4005                                                                                                                polysulfated glycosaminoglycan
4006                                                                                                                        joint supplement (msm)
4007                                                                                                                                     carprofen
4008                                                                                                                            maropitant citrate
4009                                                                                                                                  capromorelin
4010                                                                                                                      fipronil, (s)-methoprene
4011                                                                                                                                    cephalexin
4012                                                                                                                                    ivermectin
4013                                                                                                                   lufenuron, milbemycin oxime
4014                                                                                                                              milbemycin oxime
4015                                                                                                                              milbemycin oxime
4016                                                                                                                  ivermectin, pyrantel pamoate
4017                                                                                                                  ivermectin, pyrantel pamoate
4018                                                                                                                          cefpodoxime proxetil
4019                                                                                                                                   oclacitinib
4020                                                                                                                                    gabapentin
4021                                                                                                                          cefpodoxime proxetil
4022                                                                                                                                 metronidazole
4023                                                                                                                                   doxycycline
4024                                                                                                                                      tramadol
4025                                                                                                                                     carprofen
4026                                                                                                                                 dexamethasone
4027                                                                                                                                    cetirizine
4028                                                                                                                                   doxycycline
4029                                                                                                                                    cephalexin
4030                                                                                                                    milbemycin oxime, spinosad
4031                                                                                                                    milbemycin oxime, spinosad
4032                                                                                                         dinotefuran, permethrin, pyriproxyfen
4033                                                                                                                praziquantel, pyrantel pamoate
4034                                                                                                                                     carprofen
4035                                                                                                                                      tramadol
4036                                                                                                                          cefpodoxime proxetil
4037                                                                                                                              milbemycin oxime
4038                                                                                                                                      spinosad
4039                                                                                                                              milbemycin oxime
4040                                                                                                                                      spinosad
4041                                                                                                            amoxicillin, clavulanate potassium
4042                                                                                                                        unspecified medication
4043                                                                                                                                     carprofen
4044                                                                                                                                    moxidectin
4045                                                                                                                                     sarolaner
4046                                                                                                                                    moxidectin
4047                                                                                                                                     sarolaner
4048                                                                                                                                    cephalexin
4049                                                                                                                              sulfamethoxazole
4050                                                                                                                                    cephalexin
4051                                                                                                                                    pimobendan
4052                                                                                                                                    furosemide
4053                                                                                                                       triamcinolone acetonide
4054                                                                                                                                 dexamethasone
4055                                                                                                                                    cephalexin
4056                                                                                                                                    pimobendan
4057                                                                                                                                    grapiprant
4058                                                                                                                                    ivermectin
4059                                                                                                             trimeprazine tartrate, prednisone
4060                                                                                                                  ivermectin, pyrantel pamoate
4061                                                                                                                  ivermectin, pyrantel pamoate
4062                                                                                                                                     firocoxib
4063                                                                                                                  ivermectin, pyrantel pamoate
4064                                                                                                                                    fluralaner
4065                                                                                                                                   oclacitinib
4066                                                                                                                                    ivermectin
4067                                                                                                                                    fluralaner
4068                                                                                                    toothpaste/dental health solution or chews
4069                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4070                                                                                                                                   oclacitinib
4071                                                                                                    toothpaste/dental health solution or chews
4072                                                                                                                                    afoxolaner
4073                                                                                                                  ivermectin, pyrantel pamoate
4074                                                                                                                      fipronil, (s)-methoprene
4075                                                                                                                  ivermectin, pyrantel pamoate
4076                                                                                                                                   oclacitinib
4077                                                                                                                                    afoxolaner
4078                                                                                                                                 phenobarbital
4079                                                                                                                                   amoxicillin
4080                                                                                                                                    cephalexin
4081                                                                                                                                 phenobarbital
4082                                                                                                                                     firocoxib
4083                                                                                                                                    cephalexin
4084                                                                                                                                  enrofloxacin
4085                                                                                                                                 phenobarbital
4086                                                                                                                                    lokivetmab
4087                                                                                                                                     cefazolin
4088                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
4089                                                                                                                                     ofloxacin
4090                                                                                                                                     firocoxib
4091                                                                                                                                    moxidectin
4092                                                                                                                                  imidacloprid
4093                                                                                                                                    moxidectin
4094                                                                                                                                  fenbendazole
4095                                                                                                                                     sarolaner
4096                                                                                                                                    moxidectin
4097                                                                                                                                     sarolaner
4098                                                                                                                                    cephalexin
4099                                                                                                                                     trazodone
4100                                                                                                                                  ketoconazole
4101                                                                                                                                 dexamethasone
4102                                                                                                                       triamcinolone acetonide
4103                                                                                                                                     trazodone
4104                                                                                                                                    cephalexin
4105                                                                                                                              sulfamethoxazole
4106                                                                                                                                     cefazolin
4107                                                                                                                                      ketamine
4108                                                                                                                                    grapiprant
4109                                                                                                                    milbemycin oxime, spinosad
4110                                                                                                      febantel, praziquantel, pyrantel pamoate
4111                                                                                                                    milbemycin oxime, spinosad
4112                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4113                                                                                                               ear cleaner (epi-otic advanced)
4114                                                                                                                       ketoconazole, tris-edta
4115                                                                                                                          cefpodoxime proxetil
4116                                                                                                             trimeprazine tartrate, prednisone
4117                                                                                                                      fipronil, (s)-methoprene
4118                                                                                                                    milbemycin oxime, spinosad
4119                                                                                                                       ketoconazole, tris-edta
4120                                                                                                                    milbemycin oxime, spinosad
4121                                                                                                                    milbemycin oxime, spinosad
4122                                                                                                                    milbemycin oxime, spinosad
4123                                                                                                                          cefpodoxime proxetil
4124                                                                                                                                   oclacitinib
4125                                                                                                                    milbemycin oxime, spinosad
4126                                                                                                                          cefpodoxime proxetil
4127                                                                                                                milbemycin oxime, praziquantel
4128                                                                                                                                    afoxolaner
4129                                                                                                                          cefpodoxime proxetil
4130                                                                                                                    milbemycin oxime, spinosad
4131                                                                                                             betamethasone, gentamicin sulfate
4132                                                                                                             betamethasone, gentamicin sulfate
4133                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
4134                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4135                                                                                                                                   oclacitinib
4136                                                                                                                                     carprofen
4137                                                                                                                                    gabapentin
4138                                                                                                                                    gabapentin
4139                                                                                                                              neomycin sulfate
4140                                                                                                                      homatropine, hydrocodone
4141                                                                                                                  ormetoprim, sulfadimethoxine
4142                                                                                                                            maropitant citrate
4143                                                                                                                                    omeprazole
4144                                                                                                                                 metronidazole
4145                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4146                                                                                                                                  fenbendazole
4147                                                                                                                                     meloxicam
4148                                                                                                                                    cephalexin
4149                                                                                                                                    ivermectin
4150                                                                                                                                      tramadol
4151                                                                                                                                     meloxicam
4152                                                                                                                                 ciprofloxacin
4153                                                                                                                                 metronidazole
4154                                                                                                                      fipronil, (s)-methoprene
4155                                                                                                            fipronil, permethrin, pyriproxyfen
4156                                                                                                                                    ivermectin
4157                                                                                                                              pyrantel pamoate
4158                                                                                                                      fipronil, (s)-methoprene
4159                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4160                                                                                                     clotrimazole, dexamethasone, enrofloxacin
4161                                                                                                                                    ivermectin
4162                                                                                                            fipronil, permethrin, pyriproxyfen
4163                                                                                                                                    budesonide
4164                                                                                                                                  chlorambucil
4165                                                                                                                                    omeprazole
4166                                                                                                                                    prednisone
4167                                                                                                                                     vitamin b
4168                                                                                                                           polyethylene glycol
4169                                                                                                                                   cosyntropin
4170                                                                                                                                  fenbendazole
4171                                                                                                                                 metronidazole
4172                                                                                                                      fipronil, (s)-methoprene
4173                                                                                                                  ivermectin, pyrantel pamoate
4174                                                                                                                  ivermectin, pyrantel pamoate
4175                                                                                                                      fipronil, (s)-methoprene
4176                                                                                                                  ivermectin, pyrantel pamoate
4177                                                                                                                  ivermectin, pyrantel pamoate
4178                                                                                                                    milbemycin oxime, spinosad
4179                                                                                                                    milbemycin oxime, spinosad
4180                                                                                                                                    selamectin
4181                                                                                                                                    selamectin
4182                                                                                                                                    selamectin
4183                                                                                                                                    selamectin
4184                                                                                                                                    selamectin
4185                                                                                                                                      tramadol
4186                                                                                                                                     carprofen
4187                                                                                                                          cefpodoxime proxetil
4188                                                                                                                                    selamectin
4189                                                                                                                          cefpodoxime proxetil
4190                                                                                                                                     carprofen
4191                                                                                                                    milbemycin oxime, spinosad
4192                                                                                                                                     carprofen
4193                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4194                                                                                                                          cefpodoxime proxetil
4195                                                                                                                                  fenbendazole
4196                                                                                                                    milbemycin oxime, spinosad
4197                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
4198                                                                                                                                    afoxolaner
4199                                                                                                                              milbemycin oxime
4200                                                                                                                          cefpodoxime proxetil
4201                                                                                                                                   oclacitinib
4202                                                                                                                              milbemycin oxime
4203                                                                                                                                     sarolaner
4204                                                                                                                                    lokivetmab
4205                                                                                                                                      ursodiol
4206                                                                                                                                    lokivetmab
4207                                                                                                                                      spinosad
4208                                                                                                                  ivermectin, pyrantel pamoate
4209                                                                                                                    milbemycin oxime, spinosad
4210                                                                                                                    milbemycin oxime, spinosad
4211                                                                                                                    milbemycin oxime, spinosad
4212                                                                                                                    milbemycin oxime, spinosad
4213                                                                                                     lufenuron, milbemycin oxime, praziquantel
4214                                                                                                                   lufenuron, milbemycin oxime
4215                                                                                                                   lufenuron, milbemycin oxime
4216                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4217                                                                                                                                    prednisone
4218                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4219                                                                                                                                     carprofen
4220                                                                                                                                     carprofen
4221                                                                                                                                     carprofen
4222                                                                                                                                      tramadol
4223                                                                                                                            maropitant citrate
4224                                                                                                                            maropitant citrate
4225                                                                                                                                   amoxicillin
4226                                                                                                                                  enrofloxacin
4227                                                                                                                                 metronidazole
4228                                                                                                                                    cephalexin
4229                                                                                                                                  fenbendazole
4230                                                                                                                                   doxycycline
4231                                                                                                                                    prednisone
4232                                                                                                                            maropitant citrate
4233                                                                                                                                   doxycycline
4234                                                                                                                                   doxycycline
4235                                                                                                                                 levothyroxine
4236                                                                                                                              pyrantel pamoate
4237                                                                                                                                    ivermectin
4238                                                                                                                      fipronil, (s)-methoprene
4239                                                                                                                                   doxycycline
4240                                                                                                                                     carprofen
4241                                                                                                                                 metronidazole
4242                                                                                                                                   doxycycline
4243                                                                                                                                  fenbendazole
4244                                                                                                                              pyrantel pamoate
4245                                                                                               betamethasone, clotrimazole, gentamicin sulfate
4246                                                                                                                  ivermectin, pyrantel pamoate
4247                                                                                                                  ivermectin, pyrantel pamoate
4248                                                                                                                                 levothyroxine
4249                                                                                                                                  flurbiprofen
4250                                                                                                                              sulfadimethoxine
4251                                                                                                                  ivermectin, pyrantel pamoate
4252                                                                                                                                    afoxolaner
4253                                                                                                                                 levothyroxine
4254                                                                                                                  ivermectin, pyrantel pamoate
4255                                                                                                                                 levothyroxine
4256                                                                                                                                    afoxolaner
4257                                                                                                                  ivermectin, pyrantel pamoate
4258                                                                                                                                    afoxolaner
4259                                                                                                                                 levothyroxine
4260                                                                                                                            maropitant citrate
4261                                                                                                                  ivermectin, pyrantel pamoate
4262                                                                                                                                    afoxolaner
4263                                                                                                                                 levothyroxine
4264                                                                                                                              pyrantel pamoate
4265                                                                                                                                    tobramycin
4266                                                                                                                       ketoconazole, tris-edta
4267                                                                                                                                    lokivetmab
4268                                                                                                                               dexmedetomidine
4269                                                                                                                               dexmedetomidine
4270                                                                                                                                  acepromazine
4271                                                                                                                                 buprenorphine
4272                                                                                                                            maropitant citrate
4273                                                                                                                         tiletamine, zolazepam
4274                                                                                                                                    isoflurane
4275                                                                                                                                 metronidazole
4276                                                                                                                              tylosin tartrate
4277                                                                                                                               dexmedetomidine
4278                                                                                                                              sulfadimethoxine
4279                                                                                                            amoxicillin, clavulanate potassium
4280                                                                                                                                 metronidazole
4281                                                                                                                                     carprofen
4282                                                                                                                                    cephalexin
4283                                                                                                                  ivermectin, pyrantel pamoate
4284                                                                                                                  ivermectin, pyrantel pamoate
4285                                                                                                                                    ivermectin
4286                                                                                                                                    ivermectin
4287                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
4288                                                                                                                                   oclacitinib
4289                                                                                                                            maropitant citrate
4290                                                                                                                                    gabapentin
4291                                                                                                                                     lidocaine
4292                                                                                                                                     lidocaine
4293                                                                                                                          butorphanol tartrate
4294                                                                                                                                     trazodone
4295                                                                                                                                    mexiletine
4296                                                                                                                                     toceranib
4297                                                                                                                                     carprofen
4298                                                                                                            fipronil, permethrin, pyriproxyfen
4299                                                                                                                                    ivermectin
4300                                                                                                                                    cephalexin
4301                                                                                                                                      tramadol
4302                                                                                                                   lufenuron, milbemycin oxime
4303                                                                                                            fipronil, permethrin, pyriproxyfen
4304                                                                                                                   lufenuron, milbemycin oxime
4305                                                                                                                      fipronil, (s)-methoprene
4306                                                                                                                                       omega 3
4307                                                                                                                   lufenuron, milbemycin oxime
4308                                                                                                                   lufenuron, milbemycin oxime
4309                                                                                                                      fipronil, (s)-methoprene
4310                                                                                                                                       omega 3
4311                                                                                                            joint supplement (glucosamine hcl)
4312                                                                                                                                     carprofen
4313                                                                                                                   lufenuron, milbemycin oxime
4314                                                                                                                      fipronil, (s)-methoprene
4315                                                                                                                                    afoxolaner
4316                                                                                                                polysulfated glycosaminoglycan
4317                                                                                                                                     carprofen
4318                                                                                                                          cefpodoxime proxetil
4319                                                                                                                                    prednisone
4320                                                                                                                          cefpodoxime proxetil
4321                                                                                                                                    selamectin
4322                                                                                                                          cefpodoxime proxetil
4323                                                                                                                                    selamectin
4324                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4325                                                                                                                              milbemycin oxime
4326                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4327                                                                                                                                   amoxicillin
4328                                                                                                                              milbemycin oxime
4329                                                                                                                                   doxycycline
4330                                                                                                                                     trazodone
4331                                                                                                                                     carprofen
4332                                                                                                                          prednisolone acetate
4333                                                                                                                                    gabapentin
4334                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4335                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4336                                                                                                                                    fluralaner
4337                                                                                                        joint supplement (glucosamine hcl/msm)
4338                                                                                                     lufenuron, milbemycin oxime, praziquantel
4339                                                                                                                      imidacloprid, permethrin
4340                                                                                                        joint supplement (glucosamine hcl/msm)
4341                                                                                                                                   doxycycline
4342                                                                                                                                     carprofen
4343                                                                                                                                    sucralfate
4344                                                                                                                                    famotidine
4345                                                                                                                                 metronidazole
4346                                                                                                                                   amoxicillin
4347                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4348                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4349                                                                                                                    milbemycin oxime, spinosad
4350                                                                                                                    milbemycin oxime, spinosad
4351                                                                                                                    milbemycin oxime, spinosad
4352                                                                                                            chlorhexidine gluconate, ophytrium
4353                                                                                                                    milbemycin oxime, spinosad
4354                                                                                                                    milbemycin oxime, spinosad
4355                                                                                                                                    famotidine
4356                                                                                                                                      morphine
4357                                                                                                                               dexmedetomidine
4358                                                                                                                                     carprofen
4359                                                                                                                    milbemycin oxime, spinosad
4360                                                                                                             betamethasone, gentamicin sulfate
4361                                                                                                                                   oclacitinib
4362                                                                                                                    milbemycin oxime, spinosad
4363                                                                                                                                   doxycycline
4364                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4365                                                                                                            amoxicillin, clavulanate potassium
4366                                                                                                                                     carprofen
4367                                                                                                                                      tramadol
4368                                                                                                                            calming supplement
4369                                                                                                                      urinary tract supplement
4370                                                                                                                                   amoxicillin
4371                                                                                                                                       omega 3
4372                                                                                                                                    cephalexin
4373                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4374                                                                                                                                   amoxicillin
4375                                                                                                                          cefpodoxime proxetil
4376                                                                                                                                    cephalexin
4377                                                                                                                                  acepromazine
4378                                                                                                                                     carprofen
4379                                                                                                                              milbemycin oxime
4380                                                                                                                          cefpodoxime proxetil
4381                                                                                                                                    ivermectin
4382                                                                                                                              pyrantel pamoate
4383                                                                                                                               diphenhydramine
4384                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4385                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4386                                                                                                                      fipronil, (s)-methoprene
4387                                                                                                                  ivermectin, pyrantel pamoate
4388                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4389                                                                                                                   lufenuron, milbemycin oxime
4390                                                                                                                                    fluralaner
4391                                                                                                                   lufenuron, milbemycin oxime
4392                                                                                                                   lufenuron, milbemycin oxime
4393                                                                                                                   lufenuron, milbemycin oxime
4394                                                                                                                                     toceranib
4395                                                                                                                  ivermectin, pyrantel pamoate
4396                                                                                                                                   oclacitinib
4397                                                                                                                                   oclacitinib
4398                                                                                                                                   oclacitinib
4399                                                                                                                  ivermectin, pyrantel pamoate
4400                                                                                                                                   oclacitinib
4401                                                                                                                                   oclacitinib
4402                                                                                                                                   oclacitinib
4403                                                                                                                                   oclacitinib
4404                                                                                                                                     carprofen
4405                                                                                                                    milbemycin oxime, spinosad
4406                                                                                                                              sulfadimethoxine
4407                                                                                                                                    cephalexin
4408                                                                                                                                   amoxicillin
4409                                                                                                                      enrofloxacin, tobramycin
4410                                                                                                      febantel, praziquantel, pyrantel pamoate
4411                                                                                                                                    cephalexin
4412                                                                                                                                    cephalexin
4413                                                                                                                                    prednisone
4414                                                                                                                                      tramadol
4415                                                                                                                                     carprofen
4416                                                                                                                                     carprofen
4417                                                                                                                                     carprofen
4418                                                                                                                            maropitant citrate
4419                                                                                                                         ampicillin, sulbactam
4420                                                                                                                                     carprofen
4421                                                                                                            amoxicillin, clavulanate potassium
4422                                                                                                                              sulfadimethoxine
4423                                                                                                                              sulfadimethoxine
4424                                                                                                                                   amoxicillin
4425                                                                                                                                     deracoxib
4426                                                                                                                  ivermectin, pyrantel pamoate
4427                                                                                                                    imidacloprid, pyriproxyfen
4428                                                                                                                                      spinosad
4429                                                                                                                                    cephalexin
4430                                                                                                                             hypochlorous acid
4431                                                                                                       over-the-counter antipruritic/astrigent
4432                                                                                                                              pyrantel pamoate
4433                                                                                                                              pyrantel pamoate
4434                                                                                                                              sulfadimethoxine
4435                                                                                                                    milbemycin oxime, spinosad
4436                                                                                                                                       omega 3
4437                                                                                                                                     probiotic
4438                                                                                                                                  multivitamin
4439                                                                                                                              pyrantel pamoate
4440                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4441                                                                                                                       ketoconazole, tris-edta
4442                                                                                                    toothpaste/dental health solution or chews
4443                                                                                                                    milbemycin oxime, spinosad
4444                                                                                                                      fipronil, (s)-methoprene
4445                                                                                                                    milbemycin oxime, spinosad
4446                                                                                                                                     probiotic
4447                                                                                                                                       omega 3
4448                                                                                                                                  multivitamin
4449                                                                                                            amoxicillin, clavulanate potassium
4450                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
4451                                                                                                                                      ketamine
4452                                                                                                                                     midazolam
4453                                                                                                                                 buprenorphine
4454                                                                                                                                    isoflurane
4455                                                                                                                                     carprofen
4456                                                                                          acepromazine, atropine sulfate, butorphanol tartrate
4457                                                                                                                                      ketamine
4458                                                                                                                                     midazolam
4459                                                                                                                                 buprenorphine
4460                                                                                                                                   bupivacaine
4461                                                                                                                                     carprofen
4462                                                                                                            amoxicillin, clavulanate potassium
4463                                                                                                                                 dexamethasone
4464                                                                                                                                dimenhydrinate
4465                                                                                                            amoxicillin, clavulanate potassium
4466                                                                                                            amoxicillin, clavulanate potassium
4467                                                                                                                            maropitant citrate
4468                                                                                                                                  enrofloxacin
4469                                                                                                                       ketoconazole, tris-edta
4470                                                                                                                       ketoconazole, tris-edta
4471                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4472                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4473                                                                                                                                  enrofloxacin
4474                                                                                                            amoxicillin, clavulanate potassium
4475                                                                                                            amoxicillin, clavulanate potassium
4476                                                                                                                                     carprofen
4477                                                                                                                            maropitant citrate
4478                                                                                                                                 dexamethasone
4479                                                                                                                                dimenhydrinate
4480                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4481                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4482                                                                                                                                  multivitamin
4483                                                                                                                   lufenuron, milbemycin oxime
4484                                                                                                                                    afoxolaner
4485                                                                                                                                     probiotic
4486                                                                                                                                       omega 3
4487                                                                                                                                     vitamin b
4488                                                                                                       betamethasone, florfenicol, terbinafine
4489                                                                                                                                   oclacitinib
4490                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4491                                                                                                       betamethasone, florfenicol, terbinafine
4492                                                                                                                                 metronidazole
4493                                                                                                                            maropitant citrate
4494                                                                                                                                 dexamethasone
4495                                                                                                                                   oclacitinib
4496                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4497                                                                                                                   lufenuron, milbemycin oxime
4498                                                                                                                                    afoxolaner
4499                                                                                                                milbemycin oxime, praziquantel
4500                                                                                                                                    afoxolaner
4501                                                                                                           rx diet - skin and food sensitivity
4502                                                                                                                                    afoxolaner
4503                                                                                                                                   oclacitinib
4504                                                                                                           rx diet - skin and food sensitivity
4505                                                                                                                              milbemycin oxime
4506                                                                                                                               apomorphine hcl
4507                                                                                                                            maropitant citrate
4508                                                                                                                                   oclacitinib
4509                                                                                                                              milbemycin oxime
4510                                                                                                                                    afoxolaner
4511                                                                                                                                       omega 3
4512                                                                                                        joint supplement (glucosamine hcl/msm)
4513                                                                                                                                   oclacitinib
4514                                                                                                                                  multivitamin
4515                                                                                                                              milbemycin oxime
4516                                                                                                                                    afoxolaner
4517                                                                                                                                     probiotic
4518                                                                                                                                  multivitamin
4519                                                                                                                                   oclacitinib
4520                                                                                                                                     carprofen
4521                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4522                                                                                                        joint supplement (glucosamine hcl/msm)
4523                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4524                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4525                                                                                                                                    ivermectin
4526                                                                                                                              pyrantel pamoate
4527                                                                                                                                  praziquantel
4528                                                                                                                                       omega 3
4529                                                                                                                                   coconut oil
4530                                                                                                                          prebiotic, probiotic
4531                                                                                                                     immune support supplement
4532                                                                                                                              milbemycin oxime
4533                                                                                                                          prebiotic, probiotic
4534                                                                                                                                   coconut oil
4535                                                                                                                                   oclacitinib
4536                                                                                                                              milbemycin oxime
4537                                                                                                                                    cephalexin
4538                                                                                                                      imidacloprid, permethrin
4539                                                                                                                  ivermectin, pyrantel pamoate
4540                                                                                                                  ivermectin, pyrantel pamoate
4541                                                                                                         dinotefuran, permethrin, pyriproxyfen
4542                                                                                                                          cefpodoxime proxetil
4543                                                                                                                                   hydroxyzine
4544                                                                                                                                       omega 3
4545                                                                                                    ivermectin, praziquantel, pyrantel pamoate
4546                                                                                                                                     carprofen
4547                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4548                                                                                                                                   doxycycline
4549                                                                                                                          cefpodoxime proxetil
4550                                                                                                                                     carprofen
4551                                                                                                            amoxicillin, clavulanate potassium
4552                                                                                                        joint supplement (glucosamine hcl/msm)
4553                                                                                                                                     carprofen
4554                                                                                                                                     carprofen
4555                                                                                                                                     meclizine
4556                                                                                                                  ivermectin, pyrantel pamoate
4557                                                                                                                                 metronidazole
4558                                                                                                                  ivermectin, pyrantel pamoate
4559                                                                                                            fipronil, permethrin, pyriproxyfen
4560                                                                                                                  ivermectin, pyrantel pamoate
4561                                                                                                             betamethasone, gentamicin sulfate
4562                                                                                                                                    fluralaner
4563                                                                                                                                     carprofen
4564                                                                                                                  ivermectin, pyrantel pamoate
4565                                                                                                                                    fluralaner
4566                                                                                                                  ivermectin, pyrantel pamoate
4567                                                                                                                                    fluralaner
4568                                                                                                                                    fluralaner
4569                                                                                                                              milbemycin oxime
4570                                                                                                                                    gabapentin
4571                                                                                                                                     carprofen
4572                                                                                                                                    gabapentin
4573                                                                                                                                    grapiprant
4574                                                                                                                                 metronidazole
4575                                                                                                                                 metronidazole
4576                                                                                                                                   oclacitinib
4577                                                                                                                                   oclacitinib
4578                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4579                                                                                                                                    gabapentin
4580                                                                                                                                     carprofen
4581                                                                                                                                   oclacitinib
4582                                                                                                                                      spinosad
4583                                                                                                                  ivermectin, pyrantel pamoate
4584                                                                                                                  ivermectin, pyrantel pamoate
4585                                                                                                                                    afoxolaner
4586                                                                                                                  ivermectin, pyrantel pamoate
4587                                                                                                                  ivermectin, pyrantel pamoate
4588                                                                                                                                    afoxolaner
4589                                                                                                                                    cephalexin
4590                                                                                                                  ivermectin, pyrantel pamoate
4591                                                                                                                                    afoxolaner
4592                                                                                                                                    cephalexin
4593                                                                                                                  ivermectin, pyrantel pamoate
4594                                                                                                                                    afoxolaner
4595                                                                                                                                    lokivetmab
4596                                                                                                                                    cephalexin
4597                                                                                                    clinical trial - cancer prevention vaccine
4598                                                                                                                                     firocoxib
4599                                                                                                                                    ivermectin
4600                                                                                                                                    afoxolaner
4601                                                                                                                  ivermectin, pyrantel pamoate
4602                                                                                                                                    afoxolaner
4603                                                                                                                                   oclacitinib
4604                                                                                                                  ivermectin, pyrantel pamoate
4605                                                                                                                                     carprofen
4606                                                                                                                                  ketoconazole
4607                                                                                                                                   oclacitinib
4608                                                                                                                                     carprofen
4609                                                                                                                                   bedinvetmab
4610                                                                                                                                     firocoxib
4611                                                                                                                    milbemycin oxime, spinosad
4612                                                                                                                                   doxycycline
4613                                                                                                                                     carprofen
4614                                                                                                                                    selamectin
4615                                                                                                                                 metronidazole
4616                                                                                                                                  fenbendazole
4617                                                                                                             betamethasone, gentamicin sulfate
4618                                                                                                                              milbemycin oxime
4619                                                                                                                                      spinosad
4620                                                                                                                                     probiotic
4621                                                                                                                                 metronidazole
4622                                                                                                                          cefpodoxime proxetil
4623                                                                                                                                     carprofen
4624                                                                                                                                      spinosad
4625                                                                                                                              milbemycin oxime
4626                                                                                                                                     lufenuron
4627                                                                                                                                      fipronil
4628                                                                                                                                (s)-methoprene
4629                                                                                                                   lufenuron, milbemycin oxime
4630                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4631                                                                                                                      fipronil, (s)-methoprene
4632                                                                                                                                 metronidazole
4633                                                                                                                                  fenbendazole
4634                                                                                                                   rx diet - digestive support
4635                                                                                                                              milbemycin oxime
4636                                                                                                                                 metronidazole
4637                                                                                                                                  fenbendazole
4638                                                                                                                      fipronil, (s)-methoprene
4639                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4640                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4641                                                                                                                              milbemycin oxime
4642                                                                                                                milbemycin oxime, praziquantel
4643                                                                                                                                  cyclosporine
4644                                                                                                                                          edta
4645                                                                                                                                          edta
4646                                                                                                                                  flurbiprofen
4647                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4648                                                                                                                milbemycin oxime, praziquantel
4649                                                                                                                      fipronil, (s)-methoprene
4650                                                                                                                                          edta
4651                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4652                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4653                                                                                                                                     meloxicam
4654                                                                                                                      fipronil, (s)-methoprene
4655                                                                                                                milbemycin oxime, praziquantel
4656                                                                                                                                    diclofenac
4657                                                                                                                                          edta
4658                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
4659                                                                                                                                       taurine
4660                                                                                                                                   l-carnitine
4661                                                                                                                                       taurine
4662                                                                                                                                   l-carnitine
4663                                                                                                                                    diclofenac
4664                                                                                                                                          edta
4665                                                                                                                                    cephalexin
4666                                                                                                                                    cephalexin
4667                                                                                                                                    gabapentin
4668                                                                                                                               diphenhydramine
4669                                                                                                                                     carprofen
4670                                                                                                                                          edta
4671                                                                                                                                    diclofenac
4672                                                                                                                          cefpodoxime proxetil
4673                                                                                                            amoxicillin, clavulanate potassium
4674                                                                                                                                   doxycycline
4675                                                                                                                                      ursodiol
4676                                                                                                                                      ursodiol
4677                                                                                                                                    diclofenac
4678                                                                                                                                          edta
4679                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4680                                                                                                mometasone furoate, orbifloxacin, posaconazole
4681                                                                                                                            maropitant citrate
4682                                                                                                                                    sucralfate
4683                                                                                                                                     ofloxacin
4684                                                                                                                                    tobramycin
4685                                                                                                                                    gabapentin
4686                                                                                                                                     trazodone
4687                                                                                                                                   oclacitinib
4688                                                                                                                              sulfadimethoxine
4689                                                                                                                  ivermectin, pyrantel pamoate
4690                                                                                                                  ivermectin, pyrantel pamoate
4691                                                                                                                                    ivermectin
4692                                                                                                                                    afoxolaner
4693                                                                                                                  ivermectin, pyrantel pamoate
4694                                                                                                                                    afoxolaner
4695                                                                                                                              milbemycin oxime
4696                                                                                                                                    afoxolaner
4697                                                                                                                milbemycin oxime, praziquantel
4698                                                                                                                                    afoxolaner
4699                                                                                                                                 marbofloxacin
4700                                                                                                                        dinoprost tromethamine
4701                                                                                                                                   clindamycin
4702                                                                                                                                   amoxicillin
4703                                                                                                                              milbemycin oxime
4704                                                                                                                                    afoxolaner
4705                                                                                                                              milbemycin oxime
4706                                                                                                                                   amoxicillin
4707                                                                                                                                     carprofen
4708                                                                                                                                    furosemide
4709                                                                                                                                    pimobendan
4710                                                                                                                                     carprofen
4711                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
4712                                                                                                                                 levothyroxine
4713                                                                                                                  ivermectin, pyrantel pamoate
4714                                                                                                                                 levothyroxine
4715                                                                                                                                 levothyroxine
4716                                                                                                                          cefpodoxime proxetil
4717                                                                                                                                      spinosad
4718                                                                                                                                 levothyroxine
4719                                                                                                mometasone furoate, orbifloxacin, posaconazole
4720                                                                                                                       ketoconazole, tris-edta
4721                                                                                                                              milbemycin oxime
4722                                                                                                                                 levothyroxine
4723                                                                                                                                    cephalexin
4724                                                                                                                                     meloxicam
4725                                                                                                                  ivermectin, pyrantel pamoate
4726                                                                                                                              milbemycin oxime
4727                                                                                                                unspecified thyroid medication
4728                                                                                                                                 metronidazole
4729                                                                                                                polysulfated glycosaminoglycan
4730                                                                                                                                 levothyroxine
4731                                                                                                                                    grapiprant
4732                                                                                                                                  enrofloxacin
4733                                                                                                                            maropitant citrate
4734                                                                                                                                    grapiprant
4735                                                                                                                                 levothyroxine
4736                                                                                                                polysulfated glycosaminoglycan
4737                                                                                                                                    grapiprant
4738                                                                                                                    milbemycin oxime, spinosad
4739                                                                                                                    milbemycin oxime, spinosad
4740                                                                                                                                     meloxicam
4741                                                                                                                                   doxycycline
4742                                                                                                                      homatropine, hydrocodone
4743                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4744                                                                                                             betamethasone, gentamicin sulfate
4745                                                                                                                    milbemycin oxime, spinosad
4746                                                                                                                polysulfated glycosaminoglycan
4747                                                                                                            joint supplement (glucosamine hcl)
4748                                                                                                                    milbemycin oxime, spinosad
4749                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4750                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4751                                                                                                                                    ivermectin
4752                                                                                                             trimeprazine tartrate, prednisone
4753                                                                                                                                 metronidazole
4754                                                                                                                     immune support supplement
4755                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4756                                                                                                             trimeprazine tartrate, prednisone
4757                                                                                                                    imidacloprid, pyriproxyfen
4758                                                                                                                                    moxidectin
4759                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4760                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
4761                                                                                                                     immune support supplement
4762                                                                                                                                    moxidectin
4763                                                                                                                    imidacloprid, pyriproxyfen
4764                                                                                                                    imidacloprid, pyriproxyfen
4765                                                                                                                                    lokivetmab
4766                                                                                                                    imidacloprid, pyriproxyfen
4767                                                                                                                                    moxidectin
4768                                                                                                                                    lokivetmab
4769                                                                                                                          cefpodoxime proxetil
4770                                                                                                                     immune support supplement
4771                                                                                                                      skin and coat supplement
4772                                                                                                                      joint supplement (other)
4773                                                                                                                                   oclacitinib
4774                                                                                                                                     carprofen
4775                                                                                                                                    prednisone
4776                                                                                                                                   hydroxyzine
4777                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
4778                                                                                                                                    lokivetmab
4779                                                                                                                                   hydroxyzine
4780                                                                                                                      joint supplement (other)
4781                                                                                                                      skin and coat supplement
4782                                                                                                                                     probiotic
4783                                                                                                                                   oclacitinib
4784                                                                                                                      skin and coat supplement
4785                                                                                                                                    lokivetmab
4786                                                                                                                                     probiotic
4787                                                                                                                                   oclacitinib
4788                                                                                                                                   clindamycin
4789                                                                                                                          cefpodoxime proxetil
4790                                                                                                                                     toceranib
4791                                                                                                                      skin and coat supplement
4792                                                                                                                      joint supplement (other)
4793                                                                                                                                    lokivetmab
4794                                                                                                                                    gabapentin
4795                                                                                                                                     trazodone
4796                                                                                                                                     carprofen
4797                                                                                                                                    prednisone
4798                                                                                                                                    prednisone
4799                                                                                                                                   doxycycline
4800                                                                                                                                  ketoconazole
4801                                                                                                                                    prednisone
4802                                                                                                                  ivermectin, pyrantel pamoate
4803                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4804                                                                                                                                    prednisone
4805                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4806                                                                                                                                    afoxolaner
4807                                                                                                                                     carprofen
4808                                                                                                                              milbemycin oxime
4809                                                                                                                                    cephalexin
4810                                                                                                                                     carprofen
4811                                                                                                                                    loratadine
4812                                                                                                                polysulfated glycosaminoglycan
4813                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4814                                                                                                                                    grapiprant
4815                                                                                                                              pyrantel pamoate
4816                                                                                                                                 ciprofloxacin
4817                                                                                                             betamethasone, gentamicin sulfate
4818                                                                                                                                 metronidazole
4819                                                                                                                                 metronidazole
4820                                                                                                                            maropitant citrate
4821                                                                                                                               diphenhydramine
4822                                                                                                                                   oclacitinib
4823                                                                                                                                     deracoxib
4824                                                                                                                      imidacloprid, moxidectin
4825                                                                                                                                    afoxolaner
4826                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4827                                                                                                                                   oclacitinib
4828                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
4829                                                                                                                                     deracoxib
4830                                                                                                                   lufenuron, milbemycin oxime
4831                                                                                                                                    fluralaner
4832                                                                                                         enrofloxacin, triamcinolone acetonide
4833                                                                                                                                    fluralaner
4834                                                                                                                   lufenuron, milbemycin oxime
4835                                                                                                                   lufenuron, milbemycin oxime
4836                                                                                                                                    fluralaner
4837                                                                                                                          cefpodoxime proxetil
4838                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
4839                                                                                                                                   clindamycin
4840                                                                                                                              benzoyl peroxide
4841                                                                                                                                   oclacitinib
4842                                                                                                                      skin and coat supplement
4843                                                                                                         enrofloxacin, triamcinolone acetonide
4844                                                                                                                          cefpodoxime proxetil
4845                                                                                                                       ketoconazole, tris-edta
4846                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4847                                                                                                                                    lokivetmab
4848                                                                                                                                    fluralaner
4849                                                                                                                   lufenuron, milbemycin oxime
4850                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
4851                                                                                                                                     probiotic
4852                                                                                                                          cefpodoxime proxetil
4853                                                                                                                       ketoconazole, tris-edta
4854                                                                                                                                      tramadol
4855                                                                                                                    milbemycin oxime, spinosad
4856                                                                                                                    milbemycin oxime, spinosad
4857                                                                                                                                    prednisone
4858                                                                                                                    milbemycin oxime, spinosad
4859                                                                                                                  ivermectin, pyrantel pamoate
4860                                                                                                                                    afoxolaner
4861                                                                                                                  ivermectin, pyrantel pamoate
4862                                                                                                                  ivermectin, pyrantel pamoate
4863                                                                                                                                    afoxolaner
4864                                                                                                                                    prednisone
4865                                                                                                                                 levothyroxine
4866                                                                                                                                       omega 3
4867                                                                                                                                     vitamin e
4868                                                                                                                                       omega 3
4869                                                                                                                      skin and coat supplement
4870                                                                                                                  ivermectin, pyrantel pamoate
4871                                                                                                                                    lokivetmab
4872                                                                                                                                   hydroxyzine
4873                                                                                                                                    cephalexin
4874                                                                                                                  hydrocortisone, ketoconazole
4875                                                                                                                                    prednisone
4876                                                                                                                                    prednisone
4877                                                                                                                                    prednisone
4878                                                                                                                                     carprofen
4879                                                                                                                                     carprofen
4880                                                                                                                                    cephalexin
4881                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
4882                                                                                                                  ivermectin, pyrantel pamoate
4883                                                                                                                                 levothyroxine
4884                                                                                                                                     vitamin e
4885                                                                                                                                       omega 3
4886                                                                                                                                     carprofen
4887                                                                                                                                      tramadol
4888                                                                                                                            maropitant citrate
4889                                                                                                            amoxicillin, clavulanate potassium
4890                                                                                                                                 methocarbamol
4891                                                                                                                                    gabapentin
4892                                                                                                                                 levothyroxine
4893                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
4894                                                                                                dexamethasone, neomycin sulfate, thiabendazole
4895                                                                                                                                      tramadol
4896                                                                                                                                   propranolol
4897                                                                                                                                   doxorubicin
4898                                                                                                                                     carprofen
4899                                                                                                                                    prednisone
4900                                                                                                                            maropitant citrate
4901                                                                                                                  ivermectin, pyrantel pamoate
4902                                                                                                                      fipronil, (s)-methoprene
4903                                                                                                                  ivermectin, pyrantel pamoate
4904                                                                                                                    milbemycin oxime, spinosad
4905                                                                                                                    milbemycin oxime, spinosad
4906                                                                                                                  ivermectin, pyrantel pamoate
4907                                                                                                                      flumethrin, imidacloprid
4908                                                                                                                    milbemycin oxime, spinosad
4909                                                                                                                  ivermectin, pyrantel pamoate
4910                                                                                                                      flumethrin, imidacloprid
4911                                                                                                                  ivermectin, pyrantel pamoate
4912                                                                                                                milbemycin oxime, praziquantel
4913                                                                                                                      flumethrin, imidacloprid
4914                                                                                                                milbemycin oxime, praziquantel
4915                                                                                                                                    fluralaner
4916                                                                                                                                    fluralaner
4917                                                                                                                milbemycin oxime, praziquantel
4918                                                                                                                                    fluralaner
4919                                                                                                                  ivermectin, pyrantel pamoate
4920                                                                                                                milbemycin oxime, praziquantel
4921                                                                                                                                 metronidazole
4922                                                                                                                            maropitant citrate
4923                                                                                                                                    gabapentin
4924                                                                                                                                      ursodiol
4925                                                                                                                                     carprofen
4926                                                                                                                                    gabapentin
4927                                                                                                                polysulfated glycosaminoglycan
4928                                                                                                    toothpaste/dental health solution or chews
4929                                                                                                                                     carprofen
4930                                                                                                                                    gabapentin
4931                                                                                                                                      ursodiol
4932                                                                                                                polysulfated glycosaminoglycan
4933                                                                                                                                   bedinvetmab
4934                                                                                                                                     carprofen
4935                                                                                                                                    ivermectin
4936                                                                                                                  ivermectin, pyrantel pamoate
4937                                                                                                                  ivermectin, pyrantel pamoate
4938                                                                                                                                    ivermectin
4939                                                                                                                              milbemycin oxime
4940                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4941                                                                                                                                     carprofen
4942                                                                                                                                 marbofloxacin
4943                                                                                                                                 marbofloxacin
4944                                                                                                                                     carprofen
4945                                                                                                                          cefpodoxime proxetil
4946                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4947                                                                                                                          cefpodoxime proxetil
4948                                                                                                                                     carprofen
4949                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4950                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
4951                                                                                                            amoxicillin, clavulanate potassium
4952                                                                                                                                    ivermectin
4953                                                                                                                                     vitamin c
4954                                                                                                                              milbemycin oxime
4955                                                                                                                                      spinosad
4956                                                                                                                       ketoconazole, tris-edta
4957                                                                                                                                  fenbendazole
4958                                                                                                                          prednisolone acetate
4959                                                                                                                         trimeprazine tartrate
4960                                                                                                                       ketoconazole, tris-edta
4961                                                                                                                                      spinosad
4962                                                                                                                              milbemycin oxime
4963                                                                                                                                 hydromorphone
4964                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
4965                                                                                                                                      spinosad
4966                                                                                                                              milbemycin oxime
4967                                                                                                                                       omega 3
4968                                                                                                                    milbemycin oxime, spinosad
4969                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
4970                                                                                                                                       omega 3
4971                                                                                                                                    fluoxetine
4972                                                                                                       betamethasone, florfenicol, terbinafine
4973                                                                                                                                    fluoxetine
4974                                                                                                                              milbemycin oxime
4975                                                                                                                                     sarolaner
4976                                                                                                                                    famotidine
4977                                                                                                                            maropitant citrate
4978                                                                                                                                    omeprazole
4979                                                                                                                                 metronidazole
4980                                                                                                                                     probiotic
4981                                                                                                                milbemycin oxime, praziquantel
4982                                                                                                                                     sarolaner
4983                                                                                                       betamethasone, florfenicol, terbinafine
4984                                                                                                                                   amoxicillin
4985                                                                                                                                  fenbendazole
4986                                                                                                                          digestive supplement
4987                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
4988                                                                                                                                     carprofen
4989                                                                                                                                     carprofen
4990                                                                                                                                      tramadol
4991                                                                                                                                    afoxolaner
4992                                                                                                                                      tramadol
4993                                                                                                                                     carprofen
4994                                                                                                                                    gabapentin
4995                                                                                                                                   doxycycline
4996                                                                                                             betamethasone, gentamicin sulfate
4997                                                                                                                          cefpodoxime proxetil
4998                                                                                                                                 oxymetazoline
4999                                                                                                                                    gabapentin
5000                                                                                                                                     firocoxib
5001                                                                                                                                    prednisone
5002                                                                                                                                  azithromycin
5003                                                                                                                                     ofloxacin
5004                                                                                                                                     firocoxib
5005                                                                                                                                   clindamycin
5006                                                                                                                              amikacin sulfate
5007                                                                                                                                     firocoxib
5008                                                                                                                                 levothyroxine
5009                                                                                                                                   clindamycin
5010                                                                                                                                     cefovecin
5011                                                                                                                                 levothyroxine
5012                                                                                                                                     firocoxib
5013                                                                                                                          cefpodoxime proxetil
5014                                                                                                                                 metronidazole
5015                                                                                                                                benazepril hcl
5016                                                                                                                                   telmisartan
5017                                                                                                                                    ampicillin
5018                                                                                                                                   amoxicillin
5019                                                                                                                                    famotidine
5020                                                                                                                                    sucralfate
5021                                                                                                                                     lidocaine
5022                                                                                                                                metoclopramide
5023                                                                                                                       whole blood transfusion
5024                                                                                                          hydroxyethyl starch, sodium chloride
5025                                                                                                                                      propofol
5026                                                                                                                                     meloxicam
5027                                                                                                                                      propofol
5028                                                                                                                        acepromazine, ketamine
5029                                                                                                                                      diazepam
5030                                                                                                                                    cephalexin
5031                                                                                                                                     carprofen
5032                                                                                                                              ceftiofur sodium
5033                                                                                                                                   amoxicillin
5034                                                                                                                               apomorphine hcl
5035                                                                                                                                     thyroxine
5036                                                                                                                                 levothyroxine
5037                                                                                                                                     thyroxine
5038                                                                                                                                 levothyroxine
5039                                                                                                                                     thyroxine
5040                                                                                                                                    afoxolaner
5041                                                                                                                                   oclacitinib
5042                                                                                                                                     thyroxine
5043                                                                                                                      fipronil, (s)-methoprene
5044                                                                                                                                   oclacitinib
5045                                                                                                                                    cephalexin
5046                                                                                                             betamethasone, gentamicin sulfate
5047                                                                                                                                     cefovecin
5048                                                                                                                                    lokivetmab
5049                                                                                                                                   oclacitinib
5050                                                                                                                                  enrofloxacin
5051                                                                                                            amoxicillin, clavulanate potassium
5052                                                                                                                                    gabapentin
5053                                                                                                                                    lokivetmab
5054                                                                                                                                     carprofen
5055                                                                                                                                    lokivetmab
5056                                                                                                                                 levothyroxine
5057                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5058                                                                                                                                    lokivetmab
5059                                                                                                                                   bedinvetmab
5060                                                                                                            amoxicillin, clavulanate potassium
5061                                                                                                                                 levothyroxine
5062                                                                                                                                     carprofen
5063                                                                                                                    milbemycin oxime, spinosad
5064                                                                                                                                  ketoconazole
5065                                                                                                                                 metronidazole
5066                                                                                                                    milbemycin oxime, spinosad
5067                                                                                                                                      spinosad
5068                                                                                                mometasone furoate, orbifloxacin, posaconazole
5069                                                                                                             trimeprazine tartrate, prednisone
5070                                                                                                                          cefpodoxime proxetil
5071                                                                                                                                     carprofen
5072                                                                                                                                   clindamycin
5073                                                                                                                                       codeine
5074                                                                                                                                     carprofen
5075                                                                                                                                    prednisone
5076                                                                                                                                     carprofen
5077                                                                                                                                    prednisone
5078                                                                                                                    milbemycin oxime, spinosad
5079                                                                                                                                   amoxicillin
5080                                                                                                                                 metronidazole
5081                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5082                                                                                                                                    ivermectin
5083                                                                                                                              benzoyl peroxide
5084                                                                                                         chlorhexidine gluconate, ketoconazole
5085                                                                                                                                 metronidazole
5086                                                                                                                    milbemycin oxime, spinosad
5087                                                                                                                                     probiotic
5088                                                                                                                                 metronidazole
5089                                                                                                                  ivermectin, pyrantel pamoate
5090                                                                                                                                     carprofen
5091                                                                                                                  ivermectin, pyrantel pamoate
5092                                                                                                                    milbemycin oxime, spinosad
5093                                                                                                                                    cephalexin
5094                                                                                                                  ivermectin, pyrantel pamoate
5095                                                                                                                  ivermectin, pyrantel pamoate
5096                                                                                                                                    afoxolaner
5097                                                                                                                  ivermectin, pyrantel pamoate
5098                                                                                                                                    afoxolaner
5099                                                                                                                  ivermectin, pyrantel pamoate
5100                                                                                                                                    afoxolaner
5101                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5102                                                                                                                                     carprofen
5103                                                                                                                                 metronidazole
5104                                                                                                                                    ivermectin
5105                                                                                                                  ivermectin, pyrantel pamoate
5106                                                                                                                                    cephalexin
5107                                                                                                                  ivermectin, pyrantel pamoate
5108                                                                                                                                    cephalexin
5109                                                                                                             betamethasone, gentamicin sulfate
5110                                                                                                                                   clindamycin
5111                                                                                                                  ivermectin, pyrantel pamoate
5112                                                                                                                                   clindamycin
5113                                                                                                                      fipronil, (s)-methoprene
5114                                                                                                                                    cephalexin
5115                                                                                                                  ivermectin, pyrantel pamoate
5116                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5117                                                                                                                                    afoxolaner
5118                                                                                                                  ivermectin, pyrantel pamoate
5119                                                                                                                                    afoxolaner
5120                                                                                                                                    afoxolaner
5121                                                                                                                                    ivermectin
5122                                                                                                                  ivermectin, pyrantel pamoate
5123                                                                                                                                    afoxolaner
5124                                                                                                                                     firocoxib
5125                                                                                                             allergy immunotherapy - injection
5126                                                                                                             allergy immunotherapy - injection
5127                                                                                                                polysulfated glycosaminoglycan
5128                                                                                                                                        elspar
5129                                                                                                                                 metronidazole
5130                                                                                                                                     probiotic
5131                                                                                                                                    cephalexin
5132                                                                                                                                     firocoxib
5133                                                                                                                                    gabapentin
5134                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5135                                                                                                                                    gabapentin
5136                                                                                                                                     trazodone
5137                                                                                                                                     carprofen
5138                                                                                                            amoxicillin, clavulanate potassium
5139                                                                                                                          cefpodoxime proxetil
5140                                                                                                            amoxicillin, clavulanate potassium
5141                                                                                                                                    fluralaner
5142                                                                                                                                     firocoxib
5143                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5144                                                                                                                                     meloxicam
5145                                                                                                                                    cephalexin
5146                                                                                                                                 metronidazole
5147                                                                                                                                     meloxicam
5148                                                                                                                              milbemycin oxime
5149                                                                                                                              milbemycin oxime
5150                                                                                                                    milbemycin oxime, spinosad
5151                                                                                                                                  praziquantel
5152                                                                                                                  ivermectin, pyrantel pamoate
5153                                                                                                                                      tramadol
5154                                                                                                                  ivermectin, pyrantel pamoate
5155                                                                                                                                    afoxolaner
5156                                                                                                                  ivermectin, pyrantel pamoate
5157                                                                                                                                    afoxolaner
5158                                                                                                                                   clindamycin
5159                                                                                                            joint supplement (glucosamine hcl)
5160                                                                                                                                       omega 3
5161                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5162                                                                                                                                     carprofen
5163                                                                                                                                 metronidazole
5164                                                                                                                          cefpodoxime proxetil
5165                                                                                                                                     deracoxib
5166                                                                                                                              sulfadimethoxine
5167                                                                                                                                  fenbendazole
5168                                                                                                                                     firocoxib
5169                                                                                                                  ivermectin, pyrantel pamoate
5170                                                                                                                                    afoxolaner
5171                                                                                                                                     cefovecin
5172                                                                                                                                 metronidazole
5173                                                                                                                  ivermectin, pyrantel pamoate
5174                                                                                                                                    afoxolaner
5175                                                                                                                                  enrofloxacin
5176                                                                                                                  ivermectin, pyrantel pamoate
5177                                                                                                                                    afoxolaner
5178                                                                                                                  ivermectin, pyrantel pamoate
5179                                                                                                                                    afoxolaner
5180                                                                                                                  ivermectin, pyrantel pamoate
5181                                                                                                                                    afoxolaner
5182                                                                                                                                    lokivetmab
5183                                                                                                                                     carprofen
5184                                                                                                                                     carprofen
5185                                                                                                            amoxicillin, clavulanate potassium
5186                                                                                                                            maropitant citrate
5187                                                                                                                                     carprofen
5188                                                                                                                    milbemycin oxime, spinosad
5189                                                                                                                    milbemycin oxime, spinosad
5190                                                                                                                    milbemycin oxime, spinosad
5191                                                                                                                    milbemycin oxime, spinosad
5192                                                                                                                                     carprofen
5193                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5194                                                                                                                milbemycin oxime, praziquantel
5195                                                                                                                      flumethrin, imidacloprid
5196                                                                                                            amoxicillin, clavulanate potassium
5197                                                                                                                                     carprofen
5198                                                                                                                                     trazodone
5199                                                                                                                                    grapiprant
5200                                                                                                                          digestive supplement
5201                                                                                                                                     carprofen
5202                                                                                                                                    ivermectin
5203                                                                                                                                    ivermectin
5204                                                                                                                  ivermectin, pyrantel pamoate
5205                                                                                                                                    ivermectin
5206                                                                                                                  ivermectin, pyrantel pamoate
5207                                                                                                                   lufenuron, milbemycin oxime
5208                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5209                                                                                                                                     carprofen
5210                                                                                                                                  ketoconazole
5211                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5212                                                                                                   chlorhexidine gluconate, miconazole nitrate
5213                                                                                                                        ear cleaner (otirinse)
5214                                                                                                                   lufenuron, milbemycin oxime
5215                                                                                                                                 metronidazole
5216                                                                                                            amoxicillin, clavulanate potassium
5217                                                                                                                                 marbofloxacin
5218                                                                                                                                    cephalexin
5219                                                                                                             trimeprazine tartrate, prednisone
5220                                                                                                             betamethasone, gentamicin sulfate
5221                                                                                                   chlorhexidine gluconate, miconazole nitrate
5222                                                                                                                      imidacloprid, permethrin
5223                                                                                                                   lufenuron, milbemycin oxime
5224                                                                                                                                    cephalexin
5225                                                                                                                   lufenuron, milbemycin oxime
5226                                                                                                                                    cephalexin
5227                                                                                                             trimeprazine tartrate, prednisone
5228                                                                                                   chlorhexidine gluconate, miconazole nitrate
5229                                                                                                                                  ketoconazole
5230                                                                                                                praziquantel, pyrantel pamoate
5231                                                                                                             trimeprazine tartrate, prednisone
5232                                                                                                                                     carprofen
5233                                                                                                                                    cephalexin
5234                                                                                                      febantel, praziquantel, pyrantel pamoate
5235                                                                                                                   lufenuron, milbemycin oxime
5236                                                                                                                                     carprofen
5237                                                                                                                                     trazodone
5238                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5239                                                                                                             trimeprazine tartrate, prednisone
5240                                                                                                                                   oclacitinib
5241                                                                                                                                     cefovecin
5242                                                                                                             betamethasone, gentamicin sulfate
5243                                                                                                                   lufenuron, milbemycin oxime
5244                                                                                                                    imidacloprid, pyriproxyfen
5245                                                                                                            amoxicillin, clavulanate potassium
5246                                                                                                                            maropitant citrate
5247                                                                                                                milbemycin oxime, praziquantel
5248                                                                                                                      imidacloprid, permethrin
5249                                                                                                                                   oclacitinib
5250                                                                                                             betamethasone, gentamicin sulfate
5251                                                                                                                                  tetracycline
5252                                                                                                                                     carprofen
5253                                                                                                                  ivermectin, pyrantel pamoate
5254                                                                                                            amoxicillin, clavulanate potassium
5255                                                                                                                   lufenuron, milbemycin oxime
5256                                                                                                                   lufenuron, milbemycin oxime
5257                                                                                                                   lufenuron, milbemycin oxime
5258                                                                                                                   lufenuron, milbemycin oxime
5259                                                                                                                                       omega 3
5260                                                                                                                praziquantel, pyrantel pamoate
5261                                                                                                                   lufenuron, milbemycin oxime
5262                                                                                                      febantel, praziquantel, pyrantel pamoate
5263                                                                                                                                     carprofen
5264                                                                                                                    imidacloprid, pyriproxyfen
5265                                                                                                                              milbemycin oxime
5266                                                                                                            amoxicillin, clavulanate potassium
5267                                                                                                                                     carprofen
5268                                                                                                             betamethasone, gentamicin sulfate
5269                                                                                                                                     carprofen
5270                                                                                                                milbemycin oxime, praziquantel
5271                                                                                                                      imidacloprid, permethrin
5272                                                                                                                                    cephalexin
5273                                                                                                             trimeprazine tartrate, prednisone
5274                                                                                                                          cefpodoxime proxetil
5275                                                                                                            amoxicillin, clavulanate potassium
5276                                                                                                                polysulfated glycosaminoglycan
5277                                                                                                                                     carprofen
5278                                                                                                                                     carprofen
5279                                                                                                                polysulfated glycosaminoglycan
5280                                                                                                                                 marbofloxacin
5281                                                                                                                                    gabapentin
5282                                                                                                                polysulfated glycosaminoglycan
5283                                                                                                                                     carprofen
5284                                                                                                                                    prednisone
5285                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
5286                                                                                                                  ivermectin, pyrantel pamoate
5287                                                                                                                                    afoxolaner
5288                                                                                                                  ivermectin, pyrantel pamoate
5289                                                                                                                              milbemycin oxime
5290                                                                                                                                    prednisone
5291                                                                                                                                 levothyroxine
5292                                                                                                                                    prednisone
5293                                                                                                                                    cephalexin
5294                                                                                                                                    fluoxetine
5295                                                                                                                  ivermectin, pyrantel pamoate
5296                                                                                                                                    prednisone
5297                                                                                                                                    cephalexin
5298                                                                                                                                   oclacitinib
5299                                                                                                                  ivermectin, pyrantel pamoate
5300                                                                                                                                    cephalexin
5301                                                                                                                            calming supplement
5302                                                                                                                                     melatonin
5303                                                                                                                                     trazodone
5304                                                                                                                                    lokivetmab
5305                                                                                                                  ivermectin, pyrantel pamoate
5306                                                                                                                                  cyclosporine
5307                                                                                                                                  clomipramine
5308                                                                                                                                    lokivetmab
5309                                                                                                                  ivermectin, pyrantel pamoate
5310                                                                                                                                  cyclosporine
5311                                                                                                                                  clomipramine
5312                                                                                                                                  cyclosporine
5313                                                                                                                                  clomipramine
5314                                                                                                                  ivermectin, pyrantel pamoate
5315                                                                                                                                    lokivetmab
5316                                                                                                                                  clomipramine
5317                                                                                                                                  clomipramine
5318                                                                                                                                  cyclosporine
5319                                                                                                                                     carprofen
5320                                                                                                                                    gabapentin
5321                                                                                                                                     carprofen
5322                                                                                                            amoxicillin, clavulanate potassium
5323                                                                                                                      urinary tract supplement
5324                                                                                                                      urinary tract supplement
5325                                                                                                                                   doxycycline
5326                                                                                                                                    cephalexin
5327                                                                                                                                     deracoxib
5328                                                                                                                                      tramadol
5329                                                                                                            amoxicillin, clavulanate potassium
5330                                                                                                            amoxicillin, clavulanate potassium
5331                                                                                                                  ivermectin, pyrantel pamoate
5332                                                                                                                                       amitraz
5333                                                                                                                                       omega 3
5334                                                                                                                  ivermectin, pyrantel pamoate
5335                                                                                                                                       amitraz
5336                                                                                                                      urinary tract supplement
5337                                                                                                                  ivermectin, pyrantel pamoate
5338                                                                                                                                    gabapentin
5339                                                                                                                                     meloxicam
5340                                                                                                                  ivermectin, pyrantel pamoate
5341                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
5342                                                                                                            amoxicillin, clavulanate potassium
5343                                                                                                                                    gabapentin
5344                                                                                                                                     meloxicam
5345                                                                                                                                     carprofen
5346                                                                                                                                    ivermectin
5347                                                                                                                              pyrantel pamoate
5348                                                                                                                                    ivermectin
5349                                                                                                                  ivermectin, pyrantel pamoate
5350                                                                                                                                 metronidazole
5351                                                                                                                                    ivermectin
5352                                                                                                                  ivermectin, pyrantel pamoate
5353                                                                                                                                    afoxolaner
5354                                                                                                                      flumethrin, imidacloprid
5355                                                                                                                  ivermectin, pyrantel pamoate
5356                                                                                                                                 metronidazole
5357                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
5358                                                                                                                  ivermectin, pyrantel pamoate
5359                                                                                                                  ivermectin, pyrantel pamoate
5360                                                                                                                  ivermectin, pyrantel pamoate
5361                                                                                                                               diphenhydramine
5362                                                                                                attapulgite, bismuth subcarbonate, kanamycin a
5363                                                                                                                                 metronidazole
5364                                                                                                                    sulfadiazine, trimethoprim
5365                                                                                                                                    ivermectin
5366                                                                                                                              pyrantel pamoate
5367                                                                                                                                  praziquantel
5368                                                                                                                                     carprofen
5369                                                                                                                  ivermectin, pyrantel pamoate
5370                                                                                                         dinotefuran, permethrin, pyriproxyfen
5371                                                                                                                  ivermectin, pyrantel pamoate
5372                                                                                                                                    afoxolaner
5373                                                                                                                                    sucralfate
5374                                                                                                                              sulfadimethoxine
5375                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5376                                                                                                                                    ivermectin
5377                                                                                                                  ivermectin, pyrantel pamoate
5378                                                                                                                      fipronil, (s)-methoprene
5379                                                                                                                                    ivermectin
5380                                                                                                                      fipronil, (s)-methoprene
5381                                                                                                                              milbemycin oxime
5382                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5383                                                                                                                    imidacloprid, pyriproxyfen
5384                                                                                                                              milbemycin oxime
5385                                                                                                                      fipronil, (s)-methoprene
5386                                                                                                                  ivermectin, pyrantel pamoate
5387                                                                                                                              milbemycin oxime
5388                                                                                                         dinotefuran, permethrin, pyriproxyfen
5389                                                                                                                  ivermectin, pyrantel pamoate
5390                                                                                                                                    afoxolaner
5391                                                                                                                                    afoxolaner
5392                                                                                                                  ivermectin, pyrantel pamoate
5393                                                                                                                                     carprofen
5394                                                                                                                  ivermectin, pyrantel pamoate
5395                                                                                                                                    ivermectin
5396                                                                                                                              pyrantel pamoate
5397                                                                                                                                    ivermectin
5398                                                                                                                              pyrantel pamoate
5399                                                                                                                              milbemycin oxime
5400                                                                                                                              milbemycin oxime
5401                                                                                                                   lufenuron, milbemycin oxime
5402                                                                                                                                 levothyroxine
5403                                                                                                                              milbemycin oxime
5404                                                                                                                                     thyroxine
5405                                                                                                                                 metronidazole
5406                                                                                                                                 levothyroxine
5407                                                                                                                   lufenuron, milbemycin oxime
5408                                                                                                                                 levothyroxine
5409                                                                                                                                    cephalexin
5410                                                                                                                                    prednisone
5411                                                                                                                   lufenuron, milbemycin oxime
5412                                                                                                                                    cephalexin
5413                                                                                                                                     carprofen
5414                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5415                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5416                                                                                                                                 levothyroxine
5417                                                                                                                                 metronidazole
5418                                                                                                                                    cephalexin
5419                                                                                                                                    pimobendan
5420                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5421                                                                                                                                 levothyroxine
5422                                                                                                                                     carprofen
5423                                                                                                                          cefpodoxime proxetil
5424                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5425                                                                                                                                    sucralfate
5426                                                                                                                                    famotidine
5427                                                                                                                                    cephalexin
5428                                                                                                             betamethasone, gentamicin sulfate
5429                                                                                                                                   clindamycin
5430                                                                                                                                      tramadol
5431                                                                                                                                     carprofen
5432                                                                                                                          cefpodoxime proxetil
5433                                                                                                                                     carprofen
5434                                                                                                                                      tramadol
5435                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5436                                                                                                                              sulfadimethoxine
5437                                                                                                                                    cephalexin
5438                                                                                                                       ketoconazole, tris-edta
5439                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5440                                                                                                                                       omega 3
5441                                                                                                                                     carprofen
5442                                                                                                                                     carprofen
5443                                                                                                                                     carprofen
5444                                                                                                                                    cephalexin
5445                                                                                                                                     carprofen
5446                                                                                                                                     meloxicam
5447                                                                                                                polysulfated glycosaminoglycan
5448                                                                                                                                   bedinvetmab
5449                                                                                                                                   amoxicillin
5450                                                                                                                                      tramadol
5451                                                                                                                                     deracoxib
5452                                                                                                                                    cephalexin
5453                                                                                                                                   terbinafine
5454                                                                                                                   lufenuron, milbemycin oxime
5455                                                                                                                                     sarolaner
5456                                                                                                                unspecified thyroid medication
5457                                                                                                                                 levothyroxine
5458                                                                                                                              milbemycin oxime
5459                                                                                                                                     lufenuron
5460                                                            chloramphenicol, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5461                                                                                                                   lufenuron, milbemycin oxime
5462                                                                                                         dinotefuran, permethrin, pyriproxyfen
5463                                                                                                                   lufenuron, milbemycin oxime
5464                                                                                                                    milbemycin oxime, spinosad
5465                                                                                                                                    fluralaner
5466                                                                                                         dinotefuran, permethrin, pyriproxyfen
5467                                                                                                                   lufenuron, milbemycin oxime
5468                                                                                                                                    moxidectin
5469                                                                                                                                    moxidectin
5470                                                                                                                                 ciprofloxacin
5471                                                                                                                                 methocarbamol
5472                                                                                                                                    prednisone
5473                                                                                                                                   amoxicillin
5474                                                                                                                                    prednisone
5475                                                                                                                                    famotidine
5476                                                                                                                                    sucralfate
5477                                                                                                                                    cephalexin
5478                                                                                                                                      tramadol
5479                                                                                                                                     carprofen
5480                                                                                                                                    loratadine
5481                                                                                                                                    prednisone
5482                                                                                                                                       omega 3
5483                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5484                                                                                                                                       omega 3
5485                                                                                                                                 metronidazole
5486                                                                                                                                       omega 3
5487                                                                                                                      joint supplement (other)
5488                                                                                                                                    prednisone
5489                                                                                                                                    loratadine
5490                                                                                                                                   oclacitinib
5491                                                                                                                      fipronil, (s)-methoprene
5492                                                                                                                                    ivermectin
5493                                                                                                                  ivermectin, pyrantel pamoate
5494                                                                                                                      fipronil, (s)-methoprene
5495                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5496                                                                                                                                     carprofen
5497                                                                                                                  ivermectin, pyrantel pamoate
5498                                                                                                                  ivermectin, pyrantel pamoate
5499                                                                                                                      fipronil, (s)-methoprene
5500                                                                                                                  ivermectin, pyrantel pamoate
5501                                                                                                                       chlorhexidine gluconate
5502                                                                                                                         rattlesnake antivenin
5503                                                                                                                               diphenhydramine
5504                                                                                                                                      fentanyl
5505                                                                                                                                      fentanyl
5506                                                                                                                                      tramadol
5507                                                                                                                  ivermectin, pyrantel pamoate
5508                                                                                                                  ivermectin, pyrantel pamoate
5509                                                                                                                  ivermectin, pyrantel pamoate
5510                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5511                                                                                                                  ivermectin, pyrantel pamoate
5512                                                                                                                                     carprofen
5513                                                                                                                  ivermectin, pyrantel pamoate
5514                                                                                                                                    cephalexin
5515                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5516                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5517                                                                                                                        acetaminophen, codeine
5518                                                                                                                                    amantadine
5519                                                                                                                                     carprofen
5520                                                                                                                                    cephalexin
5521                                                                                                                                    trilostane
5522                                                                                                                                     carprofen
5523                                                                                                                                    grapiprant
5524                                                                                                                                  multivitamin
5525                                                                                                                                       omega 3
5526                                                                                                                                dimenhydrinate
5527                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5528                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5529                                                                                                                       triamcinolone acetonide
5530                                                                                                                                    prednisone
5531                                                                                                                               diphenhydramine
5532                                                                                                                                 dexamethasone
5533                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5534                                                                                                                  ivermectin, pyrantel pamoate
5535                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5536                                                                                                                                    prednisone
5537                                                                                                                       triamcinolone acetonide
5538                                                                                                            amoxicillin, clavulanate potassium
5539                                                                                                                            methylprednisolone
5540                                                                                                                                     carprofen
5541                                                                                                                  ivermectin, pyrantel pamoate
5542                                                                                                        cyphenothrin, fipronil, (s)-methoprene
5543                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5544                                                                                                                            methylprednisolone
5545                                                                                                                  ivermectin, pyrantel pamoate
5546                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5547                                                                                                                                   oclacitinib
5548                                                                                                                                   oclacitinib
5549                                                                                                                                    fluoxetine
5550                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5551                                                                                                                  ivermectin, pyrantel pamoate
5552                                                                                                                  ivermectin, pyrantel pamoate
5553                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5554                                                                                                                                    cephalexin
5555                                                                                                                                   oclacitinib
5556                                                                                                                      fipronil, (s)-methoprene
5557                                                                                                                  ivermectin, pyrantel pamoate
5558                                                                                                                                     carprofen
5559                                                                                                                                   oclacitinib
5560                                                                                                                                       omega 3
5561                                                                                                                                   oclacitinib
5562                                                                                                            joint supplement (glucosamine hcl)
5563                                                                                                                                   oclacitinib
5564                                                                                                            joint supplement (glucosamine hcl)
5565                                                                                                                    milbemycin oxime, spinosad
5566                                                                                                                                  deltamethrin
5567                                                                                                                                  deltamethrin
5568                                                                                                                   lufenuron, milbemycin oxime
5569                                                                                                                                      tramadol
5570                                                                                                            amoxicillin, clavulanate potassium
5571                                                                                                                   lufenuron, milbemycin oxime
5572                                                                                                                                  deltamethrin
5573                                                                                                dexamethasone, neomycin sulfate, thiabendazole
5574                                                                                                                   lufenuron, milbemycin oxime
5575                                                                                                                                  deltamethrin
5576                                                                                                                   lufenuron, milbemycin oxime
5577                                                                                                                                  deltamethrin
5578                                                                                                                   lufenuron, milbemycin oxime
5579                                                                                                                          cefpodoxime proxetil
5580                                                                                                                          cefpodoxime proxetil
5581                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
5582                                                                                                                                 metronidazole
5583                                                                                                                                  fenbendazole
5584                                                                                                                                     probiotic
5585                                                                                                                                 metronidazole
5586                                                                                                                                  fenbendazole
5587                                                                                                                                    cephalexin
5588                                                                                                                          prednisolone acetate
5589                                                                                                             betamethasone, gentamicin sulfate
5590                                                                                                                                  praziquantel
5591                                                                                                                                    ivermectin
5592                                                                                                                              pyrantel pamoate
5593                                                                                                                                   mebendazole
5594                                                                                                                                     lufenuron
5595                                                                                                                   lufenuron, milbemycin oxime
5596                                                                                                                              milbemycin oxime
5597                                                                                                                                     lufenuron
5598                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5599                                                                                                                            maropitant citrate
5600                                                                                                                   lufenuron, milbemycin oxime
5601                                                                                                                      fipronil, (s)-methoprene
5602                                                                                                                   lufenuron, milbemycin oxime
5603                                                                                                                      fipronil, (s)-methoprene
5604                                                                                                                   lufenuron, milbemycin oxime
5605                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5606                                                                                                                      fipronil, (s)-methoprene
5607                                                                                                                   lufenuron, milbemycin oxime
5608                                                                                                                      fipronil, (s)-methoprene
5609                                                                                                                   lufenuron, milbemycin oxime
5610                                                                                                                          cefpodoxime proxetil
5611                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
5612                                                                                                                                 metronidazole
5613                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5614                                                                                                                            maropitant citrate
5615                                                                                                                                    sucralfate
5616                                                                                                                                    gabapentin
5617                                                                                                                                   mirtazapine
5618                                                                                                                                  capromorelin
5619                                                                                                                            maropitant citrate
5620                                                                                                                                     ofloxacin
5621                                                                                                                                    prednisone
5622                                                                                                                                   amoxicillin
5623                                                                                                                                 metronidazole
5624                                                                                                                                   simethicone
5625                                                                                                                                   simethicone
5626                                                                                                                  ivermectin, pyrantel pamoate
5627                                                                                                                  ivermectin, pyrantel pamoate
5628                                                                                                                                    afoxolaner
5629                                                                                                                  ivermectin, pyrantel pamoate
5630                                                                                                                                    afoxolaner
5631                                                                                                                                    ivermectin
5632                                                                                                                                    afoxolaner
5633                                                                                                                          cefpodoxime proxetil
5634                                                                                                                          cefpodoxime proxetil
5635                                                                                                                                     carprofen
5636                                                                                                                                    amlodipine
5637                                                                                                                              milbemycin oxime
5638                                                                                                                                      spinosad
5639                                                                                                                    milbemycin oxime, spinosad
5640                                                                                                                    milbemycin oxime, spinosad
5641                                                                                                                                    moxidectin
5642                                                                                                                                    moxidectin
5643                                                                                                                               dexmedetomidine
5644                                                                                                                                      propofol
5645                                                                                                                                      morphine
5646                                                                                                                                    moxidectin
5647                                                                                                                                    fluralaner
5648                                                                                                                              tylosin tartrate
5649                                                                                                                                     probiotic
5650                                                                                                                            maropitant citrate
5651                                                                                                                          digestive supplement
5652                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
5653                                                                                                                                    cephalexin
5654                                                                                                                                    cephalexin
5655                                                                                                                        dilute bleach solution
5656                                                                                                                                     mupirocin
5657                                                                                                                                 marbofloxacin
5658                                                                                                                                    famotidine
5659                                                                                                                         ampicillin, sulbactam
5660                                                                                                                                  enrofloxacin
5661                                                                                                                                   bethanechol
5662                                                                                                                         electrolyte injection
5663                                                                                                                                 marbofloxacin
5664                                                                                                                                    ampicillin
5665                                                                                                                          cefpodoxime proxetil
5666                                                                                                                                    cephalexin
5667                                                                                                                                   amoxicillin
5668                                                                                                                                    ivermectin
5669                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5670                                                                                                                                  multivitamin
5671                                                                                                                                   omega 3-6-9
5672                                                                                                                                  multivitamin
5673                                                                                                                               diphenhydramine
5674                                                                                                                                   hydroxyzine
5675                                                                                                                                    cetirizine
5676                                                                                                                                  multivitamin
5677                                                                                                                                  multivitamin
5678                                                                                                                      skin and coat supplement
5679                                                                                                                                   omega 3-6-9
5680                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5681                                                                                                                                    afoxolaner
5682                                                                                                                              milbemycin oxime
5683                                                                                                                                    pimobendan
5684                                                                                                                                    pimobendan
5685                                                                                                                                       taurine
5686                                                                                                                                    lokivetmab
5687                                                                                                                              pyrantel pamoate
5688                                                                                                                                    selamectin
5689                                                                                                                                    ivermectin
5690                                                                                                                                     carprofen
5691                                                                                                                                chlorphenamine
5692                                                                                                                  ivermectin, pyrantel pamoate
5693                                                                                                                                      propofol
5694                                                                                                                                    penicillin
5695                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5696                                                                                                                   lufenuron, milbemycin oxime
5697                                                                                                            fipronil, permethrin, pyriproxyfen
5698                                                                                                                   lufenuron, milbemycin oxime
5699                                                                                                                                    fluralaner
5700                                                                                                                   lufenuron, milbemycin oxime
5701                                                                                                                                    afoxolaner
5702                                                                                                                   lufenuron, milbemycin oxime
5703                                                                                                                  ivermectin, pyrantel pamoate
5704                                                                                                                                    afoxolaner
5705                                                                                                                   lufenuron, milbemycin oxime
5706                                                                                                                                    afoxolaner
5707                                                                                                                   lufenuron, milbemycin oxime
5708                                                                                                                                    afoxolaner
5709                                                                                                                   lufenuron, milbemycin oxime
5710                                                                                                                            maropitant citrate
5711                                                                                                                                  enrofloxacin
5712                                                                                                                                    lokivetmab
5713                                                                                                                                      spinosad
5714                                                                                                                              milbemycin oxime
5715                                                                                                                                  praziquantel
5716                                                                                                                              pyrantel pamoate
5717                                                                                                                                      febantel
5718                                                                                                                                 metronidazole
5719                                                                                                                                 metronidazole
5720                                                                                                                                  fenbendazole
5721                                                                                                                    milbemycin oxime, spinosad
5722                                                                                                                    milbemycin oxime, spinosad
5723                                                                                                                    milbemycin oxime, spinosad
5724                                                                                                                    milbemycin oxime, spinosad
5725                                                                                                                    milbemycin oxime, spinosad
5726                                                                                                                              milbemycin oxime
5727                                                                                                                                    fluralaner
5728                                                                                                                    milbemycin oxime, spinosad
5729                                                                                                mometasone furoate, orbifloxacin, posaconazole
5730                                                                                                                                    gabapentin
5731                                                                                                  florfenicol, mometasone furoate, terbinafine
5732                                                                                                                                     carprofen
5733                                                                                                                                    gabapentin
5734                                                                                                                                    gabapentin
5735                                                                                                                                       codeine
5736                                                                                                                                   bedinvetmab
5737                                                                                                                                 metronidazole
5738                                                                                                                                    sucralfate
5739                                                                                                                  ivermectin, pyrantel pamoate
5740                                                                                                                  ivermectin, pyrantel pamoate
5741                                                                                                                                    afoxolaner
5742                                                                                                                  ivermectin, pyrantel pamoate
5743                                                                                                                                    afoxolaner
5744                                                                                                                                    ivermectin
5745                                                                                                                  ivermectin, pyrantel pamoate
5746                                                                                                                      fipronil, (s)-methoprene
5747                                                                                                                  ivermectin, pyrantel pamoate
5748                                                                                                                                    afoxolaner
5749                                                                                                                                  enrofloxacin
5750                                                                                                                  ivermectin, pyrantel pamoate
5751                                                                                                                                    afoxolaner
5752                                                                                                                  ivermectin, pyrantel pamoate
5753                                                                                                                                    afoxolaner
5754                                                                                                                  ivermectin, pyrantel pamoate
5755                                                                                                                                    afoxolaner
5756                                                                                                                  ivermectin, pyrantel pamoate
5757                                                                                                                                    afoxolaner
5758                                                                                                                                  fenbendazole
5759                                                                                                                                    cephalexin
5760                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5761                                                                                                                   lufenuron, milbemycin oxime
5762                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5763                                                                                                                polysulfated glycosaminoglycan
5764                                                                                                                  ivermectin, pyrantel pamoate
5765                                                                                                                polysulfated glycosaminoglycan
5766                                                                                                                          cefpodoxime proxetil
5767                                                                                                                polysulfated glycosaminoglycan
5768                                                                                                                                    ivermectin
5769                                                                                                                  ivermectin, pyrantel pamoate
5770                                                                                                                polysulfated glycosaminoglycan
5771                                                                                                                              milbemycin oxime
5772                                                                                                                milbemycin oxime, praziquantel
5773                                                                                                                                  praziquantel
5774                                                                                                                                    cephalexin
5775                                                                                                                                     carprofen
5776                                                                                                            amoxicillin, clavulanate potassium
5777                                                                                                                              melanoma vaccine
5778                                                                                                                                    amantadine
5779                                                                                                                                     oxycodone
5780                                                                                                                                    gabapentin
5781                                                                                                                        acetaminophen, codeine
5782                                                                                                                                    amantadine
5783                                                                                                                        acetaminophen, codeine
5784                                                                                                                                     oxycodone
5785                                                                                                                                     carprofen
5786                                                                                                                                    ivermectin
5787                                                                                                            amoxicillin, clavulanate potassium
5788                                                                                                                                 metronidazole
5789                                                                                                                               diphenhydramine
5790                                                                                                                                   amoxicillin
5791                                                                                                               ear cleaner (epi-otic advanced)
5792                                                                                                                                      tramadol
5793                                                                                                                   lufenuron, milbemycin oxime
5794                                                                                                                    milbemycin oxime, spinosad
5795                                                                                                                                   doxycycline
5796                                                                                                                                   hydroxyzine
5797                                                                                                                                   amoxicillin
5798                                                                                                                          cefpodoxime proxetil
5799                                                                                                                                    sucralfate
5800                                                                                                                                   doxycycline
5801                                                                                                                                  cyclosporine
5802                                                                                                                                  ketoconazole
5803                                                                                                                                   oclacitinib
5804                                                                                                                              milbemycin oxime
5805                                                                                                                                   oclacitinib
5806                                                                                                                                   oclacitinib
5807                                                                                                                                     carprofen
5808                                                                                                                                    alprazolam
5809                                                                                                                              milbemycin oxime
5810                                                                                                                                      fipronil
5811                                                                                                                                   oclacitinib
5812                                                                                                                                    fluoxetine
5813                                                                                                                               dexmedetomidine
5814                                                                                                                              tylosin tartrate
5815                                                                                                                                   oclacitinib
5816                                                                                                                                    fluoxetine
5817                                                                                                                                   amoxicillin
5818                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5819                                                                                                                  ivermectin, pyrantel pamoate
5820                                                                                                                  ivermectin, pyrantel pamoate
5821                                                                                                                  ivermectin, pyrantel pamoate
5822                                                                                                                polysulfated glycosaminoglycan
5823                                                                                                                                     carprofen
5824                                                                                               betamethasone, clotrimazole, gentamicin sulfate
5825                                                                                                                                     carprofen
5826                                                                                                                                      tramadol
5827                                                                                                                                      tramadol
5828                                                                                                                                     carprofen
5829                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5830                                                                                                                                    ivermectin
5831                                                                                                                                    ivermectin
5832                                                                                                                              pyrantel pamoate
5833                                                                                                                  ivermectin, pyrantel pamoate
5834                                                                                                                  ivermectin, pyrantel pamoate
5835                                                                                                                  ivermectin, pyrantel pamoate
5836                                                                                                                   lufenuron, milbemycin oxime
5837                                                                                                                                    cephalexin
5838                                                                                                                                    prednisone
5839                                                                                                                   lufenuron, milbemycin oxime
5840                                                                                                                   lufenuron, milbemycin oxime
5841                                                                                                                                     carprofen
5842                                                                                                                  ivermectin, pyrantel pamoate
5843                                                                                                                                   amoxicillin
5844                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5845                                                                                                                                  acepromazine
5846                                                                                                                          butorphanol tartrate
5847                                                                                                                                     carprofen
5848                                                                                                                                      ketamine
5849                                                                                                                                      diazepam
5850                                                                                                                                    isoflurane
5851                                                                                                                                    ivermectin
5852                                                                                                         dinotefuran, permethrin, pyriproxyfen
5853                                                                                                                                     carprofen
5854                                                                                                                                   doxycycline
5855                                                                                                                                     carprofen
5856                                                                                                                                   doxycycline
5857                                                                                            joint supplement (other), skin and coat supplement
5858                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5859                                                                                                            amoxicillin, clavulanate potassium
5860                                                                                                                      homatropine, hydrocodone
5861                                                                                                                  ivermectin, pyrantel pamoate
5862                                                                                                         dinotefuran, permethrin, pyriproxyfen
5863                                                                                                                                     carprofen
5864                                                                                                                                     carprofen
5865                                                                                                                                    ivermectin
5866                                                                                            joint supplement (other), skin and coat supplement
5867                                                                                                         dinotefuran, permethrin, pyriproxyfen
5868                                                                                                                                    ivermectin
5869                                                                                                                  ivermectin, pyrantel pamoate
5870                                                                                                                                   amoxicillin
5871                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
5872                                                                                                                  ivermectin, pyrantel pamoate
5873                                                                                                                      fipronil, (s)-methoprene
5874                                                                                                                                  fenbendazole
5875                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
5876                                                                                                                                  fenbendazole
5877                                                                                                      febantel, praziquantel, pyrantel pamoate
5878                                                                                                                                 metronidazole
5879                                                                                                                          cefpodoxime proxetil
5880                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5881                                                                                                                                     carprofen
5882                                                                                                                                    cephalexin
5883                                                                                                                                   hydroxyzine
5884                                                                                                         chlorhexidine gluconate, ketoconazole
5885                                                                                                                                   hydroxyzine
5886                                                                                                                                    prednisone
5887                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5888                                                                                                                                    cephalexin
5889                                                                                                                          cefpodoxime proxetil
5890                                                                                                                                    selamectin
5891                                                                                                                                     carprofen
5892                                                                                                                          cefpodoxime proxetil
5893                                                                                                                                   hydroxyzine
5894                                                                                                                               diphenhydramine
5895                                                                                                                                   oclacitinib
5896                                                                                                                                    fluralaner
5897                                                                                                                               diphenhydramine
5898                                                                                                           allergy immunotherapy - unspecified
5899                                                                                                                                   oclacitinib
5900                                                                                                             allergy immunotherapy - injection
5901                                                                                                                                    fluralaner
5902                                                                                                                                   oclacitinib
5903                                                                                                             allergy immunotherapy - injection
5904                                                                                                                                     deracoxib
5905                                                                                                                                    fluralaner
5906                                                                                                                                   oclacitinib
5907                                                                                                                                     deracoxib
5908                                                                                                                                    fluralaner
5909                                                                                                                                   oclacitinib
5910                                                                                                                                    prednisone
5911                                                                                                                                    gabapentin
5912                                                                                                                                     deracoxib
5913                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
5914                                                                                                                                   oclacitinib
5915                                                                                                                                    prednisone
5916                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5917                                                                                                dexamethasone, neomycin sulfate, thiabendazole
5918                                                                                                                                     meloxicam
5919                                                                                                                                   fluconazole
5920                                                                                                                    milbemycin oxime, spinosad
5921                                                                                                                              sulfadimethoxine
5922                                                                                                                                    cephalexin
5923                                                                                                                                   amoxicillin
5924                                                                                                                                   hydroxyzine
5925                                                                                                                    milbemycin oxime, spinosad
5926                                                                                                                    milbemycin oxime, spinosad
5927                                                                                                                    milbemycin oxime, spinosad
5928                                                                                                                    milbemycin oxime, spinosad
5929                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
5930                                                                                                                  ivermectin, pyrantel pamoate
5931                                                                                                                                    fluralaner
5932                                                                                                                                  cyclosporine
5933                                                                                                                                    fluralaner
5934                                                                                                                  ivermectin, pyrantel pamoate
5935                                                                                                                          prednisolone acetate
5936                                                                                                                  ivermectin, pyrantel pamoate
5937                                                                                                                                    fluralaner
5938                                                                                                                          prednisolone acetate
5939                                                                                                                                  cyclosporine
5940                                                                                                                                   amoxicillin
5941                                                                                                                  ivermectin, pyrantel pamoate
5942                                                                                                                                    fluralaner
5943                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
5944                                                                                                                                   amoxicillin
5945                                                                                                   hydroquinone, mometasone furoate, tretinoin
5946                                                                                                                          cefpodoxime proxetil
5947                                                                                                                                   amoxicillin
5948                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
5949                                                                                                                                    gabapentin
5950                                                                                                                                     carprofen
5951                                                                                                                                 metronidazole
5952                                                                                                                                    furosemide
5953                                                                                                                            maropitant citrate
5954                                                                                                                          prednisolone acetate
5955                                                                                                            amoxicillin, clavulanate potassium
5956                                                                                                                                  cyclosporine
5957                                                                                                                                    gabapentin
5958                                                                                                                                     carprofen
5959                                                                                                                          prednisolone acetate
5960                                                                                                                                   bedinvetmab
5961                                                                                                                                       codeine
5962                                                                                                                                     carprofen
5963                                                                                                                   lufenuron, milbemycin oxime
5964                                                                                                                                    afoxolaner
5965                                                                                                                   lufenuron, milbemycin oxime
5966                                                                                                                   lufenuron, milbemycin oxime
5967                                                                                                                   lufenuron, milbemycin oxime
5968                                                                                                                   lufenuron, milbemycin oxime
5969                                                                                                                                     vitamin d
5970                                                                                                                          cefpodoxime proxetil
5971                                                                                                                                 metronidazole
5972                                                                                                                            maropitant citrate
5973                                                                                                                                    omeprazole
5974                                                                                                                                 metronidazole
5975                                                                                                                praziquantel, pyrantel pamoate
5976                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
5977                                                                                                                                     carprofen
5978                                                                                                                                      tramadol
5979                                                                                                                                    cephalexin
5980                                                                                                                                      spinosad
5981                                                                                                        joint supplement (glucosamine hcl/msm)
5982                                                                                                                                      spinosad
5983                                                                                                                                     carprofen
5984                                                                                                                                   doxycycline
5985                                                                                                                                    fluralaner
5986                                                                                                                                     carprofen
5987                                                                                                                                     trazodone
5988                                                                                                                                      spinosad
5989                                                                                                                                     carprofen
5990                                                                                                                                    cephalexin
5991                                                                                                                      fipronil, (s)-methoprene
5992                                                                                                                  ivermectin, pyrantel pamoate
5993                                                                                                                  ivermectin, pyrantel pamoate
5994                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
5995                                                                                                                      fipronil, (s)-methoprene
5996                                                                                                                  ivermectin, pyrantel pamoate
5997                                                                                                                                    afoxolaner
5998                                                                                                                  ivermectin, pyrantel pamoate
5999                                                                                                                          cefpodoxime proxetil
6000                                                                                                                   lufenuron, milbemycin oxime
6001                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6002                                                                                                                    imidacloprid, pyriproxyfen
6003                                                                                                                   lufenuron, milbemycin oxime
6004                                                                                                                    imidacloprid, pyriproxyfen
6005                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6006                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
6007                                                                                                                                     firocoxib
6008                                                                                                             betamethasone, gentamicin sulfate
6009                                                                                                                                   oclacitinib
6010                                                                                                                                    cephalexin
6011  cassia bark, colloidal silicon dioxide, clove, eucalyptus, isopropyl myristrate, lanolin, mineral oil, origanum, vitamin e, white petrolatum
6012                                                                                                                                    afoxolaner
6013                                                                                                                                   clindamycin
6014                                                                                                                   lufenuron, milbemycin oxime
6015                                                                                                                                    afoxolaner
6016                                                                                                                                    afoxolaner
6017                                                                                                                   lufenuron, milbemycin oxime
6018                                                                                                                                    cephalexin
6019                                                                                                                                    cephalexin
6020                                                                                                                                     carprofen
6021                                                                                                                  ivermectin, pyrantel pamoate
6022                                                                                                                  ivermectin, pyrantel pamoate
6023                                                                                                                  ivermectin, pyrantel pamoate
6024                                                                                                                                    ivermectin
6025                                                                                                                  ivermectin, pyrantel pamoate
6026                                                                                                                  ivermectin, pyrantel pamoate
6027                                                                                                                  ivermectin, pyrantel pamoate
6028                                                                                                                                 metronidazole
6029                                                                                                                                  capromorelin
6030                                                                                                                                    gabapentin
6031                                                                                                                                     carprofen
6032                                                                                                                                    cephalexin
6033                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6034                                                                                                                                    ivermectin
6035                                                                                                                                    prednisone
6036                                                                                                                    milbemycin oxime, spinosad
6037                                                                                                                  ivermectin, pyrantel pamoate
6038                                                                                                                   lufenuron, milbemycin oxime
6039                                                                                                                  ivermectin, pyrantel pamoate
6040                                                                                                                  ivermectin, pyrantel pamoate
6041                                                                                                                      fipronil, (s)-methoprene
6042                                                                                                                      fipronil, (s)-methoprene
6043                                                                                                                  ivermectin, pyrantel pamoate
6044                                                                                                                                   oclacitinib
6045                                                                                                                          cefpodoxime proxetil
6046                                                                                                             betamethasone, gentamicin sulfate
6047                                                                                                                   lufenuron, milbemycin oxime
6048                                                                                                                      fipronil, (s)-methoprene
6049                                                                                                                      fipronil, (s)-methoprene
6050                                                                                                                      fipronil, (s)-methoprene
6051                                                                                                                                    cephalexin
6052                                                                                                                                  enrofloxacin
6053                                                                                                                                     meloxicam
6054                                                                                                                                      tramadol
6055                                                                                                                      fipronil, (s)-methoprene
6056                                                                                                                              milbemycin oxime
6057                                                                                                                              milbemycin oxime
6058                                                                                                                      fipronil, (s)-methoprene
6059                                                                                                                  ivermectin, pyrantel pamoate
6060                                                                                                                                    afoxolaner
6061                                                                                                                                    lokivetmab
6062                                                                                                                                    cephalexin
6063                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6064                                                                                                                                     deracoxib
6065                                                                                                                            maropitant citrate
6066                                                                                                                                    cephalexin
6067                                                                                                                                    prednisone
6068                                                                                                                  ivermectin, pyrantel pamoate
6069                                                                                                         dinotefuran, permethrin, pyriproxyfen
6070                                                                                                                               diphenhydramine
6071                                                                                                                                    ivermectin
6072                                                                                                                      flumethrin, imidacloprid
6073                                                                                                         dinotefuran, permethrin, pyriproxyfen
6074                                                                                                             betamethasone, gentamicin sulfate
6075                                                                                                                                   amoxicillin
6076                                                                                                                      flumethrin, imidacloprid
6077                                                                                                                                     firocoxib
6078                                                                                                                      flumethrin, imidacloprid
6079                                                                                                                                 metronidazole
6080                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6081                                                                                                                                    cephalexin
6082                                                                                                                                     carprofen
6083                                                                                                                                   amoxicillin
6084                                                                                                                                     carprofen
6085                                                                                                                                     carprofen
6086                                                                                                                    milbemycin oxime, spinosad
6087                                                                                                                    milbemycin oxime, spinosad
6088                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
6089                                                                                                                                  acepromazine
6090                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6091                                                                                                                                     carprofen
6092                                                                                                                               apomorphine hcl
6093                                                                                                     lufenuron, milbemycin oxime, praziquantel
6094                                                                                                                                        barium
6095                                                                                                             betamethasone, gentamicin sulfate
6096                                                                                                                                    prednisone
6097                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6098                                                                                                                               apomorphine hcl
6099                                                                                                                            maropitant citrate
6100                                                                                                                   lufenuron, milbemycin oxime
6101                                                                                                                   lufenuron, milbemycin oxime
6102                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6103                                                                                                                                    diclofenac
6104                                                                                                                   lufenuron, milbemycin oxime
6105                                                                                                                                     sarolaner
6106                                                                                                                                    diclofenac
6107                                                                                                                                     sarolaner
6108                                                                                                                                     carprofen
6109                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6110                                                                                                                          cefpodoxime proxetil
6111                                                                                                                                     cefazolin
6112                                                                                                                                       codeine
6113                                                                                                                                    gabapentin
6114                                                                                                                                    omeprazole
6115                                                                                                                            maropitant citrate
6116                                                                                                                                    sucralfate
6117                                                                                                                                metoclopramide
6118                                                                                                                            potassium chloride
6119                                                                                                                                 buprenorphine
6120                                                                                                                                  pantoprazole
6121                                                                                                                                      propofol
6122                                                                                                                                     midazolam
6123                                                                                                                          butorphanol tartrate
6124                                                                                                                                     carprofen
6125                                                                                                                                     carprofen
6126                                                                                                  florfenicol, mometasone furoate, terbinafine
6127                                                                                                                            maropitant citrate
6128                                                                                                                                     carprofen
6129                                                                                                                  ivermectin, pyrantel pamoate
6130                                                                                                                                    afoxolaner
6131                                                                                                                                   doxycycline
6132                                                                                                                  ivermectin, pyrantel pamoate
6133                                                                                                                                    afoxolaner
6134                                                                                                                              milbemycin oxime
6135                                                                                                                                     sarolaner
6136                                                                                                                              milbemycin oxime
6137                                                                                                                                     sarolaner
6138                                                                                                                                   oclacitinib
6139                                                                                                                              milbemycin oxime
6140                                                                                                                                     sarolaner
6141                                                                                                                                    lokivetmab
6142                                                                                                                          cefpodoxime proxetil
6143                                                                                                                                   clindamycin
6144                                                                                                                                    gabapentin
6145                                                                                                                                     carprofen
6146                                                                                                                                    prednisone
6147                                                                                                                    milbemycin oxime, spinosad
6148                                                                                                                    milbemycin oxime, spinosad
6149                                                                                                                    milbemycin oxime, spinosad
6150                                                                                                                    milbemycin oxime, spinosad
6151                                                                                                                           unspecified vaccine
6152                                                                                                                   lufenuron, milbemycin oxime
6153                                                                                                                                    cephalexin
6154                                                                                                                                    prednisone
6155                                                                                                                                    prednisone
6156                                                                                                                                    prednisone
6157                                                                                                                                    prednisone
6158                                                                                                            chlorhexidine gluconate, ophytrium
6159                                                                                                                                    nitenpyram
6160                                                                                                                      fipronil, (s)-methoprene
6161                                                                                                                   lufenuron, milbemycin oxime
6162                                                                                                                  ivermectin, pyrantel pamoate
6163                                                                                                                                    afoxolaner
6164                                                                                                                            miconazole nitrate
6165                                                                                                                            maropitant citrate
6166                                                                                                                                    prednisone
6167                                                                                                                          cefpodoxime proxetil
6168                                                                                                                                 metronidazole
6169                                                                                                                                    ivermectin
6170                                                                                                                              pyrantel pamoate
6171                                                                                                                              pyrantel pamoate
6172                                                                                                                                 metronidazole
6173                                                                                                                              pyrantel pamoate
6174                                                                                                                                  fenbendazole
6175                                                                                                                                 metronidazole
6176                                                                                                                              pyrantel pamoate
6177                                                                                                                                    selamectin
6178                                                                                                                                  fenbendazole
6179                                                                                                                              pyrantel pamoate
6180                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6181                                                                                                                                      tramadol
6182                                                                                                                              pyrantel pamoate
6183                                                                                                                                 metronidazole
6184                                                                                                                                    cephalexin
6185                                                                                                                                    ivermectin
6186                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
6187                                                                                                                                    afoxolaner
6188                                                                                                         chlorhexidine gluconate, ketoconazole
6189                                                                                                                               diphenhydramine
6190                                                                                                                  ivermectin, pyrantel pamoate
6191                                                                                                                            maropitant citrate
6192                                                                                                                                    famotidine
6193                                                                                                                                     cefazolin
6194                                                                                                                                    cephalexin
6195                                                                                                                                     carprofen
6196                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6197                                                                                                                  ivermectin, pyrantel pamoate
6198                                                                                                                                    afoxolaner
6199                                                                                                                               diphenhydramine
6200                                                                                                                                     sarolaner
6201                                                                                                                  ivermectin, pyrantel pamoate
6202                                                                                                                                    afoxolaner
6203                                                                                                                                   oclacitinib
6204                                                                                                         chlorhexidine gluconate, ketoconazole
6205                                                                                                                                  ketoconazole
6206                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6207                                                                                                         chlorhexidine gluconate, ketoconazole
6208                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6209                                                                                                                milbemycin oxime, praziquantel
6210                                                                                                                                     sarolaner
6211                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6212                                                                                                                            maropitant citrate
6213                                                                                                                                    famotidine
6214                                                                                                                                     cefovecin
6215                                                                                                                                     pramoxine
6216                                                                                                                                    lokivetmab
6217                                                                                                  florfenicol, mometasone furoate, terbinafine
6218                                                                                                                                 laser therapy
6219                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
6220                                                                                                                               diphenhydramine
6221                                                                                       chlorhexidine gluconate, ketoconazole, phytosphingosine
6222                                                                                                                                     carprofen
6223                                                                                                                                      tramadol
6224                                                                                                                              milbemycin oxime
6225                                                                                                                                     sarolaner
6226                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6227                                                                                                                                    lokivetmab
6228                                                                                                                                    cephalexin
6229                                                                                                  florfenicol, mometasone furoate, terbinafine
6230                                                                                                                                     cefovecin
6231                                                                                                                milbemycin oxime, praziquantel
6232                                                                                                                                     sarolaner
6233                                                                                                                                    lokivetmab
6234                                                                                                         chlorhexidine gluconate, ketoconazole
6235                                                                                                         chlorhexidine gluconate, ketoconazole
6236                                                                                                  florfenicol, mometasone furoate, terbinafine
6237                                                                                                                                     carprofen
6238                                                                                                                                     cefovecin
6239                                                                                                                                     cefovecin
6240                                                                                                            amoxicillin, clavulanate potassium
6241                                                                                                                                  enrofloxacin
6242                                                                                                                polysulfated glycosaminoglycan
6243                                                                                                                                    gabapentin
6244                                                                                                  florfenicol, mometasone furoate, terbinafine
6245                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6246                                                                                                                                  fenbendazole
6247                                                                                                                                  capromorelin
6248                                                                                                                            maropitant citrate
6249                                                                                                                                   mirtazapine
6250                                                                                                                                     carprofen
6251                                                                                                                                    grapiprant
6252                                                                                                                                    ivermectin
6253                                                                                                                                 metronidazole
6254                                                                                                                                    ivermectin
6255                                                                                                                          cefpodoxime proxetil
6256                                                                                                             trimeprazine tartrate, prednisone
6257                                                                                                                                    selamectin
6258                                                                                                                  ivermectin, pyrantel pamoate
6259                                                                                                                                  cyclosporine
6260                                                                                                                                 dexamethasone
6261                                                                                                                                  cyclosporine
6262                                                                                                                                    ivermectin
6263                                                                                                                                    afoxolaner
6264                                                                                                                                  cyclosporine
6265                                                                                                                                   doxycycline
6266                                                                                                       betamethasone, florfenicol, terbinafine
6267                                                                                                                ketoconazole, phytosphingosine
6268                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6269                                                                                                                               dexmedetomidine
6270                                                                                                                          cefpodoxime proxetil
6271                                                                                                                                    gabapentin
6272                                                                                                                                     carprofen
6273                                                                                                                          cefpodoxime proxetil
6274                                                                                                                                    prednisone
6275                                                                                                                           silver sulfadiazine
6276                                                                                                                                     carprofen
6277                                                                                                            joint supplement (glucosamine hcl)
6278                                                                                                        joint supplement (chondroitin sulfate)
6279                                                                                                                        joint supplement (msm)
6280                                                                                                                                     manganese
6281                                                                                                                                       omega 3
6282                                                                                                                  ivermectin, pyrantel pamoate
6283                                                                                                                        indoxacarb, permethrin
6284                                                                                                                                       omega 3
6285                                                                                                                                       omega 3
6286                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6287                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6288                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6289                                                                                                                                       omega 3
6290                                                                                                                                       omega 3
6291                                                                                                            joint supplement (glucosamine hcl)
6292                                                                                                        joint supplement (chondroitin sulfate)
6293                                                                                                                                    afoxolaner
6294                                                                                                                                 metronidazole
6295                                                                                                                                   amoxicillin
6296                                                                                                                              tylosin tartrate
6297                                                                                                                                     vitamin b
6298                                                                                                                  ivermectin, pyrantel pamoate
6299                                                                                                                                     carprofen
6300                                                                                                                                      tramadol
6301                                                                                                                                    ivermectin
6302                                                                                                                                    ivermectin
6303                                                                                                                                   oclacitinib
6304                                                                                                                                     vitamin b
6305                                                                                                                                   oclacitinib
6306                                                                                                                                  enrofloxacin
6307                                                                                                            amoxicillin, clavulanate potassium
6308                                                                                                                                     vitamin b
6309                                                                                                                              tylosin tartrate
6310                                                                                                                                     vitamin b
6311                                                                                                                                    lokivetmab
6312                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
6313                                                                                                                                    cephalexin
6314                                                                                                                              tylosin tartrate
6315                                                                                                                                     vitamin b
6316                                                                                                                                    cephalexin
6317                                                                                                                              tylosin tartrate
6318                                                                                                                                 levetiracetam
6319                                                                                                         chlorhexidine gluconate, ketoconazole
6320                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6321                                                                                                                                     carprofen
6322                                                                                                                                    cephalexin
6323                                                                                                                                     vitamin b
6324                                                                                                                                 levetiracetam
6325                                                                                                                   lufenuron, milbemycin oxime
6326                                                                                                         dinotefuran, permethrin, pyriproxyfen
6327                                                                                                                                    ivermectin
6328                                                                                                        joint supplement (glucosamine hcl/msm)
6329                                                                                                                   lufenuron, milbemycin oxime
6330                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6331                                                                                                                   lufenuron, milbemycin oxime
6332                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6333                                                                                                                      fipronil, (s)-methoprene
6334                                                                                                                  ivermectin, pyrantel pamoate
6335                                                                                                                                   hydroxyzine
6336                                                                                                                                     cefovecin
6337                                                                                                    toothpaste/dental health solution or chews
6338                                                                                                                                     carprofen
6339                                                                                                                            maropitant citrate
6340                                                                                                                                    famotidine
6341                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6342                                                                                                                      fipronil, (s)-methoprene
6343                                                                                                                                    ivermectin
6344                                                                                                                                   hydroxyzine
6345                                                                                                                                     carprofen
6346                                                                                                                                     carprofen
6347                                                                                                                          cefpodoxime proxetil
6348                                                                                                            amoxicillin, clavulanate potassium
6349                                                                                                                                   hydroxyzine
6350                                                                                                             betamethasone, gentamicin sulfate
6351                                                                                                                                     carprofen
6352                                                                                                                                     carprofen
6353                                                                                                                                    ivermectin
6354                                                                                                        cyphenothrin, fipronil, (s)-methoprene
6355                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6356                                                                                                                                   hydroxyzine
6357                                                                                                                          cefpodoxime proxetil
6358                                                                                                                       chlorhexidine gluconate
6359                                                                                                                          cefpodoxime proxetil
6360                                                                                                                          cefpodoxime proxetil
6361                                                                                                                  ivermectin, pyrantel pamoate
6362                                                                                                                      fipronil, (s)-methoprene
6363                                                                                                                          cefpodoxime proxetil
6364                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6365                                                                                                                  ivermectin, pyrantel pamoate
6366                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
6367                                                                                                    toothpaste/dental health solution or chews
6368                                                                                                                                    fluralaner
6369                                                                                                                  ivermectin, pyrantel pamoate
6370                                                                                                                                   hydroxyzine
6371                                                                                                                                    fluralaner
6372                                                                                                                                     carprofen
6373                                                                                                                                    fluralaner
6374                                                                                                                                     carprofen
6375                                                                                                                          cefpodoxime proxetil
6376                                                                                                                                  enrofloxacin
6377                                                                                                                                    fluralaner
6378                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6379                                                                                                                  ivermectin, pyrantel pamoate
6380                                                                                                                                    fluralaner
6381                                                                                                                  ivermectin, pyrantel pamoate
6382                                                                                                                    milbemycin oxime, spinosad
6383                                                                                                                  ivermectin, pyrantel pamoate
6384                                                                                                                   lufenuron, milbemycin oxime
6385                                                                                                                                   clindamycin
6386                                                                                                                                     meloxicam
6387                                                                                                                                    diclofenac
6388                                                                                                                                    diclofenac
6389                                                                                                                       triamcinolone acetonide
6390                                                                                                                                   doxycycline
6391                                                                                                                  ivermectin, pyrantel pamoate
6392                                                                                                                  ivermectin, pyrantel pamoate
6393                                                                                                                                 metronidazole
6394                                                                                                                            miconazole nitrate
6395                                                                                                            fipronil, permethrin, pyriproxyfen
6396                                                                                                                                     carprofen
6397                                                                                                                                      tramadol
6398                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6399                                                                                                                            miconazole nitrate
6400                                                                                                                                    sucralfate
6401                                                                                                                  ivermectin, pyrantel pamoate
6402                                                                                                                                    famotidine
6403                                                                                                                                    sucralfate
6404                                                                                                                  ivermectin, pyrantel pamoate
6405                                                                                                                      fipronil, (s)-methoprene
6406                                                                                                                      flumethrin, imidacloprid
6407                                                                                                                  ivermectin, pyrantel pamoate
6408                                                                                                                                    afoxolaner
6409                                                                                                                                 dexamethasone
6410                                                                                                                                    cephalexin
6411                                                                                             chloroxylenol, salicylic acid, sodium thiosulfate
6412                                                                                                 dexamethasone, ketoconazole, phytosphingosine
6413                                                                                                                                    ivermectin
6414                                                                                                                                    afoxolaner
6415                                                                                                                  ivermectin, pyrantel pamoate
6416                                                                                                                                     sarolaner
6417                                                                                                              phytosphingosine, salicylic acid
6418                                                                                                                                     carprofen
6419                                                                                                                                     trazodone
6420                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6421                                                                                                                                    gabapentin
6422                                                                                                                          cefpodoxime proxetil
6423                                                                                                                                    gabapentin
6424                                                                                                                  ivermectin, pyrantel pamoate
6425                                                                                                                                     lotilaner
6426                                                                                                                                    cephalexin
6427                                                                                                                                   oclacitinib
6428                                                                                                  florfenicol, mometasone furoate, terbinafine
6429                                                                                                                                    gabapentin
6430                                                                                                                                     carprofen
6431                                                                                                                                   doxycycline
6432                                                                                                                                    gabapentin
6433                                                                                                                                     carprofen
6434                                                                                                                                     cefazolin
6435                                                                                                                                     carprofen
6436                                                                                                                                     carprofen
6437                                                                                                                  ivermectin, pyrantel pamoate
6438                                                                                                                                       omega 3
6439                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6440                                                                                                                  ivermectin, pyrantel pamoate
6441                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6442                                                                                                                                       omega 3
6443                                                                                                                    imidacloprid, pyriproxyfen
6444                                                                                                                  ivermectin, pyrantel pamoate
6445                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6446                                                                                                                                       omega 3
6447                                                                                                                    cardiac support supplement
6448                                                                                                                  ivermectin, pyrantel pamoate
6449                                                                                                                                    afoxolaner
6450                                                                                                                                   oclacitinib
6451                                                                                                mometasone furoate, orbifloxacin, posaconazole
6452                                                                                                                        unspecified supplement
6453                                                                                                                                     probiotic
6454                                                                                                                  ivermectin, pyrantel pamoate
6455                                                                                                                                    afoxolaner
6456                                                                                                                                   oclacitinib
6457                                                                                                                                     probiotic
6458                                                                                                                                      flaxseed
6459                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6460                                                                                                                                   oclacitinib
6461                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6462                                                                                                                                   oclacitinib
6463                                                                                                                                 metronidazole
6464                                                                                                                            maropitant citrate
6465                                                                                                                                    gabapentin
6466                                                                                                                                     meloxicam
6467                                                                                                                                      tramadol
6468                                                                                                                                    amantadine
6469                                                                                                                                   clindamycin
6470                                                                                                                                 metronidazole
6471                                                                                                                            maropitant citrate
6472                                                                                                                                 ku shen si wu
6473                                                                                                                  ivermectin, pyrantel pamoate
6474                                                                                                                  ivermectin, pyrantel pamoate
6475                                                                                                                                    fluralaner
6476                                                                                                                            maropitant citrate
6477                                                                                                                                    famotidine
6478                                                                                                                  ivermectin, pyrantel pamoate
6479                                                                                                                                    fluralaner
6480                                                                                                                                 ciprofloxacin
6481                                                                                                                            maropitant citrate
6482                                                                                                                  ivermectin, pyrantel pamoate
6483                                                                                                                                    fluralaner
6484                                                                                                                                    fluralaner
6485                                                                                                                                    fluralaner
6486                                                                                                                milbemycin oxime, praziquantel
6487                                                                                                                                     carprofen
6488                                                                                                                                     carprofen
6489                                                                                                                                    fluralaner
6490                                                                                                                                     carprofen
6491                                                                                                                                    afoxolaner
6492                                                                                                                  ivermectin, pyrantel pamoate
6493                                                                                                      febantel, praziquantel, pyrantel pamoate
6494                                                                                                                                   hydroxyzine
6495                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6496                                                                                                                                    ivermectin
6497                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6498                                                                                                                               apomorphine hcl
6499                                                                                                                  ivermectin, pyrantel pamoate
6500                                                                                                                                     sarolaner
6501                                                                                                                                    gabapentin
6502                                                                                                                                      tramadol
6503                                                                                                                                    grapiprant
6504                                                                                                                                    grapiprant
6505                                                                                                                                   amoxicillin
6506                                                                                                                                   amoxicillin
6507                                                                                                                                 ciprofloxacin
6508                                                                                                                                   amoxicillin
6509                                                                                                                                 levothyroxine
6510                                                                                                                   lufenuron, milbemycin oxime
6511                                                                                                                      fipronil, (s)-methoprene
6512                                                                                                                                 levothyroxine
6513                                                                                                                   lufenuron, milbemycin oxime
6514                                                                                                                      fipronil, (s)-methoprene
6515                                                                                                                                 levothyroxine
6516                                                                                                                   lufenuron, milbemycin oxime
6517                                                                                                                      fipronil, (s)-methoprene
6518                                                                                                                   lufenuron, milbemycin oxime
6519                                                                                                                                    prednisone
6520                                                                                                                                    cephalexin
6521                                                                                                           ear cleaner (zymox), hydrocortisone
6522                                                                                                                   lufenuron, milbemycin oxime
6523                                                                                                                                    afoxolaner
6524                                                                                                                                 levothyroxine
6525                                                                                                                                    prednisone
6526                                                                                                                                    cephalexin
6527                                                                                                                   lufenuron, milbemycin oxime
6528                                                                                                                                    afoxolaner
6529                                                                                                                                 levothyroxine
6530                                                                                                                                     enalapril
6531                                                                                                                          cefpodoxime proxetil
6532                                                                                                                                     enalapril
6533                                                                                                                                 levothyroxine
6534                                                                                                                                   oclacitinib
6535                                                                                                                                    prednisone
6536                                                                                                                                     enalapril
6537                                                                                                                                 levothyroxine
6538                                                                                                                                     enalapril
6539                                                                                                                                 levothyroxine
6540                                                                                                                            maropitant citrate
6541                                                                                                                                     thyroxine
6542                                                                                                                                     enalapril
6543                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6544                                                                                                                          cefpodoxime proxetil
6545                                                                                                                                     carprofen
6546                                                                                                                                metoclopramide
6547                                                                                                                                   doxycycline
6548                                                                                                                                    sucralfate
6549                                                                                                                                    prednisone
6550                                                                                                                            maropitant citrate
6551                                                                                                                            maropitant citrate
6552                                                                                                                                 metronidazole
6553                                                                                                                   lufenuron, milbemycin oxime
6554                                                                                                                                    afoxolaner
6555                                                                                                                   lufenuron, milbemycin oxime
6556                                                                                                                                 metronidazole
6557                                                                                                                                  fenbendazole
6558                                                                                                                   lufenuron, milbemycin oxime
6559                                                                                                                                 metronidazole
6560                                                                                                                          cefpodoxime proxetil
6561                                                                                                                                 metronidazole
6562                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6563                                                                                                                              milbemycin oxime
6564                                                                                                                                      spinosad
6565                                                                                                                  ivermectin, pyrantel pamoate
6566                                                                                                                  ivermectin, pyrantel pamoate
6567                                                                                                                                    ivermectin
6568                                                                                                                                    ivermectin
6569                                                                                                                                    ivermectin
6570                                                                                                                      fipronil, (s)-methoprene
6571                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
6572                                                                                                                  ivermectin, pyrantel pamoate
6573                                                                                                                      fipronil, (s)-methoprene
6574                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6575                                                                                                                  ivermectin, pyrantel pamoate
6576                                                                                                                                    afoxolaner
6577                                                                                                                                    grapiprant
6578                                                                                                                          cefpodoxime proxetil
6579                                                                                                                                    fluralaner
6580                                                                                                                  ivermectin, pyrantel pamoate
6581                                                                                                                  ivermectin, pyrantel pamoate
6582                                                                                                                  ivermectin, pyrantel pamoate
6583                                                                                                                              pyrantel pamoate
6584                                                                                                                              milbemycin oxime
6585                                                                                                                                   fluconazole
6586                                                                                                                              milbemycin oxime
6587                                                                                                                                   fluconazole
6588                                                                                                                                   fluconazole
6589                                                                                                                              milbemycin oxime
6590                                                                                                                                   fluconazole
6591                                                                                                                                    omeprazole
6592                                                                                                                                   fluconazole
6593                                                                                                                                  acepromazine
6594                                                                                                                   lufenuron, milbemycin oxime
6595                                                                                                            amoxicillin, clavulanate potassium
6596                                                                                                                                      tramadol
6597                                                                                                                          cefpodoxime proxetil
6598                                                                                                                                     carprofen
6599                                                                                                                                     carprofen
6600                                                                                                                          cefpodoxime proxetil
6601                                                                                                                                      tramadol
6602                                                                                                                   lufenuron, milbemycin oxime
6603                                                                                                                                    cephalexin
6604                                                                                                                                    prednisone
6605                                                                                                                                 metronidazole
6606                                                                                                                  ivermectin, pyrantel pamoate
6607                                                                                                                                     carprofen
6608                                                                                                                  ivermectin, pyrantel pamoate
6609                                                                                                                                 metronidazole
6610                                                                                                                  ivermectin, pyrantel pamoate
6611                                                                                                                  ivermectin, pyrantel pamoate
6612                                                                                                                              milbemycin oxime
6613                                                                                                                                     carprofen
6614                                                                                                                          cefpodoxime proxetil
6615                                                                                                                                      tramadol
6616                                                                                                                                   amoxicillin
6617                                                                                                                                 metronidazole
6618                                                                                                                                     carprofen
6619                                                                                                                                   bedinvetmab
6620                                                                                                                                     carprofen
6621                                                                                                            joint supplement (glucosamine hcl)
6622                                                                                                            joint supplement (glucosamine hcl)
6623                                                                                                                                    famotidine
6624                                                                                                                                    famotidine
6625                                                                                                                              milbemycin oxime
6626                                                                                                                                    famotidine
6627                                                                                                                                    famotidine
6628                                                                                                                                    famotidine
6629                                                                                                                                    cephalexin
6630                                                                                                                                     carprofen
6631                                                                                                                                    lokivetmab
6632                                                                                                                                    lokivetmab
6633                                                                                                                  ivermectin, pyrantel pamoate
6634                                                                                                                                     vitamin c
6635                                                                                                                              puppy supplement
6636                                                                                                                   lufenuron, milbemycin oxime
6637                                                                                                                                     firocoxib
6638                                                                                                                                     vitamin c
6639                                                                                                                   lufenuron, milbemycin oxime
6640                                                                                                                                     probiotic
6641                                                                                                                                 metronidazole
6642                                                                                                                                 metronidazole
6643                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
6644                                                                                                                   lufenuron, milbemycin oxime
6645                                                                                                                   lufenuron, milbemycin oxime
6646                                                                                                                   lufenuron, milbemycin oxime
6647                                                                                                                   lufenuron, milbemycin oxime
6648                                                                                                                                     sarolaner
6649                                                                                                                                    ivermectin
6650                                                                                                             betamethasone, gentamicin sulfate
6651                                                                                                                                 metronidazole
6652                                                                                                                              milbemycin oxime
6653                                                                                                                                    cephalexin
6654                                                                                                                milbemycin oxime, praziquantel
6655                                                                                                                  ivermectin, pyrantel pamoate
6656                                                                                                            amoxicillin, clavulanate potassium
6657                                                                                                                  ivermectin, pyrantel pamoate
6658                                                                                                                  ivermectin, pyrantel pamoate
6659                                                                                                                                    cephalexin
6660                                                                                                                                  enrofloxacin
6661                                                                                                                                     carprofen
6662                                                                                                                  ivermectin, pyrantel pamoate
6663                                                                                                                  ivermectin, pyrantel pamoate
6664                                                                                                                  ivermectin, pyrantel pamoate
6665                                                                                                                      urinary tract supplement
6666                                                                                                                                     lomustine
6667                                                                                                                                    prednisone
6668                                                                                                                                    ivermectin
6669                                                                                                                              pyrantel pamoate
6670                                                                                                                   lufenuron, milbemycin oxime
6671                                                                                                                                 metronidazole
6672                                                                                                                                 metronidazole
6673                                                                                                                                     carprofen
6674                                                                                                                  ivermectin, pyrantel pamoate
6675                                                                                                                  ivermectin, pyrantel pamoate
6676                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6677                                                                                                                                 marbofloxacin
6678                                                                                                                            maropitant citrate
6679                                                                                                                                     carprofen
6680                                                                                                                      imidacloprid, moxidectin
6681                                                                                                            amoxicillin, clavulanate potassium
6682                                                                                                                                     carprofen
6683                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6684                                                                                                            amoxicillin, clavulanate potassium
6685                                                                                                                                       omega 3
6686                                                                                                                          digestive supplement
6687                                                                                                                                    ivermectin
6688                                                                                                                      fipronil, (s)-methoprene
6689                                                                                                                                  enrofloxacin
6690                                                                                                                                 dexamethasone
6691                                                                                                                               diphenhydramine
6692                                                                                                                                       omega 3
6693                                                                                                                                    ivermectin
6694                                                                                                             trimeprazine tartrate, prednisone
6695                                                                                                             trimeprazine tartrate, prednisone
6696                                                                                                                                    ivermectin
6697                                                                                                                      fipronil, (s)-methoprene
6698                                                                                                                  ivermectin, pyrantel pamoate
6699                                                                                                                                       omega 3
6700                                                                                                                            calming supplement
6701                                                                                                                          cefpodoxime proxetil
6702                                                                                                                                    ivermectin
6703                                                                                                                      fipronil, (s)-methoprene
6704                                                                                                                            calming supplement
6705                                                                                                                                    famotidine
6706                                                                                                                          digestive supplement
6707                                                                                                                          cefpodoxime proxetil
6708                                                                                                                                   doxycycline
6709                                                                                                                                   hydrocodone
6710                                                                                                                                     midazolam
6711                                                                                                                                      ketamine
6712                                                                                                                                 hydromorphone
6713                                                                                                            amoxicillin, clavulanate potassium
6714                                                                                                                                      diazepam
6715                                                                                                                   lufenuron, milbemycin oxime
6716                                                                                                                            calming supplement
6717                                                                                                                                   shen calmer
6718                                                                                                                                    ampicillin
6719                                                                                                                            maropitant citrate
6720                                                                                                                         tiletamine, zolazepam
6721                                                                                                                                    cephalexin
6722                                                                                                                                 metronidazole
6723                                                                                                                                     carprofen
6724                                                                                                                                    prednisone
6725                                                                                                                                     lomustine
6726                                                                                                                                     vitamin b
6727                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6728                                                                                                                  ivermectin, pyrantel pamoate
6729                                                                                                                                     carprofen
6730                                                                                                                                      tramadol
6731                                                                                                                  ivermectin, pyrantel pamoate
6732                                                                                                                                    fluoxetine
6733                                                                                                                  ivermectin, pyrantel pamoate
6734                                                                                                                  ivermectin, pyrantel pamoate
6735                                                                                                                  ivermectin, pyrantel pamoate
6736                                                                                                                                      tramadol
6737                                                                                                                                   oclacitinib
6738                                                                                                                                 levothyroxine
6739                                                                                                                                     carprofen
6740                                                                                                                                    gabapentin
6741                                                                                                                                 levothyroxine
6742                                                                                                                                   oclacitinib
6743                                                                                                                                    gabapentin
6744                                                                                                                                      tramadol
6745                                                                                                                                    grapiprant
6746                                                                                                            amoxicillin, clavulanate potassium
6747                                                                                                                                    gabapentin
6748                                                                                                                                 levothyroxine
6749                                                                                                                                   oclacitinib
6750                                                                                                                                      tramadol
6751                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
6752                                                                                                                                    grapiprant
6753                                                                                                                                      tramadol
6754                                                                                                                                    gabapentin
6755                                                                                                                                 levothyroxine
6756                                                                                                                                    grapiprant
6757                                                                                                                                    ivermectin
6758                                                                                                                                    cephalexin
6759                                                                                               betamethasone, clotrimazole, gentamicin sulfate
6760                                                                                                                  ivermectin, pyrantel pamoate
6761                                                                                                                                    ivermectin
6762                                                                                                                                   oclacitinib
6763                                                                                                                  ivermectin, pyrantel pamoate
6764                                                                                                                      fipronil, (s)-methoprene
6765                                                                                                                                   oclacitinib
6766                                                                                                                          prednisolone acetate
6767                                                                                                                                   oclacitinib
6768                                                                                                                                   amoxicillin
6769                                                                                                                              sulfamethoxazole
6770                                                                                                                      imidacloprid, moxidectin
6771                                                                                                                    milbemycin oxime, spinosad
6772                                                                                                                                 metronidazole
6773                                                                                                                                 metronidazole
6774                                                                                                                                     probiotic
6775                                                                                                                    milbemycin oxime, spinosad
6776                                                                                 bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
6777                                                                                                                                     carprofen
6778                                                                                                                   lufenuron, milbemycin oxime
6779                                                                                                                   lufenuron, milbemycin oxime
6780                                                                                                                                     firocoxib
6781                                                                                                                   lufenuron, milbemycin oxime
6782                                                                                                                                     firocoxib
6783                                                                                                                milbemycin oxime, praziquantel
6784                                                                                                                                    ivermectin
6785                                                                                                                  ivermectin, pyrantel pamoate
6786                                                                                                                    imidacloprid, pyriproxyfen
6787                                                                                                                  ivermectin, pyrantel pamoate
6788                                                                                                                                    afoxolaner
6789                                                                                                                  ivermectin, pyrantel pamoate
6790                                                                                                                                    fluralaner
6791                                                                                                                                    fluralaner
6792                                                                                                                  ivermectin, pyrantel pamoate
6793                                                                                                                                    fluralaner
6794                                                                                                                                 amitriptyline
6795                                                                                                                                    ivermectin
6796                                                                                                                   lufenuron, milbemycin oxime
6797                                                                                                                              milbemycin oxime
6798                                                                                                                                   amoxicillin
6799                                                                                                                                     carprofen
6800                                                                                                                                 levothyroxine
6801                                                                                                                                     carprofen
6802                                                                                                                                 levothyroxine
6803                                                                                                                                     carprofen
6804                                                                                                                                     probiotic
6805                                                                                                                                   oclacitinib
6806                                                                                                                                 metronidazole
6807                                                                                                                  ivermectin, pyrantel pamoate
6808                                                                                                                                   oclacitinib
6809                                                                                                                                   oclacitinib
6810                                                                                                                                   hydroxyzine
6811                                                                                                                                  ketoconazole
6812                                                                                                                                    grapiprant
6813                                                                                                                                   oclacitinib
6814                                                                                                                                    grapiprant
6815                                                                                                                                    ivermectin
6816                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
6817                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
6818                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6819                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6820                                                                                                                                     ofloxacin
6821                                                                                                                                 metronidazole
6822                                                                                                                                    grapiprant
6823                                                                                                            amoxicillin, clavulanate potassium
6824                                                                                                                polysulfated glycosaminoglycan
6825                                                                                                                                    grapiprant
6826                                                                                                                                    grapiprant
6827                                                                                                                                    grapiprant
6828                                                                                                                   lufenuron, milbemycin oxime
6829                                                                                                                                    famotidine
6830                                                                                                                               diphenhydramine
6831                                                                                                                                 dexamethasone
6832                                                                                                                                    cephalexin
6833                                                                                                                                 dexamethasone
6834                                                                                                                                    prednisone
6835                                                                                                                                    prednisone
6836                                                                                                                                    prednisone
6837                                                                                                             betamethasone, gentamicin sulfate
6838                                                                                                                  ivermectin, pyrantel pamoate
6839                                                                                                                                     carprofen
6840                                                                                                                                   oclacitinib
6841                                                                                                                              milbemycin oxime
6842                                                                                                                              milbemycin oxime
6843                                                                                                                              milbemycin oxime
6844                                                                                                                          cefpodoxime proxetil
6845                                                                                                                                      tramadol
6846                                                                                                                              milbemycin oxime
6847                                                                                                                                 metronidazole
6848                                                                                                                            maropitant citrate
6849                                                                                                                                    ivermectin
6850                                                                                                                                      tramadol
6851                                                                                                                                     carprofen
6852                                                                                                                                    cephalexin
6853                                                                                                                                   hydrocodone
6854                                                                                                            fipronil, permethrin, pyriproxyfen
6855                                                                                                                                    ivermectin
6856                                                                                                                            maropitant citrate
6857                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6858                                                                                                                    activated charcoal, kaolin
6859                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6860                                                                                                                                  acepromazine
6861                                                                                                                              atropine sulfate
6862                                                                                                                                    isoflurane
6863                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6864                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6865                                                                                                                                  acepromazine
6866                                                                                                                              atropine sulfate
6867                                                                                                                                      propofol
6868                                                                                                                                    isoflurane
6869                                                                                                mometasone furoate, orbifloxacin, posaconazole
6870                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6871                                                                                                                          cefpodoxime proxetil
6872                                                                                                                          prednisolone acetate
6873                                                                                                                                     probiotic
6874                                                                                                                          cefpodoxime proxetil
6875                                                                                                                                    ivermectin
6876                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6877                                                                                                                                  acepromazine
6878                                                                                                                              atropine sulfate
6879                                                                                                                                      propofol
6880                                                                                                                                    isoflurane
6881                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6882                                                                                                                            maropitant citrate
6883                                                                                                                            maropitant citrate
6884                                                                                                                               apomorphine hcl
6885                                                                                                                            activated charcoal
6886                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6887                                                                                                                  ivermectin, pyrantel pamoate
6888                                                                                                                                     probiotic
6889                                                                                                                          cefpodoxime proxetil
6890                                                                                                                  ivermectin, pyrantel pamoate
6891                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6892                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
6893                                                                                                                                      tramadol
6894                                                                                                                          prednisolone acetate
6895                                                                                                                                    cephalexin
6896                                                                                                                          prednisolone acetate
6897                                                                                                                  ivermectin, pyrantel pamoate
6898                                                                                                                      fipronil, (s)-methoprene
6899                                                                                                       betamethasone, florfenicol, terbinafine
6900                                                                                                                                    ampicillin
6901                                                                                                                            maropitant citrate
6902                                                                                                                                 metronidazole
6903                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
6904                                                                                                            amoxicillin, clavulanate potassium
6905                                                                                                                                   bedinvetmab
6906                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6907                                                                                                                                    cephalexin
6908                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
6909                                                                                                                                    ivermectin
6910                                                                                                    ivermectin, praziquantel, pyrantel pamoate
6911                                                                                                                            calming supplement
6912                                                                                                                                 metronidazole
6913                                                                                                                                 metronidazole
6914                                                                                                                                    cephalexin
6915                                                                                                                                 levothyroxine
6916                                                                                                                  ivermectin, pyrantel pamoate
6917                                                                                                                                     carprofen
6918                                                                                                                polysulfated glycosaminoglycan
6919                                                                                                                  ivermectin, pyrantel pamoate
6920                                                                                                                  ivermectin, pyrantel pamoate
6921                                                                                                                                 levothyroxine
6922                                                                                                                unspecified thyroid medication
6923                                                                                                                                 levothyroxine
6924                                                                                                                polysulfated glycosaminoglycan
6925                                                                                                                                   oclacitinib
6926                                                                                                                                   telmisartan
6927                                                                                                                                 levothyroxine
6928                                                                                                         chlorhexidine gluconate, ketoconazole
6929                                                                                                                              sulfadimethoxine
6930                                                                                                                                    selamectin
6931                                                                                                                                       amitraz
6932                                                                                                                                    cephalexin
6933                                                                                                                                  enrofloxacin
6934                                                                                              chlorhexidine gluconate, ketoconazole, tris-edta
6935                                                                                          burow's solution, hydrocortisone, miconazole nitrate
6936                                                                                                               ear cleaner (epi-otic advanced)
6937                                                                                                                                    cephalexin
6938                                                                                                                    milbemycin oxime, spinosad
6939                                                                                                                                    cephalexin
6940                                                                                                                            maropitant citrate
6941                                                                                                                                      tramadol
6942                                                                                                                    milbemycin oxime, spinosad
6943                                                                                                                            maropitant citrate
6944                                                                                                                                    cephalexin
6945                                                                                                                                      tramadol
6946                                                                                                                    milbemycin oxime, spinosad
6947                                                                                                                                    cephalexin
6948                                                                                                                                      tramadol
6949                                                                                                                                     carprofen
6950                                                                                                                                      tramadol
6951                                                                                                                                    cephalexin
6952                                                                                                                                   oclacitinib
6953                                                                                                            amoxicillin, clavulanate potassium
6954                                                                                                                    milbemycin oxime, spinosad
6955                                                                                                                                    cephalexin
6956                                                                                                                                     mupirocin
6957                                                                                                                                    lokivetmab
6958                                                                                                                                    gabapentin
6959                                                                                                                                     trazodone
6960                                                                                                                                     carprofen
6961                                                                                                                                  enrofloxacin
6962                                                                                                            amoxicillin, clavulanate potassium
6963                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6964                                                                                                                                    lokivetmab
6965                                                                                                                                    gabapentin
6966                                                                                                                                    gabapentin
6967                                                                                                                            maropitant citrate
6968                                                                                                                          butorphanol tartrate
6969                                                                                                                                     carprofen
6970                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6971                                                                                                                                   bedinvetmab
6972                                                                                                                                    lokivetmab
6973                                                                                                                                    gabapentin
6974                                                                                                                                     methadone
6975                                                                                                                            methylprednisolone
6976                                                                                                                                     trazodone
6977                                                                                                                                     carprofen
6978                                                                                                                                    prednisone
6979                                                                                                                                   amoxicillin
6980                                                                                                                                     cefovecin
6981                                                                                                                                    fluralaner
6982                                                                                                                                    ivermectin
6983                                                                                                                                    ivermectin
6984                                                                                                                                     probiotic
6985                                                                                                                  ivermectin, pyrantel pamoate
6986                                                                                                                                   clindamycin
6987                                                                                                                                     carprofen
6988                                                                                                                                   clindamycin
6989                                                                                                                                     carprofen
6990                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
6991                                                                                                             trimeprazine tartrate, prednisone
6992                                                                                                                                    selamectin
6993                                                                                                                          cefpodoxime proxetil
6994                                                                                                                                   oclacitinib
6995                                                                                                                                    selamectin
6996                                                                                                                                   oclacitinib
6997                                                                                                                                   oclacitinib
6998                                                                                                                                    selamectin
6999                                                                                                  florfenicol, mometasone furoate, terbinafine
7000                                                                                                                                    selamectin
7001                                                                                                                                   oclacitinib
7002                                                                                                                    milbemycin oxime, spinosad
7003                                                                                                                                   oclacitinib
7004                                                                                                                                   oclacitinib
7005                                                                                                                                  ketoconazole
7006                                                                                                                    unspecified shampoo/mousse
7007                                                                                                                                     carprofen
7008                                                                                                                                    moxidectin
7009                                                                                                                            maropitant citrate
7010                                                                                                                            maropitant citrate
7011                                                                                                                                    moxidectin
7012                                                                                                                                    moxidectin
7013                                                                                                                                    famotidine
7014                                                                                                                                    famotidine
7015                                                                                                                                    moxidectin
7016                                                                                                                                    thiamazole
7017                                                                                                                                     sarolaner
7018                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
7019                                                                                                                                 metronidazole
7020                                                                                                                                    thiamazole
7021                                                                                                                                     sarolaner
7022                                                                                                                          cefpodoxime proxetil
7023                                                                                                                                    moxidectin
7024                                                                                                                                    thiamazole
7025                                                                                                mometasone furoate, orbifloxacin, posaconazole
7026                                                                                                                                     carprofen
7027                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7028                                                                                                                                    alprazolam
7029                                                                                                                                    alprazolam
7030                                                                                                                              milbemycin oxime
7031                                                                                                                                    alprazolam
7032                                                                                                                                 ciprofloxacin
7033                                                                                                                                  enrofloxacin
7034                                                                                                                                     carprofen
7035                                                                                                                                 ciprofloxacin
7036                                                                                                                                    alprazolam
7037                                                                                                                                     trazodone
7038                                                                                                                                 metronidazole
7039                                                                                                                                 metronidazole
7040                                                                                                                                     trazodone
7041                                                                                                                                   amoxicillin
7042                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7043                                                                                                                                    ampicillin
7044                                                                                                                                 dexamethasone
7045                                                                                                                                   amoxicillin
7046                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7047                                                                                                                  ivermectin, pyrantel pamoate
7048                                                                                                                  ivermectin, pyrantel pamoate
7049                                                                                                                  ivermectin, pyrantel pamoate
7050                                                                                                                  ivermectin, pyrantel pamoate
7051                                                                                                                  ivermectin, pyrantel pamoate
7052                                                                                                                                    afoxolaner
7053                                                                                                                  ivermectin, pyrantel pamoate
7054                                                                                                                  ivermectin, pyrantel pamoate
7055                                                                                                                                    cephalexin
7056                                                                                                                                     carprofen
7057                                                                                                                                     carprofen
7058                                                                                                                                    moxidectin
7059                                                                                                                          cefpodoxime proxetil
7060                                                                                                                                   bedinvetmab
7061                                                                                                                                     carprofen
7062                                                                                                                                 metronidazole
7063                                                                                                                praziquantel, pyrantel pamoate
7064                                                                                                                                    ivermectin
7065                                                                                                                                    ivermectin
7066                                                                                                    ivermectin, praziquantel, pyrantel pamoate
7067                                                                                                                   lufenuron, milbemycin oxime
7068                                                                                                                              milbemycin oxime
7069                                                                                                                                    cephalexin
7070                                                                                                                                    gabapentin
7071                                                               carbomer, cetrimide, deionized water, disodium edta, sodium hydroxide, sorbitol
7072                                                                                                                                     carprofen
7073                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7074                                                                                        hydrocortisone, gentamicin sulfate, miconazole nitrate
7075                                                                                                                                    prednisone
7076                                                                                                             betamethasone, gentamicin sulfate
7077                                                                                                                                    ivermectin
7078                                                                                                                                    ivermectin
7079                                                                                                                                    afoxolaner
7080                                                                                                                  ivermectin, pyrantel pamoate
7081                                                                                                                                    afoxolaner
7082                                                                                                                  ivermectin, pyrantel pamoate
7083                                                                                                                                    afoxolaner
7084                                                                                                                milbemycin oxime, praziquantel
7085                                                                                                                                     sarolaner
7086                                                                                                                milbemycin oxime, praziquantel
7087                                                                                                                                     sarolaner
7088                                                                                                                    milbemycin oxime, spinosad
7089                                                                                                                                   hydroxyzine
7090                                                                                                                          cefpodoxime proxetil
7091                                                                                                                                    cephalexin
7092                                                                                                             betamethasone, gentamicin sulfate
7093                                                                                                                    milbemycin oxime, spinosad
7094                                                                                                                            maropitant citrate
7095                                                                                                                    milbemycin oxime, spinosad
7096                                                                                                                    milbemycin oxime, spinosad
7097                                                                                                                    milbemycin oxime, spinosad
7098                                                                                                      febantel, praziquantel, pyrantel pamoate
7099                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7100                                                                                                                    milbemycin oxime, spinosad
7101                                                                                                                    milbemycin oxime, spinosad
7102                                                                                                                    milbemycin oxime, spinosad
7103                                                                                                                                    grapiprant
7104                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7105                                                                                                                                    afoxolaner
7106                                                                                                                  ivermectin, pyrantel pamoate
7107                                                                                                                  ivermectin, pyrantel pamoate
7108                                                                                                                  ivermectin, pyrantel pamoate
7109                                                                                                                  ivermectin, pyrantel pamoate
7110                                                                                                                  ivermectin, pyrantel pamoate
7111                                                                                                                  ivermectin, pyrantel pamoate
7112                                                                                                                                    afoxolaner
7113                                                                                                                                     thyroxine
7114                                                                                                                                    cephalexin
7115                                                                                                                                    gabapentin
7116                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
7117                                                                                                                                     carprofen
7118                                                                                                                          cefpodoxime proxetil
7119                                                                                                                                    gabapentin
7120                                                                                                                            maropitant citrate
7121                                                                                                                                     probiotic
7122                                                                                                            chlorhexidine gluconate, tris-edta
7123                                                                                                                                     carprofen
7124                                                                                                                                    prednisone
7125                                                                                                                                    prednisone
7126                                                                                                                                    prednisone
7127                                                                                                            chlorhexidine gluconate, tris-edta
7128                                                                                                                    milbemycin oxime, spinosad
7129                                                                                                                    milbemycin oxime, spinosad
7130                                                                                                                    milbemycin oxime, spinosad
7131                                                                                                                  ivermectin, pyrantel pamoate
7132                                                                                                                  ivermectin, pyrantel pamoate
7133                                                                                                                               diphenhydramine
7134                                                                                                                                   hydroxyzine
7135                                                                                                                  ivermectin, pyrantel pamoate
7136                                                                                                                  ivermectin, pyrantel pamoate
7137                                                                     digestive supplement, immune support supplement, skin and coat supplement
7138                                                                                                                  ivermectin, pyrantel pamoate
7139                                                                                                                  ivermectin, pyrantel pamoate
7140                                                                                                                  ivermectin, pyrantel pamoate
7141                                                                                                                                    tobramycin
7142                                                                                                                              atropine sulfate
7143                                                                                                                                    sucralfate
7144                                                                                                                                 marbofloxacin
7145                                                                                                                                   mirtazapine
7146                                                                                                                                      spinosad
7147                                                                                                                                    cephalexin
7148                                                                                                                               diphenhydramine
7149                                                                                                                    milbemycin oxime, spinosad
7150                                                                                                                                    cephalexin
7151                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7152                                                                                                                                     probiotic
7153                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7154                                                                                                           ear cleaner (zymox), hydrocortisone
7155                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7156                                                                                                                                    prednisone
7157                                                                                                                                     carprofen
7158                                                                                                                                  enrofloxacin
7159                                                                                                                               chloramphenicol
7160                                                                                                                    milbemycin oxime, spinosad
7161                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7162                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7163                                                                                                           ear cleaner (zymox), hydrocortisone
7164                                                                                                                                   oclacitinib
7165                                                                                                                                    cephalexin
7166                                                                                                                                    prednisone
7167                                                                                                                                 marbofloxacin
7168                                                                                                             betamethasone, gentamicin sulfate
7169                                                                                                                                     carprofen
7170                                                                                                                                   amoxicillin
7171                                                                                                                                    cephalexin
7172                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7173                                                                                                                       acetic acid, boric acid
7174                                                                                                                                 marbofloxacin
7175                                                                                                                                     mupirocin
7176                                                                                                                                  ketoconazole
7177                                                                                                             betamethasone, gentamicin sulfate
7178                                                                                                                    milbemycin oxime, spinosad
7179                                                                                                                    milbemycin oxime, spinosad
7180                                                                                                             betamethasone, gentamicin sulfate
7181                                                                                                                                  enrofloxacin
7182                                                                                                                                 metronidazole
7183                                                                                                                                    prednisone
7184                                                                                                                                    prednisone
7185                                                                                                                                  enrofloxacin
7186                                                                                                                                 metronidazole
7187                                                                                                                                  fenbendazole
7188                                                                                                                                    prednisone
7189                                                                                                             betamethasone, gentamicin sulfate
7190                                                                                                            amoxicillin, clavulanate potassium
7191                                                                                                                            maropitant citrate
7192                                                                                                                                    gabapentin
7193                                                                                                                                     trazodone
7194                                                                                                                                     carprofen
7195                                                                                                                                   clindamycin
7196                                                                                                                                 metronidazole
7197                                                                                                                            gentamicin sulfate
7198                                                                                                                                  fenbendazole
7199                                                                                                                          prebiotic, probiotic
7200                                                                                                                                     carprofen
7201                                                                                                           ear cleaner (zymox), hydrocortisone
7202                                                                                                                                 betamethasone
7203                                                                                                                    milbemycin oxime, spinosad
7204                                                                                                                    milbemycin oxime, spinosad
7205                                                                                                                                 hydromorphone
7206                                                                                                                                 metronidazole
7207                                                                                                             betamethasone, gentamicin sulfate
7208                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
7209                                                                                                                            maropitant citrate
7210                                                                                                                                    famotidine
7211                                                                                                                               diphenhydramine
7212                                                                                                                       chlorhexidine gluconate
7213                                                                                                                                     carprofen
7214                                                                                                                                      ketamine
7215                                                                                                                                 buprenorphine
7216                                                                                                                          cefpodoxime proxetil
7217                                                                                                                    milbemycin oxime, spinosad
7218                                                                                                                    milbemycin oxime, spinosad
7219                                                                                                                    milbemycin oxime, spinosad
7220                                                                                                                    milbemycin oxime, spinosad
7221                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7222                                                                                                                                    prednisone
7223                                                                                                                                    cephalexin
7224                                                                                                                                    cephalexin
7225                                                                                                                                     carprofen
7226                                                                                                                          cefpodoxime proxetil
7227                                                                                                            joint supplement (glucosamine hcl)
7228                                                                                                                                     carprofen
7229                                                                                                                          cefpodoxime proxetil
7230                                                                                                                                     trazodone
7231                                                                                                                                    cephalexin
7232                                                                                                mometasone furoate, orbifloxacin, posaconazole
7233                                                                                                                                     carprofen
7234                                                                                                                                    prednisone
7235                                                                                                                                   bedinvetmab
7236                                                                                                            amoxicillin, clavulanate potassium
7237                                                                                                                          cefpodoxime proxetil
7238                                                                                                                                    cephalexin
7239                                                                                                                                     carprofen
7240                                                                                                                                    diclofenac
7241                                                                                                                  ivermectin, pyrantel pamoate
7242                                                                                                                                     carprofen
7243                                                                                                                  ivermectin, pyrantel pamoate
7244                                                                                                                                    afoxolaner
7245                                                                                                                  ivermectin, pyrantel pamoate
7246                                                                                                                                    afoxolaner
7247                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7248                                                                                                                                    afoxolaner
7249                                                                                                                  ivermectin, pyrantel pamoate
7250                                                                                                                                    diclofenac
7251                                                                                                                  ivermectin, pyrantel pamoate
7252                                                                                                                                    alprazolam
7253                                                                                                                  ivermectin, pyrantel pamoate
7254                                                                                                                                    ivermectin
7255                                                                                                                            maropitant citrate
7256                                                                                                                                 metronidazole
7257                                                                                                                  ivermectin, pyrantel pamoate
7258                                                                                                                  ivermectin, pyrantel pamoate
7259                                                                                                                  ivermectin, pyrantel pamoate
7260                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7261                                                                                                                  ivermectin, pyrantel pamoate
7262                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7263                                                                                                                                 levothyroxine
7264                                                                                                                  ivermectin, pyrantel pamoate
7265                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7266                                                                                                                                 levothyroxine
7267                                                                                                            amoxicillin, clavulanate potassium
7268                                                                                                                                    famotidine
7269                                                                                                                                metoclopramide
7270                                                                                                                                    amlodipine
7271                                                                                                                          digestive supplement
7272                                                                                                                                     enalapril
7273                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7274                                                                                                                                    gabapentin
7275                                                                                                  unspecified thyroid medication or supplement
7276                                                                                                                polysulfated glycosaminoglycan
7277                                                                                                                                    cephalexin
7278                                                                                                             trimeprazine tartrate, prednisone
7279                                                                                        gentamicin sulfate, hydrocortisone, miconazole nitrate
7280                                                                                                                  ivermectin, pyrantel pamoate
7281                                                                                                                                    moxidectin
7282                                                                                                                              pyrantel pamoate
7283                                                                                                                                     carprofen
7284                                                                                                                                    moxidectin
7285                                                                                                                                    gabapentin
7286                                                                                                                                     carprofen
7287                                                                                                                                     carprofen
7288                                                                                                                                    gabapentin
7289                                                                                                                                   oclacitinib
7290                                                                                                                                    moxidectin
7291                                                                                                                                     sarolaner
7292                                                                                                                                 metronidazole
7293                                                                                                                                     carvacrol
7294                                                                                                                                   oclacitinib
7295                                                                                                                                     sarolaner
7296                                                                                                                                 metronidazole
7297                                                                                                                      joint supplement (other)
7298                                                                                                                                     firocoxib
7299                                                                                                                                    prednisone
7300                                                                                                                  ivermectin, pyrantel pamoate
7301                                                                                                                                      ursodiol
7302                                                                                                                                   hydroxyzine
7303                                                                                                                  ivermectin, pyrantel pamoate
7304                                                                                                                                    fluralaner
7305                                                                                                                                   oclacitinib
7306                                                                                                                                   oclacitinib
7307                                                                                                                                    lokivetmab
7308                                                                                                                          cefpodoxime proxetil
7309                                                                                                                                   oclacitinib
7310                                                                                                                                   oclacitinib
7311                                                                                                                                  enrofloxacin
7312                                                                                                                                   oclacitinib
7313                                                                                                                                   amoxicillin
7314                                                                                                                          cefpodoxime proxetil
7315                                                                                                                                     carprofen
7316                                                                                                                                     carprofen
7317                                                                                                                  ivermectin, pyrantel pamoate
7318                                                                                                                                 methocarbamol
7319                                                                                                                                     carprofen
7320                                                                                                                  ivermectin, pyrantel pamoate
7321                                                                                                                              sulfadimethoxine
7322                                                                                                                                 methocarbamol
7323                                                                                                                                     carprofen
7324                                                                                                            amoxicillin, clavulanate potassium
7325                                                                                                                  silver sulfadiazine, insulin
7326                                                                                                                          cefpodoxime proxetil
7327                                                                                                                                   vincristine
7328                                                                                                                                  dactinomycin
7329                                                                                                                                   vincristine
7330                                                                                                                                   vincristine
7331                                                                                                                                    gabapentin
7332                                                                                                                                      tramadol
7333                                                                                                                                     melatonin
7334                                                                                                                          prednisolone acetate
7335                                                                                                                          prednisolone acetate
7336                                                                                                                                    amantadine
7337                                                                                                                  ivermectin, pyrantel pamoate
7338                                                                                                                      fipronil, (s)-methoprene
7339                                                                                                                      imidacloprid, permethrin
7340                                                                                                                  ivermectin, pyrantel pamoate
7341                                                                                                                                    ivermectin
7342                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7343                                                                                                                      fipronil, (s)-methoprene
7344                                                                                                                                    ivermectin
7345                                                                                                                                    ivermectin
7346                                                                                                                      fipronil, (s)-methoprene
7347                                                                                                                                   hydroxyzine
7348                                                                                                                                    lokivetmab
7349                                                                                                                                     trazodone
7350                                                                                                                                    cephalexin
7351                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7352                                                                                                                                    tobramycin
7353                                                                                                                                     deracoxib
7354                                                                                                                                     carprofen
7355                                                                                                                                    prednisone
7356                                                                                                                                    lokivetmab
7357                                                                                                                  ivermectin, pyrantel pamoate
7358                                                                                                                                   amoxicillin
7359                                                                                                                              sulfadimethoxine
7360                                                                                                                                  fenbendazole
7361                                                                                                                                 metronidazole
7362                                                                                                                                     carprofen
7363                                                                                                                                    cephalexin
7364                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7365                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7366                                                                                                                                    prednisone
7367                                                                                                                                  ketoconazole
7368                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7369                                                                                                                                     carprofen
7370                                                                                                                                      tramadol
7371                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7372                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7373                                                                                                                  ivermectin, pyrantel pamoate
7374                                                                                                                                 metronidazole
7375                                                                                                                                     carprofen
7376                                                                                                     lufenuron, milbemycin oxime, praziquantel
7377                                                                                                                                 hydromorphone
7378                                                                                                                                     midazolam
7379                                                                                                                                      propofol
7380                                                                                                                                    isoflurane
7381                                                                                                                                     carprofen
7382                                                                                                                  ivermectin, pyrantel pamoate
7383                                                                                                                          cefpodoxime proxetil
7384                                                                                                                                     carprofen
7385                                                                                                                                     carprofen
7386                                                                                                                                    sucralfate
7387                                                                                                                            maropitant citrate
7388                                                                                                                  ivermectin, pyrantel pamoate
7389                                                                                                                                 metronidazole
7390                                                                                                                          cefpodoxime proxetil
7391                                                                                                                                 hydromorphone
7392                                                                                                                               dexmedetomidine
7393                                                                                                                                     midazolam
7394                                                                                                                                      propofol
7395                                                                                                                                 metronidazole
7396                                                                                                                          digestive supplement
7397                                                                                                                  ivermectin, pyrantel pamoate
7398                                                                                                                          cefpodoxime proxetil
7399                                                                                                                                        elspar
7400                                                                                                                                    prednisone
7401                                                                                                                            maropitant citrate
7402                                                                                                                                 metronidazole
7403                                                                                                                                   vincristine
7404                                                                                                                                    prednisone
7405                                                                                                                                   vincristine
7406                                                                                                                                    prednisone
7407                                                                                                                                   doxorubicin
7408                                                                                                                                 dexamethasone
7409                                                                                                                               diphenhydramine
7410                                                                                                                            maropitant citrate
7411                                                                                                                                 metronidazole
7412                                                                                                                                   vincristine
7413                                                                                                                  ivermectin, pyrantel pamoate
7414                                                                                                                          cefpodoxime proxetil
7415                                                                                                                                 metronidazole
7416                                                                                                                                        elspar
7417                                                                                                                                    prednisone
7418                                                                                                                                   vincristine
7419                                                                                                                              cyclophosphamide
7420                                                                                                                                   doxorubicin
7421                                                                                                                                 dexamethasone
7422                                                                                                                               diphenhydramine
7423                                                                                                                            maropitant citrate
7424                                                                                                                                   doxycycline
7425                                                                                                                              neomycin sulfate
7426                                                                                                                                  cyclosporine
7427                                                                                                                            maropitant citrate
7428                                                                                                                            maropitant citrate
7429                                                                                                                                    amino acid
7430                                                                                                                                   ondansetron
7431                                                                                                                                   ondansetron
7432                                                                                                                                     trazodone
7433                                                                                                                                    omeprazole
7434                                                                                                                                    famotidine
7435                                                                                                                                    famotidine
7436                                                                                                                                  capromorelin
7437                                                                                                                                metoclopramide
7438                                                                                                                                  pantoprazole
7439                                                                                                                                     meropenem
7440                                                                                                                                     mupirocin
7441                                                                                                            amoxicillin, clavulanate potassium
7442                                                                                                                               diphenhydramine
7443                                                                                                                                     carprofen
7444                                                                                                                          platelet transfusion
7445                                                                                                                                  enrofloxacin
7446                                                                                                                         ampicillin, sulbactam
7447                                                                                                               donor lymphocyte infusion (dli)
7448                                                                                                                                      ursodiol
7449                                                                                                                              liver supplement
7450                                                                                                         platelet-rich plasma (prp) injections
7451                                                                                                                                   amoxicillin
7452                                                                                                                          cefpodoxime proxetil
7453                                                                                                                              milbemycin oxime
7454                                                                                                                                    fluralaner
7455                                                                                                                                     carprofen
7456                                                                                                                                    gabapentin
7457                                                                                                                          cefpodoxime proxetil
7458                                                                                                                          cefpodoxime proxetil
7459                                                                                                                          cefpodoxime proxetil
7460                                                                                                                                    gabapentin
7461                                                                                                                                     carprofen
7462                                                                                                                                     carprofen
7463                                                                                                                          cefpodoxime proxetil
7464                                                                                                                                    gabapentin
7465                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7466                                                                                                                                     carprofen
7467                                                                                                                                   hydrocodone
7468                                                                                                                            maropitant citrate
7469                                                                                                                                    prednisone
7470                                                                                                                                 metronidazole
7471                                                                                                                   lufenuron, milbemycin oxime
7472                                                                                                                                    cephalexin
7473                                                                                                                   lufenuron, milbemycin oxime
7474                                                                                                                   lufenuron, milbemycin oxime
7475                                                                                                       betamethasone, florfenicol, terbinafine
7476                                                                                                                   lufenuron, milbemycin oxime
7477                                                                                                                   lufenuron, milbemycin oxime
7478                                                                                                                   lufenuron, milbemycin oxime
7479                                                                                                             betamethasone, gentamicin sulfate
7480                                                                                                                                     carprofen
7481                                                                                                                                   clindamycin
7482                                                                                                                                    gabapentin
7483                                                                                                                                     carprofen
7484                                                                                                                              tylosin tartrate
7485                                                                                                                              tylosin tartrate
7486                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7487                                                                                                                            miconazole nitrate
7488                                                                                                            amoxicillin, clavulanate potassium
7489                                                                                                                          cefpodoxime proxetil
7490                                                                                                                                     carprofen
7491                                                                                                                                 ciprofloxacin
7492                                                                                                            amoxicillin, clavulanate potassium
7493                                                                                                                                      tramadol
7494                                                                                                                                    gabapentin
7495                                                                                                                  ivermectin, pyrantel pamoate
7496                                                                                                                  ivermectin, pyrantel pamoate
7497                                                                                                                          cefpodoxime proxetil
7498                                                                                                                                     carprofen
7499                                                                                                                  ivermectin, pyrantel pamoate
7500                                                                                                                                    afoxolaner
7501                                                                                                                  ivermectin, pyrantel pamoate
7502                                                                                                                                    afoxolaner
7503                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7504                                                                                                            amoxicillin, clavulanate potassium
7505                                                                                                                                     carprofen
7506                                                                                                                                   amoxicillin
7507                                                                                                                                    ivermectin
7508                                                                                                                              pyrantel pamoate
7509                                                                                                                                  praziquantel
7510                                                                                                                                    ivermectin
7511                                                                                                                                    afoxolaner
7512                                                                                                                                  multivitamin
7513                                                                                                                                   omega 3-6-9
7514                                                                                                                                     carprofen
7515                                                                                                                                    ivermectin
7516                                                                                                                                    afoxolaner
7517                                                                                                                                     vitamin b
7518                                                                                                                                     vitamin b
7519                                                                                                                  ivermectin, pyrantel pamoate
7520                                                                                                                                    afoxolaner
7521                                                                                                                  ivermectin, pyrantel pamoate
7522                                                                                                                                    afoxolaner
7523                                                                                                                                     vitamin b
7524                                                                                                                                   omega 3-6-9
7525                                                                                                                  ivermectin, pyrantel pamoate
7526                                                                                                                                    afoxolaner
7527                                                                                                                                     vitamin b
7528                                                                                                                                 metronidazole
7529                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7530                                                                                                                          digestive supplement
7531                                                                                                                                     vitamin b
7532                                                                                                                                     carprofen
7533                                                                                                                                     carprofen
7534                                                                                                                                    cephalexin
7535                                                                                                                                    cephalexin
7536                                                                                                                               dexmedetomidine
7537                                                                                                                                      propofol
7538                                                                                                                               diphenhydramine
7539                                                                                                                                    famotidine
7540                                                                                                                                     carprofen
7541                                                                                                                                   atipamezole
7542                                                                                                                                     carprofen
7543                                                                                                                                     carprofen
7544                                                                                                                                    cephalexin
7545                                                                                                                                    cephalexin
7546                                                                                                                                     carprofen
7547                                                                                                                                     carprofen
7548                                                                                                                               diphenhydramine
7549                                                                                                                               diphenhydramine
7550                                                                                                                                     vitamin b
7551                                                                                                                                    afoxolaner
7552                                                                                                                          cefpodoxime proxetil
7553                                                                                                                                     carprofen
7554                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7555                                                                                                                                    fluralaner
7556                                                                                                                                 levetiracetam
7557                                                                                                                                     firocoxib
7558                                                                                                                  ivermectin, pyrantel pamoate
7559                                                                                                                    imidacloprid, pyriproxyfen
7560                                                                                                                              pyrantel pamoate
7561                                                                                                                                   guaifenesin
7562                                                                                                                 dextromethorphan hydrobromide
7563                                                                                                                  ivermectin, pyrantel pamoate
7564                                                                                                                              phytosphingosine
7565                                                                                                                  ivermectin, pyrantel pamoate
7566                                                                                                                  ivermectin, pyrantel pamoate
7567                                                                                                                                     firocoxib
7568                                                                                                            amoxicillin, clavulanate potassium
7569                                                                                                                                    gabapentin
7570                                                                                                                                   ondansetron
7571                                                                                                                                    alprazolam
7572                                                                                                                                     firocoxib
7573                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7574                                                                                                                                     firocoxib
7575                                                                                                                                    ivermectin
7576                                                                                                                      fipronil, (s)-methoprene
7577                                                                                                                   lufenuron, milbemycin oxime
7578                                                                                                                   lufenuron, milbemycin oxime
7579                                                                                                                                    cephalexin
7580                                                                                                                                     carprofen
7581                                                                                                                   lufenuron, milbemycin oxime
7582                                                                                                                   lufenuron, milbemycin oxime
7583                                                                                                                   lufenuron, milbemycin oxime
7584                                                                                                                   lufenuron, milbemycin oxime
7585                                                                                                                                     probiotic
7586                                                                                                                               cbd or hemp oil
7587                                                                                                                     immune support supplement
7588                                                                                                                                       omega 3
7589                                                                                                    toothpaste/dental health solution or chews
7590                                                                                                                                         algae
7591                                                                                                                                benazepril hcl
7592                                                                                                                                       omega 3
7593                                                                                                                                     probiotic
7594                                                                                                                                     vitamin c
7595                                                                                                                                       omega 3
7596                                                                                                                     immune support supplement
7597                                                                                                                          cefpodoxime proxetil
7598                                                                                                            chlorhexidine gluconate, ophytrium
7599                                                                                                                     immune support supplement
7600                                                                                                                                     vitamin b
7601                                                                                                                                     probiotic
7602                                                                                                                          digestive supplement
7603                                                                                                                          digestive supplement
7604                                                                                                                                     vitamin c
7605                                                                                                                     immune support supplement
7606                                                                                                                  ivermectin, pyrantel pamoate
7607                                                                                                                      fipronil, (s)-methoprene
7608                                                                                                                                   coconut oil
7609                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7610                                                                                                                  ivermectin, pyrantel pamoate
7611                                                                                                                          digestive supplement
7612                                                                                                                     immune support supplement
7613                                                                                                                                       omega 3
7614                                                                                                              unspecified digestive medication
7615                                                                                                                                     probiotic
7616                                                                                                                                     vitamin b
7617                                                                                                                     immune support supplement
7618                                                                                                                                          kelp
7619                                                                                                                                   coconut oil
7620                                                                                                                                 metronidazole
7621                                                                                                            amoxicillin, clavulanate potassium
7622                                                                                                                               jade windscreen
7623                                                                                                                              strengthen metal
7624                                                                                                                    thyroid support supplement
7625                                                                                                              general female health supplement
7626                                                                                                                     immune support supplement
7627                                                                                                                                       taurine
7628                                                                                                                                     probiotic
7629                                                                                                                          digestive supplement
7630                                                                                                                                     vitamin b
7631                                                                                                                          digestive supplement
7632                                                                                                                                     probiotic
7633                                                                                                                    thyroid support supplement
7634                                                                                                                    thyroid support supplement
7635                                                                                                    dextromethorphan hydrobromide, guaifenesin
7636                                                                                                                                   doxycycline
7637                                                                                                                                   hydroxyzine
7638                                                                                                                          digestive supplement
7639                                                                                                                     immune support supplement
7640                                                                                                                                     probiotic
7641                                                                                                                                       taurine
7642                                                                                                                                 levothyroxine
7643                                                                                                              general female health supplement
7644                                                                                                                    cardiac support supplement
7645                                                                                                                          digestive supplement
7646                                                                                                                                 levothyroxine
7647                                                                                                                    cardiac support supplement
7648                                                                                                                     immune support supplement
7649                                                                                                                     immune support supplement
7650                                                                                                                                       taurine
7651                                                                                                              general female health supplement
7652                                                                                                                                     probiotic
7653                                                                                                                          digestive supplement
7654                                                                                                                                 levothyroxine
7655                                                                                                                               gather vitality
7656                                                                                                                          digestive supplement
7657                                                                                                                                 levothyroxine
7658                                                                                                                                     probiotic
7659                                                                                                                                  multivitamin
7660                                                                                                                   lufenuron, milbemycin oxime
7661                                                                                                                          cefpodoxime proxetil
7662                                                                                                                                    prednisone
7663                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7664                                                                                                                    milbemycin oxime, spinosad
7665                                                                                                                                 metronidazole
7666                                                                                                                          cefpodoxime proxetil
7667                                                                                                                                   amoxicillin
7668                                                                                                                                  fenbendazole
7669                                                                                                                                      tramadol
7670                                                                                                                                     carprofen
7671                                                                                                       transcranial magnetic stimulation (tms)
7672                                                                                                                               apomorphine hcl
7673                                                                                                                              pyrantel pamoate
7674                                                                                                                              sulfadimethoxine
7675                                                                                                                    milbemycin oxime, spinosad
7676                                                                                                                                 metronidazole
7677                                                                                                                                     probiotic
7678                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
7679                                                                                                                       ketoconazole, tris-edta
7680                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7681                                                                                                                    milbemycin oxime, spinosad
7682                                                                                                                    milbemycin oxime, spinosad
7683                                                                                                                milbemycin oxime, praziquantel
7684                                                                                                                                    fluralaner
7685                                                                                                                                 metronidazole
7686                                                                                                                                   hydroxyzine
7687                                                                                                                                   oclacitinib
7688                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7689                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7690                                                                                                                                     carprofen
7691                                                                                                                                      tramadol
7692                                                                                                                milbemycin oxime, praziquantel
7693                                                                                                                                    fluralaner
7694                                                                                                     chlorhexidine gluconate, phytosphingosine
7695                                                                                                                                    fluralaner
7696                                                                                                                milbemycin oxime, praziquantel
7697                                                                                                                                     carprofen
7698                                                                                                                                     sarolaner
7699                                                                                                                milbemycin oxime, praziquantel
7700                                                                                                                                     sarolaner
7701                                                                                                                milbemycin oxime, praziquantel
7702                                                                                                                                   oclacitinib
7703                                                                                                                                    gabapentin
7704                                                                                                                          cefpodoxime proxetil
7705                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7706                                                                                                                                     carprofen
7707                                                                                                                          cefpodoxime proxetil
7708                                                                                                                polysulfated glycosaminoglycan
7709                                                                                                                              sulfadimethoxine
7710                                                                                                                                     carprofen
7711                                                                                                                                 dexamethasone
7712                                                                                                                          cefpodoxime proxetil
7713                                                                                                                                   oclacitinib
7714                                                                                                                                     trazodone
7715                                                                                                                                    prednisone
7716                                                                                                                          cefpodoxime proxetil
7717                                                                                                                                   oclacitinib
7718                                                                                                                polysulfated glycosaminoglycan
7719                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7720                                                                                                                                    prednisone
7721                                                                                                                          cefpodoxime proxetil
7722                                                                                                                                   oclacitinib
7723                                                                                                                polysulfated glycosaminoglycan
7724                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7725                                                                                                                            miconazole nitrate
7726                                                                                                                                     carprofen
7727                                                                                                                          prednisolone acetate
7728                                                                                                                          cefpodoxime proxetil
7729                                                                                                                                    gabapentin
7730                                                                                                                                     carprofen
7731                                                                                                                                       omega 3
7732                                                                                                    ivermectin, praziquantel, pyrantel pamoate
7733                                                                                                                                   doxycycline
7734                                                                                                                  ivermectin, pyrantel pamoate
7735                                                                                                                      fipronil, (s)-methoprene
7736                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
7737                                                                                                                                   amoxicillin
7738                                                                                                                                 ciprofloxacin
7739                                                                                                                                    cephalexin
7740                                                                                                                            maropitant citrate
7741                                                                                                            amoxicillin, clavulanate potassium
7742                                                                                                                  ivermectin, pyrantel pamoate
7743                                                                                                                      fipronil, (s)-methoprene
7744                                                                                                                      fipronil, (s)-methoprene
7745                                                                                                                  ivermectin, pyrantel pamoate
7746                                                                                                                  ivermectin, pyrantel pamoate
7747                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7748                                                                                                                                       omega 3
7749                                                                                                                  ivermectin, pyrantel pamoate
7750                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
7751                                                                                                           ear cleaner (zymox), hydrocortisone
7752                                                                                                                                  multivitamin
7753                                                                                                                    musculoskeletal supplement
7754                                                                                                                                     carvacrol
7755                                                                                                                  ivermectin, pyrantel pamoate
7756                                                                                                                      fipronil, (s)-methoprene
7757                                                                                                                                     carprofen
7758                                                                                                                                      tramadol
7759                                                                                                         dinotefuran, permethrin, pyriproxyfen
7760                                                                                                                                       omega 3
7761                                                                                                                     immune support supplement
7762                                                                                                                                     vitamin d
7763                                                                                                                  ivermectin, pyrantel pamoate
7764                                                                                                                     immune support supplement
7765                                                                                                         dinotefuran, permethrin, pyriproxyfen
7766                                                                                                                     immune support supplement
7767                                                                                                                            xue fu zhu yu tang
7768                                                                                                                                 yunnan baiyao
7769                                                                                                                                       omega 3
7770                                                                                                                                     vitamin d
7771                                                                                                                                      bilberry
7772                                                                                                                                     probiotic
7773                                                                                                                             gm np hsa formula
7774                                                                                                                               diphenhydramine
7775                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
7776                                                                                                                                     vitamin d
7777                                                                                                                                       omega 3
7778                                                                                                        joint supplement (glucosamine hcl/msm)
7779                                                                                                                   lufenuron, milbemycin oxime
7780                                                                                                         dinotefuran, permethrin, pyriproxyfen
7781                                                                                                                                      fipronil
7782                                                                                                                   lufenuron, milbemycin oxime
7783                                                                                                                                      fipronil
7784                                                                                                                   lufenuron, milbemycin oxime
7785                                                                                                                             vision supplement
7786                                                                                                         dinotefuran, permethrin, pyriproxyfen
7787                                                                                                         dinotefuran, permethrin, pyriproxyfen
7788                                                                                                                   lufenuron, milbemycin oxime
7789                                                                                                                   lufenuron, milbemycin oxime
7790                                                                                                         dinotefuran, permethrin, pyriproxyfen
7791                                                                                                                  ivermectin, pyrantel pamoate
7792                                                                                                                                    selamectin
7793                                                                                                            amoxicillin, clavulanate potassium
7794                                                                                                           ear cleaner (zymox), hydrocortisone
7795                                                                                                                                       omega 3
7796                                                                                                                                   hydroxyzine
7797                                                                                                                                   oclacitinib
7798                                                                                                                  ivermectin, pyrantel pamoate
7799                                                                                                                                    afoxolaner
7800                                                                                                                                   oclacitinib
7801                                                                                                                          cefpodoxime proxetil
7802                                                                                                                          cefpodoxime proxetil
7803                                                                                                                                   oclacitinib
7804                                                                                                                  ivermectin, pyrantel pamoate
7805                                                                                                                                    afoxolaner
7806                                                                                                                                   oclacitinib
7807                                                                                                                                      tramadol
7808                                                                                                                  ivermectin, pyrantel pamoate
7809                                                                                                                                    afoxolaner
7810                                                                                                                                   oclacitinib
7811                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7812                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
7813                                                                                                  enrofloxacin, ketoconazole, neomycin sulfate
7814                                                                                                                          cefpodoxime proxetil
7815                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7816                                                                                                                                     carprofen
7817                                                                                                                                    prednisone
7818                                                                                                             trimeprazine tartrate, prednisone
7819                                                                                                                          cefpodoxime proxetil
7820                                                                                                             betamethasone, gentamicin sulfate
7821                                                                                                                          cefpodoxime proxetil
7822                                                                                                             betamethasone, gentamicin sulfate
7823                                                                                                                                   oclacitinib
7824                                                                                                                                   minocycline
7825                                                                                                                      homatropine, hydrocodone
7826                                                                                                                            maropitant citrate
7827                                                                                                                            maropitant citrate
7828                                                                                                                            maropitant citrate
7829                                                                                                                      homatropine, hydrocodone
7830                                                                                                                                   minocycline
7831                                                                                                                  ivermectin, pyrantel pamoate
7832                                                                                                                      fipronil, (s)-methoprene
7833                                                                                         miconazole nitrate, polymyxin b, prednisolone acetate
7834                                                                                                                  ivermectin, pyrantel pamoate
7835                                                                                                                  ormetoprim, sulfadimethoxine
7836                                                                                                                                    tobramycin
7837                                                                                                                                     carprofen
7838                                                                                                                  ivermectin, pyrantel pamoate
7839                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7840                                                                                                                               diphenhydramine
7841                                                                                                                  ivermectin, pyrantel pamoate
7842                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
7843                                                                                                                                    gabapentin
7844                                                                                                                               diphenhydramine
7845                                                                                                                           ear cleaner (zymox)
7846                                                                                                mometasone furoate, orbifloxacin, posaconazole
7847                                                                                                  florfenicol, mometasone furoate, terbinafine
7848                                                                                                                        unspecified medication
7849                                                                                                                                   doxycycline
7850                                                                                                            amoxicillin, clavulanate potassium
7851                                                                                                                                  enrofloxacin
7852                                                                                                                                   hydrocodone
7853                                                                                                                             albuterol sulfate
7854                                                                                                                            maropitant citrate
7855                                                                                                                                    famotidine
7856                                                                                                                                    cetirizine
7857                                                                                                                                 metronidazole
7858                                                                                                            amoxicillin, clavulanate potassium
7859                                                                                                                               diphenhydramine
7860                                                                                                            amoxicillin, clavulanate potassium
7861                                                                                                                                 metronidazole
7862                                                                                                                                        arnica
7863                                                                                                            amoxicillin, clavulanate potassium
7864                                                                                                                                      tramadol
7865                                                                                                                  ivermectin, pyrantel pamoate
7866                                                                                                            amoxicillin, clavulanate potassium
7867                                                                                                                  ivermectin, pyrantel pamoate
7868                                                                                                                  ivermectin, pyrantel pamoate
7869                                                                                                                  ivermectin, pyrantel pamoate
7870                                                                                                                                     carprofen
7871                                                                                                                                   amoxicillin
7872                                                                                                                                   doxycycline
7873                                                                                                                  ivermectin, pyrantel pamoate
7874                                                                                                                  ivermectin, pyrantel pamoate
7875                                                                                                                                    prednisone
7876                                                                                                                      fipronil, (s)-methoprene
7877                                                                                                                                    selamectin
7878                                                                                                                  ivermectin, pyrantel pamoate
7879                                                                                                                                    afoxolaner
7880                                                                                                                  ivermectin, pyrantel pamoate
7881                                                                                                                                    afoxolaner
7882                                                                                                            amoxicillin, clavulanate potassium
7883                                                                                                                              milbemycin oxime
7884                                                                                                                                    afoxolaner
7885                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7886                                                                                                                                    cephalexin
7887                                                                                                  florfenicol, mometasone furoate, terbinafine
7888                                                                                                                                    cephalexin
7889                                                                                                  florfenicol, mometasone furoate, terbinafine
7890                                                                                                                                    lokivetmab
7891                                                                                                                                    cephalexin
7892                                                                                                                                    lokivetmab
7893                                                                                                  florfenicol, mometasone furoate, terbinafine
7894                                                                                                                                  enrofloxacin
7895                                                                                                    dimethyl sulfoxide, fluocinolone acetonide
7896                                                                                                                                   amoxicillin
7897                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7898                                                                                                                          prednisolone acetate
7899                                                                                                                                   doxycycline
7900                                                                                                                                 metronidazole
7901                                                                                                                                    prednisone
7902                                                                                                                          prednisolone acetate
7903                                                                                                                                 dexamethasone
7904                                                                                                                                    cephalexin
7905                                                                                                                                    cephalexin
7906                                                                                                                                 dexamethasone
7907                                                                                                                                    cephalexin
7908                                                                                                                                     deracoxib
7909                                                                                                                                   doxycycline
7910                                                                                                                               diphenhydramine
7911                                                                                                                                 dexamethasone
7912                                                                                                                                    afoxolaner
7913                                                                                                                                    cephalexin
7914                                                                                                                                  fenbendazole
7915                                                                                                                                   doxycycline
7916                                                                                                                                 dexamethasone
7917                                                                                                                               diphenhydramine
7918                                                                                                                                     carprofen
7919                                                                                                                          cefpodoxime proxetil
7920                                                                                                                                    cephalexin
7921                                                                                                                                  fenbendazole
7922                                                                                                                                 metronidazole
7923                                                                                                           belladonna alkaloids, phenobarbital
7924                                                                                                                              pyrantel pamoate
7925                                                                                                                                 metronidazole
7926                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7927                                                                                                                                    prednisone
7928                                                                                                                                    cephalexin
7929                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
7930                                                                                                                                     firocoxib
7931                                                                                                                                   clindamycin
7932                                                                                                                                     diltiazem
7933                                                                                                                                    trilostane
7934                                                                                                                                     carprofen
7935                                                                                                                                     carprofen
7936                                                                                                                                    ivermectin
7937                                                                                                                              pyrantel pamoate
7938                                                                                                                                 dexamethasone
7939                                                                                                                                    prednisone
7940                                                                                                                               diphenhydramine
7941                                                                                                                     bordetella bronchiseptica
7942                                                                                                                                  ketoconazole
7943                                                                                                                                    prednisone
7944                                                                                                                       acetic acid, boric acid
7945                                                                                                                          butorphanol tartrate
7946                                                                                                                              phytosphingosine
7947                                                                                                mometasone furoate, orbifloxacin, posaconazole
7948                                                                                                                                    ivermectin
7949                                                                                                                                    ivermectin
7950                                                                                                                                    ivermectin
7951                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7952                                                                                                                            methylprednisolone
7953                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7954                                                                                                                               diphenhydramine
7955                                                                                                                          butorphanol tartrate
7956                                                                                                                                    ivermectin
7957                                                                                               betamethasone, clotrimazole, gentamicin sulfate
7958                                                                                                                               diphenhydramine
7959                                                                                                                                   amoxicillin
7960                                                                                                                                     carprofen
7961                                                                                bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
7962                                                                                                                                   amoxicillin
7963                                                                                                                          prednisolone acetate
7964                                                                                                dexamethasone, neomycin sulfate, thiabendazole
7965                                                                                                                              phytosphingosine
7966                                                                                                                  ivermectin, pyrantel pamoate
7967                                                                                                                                    afoxolaner
7968                                                                                                                  ivermectin, pyrantel pamoate
7969                                                                                                                                    afoxolaner
7970                                                                                                            amoxicillin, clavulanate potassium
7971                                                                                                                                     meloxicam
7972                                                                                                            amoxicillin, clavulanate potassium
7973                                                                                                                  ofloxacin, unspecified nsaid
7974                                                                                                                                     meloxicam
7975                                                                                                                                    pregabalin
7976                                                                                                                                     meloxicam
7977                                                                                                                                 metronidazole
7978                                                                                                                  ivermectin, pyrantel pamoate
7979                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
7980                                                                                                                                 metronidazole
7981                                                                                                                            maropitant citrate
7982                                                                                                                                     carprofen
7983                                                                                                                                     carprofen
7984                                                                                                                                   doxycycline
7985                                                                                                                                   doxycycline
7986                                                                                                                      fipronil, (s)-methoprene
7987                                                                                                                    milbemycin oxime, spinosad
7988                                                                                                                  ivermectin, pyrantel pamoate
7989                                                                                                                                  praziquantel
7990                                                                                                                                     firocoxib
7991                                                                                                                polysulfated glycosaminoglycan
7992                                                                                                                polysulfated glycosaminoglycan
7993                                                                                                                                    selamectin
7994                                                                                                                                     carprofen
7995                                                                                                                polysulfated glycosaminoglycan
7996                                                                                                                                    selamectin
7997                                                                                                                polysulfated glycosaminoglycan
7998                                                                                                                                    selamectin
7999                                                                                                                polysulfated glycosaminoglycan
8000                                                                                                                                    selamectin
8001                                                                                                                                    moxidectin
8002                                                                                                                polysulfated glycosaminoglycan
8003                                                                                                                                     carprofen
8004                                                                                                                                     carprofen
8005                                                                                                                                    sucralfate
8006                                                                                                                                    famotidine
8007                                                                                                                                 metronidazole
8008                                                                                                                                     carprofen
8009                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8010                                                                                                                                     carprofen
8011                                                                                                                          cefpodoxime proxetil
8012                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8013                                                                                                                                     carprofen
8014                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8015                                                                                                                              milbemycin oxime
8016                                                                                                                          cefpodoxime proxetil
8017                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8018                                                                                                                          cefpodoxime proxetil
8019                                                                                                                                     carprofen
8020                                                                                                                                     ketorolac
8021                                                                                                                                     carprofen
8022                                                                                                                                    gabapentin
8023                                                                                                                          cefpodoxime proxetil
8024                                                                                                                                 metronidazole
8025                                                                                                                                    gabapentin
8026                                                                                                                                     carprofen
8027                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8028                                                                                                                  ivermectin, pyrantel pamoate
8029                                                                                                                  ivermectin, pyrantel pamoate
8030                                                                                                                  ivermectin, pyrantel pamoate
8031                                                                                                                          prednisolone acetate
8032                                                                                                                                     carprofen
8033                                                                                                                          prednisolone acetate
8034                                                                                                                  ivermectin, pyrantel pamoate
8035                                                                                                                  ivermectin, pyrantel pamoate
8036                                                                                                                  ivermectin, pyrantel pamoate
8037                                                                                                                  ivermectin, pyrantel pamoate
8038                                                                                                                  ivermectin, pyrantel pamoate
8039                                                                                                                  ivermectin, pyrantel pamoate
8040                                                                                                                  ivermectin, pyrantel pamoate
8041                                                                                                                                 metronidazole
8042                                                                                                                   lufenuron, milbemycin oxime
8043                                                                                                                milbemycin oxime, praziquantel
8044                                                                                                                milbemycin oxime, praziquantel
8045                                                                                                                              milbemycin oxime
8046                                                                                                                                 metronidazole
8047                                                                                                                                    cephalexin
8048                                                                                                                                     cefazolin
8049                                                                                                                                  enrofloxacin
8050                                                                                                                                    ampicillin
8051                                                                                                            amoxicillin, clavulanate potassium
8052                                                                                                                                  enrofloxacin
8053                                                                                                                                  chlorambucil
8054                                                                                                                                    prednisone
8055                                                                                                            amoxicillin, clavulanate potassium
8056                                                                                                                                    ampicillin
8057                                                                                                                                  enrofloxacin
8058                                                                                                                    thyroid support supplement
8059                                                                                                                                 levothyroxine
8060                                                                                                                                  enrofloxacin
8061                                                                                                                          digestive supplement
8062                                                                                                                    thyroid support supplement
8063                                                                                                                   lufenuron, milbemycin oxime
8064                                                                                                         dinotefuran, permethrin, pyriproxyfen
8065                                                                                                                                     thyroxine
8066                                                                                                         dinotefuran, permethrin, pyriproxyfen
8067                                                                                                                   lufenuron, milbemycin oxime
8068                                                                                                                                 levothyroxine
8069                                                                                                                   lufenuron, milbemycin oxime
8070                                                                                                                   lufenuron, milbemycin oxime
8071                                                                                                         dinotefuran, permethrin, pyriproxyfen
8072                                                                                                                                     thyroxine
8073                                                                                                                                  acepromazine
8074                                                                                                                                     thyroxine
8075                                                                                                                            calming supplement
8076                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8077                                                                                                                                   hydroxyzine
8078                                                                                                             trimeprazine tartrate, prednisone
8079                                                                                                                                   amoxicillin
8080                                                                                                                                    cephalexin
8081                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8082                                                                                                            amoxicillin, clavulanate potassium
8083                                                                                                                                    ampicillin
8084                                                                                                                                      tramadol
8085                                                                                                                              sulfadimethoxine
8086                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8087                                                                                                             trimeprazine tartrate, prednisone
8088                                                                                                            amoxicillin, clavulanate potassium
8089                                                                                                            amoxicillin, clavulanate potassium
8090                                                                                                                                   hydroxyzine
8091                                                                                                            amoxicillin, clavulanate potassium
8092                                                                                                         chlorhexidine gluconate, ketoconazole
8093                                                                                                                            methylprednisolone
8094                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8095                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8096                                                                                                                                   oclacitinib
8097                                                                                                                                       omega 3
8098                                                                                                                      fipronil, (s)-methoprene
8099                                                                                                                milbemycin oxime, praziquantel
8100                                                                                                                                   oclacitinib
8101                                                                                                             dexamethasone, miconazole nitrate
8102                                                                                                                                   oclacitinib
8103                                                                                                                                   amoxicillin
8104                                                                                                                                      tramadol
8105                                                                                                                                    sucralfate
8106                                                                                                                                    famotidine
8107                                                                                                                                  capromorelin
8108                                                                                                                                    gabapentin
8109                                                                                                                            maropitant citrate
8110                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8111                                                                                                  florfenicol, mometasone furoate, terbinafine
8112                                                                                                                                    famotidine
8113                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8114                                                                                                                                     carprofen
8115                                                                                                                              liver supplement
8116                                                                                                                                     deracoxib
8117                                                                                                                                   doxycycline
8118                                                                                                    dextromethorphan hydrobromide, guaifenesin
8119                                                                                                                              liver supplement
8120                                                                                                                                    ivermectin
8121                                                                                                                                    ivermectin
8122                                                                                                        joint supplement (glucosamine hcl/msm)
8123                                                                                                                                    ivermectin
8124                                                                                                                  ivermectin, pyrantel pamoate
8125                                                                                                                joint supplement (unspecified)
8126                                                                                                                                    cephalexin
8127                                                                                                                                    prednisone
8128                                                                                                                       ketoconazole, tris-edta
8129                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8130                                                                                                                  ivermectin, pyrantel pamoate
8131                                                                                                                                    afoxolaner
8132                                                                                                                              milbemycin oxime
8133                                                                                                                                     lotilaner
8134                                                                                                                                     carprofen
8135                                                                                                                       ketoconazole, tris-edta
8136                                                                                                                milbemycin oxime, praziquantel
8137                                                                                                                                     lotilaner
8138                                                                                                                              milbemycin oxime
8139                                                                                                                                     lotilaner
8140                                                                                                                       ketoconazole, tris-edta
8141                                                                                                            amoxicillin, clavulanate potassium
8142                                                                                                                            maropitant citrate
8143                                                                                                                            maropitant citrate
8144                                                                                                                                    cephalexin
8145                                                                                                            amoxicillin, clavulanate potassium
8146                                                                                                                            maropitant citrate
8147                                                                                                                                 phenobarbital
8148                                                                                                                                  acepromazine
8149                                                                                                                          butorphanol tartrate
8150                                                                                                                                      propofol
8151                                                                                                                            maropitant citrate
8152                                                                                                                               diphenhydramine
8153                                                                                                                                     carprofen
8154                                                                                                                                    grapiprant
8155                                                                                                                                     probiotic
8156                                                                                                                                       omega 3
8157                                                                                                                                   amoxicillin
8158                                                                                                            fipronil, permethrin, pyriproxyfen
8159                                                                                                                  ivermectin, pyrantel pamoate
8160                                                                                                                                     probiotic
8161                                                                                                                                     carprofen
8162                                                                                                                                     carprofen
8163                                                                                                                                       omega 3
8164                                                                                                                                       omega 3
8165                                                                                                                        joint supplement (msm)
8166                                                                                                                                    ivermectin
8167                                                                                                                  ivermectin, pyrantel pamoate
8168                                                                                                                                    ivermectin
8169                                                                                                                      fipronil, (s)-methoprene
8170                                                                                                                  ivermectin, pyrantel pamoate
8171                                                                                                                      fipronil, (s)-methoprene
8172                                                                                                                  ivermectin, pyrantel pamoate
8173                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8174                                                                                                                       ketoconazole, tris-edta
8175                                                                                                                  ivermectin, pyrantel pamoate
8176                                                                                                                                    fluralaner
8177                                                                                                                                    fluralaner
8178                                                                                                                  ivermectin, pyrantel pamoate
8179                                                                                                                                    lokivetmab
8180                                                                                                                                    lokivetmab
8181                                                                                                                                     carprofen
8182                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8183                                                                                                                                     carprofen
8184                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8185                                                                                                                  ivermectin, pyrantel pamoate
8186                                                                                                                  ivermectin, pyrantel pamoate
8187                                                                                                                  ivermectin, pyrantel pamoate
8188                                                                                                                                    afoxolaner
8189                                                                                                                          cefpodoxime proxetil
8190                                                                                                                          cefpodoxime proxetil
8191                                                                                                                                    prednisone
8192                                                                                                                          cefpodoxime proxetil
8193                                                                                                                       triamcinolone acetonide
8194                                                                                                                                   oclacitinib
8195                                                                                                                  ivermectin, pyrantel pamoate
8196                                                                                                                                    afoxolaner
8197                                                                                                                                  enrofloxacin
8198                                                                                                            amoxicillin, clavulanate potassium
8199                                                                                                                                     carprofen
8200                                                                                                             betamethasone, gentamicin sulfate
8201                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8202                                                                                                                                    prednisone
8203                                                                                                                                      fipronil
8204                                                                                                                   lufenuron, milbemycin oxime
8205                                                                                                                                      fipronil
8206                                                                                                     lufenuron, milbemycin oxime, praziquantel
8207                                                                                                     lufenuron, milbemycin oxime, praziquantel
8208                                                                                                                                      fipronil
8209                                                                                                                   lufenuron, milbemycin oxime
8210                                                                                                                   lufenuron, milbemycin oxime
8211                                                                                                                          fipronil, permethrin
8212                                                                                                                   lufenuron, milbemycin oxime
8213                                                                                                                          fipronil, permethrin
8214                                                                                                                   lufenuron, milbemycin oxime
8215                                                                                                                          fipronil, permethrin
8216                                                                                                                                     deracoxib
8217                                                                                                            joint supplement (glucosamine hcl)
8218                                                                                                                                 metronidazole
8219                                                                                                                                    ivermectin
8220                                                                                                                                    ivermectin
8221                                                                                                                                    ivermectin
8222                                                                                                                                    ivermectin
8223                                                                                                                                    ivermectin
8224                                                                                                                  ivermectin, pyrantel pamoate
8225                                                                                                                                    cephalexin
8226                                                                                                                                     carprofen
8227                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
8228                                                                                                                                      turmeric
8229                                                                                                                                     carprofen
8230                                                                                                                                     carprofen
8231                                                                                                                   lufenuron, milbemycin oxime
8232                                                                                                                   lufenuron, milbemycin oxime
8233                                                                                                                                    fluralaner
8234                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8235                                                                                                                       chlorhexidine gluconate
8236                                                                                                             betamethasone, gentamicin sulfate
8237                                                                                                                                   hydroxyzine
8238                                                                                                                       chlorhexidine gluconate
8239                                                                                                                     immune support supplement
8240                                                                                                                       triamcinolone acetonide
8241                                                                                                                   lufenuron, milbemycin oxime
8242                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8243                                                                                                                   lufenuron, milbemycin oxime
8244                                                                                                                                    fluralaner
8245                                                                                                                                    cephalexin
8246                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8247                                                                                                                   lufenuron, milbemycin oxime
8248                                                                                                                                    fluralaner
8249                                                                                                                            maropitant citrate
8250                                                                                                                            maropitant citrate
8251                                                                                                                                 metronidazole
8252                                                                                                             betamethasone, gentamicin sulfate
8253                                                                                                                   lufenuron, milbemycin oxime
8254                                                                                                                                    lokivetmab
8255                                                                                                                                   hydroxyzine
8256                                                                                                                                    fluralaner
8257                                                                                                                                   oclacitinib
8258                                                                                                                   lufenuron, milbemycin oxime
8259                                                                                                                                   hydroxyzine
8260                                                                                                                                   oclacitinib
8261                                                                                                                                     deracoxib
8262                                                                                                                                     meloxicam
8263                                                                                                                                    ampicillin
8264                                                                                                                                  enrofloxacin
8265                                                                                                            amoxicillin, clavulanate potassium
8266                                                                                                                                 marbofloxacin
8267                                                                                                                                   oclacitinib
8268                                                                                                                                   hydroxyzine
8269                                                                                                      febantel, praziquantel, pyrantel pamoate
8270                                                                                                                   lufenuron, milbemycin oxime
8271                                                                                                            amoxicillin, clavulanate potassium
8272                                                                                                                                 marbofloxacin
8273                                                                                                                                   doxycycline
8274                                                                                                                                   oclacitinib
8275                                                                                                                                   hydroxyzine
8276                                                                                                                                 betamethasone
8277                                                                                                                                    ampicillin
8278                                                                                                                                      ketamine
8279                                                                                                                                      diazepam
8280                                                                                                                                    isoflurane
8281                                                                                                                                     meloxicam
8282                                                                                                                                    cephalexin
8283                                                                                                                                   hydrocodone
8284                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8285                                                                                                                                   hydroxyzine
8286                                                                                                                                   oclacitinib
8287                                                                                                                                     deracoxib
8288                                                                                                                                   hydroxyzine
8289                                                                                                                                   oclacitinib
8290                                                                                                                                   oclacitinib
8291                                                                                                                                   hydroxyzine
8292                                                                                                dexamethasone, neomycin sulfate, thiabendazole
8293                                                                                                             betamethasone, gentamicin sulfate
8294                                                                                                                                    grapiprant
8295                                                                                                                                   oclacitinib
8296                                                                                                                  ivermectin, pyrantel pamoate
8297                                                                                                                      fipronil, (s)-methoprene
8298                                                                                                           ear cleaner (zymox), hydrocortisone
8299                                                                                                             allergy immunotherapy - injection
8300                                                                                                                                    diclofenac
8301                                                                                                                    imidacloprid, pyriproxyfen
8302                                                                                                                                    ivermectin
8303                                                                                                                                   oclacitinib
8304                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8305                                                                       acetic acid, boric acid, ceramide complex, hydrocortisone, ketoconazole
8306                                                                                                                                    ivermectin
8307                                                                                                                                    fluralaner
8308                                                                                                                                   oclacitinib
8309                                                                                                              burow's solution, hydrocortisone
8310                                                                                                                                  flurbiprofen
8311                                                                                                                                  flurbiprofen
8312                                                                                                              burow's solution, hydrocortisone
8313                                                                                                                                  flurbiprofen
8314                                                                                                                  ivermectin, pyrantel pamoate
8315                                                                                                                    imidacloprid, pyriproxyfen
8316                                                                                                            amoxicillin, clavulanate potassium
8317                                                                                                                                    cephalexin
8318                                                                                                                sulfamethoxazole, trimethoprim
8319                                                                                                                                 ciprofloxacin
8320                                                                                                                                  praziquantel
8321                                                                                                                                    ivermectin
8322                                                                                                                                 metronidazole
8323                                                                                                                                 ciprofloxacin
8324                                                                                                                                    prednisone
8325                                                                                                                  ivermectin, pyrantel pamoate
8326                                                                                                         dinotefuran, permethrin, pyriproxyfen
8327                                                                                                                                 metronidazole
8328                                                                                                                                 ciprofloxacin
8329                                                                                                                                    prednisone
8330                                                                                                                               diphenhydramine
8331                                                                                                                  ivermectin, pyrantel pamoate
8332                                                                                                         dinotefuran, permethrin, pyriproxyfen
8333                                                                                                                                     carprofen
8334                                                                                                                                    ivermectin
8335                                                                                                         dinotefuran, permethrin, pyriproxyfen
8336                                                                                                                                  flurbiprofen
8337                                                                                                                                 cephalosporin
8338                                                                                                                                    prednisone
8339                                                                                                                  ivermectin, pyrantel pamoate
8340                                                                                                         dinotefuran, permethrin, pyriproxyfen
8341                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8342                                                                                                                                 metronidazole
8343                                                                                                                                    cephalexin
8344                                                                                                                  ivermectin, pyrantel pamoate
8345                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8346                                                                                                                                     carprofen
8347                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8348                                                                                                                                    cephalexin
8349                                                                                                         dinotefuran, permethrin, pyriproxyfen
8350                                                                                                                                     carprofen
8351                                                                                                                                       omega 3
8352                                                                                                                    unspecified shampoo/mousse
8353                                                                                                                                    ivermectin
8354                                                                                                                   lufenuron, milbemycin oxime
8355                                                                                                            fipronil, permethrin, pyriproxyfen
8356                                                                                                                                    fluralaner
8357                                                                                                                                    moxidectin
8358                                                                                                                   lufenuron, milbemycin oxime
8359                                                                                                                                    fluralaner
8360                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8361                                                                                                             trimeprazine tartrate, prednisone
8362                                                                                                                   chloroxylenol, ketoconazole
8363                                                                                                                                 metronidazole
8364                                                                                                                   lufenuron, milbemycin oxime
8365                                                                                                                                     lufenuron
8366                                                                                                                                     sarolaner
8367                                                                                                                                    fluralaner
8368                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8369                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
8370                                                                                                                   lufenuron, milbemycin oxime
8371                                                                                                                                     sarolaner
8372                                                                                                                            maropitant citrate
8373                                                                                                                                 metronidazole
8374                                                                                        chlorhexidine gluconate, miconazole nitrate, tris-edta
8375                                                                                                       betamethasone, florfenicol, terbinafine
8376                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8377                                                                                                                   lufenuron, milbemycin oxime
8378                                                                                                                                     sarolaner
8379                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8380                                                                                                                                 metronidazole
8381                                                                                                                                 metronidazole
8382                                                                                                                                     probiotic
8383                                                                                                                                 metronidazole
8384                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8385                                                                                                                                     probiotic
8386                                                                                                                                    ivermectin
8387                                                                                                                  ivermectin, pyrantel pamoate
8388                                                                                                                  ivermectin, pyrantel pamoate
8389                                                                                                                  ivermectin, pyrantel pamoate
8390                                                                                                                                   fluconazole
8391                                                                                                                                   fluconazole
8392                                                                                                                                 levothyroxine
8393                                                                                                                                   fluconazole
8394                                                                                                                                 levothyroxine
8395                                                                                                                                     carprofen
8396                                                                                                                                   clindamycin
8397                                                                                                                                  chlorambucil
8398                                                                                                                                   fluconazole
8399                                                                                                                                 levothyroxine
8400                                                                                                                                     carprofen
8401                                                                                                                                    prednisone
8402                                                                                                                              pyrantel pamoate
8403                                                                                                                              sulfamethoxazole
8404                                                                                                                                     carprofen
8405                                                                                                                     unspecified otic ear pack
8406                                                                                                                                    cephalexin
8407                                                                                                                                      tramadol
8408                                                                                                                  ivermectin, pyrantel pamoate
8409                                                                                                  florfenicol, mometasone furoate, terbinafine
8410                                                                                                                                    ivermectin
8411                                                                                                                              pyrantel pamoate
8412                                                                                                                              pyrantel pamoate
8413                                                                                                                                   clindamycin
8414                                                                                                                          butorphanol tartrate
8415                                                                                                                                  acepromazine
8416                                                                                                                                      ketamine
8417                                                                                                                                      diazepam
8418                                                                                                                                    isoflurane
8419                                                                                                                                   doxycycline
8420                                                                                                                                    ivermectin
8421                                                                                                                                    ivermectin
8422                                                                                                                  ivermectin, pyrantel pamoate
8423                                                                                                                                    ivermectin
8424                                                                                                                    imidacloprid, pyriproxyfen
8425                                                                                                                  ivermectin, pyrantel pamoate
8426                                                                                                      febantel, praziquantel, pyrantel pamoate
8427                                                                                                                  ivermectin, pyrantel pamoate
8428                                                                                                                                 ciprofloxacin
8429                                                                                                                                     firocoxib
8430                                                                                                                  ivermectin, pyrantel pamoate
8431                                                                                                                polysulfated glycosaminoglycan
8432                                                                                                                                   clindamycin
8433                                                                                                                polysulfated glycosaminoglycan
8434                                                                                                                  ivermectin, pyrantel pamoate
8435                                                                                                                                     probiotic
8436                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8437                                                                                                                  ivermectin, pyrantel pamoate
8438                                                                                                                  ivermectin, pyrantel pamoate
8439                                                                                                                  ivermectin, pyrantel pamoate
8440                                                                                                                      fipronil, (s)-methoprene
8441                                                                                                                  ivermectin, pyrantel pamoate
8442                                                                                                                  ivermectin, pyrantel pamoate
8443                                                                                                                      fipronil, (s)-methoprene
8444                                                                                                                                    fluoxetine
8445                                                                                                                                     carprofen
8446                                                                                                                                    ivermectin
8447                                                                                                                                   doxycycline
8448                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8449                                                                                                                hydrocortisone, troleandomycin
8450                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8451                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8452                                                                                                            amoxicillin, clavulanate potassium
8453                                                                                                                              milbemycin oxime
8454                                                                                                                              milbemycin oxime
8455                                                                                                                          cefpodoxime proxetil
8456                                                                                                                                   oclacitinib
8457                                                                                                                          cefpodoxime proxetil
8458                                                                                                                                   oclacitinib
8459                                                                                                                                 metronidazole
8460                                                                                                                                     probiotic
8461                                                                                                                              milbemycin oxime
8462                                                                                                                                 metronidazole
8463                                                                                                                  ivermectin, pyrantel pamoate
8464                                                                                                                                     carprofen
8465                                                                                                                   lufenuron, milbemycin oxime
8466                                                                                                                   lufenuron, milbemycin oxime
8467                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8468                                                                                                                          cefpodoxime proxetil
8469                                                                                                                                    prednisone
8470                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8471                                                                                                                          cefpodoxime proxetil
8472                                                                                                                                    prednisone
8473                                                                                                                       triamcinolone acetonide
8474                                                                                                                          cefpodoxime proxetil
8475                                                                                                                       chlorhexidine gluconate
8476                                                                                                                                    afoxolaner
8477                                                                                                                                    loratadine
8478                                                                                                                       chlorhexidine gluconate
8479                                                                                                                       triamcinolone acetonide
8480                                                                                                                                    ivermectin
8481                                                                                                                                    afoxolaner
8482                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8483                                                                                                                                    ivermectin
8484                                                                                                                                    afoxolaner
8485                                                                                                                  ivermectin, pyrantel pamoate
8486                                                                                                                                    afoxolaner
8487                                                                                                                  ivermectin, pyrantel pamoate
8488                                                                                                                                    afoxolaner
8489                                                                                                                                    fluralaner
8490                                                                                                                                     sarolaner
8491                                                                                                                                    moxidectin
8492                                                                                                                                   clindamycin
8493                                                                                                             betamethasone, gentamicin sulfate
8494                                                                                                                                 marbofloxacin
8495                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
8496                                                                                                                                    omeprazole
8497                                                                                                                                    omeprazole
8498                                                                                                                                    famotidine
8499                                                                                                                                metoclopramide
8500                                                                                                                                  flurbiprofen
8501                                                                                                                            maropitant citrate
8502                                                                                                                                    sucralfate
8503                                                                                                                                  capromorelin
8504                                                                                                                                    budesonide
8505                                                                                                                                     probiotic
8506                                                                                                                                    prednisone
8507                                                                                                                                    prednisone
8508                                                                                                            amoxicillin, clavulanate potassium
8509                                                                                                                                     probiotic
8510                                                                                                                                 metronidazole
8511                                                                                                                                     meloxicam
8512                                                                                                                            diethylstilbestrol
8513                                                                                                                               pseudoephedrine
8514                                                                                                                   lufenuron, milbemycin oxime
8515                                                                                                                   lufenuron, milbemycin oxime
8516                                                                                                                   lufenuron, milbemycin oxime
8517                                                                                                                               pseudoephedrine
8518                                                                                                                                       estriol
8519                                                                                                                                  acepromazine
8520                                                                                                                                 hydromorphone
8521                                                                                                                                      propofol
8522                                                                                                                                     midazolam
8523                                                                                                                                     carprofen
8524                                                                                                                                   sevoflurane
8525                                                                                                                                   bupivacaine
8526                                                                                                                                 levothyroxine
8527                                                                                                                                 levothyroxine
8528                                                                                                                milbemycin oxime, praziquantel
8529                                                                                                                                 levothyroxine
8530                                                                                                                               pseudoephedrine
8531                                                                                                                milbemycin oxime, praziquantel
8532                                                                                                                           phenylpropanolamine
8533                                                                                                                                 levothyroxine
8534                                                                                                            amoxicillin, clavulanate potassium
8535                                                                                                                                     toceranib
8536                                                                                                                                     toceranib
8537                                                                                                                                   fluconazole
8538                                                                                                                          cefpodoxime proxetil
8539                                                                                                                                    prednisone
8540                                                                                                                          cefpodoxime proxetil
8541                                                                                                                            miconazole nitrate
8542                                                                                                                                 metronidazole
8543                                                                                                                    milbemycin oxime, spinosad
8544                                                                                                                                     carprofen
8545                                                                                                                                      tramadol
8546                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8547                                                                                                                                    cephalexin
8548                                                                                                                                     carprofen
8549                                                                                                                                   finasteride
8550                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8551                                                                                                                  ivermectin, pyrantel pamoate
8552                                                                                                                                    ivermectin
8553                                                                                                                              milbemycin oxime
8554                                                                                                                              milbemycin oxime
8555                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8556                                                                                                                                       omega 3
8557                                                                                                                                 metronidazole
8558                                                                                                            amoxicillin, clavulanate potassium
8559                                                                                                                                    tobramycin
8560                                                                                                                                    gabapentin
8561                                                                                                                                   telmisartan
8562                                                                                                                                      ursodiol
8563                                                                                                                                    tacrolimus
8564                                                                                                                               apomorphine hcl
8565                                                                                                                            maropitant citrate
8566                                                                                                                          prednisolone acetate
8567                                                                                                            amoxicillin, clavulanate potassium
8568                                                                                                                                    amlodipine
8569                                                                                                                                   clopidogrel
8570                                                                                                                                   ondansetron
8571                                                                                                                                  capromorelin
8572                                                                                                                                      spinosad
8573                                                                                                                              milbemycin oxime
8574                                                                                                                   lufenuron, milbemycin oxime
8575                                                                                                                                  acepromazine
8576                                                                                                                                    cephalexin
8577                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8578                                                                                                                       acetic acid, boric acid
8579                                                                                                                                    prednisone
8580                                                                                                                                  ketoconazole
8581                                                                                              chlorhexidine gluconate, enrofloxacin, tris-edta
8582                                                                                                                   lufenuron, milbemycin oxime
8583                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8584                                                                                                           ear cleaner (zymox), hydrocortisone
8585                                                                                           isoflupredone acetate, neomycin sulfate, tetracaine
8586                                                                                            acetic acid, chlorhexidine gluconate, ketoconazole
8587                                                                                                                   lufenuron, milbemycin oxime
8588                                                                                              chlorhexidine gluconate, enrofloxacin, tris-edta
8589                                                                                                                                    cephalexin
8590                                                                                                                                    prednisone
8591                                                                                                                    milbemycin oxime, spinosad
8592                                                                                                                                       omega 3
8593                                                                                          dexamethasone, enrofloxacin, ketoconazole, tris-edta
8594                                                                                                                                     trazodone
8595                                                                                                                  ivermectin, pyrantel pamoate
8596                                                                                                                                    afoxolaner
8597                                                                                                                    unspecified ear medication
8598                                                                                                        joint supplement (glucosamine hcl/msm)
8599                                                                                                                                  multivitamin
8600                                                                                                                                     vitamin c
8601                                                                                                                                     carprofen
8602                                                                                                                                 metronidazole
8603                                                                                                                                 metronidazole
8604                                                                                                      febantel, praziquantel, pyrantel pamoate
8605                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8606                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8607                                                                                                                    imidacloprid, pyriproxyfen
8608                                                                                                                                   doxycycline
8609                                                                                                                   lufenuron, milbemycin oxime
8610                                                                                                                                     carprofen
8611                                                                                                                                     carprofen
8612                                                                                                                                   doxycycline
8613                                                                                                             betamethasone, gentamicin sulfate
8614                                                                                                                                   doxycycline
8615                                                                                                                              milbemycin oxime
8616                                                                                                                                   doxycycline
8617                                                                                                                                    prednisone
8618                                                                                                                                 metronidazole
8619                                                                                                                                    cephalexin
8620                                                                                                                            maropitant citrate
8621                                                                                                                                     carprofen
8622                                                                                                                                     cefazolin
8623                                                                                                                          cefpodoxime proxetil
8624                                                                                                                                    gabapentin
8625                                                                                                                            maropitant citrate
8626                                                                                                                                     midazolam
8627                                                                                                                          butorphanol tartrate
8628                                                                                                                                  acepromazine
8629                                                                                                                                    alfaxalone
8630                                                                                                                                 buprenorphine
8631                                                                                                                    lactated ringer's solution
8632                                                                                                                                   sevoflurane
8633                                                                                                                                        oxygen
8634                                                                                                                                     carprofen
8635                                                                                                                                     carprofen
8636                                                                                                                                  enrofloxacin
8637                                                                                                                                    gabapentin
8638                                                                                                                                     carprofen
8639                                                                                                                                   doxycycline
8640                                                                                                            joint supplement (glucosamine hcl)
8641                                                                                                                          prebiotic, probiotic
8642                                                                                                                                   terbutaline
8643                                                                                                                                    ivermectin
8644                                                                                                                                 metronidazole
8645                                                                                                                                     cefovecin
8646                                                                                                                                 dexamethasone
8647                                                                                                                          butorphanol tartrate
8648                                                                                                                                      ketamine
8649                                                                                                                                      diazepam
8650                                                                                                                                     carprofen
8651                                                                                                                                     carprofen
8652                                                                                                                                      tramadol
8653                                                                                                                          cefpodoxime proxetil
8654                                                                                                                                 metronidazole
8655                                                                                                                praziquantel, pyrantel pamoate
8656                                                                                                                            maropitant citrate
8657                                                                                                                            maropitant citrate
8658                                                                                                                                 metronidazole
8659                                                                                                                           ear cleaner (zymox)
8660                                                                                                                  ivermectin, pyrantel pamoate
8661                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8662                                                                                                                                    gabapentin
8663                                                                                                                                     carprofen
8664                                                                                                                                    gabapentin
8665                                                                                                                                    grapiprant
8666                                                                                                                                     carprofen
8667                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8668                                                                                                                                    grapiprant
8669                                                                                                                  ivermectin, pyrantel pamoate
8670                                                                                                                          cefpodoxime proxetil
8671                                                                                                                    milbemycin oxime, spinosad
8672                                                                                                                    milbemycin oxime, spinosad
8673                                                                                                                    milbemycin oxime, spinosad
8674                                                                                                                    milbemycin oxime, spinosad
8675                                                                                                                    milbemycin oxime, spinosad
8676                                                                                                                    milbemycin oxime, spinosad
8677                                                                                                                    milbemycin oxime, spinosad
8678                                                                                                                                 metronidazole
8679                                                                                                                                    ivermectin
8680                                                                                                                  ivermectin, pyrantel pamoate
8681                                                                                                                                    cephalexin
8682                                                                                                                                    prednisone
8683                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8684                                                                                                                                    ivermectin
8685                                                                                                                                  ketoconazole
8686                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8687                                                                                                                                    prednisone
8688                                                                                                                                    cephalexin
8689                                                                                                                                    cetirizine
8690                                                                                                                               diphenhydramine
8691                                                                                                                                    cephalexin
8692                                                                                                                          cefpodoxime proxetil
8693                                                                                                                  ivermectin, pyrantel pamoate
8694                                                                                                                      fipronil, (s)-methoprene
8695                                                                                                                               diphenhydramine
8696                                                                                                                                  ketoconazole
8697                                                                                                           allergy immunotherapy - unspecified
8698                                                                                         chlorhexidine gluconate, climbazole, phytosphingosine
8699                                                                                                                            calming supplement
8700                                                                                                                                    ivermectin
8701                                                                                                                  ivermectin, pyrantel pamoate
8702                                                                                                                      fipronil, (s)-methoprene
8703                                                                                                                                  ketoconazole
8704                                                                                                           allergy immunotherapy - unspecified
8705                                                                                                                                    nitenpyram
8706                                                                                                                  ivermectin, pyrantel pamoate
8707                                                                                                                      fipronil, (s)-methoprene
8708                                                                                                                                     meloxicam
8709                                                                                                                                  ketoconazole
8710                                                                                                           allergy immunotherapy - unspecified
8711                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
8712                                                                                                                                       omega 3
8713                                                                                                                            calming supplement
8714                                                                                                                  ivermectin, pyrantel pamoate
8715                                                                                                                                     meloxicam
8716                                                                                                           allergy immunotherapy - unspecified
8717                                                                                                                               diphenhydramine
8718                                                                                                                                       omega 3
8719                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8720                                                                                                                                 marbofloxacin
8721                                                                                                                                     trazodone
8722                                                                                                                                    moxidectin
8723                                                                                                                                  ketoconazole
8724                                                                                                  florfenicol, mometasone furoate, terbinafine
8725                                                                                                                       triamcinolone acetonide
8726                                                                                                                  rx diet - food sensitivities
8727                                                                                                                                     trazodone
8728                                                                                                                                  ketoconazole
8729                                                                                                  florfenicol, mometasone furoate, terbinafine
8730                                                                                                                                    moxidectin
8731                                                                                                                      flumethrin, imidacloprid
8732                                                                                                                                    moxidectin
8733                                                                                                                                 marbofloxacin
8734                                                                                                  florfenicol, mometasone furoate, terbinafine
8735                                                                                                                                     mupirocin
8736                                                                                                         chlorhexidine gluconate, ketoconazole
8737                                                                                                                                 marbofloxacin
8738                                                                                                  florfenicol, mometasone furoate, terbinafine
8739                                                                                                                                     trazodone
8740                                                                                                                                     mupirocin
8741                                                                                                               atropine sulfate, diphenoxylate
8742                                                                                                                                 marbofloxacin
8743                                                                                                                                  ketoconazole
8744                                                                                                                                     mupirocin
8745                                                                                                         chlorhexidine gluconate, ketoconazole
8746                                                                                                                                 marbofloxacin
8747                                                                                                                                    gabapentin
8748                                                                                                                                    gabapentin
8749                                                                                                                                     trazodone
8750                                                                                                                                    gabapentin
8751                                                                                                                                    gabapentin
8752                                                                                                                                     trazodone
8753                                                                                                                                    gabapentin
8754                                                                                                                                    gabapentin
8755                                                                                                                                    gabapentin
8756                                                                                                                              milbemycin oxime
8757                                                                                                                              milbemycin oxime
8758                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8759                                                                                                                    imidacloprid, pyriproxyfen
8760                                                                                                                   lufenuron, milbemycin oxime
8761                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8762                                                                                                                                   clindamycin
8763                                                                                                                                   doxycycline
8764                                                                                                                                   clindamycin
8765                                                                                                                              milbemycin oxime
8766                                                                                                                  ivermectin, pyrantel pamoate
8767                                                                                                         dinotefuran, permethrin, pyriproxyfen
8768                                                                                                                  ivermectin, pyrantel pamoate
8769                                                                                                         dinotefuran, permethrin, pyriproxyfen
8770                                                                                                                  ivermectin, pyrantel pamoate
8771                                                                                                         dinotefuran, permethrin, pyriproxyfen
8772                                                                                                                                     deracoxib
8773                                                                                                                                   oclacitinib
8774                                                                                                                                   oclacitinib
8775                                                                                                                                     deracoxib
8776                                                                                                         dinotefuran, permethrin, pyriproxyfen
8777                                                                                                                  ivermectin, pyrantel pamoate
8778                                                                                                                  ivermectin, pyrantel pamoate
8779                                                                                                         dinotefuran, permethrin, pyriproxyfen
8780                                                                                                                  ivermectin, pyrantel pamoate
8781                                                                                                         dinotefuran, permethrin, pyriproxyfen
8782                                                                                                                                 metronidazole
8783                                                                                                                            maropitant citrate
8784                                                                                                                                   doxycycline
8785                                                                                                                               diphenhydramine
8786                                                                                                                  ivermectin, pyrantel pamoate
8787                                                                                                                        indoxacarb, permethrin
8788                                                                                                                                   minocycline
8789                                                                                                                                     carprofen
8790                                                                                                                  ivermectin, pyrantel pamoate
8791                                                                                                                                    fluralaner
8792                                                                                                                       ketoconazole, tris-edta
8793                                                                                                                                    fluralaner
8794                                                                                                                  ivermectin, pyrantel pamoate
8795                                                                                                                  ivermectin, pyrantel pamoate
8796                                                                                                                                    fluralaner
8797                                                                                                                                    gabapentin
8798                                                                                                                                    gabapentin
8799                                                                                                                                   bedinvetmab
8800                                                                                                                                     carprofen
8801                                                                                                                                   doxycycline
8802                                                                                                                                    gabapentin
8803                                                                                                                                   bedinvetmab
8804                                                                                                                                     carprofen
8805                                                                                                                                    ivermectin
8806                                                                                                                                  fenbendazole
8807                                                                                                                              sulfadimethoxine
8808                                                                                                            fipronil, permethrin, pyriproxyfen
8809                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8810                                                                                                                                    ivermectin
8811                                                                                                                                    cephalexin
8812                                                                                                                                  enrofloxacin
8813                                                                                                                                 metronidazole
8814                                                                                                                                 metronidazole
8815                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
8816                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8817                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
8818                                                                                                                                    ivermectin
8819                                                                                                                  ivermectin, pyrantel pamoate
8820                                                                                                                                    afoxolaner
8821                                                                                                                            maropitant citrate
8822                                                                                                                                    famotidine
8823                                                                                                                                 metronidazole
8824                                                                                                                                    famotidine
8825                                                                                                            amoxicillin, clavulanate potassium
8826                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
8827                                                                                                                                    afoxolaner
8828                                                                                                                  ivermectin, pyrantel pamoate
8829                                                                                                                  ivermectin, pyrantel pamoate
8830                                                                                                                                    afoxolaner
8831                                                                                                                  ivermectin, pyrantel pamoate
8832                                                                                                                  ivermectin, pyrantel pamoate
8833                                                                                                                  ivermectin, pyrantel pamoate
8834                                                                                                                                    cephalexin
8835                                                                                                                                     carprofen
8836                                                                                                                                    cephalexin
8837                                                                                                                                    afoxolaner
8838                                                                                                                                     carprofen
8839                                                                                                                  ivermectin, pyrantel pamoate
8840                                                                                                                  ivermectin, pyrantel pamoate
8841                                                                                                                      fipronil, (s)-methoprene
8842                                                                                                                  ivermectin, pyrantel pamoate
8843                                                                                                                      fipronil, (s)-methoprene
8844                                                                                                                                    ivermectin
8845                                                                                                                                    afoxolaner
8846                                                                                                                                    alprazolam
8847                                                                                                                          cefpodoxime proxetil
8848                                                                                                                                    gabapentin
8849                                                                                                                                     carprofen
8850                                                                                                                          cefpodoxime proxetil
8851                                                                                                                                     probiotic
8852                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8853                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
8854                                                                                                                                     carprofen
8855                                                                                                                                    ivermectin
8856                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8857                                                                                                                                   amoxicillin
8858                                                                                                                                    grapiprant
8859                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8860                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8861                                                                                                                                    cephalexin
8862                                                                                                            unspecified heartworm preventative
8863                                                                                                                                  imidacloprid
8864                                                                                                            unspecified heartworm preventative
8865                                                                                                                  ivermectin, pyrantel pamoate
8866                                                                                                                                    afoxolaner
8867                                                                                                                                    ivermectin
8868                                                                                                                                   oclacitinib
8869                                                                                                                                      spinosad
8870                                                                                                                                 ciprofloxacin
8871                                                                                                                                   clindamycin
8872                                                                                                                          cefpodoxime proxetil
8873                                                                                                                                   fluconazole
8874                                                                                                                                   fluconazole
8875                                                                                                                                    lokivetmab
8876                                                                                                             betamethasone, gentamicin sulfate
8877                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8878                                                                                                                                     meclizine
8879                                                                                                                  ivermectin, pyrantel pamoate
8880                                                                                                                                    ivermectin
8881                                                                                                                              pyrantel pamoate
8882                                                                                                                                    ivermectin
8883                                                                                                                              pyrantel pamoate
8884                                                                                                                          cefpodoxime proxetil
8885                                                                                                                  ivermectin, pyrantel pamoate
8886                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8887                                                                                                                          cefpodoxime proxetil
8888                                                                                                                                    ivermectin
8889                                                                                                                              pyrantel pamoate
8890                                                                                                                  ivermectin, pyrantel pamoate
8891                                                                                                                                 metronidazole
8892                                                                                                                  ivermectin, pyrantel pamoate
8893                                                                                                                                     carprofen
8894                                                                                                                                      tramadol
8895                                                                                                                          prednisolone acetate
8896                                                                                                                                    amantadine
8897                                                                                                                                 methocarbamol
8898                                                                                                                                     trazodone
8899                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
8900                                                                                                                                     carprofen
8901                                                                                                                                     carprofen
8902                                                                                                                                 metronidazole
8903                                                                                                             betamethasone, gentamicin sulfate
8904                                                                                                                                 metronidazole
8905                                                                                                                                 levothyroxine
8906                                                                                                                                 metronidazole
8907                                                                                                                                 levothyroxine
8908                                                                                                                    milbemycin oxime, spinosad
8909                                                                                                                                   amoxicillin
8910                                                                                                                                 metronidazole
8911                                                                                                                   lufenuron, milbemycin oxime
8912                                                                                                                                 levothyroxine
8913                                                                                                                                 levothyroxine
8914                                                                                                                   lufenuron, milbemycin oxime
8915                                                                                                                                 levothyroxine
8916                                                                                                                   lufenuron, milbemycin oxime
8917                                                                                                                                 levothyroxine
8918                                                                                                                   lufenuron, milbemycin oxime
8919                                                                                                                                 levothyroxine
8920                                                                                                                                 levothyroxine
8921                                                                                                                                     carprofen
8922                                                                                                                                 levothyroxine
8923                                                                                                                                    lokivetmab
8924                                                                                                                                l-asparaginase
8925                                                                                                                                    prednisone
8926                                                                                                                                    ivermectin
8927                                                                                                                              pyrantel pamoate
8928                                                                                                                                  praziquantel
8929                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8930                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8931                                                                                                                               diphenhydramine
8932                                                                                                                              milbemycin oxime
8933                                                                                                                                 metronidazole
8934                                                                                                                                    loperamide
8935                                                                                                                              milbemycin oxime
8936                                                                                                                                    fluralaner
8937                                                                                                                              milbemycin oxime
8938                                                                                                                                    fluralaner
8939                                                                                                                                   oclacitinib
8940                                                                                                                              milbemycin oxime
8941                                                                                                                                    fluralaner
8942                                                                                                                                   oclacitinib
8943                                                                                                                              milbemycin oxime
8944                                                                                                                                    fluralaner
8945                                                                                                                                  praziquantel
8946                                                                                                                                   oclacitinib
8947                                                                                                                                 levothyroxine
8948                                                                                                                                 levothyroxine
8949                                                                                                                                   oclacitinib
8950                                                                                                                                   oclacitinib
8951                                                                                                                                 levothyroxine
8952                                                                                                                            maropitant citrate
8953                                                                                                                            maropitant citrate
8954                                                                                                                                    omeprazole
8955                                                                                                                                   oclacitinib
8956                                                                                                                                  capromorelin
8957                                                                                                                                    sucralfate
8958                                                                                                                                    ivermectin
8959                                                                                                                              pyrantel pamoate
8960                                                                                                                                  praziquantel
8961                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8962                                                                                                    ivermectin, praziquantel, pyrantel pamoate
8963                                                                                                                               diphenhydramine
8964                                                                                                                              milbemycin oxime
8965                                                                                                                              milbemycin oxime
8966                                                                                                                                    fluralaner
8967                                                                                                                              milbemycin oxime
8968                                                                                                                                    fluralaner
8969                                                                                                                              milbemycin oxime
8970                                                                                                                                    fluralaner
8971                                                                                                                              milbemycin oxime
8972                                                                                                                                    fluralaner
8973                                                                                                                                  praziquantel
8974                                                                                                                            maropitant citrate
8975                                                                                                                            maropitant citrate
8976                                                                                                                   lufenuron, milbemycin oxime
8977                                                                                                                   lufenuron, milbemycin oxime
8978                                                                                                                   lufenuron, milbemycin oxime
8979                                                                                                                                 metronidazole
8980                                                                                                                            maropitant citrate
8981                                                                                                             trimeprazine tartrate, prednisone
8982                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8983                                                                                                                                    cephalexin
8984                                                                                                             trimeprazine tartrate, prednisone
8985                                                                                                             trimeprazine tartrate, prednisone
8986                                                                                                                                   oclacitinib
8987                                                                                                                                   oclacitinib
8988                                                                                                                  ivermectin, pyrantel pamoate
8989                                                                                                                                   oclacitinib
8990                                                                                                                                     carprofen
8991                                                                                                                                    gabapentin
8992                                                                                               betamethasone, clotrimazole, gentamicin sulfate
8993                                                                                                                  ivermectin, pyrantel pamoate
8994                                                                                                                                   oclacitinib
8995                                                                                                                            miconazole nitrate
8996                                                                                                                                    lokivetmab
8997                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8998                                                                                               dexamethasone, enrofloxacin, miconazole nitrate
8999                                                                                                                                    lokivetmab
9000                                                                                                                                    lokivetmab
9001                                                                                                                                     carprofen
9002                                                                                                                                     carprofen
9003                                                                                                                                    gabapentin
9004                                                                                                                          cefpodoxime proxetil
9005                                                                                                                                    lokivetmab
9006                                                                                                                  ivermectin, pyrantel pamoate
9007                                                                                                                                    lokivetmab
9008                                                                                                                                    lokivetmab
9009                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9010                                                                                                                          cefpodoxime proxetil
9011                                                                                                                                    gabapentin
9012                                                                                                                                     carprofen
9013                                                                                                                          cefpodoxime proxetil
9014                                                                                                                                    lokivetmab
9015                                                                                                                                     carprofen
9016                                                                                                                          cefpodoxime proxetil
9017                                                                                                                                    lokivetmab
9018                                                                                                                                     carprofen
9019                                                                                                                              milbemycin oxime
9020                                                                                                                   lufenuron, milbemycin oxime
9021                                                                                                                                    cephalexin
9022                                                                                                                       triamcinolone acetonide
9023                                                                                                                   lufenuron, milbemycin oxime
9024                                                                                                                                  multivitamin
9025                                                                                                                              milbemycin oxime
9026                                                                                                                milbemycin oxime, praziquantel
9027                                                                                                                               diphenhydramine
9028                                                                                                                                 dexamethasone
9029                                                                                                                               diphenhydramine
9030                                                                                                                                    prednisone
9031                                                                                                                              milbemycin oxime
9032                                                                                                                                    prednisone
9033                                                                                                                                    fluralaner
9034                                                                                                                milbemycin oxime, praziquantel
9035                                                                                                                                  fenbendazole
9036                                                                                                                            methylprednisolone
9037                                                                                                                            maropitant citrate
9038                                                                                                                                    gabapentin
9039                                                                                                                                     meloxicam
9040                                                                                                                                    grapiprant
9041                                                                                                                   lufenuron, milbemycin oxime
9042                                                                                                                   lufenuron, milbemycin oxime
9043                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9044                                                                                                                                  fenbendazole
9045                                                                                                                   lufenuron, milbemycin oxime
9046                                                                                                                   lufenuron, milbemycin oxime
9047                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9048                                                                                                                   lufenuron, milbemycin oxime
9049                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9050                                                                                                                   lufenuron, milbemycin oxime
9051                                                                                                            amoxicillin, clavulanate potassium
9052                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9053                                                                                                                                     probiotic
9054                                                                                                                              milbemycin oxime
9055                                                                                                                  ivermectin, pyrantel pamoate
9056                                                                                                                milbemycin oxime, praziquantel
9057                                                                                                                                    cephalexin
9058                                                                                                                                     carprofen
9059                                                                                                                                 metronidazole
9060                                                                                                                  ivermectin, pyrantel pamoate
9061                                                                                                                                     carprofen
9062                                                                                                                          cefpodoxime proxetil
9063                                                                                                     neomycin sulfate, polymyxin b, gramicidin
9064                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9065                                                                                                                                    sucralfate
9066                                                                                                                                    famotidine
9067                                                                                                                                      tramadol
9068                                                                                                                                   amoxicillin
9069                                                                                                                                     carprofen
9070                                                                                                                  ivermectin, pyrantel pamoate
9071                                                                                                                                    fluralaner
9072                                                                                                                                   doxycycline
9073                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9074                                                                                                            amoxicillin, clavulanate potassium
9075                                                                                                                              milbemycin oxime
9076                                                                                                                                    fluralaner
9077                                                                                                                                  enrofloxacin
9078                                                                                                                              milbemycin oxime
9079                                                                                                                                    fluralaner
9080                                                                                                                                   doxycycline
9081                                                                                                                                    lokivetmab
9082                                                                                                                                   telmisartan
9083                                                                                                                                   telmisartan
9084                                                                                                                        unspecified medication
9085                                                                                                                                     cefazolin
9086                                                                                                                                    gabapentin
9087                                                                                                                            maropitant citrate
9088                                                                                                                                      fentanyl
9089                                                                                                                                  enrofloxacin
9090                                                                                                                                   telmisartan
9091                                                                                                                                     ofloxacin
9092                                                                                                                                   doxycycline
9093                                                                                                                                    prednisone
9094                                                                                                                    milbemycin oxime, spinosad
9095                                                                                                                  ivermectin, pyrantel pamoate
9096                                                                                                                                  cyclosporine
9097                                                                                                                                  cyclosporine
9098                                                                                                                  ivermectin, pyrantel pamoate
9099                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9100                                                                                                                                     probiotic
9101                                                                                                                                       omega 3
9102                                                                                                                                  cyclosporine
9103                                                                                                                                  fenbendazole
9104                                                                                                                                    budesonide
9105                                                                                                                                    ivermectin
9106                                                                                                            fipronil, permethrin, pyriproxyfen
9107                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9108                                                                                                                                   doxycycline
9109                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9110                                                                                                                                     firocoxib
9111                                                                                                                                   amoxicillin
9112                                                                                                                                 metronidazole
9113                                                                                                                                    cephalexin
9114                                                                                                                                    prednisone
9115                                                                                                                                    prednisone
9116                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9117                                                                                                                                   doxycycline
9118                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9119                                                                                                                                    prednisone
9120                                                                                                                                    ivermectin
9121                                                                                                                                    afoxolaner
9122                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9123                                                                                                                                       omega 3
9124                                                                                                                                     probiotic
9125                                                                                                                                    cephalexin
9126                                                                                                                                    prednisone
9127                                                                                                                  ivermectin, pyrantel pamoate
9128                                                                                                                                    afoxolaner
9129                                                                                                mometasone furoate, orbifloxacin, posaconazole
9130                                                                                                                  ivermectin, pyrantel pamoate
9131                                                                                                                                    afoxolaner
9132                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9133                                                                                                                                     probiotic
9134                                                                                                                                       omega 3
9135                                                                                                                                 metronidazole
9136                                                                                                              burow's solution, hydrocortisone
9137                                                                                                                          cefpodoxime proxetil
9138                                                                                                                  ivermectin, pyrantel pamoate
9139                                                                                                                                    afoxolaner
9140                                                                                                                  ivermectin, pyrantel pamoate
9141                                                                                                                                    afoxolaner
9142                                                                                                                                    ivermectin
9143                                                                                                                                    afoxolaner
9144                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9145                                                                                                                                     probiotic
9146                                                                                                                                  fenbendazole
9147                                                                                                                                 metronidazole
9148                                                                                                                                 levothyroxine
9149                                                                                                                          cefpodoxime proxetil
9150                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9151                                                                                                                                     firocoxib
9152                                                                                                                          cefpodoxime proxetil
9153                                                                                                                                 metronidazole
9154                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9155                                                                                                                                   hydroxyzine
9156                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9157                                                                                                                                     carprofen
9158                                                                                                                      fipronil, (s)-methoprene
9159                                                                                                                  ivermectin, pyrantel pamoate
9160                                                                                                                      fipronil, (s)-methoprene
9161                                                                                                                  ivermectin, pyrantel pamoate
9162                                                                                                                          cefpodoxime proxetil
9163                                                                                                                  ivermectin, pyrantel pamoate
9164                                                                                                            fipronil, permethrin, pyriproxyfen
9165                                                                                                                            calming supplement
9166                                                                                                                              milbemycin oxime
9167                                                                                                        fipronil, pyriproxyfen, (s)-methoprene
9168                                                                                                                                     thyroxine
9169                                                                                                                                     trazodone
9170                                                                                                                              milbemycin oxime
9171                                                                                                                              milbemycin oxime
9172                                                                                                                                     sarolaner
9173                                                                                                                                 levothyroxine
9174                                                                                                                                     trazodone
9175                                                                                                                                     carprofen
9176                                                                                                                                     carprofen
9177                                                                                                                                 levothyroxine
9178                                                                                                                                     trazodone
9179                                                                                                                                     carprofen
9180                                                                                                                  ivermectin, pyrantel pamoate
9181                                                                                                                                     probiotic
9182                                                                                                                                      tramadol
9183                                                                                                                                     carprofen
9184                                                                                                                                 methocarbamol
9185                                                                                                                                     carprofen
9186                                                                                                                                      tramadol
9187                                                                                                             betamethasone, gentamicin sulfate
9188                                                                                                                                   oclacitinib
9189                                                                                                                  ivermectin, pyrantel pamoate
9190                                                                                                                            maropitant citrate
9191                                                                                                                          cefpodoxime proxetil
9192                                                                                                                                 methocarbamol
9193                                                                                                                                     probiotic
9194                                                                                                                            maropitant citrate
9195                                                                                                                              tylosin tartrate
9196                                                                                                                                    famotidine
9197                                                                                                                          digestive supplement
9198                                                                                                                  ivermectin, pyrantel pamoate
9199                                                                                                                      flumethrin, imidacloprid
9200                                                                                                                  ivermectin, pyrantel pamoate
9201                                                                                                             allergy immunotherapy - injection
9202                                                                                                                  ivermectin, pyrantel pamoate
9203                                                                                                             allergy immunotherapy - injection
9204                                                                                                                                   oclacitinib
9205                                                                                                                          cefpodoxime proxetil
9206                                                                                                                                     carprofen
9207                                                                                                                            maropitant citrate
9208                                                                                                                                       taurine
9209                                                                                                                  ivermectin, pyrantel pamoate
9210                                                                                                                                       taurine
9211                                                                                                                              tylosin tartrate
9212                                                                                                                                    gabapentin
9213                                                                                                                                     carprofen
9214                                                                                                                              tylosin tartrate
9215                                                                                                                                       taurine
9216                                                                                                                                    gabapentin
9217                                                                                                                                     carprofen
9218                                                                                                                                    amantadine
9219                                                                                                                polysulfated glycosaminoglycan
9220                                                                                                                                       taurine
9221                                                                                                                                     carprofen
9222                                                                                                                              tylosin tartrate
9223                                                                                                                                    gabapentin
9224                                                                                                                polysulfated glycosaminoglycan
9225                                                                                                                                     trazodone
9226                                                                                                                                     carprofen
9227                                                                                                                                    amantadine
9228                                                                                                                                    pregabalin
9229                                                                                                                               diphenhydramine
9230                                                                                                               ear cleaner (epi-otic advanced)
9231                                                                                                                                    cetirizine
9232                                                                                                                                       menthol
9233                                                                                                                                    cephalexin
9234                                                                                                                               diphenhydramine
9235                                                                                                                                    cephalexin
9236                                                                                                                  ivermectin, pyrantel pamoate
9237                                                                                                                               diphenhydramine
9238                                                                                                  florfenicol, mometasone furoate, terbinafine
9239                                                                                                           allergy immunotherapy - unspecified
9240                                                                                                                unspecified allergy medication
9241                                                                                                                 allergy immunotherapy - drops
9242                                                                                                                  ivermectin, pyrantel pamoate
9243                                                                                                                                 levothyroxine
9244                                                                                                           allergy immunotherapy - unspecified
9245                                                                                                                                 levothyroxine
9246                                                                                                                                    grapiprant
9247                                                                                                                polysulfated glycosaminoglycan
9248                                                                                                                                    grapiprant
9249                                                                                                                  ivermectin, pyrantel pamoate
9250                                                                                                                  ivermectin, pyrantel pamoate
9251                                                                                                                                 levothyroxine
9252                                                                                                                                    ivermectin
9253                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9254                                                                                                                  ivermectin, pyrantel pamoate
9255                                                                                                                                 levothyroxine
9256                                                                                                                                 metronidazole
9257                                                                                                                  ivermectin, pyrantel pamoate
9258                                                                                                                                 levothyroxine
9259                                                                                                                                    afoxolaner
9260                                                                                                                                 metronidazole
9261                                                                                                                                 levothyroxine
9262                                                                                                                                 metronidazole
9263                                                                                                                                 metronidazole
9264                                                                                                                                  fenbendazole
9265                                                                                                                  ivermectin, pyrantel pamoate
9266                                                                                                                  ivermectin, pyrantel pamoate
9267                                                                                                                              milbemycin oxime
9268                                                                                                                                    fluralaner
9269                                                                                                                  ivermectin, pyrantel pamoate
9270                                                                                                                                    fluralaner
9271                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9272                                                                                                                                     carprofen
9273                                                                                                                                   doxycycline
9274                                                                                                                                   guaifenesin
9275                                                                                                                                       omega 3
9276                                                                                                                                    famotidine
9277                                                                                                                                 metronidazole
9278                                                                                                                                 metronidazole
9279                                                                                                                                  acepromazine
9280                                                                                                                                      tramadol
9281                                                                                                                                     deracoxib
9282                                                                                                                                  fenbendazole
9283                                                                                                                          cefpodoxime proxetil
9284                                                                                                                                 metronidazole
9285                                                                                                                              sulfadimethoxine
9286                                                                                                                              sulfadimethoxine
9287                                                                                                                                    ivermectin
9288                                                                                                                              pyrantel pamoate
9289                                                                                                                                     probiotic
9290                                                                                                                    milbemycin oxime, spinosad
9291                                                                                                                                 metronidazole
9292                                                                                                                    milbemycin oxime, spinosad
9293                                                                                                                    milbemycin oxime, spinosad
9294                                                                                                                    milbemycin oxime, spinosad
9295                                                                                                                    milbemycin oxime, spinosad
9296                                                                                                                                   oclacitinib
9297                                                                                                                                       omega 3
9298                                                                                                                                   oclacitinib
9299                                                                                                                    milbemycin oxime, spinosad
9300                                                                                                                                   oclacitinib
9301                                                                                                                                 buprenorphine
9302                                                                                                                                 metronidazole
9303                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9304                                                                                                                                   doxycycline
9305                                                                                                                                    ivermectin
9306                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
9307                                                                                           enrofloxacin, ketoconazole, triamcinolone acetonide
9308                                                                                                                  ivermectin, pyrantel pamoate
9309                                                                                                         dinotefuran, permethrin, pyriproxyfen
9310                                                                                                                  ivermectin, pyrantel pamoate
9311                                                                                                                                    afoxolaner
9312                                                                                                                                    ivermectin
9313                                                                                                                                    afoxolaner
9314                                                                                                                                     carprofen
9315                                                                                                                                     carprofen
9316                                                                                                                                     meloxicam
9317                                                                                                      febantel, praziquantel, pyrantel pamoate
9318                                                                                                                                      tramadol
9319                                                                                                                                     carprofen
9320                                                                                                                  ivermectin, pyrantel pamoate
9321                                                                                                                  ivermectin, pyrantel pamoate
9322                                                                                                                                 marbofloxacin
9323                                                                                                                                      tramadol
9324                                                                                                                                     carprofen
9325                                                                                                                           silver sulfadiazine
9326                                                                                                                  ivermectin, pyrantel pamoate
9327                                                                                                                                   clindamycin
9328                                                                                                                              pyrantel pamoate
9329                                                                                                                                    moxidectin
9330                                                                                                                              pyrantel pamoate
9331                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9332                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9333                                                                                                                                  clomipramine
9334                                                                                                                                      spinosad
9335                                                                                                                                    ivermectin
9336                                                                                                                                    ivermectin
9337                                                                                                                  ivermectin, pyrantel pamoate
9338                                                                                                                          cefpodoxime proxetil
9339                                                                                                                                    grapiprant
9340                                                                                                                                    gabapentin
9341                                                                                                                      homatropine, hydrocodone
9342                                                                                                                                    prednisone
9343                                                                                                                                  acepromazine
9344                                                                                                                              atropine sulfate
9345                                                                                                                         tiletamine, zolazepam
9346                                                                                                                                    cephalexin
9347                                                                                                                           ear cleaner (zymox)
9348                                                                                                                                  enrofloxacin
9349                                                                                                                          cefpodoxime proxetil
9350                                                                                                                                     carprofen
9351                                                                                                                                    moxidectin
9352                                                                                                                          cefpodoxime proxetil
9353                                                                                                                  ivermectin, pyrantel pamoate
9354                                                                                                                                   amoxicillin
9355                                                                                                                                    cephalexin
9356                                                                                                                                     carprofen
9357                                                                                                                                      tramadol
9358                                                                                                                                    prednisone
9359                                                                                                                                   vinblastine
9360                                                                                                                                    omeprazole
9361                                                                                                                  ivermectin, pyrantel pamoate
9362                                                                                                                  ivermectin, pyrantel pamoate
9363                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9364                                                                                                                                   amoxicillin
9365                                                                                                                                     carprofen
9366                                                                                                                  ivermectin, pyrantel pamoate
9367                                                                                                                                    fluralaner
9368                                                                                                                                   amoxicillin
9369                                                                                                                                     carprofen
9370                                                                                                                                    cephalexin
9371                                                                                                                                    gabapentin
9372                                                                                                                                     carprofen
9373                                                                                                                                    cephalexin
9374                                                                                                                                     carprofen
9375                                                                                                                                    cephalexin
9376                                                                                                                                     thyroxine
9377                                                                                                                                     carprofen
9378                                                                                                                                    trilostane
9379                                                                                                                                     thyroxine
9380                                                                                                                                    trilostane
9381                                                                                                                                     thyroxine
9382                                                                                                                  ivermectin, pyrantel pamoate
9383                                                                                                         dinotefuran, permethrin, pyriproxyfen
9384                                                                                                           ear cleaner (zymox), hydrocortisone
9385                                                                                                                           ear cleaner (zymox)
9386                                                                                                                  ivermectin, pyrantel pamoate
9387                                                                                                         dinotefuran, permethrin, pyriproxyfen
9388                                                                                                                               diphenhydramine
9389                                                                                                                                    afoxolaner
9390                                                                                                                  ivermectin, pyrantel pamoate
9391                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9392                                                                                                                  ivermectin, pyrantel pamoate
9393                                                                                                                                    afoxolaner
9394                                                                                                                  ivermectin, pyrantel pamoate
9395                                                                                                                                    afoxolaner
9396                                                                                                                  ivermectin, pyrantel pamoate
9397                                                                                                                                    afoxolaner
9398                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9399                                                                                                                  ivermectin, pyrantel pamoate
9400                                                                                                                                    afoxolaner
9401                                                                                                                                    cephalexin
9402                                                                                                                                     carprofen
9403                                                                                                                                      diazepam
9404                                                                                                                                      ketamine
9405                                                                                                                          butorphanol tartrate
9406                                                                                                                                    isoflurane
9407                                                                                                                                    prednisone
9408                                                                                                                                    cephalexin
9409                                                                                                                                    afoxolaner
9410                                                                                                                  ivermectin, pyrantel pamoate
9411                                                                                                                               diphenhydramine
9412                                                                                                                                     carprofen
9413                                                                                                                         tear stain supplement
9414                                                                                                                                    ivermectin
9415                                                                                                                  ivermectin, pyrantel pamoate
9416                                                                                                                       acetic acid, boric acid
9417                                                                                                                      fipronil, (s)-methoprene
9418                                                                                                                              phytosphingosine
9419                                                                                                                                 marbofloxacin
9420                                                                                                                          cefpodoxime proxetil
9421                                                                                                                      flumethrin, imidacloprid
9422                                                                                                                  ivermectin, pyrantel pamoate
9423                                                                                                                          cefpodoxime proxetil
9424                                                                                                                                   oclacitinib
9425                                                                                                           allergy immunotherapy - unspecified
9426                                                                                                                  ivermectin, pyrantel pamoate
9427                                                                                                                                 metronidazole
9428                                                                                                            amoxicillin, clavulanate potassium
9429                                                                           bacitracin zinc, neomycin sulfate, polymyxin b, unspecified steroid
9430                                                                                                                                     carprofen
9431                                                                                                                          cefpodoxime proxetil
9432                                                                                                                      flumethrin, imidacloprid
9433                                                                                                                  ivermectin, pyrantel pamoate
9434                                                                                                                  ivermectin, pyrantel pamoate
9435                                                                                                             allergy immunotherapy - injection
9436                                                                                                                  ivermectin, pyrantel pamoate
9437                                                                                                                          cefpodoxime proxetil
9438                                                                                                             allergy immunotherapy - injection
9439                                                                                                                                       omega 3
9440                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9441                                                                                                                      urinary tract supplement
9442                                                                                                            amoxicillin, clavulanate potassium
9443                                                                                                                                   amoxicillin
9444                                                                                                                                     carprofen
9445                                                                                                                                   amoxicillin
9446                                                                                                                                    gabapentin
9447                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9448                                                                                                                          cefpodoxime proxetil
9449                                                                                                                                 metronidazole
9450                                                                                                                              sulfadimethoxine
9451                                                                                                                              sulfadimethoxine
9452                                                                                                                  ivermectin, pyrantel pamoate
9453                                                                                                                      fipronil, (s)-methoprene
9454                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9455                                                                                                                  ivermectin, pyrantel pamoate
9456                                                                                                                      fipronil, (s)-methoprene
9457                                                                                                                              pyrantel pamoate
9458                                                                                                                  ivermectin, pyrantel pamoate
9459                                                                                                                                    afoxolaner
9460                                                                                                                  ivermectin, pyrantel pamoate
9461                                                                                                                                    afoxolaner
9462                                                                                                                  ivermectin, pyrantel pamoate
9463                                                                                                                                    afoxolaner
9464                                                                                                                              milbemycin oxime
9465                                                                                                                                    afoxolaner
9466                                                                                                                                    ivermectin
9467                                                                                                                  ivermectin, pyrantel pamoate
9468                                                                                                                                    ivermectin
9469                                                                                                                           phenylpropanolamine
9470                                                                                                                           phenylpropanolamine
9471                                                                                                                  ivermectin, pyrantel pamoate
9472                                                                                                                  ivermectin, pyrantel pamoate
9473                                                                                                                                    cephalexin
9474                                                                                                                  ivermectin, pyrantel pamoate
9475                                                                                                                  ivermectin, pyrantel pamoate
9476                                                                                                                           phenylpropanolamine
9477                                                                                                                                 metronidazole
9478                                                                                                                                  fenbendazole
9479                                                                                                                           phenylpropanolamine
9480                                                                                                                                 levothyroxine
9481                                                                                                                                     carprofen
9482                                                                                                                              tylosin tartrate
9483                                                                                                                              sulfadimethoxine
9484                                                                                                                                 metronidazole
9485                                                                                                                                 metronidazole
9486                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9487                                                                                                                                     meclizine
9488                                                                                                                                 metronidazole
9489                                                                                                                                 metronidazole
9490                                                                                                                                   doxycycline
9491                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9492                                                                                                                 allergy immunotherapy - drops
9493                                                                                                                          cefpodoxime proxetil
9494                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9495                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9496                                                                                                                                    afoxolaner
9497                                                                                                                                    ivermectin
9498                                                                                                                                    afoxolaner
9499                                                                                                                                    fluralaner
9500                                                                                                                                    afoxolaner
9501                                                                                                                                   amoxicillin
9502                                                                                                                                    prednisone
9503                                                                                                                                   doxycycline
9504                                                                                                                                    afoxolaner
9505                                                                                                                  ivermectin, pyrantel pamoate
9506                                                                                                    toothpaste/dental health solution or chews
9507                                                                                                                                    gabapentin
9508                                                                                                                                   doxycycline
9509                                                                                                                                     firocoxib
9510                                                                                                                                   doxycycline
9511                                                                                                            amoxicillin, clavulanate potassium
9512                                                                                                                                   doxycycline
9513                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9514                                                                                                                                    grapiprant
9515                                                                                                             trimeprazine tartrate, prednisone
9516                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9517                                                                                                            amoxicillin, clavulanate potassium
9518                                                                                                                          cefpodoxime proxetil
9519                                                                                                                          prednisolone acetate
9520                                                                                                                                     firocoxib
9521                                                                                                                                    ivermectin
9522                                                                                                                              pyrantel pamoate
9523                                                                                                                                  praziquantel
9524                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9525                                                                                                                                  fenbendazole
9526                                                                                                                            maropitant citrate
9527                                                                                                                                 metronidazole
9528                                                                                                                                     carprofen
9529                                                                                                                                   hydrocodone
9530                                                                                                                                     carprofen
9531                                                                                                                                     carprofen
9532                                                                                                                                     carprofen
9533                                                                                                                                   hydrocodone
9534                                                                                                                                    ivermectin
9535                                                                                                                                    ivermectin
9536                                                                                                                            maropitant citrate
9537                                                                                                                            maropitant citrate
9538                                                                                                                                  acepromazine
9539                                                                                                                              atropine sulfate
9540                                                                                                                                      propofol
9541                                                                                                                                    isoflurane
9542                                                                                                                  ivermectin, pyrantel pamoate
9543                                                                                                                                    ivermectin
9544                                                                                                                                    afoxolaner
9545                                                                                                                  ivermectin, pyrantel pamoate
9546                                                                                                                                    afoxolaner
9547                                                                                                                  ivermectin, pyrantel pamoate
9548                                                                                                                                     sarolaner
9549                                                                                                                                    afoxolaner
9550                                                                                                                                  acepromazine
9551                                                                                                                              atropine sulfate
9552                                                                                                                                      propofol
9553                                                                                                                  ivermectin, pyrantel pamoate
9554                                                                                                                                     carprofen
9555                                                                                                                                    cephalexin
9556                                                                                                                                    isoflurane
9557                                                                                                                                  acepromazine
9558                                                                                                                              atropine sulfate
9559                                                                                                                                      morphine
9560                                                                                                                                      propofol
9561                                                                                                                                 buprenorphine
9562                                                                                                                  ivermectin, pyrantel pamoate
9563                                                                                                                                     carprofen
9564                                                                                                                                     trazodone
9565                                                                                                                            maropitant citrate
9566                                                                                                                                     carprofen
9567                                                                                                                                    grapiprant
9568                                                                                                                                    grapiprant
9569                                                                                                                                   bedinvetmab
9570                                                                                                                                 metronidazole
9571                                                                                                                                 metronidazole
9572                                                                                                                                    cephalexin
9573                                                                                                                                       omega 3
9574                                                                                                                                       omega 3
9575                                                                                                                    milbemycin oxime, spinosad
9576                                                                                                                            maropitant citrate
9577                                                                                                                                 metronidazole
9578                                                                                                                    milbemycin oxime, spinosad
9579                                                                                                                                       omega 3
9580                                                                                                                                 metronidazole
9581                                                                                                                                    prednisone
9582                                                                                                                                    sucralfate
9583                                                                                                                                    famotidine
9584                                                                                                                              milbemycin oxime
9585                                                                                                                          cefpodoxime proxetil
9586                                                                                                                          prednisolone acetate
9587                                                                                                                  ivermectin, pyrantel pamoate
9588                                                                                                                                     tris-edta
9589                                                                                                                                   amoxicillin
9590                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9591                                                                                                                                   amoxicillin
9592                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9593                                                                                                                                     carprofen
9594                                                                                                                                     carprofen
9595                                                                                                                                     carprofen
9596                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9597                                                                                                                                     carprofen
9598                                                                                                                          butorphanol tartrate
9599                                                                                                                               sodium chloride
9600                                                                                                                   lufenuron, milbemycin oxime
9601                                                                                                                                    ivermectin
9602                                                                                                                                     carprofen
9603                                                                                                                                      tramadol
9604                                                                                                                   acepromazine, hydromorphone
9605                                                                                                                            maropitant citrate
9606                                                                                                                                 metronidazole
9607                                                                                                      febantel, praziquantel, pyrantel pamoate
9608                                                                                                                   lufenuron, milbemycin oxime
9609                                                                                                                   lufenuron, milbemycin oxime
9610                                                                                                                                    fluralaner
9611                                                                                                                          cefpodoxime proxetil
9612                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9613                                                                                                             betamethasone, gentamicin sulfate
9614                                                                                                         chlorhexidine gluconate, ketoconazole
9615                                                                                                                   lufenuron, milbemycin oxime
9616                                                                                                                                    fluralaner
9617                                                                                                                   lufenuron, milbemycin oxime
9618                                                                                                                                    fluralaner
9619                                                                                                                   lufenuron, milbemycin oxime
9620                                                                                                                                    fluralaner
9621                                                                                                                   lufenuron, milbemycin oxime
9622                                                                                                                          cefpodoxime proxetil
9623                                                                                                                                     carprofen
9624                                                                                                                          cefpodoxime proxetil
9625                                                                                                                                     carprofen
9626                                                                                                                                 metronidazole
9627                                                                                                                                 metronidazole
9628                                                                                                            amoxicillin, clavulanate potassium
9629                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9630                                                                                                                    milbemycin oxime, spinosad
9631                                                                                                                          cefpodoxime proxetil
9632                                                                                                                    milbemycin oxime, spinosad
9633                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9634                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9635                                                                                                                    milbemycin oxime, spinosad
9636                                                                                                                                   oclacitinib
9637                                                                                                                   clotrimazole, dexamethasone
9638                                                                                                                    milbemycin oxime, spinosad
9639                                                                                                                                   oclacitinib
9640                                                                                                                    milbemycin oxime, spinosad
9641                                                                                                                    milbemycin oxime, spinosad
9642                                                                                                                                   oclacitinib
9643                                                                                                                    milbemycin oxime, spinosad
9644                                                                                                                                   oclacitinib
9645                                                                                                                                   oclacitinib
9646                                                                                                                          cefpodoxime proxetil
9647                                                                                                                                   oclacitinib
9648                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9649                                                                                                                                    lokivetmab
9650                                                                                                                                   oclacitinib
9651                                                                                                                                   doxycycline
9652                                                                                                                                    prednisone
9653                                                                                                            amoxicillin, clavulanate potassium
9654                                                                                                                                 metronidazole
9655                                                                                                                                  multivitamin
9656                                                                                                                                     ponazuril
9657                                                                                                         dinotefuran, permethrin, pyriproxyfen
9658                                                                                                                                    ivermectin
9659                                                                                                         dinotefuran, permethrin, pyriproxyfen
9660                                                                                                                  ivermectin, pyrantel pamoate
9661                                                                                                                                   doxycycline
9662                                                                                                         dinotefuran, permethrin, pyriproxyfen
9663                                                                                                                  ivermectin, pyrantel pamoate
9664                                                                                                                                   doxycycline
9665                                                                                                                                   doxycycline
9666                                                                                                                                   amoxicillin
9667                                                                                                                                 methocarbamol
9668                                                                                                                                     meloxicam
9669                                                                                                                            maropitant citrate
9670                                                                                                                                 metronidazole
9671                                                                                                                                  enrofloxacin
9672                                                                                                                                    sucralfate
9673                                                                                                                  ivermectin, pyrantel pamoate
9674                                                                                                                                    afoxolaner
9675                                                                                                                              liver supplement
9676                                                                                                                                   doxycycline
9677                                                                                                                          cefpodoxime proxetil
9678                                                                                                                                  enrofloxacin
9679                                                                                                                                 metronidazole
9680                                                                                                                                   amoxicillin
9681                                                                                                                                     meloxicam
9682                                                                                                                                 methocarbamol
9683                                                                                                                  ivermectin, pyrantel pamoate
9684                                                                                                         dinotefuran, permethrin, pyriproxyfen
9685                                                                                                                                 levothyroxine
9686                                                                                                                              liver supplement
9687                                                                                                                                 methocarbamol
9688                                                                                                                                     firocoxib
9689                                                                                                                                   doxycycline
9690                                                                                                         platelet-rich plasma (prp) injections
9691                                                                                                                  ivermectin, pyrantel pamoate
9692                                                                                                                                   doxycycline
9693                                                                                                                                   amoxicillin
9694                                                                                                                                 levothyroxine
9695                                                                                                                  ivermectin, pyrantel pamoate
9696                                                                                                                                 levothyroxine
9697                                                                                                                                 levothyroxine
9698                                                                                                                                    sucralfate
9699                                                                                                                                     carprofen
9700                                                                                                                                   doxycycline
9701                                                                                                                                   clindamycin
9702                                                                                                                                     carprofen
9703                                                                                                                          cefpodoxime proxetil
9704                                                                                                                                   amoxicillin
9705                                                                                                                          cefpodoxime proxetil
9706                                                                                                                                 levothyroxine
9707                                                                                                                                     carprofen
9708                                                                                                                                 levothyroxine
9709                                                                                                                                   doxycycline
9710                                                                                                                                     carprofen
9711                                                                                                            amoxicillin, clavulanate potassium
9712                                                                                                                                    ivermectin
9713                                                                                                                          cefpodoxime proxetil
9714                                                                                                                                    cephalexin
9715                                                                                                                          cefpodoxime proxetil
9716                                                                                                                                    cephalexin
9717                                                                                                                  ivermectin, pyrantel pamoate
9718                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9719                                                                                                                                    cephalexin
9720                                                                                                                                    prednisone
9721                                                                                                                                     carprofen
9722                                                                                                                           silver sulfadiazine
9723                                                                                                                  ivermectin, pyrantel pamoate
9724                                                                                                                                   clindamycin
9725                                                                                                            amoxicillin, clavulanate potassium
9726                                                                                                                                    cephalexin
9727                                                                                                                                   oclacitinib
9728                                                                                                                                    cephalexin
9729                                                                                                                  ivermectin, pyrantel pamoate
9730                                                                                                                              milbemycin oxime
9731                                                                                                                                    cephalexin
9732                                                                                                                                   oclacitinib
9733                                                                                                                                    cephalexin
9734                                                                                                                                   oclacitinib
9735                                                                                                                                   doxycycline
9736                                                                                                                                   oclacitinib
9737                                                                                                                                      tramadol
9738                                                                                                                                     carprofen
9739                                                                                                                                    cephalexin
9740                                                                                                                                   oclacitinib
9741                                                                                                                                    cephalexin
9742                                                                                                            amoxicillin, clavulanate potassium
9743                                                                                                                      urinary tract supplement
9744                                                                                                                                     probiotic
9745                                                                                                                                 diphenoxylate
9746                                                                                                            amoxicillin, clavulanate potassium
9747                                                                                                                                 metronidazole
9748                                                                                                                                nitrofurantoin
9749                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9750                                                                                                                                     meloxicam
9751                                                                                                                                    cephalexin
9752                                                                                                                                   clindamycin
9753                                                                                                                              benzoyl peroxide
9754                                                                                                              burow's solution, hydrocortisone
9755                                                                                                                    milbemycin oxime, spinosad
9756                                                                                                                                    ivermectin
9757                                                                                                                    imidacloprid, pyriproxyfen
9758                                                                                                                                    cetirizine
9759                                                                                                                  ivermectin, pyrantel pamoate
9760                                                                                                                    imidacloprid, pyriproxyfen
9761                                                                                                                  ivermectin, pyrantel pamoate
9762                                                                                                                                    alprazolam
9763                                                                                                                                    ivermectin
9764                                                                                                                                    cetirizine
9765                                                                                                                                    afoxolaner
9766                                                                                                                                    ivermectin
9767                                                                                                                                     sarolaner
9768                                                                                                                                 metronidazole
9769                                                                                                                                     carprofen
9770                                                                                                    ivermectin, praziquantel, pyrantel pamoate
9771                                                                                                                                      fipronil
9772                                                                                                                          cefpodoxime proxetil
9773                                                                                                                                     ponazuril
9774                                                                                                                                 metronidazole
9775                                                                                                                                     carprofen
9776                                                                                                                                      tramadol
9777                                                                                                            amoxicillin, clavulanate potassium
9778                                                                                                                                    ivermectin
9779                                                                                                                                  praziquantel
9780                                                                                                                              pyrantel pamoate
9781                                                                                                                                      fipronil
9782                                                                                                                                     carprofen
9783                                                                                                                                   minocycline
9784                                                                                                                                   fluconazole
9785                                                                                                                  ivermectin, pyrantel pamoate
9786                                                                                                                                    famotidine
9787                                                                                                                                 metronidazole
9788                                                                                                                                   amoxicillin
9789                                                                                               betamethasone, clotrimazole, gentamicin sulfate
9790                                                                                                               ear cleaner (epi-otic advanced)
9791                                                                                                                              milbemycin oxime
9792                                                                                                                                      tramadol
9793                                                                                                                                     carprofen
9794                                                                                                                                 metronidazole
9795                                                                                                                                   amoxicillin
9796                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9797                                                                                                                       ketoconazole, tris-edta
9798                                                                                                                                   clindamycin
9799                                                                                                                                  enrofloxacin
9800                                                                                                                              milbemycin oxime
9801                                                                                                                                   doxycycline
9802                                                                                                                                     carprofen
9803                                                                                                                          cefpodoxime proxetil
9804                                                                                                                                  enrofloxacin
9805                                                                                                                                    prednisone
9806                                                                                                            amoxicillin, clavulanate potassium
9807                                                                                                  dexamethasone, neomycin sulfate, polymyxin b
9808                                                                                                                                   latanoprost
9809                                                                                                                                   dorzolamide
9810                                                                                                                                     carprofen
9811                                                                                                                                    cephalexin
9812                                                                                                                                   amoxicillin
9813                                                                                                                                   amoxicillin
9814                                                                                                                                     probiotic
9815                                                                                                                            maropitant citrate
9816                                                                                                                            maropitant citrate
9817                                                                                                                                 metronidazole
9818                                                                                                                                    alprazolam
9819                                                                                                                                    ivermectin
9820                                                                                                                                   amoxicillin
9821                                                                                                                                     probiotic
9822                                                                                                                                       calcium
9823                                                                                                                                     tris-edta
9824                                                                                                                            miconazole nitrate
9825                                                                                                                                     tris-edta
9826                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9827                                                                                                                            miconazole nitrate
9828                                                                                                                                   hydrocodone
9829                                                                                                                                   amoxicillin
9830                                                                                                                                     carprofen
9831                                                                                                                                    cephalexin
9832                                                                                                                                 metronidazole
9833                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9834                                                                                                                                    cephalexin
9835                                                                                                        dexamethasone, ketoconazole, tris-edta
9836                                                                                                                          cefpodoxime proxetil
9837                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9838                                                                                                                                    gabapentin
9839                                                                                                                polysulfated glycosaminoglycan
9840                                                                                                        dexamethasone, ketoconazole, tris-edta
9841                                                                                                                                     meloxicam
9842                                                                                                                                    gabapentin
9843                                                                                                                                        arnica
9844                                                                                                                                     meloxicam
9845                                                                                                            amoxicillin, clavulanate potassium
9846                                                                                                                                    cephalexin
9847                                                                                                                          cefpodoxime proxetil
9848                                                                                                                                 metronidazole
9849                                                                                                                                    gabapentin
9850                                                                                                                                     meloxicam
9851                                                                                                            amoxicillin, clavulanate potassium
9852                                                                                                                          prednisolone acetate
9853                                                                                                                                    prednisone
9854                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9855                                                                                                                                      tramadol
9856                                                                                                                                    cephalexin
9857                                                                                                                                      tramadol
9858                                                                                                                                     carprofen
9859                                                                                                                                     carprofen
9860                                                                                                                                     carprofen
9861                                                                                                                                    cephalexin
9862                                                                                                                                     carprofen
9863                                                                                                                            miconazole nitrate
9864                                                                                                                                    cephalexin
9865                                                                                                             betamethasone, gentamicin sulfate
9866                                                                                                                                    prednisone
9867                                                                                                                                    gabapentin
9868                                                                                                                                     carprofen
9869                                                                                                                          cefpodoxime proxetil
9870                                                                                                                                   clindamycin
9871                                                                                                                                    gabapentin
9872                                                                                                                polysulfated glycosaminoglycan
9873                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9874                                                                                                                                     meloxicam
9875                                                                                                                                     carprofen
9876                                                                                                                                    gabapentin
9877                                                                                                                                     carprofen
9878                                                                                                                                 metronidazole
9879                                                                                                                                    gabapentin
9880                                                                                                                polysulfated glycosaminoglycan
9881                                                                                                                                     ponazuril
9882                                                                                                                                  praziquantel
9883                                                                                                                                     carprofen
9884                                                                                                                                  cyclosporine
9885                                                                                                            fipronil, permethrin, pyriproxyfen
9886                                                                                                                  ivermectin, pyrantel pamoate
9887                                                                                                bacitracin zinc, neomycin sulfate, polymyxin b
9888                                                                                                                                  cyclosporine
9889                                                                                                                                    ivermectin
9890                                                                                                            fipronil, permethrin, pyriproxyfen
9891                                                                                                                                  cyclosporine
9892                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9893                                                                                                                                    afoxolaner
9894                                                                                                                              milbemycin oxime
9895                                                                                                                                    afoxolaner
9896                                                                                                                                  cyclosporine
9897                                                                                                                              milbemycin oxime
9898                                                                                                                                    afoxolaner
9899                                                                                                                milbemycin oxime, praziquantel
9900                                                                                                                                       omega 3
9901                                                                                    joint supplement (chondroitin sulfate/glucosamine hcl/msm)
9902                                                                                                                                    afoxolaner
9903                                                                                                                                  cyclosporine
9904                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9905                                                                                                                                       omega 3
9906                                                                                                                                       omega 3
9907                                                                                        joint supplement (chondroitin sulfate/glucosamine hcl)
9908                                                                                                                          cefpodoxime proxetil
9909                                                                                          clotrimazole, gentamicin sulfate, mometasone furoate
9910                                                                                                                                     carprofen
9911                                                                                                            amoxicillin, clavulanate potassium
9912                                                                                                                                 metronidazole
9913                                                                                                                            maropitant citrate
9914                                                                                                                                    famotidine
9915                                                                                                                    milbemycin oxime, spinosad
9916                                                                                                                    imidacloprid, pyriproxyfen
9917                                                                                                                                    ivermectin
9918                                                                                                                                    selamectin
9919                                                                                                                                    cephalexin
9920                                                                                                                                    cetirizine
9921                                                                                                                                    cephalexin
9922                                                                                                                                    cetirizine
9923                                                                                                                                    cephalexin
9924                                                                                                                                 ciprofloxacin
9925                                                                                                                                 ciprofloxacin
9926                                                                                                    dextromethorphan hydrobromide, guaifenesin
9927                                                                                                                                   clindamycin
9928                                                                                                                               dexmedetomidine
9929                                                                                                                                    famotidine
9930                                                                                                                                     carprofen
9931                                                                                                                                    ivermectin
9932                                                                                                                  ivermectin, pyrantel pamoate
9933                                                                                                                                  fenbendazole
9934                                                                                                                                     carprofen
9935                                                                                                                    milbemycin oxime, spinosad
9936                                                                                                      febantel, praziquantel, pyrantel pamoate
9937                                                                                                                                     probiotic
9938                                                                                                                                     probiotic
9939                                                                                                                                 metronidazole
9940                                                                                                                                  fenbendazole
9941                                                                                                                                 metronidazole
9942                                                                                                                          rx diet - gi low fat
9943                                                                                                                    milbemycin oxime, spinosad
9944                                                                                                                    milbemycin oxime, spinosad
9945                                                                                                                  ivermectin, pyrantel pamoate
9946                                                                                                                                    cetirizine
9947                                                                                                                  ivermectin, pyrantel pamoate
9948                                                                                                                                    afoxolaner
9949                                                                                                                  ivermectin, pyrantel pamoate
9950                                                                                                                                    afoxolaner
9951                                                                                                                          cefpodoxime proxetil
9952                                                                                                                                     carprofen
9953                                                                                                                                     carprofen
9954                                                                                                                            diethylstilbestrol
9955                                                                                                                polysulfated glycosaminoglycan
9956                                                                                                                            diethylstilbestrol
9957                                                                                                                                    grapiprant
9958                                                                                                                                   amoxicillin
9959                                                                                                                                    gabapentin
9960                                                                                                                                    ivermectin
9961                                                                                                            fipronil, permethrin, pyriproxyfen
9962                                                                                                                                    ivermectin
9963                                                                                                                      imidacloprid, permethrin
9964                                                                                                                    imidacloprid, pyriproxyfen
9965                                                                                                                  ivermectin, pyrantel pamoate
9966                                                                                                                    imidacloprid, pyriproxyfen
9967                                                                                                                  ivermectin, pyrantel pamoate
9968                                                                                                                    imidacloprid, pyriproxyfen
9969                                                                                                                  ivermectin, pyrantel pamoate
9970                                                                                                                       acetic acid, boric acid
9971                                                                                                                  ivermectin, pyrantel pamoate
9972                                                                                                                    imidacloprid, pyriproxyfen
9973                                                                                                                                     carprofen
9974                                                                                                                  ivermectin, pyrantel pamoate
9975                                                                                                                            maropitant citrate
9976                                                                                                dexamethasone, neomycin sulfate, thiabendazole
9977                                                                                                                              sulfadimethoxine
9978                                                                                                                              pyrantel pamoate
9979                                                                                                                                    ivermectin
9980                                                                                                                          butorphanol tartrate
9981                                                                                                                               diphenhydramine
9982                                                                                                                                      propofol
9983                                                                                                                                    isoflurane
9984                                                                                                                                    famotidine
9985                                                                                                                                     firocoxib
9986                                                                                                                                     mupirocin
9987                                                                                                             betamethasone, gentamicin sulfate
9988                                                                                                                  ivermectin, pyrantel pamoate
9989                                                                                                                                    afoxolaner
9990                                                                                                                            calming supplement
9991                                                                             neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
9992                                                                                                                  ivermectin, pyrantel pamoate
9993                                                                                                                                    afoxolaner
9994                                                                                                                                    cephalexin
9995                                                                                                                                      tramadol
9996                                                                                                                                    alprazolam
9997                                                                                                                            calming supplement
9998                                                                                                                  ivermectin, pyrantel pamoate
9999                                                                                                                                    afoxolaner
10000                                                                                                                              diphenhydramine
10001                                                                                                                 ivermectin, pyrantel pamoate
10002                                                                                                                                   afoxolaner
10003                                                                                                                              diphenhydramine
10004                                                                                                                           maropitant citrate
10005                                                                                                                                   famotidine
10006                                                                                                                              dexmedetomidine
10007                                                                                                                             sulfadimethoxine
10008                                                                                                                             sulfadimethoxine
10009                                                                                                                              diphenhydramine
10010                                                                                                                 ivermectin, pyrantel pamoate
10011                                                                                                                                   afoxolaner
10012                                                                                                                                   cephalexin
10013                                                                                                                                    firocoxib
10014                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10015                                                                                                            betamethasone, gentamicin sulfate
10016                                                                                                                  lufenuron, milbemycin oxime
10017                                                                                                                  lufenuron, milbemycin oxime
10018                                                                                                                                   cephalexin
10019                                                                                                                                  hydroxyzine
10020                                                                                                                                   gabapentin
10021                                                                                                                                    deracoxib
10022                                                                                                           amoxicillin, clavulanate potassium
10023                                                                                                                     flumethrin, imidacloprid
10024                                                                                                                  lufenuron, milbemycin oxime
10025                                                                                                                                  hydroxyzine
10026                                                                                                                  lufenuron, milbemycin oxime
10027                                                                                                                     flumethrin, imidacloprid
10028                                                                                                                  lufenuron, milbemycin oxime
10029                                                                                                                                   cetirizine
10030                                                                                                                   imidacloprid, pyriproxyfen
10031                                                                                                                                   cephalexin
10032                                                                                                                                   cetirizine
10033                                                                                                                                    deracoxib
10034                                                                                                                                   cephalexin
10035                                                                                                                                   cetirizine
10036                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10037                                                                                                                  dexamethasone, ketoconazole
10038                                                                                                                                    deracoxib
10039                                                                                                                                   cephalexin
10040                                                                                                                                   cetirizine
10041                                                                                                                                    deracoxib
10042                                                                                                 florfenicol, mometasone furoate, terbinafine
10043                                                                                                                                   cetirizine
10044                                                                                                                                   gabapentin
10045                                                                                                                       unspecified medication
10046                                                                                                                                  doxycycline
10047                                                                                                                           maropitant citrate
10048                                                                                                                 ivermectin, pyrantel pamoate
10049                                                                                                                               metoclopramide
10050                                                                                                                                  amoxicillin
10051                                                                                                                                   fluoxetine
10052                                                                                                                 ivermectin, pyrantel pamoate
10053                                                                                                                  lufenuron, milbemycin oxime
10054                                                                                                                                    deracoxib
10055                                                                                                                 ivermectin, pyrantel pamoate
10056                                                                                                                 ivermectin, pyrantel pamoate
10057                                                                                                                 ivermectin, pyrantel pamoate
10058                                                                                                                                  amoxicillin
10059                                                                                                                           maropitant citrate
10060                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10061                                                                                                              ear cleaner (epi-otic advanced)
10062                                                                                                                 ivermectin, pyrantel pamoate
10063                                                                                                                     flumethrin, imidacloprid
10064                                                                                                                                  amoxicillin
10065                                                                                                                 ivermectin, pyrantel pamoate
10066                                                                                                                     flumethrin, imidacloprid
10067                                                                                                                                  clindamycin
10068                                                                                                           amoxicillin, clavulanate potassium
10069                                                                                                                                    deracoxib
10070                                                                                                                                marbofloxacin
10071                                                                                                                                    deracoxib
10072                                                                                                                 ivermectin, pyrantel pamoate
10073                                                                                                                                   cephalexin
10074                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10075                                                                                                                                   ivermectin
10076                                                                                                                                    carprofen
10077                                                                                                                 ivermectin, pyrantel pamoate
10078                                                                                                                                metronidazole
10079                                                                                                                                   loperamide
10080                                                                                                                              apomorphine hcl
10081                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10082                                                                                                                 ivermectin, pyrantel pamoate
10083                                                                                                                 ivermectin, pyrantel pamoate
10084                                                                                                                           maropitant citrate
10085                                                                                    activated charcoal, bismuth subsalicylate, kaolin, pectin
10086                                                                                                                 ivermectin, pyrantel pamoate
10087                                                                                                                                marbofloxacin
10088                                                                                                                                   prednisone
10089                                                                                                                                   cephalexin
10090                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10091                                                                                                           amoxicillin, clavulanate potassium
10092                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
10093                                                                                                            betamethasone, gentamicin sulfate
10094                                                                                                                 ormetoprim, sulfadimethoxine
10095                                                                                                                                   prednisone
10096                                                                                                                                   ivermectin
10097                                                                                                                             pyrantel pamoate
10098                                                                                                                                     fipronil
10099                                                                                                              ear cleaner (epi-otic advanced)
10100                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10101                                                                                                                           maropitant citrate
10102                                                                                                                                 acepromazine
10103                                                                                                                                    carprofen
10104                                                                                                                                   ampicillin
10105                                                                                                                             milbemycin oxime
10106                                                                                                                 ivermectin, pyrantel pamoate
10107                                                                                                                     fipronil, (s)-methoprene
10108                                                                                                                 ivermectin, pyrantel pamoate
10109                                                                                                                     fipronil, (s)-methoprene
10110                                                                                                                     fipronil, (s)-methoprene
10111                                                                                                                 ivermectin, pyrantel pamoate
10112                                                                                                                 ivermectin, pyrantel pamoate
10113                                                                                                                     fipronil, (s)-methoprene
10114                                                                                                                                metronidazole
10115                                                                                                                 ivermectin, pyrantel pamoate
10116                                                                                                                     fipronil, (s)-methoprene
10117                                                                                                                         cefpodoxime proxetil
10118                                                                                                                     fipronil, (s)-methoprene
10119                                                                                                                 ivermectin, pyrantel pamoate
10120                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
10121                                                                                                                                    probiotic
10122                                                                                                                                 enrofloxacin
10123                                                                                                                                metronidazole
10124                                                                                                                                metronidazole
10125                                                                                                                                 enrofloxacin
10126                                                                                                                                    probiotic
10127                                                                                                                                    carprofen
10128                                                                                                                         cefpodoxime proxetil
10129                                                                                                                                 enrofloxacin
10130                                                                                                                                     propofol
10131                                                                                                                                buprenorphine
10132                                                                                                                                 acepromazine
10133                                                                                                                             atropine sulfate
10134                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10135                                                                                                                                   gabapentin
10136                                                                                                                                    carprofen
10137                                                                                                                         cefpodoxime proxetil
10138                                                                                                                                   gabapentin
10139                                                                                                                                amitriptyline
10140                                                                                                                                   amantadine
10141                                                                                                               polysulfated glycosaminoglycan
10142                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10143                                                                                                                                      omega 3
10144                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10145                                                                                                                                    carprofen
10146                                                                                                                                   fluoxetine
10147                                                                                                                                methocarbamol
10148                                                                                                                                   gabapentin
10149                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10150                                                                                                                           maropitant citrate
10151                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10152                                                                                                                      triamcinolone acetonide
10153                                                                                                                         cefpodoxime proxetil
10154                                                                                                                                      taurine
10155                                                                                                                                  l-carnitine
10156                                                                                                           amoxicillin, clavulanate potassium
10157                                                                                                                                    carprofen
10158                                                                                                                                metronidazole
10159                                                                                                                                 fenbendazole
10160                                                                                                                                dexamethasone
10161                                                                                                                              diphenhydramine
10162                                                                                                                                dexamethasone
10163                                                                                                                                   prednisone
10164                                                                                                                 ivermectin, pyrantel pamoate
10165                                                                                                                                  amoxicillin
10166                                                                                                           amoxicillin, clavulanate potassium
10167                                                                                                                 ivermectin, pyrantel pamoate
10168                                                                                                                                   cephalexin
10169                                                                                                                                    carprofen
10170                                                                                                                 ivermectin, pyrantel pamoate
10171                                                                                                                                    sarolaner
10172                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10173                                                                                                                                    carprofen
10174                                                                                                                                    carprofen
10175                                                                                                                             milbemycin oxime
10176                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10177                                                                                                           amoxicillin, clavulanate potassium
10178                                                                                                                         cefpodoxime proxetil
10179                                                                                                                                phenobarbital
10180                                                                                                                            potassium bromide
10181                                                                                                                 ivermectin, pyrantel pamoate
10182                                                                                                                                phenobarbital
10183                                                                                                                            potassium bromide
10184                                                                                                                                levetiracetam
10185                                                                                                                                   zonisamide
10186                                                                                                                                metronidazole
10187                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10188                                                                                                            trimeprazine tartrate, prednisone
10189                                                                                                                                  doxycycline
10190                                                                                                                                   cephalexin
10191                                                                                                                                   cephalexin
10192                                                                                                                                     diazepam
10193                                                                                                                                    carprofen
10194                                                                                                                                metronidazole
10195                                                                                                                                metronidazole
10196                                                                                                                                    meloxicam
10197                                                                                                                                   ivermectin
10198                                                                                                                     imidacloprid, permethrin
10199                                                                                                                        clorsulon, ivermectin
10200                                                                                                                                   fluralaner
10201                                                                                                                                    vitamin c
10202                                                                                                       joint supplement (glucosamine hcl/msm)
10203                                                                                                                 ivermectin, pyrantel pamoate
10204                                                                                                                         cefpodoxime proxetil
10205                                                                                                                                    carprofen
10206                                                                                                                                    carprofen
10207                                                                                                                                   prednisone
10208                                                                                                                         cefpodoxime proxetil
10209                                                                                                                 ivermectin, pyrantel pamoate
10210                                                                                                                                   ivermectin
10211                                                                                                                                   ivermectin
10212                                                                                                                               pentoxifylline
10213                                                                                                                         cefpodoxime proxetil
10214                                                                                                                                   prednisone
10215                                                                                                                                    carprofen
10216                                                                                                                                   cetirizine
10217                                                                                                                                   ivermectin
10218                                                                                                                              diphenhydramine
10219                                                                                                                 ivermectin, pyrantel pamoate
10220                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10221                                                                                                                                   prednisone
10222                                                                                                                                    carprofen
10223                                                                                                                                     tramadol
10224                                                                                                                                   famotidine
10225                                                                                                                                   prednisone
10226                                                                                                                                  oclacitinib
10227                                                                                                                                   cetirizine
10228                                                                                                                              diphenhydramine
10229                                                                                                                allergy immunotherapy - drops
10230                                                                                                                 ivermectin, pyrantel pamoate
10231                                                                                                                                   afoxolaner
10232                                                                                                                                   prednisone
10233                                                                                                                              diphenhydramine
10234                                                                                                                                   cetirizine
10235                                                                                                                 ivermectin, pyrantel pamoate
10236                                                                                                                                   afoxolaner
10237                                                                                                                                   lokivetmab
10238                                                                                                                                    carprofen
10239                                                                                                                                   prednisone
10240                                                                                                                                  amoxicillin
10241                                                                                                                                     tramadol
10242                                                                                                                 ivermectin, pyrantel pamoate
10243                                                                                                               polysulfated glycosaminoglycan
10244                                                                                                                                    carprofen
10245                                                                                                                 ivermectin, pyrantel pamoate
10246                                                                                                                                   lokivetmab
10247                                                                                                                                   ivermectin
10248                                                                                                                           maropitant citrate
10249                                                                                                                     fipronil, (s)-methoprene
10250                                                                                                                                   grapiprant
10251                                                                                               dexamethasone, neomycin sulfate, thiabendazole
10252                                                                                                                                   selamectin
10253                                                                                                           amoxicillin, clavulanate potassium
10254                                                                                                                                   ivermectin
10255                                                                                                                             pyrantel pamoate
10256                                                                                                                                 acepromazine
10257                                                                                                                                    firocoxib
10258                                                                                                                                  hydroxyzine
10259                                                                                                                                  hydroxyzine
10260                                                                                                                     flumethrin, imidacloprid
10261                                                                                                                                   fluralaner
10262                                                                                                                                   lokivetmab
10263                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10264                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10265                                                                                                                   musculoskeletal supplement
10266                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10267                                                                                                                           maropitant citrate
10268                                                                                                                                    vitamin b
10269                                                                                                                                   ivermectin
10270                                                                                               mometasone furoate, orbifloxacin, posaconazole
10271                                                                                                                             milbemycin oxime
10272                                                                                                                                   afoxolaner
10273                                                                                                                 ivermectin, pyrantel pamoate
10274                                                                                                                                   afoxolaner
10275                                                                                                                 ivermectin, pyrantel pamoate
10276                                                                                                                                   afoxolaner
10277                                                                                                                             pyrantel pamoate
10278                                                                                                                  lufenuron, milbemycin oxime
10279                                                                                                                             milbemycin oxime
10280                                                                                                                             milbemycin oxime
10281                                                                                                                                    carprofen
10282                                                                                                                                metronidazole
10283                                                                                                                                    probiotic
10284                                                                                                                             pyrantel pamoate
10285                                                                                                                  lufenuron, milbemycin oxime
10286                                                                                                                  lufenuron, milbemycin oxime
10287                                                                                                                             milbemycin oxime
10288                                                                                                                                    carprofen
10289                                                                                               mometasone furoate, orbifloxacin, posaconazole
10290                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10291                                                                                                               polysulfated glycosaminoglycan
10292                                                                                                                             milbemycin oxime
10293                                                                                                       cyphenothrin, fipronil, (s)-methoprene
10294                                                                                                                             milbemycin oxime
10295                                                                                                                                    carprofen
10296                                                                                                                                   cephalexin
10297                                                                                                                         butorphanol tartrate
10298                                                                                                                              dexmedetomidine
10299                                                                                                                  lufenuron, milbemycin oxime
10300                                                                                                           fipronil, permethrin, pyriproxyfen
10301                                                                                                                  lufenuron, milbemycin oxime
10302                                                                                                                         cefpodoxime proxetil
10303                                                                                                                                    carprofen
10304                                                                                                                  lufenuron, milbemycin oxime
10305                                                                                                                                   fluralaner
10306                                                                                                                                metronidazole
10307                                                                                                           amoxicillin, clavulanate potassium
10308                                                                                                                                    carprofen
10309                                                                                                                         cefpodoxime proxetil
10310                                                                                                                                   selamectin
10311                                                                                                                                      omega 3
10312                                                                                                                                   selamectin
10313                                                                                                               praziquantel, pyrantel pamoate
10314                                                                                                           amoxicillin, clavulanate potassium
10315                                                                                                                                 ketoconazole
10316                                                                                                                                ciprofloxacin
10317                                                                                                                                 ketoconazole
10318                                                                                                         amikacin sulfate, miconazole nitrate
10319                                                                                                            dexamethasone, miconazole nitrate
10320                                                                                                           amoxicillin, clavulanate potassium
10321                                                                                                                         cefpodoxime proxetil
10322                                                                                                                                   selamectin
10323                                                                                                                                   selamectin
10324                                                                                                                                   selamectin
10325                                                                                                           amoxicillin, clavulanate potassium
10326                                                                                                           amoxicillin, clavulanate potassium
10327                                                                                                                                  oclacitinib
10328                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
10329                                                                                                                                metronidazole
10330                                                                                                                           maropitant citrate
10331                                                                                                                              diphenhydramine
10332                                                                                                                   milbemycin oxime, spinosad
10333                                                                                                                                   fluralaner
10334                                                                                                                   milbemycin oxime, spinosad
10335                                                                                                                                   fluralaner
10336                                                                                                                   milbemycin oxime, spinosad
10337                                                                                                                                   gabapentin
10338                                                                                                                                    carprofen
10339                                                                                                                                   gabapentin
10340                                                                                                                                    carprofen
10341                                                                                                                   milbemycin oxime, spinosad
10342                                                                                                                   milbemycin oxime, spinosad
10343                                                                                                               sulfamethoxazole, trimethoprim
10344                                                                                                                         cefpodoxime proxetil
10345                                                                                                                           calming supplement
10346                                                                                                                   milbemycin oxime, spinosad
10347                                                                                                                     urinary tract supplement
10348                                                                                                                                magnolia bark
10349                                                                                                            betamethasone, gentamicin sulfate
10350                                                                                                                         cefpodoxime proxetil
10351                                                                                                                   milbemycin oxime, spinosad
10352                                                                                                                     urinary tract supplement
10353                                                                                                                   milbemycin oxime, spinosad
10354                                                                                                                                    carprofen
10355                                                                                                                   milbemycin oxime, spinosad
10356                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10357                                                                                                                                   alprazolam
10358                                                                                                                                   alprazolam
10359                                                                                                                                   fluoxetine
10360                                                                                                                                    carprofen
10361                                                                                                                                  amoxicillin
10362                                                                                                                                   omeprazole
10363                                                                                                                                   grapiprant
10364                                                                                                                                    carprofen
10365                                                                                                                 ivermectin, pyrantel pamoate
10366                                                                                                           fipronil, permethrin, pyriproxyfen
10367                                                                                                                 ivermectin, pyrantel pamoate
10368                                                                                                                 ivermectin, pyrantel pamoate
10369                                                                                                                     fipronil, (s)-methoprene
10370                                                                                                                 ivermectin, pyrantel pamoate
10371                                                                                                                     fipronil, (s)-methoprene
10372                                                                                                                                   ivermectin
10373                                                                                                                     fipronil, (s)-methoprene
10374                                                                                                                 ivermectin, pyrantel pamoate
10375                                                                                                                     fipronil, (s)-methoprene
10376                                                                                                                                    carprofen
10377                                                                                                                                  doxycycline
10378                                                                                                                                    sarolaner
10379                                                                                                               milbemycin oxime, praziquantel
10380                                                                                                                                    carprofen
10381                                                                                                                         cefpodoxime proxetil
10382                                                                                                                                    carprofen
10383                                                                                                                           maropitant citrate
10384                                                                                                                                   cephalexin
10385                                                                                                                                   fluralaner
10386                                                                                                                                   fluralaner
10387                                                                                                                                   fluralaner
10388                                                                                                                                    carprofen
10389                                                                                                                                   fluralaner
10390                                                                                                                                  doxycycline
10391                                                                                                                                  amoxicillin
10392                                                                                                                                  hydroxyzine
10393                                                                                                                                   gabapentin
10394                                                                                                                                     tramadol
10395                                                                                                                                   grapiprant
10396                                                                                                                                  bedinvetmab
10397                                                                                                                                     tramadol
10398                                                                                                                                   grapiprant
10399                                                                                                                                  amoxicillin
10400                                                                                                                                   ivermectin
10401                                                                                                                     fipronil, (s)-methoprene
10402                                                                                                                 ivermectin, pyrantel pamoate
10403                                                                                                                     fipronil, (s)-methoprene
10404                                                                                                                 ivermectin, pyrantel pamoate
10405                                                                                                                     fipronil, (s)-methoprene
10406                                                                                                                 ivermectin, pyrantel pamoate
10407                                                                                                                                   afoxolaner
10408                                                                                                                             milbemycin oxime
10409                                                                                                                             milbemycin oxime
10410                                                                                                               milbemycin oxime, praziquantel
10411                                                                                                                                   afoxolaner
10412                                                                                                                             milbemycin oxime
10413                                                                                                                                   afoxolaner
10414                                                                                                                                    ketorolac
10415                                                                                                                                  doxycycline
10416                                                                                                                         cefpodoxime proxetil
10417                                                                                                                                 chlorambucil
10418                                                                                                                           maropitant citrate
10419                                                                                                                                   prednisone
10420                                                                                                           amoxicillin, clavulanate potassium
10421                                                                                                                                 enrofloxacin
10422                                                                                                                                   ampicillin
10423                                                                                                                           maropitant citrate
10424                                                                                                                                 chlorambucil
10425                                                                                                                                   ivermectin
10426                                                                                                                                     fipronil
10427                                                                                                                   milbemycin oxime, spinosad
10428                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10429                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10430                                                                                                                                   ivermectin
10431                                                                                                                                   afoxolaner
10432                                                                                                                                   selamectin
10433                                                                                                                 ivermectin, pyrantel pamoate
10434                                                                                                                 ivermectin, pyrantel pamoate
10435                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
10436                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
10437                                                                                                                                      aspirin
10438                                                                                                                                    carprofen
10439                                                                                                                                 ketoconazole
10440                                                                                                        ketoconazole, triamcinolone acetonide
10441                                                                                                           chlorhexidine gluconate, ophytrium
10442                                                                                                                                    carprofen
10443                                                                                                                                   cephalexin
10444                                                                                                                                metronidazole
10445                                                                                                            betamethasone, gentamicin sulfate
10446                                                                                                                                    carprofen
10447                                                                                                                                   prednisone
10448                                                                                                                                   cephalexin
10449                                                                                                                                    carprofen
10450                                                                                                                                   prednisone
10451                                                                                                                                  ondansetron
10452                                                                                                                                hydromorphone
10453                                                                                                                                     propofol
10454                                                                                                                                    midazolam
10455                                                                                                                                    carprofen
10456                                                                                                                                metronidazole
10457                                                                                                                                metronidazole
10458                                                                                                                                metronidazole
10459                                                                                                                                metronidazole
10460                                                                                                     febantel, praziquantel, pyrantel pamoate
10461                                                                                                                                  doxycycline
10462                                                                                                                                  doxycycline
10463                                                                                                                                   ampicillin
10464                                                                                                                                 acepromazine
10465                                                                                                            betamethasone, gentamicin sulfate
10466                                                                                                                                    carprofen
10467                                                                                                                           maropitant citrate
10468                                                                                                                                 fenbendazole
10469                                                                                                           chlorhexidine gluconate, tris-edta
10470                                                                                                                                    mupirocin
10471                                                                                                                            hypochlorous acid
10472                                                                                                                                   cephalexin
10473                                                                                                                                    carprofen
10474                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10475                                                                                                                                     spinosad
10476                                                                                                                           miconazole nitrate
10477                                                                                                                   imidacloprid, pyriproxyfen
10478                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10479                                                                                                                                   afoxolaner
10480                                                                                                                 ivermectin, pyrantel pamoate
10481                                                                                                                 ivermectin, pyrantel pamoate
10482                                                                                                                                   afoxolaner
10483                                                                                                                 ivermectin, pyrantel pamoate
10484                                                                                                                                   afoxolaner
10485                                                                                                                                   ivermectin
10486                                                                                                                                   afoxolaner
10487                                                                                                                                   ivermectin
10488                                                                                                           amoxicillin, clavulanate potassium
10489                                                                                                                                    carprofen
10490                                                                                                                                    firocoxib
10491                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10492                                                                                                                                metronidazole
10493                                                                                                                                 fenbendazole
10494                                                                                                                                   sucralfate
10495                                                                                                                                  doxycycline
10496                                                                                                   dextromethorphan hydrobromide, guaifenesin
10497                                                                                                                                    firocoxib
10498                                                                                                                                    firocoxib
10499                                                                                                                             milbemycin oxime
10500                                                                                                                                    firocoxib
10501                                                                                                                 ivermectin, pyrantel pamoate
10502                                                                                                                                  doxycycline
10503                                                                                                                             milbemycin oxime
10504                                                                                                     febantel, praziquantel, pyrantel pamoate
10505                                                                                                                 ivermectin, pyrantel pamoate
10506                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10507                                                                                                                 ivermectin, pyrantel pamoate
10508                                                                                                                 ivermectin, pyrantel pamoate
10509                                                                                                                 ivermectin, pyrantel pamoate
10510                                                                                                                 ivermectin, pyrantel pamoate
10511                                                                                                                 ivermectin, pyrantel pamoate
10512                                                                                                                 ivermectin, pyrantel pamoate
10513                                                                                                                                metronidazole
10514                                                                                                                                   ivermectin
10515                                                                                                                 ivermectin, pyrantel pamoate
10516                                                                                                                 ivermectin, pyrantel pamoate
10517                                                                                                                     fipronil, (s)-methoprene
10518                                                                                                                                amitriptyline
10519                                                                                                                allergy immunotherapy - drops
10520                                                                                                                                  oclacitinib
10521                                                                                                           staphylococcus aureus phage lysate
10522                                                                                                          allergy immunotherapy - unspecified
10523                                                                                                                                  oclacitinib
10524                                                                                                                         cefpodoxime proxetil
10525                                                                                                           staphylococcus aureus phage lysate
10526                                                                                                          allergy immunotherapy - unspecified
10527                                                                                                                                  oclacitinib
10528                                                                                                                         cefpodoxime proxetil
10529                                                                                                                                    mupirocin
10530                                                                                                                     imidacloprid, permethrin
10531                                                                                                                   milbemycin oxime, spinosad
10532                                                                                                                                  oclacitinib
10533                                                                                                                                   lokivetmab
10534                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10535                                                                                                                         cefpodoxime proxetil
10536                                                                                                                                    mupirocin
10537                                                                                                                                  clindamycin
10538                                                                                                                   imidacloprid, pyriproxyfen
10539                                                                                                                             milbemycin oxime
10540                                                                                                                   milbemycin oxime, spinosad
10541                                                                                                                                  oclacitinib
10542                                                                                                                         cefpodoxime proxetil
10543                                                                                                                                   lokivetmab
10544                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10545                                                                                                                             milbemycin oxime
10546                                                                                                                                   cephalexin
10547                                                                                                                                  clindamycin
10548                                                                                                                                   gabapentin
10549                                                                                                                           maropitant citrate
10550                                                                                                                                   lokivetmab
10551                                                                                                                                  oclacitinib
10552                                                                                                                                    carprofen
10553                                                                                                                      triamcinolone acetonide
10554                                                                                                                                   lokivetmab
10555                                                                                                                                    mupirocin
10556                                                                                                                                  oclacitinib
10557                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10558                                                                                                                                   gabapentin
10559                                                                                                                                amitriptyline
10560                                                                                                                                 ketoconazole
10561                                                                                                                                 cyclosporine
10562                                                                                                                                   lokivetmab
10563                                                                                                                         cefpodoxime proxetil
10564                                                                                                                                   cephalexin
10565                                                                                                            betamethasone, gentamicin sulfate
10566                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10567                                                                                                                                 ketoconazole
10568                                                                                                                                amitriptyline
10569                                                                                                                                 cyclosporine
10570                                                                                                                                   gabapentin
10571                                                                                                                                    carprofen
10572                                                                                                                                    carprofen
10573                                                                          betamethasone, clotrimazole, gentamicin sulfate, mometasone furoate
10574                                                                                                                                    carprofen
10575                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10576                                                                                                                              diphenhydramine
10577                                                                                                                                   famotidine
10578                                                                                                                           maropitant citrate
10579                                                                                                                                metronidazole
10580                                                                                                                                  vinblastine
10581                                                                                                                                   fluralaner
10582                                                                                                                                  oclacitinib
10583                                                                                                                   milbemycin oxime, spinosad
10584                                                                                                                 ivermectin, pyrantel pamoate
10585                                                                                                                                   ivermectin
10586                                                                                                                                   afoxolaner
10587                                                                                                                                    carprofen
10588                                                                                                                                   ivermectin
10589                                                                                                                 ivermectin, pyrantel pamoate
10590                                                                                                                 ivermectin, pyrantel pamoate
10591                                                                                                                 ivermectin, pyrantel pamoate
10592                                                                                                                                    carprofen
10593                                                                                                                                   gabapentin
10594                                                                                                        dinotefuran, permethrin, pyriproxyfen
10595                                                                                                                                    carprofen
10596                                                                                                                                   cephalexin
10597                                                                                                               polysulfated glycosaminoglycan
10598                                                                                                                                    meloxicam
10599                                                                                                                                metronidazole
10600                                                                                                                                    meloxicam
10601                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10602                                                                                                           fipronil, permethrin, pyriproxyfen
10603                                                                                                                         cefpodoxime proxetil
10604                                                                                                                         cefpodoxime proxetil
10605                                                                                                                         cefpodoxime proxetil
10606                                                                                                                         cefpodoxime proxetil
10607                                                                                                                                   cephalexin
10608                                                                                                                                     fentanyl
10609                                                                                                                                    meloxicam
10610                                                                                                                 ivermectin, pyrantel pamoate
10611                                                                                                                                  doxycycline
10612                                                                                                                                    carprofen
10613                                                                                                                         cefpodoxime proxetil
10614                                                                                                                         prednisolone acetate
10615                                                                                                           amoxicillin, clavulanate potassium
10616                                                                                                                      menthol, hydrocortisone
10617                                                                                                           fipronil, permethrin, pyriproxyfen
10618                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10619                                                                                                                         cefpodoxime proxetil
10620                                                                                                           amoxicillin, clavulanate potassium
10621                                                                                                                                   prednisone
10622                                                                                                                                  minocycline
10623                                                                                                                                    carprofen
10624                                                                                                                   imidacloprid, pyriproxyfen
10625                                                                                                                 ivermectin, pyrantel pamoate
10626                                                                                                                                   cephalexin
10627                                                                                                                                   cephalexin
10628                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10629                                                                                                                 ivermectin, pyrantel pamoate
10630                                                                                                                                   afoxolaner
10631                                                                                                                 ivermectin, pyrantel pamoate
10632                                                                                                                                    sarolaner
10633                                                                                                                 ivermectin, pyrantel pamoate
10634                                                                                                                                    sarolaner
10635                                                                                                                                    carprofen
10636                                                                                                                                   cephalexin
10637                                                                                                                                    carprofen
10638                                                                                                                 ivermectin, pyrantel pamoate
10639                                                                                                                  lufenuron, milbemycin oxime
10640                                                                                                                                    carprofen
10641                                                                                                                                   cephalexin
10642                                                                                                                      chlorhexidine gluconate
10643                                                                                                                                   gabapentin
10644                                                                                                                                    carprofen
10645                                                                                                                                   cephalexin
10646                                                                                                                                   gabapentin
10647                                                                                                                                    carprofen
10648                                                                                                                                    carprofen
10649                                                                                                                                    carprofen
10650                                                                                                                                  doxycycline
10651                                                                                                                                    deracoxib
10652                                                                                                                                    deracoxib
10653                                                                                                                   milbemycin oxime, spinosad
10654                                                                                                                                   cephalexin
10655                                                                                                                 ivermectin, pyrantel pamoate
10656                                                                                                                                    trazodone
10657                                                                                                                                    trazodone
10658                                                                                                                                    carprofen
10659                                                                                                                                    carprofen
10660                                                                                                                                  clindamycin
10661                                                                                                                  lufenuron, milbemycin oxime
10662                                                                                                                                  amoxicillin
10663                                                                                                                                  amoxicillin
10664                                                                                                                  lufenuron, milbemycin oxime
10665                                                                                                                                   fluralaner
10666                                                                                                                                  amoxicillin
10667                                                                                                                  lufenuron, milbemycin oxime
10668                                                                                                           amoxicillin, clavulanate potassium
10669                                                                                                                  lufenuron, milbemycin oxime
10670                                                                                                                                  amoxicillin
10671                                                                                                                   imidacloprid, pyriproxyfen
10672                                                                                                                                  amoxicillin
10673                                                                                                                                   cephalexin
10674                                                                                                                                yunnan baiyao
10675                                                                                                                                    carprofen
10676                                                                                                                                   gabapentin
10677                                                                                                                 ivermectin, pyrantel pamoate
10678                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10679                                                                                                                                      omega 3
10680                                                                                                                                    carprofen
10681                                                                                                                                     tramadol
10682                                                                                                                             pyrantel pamoate
10683                                                                                                                  lufenuron, milbemycin oxime
10684                                                                                                                  lufenuron, milbemycin oxime
10685                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10686                                                                                                                                      omega 3
10687                                                                                                                                 multivitamin
10688                                                                                                                                  coconut oil
10689                                                                                                                  lufenuron, milbemycin oxime
10690                                                                                                                                   cephalexin
10691                                                                                                                                ciprofloxacin
10692                                                                                                                          ear cleaner (zymox)
10693                                                                                                                                   cetirizine
10694                                                                                                                  lufenuron, milbemycin oxime
10695                                                                                                                                   cetirizine
10696                                                                                                                          ear cleaner (zymox)
10697                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10698                                                                                                           amoxicillin, clavulanate potassium
10699                                                                                                                                   famotidine
10700                                                                                                                 ivermectin, pyrantel pamoate
10701                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10702                                                                                                                                      omega 3
10703                                                                                                                                    carprofen
10704                                                                                                                                     tramadol
10705                                                                                                           amoxicillin, clavulanate potassium
10706                                                                                                                             pyrantel pamoate
10707                                                                                                                  lufenuron, milbemycin oxime
10708                                                                                                                                     tramadol
10709                                                                                                                         cefpodoxime proxetil
10710                                                                                                                                    carprofen
10711                                                                                                                  lufenuron, milbemycin oxime
10712                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10713                                                                                                                                      omega 3
10714                                                                                                                                 multivitamin
10715                                                                                                                                  coconut oil
10716                                                                                                                                    carprofen
10717                                                                                                                  lufenuron, milbemycin oxime
10718                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10719                                                                                                                                    carprofen
10720                                                                                                                                      calcium
10721                                                                                                                                     oxytocin
10722                                                                                                                                    carprofen
10723                                                                                                                                hydromorphone
10724                                                                                                                                     propofol
10725                                                                                                                  lufenuron, milbemycin oxime
10726                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
10727                                                                                                                       unspecified medication
10728                                                                                                                              dexmedetomidine
10729                                                                                                                         butorphanol tartrate
10730                                                                                                                                 acepromazine
10731                                                                                                                                  atipamezole
10732                                                                                                           amoxicillin, clavulanate potassium
10733                                                                                                                                   gabapentin
10734                                                                                                                                    carprofen
10735                                                                                                                           maropitant citrate
10736                                                                                                                                metronidazole
10737                                                                                                                                    carprofen
10738                                                                                                                                    carprofen
10739                                                                                                                                levothyroxine
10740                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
10741                                                                                                                                   cephalexin
10742                                                                                                                                levothyroxine
10743                                                                                                                      chlorhexidine gluconate
10744                                                                                                                 ivermectin, pyrantel pamoate
10745                                                                                                                 ivermectin, pyrantel pamoate
10746                                                                                                                 ivermectin, pyrantel pamoate
10747                                                                                                                           maropitant citrate
10748                                                                                                                 ivermectin, pyrantel pamoate
10749                                                                                                           amoxicillin, clavulanate potassium
10750                                                                                                            enrofloxacin, silver sulfadiazine
10751                                                                                                               ketoconazole, phytosphingosine
10752                                                                                                               ketoconazole, phytosphingosine
10753                                                                                                            betamethasone, gentamicin sulfate
10754                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10755                                                                                                                 ivermectin, pyrantel pamoate
10756                                                                                                                                   ivermectin
10757                                                                                                                 ivermectin, pyrantel pamoate
10758                                                                                                                     fipronil, (s)-methoprene
10759                                                                                                                     fipronil, (s)-methoprene
10760                                                                                                                 ivermectin, pyrantel pamoate
10761                                                                                                                     fipronil, (s)-methoprene
10762                                                                                                                 ivermectin, pyrantel pamoate
10763                                                                                                           amoxicillin, clavulanate potassium
10764                                                                                                                                    carprofen
10765                                                                                                                                   ivermectin
10766                                                                                                                                   ivermectin
10767                                                                                                                                metronidazole
10768                                                                                                                               chlorphenamine
10769                                                                                                                 ivermectin, pyrantel pamoate
10770                                                                                                                 ivermectin, pyrantel pamoate
10771                                                                                                                                   afoxolaner
10772                                                                                                                                    sarolaner
10773                                                                                                                 ivermectin, pyrantel pamoate
10774                                                                                              betamethasone, clotrimazole, gentamicin sulfate
10775                                                                                                                                   grapiprant
10776                                                                                                                                    oxycodone
10777                                                                                                                                  clindamycin
10778                                                                                                            betamethasone, gentamicin sulfate
10779                                                                                                           amoxicillin, clavulanate potassium
10780                                                                                                                 ivermectin, pyrantel pamoate
10781                                                                                                                                   afoxolaner
10782                                                                                                                                  clindamycin
10783                                                                                                                                    oxycodone
10784                                                                                                                                metronidazole
10785                                                                                                           amoxicillin, clavulanate potassium
10786                                                                                                                                    cefazolin
10787                                                                                                                                   lokivetmab
10788                                                                                                                                hydromorphone
10789                                                                                                                         butorphanol tartrate
10790                                                                                                                                 acepromazine
10791                                                                                                                                     propofol
10792                                                                                                                 ivermectin, pyrantel pamoate
10793                                                                                                                             pyrantel pamoate
10794                                                                                                                 ivermectin, pyrantel pamoate
10795                                                                                                                 ivermectin, pyrantel pamoate
10796                                                                                                                 ivermectin, pyrantel pamoate
10797                                                                                                                             pyrantel pamoate
10798                                                                                                                         cefpodoxime proxetil
10799                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10800                                                                                                                                   lokivetmab
10801                                                                                                                             pyrantel pamoate
10802                                                                                                                                    carprofen
10803                                                                                                                         cefpodoxime proxetil
10804                                                                                                                                   lokivetmab
10805                                                                                                                                    carprofen
10806                                                                                                                         cefpodoxime proxetil
10807                                                                                                                                   lokivetmab
10808                                                                                                                           maropitant citrate
10809                                                                                                                                    carprofen
10810                                                                                                                         cefpodoxime proxetil
10811                                                                                                                                   gabapentin
10812                                                                                                                                   lokivetmab
10813                                                                                                                                buprenorphine
10814                                                                                                                                    carprofen
10815                                                                                                                                   cephalexin
10816                                                                                                                         cefpodoxime proxetil
10817                                                                                                                                   trilostane
10818                                                                                                                                    carprofen
10819                                                                                                                  lufenuron, milbemycin oxime
10820                                                                                                                 ivermectin, pyrantel pamoate
10821                                                                                                                                    carprofen
10822                                                                                                                                   cephalexin
10823                                                                                                                                ciprofloxacin
10824                                                                                                                                   moxidectin
10825                                                                                                                     flumethrin, imidacloprid
10826                                                                                                                 ivermectin, pyrantel pamoate
10827                                                                                                                     flumethrin, imidacloprid
10828                                                                                                                                  oclacitinib
10829                                                                                                                                   cephalexin
10830                                                                                                                 ivermectin, pyrantel pamoate
10831                                                                                                                                    carprofen
10832                                                                                                                                  oclacitinib
10833                                                                                                                                   cephalexin
10834                                                                                                                                   cephalexin
10835                                                                                                                                  oclacitinib
10836                                                                                                                                    carprofen
10837                                                                                                           amoxicillin, clavulanate potassium
10838                                                                                                                                  oclacitinib
10839                                                                                                                                    carprofen
10840                                                                                                                 ivermectin, pyrantel pamoate
10841                                                                                                            trimeprazine tartrate, prednisone
10842                                                                                                                 ivermectin, pyrantel pamoate
10843                                                                                                                                   selamectin
10844                                                                                                            trimeprazine tartrate, prednisone
10845                                                                                                                                 ketoconazole
10846                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10847                                                                                                                                 fenbendazole
10848                                                                                                                                  oclacitinib
10849                                                                                                                 ivermectin, pyrantel pamoate
10850                                                                                                                                   fluralaner
10851                                                                                                        dinotefuran, permethrin, pyriproxyfen
10852                                                                                                                              diphenhydramine
10853                                                                                                                                      amitraz
10854                                                                                                                 ivermectin, pyrantel pamoate
10855                                                                                                                                   moxidectin
10856                                                                                                                                levetiracetam
10857                                                                                                                 ivermectin, pyrantel pamoate
10858                                                                                                                     fipronil, (s)-methoprene
10859                                                                                                                          phenylpropanolamine
10860                                                                                                                 ivermectin, pyrantel pamoate
10861                                                                                                           fipronil, permethrin, pyriproxyfen
10862                                                                                                                          phenylpropanolamine
10863                                                                                                            betamethasone, gentamicin sulfate
10864                                                                                                                                   cephalexin
10865                                                                                                                 ivermectin, pyrantel pamoate
10866                                                                                                           fipronil, permethrin, pyriproxyfen
10867                                                                                                                          phenylpropanolamine
10868                                                                                                                  lufenuron, milbemycin oxime
10869                                                                                                                     fipronil, (s)-methoprene
10870                                                                                                                  lufenuron, milbemycin oxime
10871                                                                                                                     fipronil, (s)-methoprene
10872                                                                                                                          phenylpropanolamine
10873                                                                                                                                    carprofen
10874                                                                                                                  lufenuron, milbemycin oxime
10875                                                                                                                     fipronil, (s)-methoprene
10876                                                                                                                          phenylpropanolamine
10877                                                                                                                 ivermectin, pyrantel pamoate
10878                                                                                                                                   afoxolaner
10879                                                                                                                                      taurine
10880                                                                                                                                      omega 3
10881                                                                                                                                metronidazole
10882                                                                                                                           maropitant citrate
10883                                                                                                                                    carprofen
10884                                                                                                                                      taurine
10885                                                                                                                                      omega 3
10886                                                                                                                 ivermectin, pyrantel pamoate
10887                                                                                                                              diphenhydramine
10888                                                                                                                 ivermectin, pyrantel pamoate
10889                                                                                                                     fipronil, (s)-methoprene
10890                                                                                                                 ivermectin, pyrantel pamoate
10891                                                                                                                 ivermectin, pyrantel pamoate
10892                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10893                                                                                                                 ivermectin, pyrantel pamoate
10894                                                                                                                                     tramadol
10895                                                                                                                                    carprofen
10896                                                                                               mometasone furoate, orbifloxacin, posaconazole
10897                                                                                                                 ivermectin, pyrantel pamoate
10898                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10899                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10900                                                                                                                 ivermectin, pyrantel pamoate
10901                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10902                                                                                                                                    carprofen
10903                                                                                                                                ciprofloxacin
10904                                                                                                                               chlorphenamine
10905                                                                                                            betamethasone, gentamicin sulfate
10906                                                                                                                                metronidazole
10907                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10908                                                                                                                                    firocoxib
10909                                                                                                                                   cephalexin
10910                                                                                                               polysulfated glycosaminoglycan
10911                                                                                                                                  bedinvetmab
10912                                                                                                                                    firocoxib
10913                                                                                                   ivermectin, praziquantel, pyrantel pamoate
10914                                                                                                                                    carprofen
10915                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
10916                                                                                                              ear cleaner (epi-otic advanced)
10917                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
10918                                                                                                                                   cephalexin
10919                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10920                                                                                                                                    carprofen
10921                                                                                                                                 fenbendazole
10922                                                                                                                                 azathioprine
10923                                                                                                                                  doxycycline
10924                                                                                                                                   prednisone
10925                                                                                                                                  clindamycin
10926                                                                                                                                dexamethasone
10927                                                                                                                   milbemycin oxime, spinosad
10928                                                                                                                                   afoxolaner
10929                                                                                                                 ivermectin, pyrantel pamoate
10930                                                                                                                                   afoxolaner
10931                                                                                                                 ivermectin, pyrantel pamoate
10932                                                                                                                                   afoxolaner
10933                                                                                                                                   ivermectin
10934                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
10935                                                                                                               sulfamethoxazole, trimethoprim
10936                                                                                                                  lufenuron, milbemycin oxime
10937                                                                                                                     urinary tract supplement
10938                                                                                                                             milbemycin oxime
10939                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
10940                                                                                                                                    carprofen
10941                                                                                                                 ivermectin, pyrantel pamoate
10942                                                                                                                                  amoxicillin
10943                                                                                                                                    carprofen
10944                                                                                                                                   cephalexin
10945                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
10946                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
10947                                                                                                                 ivermectin, pyrantel pamoate
10948                                                                                                                     fipronil, (s)-methoprene
10949                                                                                                                 ivermectin, pyrantel pamoate
10950                                                                                                                     fipronil, (s)-methoprene
10951                                                                                                                              diphenhydramine
10952                                                                                                                 ivermectin, pyrantel pamoate
10953                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10954                                                                                                                 ivermectin, pyrantel pamoate
10955                                                                                                                                   afoxolaner
10956                                                                                                                 ivermectin, pyrantel pamoate
10957                                                                                                                                   afoxolaner
10958                                                                                                                 ivermectin, pyrantel pamoate
10959                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
10960                                                                                                                                metronidazole
10961                                                                                                                                   pimobendan
10962                                                                                                                               benazepril hcl
10963                                                                                                                                   furosemide
10964                                                                                                                               spironolactone
10965                                                                                                                                   mexiletine
10966                                                                                                                             milbemycin oxime
10967                                                                                                                                   fluralaner
10968                                                                                                                             milbemycin oxime
10969                                                                                                                                   fluralaner
10970                                                                                                                             milbemycin oxime
10971                                                                                                                                   fluralaner
10972                                                                                                                                   cephalexin
10973                                                                                                                                 fenbendazole
10974                                                                                                                                    probiotic
10975                                                                                                                                    carprofen
10976                                                                                                                              dexmedetomidine
10977                                                                                                                                hydromorphone
10978                                                                                                                                     propofol
10979                                                                                                                                  bupivacaine
10980                                                                                                                                   isoflurane
10981                                                                                                                                    carprofen
10982                                                                                                                                    carprofen
10983                                                                                                                                   cephalexin
10984                                                                                                                                  pilocarpine
10985                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10986                                                                                                                                    carprofen
10987                                                                                                                                  clindamycin
10988                                                                                                                                metronidazole
10989                                                                                                                                    probiotic
10990                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
10991                                                                                                                                    carprofen
10992                                                                                                                                    carprofen
10993                                                                                                           amoxicillin, clavulanate potassium
10994                                                                                                                     imidacloprid, moxidectin
10995                                                                                                                                     oxytocin
10996                                                                                                                                  amoxicillin
10997                                                                                                                 ivermectin, pyrantel pamoate
10998                                                                                                                     fipronil, (s)-methoprene
10999                                                                                                                                ciprofloxacin
11000                                                                                                                 ivermectin, pyrantel pamoate
11001                                                                                                                                  amoxicillin
11002                                                                                                                 afoxolaner, milbemycin oxime
11003                                                                                                                 afoxolaner, milbemycin oxime
11004                                                                                                                                metronidazole
11005                                                                                                                             tylosin tartrate
11006                                                                                                                                   ivermectin
11007                                                                                                                                   ivermectin
11008                                                                                                                 ivermectin, pyrantel pamoate
11009                                                                                                                 ivermectin, pyrantel pamoate
11010                                                                                                                                   ivermectin
11011                                                                                                                 ivermectin, pyrantel pamoate
11012                                                                                                                         cefpodoxime proxetil
11013                                                                                                                         prednisolone acetate
11014                                                                                                                         prednisolone acetate
11015                                                                                                                         cefpodoxime proxetil
11016                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11017                                                                                                                         prednisolone acetate
11018                                                                                                                         cefpodoxime proxetil
11019                                                                                                                         cefpodoxime proxetil
11020                                                                                                                                  hydroxyzine
11021                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
11022                                                                                                                                   selamectin
11023                                                                                                                      acetic acid, boric acid
11024                                                                                                                         butorphanol tartrate
11025                                                                                                                              dexmedetomidine
11026                                                                                                                                    carprofen
11027                                                                                                                                buprenorphine
11028                                                                                                                                    lidocaine
11029                                                                                                                                  bupivacaine
11030                                                                                                                                   ivermectin
11031                                                                                                                             pyrantel pamoate
11032                                                                                                                     fipronil, (s)-methoprene
11033                                                                                                                 ivermectin, pyrantel pamoate
11034                                                                                                                     fipronil, (s)-methoprene
11035                                                                                                                 ivermectin, pyrantel pamoate
11036                                                                                                                                   afoxolaner
11037                                                                                                                 ivermectin, pyrantel pamoate
11038                                                                                                                                   afoxolaner
11039                                                                                                                 ivermectin, pyrantel pamoate
11040                                                                                                                                   afoxolaner
11041                                                                                                                 ivermectin, pyrantel pamoate
11042                                                                                                                                   afoxolaner
11043                                                                                                                                metronidazole
11044                                                                                                                                   lokivetmab
11045                                                                                                                                 chlorambucil
11046                                                                                                                                   prednisone
11047                                                                                                                                   cephalexin
11048                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11049                                                                                                                                   cephalexin
11050                                                                                                                 ivermectin, pyrantel pamoate
11051                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11052                                                                                                 florfenicol, mometasone furoate, terbinafine
11053                                                                                                     febantel, praziquantel, pyrantel pamoate
11054                                                                                                                                  telmisartan
11055                                                                                                                                   prednisone
11056                                                                                                                  lufenuron, milbemycin oxime
11057                                                                                                                                     spinosad
11058                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11059                                                                                                                                    carprofen
11060                                                                                                       joint supplement (glucosamine hcl/msm)
11061                                                                                                                                dexamethasone
11062                                                                                                            trimeprazine tartrate, prednisone
11063                                                                                                                                  minocycline
11064                                                                                                                  lufenuron, milbemycin oxime
11065                                                                                                                  lufenuron, milbemycin oxime
11066                                                                                                                                   fluralaner
11067                                                                                                                                     tramadol
11068                                                                                                                                dexamethasone
11069                                                                                                       joint supplement (glucosamine hcl/msm)
11070                                                                                                                  lufenuron, milbemycin oxime
11071                                                                                                                                     tramadol
11072                                                                                                                  lufenuron, milbemycin oxime
11073                                                                                                                                   fluralaner
11074                                                                                                                                     tramadol
11075                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11076                                                                                                                         cefpodoxime proxetil
11077                                                                                                                              diphenhydramine
11078                                                                                                                                  hydroxyzine
11079                                                                                                                                     tramadol
11080                                                                                                                                    carprofen
11081                                                                                                                                  oclacitinib
11082                                                                                                                                     tramadol
11083                                                                                                                                  hydroxyzine
11084                                                                                                                                   gabapentin
11085                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11086                                                                                                                                    carprofen
11087                                                                                                                                  hydroxyzine
11088                                                                                                                              cbd or hemp oil
11089                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11090                                                                                                                 ivermectin, pyrantel pamoate
11091                                                                                                                     imidacloprid, permethrin
11092                                                                                                                   milbemycin oxime, spinosad
11093                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
11094                                                                                                                                metronidazole
11095                                                                                                                 ivermectin, pyrantel pamoate
11096                                                                                                                 ivermectin, pyrantel pamoate
11097                                                                                                                                  oclacitinib
11098                                                                                                                                  doxycycline
11099                                                                                                                 ivermectin, pyrantel pamoate
11100                                                                                                                                metronidazole
11101                                                                                                                 ivermectin, pyrantel pamoate
11102                                                                                                                                  doxycycline
11103                                                                                                                                   sucralfate
11104                                                                                                                                metronidazole
11105                                                                                                                                    probiotic
11106                                                                                                                                    meloxicam
11107                                                                                                                                  oclacitinib
11108                                                                                                                                 cyclosporine
11109                                                                                                                allergy immunotherapy - drops
11110                                                                                                                                   lokivetmab
11111                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11112                                                                                                                                 ketoconazole
11113                                                                                                                           miconazole nitrate
11114                                                                                                                                   lokivetmab
11115                                                                                                                                  fluconazole
11116                                                                                                                                  clindamycin
11117                                                                                                                                   prednisone
11118                                                                                                                                  clindamycin
11119                                                                                                           chlorhexidine gluconate, ophytrium
11120                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11121                                                                                                                      ketoconazole, tris-edta
11122                                                                                                           chlorhexidine gluconate, ophytrium
11123                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
11124                                                                                                                                   fluralaner
11125                                                                                                                 ivermectin, pyrantel pamoate
11126                                                                                                                                   lokivetmab
11127                                                                                                                                  fluconazole
11128                                                                                                                                  clindamycin
11129                                                                                                                                   prednisone
11130                                                                                                                           miconazole nitrate
11131                                                                                                                                  hydroxyzine
11132                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11133                                                                                                                                   ivermectin
11134                                                                                                                     fipronil, (s)-methoprene
11135                                                                                                                                   lokivetmab
11136                                                                                                           chlorhexidine gluconate, ophytrium
11137                                                                                                                      ketoconazole, tris-edta
11138                                                                                               mometasone furoate, orbifloxacin, posaconazole
11139                                                                                                                                   cephalexin
11140                                                                                                                                   cephalexin
11141                                                                                               mometasone furoate, orbifloxacin, posaconazole
11142                                                                                                 florfenicol, mometasone furoate, terbinafine
11143                                                                                                                                   lokivetmab
11144                                                                                                                      chlorhexidine gluconate
11145                                                                                                                      ketoconazole, tris-edta
11146                                                                                                                                   cephalexin
11147                                                                                                                                   lokivetmab
11148                                                                                                                                   lokivetmab
11149                                                                                                                                    carprofen
11150                                                                                                                                    carprofen
11151                                                                                                                 ormetoprim, sulfadimethoxine
11152                                                                                                                  lufenuron, milbemycin oxime
11153                                                                                                                     imidacloprid, permethrin
11154                                                                                                                                    carprofen
11155                                                                                                                  lufenuron, milbemycin oxime
11156                                                                                                                     imidacloprid, permethrin
11157                                                                                                                                   afoxolaner
11158                                                                                                    lufenuron, milbemycin oxime, praziquantel
11159                                                                                                                 ivermectin, pyrantel pamoate
11160                                                                                                                                   afoxolaner
11161                                                                                                                                   fluoxetine
11162                                                                                                                                   fluoxetine
11163                                                                                                                 ivermectin, pyrantel pamoate
11164                                                                                                                                   afoxolaner
11165                                                                                                                 ivermectin, pyrantel pamoate
11166                                                                                                                                   afoxolaner
11167                                                                                                                                   fluoxetine
11168                                                                                                                 ivermectin, pyrantel pamoate
11169                                                                                                                                   afoxolaner
11170                                                                                                                                   sertraline
11171                                                                                                                                   famotidine
11172                                                                                                                                   sertraline
11173                                                                                                                                   famotidine
11174                                                                                                           amoxicillin, clavulanate potassium
11175                                                                                                                              diphenhydramine
11176                                                                                                                                    carprofen
11177                                                                                                                                   lokivetmab
11178                                                                                                                                   sertraline
11179                                                                                                                                   sertraline
11180                                                                                                               polysulfated glycosaminoglycan
11181                                                                                                                                    carprofen
11182                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11183                                                                                                            trimeprazine tartrate, prednisone
11184                                                                                                                                   ivermectin
11185                                                                                                                 ivermectin, pyrantel pamoate
11186                                                                                                                 ivermectin, pyrantel pamoate
11187                                                                                                                                  oclacitinib
11188                                                                                                                                 acepromazine
11189                                                                                                                 ivermectin, pyrantel pamoate
11190                                                                                                                                  oclacitinib
11191                                                                                                                 ivermectin, pyrantel pamoate
11192                                                                                                                                  clindamycin
11193                                                                                                                                   gabapentin
11194                                                                                                                                  oclacitinib
11195                                                                                                                                    carprofen
11196                                                                                                                                     spinosad
11197                                                                                                                                     spinosad
11198                                                                                                                                     spinosad
11199                                                                                                           amoxicillin, clavulanate potassium
11200                                                                                                                                yunnan baiyao
11201                                                                                                                                   gabapentin
11202                                                                                                                                     tramadol
11203                                                                                                                                    meloxicam
11204                                                                                                           amoxicillin, clavulanate potassium
11205                                                                                                                                    carprofen
11206                                                                                                                                   ivermectin
11207                                                                                                                 ivermectin, pyrantel pamoate
11208                                                                                                                  lufenuron, milbemycin oxime
11209                                                                                                                                 coenzyme q10
11210                                                                                                                                    probiotic
11211                                                                                                                       unspecified medication
11212                                                                                                                  lufenuron, milbemycin oxime
11213                                                                                                                    immune support supplement
11214                                                                                                           amoxicillin, clavulanate potassium
11215                                                                                                                                   gabapentin
11216                                                                                                                                    carprofen
11217                                                                                                                                metronidazole
11218                                                                                                                                  amoxicillin
11219                                                                                                                                 fenbendazole
11220                                                                                                                                metronidazole
11221                                                                                                                                   cephalexin
11222                                                                                                                           maropitant citrate
11223                                                                                                                                 praziquantel
11224                                                                                                                                   ivermectin
11225                                                                                                                                   cephalexin
11226                                                                                                                              diphenhydramine
11227                                                                                                                                   selamectin
11228                                                                                                                 ivermectin, pyrantel pamoate
11229                                                                                                                 ivermectin, pyrantel pamoate
11230                                                                                                                     fipronil, (s)-methoprene
11231                                                                                                                             milbemycin oxime
11232                                                                                                                                   fluralaner
11233                                                                                                                                    probiotic
11234                                                                                                                                  oclacitinib
11235                                                                                                                                    vitamin k
11236                                                                                                                                  oclacitinib
11237                                                                                                                                    vitamin k
11238                                                                                                                                    carprofen
11239                                                                                                                                    deracoxib
11240                                                                                                                                   gabapentin
11241                                                                                                                   milbemycin oxime, spinosad
11242                                                                                                                  lufenuron, milbemycin oxime
11243                                                                                                    lufenuron, milbemycin oxime, praziquantel
11244                                                                                                                                     spinosad
11245                                                                                                                  lufenuron, milbemycin oxime
11246                                                                                                                                     spinosad
11247                                                                                                                                metronidazole
11248                                                                                                                                metronidazole
11249                                                                                                                                  doxycycline
11250                                                                                                                                     tramadol
11251                                                                                                                                levothyroxine
11252                                                                                                                                   fluoxetine
11253                                                                                                                         prednisolone acetate
11254                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11255                                                                                                                  lufenuron, milbemycin oxime
11256                                                                                                                                levothyroxine
11257                                                                                                                                   fluoxetine
11258                                                                                                            betamethasone, gentamicin sulfate
11259                                                                                                                         cefpodoxime proxetil
11260                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11261                                                                                                                                dexamethasone
11262                                                                                                                         prednisolone acetate
11263                                                                                                                                dexamethasone
11264                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11265                                                                                                                         cefpodoxime proxetil
11266                                                                                           chlorhexidine gluconate, hydrocortisone, tris-edta
11267                                                                                                                     imidacloprid, permethrin
11268                                                                                                                  lufenuron, milbemycin oxime
11269                                                                                                                                levothyroxine
11270                                                                                                                                   fluoxetine
11271                                                                                                                                      omega 3
11272                                                                                               dexamethasone, neomycin sulfate, thiabendazole
11273                                                                                                                  lufenuron, milbemycin oxime
11274                                                                                                                                levothyroxine
11275                                                                                                                                   fluoxetine
11276                                                                                                                  lufenuron, milbemycin oxime
11277                                                                                                                                levothyroxine
11278                                                                                                                                   fluoxetine
11279                                                                                                                                levothyroxine
11280                                                                                                                                   fluoxetine
11281                                                                                                                                   fluoxetine
11282                                                                                                                                   gabapentin
11283                                                                                                                                levothyroxine
11284                                                                                                                                  clindamycin
11285                                                                                                                                   fluoxetine
11286                                                                                                                                levothyroxine
11287                                                                                                                                   gabapentin
11288                                                                                                                                   gabapentin
11289                                                                                                                                  doxycycline
11290                                                                                                                                   gabapentin
11291                                                                                                                 ivermectin, pyrantel pamoate
11292                                                                                                                                     spinosad
11293                                                                                                                 ivermectin, pyrantel pamoate
11294                                                                                                                                   afoxolaner
11295                                                                                                                 ivermectin, pyrantel pamoate
11296                                                                                                                                   afoxolaner
11297                                                                                                                                    firocoxib
11298                                                                                                                     skin and coat supplement
11299                                                                                                                                dexamethasone
11300                                                                                                                              diphenhydramine
11301                                                                                                                 ivermectin, pyrantel pamoate
11302                                                                                                                 ivermectin, pyrantel pamoate
11303                                                                                                                                   afoxolaner
11304                                                                                                                                    firocoxib
11305                                                                                                                     skin and coat supplement
11306                                                                                                                         cefpodoxime proxetil
11307                                                                                                                 ivermectin, pyrantel pamoate
11308                                                                                                                                 enrofloxacin
11309                                                                                                                 ivermectin, pyrantel pamoate
11310                                                                                                                                    sarolaner
11311                                                                                                                 ivermectin, pyrantel pamoate
11312                                                                                                                                    sarolaner
11313                                                                                                                                  clindamycin
11314                                                                                                                                    firocoxib
11315                                                                                                                 ivermectin, pyrantel pamoate
11316                                                                                                                                    sarolaner
11317                                                                                                                                  clindamycin
11318                                                                                                                                    firocoxib
11319                                                                                                                         cefpodoxime proxetil
11320                                                                                                                         cefpodoxime proxetil
11321                                                                                                                     skin and coat supplement
11322                                                                                                                                    firocoxib
11323                                                                                                                                 enrofloxacin
11324                                                                                                                                    meloxicam
11325                                                                                                                   milbemycin oxime, spinosad
11326                                                                                                                  lufenuron, milbemycin oxime
11327                                                                                                                   milbemycin oxime, spinosad
11328                                                                                                                   milbemycin oxime, spinosad
11329                                                                                                                   milbemycin oxime, spinosad
11330                                                                                                                   milbemycin oxime, spinosad
11331                                                                                                                   milbemycin oxime, spinosad
11332                                                                                                                                  doxycycline
11333                                                                                                                                dexamethasone
11334                                                                                                                                yunnan baiyao
11335                                                                                                                                metronidazole
11336                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11337                                                                                                                              diphenhydramine
11338                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11339                                                                                                                                  minocycline
11340                                                                                                   dextromethorphan hydrobromide, guaifenesin
11341                                                                                                                 ivermectin, pyrantel pamoate
11342                                                                                                        dinotefuran, permethrin, pyriproxyfen
11343                                                                                                                              diphenhydramine
11344                                                                                                                 ivermectin, pyrantel pamoate
11345                                                                                                                                   afoxolaner
11346                                                                                                                          ear cleaner (zymox)
11347                                                                                                                 ivermectin, pyrantel pamoate
11348                                                                                                                                   afoxolaner
11349                                                                                                                          ear cleaner (zymox)
11350                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11351                                                                                                                 ivermectin, pyrantel pamoate
11352                                                                                                                                   afoxolaner
11353                                                                                                     febantel, praziquantel, pyrantel pamoate
11354                                                                                                            betamethasone, gentamicin sulfate
11355                                                                                                                         cefpodoxime proxetil
11356                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
11357                                                                                                           amoxicillin, clavulanate potassium
11358                                                                                                                                   gabapentin
11359                                                                                                                                 capromorelin
11360                                                                                                                                    carprofen
11361                                                                                                                                levothyroxine
11362                                                                                                                  lufenuron, milbemycin oxime
11363                                                                                                                                     tramadol
11364                                                                                                                                levothyroxine
11365                                                                                                                                methocarbamol
11366                                                                                                                             milbemycin oxime
11367                                                                                                                                levothyroxine
11368                                                                                                                             milbemycin oxime
11369                                                                                                                                levothyroxine
11370                                                                                                                                levothyroxine
11371                                                                                                                                  amoxicillin
11372                                                                                                                                   gabapentin
11373                                                                                                                 ivermectin, pyrantel pamoate
11374                                                                                                                                    thyroxine
11375                                                                                                                                    thyroxine
11376                                                                                                                                    thyroxine
11377                                                                                                                                   selamectin
11378                                                                                                                 ivermectin, pyrantel pamoate
11379                                                                                                                                  amoxicillin
11380                                                                                                                                    thyroxine
11381                                                                                                                                   ivermectin
11382                                                                                                                                metronidazole
11383                                                                                                                                     tramadol
11384                                                                                                                                    meloxicam
11385                                                                                                                                   ivermectin
11386                                                                                                                                   ivermectin
11387                                                                                                                                 fenbendazole
11388                                                                                                                                 fenbendazole
11389                                                           dimethyl sulfoxide, fluocinolone acetonide, gentamicin sulfate, miconazole nitrate
11390                                                                                                                     fipronil, (s)-methoprene
11391                                                                                                           amoxicillin, clavulanate potassium
11392                                                                                                           amoxicillin, clavulanate potassium
11393                                                                                                                                 fenbendazole
11394                                                                                                                                   benzocaine
11395                                                                                                                                 ketoconazole
11396                                                                                                                                     tramadol
11397                                                                                                                                   sucralfate
11398                                                                                                                               metoclopramide
11399                                                                                                                               hydrocortisone
11400                                                                                                                              diphenhydramine
11401                                                                                                                                metronidazole
11402                                                                                                                                     tramadol
11403                                                                                                                           maropitant citrate
11404                                                                                                                                   famotidine
11405                                                                                                                                   omeprazole
11406                                                                                                                                    carprofen
11407                                                                                                                                  amoxicillin
11408                                                                                                                           maropitant citrate
11409                                                                                                                                 praziquantel
11410                                                                                                                                   loperamide
11411                                                                                                                                metronidazole
11412                                                                                                                                    carprofen
11413                                                                                                                                   grapiprant
11414                                                                                                                                    carprofen
11415                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11416                                                                                                                                   cephalexin
11417                                                                                                                                    carprofen
11418                                                                                                                                metronidazole
11419                                                                                                                             tylosin tartrate
11420                                                                                                                                   gabapentin
11421                                                                                                                                buprenorphine
11422                                                                                                                                   sucralfate
11423                                                                                                                           maropitant citrate
11424                                                                                                                                 pantoprazole
11425                                                                                                                                   ivermectin
11426                                                                                                                             milbemycin oxime
11427                                                                                                                                    lufenuron
11428                                                                                                                                hydromorphone
11429                                                                                                                                 acepromazine
11430                                                                                                                                     ketamine
11431                                                                                                                                    midazolam
11432                                                                                                                                  clindamycin
11433                                                                                                                                    carprofen
11434                                                                                                                                  clindamycin
11435                                                                                                                                    carprofen
11436                                                                                                    lufenuron, milbemycin oxime, praziquantel
11437                                                                                                                  lufenuron, milbemycin oxime
11438                                                                                                                                   cephalexin
11439                                                                                                                             pyrantel pamoate
11440                                                                                                                  lufenuron, milbemycin oxime
11441                                                                                                                  lufenuron, milbemycin oxime
11442                                                                                                          ear cleaner (zymox), hydrocortisone
11443                                                                                                                  lufenuron, milbemycin oxime
11444                                                                                                                                   tobramycin
11445                                                                                                                  lufenuron, milbemycin oxime
11446                                                                                                        dinotefuran, permethrin, pyriproxyfen
11447                                                                                                                         cefpodoxime proxetil
11448                                                                                                                         cefpodoxime proxetil
11449                                                                                                                      triamcinolone acetonide
11450                                                                                                                                    carprofen
11451                                                                                                          ear cleaner (zymox), hydrocortisone
11452                                                                                                                  lufenuron, milbemycin oxime
11453                                                                                                        dinotefuran, permethrin, pyriproxyfen
11454                                                                                                           amoxicillin, clavulanate potassium
11455                                                                                                           amoxicillin, clavulanate potassium
11456                                                                                                                         cefpodoxime proxetil
11457                                                                                                                                    meloxicam
11458                                                                                                                  lufenuron, milbemycin oxime
11459                                                                                                        dinotefuran, permethrin, pyriproxyfen
11460                                                                                                                  lufenuron, milbemycin oxime
11461                                                                                                        dinotefuran, permethrin, pyriproxyfen
11462                                                                                                        dinotefuran, permethrin, pyriproxyfen
11463                                                                                                                  lufenuron, milbemycin oxime
11464                                                                                                          ear cleaner (zymox), hydrocortisone
11465                                                                                                                                  oclacitinib
11466                                                                                                                                  oclacitinib
11467                                                                                                                                   sucralfate
11468                                                                                                                                hydromorphone
11469                                                                                                                                     propofol
11470                                                                                                                                   isoflurane
11471                                                                                                                               dental sealant
11472                                                                                                                                   selamectin
11473                                                                                                                                   ivermectin
11474                                                                                                                                   afoxolaner
11475                                                                                                                 ivermectin, pyrantel pamoate
11476                                                                                                                                   afoxolaner
11477                                                                                                                 ivermectin, pyrantel pamoate
11478                                                                                                                                   ivermectin
11479                                                                                                                                   afoxolaner
11480                                                                                                                                    meloxicam
11481                                                                                                                 ivermectin, pyrantel pamoate
11482                                                                                                                                   afoxolaner
11483                                                                                                                                    meloxicam
11484                                                                                                                                     tramadol
11485                                                                                                                                    carprofen
11486                                                                                                                                metronidazole
11487                                                                                                                                  mirtazapine
11488                                                                                                                           maropitant citrate
11489                                                                                                                                 capromorelin
11490                                                                                                                                     tramadol
11491                                                                                                                                   gabapentin
11492                                                                                                                                    probiotic
11493                                                                                                           joint supplement (glucosamine hcl)
11494                                                                                                                                    carprofen
11495                                                                                                                                   prednisone
11496                                                                                                                                dexamethasone
11497                                                                                                                                metronidazole
11498                                                                                                                                    carprofen
11499                                                                                                                         prednisolone acetate
11500                                                                                                                                dexamethasone
11501                                                                                                                                   prednisone
11502                                                                                                                                metronidazole
11503                                                                                                               sulfamethoxazole, trimethoprim
11504                                                                                                                                 fenbendazole
11505                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
11506                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
11507                                                                                                            betamethasone, gentamicin sulfate
11508                                                                                                                                  amoxicillin
11509                                                                                                   ivermectin, praziquantel, pyrantel pamoate
11510                                                                                                                                   ivermectin
11511                                                                                                                                  doxycycline
11512                                                                                               dexamethasone, neomycin sulfate, thiabendazole
11513                                                                                                                      ketoconazole, tris-edta
11514                                                                                                                 ivermectin, pyrantel pamoate
11515                                                                                                                                levothyroxine
11516                                                                                                                         prednisolone acetate
11517                                                                                                                 ivermectin, pyrantel pamoate
11518                                                                                                                                levothyroxine
11519                                                                                                                     joint supplement (other)
11520                                                                                                                                   ivermectin
11521                                                                                                                                levothyroxine
11522                                                                                                                 ivermectin, pyrantel pamoate
11523                                                                                                                                levothyroxine
11524                                                                                                                                levothyroxine
11525                                                                                                                                    enalapril
11526                                                                                                                                  telmisartan
11527                                                                                                                                levothyroxine
11528                                                                                                                                  telmisartan
11529                                                                                                                                levothyroxine
11530                                                                                                                                  telmisartan
11531                                                                                                                             pyrantel pamoate
11532                                                                                                                                 praziquantel
11533                                                                                                                                    lufenuron
11534                                                                                                                             milbemycin oxime
11535                                                                                                                                    carprofen
11536                                                                                                                  lufenuron, milbemycin oxime
11537                                                                                                                  lufenuron, milbemycin oxime
11538                                                                                                                  lufenuron, milbemycin oxime
11539                                                                                                                                 ketoconazole
11540                                                                                                                                  doxycycline
11541                                                                                                                         prednisolone acetate
11542                                                                                                       cognitive supplement, liver supplement
11543                                                                                                                                metronidazole
11544                                                                                                                                  amoxicillin
11545                                                                                                                  lufenuron, milbemycin oxime
11546                                                                                                                  lufenuron, milbemycin oxime
11547                                                                                                                  lufenuron, milbemycin oxime
11548                                                                                                                                  bedinvetmab
11549                                                                                                                         cefpodoxime proxetil
11550                                                                                                           amoxicillin, clavulanate potassium
11551                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11552                                                                                                                                   gabapentin
11553                                                                                                                                  bedinvetmab
11554                                                                                                                                    carprofen
11555                                                                                                                                   prednisone
11556                                                                                                                                   prednisone
11557                                                                                                                                   prednisone
11558                                                                                                                                   sucralfate
11559                                                                                                                 ivermectin, pyrantel pamoate
11560                                                                                                                 ivermectin, pyrantel pamoate
11561                                                                                                                 ivermectin, pyrantel pamoate
11562                                                                                                                                   afoxolaner
11563                                                                                                                                      omega 3
11564                                                                                                   toothpaste/dental health solution or chews
11565                                                                                                                                  clindamycin
11566                                                                                                                                    carprofen
11567                                                                                                                 ivermectin, pyrantel pamoate
11568                                                                                                                                   afoxolaner
11569                                                                                                                                 enrofloxacin
11570                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11571                                                                                                                                    meloxicam
11572                                                                                                                                   cephalexin
11573                                                                                                                                   gabapentin
11574                                                                                                                                   grapiprant
11575                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
11576                                                                                                                                      omega 3
11577                                                                                                                                    probiotic
11578                                                                                                                unspecified vision supplement
11579                                                                                                                                ciprofloxacin
11580                                                                                                                                  amoxicillin
11581                                                                                                                                ciprofloxacin
11582                                                                                                                                   grapiprant
11583                                                                                                                 ivermectin, pyrantel pamoate
11584                                                                                                                                   sucralfate
11585                                                                                                                  hairball control supplement
11586                                                                                                                                   selamectin
11587                                                                                                                                   selamectin
11588                                                                                               mometasone furoate, orbifloxacin, posaconazole
11589                                                                                                                                   ivermectin
11590                                                                                                                                   afoxolaner
11591                                                                                                                 ivermectin, pyrantel pamoate
11592                                                                                                                                   afoxolaner
11593                                                                                                                 ivermectin, pyrantel pamoate
11594                                                                                                                 ivermectin, pyrantel pamoate
11595                                                                                                                                   afoxolaner
11596                                                                                                                 ivermectin, pyrantel pamoate
11597                                                                                                                 ivermectin, pyrantel pamoate
11598                                                                                                                     fipronil, (s)-methoprene
11599                                                                                                                     fipronil, (s)-methoprene
11600                                                                                                                 ivermectin, pyrantel pamoate
11601                                                                                                                 ivermectin, pyrantel pamoate
11602                                                                                                                 ivermectin, pyrantel pamoate
11603                                                                                                                              diphenhydramine
11604                                                                                                                 ivermectin, pyrantel pamoate
11605                                                                                                                                  oclacitinib
11606                                                                                                                                  oclacitinib
11607                                                                                                                                   gabapentin
11608                                                                                                 florfenicol, mometasone furoate, terbinafine
11609                                                                                                                                    probiotic
11610                                                                                                                                    carprofen
11611                                                                                                                                    carprofen
11612                                                                                                                                    carprofen
11613                                                                                                                                   prednisone
11614                                                                                                                         cefpodoxime proxetil
11615                                                                                                                                 ketoconazole
11616                                                                                                                                  oclacitinib
11617                                                                                                                                    carprofen
11618                                                                                                                                   gabapentin
11619                                                                                                                                    carprofen
11620                                                                                               mometasone furoate, orbifloxacin, posaconazole
11621                                                                                                 florfenicol, mometasone furoate, terbinafine
11622                                                                                                                                   gabapentin
11623                                                                                                                                  oclacitinib
11624                                                                                                                                    carprofen
11625                                                                                                                                   gabapentin
11626                                                                                                                                   prednisone
11627                                                                                                                                   ivermectin
11628                                                                                                                     fipronil, (s)-methoprene
11629                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11630                                                                                                                                   ivermectin
11631                                                                                                                                   ivermectin
11632                                                                                                        dinotefuran, permethrin, pyriproxyfen
11633                                                                                                                 ivermectin, pyrantel pamoate
11634                                                                                                               praziquantel, pyrantel pamoate
11635                                                                                                                 ivermectin, pyrantel pamoate
11636                                                                                                                                  doxycycline
11637                                                                                                                                   afoxolaner
11638                                                                                                                                    sarolaner
11639                                                                                                                 ivermectin, pyrantel pamoate
11640                                                                                                               praziquantel, pyrantel pamoate
11641                                                                                                                             milbemycin oxime
11642                                                                                                                              diphenhydramine
11643                                                                                                                                    vitamin d
11644                                                                                                                                   cephalexin
11645                                                                                                                                   cephalexin
11646                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
11647                                                                                                                              diphenhydramine
11648                                                                                                                                    trazodone
11649                                                                                                                     imidacloprid, permethrin
11650                                                                                                                                   ivermectin
11651                                                                                                                                   ivermectin
11652                                                                                                                     imidacloprid, permethrin
11653                                                                                                                   milbemycin oxime, spinosad
11654                                                                                                                  lufenuron, milbemycin oxime
11655                                                                                                                   milbemycin oxime, spinosad
11656                                                                                                                  lufenuron, milbemycin oxime
11657                                                                                                                                 acepromazine
11658                                                                                                                                   alprazolam
11659                                                                                                                                    meloxicam
11660                                                                                                    lufenuron, milbemycin oxime, praziquantel
11661                                                                                                    lufenuron, milbemycin oxime, praziquantel
11662                                                                                                                                   fluralaner
11663                                                                                                                  lufenuron, milbemycin oxime
11664                                                                                                                                   fluralaner
11665                                                                                                                                  oclacitinib
11666                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11667                                                                                                            dexamethasone, miconazole nitrate
11668                                                                                                                                 acepromazine
11669                                                                                                                                   alprazolam
11670                                                                                                                                  terbinafine
11671                                                                                                      betamethasone, florfenicol, terbinafine
11672                                                                                                                         cefpodoxime proxetil
11673                                                                                                                             phytosphingosine
11674                                                                                                                                metronidazole
11675                                                                                                                                   cephalexin
11676                                                                                                               polysulfated glycosaminoglycan
11677                                                                                                                                levothyroxine
11678                                                                                                                 ivermectin, pyrantel pamoate
11679                                                                                                                                levothyroxine
11680                                                                                                                     fipronil, (s)-methoprene
11681                                                                                                                 ivermectin, pyrantel pamoate
11682                                                                                                               polysulfated glycosaminoglycan
11683                                                                                                                 ivermectin, pyrantel pamoate
11684                                                                                                                                    sarolaner
11685                                                                                                               polysulfated glycosaminoglycan
11686                                                                                                                                levothyroxine
11687                                                                                                                                   lokivetmab
11688                                                                                                                                levothyroxine
11689                                                                                                               polysulfated glycosaminoglycan
11690                                                                                                                                metronidazole
11691                                                                                                                  lufenuron, milbemycin oxime
11692                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11693                                                                                                              ear cleaner (epi-otic advanced)
11694                                                                                                                   milbemycin oxime, spinosad
11695                                                                                                                      acetic acid, boric acid
11696                                                                                                                  lufenuron, milbemycin oxime
11697                                                                                                                  lufenuron, milbemycin oxime
11698                                                                                                       cyphenothrin, fipronil, (s)-methoprene
11699                                                                                                                  lufenuron, milbemycin oxime
11700                                                                                                                  lufenuron, milbemycin oxime
11701                                                                                                                                   ivermectin
11702                                                                                                                 ivermectin, pyrantel pamoate
11703                                                                                                                 ivermectin, pyrantel pamoate
11704                                                                                                                                   cephalexin
11705                                                                                                                                  oclacitinib
11706                                                                                                                                   prednisone
11707                                                                                                                                    carprofen
11708                                                                                                                 ivermectin, pyrantel pamoate
11709                                                                                                           joint supplement (glucosamine hcl)
11710                                                                                                                                       garlic
11711                                                                                                                     fipronil, (s)-methoprene
11712                                                                                                                                   cephalexin
11713                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11714                                                                                                                  lufenuron, milbemycin oxime
11715                                                                                                                     fipronil, (s)-methoprene
11716                                                                                                                                    carprofen
11717                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11718                                                                                                                  lufenuron, milbemycin oxime
11719                                                                                                                  lufenuron, milbemycin oxime
11720                                                                                                                                    carprofen
11721                                                                                                                                   gabapentin
11722                                                                                                                              cbd or hemp oil
11723                                                                                                                                       garlic
11724                                                                     joint supplement (chondroitin sulfate/glucosamine hcl/msm), multivitamin
11725                                                                                                                                    trazodone
11726                                                                                                                                    carprofen
11727                                                                                                                                 fenbendazole
11728                                                                                                                    immune support supplement
11729                                                                                                                                   wheat germ
11730                                                                                                                                 milk thistle
11731                                                                                                                             cyclophosphamide
11732                                                                                                                                    carprofen
11733                                                                                                                                    piroxicam
11734                                                                                                                             sulfadimethoxine
11735                                                                                                                             milbemycin oxime
11736                                                                                                                          ear cleaner (zymox)
11737                                                                                                                                metronidazole
11738                                                                                                                                   loperamide
11739                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11740                                                                                                                                    trazodone
11741                                                                                                                                      omega 3
11742                                                                                                                                   selamectin
11743                                                                                                                                   cephalexin
11744                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11745                                                                                                                                  bedinvetmab
11746                                                                                                                             liver supplement
11747                                                                                                                                    carprofen
11748                                                                                                           amoxicillin, clavulanate potassium
11749                                                                                                                                   afoxolaner
11750                                                                                                                                      taurine
11751                                                                                                                             ceftiofur sodium
11752                                                                                                                                   cephalexin
11753                                                                                                                           maropitant citrate
11754                                                                                                                                    midazolam
11755                                                                                                                                   alfaxalone
11756                                                                                                                                buprenorphine
11757                                                                                                                                    carprofen
11758                                                                                                                                    carprofen
11759                                                                                                                                   cephalexin
11760                                                                                                                             ceftiofur sodium
11761                                                                                                                                metronidazole
11762                                                                                                           amoxicillin, clavulanate potassium
11763                                                                                                                           maropitant citrate
11764                                                                                                                            aminocaproic acid
11765                                                                                                                                  carboplatin
11766                                                                                                                           maropitant citrate
11767                                                                                                                                metronidazole
11768                                                                                                                                yunnan baiyao
11769                                                                                                                                    sirolimus
11770                                                                                                                                   vorinostat
11771                                                                                                                                    egft/her2
11772                                                                                                                                    carprofen
11773                                                                                                                                    carprofen
11774                                                                                                                                metronidazole
11775                                                                                                                              diphenhydramine
11776                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
11777                                                                                                                                metronidazole
11778                                                                                                                                   cephalexin
11779                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
11780                                                                                                                         cefpodoxime proxetil
11781                                                                                                                                    firocoxib
11782                                                                                                                         cefpodoxime proxetil
11783                                                                                                                                   prednisone
11784                                                                                                                         cefpodoxime proxetil
11785                                                                                                                                  hydroxyzine
11786                                                                                               mometasone furoate, orbifloxacin, posaconazole
11787                                                                                                                                ciprofloxacin
11788                                                                                                                                    carprofen
11789                                                                                                                                  hydroxyzine
11790                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11791                                                                                                                                    carprofen
11792                                                                                                                                   ivermectin
11793                                                                                                                                   afoxolaner
11794                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11795                                                                                                                 ivermectin, pyrantel pamoate
11796                                                                                                                                   afoxolaner
11797                                                                                                                 ivermectin, pyrantel pamoate
11798                                                                                                                                   afoxolaner
11799                                                                                                                         cefpodoxime proxetil
11800                                                                                                                 ivermectin, pyrantel pamoate
11801                                                                                                                                   afoxolaner
11802                                                                                                    lufenuron, milbemycin oxime, praziquantel
11803                                                                                                                                 praziquantel
11804                                                                                               mometasone furoate, orbifloxacin, posaconazole
11805                                                                                                                                    carprofen
11806                                                             diatomaceous earth, geranium oil, lavender oil, neem oil, peppermint oil, yarrow
11807                                                                                                                                    carprofen
11808                                                                                                            betamethasone, gentamicin sulfate
11809                                                                                                                                   cephalexin
11810                                                                                                                              diphenhydramine
11811                                                                                                                                         kelp
11812                                                                                                                  lufenuron, milbemycin oxime
11813                                                                                                                  lufenuron, milbemycin oxime
11814                                                                                                                   imidacloprid, pyriproxyfen
11815                                                                                                                  lufenuron, milbemycin oxime
11816                                                                                                                  lufenuron, milbemycin oxime
11817                                                                                                                  lufenuron, milbemycin oxime
11818                                                                                                                                metronidazole
11819                                                                                                                             pyrantel pamoate
11820                                                                                                                           maropitant citrate
11821                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
11822                                                                                                                                   ivermectin
11823                                                                                                                                   ivermectin
11824                                                                                                                     fipronil, (s)-methoprene
11825                                                                                                                                   afoxolaner
11826                                                                                                                                     tramadol
11827                                                                                                                                    meloxicam
11828                                                                                                                                metronidazole
11829                                                                                                                           maropitant citrate
11830                                                                                                           joint supplement (glucosamine hcl)
11831                                                                                                                                   afoxolaner
11832                                                                                                                 ivermectin, pyrantel pamoate
11833                                                                                                                 ivermectin, pyrantel pamoate
11834                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11835                                                                                                                 ivermectin, pyrantel pamoate
11836                                                                                                                 ivermectin, pyrantel pamoate
11837                                                                                                                                   afoxolaner
11838                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11839                                                                                                                                 azithromycin
11840                                                                                                   dextromethorphan hydrobromide, guaifenesin
11841                                                                                                                           maropitant citrate
11842                                                                                                                   acetaminophen, hydrocodone
11843                                                                                                                                 azithromycin
11844                                                                                                   dextromethorphan hydrobromide, guaifenesin
11845                                                                                                                           maropitant citrate
11846                                                                                                                   acetaminophen, hydrocodone
11847                                                                                                                 ivermectin, pyrantel pamoate
11848                                                                                                                 ivermectin, pyrantel pamoate
11849                                                                                                                                   afoxolaner
11850                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11851                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11852                                                                                                                         cefpodoxime proxetil
11853                                                                                                                                  oclacitinib
11854                                                                                                                                  oclacitinib
11855                                                                                                                         cefpodoxime proxetil
11856                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11857                                                                                                                                  oclacitinib
11858                                                                                                                                  oclacitinib
11859                                                                                                                         cefpodoxime proxetil
11860                                                                                                                         cefpodoxime proxetil
11861                                                                                                                 ivermectin, pyrantel pamoate
11862                                                                                                                 ivermectin, pyrantel pamoate
11863                                                                                                                                   afoxolaner
11864                                                                                                           joint supplement (glucosamine hcl)
11865                                                                                                       joint supplement (chondroitin sulfate)
11866                                                                                                                                    carprofen
11867                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11868                                                                                                                                  oclacitinib
11869                                                                                                                                   cephalexin
11870                                                                                                                                  oclacitinib
11871                                                                                                                                    carprofen
11872                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11873                                                                                                                 ivermectin, pyrantel pamoate
11874                                                                                                                 ivermectin, pyrantel pamoate
11875                                                                                                                                   afoxolaner
11876                                                                                                                                    carprofen
11877                                                                                                                                   gabapentin
11878                                                                                                                                  oclacitinib
11879                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
11880                                                                                                                                    carprofen
11881                                                                                                                 ivermectin, pyrantel pamoate
11882                                                                                                                                   afoxolaner
11883                                                                                                                                    carprofen
11884                                                                                                                                    carprofen
11885                                                                                                                 oxytetracycline, polymyxin b
11886                                                                                                                                  latanoprost
11887                                                                                                                                  dorzolamide
11888                                                                                                                                    carprofen
11889                                                                                                                             milbemycin oxime
11890                                                                                                                                dl-methionine
11891                                                                                                     febantel, praziquantel, pyrantel pamoate
11892                                                                                                                             milbemycin oxime
11893                                                                                                                                   afoxolaner
11894                                                                                                                            hypochlorous acid
11895                                                                                                                                 enrofloxacin
11896                                                                                                                                   cetirizine
11897                                                                                                                                    thyroxine
11898                                                                                                                 ivermectin, pyrantel pamoate
11899                                                                                                                                  amoxicillin
11900                                                                                                                           maropitant citrate
11901                                                                                                                 ivermectin, pyrantel pamoate
11902                                                                                                                                  amoxicillin
11903                                                                                                                           maropitant citrate
11904                                                                                                                 ivermectin, pyrantel pamoate
11905                                                                                                            trimeprazine tartrate, prednisone
11906                                                                                                                                  doxycycline
11907                                                                                                                         prednisolone acetate
11908                                                                                                                                    carprofen
11909                                                                                                                                    oxycodone
11910                                                                                                           amoxicillin, clavulanate potassium
11911                                                                                                                                  oclacitinib
11912                                                                                                                 ivermectin, pyrantel pamoate
11913                                                                                                                                    vitamin d
11914                                                                                                                                  oclacitinib
11915                                                                                                                                metronidazole
11916                                                                                                                                    carprofen
11917                                                                                                                                  amoxicillin
11918                                                                                                                                metronidazole
11919                                                                                                                                    probiotic
11920                                                                                                                                    carprofen
11921                                                                                                                         cefpodoxime proxetil
11922                                                                                                                                    carprofen
11923                                                                                                                                  clindamycin
11924                                                                                                                                metronidazole
11925                                                                                                                                    carprofen
11926                                                                                                                                   ivermectin
11927                                                                                                                 ivermectin, pyrantel pamoate
11928                                                                                                   ivermectin, praziquantel, pyrantel pamoate
11929                                                                                                                                   sucralfate
11930                                                                                                                                    probiotic
11931                                                                                                                                ciprofloxacin
11932                                                                                                                                  amoxicillin
11933                                                                                                                         prebiotic, probiotic
11934                                                                                                               praziquantel, pyrantel pamoate
11935                                                                                                                                   selamectin
11936                                                                                                                                      omega 3
11937                                                                                                                                   selamectin
11938                                                                                                                                      omega 3
11939                                                                                                                                ciprofloxacin
11940                                                                                                                                ciprofloxacin
11941                                                                                                                                    trazodone
11942                                                                                                                                   cephalexin
11943                                                                                                                                    carprofen
11944                                                                                                                                   cephalexin
11945                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
11946                                                                                                                                    carprofen
11947                                                                                                                 ivermectin, pyrantel pamoate
11948                                                                                                                   milbemycin oxime, spinosad
11949                                                                                                                   milbemycin oxime, spinosad
11950                                                                                                                                    meloxicam
11951                                                                                                                         cefpodoxime proxetil
11952                                                                                                                                  clindamycin
11953                                                                                                                                    meloxicam
11954                                                                                                           amoxicillin, clavulanate potassium
11955                                                                                                                                 enrofloxacin
11956                                                                                                                                    carprofen
11957                                                                                                                                metronidazole
11958                                                                                                                   milbemycin oxime, spinosad
11959                                                                                                                  lufenuron, milbemycin oxime
11960                                                                                                   toothpaste/dental health solution or chews
11961                                                                                                                  lufenuron, milbemycin oxime
11962                                                                                                                  lufenuron, milbemycin oxime
11963                                                                                                                                  hydroxyzine
11964                                                                                                                  lufenuron, milbemycin oxime
11965                                                                                                                                    carprofen
11966                                                                                                                                  latanoprost
11967                                                                                                                         dorzolamide, timolol
11968                                                                                                                         prednisolone acetate
11969                                                                                                                                  dorzolamide
11970                                                                                                                                  latanoprost
11971                                                                                                                          clemastine fumarate
11972                                                                                                                                   prednisone
11973                                                                                                                                   cephalexin
11974                                                                                              betamethasone, clotrimazole, gentamicin sulfate
11975                                                                                                     febantel, praziquantel, pyrantel pamoate
11976                                                                                                                      triamcinolone acetonide
11977                                                                                                                                   prednisone
11978                                                                                                                      triamcinolone acetonide
11979                                                                                                                     fipronil, (s)-methoprene
11980                                                                                                                     fipronil, (s)-methoprene
11981                                                                                                                                   cephalexin
11982                                                                                                                                    carprofen
11983                                                                                                                     fipronil, (s)-methoprene
11984                                                                                                                         cefpodoxime proxetil
11985                                                                                                                                  oclacitinib
11986                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11987                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11988                                                                                                                     imidacloprid, permethrin
11989                                                                                                                                  oclacitinib
11990                                                                                                 florfenicol, mometasone furoate, terbinafine
11991                                                                                                                                   diclofenac
11992                                                                                                 florfenicol, mometasone furoate, terbinafine
11993                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
11994                                                                                                                     fipronil, (s)-methoprene
11995                                                                                                                         dorzolamide, timolol
11996                                                                                                                                  oclacitinib
11997                                                                                                                                   diclofenac
11998                                                                                                                                levothyroxine
11999                                                                                                                                levothyroxine
12000                                                                                                                                  oclacitinib
12001                                                                                                                                    carprofen
12002                                                                                                                                metronidazole
12003                                                                                                                             sulfadimethoxine
12004                                                                                                                                     tramadol
12005                                                                                                    neomycin sulfate, polymyxin b, gramicidin
12006                                                                                                                                   ivermectin
12007                                                                                                                     imidacloprid, permethrin
12008                                                                                                                 ivermectin, pyrantel pamoate
12009                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12010                                                                                                                      ketoconazole, tris-edta
12011                                                                                                                   imidacloprid, pyriproxyfen
12012                                                                                                                                    carprofen
12013                                                                                                                                   cephalexin
12014                                                                                                                                   ivermectin
12015                                                                                                                     imidacloprid, permethrin
12016                                                                                                                                   cephalexin
12017                                                                                                                                   prednisone
12018                                                                                                        dinotefuran, permethrin, pyriproxyfen
12019                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12020                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12021                                                                                                                 ivermectin, pyrantel pamoate
12022                                                                                                                                   fluralaner
12023                                                                                                                                metronidazole
12024                                                                                                                 ivermectin, pyrantel pamoate
12025                                                                                                                                   fluralaner
12026                                                                                                                                  bedinvetmab
12027                                                                                                                                   ivermectin
12028                                                                                                                 ivermectin, pyrantel pamoate
12029                                                                                                                                  amoxicillin
12030                                                                                                                                    firocoxib
12031                                                                                                                 ivermectin, pyrantel pamoate
12032                                                                                                                 ivermectin, pyrantel pamoate
12033                                                                                                                                   fluralaner
12034                                                                                                                                   cephalexin
12035                                                                                                                                    carprofen
12036                                                                                                                 ivermectin, pyrantel pamoate
12037                                                                                                                                   fluralaner
12038                                                                                                                 ivermectin, pyrantel pamoate
12039                                                                                                                                  oclacitinib
12040                                                                                                                                  oclacitinib
12041                                                                                                                                   lokivetmab
12042                                                                                                                                  clopidogrel
12043                                                                                                                                   gabapentin
12044                                                                                                                                   prednisone
12045                                                                                                                                   cephalexin
12046                                                                                                                              diphenhydramine
12047                                                                                                       joint supplement (glucosamine hcl/msm)
12048                                                                                                           fipronil, permethrin, pyriproxyfen
12049                                                                                                                 ivermectin, pyrantel pamoate
12050                                                                                                                                metronidazole
12051                                                                                                                                    probiotic
12052                                                                                                                                 enrofloxacin
12053                                                                                                                                  amoxicillin
12054                                                                                                       joint supplement (glucosamine hcl/msm)
12055                                                                                                                                levothyroxine
12056                                                                                                                                   cephalexin
12057                                                                                                                                 fenbendazole
12058                                                                                                                                   ivermectin
12059                                                                                                                                   afoxolaner
12060                                                                                                                                levothyroxine
12061                                                                                                                                   ivermectin
12062                                                                                                                                   afoxolaner
12063                                                                                                                                levothyroxine
12064                                                                                                                                   afoxolaner
12065                                                                                                                 ivermectin, pyrantel pamoate
12066                                                                                                                                levothyroxine
12067                                                                                                                                    carprofen
12068                                                                                                                          ear cleaner (zymox)
12069                                                                                                                                   afoxolaner
12070                                                                                                                                   ivermectin
12071                                                                                                                                levothyroxine
12072                                                                                                                                    carprofen
12073                                                                                                               polysulfated glycosaminoglycan
12074                                                                                                                                levothyroxine
12075                                                                                                                                    carprofen
12076                                                                                                                                levothyroxine
12077                                                                                                       joint supplement (glucosamine hcl/msm)
12078                                                                                                               polysulfated glycosaminoglycan
12079                                                                                                                                    carprofen
12080                                                                                                                         cefpodoxime proxetil
12081                                                                                                                                levothyroxine
12082                                                                                                               polysulfated glycosaminoglycan
12083                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12084                                                                                                                                    carprofen
12085                                                                                                                                metronidazole
12086                                                                                                                                levothyroxine
12087                                                                                                               polysulfated glycosaminoglycan
12088                                                                                                                                    carprofen
12089                                                                                                                                ciprofloxacin
12090                                                                                                                             milbemycin oxime
12091                                                                                                                                dl-methionine
12092                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12093                                                                                                                             milbemycin oxime
12094                                                                                                                                   afoxolaner
12095                                                                                                                                    carprofen
12096                                                                                                                                   cephalexin
12097                                                                                                                                    carprofen
12098                                                                                                                   milbemycin oxime, spinosad
12099                                                                                                                 ivermectin, pyrantel pamoate
12100                                                                                                                                     spinosad
12101                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
12102                                                                                                     febantel, praziquantel, pyrantel pamoate
12103                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
12104                                                                                                                                     fipronil
12105                                                                                                                 ivermectin, pyrantel pamoate
12106                                                                                                                                metronidazole
12107                                                                                                                                   ivermectin
12108                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12109                                                                                                                             milbemycin oxime
12110                                                                                                                                   afoxolaner
12111                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12112                                                                                                                             milbemycin oxime
12113                                                                                                                                   afoxolaner
12114                                                                                                                                    carprofen
12115                                                                                                                                   gabapentin
12116                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12117                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12118                                                                                                                                    carprofen
12119                                                                                                                         cefpodoxime proxetil
12120                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12121                                                                                                                                  clindamycin
12122                                                                                                                                  doxycycline
12123                                                                                                                                   gabapentin
12124                                                                                                                                  ondansetron
12125                                                                                                                              cbd or hemp oil
12126                                                                                                                                    carprofen
12127                                                                                                                 ivermectin, pyrantel pamoate
12128                                                                                                                                   fluralaner
12129                                                                                                                 ivermectin, pyrantel pamoate
12130                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12131                                                                                                                             milbemycin oxime
12132                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12133                                                                                                                                  minocycline
12134                                                                                                                                   fluralaner
12135                                                                                                                                   fluralaner
12136                                                                                                               milbemycin oxime, praziquantel
12137                                                                                                                 ivermectin, pyrantel pamoate
12138                                                                                                                                    firocoxib
12139                                                                                                                                   ivermectin
12140                                                                                                                                   afoxolaner
12141                                                                                                                                    firocoxib
12142                                                                                                       joint supplement (glucosamine hcl/msm)
12143                                                                                                                                   ivermectin
12144                                                                                                                                   afoxolaner
12145                                                                                                                                   afoxolaner
12146                                                                                                                 ivermectin, pyrantel pamoate
12147                                                                                                                                    firocoxib
12148                                                                                                                 ivermectin, pyrantel pamoate
12149                                                                                                                                   afoxolaner
12150                                                                                                                                    firocoxib
12151                                                                                                                 ivermectin, pyrantel pamoate
12152                                                                                                                                   afoxolaner
12153                                                                                                                                    firocoxib
12154                                                                                                       joint supplement (glucosamine hcl/msm)
12155                                                                                                                            vision supplement
12156                                                                                                                 ivermectin, pyrantel pamoate
12157                                                                                                                                   afoxolaner
12158                                                                                                                                    firocoxib
12159                                                                                                       joint supplement (glucosamine hcl/msm)
12160                                                                                                                            vision supplement
12161                                                                                                                 ivermectin, pyrantel pamoate
12162                                                                                                                                   afoxolaner
12163                                                                                                                                    firocoxib
12164                                                                                                       joint supplement (glucosamine hcl/msm)
12165                                                                                                                                  amoxicillin
12166                                                                                                                                 enrofloxacin
12167                                                                                                       joint supplement (glucosamine hcl/msm)
12168                                                                                                               polysulfated glycosaminoglycan
12169                                                                                                                                    firocoxib
12170                                                                                                                                   cephalexin
12171                                                                                                           amoxicillin, clavulanate potassium
12172                                                                                                                                   gabapentin
12173                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12174                                                                                                               polysulfated glycosaminoglycan
12175                                                                                                                                    firocoxib
12176                                                                                                                                   grapiprant
12177                                                                                                                                metronidazole
12178                                                                                                                           maropitant citrate
12179                                                                                                                                   gabapentin
12180                                                                                                        dinotefuran, permethrin, pyriproxyfen
12181                                                                                                                                 ketoconazole
12182                                                                                               mometasone furoate, orbifloxacin, posaconazole
12183                                                                                                                                 ketoconazole
12184                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12185                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12186                                                                                                                 ivermectin, pyrantel pamoate
12187                                                                                                                 ivermectin, pyrantel pamoate
12188                                                                                                                 ivermectin, pyrantel pamoate
12189                                                                                                                         cefpodoxime proxetil
12190                                                                                                            betamethasone, gentamicin sulfate
12191                                                                                                                                   prednisone
12192                                                                                                                 ivermectin, pyrantel pamoate
12193                                                                                                                     fipronil, (s)-methoprene
12194                                                                                                                 ivermectin, pyrantel pamoate
12195                                                                                                                     fipronil, (s)-methoprene
12196                                                                                                                 ivermectin, pyrantel pamoate
12197                                                                                                                                  bedinvetmab
12198                                                                                                                                   amlodipine
12199                                                                                                                              cbd or hemp oil
12200                                                                                                                                      omega 3
12201                                                                                                                             tylosin tartrate
12202                                                                                                                                metronidazole
12203                                                                                                                                metronidazole
12204                                                                                                                                metronidazole
12205                                                                                                                         cefpodoxime proxetil
12206                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12207                                                                                                                                   prednisone
12208                                                                                                                                metronidazole
12209                                                                                                                                 fenbendazole
12210                                                                                                                                dexamethasone
12211                                                                                                                 ivermectin, pyrantel pamoate
12212                                                                                                                         cefpodoxime proxetil
12213                                                                                                                 ivermectin, pyrantel pamoate
12214                                                                                                                 ivermectin, pyrantel pamoate
12215                                                                                                                 ivermectin, pyrantel pamoate
12216                                                                                                                         cefpodoxime proxetil
12217                                                                                                                                  oclacitinib
12218                                                                                                                           maropitant citrate
12219                                                                                                                                   famotidine
12220                                                                                                                 ivermectin, pyrantel pamoate
12221                                                                                                                                  liver happy
12222                                                                                                                                  shen calmer
12223                                                                                                                    homeopathic vaccine spray
12224                                                                                                                             milbemycin oxime
12225                                                                                                                             milbemycin oxime
12226                                                                                                       joint supplement (glucosamine hcl/msm)
12227                                                                                                                    immune support supplement
12228                                                                                                                    immune support supplement
12229                                                                                                                                  liver happy
12230                                                                                                                             milbemycin oxime
12231                                                                                                                                 praziquantel
12232                                                                                                                                   alprazolam
12233                                                                                                                                metronidazole
12234                                                                                                                           maropitant citrate
12235                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12236                                                                                                                                   fluoxetine
12237                                                                                                                         cefpodoxime proxetil
12238                                                                                                                                marbofloxacin
12239                                                                                                                         cefpodoxime proxetil
12240                                                                                                                                marbofloxacin
12241                                                                                                                           maropitant citrate
12242                                                                                                                                   lokivetmab
12243                                                                                                                                metronidazole
12244                                                                                                                                     spinosad
12245                                                                                                                                   sucralfate
12246                                                                                                                                   diclofenac
12247                                                                                                                                   diclofenac
12248                                                                                                             gentamicin sulfate, ketoconazole
12249                                                                                                                 ivermectin, pyrantel pamoate
12250                                                                                                                                   fluralaner
12251                                                                                                                 ivermectin, pyrantel pamoate
12252                                                                                                                                   fluralaner
12253                                                                                                                 ivermectin, pyrantel pamoate
12254                                                                                                                                   fluralaner
12255                                                                                                                     imidacloprid, moxidectin
12256                                                                                                                                 azithromycin
12257                                                                                                                                  unspecified
12258                                                                                                                                metronidazole
12259                                                                                                                                    cefovecin
12260                                                                                                                                dexamethasone
12261                                                                                                                   milbemycin oxime, spinosad
12262                                                                                                                                    carprofen
12263                                                                                                                         cefpodoxime proxetil
12264                                                                                                                                metronidazole
12265                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12266                                                                                                           fipronil, permethrin, pyriproxyfen
12267                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12268                                                                                                                     fipronil, (s)-methoprene
12269                                                                                                                                   fluoxetine
12270                                                                                                                                    trazodone
12271                                                                                                                     fipronil, (s)-methoprene
12272                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12273                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12274                                                                                                                         cefpodoxime proxetil
12275                                                                                                                     fipronil, (s)-methoprene
12276                                                                                                                             milbemycin oxime
12277                                                                                                                                   fluoxetine
12278                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
12279                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12280                                                                                                                         cefpodoxime proxetil
12281                                                                                                                                   prednisone
12282                                                                                                                           calming supplement
12283                                                                                                               milbemycin oxime, praziquantel
12284                                                                                                                                   fluralaner
12285                                                                                                                             milbemycin oxime
12286                                                                                                                                   fluralaner
12287                                                                                                                                  amoxicillin
12288                                                                                                                                 enrofloxacin
12289                                                                                                 florfenicol, mometasone furoate, terbinafine
12290                                                                                                                                     tramadol
12291                                                                                                                                   gabapentin
12292                                                                                                                                   cephalexin
12293                                                                                                                                    trazodone
12294                                                                                                               milbemycin oxime, praziquantel
12295                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12296                                                                                                                                      omega 3
12297                                                                                                                              cbd or hemp oil
12298                                                                                                                                    carprofen
12299                                                                                                           amoxicillin, clavulanate potassium
12300                                                                                                                                  oclacitinib
12301                                                                                                                                   gabapentin
12302                                                                                                                                    carprofen
12303                                                                                                                                   grapiprant
12304                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12305                                                                                                                                   cephalexin
12306                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12307                                                                                                                                   gabapentin
12308                                                                                                                                  bedinvetmab
12309                                                                                                           chlorhexidine gluconate, ophytrium
12310                                                                                                                                    carprofen
12311                                                                                               mometasone furoate, orbifloxacin, posaconazole
12312                                                                                                                   milbemycin oxime, spinosad
12313                                                                                                                  lufenuron, milbemycin oxime
12314                                                                                                                   milbemycin oxime, spinosad
12315                                                                                                                                      omega 3
12316                                                                                                           joint supplement (glucosamine hcl)
12317                                                                                                                       cyphenothrin, fipronil
12318                                                                                                                         cefpodoxime proxetil
12319                                                                                                                             milbemycin oxime
12320                                                                                                                                metronidazole
12321                                                                                                                             pyrantel pamoate
12322                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12323                                                                                                                                      omega 3
12324                                                                                                                   milbemycin oxime, spinosad
12325                                                                                                                                metronidazole
12326                                                                                                                                   loperamide
12327                                                                                                                         digestive supplement
12328                                                                                                                           maropitant citrate
12329                                                                                                                                dexamethasone
12330                                                                                                                              diphenhydramine
12331                                                                                                                   milbemycin oxime, spinosad
12332                                                                                                               sulfamethoxazole, trimethoprim
12333                                                                                                                                   prednisone
12334                                                                                                                                  vincristine
12335                                                                                                                             cyclophosphamide
12336                                                                                                                                  doxorubicin
12337                                                                                                              anti-cd52 monoclonal antibodies
12338                                                                                                                               l-asparaginase
12339                                                                                                                                   furosemide
12340                                                                                                                                ciprofloxacin
12341                                                                                                           amoxicillin, clavulanate potassium
12342                                                                                                                   milbemycin oxime, spinosad
12343                                                                                                              anti-cd52 monoclonal antibodies
12344                                                                                                                   milbemycin oxime, spinosad
12345                                                                                                                                      omega 3
12346                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12347                                                                                                              anti-cd52 monoclonal antibodies
12348                                                                                                                   milbemycin oxime, spinosad
12349                                                                                                              anti-cd52 monoclonal antibodies
12350                                                                                                                                      omega 3
12351                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12352                                                                                                           amoxicillin, clavulanate potassium
12353                                                                                                                        ampicillin, sulbactam
12354                                                                                                                         prednisolone acetate
12355                                                                                                                                dexamethasone
12356                                                                                                                                   cetirizine
12357                                                                                                                                     fipronil
12358                                                                                                                  lufenuron, milbemycin oxime
12359                                                                                                                                      omega 3
12360                                                                                                           joint supplement (glucosamine hcl)
12361                                                                                                                             milbemycin oxime
12362                                                                                                                             pyrantel pamoate
12363                                                                                                               dexamethasone, diphenhydramine
12364                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12365                                                                                                                                      omega 3
12366                                                                                                                   milbemycin oxime, spinosad
12367                                                                                                                                    deracoxib
12368                                                                                                               sulfamethoxazole, trimethoprim
12369                                                                                                                   milbemycin oxime, spinosad
12370                                                                                                                                   cephalexin
12371                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12372                                                                                                                                 multivitamin
12373                                                                                                                   milbemycin oxime, spinosad
12374                                                                                                                   milbemycin oxime, spinosad
12375                                                                                                                                      omega 3
12376                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12377                                                                                                                   milbemycin oxime, spinosad
12378                                                                                                                                      omega 3
12379                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12380                                                                                                                                   gabapentin
12381                                                                                                                                   grapiprant
12382                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
12383                                                                                                                                   grapiprant
12384                                                                                                           unspecified heartworm preventative
12385                                                                                                                 ivermectin, pyrantel pamoate
12386                                                                                                               polysulfated glycosaminoglycan
12387                                                                                                                 ivermectin, pyrantel pamoate
12388                                                                                                                 ivermectin, pyrantel pamoate
12389                                                                                                                                metronidazole
12390                                                                                                                                    deracoxib
12391                                                                                                           amoxicillin, clavulanate potassium
12392                                                                                                                                   gabapentin
12393                                                                                                                                    deracoxib
12394                                                                                                       joint supplement (glucosamine hcl/msm)
12395                                                                                                                 ivermectin, pyrantel pamoate
12396                                                                                                                 ivermectin, pyrantel pamoate
12397                                                                                                                             pyrantel pamoate
12398                                                                                                                                   ivermectin
12399                                                                                                           fipronil, permethrin, pyriproxyfen
12400                                                                                                                                 fenbendazole
12401                                                                                                                     fipronil, (s)-methoprene
12402                                                                                                                 ivermectin, pyrantel pamoate
12403                                                                                                                                 fenbendazole
12404                                                                                                                                metronidazole
12405                                                                                                                             tylosin tartrate
12406                                                                                                                                    probiotic
12407                                                                                                                                    probiotic
12408                                                                                                                                 fenbendazole
12409                                                                                                                                    probiotic
12410                                                                                                                 ivermectin, pyrantel pamoate
12411                                                                                                           fipronil, permethrin, pyriproxyfen
12412                                                                                                                                metronidazole
12413                                                                                                                                 fenbendazole
12414                                                                                                                 ivermectin, pyrantel pamoate
12415                                                                                                                                   afoxolaner
12416                                                                                                                                    probiotic
12417                                                                                                                 ivermectin, pyrantel pamoate
12418                                                                                                                                   afoxolaner
12419                                                                                                                                    carprofen
12420                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12421                                                                                                                 ivermectin, pyrantel pamoate
12422                                                                                                                                    sarolaner
12423                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12424                                                                                                           amoxicillin, clavulanate potassium
12425                                                                                                                                 fenbendazole
12426                                                                                                                                    carprofen
12427                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12428                                                                                                                                ciprofloxacin
12429                                                                                                                       indoxacarb, permethrin
12430                                                                                                                 ivermectin, pyrantel pamoate
12431                                                                                                                                   afoxolaner
12432                                                                                                                                   fluralaner
12433                                                                                                                 ivermectin, pyrantel pamoate
12434                                                                                                                                    sarolaner
12435                                                                                                                 ivermectin, pyrantel pamoate
12436                                                                                                                                    sarolaner
12437                                                                                                                                  doxycycline
12438                                                                                                                 ivermectin, pyrantel pamoate
12439                                                                                                                                    sarolaner
12440                                                                                                                                   grapiprant
12441                                                                                                               polysulfated glycosaminoglycan
12442                                                                                                                                  bedinvetmab
12443                                                                                                                                metronidazole
12444                                                                                                                                   gabapentin
12445                                                                                                                                    carprofen
12446                                                                                                                                dexamethasone
12447                                                                                                                                   ivermectin
12448                                                                                                               polysulfated glycosaminoglycan
12449                                                                                                                 ivermectin, pyrantel pamoate
12450                                                                                                                           maropitant citrate
12451                                                                                                                                   sucralfate
12452                                                                                                                                    carprofen
12453                                                                                                                                   ivermectin
12454                                                                                                                 ivermectin, pyrantel pamoate
12455                                                                                                                 ivermectin, pyrantel pamoate
12456                                                                                                                 ivermectin, pyrantel pamoate
12457                                                                                                                                   afoxolaner
12458                                                                                                                                      omega 3
12459                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12460                                                                                                                                    carprofen
12461                                                                                                           chlorhexidine gluconate, ophytrium
12462                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12463                                                                                                                                      omega 3
12464                                                                                                                                    carprofen
12465                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12466                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12467                                                                                                                                metronidazole
12468                                                                                                                                   selamectin
12469                                                                                                                                   selamectin
12470                                                                                                                                  hydroxyzine
12471                                                                                                                                  oclacitinib
12472                                                                                                                                  oclacitinib
12473                                                                                                                                   selamectin
12474                                                                                                                                   selamectin
12475                                                                                                                                  oclacitinib
12476                                                                                                                         cefpodoxime proxetil
12477                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12478                                                                                                                                  oclacitinib
12479                                                                                                                                   prednisone
12480                                                                                                                      triamcinolone acetonide
12481                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12482                                                                                                                                  oclacitinib
12483                                                                                                                                  oclacitinib
12484                                                                                                                                   prednisone
12485                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12486                                                                                                                                  oclacitinib
12487                                                                                                                             sulfadimethoxine
12488                                                                                                                                  oclacitinib
12489                                                                                                                             sulfadimethoxine
12490                                                                                                                                   ivermectin
12491                                                                                                                                ciprofloxacin
12492                                                                                                                                ciprofloxacin
12493                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12494                                                                                                                                   afoxolaner
12495                                                                                                                 ivermectin, pyrantel pamoate
12496                                                                                                                                   afoxolaner
12497                                                                                                                                    probiotic
12498                                                                                                                 ivermectin, pyrantel pamoate
12499                                                                                                                 ivermectin, pyrantel pamoate
12500                                                                                                                                   ivermectin
12501                                                                                                                         cefpodoxime proxetil
12502                                                                                                                                  oclacitinib
12503                                                                                                                             tylosin tartrate
12504                                                                                                                                    carprofen
12505                                                                                                                         cefpodoxime proxetil
12506                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12507                                                                                                                                   grapiprant
12508                                                                                                                         prednisolone acetate
12509                                                                                                                                  clindamycin
12510                                                                                                                                    carprofen
12511                                                                                                                 ivermectin, pyrantel pamoate
12512                                                                                                                                   afoxolaner
12513                                                                                                                                   cephalexin
12514                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12515                                                                                               etofenprox, (s)-methoprene, piperonyl butoxide
12516                                                                                                                 ivermectin, pyrantel pamoate
12517                                                                                                                                    carprofen
12518                                                                                                                                  epsiprantel
12519                                                                                                                                  epsiprantel
12520                                                                                                    lufenuron, milbemycin oxime, praziquantel
12521                                                                                                                   milbemycin oxime, spinosad
12522                                                                                                                 ormetoprim, sulfadimethoxine
12523                                                                                                                             milbemycin oxime
12524                                                                                                                  lufenuron, milbemycin oxime
12525                                                                                                                                   fluralaner
12526                                                                                                                                   cetirizine
12527                                                                                                                                  oclacitinib
12528                                                                                                                 ivermectin, pyrantel pamoate
12529                                                                                                        dinotefuran, permethrin, pyriproxyfen
12530                                                                                                                 ivermectin, pyrantel pamoate
12531                                                                                                                                    carprofen
12532                                                                                                                                     tramadol
12533                                                                                                                                    carprofen
12534                                                                                                                         cefpodoxime proxetil
12535                                                                                                                          silver sulfadiazine
12536                                                                                                                                    mupirocin
12537                                                                                                                         cefpodoxime proxetil
12538                                                                                                                                    carprofen
12539                                                                                                                                 acepromazine
12540                                                                                                                 ivermectin, pyrantel pamoate
12541                                                                                                        dinotefuran, permethrin, pyriproxyfen
12542                                                                                                                 ivermectin, pyrantel pamoate
12543                                                                                                        dinotefuran, permethrin, pyriproxyfen
12544                                                                                                                 ivermectin, pyrantel pamoate
12545                                                                                                        dinotefuran, permethrin, pyriproxyfen
12546                                                                                                   toothpaste/dental health solution or chews
12547                                                                                                       joint supplement (glucosamine hcl/msm)
12548                                                                                                                 ivermectin, pyrantel pamoate
12549                                                                                                        dinotefuran, permethrin, pyriproxyfen
12550                                                                                                                 ivermectin, pyrantel pamoate
12551                                                                                                        dinotefuran, permethrin, pyriproxyfen
12552                                                                                                       joint supplement (glucosamine hcl/msm)
12553                                                                                                                 ivermectin, pyrantel pamoate
12554                                                                                                        dinotefuran, permethrin, pyriproxyfen
12555                                                                                                                 ivermectin, pyrantel pamoate
12556                                                                                                                   imidacloprid, pyriproxyfen
12557                                                                                                                                   prednisone
12558                                                                                                                         cefpodoxime proxetil
12559                                                                                                                                levothyroxine
12560                                                                                                                         cefpodoxime proxetil
12561                                                                                                                                   omeprazole
12562                                                                                                                                   sucralfate
12563                                                                                                                                    carprofen
12564                                                                                                                                metronidazole
12565                                                                                                                                levothyroxine
12566                                                                                                                                    carprofen
12567                                                                                                            dexamethasone, miconazole nitrate
12568                                                                                                                                   prednisone
12569                                                                                                                   milbemycin oxime, spinosad
12570                                                                                                        dinotefuran, permethrin, pyriproxyfen
12571                                                                                                                           miconazole nitrate
12572                                                                                                                                   prednisone
12573                                                                                                                                     spinosad
12574                                                                                                                             milbemycin oxime
12575                                                                                                                 ivermectin, pyrantel pamoate
12576                                                                                                                                   afoxolaner
12577                                                                                                      betamethasone, florfenicol, terbinafine
12578                                                                                                                 ivermectin, pyrantel pamoate
12579                                                                                                                                   afoxolaner
12580                                                                                                                 ivermectin, pyrantel pamoate
12581                                                                                                                         cefpodoxime proxetil
12582                                                                                                                                  oclacitinib
12583                                                                                                                                    carprofen
12584                                                                                                                                   afoxolaner
12585                                                                                                                 ivermectin, pyrantel pamoate
12586                                                                                                                                   afoxolaner
12587                                                                                                                                metronidazole
12588                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12589                                                                                                                 ivermectin, pyrantel pamoate
12590                                                                                                                                   afoxolaner
12591                                                                                                                         cefpodoxime proxetil
12592                                                                                                                                    deracoxib
12593                                                                                                                                metronidazole
12594                                                                                                                           maropitant citrate
12595                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12596                                                                                                                                      omega 3
12597                                                                                                                                   prednisone
12598                                                                                                                                  doxycycline
12599                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12600                                                                                                                                  hydrocodone
12601                                                                                                                                    carprofen
12602                                                                                                                                   ivermectin
12603                                                                                                                             pyrantel pamoate
12604                                                                                                                                 praziquantel
12605                                                                                                                             milbemycin oxime
12606                                                                                                                   milbemycin oxime, spinosad
12607                                                                                                                                metronidazole
12608                                                                                                               milbemycin oxime, praziquantel
12609                                                                                                                                   afoxolaner
12610                                                                                                                                   gabapentin
12611                                                                                                                                   grapiprant
12612                                                                                                                 ivermectin, pyrantel pamoate
12613                                                                                                                 ivermectin, pyrantel pamoate
12614                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
12615                                                                                                                                   moxidectin
12616                                                                                                                                   ivermectin
12617                                                                                                                 ivermectin, pyrantel pamoate
12618                                                                                                                 ivermectin, pyrantel pamoate
12619                                                                                                                                    thyroxine
12620                                                                                                                 ivermectin, pyrantel pamoate
12621                                                                                                                              diphenhydramine
12622                                                                                                                                dexamethasone
12623                                                                                                                 ivermectin, pyrantel pamoate
12624                                                                                                                                    thyroxine
12625                                                                                                                 ivermectin, pyrantel pamoate
12626                                                                                                                                    thyroxine
12627                                                                                                                                    thyroxine
12628                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12629                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12630                                                                                                                 ivermectin, pyrantel pamoate
12631                                                                                                                                    thyroxine
12632                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12633                                                                                                                                    thyroxine
12634                                                                                                                                    thyroxine
12635                                                                                                                                levothyroxine
12636                                                                                                                 ivermectin, pyrantel pamoate
12637                                                                                                                                  doxycycline
12638                                                                                                                                   ivermectin
12639                                                                                                                 ivermectin, pyrantel pamoate
12640                                                                                                                                  doxycycline
12641                                                                                                                 ivermectin, pyrantel pamoate
12642                                                                                                                 ivermectin, pyrantel pamoate
12643                                                                                                           amoxicillin, clavulanate potassium
12644                                                                                                                      triamcinolone acetonide
12645                                                                                                                                  amoxicillin
12646                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12647                                                                                                                                   afoxolaner
12648                                                                                                           amoxicillin, clavulanate potassium
12649                                                                                                                      triamcinolone acetonide
12650                                                                                                           amoxicillin, clavulanate potassium
12651                                                                                                                                   afoxolaner
12652                                                                                                           amoxicillin, clavulanate potassium
12653                                                                                                                             sulfadimethoxine
12654                                                                                                                      triamcinolone acetonide
12655                                                                                                                                dexamethasone
12656                                                                                                                 ivermectin, pyrantel pamoate
12657                                                                                                                                   ivermectin
12658                                                                                                                                   ivermectin
12659                                                                                                                 ivermectin, pyrantel pamoate
12660                                                                                                                 ivermectin, pyrantel pamoate
12661                                                                                                                                    deracoxib
12662                                                                                                                           maropitant citrate
12663                                                                                                                                metronidazole
12664                                                                                                                                   famotidine
12665                                                                                                                                    meloxicam
12666                                                                                                                      triamcinolone acetonide
12667                                                                                                                         cefpodoxime proxetil
12668                                                                                                            betamethasone, gentamicin sulfate
12669                                                                                                                             milbemycin oxime
12670                                                                                                                         cefpodoxime proxetil
12671                                                                                                            betamethasone, gentamicin sulfate
12672                                                                                                                                methocarbamol
12673                                                                                                                             sulfadimethoxine
12674                                                                                                                                  oclacitinib
12675                                                                                                                         digestive supplement
12676                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12677                                                                                                                                 fenbendazole
12678                                                                                                                                metronidazole
12679                                                                                                                                metronidazole
12680                                                                                                                                    carprofen
12681                                                                                                                                 azithromycin
12682                                                                                                                                metronidazole
12683                                                                                                                  lufenuron, milbemycin oxime
12684                                                                                                                                    carprofen
12685                                                                                                                                 fenbendazole
12686                                                                                                                 ivermectin, pyrantel pamoate
12687                                                                                                                                metronidazole
12688                                                                                                                                   prednisone
12689                                                                                                                                   cephalexin
12690                                                                                                                                   fluralaner
12691                                                                                                                                  doxycycline
12692                                                                                                               milbemycin oxime, praziquantel
12693                                                                                                                             milbemycin oxime
12694                                                                                                                                    lotilaner
12695                                                                                                                                    carprofen
12696                                                                                                                                  clindamycin
12697                                                                                                                                    carprofen
12698                                                                                                           amoxicillin, clavulanate potassium
12699                                                                                                                                 enrofloxacin
12700                                                                                                                                   gabapentin
12701                                                                                                                             liver supplement
12702                                                                                                                                    methadone
12703                                                                                                                                   trilostane
12704                                                                                                                                   grapiprant
12705                                                                                                                                    deracoxib
12706                                                                                                                                   trilostane
12707                                                                                                                                   trilostane
12708                                                                                                                                   ketoprofen
12709                                                                                                                                    carprofen
12710                                                                                                                 ivermectin, pyrantel pamoate
12711                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12712                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
12713                                                                                                                                   prednisone
12714                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12715                                                                                                                 ivermectin, pyrantel pamoate
12716                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12717                                                                                                   ivermectin, praziquantel, pyrantel pamoate
12718                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12719                                                                                                                         prednisolone acetate
12720                                                                                                                         prednisolone acetate
12721                                                                                                                         prednisolone acetate
12722                                                                                                                         prednisolone acetate
12723                                                                                                                         prednisolone acetate
12724                                                                                                                 ivermectin, pyrantel pamoate
12725                                                                                                                 ivermectin, pyrantel pamoate
12726                                                                                                               milbemycin oxime, praziquantel
12727                                                                                                               milbemycin oxime, praziquantel
12728                                                                                                                               (s)-methoprene
12729                                                                                                           amoxicillin, clavulanate potassium
12730                                                                                               mometasone furoate, orbifloxacin, posaconazole
12731                                                                                                                                metronidazole
12732                                                                                               mometasone furoate, orbifloxacin, posaconazole
12733                                                                                                                                    carprofen
12734                                                                                                                                   cephalexin
12735                                                                                                                  chloroxylenol, ketoconazole
12736                                                                                                                      triamcinolone acetonide
12737                                                                                                                                    cefovecin
12738                                                                                                                                   fluralaner
12739                                                                                                                             milbemycin oxime
12740                                                                                                                   milbemycin oxime, spinosad
12741                                                                                                                                   cephalexin
12742                                                                                                                                    carprofen
12743                                                                                                                   milbemycin oxime, spinosad
12744                                                                                                                   milbemycin oxime, spinosad
12745                                                                                                                           maropitant citrate
12746                                                                                                                                metronidazole
12747                                                                                                                                    probiotic
12748                                                                                                                   lactated ringer's solution
12749                                                                                                                   milbemycin oxime, spinosad
12750                                                                                                                                metronidazole
12751                                                                                                                                    probiotic
12752                                                                                                                           maropitant citrate
12753                                                                                                                                    carprofen
12754                                                                                                                   milbemycin oxime, spinosad
12755                                                                                                                   milbemycin oxime, spinosad
12756                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12757                                                                                                                                  doxycycline
12758                                                                                                                                 enrofloxacin
12759                                                                                                                                    carprofen
12760                                                                                                                                   prednisone
12761                                                                                                                                   ivermectin
12762                                                                                                                                  doxycycline
12763                                                                                                                  lufenuron, milbemycin oxime
12764                                                                                                                  lufenuron, milbemycin oxime
12765                                                                                                                             milbemycin oxime
12766                                                                                                                             milbemycin oxime
12767                                                                                                                             milbemycin oxime
12768                                                                                                                                   ivermectin
12769                                                                                                                 ivermectin, pyrantel pamoate
12770                                                                                                           amoxicillin, clavulanate potassium
12771                                                                                                                                   moxidectin
12772                                                                                                                                  amoxicillin
12773                                                                                                                                  doxycycline
12774                                                                                                                                   ivermectin
12775                                                                                                                                 enrofloxacin
12776                                                                                                            trimeprazine tartrate, prednisone
12777                                                                                                                                  amoxicillin
12778                                                                                                                                ciprofloxacin
12779                                                                                                                                  amoxicillin
12780                                                                                                                                   ivermectin
12781                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12782                                                                                                                                  doxycycline
12783                                                                                                                                marbofloxacin
12784                                                                                                                         digestive supplement
12785                                                                                                                                marbofloxacin
12786                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12787                                                                                                                     flumethrin, imidacloprid
12788                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12789                                                                                                                 ivermectin, pyrantel pamoate
12790                                                                                                                                   afoxolaner
12791                                                                                                            trimeprazine tartrate, prednisone
12792                                                                                                                                    firocoxib
12793                                                                                                                                   cephalexin
12794                                                                                                                                ciprofloxacin
12795                                                                                                                 ivermectin, pyrantel pamoate
12796                                                                                                                     flumethrin, imidacloprid
12797                                                                                                                         digestive supplement
12798                                                                                                                                  amoxicillin
12799                                                                                                                                  amoxicillin
12800                                                                                                                         digestive supplement
12801                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12802                                                                                                                                   prednisone
12803                                                                                                                                   cephalexin
12804                                                                                                                     flumethrin, imidacloprid
12805                                                                                                                      chlorhexidine gluconate
12806                                                                                                           amoxicillin, clavulanate potassium
12807                                                                                                                                   afoxolaner
12808                                                                                                                 ivermectin, pyrantel pamoate
12809                                                                                                                                   lokivetmab
12810                                                                                                           amoxicillin, clavulanate potassium
12811                                                                                                                                   gabapentin
12812                                                                                                                         digestive supplement
12813                                                                                                                 ivermectin, pyrantel pamoate
12814                                                                                                                                   afoxolaner
12815                                                                                                                                      estriol
12816                                                                                                                                    meloxicam
12817                                                                                                                                   amantadine
12818                                                                                                           amoxicillin, clavulanate potassium
12819                                                                                                           amoxicillin, clavulanate potassium
12820                                                                                                                                   gabapentin
12821                                                                                                                                    meloxicam
12822                                                                                                                                   cephalexin
12823                                                                                                           amoxicillin, clavulanate potassium
12824                                                                                                                                   amantadine
12825                                                                                                                                   gabapentin
12826                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12827                                                                                                                                  oclacitinib
12828                                                                                                                      chlorhexidine gluconate
12829                                                                                                                                metronidazole
12830                                                                                                                                 fenbendazole
12831                                                                                                                                   lokivetmab
12832                                                                                                                                    meloxicam
12833                                                                                                                             milbemycin oxime
12834                                                                                                                                     spinosad
12835                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12836                                                                                                                   milbemycin oxime, spinosad
12837                                                                                                                   milbemycin oxime, spinosad
12838                                                                                                                 ivermectin, pyrantel pamoate
12839                                                                                                                                   afoxolaner
12840                                                                                                                 ivermectin, pyrantel pamoate
12841                                                                                                                                   afoxolaner
12842                                                                                                                 ivermectin, pyrantel pamoate
12843                                                                                                                                   afoxolaner
12844                                                                                                                                   cetirizine
12845                                                                                                                         cefpodoxime proxetil
12846                                                                                                                         prednisolone acetate
12847                                                                                                                 ivermectin, pyrantel pamoate
12848                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12849                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12850                                                                                                                  chloroxylenol, ketoconazole
12851                                                                                                            trimeprazine tartrate, prednisone
12852                                                                                                                                  clindamycin
12853                                                                                                                                  hydroxyzine
12854                                                                                                            trimeprazine tartrate, prednisone
12855                                                                                                            trimeprazine tartrate, prednisone
12856                                                                                                       cyphenothrin, fipronil, (s)-methoprene
12857                                                                                                                 ivermectin, pyrantel pamoate
12858                                                                                                            betamethasone, gentamicin sulfate
12859                                                                                                                                  clindamycin
12860                                                                                                                              apomorphine hcl
12861                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12862                                                                                                                 ivermectin, pyrantel pamoate
12863                                                                                                                                   afoxolaner
12864                                                                                                                                      omega 3
12865                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12866                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12867                                                                                                                                  clindamycin
12868                                                                                                                 ivermectin, pyrantel pamoate
12869                                                                                                                                   afoxolaner
12870                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
12871                                                                                                                                  clindamycin
12872                                                                                                                                   cetirizine
12873                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12874                                                                                                                                metronidazole
12875                                                                                                                                  clindamycin
12876                                                                                                                                  oclacitinib
12877                                                                                                                                  clindamycin
12878                                                                                                                                     tramadol
12879                                                                                                                 ivermectin, pyrantel pamoate
12880                                                                                                                                   afoxolaner
12881                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
12882                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12883                                                                                                                                  oclacitinib
12884                                                                                                                                    trazodone
12885                                                                                                                                  clindamycin
12886                                                                                                                                metronidazole
12887                                                                                                                                     tramadol
12888                                                                                                                                  clindamycin
12889                                                                                                                 ivermectin, pyrantel pamoate
12890                                                                                                                                   afoxolaner
12891                                                                                                                                  oclacitinib
12892                                                                                                                                      omega 3
12893                                                                                                                                    trazodone
12894                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
12895                                                                                                        chlorhexidine gluconate, ketoconazole
12896                                                                                                                   milbemycin oxime, spinosad
12897                                                                                                                         cefpodoxime proxetil
12898                                                                                                                                phenobarbital
12899                                                                                                                                   afoxolaner
12900                                                                                                                                   ivermectin
12901                                                                                                                                   ivermectin
12902                                                                                                                                   afoxolaner
12903                                                                                                   toothpaste/dental health solution or chews
12904                                                                                                                            potassium bromide
12905                                                                                                                                    midazolam
12906                                                                                                                            potassium bromide
12907                                                                                                                            potassium bromide
12908                                                                                                                                  terbinafine
12909                                                                                                                                levetiracetam
12910                                                                                                                                    thyroxine
12911                                                                                                                       unspecified medication
12912                                                                                                                       unspecified medication
12913                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
12914                                                                                                                           methylprednisolone
12915                                                                                                                                  clindamycin
12916                                                                                                                 ivermectin, pyrantel pamoate
12917                                                                                                                           maropitant citrate
12918                                                                                                                                metronidazole
12919                                                                                                                 ivermectin, pyrantel pamoate
12920                                                                                                                 ivermectin, pyrantel pamoate
12921                                                                                                                 ivermectin, pyrantel pamoate
12922                                                                                                                     fipronil, (s)-methoprene
12923                                                                                                                                    carprofen
12924                                                                                                                         cefpodoxime proxetil
12925                                                                                                                              diphenhydramine
12926                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
12927                                                                                                                 ivermectin, pyrantel pamoate
12928                                                                                                                 ivermectin, pyrantel pamoate
12929                                                                                                                 ivermectin, pyrantel pamoate
12930                                                                                                                                   afoxolaner
12931                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12932                                                                                                                           gentamicin sulfate
12933                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
12934                                                                                                                             atropine sulfate
12935                                                                                                                         butorphanol tartrate
12936                                                                                                                                 acepromazine
12937                                                                                                                                     propofol
12938                                                                                                                                    carprofen
12939                                                                                                                                    carprofen
12940                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12941                                                                                                                                    carprofen
12942                                                                                                                 ivermectin, pyrantel pamoate
12943                                                                                                                 ivermectin, pyrantel pamoate
12944                                                                                                                     fipronil, (s)-methoprene
12945                                                                                                                 ivermectin, pyrantel pamoate
12946                                                                                                                                metronidazole
12947                                                                                                                                metronidazole
12948                                                                                                                 ivermectin, pyrantel pamoate
12949                                                                                                                 ivermectin, pyrantel pamoate
12950                                                                                                                     fipronil, (s)-methoprene
12951                                                                                                     febantel, praziquantel, pyrantel pamoate
12952                                                                                                                 ivermectin, pyrantel pamoate
12953                                                                                               dexamethasone, neomycin sulfate, thiabendazole
12954                                                                                                                                  doxycycline
12955                                                                                                                                 multivitamin
12956                                                                                                                     fipronil, (s)-methoprene
12957                                                                                                                  lufenuron, milbemycin oxime
12958                                                                                                                                 multivitamin
12959                                                                                              betamethasone, clotrimazole, gentamicin sulfate
12960                                                                                                                 ivermectin, pyrantel pamoate
12961                                                                                                                 ivermectin, pyrantel pamoate
12962                                                                                                                     fipronil, (s)-methoprene
12963                                                                                                                                 multivitamin
12964                                                                                                                 ivermectin, pyrantel pamoate
12965                                                                                                                 ivermectin, pyrantel pamoate
12966                                                                                                                     fipronil, (s)-methoprene
12967                                                                                                                                  doxycycline
12968                                                                                                                                  doxycycline
12969                                                                                                                                   grapiprant
12970                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
12971                                                                                                                      triamcinolone acetonide
12972                                                                                                                                dexamethasone
12973                                                                                                                                  clindamycin
12974                                                                                                                                  clindamycin
12975                                                                                                                                dexamethasone
12976                                                                                                                                  doxycycline
12977                                                                                                                                  clindamycin
12978                                                                                                                                    carprofen
12979                                                                                                            betamethasone, gentamicin sulfate
12980                                                                                                                                levothyroxine
12981                                                                                                                 ivermectin, pyrantel pamoate
12982                                                                                                                                  amoxicillin
12983                                                                                                                                metronidazole
12984                                                                                                            betamethasone, gentamicin sulfate
12985                                                                                                                                    carprofen
12986                                                                                                                                levothyroxine
12987                                                                                                                                  doxycycline
12988                                                                                                                                   ivermectin
12989                                                                                                                 ivermectin, pyrantel pamoate
12990                                                                                                                                    carprofen
12991                                                                                                                 ivermectin, pyrantel pamoate
12992                                                                                                                   imidacloprid, pyriproxyfen
12993                                                                                                                 ivermectin, pyrantel pamoate
12994                                                                                                                   imidacloprid, pyriproxyfen
12995                                                                                                                                    sarolaner
12996                                                                                                                                  oclacitinib
12997                                                                                                                         cefpodoxime proxetil
12998                                                                                                                                    carprofen
12999                                                                                                                 ivermectin, pyrantel pamoate
13000                                                                                                                                metronidazole
13001                                                                                                                                     tramadol
13002                                                                                                                                    carprofen
13003                                                                                                                         cefpodoxime proxetil
13004                                                                                                                                 enrofloxacin
13005                                                                                                                                   ivermectin
13006                                                                                                                                   afoxolaner
13007                                                                                                       joint supplement (glucosamine hcl/msm)
13008                                                                                                                                   ivermectin
13009                                                                                                                                  oclacitinib
13010                                                                                                                             neomycin sulfate
13011                                                                                                                                  oclacitinib
13012                                                                                                                                    carprofen
13013                                                                                                                      triamcinolone acetonide
13014                                                                                                           amoxicillin, clavulanate potassium
13015                                                                                                                                metronidazole
13016                                                                                                                                 enrofloxacin
13017                                                                                                                                metronidazole
13018                                                                                                                                  oclacitinib
13019                                                                                                                                   omeprazole
13020                                                                                                                                 fenbendazole
13021                                                                                                                                    probiotic
13022                                                                                                                                    probiotic
13023                                                                                                                           maropitant citrate
13024                                                                                                                                    carprofen
13025                                                                                                                                metronidazole
13026                                                                                                                                 enrofloxacin
13027                                                                                                                         cefpodoxime proxetil
13028                                                                                                                                  oclacitinib
13029                                                                                                               polysulfated glycosaminoglycan
13030                                                                                                                             liver supplement
13031                                                                                                                              cbd or hemp oil
13032                                                                                                                                    carprofen
13033                                                                                                                                  amoxicillin
13034                                                                                                                   milbemycin oxime, spinosad
13035                                                                                                                 ivermectin, pyrantel pamoate
13036                                           etofenprox, n-octyl bicycloheptene dicarboximide, piperonyl butoxide, pyriproxyfen, (s)-methoprene
13037                                                                                                                 ivermectin, pyrantel pamoate
13038                                                                                                                 ivermectin, pyrantel pamoate
13039                                                                                                                                   ivermectin
13040                                                                                                                                   ivermectin
13041                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13042                                                                                                                 ivermectin, pyrantel pamoate
13043                                                                                                                 ivermectin, pyrantel pamoate
13044                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13045                                                                                                                 ivermectin, pyrantel pamoate
13046                                                                                                                                  amoxicillin
13047                                                                                                                                   prednisone
13048                                                                                                                                metronidazole
13049                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13050                                                                                                           amoxicillin, clavulanate potassium
13051                                                                                                                                    carprofen
13052                                                                                                                                     tramadol
13053                                                                                                                     homatropine, hydrocodone
13054                                                                                                                                  doxycycline
13055                                                                                                                                    carprofen
13056                                                                                                                                     tramadol
13057                                                                                                                     fipronil, (s)-methoprene
13058                                                                                                                 ivermectin, pyrantel pamoate
13059                                                                                                                         cefpodoxime proxetil
13060                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13061                                                                                                                                   fluralaner
13062                                                                                                               polysulfated glycosaminoglycan
13063                                                                                                                                    carprofen
13064                                                                                                                                   fluralaner
13065                                                                                                                 ivermectin, pyrantel pamoate
13066                                                                                                                                      taurine
13067                                                                                                                 ivermectin, pyrantel pamoate
13068                                                                                                                                   fluralaner
13069                                                                                                               polysulfated glycosaminoglycan
13070                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13071                                                                                                               polysulfated glycosaminoglycan
13072                                                                                                               polysulfated glycosaminoglycan
13073                                                                                                               polysulfated glycosaminoglycan
13074                                                                                                               polysulfated glycosaminoglycan
13075                                                                                                    lufenuron, milbemycin oxime, praziquantel
13076                                                                                                                     flumethrin, imidacloprid
13077                                                                                                                  lufenuron, milbemycin oxime
13078                                                                                                                  lufenuron, milbemycin oxime
13079                                                                                                                                   cephalexin
13080                                                                                                                                  oclacitinib
13081                                                                                                                                   lokivetmab
13082                                                                                                                         cefpodoxime proxetil
13083                                                                                                                         cefpodoxime proxetil
13084                                                                                                                  lufenuron, milbemycin oxime
13085                                                                                                                                     fipronil
13086                                                                                                                  lufenuron, milbemycin oxime
13087                                                                                                                                   fluralaner
13088                                                                                                                  lufenuron, milbemycin oxime
13089                                                                                                                             milbemycin oxime
13090                                                                                                                                   fluralaner
13091                                                                                                                             milbemycin oxime
13092                                                                                                                                   fluralaner
13093                                                                                                                      ketoconazole, tris-edta
13094                                                                                                                 ivermectin, pyrantel pamoate
13095                                                                                                                                   fluralaner
13096                                                                                                          ear cleaner (zymox), hydrocortisone
13097                                                                                                                         digestive supplement
13098                                                                                                                                     tramadol
13099                                                                                                                                    firocoxib
13100                                                                                                                   imidacloprid, pyriproxyfen
13101                                                                                                                        clorsulon, ivermectin
13102                                                                                                                   imidacloprid, pyriproxyfen
13103                                                                                                                             milbemycin oxime
13104                                                                                                                                  vincristine
13105                                                                                                                              diphenhydramine
13106                                                                                                                       acetaminophen, codeine
13107                                                                                                                                   cephalexin
13108                                                                                                                   milbemycin oxime, spinosad
13109                                                                                                                   milbemycin oxime, spinosad
13110                                                                                                                                  doxorubicin
13111                                                                                                                                  vincristine
13112                                                                                                                             cyclophosphamide
13113                                                                                                              anti-cd52 monoclonal antibodies
13114                                                                                                                   milbemycin oxime, spinosad
13115                                                                                                                   milbemycin oxime, spinosad
13116                                                                                                                   milbemycin oxime, spinosad
13117                                                                                                                   milbemycin oxime, spinosad
13118                                                                                                           amoxicillin, clavulanate potassium
13119                                                                                                                                   gabapentin
13120                                                                                                                                  telmisartan
13121                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13122                                                                                                                                   omeprazole
13123                                                                                                              ear cleaner (epi-otic advanced)
13124                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13125                                                                                                                                   ivermectin
13126                                                                                                              ear cleaner (epi-otic advanced)
13127                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13128                                                                                                                              diphenhydramine
13129                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13130                                                                                                              ear cleaner (epi-otic advanced)
13131                                                                                                                                   prednisone
13132                                                                                                                              diphenhydramine
13133                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13134                                                                                                                                   ivermectin
13135                                                                                                                             pyrantel pamoate
13136                                                                                                                 ivermectin, pyrantel pamoate
13137                                                                                                                                   fluralaner
13138                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13139                                                                                                                 ivermectin, pyrantel pamoate
13140                                                                                                                                   fluralaner
13141                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13142                                                                                                                 ivermectin, pyrantel pamoate
13143                                                                                                                                   fluralaner
13144                                                                                                                                 ketoconazole
13145                                                                                                                                     tramadol
13146                                                                                                                                   gabapentin
13147                                                                                                                                    carprofen
13148                                                                                                           amoxicillin, clavulanate potassium
13149                                                                                                                 ivermectin, pyrantel pamoate
13150                                                                                                                                   fluralaner
13151                                                                                                                             milbemycin oxime
13152                                                                                                                                   fluralaner
13153                                                                                                           joint supplement (glucosamine hcl)
13154                                                                                                           amoxicillin, clavulanate potassium
13155                                                                                                                                   gabapentin
13156                                                                                                                                   gabapentin
13157                                                                                                                 ivermectin, pyrantel pamoate
13158                                                                                                               polysulfated glycosaminoglycan
13159                                                                                                           joint supplement (glucosamine hcl)
13160                                                                                                                                     turmeric
13161                                                                                                                                    carprofen
13162                                                                                                                                    firocoxib
13163                                                                                                                                metronidazole
13164                                                                                                                                   cephalexin
13165                                                                                                                                   cephalexin
13166                                                                                                                                  doxycycline
13167                                                                                                                                   afoxolaner
13168                                                                                                                 ivermectin, pyrantel pamoate
13169                                                                                                                 ivermectin, pyrantel pamoate
13170                                                                                                                                   afoxolaner
13171                                                                                                                                  oclacitinib
13172                                                                                                                                marbofloxacin
13173                                                                                                                                   tobramycin
13174                                                                                                            trimeprazine tartrate, prednisone
13175                                                                                                                                metronidazole
13176                                                                                                                                   prednisone
13177                                                                                                                                metronidazole
13178                                                                                                                         prednisolone acetate
13179                                                                                                                                    carprofen
13180                                                                                                                                metronidazole
13181                                                                                                                           maropitant citrate
13182                                                                                                                                 fenbendazole
13183                                                                                                                                   cephalexin
13184                                                                                                                           methylprednisolone
13185                                                                                                                           methylprednisolone
13186                                                                                                                                   cephalexin
13187                                                                                                            betamethasone, gentamicin sulfate
13188                                                                                                                     fipronil, (s)-methoprene
13189                                                                                                                 ivermectin, pyrantel pamoate
13190                                                                                                                                  clindamycin
13191                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13192                                                                                                                              diphenhydramine
13193                                                                                                                                    probiotic
13194                                                                                                                           maropitant citrate
13195                                                                                                            betamethasone, gentamicin sulfate
13196                                                                                                                      chlorhexidine gluconate
13197                                                                                                                                  clindamycin
13198                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13199                                                                                                            trimeprazine tartrate, prednisone
13200                                                                                                                         cefpodoxime proxetil
13201                                                                                                                 ivermectin, pyrantel pamoate
13202                                                                                                                                   afoxolaner
13203                                                                                                                           maropitant citrate
13204                                                                                                                                metronidazole
13205                                                                                                                           maropitant citrate
13206                                                                                                               sulfamethoxazole, trimethoprim
13207                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13208                                                                                                               milbemycin oxime, praziquantel
13209                                                                                                                                   afoxolaner
13210                                                                                                                             atropine sulfate
13211                                                                                                                                 acepromazine
13212                                                                                                                           maropitant citrate
13213                                                                                                                                    carprofen
13214                                                                                                                                     morphine
13215                                                                                                                                    midazolam
13216                                                                                                                                     ketamine
13217                                                                                                                                  clindamycin
13218                                                                                                                                    carprofen
13219                                                                                                                                   afoxolaner
13220                                                                                                               milbemycin oxime, praziquantel
13221                                                                                                                                  clindamycin
13222                                                                                                                                    carprofen
13223                                                                                                                           maropitant citrate
13224                                                                                                                             atropine sulfate
13225                                                                                                                                 acepromazine
13226                                                                                                                                    midazolam
13227                                                                                                                                     ketamine
13228                                                                                                                                     morphine
13229                                                                                                                                    carprofen
13230                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13231                                                                                                                                    carprofen
13232                                                                                                                                  clindamycin
13233                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13234                                                                                                                                    carprofen
13235                                                                                                                                   alprazolam
13236                                                                                                                                   prednisone
13237                                                                                               beclomethasone, clotrimazole, neomycin sulfate
13238                                                                                                                                   cephalexin
13239                                                                                                                                metronidazole
13240                                                                                                                         cefpodoxime proxetil
13241                                                                                                                                   cephalexin
13242                                                                                                                                   penicillin
13243                                                                                                                                   cephalexin
13244                                                                                                                                   cetirizine
13245                                                                                                 florfenicol, mometasone furoate, terbinafine
13246                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13247                                                                                                                                    firocoxib
13248                                                                                                                 ivermectin, pyrantel pamoate
13249                                                                                                                     fipronil, (s)-methoprene
13250                                                                                                                                  oclacitinib
13251                                                                                                                         cefpodoxime proxetil
13252                                                   ketoconazole, neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide, tris-edta
13253                                                                                                                 ivermectin, pyrantel pamoate
13254                                                                                                                                    trazodone
13255                                                                                                                                    firocoxib
13256                                                                                                                                 imidacloprid
13257                                                                                                                                   moxidectin
13258                                                                                                                                   cephalexin
13259                                                                                                                                   prednisone
13260                                                                                                                                   ivermectin
13261                                                                                                                                    firocoxib
13262                                                                                                                 ivermectin, pyrantel pamoate
13263                                                                                                                 ivermectin, pyrantel pamoate
13264                                                                                                                 ivermectin, pyrantel pamoate
13265                                                                                                                                   afoxolaner
13266                                                                                                                                   prednisone
13267                                                                                                                                   ivermectin
13268                                                                                                                                   afoxolaner
13269                                                                                                                                   prednisone
13270                                                                                                                 ivermectin, pyrantel pamoate
13271                                                                                                                 ivermectin, pyrantel pamoate
13272                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13273                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13274                                                                                                                                   ivermectin
13275                                                                                                                     fipronil, (s)-methoprene
13276                                                                                                                             sulfadimethoxine
13277                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13278                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13279                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13280                                                                                                                                   cephalexin
13281                                                                                                                                    deracoxib
13282                                                                                                           amoxicillin, clavulanate potassium
13283                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13284                                                                                                                 ivermectin, pyrantel pamoate
13285                                                                                                                     fipronil, (s)-methoprene
13286                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13287                                                                                                                     fipronil, (s)-methoprene
13288                                                                                                                 ivermectin, pyrantel pamoate
13289                                                                                                                                  minocycline
13290                                                                                                               praziquantel, pyrantel pamoate
13291                                                                                                                                    carprofen
13292                                                                                                                                     spinosad
13293                                                                                                                                    ponazuril
13294                                                                                                                             milbemycin oxime
13295                                                                                                                                       garlic
13296                                                                                                                                 fenbendazole
13297                                                                                                                                   ivermectin
13298                                                                                                                                   afoxolaner
13299                                                                                                                                   ivermectin
13300                                                                                                                                   afoxolaner
13301                                                                                                                                 acepromazine
13302                                                                                                                                buprenorphine
13303                                                                                                                                     propofol
13304                                                                                                                                 acepromazine
13305                                                                                                                                hydromorphone
13306                                                                                                              ear cleaner (epi-otic advanced)
13307                                                                                                                                   afoxolaner
13308                                                                                                                 ivermectin, pyrantel pamoate
13309                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13310                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13311                                                                                                                                    carprofen
13312                                                                                                                                     tramadol
13313                                                                                                                 ivermectin, pyrantel pamoate
13314                                                                                                                                   afoxolaner
13315                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13316                                                                                                                                   afoxolaner
13317                                                                                                                                   cephalexin
13318                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13319                                                                                                                                metronidazole
13320                                                                                                                                   afoxolaner
13321                                                                                           ceramide iii, chlorhexidine gluconate, microsilver
13322                                                                                                                                    carprofen
13323                                                                                                                                   lokivetmab
13324                                                                                                                 ivermectin, pyrantel pamoate
13325                                                                                                                                   afoxolaner
13326                                                                                                                                ciprofloxacin
13327                                                                                                                                   cephalexin
13328                                                                                                                         cefpodoxime proxetil
13329                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13330                                                                                                                                    carprofen
13331                                                                                                                   milbemycin oxime, spinosad
13332                                                                                         dimethyl sulfoxide, flunixin, fluocinolone acetonide
13333                                                                                                                   milbemycin oxime, spinosad
13334                                                                                                                   milbemycin oxime, spinosad
13335                                                                                                                                   loratadine
13336                                                                                                                   milbemycin oxime, spinosad
13337                                                                                                                                   gabapentin
13338                                                                                                                                  bedinvetmab
13339                                                                                                                                    firocoxib
13340                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13341                                                                                                                 ivermectin, pyrantel pamoate
13342                                                                                                                                metronidazole
13343                                                                                                                 ivermectin, pyrantel pamoate
13344                                                                                                                                   afoxolaner
13345                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13346                                                                                                                 ivermectin, pyrantel pamoate
13347                                                                                                                                   afoxolaner
13348                                                                                                                                 fenbendazole
13349                                                                                                                 ivermectin, pyrantel pamoate
13350                                                                                                                                metronidazole
13351                                                                                                                                   famotidine
13352                                                                                                           joint supplement (glucosamine hcl)
13353                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
13354                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
13355                                                                                                                   milbemycin oxime, spinosad
13356                                                                                                                   milbemycin oxime, spinosad
13357                                                                                                                     flumethrin, imidacloprid
13358                                                                                                                                    carprofen
13359                                                                                                                                  bedinvetmab
13360                                                                                                                                    carprofen
13361                                                                                                                                   cephalexin
13362                                                                                                                                    carprofen
13363                                                                                                                     urinary tract supplement
13364                                                                                                                                   cephalexin
13365                                                                                                               praziquantel, pyrantel pamoate
13366                                                                                                          ear cleaner (zymox), hydrocortisone
13367                                                                                                                                metronidazole
13368                                                                                                                                    probiotic
13369                                                                                                           amoxicillin, clavulanate potassium
13370                                                                                                          ear cleaner (zymox), hydrocortisone
13371                                                                                                                                    probiotic
13372                                                                                                                                    probiotic
13373                                                                                                                        bismuth subsalicylate
13374                                                                                                                         cefpodoxime proxetil
13375                                                                                                            betamethasone, gentamicin sulfate
13376                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13377                                                                                                                                    probiotic
13378                                                                                                                                    probiotic
13379                                                                                                                        bismuth subsalicylate
13380                                                                                                                           maropitant citrate
13381                                                                                                                                metronidazole
13382                                                                                                                                    probiotic
13383                                                                                                                                    probiotic
13384                                                                                                                                buprenorphine
13385                                                                                                                                    carvacrol
13386                                                                                                                           maropitant citrate
13387                                                                                                                                    carprofen
13388                                                                                                                         cefpodoxime proxetil
13389                                                                                                                                    carvacrol
13390                                                                                                                                    probiotic
13391                                                                                                                         digestive supplement
13392                                                                                                                                    cefazolin
13393                                                                                                                                     oxytocin
13394                                                                                                                                buprenorphine
13395                                                                                                                                  allopurinol
13396                                                                                                                         cefpodoxime proxetil
13397                                                                                                                                levetiracetam
13398                                                                                                                                   prednisone
13399                                                                                                                         cefpodoxime proxetil
13400                                                                                                                                  amoxicillin
13401                                                                                                                                metronidazole
13402                                                                                                                         cefpodoxime proxetil
13403                                                                                                                                   prednisone
13404                                                                                                                                   prednisone
13405                                                                                                           amoxicillin, clavulanate potassium
13406                                                                                                                        ampicillin, sulbactam
13407                                                                                                                                 enrofloxacin
13408                                                                                                                             amikacin sulfate
13409                                                                                                                                    vitamin b
13410                                                                                                                                 iron dextran
13411                                                                                                                                  doxorubicin
13412                                                                                                                                 temozolomide
13413                                                                                                                                    sirolimus
13414                                                                                                                                  ondansetron
13415                                                                                                                                   omeprazole
13416                                                                                                                           maropitant citrate
13417                                                                                                                                    carprofen
13418                                                                                                                         cefpodoxime proxetil
13419                                                                                                           amoxicillin, clavulanate potassium
13420                                                                                                                        ampicillin, sulbactam
13421                                                                                                                                levetiracetam
13422                                                                                                                           maropitant citrate
13423                                                                                                                         digestive supplement
13424                                                                                                                                    vitamin b
13425                                                                                                                               stasis breaker
13426                                                                                                                                yunnan baiyao
13427                                                                                                                                    carvacrol
13428                                                                                                                                 iron dextran
13429                                                                                                                                    sirolimus
13430                                                                                                                                 temozolomide
13431                                                                                                                                    probiotic
13432                                                                                                            sulforaphane producing supplement
13433                                                                                                                                    carprofen
13434                                                                                                                                   prednisone
13435                                                                                                                        ampicillin, sulbactam
13436                                                                                                                                metronidazole
13437                                                                                                                                 enrofloxacin
13438                                                                                                                                   famotidine
13439                                                                                                                                  ondansetron
13440                                                                                                                           maropitant citrate
13441                                                                                                                                 capromorelin
13442                                                                                                                               metoclopramide
13443                                                                                                                                levetiracetam
13444                                                                                                                                    sirolimus
13445                                                                                                                                    probiotic
13446                                                                                                                                    vitamin b
13447                                                                                                                                yunnan baiyao
13448                                                                                                                         liu wei di huang wan
13449                                                                                                                               stasis breaker
13450                                                                                                                               wei qi booster
13451                                                                                                                 ivermectin, pyrantel pamoate
13452                                                                                                                     fipronil, (s)-methoprene
13453                                                                                                                                   cephalexin
13454                                                                                                                 ivermectin, pyrantel pamoate
13455                                                                                                                                   afoxolaner
13456                                                                                                                              diphenhydramine
13457                                                                                                                 ivermectin, pyrantel pamoate
13458                                                                                                                     fipronil, (s)-methoprene
13459                                                                                                          ear cleaner (zymox), hydrocortisone
13460                                                                                                               lotion or leave in conditioner
13461                                                                                                                 ivermectin, pyrantel pamoate
13462                                                                                                                                   afoxolaner
13463                                                                                                                         cefpodoxime proxetil
13464                                                                                                                 ivermectin, pyrantel pamoate
13465                                                                                                                                  amoxicillin
13466                                                                                                                                 enrofloxacin
13467                                                                                                                         cefpodoxime proxetil
13468                                                                                                                 ivermectin, pyrantel pamoate
13469                                                                                                                                metronidazole
13470                                                                                                     febantel, praziquantel, pyrantel pamoate
13471                                                                                                                 ivermectin, pyrantel pamoate
13472                                                                                                                                diphenoxylate
13473                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13474                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13475                                                                                                                  lufenuron, milbemycin oxime
13476                                                                                                                         prebiotic, probiotic
13477                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13478                                                                                                                                  amoxicillin
13479                                                                                                                                    meloxicam
13480                                                                                                                                metronidazole
13481                                                                                                                                    probiotic
13482                                                                                                                                   prednisone
13483                                                                                                                  lufenuron, milbemycin oxime
13484                                                                                                                       cyphenothrin, fipronil
13485                                                                                                                                   omeprazole
13486                                                                                                                                metronidazole
13487                                                                                                                                   omeprazole
13488                                                                                                                                metronidazole
13489                                                                                                                                   cephalexin
13490                                                                                                                                   cephalexin
13491                                                                                                           amoxicillin, clavulanate potassium
13492                                                                                                                                   prednisone
13493                                                                                                           amoxicillin, clavulanate potassium
13494                                                                                                                                   gabapentin
13495                                                                                                                                   prednisone
13496                                                                                                                   imidacloprid, pyriproxyfen
13497                                                                                                                              dexmedetomidine
13498                                                                                                                                     ketamine
13499                                                                                                                         butorphanol tartrate
13500                                                                                                                                  atipamezole
13501                                                                                                                                   diclofenac
13502                                                                                                                                   ivermectin
13503                                                                                                                     imidacloprid, permethrin
13504                                                                                                                                   diclofenac
13505                                                                                                           unspecified heartworm preventative
13506                                                                                                                 ivermectin, pyrantel pamoate
13507                                                                                                                                   ivermectin
13508                                                                                                                               chlorphenamine
13509                                                                                                                                   cetirizine
13510                                                                                                                                    midazolam
13511                                                                                                                                     propofol
13512                                                                                                                             atropine sulfate
13513                                                                                                                                   ampicillin
13514                                                                                                                 ivermectin, pyrantel pamoate
13515                                                                                                                                   fluralaner
13516                                                                                                                                   ivermectin
13517                                                                                                                                 penicillin g
13518                                                                                                                                   ivermectin
13519                                                                                                                                   fluralaner
13520                                                                                                                                   cephalexin
13521                                                                                                                           methylprednisolone
13522                                                                                                                                   cephalexin
13523                                                                                                                                   lokivetmab
13524                                                                                                                                metronidazole
13525                                                                                                                                metronidazole
13526                                                                                                                                    carprofen
13527                                                                                                                                metronidazole
13528                                                                                                                                metronidazole
13529                                                                                                                                  amoxicillin
13530                                                                                                                                  ondansetron
13531                                                                                                                                metronidazole
13532                                                                                                                                    probiotic
13533                                                                                                                                    vitamin c
13534                                                                                                                 ivermectin, pyrantel pamoate
13535                                                                                                                     fipronil, (s)-methoprene
13536                                                                                                                   milbemycin oxime, spinosad
13537                                                                                                                  lufenuron, milbemycin oxime
13538                                                                                                    lufenuron, milbemycin oxime, praziquantel
13539                                                                                                                   milbemycin oxime, spinosad
13540                                                                                                                                  doxycycline
13541                                                                                                                   milbemycin oxime, spinosad
13542                                                                                                                   milbemycin oxime, spinosad
13543                                                                                                                                    carprofen
13544                                                                                                                   milbemycin oxime, spinosad
13545                                                                                                                                metronidazole
13546                                                                                                                                    deracoxib
13547                                                                                                                                    deracoxib
13548                                                                                                                   milbemycin oxime, spinosad
13549                                                                                                                                   famotidine
13550                                                                                                                                metronidazole
13551                                                                                                                                dexamethasone
13552                                                                                                                                   cephalexin
13553                                                                                                                                   prednisone
13554                                                                                                                   milbemycin oxime, spinosad
13555                                                                                                                         cefpodoxime proxetil
13556                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13557                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13558                                                                                                                   milbemycin oxime, spinosad
13559                                                                                                                   milbemycin oxime, spinosad
13560                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13561                                                                                                                                   alprazolam
13562                                                                                                                   milbemycin oxime, spinosad
13563                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
13564                                                                                                                   milbemycin oxime, spinosad
13565                                                                                                                                metronidazole
13566                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13567                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13568                                                                                                                                   alprazolam
13569                                                                                                                                  clindamycin
13570                                                                                                                                    carprofen
13571                                                                                                                                    carprofen
13572                                                                                                                                 acepromazine
13573                                                                                                                         butorphanol tartrate
13574                                                                                                                        tiletamine, zolazepam
13575                                                                                                                                   isoflurane
13576                                                                                                                   milbemycin oxime, spinosad
13577                                                                                                                      ketoconazole, tris-edta
13578                                                                                                            betamethasone, gentamicin sulfate
13579                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13580                                                                                                                                   alprazolam
13581                                                                                                                   milbemycin oxime, spinosad
13582                                                                                                                                   alprazolam
13583                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13584                                                                                                                      ketoconazole, tris-edta
13585                                                                                                                   milbemycin oxime, spinosad
13586                                                                                                            betamethasone, gentamicin sulfate
13587                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
13588                                                                                                                                    mupirocin
13589                                                                                                                                   alprazolam
13590                                                                                                                      chlorhexidine gluconate
13591                                                                                                                         cefpodoxime proxetil
13592                                                                                                                                   alprazolam
13593                                                                                                                                    carprofen
13594                                                                                                            betamethasone, gentamicin sulfate
13595                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13596                                                                                                                                    carprofen
13597                                                                                                                         cefpodoxime proxetil
13598                                                                                                                                  oclacitinib
13599                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13600                                                                                                            betamethasone, gentamicin sulfate
13601                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13602                                                                                                                                  clindamycin
13603                                                                                                                                 enrofloxacin
13604                                                                                                                                   alprazolam
13605                                                                                                                                    carprofen
13606                                                                                                            betamethasone, gentamicin sulfate
13607                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
13608                                                                                                                             milbemycin oxime
13609                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13610                                                                                                                                    carprofen
13611                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13612                                                                                                                                 fenbendazole
13613                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13614                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13615                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13616                                                                                                                                 fenbendazole
13617                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13618                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13619                                                                                                                                  doxycycline
13620                                                                                                                                 fenbendazole
13621                                                                                                           amoxicillin, clavulanate potassium
13622                                                                                                                                    carprofen
13623                                                                                                                   imidacloprid, pyriproxyfen
13624                                                                                                                   imidacloprid, pyriproxyfen
13625                                                                                                                   imidacloprid, pyriproxyfen
13626                                                                                                                                    carprofen
13627                                                                                                                                  clindamycin
13628                                                                                                                   imidacloprid, pyriproxyfen
13629                                                                                                                                  clindamycin
13630                                                                                                                                    carprofen
13631                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13632                                                                                                                                   afoxolaner
13633                                                                                                                 ivermectin, pyrantel pamoate
13634                                                                                                                 ivermectin, pyrantel pamoate
13635                                                                                                                     fipronil, (s)-methoprene
13636                                                                                                                 ivermectin, pyrantel pamoate
13637                                                                                                                     fipronil, (s)-methoprene
13638                                                                                                                 ivermectin, pyrantel pamoate
13639                                                                                                                                   afoxolaner
13640                                                                                                                 ivermectin, pyrantel pamoate
13641                                                                                                                 ivermectin, pyrantel pamoate
13642                                                                                                                                   afoxolaner
13643                                                                                                                 ivermectin, pyrantel pamoate
13644                                                                                                                                   afoxolaner
13645                                                                                                                 ivermectin, pyrantel pamoate
13646                                                                                                                                   afoxolaner
13647                                                                                                                         cefpodoxime proxetil
13648                                                                                                                                    deracoxib
13649                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13650                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13651                                                                                                                                   ivermectin
13652                                                                                                                                   ivermectin
13653                                                                                                                                   cephalexin
13654                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13655                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13656                                                                                                                                   cephalexin
13657                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13658                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13659                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13660                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13661                                                                                                      betamethasone, florfenicol, terbinafine
13662                                                                                                                                   cephalexin
13663                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
13664                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13665                                                                                                                                   cephalexin
13666                                                                                                 florfenicol, mometasone furoate, terbinafine
13667                                                                                                                                    carprofen
13668                                                                                                                                buprenorphine
13669                                                                                                                                 acepromazine
13670                                                                                                                             atropine sulfate
13671                                                                                                                                     morphine
13672                                                                                                                                     propofol
13673                                                                                                                                   isoflurane
13674                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13675                                                                                                                 ivermectin, pyrantel pamoate
13676                                                                                                                                   cephalexin
13677                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13678                                                                                                 florfenicol, mometasone furoate, terbinafine
13679                                                                                                                                    carprofen
13680                                                                                                                                   isoflurane
13681                                                                                                                                 acepromazine
13682                                                                                                                             atropine sulfate
13683                                                                                                                                     morphine
13684                                                                                                                                     propofol
13685                                                                                                                                    carprofen
13686                                                                                                                                   ivermectin
13687                                                                                                                                   fluralaner
13688                                                                                                                        clorsulon, ivermectin
13689                                                                                                                   milbemycin oxime, spinosad
13690                                                                                                                      triamcinolone acetonide
13691                                                                                                                                 enrofloxacin
13692                                                                                                                                 ketoconazole
13693                                                                                                                   milbemycin oxime, spinosad
13694                                                                                                                 ivermectin, pyrantel pamoate
13695                                                                                                                             milbemycin oxime
13696                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13697                                                                                                                           gentamicin sulfate
13698                                                                                                                                    carprofen
13699                                                                                                                                   gabapentin
13700                                                                                                                                methocarbamol
13701                                                                                                                                    carprofen
13702                                                                                                                                   prednisone
13703                                                                                                                                dexamethasone
13704                                                                                                                                    carprofen
13705                                                                                                                                  oclacitinib
13706                                                                                                                   milbemycin oxime, spinosad
13707                                                                                                                   milbemycin oxime, spinosad
13708                                                                                                                                  amoxicillin
13709                                                                                                                 ivermectin, pyrantel pamoate
13710                                                                                                                                   ivermectin
13711                                                                                                           fipronil, permethrin, pyriproxyfen
13712                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13713                                                                                                                      ketoconazole, tris-edta
13714                                                                                                                                levothyroxine
13715                                                                                                                                methocarbamol
13716                                                                                                                                  doxycycline
13717                                                                                                                                levothyroxine
13718                                                                                                                                   ivermectin
13719                                                                                                                                     spinosad
13720                                                                                                                                 fenbendazole
13721                                                                                                                                metronidazole
13722                                                                                                                                    probiotic
13723                                                                                                                     fipronil, (s)-methoprene
13724                                                                                                                     flumethrin, imidacloprid
13725                                                                                                                                levothyroxine
13726                                                                                                                                  doxycycline
13727                                                                                                                                methocarbamol
13728                                                                                                                                 fenbendazole
13729                                                                                                                                metronidazole
13730                                                                                                                                    probiotic
13731                                                                                               mometasone furoate, orbifloxacin, posaconazole
13732                                                                                                                                  doxycycline
13733                                                                                                                                methocarbamol
13734                                                                                                                     flumethrin, imidacloprid
13735                                                                                                                                levothyroxine
13736                                                                                                                         cefpodoxime proxetil
13737                                                                                                                 ivermectin, pyrantel pamoate
13738                                                                                                                                levothyroxine
13739                                                                                                                                  doxycycline
13740                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13741                                                                                                            trimeprazine tartrate, prednisone
13742                                                                                                                                levothyroxine
13743                                                                                                                                   lokivetmab
13744                                                                                                                                  clindamycin
13745                                                                                                                  lufenuron, milbemycin oxime
13746                                                                                                                  lufenuron, milbemycin oxime
13747                                                                                                                  lufenuron, milbemycin oxime
13748                                                                                                                             milbemycin oxime
13749                                                                                                                                   fluralaner
13750                                                                                                                                   fluralaner
13751                                                                                                                             milbemycin oxime
13752                                                                                                                                    trazodone
13753                                                                                                                             milbemycin oxime
13754                                                                                                                                   fluralaner
13755                                                                                                                         cefpodoxime proxetil
13756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13757                                                                                                                                    carprofen
13758                                                                                                                                    carprofen
13759                                                                                                                                   gabapentin
13760                                                                                                                                    carprofen
13761                                                                                                                         cefpodoxime proxetil
13762                                                                                                                                   gabapentin
13763                                                                                                                                     ursodiol
13764                                                                                                                                  bedinvetmab
13765                                                                                                                                    carprofen
13766                                                                                                                   milbemycin oxime, spinosad
13767                                                                                                                  lufenuron, milbemycin oxime
13768                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
13769                                                                                                            betamethasone, gentamicin sulfate
13770                                                                                                                                 ketoconazole
13771                                                                                                                                    carprofen
13772                                                                                                   ivermectin, praziquantel, pyrantel pamoate
13773                                                                                                                                metronidazole
13774                                                                                                                                  doxycycline
13775                                                                                                   ivermectin, praziquantel, pyrantel pamoate
13776                                                                                                                             milbemycin oxime
13777                                                                                                                                 enrofloxacin
13778                                                                                                                                    carprofen
13779                                                                                                           amoxicillin, clavulanate potassium
13780                                                                                                               polysulfated glycosaminoglycan
13781                                                                                                                             milbemycin oxime
13782                                                                                                                                    meloxicam
13783                                                                                                                             milbemycin oxime
13784                                                                                                                                    carprofen
13785                                                                                                                         cefpodoxime proxetil
13786                                                                                                      betamethasone, florfenicol, terbinafine
13787                                                                                                                                   gabapentin
13788                                                                                                                                    carprofen
13789                                                                                                                                   gabapentin
13790                                                                                                                                    carprofen
13791                                                                                                                                   gabapentin
13792                                                                                                                                   amantadine
13793                                                                                                                                    carprofen
13794                                                                                                                                    cefovecin
13795                                                                                                                                   prednisone
13796                                                                                                           chlorhexidine gluconate, ophytrium
13797                                                                                                                                dexamethasone
13798                                                                                                                                  epinephrine
13799                                                                                                                                  epinephrine
13800                                                                                                            trimeprazine tartrate, prednisone
13801                                                                                                                 ivermectin, pyrantel pamoate
13802                                                                                                            trimeprazine tartrate, prednisone
13803                                                                                                           amoxicillin, clavulanate potassium
13804                                                                                                               polysulfated glycosaminoglycan
13805                                                                                                                                    probiotic
13806                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13807                                                                                                                     urinary tract supplement
13808                                                                                                                                    carprofen
13809                                                                                                                                metronidazole
13810                                                                                                                                  amoxicillin
13811                                                                                                                                     tramadol
13812                                                                                                           amoxicillin, clavulanate potassium
13813                                                                                                                         cefpodoxime proxetil
13814                                                                                                                                 acepromazine
13815                                                                                                                                   famotidine
13816                                                                                                                 ivermectin, pyrantel pamoate
13817                                                                                                                                metronidazole
13818                                                                                                               polysulfated glycosaminoglycan
13819                                                                                                                                   famotidine
13820                                                                                                                 ivermectin, pyrantel pamoate
13821                                                                                                                           maropitant citrate
13822                                                                                                                           maropitant citrate
13823                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13824                                                                                                                                   ivermectin
13825                                                                                                                     fipronil, (s)-methoprene
13826                                                                                                                                   famotidine
13827                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13828                                                                                                                                    probiotic
13829                                                                                                                                  hydroxyzine
13830                                                                                                                                    carprofen
13831                                                                                                                                  doxycycline
13832                                                                                                                                metronidazole
13833                                                                                                                                   sucralfate
13834                                                                                                                          phenylpropanolamine
13835                                                                                                                               metoclopramide
13836                                                                                                                                   omeprazole
13837                                                                                                                                    vitamin b
13838                                                                                                               polysulfated glycosaminoglycan
13839                                                                                                                                   alprazolam
13840                                                                                                                                   ivermectin
13841                                                                                                                     fipronil, (s)-methoprene
13842                                                                                                                                   cetirizine
13843                                                                                                                                   ranitidine
13844                                                                                                                               metoclopramide
13845                                                                                                                                    probiotic
13846                                                                                                                                    vitamin b
13847                                                                                                               polysulfated glycosaminoglycan
13848                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
13849                                                                                                  chlorhexidine gluconate, miconazole nitrate
13850                                                                                                                                   prednisone
13851                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13852                                                                                                            dexamethasone, miconazole nitrate
13853                                                                                                                                metronidazole
13854                                                                                                                               metoclopramide
13855                                                                                                                                   cetirizine
13856                                                                                                                                   ranitidine
13857                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13858                                                                                                                                    probiotic
13859                                                                                                               polysulfated glycosaminoglycan
13860                                                                                                                                    vitamin b
13861                                                                                                                                hydromorphone
13862                                                                                                                             atropine sulfate
13863                                                                                                                                     propofol
13864                                                                                                                                buprenorphine
13865                                                                                                                                dexamethasone
13866                                                                                                                                 enrofloxacin
13867                                                                                                                                     tramadol
13868                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13869                                                                                                                                   cetirizine
13870                                                                                                                               metoclopramide
13871                                                                                                                                metronidazole
13872                                                                                                                                     ursodiol
13873                                                                                                                                   ranitidine
13874                                                                                                                                    probiotic
13875                                                                                                                                   ivermectin
13876                                                                                                               polysulfated glycosaminoglycan
13877                                                                                                                                    vitamin b
13878                                                                                                                           maropitant citrate
13879                                                                                                                           maropitant citrate
13880                                                                                                                                   sucralfate
13881                                                                                                                             sulfadimethoxine
13882                                                                                                                                   ivermectin
13883                                                                                                                                    carprofen
13884                                                                                                            betamethasone, gentamicin sulfate
13885                                                                                                                                   ivermectin
13886                                                                                                                       unspecified medication
13887                                                                                                                      triamcinolone acetonide
13888                                                                                                                         cefpodoxime proxetil
13889                                                                                                                         cefpodoxime proxetil
13890                                                                                                                      triamcinolone acetonide
13891                                                                                                           amoxicillin, clavulanate potassium
13892                                                                                                                                  doxycycline
13893                                                                                                                             milbemycin oxime
13894                                                                                                        dinotefuran, permethrin, pyriproxyfen
13895                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
13896                                                                                                                             milbemycin oxime
13897                                                                                                        dinotefuran, permethrin, pyriproxyfen
13898                                                                                                                                    carprofen
13899                                                                                                                                     tramadol
13900                                                                                                                                   gabapentin
13901                                                                                                                                    carprofen
13902                                                                                                                             pyrantel pamoate
13903                                                                                                                                marbofloxacin
13904                                                                                                           amoxicillin, clavulanate potassium
13905                                                                                                                             milbemycin oxime
13906                                                                                                        dinotefuran, permethrin, pyriproxyfen
13907                                                                                                                                   prednisone
13908                                                                                                                                 fenbendazole
13909                                                                                                                                   prednisone
13910                                                                                                                             milbemycin oxime
13911                                                                                                        dinotefuran, permethrin, pyriproxyfen
13912                                                                                                                                   lokivetmab
13913                                                                                                                                  bedinvetmab
13914                                                                                                                                    carprofen
13915                                                                                                                                   tacrolimus
13916                                                                                                                         prednisolone acetate
13917                                                                                                                                   tacrolimus
13918                                                                                                           amoxicillin, clavulanate potassium
13919                                                                                                                                    deracoxib
13920                                                                                                                                 acepromazine
13921                                                                                                                                   selamectin
13922                                                                                                                             milbemycin oxime
13923                                                                                                                                     spinosad
13924                                                                                                           amoxicillin, clavulanate potassium
13925                                                                                                                   milbemycin oxime, spinosad
13926                                                                                                                                  doxycycline
13927                                                                                                                                  hydrocodone
13928                                                                                                                                  doxycycline
13929                                                                                                                                  hydrocodone
13930                                                                                                                                   selamectin
13931                                                                                                                                    deracoxib
13932                                                                                                                                   alprazolam
13933                                                                                                                                   alprazolam
13934                                                                                                                                   alprazolam
13935                                                                                                                                    carprofen
13936                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
13937                                                                                                                                levothyroxine
13938                                                                                                                                  fluconazole
13939                                                                                                                                levothyroxine
13940                                                                                                                                  fluconazole
13941                                                                                                                                levothyroxine
13942                                                                                                                                levothyroxine
13943                                                                                                                 ivermectin, pyrantel pamoate
13944                                                                                                                                levothyroxine
13945                                                                                                                                 enrofloxacin
13946                                                                                                            betamethasone, gentamicin sulfate
13947                                                                                                                 ivermectin, pyrantel pamoate
13948                                                                                                                                   afoxolaner
13949                                                                                                                         cefpodoxime proxetil
13950                                                                                                                                  terbinafine
13951                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13952                                                                                                                         cefpodoxime proxetil
13953                                                                                                                                   alprazolam
13954                                                                                                                                    trazodone
13955                                                                                                                                    carprofen
13956                                                                                                                                ciprofloxacin
13957                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
13958                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13959                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13960                                                                                         dexamethasone, enrofloxacin, ketoconazole, tris-edta
13961                                                                                                                                    trazodone
13962                                                                                                                                   gabapentin
13963                                                                                                                              cbd or hemp oil
13964                                                                                                                                    carprofen
13965                                                                                                                           calming supplement
13966                                                                                                                                metronidazole
13967                                                                                                                             tylosin tartrate
13968                                                                                                                                   ivermectin
13969                                                                                                                                   alprazolam
13970                                                                                              betamethasone, clotrimazole, gentamicin sulfate
13971                                                                                                                                   alprazolam
13972                                                                                                   toothpaste/dental health solution or chews
13973                                                                                                                                   ivermectin
13974                                                                                                                                   cephalexin
13975                                                                                                                                    carprofen
13976                                                                                                                                   famotidine
13977                                                                                                                           maropitant citrate
13978                                                                                                                                  clindamycin
13979                                                                                                                     fipronil, (s)-methoprene
13980                                                                                                                 ivermectin, pyrantel pamoate
13981                                                                                                                                   ampicillin
13982                                                                                                                                  clindamycin
13983                                                                                                                                   famotidine
13984                                                                                                                           maropitant citrate
13985                                                                                                                                   cephalexin
13986                                                                                                                                    carprofen
13987                                                                                                                                 acepromazine
13988                                                                                                                                metronidazole
13989                                                                                                                                   alprazolam
13990                                                                                                                                  clindamycin
13991                                                                                                                                    carprofen
13992                                                                                                                 ivermectin, pyrantel pamoate
13993                                                                                                                                   afoxolaner
13994                                                                                                                 ivermectin, pyrantel pamoate
13995                                                                                                                                    sarolaner
13996                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
13997                                                                                                                                    sarolaner
13998                                                                                                                 ivermectin, pyrantel pamoate
13999                                                                                                                 ivermectin, pyrantel pamoate
14000                                                                                                                                    sarolaner
14001                                                                                                                                  clindamycin
14002                                                                                                                                dexamethasone
14003                                                                                                           amoxicillin, clavulanate potassium
14004                                                                                                                                   prednisone
14005                                                                                                                                    carprofen
14006                                                                                                            betamethasone, gentamicin sulfate
14007                                                                                                                             milbemycin oxime
14008                                                                                                            enrofloxacin, silver sulfadiazine
14009                                                                                                                             milbemycin oxime
14010                                                                                                                                   gabapentin
14011                                                                                                                                    carprofen
14012                                                                                                                                   cephalexin
14013                                                                                                                                   gabapentin
14014                                                                                                               polysulfated glycosaminoglycan
14015                                                                                                                                   ivermectin
14016                                                                                                                                 azithromycin
14017                                                                                                                                    carprofen
14018                                                                                                                                  clindamycin
14019                                                                                                                 ivermectin, pyrantel pamoate
14020                                                                                                                                    carprofen
14021                                                                                                                                   gabapentin
14022                                                                                                                 ivermectin, pyrantel pamoate
14023                                                                                                                                    sarolaner
14024                                                                                                                                    carprofen
14025                                                                                                                                   ivermectin
14026                                                                                                                                    sarolaner
14027                                                                                                                 ivermectin, pyrantel pamoate
14028                                                                                                                                    sarolaner
14029                                                                                                                                    carprofen
14030                                                                                                                                    carprofen
14031                                                                                                                                metronidazole
14032                                                                                                                                 itraconazole
14033                                                                                                                                  doxycycline
14034                                                                                                                   milbemycin oxime, spinosad
14035                                                                                                                                   selamectin
14036                                                                                                                                   selamectin
14037                                                                                                                             milbemycin oxime
14038                                                                                                           amoxicillin, clavulanate potassium
14039                                                                                                                                    carprofen
14040                                                                                                                                  amoxicillin
14041                                                                                                                                    carprofen
14042                                                                                                           amoxicillin, clavulanate potassium
14043                                                                                                                                   prednisone
14044                                                                                                                                   famotidine
14045                                                                                                                              diphenhydramine
14046                                                                                                                                     tramadol
14047                                                                                                                                   gabapentin
14048                                                                                                                                    carprofen
14049                                                                                                           amoxicillin, clavulanate potassium
14050                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
14051                                                                                                                             milbemycin oxime
14052                                                                                                           amoxicillin, clavulanate potassium
14053                                                                                                                                 fenbendazole
14054                                                                                                                               metoclopramide
14055                                                                                                                             milbemycin oxime
14056                                                                                                                              diphenhydramine
14057                                                                                                                                   famotidine
14058                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14059                                                                                                                                   selamectin
14060                                                                                                                                   ivermectin
14061                                                                                                                 ivermectin, pyrantel pamoate
14062                                                                                                                 ivermectin, pyrantel pamoate
14063                                                                                                                     fipronil, (s)-methoprene
14064                                                                                                                 ivermectin, pyrantel pamoate
14065                                                                                                       joint supplement (glucosamine hcl/msm)
14066                                                                                                                                   pimobendan
14067                                                                                                                               benazepril hcl
14068                                                                                                                               spironolactone
14069                                                                                                                                      taurine
14070                                                                                                                                      omega 3
14071                                                                                                                     fipronil, (s)-methoprene
14072                                                                                                                                      taurine
14073                                                                                                                                   pimobendan
14074                                                                                                                               spironolactone
14075                                                                                                                               benazepril hcl
14076                                                                                                                               benazepril hcl
14077                                                                                                                                   pimobendan
14078                                                                                                                               spironolactone
14079                                                                                                                                      taurine
14080                                                                                                                 ivermectin, pyrantel pamoate
14081                                                                                                                     fipronil, (s)-methoprene
14082                                                                                                                                metronidazole
14083                                                                                                                                      taurine
14084                                                                                                                               benazepril hcl
14085                                                                                                                               spironolactone
14086                                                                                                                                   pimobendan
14087                                                                                                                                   cephalexin
14088                                                                                                                                   pimobendan
14089                                                                                                                               spironolactone
14090                                                                                                                               benazepril hcl
14091                                                                                                                                      taurine
14092                                                                                                                                   pimobendan
14093                                                                                                                               spironolactone
14094                                                                                                                               benazepril hcl
14095                                                                                                                                      taurine
14096                                                                                                                               spironolactone
14097                                                                                                                               benazepril hcl
14098                                                                                                                                   pimobendan
14099                                                                                                                                      taurine
14100                                                                                                                                  bedinvetmab
14101                                                                                                                               spironolactone
14102                                                                                                                               benazepril hcl
14103                                                                                                                                   pimobendan
14104                                                                                                                                      taurine
14105                                                                                                                                   furosemide
14106                                                                                                                  lufenuron, milbemycin oxime
14107                                                                                                                                metronidazole
14108                                                                                                                                  amoxicillin
14109                                                                                                                                     tramadol
14110                                                                                                                                 fenbendazole
14111                                                                                                                               metoclopramide
14112                                                                                                                                   cephalexin
14113                                                                                                                dextromethorphan hydrobromide
14114                                                                                                                   milbemycin oxime, spinosad
14115                                                                                                                                   cephalexin
14116                                                                                                                dextromethorphan hydrobromide
14117                                                                                                                                metronidazole
14118                                                                                                                   milbemycin oxime, spinosad
14119                                                                                                                   milbemycin oxime, spinosad
14120                                                                                                                         butorphanol tartrate
14121                                                                                                                              dexmedetomidine
14122                                                                                                                                  atipamezole
14123                                                                                                                   lactated ringer's solution
14124                                                                                                                           maropitant citrate
14125                                                                                                                                   famotidine
14126                                                                                                                                metronidazole
14127                                                                                                                                    probiotic
14128                                                                                                                   milbemycin oxime, spinosad
14129                                                                                                                   milbemycin oxime, spinosad
14130                                                                                               dexamethasone, neomycin sulfate, thiabendazole
14131                                                                                                                      ketoconazole, tris-edta
14132                                                                                                                                     spinosad
14133                                                                                                                                   gabapentin
14134                                                                                                                             milbemycin oxime
14135                                                                                                                                  oclacitinib
14136                                                                                               mometasone furoate, orbifloxacin, posaconazole
14137                                                                                                                                    meloxicam
14138                                                                                                                                   prednisone
14139                                                                                                          ear cleaner (zymox), hydrocortisone
14140                                                                                                               milbemycin oxime, praziquantel
14141                                                                                                                                phenobarbital
14142                                                                                                                                levetiracetam
14143                                                                                                                                levetiracetam
14144                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
14145                                                                                                                                    probiotic
14146                                                                                                                                   cephalexin
14147                                                                                                                                   ivermectin
14148                                                                                                                     fipronil, (s)-methoprene
14149                                                                                                                                   ivermectin
14150                                                                                                                                   afoxolaner
14151                                                                                                                 ivermectin, pyrantel pamoate
14152                                                                                                                                   famotidine
14153                                                                                                                                   afoxolaner
14154                                                                                                                 ivermectin, pyrantel pamoate
14155                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14156                                                                                                                                   lokivetmab
14157                                                                                                                                    carprofen
14158                                                                                                                                   cephalexin
14159                                                                                                                                   famotidine
14160                                                                                                                             tylosin tartrate
14161                                                                                                                                    carprofen
14162                                                                                                                  lufenuron, milbemycin oxime
14163                                                                                                                  lufenuron, milbemycin oxime
14164                                                                                                                 ivermectin, pyrantel pamoate
14165                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14166                                                                                                                           miconazole nitrate
14167                                                                                                       dexamethasone, ketoconazole, tris-edta
14168                                                                                                                                    cefovecin
14169                                                                                                                                   prednisone
14170                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14171                                                                                                 florfenicol, mometasone furoate, terbinafine
14172                                                                                                                 ivermectin, pyrantel pamoate
14173                                                                                                                 ivermectin, pyrantel pamoate
14174                                                                                                                     fipronil, (s)-methoprene
14175                                                                                                 florfenicol, mometasone furoate, terbinafine
14176                                                                                                                                    meloxicam
14177                                                                                                                             milbemycin oxime
14178                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14179                                                                                                 florfenicol, mometasone furoate, terbinafine
14180                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14181                                                                                                                             milbemycin oxime
14182                                                                                                                 ivermectin, pyrantel pamoate
14183                                                                                                                                metronidazole
14184                                                                                                                                   ivermectin
14185                                                                                                           fipronil, permethrin, pyriproxyfen
14186                                                                                                                              diphenhydramine
14187                                                                                                                                   cephalexin
14188                                                                                                                 ormetoprim, sulfadimethoxine
14189                                                                                                                     fipronil, (s)-methoprene
14190                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14191                                                                                                                 ivermectin, pyrantel pamoate
14192                                                                                                                                   afoxolaner
14193                                                                                                                              diphenhydramine
14194                                                                                                                                  oclacitinib
14195                                                                                                                              diphenhydramine
14196                                                                                                                 ivermectin, pyrantel pamoate
14197                                                                                                                                    sarolaner
14198                                                                                                                                    carprofen
14199                                                                                                                                   gabapentin
14200                                                                                                                              diphenhydramine
14201                                                                                                       joint supplement (glucosamine hcl/msm)
14202                                                                                                                              diphenhydramine
14203                                                                                                                                  pamidronate
14204                                                                                                                                    meloxicam
14205                                                                                                                                   ivermectin
14206                                                                                                                                metronidazole
14207                                                                                                        dinotefuran, permethrin, pyriproxyfen
14208                                                                                                                                   fluralaner
14209                                                                                                                     imidacloprid, permethrin
14210                                                                                                                                     spinosad
14211                                                                                                                                     spinosad
14212                                                                                                                                dexamethasone
14213                                                                                                                                   prednisone
14214                                                                                                                   milbemycin oxime, spinosad
14215                                                                                                                                   afoxolaner
14216                                                                                                                                  doxycycline
14217                                                                                                                                levothyroxine
14218                                                                                                    clotrimazole, dexamethasone, enrofloxacin
14219                                                                                                                             milbemycin oxime
14220                                                                                                                              diphenhydramine
14221                                                                                                                       unspecified astringent
14222                                                                                                                                    carprofen
14223                                                                                                                                   gabapentin
14224                                                                                                                                   cephalexin
14225                                                                                                           amoxicillin, clavulanate potassium
14226                                                                                                                                   cephalexin
14227                                                                                                                                    carprofen
14228                                                                                                                       unspecified medication
14229                                                                                                                         cefpodoxime proxetil
14230                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14231                                                                                                                                   lokivetmab
14232                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
14233                                                                                                                                   loratadine
14234                                                                                                                                  oclacitinib
14235                                                                                                           amoxicillin, clavulanate potassium
14236                                                                                                                                 enrofloxacin
14237                                                                                                                         cefpodoxime proxetil
14238                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14239                                                                                                                                    carprofen
14240                                                                                                                 ivermectin, pyrantel pamoate
14241                                                                                                                     fipronil, (s)-methoprene
14242                                                                                                                 ivermectin, pyrantel pamoate
14243                                                                                                                     fipronil, (s)-methoprene
14244                                                                                                                 ivermectin, pyrantel pamoate
14245                                                                                                                     fipronil, (s)-methoprene
14246                                                                                                                 ivermectin, pyrantel pamoate
14247                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14248                                                                                                                 ivermectin, pyrantel pamoate
14249                                                                                                                     fipronil, (s)-methoprene
14250                                                                                                                 ivermectin, pyrantel pamoate
14251                                                                                                           fipronil, permethrin, pyriproxyfen
14252                                                                                                                 ivermectin, pyrantel pamoate
14253                                                                                                                     fipronil, (s)-methoprene
14254                                                                                                                                   cephalexin
14255                                                                                                           amoxicillin, clavulanate potassium
14256                                                                                                                                   cephalexin
14257                                                                                                           amoxicillin, clavulanate potassium
14258                                                                                                                                   gabapentin
14259                                                                                                                         butorphanol tartrate
14260                                                                                                                                    midazolam
14261                                                                                                                                    carprofen
14262                                                                                                                                     spinosad
14263                                                                                                                             milbemycin oxime
14264                                                                                                                             milbemycin oxime
14265                                                                                                                                     spinosad
14266                                                                                                                                   ivermectin
14267                                                                                                                             pyrantel pamoate
14268                                                                                                                 ivermectin, pyrantel pamoate
14269                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14270                                                                                                                           calming supplement
14271                                                                                                                                metronidazole
14272                                                                                                                 ivermectin, pyrantel pamoate
14273                                                                                                                                   afoxolaner
14274                                                                                                                                metronidazole
14275                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14276                                                                                                                 ivermectin, pyrantel pamoate
14277                                                                                                                                   afoxolaner
14278                                                                                                                                  minocycline
14279                                                                                                                                    meloxicam
14280                                                                                                                                  minocycline
14281                                                                                                                                   ivermectin
14282                                                                                                                                   ivermectin
14283                                                                                                                                levothyroxine
14284                                                                                                                                   ivermectin
14285                                                                                                                                levothyroxine
14286                                                                                                                                   ivermectin
14287                                                                                                                                levothyroxine
14288                                                                                                                                levothyroxine
14289                                                                                                                                levothyroxine
14290                                                                                                                                   cephalexin
14291                                                                                                  chlorhexidine gluconate, miconazole nitrate
14292                                                                                                                                levothyroxine
14293                                                                                                                                    carprofen
14294                                                                                                                                metronidazole
14295                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14296                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14297                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14298                                                                                                                             milbemycin oxime
14299                                                                                                                             milbemycin oxime
14300                                                                                                                                    carprofen
14301                                                                                                                                   ivermectin
14302                                                                                                                                   nitenpyram
14303                                                                                                                                metronidazole
14304                                                                                                                           maropitant citrate
14305                                                                                                                                   sucralfate
14306                                                                                                                                    meloxicam
14307                                                                                                                   thyroid support supplement
14308                                                                                                                                levothyroxine
14309                                                                                                                                levothyroxine
14310                                                                                                           amoxicillin, clavulanate potassium
14311                                                                                                                                levothyroxine
14312                                                                                                                                metronidazole
14313                                                                                                                             tylosin tartrate
14314                                                                                                                                    thyroxine
14315                                                                                                                                   alprazolam
14316                                                                                                                               dimenhydrinate
14317                                                                                                                           calming supplement
14318                                                                                                                 ivermectin, pyrantel pamoate
14319                                                                                                                 ivermectin, pyrantel pamoate
14320                                                                                                                                   cephalexin
14321                                                                                                                      triamcinolone acetonide
14322                                                                                                                    unspecified otic ear pack
14323                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14324                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14325                                                                                                                                   lokivetmab
14326                                                                                                                                    buspirone
14327                                                                                                                                   lokivetmab
14328                                                                                                                                   grapiprant
14329                                                                                                                                   lokivetmab
14330                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14331                                                                                                                                    buspirone
14332                                                                                                                                   grapiprant
14333                                                                                                                                   famotidine
14334                                                                                                                     imidacloprid, moxidectin
14335                                                                                                                     imidacloprid, moxidectin
14336                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14337                                                                                                                                   cephalexin
14338                                                                                                                                  amoxicillin
14339                                                                                                                     imidacloprid, moxidectin
14340                                                                                                                     imidacloprid, moxidectin
14341                                                                                                                     imidacloprid, moxidectin
14342                                                                                                                                  amoxicillin
14343                                                                                                                     imidacloprid, moxidectin
14344                                                                                                                                metronidazole
14345                                                                                                                           maropitant citrate
14346                                                                                                 florfenicol, mometasone furoate, terbinafine
14347                                                                                                                                metronidazole
14348                                                                                                                           maropitant citrate
14349                                                                                                                    unspecified otic ear pack
14350                                                                                                                     imidacloprid, permethrin
14351                                                                                                    lufenuron, milbemycin oxime, praziquantel
14352                                                                                                                     imidacloprid, permethrin
14353                                                                                                                                   omeprazole
14354                                                                                                                                    probiotic
14355                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14356                                                                                                                                 chlorambucil
14357                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14358                                                                                                                         cefpodoxime proxetil
14359                                                                                                                                dexamethasone
14360                                                                                                                 ivermectin, pyrantel pamoate
14361                                                                                                                                  doxycycline
14362                                                                                                                                   cephalexin
14363                                                                                                                                   prednisone
14364                                                                                                                 ivermectin, pyrantel pamoate
14365                                                                                                                 ivermectin, pyrantel pamoate
14366                                                                                                                 ivermectin, pyrantel pamoate
14367                                                                                                     febantel, praziquantel, pyrantel pamoate
14368                                                                                                                                   cephalexin
14369                                                                                                                                   prednisone
14370                                                                                                                                sulfasalazine
14371                                                                                                                                    probiotic
14372                                                                                                                  lufenuron, milbemycin oxime
14373                                                                                                                     flumethrin, imidacloprid
14374                                                                                                                                metronidazole
14375                                                                                                    lufenuron, milbemycin oxime, praziquantel
14376                                                                                                                     flumethrin, imidacloprid
14377                                                                                                                                metronidazole
14378                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14379                                                                                                    lufenuron, milbemycin oxime, praziquantel
14380                                                                                                                     flumethrin, imidacloprid
14381                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14382                                                                                                                             sulfadimethoxine
14383                                                                                                                  lufenuron, milbemycin oxime
14384                                                                                                                                   afoxolaner
14385                                                                                                                  lufenuron, milbemycin oxime
14386                                                                                                                                   afoxolaner
14387                                                                                                                  lufenuron, milbemycin oxime
14388                                                                                                                                   afoxolaner
14389                                                                                                                  lufenuron, milbemycin oxime
14390                                                                                                                                   afoxolaner
14391                                                                                                                                    carprofen
14392                                                                                                                                   ivermectin
14393                                                                                                                                    carprofen
14394                                                                                                   chloroxylenol, lactic acid, salicylic acid
14395                                                                                                                                   cephalexin
14396                                                                                                  over-the-counter unmedicated shampoo/mousse
14397                                                                                                           chlorhexidine gluconate, ophytrium
14398                                                                                                                                     spinosad
14399                                                                                               mometasone furoate, orbifloxacin, posaconazole
14400                                                                                                            trimeprazine tartrate, prednisone
14401                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14402                                                                                                                 ivermectin, pyrantel pamoate
14403                                                                                                                                   fluralaner
14404                                                                                                                  lufenuron, milbemycin oxime
14405                                                                                                                                    firocoxib
14406                                                                                                                 ivermectin, pyrantel pamoate
14407                                                                                                                     fipronil, (s)-methoprene
14408                                                                                                                 ivermectin, pyrantel pamoate
14409                                                                                                                     fipronil, (s)-methoprene
14410                                                                                                                                    thyroxine
14411                                                                                                           amoxicillin, clavulanate potassium
14412                                                                                                                   milbemycin oxime, spinosad
14413                                                                                                                     fipronil, (s)-methoprene
14414                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14415                                                                                                                 ivermectin, pyrantel pamoate
14416                                                                                                                                   fluralaner
14417                                                                                                                         cefpodoxime proxetil
14418                                                                                                                                    carprofen
14419                                                                                                                                    thyroxine
14420                                                                                                                 ivermectin, pyrantel pamoate
14421                                                                                                                                    thyroxine
14422                                                                                                           amoxicillin, clavulanate potassium
14423                                                                                                                                levothyroxine
14424                                                                                                                                    carprofen
14425                                                                                                                 ivermectin, pyrantel pamoate
14426                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14427                                                                                                                                      omega 3
14428                                                                                                                             pyrantel pamoate
14429                                                                                                                  lufenuron, milbemycin oxime
14430                                                                                                                                  amoxicillin
14431                                                                                                                  lufenuron, milbemycin oxime
14432                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14433                                                                                                                                      omega 3
14434                                                                                                                                 multivitamin
14435                                                                                                                                     tramadol
14436                                                                                                                                    carprofen
14437                                                                                                                                   isoflurane
14438                                                                                                                        tiletamine, zolazepam
14439                                                                                                                         butorphanol tartrate
14440                                                                                                                                 acepromazine
14441                                                                                                                               glycopyrrolate
14442                                                                                                                                    carprofen
14443                                                                                                                  lufenuron, milbemycin oxime
14444                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
14445                                                                                                   toothpaste/dental health solution or chews
14446                     digestive supplement, joint supplement (glucosamine hcl/msm), probiotic, skin and coat supplement, vitamins and minerals
14447                                                                                                                     urinary tract supplement
14448                                                                                                                  lufenuron, milbemycin oxime
14449                                                                                                                  lufenuron, milbemycin oxime
14450                                                                                                                                   cephalexin
14451                                                                                                                  lufenuron, milbemycin oxime
14452                                                                                                                                   cephalexin
14453                                                                                                                                  oclacitinib
14454                                                                                                                 ivermectin, pyrantel pamoate
14455                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14456                                                                                                                           maropitant citrate
14457                                                                                                                 ivermectin, pyrantel pamoate
14458                                                                                                                 ivermectin, pyrantel pamoate
14459                                                                                                                                   afoxolaner
14460                                                                                                                 ivermectin, pyrantel pamoate
14461                                                                                                                                   afoxolaner
14462                                                                                               dexamethasone, neomycin sulfate, thiabendazole
14463                                                                                                                 ivermectin, pyrantel pamoate
14464                                                                                                                                   afoxolaner
14465                                                                                                                 ivermectin, pyrantel pamoate
14466                                                                                                                                   afoxolaner
14467                                                                                                                              diphenhydramine
14468                                                                                                                         cefpodoxime proxetil
14469                                                                                                                                levetiracetam
14470                                                                                                                                   prednisone
14471                                                                                                                  lufenuron, milbemycin oxime
14472                                                                                                                                levothyroxine
14473                                                                                                                  lufenuron, milbemycin oxime
14474                                                                                                                                levothyroxine
14475                                                                                                                                  doxycycline
14476                                                                                                                                levothyroxine
14477                                                                                                                  lufenuron, milbemycin oxime
14478                                                                                                                                levothyroxine
14479                                                                                                                     flumethrin, imidacloprid
14480                                                                                                                                levothyroxine
14481                                                                                                                                   lokivetmab
14482                                                                                                                                  clindamycin
14483                                                                                                                                levothyroxine
14484                                                                                                                                  hydroxyzine
14485                                                                                                                                   cephalexin
14486                                                                                                                                    carprofen
14487                                                                                                                                levothyroxine
14488                                                                                                                 ivermectin, pyrantel pamoate
14489                                                                                                                 ivermectin, pyrantel pamoate
14490                                                                                                                 ivermectin, pyrantel pamoate
14491                                                                                                                                    vitamin b
14492                                                                                                                               metoclopramide
14493                                                                                                                                   famotidine
14494                                                                                                                               metoclopramide
14495                                                                                                                 ivermectin, pyrantel pamoate
14496                                                                                                                                   cephalexin
14497                                                                                                                                   prednisone
14498                                                                                                                 ivermectin, pyrantel pamoate
14499                                                                                                                 ivermectin, pyrantel pamoate
14500                                                                                                           amoxicillin, clavulanate potassium
14501                                                                                                                                   cephalexin
14502                                                                                                                                   cephalexin
14503                                                                                                                                   cephalexin
14504                                                                                                                                    cefovecin
14505                                                                                                                 ivermectin, pyrantel pamoate
14506                                                                                                                             milbemycin oxime
14507                                                                                                        dinotefuran, permethrin, pyriproxyfen
14508                                                                                                                             milbemycin oxime
14509                                                                                                        dinotefuran, permethrin, pyriproxyfen
14510                                                                                                                                   lokivetmab
14511                                                                                                                                  oclacitinib
14512                                                                                                                             milbemycin oxime
14513                                                                                                                                   lokivetmab
14514                                                                                                               polysulfated glycosaminoglycan
14515                                                                                                                                   lokivetmab
14516                                                                                                                                    cefovecin
14517                                                                                                                                    trazodone
14518                                                                                                                                   lokivetmab
14519                                                                                                                                  oclacitinib
14520                                                                                                                                    firocoxib
14521                                                                                                                                    firocoxib
14522                                                                                                                                    firocoxib
14523                                                                                                                                  bedinvetmab
14524                                                                                                                                   lokivetmab
14525                                                                                                                                    firocoxib
14526                                                                                                                                   ivermectin
14527                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14528                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14529                                                                                                                 ivermectin, pyrantel pamoate
14530                                                                                                                                levothyroxine
14531                                                                                                                                levothyroxine
14532                                                                                                                 ivermectin, pyrantel pamoate
14533                                                                                                                                   afoxolaner
14534                                                                                                                 ivermectin, pyrantel pamoate
14535                                                                                                                                levothyroxine
14536                                                                                                                                   afoxolaner
14537                                                                                                                 ivermectin, pyrantel pamoate
14538                                                                                                                                levothyroxine
14539                                                                                                                                   afoxolaner
14540                                                                                                                                levothyroxine
14541                                                                                                                                levothyroxine
14542                                                                                                                                    enalapril
14543                                                                                                                                levothyroxine
14544                                                                                                                         cefpodoxime proxetil
14545                                                                                                                                    enalapril
14546                                                                                                                                levothyroxine
14547                                                                                                                                   ivermectin
14548                                                                                                                                  doxycycline
14549                                                                                                                                 cyclosporine
14550                                                                                                                                   gabapentin
14551                                                                                                                                  niacinamide
14552                                                                                                                                    firocoxib
14553                                                                                                                                   ivermectin
14554                                                                                                           fipronil, permethrin, pyriproxyfen
14555                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14556                                                                                                                                   ivermectin
14557                                                                                                                 ivermectin, pyrantel pamoate
14558                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14559                                                                                                                 ivermectin, pyrantel pamoate
14560                                                                                                                   milbemycin oxime, spinosad
14561                                                                                                                                  oclacitinib
14562                                                                                                                                   selamectin
14563                                                                                                                                   ivermectin
14564                                                                                                                 ivermectin, pyrantel pamoate
14565                                                                                                                 ivermectin, pyrantel pamoate
14566                                                                                                                                 fenbendazole
14567                                                                                                                  lufenuron, milbemycin oxime
14568                                                                                                                                   ivermectin
14569                                                                                                           fipronil, permethrin, pyriproxyfen
14570                                                                                                                                    carprofen
14571                                                                                                                                  clindamycin
14572                                                                                                                                     tramadol
14573                                                                                                                             milbemycin oxime
14574                                                                                                                                    lufenuron
14575                                                                                                                                metronidazole
14576                                                                                                                  lufenuron, milbemycin oxime
14577                                                                                                                     fipronil, (s)-methoprene
14578                                                                                                                                   nitenpyram
14579                                                                                                                                 praziquantel
14580                                                                                                                                  doxycycline
14581                                                                                                                                   sucralfate
14582                                                                                                                                    sarolaner
14583                                                                                                                  lufenuron, milbemycin oxime
14584                                                                                                                                    sarolaner
14585                                                                                                    lufenuron, milbemycin oxime, praziquantel
14586                                                                                                                                    sarolaner
14587                                                                                                    lufenuron, milbemycin oxime, praziquantel
14588                                                                                                                                    sarolaner
14589                                                                                                                                   lokivetmab
14590                                                                                                                                   cephalexin
14591                                                                                                                                   cephalexin
14592                                                                                                                                    carprofen
14593                                                                                                                           maropitant citrate
14594                                                                                                                                   ivermectin
14595                                                                                                                                    carprofen
14596                                                                                                                                   afoxolaner
14597                                                                                                   ivermectin, praziquantel, pyrantel pamoate
14598                                                                                                                                   cetirizine
14599                                                                                                                 ivermectin, pyrantel pamoate
14600                                                                                                                                   cetirizine
14601                                                                                                           unspecified flea/tick preventative
14602                                                                                                                             milbemycin oxime
14603                                                                                                                                    sarolaner
14604                                                                                                                                   cetirizine
14605                                                                                                               milbemycin oxime, praziquantel
14606                                                                                                                                    sarolaner
14607                                                                                                                                   cetirizine
14608                                                                                                                             milbemycin oxime
14609                                                                                                                                   cetirizine
14610                                                                                                                                   cephalexin
14611                                                                                                            betamethasone, gentamicin sulfate
14612                                                                                                                                   cetirizine
14613                                                                                                                                   cephalexin
14614                                                                                                                                    carprofen
14615                                                                                                                                    firocoxib
14616                                                                                                               praziquantel, pyrantel pamoate
14617                                                                                                                                metronidazole
14618                                                                                                                                   cephalexin
14619                                                                                                                 ivermectin, pyrantel pamoate
14620                                                                                                                                ciprofloxacin
14621                                                                                                                      triamcinolone acetonide
14622                                                                                                                 ivermectin, pyrantel pamoate
14623                                                                                                                     fipronil, (s)-methoprene
14624                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14625                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14626                                                                                                                                   famotidine
14627                                                                                                                 ivermectin, pyrantel pamoate
14628                                                                                                                 ivermectin, pyrantel pamoate
14629                                                                                                                                  doxycycline
14630                                                                                                                 ivermectin, pyrantel pamoate
14631                                                                                                                     fipronil, (s)-methoprene
14632                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14633                                                                                                                                   famotidine
14634                                                                                                                              diphenhydramine
14635                                                                                                                                dexamethasone
14636                                                                                                                 ivermectin, pyrantel pamoate
14637                                                                                                           fipronil, permethrin, pyriproxyfen
14638                                                                                                           amoxicillin, clavulanate potassium
14639                                                                                                                                    trazodone
14640                                                                                                                                    carprofen
14641                                                                                                                                 enrofloxacin
14642                                                                                                                                metronidazole
14643                                                                                                                         digestive supplement
14644                                                                                                                                yunnan baiyao
14645                                                                                                                   milbemycin oxime, spinosad
14646                                                                                                                 ivermectin, pyrantel pamoate
14647                                                                                                                                   afoxolaner
14648                                                                                                     febantel, praziquantel, pyrantel pamoate
14649                                                                                                                                   cephalexin
14650                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
14651                                                                                                                 ivermectin, pyrantel pamoate
14652                                                                                                                                   afoxolaner
14653                                                                                                                                   cephalexin
14654                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
14655                                                                                                                                metronidazole
14656                                                                                                               milbemycin oxime, praziquantel
14657                                                                                                                                   afoxolaner
14658                                                                                                                 ivermectin, pyrantel pamoate
14659                                                                                                                                metronidazole
14660                                                                                                                                metronidazole
14661                                                                                                                                   cephalexin
14662                                                                                                                                   prednisone
14663                                                                                                                                    meloxicam
14664                                                                                                               milbemycin oxime, praziquantel
14665                                                                                                                                   afoxolaner
14666                                                                                                                                   cephalexin
14667                                                                                                                                   prednisone
14668                                                                                                                                   cephalexin
14669                                                                                                                                   prednisone
14670                                                                                                                                   cephalexin
14671                                                                                                                                    meloxicam
14672                                                                                                                                  oclacitinib
14673                                                                                                                         cefpodoxime proxetil
14674                                                                                                                             milbemycin oxime
14675                                                                                                                                   afoxolaner
14676                                                                                                                                    meloxicam
14677                                                                                                                                metronidazole
14678                                                                                                                                  amoxicillin
14679                                                                                                                                  oclacitinib
14680                                                                                                                                    probiotic
14681                                                                                                     febantel, praziquantel, pyrantel pamoate
14682                                                                                                                                    meloxicam
14683                                                                                                                                   gabapentin
14684                                                                                                                                    meloxicam
14685                                                                                                                                levothyroxine
14686                                                                                                                     joint supplement (other)
14687                                                                                                                                  oclacitinib
14688                                                                                                                                    meloxicam
14689                                                                                                                           methylprednisolone
14690                                                                                                                                   gabapentin
14691                                                                                                                                    meloxicam
14692                                                                                                                                   gabapentin
14693                                                                                                                                    meloxicam
14694                                                                                                                                metronidazole
14695                                                                                                                                  doxycycline
14696                                                                                                                                  doxycycline
14697                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
14698                                                                                                                                    deracoxib
14699                                                                                                                     fipronil, (s)-methoprene
14700                                                                                                                 ivermectin, pyrantel pamoate
14701                                                                                                                   imidacloprid, pyriproxyfen
14702                                                                                                                 ivermectin, pyrantel pamoate
14703                                                                                                                                  doxycycline
14704                                                                                                                                   grapiprant
14705                                                                                                                 ivermectin, pyrantel pamoate
14706                                                                                                                           maropitant citrate
14707                                                                                                                                   cephalexin
14708                                                                                                                             milbemycin oxime
14709                                                                                                                              diphenhydramine
14710                                                                                                        dinotefuran, permethrin, pyriproxyfen
14711                                                                                                                  lufenuron, milbemycin oxime
14712                                                                                                        dinotefuran, permethrin, pyriproxyfen
14713                                                                                                                                 fenbendazole
14714                                                                                                                                metronidazole
14715                                                                                                                                metronidazole
14716                                                                                                                           maropitant citrate
14717                                                                                                                                   cephalexin
14718                                                                                                            trimeprazine tartrate, prednisone
14719                                                                                                                                    probiotic
14720                                                                                                                  lufenuron, milbemycin oxime
14721                                                                                                        dinotefuran, permethrin, pyriproxyfen
14722                                                                                                                             milbemycin oxime
14723                                                                                                               milbemycin oxime, praziquantel
14724                                                                                                                                   alprazolam
14725                                                                                                                                    carprofen
14726                                                                                                                                   fluralaner
14727                                                                                                               milbemycin oxime, praziquantel
14728                                                                                                      milbemycin oxime, oxantel, praziquantel
14729                                                                                                                                   fluralaner
14730                                                                                                               milbemycin oxime, praziquantel
14731                                                                                                                                   fluralaner
14732                                                                                                                                levothyroxine
14733                                                                                                                             milbemycin oxime
14734                                                                                                                                   fluralaner
14735                                                                                                                                    thyroxine
14736                                                                                                                                levothyroxine
14737                                                                                                                  lufenuron, milbemycin oxime
14738                                                                                                                                     fipronil
14739                                                                                                                                hydromorphone
14740                                                                                                                              dexmedetomidine
14741                                                                                                                                     propofol
14742                                                                                                                                   cephalexin
14743                                                                                                                                metronidazole
14744                                                                                                                     flumethrin, imidacloprid
14745                                                                                                                  lufenuron, milbemycin oxime
14746                                                                                                                                     fipronil
14747                                                                                                               milbemycin oxime, praziquantel
14748                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14749                                                                                                                                   cephalexin
14750                                                                                                                                   gabapentin
14751                                                                                                                                   cephalexin
14752                                                                                                                                    carprofen
14753                                                                                                                                   gabapentin
14754                                                                                                                     flumethrin, imidacloprid
14755                                                                                                               milbemycin oxime, praziquantel
14756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14757                                                                                                             burow's solution, hydrocortisone
14758                                                                                                                                metronidazole
14759                                                                                                                                    carprofen
14760                                                                                                               milbemycin oxime, praziquantel
14761                                                                                                                           maropitant citrate
14762                                                                                                 florfenicol, mometasone furoate, terbinafine
14763                                                                                                               milbemycin oxime, praziquantel
14764                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14765                                                                                                                                   prednisone
14766                                                                                                                                  hydroxyzine
14767                                                                                                                              diphenhydramine
14768                                                                                                          allergy immunotherapy - unspecified
14769                                                                                                                         cefpodoxime proxetil
14770                                                                                                                  lufenuron, milbemycin oxime
14771                                                                                                                                   afoxolaner
14772                                                                                                                 ivermectin, pyrantel pamoate
14773                                                                                                                                   afoxolaner
14774                                                                                                                              diphenhydramine
14775                                                                                                          allergy immunotherapy - unspecified
14776                                                                                                                                 ketoconazole
14777                                                                                              betamethasone, clotrimazole, gentamicin sulfate
14778                                                                                                      betamethasone, florfenicol, terbinafine
14779                                                                                                                           maropitant citrate
14780                                                                                                                              diphenhydramine
14781                                                                                                 florfenicol, mometasone furoate, terbinafine
14782                                                                                                                 ivermectin, pyrantel pamoate
14783                                                                                                                                   afoxolaner
14784                                                                                                                 ivermectin, pyrantel pamoate
14785                                                                                                                                   lokivetmab
14786                                                                                                                                  oclacitinib
14787                                                                                                                                    trazodone
14788                                                                                                                         cefpodoxime proxetil
14789                                                                                                                                   afoxolaner
14790                                                                                                                 ivermectin, pyrantel pamoate
14791                                                                                                                                   afoxolaner
14792                                                                                                                                  oclacitinib
14793                                                                                                                                    trazodone
14794                                                                                                                                     tramadol
14795                                                                                                                                    carprofen
14796                                                                                                                             tylosin tartrate
14797                                                                                                          allergy immunotherapy - unspecified
14798                                                                                                                                   lokivetmab
14799                                                                                                                         cefpodoxime proxetil
14800                                                                                                                             tylosin tartrate
14801                                                                                                                                  oclacitinib
14802                                                                                                                                   lokivetmab
14803                                                                                                                                    trazodone
14804                                                                                                          allergy immunotherapy - unspecified
14805                                                                                                                             tylosin tartrate
14806                                                                                                 florfenicol, mometasone furoate, terbinafine
14807                                                                                                                                  oclacitinib
14808                                                                                                                                    trazodone
14809                                                                                                                                    carprofen
14810                                                                                                                                  clindamycin
14811                                                                                                           amoxicillin, clavulanate potassium
14812                                                                                                                                  oclacitinib
14813                                                                                                                                    trazodone
14814                                                                                                          allergy immunotherapy - unspecified
14815                                                                                                                                    carprofen
14816                                                                                                                         cefpodoxime proxetil
14817                                                                                                                                  amoxicillin
14818                                                                                                                                metronidazole
14819                                                                                                                             tylosin tartrate
14820                                                                                                                           maropitant citrate
14821                                                                                                                                 capromorelin
14822                                                                                                                                  mirtazapine
14823                                                                                                                              diphenhydramine
14824                                                                                                                                   furosemide
14825                                                                                                                               l-asparaginase
14826                                                                                                                                  vincristine
14827                                                                                                                             cyclophosphamide
14828                                                                                                                                  doxorubicin
14829                                                                                                                                   prednisone
14830                                                                                                                           maropitant citrate
14831                                                                                                                                   famotidine
14832                                                                                                                                   prednisone
14833                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14834                                                                                                                   milbemycin oxime, spinosad
14835                                                                                                       cyphenothrin, fipronil, (s)-methoprene
14836                                                                                                                              dexmedetomidine
14837                                                                                                                                  atipamezole
14838                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14839                                                                                                                  lufenuron, milbemycin oxime
14840                                                                                                                     imidacloprid, permethrin
14841                                                                                                                                   ivermectin
14842                                                                                                                  lufenuron, milbemycin oxime
14843                                                                                                                   milbemycin oxime, spinosad
14844                                                                                                                                   ivermectin
14845                                                                                                                                   afoxolaner
14846                                                                                                              ear cleaner (epi-otic advanced)
14847                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
14848                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
14849                                                                                                                                    carprofen
14850                                                                                                                                yunnan baiyao
14851                                                                                                                                yunnan baiyao
14852                                                                                                                           maropitant citrate
14853                                                                                                                                 capromorelin
14854                                                                                                                                metronidazole
14855                                                                                                                                metronidazole
14856                                                                                                                                   prednisone
14857                                                                                                                                 multivitamin
14858                                                                                                                  lufenuron, milbemycin oxime
14859                                                                                                                                   famotidine
14860                                                                                                                                 praziquantel
14861                                                                                                                  lufenuron, milbemycin oxime
14862                                                                                                                                 multivitamin
14863                                                                                                                                 multivitamin
14864                                                                                                                  lufenuron, milbemycin oxime
14865                                                                                                                  lufenuron, milbemycin oxime
14866                                                                                                        dinotefuran, permethrin, pyriproxyfen
14867                                                                                                               milbemycin oxime, praziquantel
14868                                                                                                                                    lotilaner
14869                                                                                                      betamethasone, florfenicol, terbinafine
14870                                                                                                                             milbemycin oxime
14871                                                                                                                                    lotilaner
14872                                                                                                                                  amoxicillin
14873                                                                                                                                    deracoxib
14874                                                                                                                             milbemycin oxime
14875                                                                                                                                    lotilaner
14876                                                                                                                           maropitant citrate
14877                                                                                                                                metronidazole
14878                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
14879                                                                                                                         cefpodoxime proxetil
14880                                                                                                                                    deracoxib
14881                                                                                                                 ivermectin, pyrantel pamoate
14882                                                                                                               praziquantel, pyrantel pamoate
14883                                                                                                      milbemycin oxime, oxantel, praziquantel
14884                                                                                                                                   fluralaner
14885                                                                                                                             milbemycin oxime
14886                                                                                                                                      oxantel
14887                                                                                                                                 praziquantel
14888                                                                                                                                    lufenuron
14889                                                                                                                                   fluralaner
14890                                                                                                                             milbemycin oxime
14891                                                                                                                                 praziquantel
14892                                                                                                                                      oxantel
14893                                                                                                                                    lufenuron
14894                                                                                                                 ivermectin, pyrantel pamoate
14895                                                                                                                                   afoxolaner
14896                                                                                                                                metronidazole
14897                                                                                                                 ivermectin, pyrantel pamoate
14898                                                                                                                                   afoxolaner
14899                                                                                                                                  bedinvetmab
14900                                                                                                                                   gabapentin
14901                                                                                                                                    carprofen
14902                                                                                                                                   alprazolam
14903                                                                                                                         cefpodoxime proxetil
14904                                                                                                                                metronidazole
14905                                                                                                                           maropitant citrate
14906                                                                                                                                 fenbendazole
14907                                                                                                                                    methadone
14908                                                                                                           amoxicillin, clavulanate potassium
14909                                                                                                                                metronidazole
14910                                                                                                                                    meloxicam
14911                                                                                                                   milbemycin oxime, spinosad
14912                                                                                                           amoxicillin, clavulanate potassium
14913                                                                                                                   milbemycin oxime, spinosad
14914                                                                                                                 ivermectin, pyrantel pamoate
14915                                                                                                                                   afoxolaner
14916                                                                                                                                   fluralaner
14917                                                                                                                 ivermectin, pyrantel pamoate
14918                                                                                                                                   ivermectin
14919                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
14920                                                                                                               polysulfated glycosaminoglycan
14921                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14922                                                                                                                                      omega 3
14923                                                                                                                                    carprofen
14924                                                                                                                             milbemycin oxime
14925                                                                                                                                    sarolaner
14926                                                                                                                                metronidazole
14927                                                                                                                                   prednisone
14928                                                                                                                   milbemycin oxime, spinosad
14929                                                                                                                                     tramadol
14930                                                                                                                                  clindamycin
14931                                                                                                                                   prednisone
14932                                                                                                                                   loratadine
14933                                                                                                                                   prednisone
14934                                                                                                                                   afoxolaner
14935                                                                                                                                  oclacitinib
14936                                                                                                                                   loratadine
14937                                                                                                          allergy immunotherapy - unspecified
14938                                                                                                                                 four marvels
14939                                                                                                                                 ketoconazole
14940                                                                                                                                   cephalexin
14941                                                                                                                                metronidazole
14942                                                                                                    dexamethasone, enrofloxacin, ketoconazole
14943                                                                                                                                   fluralaner
14944                                                                                                          allergy immunotherapy - unspecified
14945                                                                                                                                   loratadine
14946                                                                                                                                   isoflurane
14947                                                                                                   toothpaste/dental health solution or chews
14948                                                                                                                                   fluralaner
14949                                                                                                                                   lokivetmab
14950                                                                                                                              cbd or hemp oil
14951                                                                                                          allergy immunotherapy - unspecified
14952                                                                                                                                   lokivetmab
14953                                                                                                          allergy immunotherapy - unspecified
14954                                                                                                                                   lokivetmab
14955                                                                                                          allergy immunotherapy - unspecified
14956                                                                                                          allergy immunotherapy - unspecified
14957                                                                                                                                   grapiprant
14958                                                                                                                                   lokivetmab
14959                                                                                                           amoxicillin, clavulanate potassium
14960                                                                                                                                   lokivetmab
14961                                                                                                                                  hydrocodone
14962                                                                                                                           maropitant citrate
14963                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
14964                                                                                                                                   lokivetmab
14965                                                                                                                                   grapiprant
14966                                                                                                                                   ivermectin
14967                                                                                                                                   ivermectin
14968                                                                                                                                   ivermectin
14969                                                                                                                                   ivermectin
14970                                                                                                                                   ivermectin
14971                                                                                                                   milbemycin oxime, spinosad
14972                                                                                                                   milbemycin oxime, spinosad
14973                                                                                                                                 multivitamin
14974                                                                                                                   milbemycin oxime, spinosad
14975                                                                                                                   milbemycin oxime, spinosad
14976                                                                                                                         cefpodoxime proxetil
14977                                                                                                               polysulfated glycosaminoglycan
14978                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
14979                                                                                                                                    deracoxib
14980                                                                                                               polysulfated glycosaminoglycan
14981                                                                                                                   milbemycin oxime, spinosad
14982                                                                                                                                      omega 3
14983                                                                                                                                    probiotic
14984                                                                                                                                    deracoxib
14985                                                                                                                                metronidazole
14986                                                                                                                                   gabapentin
14987                                                                                                                                methocarbamol
14988                                                                                               mometasone furoate, orbifloxacin, posaconazole
14989                                                                                                                                    carprofen
14990                                                                                                                                   prednisone
14991                                                                                                                                   ivermectin
14992                                                                                                                                   ivermectin
14993                                                                                                                           maropitant citrate
14994                                                                                                                               metoclopramide
14995                                                                                                                                    cefazolin
14996                                                                                                                                   famotidine
14997                                                                                                                                     tramadol
14998                                                                                                                                   ivermectin
14999                                                                                                                                   ivermectin
15000                                                                                                                                   ivermectin
15001                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15002                                                                                                                     fipronil, (s)-methoprene
15003                                                                                                                     fipronil, (s)-methoprene
15004                                                                                                                   imidacloprid, pyriproxyfen
15005                                                                                                                     fipronil, (s)-methoprene
15006                                                                                                                             milbemycin oxime
15007                                                                                                                             milbemycin oxime
15008                                                                                                                   imidacloprid, pyriproxyfen
15009                                                                                                                     fipronil, (s)-methoprene
15010                                                                                                                     fipronil, (s)-methoprene
15011                                                                                                               milbemycin oxime, praziquantel
15012                                                                                                                                    thyroxine
15013                                                                                                                                   prednisone
15014                                                                                                                                    thyroxine
15015                                                                                                               polysulfated glycosaminoglycan
15016                                                                                                               polysulfated glycosaminoglycan
15017                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15018                                                                                                                                    carprofen
15019                                                                                                                                     tramadol
15020                                                                                                           amoxicillin, clavulanate potassium
15021                                                                                                   ivermectin, praziquantel, pyrantel pamoate
15022                                                                                                                     fipronil, (s)-methoprene
15023                                                                                                                     fipronil, (s)-methoprene
15024                                                                                                                             milbemycin oxime
15025                                                                                                                   imidacloprid, pyriproxyfen
15026                                                                                                                     fipronil, (s)-methoprene
15027                                                                                                                     fipronil, (s)-methoprene
15028                                                                                                                             milbemycin oxime
15029                                                                                                               milbemycin oxime, praziquantel
15030                                                                                                                     fipronil, (s)-methoprene
15031                                                                                                                                  amoxicillin
15032                                                                                                                                 enrofloxacin
15033                                                                                                                                    thyroxine
15034                                                                                                                                    thyroxine
15035                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15036                                                                                                               milbemycin oxime, praziquantel
15037                                                                                                                                levothyroxine
15038                                                                                                                                   grapiprant
15039                                                                                                           amoxicillin, clavulanate potassium
15040                                                                                                                                    carprofen
15041                                                                                                               polysulfated glycosaminoglycan
15042                                                                                                                                   grapiprant
15043                                                                                                                                levothyroxine
15044                                                                                                                                   grapiprant
15045                                                                                                                 ivermectin, pyrantel pamoate
15046                                                                                                                   milbemycin oxime, spinosad
15047                                                                                                                                    carprofen
15048                                                                                                                  lufenuron, milbemycin oxime
15049                                                                                                                         cefpodoxime proxetil
15050                                                                                                 florfenicol, mometasone furoate, terbinafine
15051                                                                                                           amoxicillin, clavulanate potassium
15052                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15053                                                                                                                                metronidazole
15054                                                                                                                                  ondansetron
15055                                                                                                                       acetaminophen, codeine
15056                                                                                                                                   prednisone
15057                                                                                                                                   cephalexin
15058                                                                                                                 ivermectin, pyrantel pamoate
15059                                                                                                                 ivermectin, pyrantel pamoate
15060                                                                                                                 ivermectin, pyrantel pamoate
15061                                                                                                                 ivermectin, pyrantel pamoate
15062                                                                                                                 ivermectin, pyrantel pamoate
15063                                                                                                           fipronil, permethrin, pyriproxyfen
15064                                                                                                                                   ivermectin
15065                                                                                                                                   famotidine
15066                                                                                                                           maropitant citrate
15067                                                                                                                 ivermectin, pyrantel pamoate
15068                                                                                                                                    vitamin b
15069                                                                                                                                metronidazole
15070                                                                                                                           maropitant citrate
15071                                                                                                     febantel, praziquantel, pyrantel pamoate
15072                                                                                                                 ivermectin, pyrantel pamoate
15073                                                                                                                         cefpodoxime proxetil
15074                                                                                                                                    carprofen
15075                                                                                                                 ivermectin, pyrantel pamoate
15076                                                                                                                 ivermectin, pyrantel pamoate
15077                                                                                                                     flumethrin, imidacloprid
15078                                                                                                                                    carprofen
15079                                                                                                                                dexamethasone
15080                                                                                                            trimeprazine tartrate, prednisone
15081                                                                                               mometasone furoate, orbifloxacin, posaconazole
15082                                                                                                                 ivermectin, pyrantel pamoate
15083                                                                                                                   imidacloprid, pyriproxyfen
15084                                                                                                                                 acepromazine
15085                                                                                                                         butorphanol tartrate
15086                                                                                                                                   moxidectin
15087                                                                                                                                   moxidectin
15088                                                                                                                             pyrantel pamoate
15089                                                                                                        dinotefuran, permethrin, pyriproxyfen
15090                                                                                                                                   moxidectin
15091                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15092                                                                                                                                   zonisamide
15093                                                                                                                             pyrantel pamoate
15094                                                                                                                                  amoxicillin
15095                                                                                                                                    carprofen
15096                                                                                                                           maropitant citrate
15097                                                                                                                             pyrantel pamoate
15098                                                                                                                                    midazolam
15099                                                                                                                         butorphanol tartrate
15100                                                                                                                                     propofol
15101                                                                                                                                   moxidectin
15102                                                                                                                      acetic acid, boric acid
15103                                                                                                                                   zonisamide
15104                                                                                                        dinotefuran, permethrin, pyriproxyfen
15105                                                                                                                             pyrantel pamoate
15106                                                                                                                                   moxidectin
15107                                                                                                                                   moxidectin
15108                                                                                                                                    sarolaner
15109                                                                                                                             pyrantel pamoate
15110                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15111                                                                                                                                    carprofen
15112                                                                                                                                  doxycycline
15113                                                                                                                                   zonisamide
15114                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15115                                                                                                                                  doxycycline
15116                                                                                                                                   zonisamide
15117                                                                                                                                    carprofen
15118                                                                                                                                marbofloxacin
15119                                                                                                           amoxicillin, clavulanate potassium
15120                                                                                                                                     tramadol
15121                                                                                                               sulfamethoxazole, trimethoprim
15122                                                                                                                                metronidazole
15123                                                                                                                  sulfadimidine, trimethoprim
15124                                                                                                                                   tobramycin
15125                                                                                                                             atropine sulfate
15126                                                                                                                  sulfadimidine, trimethoprim
15127                                                                                                                                metronidazole
15128                                                                                                                                   ivermectin
15129                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15130                                                                                                                 ivermectin, pyrantel pamoate
15131                                                                                                                  sulfadimidine, trimethoprim
15132                                                                                                                                   afoxolaner
15133                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15134                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15135                                                                                                                                    carprofen
15136                                                                                                                                     tramadol
15137                                                                                                            betamethasone, gentamicin sulfate
15138                                                                                                                         cefpodoxime proxetil
15139                                                                                                                 ivermectin, pyrantel pamoate
15140                                                                                                                     fipronil, (s)-methoprene
15141                                                                                                                                levothyroxine
15142                                                                                                                                  amoxicillin
15143                                                                                                                                metronidazole
15144                                                                                                                 ivermectin, pyrantel pamoate
15145                                                                                                                     fipronil, (s)-methoprene
15146                                                                                                                                  oclacitinib
15147                                                                                                                         cefpodoxime proxetil
15148                                                                                                                                  oclacitinib
15149                                                                                                                                    carprofen
15150                                                                                                                             milbemycin oxime
15151                                                                                                                                   fluralaner
15152                                                                                                                                  oclacitinib
15153                                                                                                                                   cephalexin
15154                                                                                                           amoxicillin, clavulanate potassium
15155                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15156                                                                                                           amoxicillin, clavulanate potassium
15157                                                                                                                                    mupirocin
15158                                                                                                                         cefpodoxime proxetil
15159                                                                                                                                   gabapentin
15160                                                                                                                                    carprofen
15161                                                                                                           joint supplement (glucosamine hcl)
15162                                                                                                                                   gabapentin
15163                                                                                                                                    carprofen
15164                                                                                                                         cefpodoxime proxetil
15165                                                                                                                                   gabapentin
15166                                                                                                                                    carprofen
15167                                                                                                                                   ivermectin
15168                                                                                                                             pyrantel pamoate
15169                                                                                                           amoxicillin, clavulanate potassium
15170                                                                                                                  lufenuron, milbemycin oxime
15171                                                                                                           amoxicillin, clavulanate potassium
15172                                                                                                                                   gabapentin
15173                                                                                                                                  amoxicillin
15174                                                                                                                                    carprofen
15175                                                                                                                                metronidazole
15176                                                                                                                         cefpodoxime proxetil
15177                                                                                                                         cefpodoxime proxetil
15178                                                                                                                                    meloxicam
15179                                                                                                                                     tramadol
15180                                                                                                                        tiletamine, zolazepam
15181                                                                                                                                buprenorphine
15182                                                                                                                                    meloxicam
15183                                                                                                                        penicillin g procaine
15184                                                                                                                                metronidazole
15185                                                                                                                                metronidazole
15186                                                                                                                               metoclopramide
15187                                                                                                           amoxicillin, clavulanate potassium
15188                                                                                                                         cefpodoxime proxetil
15189                                                                                                                     flumethrin, imidacloprid
15190                                                                                                                                  doxycycline
15191                                                                                                                         cefpodoxime proxetil
15192                                                                                                                                   gabapentin
15193                                                                                                                                   ivermectin
15194                                                                                                                                      omega 3
15195                                                                                                                                   cephalexin
15196                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
15197                                                                                                                                 clomipramine
15198                                                                                                                                   ivermectin
15199                                                                                                                 ivermectin, pyrantel pamoate
15200                                                                                                                     fipronil, (s)-methoprene
15201                                                                                                                                    mupirocin
15202                                                                                                                 ivermectin, pyrantel pamoate
15203                                                                                                                 ivermectin, pyrantel pamoate
15204                                                                                                                                    carprofen
15205                                                                                                                 ivermectin, pyrantel pamoate
15206                                                                                                                                    carprofen
15207                                                                                                                 ivermectin, pyrantel pamoate
15208                                                                                                                 ivermectin, pyrantel pamoate
15209                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15210                                                                                                                                    carprofen
15211                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15212                                                                                                                                    carprofen
15213                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
15214                                                                                                                                    enalapril
15215                                                                                                                                   gabapentin
15216                                                                                                                                    carprofen
15217                                                                                                                                    enalapril
15218                                                                                                                                   gabapentin
15219                                                                                                                                    carprofen
15220                                                                                                                   milbemycin oxime, spinosad
15221                                                                                                                                     tramadol
15222                                                                                                                                   prednisone
15223                                                                                                                                ciprofloxacin
15224                                                                                                                  lufenuron, milbemycin oxime
15225                                                                                                                                   afoxolaner
15226                                                                                                                                    firocoxib
15227                                                                                                                  lufenuron, milbemycin oxime
15228                                                                                                                                   afoxolaner
15229                                                                                                                                   prednisone
15230                                                                                                                                   cephalexin
15231                                                                                                                                  hydroxyzine
15232                                                                                                                  lufenuron, milbemycin oxime
15233                                                                                                                                   afoxolaner
15234                                                                                                                  lufenuron, milbemycin oxime
15235                                                                                                                                   afoxolaner
15236                                                                                                                                metronidazole
15237                                                                                                           amoxicillin, clavulanate potassium
15238                                                                                                                                 fenbendazole
15239                                                                                                                  lufenuron, milbemycin oxime
15240                                                                                                                                   afoxolaner
15241                                                                                                                                metronidazole
15242                                                                                                                                 enrofloxacin
15243                                                                                                                                 fenbendazole
15244                                                                                                                     homatropine, hydrocodone
15245                                                                                                                                  clindamycin
15246                                                                                                                                   gabapentin
15247                                                                                                                                yunnan baiyao
15248                                                                                                                 ivermectin, pyrantel pamoate
15249                                                                                                                 ivermectin, pyrantel pamoate
15250                                                                                                                     imidacloprid, permethrin
15251                                                                                                                                 multivitamin
15252                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15253                                                                                                                 ivermectin, pyrantel pamoate
15254                                                                                                                                levothyroxine
15255                                                                                                                                    body sore
15256                                                                                                                                    meloxicam
15257                                                                                                                                levothyroxine
15258                                                                                                                                levothyroxine
15259                                                                                                                                  shen calmer
15260                                                                                                                                    meloxicam
15261                                                                                                                                    body sore
15262                                                                                                                                  doxycycline
15263                                                                                                                                   afoxolaner
15264                                                                                                                                levothyroxine
15265                                                                                                                 ivermectin, pyrantel pamoate
15266                                                                                                                                   afoxolaner
15267                                                                                                                                levothyroxine
15268                                                                                                                 ivermectin, pyrantel pamoate
15269                                                                                                                                   afoxolaner
15270                                                                                                                                levothyroxine
15271                                                                                                                                  clindamycin
15272                                                                                                                                   prednisone
15273                                                                                                                                  clindamycin
15274                                                                                                                unspecified herbal supplement
15275                                                                                                                         prednisolone acetate
15276                                                                                                                                   cephalexin
15277                                                                                                                                   cephalexin
15278                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15279                                                                                                                                    probiotic
15280                                                                                                                         cefpodoxime proxetil
15281                                                                                                               sulfamethoxazole, trimethoprim
15282                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15283                                                                                                               sulfamethoxazole, trimethoprim
15284                                                                                                                                  amoxicillin
15285                                                                                                                                    carprofen
15286                                                                                                                                    carprofen
15287                                                                                                                                   cephalexin
15288                                                                                                                         prebiotic, probiotic
15289                                                                                                                                metronidazole
15290                                                                                                                                   cephalexin
15291                                                                                                                                 fenbendazole
15292                                                                                                                                metronidazole
15293                                                                                                                                  amoxicillin
15294                                                                                                                             sulfadimethoxine
15295                                                                                                                   milbemycin oxime, spinosad
15296                                                                                                                                  hydroxyzine
15297                                                                                                                   milbemycin oxime, spinosad
15298                                                                                                                         cefpodoxime proxetil
15299                                                                                                                                   prednisone
15300                                                                                                                                    probiotic
15301                                                                                                                                methocarbamol
15302                                                                                                                                 enrofloxacin
15303                                                                                                                                hydromorphone
15304                                                                                                                                    midazolam
15305                                                                                                                                     propofol
15306                                                                                                                                levothyroxine
15307                                                                                                                                  hydroxyzine
15308                                                                                                                                   ivermectin
15309                                                                                                                                   afoxolaner
15310                                                                                                                 ivermectin, pyrantel pamoate
15311                                                                                                                     flumethrin, imidacloprid
15312                                                                                                                                levothyroxine
15313                                                                                                                                  hydroxyzine
15314                                                                                                                 ivermectin, pyrantel pamoate
15315                                                                                                                     flumethrin, imidacloprid
15316                                                                                                                                levothyroxine
15317                                                                                                                 ivermectin, pyrantel pamoate
15318                                                                                                                                levothyroxine
15319                                                                                                               milbemycin oxime, praziquantel
15320                                                                                                                                levothyroxine
15321                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15322                                                                                                                     flumethrin, imidacloprid
15323                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15324                                                                                                                                levothyroxine
15325                                                                                                                                levothyroxine
15326                                                                                                           amoxicillin, clavulanate potassium
15327                                                                                                                                levothyroxine
15328                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15329                                                                                                                         prednisolone acetate
15330                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15331                                                                                                                                levothyroxine
15332                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
15333                                                                                                                                    probiotic
15334                                                                                                            betamethasone, gentamicin sulfate
15335                                                                                                                                   loratadine
15336                                                                                                                                   loratadine
15337                                                                                                                   milbemycin oxime, spinosad
15338                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15339                                                                                                                   milbemycin oxime, spinosad
15340                                                                                                                   milbemycin oxime, spinosad
15341                                                                                                                                    carprofen
15342                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15343                                                                                                                   milbemycin oxime, spinosad
15344                                                                                                                                   loratadine
15345                                                                                                                   milbemycin oxime, spinosad
15346                                                                                                                                   loratadine
15347                                                                                                                                      codeine
15348                                                                                                                   milbemycin oxime, spinosad
15349                                                                                                                                   loratadine
15350                                                                                                                                    probiotic
15351                                                                                                                                      omega 3
15352                                                                                                                             cyclophosphamide
15353                                                                                                                                    piroxicam
15354                                                                                                                     urinary tract supplement
15355                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15356                                                                                                                                   loratadine
15357                                                                                                                             cyclophosphamide
15358                                                                                                                                      omega 3
15359                                                                                                                                    piroxicam
15360                                                                                                                                metronidazole
15361                                                                                                                                   ivermectin
15362                                                                                                                                   ivermectin
15363                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15364                                                                                                                                metronidazole
15365                                                                                                                                   ivermectin
15366                                                                                                                 ivermectin, pyrantel pamoate
15367                                                                                                                  lufenuron, milbemycin oxime
15368                                                                                                                  lufenuron, milbemycin oxime
15369                                                                                                    lufenuron, milbemycin oxime, praziquantel
15370                                                                                                                                   afoxolaner
15371                                                                                                                  lufenuron, milbemycin oxime
15372                                                                                                       cyphenothrin, fipronil, (s)-methoprene
15373                                                                                                    lufenuron, milbemycin oxime, praziquantel
15374                                                                                                                     fipronil, (s)-methoprene
15375                                                                                                    lufenuron, milbemycin oxime, praziquantel
15376                                                                                                                     fipronil, (s)-methoprene
15377                                                                                                    lufenuron, milbemycin oxime, praziquantel
15378                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
15379                                                                                                                                    carprofen
15380                                                                                                                                   famotidine
15381                                                                                                                                   sucralfate
15382                                                                                                                           maropitant citrate
15383                                                                                                                                  doxycycline
15384                                                                                                                                    carprofen
15385                                                                                                                                metronidazole
15386                                                                                                                                   gabapentin
15387                                                                                                                                    carprofen
15388                                                                                                                                    carprofen
15389                                                                                                                                metronidazole
15390                                                                                                                           maropitant citrate
15391                                                                                                                                  doxorubicin
15392                                                                                                                                    lomustine
15393                                                                                                                                   prednisone
15394                                                                                                                 ivermectin, pyrantel pamoate
15395                                                                                                           fipronil, permethrin, pyriproxyfen
15396                                                                                                                                    carprofen
15397                                                                                                                 ivermectin, pyrantel pamoate
15398                                                                                                                           maropitant citrate
15399                                                                                                                 ivermectin, pyrantel pamoate
15400                                                                                                                      triamcinolone acetonide
15401                                                                                                                              diphenhydramine
15402                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
15403                                                                                                                           maropitant citrate
15404                                                                                                                   lactated ringer's solution
15405                                                                                                                                   famotidine
15406                                                                                                                                  amoxicillin
15407                                                                                                                 ivermectin, pyrantel pamoate
15408                                                                                                                                metronidazole
15409                                                                                                                                metronidazole
15410                                                                                                                                   cephalexin
15411                                                                                                            trimeprazine tartrate, prednisone
15412                                                                                                                 ivermectin, pyrantel pamoate
15413                                                                                                                                metronidazole
15414                                                                                                                           maropitant citrate
15415                                                                                                                                   cephalexin
15416                                                                                                            trimeprazine tartrate, prednisone
15417                                                                                                                 ivermectin, pyrantel pamoate
15418                                                                                                                 ivermectin, pyrantel pamoate
15419                                                                                                                                   omeprazole
15420                                                                                                                 ivermectin, pyrantel pamoate
15421                                                                                                                                metronidazole
15422                                                                                                                                   omeprazole
15423                                                                                                                               metoclopramide
15424                                                                                                                 ivermectin, pyrantel pamoate
15425                                                                                                                                metronidazole
15426                                                                                                                           maropitant citrate
15427                                                                                                                                   lokivetmab
15428                                                                                                                                 azithromycin
15429                                                                                                                                   lokivetmab
15430                                                                                                                                   omeprazole
15431                                                                                                                                   cetirizine
15432                                                                                                                           maropitant citrate
15433                                                                                                                 ivermectin, pyrantel pamoate
15434                                                                                                                     fipronil, (s)-methoprene
15435                                                                                                                                    piroxicam
15436                                                                                                                                   prednisone
15437                                                                                                                                 azithromycin
15438                                                                                                                                   omeprazole
15439                                                                                                                                    piroxicam
15440                                                                                                       joint supplement (glucosamine hcl/msm)
15441                                                                                                                                  guaifenesin
15442                                                                                                                                    magnesium
15443                                                                                                                                     ursodiol
15444                                                                                                                                    vitamin d
15445                                                                                                                            hypochlorous acid
15446                                                                                                                                   prednisone
15447                                                                                                                 ivermectin, pyrantel pamoate
15448                                                                                                                 ivermectin, pyrantel pamoate
15449                                                                                                                 ivermectin, pyrantel pamoate
15450                                                                                                                 ivermectin, pyrantel pamoate
15451                                                                                                                 ivermectin, pyrantel pamoate
15452                                                                                                                                   cephalexin
15453                                                                                                          ear cleaner (zymox), hydrocortisone
15454                                                                                                                               (s)-methoprene
15455                                                                                                                                   ivermectin
15456                                                                                                                                   afoxolaner
15457                                                                                                                                    carprofen
15458                                                                                                                                    carprofen
15459                                                                                                                         cefpodoxime proxetil
15460                                                                                                                                    carprofen
15461                                                                                                                                    carprofen
15462                                                                                                           amoxicillin, clavulanate potassium
15463                                                                                                                                   prednisone
15464                                                                                                                                   ivermectin
15465                                                                                                                                 ketoconazole
15466                                                                                                                      ketoconazole, tris-edta
15467                                                                                                                                   cephalexin
15468                                                                                                                 ivermectin, pyrantel pamoate
15469                                                                                                                                   afoxolaner
15470                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
15471                                                                                                                                   cephalexin
15472                                                                                                                                   cephalexin
15473                                                                                                                                  oclacitinib
15474                                                                                                                                   ivermectin
15475                                                                                                                                   afoxolaner
15476                                                                                                                                  oclacitinib
15477                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
15478                                                                                                                                   cephalexin
15479                                                                                                                                   cephalexin
15480                                                                                                                                 ketoconazole
15481                                                                                                                 ivermectin, pyrantel pamoate
15482                                                                                                                                   afoxolaner
15483                                                                                                                                  oclacitinib
15484                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
15485                                                                                                                 ivermectin, pyrantel pamoate
15486                                                                                                                                   afoxolaner
15487                                                                                                                 ivermectin, pyrantel pamoate
15488                                                                                                                                   afoxolaner
15489                                                                                                            betamethasone, gentamicin sulfate
15490                                                                                                                                  oclacitinib
15491                                                                                                                                    carprofen
15492                                                                                                                                   cephalexin
15493                                                                                                                                 ketoconazole
15494                                                                                                                 ivermectin, pyrantel pamoate
15495                                                                                                                                   afoxolaner
15496                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15497                                                                                                                                    trazodone
15498                                                                                                                           calming supplement
15499                                                                                                                 ivermectin, pyrantel pamoate
15500                                                                                                                                   afoxolaner
15501                                                                                                                               benazepril hcl
15502                                                                                                                                   gabapentin
15503                                                                                                                                    carprofen
15504                                                                                                                                metronidazole
15505                                                                                                 florfenicol, mometasone furoate, terbinafine
15506                                                                                                                                   gabapentin
15507                                                                                                                                    vitamin b
15508                                                                                                                                    carprofen
15509                                                                                                                                   ivermectin
15510                                                                                                                                   ivermectin
15511                                                                                                                                   ivermectin
15512                                                                                                                                   fluralaner
15513                                                                                                                                      omega 3
15514                                                                                                                 ivermectin, pyrantel pamoate
15515                                                                                                                                   fluralaner
15516                                                                                                                                metronidazole
15517                                                                                                                 ivermectin, pyrantel pamoate
15518                                                                                                                                   fluralaner
15519                                                                                                                 ivermectin, pyrantel pamoate
15520                                                                                                                                   fluralaner
15521                                                                                                                                   ivermectin
15522                                                                                                                                     tramadol
15523                                                                                                                                    carprofen
15524                                                                                                                 ivermectin, pyrantel pamoate
15525                                                                                                                 ivermectin, pyrantel pamoate
15526                                                                                                                                   fluralaner
15527                                                                                                                 ivermectin, pyrantel pamoate
15528                                                                                                               milbemycin oxime, praziquantel
15529                                                                                                                                   fluralaner
15530                                                                                                        dinotefuran, permethrin, pyriproxyfen
15531                                                                                                               milbemycin oxime, praziquantel
15532                                                                                                                                   fluralaner
15533                                                                                                                     urinary tract supplement
15534                                                                                                                                    carprofen
15535                                                                                                                                    carprofen
15536                                                                                                                                   gabapentin
15537                                                                                                                                    carprofen
15538                                                                                                                                  bedinvetmab
15539                                                                                                                                    carprofen
15540                                                                                                                                   cephalexin
15541                                                                                                                                ciprofloxacin
15542                                                                                                                           maropitant citrate
15543                                                                                                                                    carvacrol
15544                                                                                                                                     tramadol
15545                                                                                                        dinotefuran, permethrin, pyriproxyfen
15546                                                                                                                                   ivermectin
15547                                                                                                                                   ivermectin
15548                                                                                                                 ivermectin, pyrantel pamoate
15549                                                                                                                                    firocoxib
15550                                                                                                                                    meloxicam
15551                                                                                                                                    meloxicam
15552                                                                                                                                   fluralaner
15553                                                                                                                 ivermectin, pyrantel pamoate
15554                                                                                                                                   fluralaner
15555                                                                                                                             milbemycin oxime
15556                                                                                                                 ivermectin, pyrantel pamoate
15557                                                                                                                                  clindamycin
15558                                                                                                                                    carprofen
15559                                                                                                                        ampicillin, sulbactam
15560                                                                                                                                     fentanyl
15561                                                                                                                                dexamethasone
15562                                                                                                                                    methadone
15563                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
15564                                                                                                           amoxicillin, clavulanate potassium
15565                                                                                                                                 enrofloxacin
15566                                                                                                                                   prednisone
15567                                                                                                                                   prednisone
15568                                                                                                                                     tramadol
15569                                                                                                                                    carprofen
15570                                                                                                                                ciprofloxacin
15571                                                                                                                                  amoxicillin
15572                                                                                                                             milbemycin oxime
15573                                                                                                                                   fluralaner
15574                                                                                                                                   ivermectin
15575                                                                                                           amoxicillin, clavulanate potassium
15576                                                                                                                                    probiotic
15577                                                                                                                                 fenbendazole
15578                                                                                                                                metronidazole
15579                                                                                                                                metronidazole
15580                                                                                                                                    carprofen
15581                                                                                                                             pyrantel pamoate
15582                                                                                                                                    carprofen
15583                                                                                                                                   cephalexin
15584                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15585                                                                                                                 ivermectin, pyrantel pamoate
15586                                                                                                           fipronil, permethrin, pyriproxyfen
15587                                                                                                                                    carprofen
15588                                                                                                                     fipronil, (s)-methoprene
15589                                                                                                                 ivermectin, pyrantel pamoate
15590                                                                                                                 ivermectin, pyrantel pamoate
15591                                                                                                                                   afoxolaner
15592                                                                                                                     fipronil, (s)-methoprene
15593                                                                                                                 ivermectin, pyrantel pamoate
15594                                                                                                                                   afoxolaner
15595                                                                                                                                 fenbendazole
15596                                                                                                                                    carprofen
15597                                                                                                                 ivermectin, pyrantel pamoate
15598                                                                                                                                   afoxolaner
15599                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15600                                                                                                                 ivermectin, pyrantel pamoate
15601                                                                                                                                    sarolaner
15602                                                                                                                                  doxycycline
15603                                                                                                                                    mupirocin
15604                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15605                                                                                                                                  doxycycline
15606                                                                                                                                   cephalexin
15607                                                                                                                                   gabapentin
15608                                                                                                                                    carprofen
15609                                                                                                                                   gabapentin
15610                                                                                                                                   gabapentin
15611                                                                                                                          ear cleaner (zymox)
15612                                                                                                                 ivermectin, pyrantel pamoate
15613                                                                                                                 ivermectin, pyrantel pamoate
15614                                                                                                          ear cleaner (zymox), hydrocortisone
15615                                                                                                                          ear cleaner (zymox)
15616                                                                                                                 ivermectin, pyrantel pamoate
15617                                                                                                                 ivermectin, pyrantel pamoate
15618                                                                                                                 ivermectin, pyrantel pamoate
15619                                                                                                           fipronil, permethrin, pyriproxyfen
15620                                                                                                                  lufenuron, milbemycin oxime
15621                                                                                                                                metronidazole
15622                                                                                                                                   cephalexin
15623                                                                                                                                    carprofen
15624                                                                                                                                     tramadol
15625                                                                                                                                 fenbendazole
15626                                                                                                                                  amoxicillin
15627                                                                                                                             milbemycin oxime
15628                                                                                                                                metronidazole
15629                                                                                                                                    carprofen
15630                                                                                                                                   cephalexin
15631                                                                                                                         cefpodoxime proxetil
15632                                                                                                                                   fluralaner
15633                                                                                                                                   prednisone
15634                                                                                                                  lufenuron, milbemycin oxime
15635                                                                                                                  lufenuron, milbemycin oxime
15636                                                                                                                  lufenuron, milbemycin oxime
15637                                                                                                                                 enrofloxacin
15638                                                                                                                                   gabapentin
15639                                                                                                                                    carprofen
15640                                                                                                                         cefpodoxime proxetil
15641                                                                                                                                   gabapentin
15642                                                                                                                                    carprofen
15643                                                                                                                                   cephalexin
15644                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15645                                                                                                                                 fenbendazole
15646                                                                                                                                metronidazole
15647                                                                                                                                  amoxicillin
15648                                                                                                                                  amoxicillin
15649                                                                                                                 ivermectin, pyrantel pamoate
15650                                                                                                                     fipronil, (s)-methoprene
15651                                                                                                                                  doxycycline
15652                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15653                                                                                                                                    carprofen
15654                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15655                                                                                                                      ketoconazole, tris-edta
15656                                                                                                     febantel, praziquantel, pyrantel pamoate
15657                                                                                                     febantel, praziquantel, pyrantel pamoate
15658                                                                                                     febantel, praziquantel, pyrantel pamoate
15659                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15660                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15661                                                                                                                                   ivermectin
15662                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15663                                                                                                                     fipronil, (s)-methoprene
15664                                                                                                                                    carprofen
15665                                                                                                           chlorhexidine gluconate, tris-edta
15666                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15667                                                                                                                      ketoconazole, tris-edta
15668                                                                                               dexamethasone, neomycin sulfate, thiabendazole
15669                                                                                                                 ivermectin, pyrantel pamoate
15670                                                                                                                                    sarolaner
15671                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15672                                                                                                                 ivermectin, pyrantel pamoate
15673                                                                                                                 ivermectin, pyrantel pamoate
15674                                                                                                                                    sarolaner
15675                                                                                                 florfenicol, mometasone furoate, terbinafine
15676                                                                                                                                    sarolaner
15677                                                                                                 florfenicol, mometasone furoate, terbinafine
15678                                                                                                                                   cephalexin
15679                                                                                                 florfenicol, mometasone furoate, terbinafine
15680                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15681                                                                                                                                   cephalexin
15682                                                                                                                                  clindamycin
15683                                                                                                                                    ofloxacin
15684                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15685                                                                                                                                    carprofen
15686                                                                                                                                    carprofen
15687                                                                                                                                   grapiprant
15688                                                                                                                   milbemycin oxime, spinosad
15689                                                                                                                   milbemycin oxime, spinosad
15690                                                                                                                   milbemycin oxime, spinosad
15691                                                                                                                   milbemycin oxime, spinosad
15692                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15693                                                                                                                   milbemycin oxime, spinosad
15694                                                                                                                   milbemycin oxime, spinosad
15695                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15696                                                                                                                                     ursodiol
15697                                                                                                                                   ivermectin
15698                                                                                                                 ivermectin, pyrantel pamoate
15699                                                                                                                 ivermectin, pyrantel pamoate
15700                                                                                                                                    firocoxib
15701                                                                                                                   milbemycin oxime, spinosad
15702                                                                                                                                      omega 3
15703                                                                                                                           maropitant citrate
15704                                                                                                          ear cleaner (zymox), hydrocortisone
15705                                                                                                          ear cleaner (zymox), hydrocortisone
15706                                                                                                                          ear cleaner (zymox)
15707                                                                                                                   milbemycin oxime, spinosad
15708                                                                                                                             sulfadimethoxine
15709                                                                                                                                   cephalexin
15710                                                                                                                              diphenhydramine
15711                                                                                                              over-the-counter wound dressing
15712                                                                                                                   milbemycin oxime, spinosad
15713                                                                                                                                      omega 3
15714                                                                                                                        anal gland supplement
15715                                                                                                                   milbemycin oxime, spinosad
15716                                                                                                                        anal gland supplement
15717                                                                                                                     joint supplement (other)
15718                                                                                                                                    pramoxine
15719                                                                                                                 ivermectin, pyrantel pamoate
15720                                                                                                                                   afoxolaner
15721                                                                                                                        anal gland supplement
15722                                                                                                                                      omega 3
15723                                                                                                                                    meloxicam
15724                                                                                                                                    meloxicam
15725                                                                                                                 ivermectin, pyrantel pamoate
15726                                                                                                                                   afoxolaner
15727                                                                                                                                      omega 3
15728                                                                                                                 ivermectin, pyrantel pamoate
15729                                                                                                                                   afoxolaner
15730                                                                                                                        anal gland supplement
15731                                                                                                                                      omega 3
15732                                                                                                                     joint supplement (other)
15733                                                                                                                 ivermectin, pyrantel pamoate
15734                                                                                                                                   gabapentin
15735                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15736                                                                                                                                      omega 3
15737                                                                                               mometasone furoate, orbifloxacin, posaconazole
15738                                                                                                                                   gabapentin
15739                                                                                                                                yunnan baiyao
15740                                                                                                                                  gui pi tang
15741                                                                                                                                    methadone
15742                                                                                                                                   gabapentin
15743                                                                                                                                    carprofen
15744                                                                                                                           xue fu zhu yu tang
15745                                                                                                                             gexia-zhuyu tang
15746                                                                                                                    immune support supplement
15747                                                                                                                    immune support supplement
15748                                                                                                                             fu zheng support
15749                                                                                                                                yunnan baiyao
15750                                                                                 butorphanol tartrate, dexmedetomidine, tiletamine, zolazepam
15751                                                                                                                                   fatal plus
15752                                                                                                                             sulfadimethoxine
15753                                                                                                                             pyrantel pamoate
15754                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15755                                                                                                                 ivermectin, pyrantel pamoate
15756                                                                                                                     fipronil, (s)-methoprene
15757                                                                                                                 ivermectin, pyrantel pamoate
15758                                                                                                                     fipronil, (s)-methoprene
15759                                                                                                                 ivermectin, pyrantel pamoate
15760                                                                                                                                   afoxolaner
15761                                                                                                                                   afoxolaner
15762                                                                                                                                   afoxolaner
15763                                                                                                                                   afoxolaner
15764                                                                                                                                  clindamycin
15765                                                                                                                                ciprofloxacin
15766                                                                                                               sulfamethoxazole, trimethoprim
15767                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15768                                                                                                                           gentamicin sulfate
15769                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15770                                                                                                                         dorzolamide, timolol
15771                                                                                                                                  oclacitinib
15772                                                                                                                                    carprofen
15773                                                                                                                                   ivermectin
15774                                                                                                                             pyrantel pamoate
15775                                                                                                                                 praziquantel
15776                                                                                                                                   cephalexin
15777                                                                                                                                    meloxicam
15778                                                                                                                      triamcinolone acetonide
15779                                                                                                                                   cephalexin
15780                                                                                                                                    meloxicam
15781                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15782                                                                                                                      triamcinolone acetonide
15783                                                                                                                     joint supplement (other)
15784                                                                                                                             milbemycin oxime
15785                                                                                                                                      calcium
15786                                                                                                                     joint supplement (other)
15787                                                                                                                                   grapiprant
15788                                                                                                                                    meloxicam
15789                                                                                                           amoxicillin, clavulanate potassium
15790                                                                                                                     kidney health supplement
15791                                                                                                                                    meloxicam
15792                                                                                                                                  doxycycline
15793                                                                                                                                  hydrocodone
15794                                                                                                                                    meloxicam
15795                                                                                                                                  amoxicillin
15796                                                                                                           amoxicillin, clavulanate potassium
15797                                                                                                                                 enrofloxacin
15798                                                                                                                                   cephalexin
15799                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
15800                                                                                                                                    meloxicam
15801                                                                                                           amoxicillin, clavulanate potassium
15802                                                                                                                                  bedinvetmab
15803                                                                                                                 ivermectin, pyrantel pamoate
15804                                                                                                                       cyphenothrin, fipronil
15805                                                                                                                               metoclopramide
15806                                                                                                                                   famotidine
15807                                                                                                                       cyphenothrin, fipronil
15808                                                                                                    lufenuron, milbemycin oxime, praziquantel
15809                                                                                                                                   cephalexin
15810                                                                                                                                dexamethasone
15811                                                                                                                       cyphenothrin, fipronil
15812                                                                                                                                   cephalexin
15813                                                                                                                                  oclacitinib
15814                                                                                    activated charcoal, bismuth subsalicylate, kaolin, pectin
15815                                                                                                                             milbemycin oxime
15816                                                                                                                                   fluralaner
15817                                                                                                                              diphenhydramine
15818                                                                                                                             milbemycin oxime
15819                                                                                                                 ivermectin, pyrantel pamoate
15820                                                                                                                       cyphenothrin, fipronil
15821                                                                                                                 ivermectin, pyrantel pamoate
15822                                                                                                                       cyphenothrin, fipronil
15823                                                                                                                                   cephalexin
15824                                                                                                                                    carprofen
15825                                                                                                                         cefpodoxime proxetil
15826                                                                                                                                   prednisone
15827                                                                                                            trimeprazine tartrate, prednisone
15828                                                                                                                                    meloxicam
15829                                                                                                                 ivermectin, pyrantel pamoate
15830                                                                                                            trimeprazine tartrate, prednisone
15831                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
15832                                                                                                                           activated charcoal
15833                                                                                                                   lactated ringer's solution
15834                                                                                                                 ivermectin, pyrantel pamoate
15835                                                                                                                 ivermectin, pyrantel pamoate
15836                                                                                                                 ivermectin, pyrantel pamoate
15837                                                                                                                 ivermectin, pyrantel pamoate
15838                                                                                                                 ivermectin, pyrantel pamoate
15839                                                                                                                             pyrantel pamoate
15840                                                                                                           joint supplement (glucosamine hcl)
15841                                                                                                                 ivermectin, pyrantel pamoate
15842                                                                                                                  lufenuron, milbemycin oxime
15843                                                                                                                              diphenhydramine
15844                                                                                                                  lufenuron, milbemycin oxime
15845                                                                                                                                   cephalexin
15846                                                                                                                                  hydroxyzine
15847                                                                                                                                metronidazole
15848                                                                                                                                    probiotic
15849                                                                                                                  lufenuron, milbemycin oxime
15850                                                                                                               milbemycin oxime, praziquantel
15851                                                                                                                                   fluralaner
15852                                                                                                                                    carprofen
15853                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
15854                                                                                                               polysulfated glycosaminoglycan
15855                                                                                                               polysulfated glycosaminoglycan
15856                                                                                                                     imidacloprid, permethrin
15857                                                                                                                                   fluralaner
15858                                                                                                                                    deracoxib
15859                                                                                                                  lufenuron, milbemycin oxime
15860                                                                                                                         cefpodoxime proxetil
15861                                                                                                            betamethasone, gentamicin sulfate
15862                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
15863                                                                                                                             atropine sulfate
15864                                                                                                                                 flurbiprofen
15865                                                                                                                                   fluralaner
15866                                                                                                                             milbemycin oxime
15867                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
15868                                                                                                                            vision supplement
15869                                                                                                                  lufenuron, milbemycin oxime
15870                                                                                                                                   fluralaner
15871                                                                                                 florfenicol, mometasone furoate, terbinafine
15872                                                                                                                                   fluralaner
15873                                                                                                                         cefpodoxime proxetil
15874                                                                                                                              chloramphenicol
15875                                                                                                                                    mupirocin
15876                                                                                                                              chloramphenicol
15877                                                                                                               milbemycin oxime, praziquantel
15878                                                                                                                                marbofloxacin
15879                                                                                                                              chloramphenicol
15880                                                                                                                                    mupirocin
15881                                                                                                                                   fluralaner
15882                                                                                                               milbemycin oxime, praziquantel
15883                                                                                                            betamethasone, gentamicin sulfate
15884                                                                                                                                    deracoxib
15885                                                                                                                                      taurine
15886                                                                                                                            vision supplement
15887                                                                                                                                   alprazolam
15888                                                                                                                                   fluralaner
15889                                                                                                            enrofloxacin, silver sulfadiazine
15890                                                                                                                dextromethorphan, guaifenesin
15891                                                                                                                  lufenuron, milbemycin oxime
15892                                                                                                                  lufenuron, milbemycin oxime
15893                                                                                                                                    carprofen
15894                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
15895                                                                                              betamethasone, clotrimazole, gentamicin sulfate
15896                                                                                                          ear cleaner (zymox), hydrocortisone
15897                                                                                                                                   selamectin
15898                                                                                                                                metronidazole
15899                                                                                                                                    probiotic
15900                                                                                                                         digestive supplement
15901                                                                                                           amoxicillin, clavulanate potassium
15902                                                                                                           amoxicillin, clavulanate potassium
15903                                                                                                                                 multivitamin
15904                                                                                                                                 fenbendazole
15905                                                                                                                                    probiotic
15906                                                                                                                                    carprofen
15907                                                                                                                             phytosphingosine
15908                                                                                                                                      omega 3
15909                                                                                                                                 fenbendazole
15910                                                                                                                             pyrantel pamoate
15911                                                                                                                                 fenbendazole
15912                                                                                                                                   budesonide
15913                                                                                                                                   famotidine
15914                                                                                                                                  simethicone
15915                                                                                                                                    vitamin b
15916                                                                                                                         digestive supplement
15917                                                                                                                                   ivermectin
15918                                                                                                                         digestive supplement
15919                                                                                                                                   famotidine
15920                                                                                                                             tylosin tartrate
15921                                                                                                                                    probiotic
15922                                                                                                                                   ivermectin
15923                                                                                                                             tylosin tartrate
15924                                                                                                                                    vitamin b
15925                                                                                                                                   budesonide
15926                                                                                                                                 cyclosporine
15927                                                                                                                                    vitamin a
15928                                                                                                                                    probiotic
15929                                                                                                                                 multivitamin
15930                                                                                                                 ivermectin, pyrantel pamoate
15931                                                                                                                             tylosin tartrate
15932                                                                                                                                    vitamin b
15933                                                                                                                                    vitamin a
15934                                                                                                                                   budesonide
15935                                                                                                                                    probiotic
15936                                                                                                                                 cyclosporine
15937                                                                                                                                   ivermectin
15938                                                                                                                                   famotidine
15939                                                                                                                                   budesonide
15940                                                                                                                                    vitamin b
15941                                                                                                                                   omeprazole
15942                                                                                                                                  simethicone
15943                                                                                                                                   budesonide
15944                                                                                                                                   ivermectin
15945                                                                                                                                    probiotic
15946                                                                                                                         digestive supplement
15947                                                                                                                                    vitamin a
15948                                                                                                                                    probiotic
15949                                                                                                                                 multivitamin
15950                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
15951                                                                                                                                   lokivetmab
15952                                                                                                                                   lokivetmab
15953                                                                                                                                   gabapentin
15954                                                                                                                                  oclacitinib
15955                                                                                                                             tylosin tartrate
15956                                                                                                                                   budesonide
15957                                                                                                                                  oclacitinib
15958                                                                                                                                   gabapentin
15959                                                                                                                             tylosin tartrate
15960                                                                                                                                    vitamin b
15961                                                                                                                                   budesonide
15962                                                                                                                             tylosin tartrate
15963                                                                                                                                   gabapentin
15964                                                                                                                           maropitant citrate
15965                                                                                                               polysulfated glycosaminoglycan
15966                                                                                                                                   budesonide
15967                                                                                                                 ivermectin, pyrantel pamoate
15968                                                                                                                                  minocycline
15969                                                                                                                             sulfadimethoxine
15970                                                                                                                                 fenbendazole
15971                                                                                                                                metronidazole
15972                                                                                                            betamethasone, gentamicin sulfate
15973                                                                                                                   milbemycin oxime, spinosad
15974                                                                                                                                    carprofen
15975                                                                                                                         cefpodoxime proxetil
15976                                                                                                                 ivermectin, pyrantel pamoate
15977                                                                                                                           maropitant citrate
15978                                                                                                                                    carprofen
15979                                                                                                                                     tramadol
15980                                                                                                                                   cephalexin
15981                                                                                                                  lufenuron, milbemycin oxime
15982                                                                                                                                  hydroxyzine
15983                                                                               bacitracin zinc, hydrocortisone, neomycin sulfate, polymyxin b
15984                                                                                                                                  oclacitinib
15985                                                                                                                                  oclacitinib
15986                                                                                                        dinotefuran, permethrin, pyriproxyfen
15987                                                                                                                                   prednisone
15988                                                                                                                                   prednisone
15989                                                                                                                                   prednisone
15990                                                                                                                                   prednisone
15991                                                                                                                                     tramadol
15992                                                                                                                  lufenuron, milbemycin oxime
15993                                                                                                        dinotefuran, permethrin, pyriproxyfen
15994                                                                                                                                    carprofen
15995                                                                                                                  lufenuron, milbemycin oxime
15996                                                                                                        dinotefuran, permethrin, pyriproxyfen
15997                                                                                                                                   fluralaner
15998                                                                                                                 hydrocortisone, ketoconazole
15999                                                                                                               milbemycin oxime, praziquantel
16000                                                                                                                                   fluralaner
16001                                                                                                                             milbemycin oxime
16002                                                                                                                                   fluralaner
16003                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16004                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16005                                                                                                                             milbemycin oxime
16006                                                                                                                                   fluralaner
16007                                                                                                                             milbemycin oxime
16008                                                                                                                                   fluralaner
16009                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16010                                                                                                                                   fluoxetine
16011                                                                                                                                   diclofenac
16012                                                                                                                                   diclofenac
16013                                                                                                                                 cyclosporine
16014                                                                                                                                  amoxicillin
16015                                                                                                           amoxicillin, clavulanate potassium
16016                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
16017                                                                                                                                   cephalexin
16018                                                                                                                                   cephalexin
16019                                                                                                                 ivermectin, pyrantel pamoate
16020                                                                                                                     fipronil, (s)-methoprene
16021                                                                                                                 ivermectin, pyrantel pamoate
16022                                                                                                                                   cephalexin
16023                                                                                                                 ivermectin, pyrantel pamoate
16024                                                                                                                 ivermectin, pyrantel pamoate
16025                                                                                                                         cefpodoxime proxetil
16026                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16027                                                                                                                                   lokivetmab
16028                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16029                                                                                                                         cefpodoxime proxetil
16030                                                                                                                                   lokivetmab
16031                                                                                                                                   lokivetmab
16032                                                                                                                                  doxycycline
16033                                                                                                                     fipronil, (s)-methoprene
16034                                                                                                                                   cephalexin
16035                                                                                                                     fipronil, (s)-methoprene
16036                                                                                                    lufenuron, milbemycin oxime, praziquantel
16037                                                                                                                                  amoxicillin
16038                                                                                                                 ivermectin, pyrantel pamoate
16039                                                                                                                     fipronil, (s)-methoprene
16040                                                                                                                                   cephalexin
16041                                                                                                                                   prednisone
16042                                                                                                                                  amoxicillin
16043                                                                                                                                   tobramycin
16044                                                                                                           amoxicillin, clavulanate potassium
16045                                                                                                                                metronidazole
16046                                                                                                           amoxicillin, clavulanate potassium
16047                                                                                                           amoxicillin, clavulanate potassium
16048                                                                                                                                     ursodiol
16049                                                                                                                 ivermectin, pyrantel pamoate
16050                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16051                                                                                                           amoxicillin, clavulanate potassium
16052                                                                                                    lufenuron, milbemycin oxime, praziquantel
16053                                                                                                                   imidacloprid, pyriproxyfen
16054                                                                                                                                   prednisone
16055                                                                                                                                   cephalexin
16056                                                                                                                                metronidazole
16057                                                                                                                     fipronil, (s)-methoprene
16058                                                                                                           amoxicillin, clavulanate potassium
16059                                                                                                                                   gabapentin
16060                                                                                                                 ivermectin, pyrantel pamoate
16061                                                                                                                                   afoxolaner
16062                                                                                                                 ivermectin, pyrantel pamoate
16063                                                                                                                                   afoxolaner
16064                                                                                                                                metronidazole
16065                                                                                                                                dexamethasone
16066                                                                                                                         cefpodoxime proxetil
16067                                                                                                                 ivermectin, pyrantel pamoate
16068                                                                                                                                   afoxolaner
16069                                                                                                                                   prednisone
16070                                                                                                                                   gabapentin
16071                                                                                                                                   gabapentin
16072                                                                                                                                    carprofen
16073                                                                                                                                   gabapentin
16074                                                                                                                                    trazodone
16075                                                                                                                         cefpodoxime proxetil
16076                                                                                                                                   gabapentin
16077                                                                                                                                   prednisone
16078                                                                                                                                   gabapentin
16079                                                                                                                           maropitant citrate
16080                                                                                                                                    meclizine
16081                                                                                                                                   prednisone
16082                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16083                                                                                                                                metronidazole
16084                                                                                                           amoxicillin, clavulanate potassium
16085                                                                                                            betamethasone, gentamicin sulfate
16086                                                                                                                           gentamicin sulfate
16087                                                                                                                             sulfadimethoxine
16088                                                                                                                                 fenbendazole
16089                                                                                                                                     tramadol
16090                                                                                                                                    carprofen
16091                                                                                                                                    carprofen
16092                                                                                                                             pyrantel pamoate
16093                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16094                                                                                                                 ivermectin, pyrantel pamoate
16095                                                                                                                                   afoxolaner
16096                                                                                                                                   fluralaner
16097                                                                                                                 ivermectin, pyrantel pamoate
16098                                                                                                                                   afoxolaner
16099                                                                                                                             liver supplement
16100                                                                                                                         cefpodoxime proxetil
16101                                                                                                                                     tramadol
16102                                                                                                                      chlorhexidine gluconate
16103                                                                                                                      ketoconazole, tris-edta
16104                                                                                                          ear cleaner (zymox), hydrocortisone
16105                                                                                                                  lufenuron, milbemycin oxime
16106                                                                                                                                 ketoconazole
16107                                                                                                       gentamicin sulfate, miconazole nitrate
16108                                                                                                                  lufenuron, milbemycin oxime
16109                                                                                                                  lufenuron, milbemycin oxime
16110                                                                                                 florfenicol, mometasone furoate, terbinafine
16111                                                                                                                                dexamethasone
16112                                                                                                                                  terbinafine
16113                                                                                                                      chlorhexidine gluconate
16114                                                                                                                  chloroxylenol, ketoconazole
16115                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16116                                                                                                                                  terbinafine
16117                                                                                                                                  clindamycin
16118                                                                                                                                   prednisone
16119                                                                                                                                   gabapentin
16120                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16121                                                                                                          ear cleaner (zymox), hydrocortisone
16122                                                                                                                                    carprofen
16123                                                                                                                                   ivermectin
16124                                                                                                                                      omega 3
16125                                                                                                                                   ivermectin
16126                                                                                                           fipronil, permethrin, pyriproxyfen
16127                                                                                                                                   ivermectin
16128                                                                                                       joint supplement (glucosamine hcl/msm)
16129                                                                                                                 ivermectin, pyrantel pamoate
16130                                                                                                        dinotefuran, permethrin, pyriproxyfen
16131                                                                                                                 ivermectin, pyrantel pamoate
16132                                                                                                                 ivermectin, pyrantel pamoate
16133                                                                                                                 ivermectin, pyrantel pamoate
16134                                                                                                                                    carprofen
16135                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16136                                                                                                                 ivermectin, pyrantel pamoate
16137                                                                                                                                metronidazole
16138                                                                                                                                    carprofen
16139                                                                                                                                  oclacitinib
16140                                                                                                                                   gabapentin
16141                                                                                                                           calming supplement
16142                                                                                                                                metronidazole
16143                                                                                                                                    carprofen
16144                                                                                                 florfenicol, mometasone furoate, terbinafine
16145                                                                                                                                  oclacitinib
16146                                                                                                                                   lokivetmab
16147                                                                                                                                  oclacitinib
16148                                                                                                                                   tobramycin
16149                                                                                                                         cefpodoxime proxetil
16150                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16151                                                                                                                           miconazole nitrate
16152                                                                                                                   imidacloprid, pyriproxyfen
16153                                                                                                                 ivermectin, pyrantel pamoate
16154                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16155                                                                                                              ear cleaner (epi-otic advanced)
16156                                                                                                                                    probiotic
16157                                                                                                                 ivermectin, pyrantel pamoate
16158                                                                                                                                   fluralaner
16159                                                                                                                             milbemycin oxime
16160                                                                                                                                   fluralaner
16161                                                                                                                 ivermectin, pyrantel pamoate
16162                                                                                                                                   fluralaner
16163                                                                                                                 ivermectin, pyrantel pamoate
16164                                                                                                                                   fluralaner
16165                                                                                                               milbemycin oxime, praziquantel
16166                                                                                                                                  clindamycin
16167                                                                                                                                  amoxicillin
16168                                                                                                                                   cephalexin
16169                                                                                                                         cefpodoxime proxetil
16170                                                                                                                                    carprofen
16171                                                                                                           amoxicillin, clavulanate potassium
16172                                                                                                           amoxicillin, clavulanate potassium
16173                                                                                                                                   lokivetmab
16174                                                                                                                                   lokivetmab
16175                                                                                                                                levothyroxine
16176                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16177                                                                                                  chlorhexidine gluconate, miconazole nitrate
16178                                                                                                                                 ketoconazole
16179                                                                                                        chlorhexidine gluconate, ketoconazole
16180                                                                                                           amoxicillin, clavulanate potassium
16181                                                                                                                                 enrofloxacin
16182                                                                                                                                 enrofloxacin
16183                                                                                                                             sulfadimethoxine
16184                                                                                                                                 ketoconazole
16185                                                                                                                                   lokivetmab
16186                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16187                                                                                                                                levothyroxine
16188                                                                                                                           maropitant citrate
16189                                                                                                                                   ampicillin
16190                                                                                                                                   famotidine
16191                                                                                                                                   sucralfate
16192                                                                                                                                    trazodone
16193                                                                                                                                   gabapentin
16194                                                                                                                                    carprofen
16195                                                                                                                                   grapiprant
16196                                                                                                                                   prednisone
16197                                                                                                                         cefpodoxime proxetil
16198                                                                                                                                metronidazole
16199                                                                                                               sulfamethoxazole, trimethoprim
16200                                                                                                                                    trazodone
16201                                                                                                                                levothyroxine
16202                                                                                                                                    carprofen
16203                                                                                                                                   grapiprant
16204                                                                                                                         cefpodoxime proxetil
16205                                                                                                                                levothyroxine
16206                                                                                                                                   lokivetmab
16207                                                                                                                                  bedinvetmab
16208                                                                                                                         cefpodoxime proxetil
16209                                                                                                                                   gabapentin
16210                                                                                                                                   grapiprant
16211                                                                                                                                   ivermectin
16212                                                                                                                             pyrantel pamoate
16213                                                                                                                                 imidacloprid
16214                                                                                                                                   permethrin
16215                                                                                                                                 pyriproxyfen
16216                                                                                                                                   sucralfate
16217                                                                                                                         cefpodoxime proxetil
16218                                                                                                                                    carprofen
16219                                                                                                                                  amoxicillin
16220                                                                                                                                   prednisone
16221                                                                                                           amoxicillin, clavulanate potassium
16222                                                                                                                                metronidazole
16223                                                                                                                         cefpodoxime proxetil
16224                                                                                                                                metronidazole
16225                                                                                                                                   famotidine
16226                                                                                                                               metoclopramide
16227                                                                                                                             sulfadimethoxine
16228                                                                                                                              apomorphine hcl
16229                                                                                                                 ivermectin, pyrantel pamoate
16230                                                                                                                 ivermectin, pyrantel pamoate
16231                                                                                                                                   ivermectin
16232                                                                                                                         cefpodoxime proxetil
16233                                                                                                                                    carprofen
16234                                                                                                                 ivermectin, pyrantel pamoate
16235                                                                                                                     flumethrin, imidacloprid
16236                                                                                                                         cefpodoxime proxetil
16237                                                                                                                     flumethrin, imidacloprid
16238                                                                                                                                  oclacitinib
16239                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16240                                                                                                                                      omega 3
16241                                                                                                   toothpaste/dental health solution or chews
16242                                                                                                   toothpaste/dental health solution or chews
16243                                                                                                                                    cefazolin
16244                                                                                                                           maropitant citrate
16245                                                                                                                                    meloxicam
16246                                                                                                                         cefpodoxime proxetil
16247                                                                                                                                   gabapentin
16248                                                                                                                                    meloxicam
16249                                                                                                           amoxicillin, clavulanate potassium
16250                                                                                                           amoxicillin, clavulanate potassium
16251                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16252                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
16253                                                                                               mometasone furoate, orbifloxacin, posaconazole
16254                                                                                                                   milbemycin oxime, spinosad
16255                                                                                                                             milbemycin oxime
16256                                                                                                                                    sarolaner
16257                                                                                                                                  doxycycline
16258                                                                                                                                 itraconazole
16259                                                                                                                                methazolamide
16260                                                                                                                                     tramadol
16261                                                                                                                                  fluconazole
16262                                                                                                                                    deracoxib
16263                                                                                                                                   prednisone
16264                                                                                                                                   ivermectin
16265                                                                                                                                     spinosad
16266                                                                                                                                   ivermectin
16267                                                                                                                                   fluralaner
16268                                                                                                                                  amoxicillin
16269                                                                                                           amoxicillin, clavulanate potassium
16270                                                                                                                                     spinosad
16271                                                                                                                        clorsulon, ivermectin
16272                                                                                                                                   fluralaner
16273                                                                                                                             milbemycin oxime
16274                                                                                                                                   fluralaner
16275                                                                                                           amoxicillin, clavulanate potassium
16276                                                                                                                                  amoxicillin
16277                                                                                                                                     tramadol
16278                                                                                                                                    carprofen
16279                                                                                                                                 enrofloxacin
16280                                                                                                                        clorsulon, ivermectin
16281                                                                                                                                   fluralaner
16282                                                                                                                                   ivermectin
16283                                                                                                                                   fluralaner
16284                                                                                                                        clorsulon, ivermectin
16285                                                                                                                                   fluralaner
16286                                                                                                                   unspecified eye medication
16287                                                                                                                 ivermectin, pyrantel pamoate
16288                                                                                                                     fipronil, (s)-methoprene
16289                                                                                                                 ivermectin, pyrantel pamoate
16290                                                                                                                     fipronil, (s)-methoprene
16291                                                                                                                             milbemycin oxime
16292                                                                                                                             milbemycin oxime
16293                                                                                                                     fipronil, (s)-methoprene
16294                                                                                                                 ivermectin, pyrantel pamoate
16295                                                                                                                     fipronil, (s)-methoprene
16296                                                                                                                                   ivermectin
16297                                                                                                               milbemycin oxime, praziquantel
16298                                                                                                                                   afoxolaner
16299                                                                                                               milbemycin oxime, praziquantel
16300                                                                                                                           maropitant citrate
16301                                                                                                                                metronidazole
16302                                                                                                                                  doxorubicin
16303                                                                                                                                 chlorambucil
16304                                                                                                                                    probiotic
16305                                                                                                                                yunnan baiyao
16306                                                                                                                                yunnan baiyao
16307                                                                                                                              diphenhydramine
16308                                                                                                                                    carprofen
16309                                                                                                                                dexamethasone
16310                                                                                                                                   ivermectin
16311                                                                                                                                   afoxolaner
16312                                                                                                                 ivermectin, pyrantel pamoate
16313                                                                                                                                   afoxolaner
16314                                                                                                                                      omega 3
16315                                                                                                                 ivermectin, pyrantel pamoate
16316                                                                                                                                   afoxolaner
16317                                                                                                            dexamethasone, miconazole nitrate
16318                                                                                                                 ivermectin, pyrantel pamoate
16319                                                                                                                                   afoxolaner
16320                                                                                                                                      omega 3
16321                                                                                                                 ivermectin, pyrantel pamoate
16322                                                                                                                                   afoxolaner
16323                                                                                                                                      omega 3
16324                                                                                                                 ivermectin, pyrantel pamoate
16325                                                                                                                                   afoxolaner
16326                                                                                                                             milbemycin oxime
16327                                                                                                                                   alprazolam
16328                                                                                                           amoxicillin, clavulanate potassium
16329                                                                                                                                    carprofen
16330                                                                                                                                   cephalexin
16331                                                                                                                                 enrofloxacin
16332                                                                                                                              povidone-iodine
16333                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16334                                                                                                                                   cephalexin
16335                                                                                                                                   prednisone
16336                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16337                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16338                                                                                               beclomethasone, clotrimazole, neomycin sulfate
16339                                                                                                        dinotefuran, permethrin, pyriproxyfen
16340                                                                                                                 ivermectin, pyrantel pamoate
16341                                                                                                                                   famotidine
16342                                                                                                                     homatropine, hydrocodone
16343                                                                                                           amoxicillin, clavulanate potassium
16344                                                                                                                                   ivermectin
16345                                                                                                                                   fluralaner
16346                                                                                                                 ivermectin, pyrantel pamoate
16347                                                                                                        dinotefuran, permethrin, pyriproxyfen
16348                                                                                                                                    trazodone
16349                                                                                                                              dexmedetomidine
16350                                                                                                                                 clomipramine
16351                                                                                                                                   alprazolam
16352                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16353                                                                                                                                   cephalexin
16354                                                                                                                         cefpodoxime proxetil
16355                                                                                                                                    mupirocin
16356                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16357                                                                                                                      chlorhexidine gluconate
16358                                                                                      chlorhexidine gluconate, ketoconazole, phytosphingosine
16359                                                                                                                                    cefazolin
16360                                                                                                                                   alprazolam
16361                                                                                                                                      omega 3
16362                                                                                                                                 multivitamin
16363                                                                                                                                   gabapentin
16364                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16365                                                                                                                                   lokivetmab
16366                                                                                                                                   lokivetmab
16367                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16368                                                                                                                                buprenorphine
16369                                                                                                                                     propofol
16370                                                                                                                                    carprofen
16371                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16372                                                                                                                                 multivitamin
16373                                                                                                                                   alprazolam
16374                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16375                                                                                                                                   gabapentin
16376                                                                                                                                      omega 3
16377                                                                                                                                   alprazolam
16378                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16379                                                                                                                                 multivitamin
16380                                                                                bacitracin zinc, dexamethasone, neomycin sulfate, polymyxin b
16381                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16382                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16383                                                                                                                                   ivermectin
16384                                                                                                                                   prednisone
16385                                                                                                                                  doxycycline
16386                                                                                                                                  oclacitinib
16387                                                                                                                                    ophytrium
16388                                                                                                                             phytosphingosine
16389                                                                                                                 ivermectin, pyrantel pamoate
16390                                                                                                                                     spinosad
16391                                                                                                                               chlorphenamine
16392                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16393                                                                                                                               chlorphenamine
16394                                                                                                            allergy immunotherapy - injection
16395                                                                                                                                  oclacitinib
16396                                                                                                                                      omega 3
16397                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16398                                                                                                                                    vitamin c
16399                                                                                                                                 multivitamin
16400                                                                                                                 ivermectin, pyrantel pamoate
16401                                                                                                                                     spinosad
16402                                                                                                           amoxicillin, clavulanate potassium
16403                                                                                                                 ivermectin, pyrantel pamoate
16404                                                                                                                                     spinosad
16405                                                                                                                                  oclacitinib
16406                                                                                                                               chlorphenamine
16407                                                                                                                allergy immunotherapy - drops
16408                                                                                                                 ivermectin, pyrantel pamoate
16409                                                                                                                                   fluralaner
16410                                                                                                                                  oclacitinib
16411                                                                                                                allergy immunotherapy - drops
16412                                                                                                                         cefpodoxime proxetil
16413                                                                                                                             milbemycin oxime
16414                                                                                                                                   fluralaner
16415                                                                                                                               chlorphenamine
16416                                                                                                                                  oclacitinib
16417                                                                                                                                    vitamin b
16418                                                                                                                     fipronil, (s)-methoprene
16419                                                                                                                       unspecified antibiotic
16420                                                                                                                        unspecified analgesic
16421                                                                                        cedarwood oil, eucalyptus, geranium oil, rosemary oil
16422                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16423                                                                                                                                    carprofen
16424                                                                                                                         cefpodoxime proxetil
16425                                                                                                                     fipronil, (s)-methoprene
16426                                                                                                                     fipronil, (s)-methoprene
16427                                                                                                                     fipronil, (s)-methoprene
16428                                                                                                                                    carprofen
16429                                                                                                                                    carprofen
16430                                                                                                                                   cephalexin
16431                                                                                                                                    carprofen
16432                                                                                                                  lufenuron, milbemycin oxime
16433                                                                                                                                   cephalexin
16434                                                                                                                                 multivitamin
16435                                                                                                                                      omega 3
16436                                                                                                                                     spinosad
16437                                                                                                                             sulfadimethoxine
16438                                                                                                                                metronidazole
16439                                                                                                                                  amoxicillin
16440                                                                                                                  lufenuron, milbemycin oxime
16441                                                                                                                  lufenuron, milbemycin oxime
16442                                                                                                                                 multivitamin
16443                                                                                                                                      omega 3
16444                                                                                                                                metronidazole
16445                                                                                                                                 enrofloxacin
16446                                                                                                                                  amoxicillin
16447                                                                                                                  lufenuron, milbemycin oxime
16448                                                                                                                                 multivitamin
16449                                                                                                                           maropitant citrate
16450                                                                                                               milbemycin oxime, praziquantel
16451                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16452                                                                                                                           maropitant citrate
16453                                                                                                                                   famotidine
16454                                                                                                                                   famotidine
16455                                                                                                                                   sucralfate
16456                                                                                                                                   sucralfate
16457                                                                                                                                   famotidine
16458                                                                                                                           maropitant citrate
16459                                                                                                                                   famotidine
16460                                                                                                                       cyphenothrin, fipronil
16461                                                                                                                                   fluralaner
16462                                                                                                                                    lactulose
16463                                                                                                                                levetiracetam
16464                                                                                                                                levetiracetam
16465                                                                                                                                levetiracetam
16466                                                                                                                                   cephalexin
16467                                                                                                                                   gabapentin
16468                                                                                                                                    carprofen
16469                                                                                                                                   cephalexin
16470                                                                                                                 ivermectin, pyrantel pamoate
16471                                                                                                                     fipronil, (s)-methoprene
16472                                                                                                                  lufenuron, milbemycin oxime
16473                                                                                                        dinotefuran, permethrin, pyriproxyfen
16474                                                                                                                     fipronil, (s)-methoprene
16475                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16476                                                                                                                                dexamethasone
16477                                                                                                                  lufenuron, milbemycin oxime
16478                                                                                                                     fipronil, (s)-methoprene
16479                                                                                                                     fipronil, (s)-methoprene
16480                                                                                                                 ivermectin, pyrantel pamoate
16481                                                                                                               milbemycin oxime, praziquantel
16482                                                                                                                   milbemycin oxime, spinosad
16483                                                                                                                                   fluralaner
16484                                                                                                                             milbemycin oxime
16485                                                                                                                     fipronil, (s)-methoprene
16486                                                                                                                                    carprofen
16487                                                                                                                                   afoxolaner
16488                                                                                                                                    carprofen
16489                                                                                                                                    mupirocin
16490                                                                                                                                  fluconazole
16491                                                                                                                                  fluconazole
16492                                                                                                           amoxicillin, clavulanate potassium
16493                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16494                                                                                                                                     tramadol
16495                                                                                                                                    trazodone
16496                                                                                                               milbemycin oxime, praziquantel
16497                                                                                                                     fipronil, (s)-methoprene
16498                                                                                                                             milbemycin oxime
16499                                                                                                                     fipronil, (s)-methoprene
16500                                                                                                                                    carprofen
16501                                                                                                                                   gabapentin
16502                                                                                                                                   ivermectin
16503                                                                                                                  lufenuron, milbemycin oxime
16504                                                                                                                                   fluralaner
16505                                                                                                                                metronidazole
16506                                                                                                                             sulfadimethoxine
16507                                                                                                                             sulfadimethoxine
16508                                                                                                                                     tramadol
16509                                                                                                           amoxicillin, clavulanate potassium
16510                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16511                                                                                                                  sulfadimidine, trimethoprim
16512                                                                                                                                     morphine
16513                                                                                                                                    cefazolin
16514                                                                                                                                    cefazolin
16515                                                                                                                                 enrofloxacin
16516                                                                                                                                 enrofloxacin
16517                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16518                                                                                                                                 enrofloxacin
16519                                                                                                                                 enrofloxacin
16520                                                                                                           amoxicillin, clavulanate potassium
16521                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16522                                                                                                                 ivermectin, pyrantel pamoate
16523                                                                                                                                   ivermectin
16524                                                                                                                       cyphenothrin, fipronil
16525                                                                                                                             milbemycin oxime
16526                                                                                                        dinotefuran, permethrin, pyriproxyfen
16527                                                                                                           amoxicillin, clavulanate potassium
16528                                                                                                                                metronidazole
16529                                                                                                                                metronidazole
16530                                                                                                                                   cephalexin
16531                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
16532                                                                                                                             tylosin tartrate
16533                                                                                                                                    firocoxib
16534                                                                                                                                 enrofloxacin
16535                                                                                                                                    cefazolin
16536                                                                                                                                     morphine
16537                                                                                                                                    probiotic
16538                                                                                                                             milbemycin oxime
16539                                                                                                                                 enrofloxacin
16540                                                                                                                     urinary tract supplement
16541                                                                                                           amoxicillin, clavulanate potassium
16542                                                                                                           amoxicillin, clavulanate potassium
16543                                                                                                                       cyphenothrin, fipronil
16544                                                                                                                       cyphenothrin, fipronil
16545                                                                                                           amoxicillin, clavulanate potassium
16546                                                                                                               milbemycin oxime, praziquantel
16547                                                                                                                                metronidazole
16548                                                                                                                     urinary tract supplement
16549                                                                                                                                 enrofloxacin
16550                                                                                                           amoxicillin, clavulanate potassium
16551                                                                                                                       cyphenothrin, fipronil
16552                                                                                                           amoxicillin, clavulanate potassium
16553                                                                                                               milbemycin oxime, praziquantel
16554                                                                                                                       cyphenothrin, fipronil
16555                                                                                                           amoxicillin, clavulanate potassium
16556                                                                                                                                 enrofloxacin
16557                                                                                                                                metronidazole
16558                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16559                                                                                                                     urinary tract supplement
16560                                                                                                                     urinary tract supplement
16561                                                                                                                                    firocoxib
16562                                                                                                                                 enrofloxacin
16563                                                                                                                                metronidazole
16564                                                                                                                     urinary tract supplement
16565                                                                                                                                     tramadol
16566                                                                                                                           maropitant citrate
16567                                                                                                                                    carprofen
16568                                                                                                           amoxicillin, clavulanate potassium
16569                                                                                                                     urinary tract supplement
16570                                                                                                                                     tramadol
16571                                                                                                                                    cefazolin
16572                                                                                                                                     morphine
16573                                                                                                         hydroxyethyl starch, sodium chloride
16574                                                                                                                           maropitant citrate
16575                                                                                                                                    meloxicam
16576                                                                                                                                     tramadol
16577                                                                                                                                    meloxicam
16578                                                                                                     febantel, praziquantel, pyrantel pamoate
16579                                                                                                                 ivermectin, pyrantel pamoate
16580                                                                                                                      ketoconazole, tris-edta
16581                                                                                                                           maropitant citrate
16582                                                                                                                                   famotidine
16583                                                                                                                                 acepromazine
16584                                                                                                                                hydromorphone
16585                                                                                                                                     ketamine
16586                                                                                                                                    midazolam
16587                                                                                                                                 penicillin g
16588                                                                                                                                     morphine
16589                                                                                                                                    carprofen
16590                                                                                                                                     tramadol
16591                                                                                                                               metoclopramide
16592                                                                                                                                metronidazole
16593                                                                                                                                   gabapentin
16594                                                                                                                                   famotidine
16595                                                                                                                                   ivermectin
16596                                                                                                                 ivermectin, pyrantel pamoate
16597                                                                                                                                   ivermectin
16598                                                                                                           fipronil, permethrin, pyriproxyfen
16599                                                                                                                                   ivermectin
16600                                                                                                               praziquantel, pyrantel pamoate
16601                                                                                                                     fipronil, (s)-methoprene
16602                                                                                                                                levothyroxine
16603                                                                                                                         cefpodoxime proxetil
16604                                                                                                                                levothyroxine
16605                                                                                                     febantel, praziquantel, pyrantel pamoate
16606                                                                                                                             milbemycin oxime
16607                                                                                                                                levothyroxine
16608                                                                                                                             milbemycin oxime
16609                                                                                                                                levothyroxine
16610                                                                                                                                levothyroxine
16611                                                                                                                                metronidazole
16612                                                                                                                             liver supplement
16613                                                                                                                 ivermectin, pyrantel pamoate
16614                                                                                                                       cyphenothrin, fipronil
16615                                                                                                                 ivermectin, pyrantel pamoate
16616                                                                                                                                   omeprazole
16617                                                                                                                                   sucralfate
16618                                                                                                                           maropitant citrate
16619                                                                                                                                 enrofloxacin
16620                                                                                                                                metronidazole
16621                                                                                                                                   sucralfate
16622                                                                                                                                    probiotic
16623                                                                                                                   milbemycin oxime, spinosad
16624                                                                                                                   milbemycin oxime, spinosad
16625                                                                                                                                    probiotic
16626                                                                                                                                metronidazole
16627                                                                                                                   milbemycin oxime, spinosad
16628                                                                                                                                    sarolaner
16629                                                                                                                                    carprofen
16630                                                                                                                             milbemycin oxime
16631                                                                                                                                    lotilaner
16632                                                                                                                                  clindamycin
16633                                                                                                                                    meloxicam
16634                                                                                                                                metronidazole
16635                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
16636                                                                                                                 ivermectin, pyrantel pamoate
16637                                                                                                                     fipronil, (s)-methoprene
16638                                                                                                                 ivermectin, pyrantel pamoate
16639                                                                                                               milbemycin oxime, praziquantel
16640                                                                                                                                   afoxolaner
16641                                                                                                                             milbemycin oxime
16642                                                                                                                                   afoxolaner
16643                                                                                                                                   cephalexin
16644                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16645                                                                                                                      triamcinolone acetonide
16646                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16647                                                                                               dexamethasone, neomycin sulfate, thiabendazole
16648                                                                                                                 ivermectin, pyrantel pamoate
16649                                                                                                                 ivermectin, pyrantel pamoate
16650                                                                                                                                   afoxolaner
16651                                                                                                                                  oclacitinib
16652                                                                                                                         cefpodoxime proxetil
16653                                                                                               mometasone furoate, orbifloxacin, posaconazole
16654                                                                                                                                  oclacitinib
16655                                                                                                                         cefpodoxime proxetil
16656                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16657                                                                                               mometasone furoate, orbifloxacin, posaconazole
16658                                                                                                                                    meloxicam
16659                                                                                                                                     tramadol
16660                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16661                                                                                                                   milbemycin oxime, spinosad
16662                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16663                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16664                                                                                                                                  hydroxyzine
16665                                                                                                                                metronidazole
16666                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16667                                                                                                                                 acepromazine
16668                                                                                                                                     spinosad
16669                                                                                                                                   ivermectin
16670                                                                                                                             milbemycin oxime
16671                                                                                                                                    probiotic
16672                                                                                                                                 imidacloprid
16673                                                                                                     febantel, praziquantel, pyrantel pamoate
16674                                                                                                                                  hydroxyzine
16675                                                                                                                                   famotidine
16676                                                                                                                           maropitant citrate
16677                                                                                                                                  hydroxyzine
16678                                                                                                                   milbemycin oxime, spinosad
16679                                                                                                                                    meloxicam
16680                                                                                                                                  hydroxyzine
16681                                                                                                                                 acepromazine
16682                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
16683                                                                                                                                metronidazole
16684                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16685                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16686                                                                                                                                  hydroxyzine
16687                                                                                                                 ivermectin, pyrantel pamoate
16688                                                                                                                                   afoxolaner
16689                                                                                                                                    meloxicam
16690                                                                                                                                     tramadol
16691                                                                                                                         cefpodoxime proxetil
16692                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
16693                                                                                                                                metronidazole
16694                                                                                                                 ivermectin, pyrantel pamoate
16695                                                                                                                                   afoxolaner
16696                                                                                                     febantel, praziquantel, pyrantel pamoate
16697                                                                                                                             sulfadimethoxine
16698                                                                                                                                    meloxicam
16699                                                                                         dimethyl sulfoxide, flunixin, fluocinolone acetonide
16700                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16701                                                                                                              ear cleaner (epi-otic advanced)
16702                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16703                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16704                                                                                                                 ivermectin, pyrantel pamoate
16705                                                                                                                                   afoxolaner
16706                                                                                                                                   omeprazole
16707                                                                                                                                   sucralfate
16708                                                                                                                                metronidazole
16709                                                                                                                           maropitant citrate
16710                                                                                                                           maropitant citrate
16711                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16712                                                                                           acetic acid, chlorhexidine gluconate, ketoconazole
16713                                                                                                                                  oclacitinib
16714                                                                                                                                    mupirocin
16715                                                                                                                                    meloxicam
16716                                                                                                                                    cefovecin
16717                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16718                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16719                                                                                                                                   stem cells
16720                                                                                                                                   afoxolaner
16721                                                                                                                 ivermectin, pyrantel pamoate
16722                                                                                                                                    meloxicam
16723                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16724                                                                                        chlorhexidine gluconate, climbazole, phytosphingosine
16725                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16726                                                                                                            betamethasone, gentamicin sulfate
16727                                                                                                                                metronidazole
16728                                                                                                                           maropitant citrate
16729                                                                                                                                   lokivetmab
16730                                                                                                                                    meloxicam
16731                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
16732                                                                                                          ear cleaner (zymox), hydrocortisone
16733                                                                                                                 ivermectin, pyrantel pamoate
16734                                                                                                                 ivermectin, pyrantel pamoate
16735                                                                                                                 ivermectin, pyrantel pamoate
16736                                                                                                                                metronidazole
16737                                                                                                                                   lokivetmab
16738                                                                                                                                   lokivetmab
16739                                                                                                                                    carprofen
16740                                                                                                                                 enrofloxacin
16741                                                                                                                                  bedinvetmab
16742                                                                                                                 ivermectin, pyrantel pamoate
16743                                                                                                                     imidacloprid, permethrin
16744                                                                                                                  lufenuron, milbemycin oxime
16745                                                                                                                  lufenuron, milbemycin oxime
16746                                                                                                                                   fluralaner
16747                                                                                                                  lufenuron, milbemycin oxime
16748                                                                                                                                   fluralaner
16749                                                                                                                  lufenuron, milbemycin oxime
16750                                                                                                                                   fluralaner
16751                                                                                                                  lufenuron, milbemycin oxime
16752                                                                                                                                   fluralaner
16753                                                                                                                  lufenuron, milbemycin oxime
16754                                                                                                                                   fluralaner
16755                                                                                                                                    ponazuril
16756                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16757                                                                                                                                   alprazolam
16758                                                                                        acetic acid, boric acid, hydrocortisone, ketoconazole
16759                                                                                                                                    trazodone
16760                                                                                                                                  doxycycline
16761                                                                                                                                  amoxicillin
16762                                                                                                                                 capromorelin
16763                                                                                                                                    vitamin b
16764                                                                                                                                    vitamin b
16765                                                                                                                                   gabapentin
16766                                                                                                                                    enalapril
16767                                                                                                                                  telmisartan
16768                                                                                                                                  doxycycline
16769                                                                                                                                    enalapril
16770                                                                                                                                  telmisartan
16771                                                                                                                                 capromorelin
16772                                                                                                                                   gabapentin
16773                                                                                                                                    vitamin b
16774                                                                                                                                    vitamin b
16775                                                                                                                 ivermectin, pyrantel pamoate
16776                                                                                                                     fipronil, (s)-methoprene
16777                                                                                                                 ivermectin, pyrantel pamoate
16778                                                                                                                       cyphenothrin, fipronil
16779                                                                                                                                   cetirizine
16780                                                                                                                 ivermectin, pyrantel pamoate
16781                                                                                                                                     fipronil
16782                                                                                                                      ketoconazole, tris-edta
16783                                                                                                                                   cetirizine
16784                                                                                                                         digestive supplement
16785                                                                                                                      ketoconazole, tris-edta
16786                                                                                                                                   moxidectin
16787                                                                                                                                   moxidectin
16788                                                                                                                                   selamectin
16789                                                                                                                                   moxidectin
16790                                                                                                                                   moxidectin
16791                                                                                                        dinotefuran, permethrin, pyriproxyfen
16792                                                                                                                                   moxidectin
16793                                                                                                                                   afoxolaner
16794                                                                                                                         cefpodoxime proxetil
16795                                                                                                                                  doxycycline
16796                                                                                                                                 enrofloxacin
16797                                                                                                                                    carprofen
16798                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
16799                                                                                                                                    carprofen
16800                                                                                                                                    carprofen
16801                                                                                                                                   cephalexin
16802                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16803                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16804                                                                                                                                    carprofen
16805                                                                                                                 ivermectin, pyrantel pamoate
16806                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16807                                                                                                                     imidacloprid, permethrin
16808                                                                                                                 ivermectin, pyrantel pamoate
16809                                                                                                                   imidacloprid, pyriproxyfen
16810                                                                                                                 ivermectin, pyrantel pamoate
16811                                                                                                                     flumethrin, imidacloprid
16812                                                                                                                             milbemycin oxime
16813                                                                                                                                levothyroxine
16814                                                                                                                            vision supplement
16815                                                                                                                                  ashwagandha
16816                                                                                                                     betamethasone, ofloxacin
16817                                                                                                                                metronidazole
16818                                                                                                                  lufenuron, milbemycin oxime
16819                                                                                                                                 imidacloprid
16820                                                                                                                                levothyroxine
16821                                                                                                                            vision supplement
16822                                                                                                                                    carprofen
16823                                                                                                                     betamethasone, ofloxacin
16824                                                                                                                         cefpodoxime proxetil
16825                                                                                                                             milbemycin oxime
16826                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
16827                                                                                                                                levothyroxine
16828                                                                                                                                    carprofen
16829                                                                                                                                    enalapril
16830                                                                                                                                levothyroxine
16831                                                                                                                                    carprofen
16832                                                                                                                                    enalapril
16833                                                                                                                                levothyroxine
16834                                                                                                                     fipronil, (s)-methoprene
16835                                                                                                                                    enalapril
16836                                                                                                                                levothyroxine
16837                                                                                                               polysulfated glycosaminoglycan
16838                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16839                                                                                                                                    carprofen
16840                                                                                                                     fipronil, (s)-methoprene
16841                                                                                                                                  bedinvetmab
16842                                                                                                               polysulfated glycosaminoglycan
16843                                                                                                                                    enalapril
16844                                                                                                                                levothyroxine
16845                                                                                                                                      omega 3
16846                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
16847                                                                                                                     urinary tract supplement
16848                                                                                                                                    carprofen
16849                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
16850                                                                                               mometasone furoate, orbifloxacin, posaconazole
16851                                                                                                                 ivermectin, pyrantel pamoate
16852                                                                                                                                   afoxolaner
16853                                                                                                                                metronidazole
16854                                                                                                                 ivermectin, pyrantel pamoate
16855                                                                                                                                   afoxolaner
16856                                                                                                                 ivermectin, pyrantel pamoate
16857                                                                                                           amoxicillin, clavulanate potassium
16858                                                                                                                                      sotalol
16859                                                                                                                 ivermectin, pyrantel pamoate
16860                                                                                                                                      sotalol
16861                                                                                                   ivermectin, praziquantel, pyrantel pamoate
16862                                                                                                                       unspecified medication
16863                                                                                                                             milbemycin oxime
16864                                                                                                                             milbemycin oxime
16865                                                                                                           amoxicillin, clavulanate potassium
16866                                                                                                                             milbemycin oxime
16867                                                                                                                                metronidazole
16868                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16869                                                                                                                             milbemycin oxime
16870                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
16871                                                                                                                     fipronil, (s)-methoprene
16872                                                                                                                     flumethrin, imidacloprid
16873                                                                                                                                metronidazole
16874                                                                                                                                   famotidine
16875                                                                                                 florfenicol, mometasone furoate, terbinafine
16876                                                                                                                             milbemycin oxime
16877                                                                                                                   milbemycin oxime, spinosad
16878                                                                                                                  lufenuron, milbemycin oxime
16879                                                                                                                     flumethrin, imidacloprid
16880                                                                                                                  lufenuron, milbemycin oxime
16881                                                                                                                  lufenuron, milbemycin oxime
16882                                                                                                                     flumethrin, imidacloprid
16883                                                                                                                         prebiotic, probiotic
16884                                                                                                                                  coconut oil
16885                                                                                                       joint supplement (glucosamine hcl/msm)
16886                                                                                                                   milbemycin oxime, spinosad
16887                                                                                                                                     spinosad
16888                                                                                                                                   moxidectin
16889                                                                                                                                   moxidectin
16890                                                                                                                                   moxidectin
16891                                                                                                                                    sarolaner
16892                                                                                                                                   moxidectin
16893                                                                                                                                   cephalexin
16894                                                                                                            betamethasone, gentamicin sulfate
16895                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16896                                                                                                                                dexamethasone
16897                                                                                                                      triamcinolone acetonide
16898                                                                                                                                   cephalexin
16899                                                                                                                                   gabapentin
16900                                                                                                                                    meloxicam
16901                                                                                                                                   grapiprant
16902                                                                                                                 ivermectin, pyrantel pamoate
16903                                                                                                                 ivermectin, pyrantel pamoate
16904                                                                                                                                   afoxolaner
16905                                                                                                                 ivermectin, pyrantel pamoate
16906                                                                                                                 ivermectin, pyrantel pamoate
16907                                                                                                                 ivermectin, pyrantel pamoate
16908                                                                                                                                   afoxolaner
16909                                                                                                                 ivermectin, pyrantel pamoate
16910                                                                                                                                   afoxolaner
16911                                                                                                                                   cephalexin
16912                                                                                                                                    carprofen
16913                                                                                                                                    meloxicam
16914                                                                                                                                   ivermectin
16915                                                                                                                                  doxycycline
16916                                                                                                                             sulfadimethoxine
16917                                                                                                                                metronidazole
16918                                                                                                                                      omega 3
16919                                                                                                                             milbemycin oxime
16920                                                                                                                                    sarolaner
16921                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
16922                                                                                                                                   cephalexin
16923                                                                                                                                  oclacitinib
16924                                                                                                                                  amoxicillin
16925                                                                                                                             milbemycin oxime
16926                                                                                                                                metronidazole
16927                                                                                                                   milbemycin oxime, spinosad
16928                                                                                                                             tylosin tartrate
16929                                                                                                                   milbemycin oxime, spinosad
16930                                                                                                                                   cephalexin
16931                                                                                                                   milbemycin oxime, spinosad
16932                                                                                                                           miconazole nitrate
16933                                                                                                                   milbemycin oxime, spinosad
16934                                                                                                                   milbemycin oxime, spinosad
16935                                                                                                                   milbemycin oxime, spinosad
16936                                                                                                                 ivermectin, pyrantel pamoate
16937                                                                                                                     fipronil, (s)-methoprene
16938                                                                                                                  lufenuron, milbemycin oxime
16939                                                                                                                          ear cleaner (zymox)
16940                                                                                                                                ciprofloxacin
16941                                                                                                                                    deracoxib
16942                                                                                                                                   cephalexin
16943                                                                                                           amoxicillin, clavulanate potassium
16944                                                                                                                                metronidazole
16945                                                                                                                  lufenuron, milbemycin oxime
16946                                                                                                                                   afoxolaner
16947                                                                                                                  lufenuron, milbemycin oxime
16948                                                                                                                                   afoxolaner
16949                                                                                                                                metronidazole
16950                                                                                                                                   cephalexin
16951                                                                                                                                   clonazepam
16952                                                                                                                  lufenuron, milbemycin oxime
16953                                                                                                                                   afoxolaner
16954                                                                                                                                   afoxolaner
16955                                                                                                                  lufenuron, milbemycin oxime
16956                                                                                                                                    firocoxib
16957                                                                                                                                    firocoxib
16958                                                                                                                  lufenuron, milbemycin oxime
16959                                                                                                                                   fluralaner
16960                                                                                                                  lufenuron, milbemycin oxime
16961                                                                                                                                   tobramycin
16962                                                                                                                                    meloxicam
16963                                                                                                                                metronidazole
16964                                                                                                           amoxicillin, clavulanate potassium
16965                                                                                                                                    trazodone
16966                                                                                                                                   gabapentin
16967                                                                                                                                    firocoxib
16968                                                                                                                                   grapiprant
16969                                                                                                                                   prednisone
16970                                                                                                                                   ivermectin
16971                                                                                               mometasone furoate, orbifloxacin, posaconazole
16972                                                                                                                 ivermectin, pyrantel pamoate
16973                                                                                                                                   afoxolaner
16974                                                                                                                                    carprofen
16975                                                                                                                                ciprofloxacin
16976                                                                                                                                     tramadol
16977                                                                                                                                    carprofen
16978                                                                                                                                 enrofloxacin
16979                                                                                                                                   cephalexin
16980                                                                                                                                   afoxolaner
16981                                                                                                                 ivermectin, pyrantel pamoate
16982                                                                                                                 ivermectin, pyrantel pamoate
16983                                                                                                                 ivermectin, pyrantel pamoate
16984                                                                                                                                   ivermectin
16985                                                                                                                             pyrantel pamoate
16986                                                                                                                 ivermectin, pyrantel pamoate
16987                                                                                                                                   ivermectin
16988                                                                                                                             milbemycin oxime
16989                                                                                                                                   moxidectin
16990                                                                                                                 ivermectin, pyrantel pamoate
16991                                                                                                                                metronidazole
16992                                                                                                                                metronidazole
16993                                                                                                                      ketoconazole, tris-edta
16994                                                                                              betamethasone, clotrimazole, gentamicin sulfate
16995                                                                                                                                    carprofen
16996                                                                                                                                    carprofen
16997                                                                                                                                   ivermectin
16998                                                                                                        dinotefuran, permethrin, pyriproxyfen
16999                                                                                                                 ivermectin, pyrantel pamoate
17000                                                                                                        dinotefuran, permethrin, pyriproxyfen
17001                                                                                                                                   cephalexin
17002                                                                                                                        anal gland supplement
17003                                                                                                                                    meloxicam
17004                                                                                                                                    carprofen
17005                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17006                                                                                                                         prednisolone acetate
17007                                                                                                                                    carprofen
17008                                                                                                                                ciprofloxacin
17009                                                                                                                                   cephalexin
17010                                                                                                                 ivermectin, pyrantel pamoate
17011                                                                                                                         cefpodoxime proxetil
17012                                                                                                                               (s)-methoprene
17013                                                                                                                 ivermectin, pyrantel pamoate
17014                                                                                                                 ivermectin, pyrantel pamoate
17015                                                                                                           amoxicillin, clavulanate potassium
17016                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17017                                                                                                                                metronidazole
17018                                                                          chop protocol (cyclophosphamide/doxorubicin/prednisone/vincristine)
17019                                                                                                                 ivermectin, pyrantel pamoate
17020                                                                                                                                   fluralaner
17021                                                                                                                                   cephalexin
17022                                                                                               dexamethasone, neomycin sulfate, thiabendazole
17023                                                                                                                                     prazosin
17024                                                                                                                                     prazosin
17025                                                                                                                                ciprofloxacin
17026                                                                                                                                      sotalol
17027                                                                                                                           maropitant citrate
17028                                                                                                                                    piroxicam
17029                                                                                                                                yunnan baiyao
17030                                                                                                                                   furosemide
17031                                                                                                                                   pimobendan
17032                                                                                                                                   ivermectin
17033                                                                                                                                   ivermectin
17034                                                                                                                 ivermectin, pyrantel pamoate
17035                                                                                                                 ivermectin, pyrantel pamoate
17036                                                                                                                                   afoxolaner
17037                                                                                                                 ivermectin, pyrantel pamoate
17038                                                                                                                                   ivermectin
17039                                                                                                                                   afoxolaner
17040                                                                                                                                  oclacitinib
17041                                                                                                                             milbemycin oxime
17042                                                                                                                                    lotilaner
17043                                                                                                                                  oclacitinib
17044                                                                                                                                   zonisamide
17045                                                                                                                                levetiracetam
17046                                                                                                                                     imatinib
17047                                                                                                                                  hydroxyzine
17048                                                                                                                                   prednisone
17049                                                                                                                 ivermectin, pyrantel pamoate
17050                                                                                                                                   cephalexin
17051                                                                                                                                   cephalexin
17052                                                                                                                 ivermectin, pyrantel pamoate
17053                                                                                                                 ivermectin, pyrantel pamoate
17054                                                                                                           amoxicillin, clavulanate potassium
17055                                                                                                                                   moxidectin
17056                                                                                                                                levothyroxine
17057                                                                                                                                   afoxolaner
17058                                                                                               mometasone furoate, orbifloxacin, posaconazole
17059                                                                                                                 ivermectin, pyrantel pamoate
17060                                                                                                                 ivermectin, pyrantel pamoate
17061                                                                                                                                   alprazolam
17062                                                                                               dexamethasone, neomycin sulfate, thiabendazole
17063                                                                                                                         dorzolamide, timolol
17064                                                                                                                                   alprazolam
17065                                                                                                                         prednisolone acetate
17066                                                                                                           amoxicillin, clavulanate potassium
17067                                                                                                                                 enrofloxacin
17068                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
17069                                                                                                                           maropitant citrate
17070                                                                                                                         dorzolamide, timolol
17071                                                                                                                                    carprofen
17072                                                                                                                         prednisolone acetate
17073                                                                                                                         prednisolone acetate
17074                                                                                                                 ivermectin, pyrantel pamoate
17075                                                                                                                                   afoxolaner
17076                                                                                                                           maropitant citrate
17077                                                                                                                                   ivermectin
17078                                                                                                                             pyrantel pamoate
17079                                                                                                           amoxicillin, clavulanate potassium
17080                                                                                                                 ivermectin, pyrantel pamoate
17081                                                                                                                                     spinosad
17082                                                                                                                     skin and coat supplement
17083                                                                                                                                 fenbendazole
17084                                                                                                                                metronidazole
17085                                                                                                                             sulfadimethoxine
17086                                                                                                                 ivermectin, pyrantel pamoate
17087                                                                                                                                   afoxolaner
17088                                                                                                                 ivermectin, pyrantel pamoate
17089                                                                                                                                   afoxolaner
17090                                                                                                                 ivermectin, pyrantel pamoate
17091                                                                                                                                   afoxolaner
17092                                                                                                                                 cyclosporine
17093                                                                                                                                   diclofenac
17094                                                                                                                 ivermectin, pyrantel pamoate
17095                                                                                                                                   afoxolaner
17096                                                                                                                 ivermectin, pyrantel pamoate
17097                                                                                                                                   afoxolaner
17098                                                                                                                 ivermectin, pyrantel pamoate
17099                                                                                                                                   afoxolaner
17100                                                                                                           amoxicillin, clavulanate potassium
17101                                                                                                                                   cephalexin
17102                                                                                                                                   prednisone
17103                                                                                                           amoxicillin, clavulanate potassium
17104                                                                                                                                    carprofen
17105                                                                                                                                metronidazole
17106                                                                                                                                 fenbendazole
17107                                                                                                                             pyrantel pamoate
17108                                                                                                                             pyrantel pamoate
17109                                                                                                                             pyrantel pamoate
17110                                                                                                                             pyrantel pamoate
17111                                                                                                           amoxicillin, clavulanate potassium
17112                                                                                                                                    carprofen
17113                                                                                                           amoxicillin, clavulanate potassium
17114                                                                                                              ear cleaner (epi-otic advanced)
17115                                                                                               mometasone furoate, orbifloxacin, posaconazole
17116                                                                                                                 ivermectin, pyrantel pamoate
17117                                                                                                                     fipronil, (s)-methoprene
17118                                                                                                                 ivermectin, pyrantel pamoate
17119                                                                                                                     fipronil, (s)-methoprene
17120                                                                                                                                     squalane
17121                                                                                                              ear cleaner (epi-otic advanced)
17122                                                                                                                                   cephalexin
17123                                                                                                                                   selamectin
17124                                                                                                                                   selamectin
17125                                                                                               mometasone furoate, orbifloxacin, posaconazole
17126                                                                                                        chlorhexidine gluconate, ketoconazole
17127                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17128                                                                                               mometasone furoate, orbifloxacin, posaconazole
17129                                                                                        acetic acid, boric acid, hydrocortisone, ketoconazole
17130                                                                                                                                   selamectin
17131                                                                                               mometasone furoate, orbifloxacin, posaconazole
17132                                                                                                                             pyrantel pamoate
17133                                                                                                                                    carprofen
17134                                                                                                                                    carprofen
17135                                                                                                                           miconazole nitrate
17136                                                                                                                                      omega 3
17137                                                                                                                                   ivermectin
17138                                                                                                                 ivermectin, pyrantel pamoate
17139                                                                                                                                    lactulose
17140                                                                                                                                   sucralfate
17141                                                                                                                                   famotidine
17142                                                                                                                              dexmedetomidine
17143                                                                                                                 ivermectin, pyrantel pamoate
17144                                                                                                                                   cephalexin
17145                                                                                                                                  oclacitinib
17146                                                                                                                                 enrofloxacin
17147                                                                                                                                  doxycycline
17148                                                                                                                                  oclacitinib
17149                                                                                                            trimeprazine tartrate, prednisone
17150                                                                                                                              diphenhydramine
17151                                                                                                                   milbemycin oxime, spinosad
17152                                                                                                                                   afoxolaner
17153                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17154                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17155                                                                                                                                     spinosad
17156                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17157                                                                                                                                   afoxolaner
17158                                                                                                                                   selamectin
17159                                                                                                                                   selamectin
17160                                                                                                                             milbemycin oxime
17161                                                                                                                                    sarolaner
17162                                                                                                                                    probiotic
17163                                                                                                                                 fenbendazole
17164                                                                                                                                metronidazole
17165                                                                                                                                    carprofen
17166                                                                                                                           maropitant citrate
17167                                                                                                                                    vitamin b
17168                                                                                                                                   selamectin
17169                                                                                                                             milbemycin oxime
17170                                                                                                                                    trazodone
17171                                                                                                                                    carprofen
17172                                                                                                                                    trazodone
17173                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
17174                                                                                                                                metronidazole
17175                                                                                                                           maropitant citrate
17176                                                                                                                                    trazodone
17177                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17178                                                                                                                           maropitant citrate
17179                                                                                                                                   famotidine
17180                                                                                                                                    probiotic
17181                                                                                                                                    carprofen
17182                                                                                                               polysulfated glycosaminoglycan
17183                                                                                                                                   gabapentin
17184                                                                                                                                    trazodone
17185                                                                                                                                    carprofen
17186                                                                                                                                   grapiprant
17187                                                                                                                                  clindamycin
17188                                                                                                                                    trazodone
17189                                                                                                                                   gabapentin
17190                                                                                                               polysulfated glycosaminoglycan
17191                                                                                                                                   grapiprant
17192                                                                                                                                   prednisone
17193                                                                                                                           maropitant citrate
17194                                                                                                                                    deracoxib
17195                                                                                                                 ivermectin, pyrantel pamoate
17196                                                                                                                             milbemycin oxime
17197                                                                                                                  lufenuron, milbemycin oxime
17198                                                                                                                             sulfadimethoxine
17199                                                                                                                                 fenbendazole
17200                                                                                                                                   nitenpyram
17201                                                                                                                      triamcinolone acetonide
17202                                                                                                           fipronil, permethrin, pyriproxyfen
17203                                                                                                                         cefpodoxime proxetil
17204                                                                                                                   milbemycin oxime, spinosad
17205                                                                                                           fipronil, permethrin, pyriproxyfen
17206                                                                                                                         prednisolone acetate
17207                                                                                                                     fipronil, (s)-methoprene
17208                                                                                                                 ivermectin, pyrantel pamoate
17209                                                                                                                 ivermectin, pyrantel pamoate
17210                                                                                                                 ivermectin, pyrantel pamoate
17211                                                                                                                                    carprofen
17212                                                                                                                 ivermectin, pyrantel pamoate
17213                                                                                                                                   afoxolaner
17214                                                                                                                                   gabapentin
17215                                                                                                                                    carprofen
17216                                                                                                                                   gabapentin
17217                                                                                                                                dexamethasone
17218                                                                                                        dinotefuran, permethrin, pyriproxyfen
17219                                                                                                                                   ivermectin
17220                                                                                                                                   ivermectin
17221                                                                                                                                   afoxolaner
17222                                                                                                                 ivermectin, pyrantel pamoate
17223                                                                                                                                   afoxolaner
17224                                                                                                                 ivermectin, pyrantel pamoate
17225                                                                                                                 ivermectin, pyrantel pamoate
17226                                                                                                                                   afoxolaner
17227                                                                                                                 ivermectin, pyrantel pamoate
17228                                                                                                                                   afoxolaner
17229                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17230                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17231                                                                                                                                 imidacloprid
17232                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17233                                                                                                                   imidacloprid, pyriproxyfen
17234                                                                                                                             milbemycin oxime
17235                                                                                                                                   cephalexin
17236                                                                                                                   imidacloprid, pyriproxyfen
17237                                                                                                                             milbemycin oxime
17238                                                                                                                   imidacloprid, pyriproxyfen
17239                                                                                                                             milbemycin oxime
17240                                                                                                                 ivermectin, pyrantel pamoate
17241                                                                                                                                   afoxolaner
17242                                                                                                                                   lokivetmab
17243                                                                                                                                   lokivetmab
17244                                                                                                                                ciprofloxacin
17245                                                                                                                                   ivermectin
17246                                                                                                                             pyrantel pamoate
17247                                                                                                                 ivermectin, pyrantel pamoate
17248                                                                                                                 ivermectin, pyrantel pamoate
17249                                                                                                                                    carprofen
17250                                                                                                                                   cephalexin
17251                                                                                                                 ivermectin, pyrantel pamoate
17252                                                                                                                     fipronil, (s)-methoprene
17253                                                                                                                                   grapiprant
17254                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17255                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17256                                                                                                                                 cyclosporine
17257                                                                                                                                   diclofenac
17258                                                                                                                             liver supplement
17259                                                                                                                                 cyclosporine
17260                                                                                                                                   diclofenac
17261                                                                                                                              diphenhydramine
17262                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17263                                                                                                                   milbemycin oxime, spinosad
17264                                                                                                                   milbemycin oxime, spinosad
17265                                                                                                                   milbemycin oxime, spinosad
17266                                                                                                                   milbemycin oxime, spinosad
17267                                                                                                                                metronidazole
17268                                                                                                                                   ivermectin
17269                                                                                                                                     tramadol
17270                                                                                                                                metronidazole
17271                                                                                                                 ivermectin, pyrantel pamoate
17272                                                                                                                                   afoxolaner
17273                                                                                                                                    deracoxib
17274                                                                                                                                   afoxolaner
17275                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17276                                                                                                                                    carprofen
17277                                                                                                                                   gabapentin
17278                                                                                                                             milbemycin oxime
17279                                                                                                                                   afoxolaner
17280                                                                                                                                levothyroxine
17281                                                                                                                                levothyroxine
17282                                                                                                                                   afoxolaner
17283                                                                                                                 ivermectin, pyrantel pamoate
17284                                                                                                                                metronidazole
17285                                                                                                                 ivermectin, pyrantel pamoate
17286                                                                                                                                   afoxolaner
17287                                                                                                                                levothyroxine
17288                                                                                                                                   diclofenac
17289                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17290                                                                                                                                levothyroxine
17291                                                                                                                                levothyroxine
17292                                                                                                                                    carprofen
17293                                                                                                                                levothyroxine
17294                                                                                                                                   ivermectin
17295                                                                                                           fipronil, permethrin, pyriproxyfen
17296                                                                                                                                   omeprazole
17297                                                                                                               sulfamethoxazole, trimethoprim
17298                                                                                                                 ivermectin, pyrantel pamoate
17299                                                                                                                                   famotidine
17300                                                                                                                                   ivermectin
17301                                                                                                                                    cefovecin
17302                                                                                                                                dexamethasone
17303                                                                                                                                   prednisone
17304                                                                                                                                   prednisone
17305                                                                                                                                methocarbamol
17306                                                                                                                                    cefovecin
17307                                                                                                            trimeprazine tartrate, prednisone
17308                                                                                                            trimeprazine tartrate, prednisone
17309                                                                                                            trimeprazine tartrate, prednisone
17310                                                                                                            trimeprazine tartrate, prednisone
17311                                                                                                                                   ivermectin
17312                                                                                                        dinotefuran, permethrin, pyriproxyfen
17313                                                                                                                 ivermectin, pyrantel pamoate
17314                                                                                                        dinotefuran, permethrin, pyriproxyfen
17315                                                                                                                                metronidazole
17316                                                                                                                                   ivermectin
17317                                                                                                        dinotefuran, permethrin, pyriproxyfen
17318                                                                                                                                  doxycycline
17319                                                                                                                 ivermectin, pyrantel pamoate
17320                                                                                                                                    cefovecin
17321                                                                                                                                    carprofen
17322                                                                                                                                   gabapentin
17323                                                                                                                                    trazodone
17324                                                                                                                           maropitant citrate
17325                                                                                                                                buprenorphine
17326                                                                                                                                   alfaxalone
17327                                                                                                                 oxytetracycline, polymyxin b
17328                                                                                                                              sodium chloride
17329                                                                                                                               corneal repair
17330                                                                                                                                    ofloxacin
17331                                                                                                                                   gabapentin
17332                                                                                                                              dexmedetomidine
17333                                                                                                                         butorphanol tartrate
17334                                                                                                                              sodium chloride
17335                                                                                                                               corneal repair
17336                                                                                                                 oxytetracycline, polymyxin b
17337                                                                                                                              sodium chloride
17338                                                                                                                               corneal repair
17339                                                                                                                                  doxycycline
17340                                                                                                                                oxymetazoline
17341                                                                                                                                    ofloxacin
17342                                                                                                                                  amoxicillin
17343                                                                                                                              sodium chloride
17344                                                                                                                            ocular repair gel
17345                                                                                                                                    carprofen
17346                                                                                                                                  amoxicillin
17347                                                                                                                                   alprazolam
17348                                                                                                                                   selamectin
17349                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17350                                                                                                                                    sarolaner
17351                                                                                                                         cefpodoxime proxetil
17352                                                                                                            betamethasone, gentamicin sulfate
17353                                                                                                                                   lokivetmab
17354                                                                                                                                    carprofen
17355                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17356                                                                                                                                  amoxicillin
17357                                                                                                                                 capromorelin
17358                                                                                                                           maropitant citrate
17359                                                                                                                                 enrofloxacin
17360                                                                                                                                metronidazole
17361                                                                                                                                   prednisone
17362                                                                                                                                   prednisone
17363                                                                                                                 ivermectin, pyrantel pamoate
17364                                                                                                                     fipronil, (s)-methoprene
17365                                                                                                                                   prednisone
17366                                                                                                                                   cephalexin
17367                                                                                                                  lufenuron, milbemycin oxime
17368                                                                                                                                  hydroxyzine
17369                                                                                                                                   cephalexin
17370                                                                                                                                   afoxolaner
17371                                                                                                                  lufenuron, milbemycin oxime
17372                                                                                                                                   afoxolaner
17373                                                                                                                  lufenuron, milbemycin oxime
17374                                                                                                                                    ponazuril
17375                                                                                                                                  amoxicillin
17376                                                                                                                                metronidazole
17377                                                                                                                                    carprofen
17378                                                                                                                                   famotidine
17379                                                                                                                                   sucralfate
17380                                                                                                                                   cephalexin
17381                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17382                                                                                                                                   ivermectin
17383                                                                                                                             pyrantel pamoate
17384                                                                                                                                   ivermectin
17385                                                                                                                             pyrantel pamoate
17386                                                                                                                 ivermectin, pyrantel pamoate
17387                                                                                                                 ivermectin, pyrantel pamoate
17388                                                                                                                                 fenbendazole
17389                                                                                                                 ivermectin, pyrantel pamoate
17390                                                                                                                 ivermectin, pyrantel pamoate
17391                                                                                                                 ivermectin, pyrantel pamoate
17392                                                                                                                                    carprofen
17393                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17394                                                                                                                                   cephalexin
17395                                                                                                                                     tramadol
17396                                                                                                                                    carprofen
17397                                                                                                                                buprenorphine
17398                                                                                                                  lufenuron, milbemycin oxime
17399                                                                                                                  lufenuron, milbemycin oxime
17400                                                                                                                  lufenuron, milbemycin oxime
17401                                                                                                                  lufenuron, milbemycin oxime
17402                                                                                                                  lufenuron, milbemycin oxime
17403                                                                                                    lufenuron, milbemycin oxime, praziquantel
17404                                                                                                                                   afoxolaner
17405                                                                                                                                  hydroxyzine
17406                                                                                                                  lufenuron, milbemycin oxime
17407                                                                                                            betamethasone, gentamicin sulfate
17408                                                                                                                         cefpodoxime proxetil
17409                                                                                                                                  hydroxyzine
17410                                                                                                                                   lokivetmab
17411                                                                                                                                   lokivetmab
17412                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17413                                                                                                                                   lokivetmab
17414                                                                                                                                   lokivetmab
17415                                                                                                                 ivermectin, pyrantel pamoate
17416                                                                                                                 ivermectin, pyrantel pamoate
17417                                                                                                                     flumethrin, imidacloprid
17418                                                                                                                                      omega 3
17419                                                                                                                                    sarolaner
17420                                                                                                                 ivermectin, pyrantel pamoate
17421                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17422                                                                                                                                    carprofen
17423                                                                                                                         cefpodoxime proxetil
17424                                                                                                                                    mupirocin
17425                                                                                                                                metronidazole
17426                                                                                                                                   gabapentin
17427                                                                                                                       unspecified medication
17428                                                                                                                                metronidazole
17429                                                                                                                              dexmedetomidine
17430                                                                                                                         butorphanol tartrate
17431                                                                                                                                    carprofen
17432                                                                                                                                metronidazole
17433                                                                                                                                   gabapentin
17434                                                                                                                                    carprofen
17435                                                                                                                                metronidazole
17436                                                                                                                                    carprofen
17437                                                                                                                  lufenuron, milbemycin oxime
17438                                                                                                                                   ivermectin
17439                                                                                                                 ivermectin, pyrantel pamoate
17440                                                                                                                                metronidazole
17441                                                                                                                                    probiotic
17442                                                                                                                                sulfasalazine
17443                                                                                                                                metronidazole
17444                                                                                                                 ivermectin, pyrantel pamoate
17445                                                                                                                 ivermectin, pyrantel pamoate
17446                                                                                                      betamethasone, florfenicol, terbinafine
17447                                                                                                                                   fluralaner
17448                                                                                                                 ivermectin, pyrantel pamoate
17449                                                                                                                                   fluralaner
17450                                                                                amikacin sulfate, gentamicin sulfate, triamcinolone acetonide
17451                                                                                                                 ivermectin, pyrantel pamoate
17452                                                                                                                                   fluralaner
17453                                                                                                                                  amoxicillin
17454                                                                                                                                metronidazole
17455                                                                                                                                  mirtazapine
17456                                                                                                                      vitamin-iron supplement
17457                                                                                                                  lufenuron, milbemycin oxime
17458                                                                                                                     urinary tract supplement
17459                                                                                                                       cyphenothrin, fipronil
17460                                                                                                                      ketoconazole, tris-edta
17461                                                                                                                  lufenuron, milbemycin oxime
17462                                                                                                                                   fluralaner
17463                                                                                                                                    probiotic
17464                                                                                                                     urinary tract supplement
17465                                                                                                                                diphenoxylate
17466                                                                                                                                 fenbendazole
17467                                                                                                                           maropitant citrate
17468                                                                                                                  lufenuron, milbemycin oxime
17469                                                                                                                                   fluralaner
17470                                                                                                                                    probiotic
17471                                                                                                                     urinary tract supplement
17472                                                                                                                  lufenuron, milbemycin oxime
17473                                                                                                                                    sarolaner
17474                                                                                                                                    probiotic
17475                                                                                                                     urinary tract supplement
17476                                                                                                                                diphenoxylate
17477                                                                                                                           maropitant citrate
17478                                                                                                                                 fenbendazole
17479                                                                                                                                metronidazole
17480                                                                                                                                 fenbendazole
17481                                                                                                                                metronidazole
17482                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17483                                                                                                                                    carprofen
17484                                                                                                                  lufenuron, milbemycin oxime
17485                                                                                                                                    sarolaner
17486                                                                                                                 ivermectin, pyrantel pamoate
17487                                                                                                                     fipronil, (s)-methoprene
17488                                                                                                    lufenuron, milbemycin oxime, praziquantel
17489                                                                                                                     fipronil, (s)-methoprene
17490                                                                                                                     fipronil, (s)-methoprene
17491                                                                                                               milbemycin oxime, praziquantel
17492                                                                                                    lufenuron, milbemycin oxime, praziquantel
17493                                                                                                               milbemycin oxime, praziquantel
17494                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17495                                                                                                               milbemycin oxime, praziquantel
17496                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17497                                                                                                               milbemycin oxime, praziquantel
17498                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17499                                                                                                                                metronidazole
17500                                                                                                                           maropitant citrate
17501                                                                                                                                  oclacitinib
17502                                                                                                                                   lokivetmab
17503                                                                                                                                    deracoxib
17504                                                                                                                                metronidazole
17505                                                                                                           amoxicillin, clavulanate potassium
17506                                                                                                                                   lokivetmab
17507                                                                                                                                    deracoxib
17508                                                                                                           amoxicillin, clavulanate potassium
17509                                                                                                           amoxicillin, clavulanate potassium
17510                                                                                                                                    carprofen
17511                                                                                                                                     tramadol
17512                                                                                                                                   tobramycin
17513                                                                                                                  lufenuron, milbemycin oxime
17514                                                                                                                                metronidazole
17515                                                                                                                                  amoxicillin
17516                                                                                                                                    carprofen
17517                                                                                                                                     tramadol
17518                                                                                                                  lufenuron, milbemycin oxime
17519                                                                                                                  lufenuron, milbemycin oxime
17520                                                                                                                                    carprofen
17521                                                                                                                                   gabapentin
17522                                                                                                                                   gabapentin
17523                                                                                                                         cefpodoxime proxetil
17524                                                                                                           amoxicillin, clavulanate potassium
17525                                                                                                                                metronidazole
17526                                                                                                                                   gabapentin
17527                                                                                                                                    carprofen
17528                                                                                                                                   grapiprant
17529                                                                                                                                   prednisone
17530                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17531                                                                                                                                   cephalexin
17532                                                                                                                                      codeine
17533                                                                                                                                   gabapentin
17534                                                                                                               polysulfated glycosaminoglycan
17535                                                                                                                                   grapiprant
17536                                                                                                           amoxicillin, clavulanate potassium
17537                                                                                                                         cefpodoxime proxetil
17538                                                                                                                                metronidazole
17539                                                                                                                           maropitant citrate
17540                                                                                                                                     tramadol
17541                                                                                                               polysulfated glycosaminoglycan
17542                                                                                                                                    carprofen
17543                                                                                                                                  doxycycline
17544                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17545                                                                                                               polysulfated glycosaminoglycan
17546                                                                                                                         cefpodoxime proxetil
17547                                                                                                                         digestive supplement
17548                                                                                                               polysulfated glycosaminoglycan
17549                                                                                                                            hypochlorous acid
17550                                                                                                                                    carprofen
17551                                                                                                                         cefpodoxime proxetil
17552                                                                                                            trimeprazine tartrate, prednisone
17553                                                                                                                                   cephalexin
17554                                                                                                                                 fenbendazole
17555                                                                                                                                   fluralaner
17556                                                                                                                                   fluralaner
17557                                                                                                                                   fluralaner
17558                                                                                                                             pyrantel pamoate
17559                                                                                                                                metronidazole
17560                                                                                                                                yunnan baiyao
17561                                                                                                                                    carprofen
17562                                                                                                                                    meloxicam
17563                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17564                                                                                                                                  doxycycline
17565                                                                                                                                metronidazole
17566                                                                                                                         cefpodoxime proxetil
17567                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17568                                                                                                 florfenicol, mometasone furoate, terbinafine
17569                                                                                               mometasone furoate, orbifloxacin, posaconazole
17570                                                                                                                                metronidazole
17571                                                                                                                                    probiotic
17572                                                                                                                                metronidazole
17573                                                                                                                                    carprofen
17574                                                                                                                   milbemycin oxime, spinosad
17575                                                                                                                   milbemycin oxime, spinosad
17576                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17577                                                                                                                           maropitant citrate
17578                                                                                                                                metronidazole
17579                                                                                                                           maropitant citrate
17580                                                                                                                           maropitant citrate
17581                                                                                                                                metronidazole
17582                                                                                                            betamethasone, gentamicin sulfate
17583                                                                                                            betamethasone, gentamicin sulfate
17584                                                                                                                                metronidazole
17585                                                                                                                                   alprazolam
17586                                                                                                                                    carprofen
17587                                                                                                                                    carprofen
17588                                                                                                            betamethasone, gentamicin sulfate
17589                                                                                                               polysulfated glycosaminoglycan
17590                                                                                                               polysulfated glycosaminoglycan
17591                                                                                                                                 imidacloprid
17592                                                                                                               polysulfated glycosaminoglycan
17593                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17594                                                                                                                                    carprofen
17595                                                                                                                                    carprofen
17596                                                                                                               polysulfated glycosaminoglycan
17597                                                                                                                                    carprofen
17598                                                                                                                         cefpodoxime proxetil
17599                                                                                                               polysulfated glycosaminoglycan
17600                                                                                                                                    carprofen
17601                                                                                                                                    ketorolac
17602                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17603                                                                                                                  lufenuron, milbemycin oxime
17604                                                                                                                                 deltamethrin
17605                                                                                                    lufenuron, milbemycin oxime, praziquantel
17606                                                                                                                                 deltamethrin
17607                                                                                                                                   moxidectin
17608                                                                                                                         cefpodoxime proxetil
17609                                                                                                                                   prednisone
17610                                                                                                                             pyrantel pamoate
17611                                                                                                                                   fluralaner
17612                                                                                                                                   moxidectin
17613                                                                                                                                  oclacitinib
17614                                                                                                                         cefpodoxime proxetil
17615                                                                                                                                     fipronil
17616                                                                                                                                   fluralaner
17617                                                                                                                                   moxidectin
17618                                                                                                                                   grapiprant
17619                                                                                                                                  oclacitinib
17620                                                                                                                                metronidazole
17621                                                                                                                                    probiotic
17622                                                                                                                                    mupirocin
17623                                                                                                     febantel, praziquantel, pyrantel pamoate
17624                                                                                                                                   gabapentin
17625                                                                                                                                    probiotic
17626                                                                                                                                   moxidectin
17627                                                                                                                                   fluralaner
17628                                                                                                                                   fluralaner
17629                                                                                                                                   moxidectin
17630                                                                                                                                   loratadine
17631                                                                                                                                    probiotic
17632                                                                                                                                   gabapentin
17633                                                                                                                                   moxidectin
17634                                                                                                                                   fluralaner
17635                                                                                                                                   moxidectin
17636                                                                                                                         cefpodoxime proxetil
17637                                                                                                                                   gabapentin
17638                                                                                                                                    cefazolin
17639                                                                                                                         cefpodoxime proxetil
17640                                                                                                                                metronidazole
17641                                                                                                    neomycin sulfate, polymyxin b, gramicidin
17642                                                                                                                           gentamicin sulfate
17643                                                                                                                                 chlorambucil
17644                                                                                                                                 chlorambucil
17645                                                                                                                                   gabapentin
17646                                                                                                                                 cyclosporine
17647                                                                                                                                    carprofen
17648                                                                                                                                   prednisone
17649                                                                                                                                betamethasone
17650                                                                                                                                  doxycycline
17651                                                                                                                                 chlorambucil
17652                                                                                                                                  telmisartan
17653                                                                                                                                      codeine
17654                                                                                                                                   prednisone
17655                                                                                                                         digestive supplement
17656                                                                                                                         digestive supplement
17657                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17658                                                                                                                                 multivitamin
17659                                                                                                                             milbemycin oxime
17660                                                                                                                                   cephalexin
17661                                                                                                                                    carprofen
17662                                                                                                                                    cefovecin
17663                                                                                                                                metronidazole
17664                                                                                                                                   gabapentin
17665                                                                                                                                    carprofen
17666                                                                                                                                   gabapentin
17667                                                                                                                                    carprofen
17668                                                                                                                                     spinosad
17669                                                                                                                             milbemycin oxime
17670                                                                                                                   milbemycin oxime, spinosad
17671                                                                                                                   milbemycin oxime, spinosad
17672                                                                                                                   milbemycin oxime, spinosad
17673                                                                                                                   milbemycin oxime, spinosad
17674                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17675                                                                                                                                      omega 3
17676                                                                                                   toothpaste/dental health solution or chews
17677                                                                                                                           maropitant citrate
17678                                                                                                                                   gabapentin
17679                                                                                                                                   sucralfate
17680                                                                                                                                   prednisone
17681                                                                                                                             pyrantel pamoate
17682                                                                                                                                    carprofen
17683                                                                                                                                  amoxicillin
17684                                                                                                                             pyrantel pamoate
17685                                                                                                                                 fenbendazole
17686                                                                                                                                  doxycycline
17687                                                                                                                                metronidazole
17688                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17689                                                                                                                                    probiotic
17690                                                                                                                                 fenbendazole
17691                                                                                                                                  doxycycline
17692                                                                                                           amoxicillin, clavulanate potassium
17693                                                                                                            trimeprazine tartrate, prednisone
17694                                                                                                                         cefpodoxime proxetil
17695                                                                                                                                  clindamycin
17696                                                                                                                         cefpodoxime proxetil
17697                                                                                                                   milbemycin oxime, spinosad
17698                                                                                                                                  amoxicillin
17699                                                                                                                         cefpodoxime proxetil
17700                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17701                                                                                                                                  doxycycline
17702                                                                                                   dextromethorphan hydrobromide, guaifenesin
17703                                                                                                                  lufenuron, milbemycin oxime
17704                                                                                                                                    cefovecin
17705                                                                                                                                     tramadol
17706                                                                                                                                  doxycycline
17707                                                                                                                                  hydroxyzine
17708                                                                                                                                metronidazole
17709                                                                                                                                    carprofen
17710                                                                                                                     fipronil, (s)-methoprene
17711                                                                                                           amoxicillin, clavulanate potassium
17712                                                                                                                                  doxycycline
17713                                                                                                                                    cefovecin
17714                                                                                                                  lufenuron, milbemycin oxime
17715                                                                                                                                  clindamycin
17716                                                                                                                   milbemycin oxime, spinosad
17717                                                                                                                                 fenbendazole
17718                                                                                                                                    carprofen
17719                                                                                                                  lufenuron, milbemycin oxime
17720                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
17721                                                                                                                                metronidazole
17722                                                                                                                  lufenuron, milbemycin oxime
17723                                                                                                                                   afoxolaner
17724                                                                                                                                    carprofen
17725                                                                                                                  lufenuron, milbemycin oxime
17726                                                                                                                                   afoxolaner
17727                                                                                                                                    carprofen
17728                                                                                                                         cefpodoxime proxetil
17729                                                                                                                                    carprofen
17730                                                                                                               polysulfated glycosaminoglycan
17731                                                                                                                                   grapiprant
17732                                                                                                               polysulfated glycosaminoglycan
17733                                                                                                                                   grapiprant
17734                                                                                                                                    vitamin c
17735                                                                                                                                  coconut oil
17736                                                                                                                             sulfadimethoxine
17737                                                                                                           amoxicillin, clavulanate potassium
17738                                                                                                                                  doxycycline
17739                                                                                                                                    vitamin c
17740                                                                                                                                  coconut oil
17741                                                                                                           fipronil, permethrin, pyriproxyfen
17742                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17743                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17744                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17745                                                                                                                                    deracoxib
17746                                                                                                           joint supplement (glucosamine hcl)
17747                                                                                                                                   cephalexin
17748                                                                                                                                   cephalexin
17749                                                                                                                                    deracoxib
17750                                                                                                                   imidacloprid, pyriproxyfen
17751                                                                                                                 ivermectin, pyrantel pamoate
17752                                                                                                                               metoclopramide
17753                                                                                                                               metoclopramide
17754                                                                                                                 ivermectin, pyrantel pamoate
17755                                                                                                                     fipronil, (s)-methoprene
17756                                                                                                                                   afoxolaner
17757                                                                                                                                   ivermectin
17758                                                                                                                 ivermectin, pyrantel pamoate
17759                                                                                                                                   afoxolaner
17760                                                                                                                 ivermectin, pyrantel pamoate
17761                                                                                                                                   afoxolaner
17762                                                                                                                         cefpodoxime proxetil
17763                                                                                                                 ivermectin, pyrantel pamoate
17764                                                                                                                                   afoxolaner
17765                                                                                                                         cefpodoxime proxetil
17766                                                                                                                                    thyroxine
17767                                                                                                                                  amoxicillin
17768                                                                                                                                 enrofloxacin
17769                                                                                                                               benazepril hcl
17770                                                                                                                                   amlodipine
17771                                                                                                                                    thyroxine
17772                                                                                                                                   famotidine
17773                                                                                                                                 enrofloxacin
17774                                                                                                                           maropitant citrate
17775                                                                                                   ivermectin, praziquantel, pyrantel pamoate
17776                                                                                                                                diphenoxylate
17777                                                                                                                                metronidazole
17778                                                                                                                                    carprofen
17779                                                                                                       cyphenothrin, fipronil, (s)-methoprene
17780                                                                                                            trimeprazine tartrate, prednisone
17781                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17782                                                                                                       cyphenothrin, fipronil, (s)-methoprene
17783                                                                                                                                  doxycycline
17784                                                                                                                                  hydrocodone
17785                                                                                                                                  oclacitinib
17786                                                                                                                                   cephalexin
17787                                                                                                                                  oclacitinib
17788                                                                                                                                   fluralaner
17789                                                                                                                                  oclacitinib
17790                                                                                                                                  oclacitinib
17791                                                                                                                                   fluralaner
17792                                                                                                                         cefpodoxime proxetil
17793                                                                                                                                  oclacitinib
17794                                                                                               mometasone furoate, orbifloxacin, posaconazole
17795                                                                                                                                   fluralaner
17796                                                                                                                         cefpodoxime proxetil
17797                                                                                                                                  oclacitinib
17798                                                                                               mometasone furoate, orbifloxacin, posaconazole
17799                                                                                                                         cefpodoxime proxetil
17800                                                                                                                         cefpodoxime proxetil
17801                                                                                                                                   cephalexin
17802                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17803                                                                                                            betamethasone, gentamicin sulfate
17804                                                                                                            trimeprazine tartrate, prednisone
17805                                                                                                            betamethasone, gentamicin sulfate
17806                                                                                                                                   lokivetmab
17807                                                                                                                                  clindamycin
17808                                                                                                            betamethasone, gentamicin sulfate
17809                                                                                                                                  oclacitinib
17810                                                                                                                                    carprofen
17811                                                                                                            betamethasone, gentamicin sulfate
17812                                                                                                                                  clindamycin
17813                                                                                                                                   prednisone
17814                                                                                                                 ivermectin, pyrantel pamoate
17815                                                                                                                     fipronil, (s)-methoprene
17816                                                                                                                                  doxycycline
17817                                                                                                                 ivermectin, pyrantel pamoate
17818                                                                                                                                   afoxolaner
17819                                                                                                         activated charcoal, kaolin, sorbitol
17820                                                                                                                                       barium
17821                                                                                                                           maropitant citrate
17822                                                                                                                                   sucralfate
17823                                                                                                                                    probiotic
17824                                                                                                                                metronidazole
17825                                                                                                                 ivermectin, pyrantel pamoate
17826                                                                                                                                   afoxolaner
17827                                                                                                                 ivermectin, pyrantel pamoate
17828                                                                                                                                   afoxolaner
17829                                                                                                                                   lokivetmab
17830                                                                                                                                   cephalexin
17831                                                                                                                                   gabapentin
17832                                                                                                                                    meloxicam
17833                                                                                                                                   diclofenac
17834                                                                                                                         prednisolone acetate
17835                                                                                                                                    carprofen
17836                                                                                                                                 fenbendazole
17837                                                                                                                                   gabapentin
17838                                                                                                                                      omega 3
17839                                                                                                                     urinary tract supplement
17840                                                                                                                                   diclofenac
17841                                                                                                                         prednisolone acetate
17842                                                                                                                                    carprofen
17843                                                                                                                                  doxycycline
17844                                                                                                           amoxicillin, clavulanate potassium
17845                                                                                                                                   afoxolaner
17846                                                                                                                                      omega 3
17847                                                                                                                                 fenbendazole
17848                                                                                                                     urinary tract supplement
17849                                                                                                                             liver supplement
17850                                                                                                                                   gabapentin
17851                                                                                                                                   gabapentin
17852                                                                                                                                  telmisartan
17853                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17854                                                                                                                                     chitosan
17855                                                                                                                                   diclofenac
17856                                                                                                                         prednisolone acetate
17857                                                                                                                                    carprofen
17858                                                                                                                                   amantadine
17859                                                                                                                                   gabapentin
17860                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
17861                                                                                                                                  fenofibrate
17862                                                                                                                                  telmisartan
17863                                                                                                                                      omega 3
17864                                                                                                                                     chitosan
17865                                                                                                                     urinary tract supplement
17866                                                                                                                                   diclofenac
17867                                                                                                                         prednisolone acetate
17868                                                                                                                                    carprofen
17869                                                                                                                 ivermectin, pyrantel pamoate
17870                                                                                                                 ivermectin, pyrantel pamoate
17871                                                                                                                     fipronil, (s)-methoprene
17872                                                                                                                     fipronil, (s)-methoprene
17873                                                                                                                     fipronil, (s)-methoprene
17874                                                                                                                             sulfadimethoxine
17875                                                                                                                                metronidazole
17876                                                                                                                                   cephalexin
17877                                                                                                                                   cephalexin
17878                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17879                                                                                                                                metronidazole
17880                                                                                                                         cefpodoxime proxetil
17881                                                                                                                                   famotidine
17882                                                                                                            betamethasone, gentamicin sulfate
17883                                                                                                                          clemastine fumarate
17884                                                                                                                         cefpodoxime proxetil
17885                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
17886                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17887                                                                                                                 ivermectin, pyrantel pamoate
17888                                                                                                                     fipronil, (s)-methoprene
17889                                                                                                                         cefpodoxime proxetil
17890                                                                                                                                   prednisone
17891                                                                                                                              diphenhydramine
17892                                                                                                                                    carprofen
17893                                                                                                                                   cephalexin
17894                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17895                                                                                                                                  doxycycline
17896                                                                                                                     fipronil, (s)-methoprene
17897                                                                                                                 ivermectin, pyrantel pamoate
17898                                                                                                                         cefpodoxime proxetil
17899                                                                                                                 ivermectin, pyrantel pamoate
17900                                                                                                                     fipronil, (s)-methoprene
17901                                                                                                                         cefpodoxime proxetil
17902                                                                                                                                metronidazole
17903                                                                                                                                 enrofloxacin
17904                                                                                                                 ivermectin, pyrantel pamoate
17905                                                                                                                     fipronil, (s)-methoprene
17906                                                                                                                                  doxycycline
17907                                                                                                           amoxicillin, clavulanate potassium
17908                                                                                                                                   sucralfate
17909                                                                                                                                 enrofloxacin
17910                                                                                                                                levothyroxine
17911                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17912                                                                                                                      triamcinolone acetonide
17913                                                                                                                         cefpodoxime proxetil
17914                                                                                                                                  oclacitinib
17915                                                                                                                                    carprofen
17916                                                                                                                                  doxycycline
17917                                                                                                                           maropitant citrate
17918                                                                                                                 ivermectin, pyrantel pamoate
17919                                                                                                       fipronil, pyriproxyfen, (s)-methoprene
17920                                                                                                                                  doxycycline
17921                                                                                                                           maropitant citrate
17922                                                                                                                           maropitant citrate
17923                                                                                                                                   lokivetmab
17924                                                                                                           amoxicillin, clavulanate potassium
17925                                                                                                                                  clindamycin
17926                                                                                                                                     tramadol
17927                                                                                                                                metronidazole
17928                                                                                                                                    trazodone
17929                                                                                                                                 enrofloxacin
17930                                                                                                                                  oclacitinib
17931                                                                                                                                metronidazole
17932                                                                                                                           maropitant citrate
17933                                                                                                                              diphenhydramine
17934                                                                                                                                levothyroxine
17935                                                                                                                                   omeprazole
17936                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
17937                                                                                                                             liver supplement
17938                                                                                                                                   prednisone
17939                                                                                                                                   sucralfate
17940                                                                                                                                    probiotic
17941                                                                                                                                     tramadol
17942                                                                                                                   milbemycin oxime, spinosad
17943                                                                                                                                dexamethasone
17944                                                                                                                         cefpodoxime proxetil
17945                                                                                                                                  hydroxyzine
17946                                                                                                                                metronidazole
17947                                                                                                                                    probiotic
17948                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17949                                                                                                                           maropitant citrate
17950                                                                                                                             milbemycin oxime
17951                                                                                                                                   afoxolaner
17952                                                                                                                                   afoxolaner
17953                                                                                                                                   afoxolaner
17954                                                                                                                             milbemycin oxime
17955                                                                                                                             milbemycin oxime
17956                                                                                                                                   afoxolaner
17957                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17958                                                                                                                                   afoxolaner
17959                                                                                                                             milbemycin oxime
17960                                                                                                                                   gabapentin
17961                                                                                                                                    carprofen
17962                                                                                                                         cefpodoxime proxetil
17963                                                                                                                                    carprofen
17964                                                                                                                                   cephalexin
17965                                                                                                                                   afoxolaner
17966                                                                                                                                   prednisone
17967                                                                                                                                  minocycline
17968                                                                                                                         cefpodoxime proxetil
17969                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
17970                                                                                                                                   afoxolaner
17971                                                                                                                                   afoxolaner
17972                                                                                              betamethasone, clotrimazole, gentamicin sulfate
17973                                                                                                                                  hydroxyzine
17974                                                                                                            betamethasone, gentamicin sulfate
17975                                                                                                                         cefpodoxime proxetil
17976                                                                                                            trimeprazine tartrate, prednisone
17977                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
17978                                                                                                                                   afoxolaner
17979                                                                                                                                 enrofloxacin
17980                                                                                                                                  hydroxyzine
17981                                                                                                                                dexamethasone
17982                                                                                                                                   ivermectin
17983                                                                                                                             pyrantel pamoate
17984                                                                                                                                   cephalexin
17985                                                                                                                                   cephalexin
17986                                                                                                                                    carprofen
17987                                                                                                                 ivermectin, pyrantel pamoate
17988                                                                                                                                metronidazole
17989                                                                                                           amoxicillin, clavulanate potassium
17990                                                                                                                                metronidazole
17991                                                                                                                                    probiotic
17992                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
17993                                                                                                                                   cephalexin
17994                                                                                                            betamethasone, gentamicin sulfate
17995                                                                                                                                   prednisone
17996                                                                                                           amoxicillin, clavulanate potassium
17997                                                                                                                  chloroxylenol, ketoconazole
17998                                                                                                                  lufenuron, milbemycin oxime
17999                                                                                                                                metronidazole
18000                                                                                                               sulfamethoxazole, trimethoprim
18001                                                                                                                 ivermectin, pyrantel pamoate
18002                                                                                                                                    carprofen
18003                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18004                                                                                                                                dexamethasone
18005                                                                                                                              diphenhydramine
18006                                                                                                                         prednisolone acetate
18007                                                                                                                              diphenhydramine
18008                                                                                                                      triamcinolone acetonide
18009                                                                                                                     fipronil, (s)-methoprene
18010                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18011                                                                                                                     fipronil, (s)-methoprene
18012                                                                                                                      triamcinolone acetonide
18013                                                                                                                                  oclacitinib
18014                                                                                                           fipronil, permethrin, pyriproxyfen
18015                                                                                                                                   ivermectin
18016                                                                                                                      triamcinolone acetonide
18017                                                                                                                         cefpodoxime proxetil
18018                                                                                                                                  oclacitinib
18019                                                                                                                                  oclacitinib
18020                                                                                                                         cefpodoxime proxetil
18021                                                                                                                  lufenuron, milbemycin oxime
18022                                                                                                                                  oclacitinib
18023                                                                                                                             milbemycin oxime
18024                                                                                                                                   afoxolaner
18025                                                                                                                             milbemycin oxime
18026                                                                                                                                    sarolaner
18027                                                                                                                                  oclacitinib
18028                                                                                                                                  oclacitinib
18029                                                                                                                           maropitant citrate
18030                                                                                                                             milbemycin oxime
18031                                                                                                                                  oclacitinib
18032                                                                                                                                metronidazole
18033                                                                                                                                  oclacitinib
18034                                                                                                                                metronidazole
18035                                                                                                                                    carprofen
18036                                                                                                                         cefpodoxime proxetil
18037                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18038                                                                                                                                   cetirizine
18039                                                                                                                                metronidazole
18040                                                                                                                                metronidazole
18041                                                                                                            betamethasone, gentamicin sulfate
18042                                                                                                                                 fenbendazole
18043                                                                                                              atropine sulfate, diphenoxylate
18044                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18045                                                                                                                                metronidazole
18046                                                                                                                 ivermectin, pyrantel pamoate
18047                                                                                                                                   afoxolaner
18048                                                                                                                                metronidazole
18049                                                                                                                 ivermectin, pyrantel pamoate
18050                                                                                                                                   afoxolaner
18051                                                                                                                         cefpodoxime proxetil
18052                                                                                                                                   prednisone
18053                                                                                                              atropine sulfate, diphenoxylate
18054                                                                                                                                metronidazole
18055                                                                                               dexamethasone, neomycin sulfate, thiabendazole
18056                                                                                                              atropine sulfate, diphenoxylate
18057                                                                                                                                   afoxolaner
18058                                                                                                                 ivermectin, pyrantel pamoate
18059                                                                                                                                  hydroxyzine
18060                                                                                                                                    carprofen
18061                                                                                                                                 enrofloxacin
18062                                                                                                                                metronidazole
18063                                                                                                                         cefpodoxime proxetil
18064                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18065                                                                                                                                 ketoconazole
18066                                                                                                                                   gabapentin
18067                                                                                                                                   prednisone
18068                                                                                                                                dexamethasone
18069                                                                                                                   milbemycin oxime, spinosad
18070                                                                                                                                    carprofen
18071                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18072                                                                                                                   milbemycin oxime, spinosad
18073                                                                                                                                   fluralaner
18074                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18075                                                                                                    lufenuron, milbemycin oxime, praziquantel
18076                                                                                                                                   fluralaner
18077                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18078                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18079                                                                                                                                   fluralaner
18080                                                                                                    lufenuron, milbemycin oxime, praziquantel
18081                                                                                                        dinotefuran, permethrin, pyriproxyfen
18082                                                                                                                 ivermectin, pyrantel pamoate
18083                                                                                                        dinotefuran, permethrin, pyriproxyfen
18084                                                                                                                                    carprofen
18085                                                                                                                                   gabapentin
18086                                                                                                                                  amoxicillin
18087                                                                                                                         cefpodoxime proxetil
18088                                                                                                                                 azithromycin
18089                                                                                                                                  amoxicillin
18090                                                                                                                                   grapiprant
18091                                                                                                                               metoclopramide
18092                                                                                                                                   famotidine
18093                                                                                                           amoxicillin, clavulanate potassium
18094                                                                                                                 ivermectin, pyrantel pamoate
18095                                                                                                                                   afoxolaner
18096                                                                                               mometasone furoate, orbifloxacin, posaconazole
18097                                                                                                                                   cephalexin
18098                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18099                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18100                                                                                                                                   grapiprant
18101                                                                                                                                    carprofen
18102                                                                                                                                metronidazole
18103                                                                                                                                   cephalexin
18104                                                                                                                         cefpodoxime proxetil
18105                                                                                                           amoxicillin, clavulanate potassium
18106                                                                                                                                  doxycycline
18107                                                                                                                              chloramphenicol
18108                                                                                                                                   gabapentin
18109                                                                                                                                   grapiprant
18110                                                                                                                                    carprofen
18111                                                                                                           amoxicillin, clavulanate potassium
18112                                                                                                                                levothyroxine
18113                                                                                                                                   amantadine
18114                                                                                                                                    vitamin e
18115                                                                                                                  lufenuron, milbemycin oxime
18116                                                                                                                     imidacloprid, permethrin
18117                                                                                                                  lufenuron, milbemycin oxime
18118                                                                                                                   imidacloprid, pyriproxyfen
18119                                                                                                                  lufenuron, milbemycin oxime
18120                                                                                                                   imidacloprid, pyriproxyfen
18121                                                                                                                  lufenuron, milbemycin oxime
18122                                                                                                                                   mibolerone
18123                                                                                                                   imidacloprid, pyriproxyfen
18124                                                                                                                  lufenuron, milbemycin oxime
18125                                                                                                                   imidacloprid, pyriproxyfen
18126                                                                                                    lufenuron, milbemycin oxime, praziquantel
18127                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
18128                                                                                                                         cefpodoxime proxetil
18129                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18130                                                                                                                                 ketoconazole
18131                                                                                                                                  oclacitinib
18132                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
18133                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18134                                                                                                            betamethasone, gentamicin sulfate
18135                                                                                                                           maropitant citrate
18136                                                                                                                                hydromorphone
18137                                                                                                                                    midazolam
18138                                                                                                                                     propofol
18139                                                                                                                                  doxycycline
18140                                                                                                                                  doxycycline
18141                                                                                                               polysulfated glycosaminoglycan
18142                                                                                                                                buprenorphine
18143                                                                                                                              dexmedetomidine
18144                                                                                                                                     propofol
18145                                                                                                                                    carprofen
18146                                                                                                                                  atipamezole
18147                                                                                                                                   isoflurane
18148                                                                                                                  lufenuron, milbemycin oxime
18149                                                                                                                     fipronil, (s)-methoprene
18150                                                                                                                                      amitraz
18151                                                                                               mometasone furoate, orbifloxacin, posaconazole
18152                                                                                                                                  clindamycin
18153                                                                                                                                  amoxicillin
18154                                                                                                              aminopentamide hydrogen sulfate
18155                                                                                                                           maropitant citrate
18156                                                                                                                         cefpodoxime proxetil
18157                                                                                                     febantel, praziquantel, pyrantel pamoate
18158                                                                                                     febantel, praziquantel, pyrantel pamoate
18159                                                                                               mometasone furoate, orbifloxacin, posaconazole
18160                                                                                                    lufenuron, milbemycin oxime, praziquantel
18161                                                                                                                                   afoxolaner
18162                                                                                                                                    deracoxib
18163                                                                                                                                   cephalexin
18164                                                                                               mometasone furoate, orbifloxacin, posaconazole
18165                                                                                                                     ear cleaner (oti-soothe)
18166                                                                                                                  lufenuron, milbemycin oxime
18167                                                                                                                                   afoxolaner
18168                                                                                                                                   fluralaner
18169                                                                                                      betamethasone, florfenicol, terbinafine
18170                                                                                                                         cefpodoxime proxetil
18171                                                                                                                                    deracoxib
18172                                                                                                                                   prednisone
18173                                                                                                                                  amoxicillin
18174                                                                                                                           maropitant citrate
18175                                                                                                                         cefpodoxime proxetil
18176                                                                                                                                   prednisone
18177                                                                                                                           maropitant citrate
18178                                                                                                                           maropitant citrate
18179                                                                                                                               metoclopramide
18180                                                                                                                               metoclopramide
18181                                                                                                                                  ondansetron
18182                                                                                                                                   ivermectin
18183                                                                                                        dinotefuran, permethrin, pyriproxyfen
18184                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18185                                                                                                                                    cefovecin
18186                                                                                                                                   prednisone
18187                                                                                                                         cefpodoxime proxetil
18188                                                                                                   dextromethorphan hydrobromide, guaifenesin
18189                                                                                                                                  doxycycline
18190                                                                                                                                 enrofloxacin
18191                                                                                                                     fipronil, (s)-methoprene
18192                                                                                                                 ivermectin, pyrantel pamoate
18193                                                                                                                                   ivermectin
18194                                                                                                                               metoclopramide
18195                                                                                                                                   grapiprant
18196                                                                                                           amoxicillin, clavulanate potassium
18197                                                                                                                                  hydroxyzine
18198                                                                                                                                metronidazole
18199                                                                                                            trimeprazine tartrate, prednisone
18200                                                                                                                                   cephalexin
18201                                                                                                                                  oclacitinib
18202                                                                                                                                   ivermectin
18203                                                                                                                                  oclacitinib
18204                                                                                                                                  oclacitinib
18205                                                                                                                                   ivermectin
18206                                                                                                                                  oclacitinib
18207                                                                                                                                  oclacitinib
18208                                                                                                                                    carprofen
18209                                                                                                                                  oclacitinib
18210                                                                                                           amoxicillin, clavulanate potassium
18211                                                                                                                                marbofloxacin
18212                                                                                                                                    carprofen
18213                                                                                                                     imidacloprid, permethrin
18214                                                                                                                 ivermectin, pyrantel pamoate
18215                                                                                                                                    carprofen
18216                                                                                                                                   loratadine
18217                                                                                                                                   fluralaner
18218                                                                                                                             milbemycin oxime
18219                                                                                                                                   loratadine
18220                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
18221                                                                                                                                   lokivetmab
18222                                                                                                                             milbemycin oxime
18223                                                                                                                                   lokivetmab
18224                                                                                                                                    carprofen
18225                                                                                                                                   gabapentin
18226                                                                                                                                    carprofen
18227                                                                                                                                   lokivetmab
18228                                                                                                               polysulfated glycosaminoglycan
18229                                                                                                                                     spinosad
18230                                                                                                                             milbemycin oxime
18231                                                                                                                                     fipronil
18232                                                                                                                               (s)-methoprene
18233                                                                                                                                      amitraz
18234                                                                                                                                hydromorphone
18235                                                                                                                                     diazepam
18236                                                                                                                                     propofol
18237                                                                                                                                  sevoflurane
18238                                                                                                                               dental sealant
18239                                                                                                                                     spinosad
18240                                                                                                                             milbemycin oxime
18241                                                                                                                                  dinotefuran
18242                                                                                                                                 pyriproxyfen
18243                                                                                                                                   permethrin
18244                                                                                                                                dexamethasone
18245                                                                                                                                 acepromazine
18246                                                                                                                                hydromorphone
18247                                                                                                                                     diazepam
18248                                                                                                                                     propofol
18249                                                                                                                                 ketoconazole
18250                                                                                                                         cefpodoxime proxetil
18251                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18252                                                                                                                                 ketoconazole
18253                                                                                                                                    carprofen
18254                                                                                                        dinotefuran, permethrin, pyriproxyfen
18255                                                                                                                                     spinosad
18256                                                                                                                             milbemycin oxime
18257                                                                                                            allergy immunotherapy - injection
18258                                                                                                        dinotefuran, permethrin, pyriproxyfen
18259                                                                                                                                   cetirizine
18260                                                                                                                   milbemycin oxime, spinosad
18261                                                                                                                                    sarolaner
18262                                                                                                        dinotefuran, permethrin, pyriproxyfen
18263                                                                                                          allergy immunotherapy - unspecified
18264                                                                                                                   milbemycin oxime, spinosad
18265                                                                                                                                    sarolaner
18266                                                                                                                   milbemycin oxime, spinosad
18267                                                                                                                                    sarolaner
18268                                                                                                                                  oclacitinib
18269                                                                                                                                    carprofen
18270                                                                                                                                    trazodone
18271                                                                                                          allergy immunotherapy - unspecified
18272                                                                                                                                    sarolaner
18273                                                                                                                   milbemycin oxime, spinosad
18274                                                                                                      betamethasone, florfenicol, terbinafine
18275                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18276                                                                                                                             phytosphingosine
18277                                                                                                                                 fenbendazole
18278                                                                                                                                   fluralaner
18279                                                                                                                                 praziquantel
18280                                                                                                                                    vitamin c
18281                                                                                                                                      omega 3
18282                                                                                                                                   fluralaner
18283                                                                                                                                 fenbendazole
18284                                                                                                                                   ivermectin
18285                                                                                                                                   fluralaner
18286                                                                                                                                    lotilaner
18287                                                                                                                         cefpodoxime proxetil
18288                                                                                                                                   gabapentin
18289                                                                                                                                    trazodone
18290                                                                                                                                      aspirin
18291                                                                                                                                    carprofen
18292                                                                                                                                  amoxicillin
18293                                                                                                                               metoclopramide
18294                                                                                                                                   gabapentin
18295                                                                                                                           maropitant citrate
18296                                                                                                                         digestive supplement
18297                                                                                                                                metronidazole
18298                                                                                                                                    carprofen
18299                                                                                                               praziquantel, pyrantel pamoate
18300                                                                                                                                   selamectin
18301                                                                                                                                      amitraz
18302                                                                                                                                  hydroxyzine
18303                                                                                                                                    carprofen
18304                                                                                                                                     fentanyl
18305                                                                                                                                   cephalexin
18306                                                                                                                                     tramadol
18307                                                                                                                                 acepromazine
18308                                                                                                                                   famotidine
18309                                                                                                              ear cleaner (epi-otic advanced)
18310                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18311                                                                                                                                metronidazole
18312                                                                                                                                   cephalexin
18313                                                                                                                         butorphanol tartrate
18314                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18315                                                                                                                     homatropine, hydrocodone
18316                                                                                                                      unspecified ear cleaner
18317                                                                                                                         cefpodoxime proxetil
18318                                                                                                            trimeprazine tartrate, prednisone
18319                                                                                                                                   afoxolaner
18320                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18321                                                                                                                 ivermectin, pyrantel pamoate
18322                                                                                                                                   fluralaner
18323                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18324                                                                                                                                   prednisone
18325                                                                                                             burow's solution, hydrocortisone
18326                                                                                                                      ketoconazole, tris-edta
18327                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18328                                                                                                                              diphenhydramine
18329                                                                                                                             pyrantel pamoate
18330                                                                                                                                    ponazuril
18331                                                                                                                                 fenbendazole
18332                                                                                                           amoxicillin, clavulanate potassium
18333                                                                                                               sulfamethoxazole, trimethoprim
18334                                                                                                                                metronidazole
18335                                                                                                                 ivermectin, pyrantel pamoate
18336                                                                                                                                 fenbendazole
18337                                                                                                                 ivermectin, pyrantel pamoate
18338                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18339                                                                                                                 ivermectin, pyrantel pamoate
18340                                                                                                                                   afoxolaner
18341                                                                                                                                      omega 3
18342                                                                                                                 ivermectin, pyrantel pamoate
18343                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18344                                                                                                                 ivermectin, pyrantel pamoate
18345                                                                                                                       acetaminophen, codeine
18346                                                                                                                                    trazodone
18347                                                                                                                                    meloxicam
18348                                                                                                                                   gabapentin
18349                                                                                                                 ivermectin, pyrantel pamoate
18350                                                                                                                                  amoxicillin
18351                                                                                                                                levetiracetam
18352                                                                                                                                phenobarbital
18353                                                                                                                                    carprofen
18354                                                                                                                                    meloxicam
18355                                                                                                                                levetiracetam
18356                                                                                                                                  amoxicillin
18357                                                                                                                                  doxycycline
18358                                                                                                                                    carprofen
18359                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18360                                                                                                                                levetiracetam
18361                                                                                                                                phenobarbital
18362                                                                                                                                  clorazepate
18363                                                                                                                                    trazodone
18364                                                                                                                                   gabapentin
18365                                                                                                                 ivermectin, pyrantel pamoate
18366                                                                                                                                   afoxolaner
18367                                                                                                                                   afoxolaner
18368                                                                                                                         cefpodoxime proxetil
18369                                                                                                                                metronidazole
18370                                                                                                                 ivermectin, pyrantel pamoate
18371                                                                                                                                   afoxolaner
18372                                                                                                                         cefpodoxime proxetil
18373                                                                                                                 ivermectin, pyrantel pamoate
18374                                                                                                                                   afoxolaner
18375                                                                                                                 ivermectin, pyrantel pamoate
18376                                                                                                                                   pimobendan
18377                                                                                                                                    enalapril
18378                                                                                                                                      taurine
18379                                                                                                                                  l-carnitine
18380                                                                                                                                   pimobendan
18381                                                                                                                                    enalapril
18382                                                                                                                                      sotalol
18383                                                                                                                                   pimobendan
18384                                                                                                                                    carprofen
18385                                                                                                                                levetiracetam
18386                                                                                                                                      sotalol
18387                                                                                                                                   pimobendan
18388                                                                                                                                    enalapril
18389                                                                                                                                    carprofen
18390                                                                                                   ivermectin, praziquantel, pyrantel pamoate
18391                                                                                                                                   ivermectin
18392                                                                                                                                   cephalexin
18393                                                                                                                                  oclacitinib
18394                                                                                                                                   cephalexin
18395                                                                                                                                  oclacitinib
18396                                                                                                                 ivermectin, pyrantel pamoate
18397                                                                                                                                   prednisone
18398                                                                                                                 ivermectin, pyrantel pamoate
18399                                                                                                                                   afoxolaner
18400                                                                                                                                  oclacitinib
18401                                                                                                                 ivermectin, pyrantel pamoate
18402                                                                                                                                   afoxolaner
18403                                                                                                                                  oclacitinib
18404                                                                                                                      ketoconazole, tris-edta
18405                                                                                                                                   lokivetmab
18406                                                                                                                 ivermectin, pyrantel pamoate
18407                                                                                                                                   afoxolaner
18408                                                                                                                                   lokivetmab
18409                                                                                                                                  oclacitinib
18410                                                                                                                         cefpodoxime proxetil
18411                                                                                                           amoxicillin, clavulanate potassium
18412                                                                                                                                    deracoxib
18413                                                                                                                                   cephalexin
18414                                                                                                                 ivermectin, pyrantel pamoate
18415                                                                                                                 ivermectin, pyrantel pamoate
18416                                                                                                                                   afoxolaner
18417                                                                                                                                   lokivetmab
18418                                                                                                                 ivermectin, pyrantel pamoate
18419                                                                                                                                    lotilaner
18420                                                                                                                                  oclacitinib
18421                                                                                                                                   cephalexin
18422                                                                                                                                    deracoxib
18423                                                                                                                                  clindamycin
18424                                                                                                                                 acepromazine
18425                                                                                                                         butorphanol tartrate
18426                                                                                                                                     propofol
18427                                                                                                                                         edta
18428                                                                                                                                   cephalexin
18429                                                                                                                                  oclacitinib
18430                                                                                                                                   lokivetmab
18431                                                                                                                         cefpodoxime proxetil
18432                                                                                                                                   cephalexin
18433                                                                                                                                   lokivetmab
18434                                                                                                                                  oclacitinib
18435                                                                                                                                  amoxicillin
18436                                                                                                                                    probiotic
18437                                                                                                                                    probiotic
18438                                                                                                                                   lokivetmab
18439                                                                                                                                  oclacitinib
18440                                                                                                            trimeprazine tartrate, prednisone
18441                                                                                                            trimeprazine tartrate, prednisone
18442                                                                                                            trimeprazine tartrate, prednisone
18443                                                                                                                                metronidazole
18444                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
18445                                                                                                                   imidacloprid, pyriproxyfen
18446                                                                                                                 ivermectin, pyrantel pamoate
18447                                                                                                                                     tramadol
18448                                                                                                                                    carprofen
18449                                                                                                                                 acepromazine
18450                                                                                                                                  hydroxyzine
18451                                                                                                                         cefpodoxime proxetil
18452                                                                                                                                   prednisone
18453                                                                                                                  lufenuron, milbemycin oxime
18454                                                                                                                                   afoxolaner
18455                                                                                                                         cefpodoxime proxetil
18456                                                                                                                                     tramadol
18457                                                                                                                  lufenuron, milbemycin oxime
18458                                                                                                                                   fluralaner
18459                                                                                                                  lufenuron, milbemycin oxime
18460                                                                                                                  lufenuron, milbemycin oxime
18461                                                                                                                                   fluralaner
18462                                                                                                                    immune support supplement
18463                                                                                                                                  amoxicillin
18464                                                                                                                                   cephalexin
18465                                                                                                                                    carprofen
18466                                                                                                    neomycin sulfate, polymyxin b, gramicidin
18467                                                                                                                 ivermectin, pyrantel pamoate
18468                                                                                                                           maropitant citrate
18469                                                                                                                                 cyclosporine
18470                                                                                                                 ivermectin, pyrantel pamoate
18471                                                                                                                                 cyclosporine
18472                                                                                                                 ivermectin, pyrantel pamoate
18473                                                                                                                                   afoxolaner
18474                                                                                                                           calming supplement
18475                                                                                                                         cefpodoxime proxetil
18476                                                                                                                                    carprofen
18477                                                                                                                                dexamethasone
18478                                                                                                                                   cephalexin
18479                                                                                                                   milbemycin oxime, spinosad
18480                                                                                                                   milbemycin oxime, spinosad
18481                                                                                                                                   cephalexin
18482                                                                                                                   milbemycin oxime, spinosad
18483                                                                                                                   milbemycin oxime, spinosad
18484                                                                                                                           maropitant citrate
18485                                                                                                                                  clindamycin
18486                                                                                                                              diphenhydramine
18487                                                                                                                                   cephalexin
18488                                                                                                                                   prednisone
18489                                                                                                                 ivermectin, pyrantel pamoate
18490                                                                                                                  lufenuron, milbemycin oxime
18491                                                                                                                                  hydroxyzine
18492                                                                                                                              diphenhydramine
18493                                                                                                                                   prednisone
18494                                                                                                                  lufenuron, milbemycin oxime
18495                                                                                                                 ivermectin, pyrantel pamoate
18496                                                                                                                                  hydroxyzine
18497                                                                                                                 ivermectin, pyrantel pamoate
18498                                                                                                        dinotefuran, permethrin, pyriproxyfen
18499                                                                                                                                  hydroxyzine
18500                                                                                                                 ivermectin, pyrantel pamoate
18501                                                                                                                                  hydroxyzine
18502                                                                                                               milbemycin oxime, praziquantel
18503                                                                                                                                  hydroxyzine
18504                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18505                                                                                                               polysulfated glycosaminoglycan
18506                                                                                                                                    carprofen
18507                                                                                                                                    carprofen
18508                                                                                                                                   gabapentin
18509                                                                                                                                    carprofen
18510                                                                                                                                   gabapentin
18511                                                                                                                                    carprofen
18512                                                                                                                                   ivermectin
18513                                                                                                                 ivermectin, pyrantel pamoate
18514                                                                                                                   imidacloprid, pyriproxyfen
18515                                                                                                                                  doxycycline
18516                                                                                                                                metronidazole
18517                                                                                                                                   ivermectin
18518                                                                                                                                  doxycycline
18519                                                                                                                                   afoxolaner
18520                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18521                                                                                                                                    firocoxib
18522                                                                                                                                  amoxicillin
18523                                                                                                                                  oclacitinib
18524                                                                                                                 ivermectin, pyrantel pamoate
18525                                                                                                                                   afoxolaner
18526                                                                                                                                      taurine
18527                                                                                                                                  l-carnitine
18528                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18529                                                                                                                            vision supplement
18530                                                                                                                                   afoxolaner
18531                                                                                                                 ivermectin, pyrantel pamoate
18532                                                                                                                                      taurine
18533                                                                                                                                  l-carnitine
18534                                                                                                                                    probiotic
18535                                                                                                                            vision supplement
18536                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18537                                                                                                                                    firocoxib
18538                                                                                                                 ivermectin, pyrantel pamoate
18539                                                                                                                     fipronil, (s)-methoprene
18540                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18541                                                                                                                 ivermectin, pyrantel pamoate
18542                                                                                                                     fipronil, (s)-methoprene
18543                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18544                                                                                                                           maropitant citrate
18545                                                                                                                           maropitant citrate
18546                                                                                                                                    firocoxib
18547                                                                                                                                dexamethasone
18548                                                                                                                         cefpodoxime proxetil
18549                                                                                                                               hydrocortisone
18550                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18551                                                                                                                                   penicillin
18552                                                                                                                             atropine sulfate
18553                                                                                                                                  amoxicillin
18554                                                                                                                                   loperamide
18555                                                                                                                                 fenbendazole
18556                                                                                                                           maropitant citrate
18557                                                                                                                                    cefovecin
18558                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18559                                                                                                                           maropitant citrate
18560                                                                                                                                  amoxicillin
18561                                                                                                                 ivermectin, pyrantel pamoate
18562                                                                                                                            ferrum metallicum
18563                                                                                                                         cefpodoxime proxetil
18564                                                                                                                 ivermectin, pyrantel pamoate
18565                                                                                                                   imidacloprid, pyriproxyfen
18566                                                                                                                                    carprofen
18567                                                                                                           amoxicillin, clavulanate potassium
18568                                                                                                                                  clindamycin
18569                                                                                                                                 enrofloxacin
18570                                                                                                                                   diclofenac
18571                                                                                                                 ivermectin, pyrantel pamoate
18572                                                                                                                                   afoxolaner
18573                                                                                                                                   afoxolaner
18574                                                                                                                     fipronil, (s)-methoprene
18575                                                                                                                 ivermectin, pyrantel pamoate
18576                                                                                                                 ivermectin, pyrantel pamoate
18577                                                                                                                                   afoxolaner
18578                                                                                                                                metronidazole
18579                                                                                                                                   grapiprant
18580                                                                                                                 ivermectin, pyrantel pamoate
18581                                                                                                                                   afoxolaner
18582                                                                                                               sulfamethoxazole, trimethoprim
18583                                                                                                                                 enrofloxacin
18584                                                                                                                                metronidazole
18585                                                                                                                                metronidazole
18586                                                                                                                           maropitant citrate
18587                                                                                                                                   loperamide
18588                                                                                                                                   prednisone
18589                                                                                                                                   ivermectin
18590                                                                                                                                   ivermectin
18591                                                                                                            betamethasone, gentamicin sulfate
18592                                                                                                                  lufenuron, milbemycin oxime
18593                                                                                                                  lufenuron, milbemycin oxime
18594                                                                                                                  lufenuron, milbemycin oxime
18595                                                                                                                   imidacloprid, pyriproxyfen
18596                                                                                                                             milbemycin oxime
18597                                                                                                                                   afoxolaner
18598                                                                                                               milbemycin oxime, praziquantel
18599                                                                                                                                   afoxolaner
18600                                                                                                               milbemycin oxime, praziquantel
18601                                                                                                                                   afoxolaner
18602                                                                                                                                metronidazole
18603                                                                                                                                    trazodone
18604                                                                                                                                    deracoxib
18605                                                                                                                                metronidazole
18606                                                                                                                                    trazodone
18607                                                                                                                                    probiotic
18608                                                                                                                                metronidazole
18609                                                                                                                                    trazodone
18610                                                                                                                                    probiotic
18611                                                                                                                                    deracoxib
18612                                                                                                                                levetiracetam
18613                                                                                                                                 fenbendazole
18614                                                                                                                   milbemycin oxime, spinosad
18615                                                                                                                             milbemycin oxime
18616                                                                                                                                   afoxolaner
18617                                                                                                                             milbemycin oxime
18618                                                                                                                                   afoxolaner
18619                                                                                                                                   gabapentin
18620                                                                                                                                    carprofen
18621                                                                                                 florfenicol, mometasone furoate, terbinafine
18622                                                                                                                                   prednisone
18623                                                                                                                         cefpodoxime proxetil
18624                                                                                                                         cefpodoxime proxetil
18625                                                                                                                                   lokivetmab
18626                                                                                               mometasone furoate, orbifloxacin, posaconazole
18627                                                                                                                                    carprofen
18628                                                                                                                         cefpodoxime proxetil
18629                                                                                                                                 chlorambucil
18630                                                                                                                                 cyclosporine
18631                                                                                                                                  bedinvetmab
18632                                                                                                                                   prednisone
18633                                                                                                                                  bedinvetmab
18634                                                                                                                                metronidazole
18635                                                                                                                         prebiotic, probiotic
18636                                                                                                                                    carprofen
18637                                                                                                                                   cephalexin
18638                                                                                                                                   cephalexin
18639                                                                                                            betamethasone, gentamicin sulfate
18640                                                                                                                                    carprofen
18641                                                                                                                                   cephalexin
18642                                                                                                                                   cephalexin
18643                                                                                                                              diphenhydramine
18644                                                                                                                                   cephalexin
18645                                                                                                                                  oclacitinib
18646                                                                                                                                  oclacitinib
18647                                                                                                                 ivermectin, pyrantel pamoate
18648                                                                                                            allergy immunotherapy - injection
18649                                                                                                                                   nitenpyram
18650                                                                                                                                    carprofen
18651                                                                                                                                     tramadol
18652                                                                                                                                  oclacitinib
18653                                                                                                                                   cephalexin
18654                                                                                                                                   lokivetmab
18655                                                                                                                                   cephalexin
18656                                                                                               mometasone furoate, orbifloxacin, posaconazole
18657                                                                                                                                   lokivetmab
18658                                                                                                                                  oclacitinib
18659                                                                                                                                   cephalexin
18660                                                                                                                                  oclacitinib
18661                                                                                                                                   afoxolaner
18662                                                                                                                 ivermectin, pyrantel pamoate
18663                                                                                                                                  oclacitinib
18664                                                                                                                                   cephalexin
18665                                                                                                                                    trazodone
18666                                                                                                                         prebiotic, probiotic
18667                                                                                                                                  oclacitinib
18668                                                                                                                                  oclacitinib
18669                                                                                                  chlorhexidine gluconate, miconazole nitrate
18670                                                                                                                                   cephalexin
18671                                                                                                                                  oclacitinib
18672                                                                                                                                    trazodone
18673                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18674                                                                                                                                    probiotic
18675                                                                                                                                    carprofen
18676                                                                                                                                   prednisone
18677                                                                                                                                  clindamycin
18678                                                                                                                                   cephalexin
18679                                                                                                                                metronidazole
18680                                                                                                                                  oclacitinib
18681                                                                                                                                    carprofen
18682                                                                                                                                   prednisone
18683                                                                                                                   milbemycin oxime, spinosad
18684                                                                                                                             milbemycin oxime
18685                                                                                                           amoxicillin, clavulanate potassium
18686                                                                                                                 ivermectin, pyrantel pamoate
18687                                                                                              betamethasone, clotrimazole, gentamicin sulfate
18688                                                                                                                                levothyroxine
18689                                                                                                                               chlorphenamine
18690                                                                                                                                   ivermectin
18691                                                                                                                         cefpodoxime proxetil
18692                                                                                                                                   lokivetmab
18693                                                                                                                                   lokivetmab
18694                                                                                                                  lufenuron, milbemycin oxime
18695                                                                                                                       cyphenothrin, fipronil
18696                                                                                                                       cyphenothrin, fipronil
18697                                                                                                                  lufenuron, milbemycin oxime
18698                                                                                                          ear cleaner (zymox), hydrocortisone
18699                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18700                                                                                                                             tylosin tartrate
18701                                                                                                                                sulfasalazine
18702                                                                                                                                metronidazole
18703                                                                                                                 ivermectin, pyrantel pamoate
18704                                                                                                                                   afoxolaner
18705                                                                                                                 ivermectin, pyrantel pamoate
18706                                                                                                                 ivermectin, pyrantel pamoate
18707                                                                                                                 ivermectin, pyrantel pamoate
18708                                                                                                                                   afoxolaner
18709                                                                                                                           maropitant citrate
18710                                                                                                                                metronidazole
18711                                                                                                           amoxicillin, clavulanate potassium
18712                                                                                                                                 enrofloxacin
18713                                                                                                                                    trazodone
18714                                                                                                                                metronidazole
18715                                                                                                           amoxicillin, clavulanate potassium
18716                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18717                                                                                                                                metronidazole
18718                                                                                                            betamethasone, gentamicin sulfate
18719                                                                                                                           maropitant citrate
18720                                                                                                                                   famotidine
18721                                                                                                                                    trazodone
18722                                                                                                                                    trazodone
18723                                                                                                                           maropitant citrate
18724                                                                                                                                metronidazole
18725                                                                                                                           maropitant citrate
18726                                                                                                                                    trazodone
18727                                                                                                                         cefpodoxime proxetil
18728                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18729                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
18730                                                                                                                           maropitant citrate
18731                                                                                                                                    trazodone
18732                                                                                                           fipronil, permethrin, pyriproxyfen
18733                                                                                                           unspecified heartworm preventative
18734                                                                                                                   milbemycin oxime, spinosad
18735                                                                                                                                   nitenpyram
18736                                                                                                                   milbemycin oxime, spinosad
18737                                                                                                                         prebiotic, probiotic
18738                                                                                                                         cefpodoxime proxetil
18739                                                                                                                                metronidazole
18740                                                                                                            trimeprazine tartrate, prednisone
18741                                                                                                   dextromethorphan hydrobromide, guaifenesin
18742                                                                                                                                  minocycline
18743                                                                                                                                   ivermectin
18744                                                                                                                     flumethrin, imidacloprid
18745                                                                                          isoflupredone acetate, neomycin sulfate, tetracaine
18746                                                                                                                                   ivermectin
18747                                                                                                                                   afoxolaner
18748                                                                                                                                    probiotic
18749                                                                                                                 ivermectin, pyrantel pamoate
18750                                                                                                                 ivermectin, pyrantel pamoate
18751                                                                                                                                   afoxolaner
18752                                                                                                                                    trazodone
18753                                                                                                                                    carprofen
18754                                                                                                                                metronidazole
18755                                                                                                                                  fluconazole
18756                                                                                                                                    carprofen
18757                                                                                                                                metronidazole
18758                                                                                                                                   fluoxetine
18759                                                                                                                                    carprofen
18760                                                                                                                                  oclacitinib
18761                                                                                                                                    trazodone
18762                                                                                                                                   gabapentin
18763                                                                                                                                    carprofen
18764                                                                                                                                  oclacitinib
18765                                                                                                                                 ketoconazole
18766                                                                                                                                   gabapentin
18767                                                                                                                                    meloxicam
18768                                                                                                                                     spinosad
18769                                                                                                                             milbemycin oxime
18770                                                                                                           amoxicillin, clavulanate potassium
18771                                                                                                                                      omega 3
18772                                                                                                           amoxicillin, clavulanate potassium
18773                                                                                                                                    probiotic
18774                                                                                                                   milbemycin oxime, spinosad
18775                                                                                                                   milbemycin oxime, spinosad
18776                                                                                                                         cefpodoxime proxetil
18777                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
18778                                                                                                               praziquantel, pyrantel pamoate
18779                                                                                                                                   fluoxetine
18780                                                                                                                                    trazodone
18781                                                                                                                                   fluoxetine
18782                                                                                                                                   fluoxetine
18783                                                                                                                                   fluoxetine
18784                                                                                                                                    carprofen
18785                                                                                                                                   famotidine
18786                                                                                                                                  hydroxyzine
18787                                                                                                                                   prednisone
18788                                                                                                                 hydrocortisone, ketoconazole
18789                                                                                                                                  hydroxyzine
18790                                                                                                                                   famotidine
18791                                                                                                                                   fluoxetine
18792                                                                                                                                    trazodone
18793                                                                                                                                    carprofen
18794                                                                                                                                   prednisone
18795                                                                                                                 ivermectin, pyrantel pamoate
18796                                                                                                                       cyphenothrin, fipronil
18797                                                                                                                 ivermectin, pyrantel pamoate
18798                                                                                                                       cyphenothrin, fipronil
18799                                                                                                                 ivermectin, pyrantel pamoate
18800                                                                                                                 ivermectin, pyrantel pamoate
18801                                                                                                                 ivermectin, pyrantel pamoate
18802                                                                                                                               chlorphenamine
18803                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18804                                                                                                                 ivermectin, pyrantel pamoate
18805                                                                                                                 ivermectin, pyrantel pamoate
18806                                                                                                                             milbemycin oxime
18807                                                                                                                 ivermectin, pyrantel pamoate
18808                                                                                                                                  clindamycin
18809                                                                                                                                metronidazole
18810                                                                                                                           maropitant citrate
18811                                                                                                                                   sucralfate
18812                                                                                                                           maropitant citrate
18813                                                                                                                                    carprofen
18814                                                                                                                                    firocoxib
18815                                                                                                                                    firocoxib
18816                                                                                                                                    carprofen
18817                                                                                                                                    carprofen
18818                                                                                                                                  amoxicillin
18819                                                                                                                                   cephalexin
18820                                                                                                                          ear cleaner (zymox)
18821                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18822                                                                                                                                    carprofen
18823                                                                                                                                    carprofen
18824                                                                                                           amoxicillin, clavulanate potassium
18825                                                                                                                                ciprofloxacin
18826                                                                                                                 ivermectin, pyrantel pamoate
18827                                                                                                                                  oclacitinib
18828                                                                                                                                    meloxicam
18829                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
18830                                                                                                                                levothyroxine
18831                                                                                                                                    trazodone
18832                                                                                                                                levothyroxine
18833                                                                                                                         cefpodoxime proxetil
18834                                                                                                                                  oclacitinib
18835                                                                                                                                    carprofen
18836                                                                                                                   milbemycin oxime, spinosad
18837                                                                                                                   milbemycin oxime, spinosad
18838                                                                                                                                      omega 3
18839                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18840                                                                                                                           maropitant citrate
18841                                                                                                                                metronidazole
18842                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
18843                                                                                                                         cefpodoxime proxetil
18844                                                                                                                     skin and coat supplement
18845                                                                                                                             milbemycin oxime
18846                                                                                                                                   fluralaner
18847                                                                                                                                      omega 3
18848                                                                                                                                  oclacitinib
18849                                                                                                                                   cetirizine
18850                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18851                                                                                                                                  oclacitinib
18852                                                                                                                                   fluralaner
18853                                                                                                                             milbemycin oxime
18854                                                                                                                                      omega 3
18855                                                                                                                             milbemycin oxime
18856                                                                                                                                   fluralaner
18857                                                                                                                                  oclacitinib
18858                                                                                                                                    carprofen
18859                                                                                                                                   cephalexin
18860                                                                                                                                  amoxicillin
18861                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
18862                                                                                                                                  oclacitinib
18863                                                                                                                                    carprofen
18864                                                                                                                             milbemycin oxime
18865                                                                                                                                   fluralaner
18866                                                                                                                                  amoxicillin
18867                                                                                                                                  oclacitinib
18868                                                                                                                                   lokivetmab
18869                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18870                                                                                                                                      omega 3
18871                                                                                                                                 enrofloxacin
18872                                                                                                                                  clindamycin
18873                                                                                                                                    carprofen
18874                                                                                                                   milbemycin oxime, spinosad
18875                                                                                                                   milbemycin oxime, spinosad
18876                                                                                                                                   afoxolaner
18877                                                                                                   dextromethorphan hydrobromide, guaifenesin
18878                                                                                                                                   ivermectin
18879                                                                                                                   milbemycin oxime, spinosad
18880                                                                                                                                   afoxolaner
18881                                                                                                                                   ivermectin
18882                                                                                   dexamethasone, dimethyl sulfoxide, enrofloxacin, lidocaine
18883                                                                                                                                   cephalexin
18884                                                                                                                           methylprednisolone
18885                                                                                                                                   gabapentin
18886                                                                                                                 ivermectin, pyrantel pamoate
18887                                                                                                                                   afoxolaner
18888                                                                                                                         butorphanol tartrate
18889                                                                                                                                    midazolam
18890                                                                                                                        tiletamine, zolazepam
18891                                                                                                                                    meloxicam
18892                                                                                                                         cefpodoxime proxetil
18893                                                                                                                                    probiotic
18894                                                                                                                 ivermectin, pyrantel pamoate
18895                                                                                                                                   afoxolaner
18896                                                                                                          ear cleaner (zymox), hydrocortisone
18897                                                                                                                    immune support supplement
18898                                                                                                                                   sucralfate
18899                                                                                                                                yunnan baiyao
18900                                                                                                                                   gabapentin
18901                                                                                                                                methocarbamol
18902                                                                                                                 ivermectin, pyrantel pamoate
18903                                                                                                                                   afoxolaner
18904                                                                                                                                methocarbamol
18905                                                                                                                                buprenorphine
18906                                                                                                                                methocarbamol
18907                                                                                                                                   gabapentin
18908                                                                                                                                   ivermectin
18909                                                                                                                     imidacloprid, permethrin
18910                                                                                                                 ivermectin, pyrantel pamoate
18911                                                                                                                                   gabapentin
18912                                                                                                                                    carprofen
18913                                                                                                                   imidacloprid, pyriproxyfen
18914                                                                                                                 ivermectin, pyrantel pamoate
18915                                                                                                                 ivermectin, pyrantel pamoate
18916                                                                                                                                   afoxolaner
18917                                                                                                                 ivermectin, pyrantel pamoate
18918                                                                                                                                   afoxolaner
18919                                                                                                                     flumethrin, imidacloprid
18920                                                                                                                 ivermectin, pyrantel pamoate
18921                                                                                                                     flumethrin, imidacloprid
18922                                                                                                                                yunnan baiyao
18923                                                                                                                              chloramphenicol
18924                                                                                                                  lufenuron, milbemycin oxime
18925                                                                                                                                    carprofen
18926                                                                                                                                metronidazole
18927                                                                                                                                  amoxicillin
18928                                                                                                                                metronidazole
18929                                                                                                                                 fenbendazole
18930                                                                                                                                   ivermectin
18931                                                                                                                     fipronil, (s)-methoprene
18932                                                                                                                 ivermectin, pyrantel pamoate
18933                                                                                                                                   fluralaner
18934                                                                                                                 ivermectin, pyrantel pamoate
18935                                                                                                                 ivermectin, pyrantel pamoate
18936                                                                                                                     flumethrin, imidacloprid
18937                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
18938                                                                                                                                   cephalexin
18939                                                                                                                                   ivermectin
18940                                                                                                                 ivermectin, pyrantel pamoate
18941                                                                                                                         cefpodoxime proxetil
18942                                                                                                                                   grapiprant
18943                                                                                                                                   gabapentin
18944                                                                                                                                   grapiprant
18945                                                                                                                                 enrofloxacin
18946                                                                                                                                  bedinvetmab
18947                                                                                                                                   grapiprant
18948                                                                                                                         prednisolone acetate
18949                                                                                                                                   cephalexin
18950                                                                                                                                   selamectin
18951                                                                                                                                   ivermectin
18952                                                                                                                             pyrantel pamoate
18953                                                                                                                                 imidacloprid
18954                                                                                                                                   permethrin
18955                                                                                                                                    probiotic
18956                                                                                                                                  oclacitinib
18957                                                                                                                         cefpodoxime proxetil
18958                                                                                                                                  oclacitinib
18959                                                                                                                                   afoxolaner
18960                                                                                                                 ivermectin, pyrantel pamoate
18961                                                                                                                                    probiotic
18962                                                                                                                 ivermectin, pyrantel pamoate
18963                                                                                                                                   afoxolaner
18964                                                                                                                                    probiotic
18965                                                                                                                                  oclacitinib
18966                                                                                                                                   pimobendan
18967                                                                                                                 ivermectin, pyrantel pamoate
18968                                                                                                                                   afoxolaner
18969                                                                                                                                   pimobendan
18970                                                                                                                                    probiotic
18971                                                                                                                         digestive supplement
18972                                                                                                                 ivermectin, pyrantel pamoate
18973                                                                                                                                   afoxolaner
18974                                                                                                                                   pimobendan
18975                                                                                                                 ivermectin, pyrantel pamoate
18976                                                                                                                                   afoxolaner
18977                                                                                                                                   pimobendan
18978                                                                                                                         cefpodoxime proxetil
18979                                                                                                                                   pimobendan
18980                                                                                                                 ivermectin, pyrantel pamoate
18981                                                                                                                                  doxycycline
18982                                                                                                                 ivermectin, pyrantel pamoate
18983                                                                                                                                metronidazole
18984                                                                                                                                  doxycycline
18985                                                                                                                                 enrofloxacin
18986                                                                                                                                  amoxicillin
18987                                                                                                                 ivermectin, pyrantel pamoate
18988                                                                                                                                    probiotic
18989                                                                                                                     joint supplement (other)
18990                                                                                                                 ivermectin, pyrantel pamoate
18991                                                                                                                 ivermectin, pyrantel pamoate
18992                                                                                                                             tylosin tartrate
18993                                                                                                                                    probiotic
18994                                                                                                                               xiang lian san
18995                                                                                                                    immune support supplement
18996                                                                                                                         cefpodoxime proxetil
18997                                                                                                                       acetaminophen, codeine
18998                                                                                                                           maropitant citrate
18999                                                                                                                 ivermectin, pyrantel pamoate
19000                                                                                                                                  oclacitinib
19001                                                                                                                                    carprofen
19002                                                                                                                         cefpodoxime proxetil
19003                                                                                                                     fipronil, (s)-methoprene
19004                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19005                                                                                                            betamethasone, gentamicin sulfate
19006                                                                                                                            hypochlorous acid
19007                                                                                                                                    vitamin d
19008                                                                                                                                   wind toxin
19009                                                                                                                                stomach happy
19010                                                                                                                               wei qi booster
19011                                                                                                       joint supplement (glucosamine hcl/msm)
19012                                                                                                                                 multivitamin
19013                                                                                                                                    probiotic
19014                                                                                                                                    vitamin c
19015                                                                                                                                   cetirizine
19016                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19017                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19018                                                                                                                         cefpodoxime proxetil
19019                                                                                                                       acetaminophen, codeine
19020                                                                                                                                   cetirizine
19021                                                                                                               polysulfated glycosaminoglycan
19022                                                                                                                   milbemycin oxime, spinosad
19023                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19024                                                                                                                  lufenuron, milbemycin oxime
19025                                                                                                                  lufenuron, milbemycin oxime
19026                                                                                                                                    deracoxib
19027                                                                                                                                   gabapentin
19028                                                                                                                                   prednisone
19029                                                                                                                                   gabapentin
19030                                                                                                                                   prednisone
19031                                                                                                           amoxicillin, clavulanate potassium
19032                                                                                                                   milbemycin oxime, spinosad
19033                                                                                                                             milbemycin oxime
19034                                                                                                                                    lufenuron
19035                                                                                                                                 praziquantel
19036                                                                                                                 ivermectin, pyrantel pamoate
19037                                                                                                                                   afoxolaner
19038                                                                                                                 ivermectin, pyrantel pamoate
19039                                                                                                                                   afoxolaner
19040                                                                                                                   milbemycin oxime, spinosad
19041                                                                                                                             milbemycin oxime
19042                                                                                                                 ivermectin, pyrantel pamoate
19043                                                                                                                     fipronil, (s)-methoprene
19044                                                                                                                             sulfadimethoxine
19045                                                                                                                         digestive supplement
19046                                                                                                                   sulfadiazine, trimethoprim
19047                                                                                                                                   sucralfate
19048                                                                                                                                metronidazole
19049                                                                                                                          ear cleaner (zymox)
19050                                                                                                                 ivermectin, pyrantel pamoate
19051                                                                                                                     fipronil, (s)-methoprene
19052                                                                                                                         cefpodoxime proxetil
19053                                                                                                                                   prednisone
19054                                                                                                                 ivermectin, pyrantel pamoate
19055                                                                                                                     fipronil, (s)-methoprene
19056                                                                                                                                 multivitamin
19057                                                                                              dexamethasone, enrofloxacin, miconazole nitrate
19058                                                                                              dexamethasone, enrofloxacin, miconazole nitrate
19059                                                                                                                                levothyroxine
19060                                                                                                                                levothyroxine
19061                                                                                                                     fipronil, (s)-methoprene
19062                                                                                                                 ivermectin, pyrantel pamoate
19063                                                                                                           amoxicillin, clavulanate potassium
19064                                                                                                                                   gabapentin
19065                                                                                                                                     tramadol
19066                                                                                                                                    carprofen
19067                                                                                                                 ivermectin, pyrantel pamoate
19068                                                                                                                 ivermectin, pyrantel pamoate
19069                                                                                                               unspecified thyroid medication
19070                                                                                                                  lufenuron, milbemycin oxime
19071                                                                                                                                    firocoxib
19072                                                                                                                     fipronil, (s)-methoprene
19073                                                                                                                  lufenuron, milbemycin oxime
19074                                                                                                                                metronidazole
19075                                                                                                     febantel, praziquantel, pyrantel pamoate
19076                                                                                                                                    carprofen
19077                                                                                                                     fipronil, (s)-methoprene
19078                                                                                                                  lufenuron, milbemycin oxime
19079                                                                                                                                   penicillin
19080                                                                                                                                dexamethasone
19081                                                                                                                             atropine sulfate
19082                                                                                                                     fipronil, (s)-methoprene
19083                                                                                                                 ivermectin, pyrantel pamoate
19084                                                                                                                                    carprofen
19085                                                                                                                 ivermectin, pyrantel pamoate
19086                                                                                                                             pyrantel pamoate
19087                                                                                                                     fipronil, (s)-methoprene
19088                                                                                                                 ivermectin, pyrantel pamoate
19089                                                                                                                     fipronil, (s)-methoprene
19090                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19091                                                                                                                         butorphanol tartrate
19092                                                                                                                                    carprofen
19093                                                                                                                             sulfadimethoxine
19094                                                                                                                             atropine sulfate
19095                                                                                                                         butorphanol tartrate
19096                                                                                                                                     ketamine
19097                                                                                                                                     xylazine
19098                                                                                                                                  atipamezole
19099                                                                                                                                    carprofen
19100                                                                                                                                    carprofen
19101                                                                                               mometasone furoate, orbifloxacin, posaconazole
19102                                                                                                                     imidacloprid, moxidectin
19103                                                                                                                                   ivermectin
19104                                                                                                       joint supplement (glucosamine hcl/msm)
19105                                                                                                                     imidacloprid, permethrin
19106                                                                                                                                metronidazole
19107                                                                                                                           maropitant citrate
19108                                                                                                                                   famotidine
19109                                                                                                                   imidacloprid, pyriproxyfen
19110                                                                                                                        clorsulon, ivermectin
19111                                                                                                       joint supplement (glucosamine hcl/msm)
19112                                                                                                           amoxicillin, clavulanate potassium
19113                                                                                                                                   afoxolaner
19114                                                                                                                        clorsulon, ivermectin
19115                                                                                                                                    cisapride
19116                                                                                                                                   sucralfate
19117                                                                                                                                   omeprazole
19118                                                                                                                                   famotidine
19119                                                                                                                                    cisapride
19120                                                                                                                                    cisapride
19121                                                                                                       joint supplement (glucosamine hcl/msm)
19122                                                                                                                     imidacloprid, permethrin
19123                                                                                                                                   ivermectin
19124                                                                                                                                   penicillin
19125                                                                                                                                    carprofen
19126                                                                                                                                    midazolam
19127                                                                                                                                     ketamine
19128                                                                                                                         butorphanol tartrate
19129                                                                                                                                 acepromazine
19130                                                                                                                                   fluralaner
19131                                                                                                                                    cisapride
19132                                                                                                                                   famotidine
19133                                                                                                       joint supplement (glucosamine hcl/msm)
19134                                                                                                                                   ivermectin
19135                                                                                                                                    cisapride
19136                                                                                                                                   famotidine
19137                                                                                                       joint supplement (glucosamine hcl/msm)
19138                                                                                                                                    cisapride
19139                                                                                                                                   famotidine
19140                                                                                                       joint supplement (glucosamine hcl/msm)
19141                                                                                                                                      omega 3
19142                                                                                                                                    probiotic
19143                                                                                                                                    cisapride
19144                                                                                                                                   famotidine
19145                                                                                                                                      omega 3
19146                                                                                                                                    probiotic
19147                                                                                                                                   prednisone
19148                                                                                                                                   prednisone
19149                                                                                                                                    cisapride
19150                                                                                                                                   omeprazole
19151                                                                                                                                    probiotic
19152                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
19153                                                                                                                                   afoxolaner
19154                                                                                                                             milbemycin oxime
19155                                                                                                                           miconazole nitrate
19156                                                                                                                           miconazole nitrate
19157                                                                                                               milbemycin oxime, praziquantel
19158                                                                                                                                   afoxolaner
19159                                                                                                                                    lomustine
19160                                                                                                                                   prednisone
19161                                                                                                                                    firocoxib
19162                                                                                          enrofloxacin, ketoconazole, triamcinolone acetonide
19163                                                                                                                                   cetirizine
19164                                                                                                                     skin and coat supplement
19165                                                                                                                 ivermectin, pyrantel pamoate
19166                                                                                                                 ivermectin, pyrantel pamoate
19167                                                                                                                     fipronil, (s)-methoprene
19168                                                                                                                         prednisolone acetate
19169                                                                                                                                   ivermectin
19170                                                                                                                     fipronil, (s)-methoprene
19171                                                                                                                                  oclacitinib
19172                                                                                                                                  oclacitinib
19173                                                                                                                                  doxycycline
19174                                                                                                                                  doxycycline
19175                                                                                                                                  doxycycline
19176                                                                                                                                 praziquantel
19177                                                                                                                                   ivermectin
19178                                                                                                                     flumethrin, imidacloprid
19179                                                                                                                                   ivermectin
19180                                                                                                                                  doxycycline
19181                                                                                                            trimeprazine tartrate, prednisone
19182                                                                                                                                   ivermectin
19183                                                                                                                     flumethrin, imidacloprid
19184                                                                                                                                   ivermectin
19185                                                                                                                                 enrofloxacin
19186                                                                                                                                   cephalexin
19187                                                                                                                  dexamethasone, enrofloxacin
19188                                                                                                            betamethasone, gentamicin sulfate
19189                                                                                                                                    carprofen
19190                                                                                                                                    carprofen
19191                                                                                                                                   cephalexin
19192                                                                                                                                   gabapentin
19193                                                                                                 florfenicol, mometasone furoate, terbinafine
19194                                                                                                                                    carprofen
19195                                                                                                                                   cetirizine
19196                                                                                                                         cefpodoxime proxetil
19197                                                                                                                           maropitant citrate
19198                                                                                                                                   cetirizine
19199                                                                                                                              diphenhydramine
19200                                                                                                                           maropitant citrate
19201                                                                                                                                   omeprazole
19202                                                                                                                                   prednisone
19203                                                                                                                                 praziquantel
19204                                                                                                                                   ivermectin
19205                                                                                                           amoxicillin, clavulanate potassium
19206                                                                                                                                   ivermectin
19207                                                                                                                                   ivermectin
19208                                                                                                                                 praziquantel
19209                                                                                                                         cefpodoxime proxetil
19210                                                                                                                                     tramadol
19211                                                                                                                                    carprofen
19212                                                                                                           amoxicillin, clavulanate potassium
19213                                                                                                                             pyrantel pamoate
19214                                                                                                                                  toltrazuril
19215                                                                                                                  lufenuron, milbemycin oxime
19216                                                                                                        dinotefuran, permethrin, pyriproxyfen
19217                                                                                                        dinotefuran, permethrin, pyriproxyfen
19218                                                                                                                            hydrogen peroxide
19219                                                                                                                                    carprofen
19220                                                                                                                 ivermectin, pyrantel pamoate
19221                                                                                                                 ivermectin, pyrantel pamoate
19222                                                                                                                                   fluralaner
19223                                                                                                                 ivermectin, pyrantel pamoate
19224                                                                                                                     flumethrin, imidacloprid
19225                                                                                                                                metronidazole
19226                                                                                                                                    probiotic
19227                                                                                                                                metronidazole
19228                                                                                                                                   sucralfate
19229                                                                                                                                metronidazole
19230                                                                                                                         cefpodoxime proxetil
19231                                                                                                                                    probiotic
19232                                                                                                                           maropitant citrate
19233                                                                                                                                   omeprazole
19234                                                                                                                                   sucralfate
19235                                                                                                                                metronidazole
19236                                                                                                                                   sucralfate
19237                                                                                                                                   famotidine
19238                                                                                                                                    carprofen
19239                                                                                                                                   cephalexin
19240                                                                                                                                    carprofen
19241                                                                                                                         cefpodoxime proxetil
19242                                                                                                                                    carprofen
19243                                                                                                                                   ivermectin
19244                                                                                                                             pyrantel pamoate
19245                                                                                                                     joint supplement (other)
19246                                                                                                                     joint supplement (other)
19247                                                                                                                                metronidazole
19248                                                                                                              aminopentamide hydrogen sulfate
19249                                                                                                                                   sucralfate
19250                                                                                                           amoxicillin, clavulanate potassium
19251                                                                                                           amoxicillin, clavulanate potassium
19252                                                                                                                                ciprofloxacin
19253                                                                                                                         cefpodoxime proxetil
19254                                                                                                                                   prednisone
19255                                                                                                                 ivermectin, pyrantel pamoate
19256                                                                                                                 ivermectin, pyrantel pamoate
19257                                                                                                                             milbemycin oxime
19258                                                                                                                             milbemycin oxime
19259                                                                                                                             milbemycin oxime
19260                                                                                                                                    meloxicam
19261                                                                                                                   sulfadiazine, trimethoprim
19262                                                                                                                                metronidazole
19263                                                                                                                           maropitant citrate
19264                                                                                                                                   sucralfate
19265                                                                                                                                    meloxicam
19266                                                                                                                             tylosin tartrate
19267                                                                                                                         cefpodoxime proxetil
19268                                                                                                                                    meloxicam
19269                                                                                                           amoxicillin, clavulanate potassium
19270                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19271                                                                                                                  lufenuron, milbemycin oxime
19272                                                                                                                                   fluralaner
19273                                                                                                                  lufenuron, milbemycin oxime
19274                                                                                                                                   fluralaner
19275                                                                                                                         cefpodoxime proxetil
19276                                                                                                 florfenicol, mometasone furoate, terbinafine
19277                                                                                                                         cefpodoxime proxetil
19278                                                                                                                  lufenuron, milbemycin oxime
19279                                                                                                                                   fluralaner
19280                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19281                                                                                                                  lufenuron, milbemycin oxime
19282                                                                                                                                   fluralaner
19283                                                                                                                                   cephalexin
19284                                                                                                                                   cephalexin
19285                                                                                                                                  oclacitinib
19286                                                                                                                                  oclacitinib
19287                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19288                                                                                                 florfenicol, mometasone furoate, terbinafine
19289                                                                                                                                    carprofen
19290                                                                                                   dimethyl sulfoxide, fluocinolone acetonide
19291                                                                                                                                   cephalexin
19292                                                                                                           amoxicillin, clavulanate potassium
19293                                                                                                                                 enrofloxacin
19294                                                                                                                                    carprofen
19295                                                                                                                                 enrofloxacin
19296                                                                                                                                  oclacitinib
19297                                                                                                                                    carprofen
19298                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19299                                                                                                 florfenicol, mometasone furoate, terbinafine
19300                                                                                                                                  oclacitinib
19301                                                                                                                                    carprofen
19302                                                                                                                 ivermectin, pyrantel pamoate
19303                                                                                                                     fipronil, (s)-methoprene
19304                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19305                                                                                                                 ivermectin, pyrantel pamoate
19306                                                                                                                     fipronil, (s)-methoprene
19307                                                                                                                                   cephalexin
19308                                                                                                                         butorphanol tartrate
19309                                                                                                                                marbofloxacin
19310                                                                                                                                    carprofen
19311                                                                                                                                    carprofen
19312                                                                                                    lufenuron, milbemycin oxime, praziquantel
19313                                                                                                                     fipronil, (s)-methoprene
19314                                                                                                                  lufenuron, milbemycin oxime
19315                                                                                                                     fipronil, (s)-methoprene
19316                                                                                                                     homatropine, hydrocodone
19317                                                                                                                  lufenuron, milbemycin oxime
19318                                                                                                                     fipronil, (s)-methoprene
19319                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19320                                                                                                                                  oclacitinib
19321                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19322                                                                                                                                    carprofen
19323                                                                                                                         prednisolone acetate
19324                                                                                                                                    trazodone
19325                                                                                                                         prednisolone acetate
19326                                                                                                                  lufenuron, milbemycin oxime
19327                                                                                                                     imidacloprid, permethrin
19328                                                                                                           amoxicillin, clavulanate potassium
19329                                                                                                                   sulfadiazine, trimethoprim
19330                                                                                                                                metronidazole
19331                                                                                                                                metronidazole
19332                                                                                                                                metronidazole
19333                                                                                                                             milbemycin oxime
19334                                                                                                                         cefpodoxime proxetil
19335                                                                                                                         cefpodoxime proxetil
19336                                                                                                                                    carprofen
19337                                                                                                           amoxicillin, clavulanate potassium
19338                                                                                                                             liver supplement
19339                                                                                                                                     ursodiol
19340                                                                                                                                metronidazole
19341                                                                                                                                 fenbendazole
19342                                                                                                     febantel, praziquantel, pyrantel pamoate
19343                                                                                                                                   cephalexin
19344                                                                                                                 ivermectin, pyrantel pamoate
19345                                                                                                                                   fluralaner
19346                                                                                                            betamethasone, gentamicin sulfate
19347                                                                                                      betamethasone, florfenicol, terbinafine
19348                                                                                                                                    carprofen
19349                                                                                                                                   cephalexin
19350                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19351                                                                                                                                    carprofen
19352                                                                                                                                    carprofen
19353                                                                                                               polysulfated glycosaminoglycan
19354                                                                                                                                 chlorambucil
19355                                                                                                                                    carprofen
19356                                                                                                                                   ivermectin
19357                                                                                                                             milbemycin oxime
19358                                                                                                                                  oclacitinib
19359                                                                                                                 ivermectin, pyrantel pamoate
19360                                                                                                                                  oclacitinib
19361                                                                                                                   imidacloprid, pyriproxyfen
19362                                                                                                                                  oclacitinib
19363                                                                                                                                sulfasalazine
19364                                                                                                                                  oclacitinib
19365                                                                                                                                   ivermectin
19366                                                                                                                                   ivermectin
19367                                                                                                                 ivermectin, pyrantel pamoate
19368                                                                                                                 ivermectin, pyrantel pamoate
19369                                                                                                                                   afoxolaner
19370                                                                                                               polysulfated glycosaminoglycan
19371                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19372                                                                                                                                    carprofen
19373                                                                                                                 ivermectin, pyrantel pamoate
19374                                                                                                                                    sarolaner
19375                                                                                                               polysulfated glycosaminoglycan
19376                                                                                                                 ivermectin, pyrantel pamoate
19377                                                                                                                                    sarolaner
19378                                                                                                               polysulfated glycosaminoglycan
19379                                                                                                                                      omega 3
19380                                                                                                                 ivermectin, pyrantel pamoate
19381                                                                                                                                    sarolaner
19382                                                                                                               polysulfated glycosaminoglycan
19383                                                                                                           amoxicillin, clavulanate potassium
19384                                                                                                               polysulfated glycosaminoglycan
19385                                                                                                               polysulfated glycosaminoglycan
19386                                                                                                                  lufenuron, milbemycin oxime
19387                                                                                                                  lufenuron, milbemycin oxime
19388                                                                                                           amoxicillin, clavulanate potassium
19389                                                                                                                                    carprofen
19390                                                                                                            betamethasone, gentamicin sulfate
19391                                                                                                                  lufenuron, milbemycin oxime
19392                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19393                                                                                                           amoxicillin, clavulanate potassium
19394                                                                                                                                    carprofen
19395                                                                                                            betamethasone, gentamicin sulfate
19396                                                                                                                             sulfadimethoxine
19397                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19398                                                                                                                                   prednisone
19399                                                                                                                  lufenuron, milbemycin oxime
19400                                                                                                                                    deracoxib
19401                                                                                                                 ivermectin, pyrantel pamoate
19402                                                                                                                 ivermectin, pyrantel pamoate
19403                                                                                                     febantel, praziquantel, pyrantel pamoate
19404                                                                                                                             sulfadimethoxine
19405                                                                                                    lufenuron, milbemycin oxime, praziquantel
19406                                                                                                                                metronidazole
19407                                                                                                    lufenuron, milbemycin oxime, praziquantel
19408                                                                                                                             milbemycin oxime
19409                                                                                                               milbemycin oxime, praziquantel
19410                                                                                                               sulfamethoxazole, trimethoprim
19411                                                                                                                         cefpodoxime proxetil
19412                                                                                                                                   grapiprant
19413                                                                                                                                  doxycycline
19414                                                                                                                                   grapiprant
19415                                                                                                                 ivermectin, pyrantel pamoate
19416                                                                                                                 ivermectin, pyrantel pamoate
19417                                                                                                                                levothyroxine
19418                                                                                                                                levothyroxine
19419                                                                                                                                    piroxicam
19420                                                                                                                                 chlorambucil
19421                                                                                                                         cefpodoxime proxetil
19422                                                                                                                          clemastine fumarate
19423                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19424                                                                                                                                     fipronil
19425                                                                                                                     fipronil, (s)-methoprene
19426                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19427                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19428                                                                                                                                  clindamycin
19429                                                                                                                                     diazepam
19430                                                                                                                                  doxycycline
19431                                                                                                                 ivermectin, pyrantel pamoate
19432                                                                                                                 ivermectin, pyrantel pamoate
19433                                                                                                                 ivermectin, pyrantel pamoate
19434                                                                                                                                      taurine
19435                                                                                                                                  l-carnitine
19436                                                                                                                                  hydroxyzine
19437                                                                                                              ear cleaner (epi-otic advanced)
19438                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19439                                                                                                                         prednisolone acetate
19440                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19441                                                                                                           amoxicillin, clavulanate potassium
19442                                                                                                            betamethasone, gentamicin sulfate
19443                                                                                                                                    deracoxib
19444                                                                                                                                     tramadol
19445                                                                                                                  lufenuron, milbemycin oxime
19446                                                                                                                       cyphenothrin, fipronil
19447                                                                                                                  lufenuron, milbemycin oxime
19448                                                                                                                                   fluralaner
19449                                                                                                   joint supplement (chondroitin sulfate/msm)
19450                                                                                                                                      omega 3
19451                                                                                                                                metronidazole
19452                                                                                                        chlorhexidine gluconate, ketoconazole
19453                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19454                                                                                                                      ketoconazole, tris-edta
19455                                                                                                                                   omeprazole
19456                                                                                                                              diphenhydramine
19457                                                                                                                  lufenuron, milbemycin oxime
19458                                                                                                                                   prednisone
19459                                                                                                                                  amoxicillin
19460                                                                                                                         cefpodoxime proxetil
19461                                                                                                                                   fluralaner
19462                                                                                                                  lufenuron, milbemycin oxime
19463                                                                                                                                   fluralaner
19464                                                                                                                                 enrofloxacin
19465                                                                                                               ketoconazole, phytosphingosine
19466                                                                                                                                   lokivetmab
19467                                                                                                                                   gabapentin
19468                                                                                                                                    deracoxib
19469                                                                                                                                 enrofloxacin
19470                                                                                                                                  ondansetron
19471                                                                                                                                  amoxicillin
19472                                                                                                                                   lokivetmab
19473                                                                                                                                    carprofen
19474                                                                                                                                   amantadine
19475                                                                                                                                    carprofen
19476                                                                                                                                    meloxicam
19477                                                                                                                                     tramadol
19478                                                                                                                         cefpodoxime proxetil
19479                                                                                                                                   cephalexin
19480                                                                                                                                   cephalexin
19481                                                                                                                                metronidazole
19482                                                                                                                 ivermectin, pyrantel pamoate
19483                                                                                                                      acetic acid, boric acid
19484                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19485                                                                                                                                  clindamycin
19486                                                                                                                 ivermectin, pyrantel pamoate
19487                                                                                                                                   afoxolaner
19488                                                                                                                           maropitant citrate
19489                                                                                                                                   famotidine
19490                                                                                                            trimeprazine tartrate, prednisone
19491                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19492                                                                                                                 ivermectin, pyrantel pamoate
19493                                                                                                                                   afoxolaner
19494                                                                                                  chlorhexidine gluconate, miconazole nitrate
19495                                                                                                   toothpaste/dental health solution or chews
19496                                                                                                                                   lokivetmab
19497                                                                                                                 ivermectin, pyrantel pamoate
19498                                                                                                                                   afoxolaner
19499                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19500                                                                                                            betamethasone, gentamicin sulfate
19501                                                                                                  chlorhexidine gluconate, miconazole nitrate
19502                                                                                                                                   lokivetmab
19503                                                                                                                 ivermectin, pyrantel pamoate
19504                                                                                                                                   afoxolaner
19505                                                                                         burow's solution, hydrocortisone, miconazole nitrate
19506                                                                                                                                  oclacitinib
19507                                                                                                              ear cleaner (epi-otic advanced)
19508                                                                                                                 ivermectin, pyrantel pamoate
19509                                                                                                                                   afoxolaner
19510                                                                                                                                    enalapril
19511                                                                                                                                   pimobendan
19512                                                                                                                                  oclacitinib
19513                                                                                                                                   lokivetmab
19514                                                                                                 florfenicol, mometasone furoate, terbinafine
19515                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19516                                                                                                                                      taurine
19517                                                                                                                                  l-carnitine
19518                                                                                                                                   lokivetmab
19519                                                                                                                                   lokivetmab
19520                                                                                                                                    enalapril
19521                                                                                                                                   pimobendan
19522                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19523                                                                                                                      ketoconazole, tris-edta
19524                                                                                                  chlorhexidine gluconate, miconazole nitrate
19525                                                                                                                                    lomustine
19526                                                                                                                                   prednisone
19527                                                                                                                                 enrofloxacin
19528                                                                                                                                   cephalexin
19529                                                                                                                                    enalapril
19530                                                                                                                                   pimobendan
19531                                                                                                                                   verdinexor
19532                                                                                                                             liver supplement
19533                                                                                                                                   famotidine
19534                                                                                                                                    melatonin
19535                                                                                                                                    carprofen
19536                                                                                                                                   prednisone
19537                                                                                                                                   ivermectin
19538                                                                                                            enrofloxacin, silver sulfadiazine
19539                                                                                       gentamicin sulfate, hydrocortisone, miconazole nitrate
19540                                                                                                                                ciprofloxacin
19541                                                                                                                                   ivermectin
19542                                                                                                                                   ivermectin
19543                                                                                                                 ivermectin, pyrantel pamoate
19544                                                                                                                     fipronil, (s)-methoprene
19545                                                                                                                                  oclacitinib
19546                                                                                                                                   cephalexin
19547                                                                                                                      triamcinolone acetonide
19548                                                                                                                                    omega 3-6
19549                                                                                                                                   loratadine
19550                                                                                                                     fipronil, (s)-methoprene
19551                                                                                                                                   ivermectin
19552                                                                                                                                   loratadine
19553                                                                                                                         cefpodoxime proxetil
19554                                                                                                                                    tris-edta
19555                                                                                                                                   cephalexin
19556                                                                                                                                 azithromycin
19557                                                                                                                               benazepril hcl
19558                                                                                                                             sulfadimethoxine
19559                                                                                                                                   cephalexin
19560                                                                                                                                   prednisone
19561                                                                                                                                   cephalexin
19562                                                                                                                      chlorhexidine gluconate
19563                                                                                                                                  terbinafine
19564                                                                                                                                   prednisone
19565                                                                                                                                      omega 3
19566                                                                                                                                  terbinafine
19567                                                                                                                                 ketoconazole
19568                                                                                       hydrocortisone, gentamicin sulfate, miconazole nitrate
19569                                                                                                                           maropitant citrate
19570                                                                                                                           maropitant citrate
19571                                                                                                                                metronidazole
19572                                                                                                                                metronidazole
19573                                                                                                                                  plasma-lyte
19574                                                                                                                                   cephalexin
19575                                                                                                                                  terbinafine
19576                                                                                                                                   cephalexin
19577                                                                                                                                   prednisone
19578                                                                                                                                 ketoconazole
19579                                                                                                                           maropitant citrate
19580                                                                                                                                metronidazole
19581                                                                                                                                  plasma-lyte
19582                                                                                                      betamethasone, florfenicol, terbinafine
19583                                                                                                                                   cephalexin
19584                                                                                                                                   prednisone
19585                                                                                                                                 ketoconazole
19586                                                                                                                                   prednisone
19587                                                                                                                                 ketoconazole
19588                                                                                                                      chlorhexidine gluconate
19589                                                                                                                                 acepromazine
19590                                                                                                                  lufenuron, milbemycin oxime
19591                                                                                                        dinotefuran, permethrin, pyriproxyfen
19592                                                                                                      betamethasone, florfenicol, terbinafine
19593                                                                                                                                 ketoconazole
19594                                                                                                                         cefpodoxime proxetil
19595                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19596                                                                                                    lufenuron, milbemycin oxime, praziquantel
19597                                                                                                        dinotefuran, permethrin, pyriproxyfen
19598                                                                                                                         cefpodoxime proxetil
19599                                                                                                                                 ketoconazole
19600                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19601                                                                                                      betamethasone, florfenicol, terbinafine
19602                                                                                                                              dexmedetomidine
19603                                                                                                                   milbemycin oxime, spinosad
19604                                                                                                        dinotefuran, permethrin, pyriproxyfen
19605                                                                                                                                    carprofen
19606                                                                                                                                   prednisone
19607                                                                                                                                   prednisone
19608                                                                                                                                    carprofen
19609                                                                                                                                   prednisone
19610                                                                                                                 ivermectin, pyrantel pamoate
19611                                                                                                                 ivermectin, pyrantel pamoate
19612                                                                                                                     fipronil, (s)-methoprene
19613                                                                                                                 ivermectin, pyrantel pamoate
19614                                                                                                                              diphenhydramine
19615                                                                                               mometasone furoate, orbifloxacin, posaconazole
19616                                                                                                                 ivermectin, pyrantel pamoate
19617                                                                                                                     fipronil, (s)-methoprene
19618                                                                                                                              diphenhydramine
19619                                                                                                                         cefpodoxime proxetil
19620                                                                                                                                  oclacitinib
19621                                                                                                                 ivermectin, pyrantel pamoate
19622                                                                                                                     fipronil, (s)-methoprene
19623                                                                                                                                  oclacitinib
19624                                                                                                                 ivermectin, pyrantel pamoate
19625                                                                                                                                  oclacitinib
19626                                                                                                                 ivermectin, pyrantel pamoate
19627                                                                                                                     fipronil, (s)-methoprene
19628                                                                                                                                  oclacitinib
19629                                                                                                                         cefpodoxime proxetil
19630                                                                                                                                  oclacitinib
19631                                                                                                                         cefpodoxime proxetil
19632                                                                                                                                  oclacitinib
19633                                                                                                                                  oclacitinib
19634                                                                                                                                    carprofen
19635                                                                                                            betamethasone, gentamicin sulfate
19636                                                                                                                                  oclacitinib
19637                                                                                                                                   prednisone
19638                                                                                                                         cefpodoxime proxetil
19639                                                                                                                                   lokivetmab
19640                                                                                                                                    carprofen
19641                                                                                                                                yunnan baiyao
19642                                                                                                                             tylosin tartrate
19643                                                                                                                             pyrantel pamoate
19644                                                                                                                                  amoxicillin
19645                                                                                                                                metronidazole
19646                                                                                                                         digestive supplement
19647                                                                                                                             milbemycin oxime
19648                                                                                                                                    lufenuron
19649                                                                                                                                   afoxolaner
19650                                                                                                                             tylosin tartrate
19651                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
19652                                                                                                                             milbemycin oxime
19653                                                                                                                                   afoxolaner
19654                                                                                                                                   prednisone
19655                                                                                                                                   prednisone
19656                                                                                                                                   prednisone
19657                                                                                                                                  amoxicillin
19658                                                                                                                                metronidazole
19659                                                                                                                                    probiotic
19660                                                                                                                             milbemycin oxime
19661                                                                                                                                   afoxolaner
19662                                                                                                                                    probiotic
19663                                                                                                           amoxicillin, clavulanate potassium
19664                                                                                                           amoxicillin, clavulanate potassium
19665                                                                                                                                   prednisone
19666                                                                                                                             tylosin tartrate
19667                                                                                                                             milbemycin oxime
19668                                                                                                                                    sarolaner
19669                                                                                                                             milbemycin oxime
19670                                                                                                                                    sarolaner
19671                                                                                                                                  oclacitinib
19672                                                                                                                         cefpodoxime proxetil
19673                                                                                                                 ivermectin, pyrantel pamoate
19674                                                                                                                                    sarolaner
19675                                                                                                                             tylosin tartrate
19676                                                                                                                         cefpodoxime proxetil
19677                                                                                                                           maropitant citrate
19678                                                                                                                                    deracoxib
19679                                                                                                                             tylosin tartrate
19680                                                                                                                                   gabapentin
19681                                                                                                                                    carprofen
19682                                                                                                                                   prednisone
19683                                                                                                                  lufenuron, milbemycin oxime
19684                                                                                                                  lufenuron, milbemycin oxime
19685                                                                                                                  lufenuron, milbemycin oxime
19686                                                                                                                  lufenuron, milbemycin oxime
19687                                                                                                                                    deracoxib
19688                                                                                                                  lufenuron, milbemycin oxime
19689                                                                                                                  lufenuron, milbemycin oxime
19690                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19691                                                                                                                  lufenuron, milbemycin oxime
19692                                                                                                                                    deracoxib
19693                                                                                                                             milbemycin oxime
19694                                                                                                                                    lufenuron
19695                                                                                                                  lufenuron, milbemycin oxime
19696                                                                                                                  lufenuron, milbemycin oxime
19697                                                                                                                  lufenuron, milbemycin oxime
19698                                                                                                                  lufenuron, milbemycin oxime
19699                                                                                                                                  oclacitinib
19700                                                                                                                  lufenuron, milbemycin oxime
19701                                                                                                                                  oclacitinib
19702                                                                                                                  lufenuron, milbemycin oxime
19703                                                                                                                                  oclacitinib
19704                                                                                                                 ivermectin, pyrantel pamoate
19705                                                                                                                 ivermectin, pyrantel pamoate
19706                                                                                                                   imidacloprid, pyriproxyfen
19707                                                                                                                                   afoxolaner
19708                                                                                                                 ivermectin, pyrantel pamoate
19709                                                                                                                 ivermectin, pyrantel pamoate
19710                                                                                                                 ivermectin, pyrantel pamoate
19711                                                                                                    lufenuron, milbemycin oxime, praziquantel
19712                                                                                                                     flumethrin, imidacloprid
19713                                                                                                    lufenuron, milbemycin oxime, praziquantel
19714                                                                                                                     flumethrin, imidacloprid
19715                                                                                                                  lufenuron, milbemycin oxime
19716                                                                                                                     flumethrin, imidacloprid
19717                                                                                                                  lufenuron, milbemycin oxime
19718                                                                                                                     flumethrin, imidacloprid
19719                                                                                                   toothpaste/dental health solution or chews
19720                                                                                                                                  clindamycin
19721                                                                                                                                    carprofen
19722                                                                                   joint supplement (chondroitin sulfate/glucosamine hcl/msm)
19723                                                                                                                                   ivermectin
19724                                                                                                           fipronil, permethrin, pyriproxyfen
19725                                                                                                                                metronidazole
19726                                                                                                                                  amoxicillin
19727                                                                                                                                     tramadol
19728                                                                                                                           menthol, lidocaine
19729                                                                                                            trimeprazine tartrate, prednisone
19730                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19731                                                                                                                                 enrofloxacin
19732                                                                                                                                    carprofen
19733                                                                                                                                     tramadol
19734                                                                                                                                   cephalexin
19735                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19736                                                                                                                                  oclacitinib
19737                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19738                                                                                                                                  oclacitinib
19739                                                                                                                                  oclacitinib
19740                                                                                                                  lufenuron, milbemycin oxime
19741                                                                                                                  lufenuron, milbemycin oxime
19742                                                                                                                                     tramadol
19743                                                                                                                                    carprofen
19744                                                                                                                         cefpodoxime proxetil
19745                                                                                                                  lufenuron, milbemycin oxime
19746                                                                                                                       cyphenothrin, fipronil
19747                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19748                                                                                                                                  hydroxyzine
19749                                                                                                                                   fluralaner
19750                                                                                                                             milbemycin oxime
19751                                                                                                                         cefpodoxime proxetil
19752                                                                                                                                  oclacitinib
19753                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19754                                                                                                                             milbemycin oxime
19755                                                                                                                                   fluralaner
19756                                                                                                                                   famotidine
19757                                                                                                                                    carprofen
19758                                                                                                                         cefpodoxime proxetil
19759                                                                                                                                   omeprazole
19760                                                                                                                           maropitant citrate
19761                                                                                                                                   omeprazole
19762                                                                                                                                  telmisartan
19763                                                                                                                                   prednisone
19764                                                                                                                                 ketoconazole
19765                                                                                                                                 ketoconazole
19766                                                                                                 dexamethasone, neomycin sulfate, polymyxin b
19767                                                                                                             naphazoline, pheniramine maleate
19768                                                                                                                                   selamectin
19769                                                                                                                   milbemycin oxime, spinosad
19770                                                                                                                                 ketoconazole
19771                                                                                                                   milbemycin oxime, spinosad
19772                                                                                                                                    carprofen
19773                                                                                                                                 ketoconazole
19774                                                                                                                   milbemycin oxime, spinosad
19775                                                                                                                                 ketoconazole
19776                                                                                                                   milbemycin oxime, spinosad
19777                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19778                                                                                                                              dexmedetomidine
19779                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19780                                                                                                                                    carprofen
19781                                                                                                                                   gabapentin
19782                                                                                                                                     tramadol
19783                                                                                                                   milbemycin oxime, spinosad
19784                                                                                                                                  oclacitinib
19785                                                                                                                         cefpodoxime proxetil
19786                                                                                       chlorhexidine gluconate, miconazole nitrate, tris-edta
19787                                                                                                                         cefpodoxime proxetil
19788                                                                                                  chlorhexidine gluconate, miconazole nitrate
19789                                                                                                                                    cefovecin
19790                                                                                                                                    mupirocin
19791                                                                                                                                    cefovecin
19792                                                                                                           chlorhexidine gluconate, ophytrium
19793                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19794                                                                                                                  lufenuron, milbemycin oxime
19795                                                                                                                                   fluralaner
19796                                                                                                                                marbofloxacin
19797                                                                                                                               pentoxifylline
19798                                                                                                                                marbofloxacin
19799                                                                                                                               pentoxifylline
19800                                                                                                                  lufenuron, milbemycin oxime
19801                                                                                                                                   fluralaner
19802                                                                                                                  lufenuron, milbemycin oxime
19803                                                                                                                  lufenuron, milbemycin oxime
19804                                                                                                                  lufenuron, milbemycin oxime
19805                                                                                                                                   fluralaner
19806                                                                                                                                  shen calmer
19807                                                                                                                         cefpodoxime proxetil
19808                                                                                                                                   lokivetmab
19809                                                                                                                                metronidazole
19810                                                                                                                         prebiotic, probiotic
19811                                                                                                                         cefpodoxime proxetil
19812                                                                                                                 ivermectin, pyrantel pamoate
19813                                                                                                                                 multivitamin
19814                                                                                                                         cefpodoxime proxetil
19815                                                                                                                                   loratadine
19816                                                                                                        dinotefuran, permethrin, pyriproxyfen
19817                                                                                                                                 multivitamin
19818                                                                                                                                   ivermectin
19819                                                                                                                                  oclacitinib
19820                                                                                                                             milbemycin oxime
19821                                                                                                        dinotefuran, permethrin, pyriproxyfen
19822                                                                                                                                     tramadol
19823                                                                                                                           gentamicin sulfate
19824                                                                                                                         cefpodoxime proxetil
19825                                                                                                        dinotefuran, permethrin, pyriproxyfen
19826                                                                                                                             milbemycin oxime
19827                                                                                                                                   lokivetmab
19828                                                                                                               milbemycin oxime, praziquantel
19829                                                                                                        dinotefuran, permethrin, pyriproxyfen
19830                                                                                                                                   lokivetmab
19831                                                                                                                         cefpodoxime proxetil
19832                                                                                                                             milbemycin oxime
19833                                                                                                        dinotefuran, permethrin, pyriproxyfen
19834                                                                                                       joint supplement (glucosamine hcl/msm)
19835                                                                                                                         cefpodoxime proxetil
19836                                                                                                            betamethasone, gentamicin sulfate
19837                                                                                               mometasone furoate, orbifloxacin, posaconazole
19838                                                                                                                                  omega 3-6-9
19839                                                                                                                           maropitant citrate
19840                                                                                                                            piroctone olamine
19841                                                                                               dexamethasone, neomycin sulfate, thiabendazole
19842                                                                                                                                   grapiprant
19843                                                                                               mometasone furoate, orbifloxacin, posaconazole
19844                                                                                                                                   lokivetmab
19845                                                                                               mometasone furoate, orbifloxacin, posaconazole
19846                                                                                                 florfenicol, mometasone furoate, terbinafine
19847                                                                            neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide
19848                                                                                                                                   gabapentin
19849                                                                                                                                   trilostane
19850                                                                                                                                   grapiprant
19851                                                                                                                                   ivermectin
19852                                                                                              betamethasone, clotrimazole, gentamicin sulfate
19853                                                                                                                             milbemycin oxime
19854                                                                                                                                     fipronil
19855                                                                                                                                metronidazole
19856                                                                                                                             milbemycin oxime
19857                                                                                                                                     fipronil
19858                                                                                                                                  oclacitinib
19859                                                                                                                                  oclacitinib
19860                                                                                                                                    carprofen
19861                                                                                                                                  oclacitinib
19862                                                                                                                     fipronil, (s)-methoprene
19863                                                                                                                             milbemycin oxime
19864                                                                                                               sulfamethoxazole, trimethoprim
19865                                                                                                                                     tramadol
19866                                                                                                            betamethasone, gentamicin sulfate
19867                                                                                                               milbemycin oxime, praziquantel
19868                                                                                                                                  oclacitinib
19869                                                                                                                                   afoxolaner
19870                                                                                                                             milbemycin oxime
19871                                                                                                                                 praziquantel
19872                                                                                                                                  oclacitinib
19873                                                                                                               milbemycin oxime, praziquantel
19874                                                                                                                                   afoxolaner
19875                                                                                                                                  oclacitinib
19876                                                                                                                                marbofloxacin
19877                                                                                                                                   cephalexin
19878                                                                                                               sulfamethoxazole, trimethoprim
19879                                                                                                                                  oclacitinib
19880                                                                                                     febantel, praziquantel, pyrantel pamoate
19881                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19882                                                                                                                                    carprofen
19883                                                                                                                         cefpodoxime proxetil
19884                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19885                                                                                                                                  oclacitinib
19886                                                                                                                                  oclacitinib
19887                                                                                                                     imidacloprid, moxidectin
19888                                                                                                   ivermectin, praziquantel, pyrantel pamoate
19889                                                                                                                                   cephalexin
19890                                                                                                                                   gabapentin
19891                                                                                                                   milbemycin oxime, spinosad
19892                                                                                                                                metronidazole
19893                                                                                                                   milbemycin oxime, spinosad
19894                                                                                                                             milbemycin oxime
19895                                                                                                                                    lufenuron
19896                                                                                                                                 praziquantel
19897                                                                                                                         cefpodoxime proxetil
19898                                                                                                                         cefpodoxime proxetil
19899                                                                                                                        trimeprazine tartrate
19900                                                                                                                         prednisolone acetate
19901                                                                                                                                   afoxolaner
19902                                                                                                                 ivermectin, pyrantel pamoate
19903                                                                                                                                   afoxolaner
19904                                                                                                                 ivermectin, pyrantel pamoate
19905                                                                                                                                   afoxolaner
19906                                                                                                                                  oclacitinib
19907                                                                                                                   milbemycin oxime, spinosad
19908                                                                                                                         cefpodoxime proxetil
19909                                                                                                                             milbemycin oxime
19910                                                                                                                         cefpodoxime proxetil
19911                                                                                                   toothpaste/dental health solution or chews
19912                                                                                        miconazole nitrate, polymyxin b, prednisolone acetate
19913                                                                                                                               chlorphenamine
19914                                                                                                                         prebiotic, probiotic
19915                                                                                                                                levothyroxine
19916                                                                                                                                levothyroxine
19917                                                                                                         diatomaceous earth, neem oil, yarrow
19918                                                                                                                                levothyroxine
19919                                                                                                                                levothyroxine
19920                                                                                                                                    thyroxine
19921                                                                                                                                    thyroxine
19922                                                                                                                                    thyroxine
19923                                                                                                                                    mupirocin
19924                                                                                                                                  clindamycin
19925                                                                                                                                 enrofloxacin
19926                                                                                                                                  florfenicol
19927                                                                                                                           gentamicin sulfate
19928                                                                                                                                  polymyxin b
19929                                                                                                                                    thyroxine
19930                                                                                                                   milbemycin oxime, spinosad
19931                                                                                                                                  amoxicillin
19932                                                                                                                   milbemycin oxime, spinosad
19933                                                                                                                   milbemycin oxime, spinosad
19934                                                                                                                                 enrofloxacin
19935                                                                                                                                  amoxicillin
19936                                                                                                                   milbemycin oxime, spinosad
19937                                                                                                                      ketoconazole, tris-edta
19938                                                                                                            trimeprazine tartrate, prednisone
19939                                                                                                                         cefpodoxime proxetil
19940                                                                                                            trimeprazine tartrate, prednisone
19941                                                                                                                                  amoxicillin
19942                                                                                                                                     tramadol
19943                                                                                                                   milbemycin oxime, spinosad
19944                                                                                                           joint supplement (glucosamine hcl)
19945                                                                                                                                      omega 3
19946                                                                                                                   milbemycin oxime, spinosad
19947                                                                                                           joint supplement (glucosamine hcl)
19948                                                                                                                                      omega 3
19949                                                                                       joint supplement (chondroitin sulfate/glucosamine hcl)
19950                                                                                                                                      omega 3
19951                                                                                                                         cefpodoxime proxetil
19952                                                                                                                             pyrantel pamoate
19953                                                                                                                             pyrantel pamoate
19954                                                                                                                 ivermectin, pyrantel pamoate
19955                                                                                                                 ivermectin, pyrantel pamoate
19956                                                                                                                 ivermectin, pyrantel pamoate
19957                                                                                                                 ivermectin, pyrantel pamoate
19958                                                                                                                     flumethrin, imidacloprid
19959                                                                                         clotrimazole, gentamicin sulfate, mometasone furoate
19960                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19961                                                                                                                                    carprofen
19962                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19963                                                                                                                                    carprofen
19964                                                                                               bacitracin zinc, neomycin sulfate, polymyxin b
19965                                                                                                                                    carprofen
19966                                                                                                                                    carprofen
19967                                                                                                                                     tramadol
19968                                                                                                                                    carprofen
19969                                                                                                            betamethasone, gentamicin sulfate
19970                                                                                                                                       plasma
19971                                                                                                                  lufenuron, milbemycin oxime
19972                                                                                                                 ivermectin, pyrantel pamoate
19973                                                                                                                         cefpodoxime proxetil
19974                                                                                                                                    firocoxib
19975                                                                                                                 ivermectin, pyrantel pamoate
19976                                                                                                                                    carprofen
19977                                                                                                                                levothyroxine
19978                                                                                                                 ivermectin, pyrantel pamoate
19979                                                                                                                 ivermectin, pyrantel pamoate
19980                                                                                                                                levothyroxine
19981                                                                                                                                    carprofen
19982                                                                                                                                   lokivetmab
19983                                                                                                                                levothyroxine
19984                                                                                                                                   fluralaner
19985                                                                                                                                levothyroxine
19986                                                                                                                                levothyroxine
19987                                                                                                                                levothyroxine
19988                                                                                                                                    carprofen
19989                                                                                                                                  amoxicillin
19990                                                                                                                                    probiotic
19991                                                                                                                 ivermectin, pyrantel pamoate
19992                                                                                                       cyphenothrin, fipronil, (s)-methoprene
19993                                                                                                                                    carprofen
19994                                                                                                                         cefpodoxime proxetil
19995                                                                                                                                   ivermectin
19996                                                                                                                                   ivermectin
19997                                                                                                                                   afoxolaner
19998                                                                                                                 ivermectin, pyrantel pamoate
19999                                                                                                           amoxicillin, clavulanate potassium
                                                                                                 dose
1                                                                                              500.00
2                                                                                                87.5
3                                                                                               12.00
4                                                                                              460.00
5                                                                                                1.00
6                                                                                              300.00
7                                                                                               50.00
8                                                                                                2.50
9                                                                                              300.00
10                                                                                               1.00
11                                                                                               1.00
12                                                                                               0.30
13                                                                                              50.00
14                                                                                              60.00
15                                                                                             680.00
16                                                                                               3.00
17                                                                                               3.00
18                                                                                               1.00
19                                                                                               1.00
20                                                                                               1.00
21                                                                                              50.00
22                                                                                        unspecified
23                                                                                             300.00
24                                                                                               2.27
25                                                                                             200.00
26                                                                                             325.00
27                                                                                             375.00
28                                                                                               6.00
29                                                                                             150.00
30                                                                                              30.00
31                                                                                             640.00
32                                                                                               5.50
33                                                                                              40.00
34                                                                                               6.00
35                                                                                               6.00
36                                                                                             375.00
37                                                                                               2.72
38                                                                                              23.00
39                                                                                               0.56
40                                                                                        unspecified
41                                                                                        unspecified
42                                                                                        unspecified
43                                                                                              25.00
44                                                                                             500.00
45                                                                                             227.00
46                                                                        based on weight (40-60 lbs)
47                                                                                             272.00
48                                                                       based on weight (51-100 lbs)
49                                                                       based on weight (51-100 lbs)
50                                                                                             100.00
51                                                                        based on weight (21-40 lbs)
52                                                                                             500.00
53                                                                                             272.00
54                                                                                             500.00
55                                                                                             227.00
56                                                                                               1.00
57                                                                                          100000.00
58                                                                                              40.00
59                                                                       based on weight (51-100 lbs)
60                                                                          based on weight (55+ lbs)
61                                                                                             500.00
62                                                                       based on weight (51-100 lbs)
63                                                                       based on weight (51-100 lbs)
64                                                                                             750.00
65                                                                                            1000.00
66                                                                                               1.00
67                                                                                        application
68                                                                                              20.00
69                                                                                             500.00
70                                                                                        application
71                                                                                             200.00
72                                                                                               3.00
73                                                                                               1.00
74                                                                                        bottle/vial
75                                                                                               1.00
76                                                                                             500.00
77                                                                                               1.00
78                                                                                               4.00
79                                                                                              50.00
80                                                                                             750.00
81                                                                                              60.00
82                                                                                            1000.00
83                                                                                               1.00
84                                                                                        application
85                                                                                              20.00
86                                                                                             100.00
87                                                                                        application
88                                                                                              50.00
89                                                                                             100.00
90                                                                                             100.00
91                                                                                        application
92                                                                                            1000.00
93                                                                                            1000.00
94                                                                                              60.00
95                                                                                             400.00
96                                                                                            1500.00
97                                                                                            1105.00
98                                                                                               1.00
99                                                                                             300.00
100                                                                                            500.00
101                                                                                            100.00
102                                                                                            200.00
103                                                                                            200.00
104                                                                                           1000.00
105                                                                                            150.00
106                                                                                            300.00
107                                                                                            200.00
108                                                                                              0.75
109                                                                                             25.00
110                                                                                            100.00
111                                                                                       unspecified
112                                                                                       unspecified
113                                                                                       unspecified
114                                                                                       unspecified
115                                                                                              1.00
116                                                                                              1.00
117                                                                                            100.00
118                                                                                              1.00
119                                                                                              1.00
120                                                                                              1.00
121                                                                                              3.00
122                                                                                              1.50
123                                                                                           1000.00
124                                                                                              0.90
125                                                                                             60.00
126                                                                                           1000.00
127                                                                                            400.00
128                                                                                              2.00
129                                                                                              1.00
130                                                                                              1.00
131                                                                                              1.00
132                                                                                              1.00
133                                                                                            113.50
134                                                                                            100.00
135                                                                                              8.00
136                                                                                              8.00
137                                                                                            272.00
138                                                                                            200.00
139                                                                                            750.00
140                                                                                              3.50
141                                                                                            600.00
142                                                                                             60.00
143                                                                                            100.00
144                                                                                            500.00
145                                                                                             75.00
146                                                                                             50.00
147                                                                                            150.00
148                                                                                            100.00
149                                                                                       unspecified
150                                                                                       unspecified
151                                                                                       unspecified
152                                                                                       unspecified
153                                                                                       unspecified
154                                                                                            500.00
155                                                                                       unspecified
156                                                                                              3.00
157                                                                                            400.00
158                                                                                           1000.00
159                                                                                            500.00
160                                                                                             60.00
161                                                                                              1.00
162                                                                                              1.00
163                                                                                              0.90
164                                                                                              1.00
165                                                                                              3.00
166                                                                                           1500.00
167                                                                                       unspecified
168                                                                                            100.00
169                                                                                             30.00
170                                                                                              1.00
171                                                                                            272.00
172                                                                                            300.00
173                                                                                              1.00
174                                                                                              3.50
175                                                                                              1.00
176                                                                                              1.00
177                                                                                             25.00
178                                                                                             20.00
179                                                                                              6.00
180                                                                                              0.70
181                                                                                              0.80
182                                                                                              0.76
183                                                                                              0.70
184                                                                                           1000.00
185                                                                                              0.70
186                                                                                           1000.00
187                                                                                            112.50
188                                                                       based on weight (44-88 lbs)
189                                                                                              0.86
190                                                                                             16.00
191                                                                                              0.80
192                                                                       based on weight (44-88 lbs)
193                                                                                              0.60
194                                                                                              0.60
195                                                                                              66.5
196                                                                                              0.59
197                                                                                              0.60
198                                                                                           1000.00
199                                                                                            150.00
200                                                                                             30.00
201                                                                                         300000.00
202                                                                                            720.00
203                                                                                            145.00
204                                                                                              0.30
205                                                                                             75.00
206                                                                                            437.50
207                                                                                           1000.00
208                                                                                              0.17
209                                                                                              0.60
210                                                                                            112.50
211                                                                                             26.80
212                                                                                            130.00
213                                                                                            640.00
214                                                                                            375.00
215                                                                                            100.00
216                                                                                              0.60
217                                                                                              1.00
218                                                                                             13.00
219                                                                                              0.60
220                                                                       based on weight (44-88 lbs)
221                                                                                            375.00
222                                                                                            300.00
223                                                                                              3.20
224                                                                                            100.00
225                                                                                            500.00
226                                                                                             20.00
227                                                                                            272.00
228                                                                                            500.00
229                                                                                              1.00
230                                                              272 ivermectin, 227 pyrantel pamoate
231                                                                                            500.00
232                                                                                              2.27
233                                                                                                 5
234                                                                                              0.09
235                                                              272 ivermectin, 227 pyrantel pamoate
236                                                                                       unspecified
237                                                                                       unspecified
238                                                                                      small amount
239                                                                                                68
240                                                                                              2.68
241                                                                                             60.00
242                                                                                          1 - 1 ml
243                                                                                                 1
244                                                                                              66.5
245                                                                                             60.00
246                                                                                             70.00
247                                                                                             60.00
248                                                                                                 1
249                                                                                             60.00
250                                                                                              1.00
251                                                                                             75.00
252                                                                                             50.00
253                                                                                            125.00
254                                                                                             50.00
255                                                                                            480.00
256                                                                                             13.50
257                                                                       based on weight (40-60 lbs)
258                                                                                              1.00
259                                                                                              1.00
260                                                                                             37.50
261                                                                                             23.00
262                                                                                             20.00
263                                                                                            540.00
264                                                                                             20.00
265                                                                                             20.00
266                                                                                              1.00
267                                                                                            500.00
268                                                                                            500.00
269                                                                                             60.00
270                                                                                            425.00
271                                                                                            100.00
272                                                                                             16.00
273                                                                                              1.00
274                                                                                              1.00
275                                                                      based on weight (51-100 lbs)
276                                                                      based on weight (51-100 lbs)
277                                                                    based on weight (60.1-121 lbs)
278                                                                                              8.00
279                                                                                      small amount
280                                                                                                  
281                                                                                              2.00
282                                                                                              1.00
283                                                                                              1.00
284                                                                                              1.00
285                                                                                              8.00
286                                                                                              1.00
287                                                                                               272
288                                                                                            272.00
289                                                                                            500.00
290                                                                                             23.00
291                                                                                            375.00
292                                                                                              7.00
293                                                                                            150.00
294                                                                                             50.00
295                                                                                         810000.00
296                                                                                            150.00
297                                                                                            125.00
298                                                                                            500.00
299                                                                                            375.00
300                                                                                              7.00
301                                                                                            100.00
302                                                                                            300.00
303                                                                                              7.00
304                                                                                            500.00
305                                                                                             37.50
306                                                                                            500.00
307                                                                                            375.00
308                                                                                              0.80
309                                                                                              8.80
310                                                                                       unspecified
311                                                                                            200.00
312                                                                                              1.00
313                                                                                            500.00
314                                                                                           1800.00
315                                                                                            750.00
316                                                                                            870.00
317                                                                                       as directed
318                                                                      based on weight (51-100 lbs)
319                                                                                              7.50
320                                                                                            500.00
321                                                                                            300.00
322                                                                                            500.00
323                                                                                            272.00
324                                                                                       as directed
325                                                                                            136.00
326                                                                                            150.00
327                                                                                              7.00
328                                                                                   based on weight
329                                                                                   based on weight
330                                                                                            200.00
331                                                                                            200.00
332                                                                                   based on weight
333                                                                                   based on weight
334                                                                                             40.00
335                                                                                             20.00
336                                                                                             20.00
337                                                                                             75.00
338                                                                                            200.00
339                                                                                            500.00
340                                                                                             75.00
341                                                                                            272.00
342                                                                                              1.00
343                                                                                              7.20
344                                                                                              2.90
345                                                                                            375.00
346                                                                                            136.00
347                                                                                           23, 460
348                                                                                          23 , 460
349                                                                                              1.00
350                                                                                           23, 460
351                                                                                           23, 460
352                                                                                             80.00
353                                                                                           23, 460
354                                                                                             80.00
355                                                                                           23, 460
356                                                                                            300.00
357                                                                                            200.00
358                                                                                            500.00
359                                                                                            300.00
360                                                                                            150.00
361                                                                                             60.00
362                                                                                            100.00
363                                                                                            100.00
364                                                                                            500.00
365                                                                                           1000.00
366                                                                                       unspecified
367                                                                                              1.00
368                                                                      based on weight (60-121 lbs)
369                                                                                            136.00
370                                                                                              1.00
371                                                                                              0.01
372                                                                                               136
373                                                                                              1.00
374                                                                                              1.00
375                                                                      based on weight (51-100 lbs)
376                                                                       based on weight (44-88 lbs)
377                                                                                              0.01
378                                                                                             30.00
379                                                                                             10.00
380                                                                                              0.50
381                                                                                              3.00
382                                                                                              1.00
383                                                                      based on weight (51-100 lbs)
384                                                                      based on weight (51-100 lbs)
385                                                                                                 1
386                                                                      based on weight (51-100 lbs)
387                                                                                            500.00
388                                                                                             14.00
389                                                                                            483.00
390                                                                                            136.00
391                                                                                              8.80
392                                                                                            136.00
393                                                                                              8.80
394                                                                                            125.00
395                                                                                             14.34
396                                                                                              2.05
397                                                                                              1.00
398                                                                                            500.00
399                                                                                              4.00
400                                                                                              2.00
401                                                                                              1.00
402                                                                                                75
403                                                                                       unspecified
404                                                                                       unspecified
405                                                                                            100.00
406                                                                                            272.00
407                                                                                             23.00
408                                                                                             50.00
409                                                                                            250.00
410                                                                                              0.30
411                                                                                             75.00
412                                                                                             10.00
413                                                                                            100.00
414                                                                                          23 , 460
415                                                                                             24.00
416                                                                                              1.00
417                                                                                             23.00
418                                                                                            272.00
419                                                                                             16.00
420                                                                                            100.00
421                                                                                              1.00
422                                                                                              3.00
423                                                                                             30.00
424                                                                                            100.00
425                                                                                            100.00
426                                                                                            200.00
427                                                                                              2.00
428                                                                                            100.00
429                                                                                            272.00
430                                                                                            136.00
431                                                                                             16.00
432                                                                                            100.00
433                                                                                            272.00
434                                                                                             68.00
435                                                                                             16.00
436                                                                                           1400.00
437                                                                                            400.00
438                                                                                            110.00
439                                                                                            272.00
440                                                                                            136.00
441                                                                                             16.00
442                                                                                            110.00
443                                                                                             16.00
444                                                                                             16.00
445                                                                                            300.00
446                                                                                             16.00
447                                                                                       unspecified
448                                                                                            300.00
449                                                                                       unspecified
450                                                                                            100.00
451                                                                                             20.00
452                                                                                             16.00
453                                                                                       unspecified
454                                                                                            100.00
455                                                                                            300.00
456                                                                                             24.00
457                                                                                              4.00
458                                                                                             30.00
459                                                                                             50.00
460                                                                                             20.00
461                                                                                              1.00
462                                                                                              1.00
463                                                                                            272.00
464                                                                                            272.00
465                                                                                             68.00
466                                                                                            272.00
467                                                                                             68.00
468                                                                                             80.00
469                                                                                            150.00
470                                                                                             50.00
471                                                                                              2.50
472                                                                                             10.70
473                                                                                              1.00
474                                                                                            272.00
475                                                                                              0.70
476                                                                                             30.00
477                                                                                            120.00
478                                                                                            272.00
479                                                                                             68.00
480                                                                                                 1
481                                                                                            150.00
482                                                                                             60.00
483                                                                                            375.00
484                                                                                              2.50
485                                                                                             60.00
486                                                                                             50.00
487                                                                                            272.00
488                                                                                             68.00
489                                                                                             60.00
490                                                                                            375.00
491                                                                                              1.00
492                                                                                            272.00
493                                                                                            375.00
494                                                                                            227.00
495                                                                                            136.00
496                                                              272 ivermectin, 227 pyrantel pamoate
497                                                                                               136
498                                                                      based on weight (51-100 lbs)
499                                                                                           1000.00
500                                                                                           1000.00
501                                                                                            100.00
502                                                                                             10.00
503                                                                                             37.50
504                                                                                              1.00
505                                                                                              1.00
506                                                                                            500.00
507                                                                                             50.00
508                                                                                             75.00
509                                                                                              1.00
510                                                                                             15.00
511                                                                                            500.00
512                                                                                             50.00
513                                                                                            272.00
514                                                                                             68.00
515                                                                                             15.00
516                                                                                              1.00
517                                                                                             50.00
518                                                                                            500.00
519                                                                                          inhalant
520                                                                                            300.00
521                                                                                             12.00
522                                                                                             40.00
523                                                                                            272.00
524                                                                                            136.00
525                                                                                            375.00
526                                                                                            272.00
527                                                                                            136.00
528                                                                                             16.00
529                                                                                             16.00
530                                                                                              1.00
531                                                                                            500.00
532                                                                                            272.00
533                                                                                            136.00
534                                                                                            272.00
535                                                                                            136.00
536                                                                                            500.00
537                                                                                                  
538                                                                                              1.00
539                                                                                              1.00
540                                                                                              1.00
541                                                                                              1.00
542                                                                                              2.00
543                                                                                             75.00
544                                                                                             75.00
545                                                                                              1.00
546                                                                                            272.00
547                                                                                            500.00
548                                                                                              2.00
549                                                                                            125.00
550                                                                                            125.00
551                                                                                              1.00
552                                                                                             50.00
553                                                                                            200.00
554                                                                                              1.00
555                                                                                              1.00
556                                                                                            160.00
557                                                                                              1.00
558                                                                                              1.20
559                                                                                              3.50
560                                                                                             20.00
561                                                                                             20.00
562                                                                                             10.00
563                                                                                            272.00
564                                                                                            500.00
565                                                                                            500.00
566                                                                                            100.00
567                                                                                            500.00
568                                                                                              1.00
569                                                                                              5.00
570                                                                                              5.00
571                                                                                              0.20
572                                                                                              0.30
573                                                                                              0.40
574                                                                                              1.00
575                                                                                              1.40
576                                                                                              2.00
577                                                                                            160.00
578                                                                                             20.00
579                                                                                             20.00
580                                                                                             15.00
581                                                                                             10.00
582                                                                                              6.00
583                                                                                            500.00
584                                                                                            250.00
585                                                                                            200.00
586                                                                                             50.00
587                                                                                            200.00
588                                                                                             50.00
589                                                                                             68.00
590                                                                                            500.00
591                                                                                             50.00
592                                                                                             20.00
593                                                                                            200.00
594                                                                                              5.00
595                                                                                            200.00
596                                                                                             50.00
597                                                                         based on weight (60+ lbs)
598                                                                         based on weight (60+ lbs)
599                                                                                              1.00
600                                                                                              1.00
601                                                                                             50.00
602                                                                                            200.00
603                                                                                                 1
604                                                                                                 1
605                                                                                              1.00
606                                                                                              1.00
607                                                                                             50.00
608                                                                                              1.00
609                                                                                              1.00
610                                                                                      small amount
611                                                                                             50.00
612                                                                                            200.00
613                                                                                            200.00
614                                                                                             16.00
615                                                                                             50.00
616                                                                                            300.00
617                                                                                             75.00
618                                                                                            200.00
619                                                                                       unspecified
620                                                                                            100.00
621                                                                                              3.00
622                                                                                             75.00
623                                                                                             60.00
624                                                                                             60.00
625                                                                                             15.00
626                                                                                            150.00
627                                                                                             60.00
628                                                                                            500.00
629                                                                                             80.00
630                                                                                              6.00
631                                                                                              4.00
632                                                                                              3.00
633                                                                                            500.00
634                                                                                              1.00
635                                                                                                 3
636                                                                                            272.00
637                                                                                   based on weight
638                                                                                              3.00
639                                                                                            600.00
640                                                                                            500.00
641                                                                                            272.00
642                                                                                      small amount
643                                                                                              5.00
644                                                                                            272.00
645                                                                                                 3
646                                                                                              5.00
647                                                                                             10.00
648                                                                                              6.00
649                                                                                             16.00
650                                                                                              1.00
651                                                                                            272.00
652                                                                                             10.00
653                                                                                              6.00
654                                                                                             16.00
655                                                                                            227.00
656                                                                                             10.00
657                                                                                            200.00
658                                                                                              3.00
659                                                                                            272.00
660                                                                                            227.00
661                                                                                              1.10
662                                                                                            500.00
663                                                                                             20.00
664                                                                                              2.00
665                                                                                             34.00
666                                                                                             30.00
667                                                                                              2.00
668                                                                                              1.00
669                                                                                            250.00
670                                                                                            300.00
671                                                                                            272.00
672                                                                                              2.00
673                                                                                            300.00
674                                                                                            272.00
675                                                                                            136.00
676                                                                                              2.00
677                                                                                              5.00
678                                                                                            500.00
679                                                                                            500.00
680                                                                                             90.00
681                                                                                            300.00
682                                                                                            850.00
683                                                                                            100.00
684                                                                                            500.00
685                                                                                             30.00
686                                                                                       unspecified
687                                                                                            100.00
688                                                                                       unspecified
689                                                                                            340.00
690                                                                                            100.00
691                                                                                             10.00
692                                                                                            100.00
693                                                                                             30.00
694                                                                                              2.00
695                                                                                              0.70
696                                                                                             10.00
697                                                                                             25.00
698                                                                                             50.00
699                                                                                              2.00
700                                                                                            272.00
701                                                                                             75.00
702                                                                                             15.00
703                                                                      based on weight (51-100 lbs)
704                                                                     based on weight (44.1-88 lbs)
705                                                                                             23.00
706                                                                                             80.00
707                                                                                              1.00
708                                                                                              1.00
709                                                                                       unspecified
710                                                                                       unspecified
711                                                                                             55.00
712                                                                                       unspecified
713                                                                                            150.00
714                                                                                              1.50
715                                                                                            500.00
716                                                                                            425.00
717                                                                                           1000.00
718                                                                                             55.00
719                                                                                              0.60
720                                                                                            150.00
721                                                                                             30.00
722                                                                                              8.00
723                                                                                             20.00
724                                                                                              8.00
725                                                                27 milbemycin oxime, 1620 spinosad
726                                                                                              8.00
727                                                                                              1.00
728                                                                      based on weight (50-100 lbs)
729                                                                         based on weight (60+ lbs)
730                                                              272 ivermectin, 227 pyrantel pamoate
731                                                                                                 2
732                                                                                             16.00
733                                                                                                 1
734                                                                                   0.25 inch strip
735                                                                                                10
736                                                                                               250
737                                                                                                 1
738                                                                                       unspecified
739                                                                                       unspecified
740                                                                                              5.00
741                                                                                              1.00
742                                                                                            250.00
743                                                                                            204.00
744                                                                                              1.00
745                                                                                              1.00
746                                                                                            250.00
747                                                                                              1.00
748                                                                                              0.80
749                                                                                              5.00
750                                                                                               136
751                                                                                             50.00
752                                                                                              8.00
753                                                                                            500.00
754                                                                      based on weight (51-100 lbs)
755                                                                         based on weight (45+ lbs)
756                                                                                                66
757                                                                      based on weight (51-100 lbs)
758                                                                                            300.00
759                                                                                              1.00
760                                                                                                 1
761                                                                                              1.00
762                                                                                            400.00
763                                                                                              1.00
764                                                                                            272.00
765                                                                                            100.00
766                                                                                            110.00
767                                                                                              2.00
768                                                                                              8.00
769                                                                                             90.00
770                                                                                             23.00
771                                                                                                50
772                                                                                             23.00
773                                                                                             23.00
774                                                                                             23.00
775                                                                                             23.00
776                                                                                            500.00
777                                                                                             50.00
778                                                                                       unspecified
779                                                                                            360.00
780                                                                                             50.00
781                                                                                             10.00
782                                                                                            360.00
783                                                                                             50.00
784                                                                                            460.00
785                                                                      based on weight (60-120 lbs)
786                                                                                             27.00
787                                                                                           1620.00
788                                                                                              2.68
789                                                                                          45387.00
790                                                                      based on weight (60-120 lbs)
791                                                                                           1000.00
792                                                                      based on weight (51-100 lbs)
793                                                                                            900.00
794                                                                                            900.00
795                                                                                            200.00
796                                                                                             75.00
797                                                                                       unspecified
798                                                                                       unspecified
799                                                                                       unspecified
800                                                                                       unspecified
801                                                                                       unspecified
802                                                                                       unspecified
803                                                                       based on weight (45-88 lbs)
804                                                                     based on weight (44.1-88 lbs)
805                                                                                             75.00
806                                                                                            227.00
807                                                                                              2.68
808                                                                                            272.00
809                                                                                           1000.00
810                                                                       based on weight (40-85 lbs)
811                                                                                              7.00
812                                                                                             50.00
813                                                                                             50.00
814                                                                                           1000.00
815                                                                                            200.00
816                                                                                       unspecified
817                                                                                             40.00
818                                                                                            136.00
819                                                                       based on weight (26-50 lbs)
820                                                                       based on weight (26-50 lbs)
821                                                                                            136.00
822                                                                                              9.80
823                                                                       based on weight (45-88 lbs)
824                                                                      based on weight (51-100 lbs)
825                                                                                            136.00
826                                                                                             64.00
827                                                                                              1.00
828                                                                                              1.00
829                                                                                              1.00
830                                                                                              1.00
831                                                                                             10.00
832                                                                                       unspecified
833                                                                                             50.00
834                                                                                            100.00
835                                                                                            200.00
836                                                                                            300.00
837                                                                                             30.00
838                                                                                             24.00
839                                                                                              2.50
840                                                                                             15.00
841                                                                                             25.00
842                                                                                             60.00
843                                                                                              5.00
844                                                                                              3.00
845                                                                                            250.00
846                                                                                              1.00
847                                                                                              3.00
848                                                                                              1.00
849                                                                                              1.00
850                                                                                              2.68
851                                                                based on weight (50-100 lbs) - 272
852                                                                                            272.00
853                                                                                            136.00
854                                                                                            272.00
855                                                                                            136.00
856                                                                                            272.00
857                                                                                            136.00
858                                                                                            100.00
859                                                                                             75.00
860                                                                                             30.00
861                                                                                             10.00
862                                                                                   based on weight
863                                                                                               200
864                                                                                              4.00
865                                                                                            227.00
866                                                                                            200.00
867                                                                                            113.50
868                                                                                             37.50
869                                                                                            300.00
870                                                                                             30.00
871                                                                                         13.5, 810
872                                                                                            810.00
873                                                                                             13.50
874                                                                                          27, 1620
875                                                                                             27.00
876                                                                                            750.00
877                                                                                       application
878                                                                                          27, 1620
879                                                                                          27, 1620
880                                                                                          27, 1620
881                                                                                              90.5
882                                                                                             50.00
883                                                                                            100.00
884                                                                                         13.5, 810
885                                                                                            810.00
886                                                                                             13.50
887                                                                                          27, 1620
888                                                                                            500.00
889                                                                                             27.00
890                                                                                             37.50
891                                                                                          27, 1620
892                                                                                            136.00
893                                                                                          27, 1620
894                                                                                              5.50
895                                                                                             20.00
896                                                                                             10.00
897                                                                                             10.00
898                                                                                             50.00
899                                                                                          27, 1620
900                                                                                              90.5
901                                                                                       unspecified
902                                                                                            272.00
903                                                                                              4.02
904                                                                                              3.00
905                                                                                       unspecified
906                                                                                             16.00
907                                                                                            272.00
908                                                                                             16.00
909                                                                                            272.00
910                                                                                            272.00
911                                                                                            227.00
912                                                                                            272.00
913                                                                         based on weight (55+ lbs)
914                                                                                            272.00
915                                                                                             50.00
916                                                                                            200.00
917                                                                                               227
918                                                                                               250
919                                                                                             75.00
920                                                                                            437.50
921                                                                      based on weight (51-100 lbs)
922                                                                                              1.00
923                                                                                              1.00
924                                                                                              1.90
925                                                                                              1.30
926                                                                                             13.00
927                                                                                              0.34
928                                                                                            100.00
929                                                                                                 1
930                                                                                                 1
931                                                                                              1.00
932                                                                                              1.00
933                                                                                            136.00
934                                                                                            272.00
935                                                                                             50.00
936                                                                                              1.00
937                                                                                              1.00
938                                                                                             50.00
939                                                                                           1000.00
940                                                                                             25.00
941                                                                                             20.00
942                                                                                            375.00
943                                                                                            150.00
944                                                                                            200.00
945                                                                                            100.00
946                                                                                            150.00
947                                                                                            200.00
948                                                                                            100.00
949                                                                                              1.00
950                                                                                                 1
951                                                                                              1.00
952                                                                                              1.00
953                                                                                              1.00
954                                                                                              1.00
955                                                                                            collar
956                                                                                              1.00
957                                                                                              1.00
958                                                              272 ivermectin, 227 pyrantel pamoate
959                                                                                              1.00
960                                                                                              1.00
961                                                                                              1.00
962                                                                                              1.00
963                                                                                              0.70
964                                                                                            100.00
965                                                                                            500.00
966                                                                                              5.00
967                                                                                             50.00
968                                                                                              1.00
969                                                                                       unspecified
970                                                                                                 1
971                                                                                            500.00
972                                                                                            136.00
973                                                                                              1.00
974                                                                                            100.00
975                                                                                             16.00
976                                                                                            750.00
977                                                                                       application
978                                                                                             16.00
979                                                                                                75
980                                                                                              90.5
981                                                                                             16.00
982                                                                                       unspecified
983                                                                                       unspecified
984                                                                                            250.00
985                                                                                            272.00
986                                                                                            136.00
987                                                                                             15.00
988                                                                                             16.00
989                                                                                   based on weight
990                                                                                            300.00
991                                                                                                75
992                                                                                              90.5
993                                                                                          45293.00
994                                                                                             16.00
995                                                                                              90.5
996                                                                                                75
997                                                                                             60.00
998                                                                                            250.00
999                                                                                              1.00
1000                                                                                            16.00
1001                                                                                      unspecified
1002                                                                                            15.00
1003                                                                                            16.00
1004                                                                                             3.00
1005                                                                                            20.00
1006                                                                                           150.00
1007                                                                                           125.00
1008                                                                                           150.00
1009                                                                                           250.00
1010                                                                                           100.00
1011                                                                                           150.00
1012                                                                                           476.00
1013                                                                                            15.00
1014                                                                                            50.00
1015                                                                                           750.00
1016                                                                                           100.00
1017                                                                     based on weight (50-100 lbs)
1018                                                                     based on weight (60-121 lbs)
1019                                                                                                1
1020                                                                                     small amount
1021                                                                                         wipe/pad
1022                                                                                           250.00
1023                                                                                             1.00
1024                                                                                             1.00
1025                                                                                             1.00
1026                                                                                           225.00
1027                                                                                      unspecified
1028                                                                                                1
1029                                                                                       1 wipe/pad
1030                                                                                     small amount
1031                                                                                     small amount
1032                                                                                           500.00
1033                                                                                  syringe/pipette
1034                                                                                            20.00
1035                                                                                            20.00
1036                                                                                     small amount
1037                                                                                                1
1038                                                                                           300.00
1039                                                                                    1 bottle/vial
1040                                                                                            16.00
1041                                                                                            16.00
1042                                                                                      unspecified
1043                                                                                             1.00
1044                                                                                             3.00
1045                                                                                            60.00
1046                                                                                           272.00
1047                                                                                           136.00
1048                                                                                             7.50
1049                                                                                            16.00
1050                                                                                  based on weight
1051                                                                                               75
1052                                                                                             90.5
1053                                                                                             6.80
1054                                                                                             1.00
1055                                                                                           300.00
1056                                                                                            60.00
1057                                                                                           300.00
1058                                                                                           300.00
1059                                                                                            16.00
1060                                                                                             90.5
1061                                                                                               75
1062                                                                                           250.00
1063                                                                                           250.00
1064                                                                                             1.00
1065                                                                                             0.10
1066                                                                                             1.00
1067                                                                                            10.00
1068                                                                                            70.00
1069                                                                                             1.00
1070                                                                                             1.00
1071                                                                                           150.00
1072                                                                                      unspecified
1073                                                                                      unspecified
1074                                                                                      unspecified
1075                                                                                           150.00
1076                                                                                             1.00
1077                                                                                             1.00
1078                                                                                             1.00
1079                                                                                             1.00
1080                                                                                             3.00
1081                                                                                           150.00
1082                                                                                            60.00
1083                                                                                            30.00
1084                                                                                            10.00
1085                                                                                            60.00
1086                                                                                             3.00
1087                                                                     based on weight (60-120 lbs)
1088                                                                                               25
1089                                                                                            75.00
1090                                                                                          1620.00
1091                                                                                     small amount
1092                                                                                               20
1093                                                                                              500
1094                                                                                          4000.00
1095                                                                                            16.00
1096                                                                                            15.00
1097                                                               27 milbemycin oxime, 1620 spinosad
1098                                                                                                4
1099                                                                     based on weight (51-100 lbs)
1100                                                                     based on weight (51-100 lbs)
1101                                                                        based on weight (55+ lbs)
1102                                                                                          1000.00
1103                                                                                          8000.00
1104                                                                                            16.00
1105                                                                                            75.00
1106                                                                                          1000.00
1107                                                                                           136.00
1108                                                                                       1 wipe/pad
1109                                                                                           136.00
1110                                                                                          1000.00
1111                                                               460 lufenuron, 23 milbemycin oxime
1112                                                                                         wipe/pad
1113                                                                                           136.00
1114                                                                                          1000.00
1115                                                                                            16.00
1116                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
1117                                                                                          1000.00
1118                                                                                          1000.00
1119                                                                                          1000.00
1120                                                                                           272.00
1121                                                                                            20.00
1122                                                                                           600.00
1123                                                                                          1000.00
1124                                                                                           300.00
1125                                                                                            20.00
1126                                                                                            20.00
1127                                                                                           425.00
1128                                                                                           272.00
1129                                                                     based on weight (21-100 lbs)
1130                                                                                           200.00
1131                                                                                                5
1132                                                                                           375.00
1133                                                                                           500.00
1134                                                                                            15.00
1135                                                                                             1.00
1136                                                                                           500.00
1137                                                                                            50.00
1138                                                                                            50.00
1139                                                                                             1.00
1140                                                                                             3.00
1141                                                                                           500.00
1142                                                                                           227.00
1143                                                                                             2.00
1144                                                                                           136.00
1145                                                                                           272.00
1146                                                                                             0.14
1147                                                                                           227.00
1148                                                                                             2.00
1149                                                                                           300.00
1150                                                                                     small amount
1151                                                                                             8.00
1152                                                                                      unspecified
1153                                                                     based on weight (51-100 lbs)
1154                                                                     based on weight (51-100 lbs)
1155                                                                     based on weight (51-100 lbs)
1156                                                                                            23.00
1157                                                                                            23.00
1158                                                                                           375.00
1159                                                                   based on weight (50.1-100 lbs)
1160                                                                     based on weight (51-100 lbs)
1161                                                                        based on weight (60+ lbs)
1162                                                                                           375.00
1163                                                                                           150.00
1164                                                                                            23.00
1165                                                                                             9.70
1166                                                                                             8.80
1167                                                                                          1000.00
1168                                                                                  based on weight
1169                                                                      based on weight (26-50 lbs)
1170                                                                      based on weight (44-88 lbs)
1171                                                                                           272.00
1172                                                                                           227.00
1173                                                                      based on weight (45-88 lbs)
1174                                                                                         272, 228
1175                                                                                       8.8%, 9.8%
1176                                                                                         272, 228
1177                                                                                         8.8, 9.8
1178                                                                                           272.00
1179                                                                                      unspecified
1180                                                                                            50.00
1181                                                                                           200.00
1182                                                                                            50.00
1183                                                                                            23.80
1184                                                                                            50.00
1185                                                                                      unspecified
1186                                                                                      unspecified
1187                                                                                      unspecified
1188                                                                                           300.00
1189                                                                                      unspecified
1190                                                                                      unspecified
1191                                                                                           250.00
1192                                                                                           227.00
1193                                                                     based on weight (51-100 lbs)
1194                                                                     based on weight (51-100 lbs)
1195                                                                   based on weight (50.1-100 lbs)
1196                                                                                           100.00
1197                                                                                            23.00
1198                                                                                           272.00
1199                                                                                             2.80
1200                                                                                             2.30
1201                                                                                             0.50
1202                                                                                            75.00
1203                                                                                            75.00
1204                                                                                           125.00
1205                                                                                           272.00
1206                                                                                           272.00
1207                                                                                            16.00
1208                                                                        based on weight (55+ lbs)
1209                                                                                               75
1210                                                                                           200.00
1211                                                                                            16.00
1212                                                                                           100.00
1213                                                                                           272.00
1214                                                                                           136.00
1215                                                                                           272.00
1216                                                                                           272.00
1217                                                             272 ivermectin, 227 pyrantel pamoate
1218                                                                                           300.00
1219                                                                                            75.00
1220                                                                                             1.00
1221                                                                                           272.00
1222                                                                                             2.50
1223                                                                                            75.00
1224                                                                                           150.00
1225                                                                                           272.00
1226                                                                        based on weight (55+ lbs)
1227                                                                                           272.00
1228                                                                                           272.00
1229                                                                                           272.00
1230                                                                                           600.00
1231                                                                                            75.00
1232                                                                                           136.00
1233                                                                                      unspecified
1234                                                                                            75.00
1235                                                                                            37.50
1236                                                                                            20.00
1237                                                                                           150.00
1238                                                                                             2.00
1239                                                                                           300.00
1240                                                                                             2.00
1241                                                                                             1.00
1242                                                                                             1.00
1243                                                                                            20.00
1244                                                                                            23.00
1245                                                                                             5.00
1246                                                                                            20.00
1247                                                                     based on weight (51-100 lbs)
1248                                                                                               90
1249                                                                                            16.00
1250                                                                                           460.00
1251                                                                                           136.00
1252                                                                                            16.00
1253                                                                                            10.00
1254                                                                                           460.00
1255                                                                                           136.00
1256                                                                                            16.00
1257                                                                                            23.00
1258                                                                                           136.00
1259                                                                                             0.57
1260                                                                                           375.00
1261                                                                                           100.00
1262                                                                                            70.00
1263                                                                                             1.00
1264                                                                                            30.00
1265                                                                                           300.00
1266                                                                                            10.00
1267                                                                                           500.00
1268                                                                                            23.00
1269                                                                                            68.00
1270                                                                                            68.00
1271                                                                                           272.00
1272                                                                                           500.00
1273                                                                                             5.00
1274                                                                                               23
1275                                                                                            60.00
1276                                                                                             2.50
1277                                                                                            68.00
1278                                                                                            23.00
1279                                                                                            60.00
1280                                                                                           200.00
1281                                                                                           375.00
1282                                                                                           500.00
1283                                                                                           227.00
1284                                                                                            68.00
1285                                                                                      unspecified
1286                                                                                             8.00
1287                                                                                           200.00
1288                                                                                            60.00
1289                                                                                             1.00
1290                                                                                           125.00
1291                                                                                            60.00
1292                                                                                           500.00
1293                                                                                            23.00
1294                                                                                           125.00
1295                                                                                             2.68
1296                                                                                            23.00
1297                                                                                             1.00
1298                                                                                             2.68
1299                                                                                            23.00
1300                                                                                           375.00
1301                                                                                            23.00
1302                                                                                             9.80
1303                                                                                             1.00
1304                                                                                            50.00
1305                                                                                            15.00
1306                                                                                           500.00
1307                                                                                              600
1308                                                                                             4.70
1309                                                                                             2.68
1310                                                                                            23.00
1311                                                                                            23.00
1312                                                                                            80.00
1313                                                                                            50.00
1314                                                                                            20.00
1315                                                                                             1.00
1316                                                                                           600.00
1317                                                                                            50.00
1318                                                                                            20.00
1319                                                                                           100.00
1320                                                                                            60.00
1321                                                                                            20.00
1322                                                                                           800.00
1323                                                                                             3.00
1324                                                                                            50.00
1325                                                                                            20.00
1326                                                                                             1.00
1327                                                                                            20.00
1328                                                                                               75
1329                                                                                               66
1330                                                                                           200.00
1331                                                                                            50.00
1332                                                                                           130.00
1333                                                                                           100.00
1334                                                                                             0.50
1335                                                                                            20.00
1336                                                                                      unspecified
1337                                                                                            20.00
1338                                                                                             1.00
1339                                                                                             2.00
1340                                                                                             1.00
1341                                                                                           325.00
1342                                                                                             1.00
1343                                                                                            60.00
1344                                                                   based on weight (50.1-100 lbs)
1345                                                                                                6
1346                                                                                  moderate amount
1347                                                                                          1000.00
1348                                                                                                2
1349                                                                                          1000.00
1350                                                                                            20.00
1351                                                                                             0.14
1352                                                                                             2.00
1353                                                                                             8.00
1354                                                                                          1000.00
1355                                                                     based on weight (89-132 lbs)
1356                                                                                            24.00
1357                                                                                             4.02
1358                                                                                            16.00
1359                                                                                             9.80
1360                                                                                            23.00
1361                                                                                            24.00
1362                                                                                            90.00
1363                                                                                           600.00
1364                                                                                             4.70
1365                                                                                             4.02
1366                                                                                            23.00
1367                                                                                            23.00
1368                                                                                           120.00
1369                                                                                           500.00
1370                                                                                           200.00
1371                                                                     based on weight (51-100 lbs)
1372                                                                                           500.00
1373                                                                                             1.00
1374                                                                                           500.00
1375                                                                                           200.00
1376                                                                                           500.00
1377                                                                                                1
1378                                                                                                1
1379                                                                                                1
1380                                                                                                1
1381                                                                                           500.00
1382                                                                                            75.00
1383                                                                                           500.00
1384                                                                                             0.25
1385                                                                                             0.50
1386                                                                                           300.00
1387                                                                                            75.00
1388                                                                                           200.00
1389                                                                                            10.00
1390                                                                                            16.00
1391                                                                                            60.00
1392                                                                                            16.00
1393                                                                                             1.00
1394                                                                                            16.00
1395                                                                                            10.00
1396                                                                                           200.00
1397                                                                                           500.00
1398                                                                                              1.5
1399                                                                                            16.00
1400                                                                                            90.00
1401                                                                                            20.00
1402                                                                                             1.00
1403                                                                                           500.00
1404                                                                                      unspecified
1405                                                                                      unspecified
1406                                                                                           500.00
1407                                                                                           100.00
1408                                                                                           200.00
1409                                                                                           200.00
1410                                                                                           200.00
1411                                                                                          1000.00
1412                                                                                            10.00
1413                                                                                           200.00
1414                                                                                            24.00
1415                                                                                      unspecified
1416                                                                                              100
1417                                                                                                1
1418                                                                                              500
1419                                                                                                1
1420                                                                                676 dha, 1030 epa
1421                                                                                            60.00
1422                                                                     based on weight (51-100 lbs)
1423                                                                                           750.00
1424                                                                                            50.00
1425                                                                                            15.00
1426                                                                                            50.00
1427                                                                                           500.00
1428                                                                                           500.00
1429                                                                                            50.00
1430                                                                                            60.00
1431                                                                                             2.00
1432                                                                                            16.00
1433                                                                                            16.00
1434                                                                      based on weight (45-88 lbs)
1435                                                                   based on weight (50.1-100 lbs)
1436                                                                                            16.00
1437                                                                                            50.00
1438                                                                     based on weight (51-100 lbs)
1439                                                                                            60.00
1440                                                                                             1.00
1441                                                                     based on weight (51-100 lbs)
1442                                                                   based on weight (50.1-100 lbs)
1443                                                                      based on weight (44-88 lbs)
1444                                                                                            70.00
1445                                                                                             1.00
1446                                                                                             1.00
1447                                                                                             1.00
1448                                                                                             1.00
1449                                                                                            60.00
1450                                                                      based on weight (45-88 lbs)
1451                                                                     based on weight (51-100 lbs)
1452                                                                                            70.00
1453                                                                                             1.00
1454                                                                                            70.00
1455                                                                                           300.00
1456                                                                                            50.00
1457                                                                                           150.00
1458                                                                                           100.00
1459                                                                       based on weight (2-55 lbs)
1460                                                                                            50.00
1461                                                                                            10.00
1462                                                                      based on weight (56-95 lbs)
1463                                                                                           900.00
1464                                                                     based on weight (51-100 lbs)
1465                                                                                             0.09
1466                                                                                             1.25
1467                                                                                             2.00
1468                                                                                             2.00
1469                                                                                            23.00
1470                                                                                           100.00
1471                                                                                           100.00
1472                                                                                             1.00
1473                                                                                      unspecified
1474                                                                                             1.90
1475                                                                                      unspecified
1476                                                                                           500.00
1477                                                                                             1.00
1478                                                                                           500.00
1479                                                                                            10.00
1480                                                                                             5.00
1481                                                                                             5.00
1482                                                                                           500.00
1483                                                                                             1.50
1484                                                                                            10.00
1485                                                                                           500.00
1486                                                                                             5.00
1487                                                                                             0.40
1488                                                                                             1.00
1489                                                                                             1.00
1490                                                                                             1.00
1491                                                                                                1
1492                                                                                           272.00
1493                                                                                           200.00
1494                                                                                            25.00
1495                                                                                           200.00
1496                                                                                             1.00
1497                                                                                           200.00
1498                                                                                            50.00
1499                                                                                        27 , 1620
1500                                                             27mg milbemycin oxime, 1620 spinosad
1501                                                                                      unspecified
1502                                                                                              272
1503                                                                                             72.5
1504                                                                                             0.25
1505                                                                                           400.00
1506                                                                                             7.00
1507                                                                                             3.00
1508                                                                                         10000.00
1509                                                                                           400.00
1510                                                                                           272.00
1511                                                                    based on weight (24.1-60 lbs)
1512                                                                        based on weight (55+ lbs)
1513                                                                                           272.00
1514                                                                    based on weight (24.1-60 lbs)
1515                                                                                           272.00
1516                                                                                           136.00
1517                                                                                           227.00
1518                                                                                           136.00
1519                                                                                           272.00
1520                                                                                            68.00
1521                                                                                            60.00
1522                                                                                           375.00
1523                                                                                          1000.00
1524                                                                                           600.00
1525                                                                                             0.50
1526                                                                                            50.00
1527                                                                                           272.00
1528                                                                        based on weight (55+ lbs)
1529                                                                     based on weight (51-100 lbs)
1530                                                                                           272.00
1531                                                                                           272.00
1532                                                                        based on weight (55+ lbs)
1533                                                                                           272.00
1534                                                                        based on weight (55+ lbs)
1535                                                                     based on weight (51-100 lbs)
1536                                                                        based on weight (55+ lbs)
1537                                                            23 milbemycin oxime, 228 praziquantel
1538                                                            23 milbemycin oxime, 228 praziquantel
1539                                                                        based on weight (55+ lbs)
1540                                                                                             1.00
1541                                                                                      unspecified
1542                                                                                      unspecified
1543                                                                                             1.00
1544                                                                                           500.00
1545                                                                                           500.00
1546                                                                                           200.00
1547                                                                                           100.00
1548                                                                                            75.00
1549                                                                                             3.00
1550                                                                                             6.00
1551                                                                                             1.00
1552                                                                                           100.00
1553                                                                                             8.00
1554                                                                                            12.00
1555                                                                                             7.00
1556                                                                                         inhalant
1557                                                                                            16.00
1558                                                                                           200.00
1559                                                                                           375.00
1560                                                                                           100.00
1561                                                                                            50.00
1562                                                                                           400.00
1563                                                                                            75.00
1564                                                                                           400.00
1565                                                                                            50.00
1566                                                                                           375.00
1567                                                                                             2.50
1568                                                                                           500.00
1569                                                                                             1.00
1570                                                                                             1.00
1571                                                                                                2
1572                                                            23 milbemycin oxime, 228 praziquantel
1573                                                                                           136.00
1574                                                                                            80.00
1575                                                                                           100.00
1576                                                                                             1.00
1577                                                                                             0.40
1578                                                                                           100.00
1579                                                                                           100.00
1580                                                                                             0.40
1581                                                                                            20.00
1582                                                                                            50.00
1583                                                                                           272.00
1584                                                                                           227.00
1585                                                                                             4.00
1586                                                                                     small amount
1587                                                                                      unspecified
1588                                                                                          1000.00
1589                                                                                            75.00
1590                                                                                             7.50
1591                                                                                           225.00
1592                                                                                           100.00
1593                                                                                            20.00
1594                                                                                            50.00
1595                                                                                           250.00
1596                                                                                            60.00
1597                                                                                            60.00
1598                                                                     based on weight (51-100 lbs)
1599                                                             272 ivermectin, 227 pyrantel pamoate
1600                                                                                           136.00
1601                                                                                             1.00
1602                                                                                             7.50
1603                                                                                            70.00
1604                                                                                             3.75
1605                                                                                           200.00
1606                                                                                             0.13
1607                                                                                             6.30
1608                                                                                           180.00
1609                                                                                             2.50
1610                                                                                           204.00
1611                                                                                             1.00
1612                                                                                            80.00
1613                                                                                           200.00
1614                                                                                            80.00
1615                                                                                             7.00
1616                                                                                           200.00
1617                                                                                           204.00
1618                                                                                            80.00
1619                                                                                            50.00
1620                                                                                           500.00
1621                                                                                            10.00
1622                                                                                            50.00
1623                                                                                            75.00
1624                                                                                            50.00
1625                                                                                             1.50
1626                                                                                            50.00
1627                                                                                           272.00
1628                                                                                             2.68
1629                                                                                            50.00
1630                                                                                           272.00
1631                                                                                             2.68
1632                                                                                             0.10
1633                                                                                                1
1634                                                                      based on weight (45-88 lbs)
1635                                                                              tablet/pill/capsule
1636                                                                                                1
1637                                                                                             1.00
1638                                                                                             1.00
1639                                                                                             1.00
1640                                                                                             1.00
1641                                                                                            75.00
1642                                                                                           500.00
1643                                                                                           500.00
1644                                                                                            20.00
1645                                                                                             0.25
1646                                                                                            75.00
1647                                                                                           500.00
1648                                                                                           500.00
1649                                                                                           200.00
1650                                                                                      unspecified
1651                                                                                           100.00
1652                                                                                            75.00
1653                                                                                             1.00
1654                                                                                           272.00
1655                                                                                           272.00
1656                                                                                             2.68
1657                                                                                           272.00
1658                                                                                             0.09
1659                                                                                           272.00
1660                                                                                            68.00
1661                                                                                            50.00
1662                                                                                            15.00
1663                                                                     based on weight (60-120 lbs)
1664                                                                                            25.00
1665                                                                                           250.00
1666                                                                                           250.00
1667                                                                                           750.00
1668                                                                                      unspecified
1669                                                                                           272.00
1670                                                                                           272.00
1671                                                                                               66
1672                                                                                             2.68
1673                                                                                            29.00
1674                                                                                             1.00
1675                                                                                             2.00
1676                                                                                           272.00
1677                                                                                           272.00
1678                                                                                           500.00
1679                                                                                             1.00
1680                                                                                             1.00
1681                                                                                             1.00
1682                                                                                           272.00
1683                                                                                           collar
1684                                                                                      unspecified
1685                                                                                                 
1686                                                                                           500.00
1687                                                                                           120.00
1688                                                                                           272.00
1689                                                                                  moderate amount
1690                                                                                                1
1691                                                                                           500.00
1692                                                                                  moderate amount
1693                                                                                           100.00
1694                                                                                           100.00
1695                                                                                                1
1696                                                                                            75.00
1697                                                                                  based on weight
1698                                                                                            23.00
1699                                                                                             2.68
1700                                                                                             2.68
1701                                                                                             8.00
1702                                                                                             1.00
1703                                                                                           375.00
1704                                                                                             2.50
1705                                                                                            50.00
1706                                                                                             8.00
1707                                                                                             2.68
1708                                                                                          23, 460
1709                                                                                             8.00
1710                                                               460 lufenuron, 26 milbemycin oxime
1711                                                                                             2.68
1712                                                                     based on weight (50-100 lbs)
1713                                                                                             2.68
1714                                                                                          1000.00
1715                                                                     based on weight (51-100 lbs)
1716                                                                                             2.68
1717                                                                                          1000.00
1718                                                               460 lufenuron, 23 milbemycin oxime
1719                                                                                               80
1720                                                                     based on weight (51-100 lbs)
1721                                                                                           120.00
1722                                                                                          1000.00
1723                                                                                          2000.00
1724                                                                                            10.00
1725                                                                                           272.00
1726                                                                                             4.00
1727                                                                                             1.00
1728                                                                                             1.00
1729                                                                                                1
1730                                                                                                1
1731                                                                                             1.00
1732                                                                                             1.00
1733                                                                                           272.00
1734                                                                                           272.00
1735                                                                                           272.00
1736                                                                                           272.00
1737                                                                                           227.00
1738                                                                                           200.00
1739                                                                                           227.00
1740                                                                                            20.00
1741                                                                                           227.00
1742                                                                                           272.00
1743                                                                                  based on weight
1744                                                                                           272.00
1745                                                                                          1647.00
1746                                                                                             1.50
1747                                                                                           1 bath
1748                                                                                      application
1749                                                                     based on weight (60-120 lbs)
1750                                                                                           750.00
1751                                                                                           120.00
1752                                                                                           400.00
1753                                                                                             0.04
1754                                                                                            20.00
1755                                                                                             3.70
1756                                                                                      unspecified
1757                                                                                      unspecified
1758                                                                     based on weight (51-100 lbs)
1759                                                                     based on weight (60-121 lbs)
1760                                                                                            42.05
1761                                                                                     0.284 , 0.57
1762                                                                                           375.00
1763                                                                                            75.00
1764                                                                                           100.00
1765                                                                                           200.00
1766                                                                                            15.00
1767                                                                                             2.00
1768                                                                                           200.00
1769                                                                                      application
1770                                                                                            23.00
1771                                                                                          1000.00
1772                                                                                           200.00
1773                                                                         3 tablets/pills/capsules
1774                                                                                         23 , 460
1775                                                                                             1000
1776                                                                                          1000.00
1777                                                                                            23.00
1778                                                                                           272.00
1779                                                                                          1000.00
1780                                                                                           272.00
1781                                                                                          1000.00
1782                                                                                           132.00
1783                                                                                             3.20
1784                                                                                            50.00
1785                                                                                           272.00
1786                                                                                          1000.00
1787                                                                                           240.00
1788                                                                                          1090.00
1789                                                                                      unspecified
1790                                                                                           375.00
1791                                                                                      unspecified
1792                                                                                           150.00
1793                                                                                           200.00
1794                                                                                      unspecified
1795                                                                                      unspecified
1796                                                                                      unspecified
1797                                                                                            50.00
1798                                                                         based on weight (75 lbs)
1799                                                                                             1.00
1800                                                                                           250.00
1801                                                                                           300.00
1802                                                                                            15.00
1803                                                                                             3.00
1804                                                                                            22.00
1805                                                                                     small amount
1806                                                                                            95.00
1807                                                                                            95.00
1808                                                                                           500.00
1809                                                                                      unspecified
1810                                                                                          1000.00
1811                                                                                           500.00
1812                                                                                                1
1813                                                                                                1
1814                                                                                           100.00
1815                                                                                            50.00
1816                                                                                           170.00
1817                                                                                             1.00
1818                                                                                             0.50
1819                                                                                      unspecified
1820                                                                                      unspecified
1821                                                                                           150.00
1822                                                                                           100.00
1823                                                                                      unspecified
1824                                                                                            50.00
1825                                                                                            16.00
1826                                                                                             1.20
1827                                                                                            10.00
1828                                                                                           272.00
1829                                                                                           500.00
1830                                                                                             1.00
1831                                                                                             1.00
1832                                                                                             1.40
1833                                                                                            16.00
1834                                                                                           272.00
1835                                                                                           136.00
1836                                                                                           272.00
1837                                                                                           136.00
1838                                                                                           272.00
1839                                                                                           136.00
1840                                                                                           100.00
1841                                                                                             1.00
1842                                                                                             1.00
1843                                                                                           272.00
1844                                                                                           272.00
1845                                                                        based on weight (55+ lbs)
1846                                                                     based on weight (51-100 lbs)
1847                                                                        based on weight (55+ lbs)
1848                                                                     based on weight (51-100 lbs)
1849                                                                     based on weight (51-100 lbs)
1850                                                                                  0.25 inch strip
1851                                                                                     small amount
1852                                                                                           100.00
1853                                                                                             5.00
1854                                                                                           500.00
1855                                                                                           500.00
1856                                                                                            20.00
1857                                                                                           500.00
1858                                                                                            68.00
1859                                                                                             4.00
1860                                                                                            50.00
1861                                                                                               75
1862                                                                                            75.00
1863                                                                                           272.00
1864                                                                                             75.5
1865                                                                                           900.00
1866                                                                                             75.5
1867                                                                     based on weight (51-100 lbs)
1868                                                                                           500.00
1869                                                                                             1.00
1870                                                                                           150.00
1871                                                                                             5.00
1872                                                                     based on weight (51-100 lbs)
1873                                                                                             75.5
1874                                                                                            66.00
1875                                                                                             8.00
1876                                                                                           190.00
1877                                                                                      unspecified
1878                                                                                            50.00
1879                                                                                           375.00
1880                                                                                           227.00
1881                                                                                           375.00
1882                                                                                            10.00
1883                                                                                             8.00
1884                                                                                             8.00
1885                                                                                             1.00
1886                                                                                             1.00
1887                                                                                                 
1888                                                                                       continuous
1889                                                                                           272.00
1890                                                                                            60.00
1891                                                                                             1.00
1892                                                                                             1.00
1893                                                                                             1.00
1894                                                                                             1.00
1895                                                                                            50.00
1896                                                                                            60.00
1897                                                                                             1.00
1898                                                                                           375.00
1899                                                                                           375.00
1900                                                                                           100.00
1901                                                                                           300.00
1902                                                                                           150.00
1903                                                                                            50.00
1904                                                                                            10.00
1905                                                                                               75
1906                                                                                              500
1907                                                                                            50.00
1908                                                                                           190.00
1909                                                                                             75.5
1910                                                                                           900.00
1911                                                                                            14.00
1912                                                                                             7.00
1913                                                                                             7.00
1914                                                                                           200.00
1915                                                                                             0.50
1916                                                                                             75.5
1917                                                                     based on weight (51-100 lbs)
1918                                                                                             1.50
1919                                                                                           750.00
1920                                                                                             1.00
1921                                                                                             2.00
1922                                                                                                 
1923                                                                                            68.00
1924                                                                                             8.00
1925                                                                                      unspecified
1926                                                                                     small amount
1927                                                                                            16.00
1928                                                                     based on weight (51-100 lbs)
1929                                                                                      unspecified
1930                                                                                             2.00
1931                                                                                     small amount
1932                                                                                           150.00
1933                                                                                            50.00
1934                                                                                             2.00
1935                                                                                            60.00
1936                                                                                           190.00
1937                                                                                            50.00
1938                                                                                             2.00
1939                                                                                      unspecified
1940                                                                                           200.00
1941                                                                                      application
1942                                                                                           190.00
1943                                                                                            50.00
1944                                                                                             2.00
1945                                                                                                 
1946                                                                                           190.00
1947                                                                                            70.00
1948                                                                                  based on weight
1949                                                                                             1.00
1950                                                                                            50.00
1951                                                                                           200.00
1952                                                                                             2.00
1953                                                                                            50.00
1954                                                                                               11
1955                                                                                             33.5
1956                                                                                               38
1957                                                                                           250.00
1958                                                                                             1.00
1959                                                                                            10.50
1960                                                                                             66.5
1961                                                                                           100.00
1962                                                                     based on weight (51-100 lbs)
1963                                                                                             1.00
1964                                                                                             1.00
1965                                                                                     small amount
1966                                                                                           240.00
1967                                                                                          1200.00
1968                                                                                           450.00
1969                                                                                             2.00
1970                                                                                           136.00
1971                                                                                             2.50
1972                                                                                             1.00
1973                                                                                             1.00
1974                                                                                             1.00
1975                                                                                             4.00
1976                                                                                           272.00
1977                                                                                          1200.00
1978                                                                                           900.00
1979                                                                                             2.00
1980                                                                                      application
1981                                                                                                1
1982                                                                     based on weight (51-100 lbs)
1983                                                                        based on weight (55+ lbs)
1984                                                                                  based on weight
1985                                                                                                1
1986                                                                                             1.00
1987                                                                                             1.00
1988                                                                                           100.00
1989                                                                                             1.00
1990                                                                                           300.00
1991                                                                                            50.00
1992                                                                                           500.00
1993                                                                                           136.00
1994                                                                                      unspecified
1995                                                                                            70.00
1996                                                                                            50.00
1997                                                                                           400.00
1998                                                                                     small amount
1999                                                                                           272.00
2000                                                                                          1000.00
2001                                                                                           272.00
2002                                                                                          1000.00
2003                                                                                          1000.00
2004                                                                                            75.00
2005                                                                                          1000.00
2006                                                             272 ivermectin, 227 pyrantel pamoate
2007                                                                                              500
2008                                                                                           900.00
2009                                                                                           937.50
2010                                                                                             9.80
2011                                                                                           500.00
2012                                                                                      unspecified
2013                                                                                      unspecified
2014                                                                                           200.00
2015                                                                                             5.00
2016                                                                     based on weight (51-100 lbs)
2017                                                                                           272.00
2018                                                                                           100.00
2019                                                                                           300.00
2020                                                                                           100.00
2021                                                                                             5.00
2022                                                                                      application
2023                                                                                             1.00
2024                                                                                             1.00
2025                                                                        based on weight (55+ lbs)
2026                                                                     based on weight (50-100 lbs)
2027                                                                                             1.00
2028                                                                                           500.00
2029                                                                     based on weight (51-100 lbs)
2030                                                                                  based on weight
2031                                                                                           136.00
2032                                                                                      unspecified
2033                                                                                      unspecified
2034                                                                                      unspecified
2035                                                                                               38
2036                                                                                             66.5
2037                                                                                           250.00
2038                                                                                             1.00
2039                                                                                           272.00
2040                                                                                           227.00
2041                                                                     based on weight (51-100 lbs)
2042                                                                      based on weight (26-50 lbs)
2043                                                                                               11
2044                                                                                               50
2045                                                                                            50.00
2046                                                                                            13.00
2047                                                                                             2.20
2048                                                                                             0.22
2049                                                                                             0.11
2050                                                                     based on weight (51-100 lbs)
2051                                                                                             66.5
2052                                                                                             7.60
2053                                                                                            11.00
2054                                                                                           125.00
2055                                                                                           375.00
2056                                                                                            50.00
2057                                                                                             4.00
2058                                                                                           150.00
2059                                                                                           272.00
2060                                                                                           272.00
2061                                                                                           200.00
2062                                                                                           272.00
2063                                                                                           220.00
2064                                                                                             1.00
2065                                                                                           220.00
2066                                                                                             2.68
2067                                                                                          1000.00
2068                                                                                           150.00
2069                                                                                           272.00
2070                                                                                             2.68
2071                                                                                            80.00
2072                                                                                              500
2073                                                                                           272.00
2074                                                                                           272.00
2075                                                                     based on weight (51-100 lbs)
2076                                                                                           272.00
2077                                                                                          1000.00
2078                                                                                            75.00
2079                                                                                            23.00
2080                                                                                           160.00
2081                                                                                           900.00
2082                                                                                          1000.00
2083                                                                      based on weight (40-85 lbs)
2084                                                                     based on weight (51-100 lbs)
2085                                                                                  based on weight
2086                                                                                               75
2087                                                                     based on weight (51-100 lbs)
2088                                                                      based on weight (44-88 lbs)
2089                                                                        based on weight (80+ lbs)
2090                                                                                             1.60
2091                                                                     based on weight (51-100 lbs)
2092                                                                                          1000.00
2093                                                                        based on weight (80+ lbs)
2094                                                                                             1.60
2095                                                                                             1.60
2096                                                                                             1.00
2097                                                                                             3.75
2098                                                                                           160.00
2099                                                                                             6.00
2100                                                                                             3.75
2101                                                                                             2.00
2102                                                                                             3.75
2103                                                                                           136.00
2104                                                                                           500.00
2105                                                                                            20.00
2106                                                                                             7.50
2107                                                                     based on weight (51-100 lbs)
2108                                                                                  based on weight
2109                                                                     based on weight (51-100 lbs)
2110                                                                     based on weight (51-100 lbs)
2111                                                                                           150.00
2112                                                                                           200.00
2113                                                                                         tapering
2114                                                                                            16.00
2115                                                                                      unspecified
2116                                                                                      unspecified
2117                                                                                            20.00
2118                                                                                             1.00
2119                                                                                           300.00
2120                                                                                             1.00
2121                                                                                           272.00
2122                                                                                            50.00
2123                                                                                                1
2124                                                                                             1.00
2125                                                                                           750.00
2126                                                                     based on weight (51-100 lbs)
2127                                                                     based on weight (51-100 lbs)
2128                                                                                             9.00
2129                                                                                          1000.00
2130                                                                                            13.30
2131                                                                                             3.25
2132                                                                                             1.26
2133                                                                                             0.90
2134                                                                                             7.50
2135                                                                                           750.00
2136                                                                                          1000.00
2137                                                                                             1.00
2138                                                                                             3.00
2139                                                                                             8.00
2140                                                                                             2.50
2141                                                                                             1.00
2142                                                                                             1.00
2143                                                                                             1.00
2144                                                                                             2.00
2145                                                                                           500.00
2146                                                                                             1.00
2147                                                                                             1.00
2148                                                                                            15.00
2149                                                                     based on weight (51-100 lbs)
2150                                                                                             1.00
2151                                                                     based on weight (51-100 lbs)
2152                                                                                             1.00
2153                                                                                             1.50
2154                                                                                            16.00
2155                                                                                             4.50
2156                                                                                             1.80
2157                                                                                             0.60
2158                                                                                          1000.00
2159                                                                                             3.75
2160                                                                                           100.00
2161                                                                     based on weight (51-100 lbs)
2162                                                                                               66
2163                                                                                             1.00
2164                                                                                         45294.00
2165                                                                                     small amount
2166                                                                                      as directed
2167                                                                                             1.00
2168                                                                                           500.00
2169                                                                                          1000.00
2170                                                                                           700.00
2171                                                                                            60.00
2172                                                                                           240.00
2173                                                                                          1000.00
2174                                                                                           500.00
2175                                                                                             1.00
2176                                                                                            50.00
2177                                                                                           200.00
2178                                                                                            23.00
2179                                                                                           810.00
2180                                                                                            50.00
2181                                                                                           250.00
2182                                                                                            93.00
2183                                                                                           120.00
2184                                                                                            50.00
2185                                                                                            40.00
2186                                                                                            50.00
2187                                                                                          1000.00
2188                                                                                           800.00
2189                                                                                            68.00
2190                                                                                            68.00
2191                                                                                           200.00
2192                                                                                            50.00
2193                                                                                          1000.00
2194                                                                                           800.00
2195                                                                                      unspecified
2196                                                                                           272.00
2197                                                                                            68.00
2198                                                                                           272.00
2199                                                                     based on weight (51-100 lbs)
2200                                                                    based on weight (24.1-60 lbs)
2201                                                                                  based on weight
2202                                                                                  based on weight
2203                                                                                  based on weight
2204                                                                     based on weight (51-100 lbs)
2205                                                                    based on weight (24.1-60 lbs)
2206                                                                         2 tablets/pills/capsules
2207                                                                                                1
2208                                                                                             0.30
2209                                                                                             1.00
2210                                                                                           100.00
2211                                                                                      unspecified
2212                                                                                            50.00
2213                                                                                            50.00
2214                                                                                             1.00
2215                                                                                            50.00
2216                                                                                             1.00
2217                                                                                             2.00
2218                                                                                            50.00
2219                                                                                         1 pellet
2220                                                                                         1 pellet
2221                                                                                              500
2222                                                                                             1.00
2223                                                                                             1.00
2224                                                                                      unspecified
2225                                                                                              750
2226                                                                                      unspecified
2227                                                                                           750.00
2228                                                                                                1
2229                                                                                      unspecified
2230                                                                                              500
2231                                                                                            20.00
2232                                                                                             1.00
2233                                                                     based on weight (50-100 lbs)
2234                                                                                             1.00
2235                                                                                             1.00
2236                                                                                           200.00
2237                                                                                             1.50
2238                                                                                             1.00
2239                                                                                             1.00
2240                                                                                             1.00
2241                                                                                      application
2242                                                                                             0.30
2243                                                                     based on weight (50-100 lbs)
2244                                                                      based on weight (44-88 lbs)
2245                                                                                              0.5
2246                                                                                            60.00
2247                                                                                            10.00
2248                                                                                           100.00
2249                                                                                            50.00
2250                                                                                      unspecified
2251                                                                                               50
2252                                                                                             1.00
2253                                                                                            68.00
2254                                                                                          1000.00
2255                                                                      based on weight (21-55 lbs)
2256                                                                                           450.00
2257                                                                                             4.00
2258                                                                                      unspecified
2259                                                                                      unspecified
2260                                                                                      unspecified
2261                                                                                      unspecified
2262                                                                                      unspecified
2263                                                                                      unspecified
2264                                                                                      unspecified
2265                                                                                      unspecified
2266                                                                                      unspecified
2267                                                                                           375.00
2268                                                                                           375.00
2269                                                                                      unspecified
2270                                                                                      unspecified
2271                                                                                            60.00
2272                                                                                      unspecified
2273                                                                                            20.00
2274                                                                                           375.00
2275                                                                                            25.00
2276                                                                                            15.00
2277                                                                                           272.00
2278                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
2279                                                                     based on weight (51-100 lbs)
2280                                                                     based on weight (51-100 lbs)
2281                                                                                           250.00
2282                                                                                             1.00
2283                                                                     based on weight (51-100 lbs)
2284                                                                                           272.00
2285                                                                                           200.00
2286                                                                                             2.50
2287                                                                                           272.00
2288                                                                                           500.00
2289                                                                                             0.25
2290                                                                                           300.00
2291                                                                                            10.00
2292                                                                                           300.00
2293                                                                                            75.00
2294                                                                                           500.00
2295                                                                                            75.00
2296                                                                                            12.50
2297                                                                                             1.00
2298                                                                                            50.00
2299                                                                                           480.00
2300                                                                                          1000.00
2301                                                                                  moderate amount
2302                                                                                       0.75, 0.75
2303                                                                                          1000.00
2304                                                                                             4.00
2305                                                                                            12.00
2306                                                                                           500.00
2307                                                                                             1.00
2308                                                                                           272.00
2309                                                                                           136.00
2310                                                                                           200.00
2311                                                                                           272.00
2312                                                                                           136.00
2313                                                                                           500.00
2314                                                                                           500.00
2315                                                                                           200.00
2316                                                                                            10.00
2317                                                                                           500.00
2318                                                                                           500.00
2319                                                                                           500.00
2320                                                                                            75.00
2321                                                                                             2.00
2322                                                                                           300.00
2323                                                                                           100.00
2324                                                                                           500.00
2325                                                                                            20.00
2326                                                                                            75.00
2327                                                                                             1.00
2328                                                                                           500.00
2329                                                                                             1.00
2330                                                                                            50.00
2331                                                                                            70.00
2332                                                                                           500.00
2333                                                                                              272
2334                                                                                           272.00
2335                                                                                           272.00
2336                                                                                           227.00
2337                                                                                             9.10
2338                                                                                            20.00
2339                                                                                                1
2340                                                                                           272.00
2341                                                                                           227.00
2342                                                                                                1
2343                                                                                           272.00
2344                                                                                           227.00
2345                                                                                              272
2346                                                                                           227.00
2347                                                                                              272
2348                                                                                           227.00
2349                                                                                            20.00
2350                                                                                           300.00
2351                                                                                             1.50
2352                                                                                              272
2353                                                                                           227.00
2354                                                                                            20.00
2355                                                                                           350.00
2356                                                                                              272
2357                                                                                            20.00
2358                                                                                           229.00
2359                                                                                           429.00
2360                                                                                            60.00
2361                                                                                             6.00
2362                                                                                           500.00
2363                                                                                           500.00
2364                                                                                            30.00
2365                                                                                           300.00
2366                                                                                            20.00
2367                                                                                           500.00
2368                                                                                            20.00
2369                                                                                           500.00
2370                                                                                            68.00
2371                                                                                             1.00
2372                                                                                           350.00
2373                                                                                           500.00
2374                                                                                             1.00
2375                                                                                           250.00
2376                                                                                           300.00
2377                                                                                             8.00
2378                                                                                           100.00
2379                                                                                            75.00
2380                                                                                             1.00
2381                                                                                           250.00
2382                                                                                           500.00
2383                                                                                           400.00
2384                                                                                               75
2385                                                                                           500.00
2386                                                                                               75
2387                                                                                             0.15
2388                                                                                            30.00
2389                                                                                            48.00
2390                                                                                                 
2391                                                                                           250.00
2392                                                                                            37.50
2393                                                                                             1.00
2394                                                                                             4.00
2395                                                                                           252.00
2396                                                                                            80.00
2397                                                                                             1.00
2398                                                                                                 
2399                                                                                           272.00
2400                                                                                            30.00
2401                                                                                             1.00
2402                                                                                             1.00
2403                                                                                             1.00
2404                                                                     based on weight (51-100 lbs)
2405                                                                      based on weight (44-88 lbs)
2406                                                                                                1
2407                                                                                           272.00
2408                                                                                               66
2409                                                                     based on weight (51-100 lbs)
2410                                                                                           500.00
2411                                                                                             1000
2412                                                                                              150
2413                                                                                           100.00
2414                                                                                            75.00
2415                                                                                           200.00
2416                                                                                           272.00
2417                                                                                           227.00
2418                                                             272 ivermectin, 227 pyrantel pamoate
2419                                                                                              272
2420                                                                                           272.00
2421                                                                                            16.00
2422                                                                                            16.00
2423                                                                                          1000.00
2424                                                                                               60
2425                                                                                               20
2426                                                                                              250
2427                                                                                              500
2428                                                                                               16
2429                                                                                            16.00
2430                                                                                           500.00
2431                                                                                            75.00
2432                                                                                            16.00
2433                                                                                            75.00
2434                                                                                           500.00
2435                                                                                            75.00
2436                                                                                           300.00
2437                                                                                             1.00
2438                                                                                           500.00
2439                                                                                           500.00
2440                                                                                           250.00
2441                                                                                             3.00
2442                                                                                             1.00
2443                                                                                             2.00
2444                                                                                           227.00
2445                                                                                           250.00
2446                                                                                             1.00
2447                                                                                           100.00
2448                                                                                             1.00
2449                                                                                             1.00
2450                                                                                              150
2451                                                                                             3.50
2452                                                                                             3.20
2453                                                                                               60
2454                                                                                             3.60
2455                                                                                               60
2456                                                                                               60
2457                                                                                           500.00
2458                                                                                            50.00
2459                                                                                             5.00
2460                                                                                             5.00
2461                                                                                            15.00
2462                                                                                            12.00
2463                                                                                          0.5 cup
2464                                                                              tablet/pill/capsule
2465                                                                                             1.00
2466                                                                                           500.00
2467                                                                              tablet/pill/capsule
2468                                                                                           300.00
2469                                                                                            60.00
2470                                                                                           500.00
2471                                                                                            20.00
2472                                                                                             5.00
2473                                                                                     small amount
2474                                                                                     small amount
2475                                                                                           200.00
2476                                                                                            30.00
2477                                                                                        injection
2478                                                                                        injection
2479                                                                              tablet/pill/capsule
2480                                                                                           100.00
2481                                                                                                 
2482                                                                     based on weight (51-100 lbs)
2483                                                                                               90
2484                                                                                           200.00
2485                                                                                            16.00
2486                                                                                      as directed
2487                                                                                      as directed
2488                                                                                           375.00
2489                                                                                            75.00
2490                                                                                                5
2491                                                                                      application
2492                                                                                      application
2493                                                                                            16.00
2494                                                                                           200.00
2495                                                                                             1.00
2496                                                                                            20.00
2497                                                                                             1.00
2498                                                                                           250.00
2499                                                                                      unspecified
2500                                                                     based on weight (51-100 lbs)
2501                                                                                               75
2502                                                                                                2
2503                                                                                               16
2504                                                                   based on weight (60.1-120 lbs)
2505                                                                                                1
2506                                                                                                1
2507                                                                                           250.00
2508                                                                              tablet/pill/capsule
2509                                                                                            60.00
2510                                                                                           272.00
2511                                                                                           272.00
2512                                                                                           227.00
2513                                                                                           228.00
2514                                                                                           272.00
2515                                                                                           500.00
2516                                                                                           272.00
2517                                                                     based on weight (51-100 lbs)
2518                                                                         2 tablets/pills/capsules
2519                                                                                           460.00
2520                                                                                           150.00
2521                                                                                            23.00
2522                                                                                            23.00
2523                                                                                             0.75
2524                                                                                             0.75
2525                                                                                           125.00
2526                                                                                             1.40
2527                                                                                           125.00
2528                                                                                           170.00
2529                                                                                             1.40
2530                                                                                           125.00
2531                                                                                           136.00
2532                                                                                            20.00
2533                                                                                           150.00
2534                                                                                      unspecified
2535                                                                                           100.00
2536                                                                                             1.00
2537                                                                                           272.00
2538                                                                                           272.00
2539                                                                     based on weight (51-100 lbs)
2540                                                                                                1
2541                                                                                           136.00
2542                                                                     based on weight (51-100 lbs)
2543                                                                        based on weight (18+ lbs)
2544                                                                                              750
2545                                                                     based on weight (50-100 lbs)
2546                                                                        based on weight (18+ lbs)
2547                                                                     based on weight (51-100 lbs)
2548                                                                        based on weight (18+ lbs)
2549                                                                                      unspecified
2550                                                                                      unspecified
2551                                                                                            75.00
2552                                                                                           500.00
2553                                                                                            75.00
2554                                                                                           500.00
2555                                                                                            75.00
2556                                                                                           500.00
2557                                                                                            20.00
2558                                                                     based on weight (50-100 lbs)
2559                                                                     based on weight (50-100 lbs)
2560                                                                                  based on weight
2561                                                                                            20.00
2562                                                                     based on weight (50-100 lbs)
2563                                                                                             8.00
2564                                                                                           227.00
2565                                                                                            20.00
2566                                                                              tablet/pill/capsule
2567                                                                                            20.00
2568                                                                                            16.00
2569                                                                                             8.00
2570                                                                                             0.40
2571                                                                                             0.30
2572                                                                                               38
2573                                                                                             0.35
2574                                                                                           375.00
2575                                                                                      unspecified
2576                                                                                            10.00
2577                                                                                           200.00
2578                                                                                                 
2579                                                                                            10.80
2580                                                                                      application
2581                                                                                           375.00
2582                                                                                             8.00
2583                                                                                      unspecified
2584                                                                                             2.68
2585                                                                                           136.00
2586                                                                                             1.00
2587                                                                                              100
2588                                                                                             1000
2589                                                                                               60
2590                                                                                             1.00
2591                                                                                             1.00
2592                                                                                             2.00
2593                                                                                             1.00
2594                                                                                             2.00
2595                                                                                             1.00
2596                                                                                             2.00
2597                                                                                          1950.00
2598                                                                                             1.00
2599                                                                                      unspecified
2600                                                                                      unspecified
2601                                                                                             2.50
2602                                                                                            11.00
2603                                                                                             1.00
2604                                                                                             1.00
2605                                                                                             1.00
2606                                                                                             1.00
2607                                                                                            50.00
2608                                                                                            50.00
2609                                                                                             6.50
2610                                                                                             1.00
2611                                                                                             1.00
2612                                                                                             1.00
2613                                                                                            68.00
2614                                                                                            81.50
2615                                                                                            73.00
2616                                                                                           100.00
2617                                                                                           136.50
2618                                                                                             3.00
2619                                                                                            68.00
2620                                                                                            81.50
2621                                                                                            73.00
2622                                                                                           100.00
2623                                                                                           136.50
2624                                                                                             5.00
2625                                                                                           204.00
2626                                                                                             1.00
2627                                                                                             0.57
2628                                                                                             5.00
2629                                                                                             5.00
2630                                                                                             5.00
2631                                                                                            68.00
2632                                                                                            81.50
2633                                                                                            73.00
2634                                                                                           100.00
2635                                                                                           136.50
2636                                                                                               16
2637                                                                                             1.00
2638                                                                                           500.00
2639                                                                                             8.00
2640                                                                                             8.00
2641                                                                                            50.00
2642                                                                                      unspecified
2643                                                                                            70.00
2644                                                                                          1000.00
2645                                                                                             1.00
2646                                                                                            68.00
2647                                                                                            81.50
2648                                                                                            73.00
2649                                                                                           100.00
2650                                                                                           136.50
2651                                                                                  based on weight
2652                                                                                      unspecified
2653                                                                                      unspecified
2654                                                                                           500.00
2655                                                                                      unspecified
2656                                                                                            75.00
2657                                                                                           200.00
2658                                                                                           100.00
2659                                                                                          1 scoop
2660                                                                                      unspecified
2661                                                                                      unspecified
2662                                                                                             5.00
2663                                                                                            25.00
2664                                                                                             2.00
2665                                                                                             5.00
2666                                                                                             5.00
2667                                                                                             5.00
2668                                                                                           500.00
2669                                                                                            68.00
2670                                                                                            81.50
2671                                                                                            73.00
2672                                                                                           100.00
2673                                                                                           136.50
2674                                                                                            68.00
2675                                                                                            81.50
2676                                                                                            73.00
2677                                                                                           100.00
2678                                                                                           136.50
2679                                                                                            68.00
2680                                                                                            81.50
2681                                                                                            73.00
2682                                                                                           100.00
2683                                                                                           136.50
2684                                                                                            68.00
2685                                                                                            81.50
2686                                                                                            73.00
2687                                                                                           100.00
2688                                                                                           136.50
2689                                                                                            68.00
2690                                                                                            81.50
2691                                                                                            73.00
2692                                                                                           100.00
2693                                                                                           136.50
2694                                                                                            60.00
2695                                                                                             0.57
2696                                                                                             1.00
2697                                                                                             3.00
2698                                                                                             5.00
2699                                                                                                2
2700                                                                                            60.00
2701                                                                                            68.00
2702                                                                                            81.50
2703                                                                                            73.00
2704                                                                                           100.00
2705                                                                                           136.50
2706                                                                                             1.00
2707                                                                                           500.00
2708                                                                                             2.70
2709                                                                                           400.00
2710                                                                     based on weight (51-100 lbs)
2711                                                                                           500.00
2712                                                                                             2.50
2713                                                                                             1.00
2714                                                                                            60.00
2715                                                                                            60.00
2716                                                                                             2.70
2717                                                                                             1.00
2718                                                                                            70.00
2719                                                                                           272.00
2720                                                                                           136.00
2721                                                                                      application
2722                                                                                            20.00
2723                                                                                            20.00
2724                                                                                           136.00
2725                                                                                           272.00
2726                                                                     based on weight (50-100 lbs)
2727                                                                                            40.00
2728                                                                                            20.00
2729                                                                                             4.00
2730                                                                                            20.00
2731                                                                                        13.5, 810
2732                                                                                           250.00
2733                                                                                           200.00
2734                                                                                           250.00
2735                                                                                        13.5, 810
2736                                                                                            68.00
2737                                                                                     23, 228, 460
2738                                                                     based on weight (51-100 lbs)
2739                                                                     based on weight (60-120 lbs)
2740                                                                                           134.00
2741                                                                                           200.00
2742                                                                     based on weight (51-100 lbs)
2743                                                                      based on weight (44-88 lbs)
2744                                                                                            16.00
2745                                                                     based on weight (50-100 lbs)
2746                                                                      based on weight (44-88 lbs)
2747                                                                                            70.00
2748                                                                     based on weight (51-100 lbs)
2749                                                                      based on weight (44-88 lbs)
2750                                                                                               16
2751                                                                                            80.00
2752                                                                                           200.00
2753                                                                     based on weight (50-100 lbs)
2754                                                                                          1000.00
2755                                                                                            16.00
2756                                                                         based on weight (80 lbs)
2757                                                                                           200.00
2758                                                                                            80.00
2759                                                                                            16.00
2760                                                                                             5.00
2761                                                                                           500.00
2762                                                                                           200.00
2763                                                                                           500.00
2764                                                                                            16.00
2765                                                                                            70.00
2766                                                                                           300.00
2767                                                                                            50.00
2768                                                                                           500.00
2769                                                                                           500.00
2770                                                                                           250.00
2771                                                                                             2.68
2772                                                                                           272.00
2773                                                                                           750.00
2774                                                                                           272.00
2775                                                                                            68.00
2776                                                                                             8.00
2777                                                                                           272.00
2778                                                                                            68.00
2779                                                                                            10.00
2780                                                                                           300.00
2781                                                                                           272.00
2782                                                                                            80.00
2783                                                                                             8.00
2784                                                                                           500.00
2785                                                                                            30.00
2786                                                                                           400.00
2787                                                                                           136.00
2788                                                                                           750.00
2789                                                                                             2.00
2790                                                                                           300.00
2791                                                                                           272.00
2792                                                                                           136.00
2793                                                                                           300.00
2794                                                                                           750.00
2795                                                                                            10.00
2796                                                                                             8.00
2797                                                                                             1.00
2798                                                                                             5.00
2799                                                                                             0.09
2800                                                                                             5.00
2801                                                                                             1.00
2802                                                                                             0.60
2803                                                                                             0.55
2804                                                                                          1400.00
2805                                                               based on weight (45-88 lbs) - 2.68
2806                                                                                             0.60
2807                                                                                             1.00
2808                                                                                             1400
2809                                                                                             0.60
2810                                                                                          1400.00
2811                                                                                           500.00
2812                                                                                             1.00
2813                                                                                             6.00
2814                                                                                          1000.00
2815                                                                                         300, 600
2816                                                                                          1400.00
2817                                                                                             12.5
2818                                                                                  0.25 inch strip
2819                                                                                             2.13
2820                                                                                             2.33
2821                                                                                            50.00
2822                                                                                            40.00
2823                                                                                            10.00
2824                                                                                           200.00
2825                                                                     based on weight (51-100 lbs)
2826                                                                                             37.5
2827                                                                     based on weight (51-100 lbs)
2828                                                                     based on weight (51-100 lbs)
2829                                                                                           375.00
2830                                                                                             1.00
2831                                                                                             1.00
2832                                                                                             5.00
2833                                                                     based on weight (51-100 lbs)
2834                                                                                           375.00
2835                                                                                            12.00
2836                                                                                             1.00
2837                                                                                            30.00
2838                                                                     based on weight (50-100 lbs)
2839                                                                                     small amount
2840                                                                                           100.00
2841                                                                                           200.00
2842                                                                                     small amount
2843                                                                                            16.00
2844                                                                                  0.25 inch strip
2845                                                                                            75.00
2846                                                                     based on weight (50-100 lbs)
2847                                                                                           200.00
2848                                                                                           500.00
2849                                                                                            10.00
2850                                                                                           300.00
2851                                                                                             0.10
2852                                                                                            10.00
2853                                                                                           110.00
2854                                                                                           100.00
2855                                                                                      unspecified
2856                                                                                           500.00
2857                                                                                           272.00
2858                                                                                             8.00
2859                                                                                            10.00
2860                                                                                          1000.00
2861                                                                                             8.00
2862                                                                                            20.00
2863                                                                                           227.00
2864                                                                                             9.80
2865                                                                                           272.00
2866                                                                                             9.20
2867                                                                                            75.00
2868                                                                                           272.00
2869                                                                                                1
2870                                                                                           272.00
2871                                                                                            10.00
2872                                                                                            59.20
2873                                                                                            50.00
2874                                                                                            50.00
2875                                                                                            50.00
2876                                                                                             1.00
2877                                                                                           810.00
2878                                                                                             3.00
2879                                                                                            20.00
2880                                                                                            10.00
2881                                                                                            10.00
2882                                                                                             1.17
2883                                                                                             0.15
2884                                                                                             1.45
2885                                                                                           375.00
2886                                                                                           300.00
2887                                                                                             1.00
2888                                                                                            50.00
2889                                                                                           200.00
2890                                                                                             2.00
2891                                                                                             3.10
2892                                                                                             8.00
2893                                                                                           150.00
2894                                                                                           375.00
2895                                                                                             2.20
2896                                                                                           160.00
2897                                                                            lather and then rinse
2898                                                                                           200.00
2899                                                                                            20.00
2900                                                                                      application
2901                                                                                           200.00
2902                                                                                            20.00
2903                                                                                      unspecified
2904                                                                                  moderate amount
2905                                                                                             bath
2906                                                                                            20.00
2907                                                                                   1 pack/package
2908                                                                                             8.00
2909                                                                                             1.00
2910                                                                                               42
2911                                                                                                1
2912                                                                                                1
2913                                                                                   1 pack/package
2914                                                                                            50.00
2915                                                                                           375.00
2916                                                                                             3.00
2917                                                                                             1.50
2918                                                                                             1.50
2919                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
2920                                                    based on weight (60-120 lbs) - 136 afoxolaner
2921                                                                                   1 pack/package
2922                                                                     based on weight (50-100 lbs)
2923                                                                     based on weight (60-121 lbs)
2924                                                                                          1000.00
2925                                                                                      unspecified
2926                                                                                               75
2927                                                                                             90.5
2928                                                                                          1000.00
2929                                                                                          1000.00
2930                                                                                          1000.00
2931                                                                                            80.00
2932                                                                                             2.00
2933                                                                                            20.00
2934                                                                                            80.00
2935                                                                                            20.00
2936                                                                                           500.00
2937                                                                                            10.00
2938                                                                                            16.00
2939                                                                                             5.00
2940                                                                                           500.00
2941                                                               460 lufenuron, 23 milbemycin oxime
2942                                               8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                     based on weight (51-100 lbs)
2944                                                                        based on weight (55+ lbs)
2945                                                                                            23.00
2946                                                                                    1 bottle/vial
2947                                                                                             4.00
2948                                                                                             1.00
2949                                                                                             1.00
2950                                                                                             1.00
2951                                                                                                1
2952                                                                                            40.00
2953                                                                                            60.00
2954                                                                                            49.00
2955                                                                                           400.00
2956                                                                                           100.00
2957                                                                                             1.00
2958                                                                     based on weight (51-100 lbs)
2959                                                                     based on weight (51-100 lbs)
2960                                                                                                1
2961                                                                                      unspecified
2962                                                                                      unspecified
2963                                                                                      unspecified
2964                                                                                      unspecified
2965                                                                                           300.00
2966                                                                                           200.00
2967                                                                                            23.00
2968                                                                                             66.5
2969                                                                                             1.00
2970                                                                                             3.00
2971                                                                                            32.50
2972                                                                                             1.00
2973                                                                                             1.00
2974                                                                     based on weight (51-100 lbs)
2975                                                                      based on weight (45-88 lbs)
2976                                                                                             1.00
2977                                                                                            23.00
2978                                                                   based on weight (50.1-100 lbs)
2979                                                                                           136.00
2980                                                                                                1
2981                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
2982                                                                                              136
2983                                                                                             1.00
2984                                                                                            23.00
2985                                                                                           136.00
2986                                                                                             1.00
2987                                                                                           750.00
2988                                                                                  based on weight
2989                                                                                           150.00
2990                                                                                           272.00
2991                                                                                             0.13
2992                                                                                           500.00
2993                                                                                      unspecified
2994                                                                                           100.00
2995                                                                                            50.00
2996                                                                                           272.00
2997                                                                       1.5 tablets/pills/capsules
2998                                                                                             1.00
2999                                                                                             8.00
3000                                                                                             5.00
3001                                                                                         45451.00
3002                                                                                               30
3003                                                                                     small amount
3004                                                                                           272.00
3005                                                                                             0.09
3006                                                                                           272.00
3007                                                                      based on weight (45-88 lbs)
3008                                                                                           375.00
3009                                                                                            50.00
3010                                                                                            60.00
3011                                                                                           105.00
3012                                                                                          1000.00
3013                                                                                             1.00
3014                                                                                             4.00
3015                                                                                            30.00
3016                                                                                            20.00
3017                                                                                           150.00
3018                                                                                           227.00
3019                                                                                           272.00
3020                                                                                           272.00
3021                                                                                           272.00
3022                                                                                             1.00
3023                                                                                           150.00
3024                                                                                           300.00
3025                                                                                           425.00
3026                                                                                           300.00
3027                                                                                           272.00
3028                                                                      based on weight (45-88 lbs)
3029                                                                                           150.00
3030                                                                                             0.50
3031                                                                                      unspecified
3032                                                                                           300.00
3033                                                                                           850.00
3034                                                                                           150.00
3035                                                                                           150.00
3036                                                                                             0.40
3037                                                                                           100.00
3038                                                                                            60.00
3039                                                                                             0.09
3040                                                                                           272.00
3041                                                                                             1.00
3042                                                                                             1.00
3043                                                                                             66.5
3044                                                                                           272.00
3045                                                                                           500.00
3046                                                                                           400.00
3047                                                                                            62.50
3048                                                                                             5.00
3049                                                                                             2.50
3050                                                                                             7.50
3051                                                                                              102
3052                                                                                           272.00
3053                                                                                           227.00
3054                                                                                           500.00
3055                                                                                      application
3056                                                                                           100.00
3057                                                                                            75.00
3058                                                                                      application
3059                                                                                           500.00
3060                                                                                      unspecified
3061                                                                                           272.00
3062                                                                                           227.00
3063                                                                                           272.00
3064                                                                                           227.00
3065                                                                                            10.00
3066                                                                                           272.00
3067                                                                                           227.00
3068                                                                                            10.00
3069                                                                                           272.00
3070                                                                                            10.00
3071                                                                                           400.00
3072                                                                                           136.00
3073                                                                                             8.00
3074                                                                                            16.00
3075                                                                                           272.00
3076                                                                                            50.00
3077                                                                                           150.00
3078                                                                                           400.00
3079                                                                                           136.00
3080                                                                                           150.00
3081                                                                                            50.00
3082                                                                                           272.00
3083                                                                                            50.00
3084                                                                                             7.00
3085                                                                                            10.00
3086                                                                                            18.50
3087                                                                                            50.00
3088                                                                                           100.00
3089                                                                                             4.70
3090                                                                                            23.00
3091                                                                                           240.00
3092                                                                                              100
3093                                                                                           500.00
3094                                                                                            20.00
3095                                                                         2 tablets/pills/capsules
3096                                                                                              500
3097                                                                                           272.00
3098                                                                                            12.50
3099                                                                                            75.00
3100                                                                                            50.00
3101                                                                                           240.00
3102                                                                                           136.00
3103                                                                                           272.00
3104                                                                                           136.00
3105                                                                                            25.00
3106                                                                                           272.00
3107                                                                                           136.00
3108                                                                                             37.5
3109                                                                                             0.25
3110                                                                                     small amount
3111                                                                                           500.00
3112                                                                                             6.00
3113                                                                                            16.00
3114                                                                                            20.00
3115                                                                                            20.00
3116                                                                                           500.00
3117                                                                                           200.00
3118                                                                                            12.50
3119                                                                                      as directed
3120                                                                                             0.25
3121                                                                                           272.00
3122                                                                                           136.00
3123                                                                                            16.00
3124                                                                                             1.00
3125                                                                                            16.00
3126                                                                                            75.00
3127                                                                                             4.00
3128                                                                                            30.00
3129                                                                                             4.00
3130                                                                                            30.00
3131                                                                                             2.00
3132                                                                                             4.00
3133                                                                                             2.00
3134                                                                                             3.00
3135                                                                                             1.00
3136                                                                                           240.00
3137                                                                                             0.09
3138                                                                                            30.00
3139                                                                                             4.00
3140                                                                                                2
3141                                                                                           240.00
3142                                                                                            80.00
3143                                                                                             4.00
3144                                                                                            30.00
3145                                                                                             2.00
3146                                                                                               10
3147                                                                                      unspecified
3148                                                                                            30.00
3149                                                                                             0.30
3150                                                                                             0.30
3151                                                                                             0.30
3152                                                                                            75.00
3153                                                                                           500.00
3154                                                                                            60.00
3155                                                                                            18.00
3156                                                                                             4.00
3157                                                                                             1.00
3158                                                                                             1.00
3159                                                                                             2.00
3160                                                                                            50.00
3161                                                                                           300.00
3162                                                                                             2.00
3163                                                                                             1.00
3164                                                                                             4.00
3165                                                                                             1.00
3166                                                                                             2.00
3167                                                                                            12.00
3168                                                                                            50.00
3169                                                                                             3.00
3170                                                                                           500.00
3171                                                                                             3.20
3172                                                                                             5.00
3173                                                                                           272.00
3174                                                                                           227.00
3175                                                                                           810.00
3176                                                                                            13.50
3177                                                                                           180.00
3178                                                                                             1.50
3179                                                                                                1
3180                                                                                      unspecified
3181                                                                                          1000.00
3182                                                                                           272.00
3183                                                                                            10.00
3184                                                                                           500.00
3185                                                                                           300.00
3186                                                                                           272.00
3187                                                                                          1000.00
3188                                                                                           320.00
3189                                                                                           310.00
3190                                                                                           300.00
3191                                                                                             0.30
3192                                                                                             1.00
3193                                                                                           100.00
3194                                                                                          1000.00
3195                                                                                           272.00
3196                                                                                          1000.00
3197                                                                                           450.00
3198                                                                                             1.50
3199                                                                                           600.00
3200                                                                                            20.00
3201                                                                                             1.00
3202                                                                                            15.00
3203                                                                                             1.00
3204                                                                                             8.00
3205                                                                                           120.00
3206                                                                                             8.20
3207                                                                                         45293.00
3208                                                                                                1
3209                                                                                                1
3210                                                                                           272.00
3211                                                                                          1000.00
3212                                                                                                1
3213                                                                                             0.01
3214                                                                                           500.00
3215                                                                                           500.00
3216                                                                                             1.50
3217                                                                                           100.00
3218                                                                                             1.00
3219                                                                                             2.00
3220                                                                                            75.00
3221                                                                                             0.70
3222                                                                                             0.35
3223                                                                                             0.35
3224                                                                                             0.30
3225                                                                                             0.30
3226                                                                                             1.00
3227                                                                                          1000.00
3228                                                                                             0.30
3229                                                                                             0.60
3230                                                                                          1000.00
3231                                                                                           500.00
3232                                                                                             0.30
3233                                                                                             1.00
3234                                                                                             1.00
3235                                                                                          1000.00
3236                                                                                             0.30
3237                                                                                             1.00
3238                                                                                             1.00
3239                                                                                            34.50
3240                                                                                           272.00
3241                                                                                          1000.00
3242                                                                                             0.30
3243                                                                                             1.00
3244                                                                                             1.00
3245                                                                                            68.00
3246                                                                     based on weight (50-100 lbs)
3247                                                                     based on weight (50-100 lbs)
3248                                                                                           500.00
3249                                                                                            10.00
3250                                                                     based on weight (50-100 lbs)
3251                                                                     based on weight (50-100 lbs)
3252                                                                                          1900.00
3253                                                                     based on weight (50-100 lbs)
3254                                                                                               75
3255                                                                                               75
3256                                                                                            10.00
3257                                                                     based on weight (50-100 lbs)
3258                                                                                           300.00
3259                                                                                           100.00
3260                                                                                            56.00
3261                                                                                              500
3262                                                                                           136.00
3263                                                                                             1.00
3264                                                                                             1.00
3265                                                                                             1.00
3266                                                                                           100.00
3267                                                                                           250.00
3268                                                                                             1.00
3269                                                                                             1.00
3270                                                                                             62.5
3271                                                                     based on weight (51-100 lbs)
3272                                                                                             1.00
3273                                                                                             1.00
3274                                                                                           500.00
3275                                                                                           625.00
3276                                                                                            14.00
3277                                                                                           750.00
3278                                                                                  0.25 inch strip
3279                                                                                            50.00
3280                                                                     based on weight (50-100 lbs)
3281                                                                                             1.00
3282                                                                                           375.00
3283                                                                                            50.00
3284                                                                     based on weight (51-100 lbs)
3285                                                                                           500.00
3286                                                                                           100.00
3287                                                                                      application
3288                                                                                           200.00
3289                                                                                            10.00
3290                                                                                            40.00
3291                                                                                      application
3292                                                                                           500.00
3293                                                                                      application
3294                                                                     based on weight (51-100 lbs)
3295                                                                                           500.00
3296                                                                                             1.00
3297                                                                                           150.00
3298                                                                                            40.00
3299                                                                                            15.00
3300                                                                     based on weight (51-100 lbs)
3301                                                                                            50.00
3302                                                                                            50.00
3303                                                                                               75
3304                                                                                             1.00
3305                                                                                     small amount
3306                                                                                           272.00
3307                                                                                          1400.00
3308                                                                                           272.00
3309                                                                                          1000.00
3310                                                                                           272.00
3311                                                                                          1400.00
3312                                                                                     small amount
3313                                                                                     small amount
3314                                                                                            23.00
3315                                                                                             1.00
3316                                                                                            80.00
3317                                                                                           300.00
3318                                                                                           150.00
3319                                                                                           300.00
3320                                                                                             6.00
3321                                                                                          1000.00
3322                                                                                             0.60
3323                                                                                             3.60
3324                                                                                            15.00
3325                                                                                            90.00
3326                                                                                            60.00
3327                                                                                            45.00
3328                                                                                            23.00
3329                                                                                            37.50
3330                                                                                             1.00
3331                                                                                             1.00
3332                                                                                           500.00
3333                                                                                             2.00
3334                                                                                             4.00
3335                                                                                             1.00
3336                                                                                             1.00
3337                                                                                           500.00
3338                                                                                             1.00
3339                                                                     based on weight (51-100 lbs)
3340                                                                                            75.00
3341                                                                                            50.00
3342                                                                                      unspecified
3343                                                                                           500.00
3344                                                                                           500.00
3345                                                                                          23, 460
3346                                                               460 lufenuron, 23 milbemycin oxime
3347                                                                                           500.00
3348                                                                                           125.00
3349                                                                                            13.50
3350                                                                                      unspecified
3351                                                                                           227.00
3352                                                                                           136.00
3353                                                                                           114.00
3354                                                                                           204.00
3355                                                                                           136.00
3356                                                                                             1.00
3357                                                                                           150.00
3358                                                                                           136.00
3359                                                                                               66
3360                                                                                  based on weight
3361                                                                                           150.00
3362                                                                                           272.00
3363                                                                                             4.00
3364                                                                                            50.00
3365                                                                                             1.00
3366                                                                                      unspecified
3367                                                                                          1250.00
3368                                                                                           100.00
3369                                                                                            27.00
3370                                                                                             6.00
3371                                                                                             6.00
3372                                                                                      unspecified
3373                                                                                           227.00
3374                                                                                           136.00
3375                                                                            based on weight - 1.5
3376                                                                                      application
3377                                                                                           272.00
3378                                                                                           136.00
3379                                                                                             1.00
3380                                                                                             5.00
3381                                                                                          1000.00
3382                                                                                            10.00
3383                                                                                           136.00
3384                                                                                               66
3385                                                                                             2.00
3386                                                                                             2.00
3387                                                                                             1.00
3388                                                                                           272.00
3389                                                                                             4.00
3390                                                                                             0.80
3391                                                                                           204.00
3392                                                                                           600.00
3393                                                                                             1.00
3394                                                                                      unspecified
3395                                                                                           250.00
3396                                                                                            68.00
3397                                                                                          1200.00
3398                                                                                           500.00
3399                                                              13.5 milbemycin oxime, 810 spinosad
3400                                                                                            11.50
3401                                                                                            68.00
3402                                                                                          1000.00
3403                                                                                        13.5, 810
3404                                                                                                1
3405                                                                                                1
3406                                                                                                1
3407                                                                                               75
3408                                                                                               42
3409                                                                                             1.00
3410                                                                                           100.00
3411                                                                                             1.00
3412                                                                                           113.50
3413                                                                                           200.00
3414                                                                                            60.00
3415                                                                                           113.50
3416                                                                                             1.00
3417                                                                                            60.00
3418                                                                                             5.00
3419                                                                                            60.00
3420                                                                                            25.00
3421                                                                                      unspecified
3422                                                                                                 
3423                                                                                                1
3424                                                                                             2.70
3425                                                                                      unspecified
3426                                                                                      unspecified
3427                                                                                             3.75
3428                                                                                          1620.00
3429                                                                       based on weight (4-60 lbs)
3430                                                                                            23.00
3431                                                                                          1000.00
3432                                                                                            23.00
3433                                                                                          1000.00
3434                                                                                           227.00
3435                                                                                          1000.00
3436                                                                                            60.00
3437                                                                                     small amount
3438                                                                                            60.00
3439                                                                                                1
3440                                                                                           272.00
3441                                                                                          1000.00
3442                                                                                           272.00
3443                                                                                           136.00
3444                                                                                               70
3445                                                                                      unspecified
3446                                                                                      unspecified
3447                                                                                      unspecified
3448                                                                                      unspecified
3449                                                                                      unspecified
3450                                                                                            11.50
3451                                                                                          23, 460
3452                                                                                            23.00
3453                                                                                            23.00
3454                                                                                             9.80
3455                                                                                          23, 460
3456                                                                      based on weight (45-88 lbs)
3457                                                                     based on weight (51-100 lbs)
3458                                                                      based on weight (45-88 lbs)
3459                                                                                          23, 460
3460                                                                                            23.00
3461                                                                                             2.68
3462                                                                                             0.70
3463                                                                                             0.60
3464                                                                                             0.80
3465                                                                                               50
3466                                                                                           272.00
3467                                                                                            50.00
3468                                                                                             2.80
3469                                                                                           272.00
3470                                                                                            50.00
3471                                                                                            50.00
3472                                                                                           272.00
3473                                                                                            50.00
3474                                                                                           200.00
3475                                                                                            50.00
3476                                                                                           150.00
3477                                                                                            50.00
3478                                                                                             1.00
3479                                                                                            23.00
3480                                                                                             1.00
3481                                                                                           750.00
3482                                                                                             7.50
3483                                                                                            23.00
3484                                                                                           460.00
3485                                                                                            23.00
3486                                                                                           200.00
3487                                                                                             66.5
3488                                                                        based on weight (25+ lbs)
3489                                                                                           170.00
3490                                                                    based on weight (44.1-88 lbs)
3491                                                                     based on weight (51-100 lbs)
3492                                                                    based on weight (44.1-88 lbs)
3493                                                                                            60.00
3494                                                                                           750.00
3495                                                                     based on weight (51-100 lbs)
3496                                                                    based on weight (44.1-88 lbs)
3497                                                                     based on weight (51-100 lbs)
3498                                                                    based on weight (44.1-88 lbs)
3499                                                                                           500.00
3500                                                                                            75.00
3501                                                                                           200.00
3502                                                                                          1000.00
3503                                                                                            50.00
3504                                                                                            75.00
3505                                                                                           250.00
3506                                                                                            60.00
3507                                                                                           500.00
3508                                                                                            60.00
3509                                                                                             3.00
3510                                                                                             2.50
3511                                                                                            75.00
3512                                                                     based on weight (50-100 lbs)
3513                                                                     based on weight (50-100 lbs)
3514                                                                     based on weight (50-100 lbs)
3515                                                                     based on weight (50-100 lbs)
3516                                                                     based on weight (50-100 lbs)
3517                                                                                      unspecified
3518                                                                                           100.00
3519                                                                     based on weight (51-100 lbs)
3520                                                                                  based on weight
3521                                                                                          1000.00
3522                                                                     based on weight (51-100 lbs)
3523                                                                                          1000.00
3524                                                                                           800.00
3525                                                             272 ivermectin, 227 pyrantel pamoate
3526                                                                                              272
3527                                                                                           272.00
3528                                                                                           200.00
3529                                                                                            90.00
3530                                                                                         0.5%, 3%
3531                                                                                      unspecified
3532                                                                                            90.00
3533                                                                                            75.00
3534                                                                                            90.00
3535                                                                                      unspecified
3536                                                                                            75.00
3537                                                                                           100.00
3538                                                                                           200.00
3539                                                                                            20.00
3540                                                                                            25.00
3541                                                                                            30.00
3542                                                                                            57.00
3543                                                                                             0.05
3544                                                                                             9.30
3545                                                                                           810.00
3546                                                                                            13.50
3547                                                                                           272.00
3548                                                                                            23.00
3549                                                                                            23.00
3550                                                                                            23.00
3551                                                                                           272.00
3552                                                                                            68.00
3553                                                                                           500.00
3554                                                                                            10.00
3555                                                                                           272.00
3556                                                                                            68.00
3557                                                                                           272.00
3558                                                                                             1.00
3559                                                                                           500.00
3560                                                                                             1.00
3561                                                                                             1.00
3562                                                                                             1.00
3563                                                                                             1.00
3564                                                                                             1.00
3565                                                                                           100.00
3566                                                                                             1.00
3567                                                                                           100.00
3568                                                                                          1620.00
3569                                                                                            27.00
3570                                                                                           200.00
3571                                                                                             1.50
3572                                                                                            32.50
3573                                                                                           375.00
3574                                                                                             4.00
3575                                                                                            55.00
3576                                                                                          1620.00
3577                                                                                            27.00
3578                                                                                           375.00
3579                                                                                          1620.00
3580                                                                                            27.00
3581                                                                              tablet/pill/capsule
3582                                                                                             1.70
3583                                                                                             0.09
3584                                                                                             1.30
3585                                                                                             3.40
3586                                                                                             2.00
3587                                                                                             8.50
3588                                                                                                2
3589                                                                                          1620.00
3590                                                                                            27.00
3591                                                                                             0.20
3592                                                                                             0.30
3593                                                                                             3.00
3594                                                                                             0.03
3595                                                                                             1.40
3596                                                                                            75.00
3597                                                                                           200.00
3598                                                                                           100.00
3599                                                                                           200.00
3600                                                                                              1.9
3601                                                                                               75
3602                                                                                            75.00
3603                                                                                           100.00
3604                                                                                           190.00
3605                                                                                            80.00
3606                                                                                             1.00
3607                                                                                             1.00
3608                                                                                            16.00
3609                                                                                            75.00
3610                                                                                             2.00
3611                                                                                          1620.00
3612                                                                                            27.00
3613                                                                                            16.00
3614                                                                                          1620.00
3615                                                                                            27.00
3616                                                                                             1.00
3617                                                                                             3.00
3618                                                                                            80.00
3619                                                                                          23, 228
3620                                                                                           375.00
3621                                                                                            16.00
3622                                                                                     pack/package
3623                                                                                            80.00
3624                                                                                            11.50
3625                                                                                            60.00
3626                                                                                            20.00
3627                                                                                           272.00
3628                                                                                            40.00
3629                                                                                           500.00
3630                                                                                            10.00
3631                                                                                                1
3632                                                                                                1
3633                                                                                           100.00
3634                                                                                           230.00
3635                                                                      based on weight (44-88 lbs)
3636                                                                                                2
3637                                                                                           325.00
3638                                                                                            50.00
3639                                                                                      application
3640                                                                                      application
3641                                                                                      application
3642                                                                                           250.00
3643                                                                                            20.00
3644                                                                                          1300.00
3645                                                                                             5.00
3646                                                                                             4.00
3647                                                                                             4.00
3648                                                                                             4.00
3649                                                                                        100 , 400
3650                                                                        based on weight (<80 lbs)
3651                                                                                              500
3652                                                                              tablet/pill/capsule
3653                                                                                             7.00
3654                                                                                           500.00
3655                                                                                            68.00
3656                                                                                           250.00
3657                                                                                             6.00
3658                                                                                           102.00
3659                                                                                           375.00
3660                                                                                             1.34
3661                                                                                           136.00
3662                                                                                             2.68
3663                                                                                             1.00
3664                                                                                           272.00
3665                                                                                           136.00
3666                                                                                                 
3667                                                                                     small amount
3668                                                                                             1.00
3669                                                                                             1.00
3670                                                                                             1.00
3671                                                                                            23.00
3672                                                                                           136.00
3673                                                                                            16.00
3674                                                                                            16.00
3675                                                                                     small amount
3676                                                                                          1000.00
3677                                                                                            23.00
3678                                                                                             1.00
3679                                                                                            75.00
3680                                                                                          1000.00
3681                                                                                             2.70
3682                                                                                             3.70
3683                                                                                             0.52
3684                                                                                      unspecified
3685                                                                                      unspecified
3686                                                                                          1000.00
3687                                                                                            75.00
3688                                                                                             6.00
3689                                                                                             1.00
3690                                                                                             1.00
3691                                                                                      unspecified
3692                                                                                      unspecified
3693                                                                                                 
3694                                                                                            16.00
3695                                                                                            16.00
3696                                                                                           272.00
3697                                                                                           500.00
3698                                                                      based on weight (40-85 lbs)
3699                                                                      based on weight (40-85 lbs)
3700                                                                                            50.00
3701                                                                     based on weight (51-100 lbs)
3702                                                                                           750.00
3703                                                                                           500.00
3704                                                                     based on weight (50-100 lbs)
3705                                                                                  based on weight
3706                                                                     based on weight (50-100 lbs)
3707                                                                                           200.00
3708                                                                                           300.00
3709                                                                                            74.00
3710                                                                                      unspecified
3711                                                                                            75.00
3712                                                                                           250.00
3713                                                                                           187.50
3714                                                                                           125.00
3715                                                                                            62.50
3716                                                                                            12.50
3717                                                                                            10.00
3718                                                                                     small amount
3719                                                                     based on weight (51-100 lbs)
3720                                                                                             1.00
3721                                                                                           272.00
3722                                                                                            68.00
3723                                                                                             2.50
3724                                                                                            60.00
3725                                                                     based on weight (51-100 lbs)
3726                                                                     based on weight (51-100 lbs)
3727                                                                                           272.00
3728                                                                                            16.08
3729                                                                                             3.00
3730                                                                                             5.00
3731                                                                                            50.00
3732                                                                                           272.00
3733                                                                                             1.00
3734                                                                                            10.00
3735                                                                                             gtts
3736                                                                                           500.00
3737                                                                                           100.00
3738                                                                                                1
3739                                                                                           800.00
3740                                                                                            75.00
3741                                                                                      unspecified
3742                                                                                      unspecified
3743                                                                                      unspecified
3744                                                                                      unspecified
3745                                                                                      unspecified
3746                                                                                            90.00
3747                                                                                            10.00
3748                                                                                           100.00
3749                                                                                             1.00
3750                                                                                         23 , 460
3751                                                                                             1.00
3752                                                                                           272.00
3753                                                                                           227.00
3754                                                                                             0.02
3755                                                                                           500.00
3756                                                                                             0.01
3757                                                                                           200.00
3758                                                                                             0.01
3759                                                                                             0.02
3760                                                               27 milbemycin oxime, 1620 spinosad
3761                                                                                             1.00
3762                                                                                           150.00
3763                                                                                             1.00
3764                                                                                            10.00
3765                                                                                            10.00
3766                                                                                           300.00
3767                                                                                            50.00
3768                                                                                           100.00
3769                                                                                           250.00
3770                                                                                          1620.00
3771                                                                                             5.00
3772                                                                                             1.00
3773                                                                                      application
3774                                                                                             0.03
3775                                                                                          1692.00
3776                                                                                           375.00
3777                                                                                            16.00
3778                                                                                             1.00
3779                                                                                          1620.00
3780                                                                                           100.00
3781                                                                                                1
3782                                                                                                1
3783                                                                                                1
3784                                                                                              250
3785                                                                                                5
3786                                                                                               20
3787                                                                                          1620.00
3788                                                                                            70.00
3789                                                                                      unspecified
3790                                                                                            16.00
3791                                                                                             1.00
3792                                                                                           250.00
3793                                                                                             1.00
3794                                                                                             5.00
3795                                                                                             1.00
3796                                                                                            10.00
3797                                                                                                 
3798                                                                                      as directed
3799                                                                                            16.00
3800                                                                                      application
3801                                                                                            16.00
3802                                                                                            75.00
3803                                                                                             1800
3804                                                                                              200
3805                                                                                            16.00
3806                                                                                           250.00
3807                                                                                             5.00
3808                                                                                            75.00
3809                                                                                           120.00
3810                                                                                           272.00
3811                                                                                            75.00
3812                                                                                            75.00
3813                                                                                           272.00
3814                                                                                           272.00
3815                                                                                  based on weight
3816                                                                                             1.00
3817                                                                                             2.90
3818                                                                                             5.80
3819                                                                                             1.00
3820                                                                                            60.00
3821                                                                                           170.00
3822                                                                                             2.00
3823                                                                                            60.00
3824                                                                                             1.00
3825                                                                                            20.00
3826                                                                                            75.00
3827                                                                                           560.00
3828                                                                                           500.00
3829                                                                                     small amount
3830                                                                                              2.5
3831                                                                                          1620.00
3832                                                                                            50.00
3833                                                                                             2.50
3834                                                                                             3.00
3835                                                                     based on weight (50-100 lbs)
3836                                                                     based on weight (60-120 lbs)
3837                                                                                              0.4
3838                                                                     based on weight (60-120 lbs)
3839                                                                                              0.3
3840                                                                                     small amount
3841                                                                                           272.00
3842                                                                                           136.00
3843                                                                                             0.40
3844                                                                                             3.00
3845                                                                                             0.40
3846                                                                                            32.50
3847                                                                                            50.00
3848                                                                                  0.25 inch strip
3849                                                                                           136.00
3850                                                                                             1.00
3851                                                                                            32.50
3852                                                                                           500.00
3853                                                                                            50.00
3854                                                                                           500.00
3855                                                                                           200.00
3856                                                                                            50.00
3857                                                                     based on weight (51-100 lbs)
3858                                                                      based on weight (23-44 lbs)
3859                                                                      based on weight (26-50 lbs)
3860                                                                    based on weight (24.1-60 lbs)
3861                                                                                      unspecified
3862                                                                                            37.50
3863                                                                                           560.00
3864                                                                                           500.00
3865                                                                                           250.00
3866                                                                                            50.00
3867                                                                                     small amount
3868                                                                                           272.00
3869                                                                                           136.00
3870                                                                     based on weight (50-100 lbs)
3871                                                                     based on weight (60-120 lbs)
3872                                                                     based on weight (60-120 lbs)
3873                                                                                             0.40
3874                                                                                     small amount
3875                                                                                           272.00
3876                                                                                           136.00
3877                                                                                             0.40
3878                                                                                             0.30
3879                                                                                             0.30
3880                                                                                             0.80
3881                                                                     based on weight (51-100 lbs)
3882                                                                                           960.00
3883                                                                                           272.00
3884                                                                                             66.5
3885                                                                                             66.5
3886                                                                     based on weight (51-100 lbs)
3887                                                                                           113.50
3888                                                                                             3.00
3889                                                                     based on weight (51-100 lbs)
3890                                                                                             66.5
3891                                                                                           272.00
3892                                                                                             2.68
3893                                                                                           200.00
3894                                                                                            10.00
3895                                                                                          1000.00
3896                                                                                               66
3897                                                                     based on weight (51-100 lbs)
3898                                                                                      unspecified
3899                                                                                           100.00
3900                                                                     based on weight (51-100 lbs)
3901                                                                                           272.00
3902                                                                                               66
3903                                                                     based on weight (51-100 lbs)
3904                                                                                             66.5
3905                                                                                            10.00
3906                                                                     based on weight (51-100 lbs)
3907                                                                                             66.5
3908                                                                                           272.00
3909                                                                                             2.68
3910                                                                                          1000.00
3911                                                                     based on weight (51-100 lbs)
3912                                                                                             66.5
3913                                                                                           272.00
3914                                                                                           272.00
3915                                                                                            23.00
3916                                                                                           460.00
3917                                                                                           272.00
3918                                                                                           227.00
3919                                                                                           272.00
3920                                                                                           227.00
3921                                                                                             2.68
3922                                                                                             4.00
3923                                                                                             2.68
3924                                                                                            23.00
3925                                                                                            23.00
3926                                                                                            23.00
3927                                                                                           100.00
3928                                                                                            75.00
3929                                                                                            50.00
3930                                                                                          1647.00
3931                                                                                           500.00
3932                                                                                           250.00
3933                                                                                            50.00
3934                                                                                             3.60
3935                                                                                           843.50
3936                                                                                             50.5
3937                                                                                             1.00
3938                                                                     based on weight (51-100 lbs)
3939                                                                                           100.00
3940                                                                                             5.00
3941                                                                                           200.00
3942                                                                                             42.5
3943                                                                     based on weight (51-100 lbs)
3944                                                                                              7.5
3945                                                                                             8 oz
3946                                                                    based on weight (24.1-60 lbs)
3947                                                                                            16.00
3948                                                                                            20.00
3949                                                                                             1.00
3950                                                                                           375.00
3951                                                                                           100.00
3952                                                                     based on weight (51-100 lbs)
3953                                                                                            50.00
3954                                                                                           375.00
3955                                                                                               37
3956                                                                                            60.00
3957                                                                                             2.00
3958                                                                                             1.00
3959                                                                                           100.00
3960                                                                                             1.00
3961                                                                                           100.00
3962                                                                                           375.00
3963                                                                                           100.00
3964                                                                                            60.00
3965                                                                                            75.00
3966                                                                                          1647.00
3967                                                                                            25.00
3968                                                                                            25.00
3969                                                                                            12.50
3970                                                                                           826.50
3971                                                                                             3.60
3972                                                                    based on weight (40.1-60 lbs)
3973                                                                                            12.50
3974                                                                                            50.00
3975                                                                                            12.50
3976                                                                                            35.00
3977                                                                                           200.00
3978                                                                                             2.00
3979                                                                                             2.00
3980                                                                     based on weight (51-100 lbs)
3981                                                                                               42
3982                                                                                            12.50
3983                                                                                            12.50
3984                                                                     based on weight (51-100 lbs)
3985                                                                                               42
3986                                                                                           300.00
3987                                                                                           150.00
3988                                                                                           150.00
3989                                                                     based on weight (51-100 lbs)
3990                                                                     based on weight (51-100 lbs)
3991                                                                                            12.50
3992                                                                                           150.00
3993                                                                                           375.00
3994                                                                                           100.00
3995                                                                                             1.10
3996                                                                                            12.50
3997                                                                                            60.00
3998                                                                                            12.50
3999                                                                                           110.00
4000                                                                                      unspecified
4001                                                                                             1.00
4002                                                                                             1.20
4003                                                                                            12.50
4004                                                                                            12.50
4005                                                                                             1.10
4006                                                                                             1.00
4007                                                                                           100.00
4008                                                                                            60.00
4009                                                                                             2.00
4010                                                                                             1.00
4011                                                                                           500.00
4012                                                                                           136.00
4013                                                                                            23.00
4014                                                                                            23.00
4015                                                                                            23.00
4016                                                                                             1.00
4017                                                                     based on weight (51-100 lbs)
4018                                                                                           200.00
4019                                                                                            16.00
4020                                                                                           300.00
4021                                                                                           200.00
4022                                                                                           500.00
4023                                                                                           150.00
4024                                                                                           100.00
4025                                                                                            50.00
4026                                                                                             6.00
4027                                                                                            10.00
4028                                                                                           111.00
4029                                                                                          1000.00
4030                                                                                        27 , 1620
4031                                                                   based on weight (60.1-120 lbs)
4032                                                                                             4.70
4033                                                                                           136.00
4034                                                                                            75.00
4035                                                                                           100.00
4036                                                                                           200.00
4037                                                                                            23.00
4038                                                                                          1620.00
4039                                                                                            23.00
4040                                                                                          1620.00
4041                                                                                           500.00
4042                                                                                      unspecified
4043                                                                                            75.00
4044                                                                                              1.1
4045                                                                                                1
4046                                                                                             1.40
4047                                                                                               80
4048                                                                                           500.00
4049                                                                                           720.00
4050                                                                                           500.00
4051                                                                                            10.00
4052                                                                                            25.00
4053                                                                                             3.00
4054                                                                                             9.00
4055                                                                                           500.00
4056                                                                                            10.00
4057                                                                                            60.00
4058                                                                     based on weight (51-100 lbs)
4059                                                  2 prednisolone acetate, 5 trimeprazine tartrate
4060                                                             272 ivermectin, 227 pyrantel pamoate
4061                                                                                           272.00
4062                                                                                           227.00
4063                                                                     based on weight (51-100 lbs)
4064                                                                      based on weight (44-88 lbs)
4065                                                                                            16.00
4066                                                                                      unspecified
4067                                                                                      unspecified
4068                                                                                      unspecified
4069  2.5 neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 triamcinolone acetonide
4070                                                                                               16
4071                                                                                     small amount
4072                                                                                                1
4073                                                                                                1
4074                                                                                  based on weight
4075                                                                                  based on weight
4076                                                                                               16
4077                                                                                  based on weight
4078                                                                                           100.00
4079                                                                                           500.00
4080                                                                                           750.00
4081                                                                                           100.00
4082                                                                                           113.50
4083                                                                                           750.00
4084                                                                                           170.00
4085                                                                                           100.00
4086                                                                                            70.00
4087                                                                                      unspecified
4088                                                                                      unspecified
4089                                                                                      unspecified
4090                                                                                           113.50
4091                                                                                             1.20
4092                                                                                1 syringe/pipette
4093                                                                                             1.50
4094                                                                                             3.00
4095                                                                                                1
4096                                                                                              1.6
4097                                                                                               80
4098                                                                                           500.00
4099                                                                                           150.00
4100                                                                                           100.00
4101                                                                                             8.00
4102                                                                                             3.00
4103                                                                                           150.00
4104                                                                                           500.00
4105                                                                                           720.00
4106                                                                                           650.00
4107                                                                                           150.00
4108                                                                                            60.00
4109                                                                                             1.00
4110                                                                                            45.00
4111                                                                     based on weight (60-120 lbs)
4112                                                                     based on weight (50-100 lbs)
4113                                                                                     small amount
4114                                                                                     small amount
4115                                                                                           200.00
4116                                                                                         tapering
4117                                                                      based on weight (45-88 lbs)
4118                                                                     based on weight (60-120 lbs)
4119                                                                                     small amount
4120                                                                     based on weight (60-120 lbs)
4121                                                                                          1620.00
4122                                                                                               90
4123                                                                                           200.00
4124                                                                                            16.00
4125                                                                                         27, 1620
4126                                                                                           200.00
4127                                                                     based on weight (51-100 lbs)
4128                                                                   based on weight (60.1-121 lbs)
4129                                                                                           200.00
4130                                                                                               90
4131                                                                                                 
4132                                                                                      unspecified
4133                                                                                      unspecified
4134                                                                                      unspecified
4135                                                                                            16.00
4136                                                                                            50.00
4137                                                                                           100.00
4138                                                                                           100.00
4139                                                                                             3.00
4140                                                                                             7.50
4141                                                                                            20.00
4142                                                                                           160.00
4143                                                                                            10.00
4144                                                                                           500.00
4145                                                                                             3.00
4146                                                                                             6.00
4147                                                                                             1.50
4148                                                                                           500.00
4149                                                                                           227.00
4150                                                                                           100.00
4151                                                                                            73.00
4152                                                                                           500.00
4153                                                                                           500.00
4154                                                                                             1.00
4155                                                                                             1.34
4156                                                                                           272.00
4157                                                                                           227.00
4158                                                                                             2.68
4159                                                                                              0.5
4160                                                                                                1
4161                                                                                              272
4162                                                                     based on weight (50-100 lbs)
4163                                                                                             2.00
4164                                                                                             4.40
4165                                                                                            20.00
4166                                                                                            37.50
4167                                                                                          1000.00
4168                                                                                             1.00
4169                                                                                            80.00
4170                                                                                             4.00
4171                                                                                           500.00
4172                                                                      based on weight (45-88 lbs)
4173                                                                                           272.00
4174                                                                                           272.00
4175                                                                                             1.00
4176                                                                                             1.00
4177                                                                                           272.00
4178                                                                                          1620.00
4179                                                                                          1620.00
4180                                                                                           360.00
4181                                                                                           360.00
4182                                                                                           240.00
4183                                                                      based on weight (40-85 lbs)
4184                                                                      based on weight (40-85 lbs)
4185                                                                                           100.00
4186                                                                                            75.00
4187                                                                                           200.00
4188                                                                                           240.00
4189                                                                                                1
4190                                                                                                1
4191                                                                     based on weight (60-120 lbs)
4192                                                                                            75.00
4193                                                                                      application
4194                                                                                           200.00
4195                                                                                             6.00
4196                                                                                          1620.00
4197                                                                                             1.00
4198                                                                     based on weight (60-120 lbs)
4199                                                                     based on weight (50-100 lbs)
4200                                                                                           200.00
4201                                                                                            16.00
4202                                                                                            23.00
4203                                                                                            80.00
4204                                                                                                1
4205                                                                                           375.00
4206                                                                                            80.00
4207                                                                                           810.00
4208                                                                                           272.00
4209                                                                                                1
4210                                                                     based on weight (60-120 lbs)
4211                                                                                           810.00
4212                                                                                        13.5, 810
4213                                                                                     23, 228, 460
4214                                                                                            23.00
4215                                                                                          23, 460
4216                                                                                      unspecified
4217                                                                                            20.00
4218                                                                                      unspecified
4219                                                                                           100.00
4220                                                                                           120.00
4221                                                                                           100.00
4222                                                                                           100.00
4223                                                                                            60.00
4224                                                                                            28.00
4225                                                                                          1000.00
4226                                                                                           136.00
4227                                                                                           500.00
4228                                                                                           500.00
4229                                                                                             15.7
4230                                                                                           150.00
4231                                                                                            20.00
4232                                                                                           120.00
4233                                                                                           150.00
4234                                                                                              100
4235                                                                                             0.60
4236                                                                                             2.00
4237                                                                                             1.00
4238                                                                                             1.00
4239                                                                                           300.00
4240                                                                                           125.00
4241                                                                                           375.00
4242                                                                                           150.00
4243                                                                                            70.00
4244                                                                                               14
4245                                                                                              4.5
4246                                                                                           272.00
4247                                                                                      unspecified
4248                                                                                             0.50
4249                                                                                             1.00
4250                                                                                           875.00
4251                                                                                           272.00
4252                                                                                           136.00
4253                                                                                             0.50
4254                                                                                           272.00
4255                                                                                             0.50
4256                                                                                           136.00
4257                                                                                           272.00
4258                                                                                           136.00
4259                                                                                             0.50
4260                                                                                            60.00
4261                                                                                           272.00
4262                                                                                           136.00
4263                                                                                             0.50
4264                                                                                           310.00
4265                                                                                                1
4266                                                                                      as directed
4267                                                                                            70.00
4268                                                                                             0.13
4269                                                                                             0.11
4270                                                                                             0.20
4271                                                                                             6.00
4272                                                                                            30.00
4273                                                                                            60.00
4274                                                                                      unspecified
4275                                                                                           500.00
4276                                                                                             0.25
4277                                                                                            12.50
4278                                                                                           250.00
4279                                                                                           125.00
4280                                                                                           250.00
4281                                                                                               50
4282                                                                                              500
4283                                                                                           227.00
4284                                                                                           272.00
4285                                                                                           272.00
4286                                                                                           272.00
4287                                                                                             1.00
4288                                                                                             2.00
4289                                                                                            25.00
4290                                                                                           300.00
4291                                                                                           100.00
4292                                                                                            50.00
4293                                                                                             7.20
4294                                                                                           150.00
4295                                                                                           125.00
4296                                                                                            65.00
4297                                                                                            50.00
4298                                                                      based on weight (45-88 lbs)
4299                                                                     based on weight (51-100 lbs)
4300                                                                                           750.00
4301                                                                                           100.00
4302                                                                     based on weight (51-100 lbs)
4303                                                                                             66.5
4304                                                                     based on weight (51-100 lbs)
4305                                                                      based on weight (45-88 lbs)
4306                                                                                      unspecified
4307                                                                     based on weight (51-100 lbs)
4308                                                                     based on weight (51-100 lbs)
4309                                                                      based on weight (45-88 lbs)
4310                                                                                          1200.00
4311                                                                                      unspecified
4312                                                                                            75.00
4313                                                                     based on weight (50-100 lbs)
4314                                                                      based on weight (44-88 lbs)
4315                                                                                            60.00
4316                                                                                             1.60
4317                                                                                            75.00
4318                                                                                           300.00
4319                                                                                             5.00
4320                                                                                           200.00
4321                                                                                           120.00
4322                                                                                           200.00
4323                                                                      based on weight (40-85 lbs)
4324                                                                                     small amount
4325                                                                     based on weight (50-100 lbs)
4326                                                                                           powder
4327                                                                                           500.00
4328                                                                                             1.00
4329                                                                                           100.00
4330                                                                                            50.00
4331                                                                                            75.00
4332                                                                                             5.00
4333                                                                                           300.00
4334                                                                                                1
4335                                                                                             2.00
4336                                                                                      unspecified
4337                                                                                             1.00
4338                                                                   based on weight (50.1-100 lbs)
4339                                                                                             1.00
4340                                                                                             1.00
4341                                                                                              100
4342                                                                                            50.00
4343                                                                                             1.00
4344                                                                                            10.00
4345                                                                                           250.00
4346                                                                                           500.00
4347                                                                                             1.00
4348                                                                                  0.25 inch strip
4349                                                                      based on weight (40-60 lbs)
4350                                                                     based on weight (60-120 lbs)
4351                                                                                             50.5
4352                                                                                             1.00
4353                                                                      based on weight (40-60 lbs)
4354                                                                      based on weight (41-60 lbs)
4355                                                                                            15.00
4356                                                                                            17.00
4357                                                                                             0.40
4358                                                                                            75.00
4359                                                                                               90
4360                                                                                                1
4361                                                                                            16.00
4362                                                                                           810.00
4363                                                                                           100.00
4364                                                                                           900.00
4365                                                                                           375.00
4366                                                                                            75.00
4367                                                                                            50.00
4368                                                                                  based on weight
4369                                                                                             1.00
4370                                                                                           500.00
4371                                                                                  based on weight
4372                                                                                           250.00
4373                                                                                             1.00
4374                                                                                           500.00
4375                                                                                           200.00
4376                                                                                           500.00
4377                                                                                            25.00
4378                                                                                           100.00
4379                                                                                             1.00
4380                                                                                           200.00
4381                                                                                           272.00
4382                                                                                           227.00
4383                                                                                            50.00
4384                                                                                         350, 900
4385                                                                                             1.00
4386                                                                                           150.00
4387                                                                                           272.00
4388                                                                                           900.00
4389                                                                     based on weight (51-100 lbs)
4390                                                                     based on weight (88-123 lbs)
4391                                                                                            23.00
4392                                                                                            23.00
4393                                                                                            23.00
4394                                                                                           130.00
4395                                                             272 ivermectin, 227 pyrantel pamoate
4396                                                                                            16.00
4397                                                                                            60.00
4398                                                                                            60.00
4399                                                                                           272.00
4400                                                                                            16.00
4401                                                                                            16.00
4402                                                                                            16.00
4403                                                                                            16.00
4404                                                                                            75.00
4405                                                                                        13.5, 810
4406                                                                                           250.00
4407                                                                                           250.00
4408                                                                                           150.00
4409                                                                                   1 pack/package
4410                                                                                             1.50
4411                                                                                           500.00
4412                                                                                           500.00
4413                                                                                            10.00
4414                                                                                            50.00
4415                                                                                            75.00
4416                                                                                             2.50
4417                                                                                             2.60
4418                                                                                             3.00
4419                                                                                             4.50
4420                                                                                            75.00
4421                                                                                           375.00
4422                                                                                          1500.00
4423                                                                                           750.00
4424                                                                                           500.00
4425                                                                                            30.00
4426                                                                     based on weight (51-100 lbs)
4427                                                                        based on weight (55+ lbs)
4428                                                                         based on weight (60 lbs)
4429                                                                                           500.00
4430                                                                                                 
4431                                                                                                 
4432                                                                                           100.00
4433                                                                                           175.00
4434                                                                                           150.00
4435                                                                                           270.00
4436                                                                                          1000.00
4437                                                                                             1.00
4438                                                                                             1.00
4439                                                                                           150.00
4440                                                                                             1.00
4441                                                                                             1.00
4442                                                                                             1.00
4443                                                                                           560.00
4444                                                                        based on weight (<88 lbs)
4445                                                                                                1
4446                                                                                   1 pack/package
4447                                                                                             1.00
4448                                                                                             2.00
4449                                                                                           375.00
4450                                                                                             2.00
4451                                                                                           150.00
4452                                                                                             7.50
4453                                                                                             3.00
4454                                                                                         inhalant
4455                                                                                            50.00
4456                                                                                             2.60
4457                                                                                           190.00
4458                                                                                             9.50
4459                                                                                             0.36
4460                                                                                            15.00
4461                                                                                            75.00
4462                                                                                           375.00
4463                                                                                             6.00
4464                                                                                           100.00
4465                                                                                           375.00
4466                                                                                           125.00
4467                                                                                            40.00
4468                                                                                           170.00
4469                                                                                     small amount
4470                                                                                      application
4471                                                                                         wipe/pad
4472                                                                                     small amount
4473                                                                                           170.00
4474                                                                                           500.00
4475                                                                                           375.00
4476                                                                                            75.00
4477                                                                                            40.00
4478                                                                                            12.00
4479                                                                                           100.00
4480                                                                                     small amount
4481                                                                                       1 wipe/pad
4482                                                                                             2.00
4483                                                                                  based on weight
4484                                                                                           136.00
4485                                                                                             1.00
4486                                                                         3 tablets/pills/capsules
4487                                                                                             2.00
4488                                                                                                1
4489                                                                                            16.00
4490                                                                                             8.00
4491                                                                                                1
4492                                                                                           500.00
4493                                                                                            60.00
4494                                                                                             8.00
4495                                                                                            16.00
4496                                                                                             8.00
4497                                                                     based on weight (51-100 lbs)
4498                                                                                             90.5
4499                             based on weight (50-100 lbs) - 23 milbemycin oxime, 228 praziquantel
4500                                                    based on weight (60-120 lbs) - 136 afoxolaner
4501                                                                                      as directed
4502                                                                     based on weight (60-120 lbs)
4503                                                                                            16.00
4504                                                                                      as directed
4505                                                                     based on weight (50-100 lbs)
4506                                                                                             0.96
4507                                                                                            40.00
4508                                                                                            16.00
4509                                                                                                1
4510                                                                                                1
4511                                                                         3 tablets/pills/capsules
4512                                                                                             1.00
4513                                                                                            16.00
4514                                                                                             1.00
4515                                                                                                1
4516                                                                                                1
4517                                                                                   1 pack/package
4518                                                                                             1.00
4519                                                                                            16.00
4520                                                                                            75.00
4521                                                                                             1.00
4522                                                                                             1.00
4523                                                                                             8.00
4524                                                                     based on weight (50-100 lbs)
4525                                                                                           272.00
4526                                                                                           228.00
4527                                                                                           228.00
4528                                                                                          1000.00
4529                                                                                             1.00
4530                                                                                             1.00
4531                                                                                             1.00
4532                                                                     based on weight (50-100 lbs)
4533                                                                                                 
4534                                                                                                1
4535                                                                                               16
4536                                                                     based on weight (50-100 lbs)
4537                                                                                          1000.00
4538                                                                                             1.00
4539                                                                                           272.00
4540                                                                                           272.00
4541                                                                                             4.70
4542                                                                                           200.00
4543                                                                                            50.00
4544                                                                                      unspecified
4545                                                                     based on weight (51-100 lbs)
4546                                                                                            75.00
4547                                                                                     small amount
4548                                                                                           200.00
4549                                                                                           200.00
4550                                                                                            75.00
4551                                                                                           375.00
4552                                                                                             1.00
4553                                                                                            75.00
4554                                                                                            75.00
4555                                                                                            25.00
4556                                                                                           272.00
4557                                                                                           250.00
4558                                                                     based on weight (51-100 lbs)
4559                                                                        based on weight (50+ lbs)
4560                                                                        based on weight (50+ lbs)
4561                                                                                              1.5
4562                                                                      based on weight (45-88 lbs)
4563                                                                                           100.00
4564                                                                     based on weight (51-100 lbs)
4565                                                                      based on weight (44-88 lbs)
4566                                                                     based on weight (50-100 lbs)
4567                                                                      based on weight (44-88 lbs)
4568                                                                      based on weight (44-88 lbs)
4569                                                                        based on weight (50+ lbs)
4570                                                                                           300.00
4571                                                                                            50.00
4572                                                                                           300.00
4573                                                                                            60.00
4574                                                                                           500.00
4575                                                                                           500.00
4576                                                                                             8.00
4577                                                                                             8.00
4578                                                                                             1.00
4579                                                                                           300.00
4580                                                                                            50.00
4581                                                                                             8.00
4582                                                                                           810.00
4583                                                                                           272.00
4584                                                                                           227.00
4585                                                                                           136.00
4586                                                                                           272.00
4587                                                                     based on weight (51-100 lbs)
4588                                                                                           136.00
4589                                                                                           750.00
4590                                                                                           272.00
4591                                                                                           136.00
4592                                                                                           750.00
4593                                                                                           227.00
4594                                                                                           136.00
4595                                                                                            80.00
4596                                                                                           750.00
4597                                                                                      unspecified
4598                                                                                              227
4599                                                             272 ivermectin, 227 pyrantel pamoate
4600                                                                                             1.14
4601                                                                                           272.00
4602                                                                                           130.00
4603                                                                                            16.00
4604                                                                                           272.00
4605                                                                                           100.00
4606                                                                                            50.00
4607                                                                                            16.00
4608                                                                                             1.50
4609                                                                                            30.00
4610                                                                                           227.00
4611                                                                                         27, 1620
4612                                                                                           300.00
4613                                                                                            75.00
4614                                                                                           240.00
4615                                                                                           250.00
4616                                                                                             4.00
4617                                                                                             0.57
4618                                                                                            27.00
4619                                                                                          1620.00
4620                                                                                             1.00
4621                                                                                           750.00
4622                                                                                           200.00
4623                                                                                            75.00
4624                                                                                          1620.00
4625                                                                                            23.00
4626                                                                                           460.00
4627                                                                                      2.68of 9.7%
4628                                                                                      2.68of 8.8%
4629                                                               460 lufenuron, 23 milbemycin oxime
4630                                                                                               15
4631                                                                                      2.68of 9.8%
4632                                                                                           750.00
4633                                                                                          1600.00
4634                                                                                      unspecified
4635                                                                                            23.00
4636                                                                                           750.00
4637                                                                                          1600.00
4638                                                                                      2.68of 9.8%
4639                                                                                             1.00
4640                                                                                            15 au
4641                                                                                            23.00
4642                                                            23 milbemycin oxime, 228 praziquantel
4643                                                                                     small amount
4644                                                                                                1
4645                                                                                                1
4646                                                                                                1
4647                                                                                                1
4648                                                            23 milbemycin oxime, 228 praziquantel
4649                                                                                      2.68of 9.8%
4650                                                                                             0.01
4651                                                                                     small amount
4652                                                                                  moderate amount
4653                                                                                             3.18
4654                                                                      based on weight (44-88 lbs)
4655                                                            23 milbemycin oxime, 228 praziquantel
4656                                                                                             1.00
4657                                                                                             1.00
4658                                                                                             1.00
4659                                                                                          1000.00
4660                                                                                          1000.00
4661                                                                                          1000.00
4662                                                                                          1000.00
4663                                                                                             1.00
4664                                                                                             1.00
4665                                                                                           250.00
4666                                                                                           500.00
4667                                                                                           300.00
4668                                                                                            50.00
4669                                                                                            50.00
4670                                                                                             1.00
4671                                                                                             1.00
4672                                                                                           200.00
4673                                                                                           625.00
4674                                                                                           225.00
4675                                                                                           500.00
4676                                                                                           500.00
4677                                                                                             1.00
4678                                                                                             1.00
4679                                                                                             3.00
4680                                                                                             3.00
4681                                                                                            50.00
4682                                                                                             1.00
4683                                                                                             1.00
4684                                                                                             1.00
4685                                                                                           300.00
4686                                                                                           200.00
4687                                                                                            16.00
4688                                                                                              125
4689                                                                                           272.00
4690                                                                                           272.00
4691                                                                                           273.00
4692                                                                                            68.00
4693                                                                                               75
4694                                                                                               42
4695                                                                     based on weight (50-110 lbs)
4696                                                                                              136
4697                                                                                               23
4698                                                                                           136.00
4699                                                                                           100.00
4700                                                                                                5
4701                                                                                           150.00
4702                                                                                           250.00
4703                                                                                               23
4704                                                                                           136.00
4705                                                                                               23
4706                                                                                           500.00
4707                                                                                           100.00
4708                                                                                            12.50
4709                                                                                             7.50
4710                                                                                           100.00
4711                                                                                                1
4712                                                                                             0.40
4713                                                                                           272.00
4714                                                                                             0.40
4715                                                                                             0.20
4716                                                                                              200
4717                                                                     based on weight (60-120 lbs)
4718                                                                                             0.40
4719                                                                                                 
4720                                                                                                 
4721                                                                                            23.00
4722                                                                                             0.40
4723                                                                                          1000.00
4724                                                                                             3.60
4725                                                                                           272.00
4726                                                                     based on weight (51-100 lbs)
4727                                                                                             0.40
4728                                                                                           500.00
4729                                                                                             1.70
4730                                                                                             0.60
4731                                                                                            60.00
4732                                                                                           272.00
4733                                                                                            80.00
4734                                                                                            60.00
4735                                                                                             0.60
4736                                                                                             1.50
4737                                                                                            60.00
4738                                                                     based on weight (60-120 lbs)
4739                                                                     based on weight (60-120 lbs)
4740                                                                                             3.00
4741                                                                                           200.00
4742                                                                                             5.00
4743                                                                                      application
4744                                                                                      application
4745                                                               27 milbemycin oxime, 1620 spinosad
4746                                                                                           136.00
4747                                                                                           900.00
4748                                                                                           1 unit
4749                                                                                             1.00
4750                                                                                           900.00
4751                                                                                           272.00
4752                                                                                             5.00
4753                                                                                           500.00
4754                                                                                             0.50
4755                                                                                           900.00
4756                                                                                             0.50
4757                                                                                  based on weight
4758                                                                                             1.50
4759                                                                                             1.00
4760                                                                                                1
4761                                                                                                1
4762                                                                                             5.10
4763                                                                        based on weight (55+ lbs)
4764                                                                      based on weight (21-55 lbs)
4765                                                                                            80.00
4766                                                                        based on weight (55+ lbs)
4767                                                                                             5.50
4768                                                                                            80.00
4769                                                                                           200.00
4770                                                                                           110.00
4771                                                                                           200.00
4772                                                                                             6.00
4773                                                                                            16.00
4774                                                                                           100.00
4775                                                                                             2.50
4776                                                                                            50.00
4777                                                                                      unspecified
4778                                                                                            80.00
4779                                                                                            50.00
4780                                                                                      unspecified
4781                                                                                           200.00
4782                                                                                      unspecified
4783                                                                                            16.00
4784                                                                                             1.50
4785                                                                                            80.00
4786                                                                                             1.00
4787                                                                                            16.00
4788                                                                                           300.00
4789                                                                                           200.00
4790                                                                                            80.00
4791                                                                                           200.00
4792                                                                                           360.00
4793                                                                                            80.00
4794                                                                                           200.00
4795                                                                                           100.00
4796                                                                                           150.00
4797                                                                                             5.00
4798                                                                                               20
4799                                                                                           200.00
4800                                                                                           200.00
4801                                                                                         tapering
4802                                                                     based on weight (51-110 lbs)
4803                                                                                                1
4804                                                                                               30
4805                                                                                                 
4806                                                                   based on weight (60.1-121 lbs)
4807                                                                                               50
4808                                                                                            23.00
4809                                                                                           750.00
4810                                                                                            75.00
4811                                                                                            10.00
4812                                                                                             1.40
4813                                                                                      unspecified
4814                                                                                            60.00
4815                                                                                             2.00
4816                                                                                           250.00
4817                                                                                             1.00
4818                                                                                           500.00
4819                                                                                           500.00
4820                                                                                            60.00
4821                                                                                             1.00
4822                                                                                            10.80
4823                                                                                            75.00
4824                                                                      based on weight (20-55 lbs)
4825                                                                                            68.00
4826                                                                                      unspecified
4827                                                                                            10.80
4828                                                                                      unspecified
4829                                                                                            37.50
4830                                                                                            23.00
4831                                                                                          1000.00
4832                                                                                           0.1, 1
4833                                                                                          1000.00
4834                                                                                            23.00
4835                                                                                            23.00
4836                                                                                          1000.00
4837                                                                                           100.00
4838                                                                                             1.00
4839                                                                                           150.00
4840                                                                                             1.00
4841                                                                                            16.00
4842                                                                                             3.00
4843                                                                                             2.00
4844                                                                                           150.00
4845                                                                                             2.00
4846                                                                                             1.00
4847                                                                                            60.00
4848                                                                                          1000.00
4849                                                                                           100.00
4850                                                                                                1
4851                                                                                             5.00
4852                                                                                           150.00
4853                                                                                     small amount
4854                                                                                            50.00
4855                                                                                         27, 1620
4856                                                                                           810.00
4857                                                                                            15.00
4858                                                                                         27, 1620
4859                                                             272 ivermectin, 227 pyrantel pamoate
4860                                                                                           136.00
4861                                                             272 ivermectin, 227 pyrantel pamoate
4862                                                             272 ivermectin, 227 pyrantel pamoate
4863                                                                                           336.00
4864                                                                                            10.00
4865                                                                                             0.80
4866                                                                                           180.00
4867                                                                                          1400.00
4868                                                                                          1000.00
4869                                                                                             1.50
4870                                                                                             1.00
4871                                                                                            90.00
4872                                                                                            50.00
4873                                                                                          1000.00
4874                                                                                             5.00
4875                                                                                            20.00
4876                                                                                            20.00
4877                                                                                            20.00
4878                                                                                            70.00
4879                                                                                            75.00
4880                                                                                           750.00
4881                                                                                     small amount
4882                                                                                             1.00
4883                                                                                             1.00
4884                                                                                           180.00
4885                                                                                          1200.00
4886                                                                                            75.00
4887                                                                                           100.00
4888                                                                                             3.80
4889                                                                                           500.00
4890                                                                                           500.00
4891                                                                                           300.00
4892                                                                                             0.80
4893                                                                                             5.00
4894                                                                                             5.00
4895                                                                                            50.00
4896                                                                                            40.00
4897                                                                                            33.20
4898                                                                                            75.00
4899                                                                                            20.00
4900                                                                                            90.00
4901                                                                                           272.00
4902                                                    5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4903                                                                                           272.00
4904                                                                                         27, 1620
4905                                                                                         27, 1620
4906                                                                                           272.00
4907                                                                                             7.25
4908                                                                                              272
4909                                                                                           272.00
4910                                                                                           collar
4911                                                                                           272.00
4912                                                                                          23, 228
4913                                                                                           collar
4914                                                                                          23, 228
4915                                                                                          1000.00
4916                                                                                          1000.00
4917                                                                                         23 , 228
4918                                                                                          1000.00
4919                                                                                           272.00
4920                                                                                           228.00
4921                                                                                           250.00
4922                                                                                           180.00
4923                                                                                           300.00
4924                                                                                           300.00
4925                                                                                            75.00
4926                                                                                           300.00
4927                                                                                           150.00
4928                                                                                             1.00
4929                                                                                            75.00
4930                                                                                           300.00
4931                                                                                           300.00
4932                                                                                           150.00
4933                                                                                            20.00
4934                                                                                            75.00
4935                                                                     based on weight (51-100 lbs)
4936                                                                                           136.00
4937                                                                                           136.00
4938                                                                                           136.00
4939                                                                                            11.50
4940                                                                                             1.00
4941                                                                                            50.00
4942                                                                                           125.00
4943                                                                                           125.00
4944                                                                                            50.00
4945                                                                                           150.00
4946                                                                                             1.00
4947                                                                                           150.00
4948                                                                                           125.00
4949                                                                                             1.00
4950                                                                                             1.00
4951                                                                                           562.50
4952                                                                                             0.40
4953                                                                                          1000.00
4954                                                                                            27.00
4955                                                                                          1620.00
4956                                                                                      unspecified
4957                                                                                             5.00
4958                                                                                             6.00
4959                                                                                            15.00
4960                                                                                     small amount
4961                                                                                          1620.00
4962                                                                                            27.00
4963                                                                                             2.00
4964                                                                                          1000.00
4965                                                                                          1620.00
4966                                                                                            27.00
4967                                                                                           180.00
4968                                                                                         27, 1620
4969                                                                                             1200
4970                                                                                           360.00
4971                                                                                            40.00
4972                                                                                             1.00
4973                                                                                            20.00
4974                                                                                            23.00
4975                                                                                            80.00
4976                                                                                            80.00
4977                                                                                           160.00
4978                                                                                            40.00
4979                                                                                           400.00
4980                                                                                     pack/package
4981                                                                                          23, 228
4982                                                                                            80.00
4983                                                                                             1.00
4984                                                                                           200.00
4985                                                                                           100.00
4986                                                                                             1.00
4987                                                                                             1.00
4988                                                                                            25.00
4989                                                                                               50
4990                                                                                              150
4991                                                                                           136.00
4992                                                                                            50.00
4993                                                                                            50.00
4994                                                                                           100.00
4995                                                                                           200.00
4996                                                                                      unspecified
4997                                                                                           200.00
4998                                                                                      unspecified
4999                                                                                           200.00
5000                                                                                           113.50
5001                                                                                            20.00
5002                                                                                           250.00
5003                                                                                             1.00
5004                                                                                           113.50
5005                                                                                           300.00
5006                                                                                           500.00
5007                                                                                           227.00
5008                                                                                             0.60
5009                                                                                           300.00
5010                                                                                             2.80
5011                                                                                             0.60
5012                                                                                           227.00
5013                                                                                           200.00
5014                                                                                           500.00
5015                                                                                            10.00
5016                                                                                            20.00
5017                                                                                            40.00
5018                                                                                            50.00
5019                                                                                             1.00
5020                                                                                           100.00
5021                                                                                             2.00
5022                                                                                             1.50
5023                                                                                            50.00
5024                                                                                            60.00
5025                                                                                             1.00
5026                                                                                             5.00
5027                                                                                            12.00
5028                                                                                             2.25
5029                                                                                             1.20
5030                                                                                           500.00
5031                                                                                            75.00
5032                                                                                             1.50
5033                                                                                           500.00
5034                                                                                             6.00
5035                                                                                             0.40
5036                                                                                             0.40
5037                                                                                             0.40
5038                                                                                             0.50
5039                                                                                             0.30
5040                                                                                              136
5041                                                                                            16.00
5042                                                                                             0.50
5043                                                                                                 
5044                                                                                            16.00
5045                                                                                           500.00
5046                                                                                                 
5047                                                                                            24.00
5048                                                                                            70.00
5049                                                                                            16.00
5050                                                                                           136.00
5051                                                                                           437.50
5052                                                                                           300.00
5053                                                                                            70.00
5054                                                                                           100.00
5055                                                                                            60.00
5056                                                                                             0.40
5057                                                                                             4.00
5058                                                                                            60.00
5059                                                                                            15.00
5060                                                                                           375.00
5061                                                                                             0.30
5062                                                                                           100.00
5063                                                                                             1.00
5064                                                                                             1.00
5065                                                                                           250.00
5066                                                                                               90
5067                                                                                               90
5068                                                                                            15.00
5069                                                                                             2.00
5070                                                                                           200.00
5071                                                                                            75.00
5072                                                                                           350.00
5073                                                                                            45.00
5074                                                                                            75.00
5075                                                                                            30.00
5076                                                                                            75.00
5077                                                                                             5.00
5078                                                                      based on weight (40-60 lbs)
5079                                                                                           200.00
5080                                                                                           500.00
5081                                                                                             0.50
5082                                                                                           272.00
5083                                                                                             2.00
5084                                                                                             1.00
5085                                                                                           500.00
5086                                                                                          1620.00
5087                                                                                             1.00
5088                                                                                           500.00
5089                                                                                           272.00
5090                                                                                            50.00
5091                                                                                           272.00
5092                                                                                            27.00
5093                                                                                           750.00
5094                                                                                           272.00
5095                                                                                           227.00
5096                                                                                           136.00
5097                                                                                           227.00
5098                                                                                           136.00
5099                                                                                           272.00
5100                                                                                           136.00
5101                                                                                            15.00
5102                                                                                            75.00
5103                                                                                           250.00
5104                                                                                           272.00
5105                                                                                           272.00
5106                                                                                           500.00
5107                                                                                           272.00
5108                                                                                           500.00
5109                                                                                             2.00
5110                                                                                           150.00
5111                                                                                           272.00
5112                                                                                           150.00
5113                                                                                             0.55
5114                                                                                           600.00
5115                                                                                           272.00
5116                                                                                            15.00
5117                                                                                            68.00
5118                                                                                             1.00
5119                                                                                             1.00
5120                                                                                            68.00
5121                                                                                           272.00
5122                                                                     based on weight (51-100 lbs)
5123                                                                     based on weight (60-121 lbs)
5124                                                                                           113.50
5125                                                                                                1
5126                                                                                             1.00
5127                                                                                        injection
5128                                                                                         10000.00
5129                                                                                           500.00
5130                                                                                             1.00
5131                                                                                          1000.00
5132                                                                                           227.00
5133                                                                                           300.00
5134                                                                                  based on weight
5135                                                                                           600.00
5136                                                                                           100.00
5137                                                                                            75.00
5138                                                                                           875.00
5139                                                                                           200.00
5140                                                                                      750, 187, 5
5141                                                                                             1.00
5142                                                                                           227.00
5143                                                                                             1.00
5144                                                                                             2.40
5145                                                                                           250.00
5146                                                                                           250.00
5147                                                                                             2.00
5148                                                                                            11.50
5149                                                                                            23.00
5150                                                                                               50
5151                                                                                           136.00
5152                                                                                           272.00
5153                                                                                            75.00
5154                                                                                           272.00
5155                                                                                           136.00
5156                                                                                           272.00
5157                                                                                            68.00
5158                                                                                           150.00
5159                                                                                      unspecified
5160                                                                                      unspecified
5161                                                                                      unspecified
5162                                                                                            50.00
5163                                                                                           250.00
5164                                                                                           100.00
5165                                                                                              100
5166                                                                                           250.00
5167                                                                                           222.00
5168                                                                                             1.00
5169                                                                                           272.00
5170                                                                                           136.00
5171                                                                                             3.20
5172                                                                                           500.00
5173                                                                     based on weight (51-100 lbs)
5174                                                                     based on weight (60-120 lbs)
5175                                                                                               68
5176                                                                                           272.00
5177                                                                                           136.00
5178                                                                                           272.00
5179                                                                                           136.00
5180                                                                                           272.00
5181                                                                                           136.00
5182                                                                                            80.00
5183                                                                                            75.00
5184                                                                                            75.00
5185                                                                                           375.00
5186                                                                                            60.00
5187                                                                                            75.00
5188                                                                                             1.00
5189                                                                                               90
5190                                                                                             1.00
5191                                                                                         27, 1620
5192                                                                                               75
5193                                                                                      application
5194                                                                                            23.00
5195                                                                        based on weight (18+ lbs)
5196                                                                                           500.00
5197                                                                                            75.00
5198                                                                                           150.00
5199                                                                                           100.00
5200                                                                                             1.00
5201                                                                                               75
5202                                                                                             1.00
5203                                                                     based on weight (50-100 lbs)
5204                                                                                             1.00
5205                                                                                             0.75
5206                                                                                             1.00
5207                                                                                             1.00
5208                                                                                             1.00
5209                                                                                           150.00
5210                                                                                  moderate amount
5211                                                                                  moderate amount
5212                                                                                  moderate amount
5213                                                                                  moderate amount
5214                                                                     based on weight (51-100 lbs)
5215                                                                                           500.00
5216                                                                                           500.00
5217                                                                                           200.00
5218                                                                                             1.00
5219                                                                                            21.00
5220                                                                                                 
5221                                                                                                 
5222                                                                        based on weight (55+ lbs)
5223                                                                     based on weight (51-100 lbs)
5224                                                                                           750.00
5225                                                                     based on weight (51-100 lbs)
5226                                                                                           750.00
5227                                                                                             7.00
5228                                                                                             1.00
5229                                                                                             1.00
5230                                                                                          1224.60
5231                                                                                             3.00
5232                                                                                           150.00
5233                                                                                          1000.00
5234                                                                                  based on weight
5235                                                                     based on weight (51-100 lbs)
5236                                                                                           150.00
5237                                                                                           200.00
5238                                                                                            15.00
5239                                                                                            21.00
5240                                                                                            16.00
5241                                                                                           280.00
5242                                                                                           164.00
5243                                                                     based on weight (51-100 lbs)
5244                                                                        based on weight (55+ lbs)
5245                                                                                           500.00
5246                                                                                            60.00
5247                                                                     based on weight (51-100 lbs)
5248                                                                     based on weight (51-100 lbs)
5249                                                                                            16.00
5250                                                                                             1.00
5251                                                                                           550.00
5252                                                                                           150.00
5253                                                                     based on weight (51-100 lbs)
5254                                                                                           125.00
5255                                                                     based on weight (51-100 lbs)
5256                                                                     based on weight (51-100 lbs)
5257                                                                     based on weight (51-100 lbs)
5258                                                                     based on weight (51-100 lbs)
5259                                                                                             2.00
5260                                                                                          1088.20
5261                                                                     based on weight (51-100 lbs)
5262                                                                                  based on weight
5263                                                                                           150.00
5264                                                                        based on weight (55+ lbs)
5265                                                                     based on weight (51-100 lbs)
5266                                                                                           625.00
5267                                                                                           150.00
5268                                                                                             1.00
5269                                                                                           150.00
5270                                                                     based on weight (51-100 lbs)
5271                                                                     based on weight (51-100 lbs)
5272                                                                                           750.00
5273                                                                                             3.00
5274                                                                                           200.00
5275                                                                                           500.00
5276                                                                                             1.50
5277                                                                                           150.00
5278                                                                                           150.00
5279                                                                                             1.50
5280                                                                                           100.00
5281                                                                                           400.00
5282                                                                                             1.50
5283                                                                                           150.00
5284                                                                                            20.00
5285                                                                                             1.00
5286                                                                                           272.00
5287                                                                                           136.00
5288                                                                                           236.00
5289                                                                     based on weight (50-100 lbs)
5290                                                                                            40.00
5291                                                                                             0.80
5292                                                                                            40.00
5293                                                                                           500.00
5294                                                                                            30.00
5295                                                                                           272.00
5296                                                                                             5.00
5297                                                                                           500.00
5298                                                                                            16.00
5299                                                                                           272.00
5300                                                                                          1000.00
5301                                                                                           450.00
5302                                                                                             6.00
5303                                                                                           100.00
5304                                                                                            60.00
5305                                                                                           272.00
5306                                                                                           100.00
5307                                                                                            40.00
5308                                                                                            70.00
5309                                                                                           272.00
5310                                                                                           100.00
5311                                                                                            80.00
5312                                                                                           100.00
5313                                                                                            80.00
5314                                                                                           272.00
5315                                                                                            70.00
5316                                                                                            80.00
5317                                                                                            81.00
5318                                                                                           100.00
5319                                                                                           100.00
5320                                                                                           300.00
5321                                                                                            75.00
5322                                                                                           250.00
5323                                                                                           200.00
5324                                                                                           300.00
5325                                                                                           250.00
5326                                                                                           500.00
5327                                                                                            50.00
5328                                                                                            50.00
5329                                                                                           437.50
5330                                                                                           437.50
5331                                                                                           272.00
5332                                                                                         1 collar
5333                                                                                      unspecified
5334                                                                                  based on weight
5335                                                                                           collar
5336                                                                         2 tablets/pills/capsules
5337                                                                                      unspecified
5338                                                                                           300.00
5339                                                                                            70.00
5340                                                                     based on weight (51-100 lbs)
5341                                                                                                1
5342                                                                                           500.00
5343                                                                                           300.00
5344                                                                                            70.00
5345                                                                                            75.00
5346                                                                                           272.00
5347                                                                                             7.00
5348                                                                                           272.00
5349                                                                                           227.00
5350                                                                                           500.00
5351                                                                                           272.00
5352                                                                                           227.00
5353                                                                                           136.00
5354                                                                                           collar
5355                                                                                           272.00
5356                                                                                           500.00
5357                                                                                                 
5358                                                                                           272.00
5359                                                             272 ivermectin, 227 pyrantel pamoate
5360                                                             272 ivermectin, 227 pyrantel pamoate
5361                                                                                               50
5362                                                                         3 tablets/pills/capsules
5363                                                                                           500.00
5364                                                                                           480.00
5365                                                                                           272.00
5366                                                                                           228.00
5367                                                                                           228.00
5368                                                                                            75.00
5369                                                                     based on weight (50-100 lbs)
5370                                                                                             4.70
5371                                                                                           272.00
5372                                                                                           136.00
5373                                                                                             1.00
5374                                                                                          1000.00
5375                                                                                            25.00
5376                                                                                           272.00
5377                                                             272 ivermectin, 227 pyrantel pamoate
5378                                                               8.8% (s)-methoprene, 9.8% fipronil
5379                                                                     based on weight (51-100 lbs)
5380                                                                                             66.5
5381                                                                                            23.00
5382                                                                                             66.5
5383                                                                                             0.14
5384                                                            23 milbemycin oxime, 228 praziquantel
5385                                                                                      unspecified
5386                                                                                      unspecified
5387                                                                                      unspecified
5388                                                                                      unspecified
5389                                                                                           272.00
5390                                                                                           136.00
5391                                                                     based on weight (60-121 lbs)
5392                                                                     based on weight (51-100 lbs)
5393                                                                                            50.00
5394                                                                                           272.00
5395                                                                                           272.00
5396                                                                                           227.00
5397                                                                                           272.00
5398                                                                                           227.00
5399                                                                                            23.00
5400                                                                                            23.00
5401                                                                                             1.00
5402                                                                                             0.60
5403                                                                        based on weight (100 lbs)
5404                                                                                             0.80
5405                                                                                           375.00
5406                                                                                             1.00
5407                                                                                            23.00
5408                                                                                             0.70
5409                                                                                          1000.00
5410                                                                                            12.50
5411                                                                                            23.00
5412                                                                                          1000.00
5413                                                                                           150.00
5414                                                                                             8.00
5415                                                                                             2.00
5416                                                                                             0.70
5417                                                                                          1000.00
5418                                                                                          1000.00
5419                                                                                            10.00
5420                                                                                             8.00
5421                                                                                             0.70
5422                                                                                           100.00
5423                                                                                           200.00
5424                                                                                     small amount
5425                                                                                             1.00
5426                                                                                            20.00
5427                                                                                           500.00
5428                                                                                                 
5429                                                                                           300.00
5430                                                                                            50.00
5431                                                                                            75.00
5432                                                                                           200.00
5433                                                                                            75.00
5434                                                                                            50.00
5435                                                                                             0.50
5436                                                                                            20.00
5437                                                                                           500.00
5438                                                                                            15.00
5439                                                                                            10.00
5440                                                                                      unspecified
5441                                                                                            75.00
5442                                                                                            75.00
5443                                                                                            75.00
5444                                                                                          1000.00
5445                                                                                            75.00
5446                                                                                             3.75
5447                                                                                             1.40
5448                                                                                             1.00
5449                                                                                           500.00
5450                                                                                           100.00
5451                                                                                            37.50
5452                                                                                           500.00
5453                                                                                           250.00
5454                                                                                            23.00
5455                                                                                            80.00
5456                                                                                             0.60
5457                                                                                             0.60
5458                                                                                            23.00
5459                                                                                           460.00
5460                                                                                     small amount
5461                                                                                            23.00
5462                                                                                             6.00
5463                                                                                            23.00
5464                                                                                         27, 1620
5465                                                                                          1000.00
5466                                                                                             6.00
5467                                                                                            23.00
5468                                                                                             1.80
5469                                                                                                2
5470                                                                                           250.00
5471                                                                                           500.00
5472                                                                                            30.00
5473                                                                                           500.00
5474                                                                                             5.00
5475                                                                                            20.00
5476                                                                                             1.00
5477                                                                                           500.00
5478                                                                                            50.00
5479                                                                                            50.00
5480                                                                                            10.00
5481                                                                                             2.50
5482                                                                                          1700.00
5483                                                                                                1
5484                                                                                             2400
5485                                                                                              300
5486                                                                                          3000.00
5487                                                                                             1.00
5488                                                                                             5.00
5489                                                                                            10.00
5490                                                                                               16
5491                                                                      based on weight (45-88 lbs)
5492                                                                     based on weight (51-100 lbs)
5493                                                                                             1.00
5494                                                                                             1.00
5495                                                                                             1.00
5496                                                                                            75.00
5497                                                                     based on weight (51-100 lbs)
5498                                                                     based on weight (51-100 lbs)
5499                                                                      based on weight (45-88 lbs)
5500                                                                     based on weight (51-100 lbs)
5501                                                                                     small amount
5502                                                                                    1 bottle/vial
5503                                                                                            75.00
5504                                                                                           102.00
5505                                                                                             2.00
5506                                                                                           100.00
5507                                                                     based on weight (51-100 lbs)
5508                                                                     based on weight (51-100 lbs)
5509                                                                     based on weight (51-100 lbs)
5510                                                                                             2.00
5511                                                                     based on weight (51-100 lbs)
5512                                                                                            75.00
5513                                                                     based on weight (51-100 lbs)
5514                                                                                          1000.00
5515                                                                                             1.00
5516                                                                                             1.00
5517                                                                                           300.00
5518                                                                                           100.00
5519                                                                                            75.00
5520                                                                                          1000.00
5521                                                                                            30.00
5522                                                                                            75.00
5523                                                                                           100.00
5524                                                                                             2.00
5525                                                                                           300.00
5526                                                                                            25.00
5527                                                                                     small amount
5528                                                                                      application
5529                                                                                                 
5530                                                                                             5.00
5531                                                                                            60.00
5532                                                                                            14.00
5533                                                                                     small amount
5534                                                                                  based on weight
5535                                                                                     small amount
5536                                                                                             5.00
5537                                                                                     small amount
5538                                                                                           375.00
5539                                                                                            70.00
5540                                                                                            50.00
5541                                                                     based on weight (51-100 lbs)
5542                                                                      based on weight (45-88 lbs)
5543                                                                                             7.50
5544                                                                                            80.00
5545                                                                                  based on weight
5546                                                                                  based on weight
5547                                                                                            16.00
5548                                                                                            16.00
5549                                                                                            40.00
5550                                                                                             7.50
5551                                                                                           272.00
5552                                                                     based on weight (51-100 lbs)
5553                                                                                  based on weight
5554                                                                                          1000.00
5555                                                                                            16.00
5556                                                                                               66
5557                                                                     based on weight (51-100 lbs)
5558                                                                                           100.00
5559                                                                                            16.00
5560                                                                                          1000.00
5561                                                                                            16.00
5562                                                                                             1.00
5563                                                                                            16.00
5564                                                                                             1.00
5565                                                                                           810.00
5566                                                                                             1.00
5567                                                                                             1.00
5568                                                                     based on weight (51-100 lbs)
5569                                                                                            50.00
5570                                                                                           375.00
5571                                                                     based on weight (51-100 lbs)
5572                                                                                             1.00
5573                                                                                             8.00
5574                                                                                               75
5575                                                                                             1.00
5576                                                                     based on weight (51-100 lbs)
5577                                                                                      unspecified
5578                                                                     based on weight (51-100 lbs)
5579                                                                                           200.00
5580                                                                                           200.00
5581                                                                                             1.00
5582                                                                                           125.00
5583                                                                                             8.00
5584                                                                                             1.00
5585                                                                                          1000.00
5586                                                                                            11.00
5587                                                                                           500.00
5588                                                                                             5.00
5589                                                                                            57.00
5590                                                                                            68.00
5591                                                                                            81.50
5592                                                                                            73.00
5593                                                                                           100.00
5594                                                                                           136.50
5595                                                                     based on weight (51-100 lbs)
5596                                                                                            23.00
5597                                                                                           460.00
5598                                                                                            10.00
5599                                                                                            60.00
5600                                                                     based on weight (51-100 lbs)
5601                                                                                             66.5
5602                                                                     based on weight (51-100 lbs)
5603                                                                                             2.68
5604                                                                                            23.00
5605                                                                                           500.00
5606                                                                                             1.36
5607                                                               460 lufenuron, 23 milbemycin oxime
5608                                                                                             2.68
5609                                                                                            23.00
5610                                                                                           200.00
5611                                                                                             1.00
5612                                                                                           500.00
5613                                                                                             1.00
5614                                                                                            60.00
5615                                                                                             1.00
5616                                                                                           200.00
5617                                                                                            15.00
5618                                                                                             3.00
5619                                                                                            80.00
5620                                                                                             1.00
5621                                                                                            30.00
5622                                                                                           400.00
5623                                                                                           500.00
5624                                                                                             1.20
5625                                                                                             1.20
5626                                                                     based on weight (51-100 lbs)
5627                                                                     based on weight (51-100 lbs)
5628                                                                     based on weight (61-120 lbs)
5629                                                                     based on weight (51-100 lbs)
5630                                                                     based on weight (60-120 lbs)
5631                                                                     based on weight (51-100 lbs)
5632                                                                      based on weight (24-60 lbs)
5633                                                                                           200.00
5634                                                                                           200.00
5635                                                                                           100.00
5636                                                                                             5.00
5637                                                                                            13.50
5638                                                                                           810.00
5639                                                                                           810.00
5640                                                                                            13.50
5641                                                                                              1.7
5642                                                                                             1.70
5643                                                                                             0.18
5644                                                                                            60.00
5645                                                                                            17.70
5646                                                                                             1.84
5647                                                                                          1000.00
5648                                                                                           180.00
5649                                                                                    5 billion cfu
5650                                                                                            60.00
5651                                                                                          1500.00
5652                                                                                             1.00
5653                                                                                           300.00
5654                                                                                           600.00
5655                                                                                             6.00
5656                                                                                             2.00
5657                                                                                           200.00
5658                                                                                            40.00
5659                                                                                             7.00
5660                                                                                           400.00
5661                                                                                            10.00
5662                                                                                           175.00
5663                                                                                           200.00
5664                                                                                          1000.00
5665                                                                                           200.00
5666                                                                                           500.00
5667                                                                                           400.00
5668                                                                                              272
5669                                                                                             1.00
5670                                                                                             2.00
5671                                                                                             2.00
5672                                                                                             1.00
5673                                                                                            25.00
5674                                                                                            50.00
5675                                                                                            10.00
5676                                                                                             2.00
5677                                                                                             1.00
5678                                                                                             1.00
5679                                                                                             2.00
5680                                                                                             1.00
5681                                                                     based on weight (60-120 lbs)
5682                                                                     based on weight (51-100 lbs)
5683                                                                                            10.00
5684                                                                                             7.50
5685                                                                                          2000.00
5686                                                                                            70.00
5687                                                                                             1.00
5688                                                                                             1.00
5689                                                                                             1.00
5690                                                                                            50.00
5691                                                                                             8.00
5692                                                                                           272.00
5693                                                                                             6.00
5694                                                                                             6.00
5695                                                                                      unspecified
5696                                                                                            23.00
5697                                                                                             2.68
5698                                                                                            23.00
5699                                                                                          1000.00
5700                                                                                            23.00
5701                                                                                            68.00
5702                                                                                            23.00
5703                                                                                           272.00
5704                                                                                           136.00
5705                                                                                           460.00
5706                                                                                           136.00
5707                                                                                            23.00
5708                                                                                            68.00
5709                                                                                            23.00
5710                                                                                             2.30
5711                                                                                           136.00
5712                                                                                            60.00
5713                                                                                          1620.00
5714                                                                                            27.00
5715                                                                                            45.40
5716                                                                                            45.40
5717                                                                                           226.80
5718                                                                                           250.00
5719                                                                                           500.00
5720                                                                                          1454.00
5721                                                               27 milbemycin oxime, 1620 spinosad
5722                                                                                        27 , 1620
5723                                                               27 milbemycin oxime, 1620 spinosad
5724                                                               27 milbemycin oxime, 1620 spinosad
5725                                                                                         27, 1620
5726                                                                                            23.00
5727                                                                                          1000.00
5728                                                               27 milbemycin oxime, 1620 spinosad
5729                                                                                      unspecified
5730                                                                                           200.00
5731                                                                                      unspecified
5732                                                                                           150.00
5733                                                                                           300.00
5734                                                                                           300.00
5735                                                                                            30.00
5736                                                                                            20.00
5737                                                                                              750
5738                                                                                             1.00
5739                                                                                           272.00
5740                                                                                           272.00
5741                                                                                           136.00
5742                                                                                           272.00
5743                                                                                           136.00
5744                                                                                           227.00
5745                                                                                           272.00
5746                                                                                             4.28
5747                                                                                  based on weight
5748                                                                                               35
5749                                                                                           136.00
5750                                                                                           272.00
5751                                                                                           136.00
5752                                                                                           227.00
5753                                                                                           136.00
5754                                                                                           272.00
5755                                                                                           136.00
5756                                                                                           272.00
5757                                                                                           136.00
5758                                                                                          1500.00
5759                                                                                           500.00
5760                                                                                      unspecified
5761                                                                                           483.00
5762                                                                                  based on weight
5763                                                                                             1.30
5764                                                                                           272.00
5765                                                                                             1.60
5766                                                                                           200.00
5767                                                                                             1.40
5768                                                                     based on weight (51-100 lbs)
5769                                                                                           272.00
5770                                                                                           120.00
5771                                                            23 milbemycin oxime, 228 praziquantel
5772                                                                                            23.00
5773                                                                                           228.00
5774                                                                                              750
5775                                                                                            75.00
5776                                                                                           375.00
5777                                                                                      unspecified
5778                                                                                           100.00
5779                                                                                             1.00
5780                                                                                           300.00
5781                                                                                           300.00
5782                                                                                           100.00
5783                                                                                           300.00
5784                                                                                            10.00
5785                                                                                            75.00
5786                                                                                           136.00
5787                                                                                           125.00
5788                                                                                           125.00
5789                                                                                            25.00
5790                                                                                           200.00
5791                                                                                             8.00
5792                                                                                            50.00
5793                                                                                               38
5794                                                                                             50.5
5795                                                                                           200.00
5796                                                                                            50.00
5797                                                                                           250.00
5798                                                                                           100.00
5799                                                                                             1.00
5800                                                                                           100.00
5801                                                                                            50.00
5802                                                                                           200.00
5803                                                                                             8.00
5804                                                                                          13, 228
5805                                                                                             8.00
5806                                                                                             8.00
5807                                                                                            75.00
5808                                                                                             1.00
5809                                                                                             1.00
5810                                                                                             1.00
5811                                                                                             8.00
5812                                                                                            40.00
5813                                                                                             4.00
5814                                                                                      unspecified
5815                                                                                             8.00
5816                                                                                            40.00
5817                                                                                           250.00
5818                                                                                             5.00
5819                                                                                           272.00
5820                                                                                           272.00
5821                                                                                           272.00
5822                                                                                             1.00
5823                                                                                            37.50
5824                                                                                            10.00
5825                                                                                            50.00
5826                                                                                            50.00
5827                                                                                            75.00
5828                                                                                            50.00
5829                                                                                             1.00
5830                                                                                             1.00
5831                                                                                           272.00
5832                                                                                           227.00
5833                                                                                           272.00
5834                                                             272 ivermectin, 227 pyrantel pamoate
5835                                                                                           272.00
5836                                                                                           460.00
5837                                                                                           500.00
5838                                                                                            10.00
5839                                                                     based on weight (51-100 lbs)
5840                                                                                          23, 460
5841                                                                                            50.00
5842                                                                                           272.00
5843                                                                                           250.00
5844                                                                                             1.00
5845                                                                                             1.00
5846                                                                                             5.00
5847                                                                                            95.00
5848                                                                                           125.00
5849                                                                                             6.25
5850                                                                                             1.00
5851                                                                                           136.00
5852                                                                                            41.00
5853                                                                                           100.00
5854                                                                                           275.00
5855                                                                                           100.00
5856                                                                                           275.00
5857                                                                                           420.00
5858                                                                                  0.25 inch strip
5859                                                                                           375.00
5860                                                                                             5.00
5861                                                                                           272.00
5862                                                                                            41.47
5863                                                                                           130.00
5864                                                                                            50.00
5865                                                                                           272.00
5866                                                                                           840.00
5867                                                                                            41.47
5868                                                                                           272.00
5869                                                                     based on weight (51-100 lbs)
5870                                                                                           500.00
5871                                                                                             0.25
5872                                                                                             62.5
5873                                                                                               44
5874                                                                                             2.00
5875                                                                                            15.00
5876                                                                                             4.00
5877                                                                                  based on weight
5878                                                                                           500.00
5879                                                                                           200.00
5880                                                                                            15.00
5881                                                                                            75.00
5882                                                                                          1000.00
5883                                                                                            50.00
5884                                                                                      unspecified
5885                                                                                           100.00
5886                                                                                            10.00
5887                                                                                     small amount
5888                                                                                          1000.00
5889                                                                                           200.00
5890                                                                                              108
5891                                                                                           100.00
5892                                                                                           200.00
5893                                                                                           100.00
5894                                                                                            50.00
5895                                                                                            16.00
5896                                                                                            105.5
5897                                                                                           100.00
5898                                                                                             1.00
5899                                                                                            16.00
5900                                                                                             1.00
5901                                                                                          1400.00
5902                                                                                            16.00
5903                                                                                             0.50
5904                                                                                            75.00
5905                                                                                          1400.00
5906                                                                                            16.00
5907                                                                                            75.00
5908                                                                                          1400.00
5909                                                                                            16.00
5910                                                                                            20.00
5911                                                                                           300.00
5912                                                                                            75.00
5913                                                                                  based on weight
5914                                                                                            16.00
5915                                                                                            20.00
5916                                                                                             8.00
5917                                                                                                7
5918                                                                                             5.63
5919                                                                                           500.00
5920                                                                                             1.00
5921                                                                                           250.00
5922                                                                                           500.00
5923                                                                                           350.00
5924                                                                                            50.00
5925                                                                                               90
5926                                                                                          1620.00
5927                                                                                            27.00
5928                                                                                               90
5929                                                                                            15.00
5930                                                                     based on weight (51-100 lbs)
5931                                                                                               66
5932                                                                                      unspecified
5933                                                                      based on weight (44-88 lbs)
5934                                                                     based on weight (51-100 lbs)
5935                                                                                                 
5936                                                                     based on weight (51-100 lbs)
5937                                                                      based on weight (44-88 lbs)
5938                                                                                             0.01
5939                                                                                             0.01
5940                                                                                           500.00
5941                                                                     based on weight (51-100 lbs)
5942                                                                      based on weight (44-88 lbs)
5943                                                                                             1.00
5944                                                                                           500.00
5945                                                                                       1 wipe/pad
5946                                                                                           200.00
5947                                                                                           500.00
5948                                                                                             1.50
5949                                                                                           300.00
5950                                                                                            75.00
5951                                                                                           500.00
5952                                                                                            12.50
5953                                                                                            30.00
5954                                                                                             1.00
5955                                                                                           375.00
5956                                                                                             1.00
5957                                                                                           300.00
5958                                                                                            75.00
5959                                                                                             1.00
5960                                                                                            15.00
5961                                                                                            30.00
5962                                                                                            75.00
5963                                                                     based on weight (51-100 lbs)
5964                                                                   based on weight (60.1-121 lbs)
5965                                                               460 lufenuron, 23 milbemycin oxime
5966                                                                                               23
5967                                                                                    460 lufenuron
5968                                                                                               23
5969                                                                                          1000.00
5970                                                                                           400.00
5971                                                                                           500.00
5972                                                                                            80.00
5973                                                                                            20.00
5974                                                                                           125.00
5975                                                                                           136.00
5976                                                                                      as directed
5977                                                                                               75
5978                                                                                               50
5979                                                                                             1000
5980                                                                                                1
5981                                                                              tablet/pill/capsule
5982                                                                                          1620.00
5983                                                                                            37.50
5984                                                                                           200.00
5985                                                                                            105.5
5986                                                                                            37.50
5987                                                                                              125
5988                                                                                  based on weight
5989                                                                                            75.00
5990                                                                                           500.00
5991                                                                                  based on weight
5992                                                                                  based on weight
5993                                                             272 ivermectin, 227 pyrantel pamoate
5994                                                                      based on weight (44-88 lbs)
5995                                                                                             1.00
5996                                                                                             1.00
5997                                                                                             1.00
5998                                                                                             1.00
5999                                                                                           100.00
6000                                                               460 lufenuron, 23 milbemycin oxime
6001                                                                                            15.00
6002                                                                        based on weight (55+ lbs)
6003                                                               460 lufenuron, 23 milbemycin oxime
6004                                                          8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                               15
6006                                                                                             1.00
6007                                                                                           227.00
6008                                                                                            60.00
6009                                                                                            16.00
6010                                                                                           500.00
6011                                                                                             1.00
6012                                                                                             85.5
6013                                                                                           150.00
6014                                                                                      unspecified
6015                                                                                      unspecified
6016                                                                                      unspecified
6017                                                                                      unspecified
6018                                                                                           500.00
6019                                                                                           750.00
6020                                                                                           100.00
6021                                                                                              227
6022                                                                                              227
6023                                                                                           272.00
6024                                                                                           272.00
6025                                                                                           272.00
6026                                                                                           272.00
6027                                                                                           227.00
6028                                                                                           500.00
6029                                                                                           108.00
6030                                                                                           300.00
6031                                                                                            75.00
6032                                                                                           500.00
6033                                                                                            15.00
6034                                                                                             7.00
6035                                                                                             5.00
6036                                                                                         27, 1620
6037                                                                                           272.00
6038                                                                     based on weight (51-100 lbs)
6039                                                                                                1
6040                                                                                           272.00
6041                                                                                             4.02
6042                                                                                             2.68
6043                                                                                           272.00
6044                                                                                            16.00
6045                                                                                           200.00
6046                                                                                             4.00
6047                                                                                            23.00
6048                                                                                             2.68
6049                                                                                             0.09
6050                                                                                             2.68
6051                                                                                           500.00
6052                                                                                           136.00
6053                                                                                            10.00
6054                                                                                           100.00
6055                                                                                             2.60
6056                                                                                            23.00
6057                                                                                            23.00
6058                                                                                             2.68
6059                                                                     based on weight (51-100 lbs)
6060                                                                                             90.5
6061                                                                                            70.00
6062                                                                                           750.00
6063                                                                                     small amount
6064                                                                                            37.50
6065                                                                                            60.00
6066                                                                                           500.00
6067                                                                                            10.00
6068                                                                     based on weight (50-100 lbs)
6069                                                                      based on weight (55-95 lbs)
6070                                                                                               50
6071                                                                                      unspecified
6072                                                                                  based on weight
6073                                                                                               75
6074                                                                                                1
6075                                                                                           500.00
6076                                                                                           collar
6077                                                                                           227.00
6078                                                                                           collar
6079                                                                                           500.00
6080                                                                                             1.00
6081                                                                                           750.00
6082                                                                                            50.00
6083                                                                                           500.00
6084                                                                                            50.00
6085                                                                                             2.50
6086                                                                                          1620.00
6087                                                                                           160.00
6088                                                                                  0.25 inch strip
6089                                                                                             37.5
6090                                                                                  0.25 inch strip
6091                                                                                            75.00
6092                                                                                              0.4
6093                                                                                      unspecified
6094                                                                                               60
6095                                                                                              1.5
6096                                                                                               20
6097                                                                                               15
6098                                                                                              1.3
6099                                                                                               30
6100                                                                                            23.00
6101                                             460 lufenuron, 23 milbemycin oxime, 228 praziquantel
6102                                           1 betamethasone, 10 clotrimazole, 3 gentamicin sulfate
6103                                                                                             0.10
6104                                                                                     23, 228, 460
6105                                                                                            80.00
6106                                                                                             1.00
6107                                                                                            80.00
6108                                                                                           100.00
6109                                                                                90, 350, 800, 900
6110                                                                                           200.00
6111                                                                                           900.00
6112                                                                                            60.00
6113                                                                                           300.00
6114                                                                                            20.00
6115                                                                                            60.00
6116                                                                                             1.00
6117                                                                                            17.00
6118                                                                                            20.00
6119                                                                                             0.90
6120                                                                                            24.00
6121                                                                                            80.00
6122                                                                                             7.20
6123                                                                                             7.20
6124                                                                                            75.00
6125                                                                                            75.00
6126                                                                                             1.00
6127                                                                                             3.60
6128                                                                                            75.00
6129                                                                                                1
6130                                                                                                1
6131                                                                                           100.00
6132                                                                     based on weight (51-100 lbs)
6133                                                                     based on weight (60-120 lbs)
6134                                                                     based on weight (51-100 lbs)
6135                                                                      based on weight (44-88 lbs)
6136                                                                     based on weight (51-100 lbs)
6137                                                                      based on weight (44-88 lbs)
6138                                                                                            16.00
6139                                                                     based on weight (51-100 lbs)
6140                                                                      based on weight (44-88 lbs)
6141                                                                                             1.00
6142                                                                                           200.00
6143                                                                                           300.00
6144                                                                                           600.00
6145                                                                                            75.00
6146                                                                                            20.00
6147                                                                                          1647.00
6148                                                                   based on weight (60.1-120 lbs)
6149                                                                                                1
6150                                                                                                1
6151                                                                                           136.00
6152                                                                                               23
6153                                                                                          1000.00
6154                                                                                            20.00
6155                                                                                            10.00
6156                                                                                             5.00
6157                                                                                             5.00
6158                                                                                             1.00
6159                                                                                            57.00
6160                                                                                             66.5
6161                                                                                          23, 460
6162                                                                                           272.00
6163                                                                                           136.00
6164                                                                                     small amount
6165                                                                                            90.00
6166                                                                                            50.00
6167                                                                                           200.00
6168                                                                                           250.00
6169                                                                                           227.00
6170                                                                                            22.70
6171                                                                                             0.40
6172                                                                                            50.00
6173                                                                                            10.00
6174                                                                                            18.00
6175                                                                                           250.00
6176                                                                                             1.20
6177                                                                                           240.00
6178                                                                                            12.00
6179                                                                                             1.50
6180                                                                                             8.00
6181                                                                                            50.00
6182                                                                                           113.50
6183                                                                                           500.00
6184                                                                                           500.00
6185                                                                                           272.00
6186                                                                                            25.00
6187                                                                                           136.00
6188                                                                                             1.00
6189                                                                                             37.5
6190                                                                                           272.00
6191                                                                                             3.00
6192                                                                                            20.00
6193                                                                                           850.00
6194                                                                                           750.00
6195                                                                                            75.00
6196                                                                                             6.00
6197                                                                                           272.00
6198                                                                                             1.40
6199                                                                                            50.00
6200                                                                     based on weight (88-132 lbs)
6201                                                                                           272.00
6202                                                                     based on weight (60-120 lbs)
6203                                                                                            16.00
6204                                                                                            60.00
6205                                                                                           200.00
6206                                                                                      application
6207                                                                                            60.00
6208                                                                                      application
6209                                                                                            23.00
6210                                                                                           120.00
6211                                                                                           900.00
6212                                                                                             4.20
6213                                                                                             2.00
6214                                                                                             3.80
6215                                                                                                1
6216                                                                                            90.00
6217                                                                                       14.8, 16.6
6218                                                                                           varies
6219                                                                                             2.50
6220                                                                                            75.00
6221                                                                                              7.5
6222                                                                                            75.00
6223                                                                                            50.00
6224                                                                     based on weight (50-100 lbs)
6225                                                                   based on weight (88.1-132 lbs)
6226                                                                        based on weight (60+ lbs)
6227                                                                                            90.00
6228                                                                                          1000.00
6229                                                                                             1.00
6230                                                                                             4.30
6231                                                                     based on weight (50-100 lbs)
6232                                                                   based on weight (88.1-132 lbs)
6233                                                                                           100.00
6234                                                                                             1.00
6235                                                                                             1.00
6236                                                                                             1.00
6237                                                                                           100.00
6238                                                                                             4.10
6239                                                                                             4.10
6240                                                                                           500.00
6241                                                                                           204.00
6242                                                                                             1.80
6243                                                                                           100.00
6244                                                                                      unspecified
6245                                                                                             8.00
6246                                                                                            20.00
6247                                                                                             4.00
6248                                                                                            60.00
6249                                                                                            15.00
6250                                                                                           100.00
6251                                                                                            90.00
6252                                                                                            50.00
6253                                                                                           500.00
6254                                                                                                1
6255                                                                                              200
6256                                                                                             3.00
6257                                                                      based on weight (40-85 lbs)
6258                                                                     based on weight (50-100 lbs)
6259                                                                                           150.00
6260                                                                                             3.00
6261                                                                                           175.00
6262                                                                                                1
6263                                                                                                1
6264                                                                                           175.00
6265                                                                                           150.00
6266                                                                                      application
6267                                                                                     small amount
6268                                                                                             5.00
6269                                                                                             0.09
6270                                                                                           300.00
6271                                                                                           200.00
6272                                                                                            50.00
6273                                                                                           200.00
6274                                                                                             7.50
6275                                                                                      unspecified
6276                                                                                            50.00
6277                                                                                           600.00
6278                                                                                           300.00
6279                                                                                           250.00
6280                                                                                             5.00
6281                                                                                          1100.00
6282                                                             272 ivermectin, 227 pyrantel pamoate
6283                                                                      based on weight (44-88 lbs)
6284                                                                                          410 epa
6285                                                                                           274.00
6286                                                                                           600.00
6287                                                                                           300.00
6288                                                                                           250.00
6289                                                                                           820.00
6290                                                                                           548.00
6291                                                                                          1000.00
6292                                                                                           800.00
6293                                                                      based on weight (24-60 lbs)
6294                                                                                           500.00
6295                                                                                           500.00
6296                                                                                            0.125
6297                                                                                             1.00
6298                                                                                           272.00
6299                                                                                            75.00
6300                                                                                           100.00
6301                                                                                           272.00
6302                                                             272 ivermectin, 227 pyrantel pamoate
6303                                                                                            16.00
6304                                                                                          1000.00
6305                                                                                            16.00
6306                                                                                           170.00
6307                                                                                        62.5, 437
6308                                                                                          1000.00
6309                                                                                             0.13
6310                                                                                           500.00
6311                                                                                            80.00
6312                                                                                      unspecified
6313                                                                                           750.00
6314                                                                                             0.12
6315                                                                                             1.00
6316                                                                                           750.00
6317                                                                                             0.13
6318                                                                                          1000.00
6319                                                                                      unspecified
6320                                                                                      unspecified
6321                                                                                            75.00
6322                                                                                           750.00
6323                                                                                          1000.00
6324                                                                                          2000.00
6325                                                                                                1
6326                                                                                      application
6327                                                                                           272.00
6328                                                                         2 tablets/pills/capsules
6329                                                                                                1
6330                                                                                             8.00
6331                                                                     based on weight (51-100 lbs)
6332                                                                                             1.50
6333                                                                                             1.00
6334                                                                                             1.00
6335                                                                                            50.00
6336                                                                                             2.40
6337                                                                                             1.00
6338                                                                                            75.00
6339                                                                                            20.00
6340                                                                                            20.00
6341                                                                                                1
6342                                                                                                1
6343                                                                                                1
6344                                                                                            50.00
6345                                                                                             2.60
6346                                                                                           100.00
6347                                                                                           200.00
6348                                                                                           375.00
6349                                                                                            50.00
6350                                                                                             0.57
6351                                                                                             2.60
6352                                                                                           100.00
6353                                                                                           272.00
6354                                                                                             66.5
6355                                                                                           500.00
6356                                                                                            50.00
6357                                                                                           150.00
6358                                                                                      unspecified
6359                                                                                           100.00
6360                                                                                           100.00
6361                                                                                           272.00
6362                                                                                             66.5
6363                                                                                           200.00
6364                                                                                           500.00
6365                                                                                           272.00
6366                                                                                             1.00
6367                                                                                             1.00
6368                                                                                          1000.00
6369                                                                                           272.00
6370                                                                                            75.00
6371                                                                                          1000.00
6372                                                                                            75.00
6373                                                                                          1000.00
6374                                                                                            75.00
6375                                                                                           200.00
6376                                                                                           170.00
6377                                                                                          1000.00
6378                                                                                           600.00
6379                                                                                           272.00
6380                                                                                          1000.00
6381                                                                                           272.00
6382                                                                                               90
6383                                                                                           272.00
6384                                                                                            23.00
6385                                                                                           150.00
6386                                                                                            60.00
6387                                                                                             1.00
6388                                                                                                1
6389                                                                                             7.00
6390                                                                                      unspecified
6391                                                                                           272.00
6392                                                                                           272.00
6393                                                                                           250.00
6394                                                                                            10.00
6395                                                                      based on weight (45-88 lbs)
6396                                                                                            50.00
6397                                                                                            50.00
6398                                                                                             3.00
6399                                                                                                8
6400                                                                                             1.00
6401                                                                                           272.00
6402                                                                                            15.00
6403                                                                                             1.00
6404                                                                                           272.00
6405                                                                      based on weight (44-88 lbs)
6406                                                                                  based on weight
6407                                                                                           272.00
6408                                                                                            68.00
6409                                                                                            12.00
6410                                                                                          1000.00
6411                                                                                     small amount
6412                                                                                         45577.00
6413                                                                                           272.00
6414                                                                                           136.00
6415                                                                                           272.00
6416                                                                                            80.00
6417                                                                                            12.00
6418                                                                                            50.00
6419                                                                                            50.00
6420                                                                                             6.00
6421                                                                                           300.00
6422                                                                                           200.00
6423                                                                                           600.00
6424                                                                                           272.00
6425                                                                                           900.00
6426                                                                                           750.00
6427                                                                                            16.00
6428                                                                                             1.00
6429                                                                                           600.00
6430                                                                                            50.00
6431                                                                                           250.00
6432                                                                                           600.00
6433                                                                                            50.00
6434                                                                                           600.00
6435                                                                                            50.00
6436                                                                                            75.00
6437                                                             272 ivermectin, 227 pyrantel pamoate
6438                                                                                          1000.00
6439                                                                                          1200.00
6440                                                                                             1.00
6441                                                                                       1200, 1500
6442                                                                                          1000.00
6443                                                                                              0.5
6444                                                                     based on weight (51-100 lbs)
6445                                                                                          1500.00
6446                                                                                             1.00
6447                                                                                           250.00
6448                                                                                           272.00
6449                                                                                           136.00
6450                                                                                            16.00
6451                                                                                      unspecified
6452                                                                                           250.00
6453                                                                                             3.00
6454                                                                                           272.00
6455                                                                                           136.00
6456                                                                                            16.00
6457                                                                                             3.00
6458                                                                                          1000.00
6459                                                                                       1200, 1500
6460                                                                                            16.00
6461                                                                                      unspecified
6462                                                                                            16.00
6463                                                                                           750.00
6464                                                                                            60.00
6465                                                                                           400.00
6466                                                                                             3.75
6467                                                                                            50.00
6468                                                                                           100.00
6469                                                                                           300.00
6470                                                                                           750.00
6471                                                                                            60.00
6472                                                                                             0.50
6473                                                                                           272.00
6474                                                                     based on weight (51-100 lbs)
6475                                                                      based on weight (44-88 lbs)
6476                                                                                            60.00
6477                                                                                            20.00
6478                                                                                           272.00
6479                                                                                          1400.00
6480                                                                                             0.50
6481                                                                                           160.00
6482                                                                                           272.00
6483                                                                                          1000.00
6484                                                                                          1400.00
6485                                                                                          1400.00
6486                                                         28.75 milbemycin oxime, 285 praziquantel
6487                                                                                           100.00
6488                                                                                           100.00
6489                                                                                          1400.00
6490                                                                                           100.00
6491                                                                                           136.00
6492                                                                                           272.00
6493                                                                                           136.00
6494                                                                                            50.00
6495                                                                                                 
6496                                                                                           272.00
6497                                                                                                1
6498                                                                                                8
6499                                                                     based on weight (51-100 lbs)
6500                                                                      based on weight (44-88 lbs)
6501                                                                                           300.00
6502                                                                                            50.00
6503                                                                                            90.00
6504                                                                                            90.00
6505                                                                                           250.00
6506                                                                                           250.00
6507                                                                                           250.00
6508                                                                                           500.00
6509                                                                                             0.40
6510                                                                                           409.80
6511                                                                                             9.80
6512                                                                                             0.40
6513                                                                                           409.80
6514                                                                                             9.80
6515                                                                                             0.40
6516                                                                                           409.80
6517                                                                                             9.80
6518                                                                                            23.00
6519                                                                                             5.00
6520                                                                                           500.00
6521                                                                                            20.00
6522                                                                     based on weight (51-100 lbs)
6523                                                                    based on weight (24.1-60 lbs)
6524                                                                                             0.40
6525                                                                                            10.00
6526                                                                                           750.00
6527                                                                     based on weight (51-100 lbs)
6528                                                                    based on weight (24.1-60 lbs)
6529                                                                                             0.50
6530                                                                                            10.00
6531                                                                                           150.00
6532                                                                                            10.00
6533                                                                                             0.50
6534                                                                                            10.70
6535                                                                                            10.00
6536                                                                                            10.00
6537                                                                                             0.50
6538                                                                                            10.00
6539                                                                                             0.50
6540                                                                                             2.40
6541                                                                                             0.50
6542                                                                                            10.00
6543                                                                                             1.00
6544                                                                                           200.00
6545                                                                                            50.00
6546                                                                                             5.00
6547                                                                                           200.00
6548                                                                                          1000.00
6549                                                                                            30.00
6550                                                                                             3.00
6551                                                                                            24.00
6552                                                                                           500.00
6553                                                                                           460.00
6554                                                                                            68.00
6555                                                                     based on weight (51-100 lbs)
6556                                                                                           250.00
6557                                                                                             6.00
6558                                                                                            23.00
6559                                                                                           250.00
6560                                                                                           150.00
6561                                                                                           250.00
6562                                                                                  moderate amount
6563                                                                                            13.50
6564                                                                                           810.00
6565                                                                                                1
6566                                                                                           272.00
6567                                                                                           272.00
6568                                                                                           272.00
6569                                                                     based on weight (51-100 lbs)
6570                                                                      based on weight (44-88 lbs)
6571                                                                                      unspecified
6572                                                                                           272.00
6573                                                                      based on weight (45-88 lbs)
6574                                                                                           600.00
6575                                                                                           227.00
6576                                                                                            68.00
6577                                                                                            60.00
6578                                                                                           200.00
6579                                                                                  based on weight
6580                                                                                           136.00
6581                                                             272 ivermectin, 227 pyrantel pamoate
6582                                                                                           272.00
6583                                                                                           227.00
6584                                                                                            23.00
6585                                                                                           200.00
6586                                                                                            23.00
6587                                                                                           200.00
6588                                                                                           200.00
6589                                                                                            23.00
6590                                                                                           200.00
6591                                                                                            20.00
6592                                                                                           200.00
6593                                                                                            20.00
6594                                                                     based on weight (51-100 lbs)
6595                                                                                           375.00
6596                                                                                           100.00
6597                                                                                           200.00
6598                                                                                            75.00
6599                                                                                            75.00
6600                                                                                           200.00
6601                                                                                            50.00
6602                                                                     based on weight (51-100 lbs)
6603                                                                                          1000.00
6604                                                                                            15.00
6605                                                                                           750.00
6606                                                             272 ivermectin, 227 pyrantel pamoate
6607                                                                                           100.00
6608                                                                                           499.00
6609                                                                                           500.00
6610                                                                                           227.00
6611                                                                                           272.00
6612                                                                   based on weight (50.1-100 lbs)
6613                                                                                            75.00
6614                                                                                           300.00
6615                                                                                           100.00
6616                                                                                          1000.00
6617                                                                                           375.00
6618                                                                                            75.00
6619                                                                                            20.00
6620                                                                                            75.00
6621                                                                                          1000.00
6622                                                                                          1000.00
6623                                                                                            20.00
6624                                                                                            20.00
6625                                                                     based on weight (51-100 lbs)
6626                                                                                            20.00
6627                                                                                            10.00
6628                                                                                            20.00
6629                                                                                           500.00
6630                                                                                            75.00
6631                                                                                            70.00
6632                                                                                            70.00
6633                                                                                             1.00
6634                                                                                           500.00
6635                                                                                             1.00
6636                                                                     based on weight (50-100 lbs)
6637                                                                                           113.50
6638                                                                                           500.00
6639                                                                                             75.5
6640                                                                                           100.00
6641                                                                                           500.00
6642                                                                                           500.00
6643                                                                                             3.00
6644                                                                     based on weight (51-100 lbs)
6645                                                                                             1.00
6646                                                                                             1.00
6647                                                                     based on weight (51-100 lbs)
6648                                                                      based on weight (44-88 lbs)
6649                                                                                             0.03
6650                                                                                      application
6651                                                                                           500.00
6652                                                                                            23.00
6653                                                                                           600.00
6654                                                                                           228.00
6655                                                                                           272.00
6656                                                                                           375.00
6657                                                                                                1
6658                                                                                  based on weight
6659                                                                                           750.00
6660                                                                                            68.00
6661                                                                                            50.00
6662                                                                                      unspecified
6663                                                                     based on weight (51-100 lbs)
6664                                                                                           272.00
6665                                                                                             1.00
6666                                                                                            45.00
6667                                                                                            10.00
6668                                                                                           272.00
6669                                                                                           227.00
6670                                                                                             1.00
6671                                                                                           125.00
6672                                                                                           500.00
6673                                                                                            50.00
6674                                                                                             12.5
6675                                                                                               38
6676                                                                                               75
6677                                                                                            75.00
6678                                                                                            60.00
6679                                                                                            50.00
6680                                                                                      unspecified
6681                                                                                           125.00
6682                                                                                            37.50
6683                                                                                     small amount
6684                                                                                           250.00
6685                                                                                          1200.00
6686                                                                                             1.00
6687                                                                                      unspecified
6688                                                                                      unspecified
6689                                                                                           136.00
6690                                                                                            12.00
6691                                                                                            50.00
6692                                                                                           500.00
6693                                                                                                1
6694                                                                         2 tablets/pills/capsules
6695                                                                                            32.00
6696                                                                                  based on weight
6697                                                                         based on weight (58 lbs)
6698                                                                                      unspecified
6699                                                                                          1200.00
6700                                                                                           450.00
6701                                                                                           150.00
6702                                                                                      unspecified
6703                                                                                  based on weight
6704                                                                                           450.00
6705                                                                                            10.00
6706                                                                                             1.00
6707                                                                                           100.00
6708                                                                                           100.00
6709                                                                                             5.00
6710                                                                                             1.70
6711                                                                                             1.70
6712                                                                                             1.10
6713                                                                                           375.00
6714                                                                                              7.5
6715                                                                      based on weight (26-50 lbs)
6716                                                                                      unspecified
6717                                                                                      unspecified
6718                                                                                             3.80
6719                                                                                             2.50
6720                                                                                             0.55
6721                                                                                           500.00
6722                                                                                           500.00
6723                                                                                           100.00
6724                                                                                            40.00
6725                                                                                            50.00
6726                                                                                             1.00
6727                                                                                             1.00
6728                                                                                           272.00
6729                                                                                           100.00
6730                                                                                           150.00
6731                                                                                           272.00
6732                                                                                            40.00
6733                                                             272 ivermectin, 227 pyrantel pamoate
6734                                                                                           227.00
6735                                                                                           340.00
6736                                                                                           200.00
6737                                                                                            32.00
6738                                                                                             0.40
6739                                                                                              125
6740                                                                                           300.00
6741                                                                                             0.40
6742                                                                                            16.00
6743                                                                                           600.00
6744                                                                                           200.00
6745                                                                                           100.00
6746                                                                                           750.00
6747                                                                                           600.00
6748                                                                                             0.40
6749                                                                                            16.00
6750                                                                                           200.00
6751                                                                                      unspecified
6752                                                                                           100.00
6753                                                                                           200.00
6754                                                                                           600.00
6755                                                                                             0.40
6756                                                                                           100.00
6757                                                                                           272.00
6758                                                                                           500.00
6759                                                                                      application
6760                                                                                      unspecified
6761                                                                                           272.00
6762                                                                                            10.20
6763                                                                     based on weight (51-100 lbs)
6764                                                                      based on weight (44-88 lbs)
6765                                                                                            16.00
6766                                                                                            20.00
6767                                                                                             8.00
6768                                                                                           500.00
6769                                                                                           600.00
6770                                                                                             1.00
6771                                                                                             3.00
6772                                                                                           250.00
6773                                                                                           125.00
6774                                                                                             1.00
6775                                                                                             1.00
6776                                                                                             1.00
6777                                                                                            50.00
6778                                                                     based on weight (51-100 lbs)
6779                                                                     based on weight (51-100 lbs)
6780                                                                                           116.00
6781                                                                     based on weight (51-100 lbs)
6782                                                                                           227.00
6783                                                                   based on weight (50.1-100 lbs)
6784                                                                                           136.00
6785                                                                                           272.00
6786                                                                        based on weight (55+ lbs)
6787                                                                                           272.00
6788                                                                                            68.00
6789                                                                                              272
6790                                                                                          1000.00
6791                                                                                          1000.00
6792                                                                                           272.00
6793                                                                                          1000.00
6794                                                                                            50.00
6795                                                                                            50.00
6796                                                                     based on weight (51-100 lbs)
6797                                                                                          23, 228
6798                                                                                           500.00
6799                                                                                           100.00
6800                                                                                             0.70
6801                                                                                            75.00
6802                                                                                             0.30
6803                                                                                            75.00
6804                                                                                             1.00
6805                                                                                            16.00
6806                                                                                           500.00
6807                                                                                           272.00
6808                                                                                            16.00
6809                                                                                            16.00
6810                                                                                            75.00
6811                                                                                           200.00
6812                                                                                            60.00
6813                                                                                            16.00
6814                                                                                           100.00
6815                                                                     based on weight (51-100 lbs)
6816                                                                                  0.25 inch strip
6817                                                                                  0.25 inch strip
6818                                                                                              6.5
6819                                                                                             8.00
6820                                                                                             2.00
6821                                                                                           500.00
6822                                                                                           100.00
6823                                                                                           625.00
6824                                                                                      unspecified
6825                                                                                           100.00
6826                                                                                      unspecified
6827                                                                                           100.00
6828                                                                     based on weight (51-100 lbs)
6829                                                                                            20.00
6830                                                                                            25.00
6831                                                                                             8.00
6832                                                                                          1000.00
6833                                                                                             8.00
6834                                                                                            10.00
6835                                                                                            10.00
6836                                                                                            10.00
6837                                                                                             1.00
6838                                                                                           272.00
6839                                                                                               75
6840                                                                                            16.00
6841                                                                                            23.00
6842                                                                                            23.00
6843                                                                                            23.00
6844                                                                                           200.00
6845                                                                                           100.00
6846                                                                                            23.00
6847                                                                                           125.00
6848                                                                                            24.00
6849                                                                                           136.00
6850                                                                                            50.00
6851                                                                                            75.00
6852                                                                                           250.00
6853                                                                                             5.00
6854                                                                                             66.5
6855                                                                                           272.00
6856                                                                                            60.00
6857                                                                                             1.00
6858                                                                                            50.00
6859                                                                                             1.00
6860                                                                                             0.07
6861                                                                                             1.22
6862                                                                                             1.00
6863                                                                                             1.00
6864                                                                                                1
6865                                                                                             0.66
6866                                                                                             0.66
6867                                                                                            88.00
6868                                                                                      as directed
6869                                                                                             1.00
6870                                                                                             1.00
6871                                                                                           200.00
6872                                                                                            10.00
6873                                                                                             1.00
6874                                                                                           200.00
6875                                                                                           272.00
6876                                                                                             1.00
6877                                                                                             0.66
6878                                                                                             0.66
6879                                                                                            88.00
6880                                                                                      as directed
6881                                                                                             1.00
6882                                                                                            60.00
6883                                                                                             2.00
6884                                                                                             0.97
6885                                                                                            50.00
6886                                                                                      application
6887                                                                                           272.00
6888                                                                                             1.00
6889                                                                                           200.00
6890                                                                                           272.00
6891                                                                                      application
6892                                                                                     small amount
6893                                                                                            50.00
6894                                                                                            20.00
6895                                                                                           500.00
6896                                                                                            20.00
6897                                                                                           272.00
6898                                                                                             66.5
6899                                                                                             2.00
6900                                                                                           500.00
6901                                                                                            24.00
6902                                                                                           250.00
6903                                                                                             1.00
6904                                                                                           375.00
6905                                                                                            15.00
6906                                                                                              272
6907                                                                                          1000.00
6908                                                                                                1
6909                                                                                                1
6910                                                                     based on weight (50-100 lbs)
6911                                                                                           100.00
6912                                                                                           750.00
6913                                                                                           500.00
6914                                                                                          1000.00
6915                                                                                             0.80
6916                                                                                           340.00
6917                                                                                           100.00
6918                                                                                           260.00
6919                                                                                           272.00
6920                                                                                            68.00
6921                                                                                             0.80
6922                                                                                             0.80
6923                                                                                             0.80
6924                                                                                           260.00
6925                                                                                            24.00
6926                                                                                            40.00
6927                                                                                             0.80
6928                                                                                      application
6929                                                                                           500.00
6930                                                                                           360.00
6931                                                                                             9.00
6932                                                                                          1000.00
6933                                                                                           408.00
6934                                                                                     small amount
6935                                                                                      unspecified
6936                                                                                     small amount
6937                                                                                           500.00
6938                                                                                               90
6939                                                                                          1000.00
6940                                                                                            19.80
6941                                                                                           100.00
6942                                                                                          1620.00
6943                                                                                            38.70
6944                                                                                          1000.00
6945                                                                                           100.00
6946                                                                                         27, 1620
6947                                                                                          1000.00
6948                                                                                           100.00
6949                                                                                            75.00
6950                                                                                           100.00
6951                                                                                          1000.00
6952                                                                                            16.00
6953                                                                                           500.00
6954                                                                                          1620.00
6955                                                                                          1000.00
6956                                                                                      unspecified
6957                                                                                      unspecified
6958                                                                                           300.00
6959                                                                                           200.00
6960                                                                                            75.00
6961                                                                                           272.00
6962                                                                                           562.50
6963                                                                                             1.00
6964                                                                                            80.00
6965                                                                                           200.00
6966                                                                                           200.00
6967                                                                                             4.30
6968                                                                                             1.30
6969                                                                                           100.00
6970                                                                                             1.00
6971                                                                                             1.00
6972                                                                                             1.00
6973                                                                                           200.00
6974                                                                                             1.30
6975                                                                                             1.00
6976                                                                                           100.00
6977                                                                                           100.00
6978                                                                                            20.00
6979                                                                                           500.00
6980                                                                                           240.00
6981                                                                      based on weight (44-88 lbs)
6982                                                                     based on weight (51-100 lbs)
6983                                                                     based on weight (55-100 lbs)
6984                                                                                                1
6985                                                                                           272.00
6986                                                                                      unspecified
6987                                                                                            50.00
6988                                                                                           300.00
6989                                                                                            50.00
6990                                                                                             2.00
6991                                                                                             2.00
6992                                                                                             62.5
6993                                                                                           200.00
6994                                                                                            16.00
6995                                                                                             62.5
6996                                                                                            16.00
6997                                                                                            16.00
6998                                                                                             62.5
6999                                                                                                1
7000                                                                                           240.00
7001                                                                                            16.00
7002                                                               27 milbemycin oxime, 1620 spinosad
7003                                                                                            16.00
7004                                                                                            16.00
7005                                                                                      unspecified
7006                                                                                      unspecified
7007                                                                                            50.00
7008                                                                                             1.70
7009                                                                                            40.00
7010                                                                                           120.00
7011                                                                                             1.70
7012                                                                                             1.70
7013                                                                                               20
7014                                                                                            20.00
7015                                                                                             1.60
7016                                                                                             5.00
7017                                                                      based on weight (44-88 lbs)
7018                                                                                               30
7019                                                                                              500
7020                                                                                            20.00
7021                                                                      based on weight (44-88 lbs)
7022                                                                                           150.00
7023                                                                                              1.6
7024                                                                                            20.00
7025                                                                                      unspecified
7026                                                                                            50.00
7027                                                                                  0.25 inch strip
7028                                                                                             0.50
7029                                                                                             0.50
7030                                                                                                1
7031                                                                                             0.50
7032                                                                                           500.00
7033                                                                                            22.70
7034                                                                                           100.00
7035                                                                                           500.00
7036                                                                                             0.50
7037                                                                                           100.00
7038                                                                                           500.00
7039                                                                                           500.00
7040                                                                                           100.00
7041                                                                                           500.00
7042                                                                                     small amount
7043                                                                                             2.00
7044                                                                                             1.00
7045                                                                                           500.00
7046                                                                                             5.00
7047                                                                                              272
7048                                                                                           272.00
7049                                                                                           272.00
7050                                                                                           272.00
7051                                                                                           272.00
7052                                                                                           136.00
7053                                                                                              272
7054                                                             272 ivermectin, 227 pyrantel pamoate
7055                                                                                           500.00
7056                                                                                            75.00
7057                                                                                            75.00
7058                                                                                             1.75
7059                                                                                           200.00
7060                                                                                            30.00
7061                                                                                           100.00
7062                                                                                           500.00
7063                                                                                           114.00
7064                                                                                               38
7065                                                                                               75
7066                                                                                             1.00
7067                                                                                                1
7068                                                                                             1.00
7069                                                                                           500.00
7070                                                                                           100.00
7071                                                                                      unspecified
7072                                                                                            75.00
7073                                                                                             8.00
7074                                                                                             1.00
7075                                                                                            20.00
7076                                                                                             2.00
7077                                                                                           272.00
7078                                                                                           272.00
7079                                                                                           136.00
7080                                                                                           272.00
7081                                                                                           136.00
7082                                                                                           272.00
7083                                                                                           136.00
7084                                                                                            23.00
7085                                                                                           120.00
7086                                                                                            25.00
7087                                                                                           120.00
7088                                                                                             1.00
7089                                                                                            50.00
7090                                                                                           200.00
7091                                                                                           500.00
7092                                                                                                 
7093                                                                     based on weight (60-120 lbs)
7094                                                                                            60.00
7095                                                                                         27, 1620
7096                                                                                         27, 1620
7097                                                                                          1620.00
7098                                                                                           136.00
7099                                                                                            15.00
7100                                                                                          1620.00
7101                                                                                          1620.00
7102                                                                                          1620.00
7103                                                                                            60.00
7104                                                                                             3.00
7105                                                                                           136.00
7106                                                                                           272.00
7107                                                                                           272.00
7108                                                                                           272.00
7109                                                                                           272.00
7110                                                                                           272.00
7111                                                                                           272.00
7112                                                                                           136.00
7113                                                                                             0.70
7114                                                                                           500.00
7115                                                                                           300.00
7116                                                                                      unspecified
7117                                                                                            50.00
7118                                                                                           200.00
7119                                                                                           300.00
7120                                                                                            80.00
7121                                                                                            60.00
7122                                                                                             3.00
7123                                                                                            75.00
7124                                                                                            10.00
7125                                                                                            10.00
7126                                                                                            10.00
7127                                                                                      unspecified
7128                                                                                           810.00
7129                                                                                            13.50
7130                                                                                         27, 1620
7131                                                                                         272, 228
7132                                                                                           272.00
7133                                                                                            25.00
7134                                                                                            50.00
7135                                                                                           272.00
7136                                                                                           272.00
7137                                                                                  based on weight
7138                                                                                           272.00
7139                                                                                           272.00
7140                                                                                           272.00
7141                                                                                             1.00
7142                                                                                             1.00
7143                                                                                             2.00
7144                                                                                           200.00
7145                                                                                            30.00
7146                                                                                             1.00
7147                                                                                           750.00
7148                                                                                            75.00
7149                                                                     based on weight (60-120 lbs)
7150                                                                                          1000.00
7151                                                                                     small amount
7152                                                                                   1 pack/package
7153                                                                                     small amount
7154                                                                                     small amount
7155                                                                                     small amount
7156                                                                                             5.00
7157                                                                                            75.00
7158                                                                                           204.00
7159                                                                                          1000.00
7160                                                                                             1.00
7161                                                                                             1.00
7162                                                                                             1.00
7163                                                                                             1.00
7164                                                                                             1.00
7165                                                                                             1.00
7166                                                                                             1.00
7167                                                                                             1.00
7168                                                                                             1.00
7169                                                                                            75.00
7170                                                                                           500.00
7171                                                                                           500.00
7172                                                                                           powder
7173                                                                                         wipe/pad
7174                                                                                           100.00
7175                                                                                      application
7176                                                                                           300.00
7177                                                                                                 
7178                                                                                          1620.00
7179                                                                                             1.00
7180                                                                                                 
7181                                                                                           204.00
7182                                                                                           500.00
7183                                                                                             5.00
7184                                                                                             5.00
7185                                                                                           204.00
7186                                                                                           500.00
7187                                                                                          2000.00
7188                                                                                            10.00
7189                                                                                      unspecified
7190                                                                                           375.00
7191                                                                                            60.00
7192                                                                                           300.00
7193                                                                                           100.00
7194                                                                                            75.00
7195                                                                                           300.00
7196                                                                                           500.00
7197                                                                                             1.00
7198                                                                                             8.00
7199                                                                                             4.00
7200                                                                                            75.00
7201                                                                                            10.00
7202                                                                                             1.00
7203                                                                                             1.00
7204                                                                                             1.00
7205                                                                                             3.40
7206                                                                                           500.00
7207                                                                                            60.00
7208                                                                                  0.25 inch strip
7209                                                                                            60.00
7210                                                                                            20.00
7211                                                                                            50.00
7212                                                                                             1.00
7213                                                                                             3.37
7214                                                                                             2.50
7215                                                                                             1.92
7216                                                                                           200.00
7217                                                                                          1620.00
7218                                                               27 milbemycin oxime, 1620 spinosad
7219                                                                                               90
7220                                                                                          1620.00
7221                                                                                             1.00
7222                                                                                            10.00
7223                                                                                           500.00
7224                                                                                             1.00
7225                                                                                            50.00
7226                                                                                           200.00
7227                                                                                             1.00
7228                                                                                            50.00
7229                                                                                           200.00
7230                                                                                           300.00
7231                                                                                          1000.00
7232                                                                                             8.00
7233                                                                                            75.00
7234                                                                                            20.00
7235                                                                                            20.00
7236                                                                                           125.00
7237                                                                                            50.00
7238                                                                                           500.00
7239                                                                                            50.00
7240                                                                                                2
7241                                                                                           227.00
7242                                                                                            50.00
7243                                                             272 ivermectin, 227 pyrantel pamoate
7244                                                                                            68.00
7245                                                                                           272.00
7246                                                                                            68.00
7247                                                                                  based on weight
7248                                                                    based on weight (21.1-60 lbs)
7249                                                                     based on weight (50-110 lbs)
7250                                                                                             2.00
7251                                                                                           272.00
7252                                                                                             1.00
7253                                                                                           272.00
7254                                                                                           272.00
7255                                                                                            40.00
7256                                                                                           500.00
7257                                                                                           272.00
7258                                                                                           272.00
7259                                                                                           272.00
7260                                                        64000 amylase, 9000 lipase, 5700 protease
7261                                                                                                1
7262                                                                         5 tablets/pills/capsules
7263                                                                                             0.80
7264                                                                                             1.00
7265                                                                                             4.00
7266                                                                                             0.70
7267                                                                                             2.00
7268                                                                                             1.00
7269                                                                                             1.00
7270                                                                                             1.00
7271                                                                                             1.00
7272                                                                                             1.00
7273                                                                                             4.00
7274                                                                                             1.00
7275                                                                                             1.00
7276                                                                                             2.50
7277                                                                                           500.00
7278                                                                                             5.00
7279                                                                                            10.00
7280                                                                                           272.00
7281                                                                                             1.70
7282                                                                                           340.50
7283                                                                                            75.00
7284                                                                                             1.90
7285                                                                                              300
7286                                                                                               75
7287                                                                                            75.00
7288                                                                                           300.00
7289                                                                                            16.00
7290                                                                                             1.90
7291                                                                      based on weight (44-88 lbs)
7292                                                                                           500.00
7293                                                                                             1.00
7294                                                                                               16
7295                                                                      based on weight (44-88 lbs)
7296                                                                                           500.00
7297                                                                                      unspecified
7298                                                                                           227.00
7299                                                                                            20.00
7300                                                                                           272.00
7301                                                                                           250.00
7302                                                                                            50.00
7303                                                                                           227.00
7304                                                                                          1000.00
7305                                                                                            12.00
7306                                                                                             8.00
7307                                                                                            40.00
7308                                                                                           200.00
7309                                                                                            16.00
7310                                                                                            16.00
7311                                                                                           476.00
7312                                                                                            16.00
7313                                                                                           250.00
7314                                                                                            50.00
7315                                                                                            50.00
7316                                                                                            50.00
7317                                                                                           272.00
7318                                                                                           500.00
7319                                                                                           100.00
7320                                                                     based on weight (51-100 lbs)
7321                                                                                          1125.00
7322                                                                                           500.00
7323                                                                                            50.00
7324                                                                                           375.00
7325                                                                                             1.00
7326                                                                                           200.00
7327                                                                                             0.61
7328                                                                                             0.50
7329                                                                                             0.63
7330                                                                                             0.64
7331                                                                                           300.00
7332                                                                                           150.00
7333                                                                                            10.00
7334                                                                                            10.00
7335                                                                                             5.00
7336                                                                                            50.00
7337                                                                                             1.00
7338                                                                                             1.00
7339                                                                                             1.00
7340                                                                                             1.00
7341                                                                                             1.00
7342                                                                      based on weight (45-88 lbs)
7343                                                                                             66.5
7344                                                                                      unspecified
7345                                                                                      unspecified
7346                                                                      based on weight (45-88 lbs)
7347                                                                                            50.00
7348                                                                                            60.00
7349                                                                                           100.00
7350                                                                                           500.00
7351                                                                                             7.00
7352                                                                                             1.00
7353                                                                                            75.00
7354                                                                                           100.00
7355                                                                                             7.50
7356                                                                                            70.00
7357                                                                                           272.00
7358                                                                                           250.00
7359                                                                                           500.00
7360                                                                                           725.00
7361                                                                                           500.00
7362                                                                                            50.00
7363                                                                                           500.00
7364                                                                                             6.00
7365                                                                                             6.00
7366                                                                                            20.00
7367                                                                                           200.00
7368                                                                                             6.00
7369                                                                                            75.00
7370                                                                                            75.00
7371                                                                                     small amount
7372                                                                                             1.00
7373                                                                                           252.00
7374                                                                                           500.00
7375                                                                                            75.00
7376                                                                                            23.00
7377                                                                                             1.60
7378                                                                                             9.60
7379                                                                                            70.35
7380                                                                                             1.00
7381                                                                                            75.00
7382                                                                                           272.00
7383                                                                                           200.00
7384                                                                                            75.00
7385                                                                                            72.90
7386                                                                                             1.00
7387                                                                                            60.00
7388                                                                                           272.00
7389                                                                                           500.00
7390                                                                                           200.00
7391                                                                                             1.58
7392                                                                                            15.00
7393                                                                                             9.45
7394                                                                                           107.50
7395                                                                                           750.00
7396                                                                                             2.00
7397                                                                                           272.00
7398                                                                                           200.00
7399                                                                                         10000.00
7400                                                                                            40.00
7401                                                                                            60.00
7402                                                                                           750.00
7403                                                                                             0.71
7404                                                                                            30.00
7405                                                                                             0.70
7406                                                                                            20.00
7407                                                                                            30.20
7408                                                                                             3.20
7409                                                                                            64.00
7410                                                                                            60.00
7411                                                                                           750.00
7412                                                                                             1.00
7413                                                                     based on weight (51-100 lbs)
7414                                                                                           200.00
7415                                                                                           750.00
7416                                                                                         10000.00
7417                                                                                            40.00
7418                                                                                             0.71
7419                                                                                           250.00
7420                                                                                            30.20
7421                                                                                             3.20
7422                                                                                            64.00
7423                                                                                            60.00
7424                                                                                           200.00
7425                                                                                           180.00
7426                                                                                              315
7427                                                                                            60.00
7428                                                                                            30.00
7429                                                                                          1000.00
7430                                                                                            15.00
7431                                                                                            15.00
7432                                                                                               75
7433                                                                                            15.00
7434                                                                                            15.00
7435                                                                                            15.00
7436                                                                                            90.00
7437                                                                                            60.00
7438                                                                                            30.00
7439                                                                                            30.00
7440                                                                                             2.00
7441                                                                                           450.00
7442                                                                                            50.00
7443                                                                                            50.00
7444                                                                                             2.00
7445                                                                                           300.00
7446                                                                                           660.00
7447                                                                                           120.00
7448                                                                                           150.00
7449                                                                                           850.00
7450                                                                                             1.00
7451                                                                                           500.00
7452                                                                                           200.00
7453                                                                                            23.00
7454                                                                                          1000.00
7455                                                                                            75.00
7456                                                                                           200.00
7457                                                                                           200.00
7458                                                                                           200.00
7459                                                                                           200.00
7460                                                                                           200.00
7461                                                                                            75.00
7462                                                                                            75.00
7463                                                                                           200.00
7464                                                                                           200.00
7465                                                                                             6.00
7466                                                                                            75.00
7467                                                                                            10.00
7468                                                                                            80.00
7469                                                                                            20.00
7470                                                                                           250.00
7471                                                                                            23.00
7472                                                                                           500.00
7473                                                                                            23.00
7474                                                                                            23.00
7475                                                                                             1.00
7476                                                                                            23.00
7477                                                                                            23.00
7478                                                                                            23.00
7479                                                                                         45293.00
7480                                                                                            75.00
7481                                                                                           150.00
7482                                                                                           300.00
7483                                                                                            75.00
7484                                                                                           325.00
7485                                                                                           325.00
7486                                                                                            10.00
7487                                                                                            10.00
7488                                                                                           125.00
7489                                                                                            50.00
7490                                                                                            50.00
7491                                                                                           500.00
7492                                                                                           375.00
7493                                                                                           100.00
7494                                                                                           300.00
7495                                                                                           272.00
7496                                                                                           227.00
7497                                                                                           200.00
7498                                                                                            50.00
7499                                                             272 ivermectin, 227 pyrantel pamoate
7500                                                                                            68.00
7501                                                                                           272.00
7502                                                                                            68.00
7503                                                                                  based on weight
7504                                                                                           250.00
7505                                                                                            75.00
7506                                                                                           500.00
7507                                                                                           272.00
7508                                                                                           228.00
7509                                                                                           228.00
7510                                                                                                1
7511                                                                                                1
7512                                                                                                1
7513                                                                              tablet/pill/capsule
7514                                                                                            50.00
7515                                                                                             1.00
7516                                                                                             1.00
7517                                                                                          1000.00
7518                                                                                          1000.00
7519                                                             272 ivermectin, 227 pyrantel pamoate
7520                                                                                           136.00
7521                                                             272 ivermectin, 227 pyrantel pamoate
7522                                                                                              136
7523                                                                                             1000
7524                                                                                      unspecified
7525                                                             272 ivermectin, 227 pyrantel pamoate
7526                                                                                              136
7527                                                                                          1000.00
7528                                                                                           500.00
7529                                                                                             8.00
7530                                                                                             1.50
7531                                                                                             1.00
7532                                                                                            12.50
7533                                                                                            50.00
7534                                                                                           500.00
7535                                                                                           250.00
7536                                                                                             0.25
7537                                                                                             3.00
7538                                                                                             1.20
7539                                                                                             1.50
7540                                                                                             1.30
7541                                                                                             0.20
7542                                                                                            50.00
7543                                                                                            12.50
7544                                                                                           250.00
7545                                                                                           500.00
7546                                                                                            50.00
7547                                                                                            12.50
7548                                                                                            60.00
7549                                                                                            50.00
7550                                                                                          1000.00
7551                                                                                                1
7552                                                                                           200.00
7553                                                                                            75.00
7554                                                                                             3.50
7555                                                                     based on weight (88-123 lbs)
7556                                                                                          1000.00
7557                                                                                           170.00
7558                                                                                            51.00
7559                                                                                            55.00
7560                                                                                             2.00
7561                                                                                           100.00
7562                                                                                            10.00
7563                                                                     based on weight (51-100 lbs)
7564                                                                                      unspecified
7565                                                                     based on weight (51-100 lbs)
7566                                                                     based on weight (51-100 lbs)
7567                                                                                           170.00
7568                                                                                            312.5
7569                                                                                           300.00
7570                                                                                            32.00
7571                                                                                             1.00
7572                                                                                           227.00
7573                                                                                            10.00
7574                                                                                           170.00
7575                                                                                           272.00
7576                                                                                    1 bottle/vial
7577                                                               460 lufenuron, 23 milbemycin oxime
7578                                                                                                1
7579                                                                                                1
7580                                                                          0.5 tablet/pill/capsule
7581                                                                                           460.00
7582                                                                                           460.00
7583                                                                     based on weight (51-100 lbs)
7584                                                                                  based on weight
7585                                                                                      unspecified
7586                                                                                      unspecified
7587                                                                                      unspecified
7588                                                                                      unspecified
7589                                                                                      unspecified
7590                                                                                      unspecified
7591                                                                                            15.00
7592                                                                                          1200.00
7593                                                                                             1.00
7594                                                                                           750.00
7595                                                                                           350.00
7596                                                                                             2.00
7597                                                                                           200.00
7598                                                                                       1 wipe/pad
7599                                                                                             2.00
7600                                                                                             1.00
7601                                                                                             1.00
7602                                                                                             1.00
7603                                                                                             1.00
7604                                                                                           750.00
7605                                                                                             1.00
7606                                                                                             1.00
7607                                                                                             1.00
7608                                                                                             2.00
7609                                                                                             8.00
7610                                                                                             1.00
7611                                                                                             1.00
7612                                                                                             1.00
7613                                                                                             1.00
7614                                                                                             1.00
7615                                                                                             1.00
7616                                                                                             1.00
7617                                                                                             1.00
7618                                                                                             1.00
7619                                                                                             2.00
7620                                                                                           225.00
7621                                                                                           375.00
7622                                                                                             2.00
7623                                                                                             2.00
7624                                                                                             2.00
7625                                                                                             0.50
7626                                                                                             2.00
7627                                                                                             1.00
7628                                                                                             1.00
7629                                                                                             1.00
7630                                                                                             1.00
7631                                                                                             1.00
7632                                                                                             2.00
7633                                                                                             1.00
7634                                                                                             2.00
7635                                                                                         10 , 100
7636                                                                                              150
7637                                                                                               50
7638                                                                                             2.00
7639                                                                                             1.00
7640                                                                                             1.00
7641                                                                                           500.00
7642                                                                                             1.00
7643                                                                                             0.50
7644                                                                                             1.00
7645                                                                                             1.00
7646                                                                                             0.25
7647                                                                                             1.00
7648                                                                                           550.00
7649                                                                                          2600.00
7650                                                                                           500.00
7651                                                                                             1.00
7652                                                                                             1.00
7653                                                                                             1.00
7654                                                                                             1.00
7655                                                                                             2.00
7656                                                                                             2.00
7657                                                                                             0.25
7658                                                                                             0.25
7659                                                                                             0.50
7660                                                                     based on weight (51-100 lbs)
7661                                                                                           200.00
7662                                                                                            20.00
7663                                                                                             3.00
7664                                                                                           810.00
7665                                                                                           375.00
7666                                                                                           100.00
7667                                                                                            75.00
7668                                                                                           250.00
7669                                                                                           100.00
7670                                                                                            50.00
7671                                                                                          40, 200
7672                                                                                             0.45
7673                                                                                      unspecified
7674                                                                                      unspecified
7675                                                              13.5 milbemycin oxime, 810 spinosad
7676                                                                                           375.00
7677                                                                                             1.00
7678                                                                                  0.25 inch strip
7679                                                                                     small amount
7680                                                                                             1.00
7681                                                                      based on weight (40-60 lbs)
7682                                                                                               90
7683                                                                                               75
7684                                                                                               66
7685                                                                                           375.00
7686                                                                                            50.00
7687                                                                                            16.00
7688                                                                                             1.00
7689                                                                                             1.00
7690                                                                                            50.00
7691                                                                                           100.00
7692                                                                                         23 , 228
7693                                                                                          1000.00
7694                                                                                             3.00
7695                                                                                          1000.00
7696                                                                                          23, 228
7697                                                                                            50.00
7698                                                                                            40.00
7699                                                                                          23, 228
7700                                                                                            40.00
7701                                                                                          23, 228
7702                                                                                            16.00
7703                                                                                           100.00
7704                                                                                           150.00
7705                                                                                     small amount
7706                                                                                            50.00
7707                                                                                           200.00
7708                                                                                           130.00
7709                                                                                           750.00
7710                                                                                            50.00
7711                                                                                             6.00
7712                                                                                           200.00
7713                                                                                            16.00
7714                                                                                           200.00
7715                                                                                            15.00
7716                                                                                           200.00
7717                                                                                            16.00
7718                                                                                           130.00
7719                                                                                             1.00
7720                                                                                            15.00
7721                                                                                           200.00
7722                                                                                            10.40
7723                                                                                            65.00
7724                                                                                             5.00
7725                                                                                             8.00
7726                                                                                            50.00
7727                                                                                             1.00
7728                                                                                           200.00
7729                                                                                           300.00
7730                                                                                            75.00
7731                                                                                           200.00
7732                                                                                  based on weight
7733                                                                                           200.00
7734                                                                                             1.00
7735                                                                                             1.00
7736                                                                                             2.00
7737                                                                                           500.00
7738                                                                                           500.00
7739                                                                                           500.00
7740                                                                                           160.00
7741                                                                                           437.50
7742                                                                                      unspecified
7743                                                                      based on weight (44-88 lbs)
7744                                                                                             66.5
7745                                                                                               75
7746                                                                                  based on weight
7747                                                                      based on weight (44-88 lbs)
7748                                                                                      unspecified
7749                                                                     based on weight (51-100 lbs)
7750                                                                     based on weight (89-132 lbs)
7751                                                                                                 
7752                                                                                             1.00
7753                                                                                             1.00
7754                                                                    based on weight (61+ lbs) - 5
7755                                                                                           272.00
7756                                                                                             2.68
7757                                                                                            75.00
7758                                                                                            50.00
7759                                                                      based on weight (56-95 lbs)
7760                                                                                          4600.00
7761                                                                                            15.00
7762                                                                                          1500.00
7763                                                                     based on weight (51-100 lbs)
7764                                                                                             1.00
7765                                                                                             1.00
7766                                                                                             2.00
7767                                                                                             0.50
7768                                                                                             2.00
7769                                                                                             1.00
7770                                                                                             3.00
7771                                                                                          9000.00
7772                                                                                      unspecified
7773                                                                                             1.00
7774                                                                                            50.00
7775                                                                                             0.50
7776                                                                                      unspecified
7777                                                                                           720.00
7778                                                                                           100.00
7779                                                                                            23.00
7780                                                                                             1.00
7781                                                                                             1.00
7782                                                                                             1.00
7783                                                                         based on weight (54 lbs)
7784                                                                         based on weight (54 lbs)
7785                                                                                             1.00
7786                                                                                             1.00
7787                                                                                                1
7788                                                                                            23.00
7789                                                                                             1.00
7790                                                                                             1.00
7791                                                                                           272.00
7792                                                                                           240.00
7793                                                                                           187.50
7794                                                                                             1.25
7795                                                                      based on weight (60-90 lbs)
7796                                                                                            50.00
7797                                                                                            16.00
7798                                                                                           272.00
7799                                                                                           136.00
7800                                                                                            16.00
7801                                                                                           200.00
7802                                                                                           100.00
7803                                                                                            16.00
7804                                                                                           272.00
7805                                                                                           136.00
7806                                                                                            16.00
7807                                                                                           100.00
7808                                                                                           272.00
7809                                                                                           136.00
7810                                                                                            16.00
7811                                                                                             2.00
7812                                                                                      unspecified
7813                                                                                             1.00
7814                                                                                           200.00
7815                                                                                             1.00
7816                                                                                            75.00
7817                                                                                            20.00
7818                                                                                      unspecified
7819                                                                                           200.00
7820                                                                                      unspecified
7821                                                                                           200.00
7822                                                                                      unspecified
7823                                                                                            16.00
7824                                                                                           300.00
7825                                                                                             5.00
7826                                                                                             3.00
7827                                                                                            60.00
7828                                                                                            60.00
7829                                                                                             5.00
7830                                                                                           300.00
7831                                                                                           272.00
7832                                                                                      2.68of 9.7%
7833                                                                                         45451.00
7834                                                                                           272.00
7835                                                                                           600.00
7836                                                                                             1.00
7837                                                                                              100
7838                                                                                             1.00
7839                                                                                      application
7840                                                                                             37.5
7841                                                                                             1.00
7842                                                                                             1.00
7843                                                                                           300.00
7844                                                                                            75.00
7845                                                                                      unspecified
7846                                                                                      unspecified
7847                                                                                             1.00
7848                                                                                      unspecified
7849                                                                                           200.00
7850                                                                                           250.00
7851                                                                                           136.00
7852                                                                                      unspecified
7853                                                                                      unspecified
7854                                                                                      unspecified
7855                                                                                            20.00
7856                                                                                            10.00
7857                                                                                           500.00
7858                                                                                           375.00
7859                                                                                            75.00
7860                                                                                           375.00
7861                                                                                           500.00
7862                                                                       2-3 tablets/pills/capsules
7863                                                                                           468.75
7864                                                                                               75
7865                                                                                           272.00
7866                                                                                           500.00
7867                                                                                           272.00
7868                                                                                           272.00
7869                                                                                           272.00
7870                                                                                            75.00
7871                                                                                           500.00
7872                                                                                           200.00
7873                                                                                           272.00
7874                                                                                           272.00
7875                                                                                            20.00
7876                                                                                             2.65
7877                                                                                           240.00
7878                                                                                           272.00
7879                                                                                           126.00
7880                                                                                           272.00
7881                                                                                           136.00
7882                                                                                           375.00
7883                                                                                      unspecified
7884                                                                                      unspecified
7885                                                                                                1
7886                                                                                          1000.00
7887                                                                                      unspecified
7888                                                                                          1000.00
7889                                                                                      unspecified
7890                                                                                            90.00
7891                                                                                          1000.00
7892                                                                                            90.00
7893                                                                                             2.00
7894                                                                                           204.00
7895                                                                                      unspecified
7896                                                                                           500.00
7897                                                                                             8.00
7898                                                                                            20.00
7899                                                                                           200.00
7900                                                                                           500.00
7901                                                                                            20.00
7902                                                                                            10.00
7903                                                                                             1.00
7904                                                                                           750.00
7905                                                                                           750.00
7906                                                                                             4.00
7907                                                                                           750.00
7908                                                                                            50.00
7909                                                                                           200.00
7910                                                                                            50.00
7911                                                                                             8.00
7912                                                                                           136.00
7913                                                                                           750.00
7914                                                                                            12.00
7915                                                                                           300.00
7916                                                                                             8.00
7917                                                                                            50.00
7918                                                                                           100.00
7919                                                                                           200.00
7920                                                                                           500.00
7921                                                                                             8.00
7922                                                                                           500.00
7923                                                                                             5.00
7924                                                                                           175.00
7925                                                                                          1000.00
7926                                                                                     small amount
7927                                                                                            20.00
7928                                                                                          1250.00
7929                                                                                     small amount
7930                                                                                           227.00
7931                                                                                           450.00
7932                                                                                           120.00
7933                                                                                            25.00
7934                                                                                                4
7935                                                                                                2
7936                                                                                           272.00
7937                                                                                           200.00
7938                                                                                             6.00
7939                                                                                             5.00
7940                                                                                            25.00
7941                                                                                                1
7942                                                                                           200.00
7943                                                                                             5.00
7944                                                                                     small amount
7945                                                                                             0.70
7946                                                                                     small amount
7947                                                                                             4.00
7948                                                                                           272.00
7949                                                                                           272.00
7950                                                                                           272.00
7951                                                                                             2.00
7952                                                                                             1.50
7953                                                                                             4.00
7954                                                                                            25.00
7955                                                                                             0.75
7956                                                                                           272.00
7957                                                                                             4.00
7958                                                                                            25.00
7959                                                                                           400.00
7960                                                                                           100.00
7961                                                                                  0.25 inch strip
7962                                                                                           100.00
7963                                                                                             5.00
7964                                                                                             5.00
7965                                                                                             1.00
7966                                                                     based on weight (51-100 lbs)
7967                                                                     based on weight (60-121 lbs)
7968                                                                                  based on weight
7969                                                                                  based on weight
7970                                                                                        62.5, 250
7971                                                                                            63.00
7972                                                                                           500.00
7973                                                                                      unspecified
7974                                                                                            60.00
7975                                                                                            75.00
7976                                                                                            60.00
7977                                                                                           250.00
7978                                                                                           272.00
7979                                                                                             6.00
7980                                                                                           500.00
7981                                                                                            25.00
7982                                                                                           120.00
7983                                                                                            50.00
7984                                                                                           250.00
7985                                                                                           250.00
7986                                                                                             0.14
7987                                                                                         27, 1620
7988                                                                     based on weight (51-100 lbs)
7989                                                                                             1.50
7990                                                                                             0.50
7991                                                                                             1.00
7992                                                                                             1.00
7993                                                                      based on weight (40-85 lbs)
7994                                                                                           100.00
7995                                                                                       500 , 5 ml
7996                                                                                             3.00
7997                                                                                             1.00
7998                                                                     based on weight (85-130 lbs)
7999                                                                                             1.00
8000                                                                     based on weight (85-130 lbs)
8001                                                                                             1.80
8002                                                                                             1.00
8003                                                                                           100.00
8004                                                                                           100.00
8005                                                                                             1.00
8006                                                                                            10.00
8007                                                                                           250.00
8008                                                                                           100.00
8009                                                                                     small amount
8010                                                                                            50.00
8011                                                                                           200.00
8012                                                                                     small amount
8013                                                                                            50.00
8014                                                                                     small amount
8015                                                                                            23.00
8016                                                                                           200.00
8017                                                                                     small amount
8018                                                                                           200.00
8019                                                                                            75.00
8020                                                                                             1.00
8021                                                                                            75.00
8022                                                                                           200.00
8023                                                                                           200.00
8024                                                                                           500.00
8025                                                                                           300.00
8026                                                                                            75.00
8027                                                                                             0.50
8028                                                                                           272.00
8029                                                             272 ivermectin, 227 pyrantel pamoate
8030                                                                     based on weight (51-100 lbs)
8031                                                                                             1.00
8032                                                                                           100.00
8033                                                                                             1.00
8034                                                                                           272.00
8035                                                                                           272.00
8036                                                                                           272.00
8037                                                                                           272.00
8038                                                                                           272.00
8039                                                                                           272.00
8040                                                             272 ivermectin, 227 pyrantel pamoate
8041                                                                                           500.00
8042                                                                                          23, 460
8043                                                                                          23, 228
8044                                                                                          23, 228
8045                                                                                          23, 228
8046                                                                                           500.00
8047                                                                                          1000.00
8048                                                                                           680.00
8049                                                                                           310.00
8050                                                                                           950.00
8051                                                                                           500.00
8052                                                                                           272.00
8053                                                                                             4.00
8054                                                                                             5.00
8055                                                                                           375.00
8056                                                                                           500.00
8057                                                                                           136.00
8058                                                                                             1.00
8059                                                                                             0.20
8060                                                                                           136.00
8061                                                                                             1.00
8062                                                                                             1.00
8063                                                                                               43
8064                                                                                             3.60
8065                                                                                             0.20
8066                                                                                               38
8067                                                                                               38
8068                                                                                             0.20
8069                                                                                               38
8070                                                                                               38
8071                                                                                               38
8072                                                                                             0.40
8073                                                                                            25.00
8074                                                                                             0.20
8075                                                                                      unspecified
8076                                                                                             7.50
8077                                                                                            50.00
8078                                                                                             5.00
8079                                                                                           400.00
8080                                                                                           500.00
8081                                                                                             3.50
8082                                                                                           250.00
8083                                                                                           250.00
8084                                                                                            75.00
8085                                                                                           125.00
8086                                                                                     small amount
8087                                                                                             1.00
8088                                                                                           375.00
8089                                                                                           125.00
8090                                                                                            50.00
8091                                                                                         125, 375
8092                                                                                            60.00
8093                                                                                            26.00
8094                                                                                             3.50
8095                                                                                            36.00
8096                                                                                            16.00
8097                                                                                             8.00
8098                                                                      based on weight (45-88 lbs)
8099                                                                   based on weight (50.1-100 lbs)
8100                                                                                               16
8101                                                                                            24.00
8102                                                                                            16.00
8103                                                                                           500.00
8104                                                                                            50.00
8105                                                                                             1.00
8106                                                                                            20.00
8107                                                                                            30.00
8108                                                                                           100.00
8109                                                                                             3.20
8110                                                                                             1.00
8111                                                                                             1.00
8112                                                                                             3.20
8113                                                                                             1.00
8114                                                                                            75.00
8115                                                                                           425.00
8116                                                                                           100.00
8117                                                                                           425.00
8118                                                                                           100.00
8119                                                                                           215.00
8120                                                                     based on weight (51-100 lbs)
8121                                                                     based on weight (51-100 lbs)
8122                                                                                              500
8123                                                                     based on weight (50-100 lbs)
8124                                                                                           272.00
8125                                                                                      unspecified
8126                                                                                           500.00
8127                                                                                            15.00
8128                                                                                     small amount
8129                                                                                             8.00
8130                                                                     based on weight (51-100 lbs)
8131                                                                   based on weight (60.1-121 lbs)
8132                                                                                            23.00
8133                                                                                           900.00
8134                                                                                            75.00
8135                                                                                             17.5
8136                                                                     based on weight (50-100 lbs)
8137                                                                     based on weight (50-100 lbs)
8138                                                                     based on weight (51-100 lbs)
8139                                                                     based on weight (51-100 lbs)
8140                                                                                     small amount
8141                                                                                           500.00
8142                                                                                            32.00
8143                                                                                            60.00
8144                                                                                          1000.00
8145                                                                                           500.00
8146                                                                                            60.00
8147                                                                                            60.00
8148                                                                                             1.60
8149                                                                                            13.00
8150                                                                                           130.00
8151                                                                                            32.00
8152                                                                                           100.00
8153                                                                                            75.00
8154                                                                                           100.00
8155                                                                                             1.00
8156                                                                                             2.00
8157                                                                                           500.00
8158                                                                                             2.68
8159                                                                                           272.00
8160                                                                         2 tablets/pills/capsules
8161                                                                                           150.00
8162                                                                                           150.00
8163                                                                                           700.00
8164                                                                                           500.00
8165                                                                                              875
8166                                                                                           272.00
8167                                                                                           227.00
8168                                                                                           272.00
8169                                                                                             2.68
8170                                                                                           227.00
8171                                                                                             0.55
8172                                                                                           272.00
8173                                                                                             8.00
8174                                                                                             1.00
8175                                                                                           272.00
8176                                                                                          1000.00
8177                                                                                          1000.00
8178                                                                                           272.00
8179                                                                                            80.00
8180                                                                                            80.00
8181                                                                                            75.00
8182                                                                                     small amount
8183                                                                                            75.00
8184                                                                                           powder
8185                                                                     based on weight (51-100 lbs)
8186                                                                     based on weight (51-100 lbs)
8187                                                                     based on weight (51-100 lbs)
8188                                                                     based on weight (61-120 lbs)
8189                                                                                           200.00
8190                                                                                           200.00
8191                                                                                            10.00
8192                                                                                           200.00
8193                                                                                             7.00
8194                                                                                            16.00
8195                                                                     based on weight (51-100 lbs)
8196                                                                    based on weight (24.1-60 lbs)
8197                                                                                           272.00
8198                                                                                           375.00
8199                                                                                            50.00
8200                                                                                             1.00
8201                                                                                             1.00
8202                                                                                            10.00
8203                                                                                             1.00
8204                                                                                             1.00
8205                                                                     based on weight (89-132 lbs)
8206                                                                     based on weight (51-100 lbs)
8207                                                                     based on weight (51-100 lbs)
8208                                                                     based on weight (89-132 lbs)
8209                                                                                     23, 228, 460
8210                                                                     based on weight (51-100 lbs)
8211                                                                    based on weight (45-88.9 lbs)
8212                                                                   based on weight (50.1-100 lbs)
8213                                                                                             6.00
8214                                                                                               23
8215                                                                     based on weight (89-132 lbs)
8216                                                                                            75.00
8217                                                                                           900.00
8218                                                                                           500.00
8219                                                                                           136.00
8220                                                                                               38
8221                                                                     based on weight (51-100 lbs)
8222                                                                                                1
8223                                                                     based on weight (51-100 lbs)
8224                                                                     based on weight (51-100 lbs)
8225                                                                                           750.00
8226                                                                                            50.00
8227                                                                                             2.00
8228                                                                                             1.00
8229                                                                                           100.00
8230                                                                                           100.00
8231                                                                                            23.00
8232                                                                                            23.00
8233                                                                                          1000.00
8234                                                                                      application
8235                                                                                      application
8236                                                                                                1
8237                                                                                            50.00
8238                                                                                     small amount
8239                                                                                             4.00
8240                                                                                             6.00
8241                                                                                               23
8242                                                                                             8.00
8243                                                                                            23.00
8244                                                                                               66
8245                                                                                           750.00
8246                                                                                             8.00
8247                                                                                            23.00
8248                                                                      based on weight (44-88 lbs)
8249                                                                                            32.00
8250                                                                                           120.00
8251                                                                                         500, 750
8252                                                                                                 
8253                                                                                            23.00
8254                                                                                            80.00
8255                                                                                            50.00
8256                                                                                          1000.00
8257                                                                                            16.00
8258                                                                                            23.00
8259                                                                                            50.00
8260                                                                                            16.00
8261                                                                                            62.50
8262                                                                                             6.00
8263                                                                                           800.00
8264                                                                                            88.00
8265                                                                                           500.00
8266                                                                                           100.00
8267                                                                                            16.00
8268                                                                                            50.00
8269                                                                                           136.20
8270                                                                                            23.00
8271                                                                                           500.00
8272                                                                                           200.00
8273                                                                                           200.00
8274                                                                                            16.00
8275                                                                                            50.00
8276                                                                                             0.28
8277                                                                                           740.00
8278                                                                                           170.00
8279                                                                                             8.50
8280                                                                                      unspecified
8281                                                                                             6.00
8282                                                                                           750.00
8283                                                                                             5.00
8284                                                                                      unspecified
8285                                                                                            50.00
8286                                                                                            16.00
8287                                                                                            75.00
8288                                                                                            50.00
8289                                                                                            16.00
8290                                                                                            16.00
8291                                                                                            50.00
8292                                                                                             8.00
8293                                                                                      unspecified
8294                                                                                            60.00
8295                                                                                            16.00
8296                                                                     based on weight (51-100 lbs)
8297                                                                      based on weight (44-88 lbs)
8298                                                                                     small amount
8299                                                                                                1
8300                                                                                                1
8301                                                                                               75
8302                                                                                               75
8303                                                                                               16
8304                                                                                               30
8305                                                                                                2
8306                                                                                               75
8307                                                                                               66
8308                                                                                            16.00
8309                                                                                             3.00
8310                                                                                             1.00
8311                                                                                                1
8312                                                                                                4
8313                                                                                                1
8314                                                                     based on weight (50-100 lbs)
8315                                                                        based on weight (55+ lbs)
8316                                                                                           125.00
8317                                                                                           125.00
8318                                                                                           120.00
8319                                                                                           125.00
8320                                                                                           136.00
8321                                                                                           272.00
8322                                                                                           375.00
8323                                                                                           500.00
8324                                                                                            20.00
8325                                                                                           272.00
8326                                                                                             75.5
8327                                                                                           375.00
8328                                                                                           500.00
8329                                                                                            20.00
8330                                                                                            50.00
8331                                                                                           272.00
8332                                                                                             75.5
8333                                                                                            50.00
8334                                                                                           272.00
8335                                                                                             75.5
8336                                                                                             1.00
8337                                                                                      unspecified
8338                                                                                      unspecified
8339                                                                                           272.00
8340                                                                                             75.5
8341                                                                                                1
8342                                                                                           325.00
8343                                                                                           750.00
8344                                                                                           272.00
8345                                                                                             1.00
8346                                                                                            50.00
8347                                                                                             1.00
8348                                                                                           750.00
8349                                                                                      unspecified
8350                                                                                            50.00
8351                                                                                           500.00
8352                                                                                             1.00
8353                                                                                           272.00
8354                                                                     based on weight (50-100 lbs)
8355                                                                      based on weight (45-88 lbs)
8356                                                                                          1000.00
8357                                                                                             4.76
8358                                                                     based on weight (51-100 lbs)
8359                                                                      based on weight (44-88 lbs)
8360                                                                                             7.00
8361                                                                                             3.00
8362                                                                                     small amount
8363                                                                                           500.00
8364                                                                                            23.00
8365                                                                                           460.00
8366                                                                                            80.00
8367                                                                                          1000.00
8368                                                                                             6.00
8369                                                                                  moderate amount
8370                                                                     based on weight (51-100 lbs)
8371                                                                      based on weight (44-88 lbs)
8372                                                                                            60.00
8373                                                                                           375.00
8374                                                                                             1.00
8375                                                                                             1.00
8376                                                                                     small amount
8377                                                                     based on weight (51-100 lbs)
8378                                                                      based on weight (44-88 lbs)
8379                                                                                             1.00
8380                                                                                           375.00
8381                                                                                           375.00
8382                                                                                             1.00
8383                                                                                           375.00
8384                                                                                             8.00
8385                                                                                             1.00
8386                                                                                           272.00
8387                                                                                           272.00
8388                                                                                           272.00
8389                                                             272 ivermectin, 227 pyrantel pamoate
8390                                                                                           450.00
8391                                                                                           275.00
8392                                                                                             0.60
8393                                                                                           450.00
8394                                                                                             1.00
8395                                                                                            75.00
8396                                                                                           300.00
8397                                                                                             5.00
8398                                                                                           300.00
8399                                                                                             1.00
8400                                                                                            75.00
8401                                                                                            20.00
8402                                                                                             1.00
8403                                                                                           960.00
8404                                                                                            75.00
8405                                                                                                1
8406                                                                                           500.00
8407                                                                                            50.00
8408                                                                     based on weight (50-100 lbs)
8409                                                                                             1.00
8410                                                                     based on weight (51-100 lbs)
8411                                                                                             0.50
8412                                                                                             0.90
8413                                                                                           150.00
8414                                                                                             1.70
8415                                                                                             0.43
8416                                                                                            80.00
8417                                                                                             4.00
8418                                                                                      unspecified
8419                                                                                           200.00
8420                                                                     based on weight (51-100 lbs)
8421                                                                                      unspecified
8422                                                                                           272.00
8423                                                                                           272.00
8424                                                                        based on weight (55+ lbs)
8425                                                                     based on weight (51-100 lbs)
8426                                                                                           136.00
8427                                                                     based on weight (51-100 lbs)
8428                                                                                           750.00
8429                                                                                           227.00
8430                                                                                             1.00
8431                                                                                             1.20
8432                                                                                           150.00
8433                                                                                             1.50
8434                                                                                           136.00
8435                                                                                   1 pack/package
8436                                                                                     small amount
8437                                                                                           272.00
8438                                                                                           272.00
8439                                                                                           272.00
8440                                                                                             52.5
8441                                                                                              272
8442                                                                                           272.00
8443                                                                                           136.00
8444                                                                                            20.00
8445                                                                                            50.00
8446                                                                                           272.00
8447                                                                                           100.00
8448                                                                                             1.00
8449                                                                                             1.00
8450                                                                                           272.00
8451                                                                                              272
8452                                                                                              500
8453                                                                                            23.00
8454                                                                     based on weight (50-100 lbs)
8455                                                                                           200.00
8456                                                                                            16.00
8457                                                                                           200.00
8458                                                                                            16.00
8459                                                                                           500.00
8460                                                                                             1.00
8461                                                                                               75
8462                                                                                           500.00
8463                                                                                           272.00
8464                                                                                           100.00
8465                                                                                               38
8466                                                                     based on weight (51-100 lbs)
8467                                                                                      application
8468                                                                                           150.00
8469                                                                                            10.00
8470                                                                                             5.00
8471                                                                                           150.00
8472                                                                                            10.00
8473                                                                                             4.00
8474                                                                                           200.00
8475                                                                                             bath
8476                                                                                           136.00
8477                                                                                            10.00
8478                                                                                             bath
8479                                                                                             4.00
8480                                                                                           272.00
8481                                                                                           136.00
8482                                                                                             5.00
8483                                                                                           272.00
8484                                                                                           136.00
8485                                                                                           272.00
8486                                                                                           136.00
8487                                                                                           272.00
8488                                                                                           136.00
8489                                                                                               66
8490                                                                                            80.00
8491                                                                                             1.50
8492                                                                                           300.00
8493                                                                                             1.00
8494                                                                                           100.00
8495                                                                                             1.00
8496                                                                                            20.00
8497                                                                                            20.00
8498                                                                                            10.00
8499                                                                                            10.00
8500                                                                                             1.00
8501                                                                                           160.00
8502                                                                                             1.00
8503                                                                                             2.50
8504                                                                                             3.00
8505                                                                                             4.00
8506                                                                                            30.00
8507                                                                                            30.00
8508                                                                                           250.00
8509                                                                              tablet/pill/capsule
8510                                                                                              375
8511                                                                                             1.40
8512                                                                                             1.00
8513                                                                                            30.00
8514                                                                     based on weight (51-100 lbs)
8515                                                                     based on weight (51-100 lbs)
8516                                                                                            23.00
8517                                                                                            30.00
8518                                                                                             1.00
8519                                                                                             0.48
8520                                                                                             1.20
8521                                                                                            72.00
8522                                                                                             6.00
8523                                                                                           105.00
8524                                                                                             1.00
8525                                                                                            10.00
8526                                                                                             0.40
8527                                                                                             0.20
8528                                                                   based on weight (50.1-100 lbs)
8529                                                                                             0.20
8530                                                                                            30.00
8531                                                                   based on weight (50.1-100 lbs)
8532                                                                                               50
8533                                                                                              0.3
8534                                                                                              375
8535                                                                                            50.00
8536                                                                                            15.00
8537                                                                                           300.00
8538                                                                                           300.00
8539                                                                                            20.00
8540                                                                                           200.00
8541                                                                                                 
8542                                                                                           500.00
8543                                                                                           810.00
8544                                                                                            37.50
8545                                                                                            25.00
8546                                                                                                8
8547                                                                                              500
8548                                                                                           100.00
8549                                                                                             5.00
8550                                                                     based on weight (50-100 lbs)
8551                                                                                           272.00
8552                                                                                           272.00
8553                                                                                            23.00
8554                                                                     based on weight (50-100 lbs)
8555                                                                        based on weight (<50 lbs)
8556                                                                                          2000.00
8557                                                                                           500.00
8558                                                                                           375.00
8559                                                                                             1.00
8560                                                                                           200.00
8561                                                                                            20.00
8562                                                                                           375.00
8563                                                                                             1.00
8564                                                                                             0.69
8565                                                                                             2.20
8566                                                                                             1.00
8567                                                                                           468.75
8568                                                                                             3.13
8569                                                                                            37.50
8570                                                                                            12.00
8571                                                                                            72.00
8572                                                                                          1620.00
8573                                                                                            27.00
8574                                                                                             1.00
8575                                                                                             37.5
8576                                                                                          1000.00
8577                                                                                             1.00
8578                                                                                     small amount
8579                                                                                            20.00
8580                                                                                           400.00
8581                                                                                     small amount
8582                                                                     based on weight (50-100 lbs)
8583                                                                                     small amount
8584                                                                                     small amount
8585                                                                                  moderate amount
8586                                                                                       1 wipe/pad
8587                                                                                             1.00
8588                                                                                     small amount
8589                                                                                           500.00
8590                                                                                            10.00
8591                                                                     based on weight (60-120 lbs)
8592                                                                                             1.00
8593                                                                                             1.50
8594                                                                                           100.00
8595                                                                                             1.00
8596                                                                                             1.00
8597                                                                                             3.00
8598                                                                                             1.00
8599                                                                                             1.00
8600                                                                                             1.00
8601                                                                                           100.00
8602                                                                                           125.00
8603                                                                                           500.00
8604                                                                                             1.00
8605                                                                                             1.00
8606                                                                                             1.00
8607                                                                        based on weight (55+ lbs)
8608                                                                                           325.00
8609                                                                     based on weight (51-100 lbs)
8610                                                                                            75.00
8611                                                                                            75.00
8612                                                                                           350.00
8613                                                     0.284 betamethasone, 0.57 gentamicin sulfate
8614                                                                                           350.00
8615                                                                                             1.00
8616                                                                                           400.00
8617                                                                                            20.00
8618                                                                                           625.00
8619                                                                                          1000.00
8620                                                                                            60.00
8621                                                                                           137.00
8622                                                                                             6.80
8623                                                                                           200.00
8624                                                                                           300.00
8625                                                                                             3.20
8626                                                                                             1.30
8627                                                                                             0.65
8628                                                                                             0.05
8629                                                                                             4.20
8630                                                                                             2.20
8631                                                                                           161.80
8632                                                                                             2.00
8633                                                                                             1.50
8634                                                                                             1.40
8635                                                                                            75.00
8636                                                                                           136.00
8637                                                                                           300.00
8638                                                                                            75.00
8639                                                                                           200.00
8640                                                                                             1.00
8641                                                                                            20.00
8642                                                                                             5.00
8643                                                                                           227.00
8644                                                                                           750.00
8645                                                                                             3.30
8646                                                                                             2.00
8647                                                                                            12.70
8648                                                                                             2.00
8649                                                                                             2.00
8650                                                                                             2.50
8651                                                                                            75.00
8652                                                                                            50.00
8653                                                                                           200.00
8654                                                                                           750.00
8655                                                                                             1.50
8656                                                                                             4.00
8657                                                                                            60.00
8658                                                                                           750.00
8659                                                                                            12.00
8660                                                                                           272.00
8661                                                                                             8.00
8662                                                                                           300.00
8663                                                                                            75.00
8664                                                                                           300.00
8665                                                                                            60.00
8666                                                                                            75.00
8667                                                                                             0.50
8668                                                                                            60.00
8669                                                                                             1.00
8670                                                                                           200.00
8671                                                                                          1647.00
8672                                                                                          1647.00
8673                                                               27 milbemycin oxime, 1620 spinosad
8674                                                                     based on weight (60-120 lbs)
8675                                                                     based on weight (60-120 lbs)
8676                                                                     based on weight (60-120 lbs)
8677                                                                     based on weight (60-120 lbs)
8678                                                                                           500.00
8679                                                                                           272.00
8680                                                                                           272.00
8681                                                                                           500.00
8682                                                                                            10.00
8683                                                                                            15.00
8684                                                                                           272.00
8685                                                                                              125
8686                                                                                             4.00
8687                                                                                            10.00
8688                                                                                           500.00
8689                                                                                            10.00
8690                                                                                            50.00
8691                                                                                           500.00
8692                                                                                           200.00
8693                                                                                           272.00
8694                                                                      based on weight (45-88 lbs)
8695                                                                                            31.25
8696                                                                                           200.00
8697                                                                                           varies
8698                                                                                             1.00
8699                                                                                             1.00
8700                                                                                           272.00
8701                                                                                           272.00
8702                                                                      based on weight (45-88 lbs)
8703                                                                                           200.00
8704                                                                                             1.00
8705                                                                                            57.00
8706                                                                                           272.00
8707                                                                      based on weight (45-88 lbs)
8708                                                                                             3.75
8709                                                                                           200.00
8710                                                                                             1.00
8711                                                                                             1.00
8712                                                                                          1000.00
8713                                                                                             1.00
8714                                                                                           272.00
8715                                                                                             1.88
8716                                                                                             1.00
8717                                                                                            12.50
8718                                                                                             3.00
8719                                                                                            14.00
8720                                                                                           150.00
8721                                                                                              200
8722                                                                                             2.20
8723                                                                                           300.00
8724                                                                                             1.00
8725                                                                                             4.80
8726                                                                                             4.50
8727                                                                                           200.00
8728                                                                                           300.00
8729                                                                                             1.00
8730                                                                                             2.40
8731                                                                                  based on weight
8732                                                                                             2.60
8733                                                                                           200.00
8734                                                                                             1.00
8735                                                                                  moderate amount
8736                                                                                       1 wipe/pad
8737                                                                                             6.00
8738                                                                                             1.00
8739                                                                                            21.00
8740                                                                                             1.00
8741                                                                                             5.00
8742                                                                                           200.00
8743                                                                                           200.00
8744                                                                                      unspecified
8745                                                                                      unspecified
8746                                                                                           200.00
8747                                                                                           400.00
8748                                                                                           600.00
8749                                                                                           500.00
8750                                                                                           600.00
8751                                                                                           400.00
8752                                                                                           500.00
8753                                                                                           600.00
8754                                                                                           400.00
8755                                                                                           100.00
8756                                                                     based on weight (51-100 lbs)
8757                                                            23 milbemycin oxime, 228 praziquantel
8758                                                                                             1.00
8759                                                                        based on weight (55+ lbs)
8760                                                                     based on weight (51-100 lbs)
8761                                                                                             7.50
8762                                                                                           150.00
8763                                                                                           300.00
8764                                                                                           150.00
8765                                                                                             1.00
8766                                                                                           227.00
8767                                                                                             1.00
8768                                                                         based on weight (51 lbs)
8769                                                                                      unspecified
8770                                                                     based on weight (50-100 lbs)
8771                                                                                      unspecified
8772                                                                                            37.50
8773                                                                                            16.00
8774                                                                                            16.00
8775                                                                                            37.50
8776                                                                                             75.5
8777                                                                     based on weight (51-100 lbs)
8778                                                                     based on weight (51-100 lbs)
8779                                                                      based on weight (56-95 lbs)
8780                                                                     based on weight (51-100 lbs)
8781                                                                      based on weight (56-95 lbs)
8782                                                                                           750.00
8783                                                                                            30.00
8784                                                                                           150.00
8785                                                                                            60.00
8786                                                                     based on weight (51-100 lbs)
8787                                                                                               66
8788                                                                                           200.00
8789                                                                                            75.00
8790                                                                     based on weight (51-100 lbs)
8791                                                                      based on weight (44-88 lbs)
8792                                                                                     small amount
8793                                                                      based on weight (44-88 lbs)
8794                                                                     based on weight (51-100 lbs)
8795                                                                     based on weight (51-100 lbs)
8796                                                                                               66
8797                                                                                      unspecified
8798                                                                                           200.00
8799                                                                                            20.00
8800                                                                                            75.00
8801                                                                                           100.00
8802                                                                                           300.00
8803                                                                                            20.00
8804                                                                                            75.00
8805                                                                     based on weight (51-100 lbs)
8806                                                                                             7.00
8807                                                                                           500.00
8808                                                                                               66
8809                                                                                             5.00
8810                                                                                             1.00
8811                                                                                           750.00
8812                                                                                           204.00
8813                                                                                           500.00
8814                                                                                           500.00
8815                                                                                  0.25 inch strip
8816                                                                                             8.00
8817                                                                                             6.00
8818                                                                                           272.00
8819                                                                     based on weight (51-100 lbs)
8820                                                                     based on weight (60-121 lbs)
8821                                                                                             3.40
8822                                                                                             3.40
8823                                                                                           500.00
8824                                                                                            20.00
8825                                                                                         125, 500
8826                                                                                  0.25 inch strip
8827                                                                                               90
8828                                                                     based on weight (51-100 lbs)
8829                                                                                           272.00
8830                                                                                           136.00
8831                                                             272 ivermectin, 227 pyrantel pamoate
8832                                                                                           227.00
8833                                                                     based on weight (51-100 lbs)
8834                                                                                              500
8835                                                                                            75.00
8836                                                                                           500.00
8837                                                                                      unspecified
8838                                                                                            75.00
8839                                                                                           272.00
8840                                                                                           272.00
8841                                                                                             2.68
8842                                                                                           272.00
8843                                                                      based on weight (45-88 lbs)
8844                                                                                           227.00
8845                                                                                             1.14
8846                                                                                             1.00
8847                                                                                           200.00
8848                                                                                           300.00
8849                                                                                            75.00
8850                                                                                           300.00
8851                                                                                      unspecified
8852                                                                                      unspecified
8853                                                                                      unspecified
8854                                                                                           150.00
8855                                                                                              272
8856                                                                                             8.00
8857                                                                                           500.00
8858                                                                                            60.00
8859                                                                                             1.00
8860                                                                                     small amount
8861                                                                                           500.00
8862                                                                                           272.00
8863                                                                                             4.00
8864                                                                                             1.00
8865                                                                                           272.00
8866                                                                                           136.00
8867                                                                                           227.00
8868                                                                                            16.00
8869                                                                                          1620.00
8870                                                                                           750.00
8871                                                                                           300.00
8872                                                                                           300.00
8873                                                                                           200.00
8874                                                                                           200.00
8875                                                                                      unspecified
8876                                                                                      unspecified
8877                                                                                      unspecified
8878                                                                                            25.00
8879                                                                     based on weight (51-100 lbs)
8880                                                                                           272.00
8881                                                                                           227.00
8882                                                                                           272.00
8883                                                                                           227.00
8884                                                                                           200.00
8885                                                             272 ivermectin, 227 pyrantel pamoate
8886                                                                                             1.00
8887                                                                                           200.00
8888                                                                                           272.00
8889                                                                                           227.00
8890                                                                                           272.00
8891                                                                                           500.00
8892                                                                                           272.00
8893                                                                                            75.00
8894                                                                                            50.00
8895                                                                                             1.00
8896                                                                                           100.00
8897                                                                                           500.00
8898                                                                                           200.00
8899                                                                                             8.00
8900                                                                                            75.00
8901                                                                                            75.00
8902                                                                                           500.00
8903                                                                                             1.00
8904                                                                                           250.00
8905                                                                                             0.30
8906                                                                                           250.00
8907                                                                                             0.30
8908                                                                                        13.5, 810
8909                                                                                           500.00
8910                                                                                           500.00
8911                                                                     based on weight (51-100 lbs)
8912                                                                                             0.40
8913                                                                                             0.40
8914                                                                                            23.00
8915                                                                                             0.40
8916                                                                                            23.00
8917                                                                                             0.40
8918                                                                                            23.00
8919                                                                                             0.40
8920                                                                                             0.40
8921                                                                                           100.00
8922                                                                                             0.40
8923                                                                                            70.00
8924                                                                                          9200.00
8925                                                                                            30.00
8926                                                                                           272.00
8927                                                                                           228.00
8928                                                                                           228.00
8929                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8930                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8931                                                                                            50.00
8932                                                                                            23.00
8933                                                                                           500.00
8934                                                                                             2.00
8935                                                                                            23.00
8936                                                                                          1000.00
8937                                                                                            23.00
8938                                                                                          1000.00
8939                                                                                            16.00
8940                                                                                            23.00
8941                                                                                          1000.00
8942                                                                                            16.00
8943                                                                                            23.00
8944                                                                                          1000.00
8945                                                                                           228.00
8946                                                                                            16.00
8947                                                                                             0.70
8948                                                                                             0.70
8949                                                                                            16.00
8950                                                                                            16.00
8951                                                                                             0.70
8952                                                                                             3.00
8953                                                                                            60.00
8954                                                                                            40.00
8955                                                                                            16.00
8956                                                                                             2.00
8957                                                                                             1.00
8958                                                                                           272.00
8959                                                                                           228.00
8960                                                                                           228.00
8961                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8962                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
8963                                                                                            25.00
8964                                                                                            23.00
8965                                                                                            23.00
8966                                                                                          1000.00
8967                                                                                            23.00
8968                                                                                          1000.00
8969                                                                                            23.00
8970                                                                                          1000.00
8971                                                                                            23.00
8972                                                                                          1000.00
8973                                                                                           228.00
8974                                                                                            30.00
8975                                                                                            60.00
8976                                                                                             1.00
8977                                                                                             1.00
8978                                                                                             1.00
8979                                                                                           500.00
8980                                                                                            60.00
8981                                                                                             3.00
8982                                                                                             0.50
8983                                                                                          1000.00
8984                                                                                             3.00
8985                                                                                             2.00
8986                                                                                            16.00
8987                                                                                            16.00
8988                                                                                           272.00
8989                                                                                            24.00
8990                                                                                            75.00
8991                                                                                           200.00
8992                                                                                             6.00
8993                                                                                           272.00
8994                                                                                               16
8995                                                                                              0.5
8996                                                                                            80.00
8997                                                                                              0.5
8998                                                                                              0.5
8999                                                                                            70.00
9000                                                                                            80.00
9001                                                                                            75.00
9002                                                                                            75.00
9003                                                                                           300.00
9004                                                                                           200.00
9005                                                                                            80.00
9006                                                                                           272.00
9007                                                                                            70.00
9008                                                                                            70.00
9009                                                                                             6.00
9010                                                                                           200.00
9011                                                                                           200.00
9012                                                                                            50.00
9013                                                                                           200.00
9014                                                                                            70.00
9015                                                                                            50.00
9016                                                                                           200.00
9017                                                                                            70.00
9018                                                                                            50.00
9019                                                                                            23.00
9020                                                                                            23.00
9021                                                                                          1000.00
9022                                                                                             5.00
9023                                                                                            23.00
9024                                                                                             1.00
9025                                                                                            23.00
9026                                                                     based on weight (50-100 lbs)
9027                                                                                            75.00
9028                                                                                            17.60
9029                                                                                            75.00
9030                                                                                            20.00
9031                                                                                            23.00
9032                                                                                            20.00
9033                                                                                          1000.00
9034                                                                                            23.00
9035                                                                                          1776.00
9036                                                                                             4.00
9037                                                                                            60.00
9038                                                                                           300.00
9039                                                                                             3.75
9040                                                                                           100.00
9041                                                                                            23.00
9042                                                                                           460.00
9043                                                                                             1.00
9044                                                                                             1.00
9045                                                                                            23.00
9046                                                                     based on weight (51-100 lbs)
9047                                                                                     small amount
9048                                                                                           460.00
9049                                                                                                2
9050                                                                                      as directed
9051                                                                                           187.50
9052                                                                                 0.125 inch strip
9053                                                                                                1
9054                                                                      based on weight (26-50 lbs)
9055                                                                     based on weight (51-100 lbs)
9056                                                                                                1
9057                                                                                           500.00
9058                                                                                            75.00
9059                                                                                           250.00
9060                                                                                      unspecified
9061                                                                                           100.00
9062                                                                                           100.00
9063                                                                                             1.00
9064                                                                                      as directed
9065                                                                                                1
9066                                                                                            10.00
9067                                                                                            50.00
9068                                                                                           400.00
9069                                                                                           100.00
9070                                                                                      unspecified
9071                                                                                      unspecified
9072                                                                                           100.00
9073                                                                                             2.00
9074                                                                                           375.00
9075                                                                                            11.50
9076                                                                                          1000.00
9077                                                                                            68.00
9078                                                                                            11.50
9079                                                                                          1000.00
9080                                                                                           100.00
9081                                                                                            60.00
9082                                                                                            20.00
9083                                                                                            10.00
9084                                                                                      unspecified
9085                                                                                           500.00
9086                                                                                           600.00
9087                                                                                            53.00
9088                                                                                            91.00
9089                                                                                           136.00
9090                                                                                            20.00
9091                                                                                             1.00
9092                                                                                           100.00
9093                                                                                            20.00
9094                                                                        based on weight (50+ lbs)
9095                                                                     based on weight (51-100 lbs)
9096                                                                                           100.00
9097                                                                                            50.00
9098                                                                     based on weight (51-100 lbs)
9099                                                                                      unspecified
9100                                                                                      unspecified
9101                                                                                      unspecified
9102                                                                                           100.00
9103                                                                                          3000.00
9104                                                                                             1.00
9105                                                                                           272.00
9106                                                                                             9.80
9107                                                                                             1.00
9108                                                                                           150.00
9109                                                                                  0.25 inch strip
9110                                                                                           227.00
9111                                                                                           500.00
9112                                                                                           500.00
9113                                                                                           500.00
9114                                                                                            20.00
9115                                                                                            10.00
9116                                                                                             6.00
9117                                                                                           150.00
9118                                                                                  0.25 inch strip
9119                                                                                            20.00
9120                                                                                             1.00
9121                                                                                             1.00
9122                                                                                             1.00
9123                                                                                             1.00
9124                                                                                             1.00
9125                                                                                           500.00
9126                                                                                         45585.00
9127                                                                                           272.00
9128                                                                                           136.00
9129                                                                                             8.00
9130                                                                                           272.00
9131                                                                                           136.00
9132                                                                        based on weight (60+ lbs)
9133                                                                                             1.00
9134                                                                                             1.00
9135                                                                                                1
9136                                                                                      application
9137                                                                                                1
9138                                                                                           227.00
9139                                                                                           136.00
9140                                                                                           227.00
9141                                                                                           136.00
9142                                                                                           227.00
9143                                                                                           136.00
9144                                                                                             1.00
9145                                                                                             1.00
9146                                                                                             1.00
9147                                                                                           500.00
9148                                                                                             0.60
9149                                                                                           200.00
9150                                                                                            15.00
9151                                                                                           227.00
9152                                                                                           200.00
9153                                                                                           500.00
9154                                                                                             8.00
9155                                                                                            50.00
9156                                                                                      unspecified
9157                                                                                            50.00
9158                                                                                             4.00
9159                                                                                           340.00
9160                                                                     based on weight (89-132 lbs)
9161                                         based on weight (0-25 lbs), based on weight (51-100 lbs)
9162                                                                                           300.00
9163                                                                                           340.00
9164                                                                                              110
9165                                                                                             2.00
9166                                                                                            28.75
9167                                                                                             4.00
9168                                                                                             0.90
9169                                                                                           100.00
9170                                                                     based on weight (51-100 lbs)
9171                                                                                             12.5
9172                                                                                              110
9173                                                                                             0.60
9174                                                                                            50.00
9175                                                                                            50.00
9176                                                                                            50.00
9177                                                                                             0.30
9178                                                                                            50.00
9179                                                                                            50.00
9180                                                                                           272.00
9181                                                                                             1.00
9182                                                                                            75.00
9183                                                                                            50.00
9184                                                                                           500.00
9185                                                                                           100.00
9186                                                                                            50.00
9187                                                                                      application
9188                                                                                            16.00
9189                                                                                                1
9190                                                                                            80.00
9191                                                                                           200.00
9192                                                                                           500.00
9193                                                                                   1 pack/package
9194                                                                                            80.00
9195                                                                                            12.00
9196                                                                                            15.00
9197                                                                                             2.00
9198                                                                                             1.00
9199                                                                                             1.00
9200                                                                                             1.00
9201                                                                                             1.00
9202                                                                     based on weight (51-100 lbs)
9203                                                                                             1.00
9204                                                                                            16.00
9205                                                                                           200.00
9206                                                                                            50.00
9207                                                                                            60.00
9208                                                                                          1750.00
9209                                                                                             1.00
9210                                                                                          1750.00
9211                                                                                             0.25
9212                                                                                           100.00
9213                                                                                            50.00
9214                                                                                            12.50
9215                                                                                          1750.00
9216                                                                                           200.00
9217                                                                                            50.00
9218                                                                                           100.00
9219                                                                                           100.00
9220                                                                                          1750.00
9221                                                                                            50.00
9222                                                                                             0.25
9223                                                                                           100.00
9224                                                                                             1.30
9225                                                                                           100.00
9226                                                                                            50.00
9227                                                                                           100.00
9228                                                                                            75.00
9229                                                                                               75
9230                                                                                     small amount
9231                                                                                            10.00
9232                                                                                             1.00
9233                                                                                              250
9234                                                                                            75.00
9235                                                                                           750.00
9236                                                                     based on weight (51-100 lbs)
9237                                                                                             3.25
9238                                                                                             1.00
9239                                                                                         tapering
9240                                                                                         tapering
9241                                                                                           varies
9242                                                                     based on weight (51-100 lbs)
9243                                                                                              0.7
9244                                                                                      unspecified
9245                                                                                              0.7
9246                                                                                            60.00
9247                                                                                             1.50
9248                                                                                             1.00
9249                                                                                           272.00
9250                                                                                           227.00
9251                                                                                             0.75
9252                                                                                      unspecified
9253                                                                                      application
9254                                                                     based on weight (50-100 lbs)
9255                                                                                             0.50
9256                                                                                           500.00
9257                                                                                           500.00
9258                                                                                             0.50
9259                                                                     based on weight (60-120 lbs)
9260                                                                                           500.00
9261                                                                                             0.50
9262                                                                                           250.00
9263                                                                                          1000.00
9264                                                                                            10.00
9265                                                                                           272.00
9266                                                                                           272.00
9267                                                                     based on weight (51-100 lbs)
9268                                                                                               66
9269                                                             272 ivermectin, 227 pyrantel pamoate
9270                                                                                             1000
9271                                                                                      unspecified
9272                                                                                            50.00
9273                                                                                           100.00
9274                                                                                           100.00
9275                                                                                           600.00
9276                                                                                            20.00
9277                                                                                           625.00
9278                                                                                           500.00
9279                                                                                            10.00
9280                                                                                            50.00
9281                                                                                            25.00
9282                                                                                             5.00
9283                                                                                            50.00
9284                                                                                           125.00
9285                                                                                             4.00
9286                                                                                             2.00
9287                                                                                           272.00
9288                                                                                           227.00
9289                                                                                             1.00
9290                                                                                               90
9291                                                                                           750.00
9292                                                                                         27, 1620
9293                                                                                          1620.00
9294                                                                                         27, 1620
9295                                                                                         27, 1620
9296                                                                                            16.00
9297                                                                                      unspecified
9298                                                                                            16.00
9299                                                                                               90
9300                                                                                            16.00
9301                                                                                             1.20
9302                                                                                           500.00
9303                                                                                             3.00
9304                                                                                           200.00
9305                                                                                           272.00
9306                                                                                             2.00
9307                                                                                             3.00
9308                                                                                           272.00
9309                                                                                             4.70
9310                                                                                           272.00
9311                                                                                           136.00
9312                                                                                              272
9313                                                                                           136.00
9314                                                                                            75.00
9315                                                                                            75.00
9316                                                                                             1.88
9317                                                                                             1.00
9318                                                                                            25.00
9319                                                                                            50.00
9320                                                                                             1.00
9321                                                                                             1.00
9322                                                                                            50.00
9323                                                                                            75.00
9324                                                                                            50.00
9325                                                                                             3.00
9326                                                                                             1.00
9327                                                                                           150.00
9328                                                                                             5.20
9329                                                                                             1.10
9330                                                                                             4.70
9331                                                                                             5.00
9332                                                                                          1340.00
9333                                                                                            75.00
9334                                                                                          1620.00
9335                                                                                           272.00
9336                                                                                           272.00
9337                                                                                              272
9338                                                                                              200
9339                                                                                               60
9340                                                                                           100.00
9341                                                                                             5.00
9342                                                                                            20.00
9343                                                                                             0.01
9344                                                                                             0.50
9345                                                                                             0.60
9346                                                                                           500.00
9347                                                                                             4.00
9348                                                                                              136
9349                                                                                           150.00
9350                                                                                            50.00
9351                                                                                             1.90
9352                                                                                           200.00
9353                                                                                           200.00
9354                                                                                           500.00
9355                                                                                           500.00
9356                                                                                           100.00
9357                                                                                           100.00
9358                                                                                            30.00
9359                                                                                             2.50
9360                                                                                            20.00
9361                                                                                           272.00
9362                                                                                           272.00
9363                                                                                             6.00
9364                                                                                           500.00
9365                                                                                            75.00
9366                                                                                           272.00
9367                                                                                          1000.00
9368                                                                                           500.00
9369                                                                                            75.00
9370                                                                                           750.00
9371                                                                                           300.00
9372                                                                                            75.00
9373                                                                                           750.00
9374                                                                                            75.00
9375                                                                                           750.00
9376                                                                                             0.70
9377                                                                                            75.00
9378                                                                                            30.00
9379                                                                                             0.70
9380                                                                                            30.00
9381                                                                                             0.70
9382                                                                                             1.00
9383                                                                                             1.00
9384                                                                                                7
9385                                                                                                7
9386                                                                     based on weight (51-100 lbs)
9387                                                                      based on weight (56-95 lbs)
9388                                                                                            50.00
9389                                                                                           136.00
9390                                                                                              272
9391                                                                                             7.00
9392                                                                                           272.00
9393                                                                                           136.00
9394                                                                                           272.00
9395                                                                                           136.00
9396                                                                                           272.00
9397                                                                                           136.00
9398                                                                                           600.00
9399                                                                                           272.00
9400                                                                                           136.00
9401                                                                                          1000.00
9402                                                                                            50.00
9403                                                                                             2.00
9404                                                                                             2.00
9405                                                                                             0.20
9406                                                                                            45.00
9407                                                                                            10.00
9408                                                                                           500.00
9409                                                                                           136.00
9410                                                                                           272.00
9411                                                                                            50.00
9412                                                                                            75.00
9413                                                                                             1.00
9414                                                                                             1.00
9415                                                                                             1.00
9416                                                                                     small amount
9417                                                                                             1.00
9418                                                                                     small amount
9419                                                                                           100.00
9420                                                                                           200.00
9421                                                                                           collar
9422                                                                                  based on weight
9423                                                                                           200.00
9424                                                                                            16.00
9425                                                                                             1.00
9426                                                                     based on weight (50-100 lbs)
9427                                                                                           500.00
9428                                                                                           500.00
9429                                                                                      application
9430                                                                                            50.00
9431                                                                                           200.00
9432                                                                        based on weight (25+ lbs)
9433                                                                     based on weight (50-100 lbs)
9434                                                                     based on weight (51-100 lbs)
9435                                                                                        injection
9436                                                                     based on weight (51-100 lbs)
9437                                                                                           200.00
9438                                                                                        injection
9439                                                                                          6000.00
9440                                                                                             1.00
9441                                                                                             1.00
9442                                                                                           375.00
9443                                                                                           500.00
9444                                                                                            50.00
9445                                                                                           500.00
9446                                                                                           100.00
9447                                                                                      unspecified
9448                                                                                           150.00
9449                                                                                           125.00
9450                                                                                           250.00
9451                                                                                           625.00
9452                                                             272 ivermectin, 227 pyrantel pamoate
9453                                                                                         8.8, 9.8
9454                                                                                  0.25 inch strip
9455                                                                                           272.00
9456                                                                                             9.80
9457                                                                                           250.00
9458                                                                                           272.00
9459                                                                                            68.00
9460                                                                                           272.00
9461                                                                                            68.00
9462                                                                                           227.00
9463                                                                                           136.00
9464                                                                                            23.00
9465                                                                                            68.00
9466                                                                                           272.00
9467                                                                                           272.00
9468                                                                                           272.00
9469                                                                                            12.50
9470                                                                                            12.50
9471                                                                                           272.00
9472                                                                                           272.00
9473                                                                                          1000.00
9474                                                                                           272.00
9475                                                                                           272.00
9476                                                                                            12.50
9477                                                                                           500.00
9478                                                                                             7.00
9479                                                                                            74.00
9480                                                                                             0.50
9481                                                                                            37.50
9482                                                                                           350.00
9483                                                                                            62.50
9484                                                                                           250.00
9485                                                                                              500
9486                                                                                             3.00
9487                                                                                            25.00
9488                                                                                           500.00
9489                                                                                           500.00
9490                                                                                           100.00
9491                                                                                             1.00
9492                                                                                             1.00
9493                                                                                           200.00
9494                                                                                     small amount
9495                                                                                     small amount
9496                                                                                           136.00
9497                                                                                           272.00
9498                                                                                           136.00
9499                                                                                          1000.00
9500                                                                                           136.00
9501                                                                                           400.00
9502                                                                                             5.00
9503                                                                                           200.00
9504                                                                                           136.00
9505                                                                                           272.00
9506                                                                                             1.00
9507                                                                                           400.00
9508                                                                                           200.00
9509                                                                                           227.00
9510                                                                                           200.00
9511                                                                                      unspecified
9512                                                                                           300.00
9513                                                                                             5.00
9514                                                                                           100.00
9515                                                                                             1.50
9516                                                                                 0.125 inch strip
9517                                                                                           250.00
9518                                                                                           100.00
9519                                                                                             1.00
9520                                                                                           113.50
9521                                                                                           272.00
9522                                                                                           228.00
9523                                                                                           228.00
9524                                                                                     small amount
9525                                                                                             1.00
9526                                                                                           160.00
9527                                                                                            62.50
9528                                                                                            32.50
9529                                                                                             5.00
9530                                                                                            75.00
9531                                                                                            34.50
9532                                                                                            75.00
9533                                                                                             5.00
9534                                                                                           272.00
9535                                                                                           272.00
9536                                                                                           160.00
9537                                                                                           160.00
9538                                                                                             1.63
9539                                                                                             1.09
9540                                                                                           108.73
9541                                                                                             2.50
9542                                                                                           272.00
9543                                                                                           272.00
9544                                                                    based on weight (24.1-60 lbs)
9545                                                                                           272.00
9546                                                                   based on weight (60.1-121 lbs)
9547                                                                                           272.00
9548                                                                    based on weight (44.1-88 lbs)
9549                                                                   based on weight (60.1-121 lbs)
9550                                                                                             1.00
9551                                                                                             1.12
9552                                                                                           112.00
9553                                                                                           272.00
9554                                                                                            75.00
9555                                                                                           500.00
9556                                                                                             2.00
9557                                                                                             1.00
9558                                                                                             1.17
9559                                                                                            11.71
9560                                                                                           117.09
9561                                                                                           180.00
9562                                                                                           272.00
9563                                                                                            75.00
9564                                                                                           100.00
9565                                                                                            60.00
9566                                                                                            75.00
9567                                                                                            60.00
9568                                                                                            60.00
9569                                                                                            15.00
9570                                                                                           125.00
9571                                                                                           500.00
9572                                                                                           900.00
9573                                                                                             2.00
9574                                                                                             2.00
9575                                                                                               90
9576                                                                                            60.00
9577                                                                                           500.00
9578                                                                                               90
9579                                                                                          2000.00
9580                                                                                           500.00
9581                                                                                            15.00
9582                                                                                          1000.00
9583                                                                                            20.00
9584                                                                     based on weight (51-100 lbs)
9585                                                                                           200.00
9586                                                                                            10.00
9587                                                                                             1.00
9588                                                                                     small amount
9589                                                                                           500.00
9590                                                                                             5.00
9591                                                                                           500.00
9592                                                                                      unspecified
9593                                                                                            75.00
9594                                                                                            75.00
9595                                                                                            75.00
9596                                                                                      unspecified
9597                                                                                            75.00
9598                                                                                             0.60
9599                                                                                           150.00
9600                                                                                      unspecified
9601                                                                                      unspecified
9602                                                                                  based on weight
9603                                                                                  based on weight
9604                                                                                  based on weight
9605                                                                                            17.00
9606                                                                                           250.00
9607                                                                                            68.00
9608                                                                                             1.00
9609                                                                     based on weight (51-100 lbs)
9610                                                                      based on weight (44-88 lbs)
9611                                                                                           150.00
9612                                                                                                 
9613                                                                                                 
9614                                                                                         wipe/pad
9615                                                                     based on weight (50-100 lbs)
9616                                                                      based on weight (44-88 lbs)
9617                                                                     based on weight (51-100 lbs)
9618                                                                      based on weight (44-80 lbs)
9619                                                                     based on weight (51-100 lbs)
9620                                                                      based on weight (44-88 lbs)
9621                                                                     based on weight (50-100 lbs)
9622                                                                                           200.00
9623                                                                                            75.00
9624                                                                                           200.00
9625                                                                                            75.00
9626                                                                                           125.00
9627                                                                                           375.00
9628                                                                                           375.00
9629                                                                                             8.00
9630                                                                                             1.00
9631                                                                                           150.00
9632                                                                                               90
9633                                                                                             8.00
9634                                                                                             1.00
9635                                                                                         27, 1620
9636                                                                                            16.00
9637                                                                                             0.50
9638                                                                                               90
9639                                                                                            16.00
9640                                                                                         27, 1620
9641                                                                     based on weight (60-120 lbs)
9642                                                                                            16.00
9643                                                                     based on weight (60-120 lbs)
9644                                                                                            16.00
9645                                                                                            16.00
9646                                                                                           200.00
9647                                                                                            16.00
9648                                                                                             8.00
9649                                                                                            70.00
9650                                                                                            16.00
9651                                                                                           200.00
9652                                                                                            20.00
9653                                                                                           250.00
9654                                                                                           250.00
9655                                                                                             1.00
9656                                                                                            83.00
9657                                                                                               38
9658                                                                                           136.00
9659                                                                                             0.12
9660                                                                                           136.00
9661                                                                                           100.00
9662                                                                                             0.12
9663                                                                                           272.00
9664                                                                                           100.00
9665                                                                                           200.00
9666                                                                                           500.00
9667                                                                                           250.00
9668                                                                                             2.50
9669                                                                                            25.00
9670                                                                                           375.00
9671                                                                                           102.00
9672                                                                                             1.00
9673                                                                                           272.00
9674                                                                                            68.00
9675                                                                                           425.00
9676                                                                                           200.00
9677                                                                                           200.00
9678                                                                                           102.00
9679                                                                                           375.00
9680                                                                                           500.00
9681                                                                                             2.30
9682                                                                                           500.00
9683                                                                                           272.00
9684                                                                                             3.60
9685                                                                                             0.40
9686                                                                                           425.00
9687                                                                                           250.00
9688                                                                                           113.00
9689                                                                                           200.00
9690                                                                                             1.50
9691                                                                                           272.00
9692                                                                                           200.00
9693                                                                                           500.00
9694                                                                                             0.45
9695                                                                                           272.00
9696                                                                                             0.45
9697                                                                                             0.40
9698                                                                                             1.00
9699                                                                                           100.00
9700                                                                                           200.00
9701                                                                                           300.00
9702                                                                                            50.00
9703                                                                                           150.00
9704                                                                                           250.00
9705                                                                                           150.00
9706                                                                                             0.45
9707                                                                                            50.00
9708                                                                                             0.45
9709                                                                                           200.00
9710                                                                                            50.00
9711                                                                                           375.00
9712                                                                                             75.5
9713                                                                                           300.00
9714                                                                                           750.00
9715                                                                                           300.00
9716                                                                                           750.00
9717                                                                                             75.5
9718                                                                                      unspecified
9719                                                                                           750.00
9720                                                                                            10.00
9721                                                                                           100.00
9722                                                                                             1.00
9723                                                                     based on weight (51-100 lbs)
9724                                                                                           450.00
9725                                                                                           750.00
9726                                                                                          1000.00
9727                                                                                            16.00
9728                                                                                          1000.00
9729                                                                                             75.5
9730                                                                                             75.5
9731                                                                                          1000.00
9732                                                                                             8.00
9733                                                                                           500.00
9734                                                                                             8.00
9735                                                                                           400.00
9736                                                                                            16.00
9737                                                                                           100.00
9738                                                                                           100.00
9739                                                                                           500.00
9740                                                                                            16.00
9741                                                                                           500.00
9742                                                                                           125.00
9743                                                                                           100.00
9744                                                                                             1.00
9745                                                                                             2.50
9746                                                                                           250.00
9747                                                                                           250.00
9748                                                                                            50.00
9749                                                                                             1.00
9750                                                                                             2.25
9751                                                                                           500.00
9752                                                                                           300.00
9753                                                                                             4.00
9754                                                                                             4.00
9755                                                                                           823.50
9756                                                                                           499.00
9757                                                                                             4.00
9758                                                                                            10.00
9759                                                                     based on weight (51-100 lbs)
9760                                                                        based on weight (55+ lbs)
9761                                                                     based on weight (51-100 lbs)
9762                                                                                             2.00
9763                                                                                                1
9764                                                                                                1
9765                                                                                                1
9766                                                                     based on weight (51-100 lbs)
9767                                                                                            80.00
9768                                                                                             1.00
9769                                                                                             0.50
9770                                                                   based on weight (50.1-100 lbs)
9771                                                                                             66.5
9772                                                                                           100.00
9773                                                                                           300.00
9774                                                                                           250.00
9775                                                                                            50.00
9776                                                                                            50.00
9777                                                                                           250.00
9778                                                                                           272.00
9779                                                                                           228.00
9780                                                                                           228.00
9781                                                                                             9.70
9782                                                                                            75.00
9783                                                                                           100.00
9784                                                                                           150.00
9785                                         272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
9786                                                                                            20.00
9787                                                                                           250.00
9788                                                                                           500.00
9789                                                                                             1.00
9790                                                                                             4.00
9791                                                                     based on weight (50-100 lbs)
9792                                                                                            50.00
9793                                                                                            75.00
9794                                                                                           750.00
9795                                                                                           500.00
9796                                                                                             8.00
9797                                                                                             0.00
9798                                                                                           315.00
9799                                                                                           136.00
9800                                                                                                1
9801                                                                                           200.00
9802                                                                                            75.00
9803                                                                                           200.00
9804                                                                                           136.00
9805                                                                                            20.00
9806                                                                                           500.00
9807                                                                                      unspecified
9808                                                                                      unspecified
9809                                                                                      unspecified
9810                                                                                            75.00
9811                                                                                           750.00
9812                                                                                           500.00
9813                                                                                           500.00
9814                                                                                             1.00
9815                                                                                               28
9816                                                                                            60.00
9817                                                                                           500.00
9818                                                                                             1.00
9819                                                                                           272.00
9820                                                                                           500.00
9821                                                                                   1 pack/package
9822                                                                                           750.00
9823                                                                                                1
9824                                                                                               10
9825                                                                                                3
9826                                                                                     1 inch strip
9827                                                                                                7
9828                                                                                             6.25
9829                                                                                              500
9830                                                                                            50.00
9831                                                                                          1000.00
9832                                                                                            50.00
9833                                                                                      application
9834                                                                                          1000.00
9835                                                                                             4.00
9836                                                                                           200.00
9837                                                                                      unspecified
9838                                                                                           200.00
9839                                                                                             1.40
9840                                                                                      unspecified
9841                                                                                             3.25
9842                                                                                           300.00
9843                                                                                      unspecified
9844                                                                                             3.25
9845                                                                                           468.00
9846                                                                                          1000.00
9847                                                                                           200.00
9848                                                                                           500.00
9849                                                                                           100.00
9850                                                                                             3.25
9851                                                                                           468.00
9852                                                                                             1.00
9853                                                                                            20.00
9854                                                                                             1.00
9855                                                                                            25.00
9856                                                                                           250.00
9857                                                                                            75.00
9858                                                                                            75.00
9859                                                                                            75.00
9860                                                                                               75
9861                                                                                           750.00
9862                                                                                               75
9863                                                                                         wipe/pad
9864                                                                                          1000.00
9865                                                                                                 
9866                                                                                            20.00
9867                                                                                           300.00
9868                                                                                            75.00
9869                                                                                           200.00
9870                                                                                           300.00
9871                                                                                           300.00
9872                                                                                             1.56
9873                                                                                      unspecified
9874                                                                                             3.25
9875                                                                                            75.00
9876                                                                                           300.00
9877                                                                                      unspecified
9878                                                                                           500.00
9879                                                                                           300.00
9880                                                                                             1.56
9881                                                                                           300.00
9882                                                                                           170.00
9883                                                                                            50.00
9884                                                                                  0.25 inch strip
9885                                                                                             1.00
9886                                                                                             1.00
9887                                                                                             2.00
9888                                                                                             0.25
9889                                                                     based on weight (51-100 lbs)
9890                                                                      based on weight (45-88 lbs)
9891                                                                                  0.25 inch strip
9892                                                                                     small amount
9893                                                                                                1
9894                                                                   based on weight (50.1-100 lbs)
9895                                                                   based on weight (60.1-121 lbs)
9896                                                                                  0.25 inch strip
9897                                                                                      unspecified
9898                                                                                  based on weight
9899                                                                                                1
9900                                                                                                1
9901                                                                                  based on weight
9902                                                                                                1
9903                                                                                  0.25 inch strip
9904                                                                                             1.00
9905                                                                                             9.00
9906                                                                                             2.00
9907                                                                                      unspecified
9908                                                                                           200.00
9909                                                                                             1.00
9910                                                                                           100.00
9911                                                                                           500.00
9912                                                                                           500.00
9913                                                                                            60.00
9914                                                                                            20.00
9915                                                                                             1.00
9916                                                                                             1.00
9917                                                                     based on weight (51-100 lbs)
9918                                                                                               63
9919                                                                                               10
9920                                                                                               10
9921                                                                                           500.00
9922                                                                                            10.00
9923                                                                                               10
9924                                                                                               10
9925                                                                                           250.00
9926                                                                                             1.00
9927                                                                                           150.00
9928                                                                                      unspecified
9929                                                                                            20.00
9930                                                                                            75.00
9931                                                                     based on weight (50-100 lbs)
9932                                                                                           227.00
9933                                                                                          1400.00
9934                                                                                            75.00
9935                                                                      based on weight (40-60 lbs)
9936                                                                                            68.00
9937                                                                                           500.00
9938                                                                                           500.00
9939                                                                                           500.00
9940                                                                                            12.00
9941                                                                                           500.00
9942                                                                                       4.125 cups
9943                                                                    based on weight (40.1-60 lbs)
9944                                                                      based on weight (40-60 lbs)
9945                                                                     based on weight (50-100 lbs)
9946                                                                                            10.00
9947                                                                                           272.00
9948                                                                                           136.00
9949                                                                                           272.00
9950                                                                                           136.00
9951                                                                                           200.00
9952                                                                                           100.00
9953                                                                                            50.00
9954                                                                                             1.00
9955                                                                                           120.00
9956                                                                                             1.00
9957                                                                                            60.00
9958                                                                                           500.00
9959                                                                                           100.00
9960                                                                                              272
9961                                                                                                1
9962                                                                                              272
9963                                                                        based on weight (55+ lbs)
9964                                                                                             1.00
9965                                                                                           272.00
9966                                                                        based on weight (55+ lbs)
9967                                                                                              272
9968                                                                        based on weight (55+ lbs)
9969                                                                                              272
9970                                                                                     small amount
9971                                                                                              272
9972                                                                        based on weight (55+ lbs)
9973                                                                                            75.00
9974                                                                                           272.00
9975                                                                                            60.00
9976                                                                                             1.00
9977                                                                                           187.50
9978                                                                                            32.50
9979                                                                                           272.00
9980                                                                                             6.40
9981                                                                                            65.00
9982                                                                                            16.00
9983                                                                                             2.00
9984                                                                                            30.00
9985                                                                                           113.50
9986                                                                                             1.00
9987                                                                                             2.00
9988                                                                                           272.00
9989                                                                                           136.00
9990                                                                                           450.00
9991                                                                                             5.00
9992                                                                                           272.00
9993                                                                                           136.00
9994                                                                                           500.00
9995                                                                                            75.00
9996                                                                                             1.00
9997                                                                                           900.00
9998                                                                                           272.00
9999                                                                                           136.00
10000                                                                                           50.00
10001                                                                                          272.00
10002                                                                                          136.00
10003                                                                                           50.00
10004                                                                                           60.00
10005                                                                                           30.00
10006                                                                                            3.00
10007                                                                                         1500.00
10008                                                                                          750.00
10009                                                                                           50.00
10010                                                                                          272.00
10011                                                                                          136.00
10012                                                                                          750.00
10013                                                                                          170.25
10014                                                                                            5.00
10015                                                                                            1.00
10016                                                                                           23.00
10017                                                                    based on weight (51-100 lbs)
10018                                                                                          500.00
10019                                                                                           50.00
10020                                                                                          300.00
10021                                                                                           37.50
10022                                                                                          375.00
10023                                                                                            0.99
10024                                                                                           23.00
10025                                                                                           50.00
10026                                                                    based on weight (51-100 lbs)
10027                                                                       based on weight (18+ lbs)
10028                                                                                           23.00
10029                                                                                           20.00
10030                                                                                            5.00
10031                                                                                          500.00
10032                                                                                           20.00
10033                                                                                           37.50
10034                                                                                          500.00
10035                                                                                           20.00
10036                                                                                            7.00
10037                                                                                     unspecified
10038                                                                                           37.50
10039                                                                                          500.00
10040                                                                                           20.00
10041                                                                                           37.50
10042                                                                                     unspecified
10043                                                                                           20.00
10044                                                                                          300.00
10045                                                                                           37.50
10046                                                                                          150.00
10047                                                                                           60.00
10048                                                                                          272.00
10049                                                                                           10.00
10050                                                                                          400.00
10051                                                                                           40.00
10052                                                                                          272.00
10053                                                                    based on weight (50-100 lbs)
10054                                                                                           75.00
10055                                                                                          272.00
10056                                                                                             272
10057                                                                                             227
10058                                                                                         1000.00
10059                                                                                            2.80
10060                                                                                            8.00
10061                                                                                     application
10062                                                                                          272.00
10063                                                                       based on weight (18+ lbs)
10064                                                                                          500.00
10065                                                                                          272.00
10066                                                                       based on weight (18+ lbs)
10067                                                                                          300.00
10068                                                                                          375.00
10069                                                                                           50.00
10070                                                                                          100.00
10071                                                                                           50.00
10072                                                                                          272.00
10073                                                                                          600.00
10074                                                                                               1
10075                                                            272 ivermectin, 227 pyrantel pamoate
10076                                                                                           75.00
10077                                                                                          272.00
10078                                                                                          500.00
10079                                                                                            4.00
10080                                                                                            1.80
10081                                                                                            6.00
10082                                                                                          272.00
10083                                                                                          272.00
10084                                                                                           60.00
10085                                                                                          390.00
10086                                                                                          272.00
10087                                                                                          100.00
10088                                                                                           10.00
10089                                                                                          600.00
10090                                                                                            7.50
10091                                                                                          375.00
10092                                                                                     unspecified
10093                                                                                     unspecified
10094                                                                                          900.00
10095                                                                                           10.00
10096                                                                                          272.00
10097                                                                                          227.00
10098                                                                                            2.68
10099                                                                                            8.00
10100                                                                                            3.00
10101                                                                                            3.00
10102                                                                                           25.00
10103                                                                                          100.00
10104                                                                                          460.00
10105                                                                                           11.50
10106                                                            272 ivermectin, 227 pyrantel pamoate
10107                                                              8.8% (s)-methoprene, 9.8% fipronil
10108                                                            272 ivermectin, 227 pyrantel pamoate
10109                                                              8.8% (s)-methoprene, 9.8% fipronil
10110                                                                                            2.68
10111                                                            272 ivermectin, 227 pyrantel pamoate
10112                                                                                               1
10113                                                                                   1 bottle/vial
10114                                                                                          500.00
10115                                                                                     unspecified
10116                                                                     based on weight (45-88 lbs)
10117                                                                                          200.00
10118                                                                                            2.68
10119                                                                                       272 , 228
10120                                                                                    small amount
10121                                                                             tablet/pill/capsule
10122                                                                                          170.00
10123                                                                                             500
10124                                                                                          500.00
10125                                                                                          136.00
10126                                                                                            1.00
10127                                                                                          100.00
10128                                                                                          200.00
10129                                                                                          136.00
10130                                                                                     unspecified
10131                                                                                     unspecified
10132                                                                                     unspecified
10133                                                                                     unspecified
10134                                                                                     unspecified
10135                                                                                          300.00
10136                                                                                           75.00
10137                                                                                          200.00
10138                                                                                          100.00
10139                                                                                           50.00
10140                                                                                          100.00
10141                                                                                            1.25
10142                                                                                            1.00
10143                                                                                            2.00
10144                                                                                            2.00
10145                                                                                           75.00
10146                                                                                           40.00
10147                                                                                          250.00
10148                                                                                          200.00
10149                                                                                              10
10150                                                                                            2.90
10151                                                                                     unspecified
10152                                                                                               6
10153                                                                                             200
10154                                                                                            2000
10155                                                                                         2000.00
10156                                                                                          250.00
10157                                                                                           37.50
10158                                                                                          500.00
10159                                                                                         1500.00
10160                                                                                             1.5
10161                                                                                           70.00
10162                                                                                           30.00
10163                                                                                            5.00
10164                                                                                              75
10165                                                                                          750.00
10166                                                                                          375.00
10167                                                                    based on weight (51-100 lbs)
10168                                                                                             750
10169                                                                                              75
10170                                                                    based on weight (51-100 lbs)
10171                                                                                           80.00
10172                                                                                            1.00
10173                                                                                           75.00
10174                                                                                           75.00
10175                                                                                            1.00
10176                                                                                    small amount
10177                                                                                          375.00
10178                                                                                          100.00
10179                                                                                           32.40
10180                                                                                            1.50
10181                                                                                            1.00
10182                                                                                           81.00
10183                                                                                            1.50
10184                                                                                          750.00
10185                                                                                          200.00
10186                                                                                          750.00
10187                                                                                                
10188                                                                        2 tablets/pills/capsules
10189                                                                                          200.00
10190                                                                                          500.00
10191                                                                                          500.00
10192                                                                                            5.00
10193                                                                                           50.00
10194                                                                                          500.00
10195                                                                                     unspecified
10196                                                                                            5.00
10197                                                                                            4.00
10198                                                                       based on weight (55+ lbs)
10199                                                                                            0.50
10200                                                                        based on weight (60 lbs)
10201                                                                                         1000.00
10202                                                                                         1000.00
10203                                                                                          272.00
10204                                                                                          200.00
10205                                                                                          100.00
10206                                                                                           50.00
10207                                                                                           10.00
10208                                                                                          200.00
10209                                                                    based on weight (51-100 lbs)
10210                                                                                           24.00
10211                                                                                            1.50
10212                                                                                          400.00
10213                                                                                          200.00
10214                                                                                           10.00
10215                                                                                           50.00
10216                                                                                           10.00
10217                                                                                          100.00
10218                                                                                           25.00
10219                                                                    based on weight (51-100 lbs)
10220                                                                                            3.50
10221                                                                                           10.00
10222                                                                                          100.00
10223                                                                                          150.00
10224                                                                                           40.00
10225                                                                                           10.00
10226                                                                                           16.00
10227                                                                                            2.00
10228                                                                                           75.00
10229                                                                                            2.00
10230                                                                                               1
10231                                                                                               1
10232                                                                                              10
10233                                                                        2 tablets/pills/capsules
10234                                                                                              10
10235                                                                    based on weight (51-100 lbs)
10236                                                                                            90.5
10237                                                                                           40.00
10238                                                                                          100.00
10239                                                                                           10.00
10240                                                                                          500.00
10241                                                                                           50.00
10242                                                                                          272.00
10243                                                                                            1.50
10244                                                                                           50.00
10245                                                                    based on weight (50-100 lbs)
10246                                                                                           80.00
10247                                                                                            1.00
10248                                                                                            3.00
10249                                                                                     unspecified
10250                                                                                           50.00
10251                                                                                           10.00
10252                                                                                          240.00
10253                                                                                          250.00
10254                                                                                          272.00
10255                                                                                          227.00
10256                                                                                           12.50
10257                                                                                          113.50
10258                                                                                           50.00
10259                                                                                           75.00
10260                                                                                          collar
10261                                                                                            1.00
10262                                                                                           70.00
10263                                                                                           10.00
10264                                                                                    small amount
10265                                                                                            1.00
10266                                                                                            3.00
10267                                                                                           60.00
10268                                                                                            1.00
10269                                                                                          272.00
10270                                                                                            8.00
10271                                                                                              23
10272                                                                                           68.00
10273                                                                    based on weight (51-100 lbs)
10274                                                                     based on weight (40-60 lbs)
10275                                                                    based on weight (51-100 lbs)
10276                                                                     based on weight (41-60 lbs)
10277                                                                                           10.00
10278                                                                                            1.00
10279                                                                                           23.00
10280                                                                                           23.00
10281                                                                                          150.00
10282                                                                                          500.00
10283                                                                                            1.00
10284                                                                                           10.00
10285                                                                                            1.00
10286                                                                                            1.00
10287                                                                                           23.00
10288                                                                                           75.00
10289                                                                                           15.00
10290                                                                                          900.00
10291                                                                                          100.00
10292                                                                                              23
10293                                                                                            9.80
10294                                                                                           23.00
10295                                                                                           75.00
10296                                                                                         1000.00
10297                                                                                            0.60
10298                                                                                            0.70
10299                                                                                           23.00
10300                                                                                            1.00
10301                                                                                         23, 460
10302                                                                                          200.00
10303                                                                                          112.50
10304                                                                                           23.00
10305                                                                                         1000.00
10306                                                                                          250.00
10307                                                                                          250.00
10308                                                                                           75.00
10309                                                                                          100.00
10310                                                                                          240.00
10311                                                                                         1000.00
10312                                                                     based on weight (40-85 lbs)
10313                                                                                             204
10314                                                                                             125
10315                                                                                          200.00
10316                                                                                               1
10317                                                                                          200.00
10318                                                                                            2.00
10319                                                                                            2.00
10320                                                                                             375
10321                                                                                          200.00
10322                                                                                          240.00
10323                                                                                          240.00
10324                                                                    based on weight (85-130 lbs)
10325                                                                                          375.00
10326                                                                                          125.00
10327                                                                                           16.00
10328                                                                                           15.00
10329                                                                                          500.00
10330                                                                                           60.00
10331                                                                                           75.00
10332                                                                                              90
10333                                                                                           105.5
10334                                                                    based on weight (60-120 lbs)
10335                                                                    based on weight (88-123 lbs)
10336                                                                                         1627.00
10337                                                                                          300.00
10338                                                                                          100.00
10339                                                                                          300.00
10340                                                                                          100.00
10341                                                                                            1.00
10342                                                                                            1.00
10343                                                                                             480
10344                                                                                          300.00
10345                                                                             tablet/pill/capsule
10346                                                                                         1620.00
10347                                                                                     unspecified
10348                                                                                     unspecified
10349                                                                                    small amount
10350                                                                                          300.00
10351                                                                                         1620.00
10352                                                                                            1.00
10353                                                                                         1620.00
10354                                                                                           75.00
10355                                                                                         1620.00
10356                                                                                 based on weight
10357                                                                                            1.00
10358                                                                                            1.00
10359                                                                                           40.00
10360                                                                                           75.00
10361                                                                                            1.00
10362                                                                                           20.00
10363                                                                                            1.00
10364                                                                                           50.00
10365                                                                    based on weight (51-100 lbs)
10366                                                                     based on weight (44-88 lbs)
10367                                                                                             272
10368                                                                                          227.00
10369                                                                                           16.08
10370                                                            272 ivermectin, 227 pyrantel pamoate
10371                                                                                           16.08
10372                                                            272 ivermectin, 227 pyrantel pamoate
10373                                                                                            2.68
10374                                                            272 ivermectin, 227 pyrantel pamoate
10375                                                                                            2.68
10376                                                                                           75.00
10377                                                                                          300.00
10378                                                                                           80.00
10379                                                                                         23, 228
10380                                                                                           75.00
10381                                                                                          200.00
10382                                                                                           75.00
10383                                                                                           80.00
10384                                                                                         1000.00
10385                                                                                         1000.00
10386                                                                                         1000.00
10387                                                                                         1000.00
10388                                                                                          150.00
10389                                                                                         1000.00
10390                                                                                          150.00
10391                                                                                          500.00
10392                                                                                           75.00
10393                                                                                          300.00
10394                                                                                          100.00
10395                                                                                           60.00
10396                                                                                           20.00
10397                                                                                           50.00
10398                                                                                           60.00
10399                                                                                          500.00
10400                                                                                     unspecified
10401                                                                                            2.68
10402                                                                                          272.00
10403                                                                     based on weight (45-88 lbs)
10404                                                                                             272
10405                                                                     based on weight (45-88 lbs)
10406                                                                                          272.00
10407                                                                                          136.00
10408                                                                    based on weight (50-100 lbs)
10409                                                           23 milbemycin oxime, 228 praziquantel
10410                                                                                         23, 228
10411                                                                                          136.00
10412                                                                                         23, 228
10413                                                                                          136.00
10414                                                                                            1.00
10415                                                                                          200.00
10416                                                                                          200.00
10417                                                                                            1.75
10418                                                                                           60.00
10419                                                                                           20.00
10420                                                                                          500.00
10421                                                                                          310.00
10422                                                                                          682.00
10423                                                                                           32.00
10424                                                                                            1.75
10425                                                                                          272.00
10426                                                                                            9.70
10427                                                                                         1620.00
10428                                                                                           15.00
10429                                                                                                
10430                                                                                          272.00
10431                                                                                          136.00
10432                                                                                               1
10433                                                                                          272.00
10434                                                                                          272.00
10435                                                                                     unspecified
10436                                                                                     unspecified
10437                                                                                          325.00
10438                                                                                          100.00
10439                                                                                          200.00
10440                                                                                            3.00
10441                                                                                     unspecified
10442                                                                                          100.00
10443                                                                                         1000.00
10444                                                                                          500.00
10445                                                                                     unspecified
10446                                                                                          100.00
10447                                                                                           20.00
10448                                                                                         1000.00
10449                                                                                          100.00
10450                                                                                           20.00
10451                                                                                           19.60
10452                                                                                            4.00
10453                                                                                          156.00
10454                                                                                            4.00
10455                                                                                          170.00
10456                                                                                          500.00
10457                                                                                          500.00
10458                                                                                          500.00
10459                                                                                          500.00
10460                                                                                          136.00
10461                                                                                          100.00
10462                                                                                          100.00
10463                                                                                            1.00
10464                                                                                           25.00
10465                                                                                           60.00
10466                                                                                          100.00
10467                                                                                           10.00
10468                                                                                           25.00
10469                                                                                            8.00
10470                                                                                    small amount
10471                                                                                            8.00
10472                                                                                          500.00
10473                                                                                          100.00
10474                                                                                          272.00
10475                                                                                         1620.00
10476                                                                                            5.00
10477                                                                                   1 bottle/vial
10478                                                                                 based on weight
10479                                                                                          136.00
10480                                                                                          272.00
10481                                                                                          272.00
10482                                                                                          136.00
10483                                                            272 ivermectin, 227 pyrantel pamoate
10484                                                                                          136.00
10485                                                                    based on weight (51-100 lbs)
10486                                                                                          136.00
10487                                                                    based on weight (51-100 lbs)
10488                                                                                          625.00
10489                                                                                           75.00
10490                                                                                          113.50
10491                                                                                            4.00
10492                                                                                          250.00
10493                                                                                          682.00
10494                                                                                            1.00
10495                                                                                          100.00
10496                                                                                          100.00
10497                                                                                          227.00
10498                                                                                          227.00
10499                                                                                         23, 228
10500                                                                                          170.25
10501                                                                                          272.00
10502                                                                                             200
10503                                                                    based on weight (50-100 lbs)
10504                                                                                          136.00
10505                                                                    based on weight (51-100 lbs)
10506                                                                    based on weight (51-100 lbs)
10507                                                                                          272.00
10508                                                                                          227.00
10509                                                                                          272.00
10510                                                                                             272
10511                                                                                             272
10512                                                                                          272.00
10513                                                                                          500.00
10514                                                                                          272.00
10515                                                                                          272.00
10516                                                                                          272.00
10517                                                                                            2.68
10518                                                                                           50.00
10519                                                                                            1.00
10520                                                                                           16.00
10521                                                                                            1.00
10522                                                                                            1.00
10523                                                                                              16
10524                                                                                             200
10525                                                                                               1
10526                                                                                             0.5
10527                                                                                           16.00
10528                                                                                          200.00
10529                                                                                     unspecified
10530                                                                                            8.80
10531                                                                                          810.00
10532                                                                                            8.00
10533                                                                                           70.00
10534                                                                                           15.00
10535                                                                                          200.00
10536                                                                                           15.00
10537                                                                                          300.00
10538                                                                                            4.00
10539                                                                                           23.00
10540                                                                                         1620.00
10541                                                                                            8.00
10542                                                                                          200.00
10543                                                                                           80.00
10544                                                                                            3.00
10545                                                                                           23.00
10546                                                                                         1000.00
10547                                                                                          300.00
10548                                                                                          300.00
10549                                                                                            3.15
10550                                                                                           70.00
10551                                                                                           16.00
10552                                                                                           75.00
10553                                                                                            7.50
10554                                                                                           80.00
10555                                                                                     unspecified
10556                                                                                           16.00
10557                                                                                     unspecified
10558                                                                                          300.00
10559                                                                                          100.00
10560                                                                                          200.00
10561                                                                                          100.00
10562                                                                                           80.00
10563                                                                                          200.00
10564                                                                                          750.00
10565                                                                                     unspecified
10566                                                                                           15.00
10567                                                                                          200.00
10568                                                                                          100.00
10569                                                                                          100.00
10570                                                                                          300.00
10571                                                                                          150.00
10572                                                                                          150.00
10573                                                                                     unspecified
10574                                                                                          100.00
10575                                                                                    small amount
10576                                                                                              75
10577                                                                                              20
10578                                                                                             160
10579                                                                                             500
10580                                                                                    1.9 , 1.9 ml
10581                                                                                         1000.00
10582                                                                                           16.00
10583                                                                    based on weight (60-120 lbs)
10584                                                                                          272.00
10585                                                                                          272.00
10586                                                                                          136.00
10587                                                                                              50
10588                                                                    based on weight (50-100 lbs)
10589                                                                                               1
10590                                                                    based on weight (51-100 lbs)
10591                                                                    based on weight (50-100 lbs)
10592                                                                                           50.00
10593                                                                                          100.00
10594                                                                                              38
10595                                                                                           50.00
10596                                                                                          500.00
10597                                                                                            1.00
10598                                                                                            3.75
10599                                                                                          500.00
10600                                                                                            3.75
10601                                                                                          136.00
10602                                                                                            2.68
10603                                                                                          100.00
10604                                                                                          100.00
10605                                                                                          100.00
10606                                                                                          200.00
10607                                                                                          500.00
10608                                                                                           12.00
10609                                                                                            2.75
10610                                                            272 ivermectin, 227 pyrantel pamoate
10611                                                                                          100.00
10612                                                                                          100.00
10613                                                                                          150.00
10614                                                                                           20.00
10615                                                                                          375.00
10616                                                                                            1.00
10617                                                                                            2.68
10618                                                                                               1
10619                                                                      1.5 tablets/pills/capsules
10620                                                                                          375.00
10621                                                                                           20.00
10622                                                                                          200.00
10623                                                                                          100.00
10624                                                                                 based on weight
10625                                                                                          272.00
10626                                                                                          500.00
10627                                                                                          500.00
10628                                                                                 0.25 inch strip
10629                                                                                          272.00
10630                                                                                          136.00
10631                                                                                          272.00
10632                                                                                           80.00
10633                                                                                          272.00
10634                                                                                           80.00
10635                                                                                           50.00
10636                                                                                          500.00
10637                                                                                          100.00
10638                                                                                          272.00
10639                                                                                           80.00
10640                                                                                          100.00
10641                                                                                         1000.00
10642                                                                                     unspecified
10643                                                                                          100.00
10644                                                                                          100.00
10645                                                                                         1000.00
10646                                                                                          100.00
10647                                                                                          100.00
10648                                                                                          100.00
10649                                                                                          100.00
10650                                                                                             100
10651                                                                                           37.50
10652                                                                                            32.5
10653                                                                                               1
10654                                                                                            1.00
10655                                                                    based on weight (51-100 lbs)
10656                                                                                             100
10657                                                                                          100.00
10658                                                                                              50
10659                                                                                           50.00
10660                                                                                          300.00
10661                                                                                           23.00
10662                                                                                          500.00
10663                                                                                          500.00
10664                                                                                           23.00
10665                                                                                         1000.00
10666                                                                                          500.00
10667                                                                    based on weight (51-100 lbs)
10668                                                                                             500
10669                                                                                              23
10670                                                                                          500.00
10671                                                                       based on weight (55+ lbs)
10672                                                                                          500.00
10673                                                                                          500.00
10674                                                                                            1.00
10675                                                                                          100.00
10676                                                                                          100.00
10677                                                                                          272.00
10678                                                                                     unspecified
10679                                                                                          550.00
10680                                                                                           50.00
10681                                                                                           50.00
10682                                                                                     unspecified
10683                                                                    based on weight (51-100 lbs)
10684                                                                    based on weight (51-100 lbs)
10685                                                                                 based on weight
10686                                                                                     unspecified
10687                                                                                      1-2 scoops
10688                                                                                               1
10689                                                                    based on weight (51-100 lbs)
10690                                                                                          750.00
10691                                                                                          500.00
10692                                                                                            6.00
10693                                                                                     unspecified
10694                                                                    based on weight (51-100 lbs)
10695                                                                                           10.00
10696                                                                                     unspecified
10697                                                                                     unspecified
10698                                                                                          468.75
10699                                                                                           20.00
10700                                                                                          272.00
10701                                                                                     unspecified
10702                                                                                          550.00
10703                                                                                           50.00
10704                                                                                           50.00
10705                                                                                          500.00
10706                                                                                     unspecified
10707                                                                    based on weight (51-100 lbs)
10708                                                                                          100.00
10709                                                                                          200.00
10710                                                                                           50.00
10711                                                                    based on weight (51-100 lbs)
10712                                                                                 based on weight
10713                                                                                     unspecified
10714                                                                                      1-2 scoops
10715                                                                                               1
10716                                                                                           50.00
10717                                                                    based on weight (51-100 lbs)
10718                                                                                    small amount
10719                                                                                           75.00
10720                                                                                         1000.00
10721                                                                                            0.30
10722                                                                                            1.00
10723                                                                                            1.30
10724                                                                                           14.00
10725                                                                    based on weight (51-100 lbs)
10726                                                                                          powder
10727                                                                                     unspecified
10728                                                                                            0.90
10729                                                                                            0.50
10730                                                                                            0.02
10731                                                                                            0.90
10732                                                                                          375.00
10733                                                                                          300.00
10734                                                                                           50.00
10735                                                                                            3.00
10736                                                                                          375.00
10737                                                                                           50.00
10738                                                                                           50.00
10739                                                                                            0.50
10740                                                                                     unspecified
10741                                                                                          500.00
10742                                                                                            0.50
10743                                                                                     unspecified
10744                                                                                          272.00
10745                                                                                          272.00
10746                                                                                          272.00
10747                                                                                           37.00
10748                                                                                          272.00
10749                                                                                          375.00
10750                                                                                            3.00
10751                                                                                     unspecified
10752                                                                                            2.00
10753                                                                                            1.00
10754                                                                                            4.00
10755                                                            272 ivermectin, 227 pyrantel pamoate
10756                                                                                               1
10757                                                                                          272.00
10758                                                                                            2.68
10759                                                                                            8.04
10760                                                                                          272.00
10761                                                                                            8.04
10762                                                                                          272.00
10763                                                                                          250.00
10764                                                                                          100.00
10765                                                                                          272.00
10766                                                                                             272
10767                                                                                          500.00
10768                                                                                           12.00
10769                                                                                 based on weight
10770                                                                                          272.00
10771                                                                                          136.00
10772                                                                                           80.00
10773                                                                                          272.00
10774                                                                                           30.00
10775                                                                                           60.00
10776                                                                                           10.00
10777                                                                                          300.00
10778                                                                                           60.00
10779                                                                                          500.00
10780                                                                    based on weight (51-100 lbs)
10781                                                                  based on weight (60.1-121 lbs)
10782                                                                                             300
10783                                                                                              10
10784                                                                                          500.00
10785                                                                                          500.00
10786                                                                                          600.00
10787                                                                                           50.00
10788                                                                                            3.00
10789                                                                                            8.00
10790                                                                                            0.80
10791                                                                                           60.00
10792                                                            272 ivermectin, 227 pyrantel pamoate
10793                                                                                            8.10
10794                                                                    based on weight (51-100 lbs)
10795                                                                                          272.00
10796                                                            272 ivermectin, 227 pyrantel pamoate
10797                                                                                          400.00
10798                                                                                          400.00
10799                                                                                            0.50
10800                                                                                          100.00
10801                                                                                            9.10
10802                                                                                          100.00
10803                                                                                            1.50
10804                                                                                           80.00
10805                                                                                            1.00
10806                                                                                          300.00
10807                                                                                           80.00
10808                                                                                           60.00
10809                                                                                           75.00
10810                                                                                          200.00
10811                                                                                          300.00
10812                                                                                           80.00
10813                                                                                            2.50
10814                                                                                           75.00
10815                                                                                          500.00
10816                                                                                          200.00
10817                                                                                           60.00
10818                                                                                           75.00
10819                                                                                            1.00
10820                                                                                            1.00
10821                                                                                           75.00
10822                                                                                          500.00
10823                                                                                          500.00
10824                                                                                            0.17
10825                                                                                     unspecified
10826                                                                                          499.00
10827                                                                                          collar
10828                                                                                           16.00
10829                                                                                          500.00
10830                                                                    based on weight (51-100 lbs)
10831                                                                                           75.00
10832                                                                                           16.00
10833                                                                                          500.00
10834                                                                                          500.00
10835                                                                                           16.00
10836                                                                                           75.00
10837                                                                                     unspecified
10838                                                                                           16.00
10839                                                                                           75.00
10840                                                                                          272.00
10841                                                                                               1
10842                                                                                               1
10843                                                                                          1 dose
10844                                                                                            2.00
10845                                                                                          200.00
10846                                                                       based on weight (60+ lbs)
10847                                                                                            6.00
10848                                                                                           16.00
10849                                                                    based on weight (51-100 lbs)
10850                                                                                           105.5
10851                                                                                            75.5
10852                                                                                           50.00
10853                                                                                    small amount
10854                                                                                          272.00
10855                                                                                            2.15
10856                                                                                         1250.00
10857                                                                                          272.00
10858                                                                                            2.68
10859                                                                                           25.00
10860                                                                                            1.00
10861                                                                                            1.00
10862                                                                                           25.00
10863                                                                                             1.5
10864                                                                                          500.00
10865                                                                    based on weight (51-100 lbs)
10866                                                                     based on weight (44-88 lbs)
10867                                                                                              25
10868                                                                                           23.00
10869                                                                                            2.68
10870                                                                    based on weight (51-100 lbs)
10871                                                                     based on weight (45-88 lbs)
10872                                                                                           25.00
10873                                                                                           50.00
10874                                                                    based on weight (51-100 lbs)
10875                                                                                            2.68
10876                                                                                           25.00
10877                                                                    based on weight (51-100 lbs)
10878                                                                   based on weight (24.1-60 lbs)
10879                                                                                         1000.00
10880                                                                                          950.00
10881                                                                                          250.00
10882                                                                                           60.00
10883                                                                                           55.00
10884                                                                                         1000.00
10885                                                                                          950.00
10886                                                                                          272.00
10887                                                                                           50.00
10888                                                                                          272.00
10889                                                                                            2.68
10890                                                                                          272.00
10891                                                                                          272.00
10892                                                                     based on weight (45-88 lbs)
10893                                                                                             272
10894                                                                                              50
10895                                                                                          100.00
10896                                                                                               7
10897                                                                                          272.00
10898                                                                     based on weight (45-88 lbs)
10899                                                                                                
10900                                                                                             272
10901                                                                                     application
10902                                                                                           75.00
10903                                                                                          500.00
10904                                                                                            8.00
10905                                                                                     application
10906                                                                                          500.00
10907                                                                                           55.00
10908                                                                                          227.00
10909                                                                                         1000.00
10910                                                                                            1.60
10911                                                                                           20.00
10912                                                                                          227.00
10913                                                                                          272.00
10914                                                                                           50.00
10915                                                                                            0.20
10916                                                                                            3.00
10917                                                                                            1.00
10918                                                                                          250.00
10919                                                                                            1.00
10920                                                                                           25.00
10921                                                                                            1.00
10922                                                                                           62.50
10923                                                                                          175.00
10924                                                                                           10.00
10925                                                                                             400
10926                                                                                               5
10927                                                                                            1.00
10928                                                                    based on weight (60-120 lbs)
10929                                                                    based on weight (50-100 lbs)
10930                                                                                             136
10931                                                                                          272.00
10932                                                                                              90
10933                                                                                              75
10934                                                                                 based on weight
10935                                                                                           96.00
10936                                                                                            1.00
10937                                                                                          300.00
10938                                                                    based on weight (50-100 lbs)
10939                                                                                            0.25
10940                                                                                           50.00
10941                                                                                          272.00
10942                                                                                         1000.00
10943                                                                                          100.00
10944                                                                                         1000.00
10945                                                                                            5.00
10946                                                                                            1.00
10947                                                                                          272.00
10948                                                                                            4.00
10949                                                                                          272.00
10950                                                                                           110.5
10951                                                                                           50.00
10952                                                                                          272.00
10953                                                                    based on weight (89-132 lbs)
10954                                                                                          272.00
10955                                                                                          136.00
10956                                                                                          272.00
10957                                                                                          136.00
10958                                                                                          272.00
10959                                                                    based on weight (89-132 lbs)
10960                                                                                          500.00
10961                                                                                           15.00
10962                                                                                           20.00
10963                                                                                           60.00
10964                                                                                          100.00
10965                                                                                          200.00
10966                                                                                              75
10967                                                                                              66
10968                                                                                            1.00
10969                                                                                            1.00
10970                                                                    based on weight (50-100 lbs)
10971                                                                     based on weight (44-88 lbs)
10972                                                                                          500.00
10973                                                                                            6.00
10974                                                                                            1.00
10975                                                                                           50.00
10976                                                                                            0.13
10977                                                                                            2.60
10978                                                                                          110.00
10979                                                                                           35.00
10980                                                                                            1.00
10981                                                                                          105.00
10982                                                                                           50.00
10983                                                                                          600.00
10984                                                                                            2.00
10985                                                                                            1.00
10986                                                                                           50.00
10987                                                                                          150.00
10988                                                                                          250.00
10989                                                                                            1.00
10990                                                                                            1.00
10991                                                                                           50.00
10992                                                                                           50.00
10993                                                                                          375.00
10994                                                                                            1.00
10995                                                                                            2.00
10996                                                                                          500.00
10997                                                                                          272.00
10998                                                                                            1.00
10999                                                                                          375.00
11000                                                                                           68.00
11001                                                                                          500.00
11002                                                                                            1.00
11003                                                                    based on weight (60-121 lbs)
11004                                                                                          500.00
11005                                                                                          325.00
11006                                                                                              75
11007                                                                                              75
11008                                                                                     unspecified
11009                                                                    based on weight (50-100 lbs)
11010                                                                    based on weight (51-100 lbs)
11011                                                                    based on weight (51-100 lbs)
11012                                                                                          200.00
11013                                                                                           20.00
11014                                                                                           10.00
11015                                                                                          200.00
11016                                                                                     unspecified
11017                                                                                           20.00
11018                                                                                          300.00
11019                                                                                          100.00
11020                                                                                           50.00
11021                                                                                     unspecified
11022                                                                                          240.00
11023                                                                                           20.00
11024                                                                                            5.90
11025                                                                                          205.00
11026                                                                                           65.00
11027                                                                                            0.18
11028                                                                                           28.00
11029                                                                                           29.50
11030                                                                                          272.00
11031                                                                                          228.00
11032                                                                                            2.68
11033                                                                                          272.00
11034                                                                                          263.00
11035                                                                    based on weight (51-100 lbs)
11036                                                                  based on weight (60.1-121 lbs)
11037                                                                    based on weight (51-100 lbs)
11038                                                                  based on weight (60.1-120 lbs)
11039                                                                                            1.00
11040                                                                                            1.00
11041                                                                                            1.00
11042                                                                                            1.00
11043                                                                                          375.00
11044                                                                                           80.00
11045                                                                                            4.00
11046                                                                                           10.00
11047                                                                                          750.00
11048                                                                                            4.00
11049                                                                                          750.00
11050                                                                                          272.00
11051                                                                                            8.00
11052                                                                                               1
11053                                                                                          204.00
11054                                                                                           40.00
11055                                                                                           10.00
11056                                                                                           23.00
11057                                                                                          810.00
11058                                                                                            7.00
11059                                                                                           37.50
11060                                                                                            1.00
11061                                                                                            5.00
11062                                                                                            1.00
11063                                                                                          100.00
11064                                                                                            1.00
11065                                                              460 lufenuron, 23 milbemycin oxime
11066                                                                                            1000
11067                                                                                              50
11068                                                                                            2.50
11069                                                                                               1
11070                                                                                               1
11071                                                                                              50
11072                                                                                           11.50
11073                                                                                         1000.00
11074                                                                                           50.00
11075                                                                                            5.00
11076                                                                                          200.00
11077                                                                                           50.00
11078                                                                                           50.00
11079                                                                                           50.00
11080                                                                                          100.00
11081                                                                                            8.00
11082                                                                                           50.00
11083                                                                                           50.00
11084                                                                                          300.00
11085                                                                                     unspecified
11086                                                                                           35.00
11087                                                                                           50.00
11088                                                                                     unspecified
11089                                                                                            5.00
11090                                                                                          136.00
11091                                                                                              38
11092                                                                                         1620.00
11093                                                               8 dexamethasone, 400 enrofloxacin
11094                                                                                          500.00
11095                                                                                          272.00
11096                                                                                          272.00
11097                                                                                           16.00
11098                                                                                          200.00
11099                                                                                          272.00
11100                                                                                          250.00
11101                                                                                          272.00
11102                                                                                          200.00
11103                                                                                          500.00
11104                                                                                          250.00
11105                                                                                            5.00
11106                                                                                           55.00
11107                                                                                           16.00
11108                                                                                          100.00
11109                                                                                            1.00
11110                                                                                           50.00
11111                                                                                           15.00
11112                                                                                             200
11113                                                                                           60.00
11114                                                                                           60.00
11115                                                                                          200.00
11116                                                                                          300.00
11117                                                                                           20.00
11118                                                                                          300.00
11119                                                                                          500.00
11120                                                                                           30.00
11121                                                                                           12.00
11122                                                                                           16.90
11123                                                                                            6.80
11124                                                                                         1000.00
11125                                                                                          272.00
11126                                                                                           60.00
11127                                                                                          200.00
11128                                                                                          300.00
11129                                                                                           20.00
11130                                                                                            0.01
11131                                                                                           50.00
11132                                                                                           30.00
11133                                                                                          272.00
11134                                                                     based on weight (45-88 lbs)
11135                                                                                           60.00
11136                                                                                           16.90
11137                                                                                           12.00
11138                                                                                           30.00
11139                                                                                          500.00
11140                                                                                          250.00
11141                                                                                           30.00
11142                                                                                     unspecified
11143                                                                                           60.00
11144                                                                                     unspecified
11145                                                                                     unspecified
11146                                                                                          500.00
11147                                                                                           50.00
11148                                                                                           60.00
11149                                                                                           50.00
11150                                                                                          100.00
11151                                                                                          600.00
11152                                                                                     unspecified
11153                                                                                     unspecified
11154                                                                                           50.00
11155                                                                                     unspecified
11156                                                                                     unspecified
11157                                                                                           68.00
11158                                                                                     unspecified
11159                                                                                     unspecified
11160                                                                                           68.00
11161                                                                                           20.00
11162                                                                                           34.00
11163                                                                                     unspecified
11164                                                                                           68.00
11165                                                                                     unspecified
11166                                                                                              42
11167                                                                                           34.00
11168                                                                                          272.00
11169                                                                                           68.00
11170                                                                                           50.00
11171                                                                                           20.00
11172                                                                                          100.00
11173                                                                                           10.00
11174                                                                                          375.00
11175                                                                                           75.00
11176                                                                                           50.00
11177                                                                                           60.00
11178                                                                                          100.00
11179                                                                                          100.00
11180                                                                                            1.20
11181                                                                                           50.00
11182                                                                                     unspecified
11183                                                                                            7.00
11184                                                                                          272.00
11185                                                                                          272.00
11186                                                                    based on weight (50-100 lbs)
11187                                                                                           16.00
11188                                                                                           25.00
11189                                                                                     unspecified
11190                                                                                           16.00
11191                                                                                           12.00
11192                                                                                          150.00
11193                                                                                          300.00
11194                                                                                           16.00
11195                                                                                          100.00
11196                                                                                         1620.00
11197                                                                                         1620.00
11198                                                                                         1620.00
11199                                                                                          500.00
11200                                                                                            0.25
11201                                                                                          300.00
11202                                                                                           50.00
11203                                                                                           70.00
11204                                                                                          125.00
11205                                                                                           50.00
11206                                                                                          272.00
11207                                                                                          272.00
11208                                                                  based on weight (50.1-100 lbs)
11209                                                                                          250.00
11210                                                                                     unspecified
11211                                                                                     unspecified
11212                                                                    based on weight (51-100 lbs)
11213                                                                                     unspecified
11214                                                                                             500
11215                                                                                          100.00
11216                                                                                           75.00
11217                                                                                          250.00
11218                                                                                          200.00
11219                                                                                            4.00
11220                                                                                          500.00
11221                                                                                          500.00
11222                                                                                           60.00
11223                                                                                        12510.00
11224                                                                                     unspecified
11225                                                                                          500.00
11226                                                                                           50.00
11227                                                                                              64
11228                                                                                     unspecified
11229                                                                    based on weight (51-100 lbs)
11230                                                                                              66
11231                                                                                           23.00
11232                                                                                         1000.00
11233                                                                                               1
11234                                                                                           16.00
11235                                                                                           50.00
11236                                                                                            8.00
11237                                                                                           50.00
11238                                                                                           50.00
11239                                                                                           50.00
11240                                                                                          100.00
11241                                                              27 milbemycin oxime, 1620 spinosad
11242                                                                    based on weight (51-100 lbs)
11243                                                                                           23.00
11244                                                                                         1620.00
11245                                                                                           23.00
11246                                                                                          620.00
11247                                                                                          250.00
11248                                                                                          500.00
11249                                                                                          150.00
11250                                                                                           50.00
11251                                                                                            0.60
11252                                                                                           10.00
11253                                                                                            7.50
11254                                                                                            1.00
11255                                                                                          483.00
11256                                                                                            0.60
11257                                                                                           15.00
11258                                                                                            2.00
11259                                                                                          200.00
11260                                                                                            1.00
11261                                                                                            2.00
11262                                                                                            7.50
11263                                                                                            2.00
11264                                                                                            1.00
11265                                                                                          200.00
11266                                                                                            1.00
11267                                                                                            1.00
11268                                                                                            1.00
11269                                                                                            0.60
11270                                                                                           15.00
11271                                                                                            1.00
11272                                                                                            8.00
11273                                                                                          483.00
11274                                                                                            0.35
11275                                                                                           15.00
11276                                                                                        23 , 460
11277                                                                                            0.30
11278                                                                                           10.00
11279                                                                                            0.30
11280                                                                                           10.00
11281                                                                                           10.00
11282                                                                                          600.00
11283                                                                                            0.30
11284                                                                                          300.00
11285                                                                                           10.00
11286                                                                                            0.20
11287                                                                                          600.00
11288                                                                                          300.00
11289                                                                                          300.00
11290                                                                                          300.00
11291                                                                    based on weight (51-100 lbs)
11292                                                                    based on weight (60-120 lbs)
11293                                                                    based on weight (51-100 lbs)
11294                                                                     based on weight (24-60 lbs)
11295                                                                    based on weight (51-100 lbs)
11296                                                                    based on weight (60-120 lbs)
11297                                                                                          227.00
11298                                                                                            1.00
11299                                                                                            2.50
11300                                                                                           50.00
11301                                                                                               1
11302                                                                                            1.00
11303                                                                                            1.00
11304                                                                                          227.00
11305                                                                                               1
11306                                                                                          200.00
11307                                                                    based on weight (50-100 lbs)
11308                                                                                          136.00
11309                                                                                            1.00
11310                                                                                            1.00
11311                                                                    based on weight (50-100 lbs)
11312                                                                     based on weight (44-88 lbs)
11313                                                                                          150.00
11314                                                                                          227.00
11315                                                                             tablet/pill/capsule
11316                                                                             tablet/pill/capsule
11317                                                                             tablet/pill/capsule
11318                                                                             tablet/pill/capsule
11319                                                                                          200.00
11320                                                                                          200.00
11321                                                                                            1.00
11322                                                                                          227.00
11323                                                                                            3.25
11324                                                                                            1.10
11325                                                                                            1.00
11326                                                                    based on weight (51-100 lbs)
11327                                                                    based on weight (60-120 lbs)
11328                                                                                            1.00
11329                                                                                            1.00
11330                                                                                            1.00
11331                                                                                         1620.00
11332                                                                                          150.00
11333                                                                                           16.00
11334                                                                                            2.00
11335                                                                                          250.00
11336                                                                                            3.00
11337                                                                                           25.00
11338                                                                                    small amount
11339                                                                                          200.00
11340                                                                                         10, 100
11341                                                                                              75
11342                                                                                            75.5
11343                                                                                           25.00
11344                                                                                            1.00
11345                                                                                            1.00
11346                                                                                 moderate amount
11347                                                                                          272.00
11348                                                                                          136.00
11349                                                                                 moderate amount
11350                                                                                    small amount
11351                                                                                               1
11352                                                                                               1
11353                                                                                 136, 136, 680.4
11354                                                                                               2
11355                                                                                          150.00
11356                                                                                     unspecified
11357                                                                                          375.00
11358                                                                                          300.00
11359                                                                                           78.00
11360                                                                                     unspecified
11361                                                                                            0.60
11362                                                                                            1.00
11363                                                                                              75
11364                                                                                            0.60
11365                                                                                          500.00
11366                                                                                              75
11367                                                                                            0.60
11368                                                                    based on weight (50-100 lbs)
11369                                                                                            0.30
11370                                                                                            0.30
11371                                                                                          500.00
11372                                                                                          300.00
11373                                                                                          272.00
11374                                                                                            0.30
11375                                                                                            0.30
11376                                                                                            0.15
11377                                                                                            62.5
11378                                                                                          272.00
11379                                                                                          500.00
11380                                                                                            0.15
11381                                                                                            1.00
11382                                                                                          250.00
11383                                                                                           50.00
11384                                                                                           10.00
11385                                                                                 based on weight
11386                                                                                 based on weight
11387                                                                                    pack/package
11388                                                                        based on weight (40 lbs)
11389                                                                                            3.00
11390                                                                                            1.00
11391                                                                                          250.00
11392                                                                                          125.00
11393                                                                                          350.00
11394                                                                                    small amount
11395                                                                                          100.00
11396                                                                                           50.00
11397                                                                                            1.00
11398                                                                                           10.00
11399                                                                                            0.01
11400                                                                                           75.00
11401                                                                                          375.00
11402                                                                                           75.00
11403                                                                                           28.00
11404                                                                                           10.00
11405                                                                                           30.00
11406                                                                                          100.00
11407                                                                                          500.00
11408                                                                                           60.00
11409                                                                                            4.00
11410                                                                                            2.00
11411                                                                                          500.00
11412                                                                                           75.00
11413                                                                                           60.00
11414                                                                                           50.00
11415                                                                                     unspecified
11416                                                                                          500.00
11417                                                                                           50.00
11418                                                                                          500.00
11419                                                                                            1.00
11420                                                                                          200.00
11421                                                                                            0.88
11422                                                                                            1.00
11423                                                                                            3.03
11424                                                                                            7.58
11425                                                                                              38
11426                                                                                           23.00
11427                                                                                          460.00
11428                                                                                            2.40
11429                                                                                            0.50
11430                                                                                           50.00
11431                                                                                            2.50
11432                                                                                          120.00
11433                                                                                          100.00
11434                                                                                          150.00
11435                                                                                          100.00
11436                                                                    based on weight (51-100 lbs)
11437                                                                    based on weight (51-100 lbs)
11438                                                                                         1000.00
11439                                                                                            2.50
11440                                                                                           23.00
11441                                                              460 lufenuron, 23 milbemycin oxime
11442                                                                                            8.00
11443                                                                                           23.00
11444                                                                                            1.00
11445                                                                                           23.00
11446                                                                                            4.70
11447                                                                                          150.00
11448                                                                                          150.00
11449                                                                                            5.00
11450                                                                                           50.00
11451                                                                                            1.00
11452                                                                                           23.00
11453                                                                                            4.70
11454                                                                                          375.00
11455                                                                                          375.00
11456                                                                                          200.00
11457                                                                                            3.75
11458                                                                                          323.00
11459                                                                                            4.70
11460                                                                                           23.00
11461                                                                                              75
11462                                                                                            4.70
11463                                                                                           23.00
11464                                                                                     unspecified
11465                                                                                           10.70
11466                                                                                           10.70
11467                                                                                            1.00
11468                                                                                            2.80
11469                                                                                            7.10
11470                                                                                     unspecified
11471                                                                                     unspecified
11472                                                                                          240.00
11473                                                                       based on weight (50+ lbs)
11474                                                                                              42
11475                                                                                          272.00
11476                                                                                           68.00
11477                                                                    based on weight (51-100 lbs)
11478                                                                                            1.00
11479                                                                                            1.00
11480                                                                                            3.75
11481                                                                                          227.00
11482                                                                                            1.14
11483                                                                                            3.75
11484                                                                                           75.00
11485                                                                                           75.00
11486                                                                                          500.00
11487                                                                                           15.00
11488                                                                                          120.00
11489                                                                                            3.00
11490                                                                                          100.00
11491                                                                                          300.00
11492                                                                                            5.00
11493                                                                                     unspecified
11494                                                                                           75.00
11495                                                                                           20.00
11496                                                                                            2.00
11497                                                                                          500.00
11498                                                                                           75.00
11499                                                                                           20.00
11500                                                                                            4.00
11501                                                                                           10.00
11502                                                                                            1.00
11503                                                                                          120.00
11504                                                                                            1.00
11505                                                                                            1.00
11506                                                                                            1.00
11507                                                                                            1.00
11508                                                                                           75.00
11509                                                                    based on weight (50-100 lbs)
11510                                                                                          272.00
11511                                                                                             125
11512                                                                                            8.00
11513                                                                                            8.00
11514                                                                                          272.00
11515                                                                                            0.50
11516                                                                                           10.00
11517                                                                                          227.00
11518                                                                                            0.50
11519                                                                                            1.00
11520                                                                                          262.00
11521                                                                                            0.50
11522                                                                                          262.00
11523                                                                                            0.50
11524                                                                                            0.50
11525                                                                                            7.50
11526                                                                                           20.00
11527                                                                                            0.50
11528                                                                                           20.00
11529                                                                                            0.50
11530                                                                                           25.00
11531                                                                                           60.00
11532                                                                                           60.00
11533                                                                                          460.00
11534                                                                                           23.00
11535                                                                                           37.50
11536                                                                                         23, 460
11537                                                                    based on weight (51-100 lbs)
11538                                                                    based on weight (51-100 lbs)
11539                                                                                          100.00
11540                                                                                          300.00
11541                                                                                           30.00
11542                                                                                          425.00
11543                                                                                          250.00
11544                                                                                          250.00
11545                                                                    based on weight (50-100 lbs)
11546                                                                                     unspecified
11547                                                                                         23, 460
11548                                                                                           20.00
11549                                                                                            2.00
11550                                                                                          500.00
11551                                                                                     unspecified
11552                                                                                          300.00
11553                                                                                           20.00
11554                                                                                          150.00
11555                                                                                           10.00
11556                                                                                           10.00
11557                                                                                            5.00
11558                                                                                            1.00
11559                                                                                          272.00
11560                                                                    based on weight (51-100 lbs)
11561                                                                    based on weight (51-100 lbs)
11562                                                                    based on weight (60-121 lbs)
11563                                                                                            1000
11564                                                                                               1
11565                                                                                             300
11566                                                                                              75
11567                                                                    based on weight (51-100 lbs)
11568                                                                    based on weight (60-121 lbs)
11569                                                                                          170.00
11570                                                                                     unspecified
11571                                                                                            1.90
11572                                                                                          500.00
11573                                                                                          300.00
11574                                                                                           60.00
11575                                                                                     unspecified
11576                                                                                     unspecified
11577                                                                                     unspecified
11578                                                                                     unspecified
11579                                                                                          750.00
11580                                                                                          500.00
11581                                                                                          750.00
11582                                                                                           60.00
11583                                                                                            1.00
11584                                                                                            1.00
11585                                                                                            5.00
11586                                                                                            1.00
11587                                                                                          240.00
11588                                                                                            8.00
11589                                                                       based on weight (50+ lbs)
11590                                                                                              42
11591                                                                                          272.00
11592                                                                                          136.00
11593                                                                    based on weight (51-100 lbs)
11594                                                                                            1.00
11595                                                                                            1.00
11596                                                                    based on weight (51-100 lbs)
11597                                                                                          272.00
11598                                                                                            9.80
11599                                                                     based on weight (43-88 lbs)
11600                                                                    based on weight (51-100 lbs)
11601                                                                                          136.00
11602                                                                                          272.00
11603                                                                                           50.00
11604                                                                                          272.00
11605                                                                                           16.00
11606                                                                                           16.00
11607                                                                                          300.00
11608                                                                                            2.00
11609                                                                                            1.00
11610                                                                                            2.90
11611                                                                                           75.00
11612                                                                                            2.80
11613                                                                                           30.00
11614                                                                                          200.00
11615                                                                                          200.00
11616                                                                                           16.00
11617                                                                                           75.00
11618                                                                                          300.00
11619                                                                                           75.00
11620                                                                                     unspecified
11621                                                                                     unspecified
11622                                                                                          300.00
11623                                                                                           16.00
11624                                                                                           75.00
11625                                                                                          300.00
11626                                                                                           40.00
11627                                                                                               1
11628                                                                                               1
11629                                                                                            4.00
11630                                                                                               1
11631                                                                                            1.00
11632                                                                                            1.00
11633                                                            272 ivermectin, 227 pyrantel pamoate
11634                                                                                             136
11635                                                                                            52.5
11636                                                                                             100
11637                                                                                     unspecified
11638                                                                                           80.00
11639                                                                                          272.00
11640                                                                                          204.00
11641                                                           23 milbemycin oxime, 228 praziquantel
11642                                                                                           50.00
11643                                                                                         3000.00
11644                                                                                          500.00
11645                                                                                          250.00
11646                                                                                            1.00
11647                                                                                           50.00
11648                                                                                          100.00
11649                                                                                            1.00
11650                                                                                            1.00
11651                                                                    based on weight (51-100 lbs)
11652                                                                    based on weight (51-100 lbs)
11653                                                                    based on weight (60-120 lbs)
11654                                                                    based on weight (51-100 lbs)
11655                                                                    based on weight (60-120 lbs)
11656                                                                    based on weight (51-100 lbs)
11657                                                                                           25.00
11658                                                                                            0.50
11659                                                                                             1.5
11660                                                                    based on weight (50-100 lbs)
11661                                                                    based on weight (51-100 lbs)
11662                                                                     based on weight (44-88 lbs)
11663                                                                                              75
11664                                                                    based on weight (88-123 lbs)
11665                                                                                              16
11666                                                                                     application
11667                                                                                     application
11668                                                                                            6.25
11669                                                                                             0.5
11670                                                                                         1125.00
11671                                                                                     application
11672                                                                                          200.00
11673                                                                                                
11674                                                                                          500.00
11675                                                                                          500.00
11676                                                                                            1.80
11677                                                                                            0.80
11678                                                                    based on weight (51-100 lbs)
11679                                                                                            0.80
11680                                                                                 based on weight
11681                                                                    based on weight (51-100 lbs)
11682                                                                                            1.80
11683                                                                    based on weight (51-100 lbs)
11684                                                                                              66
11685                                                                                          170.00
11686                                                                                            0.80
11687                                                                                           80.00
11688                                                                                            0.60
11689                                                                                            1.80
11690                                                                                          500.00
11691                                                                                     unspecified
11692                                                                                     unspecified
11693                                                                                     as directed
11694                                                                                          810.00
11695                                                                                    small amount
11696                                                                                           23.00
11697                                                                                           23.00
11698                                                                                            66.5
11699                                                                                            1.00
11700                                                                                            1.00
11701                                                                                     unspecified
11702                                                            272 ivermectin, 227 pyrantel pamoate
11703                                                                                          272.00
11704                                                                                         1000.00
11705                                                                                           16.00
11706                                                                                           20.00
11707                                                                                           75.00
11708                                                                                          272.00
11709                                                                                     unspecified
11710                                                                                     unspecified
11711                                                                                            2.68
11712                                                                                          500.00
11713                                                                                            1.00
11714                                                                                            1.00
11715                                                                                            1.00
11716                                                                                          150.00
11717                                                                                            5.00
11718                                                                                           23.00
11719                                                                                     as directed
11720                                                                                           75.00
11721                                                                                          400.00
11722                                                                                     unspecified
11723                                                                                     unspecified
11724                                                                                            3.00
11725                                                                                             125
11726                                                                                          150.00
11727                                                                                            1.00
11728                                                                                            1.00
11729                                                                                            1.00
11730                                                                                          300.00
11731                                                                                           16.00
11732                                                                                          150.00
11733                                                                                           10.00
11734                                                                                         1000.00
11735                                                                    based on weight (51-100 lbs)
11736                                                                                            1.00
11737                                                                                          500.00
11738                                                                                            2.00
11739                                                                                          600.00
11740                                                                                          100.00
11741                                                                                               1
11742                                                                                   1 bottle/vial
11743                                                                                          500.00
11744                                                                                            1.00
11745                                                                                           20.00
11746                                                                                          425.00
11747                                                                                          125.00
11748                                                                                          375.00
11749                                                                                           68.00
11750                                                                                         1000.00
11751                                                                                          115.00
11752                                                                                          500.00
11753                                                                                           25.00
11754                                                                                            5.00
11755                                                                                           50.00
11756                                                                                            0.54
11757                                                                                          115.00
11758                                                                                           50.00
11759                                                                                          500.00
11760                                                                                            2.30
11761                                                                                          250.00
11762                                                                                          375.00
11763                                                                                           25.00
11764                                                                                          500.00
11765                                                                                          240.00
11766                                                                                           60.00
11767                                                                                          250.00
11768                                                                                            2.00
11769                                                                                            2.60
11770                                                                                          540.00
11771                                                                                            1.00
11772                                                                                          115.00
11773                                                                                           50.00
11774                                                                                          500.00
11775                                                                                           25.00
11776                                                                                            1.00
11777                                                                                          500.00
11778                                                                                          500.00
11779                                                                                            7.50
11780                                                                                          300.00
11781                                                                                          227.00
11782                                                                                          200.00
11783                                                                                           10.00
11784                                                                                          300.00
11785                                                                                           50.00
11786                                                                                            8.00
11787                                                                                          250.00
11788                                                                                          100.00
11789                                                                                           50.00
11790                                                                                              15
11791                                                                                          100.00
11792                                                                                          227.00
11793                                                                                           68.00
11794                                                                                            5.00
11795                                                                                          272.00
11796                                                                                          136.00
11797                                                                                          272.00
11798                                                                                          136.00
11799                                                                                          200.00
11800                                                                                          227.00
11801                                                                                          136.00
11802                                                                                         23, 460
11803                                                                                           34.00
11804                                                                                            5.00
11805                                                                                           50.00
11806                                                                                     unspecified
11807                                                                                           50.00
11808                                                                                            1.00
11809                                                                                          500.00
11810                                                                                           75.00
11811                                                                                            0.25
11812                                                                                               1
11813                                                                                         23, 460
11814                                                                       based on weight (55+ lbs)
11815                                                                                              75
11816                                                                                              75
11817                                                              460 lufenuron, 23 milbemycin oxime
11818                                                                                          500.00
11819                                                                                           12.00
11820                                                                                          120.00
11821                                                                                            3.00
11822                                                                    based on weight (51-100 lbs)
11823                                                                                          25 lbs
11824                                                                    based on weight (89-132 lbs)
11825                                                                  based on weight (60.1-121 lbs)
11826                                                                                             125
11827                                                                                            3.75
11828                                                                                          500.00
11829                                                                                          120.00
11830                                                                                          900.00
11831                                                                                          136.00
11832                                                            272 ivermectin, 227 pyrantel pamoate
11833                                                                                          57, 68
11834                                                                                           30.00
11835                                                                    based on weight (51-100 lbs)
11836                                                                      based on weight (0-25 lbs)
11837                                                                  based on weight (60.1-121 lbs)
11838                                                                                           30.00
11839                                                                                          250.00
11840                                                                                         20, 200
11841                                                                                          120.00
11842                                                                                        10325.00
11843                                                                                          250.00
11844                                                                                         20, 200
11845                                                                                          120.00
11846                                                                                         10, 325
11847                                                                    based on weight (51-100 lbs)
11848                                                                       based on weight (<25 lbs)
11849                                                                                          136.00
11850                                                                                      1200, 1500
11851                                                                                            8.00
11852                                                                                          250.00
11853                                                                                           32.00
11854                                                                                           32.00
11855                                                                                          300.00
11856                                                                                               8
11857                                                                                           32.00
11858                                                                                           32.00
11859                                                                                          300.00
11860                                                                                          250.00
11861                                                            272 ivermectin, 227 pyrantel pamoate
11862                                                              68 ivermectin, 57 pyrantel pamoate
11863                                                                                          136.00
11864                                                                                         1500.00
11865                                                                                         1200.00
11866                                                                                          100.00
11867                                                                                           10.00
11868                                                                                           24.00
11869                                                                                         1500.00
11870                                                                                           24.00
11871                                                                                          100.00
11872                                                                                           10.00
11873                                                                    based on weight (50-100 lbs)
11874                                                                       based on weight (<25 lbs)
11875                                                                    based on weight (60-121 lbs)
11876                                                                                               1
11877                                                                                             150
11878                                                                                              24
11879                                                                                              10
11880                                                                                             100
11881                                                                       based on weight (125 lbs)
11882                                                                    based on weight (60-121 lbs)
11883                                                                                             100
11884                                                                                          100.00
11885                                                                                            1.00
11886                                                                                            1.00
11887                                                                                            1.00
11888                                                                                          100.00
11889                                                                    based on weight (51-100 lbs)
11890                                                                                          500.00
11891                                                                                          272.00
11892                                                                                            1.00
11893                                                                                            1.00
11894                                                                                            1.00
11895                                                                                          272.00
11896                                                                                           10.00
11897                                                                                            0.80
11898                                                                    based on weight (51-100 lbs)
11899                                                                                          750.00
11900                                                                                           60.00
11901                                                                                          272.00
11902                                                                                          750.00
11903                                                                                           60.00
11904                                                                                          272.00
11905                                                                                            4.00
11906                                                                                          150.00
11907                                                                                            5.00
11908                                                                                           75.00
11909                                                                                           10.00
11910                                                                                          450.00
11911                                                                                    small amount
11912                                                                                          272.00
11913                                                                                         1000.00
11914                                                                                           16.00
11915                                                                                          500.00
11916                                                                                           75.00
11917                                                                                          500.00
11918                                                                                          250.00
11919                                                                                     unspecified
11920                                                                                           75.00
11921                                                                                          200.00
11922                                                                                           75.00
11923                                                                                          300.00
11924                                                                                          500.00
11925                                                                                           75.00
11926                                                                                             272
11927                                                                                          272.00
11928                                                                                          272.00
11929                                                                                            1.00
11930                                                                                   5 billion cfu
11931                                                                                          250.00
11932                                                                                          500.00
11933                                                                                            3.00
11934                                                                                          204.00
11935                                                                                          240.00
11936                                                                                         1000.00
11937                                                                                          120.00
11938                                                                                         1000.00
11939                                                                                          250.00
11940                                                                                          500.00
11941                                                                                          100.00
11942                                                                                         1000.00
11943                                                                                           75.00
11944                                                                                         1000.00
11945                                                                                         1800.00
11946                                                                                           75.00
11947                                                                                          252.00
11948                                                                                          560.00
11949                                                                                          270.00
11950                                                                                            2.50
11951                                                                                          250.00
11952                                                                                          300.00
11953                                                                                            2.60
11954                                                                                          562.50
11955                                                                                          204.00
11956                                                                                           75.00
11957                                                                                          250.00
11958                                                                                           13.50
11959                                                              460 lufenuron, 23 milbemycin oxime
11960                                                                                     as directed
11961                                                                                           23.00
11962                                                              460 lufenuron, 23 milbemycin oxime
11963                                                                                           50.00
11964                                                                    based on weight (51-100 lbs)
11965                                                                                          100.00
11966                                                                                            1.00
11967                                                                                            1.00
11968                                                                                            1.00
11969                                                                                            1.00
11970                                                                                            1.00
11971                                                                                            2.68
11972                                                                                           20.00
11973                                                                                          750.00
11974                                                                                           15.00
11975                                                                                          204.00
11976                                                                                            7.50
11977                                                                                           20.00
11978                                                                                     application
11979                                                                    based on weight (89-132 lbs)
11980                                                                    based on weight (89-132 lbs)
11981                                                                                          750.00
11982                                                                                           75.00
11983                                                                    based on weight (89-132 lbs)
11984                                                                                          300.00
11985                                                                                           24.00
11986                                                                                            8.00
11987                                                                                            5.00
11988                                                                                            1.00
11989                                                                                           16.00
11990                                                                                            1.00
11991                                                                                            1.00
11992                                                                                            2.00
11993                                                                                     unspecified
11994                                                                                            1.00
11995                                                                                            1.00
11996                                                                                           24.00
11997                                                                                            1.00
11998                                                                                            0.50
11999                                                                                            0.30
12000                                                                                           24.00
12001                                                                                           50.00
12002                                                                                          500.00
12003                                                                                           30.00
12004                                                                                           25.00
12005                                                                                            1.00
12006                                                                                           50.00
12007                                                                                           50.00
12008                                                                                            1.00
12009                                                                                     unspecified
12010                                                                                     unspecified
12011                                                                                            1.00
12012                                                                                           75.00
12013                                                                                          500.00
12014                                                                    based on weight (51-100 lbs)
12015                                                                                           55.00
12016                                                                                         1000.00
12017                                                                                           20.00
12018                                                                                     unspecified
12019                                                                                     unspecified
12020                                                                    based on weight (51-100 lbs)
12021                                                                                          272.00
12022                                                                                         1000.00
12023                                                                                               5
12024                                                                                          272.00
12025                                                                                              66
12026                                                                                           15.00
12027                                                                                          272.00
12028                                                                                          227.00
12029                                                                                          500.00
12030                                                                                          113.50
12031                                                                                          272.00
12032                                                                                          272.00
12033                                                                                         1000.00
12034                                                                                          500.00
12035                                                                                           75.00
12036                                                                                          272.00
12037                                                                                         1400.00
12038                                                                                          272.00
12039                                                                                           16.00
12040                                                                                           16.00
12041                                                                                           80.00
12042                                                                                           37.50
12043                                                                                     unspecified
12044                                                                                           20.00
12045                                                                                          500.00
12046                                                                                           25.00
12047                                                                                     unspecified
12048                                                              based on weight (45-88 lbs) - 2.68
12049                                                                                          272.00
12050                                                                                          500.00
12051                                                                                  1 pack/package
12052                                                                                           68.00
12053                                                                                          500.00
12054                                                                                     unspecified
12055                                                                                            0.60
12056                                                                                          600.00
12057                                                                                            6.00
12058                                                                                          272.00
12059                                                                                          136.00
12060                                                                                            0.60
12061                                                                                          272.00
12062                                                                                           68.00
12063                                                                                            0.60
12064                                                                                           68.00
12065                                                                                          272.00
12066                                                                                            0.60
12067                                                                                          100.00
12068                                                                                            6.00
12069                                                                                           68.00
12070                                                                                          272.00
12071                                                                                            0.60
12072                                                                                          100.00
12073                                                                                          120.00
12074                                                                                            0.60
12075                                                                                          100.00
12076                                                                                            0.60
12077                                                                                          500.00
12078                                                                                            1.20
12079                                                                                          100.00
12080                                                                                          200.00
12081                                                                                            0.50
12082                                                                                            1.20
12083                                                                                            1.00
12084                                                                                           59.00
12085                                                                                          250.00
12086                                                                                            0.38
12087                                                                                            1.20
12088                                                                                           50.00
12089                                                                                          500.00
12090                                                                    based on weight (51-100 lbs)
12091                                                                                          500.00
12092                                                                                            5.00
12093                                                                                            1.00
12094                                                                                            1.00
12095                                                                                          100.00
12096                                                                                         1000.00
12097                                                                                          100.00
12098                                                                                            1.00
12099                                                                                            1.00
12100                                                                                            1.00
12101                                                                                            1.00
12102                                                                                            1.50
12103                                                                                            1.00
12104                                                                                            1.00
12105                                                                                            1.00
12106                                                                                          250.00
12107                                                                                           51.00
12108                                                                                 moderate amount
12109                                                                                           23.00
12110                                                                                          136.00
12111                                                                                     unspecified
12112                                                                                            1.00
12113                                                                                            1.00
12114                                                                                          100.00
12115                                                                                          300.00
12116                                                                                            1.00
12117                                                                                            8.00
12118                                                                                           50.00
12119                                                                                          150.00
12120                                                                                     unspecified
12121                                                                                          150.00
12122                                                                                          150.00
12123                                                                                          150.00
12124                                                                                            4.00
12125                                                                                            1.60
12126                                                                                           50.00
12127                                                                                          272.00
12128                                                                     based on weight (44-88 lbs)
12129                                                                    based on weight (51-100 lbs)
12130                                                                                     application
12131                                                                                           23.00
12132                                                                                            1.00
12133                                                                                          200.00
12134                                                                                         1000.00
12135                                                                     based on weight (44-88 lbs)
12136                                                                    based on weight (51-100 lbs)
12137                                                                                          272.00
12138                                                                                          227.00
12139                                                                                          272.00
12140                                                                                          136.00
12141                                                                                          227.00
12142                                                                                            2.00
12143                                                                                            1.00
12144                                                                                            1.00
12145                                                                                          136.00
12146                                                                                          272.00
12147                                                                                          227.00
12148                                                                                          272.00
12149                                                                                          136.00
12150                                                                                          227.00
12151                                                                                          272.00
12152                                                                                          136.00
12153                                                                                          227.00
12154                                                                                     unspecified
12155                                                                                     unspecified
12156                                                                                          272.00
12157                                                                                          136.00
12158                                                                                          272.00
12159                                                                                     unspecified
12160                                                                                     unspecified
12161                                                                                          272.00
12162                                                                                          136.00
12163                                                                                          227.00
12164                                                                                     unspecified
12165                                                                                          500.00
12166                                                                                          136.00
12167                                                                                            1.00
12168                                                                                            1.50
12169                                                                                          227.00
12170                                                                                         1000.00
12171                                                                                          469.00
12172                                                                                          300.00
12173                                                                                     unspecified
12174                                                                                            1.50
12175                                                                                          227.00
12176                                                                                           60.00
12177                                                                                          500.00
12178                                                                                           60.00
12179                                                                                          600.00
12180                                                                                            2.00
12181                                                                                          200.00
12182                                                                                            8.00
12183                                                                                          200.00
12184                                                                                            0.25
12185                                                                                            8.00
12186                                                                                          272.00
12187                                                                                          272.00
12188                                                                                          272.00
12189                                                                                          200.00
12190                                                                                               1
12191                                                                                           15.00
12192                                                                                          272.00
12193                                                                                            2.68
12194                                                                                             272
12195                                                                                            2.68
12196                                                                                          272.00
12197                                                                                           20.00
12198                                                                                            2.50
12199                                                                                            1.00
12200                                                                                            3.00
12201                                                                                           25.00
12202                                                                                          750.00
12203                                                                                          500.00
12204                                                                                          500.00
12205                                                                                          200.00
12206                                                                                            5.00
12207                                                                                           20.00
12208                                                                                          500.00
12209                                                                                            7.00
12210                                                                                            6.00
12211                                                                                          272.00
12212                                                                                          200.00
12213                                                                                             272
12214                                                                                          272.00
12215                                                            272 ivermectin, 227 pyrantel pamoate
12216                                                                                          200.00
12217                                                                                           16.00
12218                                                                                           60.00
12219                                                                                           20.00
12220                                                                                          272.00
12221                                                                                            0.75
12222                                                                                             0.5
12223                                                                                                
12224                                                                                           23.00
12225                                                                                           23.00
12226                                                                                            1.00
12227                                                                                            1.00
12228                                                                                          500.00
12229                                                                                            1.00
12230                                                                                           23.00
12231                                                                                          228.00
12232                                                                                            2.00
12233                                                                                          500.00
12234                                                                                           60.00
12235                                                                                           15.00
12236                                                                                           30.00
12237                                                                                          150.00
12238                                                                                           75.00
12239                                                                                          150.00
12240                                                                                           75.00
12241                                                                                           60.00
12242                                                                                           60.00
12243                                                                                          500.00
12244                                                                                          560.00
12245                                                                                            1.00
12246                                                                                            1.00
12247                                                                                            1.00
12248                                                                                            1.00
12249                                                                                          227.00
12250                                                                                         1400.00
12251                                                                                          272.00
12252                                                                                         1400.00
12253                                                                                          272.00
12254                                                                                         1400.00
12255                                                                                            1.00
12256                                                                                          250.00
12257                                                                                            3.00
12258                                                                                          500.00
12259                                                                                           80.00
12260                                                                                            4.00
12261                                                                  based on weight (60.1-120 lbs)
12262                                                                                           25.00
12263                                                                                          200.00
12264                                                                                         1000.00
12265                                                                                              75
12266                                                                                            66.5
12267                                                                                              75
12268                                                                                            66.5
12269                                                                                           40.00
12270                                                                                          100.00
12271                                                                     based on weight (45-88 lbs)
12272                                                                                              75
12273                                                                                    small amount
12274                                                                                          200.00
12275                                                                                              66
12276                                                                                              75
12277                                                                                           20.00
12278                                                                                            1.00
12279                                                                                    small amount
12280                                                                                          200.00
12281                                                                                            5.00
12282                                                                                            1.00
12283                                                                                         23, 228
12284                                                                                         1000.00
12285                                                                                           23.00
12286                                                                                         1000.00
12287                                                                                          750.00
12288                                                                                          170.00
12289                                                                                            1.00
12290                                                                                          100.00
12291                                                                                          300.00
12292                                                                                         1000.00
12293                                                                                          150.00
12294                                                                                           23.00
12295                                                                                          900.00
12296                                                                                          900.00
12297                                                                                            3.00
12298                                                                                           37.50
12299                                                                                     unspecified
12300                                                                                           16.00
12301                                                                                          300.00
12302                                                                                           75.00
12303                                                                                           60.00
12304                                                                                           15.00
12305                                                                                         1000.00
12306                                                                                     unspecified
12307                                                                                          300.00
12308                                                                                           20.00
12309                                                                                     unspecified
12310                                                                                           75.00
12311                                                                                            8.00
12312                                                                                           27.00
12313                                                                                         23, 460
12314                                                                                        27, 1620
12315                                                                                         1200.00
12316                                                                                         1500.00
12317                                                                                            1.00
12318                                                                                          200.00
12319                                                                                            1.00
12320                                                                                          250.00
12321                                                                                            3.00
12322                                                                                      1200, 1500
12323                                                                                         1200.00
12324                                                                    based on weight (60-120 lbs)
12325                                                                                          500.00
12326                                                                                            2.00
12327                                                                                            1.50
12328                                                                                            3.80
12329                                                                                            2.00
12330                                                                                            2.00
12331                                                                                         1600.00
12332                                                                                          480.00
12333                                                                                           40.00
12334                                                                                       injection
12335                                                                                          225.00
12336                                                                                       injection
12337                                                                                     unspecified
12338                                                                                        10000.00
12339                                                                                           50.00
12340                                                                                          500.00
12341                                                                                          500.00
12342                                                                    based on weight (60-120 lbs)
12343                                                                                     unspecified
12344                                                                                         1620.00
12345                                                                                            1200
12346                                                                                       155, 1200
12347                                                                                           52.00
12348                                                                                         1620.00
12349                                                                                 2 bottles/vials
12350                                                                                         1200.00
12351                                                                                       150, 1200
12352                                                                                          500.00
12353                                                                                     unspecified
12354                                                                                           20.00
12355                                                                                            2.00
12356                                                                                           10.00
12357                                                                                            1.00
12358                                                                                            1.00
12359                                                                                         1200.00
12360                                                                                         1500.00
12361                                                                                            1.00
12362                                                                                            3.00
12363                                                                                            2.00
12364                                                                                      1200, 1500
12365                                                                                         1200.00
12366                                                                    based on weight (60-120 lbs)
12367                                                                                           75.00
12368                                                                                          720.00
12369                                                                                         1600.00
12370                                                                                          500.00
12371                                                                                         1500.00
12372                                                                                         1000.00
12373                                                                                              90
12374                                                                                         1620.00
12375                                                                                            1200
12376                                                                                       155, 1200
12377                                                                                         1620.00
12378                                                                                         1200.00
12379                                                                                       200, 1500
12380                                                                                          300.00
12381                                                                                          100.00
12382                                                                                           16.00
12383                                                                                          100.00
12384                                                                                          272.00
12385                                                                                          272.00
12386                                                                                             1.4
12387                                                                                          272.00
12388                                                                                          272.00
12389                                                                                          500.00
12390                                                                                           37.50
12391                                                                                          625.00
12392                                                                                          100.00
12393                                                                                           75.00
12394                                                                                     unspecified
12395                                                                                          272.00
12396                                                                                          227.00
12397                                                                                              50
12398                                                            272 ivermectin, 227 pyrantel pamoate
12399                                                                                            0.10
12400                                                                                           14.00
12401                                                                                            66.5
12402                                                                    based on weight (51-100 lbs)
12403                                                                                           14.00
12404                                                                                          500.00
12405                                                                                            0.25
12406                                                                                               1
12407                                                                                            1.00
12408                                                                                           16.00
12409                                                                                  1 pack/package
12410                                                                    based on weight (51-100 lbs)
12411                                                                     based on weight (41-88 lbs)
12412                                                                                             500
12413                                                                                           16.00
12414                                                                    based on weight (51-100 lbs)
12415                                                                  based on weight (60.1-121 lbs)
12416                                                                                            1.00
12417                                                                    based on weight (51-100 lbs)
12418                                                                    based on weight (60-121 lbs)
12419                                                                                           50.00
12420                                                                                     application
12421                                                                    based on weight (51-100 lbs)
12422                                                                   based on weight (44.1-88 lbs)
12423                                                                                     application
12424                                                                                          875.00
12425                                                                                           16.00
12426                                                                                           50.00
12427                                                                                     unspecified
12428                                                                                          250.00
12429                                                                                               1
12430                                                                                               1
12431                                                                                               1
12432                                                                                               1
12433                                                                                               1
12434                                                                                               1
12435                                                                                          272.00
12436                                                                                           80.00
12437                                                                                          200.00
12438                                                                                               1
12439                                                                                               1
12440                                                                                           60.00
12441                                                                                            1.60
12442                                                                                            1.00
12443                                                                                          500.00
12444                                                                                          300.00
12445                                                                                          100.00
12446                                                                                            8.00
12447                                                                                          272.00
12448                                                                                            1.40
12449                                                                                          114.00
12450                                                                                           60.00
12451                                                                                            1.00
12452                                                                                           50.00
12453                                                            272 ivermectin, 227 pyrantel pamoate
12454                                                                    based on weight (51-100 lbs)
12455                                                                                 based on weight
12456                                                                    based on weight (51-100 lbs)
12457                                                                    based on weight (60-120 lbs)
12458                                                                                         3000.00
12459                                                                                            1.00
12460                                                                                          150.00
12461                                                                                     unspecified
12462                                                                                     unspecified
12463                                                                                     unspecified
12464                                                                                           75.00
12465                                                                                            1.00
12466                                                                                               1
12467                                                                                          500.00
12468                                                                                          240.00
12469                                                                                             240
12470                                                                                              50
12471                                                                                             2.7
12472                                                                                               8
12473                                                                   based on weight (40.1-85 lbs)
12474                                                                   based on weight (40.1-85 lbs)
12475                                                                                        5.4 , 16
12476                                                                                             200
12477                                                                                     unspecified
12478                                                                                           16.00
12479                                                                                           10.00
12480                                                                                            3.00
12481                                                                                     unspecified
12482                                                                                           16.00
12483                                                                                           16.00
12484                                                                                           10.00
12485                                                                                     unspecified
12486                                                                                           16.00
12487                                                                                     unspecified
12488                                                                                           16.00
12489                                                                                          500.00
12490                                                                                          272.00
12491                                                                                          250.00
12492                                                                                          250.00
12493                                                                                            5.00
12494                                                                                           68.00
12495                                                                    based on weight (51-100 lbs)
12496                                                                                              42
12497                                                                                  10 billion cfu
12498                                                                    based on weight (51-100 lbs)
12499                                                                                          272.00
12500                                                                    based on weight (50-100 lbs)
12501                                                                                          200.00
12502                                                                                           16.00
12503                                                                                          100.00
12504                                                                                           75.00
12505                                                                                          200.00
12506                                                                                     unspecified
12507                                                                                           60.00
12508                                                                                            5.00
12509                                                                                           75.00
12510                                                                                           25.00
12511                                                                                               1
12512                                                                                               1
12513                                                                                             500
12514                                                                                               7
12515                                                                                              65
12516                                                                    based on weight (51-100 lbs)
12517                                                                                             100
12518                                                                                          100.00
12519                                                                                           25.00
12520                                                                    based on weight (51-100 lbs)
12521                                                                    based on weight (60-120 lbs)
12522                                                                                          900.00
12523                                                                    based on weight (51-100 lbs)
12524                                                                                            1.00
12525                                                                                            1.00
12526                                                                                           10.00
12527                                                                                            1.00
12528                                                                                               1
12529                                                                                   1 bottle/vial
12530                                                                    based on weight (51-100 lbs)
12531                                                                                          100.00
12532                                                                                           50.00
12533                                                                                          100.00
12534                                                                                          400.00
12535                                                                                     unspecified
12536                                                                                    small amount
12537                                                                                          200.00
12538                                                                                          100.00
12539                                                                                           25.00
12540                                                                    based on weight (51-100 lbs)
12541                                                                     based on weight (21-55 lbs)
12542                                                                                               1
12543                                                                                   1 bottle/vial
12544                                                                                            1.00
12545                                                                                            1.00
12546                                                                                     as directed
12547                                                                                               1
12548                                                                                               1
12549                                                                                     application
12550                                                                    based on weight (50-100 lbs)
12551                                                                                 based on weight
12552                                                                                 based on weight
12553                                                                                 based on weight
12554                                                                                 based on weight
12555                                                                                          272.00
12556                                                                                            8.80
12557                                                                                           10.00
12558                                                                                          200.00
12559                                                                                            0.40
12560                                                                                          200.00
12561                                                                                           20.00
12562                                                                                            1.00
12563                                                                                           50.00
12564                                                                                          250.00
12565                                                                                            0.40
12566                                                                                          100.00
12567                                                                                               8
12568                                                                                           25.00
12569                                                                                        27, 1610
12570                                                                                            0.16
12571                                                                                             8.5
12572                                                                                           20.00
12573                                                                                         1620.00
12574                                                                                           27.00
12575                                                                                          272.00
12576                                                                                          136.00
12577                                                                                            2.00
12578                                                            272 ivermectin, 227 pyrantel pamoate
12579                                                                                          136.00
12580                                                            272 ivermectin, 227 pyrantel pamoate
12581                                                                                          200.00
12582                                                                                           16.00
12583                                                                                          150.00
12584                                                                                          136.00
12585                                                            272 ivermectin, 227 pyrantel pamoate
12586                                                                                          136.00
12587                                                                                          500.00
12588                                                                                       1, 32, 40
12589                                                            272 ivermectin, 227 pyrantel pamoate
12590                                                                                          136.00
12591                                                                                          200.00
12592                                                                                          100.00
12593                                                                                          750.00
12594                                                                                           90.00
12595                                                                                     unspecified
12596                                                                                     unspecified
12597                                                                                           20.00
12598                                                                                          150.00
12599                                                                                            8.00
12600                                                                                            5.00
12601                                                                                           75.00
12602                                                                                          136.00
12603                                                                                          114.00
12604                                                                                          114.00
12605                                                                                       11.5, 114
12606                                                                                            1.00
12607                                                                                             500
12608                                                                                        23 , 228
12609                                                                                             136
12610                                                                                          200.00
12611                                                                                           60.00
12612                                                                                             272
12613                                                                                             272
12614                                                                                            1.00
12615                                                                                     unspecified
12616                                                                    based on weight (51-100 lbs)
12617                                                                                          227.00
12618                                                                                          272.00
12619                                                                                            0.70
12620                                                                                     unspecified
12621                                                                                           70.00
12622                                                                                            6.00
12623                                                                    based on weight (51-100 lbs)
12624                                                                                            0.70
12625                                                                                            1.00
12626                                                                                            0.70
12627                                                                                            0.70
12628                                                                                           15.00
12629                                                                                           15.00
12630                                                                                     unspecified
12631                                                                                            0.70
12632                                                                                     unspecified
12633                                                                                            0.70
12634                                                                                            0.70
12635                                                                                            0.35
12636                                                                    based on weight (50-100 lbs)
12637                                                                                          100.00
12638                                                                    based on weight (51-100 lbs)
12639                                                                    based on weight (50-100 lbs)
12640                                                                                          200.00
12641                                                                                          272.00
12642                                                                    based on weight (50-100 lbs)
12643                                                                                          625.00
12644                                                                                            7.80
12645                                                                                        125, 500
12646                                                                                            6.00
12647                                                                                          136.00
12648                                                                                          625.00
12649                                                                                            9.00
12650                                                                                          625.00
12651                                                                                          136.00
12652                                                                                          625.00
12653                                                                                          175.00
12654                                                                                            2.00
12655                                                                                            6.00
12656                                                                                          222.00
12657                                                                                          272.00
12658                                                                                          272.00
12659                                                                                          272.00
12660                                                                                          272.00
12661                                                                                           50.00
12662                                                                                           33.00
12663                                                                                          375.00
12664                                                                                           20.00
12665                                                                                            7.50
12666                                                                                            2.00
12667                                                                                          200.00
12668                                                                                            2.00
12669                                                                                           23.00
12670                                                                                          200.00
12671                                                                                            2.00
12672                                                                                          500.00
12673                                                                                          500.00
12674                                                                                           16.00
12675                                                                                            1.50
12676                                                                                            0.50
12677                                                                                           20.00
12678                                                                                          125.00
12679                                                                                         1000.00
12680                                                                                          150.00
12681                                                                                          375.00
12682                                                                                          625.00
12683                                                                                            1.00
12684                                                                                          150.00
12685                                                                                           20.00
12686                                                                    based on weight (51-100 lbs)
12687                                                                                          500.00
12688                                                                                           20.00
12689                                                                                         1000.00
12690                                                                                         1400.00
12691                                                                                          280.00
12692                                                           23 milbemycin oxime, 228 praziquantel
12693                                                                    based on weight (51-100 lbs)
12694                                                                                              75
12695                                                                                           75.00
12696                                                                                          300.00
12697                                                                                           75.00
12698                                                                                          625.00
12699                                                                                          272.00
12700                                                                                          200.00
12701                                                                                          850.00
12702                                                                                           10.00
12703                                                                                           50.00
12704                                                                                          100.00
12705                                                                                           50.00
12706                                                                                           10.00
12707                                                                                            5.00
12708                                                                                            0.43
12709                                                                                          100.00
12710                                                                                          272.00
12711                                                                                            1.00
12712                                                                                               1
12713                                                                                              10
12714                                                                    based on weight (51-100 lbs)
12715                                                                                          272.00
12716                                                                                          272.00
12717                                                                                          272.00
12718                                                                                            8.00
12719                                                                                           60.00
12720                                                                                           30.00
12721                                                                                           10.00
12722                                                                                           10.00
12723                                                                                           10.00
12724                                                                                          272.00
12725                                                                                          272.00
12726                                                                                           23.00
12727                                                                                           23.00
12728                                                                                            9.70
12729                                                                                          500.00
12730                                                                                     unspecified
12731                                                                                          500.00
12732                                                                                     application
12733                                                                                           75.00
12734                                                                                          750.00
12735                                                                                     as directed
12736                                                                                            4.00
12737                                                                                          264.00
12738                                                                                            1000
12739                                                                                           13.50
12740                                                                                       13.5, 810
12741                                                                                          500.00
12742                                                                                           50.00
12743                                                                                           13.50
12744                                                                                      13.5 , 810
12745                                                                                            2.30
12746                                                                                          250.00
12747                                                                                            1.00
12748                                                                                          600.00
12749                                                                                       13.5, 810
12750                                                                                          250.00
12751                                                                                            1.00
12752                                                                                            2.30
12753                                                                                           50.00
12754                                                                                      13.5 , 810
12755                                                                    based on weight (60-120 lbs)
12756                                                                                    small amount
12757                                                                                          200.00
12758                                                                                          136.00
12759                                                                                          100.00
12760                                                                                           40.00
12761                                                                                          272.00
12762                                                                                          100.00
12763                                                                                          272.00
12764                                                                                          272.00
12765                                                                                           23.00
12766                                                                                           23.00
12767                                                                                          272.00
12768                                                                                          272.00
12769                                                                                          227.00
12770                                                                                          250.00
12771                                                                                 based on weight
12772                                                                                          500.00
12773                                                                                          200.00
12774                                                                                 based on weight
12775                                                                                          136.00
12776                                                                                            5.00
12777                                                                                         1000.00
12778                                                                                          250.00
12779                                                                                          500.00
12780                                                                    based on weight (51-100 lbs)
12781                                                                                               6
12782                                                                                          200.00
12783                                                                                          100.00
12784                                                                                  1 pack/package
12785                                                                                          100.00
12786                                                                                               1
12787                                                                                        1 collar
12788                                                                                 0.25 inch strip
12789                                                                                          272.00
12790                                                                                          136.00
12791                                                                                            2.00
12792                                                                                          113.50
12793                                                                                         1000.00
12794                                                                                          375.00
12795                                                                                     unspecified
12796                                                                                          collar
12797                                                                                  1 pack/package
12798                                                                                         1000.00
12799                                                                                          500.00
12800                                                                                            1.00
12801                                                                                     application
12802                                                                                           20.00
12803                                                                                          500.00
12804                                                                                            1.00
12805                                                                                            0.02
12806                                                                                          500.00
12807                                                                                            1.00
12808                                                                                            1.00
12809                                                                                           70.00
12810                                                                                          500.00
12811                                                                                          300.00
12812                                                                                            1.00
12813                                                                                            1.00
12814                                                                                            1.00
12815                                                                                            1.00
12816                                                                                            1.80
12817                                                                                          500.00
12818                                                                                          500.00
12819                                                                                         1000.00
12820                                                                                          300.00
12821                                                                                            1.90
12822                                                                                         1000.00
12823                                                                                          500.00
12824                                                                                          100.00
12825                                                                                          300.00
12826                                                                                     unspecified
12827                                                                                           16.00
12828                                                                                     unspecified
12829                                                                                          500.00
12830                                                                                         1700.00
12831                                                                                           80.00
12832                                                                                            1.80
12833                                                                                              27
12834                                                                                         1620.00
12835                                                                                           15.00
12836                                                                    based on weight (60-120 lbs)
12837                                                                                              90
12838                                                                                          272.00
12839                                                                                          136.00
12840                                                                                          272.00
12841                                                                                              90
12842                                                                                          272.00
12843                                                                                           68.00
12844                                                                                           10.00
12845                                                                                          200.00
12846                                                                                           20.00
12847                                                                                          272.00
12848                                                                                            2.68
12849                                                                                                
12850                                                                                                
12851                                                                                            3.00
12852                                                                                          300.00
12853                                                                                           50.00
12854                                                                                            3.00
12855                                                                                            3.00
12856                                                                                            1.00
12857                                                                                            1.00
12858                                                                                            1.00
12859                                                                                          300.00
12860                                                                                            0.03
12861                                                                                    small amount
12862                                                                                            1.00
12863                                                                                            1.00
12864                                                                                            2.00
12865                                                                                    small amount
12866                                                                                    small amount
12867                                                                                          300.00
12868                                                                                            1.00
12869                                                                                            1.00
12870                                                                                     application
12871                                                                                          300.00
12872                                                                                           10.00
12873                                                                                 moderate amount
12874                                                                                             500
12875                                                                                          300.00
12876                                                                                           16.00
12877                                                                                          300.00
12878                                                                                          100.00
12879                                                                    based on weight (51-100 lbs)
12880                                                                  based on weight (60.1-120 lbs)
12881                                                                                    small amount
12882                                                                                    small amount
12883                                                                                           16.00
12884                                                                                          100.00
12885                                                                                          300.00
12886                                                                                          500.00
12887                                                                                          100.00
12888                                                                                          300.00
12889                                                                                            1.00
12890                                                                                            1.00
12891                                                                                           16.00
12892                                                                                            1.00
12893                                                                                             150
12894                                                                                    small amount
12895                                                                                            bath
12896                                                                                         1647.00
12897                                                                                          200.00
12898                                                                                            1.00
12899                                                                                          136.00
12900                                                                                          227.00
12901                                                                                     unspecified
12902                                                                                     unspecified
12903                                                                                     as directed
12904                                                                                             250
12905                                                                                       injection
12906                                                                                     unspecified
12907                                                                                     unspecified
12908                                                                                     unspecified
12909                                                                                             750
12910                                                                                             0.8
12911                                                                                     unspecified
12912                                                                                          100.00
12913                                                                                            4.00
12914                                                                                           80.00
12915                                                                                          300.00
12916                                                                    based on weight (51-100 lbs)
12917                                                                                           43.00
12918                                                                                          500.00
12919                                                                                          272.00
12920                                                                    based on weight (51-100 lbs)
12921                                                                                          272.00
12922                                                                                            4.02
12923                                                                                          100.00
12924                                                                                          300.00
12925                                                                                          100.00
12926                                                                                            8.00
12927                                                                                          275.00
12928                                                                                          272.00
12929                                                                    based on weight (51-100 lbs)
12930                                                                                          136.00
12931                                                                                            1.00
12932                                                                                            1.00
12933                                                                                            1.00
12934                                                                                            1.00
12935                                                                                           18.00
12936                                                                                            0.50
12937                                                                                           12.00
12938                                                                                          100.00
12939                                                                                          100.00
12940                                                                                            1.00
12941                                                                                          100.00
12942                                                                    based on weight (50-100 lbs)
12943                                                                    based on weight (51-100 lbs)
12944                                                                                              66
12945                                                                    based on weight (51-100 lbs)
12946                                                                                          750.00
12947                                                                                             500
12948                                                                    based on weight (51-100 lbs)
12949                                                                    based on weight (51-100 lbs)
12950                                                                                              66
12951                                                                                          204.00
12952                                                                    based on weight (51-100 lbs)
12953                                                                                              15
12954                                                                                          200.00
12955                                                                                     unspecified
12956                                                                     based on weight (44-88 lbs)
12957                                                                    based on weight (51-100 lbs)
12958                                                                                            1.00
12959                                                                                               8
12960                                                                                          272.00
12961                                                                                          272.00
12962                                                                     based on weight (45-88 lbs)
12963                                                                             tablet/pill/capsule
12964                                                                                          272.00
12965                                                                                          272.00
12966                                                                     based on weight (45-88 lbs)
12967                                                                                          200.00
12968                                                                                          200.00
12969                                                                                           60.00
12970                                                                                            1.00
12971                                                                                            1.50
12972                                                                                            8.00
12973                                                                                          300.00
12974                                                                                          150.00
12975                                                                                            0.75
12976                                                                                          100.00
12977                                                                                          300.00
12978                                                                                           75.00
12979                                                                                               1
12980                                                                                            0.80
12981                                                                                          272.00
12982                                                                                          500.00
12983                                                                                          250.00
12984                                                                                           15.00
12985                                                                                           75.00
12986                                                                                            0.80
12987                                                                                             100
12988                                                                                             272
12989                                                                                             272
12990                                                                                              50
12991                                                                                          272.00
12992                                                                                            37.5
12993                                                                                             272
12994                                                                       based on weight (55+ lbs)
12995                                                                                              66
12996                                                                                              16
12997                                                                                          200.00
12998                                                                                           75.00
12999                                                                                          272.00
13000                                                                                          250.00
13001                                                                                           50.00
13002                                                                                           37.50
13003                                                                                          200.00
13004                                                                                           68.00
13005                                                                                     unspecified
13006                                                                                     unspecified
13007                                                                                          600.00
13008                                                                                     unspecified
13009                                                                                           16.00
13010                                                                                     unspecified
13011                                                                                           16.00
13012                                                                                           50.00
13013                                                                                     unspecified
13014                                                                                          250.00
13015                                                                                          500.00
13016                                                                                          170.00
13017                                                                                          375.00
13018                                                                                           16.00
13019                                                                                           20.00
13020                                                                                     unspecified
13021                                                                                            1.00
13022                                                                                            1.00
13023                                                                                           60.00
13024                                                                                           50.00
13025                                                                                          500.00
13026                                                                                          136.00
13027                                                                                          300.00
13028                                                                                           16.00
13029                                                                                            1.40
13030                                                                                          215.00
13031                                                                                           60.00
13032                                                                                           50.00
13033                                                                                          100.00
13034                                                                                              30
13035                                                                                          272.00
13036                                                                                            0.20
13037                                                                                          272.00
13038                                                                                          272.00
13039                                                                                          272.00
13040                                                                                          272.00
13041                                                                                    small amount
13042                                                                                          272.00
13043                                                                                          272.00
13044                                                                                            6.00
13045                                                                                          272.00
13046                                                                                          400.00
13047                                                                                           10.00
13048                                                                                          250.00
13049                                                                                     application
13050                                                                                          375.00
13051                                                                                           50.00
13052                                                                                           50.00
13053                                                                                            5.00
13054                                                                                          200.00
13055                                                                                           50.00
13056                                                                                           50.00
13057                                                                                            2.68
13058                                                                                          272.00
13059                                                                                          200.00
13060                                                                                           15.00
13061                                                                     based on weight (44-80 lbs)
13062                                                                                     as directed
13063                                                                                              50
13064                                                                                         1000.00
13065                                                                                           22.70
13066                                                                                         1000.00
13067                                                                                          272.00
13068                                                                                         1000.00
13069                                                                                          100.00
13070                                                                                          600.00
13071                                                                                            1.00
13072                                                                                            1.00
13073                                                                                          500.00
13074                                                                                     unspecified
13075                                                                    based on weight (51-100 lbs)
13076                                                                       based on weight (19+ lbs)
13077                                                                                           23.00
13078                                                                                           23.00
13079                                                                                         1000.00
13080                                                                                           16.00
13081                                                                                     unspecified
13082                                                                                          200.00
13083                                                                                          200.00
13084                                                                                         23, 460
13085                                                                                            2.68
13086                                                                    based on weight (51-100 lbs)
13087                                                                                         1000.00
13088                                                                                           23.00
13089                                                                                           23.00
13090                                                                                         1000.00
13091                                                                                           23.00
13092                                                                                         1000.00
13093                                                                                            2.00
13094                                                                                          272.00
13095                                                                                         1000.00
13096                                                                                    small amount
13097                                                                                            1.00
13098                                                                                              75
13099                                                                                          113.50
13100                                                                                            1.00
13101                                                                                            0.50
13102                                                                                            1.00
13103                                                                                            1.00
13104                                                                                     unspecified
13105                                                                                           50.00
13106                                                                                            1.00
13107                                                                                          500.00
13108                                                                                       13.5, 810
13109                                                                                      13.5, 1620
13110                                                                                              30
13111                                                                                             0.7
13112                                                                                             250
13113                                                                                             2.5
13114                                                                    based on weight (60-120 lbs)
13115                                                                    based on weight (60-120 lbs)
13116                                                               27 milbemycin oxime, 620 spinosad
13117                                                                                         1620.00
13118                                                                                          250.00
13119                                                                                          300.00
13120                                                                                           20.00
13121                                                                                         1000.00
13122                                                                                           20.00
13123                                                                                            1.00
13124                                                                                    small amount
13125                                                                                          272.00
13126                                                                                    small amount
13127                                                                                    small amount
13128                                                                                           25.00
13129                                                                                    small amount
13130                                                                                    small amount
13131                                                                                           20.00
13132                                                                                           50.00
13133                                                                                    small amount
13134                                                                                          272.00
13135                                                                                          227.00
13136                                                                    based on weight (50-100 lbs)
13137                                                                     based on weight (45-88 lbs)
13138                                                                                               2
13139                                                            272 ivermectin, 227 pyrantel pamoate
13140                                                                                            1000
13141                                                                                            6.00
13142                                                                    based on weight (51-100 lbs)
13143                                                                     based on weight (45-88 lbs)
13144                                                                                          200.00
13145                                                                                           50.00
13146                                                                                          400.00
13147                                                                                           75.00
13148                                                                                        125, 875
13149                                                                    based on weight (51-100 lbs)
13150                                                                     based on weight (45-88 lbs)
13151                                                                    based on weight (51-100 lbs)
13152                                                                     based on weight (44-88 lbs)
13153                                                                                         1500.00
13154                                                                                        125, 875
13155                                                                                          400.00
13156                                                                                          300.00
13157                                                                    based on weight (50-100 lbs)
13158                                                                                          170.00
13159                                                                                     unspecified
13160                                                                                     unspecified
13161                                                                                          150.00
13162                                                                                          227.00
13163                                                                                          500.00
13164                                                                                          500.00
13165                                                                                          500.00
13166                                                                                          300.00
13167                                                                                            90.5
13168                                                                    based on weight (51-100 lbs)
13169                                                                    based on weight (51-100 lbs)
13170                                                                    based on weight (60-120 lbs)
13171                                                                                              16
13172                                                                                          150.00
13173                                                                                               1
13174                                                                                            3.00
13175                                                                                          500.00
13176                                                                                           20.00
13177                                                                                          500.00
13178                                                                                           30.00
13179                                                                                           75.00
13180                                                                                          250.00
13181                                                                                            3.00
13182                                                                                            3.45
13183                                                                                            1000
13184                                                                                              60
13185                                                                                            1.50
13186                                                                                         1000.00
13187                                                                                     application
13188                                                                     based on weight (45-88 lbs)
13189                                                                    based on weight (51-100 lbs)
13190                                                                                             150
13191                                                                                        45451.00
13192                                                                                           50.00
13193                                                                                            1.00
13194                                                                                            3.40
13195                                                                                                
13196                                                                                            bath
13197                                                                                          150.00
13198                                                                                 moderate amount
13199                                                                                        tapering
13200                                                                                          200.00
13201                                                                                          272.00
13202                                                                                           68.00
13203                                                                                            3.80
13204                                                                                          500.00
13205                                                                                          160.00
13206                                                                                          960.00
13207                                                                                            8.00
13208                                                                                               1
13209                                                                                               1
13210                                                                                            3.00
13211                                                                                            2.00
13212                                                                                           76.00
13213                                                                                          150.00
13214                                                                                           17.50
13215                                                                                            2.00
13216                                                                                            2.00
13217                                                                                          300.00
13218                                                                                           75.00
13219                                                                                            1.00
13220                                                                                            1.00
13221                                                                                          300.00
13222                                                                                           75.00
13223                                                                                           76.00
13224                                                                                            3.00
13225                                                                                            2.00
13226                                                                                            2.00
13227                                                                                            2.00
13228                                                                                           17.50
13229                                                                                          150.00
13230                                                                                            8.00
13231                                                                                           75.00
13232                                                                                          300.00
13233                                                                                     unspecified
13234                                                                                           75.00
13235                                                                                            2.00
13236                                                                                           10.00
13237                                                                                            2.00
13238                                                                                             500
13239                                                                                          250.00
13240                                                                                          200.00
13241                                                                                          500.00
13242                                                                                            2.00
13243                                                                                          500.00
13244                                                                                           10.00
13245                                                                                            2.00
13246                                                                                 0.25 inch strip
13247                                                                                          113.50
13248                                                                    based on weight (51-100 lbs)
13249                                                                     based on weight (45-88 lbs)
13250                                                                                           16.00
13251                                                                                          200.00
13252                                                                                            1.00
13253                                                                                            1.00
13254                                                                                          200.00
13255                                                                                          170.25
13256                                                                                          250.00
13257                                                                                           62.50
13258                                                                                          500.00
13259                                                                                           20.00
13260                                                                                          272.00
13261                                                                                          227.00
13262                                                                                             272
13263                                                                                          272.00
13264                                                            272 ivermectin, 227 pyrantel pamoate
13265                                                                                          136.00
13266                                                                                           20.00
13267                                                                                          272.00
13268                                                                                          136.00
13269                                                                                           20.00
13270                                                                                               1
13271                                                                                               1
13272                                                                                            1.00
13273                                                                                            1.00
13274                                                                                          136.00
13275                                                                                            2.68
13276                                                                                          500.00
13277                                                                                 moderate amount
13278                                                                                    small amount
13279                                                                                     application
13280                                                                                          500.00
13281                                                                                           37.50
13282                                                                                          375.00
13283                                                                                           15.00
13284                                                                                          272.00
13285                                                                                            9.80
13286                                                                                    small amount
13287                                                                                     application
13288                                                                                               1
13289                                                                                          600.00
13290                                                                                          136.00
13291                                                                                          100.00
13292                                                                                         1620.00
13293                                                                                            3.60
13294                                                                                           27.00
13295                                                                                          500.00
13296                                                                                           22.00
13297                                                                    based on weight (51-100 lbs)
13298                                                                  based on weight (60.1-120 lbs)
13299                                                            272 ivermectin, 227 pyrantel pamoate
13300                                                                                          136.00
13301                                                                                          100.00
13302                                                                                            0.45
13303                                                                                           11.00
13304                                                                                            0.20
13305                                                                                            2.20
13306                                                                                           10.00
13307                                                                  based on weight (60.1-120 lbs)
13308                                                                    based on weight (51-100 lbs)
13309                                                                                               1
13310                                                                                            8.00
13311                                                                                          100.00
13312                                                                                           50.00
13313                                                                    based on weight (50-100 lbs)
13314                                                                    based on weight (60-120 lbs)
13315                                                                                               8
13316                                                                                          136.00
13317                                                                                          500.00
13318                                                                                               8
13319                                                                                          500.00
13320                                                                                            1.00
13321                                                                                            bath
13322                                                                                          100.00
13323                                                                                          100.00
13324                                                                                          272.00
13325                                                                                          136.00
13326                                                                                          500.00
13327                                                                                          500.00
13328                                                                                          250.00
13329                                                                                            1.00
13330                                                                                           50.00
13331                                                                    based on weight (60-120 lbs)
13332                                                                                             2.5
13333                                                                                              90
13334                                                              27 milbemycin oxime, 1620 spinosad
13335                                                                                           11.00
13336                                                                                              90
13337                                                                                          300.00
13338                                                                                           20.00
13339                                                                                          227.00
13340                                                                                    small amount
13341                                                                                     unspecified
13342                                                                                          500.00
13343                                                                                     unspecified
13344                                                                    based on weight (60-120 lbs)
13345                                                                                               5
13346                                                                                          227.00
13347                                                                                          136.00
13348                                                                                             100
13349                                                                    based on weight (51-100 lbs)
13350                                                                                          500.00
13351                                                                                           20.00
13352                                                                                          900.00
13353                                                                                             5.5
13354                                                                                 based on weight
13355                                                                     based on weight (60-80 lbs)
13356                                                                                       27 , 1620
13357                                                                                     unspecified
13358                                                                                           37.50
13359                                                                                           20.00
13360                                                                                           75.00
13361                                                                                          250.00
13362                                                                                           37.50
13363                                                                                            1.00
13364                                                                                          500.00
13365                                                                                          136.00
13366                                                                                            2.00
13367                                                                                          500.00
13368                                                                                            5.00
13369                                                                                          375.00
13370                                                                                            5.00
13371                                                                                            5.00
13372                                                                                            1.00
13373                                                                                           15.00
13374                                                                                          200.00
13375                                                                                            1.00
13376                                                                                     unspecified
13377                                                                                            5.00
13378                                                                                            1.00
13379                                                                                           15.00
13380                                                                                            3.00
13381                                                                                          500.00
13382                                                                                            5.00
13383                                                                                            1.00
13384                                                                                            0.50
13385                                                                                            3.00
13386                                                                                            3.00
13387                                                                                          100.00
13388                                                                                          150.00
13389                                                                                            5.00
13390                                                                                            5.00
13391                                                                                            2.00
13392                                                                                            6.80
13393                                                                                            0.13
13394                                                                                            1.70
13395                                                                                          450.00
13396                                                                                          200.00
13397                                                                                          750.00
13398                                                                                           30.00
13399                                                                                          200.00
13400                                                                                          500.00
13401                                                                                          500.00
13402                                                                                          200.00
13403                                                                                           30.00
13404                                                                                           20.00
13405                                                                                     unspecified
13406                                                                                           24.00
13407                                                                                            3.20
13408                                                                                            2.00
13409                                                                                            1.00
13410                                                                                            4.90
13411                                                                                     unspecified
13412                                                                                           60.00
13413                                                                                            3.00
13414                                                                                            6.50
13415                                                                                           40.00
13416                                                                                           80.00
13417                                                                                          150.00
13418                                                                                          200.00
13419                                                                                          250.00
13420                                                                                           24.00
13421                                                                                          750.00
13422                                                                                           80.00
13423                                                                                            3.00
13424                                                                                            1.00
13425                                                                                            1.00
13426                                                                                            2.00
13427                                                                                            5.00
13428                                                                                            4.90
13429                                                                                            3.00
13430                                                                                           60.00
13431                                                                                            2.00
13432                                                                                            1.00
13433                                                                                          100.00
13434                                                                                           10.00
13435                                                                                           20.00
13436                                                                                           82.00
13437                                                                                            3.00
13438                                                                                            1.40
13439                                                                                            7.00
13440                                                                                            2.70
13441                                                                                            2.70
13442                                                                                            4.00
13443                                                                                          750.00
13444                                                                                            3.00
13445                                                                                            4.00
13446                                                                                            1.00
13447                                                                                            2.00
13448                                                                                            2.00
13449                                                                                            2.00
13450                                                                                            2.00
13451                                                                                            1.00
13452                                                                                            1.00
13453                                                                                         1000.00
13454                                                                    based on weight (51-100 lbs)
13455                                                                  based on weight (60.1-121 lbs)
13456                                                                     based on weight (25-75 lbs)
13457                                                                                          272.00
13458                                                                                           16.08
13459                                                                                 moderate amount
13460                                                                                     application
13461                                                                    based on weight (51-100 lbs)
13462                                                                  based on weight (60.1-121 lbs)
13463                                                                                          300.00
13464                                                            272 ivermectin, 227 pyrantel pamoate
13465                                                                                         1000.00
13466                                                                                          272.00
13467                                                                                          300.00
13468                                                                                     unspecified
13469                                                                                          500.00
13470                                                                                 based on weight
13471                                                                    based on weight (51-100 lbs)
13472                                                                                            2.50
13473                                                                                            0.25
13474                                                                                            8.00
13475                                                                    based on weight (51-100 lbs)
13476                                                                             tablet/pill/capsule
13477                                                                                           15.00
13478                                                                                          500.00
13479                                                                        based on weight (70 lbs)
13480                                                                                          500.00
13481                                                                                            1.00
13482                                                                                            5.00
13483                                                                    based on weight (51-100 lbs)
13484                                                                     based on weight (44-88 lbs)
13485                                                                                              20
13486                                                                                          625.00
13487                                                                                              20
13488                                                                                          625.00
13489                                                                                          500.00
13490                                                                                         1000.00
13491                                                                                          500.00
13492                                                                                           20.00
13493                                                                                          625.00
13494                                                                                          300.00
13495                                                                                           20.00
13496                                                                                 based on weight
13497                                                                                            0.13
13498                                                                                           25.00
13499                                                                                            2.50
13500                                                                                            1.25
13501                                                                                            0.00
13502                                                                                     unspecified
13503                                                                       based on weight (55+ lbs)
13504                                                                                            1.00
13505                                                                                          272.00
13506                                                                    based on weight (50-100 lbs)
13507                                                                                          272.00
13508                                                                                            4.00
13509                                                                                           10.00
13510                                                                                           30.00
13511                                                                                          130.00
13512                                                                                            0.81
13513                                                                                          500.00
13514                                                                                          272.00
13515                                                                                         1000.00
13516                                                                                          272.00
13517                                                                                            3.00
13518                                                                                          272.00
13519                                                                                         1000.00
13520                                                                                          500.00
13521                                                                                           40.00
13522                                                                                          500.00
13523                                                                                           80.00
13524                                                                                          250.00
13525                                                                                          500.00
13526                                                                                           50.00
13527                                                                                          500.00
13528                                                                                          500.00
13529                                                                                          500.00
13530                                                                                            4.00
13531                                                                                          750.00
13532                                                                                  1 pack/package
13533                                                                                          500.00
13534                                                                                          272.00
13535                                                                                            2.68
13536                                                                                           27.00
13537                                                                    based on weight (50-100 lbs)
13538                                                                    based on weight (51-100 lbs)
13539                                                                                         1620.00
13540                                                                                          100.00
13541                                                                                         1620.00
13542                                                                                         1620.00
13543                                                                                           75.00
13544                                                                                         1620.00
13545                                                                                          500.00
13546                                                                                           37.50
13547                                                                                           75.00
13548                                                                                         1647.00
13549                                                                                           20.00
13550                                                                                          250.00
13551                                                                                           12.00
13552                                                                                          900.00
13553                                                                                           20.00
13554                                                                                         1620.00
13555                                                                                          200.00
13556                                                                                            5.00
13557                                                                                            7.00
13558                                                                                         1647.00
13559                                                                                         1647.00
13560                                                                                            7.00
13561                                                                                            2.00
13562                                                                                        27, 1620
13563                                                                                     as directed
13564                                                                                        27, 1620
13565                                                                                          375.00
13566                                                                                            1.00
13567                                                                                            1.00
13568                                                                                            2.00
13569                                                                                          150.00
13570                                                                                          150.00
13571                                                                                          150.00
13572                                                                                            3.00
13573                                                                                            3.00
13574                                                                                           60.00
13575                                                                                     unspecified
13576                                                                    based on weight (60-120 lbs)
13577                                                                                            5.00
13578                                                                                            1.00
13579                                                                                    small amount
13580                                                                                            2.00
13581                                                                                       27 , 1620
13582                                                                                            2.00
13583                                                                                            1.00
13584                                                                                            5.00
13585                                                                                        27, 1620
13586                                                                                            1.00
13587                                                                                            1.00
13588                                                                                            1.00
13589                                                                                            2.00
13590                                                                                            bath
13591                                                                                          200.00
13592                                                                                            2.00
13593                                                                                          100.00
13594                                                                                     unspecified
13595                                                                                     unspecified
13596                                                                                          100.00
13597                                                                                          200.00
13598                                                                                           16.00
13599                                                                                            1.00
13600                                                                                            1.00
13601                                                                                     unspecified
13602                                                                                          150.00
13603                                                                                     unspecified
13604                                                                                            2.00
13605                                                                                     unspecified
13606                                                                                            1.00
13607                                                                                            1.00
13608                                                                                          230.00
13609                                                                                 0.25 inch strip
13610                                                                                           25.00
13611                                                                                           10.00
13612                                                                                            1.00
13613                                                                                           10.00
13614                                                                                           10.00
13615                                                                                    small amount
13616                                                                                         1100.00
13617                                                                                            0.25
13618                                                                                            0.25
13619                                                                                             100
13620                                                                                         1136.00
13621                                                                                          250.00
13622                                                                                           50.00
13623                                                                     based on weight (21-55 lbs)
13624                                                                     based on weight (21-55 lbs)
13625                                                                     based on weight (21-55 lbs)
13626                                                                                          100.00
13627                                                                                          300.00
13628                                                                     based on weight (21-55 lbs)
13629                                                                                          300.00
13630                                                                                           50.00
13631                                                                                    small amount
13632                                                                                           68.00
13633                                                                                          272.00
13634                                                                                          272.00
13635                                                                                            2.68
13636                                                                                          272.00
13637                                                                                            2.68
13638                                                                                          272.00
13639                                                                                          136.00
13640                                                                                          272.00
13641                                                                                          272.00
13642                                                                                          136.00
13643                                                                                          272.00
13644                                                                                          136.00
13645                                                                                          272.00
13646                                                                                          136.00
13647                                                                                          200.00
13648                                                                                           50.00
13649                                                                                            1.00
13650                                                                                            1.00
13651                                                                                          272.00
13652                                                                                          272.00
13653                                                                                          500.00
13654                                                                                    small amount
13655                                                                                            1.00
13656                                                                                         1000.00
13657                                                                                    small amount
13658                                                                                            1.00
13659                                                                                              15
13660                                                                                              15
13661                                                                                            4.00
13662                                                                                         1000.00
13663                                                                                           15.00
13664                                                                                           15.00
13665                                                                                          500.00
13666                                                                                     application
13667                                                                                           75.00
13668                                                                                          210.00
13669                                                                                            1.00
13670                                                                                            1.27
13671                                                                                           12.65
13672                                                                                          126.55
13673                                                                                            2.00
13674                                                                                           15.00
13675                                                                                          272.00
13676                                                                                         1000.00
13677                                                                                           15.00
13678                                                                                            1.00
13679                                                                                           75.00
13680                                                                                            0.02
13681                                                                                            1.00
13682                                                                                            1.27
13683                                                                                           12.60
13684                                                                                          126.55
13685                                                                                          139.20
13686                                                                                            0.20
13687                                                                                            1000
13688                                                                                             0.5
13689                                                                                         1620.00
13690                                                                                            1.00
13691                                                                                            2.30
13692                                                                                           10.00
13693                                                                    based on weight (60-120 lbs)
13694                                                                                          272.00
13695                                                                                           23.00
13696                                                                                            1.00
13697                                                                                            1.00
13698                                                                                           75.00
13699                                                                                          300.00
13700                                                                                          500.00
13701                                                                                           75.00
13702                                                                                           10.00
13703                                                                                            6.00
13704                                                                                           50.00
13705                                                                                           16.00
13706                                                                                         1620.00
13707                                                                                         1620.00
13708                                                                                          500.00
13709                                                                                          272.00
13710                                                                                            0.60
13711                                                                                            2.68
13712                                                                                            8.00
13713                                                                                           10.00
13714                                                                                            0.60
13715                                                                                             750
13716                                                                                          175.00
13717                                                                                            0.60
13718                                                                                            0.60
13719                                                                                            1.00
13720                                                                                          150.00
13721                                                                                          500.00
13722                                                                                            1.00
13723                                                                     based on weight (44-88 lbs)
13724                                                                                 based on weight
13725                                                                                            0.70
13726                                                                                          250.00
13727                                                                                         1000.00
13728                                                                                          150.00
13729                                                                                          500.00
13730                                                                             tablet/pill/capsule
13731                                                                                            8.00
13732                                                                                          250.00
13733                                                                                         1000.00
13734                                                                                            1.00
13735                                                                                            0.60
13736                                                                                          200.00
13737                                                                    based on weight (50-100 lbs)
13738                                                                                            0.70
13739                                                                                          150.00
13740                                                                                     unspecified
13741                                                                                     unspecified
13742                                                                                            1.05
13743                                                                                           60.00
13744                                                                                          300.00
13745                                                                                           23.00
13746                                                                                           23.00
13747                                                                                         23, 460
13748                                                                                           23.00
13749                                                                                         1000.00
13750                                                                                         1400.00
13751                                                                                           23.00
13752                                                                                          200.00
13753                                                                                           23.00
13754                                                                                         1000.00
13755                                                                                          200.00
13756                                                                                     unspecified
13757                                                                                          150.00
13758                                                                                          150.00
13759                                                                                          300.00
13760                                                                                          150.00
13761                                                                                          200.00
13762                                                                                          300.00
13763                                                                                          500.00
13764                                                                                           20.00
13765                                                                                          150.00
13766                                                                                              50
13767                                                                                           11.50
13768                                                                                     application
13769                                                                                                
13770                                                                                          200.00
13771                                                                                           50.00
13772                                                                                          136.00
13773                                                                                          125.00
13774                                                                                             100
13775                                                                                             272
13776                                                                       based on weight (50+ lbs)
13777                                                                                          136.00
13778                                                                                          100.00
13779                                                                                          500.00
13780                                                                                            1.00
13781                                                                                            37.5
13782                                                                        based on weight (50 lbs)
13783                                                                    based on weight (50-100 lbs)
13784                                                                                          100.00
13785                                                                                          200.00
13786                                                                                               1
13787                                                                                          100.00
13788                                                                                           50.00
13789                                                                                          100.00
13790                                                                                           50.00
13791                                                                                          100.00
13792                                                                                          100.00
13793                                                                                          100.00
13794                                                                                          184.00
13795                                                                                           10.00
13796                                                                                      1 wipe/pad
13797                                                                                           36.00
13798                                                                                            0.30
13799                                                                                            0.30
13800                                                                                            1.00
13801                                                                                              75
13802                                                                                            1.00
13803                                                                                             375
13804                                                                                            1.20
13805                                                                                            1.00
13806                                                                                            1.00
13807                                                                                         4200.00
13808                                                                                           50.00
13809                                                                                          500.00
13810                                                                                          500.00
13811                                                                                           50.00
13812                                                                                          125.00
13813                                                                                           50.00
13814                                                                                           10.00
13815                                                                                           20.00
13816                                                                                          272.00
13817                                                                                          375.00
13818                                                                                            1.20
13819                                                                                           20.00
13820                                                                                          272.00
13821                                                                                            2.90
13822                                                                                           60.00
13823                                                                                            4.00
13824                                                                                          272.00
13825                                                                                            9.80
13826                                                                                           20.00
13827                                                                                            1.00
13828                                                                                            1.00
13829                                                                                           50.00
13830                                                                                           50.00
13831                                                                                          100.00
13832                                                                                          500.00
13833                                                                                            1.00
13834                                                                                           25.00
13835                                                                                           10.00
13836                                                                                           20.00
13837                                                                                         1000.00
13838                                                                                          130.00
13839                                                                                            1.00
13840                                                                                          272.00
13841                                                                                              66
13842                                                                                           20.00
13843                                                                                           37.50
13844                                                                                           10.00
13845                                                                                            1.00
13846                                                                                            1.00
13847                                                                                            1.20
13848                                                                                            4.00
13849                                                                                            1.00
13850                                                                                           10.00
13851                                                                                            1.00
13852                                                                                            4.00
13853                                                                                          500.00
13854                                                                                           10.00
13855                                                                                           20.00
13856                                                                                           37.50
13857                                                                                            1.00
13858                                                                                            1.00
13859                                                                                            1.20
13860                                                                                            1.00
13861                                                                                            1.60
13862                                                                                            1.60
13863                                                                                           13.00
13864                                                                                            2.00
13865                                                                                           16.00
13866                                                                                          136.00
13867                                                                                          100.00
13868                                                                                          500.00
13869                                                                                           20.00
13870                                                                                           10.00
13871                                                                                          500.00
13872                                                                                          300.00
13873                                                                                           37.50
13874                                                                                            1.00
13875                                                                                            0.02
13876                                                                                            1.20
13877                                                                                            1.00
13878                                                                                            3.30
13879                                                                                           30.00
13880                                                                                            1.00
13881                                                                                               7
13882                                                                                          272.00
13883                                                                                           50.00
13884                                                                                               2
13885                                                                                          272.00
13886                                                                                          456.00
13887                                                                                            3.00
13888                                                                                          200.00
13889                                                                                          200.00
13890                                                                                            0.70
13891                                                                                          375.00
13892                                                                                          150.00
13893                                                                    based on weight (51-100 lbs)
13894                                                                    based on weight (51-100 lbs)
13895                                                                                           30.00
13896                                                                  based on weight (50.1-100 lbs)
13897                                                                                            75.5
13898                                                                                          100.00
13899                                                                                          100.00
13900                                                                                          300.00
13901                                                                                          150.00
13902                                                                                     unspecified
13903                                                                                             200
13904                                                                                             500
13905                                                                    based on weight (51-100 lbs)
13906                                                                    based on weight (51-100 lbs)
13907                                                                                           20.00
13908                                                                                             100
13909                                                                                           10.00
13910                                                                  based on weight (50.1-100 lbs)
13911                                                                                            75.5
13912                                                                                     unspecified
13913                                                                                     unspecified
13914                                                                                          100.00
13915                                                                                            1.00
13916                                                                                            1.00
13917                                                                                            1.00
13918                                                                                          250.00
13919                                                                                           50.00
13920                                                                                           25.00
13921                                                                                          120.00
13922                                                                                           27.00
13923                                                                                         1620.00
13924                                                                                           62.50
13925                                                                                        27, 1620
13926                                                                                          200.00
13927                                                                                           15.00
13928                                                                                          200.00
13929                                                                                           15.00
13930                                                                                          240.00
13931                                                                                          100.00
13932                                                                                            2.00
13933                                                                                            3.00
13934                                                                                            3.00
13935                                                                                           75.00
13936                                                                                          500.00
13937                                                                                            1.00
13938                                                                                          300.00
13939                                                                                            0.60
13940                                                                                          300.00
13941                                                                                            0.60
13942                                                                                            0.60
13943                                                                    based on weight (51-100 lbs)
13944                                                                                            0.60
13945                                                                                          136.00
13946                                                                                                
13947                                                                                          272.00
13948                                                                                          136.00
13949                                                                                          200.00
13950                                                                                         1000.00
13951                                                                                            8.00
13952                                                                                          200.00
13953                                                                                            1.00
13954                                                                                          200.00
13955                                                                                           75.00
13956                                                                                         1000.00
13957                                                                                            1.00
13958                                                                                            8.00
13959                                                                                            8.00
13960                                                                                            1.00
13961                                                                                          300.00
13962                                                                                          300.00
13963                                                                                           25.00
13964                                                                                           75.00
13965                                                                                            2.00
13966                                                                                          500.00
13967                                                                                          200.00
13968                                                                                          136.00
13969                                                                                            2.00
13970                                                                                            8.00
13971                                                                                            2.00
13972                                                                                            2.50
13973                                                                                            1.00
13974                                                                                          500.00
13975                                                                                          100.00
13976                                                                                           20.00
13977                                                                                           24.00
13978                                                                                          150.00
13979                                                                                            2.68
13980                                                                                          272.00
13981                                                                                          500.00
13982                                                                                          150.00
13983                                                                                           20.00
13984                                                                                           48.00
13985                                                                                          500.00
13986                                                                                           50.00
13987                                                                                           25.00
13988                                                                                          750.00
13989                                                                                            4.00
13990                                                                                          150.00
13991                                                                                          100.00
13992                                                                                          272.00
13993                                                                                           68.00
13994                                                                                               1
13995                                                                                               1
13996                                                                                 0.25 inch strip
13997                                                                                           80.00
13998                                                                                     unspecified
13999                                                                                            1.00
14000                                                                                           80.00
14001                                                                                          150.00
14002                                                                                            1.00
14003                                                                                          375.00
14004                                                                                           20.00
14005                                                                                           75.00
14006                                                                                                
14007                                                                    based on weight (50-100 lbs)
14008                                                                                               8
14009                                                                                          223.00
14010                                                                                          300.00
14011                                                                                           50.00
14012                                                                                          600.00
14013                                                                                          300.00
14014                                                                                            2.00
14015                                                                                          136.00
14016                                                                                          125.00
14017                                                                                           25.00
14018                                                                                          150.00
14019                                                                                          272.00
14020                                                                                           50.00
14021                                                                                          100.00
14022                                                                                          272.00
14023                                                                                           80.00
14024                                                                                           50.00
14025                                                                                          272.00
14026                                                                                           80.00
14027                                                                                          272.00
14028                                                                                           80.00
14029                                                                                           50.00
14030                                                                                           50.00
14031                                                                                          250.00
14032                                                                                          200.00
14033                                                                                          225.00
14034                                                                                         1620.00
14035                                                                                          240.00
14036                                                                                          240.00
14037                                                                                           23.00
14038                                                                                          468.00
14039                                                                                           75.00
14040                                                                                          400.00
14041                                                                                           75.00
14042                                                                                          468.00
14043                                                                                           20.00
14044                                                                                           20.00
14045                                                                                           50.00
14046                                                                                           50.00
14047                                                                                          300.00
14048                                                                                           75.00
14049                                                                                          375.00
14050                                                                                     unspecified
14051                                                                    based on weight (50-100 lbs)
14052                                                                                          375.00
14053                                                                                            6.50
14054                                                                                           10.00
14055                                                                    based on weight (50-100 lbs)
14056                                                                                           50.00
14057                                                                                           20.00
14058                                                                                            1.00
14059                                                                     based on weight (40-85 lbs)
14060                                                                    based on weight (51-100 lbs)
14061                                                                    based on weight (51-100 lbs)
14062                                                                    based on weight (50-100 lbs)
14063                                                                     based on weight (44-88 lbs)
14064                                                                    based on weight (51-100 lbs)
14065                                                                                            1.00
14066                                                                                            7.50
14067                                                                                            7.50
14068                                                                                           37.50
14069                                                                                         1000.00
14070                                                                                         1400.00
14071                                                                                              66
14072                                                                                            1500
14073                                                                                            7.50
14074                                                                                           25.00
14075                                                                                            5.00
14076                                                                                            7.50
14077                                                                                            7.50
14078                                                                                           37.50
14079                                                                                         1500.00
14080                                                                                              75
14081                                                                                              66
14082                                                                                          375.00
14083                                                                                         1000.00
14084                                                                                            5.00
14085                                                                                           37.50
14086                                                                                            7.50
14087                                                                                          500.00
14088                                                                                            7.50
14089                                                                                           37.50
14090                                                                                            5.00
14091                                                                                         1000.00
14092                                                                                            7.50
14093                                                                                           37.50
14094                                                                                            5.00
14095                                                                                         1000.00
14096                                                                                           37.50
14097                                                                                            5.00
14098                                                                                            7.50
14099                                                                                         1000.00
14100                                                                                           20.00
14101                                                                                           37.50
14102                                                                                            5.00
14103                                                                                            7.50
14104                                                                                         1000.00
14105                                                                                           60.00
14106                                                                    based on weight (51-100 lbs)
14107                                                                                          375.00
14108                                                                                          500.00
14109                                                                                           50.00
14110                                                                                           50.00
14111                                                                                           10.00
14112                                                                                          750.00
14113                                                                                            1.00
14114                                                                    based on weight (60-120 lbs)
14115                                                                                          750.00
14116                                                                                            1.00
14117                                                                                          500.00
14118                                                              27 milbemycin oxime, 1620 spinosad
14119                                                                                         1620.00
14120                                                                                             0.4
14121                                                                                             0.4
14122                                                                                             0.4
14123                                                                                             1 l
14124                                                                                               4
14125                                                                                            1.00
14126                                                                                            1.00
14127                                                                                            1.00
14128                                                                                        27, 1620
14129                                                                    based on weight (60-120 lbs)
14130                                                                                            8.00
14131                                                                                    small amount
14132                                                                                         1620.00
14133                                                                                          200.00
14134                                                                                           27.00
14135                                                                                           16.00
14136                                                                                            8.00
14137                                                                                           70.00
14138                                                                                           15.00
14139                                                                                            8.00
14140                                                                                           23.00
14141                                                                                           64.80
14142                                                                                          500.00
14143                                                                                         1000.00
14144                                                                                            1.00
14145                                                                                            1.00
14146                                                                                          500.00
14147                                                                    based on weight (51-100 lbs)
14148                                                                     based on weight (44-88 lbs)
14149                                                                                            1.00
14150                                                                                            1.00
14151                                                                    based on weight (50-100 lbs)
14152                                                                                           20.00
14153                                                                                              90
14154                                                                    based on weight (50-100 lbs)
14155                                                                                            5.00
14156                                                                                           80.00
14157                                                                                           75.00
14158                                                                                          750.00
14159                                                                                           40.00
14160                                                                                          375.00
14161                                                                                           75.00
14162                                                                    based on weight (50-100 lbs)
14163                                                                                     unspecified
14164                                                                    based on weight (51-100 lbs)
14165                                                                                    small amount
14166                                                                                               1
14167                                                                                            1.00
14168                                                                                            4.50
14169                                                                                              20
14170                                                                                    small amount
14171                                                                                               1
14172                                                                    based on weight (51-100 lbs)
14173                                                                      based on weight (0-25 lbs)
14174                                                                    based on weight (89-132 lbs)
14175                                                                                     as directed
14176                                                                                            3.75
14177                                                                    based on weight (50-100 lbs)
14178                                                                    based on weight (89-132 lbs)
14179                                                                                               1
14180                                                                    based on weight (88-120 lbs)
14181                                                                    based on weight (51-100 lbs)
14182                                                                                          272.00
14183                                                                                          750.00
14184                                                                                          272.00
14185                                                                                          260.00
14186                                                                                           50.00
14187                                                                                          500.00
14188                                                                                          900.00
14189                                                                                            9.80
14190                                  1 dexamethasone, 3.5 neomycin sulfate, 10000 units polymyxin b
14191                                                                                          272.00
14192                                                                                          136.00
14193                                                                                           50.00
14194                                                                                           16.00
14195                                                                                           25.00
14196                                                                                          272.00
14197                                                                                           80.00
14198                                                                                          100.00
14199                                                                                          300.00
14200                                                                                           25.00
14201                                                                                            2.00
14202                                                                                           25.00
14203                                                                                           60.00
14204                                                                                            2.00
14205                                                                                          272.00
14206                                                                                          500.00
14207                                                                                            1.00
14208                                                                                         1000.00
14209                                                                                            0.14
14210                                                                                         1620.00
14211                                                                                         1620.00
14212                                                                                            6.00
14213                                                                                           20.00
14214                                                                                         1620.00
14215                                                                                          136.00
14216                                                                                          150.00
14217                                                                                            0.20
14218                                                                                            3.00
14219                                                                    based on weight (51-100 lbs)
14220                                                                                           25.00
14221                                                                                     unspecified
14222                                                                                          100.00
14223                                                                                          300.00
14224                                                                                          600.00
14225                                                                                          375.00
14226                                                                                          600.00
14227                                                                                           50.00
14228                                                                                     unspecified
14229                                                                                          200.00
14230                                                                                            1.00
14231                                                                                           60.00
14232                                                                                            1.00
14233                                                                                           10.00
14234                                                                                            5.40
14235                                                                                            1.50
14236                                                                                            1.00
14237                                                                                            1.00
14238                                                                                     unspecified
14239                                                                                            0.50
14240                                                                                          136.00
14241                                                                     based on weight (44-88 lbs)
14242                                                                     based on weight (26-50 lbs)
14243                                                                                            66.5
14244                                                                                          136.00
14245                                                                     based on weight (22-44 lbs)
14246                                                                                          136.00
14247                                                                                            0.09
14248                                                                                          136.00
14249                                                                                            66.5
14250                                                                                          136.00
14251                                                                                            66.5
14252                                                                                          136.00
14253                                                                                           16.00
14254                                                                                          500.00
14255                                                                                          250.00
14256                                                                                          500.00
14257                                                                                          250.00
14258                                                                                          200.00
14259                                                                                            0.45
14260                                                                                            0.90
14261                                                                                            1.90
14262                                                                                         1620.00
14263                                                                                           27.00
14264                                                                                           27.00
14265                                                                                         1620.00
14266                                                                                          272.00
14267                                                                                          227.00
14268                                                                                          272.00
14269                                                                                            2.68
14270                                                                                          900.00
14271                                                                                          500.00
14272                                                                                          272.00
14273                                                                                          136.00
14274                                                                                          750.00
14275                                                                                            0.20
14276                                                                                          272.00
14277                                                                                          136.00
14278                                                                                          300.00
14279                                                                                            7.50
14280                                                                                          300.00
14281                                                                                          272.00
14282                                                                    based on weight (50-100 lbs)
14283                                                                                            0.40
14284                                                                    based on weight (50-100 lbs)
14285                                                                                            0.40
14286                                                                                              75
14287                                                                                            0.40
14288                                                                                            0.40
14289                                                                                            0.40
14290                                                                                          500.00
14291                                                                                     unspecified
14292                                                                                            0.40
14293                                                                                          100.00
14294                                                                                          500.00
14295                                                                                          272.00
14296                                                                                             272
14297                                                                                               1
14298                                                                                              75
14299                                                                                           23.00
14300                                                                                           75.00
14301                                                                    based on weight (50-100 lbs)
14302                                                                       based on weight (25+ lbs)
14303                                                                                          250.00
14304                                                                                           60.00
14305                                                                                            1.50
14306                                                                                            3.00
14307                                                                                            0.70
14308                                                                                            0.35
14309                                                                                            0.35
14310                                                                                          500.00
14311                                                                                            0.35
14312                                                                                          125.00
14313                                                                                            0.25
14314                                                                                            0.35
14315                                                                                            0.50
14316                                                                                            1.00
14317                                                                                            2.00
14318                                                                                            1.00
14319                                                            272 ivermectin, 227 pyrantel pamoate
14320                                                                                          500.00
14321                                                                                            1.50
14322                                                                                            3.00
14323                                                                                     application
14324                                                                                             3.5
14325                                                                                           60.00
14326                                                                                           10.00
14327                                                                                           60.00
14328                                                                                           60.00
14329                                                                                           60.00
14330                                                                                     unspecified
14331                                                                                           10.00
14332                                                                                           60.00
14333                                                                                           10.00
14334                                                                   based on weight (20.1-55 lbs)
14335                                                                                            2.50
14336                                                                                             2.5
14337                                                                                          500.00
14338                                                                                          500.00
14339                                                                                            1.00
14340                                                                                            1.00
14341                                                                                            1.00
14342                                                                                              26
14343                                                                                            1.00
14344                                                                                          500.00
14345                                                                                           26.00
14346                                                                                            1.00
14347                                                                                          250.00
14348                                                                                           30.00
14349                                                                                            3.00
14350                                                                                            1.00
14351                                                                                            1.00
14352                                                                                            1.00
14353                                                                                           20.00
14354                                                                                            1.00
14355                                                                                            1.00
14356                                                                                            3.50
14357                                                                                            8.00
14358                                                                                            1.00
14359                                                                                            0.90
14360                                                                                          272.00
14361                                                                                          300.00
14362                                                                                         1000.00
14363                                                                                           20.00
14364                                                                                          272.00
14365                                                            272 ivermectin, 227 pyrantel pamoate
14366                                                                                               1
14367                                                                                               1
14368                                                                                            1.00
14369                                                                                            5.00
14370                                                                                          500.00
14371                                                                                            2.00
14372                                                                                              75
14373                                                                                 based on weight
14374                                                                                          500.00
14375                                                                                              75
14376                                                                                 based on weight
14377                                                                                          500.00
14378                                                                       based on weight (60+ lbs)
14379                                                                                              75
14380                                                                                 based on weight
14381                                                                                          500.00
14382                                                                                         1500.00
14383                                                                                           23.00
14384                                                                                           68.00
14385                                                                    based on weight (51-100 lbs)
14386                                                                    based on weight (60-120 lbs)
14387                                                                    based on weight (51-100 lbs)
14388                                                                     based on weight (24-60 lbs)
14389                                                                                           23.00
14390                                                                                           68.00
14391                                                                                          100.00
14392                                                                                            1.00
14393                                                                                           25.00
14394                                                                                            1.00
14395                                                                                          250.00
14396                                                                                            1.00
14397                                                                                            1.00
14398                                                                                            1.00
14399                                                                                            4.00
14400                                                                                            1.00
14401                                                                                            1.00
14402                                                                                          227.00
14403                                                                                         1000.00
14404                                                              460 lufenuron, 23 milbemycin oxime
14405                                                                                             227
14406                                                                                               1
14407                                                                                               1
14408                                                                    based on weight (51-100 lbs)
14409                                                                                              66
14410                                                                                            0.10
14411                                                                                          375.00
14412                                                                    based on weight (60-120 lbs)
14413                                                                     based on weight (44-88 lbs)
14414                                                                        based on weight (60 lbs)
14415                                                                                             272
14416                                                                                         1000.00
14417                                                                                          200.00
14418                                                                                           50.00
14419                                                                                             0.4
14420                                                                                               1
14421                                                                                               1
14422                                                                                          375.00
14423                                                                                            0.80
14424                                                                                           37.50
14425                                                                                          272.00
14426                                                                                     unspecified
14427                                                                                          550.00
14428                                                                                     unspecified
14429                                                                    based on weight (51-100 lbs)
14430                                                                                          500.00
14431                                                                    based on weight (51-100 lbs)
14432                                                                                 based on weight
14433                                                                                     unspecified
14434                                                                                         1 scoop
14435                                                                                          100.00
14436                                                                                           50.00
14437                                                                                            3.00
14438                                                                                            0.55
14439                                                                                           10.00
14440                                                                                            2.50
14441                                                                                            0.25
14442                                                                                            2.20
14443                                                                    based on weight (51-100 lbs)
14444                                                                                     unspecified
14445                                                                                     unspecified
14446                                                                                     unspecified
14447                                                                                     unspecified
14448                                                                    based on weight (51-100 lbs)
14449                                                                    based on weight (51-100 lbs)
14450                                                                                          500.00
14451                                                                    based on weight (51-100 lbs)
14452                                                                                          500.00
14453                                                                                           16.00
14454                                                                                          272.00
14455                                                                                 0.25 inch strip
14456                                                                                            2.90
14457                                                                                          272.00
14458                                                                                          272.00
14459                                                                                          136.00
14460                                                                                          272.00
14461                                                                                          136.00
14462                                                                                            5.00
14463                                                                                          272.00
14464                                                                                          136.00
14465                                                                                          272.00
14466                                                                                          272.00
14467                                                                                           75.00
14468                                                                                          200.00
14469                                                                                         1000.00
14470                                                                                           20.00
14471                                                                                     unspecified
14472                                                                                            0.40
14473                                                                                     unspecified
14474                                                                                            0.60
14475                                                                                          400.00
14476                                                                                            0.60
14477                                                                                     unspecified
14478                                                                                            0.80
14479                                                                                 based on weight
14480                                                                                            0.40
14481                                                                                           90.00
14482                                                                                          150.00
14483                                                                                            0.80
14484                                                                                           10.00
14485                                                                                          500.00
14486                                                                                           75.00
14487                                                                                            0.80
14488                                                                    based on weight (51-100 lbs)
14489                                                                    based on weight (51-100 lbs)
14490                                                                    based on weight (51-100 lbs)
14491                                                                                            1.00
14492                                                                                               5
14493                                                                                              10
14494                                                                                            5.00
14495                                                                    based on weight (51-100 lbs)
14496                                                                                          500.00
14497                                                                                            5.00
14498                                                                    based on weight (51-100 lbs)
14499                                                                    based on weight (50-100 lbs)
14500                                                                                          500.00
14501                                                                                          750.00
14502                                                                                         1000.00
14503                                                                                         1000.00
14504                                                                                            3.20
14505                                                                                          272.00
14506                                                                                            1.00
14507                                                                                            1.00
14508                                                                                            1.00
14509                                                                                            1.00
14510                                                                                           80.00
14511                                                                                           16.00
14512                                                                    based on weight (51-100 lbs)
14513                                                                     based on weight (60-70 lbs)
14514                                                                                            1.20
14515                                                                                           70.00
14516                                                                                          255.00
14517                                                                                          150.00
14518                                                                                           80.00
14519                                                                                           16.00
14520                                                                                          113.50
14521                                                                                          113.50
14522                                                                                          113.50
14523                                                                                           70.00
14524                                                                                           70.00
14525                                                                                          113.50
14526                                                                                          136.00
14527                                                                                            66.5
14528                                                                                   1 bottle/vial
14529                                                                                               1
14530                                                                                            0.30
14531                                                                                            0.30
14532                                                                                          272.00
14533                                                                                          136.00
14534                                                                                          272.00
14535                                                                                            0.30
14536                                                                                          136.00
14537                                                                                          272.00
14538                                                                                            0.30
14539                                                                                          136.00
14540                                                                                            0.20
14541                                                                                            0.20
14542                                                                                           20.00
14543                                                                                            0.20
14544                                                                                          200.00
14545                                                                                           20.00
14546                                                                                            0.30
14547                                                                                               1
14548                                                                                          120.00
14549                                                                                          120.00
14550                                                                                          200.00
14551                                                                                          500.00
14552                                                                                          113.50
14553                                                                                            1.00
14554                                                                                            1.00
14555                                                                                            1.00
14556                                                                                            1.00
14557                                                                                            1.00
14558                                                                                           15.00
14559                                                                                            1.00
14560                                                                                         1620.00
14561                                                                                           16.00
14562                                                                                           108.5
14563                                                                                     unspecified
14564                                                                                          272.00
14565                                                                                          272.00
14566                                                                                         1600.00
14567                                                                                          460.00
14568                                                                                          272.00
14569                                                                                            9.70
14570                                                                                           75.00
14571                                                                                          300.00
14572                                                                                           75.00
14573                                                                                           23.00
14574                                                                                          460.00
14575                                                                                          375.00
14576                                                                    based on weight (51-100 lbs)
14577                                                                                            66.5
14578                                                                       based on weight (25+ lbs)
14579                                                                                          170.00
14580                                                                                          200.00
14581                                                                                            1.00
14582                                                                   based on weight (44.1-88 lbs)
14583                                                                    based on weight (51-100 lbs)
14584                                                                   based on weight (44.1-88 lbs)
14585                                                                    based on weight (51-100 lbs)
14586                                                                   based on weight (44.1-88 lbs)
14587                                                                    based on weight (51-100 lbs)
14588                                                                   based on weight (44.1-88 lbs)
14589                                                                                           80.00
14590                                                                                         1000.00
14591                                                                                          750.00
14592                                                                                           75.00
14593                                                                                          120.00
14594                                                                                            1.00
14595                                                                                          100.00
14596                                                                                            1.00
14597                                                                                          136.00
14598                                                                                           10.00
14599                                                                                          272.00
14600                                                                                           10.00
14601                                                                                     unspecified
14602                                                                                           23.00
14603                                                                                           80.00
14604                                                                                           10.00
14605                                                           25 milbemycin oxime, 228 praziquantel
14606                                                                                           80.00
14607                                                                                           10.00
14608                                                           23 milbemycin oxime, 228 praziquantel
14609                                                                                           10.00
14610                                                                                          500.00
14611                                                                                            1.00
14612                                                                                           10.00
14613                                                                                          500.00
14614                                                                                           75.00
14615                                                                                          113.50
14616                                                                                            2.00
14617                                                                                          250.00
14618                                                                                          500.00
14619                                                                                          227.00
14620                                                                                          500.00
14621                                                                                            2.25
14622                                                                                          272.00
14623                                                                                            66.5
14624                                                                                            2.00
14625                                                                                            8.00
14626                                                                                           20.00
14627                                                                                          272.00
14628                                                                                          272.00
14629                                                                                          200.00
14630                                                                                          272.00
14631                                                                                              66
14632                                                                                           15.00
14633                                                                                           20.00
14634                                                                                           75.00
14635                                                                                            4.00
14636                                                                                          272.00
14637                                                                     based on weight (44-88 lbs)
14638                                                                                          500.00
14639                                                                                          150.00
14640                                                                                          150.00
14641                                                                                          204.00
14642                                                                                          500.00
14643                                                                                            3.00
14644                                                                                            2.00
14645                                                                                        27, 1620
14646                                                                                          262.00
14647                                                                                          136.00
14648                                                                                          204.00
14649                                                                                            1000
14650                                                                                               1
14651                                                                                          272.00
14652                                                                                          136.00
14653                                                                                         1000.00
14654                                                                                    0.1%, 1%, 2%
14655                                                                                          750.00
14656                                                           23 milbemycin oxime, 228 praziquantel
14657                                                                                             136
14658                                                            272 ivermectin, 227 pyrantel pamoate
14659                                                                                             500
14660                                                                                             750
14661                                                                                         1000.00
14662                                                                                           10.00
14663                                                                                            3.75
14664                                                                    based on weight (50-100 lbs)
14665                                                                    based on weight (60-121 lbs)
14666                                                                                         1000.00
14667                                                                                           10.00
14668                                                                                         1000.00
14669                                                                                           10.00
14670                                                                                         1000.00
14671                                                                                            7.50
14672                                                                                           16.00
14673                                                                                          200.00
14674                                                                                           23.00
14675                                                                                          136.00
14676                                                                                            3.75
14677                                                                                          750.00
14678                                                                                          500.00
14679                                                                                           16.00
14680                                                                                            1.00
14681                                                                                            1.50
14682                                                                                            3.75
14683                                                                                          300.00
14684                                                                                            3.75
14685                                                                                            0.60
14686                                                                                            1.00
14687                                                                                           16.00
14688                                                                                            3.75
14689                                                                                            4.00
14690                                                                                          300.00
14691                                                                                            3.75
14692                                                                                          300.00
14693                                                                                            3.25
14694                                                                                          500.00
14695                                                                                          200.00
14696                                                                                          200.00
14697                                                                                    small amount
14698                                                                                           37.50
14699                                                                                 based on weight
14700                                                                    based on weight (50-100 lbs)
14701                                                                                 based on weight
14702                                                            272 ivermectin, 227 pyrantel pamoate
14703                                                                                          400.00
14704                                                                                           60.00
14705                                                                                          272.00
14706                                                                                          320.00
14707                                                                                          750.00
14708                                                                                           23.00
14709                                                                                           50.00
14710                                                                                            1.00
14711                                                                    based on weight (51-100 lbs)
14712                                                                     based on weight (56-95 lbs)
14713                                                                        based on weight (85 lbs)
14714                                                                                          750.00
14715                                                                                         1000.00
14716                                                                                          320.00
14717                                                                                          500.00
14718                                                                                            3.00
14719                                                                                            1.00
14720                                                                    based on weight (51-100 lbs)
14721                                                                     based on weight (56-95 lbs)
14722                                                                    based on weight (51-100 lbs)
14723                                                                    based on weight (51-100 lbs)
14724                                                                                            2.00
14725                                                                                           75.00
14726                                                                     based on weight (45-88 lbs)
14727                                                                                             228
14728                                                                                         23, 228
14729                                                                                         1000.00
14730                                                           23 milbemycin oxime, 228 praziquantel
14731                                                                                            1000
14732                                                                                            0.40
14733                                                           23 milbemycin oxime, 228 praziquantel
14734                                                                                            1000
14735                                                                                            0.40
14736                                                                                            0.40
14737                                                                    based on weight (51-100 lbs)
14738                                                                     based on weight (45-88 lbs)
14739                                                                                            2.40
14740                                                                                            0.10
14741                                                                                           20.00
14742                                                                                          750.00
14743                                                                                          250.00
14744                                                                                 based on weight
14745                                                                                           23.00
14746                                                                                              66
14747                                                                                           23.00
14748                                                                                             7.5
14749                                                                                          500.00
14750                                                                                          300.00
14751                                                                                          500.00
14752                                                                                           50.00
14753                                                                                          150.00
14754                                                                       based on weight (22+ lbs)
14755                                                                    based on weight (51-100 lbs)
14756                                                                                             7.5
14757                                                                                             7.5
14758                                                                                             250
14759                                                                                              50
14760                                                                    based on weight (51-100 lbs)
14761                                                                                           60.00
14762                                                                                            1.00
14763                                                                                               1
14764                                                                                    small amount
14765                                                                                           30.00
14766                                                                                           75.00
14767                                                                                           75.00
14768                                                                                            1.00
14769                                                                                          200.00
14770                                                                                            1.00
14771                                                                                            1.00
14772                                                                                          272.00
14773                                                                                          136.00
14774                                                                                           75.00
14775                                                                                     unspecified
14776                                                                                          200.00
14777                                                                                     unspecified
14778                                                                                     unspecified
14779                                                                                           31.00
14780                                                                                           75.00
14781                                                                                            1.00
14782                                                                                          272.00
14783                                                                                          136.00
14784                                                                                          272.00
14785                                                                                           80.00
14786                                                                                           16.00
14787                                                                                          200.00
14788                                                                                          200.00
14789                                                                                          136.00
14790                                                                                          272.00
14791                                                                                          136.00
14792                                                                                           16.00
14793                                                                                          100.00
14794                                                                                          100.00
14795                                                                                           75.00
14796                                                                                            0.50
14797                                                                                            1.00
14798                                                                                            1.00
14799                                                                                          200.00
14800                                                                                            1.00
14801                                                                                           16.00
14802                                                                                           80.00
14803                                                                                          100.00
14804                                                                                            1.00
14805                                                                                            1.00
14806                                                                                            1.00
14807                                                                                           16.00
14808                                                                                          100.00
14809                                                                                           75.00
14810                                                                                          300.00
14811                                                                                          500.00
14812                                                                                           16.00
14813                                                                                          100.00
14814                                                                                            1.00
14815                                                                                           75.00
14816                                                                                          200.00
14817                                                                                          800.00
14818                                                                                          500.00
14819                                                                                            1.00
14820                                                                                           80.00
14821                                                                                            3.40
14822                                                                                           15.00
14823                                                                                            1.40
14824                                                                                           75.00
14825                                                                                        10000.00
14826                                                                                            0.63
14827                                                                                          250.00
14828                                                                                           32.10
14829                                                                                           20.00
14830                                                                                           80.00
14831                                                                                           30.00
14832                                                                                           20.00
14833                                                                                        350, 900
14834                                                                                        27, 1620
14835                                                                                            9.80
14836                                                                                          250.00
14837                                                                                          250.00
14838                                                                                        350, 900
14839                                                                                         23, 228
14840                                                                                            2.50
14841                                                                                          272.00
14842                                                                                           23.00
14843                                                                                         1620.00
14844                                                                                            1.00
14845                                                                                            1.00
14846                                                                                            5.00
14847                                                                                            1.00
14848                                                                                            1.00
14849                                                                                          100.00
14850                                                                                            4.00
14851                                                                                            2.00
14852                                                                                           60.00
14853                                                                                            3.00
14854                                                                                          500.00
14855                                                                                          500.00
14856                                                                                           20.00
14857                                                                                     unspecified
14858                                                                                         23, 460
14859                                                                                           20.00
14860                                                                                          170.00
14861                                                                                              75
14862                                                                                     unspecified
14863                                                                                     unspecified
14864                                                                  based on weight (50.1-100 lbs)
14865                                                                                           23.00
14866                                                                                            0.48
14867                                                                                        23 , 228
14868                                                                                          900.00
14869                                                                                            1.00
14870                                                                    based on weight (50-100 lbs)
14871                                                                    based on weight (50-100 lbs)
14872                                                                                          875.00
14873                                                                                           50.00
14874                                                                                              75
14875                                                                                              75
14876                                                                                           60.00
14877                                                                                          500.00
14878                                                                                     unspecified
14879                                                                                          200.00
14880                                                                                           37.50
14881                                                                                          136.00
14882                                                                                          136.00
14883                                                                                               1
14884                                                                                               1
14885                                                                                           22.70
14886                                                                                          250.00
14887                                                                                          170.00
14888                                                                                          454.00
14889                                                                                         1000.00
14890                                                                                           11.35
14891                                                                                           85.00
14892                                                                                          125.00
14893                                                                                          227.00
14894                                                                                          272.00
14895                                                                                          136.00
14896                                                                                          500.00
14897                                                                                          272.00
14898                                                                                          136.00
14899                                                                                     unspecified
14900                                                                                          300.00
14901                                                                                           75.00
14902                                                                                            0.50
14903                                                                                          100.00
14904                                                                                          500.00
14905                                                                                          120.00
14906                                                                                         1700.00
14907                                                                                              30
14908                                                                                          500.00
14909                                                                                          500.00
14910                                                                                            7.50
14911                                                                                        27, 1620
14912                                                                                          500.00
14913                                                              27 milbemycin oxime, 1620 spinosad
14914                                                            272 ivermectin, 227 pyrantel pamoate
14915                                                                                          136.00
14916                                                                                          112.50
14917                                                                                          272.00
14918                                                                                          272.00
14919                                                                                            9.80
14920                                                                                           90.00
14921                                                                                          900.00
14922                                                                                         3540.00
14923                                                                                           75.00
14924                                                                                           23.00
14925                                                                                           80.00
14926                                                                                          500.00
14927                                                                                           10.00
14928                                                                                              90
14929                                                                                           50.00
14930                                                                                          150.00
14931                                                                                           10.00
14932                                                                                           10.00
14933                                                                                           10.00
14934                                                                    based on weight (60-120 lbs)
14935                                                                                           16.00
14936                                                                                           10.00
14937                                                                                        12000.00
14938                                                                                            3.00
14939                                                                                          200.00
14940                                                                                         1000.00
14941                                                                                          500.00
14942                                                                                            0.50
14943                                                                     based on weight (44-88 lbs)
14944                                                                                     unspecified
14945                                                                                           10.00
14946                                                                                            1.00
14947                                                                                            1.00
14948                                                                                         1000.00
14949                                                                                     unspecified
14950                                                                                           17.00
14951                                                                                        20000.00
14952                                                                                           90.00
14953                                                                                            1.00
14954                                                                                           80.00
14955                                                                                            1.00
14956                                                                                            1.00
14957                                                                                          100.00
14958                                                                                           90.00
14959                                                                                          562.50
14960                                                                                           90.00
14961                                                                                            5.00
14962                                                                                           60.00
14963                                                                                            1.00
14964                                                                                           80.00
14965                                                                                           60.00
14966                                                                                          272.00
14967                                                                                           50.00
14968                                                                                           50.00
14969                                                                                              50
14970                                                                                           50.00
14971                                                                                            1.00
14972                                                                     based on weight (41-60 lbs)
14973                                                                                     unspecified
14974                                                                     based on weight (41-60 lbs)
14975                                                                     based on weight (41-60 lbs)
14976                                                                                             100
14977                                                                                               1
14978                                                                                               1
14979                                                                                              75
14980                                                                                            1.00
14981                                                                     based on weight (40-60 lbs)
14982                                                                                     unspecified
14983                                                                                  1 pack/package
14984                                                                                           37.50
14985                                                                                          500.00
14986                                                                                          300.00
14987                                                                                          250.00
14988                                                                                           15.00
14989                                                                                           50.00
14990                                                                                           20.00
14991                                                                                          272.00
14992                                                                                           50.00
14993                                                                                           25.00
14994                                                                                           10.00
14995                                                                                          600.00
14996                                                                                           13.00
14997                                                                                           50.00
14998                                                                                           50.00
14999                                                                                              50
15000                                                                                           50.00
15001                                                                    based on weight (50-100 lbs)
15002                                                                     based on weight (45-88 lbs)
15003                                                                                            2.68
15004                                                                       based on weight (55+ lbs)
15005                                                                     based on weight (45-88 lbs)
15006                                                                    based on weight (51-100 lbs)
15007                                                                    based on weight (50-100 lbs)
15008                                                                       based on weight (55+ lbs)
15009                                                                     based on weight (45-88 lbs)
15010                                                                     based on weight (45-88 lbs)
15011                                                                  based on weight (50.1-100 lbs)
15012                                                                                            0.60
15013                                                                                           20.00
15014                                                                                            0.60
15015                                                                                            1.40
15016                                                                                            1.30
15017                                                                    based on weight (50-100 lbs)
15018                                                                                           50.00
15019                                                                                           75.00
15020                                                                                          375.00
15021                                                                    based on weight (50-100 lbs)
15022                                                                     based on weight (44-88 lbs)
15023                                                                     based on weight (45-88 lbs)
15024                                                                                           23.00
15025                                                                                               1
15026                                                                                               1
15027                                                                     based on weight (45-88 lbs)
15028                                                                  based on weight (50.1-100 lbs)
15029                                                                  based on weight (50.1-100 lbs)
15030                                                                     based on weight (44-88 lbs)
15031                                                                                          250.00
15032                                                                                          136.00
15033                                                                                            0.60
15034                                                                                            0.70
15035                                                                                     unspecified
15036                                                                                     unspecified
15037                                                                                            0.45
15038                                                                                           60.00
15039                                                                                          500.00
15040                                                                                           75.00
15041                                                                                            1.30
15042                                                                                           60.00
15043                                                                                            0.65
15044                                                                                           60.00
15045                                                                                 based on weight
15046                                                                                          810.00
15047                                                                                           50.00
15048                                                                    based on weight (50-100 lbs)
15049                                                                                          200.00
15050                                                                                            1.00
15051                                                                                          250.00
15052                                                                                            8.00
15053                                                                                          500.00
15054                                                                                            8.00
15055                                                                                     unspecified
15056                                                                                           20.00
15057                                                                                         1000.00
15058                                                                                          272.00
15059                                                                    based on weight (51-100 lbs)
15060                                                                                          272.00
15061                                                                    based on weight (51-100 lbs)
15062                                                                                          272.00
15063                                                                                            2.68
15064                                                                                          272.00
15065                                                                                           20.00
15066                                                                                           16.00
15067                                                                                          272.00
15068                                                                                         1000.00
15069                                                                                          500.00
15070                                                                                           60.00
15071                                                                                          204.00
15072                                                                                          272.00
15073                                                                                          200.00
15074                                                                                          100.00
15075                                                                                          272.00
15076                                                                                          272.00
15077                                                                                     unspecified
15078                                                                                          100.00
15079                                                                                            2.00
15080                                                                                            2.00
15081                                                                                            0.50
15082                                                                                          272.00
15083                                                                                            1.00
15084                                                                                            1.30
15085                                                                                           13.00
15086                                                                                            1.60
15087                                                                                            1.61
15088                                                                                            7.10
15089                                                                                            1.00
15090                                                                                            1.80
15091                                                                                            1.00
15092                                                                                             300
15093                                                                                          360.00
15094                                                                                          500.00
15095                                                                                           75.00
15096                                                                                          320.00
15097                                                                                          385.00
15098                                                                                            4.00
15099                                                                                            8.00
15100                                                                                          130.00
15101                                                                                            1.80
15102                                                                                    small amount
15103                                                                                          300.00
15104                                                                                            1.00
15105                                                                                            7.00
15106                                                                                            1.60
15107                                                                                            1.70
15108                                                                                            1.00
15109                                                                                            7.00
15110                                                                                            8.00
15111                                                                                          150.00
15112                                                                                          150.00
15113                                                                                          300.00
15114                                                                                            8.00
15115                                                                                          150.00
15116                                                                                          300.00
15117                                                                                           75.00
15118                                                                                          100.00
15119                                                                                          500.00
15120                                                                                           25.00
15121                                                                                          480.00
15122                                                                                         1500.00
15123                                                                                          960.00
15124                                                                                            1.00
15125                                                                                            1.00
15126                                                                                          960.00
15127                                                                                         1500.00
15128                                                                                            1.00
15129                                                                                               7
15130                                                                                               1
15131                                                                                               1
15132                                                                                               1
15133                                                                                            8.00
15134                                                                                           15.00
15135                                                                                           50.00
15136                                                                                           50.00
15137                                                                                               2
15138                                                                                          200.00
15139                                                                    based on weight (51-100 lbs)
15140                                                                     based on weight (45-88 lbs)
15141                                                                                            0.70
15142                                                                                          400.00
15143                                                                                          250.00
15144                                                                     based on weight (26-50 lbs)
15145                                                                     based on weight (45-88 lbs)
15146                                                                                           16.00
15147                                                                                          200.00
15148                                                                                           16.00
15149                                                                                           50.00
15150                                                                                 based on weight
15151                                                                                 based on weight
15152                                                                                           16.00
15153                                                                                          500.00
15154                                                                                          500.00
15155                                                                                     unspecified
15156                                                                                          437.00
15157                                                                                            2.00
15158                                                                                          200.00
15159                                                                                          300.00
15160                                                                                           75.00
15161                                                                                         1000.00
15162                                                                                          600.00
15163                                                                                           75.00
15164                                                                                          200.00
15165                                                                                          600.00
15166                                                                                           75.00
15167                                                                                          272.00
15168                                                                                          227.00
15169                                                                                          125.00
15170                                                                                               1
15171                                                                                          375.00
15172                                                                                             100
15173                                                                                             400
15174                                                                                             100
15175                                                                                            1.50
15176                                                                                          200.00
15177                                                                                          200.00
15178                                                                                           66.00
15179                                                                     based on weight (25-75 lbs)
15180                                                                                            0.67
15181                                                                                            2.40
15182                                                                                            1.20
15183                                                                                            2.00
15184                                                                                             750
15185                                                                                          500.00
15186                                                                                           10.00
15187                                                                                          375.00
15188                                                                                          200.00
15189                                                                                            1.00
15190                                                                                          200.00
15191                                                                                          300.00
15192                                                                                          600.00
15193                                                                                          272.00
15194                                                                                         1000.00
15195                                                                                         1000.00
15196                                                                                     application
15197                                                                                    small amount
15198                                                                                          272.00
15199                                                                                          272.00
15200                                                                                            2.68
15201                                                                                            0.02
15202                                                                                             272
15203                                                                                             272
15204                                                                                           75.00
15205                                                                                          272.00
15206                                                                                           50.00
15207                                                                                          272.00
15208                                                                                          272.00
15209                                                                     based on weight (44-88 lbs)
15210                                                                                           50.00
15211                                                                                            6.00
15212                                                                                           50.00
15213                                                                                     unspecified
15214                                                                                           20.00
15215                                                                                          300.00
15216                                                                                           50.00
15217                                                                                           20.00
15218                                                                                          300.00
15219                                                                                           50.00
15220                                                                                            1.00
15221                                                                                          100.00
15222                                                                                           40.00
15223                                                                                          500.00
15224                                                                                            1.00
15225                                                                                            1.00
15226                                                                                          227.00
15227                                                                                            1.00
15228                                                                                            1.00
15229                                                                                           20.00
15230                                                                                          500.00
15231                                                                                           50.00
15232                                                                                           23.00
15233                                                                                          136.00
15234                                                                                           23.00
15235                                                                                          136.00
15236                                                                                          250.00
15237                                                                                          312.50
15238                                                                                            5.50
15239                                                                                           23.00
15240                                                                                           68.00
15241                                                                                          500.00
15242                                                                                          136.00
15243                                                                                          222.00
15244                                                                                          0.3, 1
15245                                                                                          150.00
15246                                                                                          300.00
15247                                                                                            2.00
15248                                                                                          272.00
15249                                                                                          272.00
15250                                                                                 based on weight
15251                                                                                            1.00
15252                                                                                               4
15253                                                                                             227
15254                                                                                            0.50
15255                                                                                            4.00
15256                                                                                 based on weight
15257                                                                                            0.50
15258                                                                                            0.50
15259                                                                        1.25 tablet/pill/capsule
15260                                                                                           60.00
15261                                                                                            6.00
15262                                                                                          100.00
15263                                                                                            1.14
15264                                                                                            0.50
15265                                                                                          272.00
15266                                                                                           68.00
15267                                                                                            0.50
15268                                                                    based on weight (50-100 lbs)
15269                                                                     based on weight (24-60 lbs)
15270                                                                                            0.50
15271                                                                                          450.00
15272                                                                                           20.00
15273                                                                                          450.00
15274                                                                                     unspecified
15275                                                                                           60.00
15276                                                                                            1.00
15277                                                                                         1000.00
15278                                                                                            2.00
15279                                                                                            1.00
15280                                                                                          200.00
15281                                                                                          720.00
15282                                                                                            1.00
15283                                                                                          720.00
15284                                                                                          500.00
15285                                                                                          100.00
15286                                                                                          100.00
15287                                                                                          750.00
15288                                                                                            3.00
15289                                                                                          500.00
15290                                                                                          500.00
15291                                                                                          850.00
15292                                                                                          375.00
15293                                                                                          250.00
15294                                                                                          270.00
15295                                                                                            1.00
15296                                                                                           75.00
15297                                                                                            1.00
15298                                                                                          200.00
15299                                                                                           10.00
15300                                                                                            1.00
15301                                                                                          500.00
15302                                                                                          340.00
15303                                                                                            4.00
15304                                                                                            3.50
15305                                                                                           70.00
15306                                                                                            0.40
15307                                                                                           50.00
15308                                                                    based on weight (50-100 lbs)
15309                                                                  based on weight (60.1-121 lbs)
15310                                                                    based on weight (50-100 lbs)
15311                                                                                 based on weight
15312                                                                                            0.40
15313                                                                                           50.00
15314                                                                    based on weight (50-100 lbs)
15315                                                                                 based on weight
15316                                                                                            0.40
15317                                                                    based on weight (50-100 lbs)
15318                                                                                            0.40
15319                                                                                               1
15320                                                                                            0.40
15321                                                                                 based on weight
15322                                                                                 based on weight
15323                                                                                     unspecified
15324                                                                                            0.40
15325                                                                                            0.40
15326                                                                                          375.00
15327                                                                                            0.40
15328                                                                                           60.00
15329                                                                                           20.00
15330                                                                                           60.00
15331                                                                                            0.40
15332                                                                                     unspecified
15333                                                                                  1 pack/package
15334                                                                                               1
15335                                                                                           15.00
15336                                                                                           15.00
15337                                                                                              90
15338                                                                                            1.00
15339                                                                                        27, 1620
15340                                                                                         1620.00
15341                                                                                           75.00
15342                                                                                           10.00
15343                                                                                         1620.00
15344                                                                                           15.00
15345                                                                                        27, 1620
15346                                                                                           15.00
15347                                                                                           30.00
15348                                                                                        27, 1620
15349                                                                                           15.00
15350                                                                                            1.00
15351                                                                                          900.00
15352                                                                                           10.60
15353                                                                                           10.00
15354                                                                                            2.00
15355                                                                                            1.00
15356                                                                                           15.00
15357                                                                                           10.00
15358                                                                                          900.00
15359                                                                                            9.00
15360                                                                                             125
15361                                                                    based on weight (50-100 lbs)
15362                                                                                     unspecified
15363                                                                                               4
15364                                                                                          500.00
15365                                                                                     unspecified
15366                                                                    based on weight (50-100 lbs)
15367                                                                                     unspecified
15368                                                                                           23.00
15369                                                                                           23.00
15370                                                                                          136.00
15371                                                                                           23.00
15372                                                                                            0.09
15373                                                                    based on weight (51-100 lbs)
15374                                                                     based on weight (44-88 lbs)
15375                                                                    based on weight (51-100 lbs)
15376                                                                     based on weight (44-88 lbs)
15377                                                                    based on weight (51-100 lbs)
15378                                                                     based on weight (45-88 lbs)
15379                                                                                             100
15380                                                                                           20.00
15381                                                                                            1.00
15382                                                                                            2.60
15383                                                                                     unspecified
15384                                                                                     unspecified
15385                                                                                          500.00
15386                                                                                          300.00
15387                                                                                          100.00
15388                                                                                           50.00
15389                                                                                          250.00
15390                                                                                           60.00
15391                                                                                           23.00
15392                                                                                           40.00
15393                                                                                           20.00
15394                                                                                          272.00
15395                                                                                            9.80
15396                                                                                           50.00
15397                                                                                          272.00
15398                                                                                           24.00
15399                                                                                          272.00
15400                                                                                            5.00
15401                                                                                           50.00
15402                                                                                    small amount
15403                                                                                           30.00
15404                                                                                          500.00
15405                                                                                           10.00
15406                                                                                          500.00
15407                                                                                          272.00
15408                                                                                          375.00
15409                                                                                          250.00
15410                                                                                          600.00
15411                                                                                            3.00
15412                                                                                       22.7, 272
15413                                                                                          375.00
15414                                                                                           48.00
15415                                                                                          600.00
15416                                                                                            3.00
15417                                                                                          272.00
15418                                                                                          272.00
15419                                                                                           20.00
15420                                                                                          132.00
15421                                                                                          375.00
15422                                                                                           10.00
15423                                                                                           10.00
15424                                                                                          272.00
15425                                                                                          250.00
15426                                                                                           48.00
15427                                                                                           50.00
15428                                                                                          250.00
15429                                                                                           50.00
15430                                                                                           20.00
15431                                                                                           10.00
15432                                                                                           60.00
15433                                                                                           68.00
15434                                                                                           16.08
15435                                                                                            7.00
15436                                                                                           30.00
15437                                                                                          250.00
15438                                                                                           30.00
15439                                                                                            7.00
15440                                                                                            1.00
15441                                                                                     unspecified
15442                                                                                            1.00
15443                                                                                          300.00
15444                                                                                            5.00
15445                                                                                     unspecified
15446                                                                                           20.00
15447                                                                                          272.00
15448                                                                                               1
15449                                                                                          272.00
15450                                                                                          272.00
15451                                                                    based on weight (51-100 lbs)
15452                                                                                          750.00
15453                                                                                     unspecified
15454                                                                                     unspecified
15455                                                                                              75
15456                                                                                              75
15457                                                                                           75.00
15458                                                                                           75.00
15459                                                                                          200.00
15460                                                                                           75.00
15461                                                                                           75.00
15462                                                                                          625.00
15463                                                                                           20.00
15464                                                                                          272.00
15465                                                                                          300.00
15466                                                                                            0.50
15467                                                                                          750.00
15468                                                                                          272.00
15469                                                                                          136.00
15470                                                                                            1.00
15471                                                                                          500.00
15472                                                                                          250.00
15473                                                                                           16.00
15474                                                                                          272.00
15475                                                                                          136.00
15476                                                                                           16.00
15477                                                                                            1.00
15478                                                                                          500.00
15479                                                                                          250.00
15480                                                                                          200.00
15481                                                                                          272.00
15482                                                                                          136.00
15483                                                                                           16.00
15484                                                                                            1.00
15485                                                                                          272.00
15486                                                                                          136.00
15487                                                                                          272.00
15488                                                                                          136.00
15489                                                                                            0.57
15490                                                                                           16.00
15491                                                                                          150.00
15492                                                                                         1000.00
15493                                                                                          400.00
15494                                                                                          272.00
15495                                                                                          136.00
15496                                                                                          900.00
15497                                                                                          100.00
15498                                                                                            2.00
15499                                                                                          272.00
15500                                                                                          136.00
15501                                                                                           20.00
15502                                                                                          300.00
15503                                                                                          150.00
15504                                                                                          500.00
15505                                                                                            1.00
15506                                                                                          200.00
15507                                                                                            1.00
15508                                                                                          150.00
15509                                                                                          272.00
15510                                                                                          272.00
15511                                                                                          272.00
15512                                                                   based on weight (44.1-88 lbs)
15513                                                                                     unspecified
15514                                                                                          272.00
15515                                                                   based on weight (44.1-88 lbs)
15516                                                                                          250.00
15517                                                                                          136.00
15518                                                                                            1.00
15519                                                                                          272.00
15520                                                                                         1000.00
15521                                                                                          272.00
15522                                                                                           50.00
15523                                                                                           50.00
15524                                                                                               1
15525                                                                                          272.00
15526                                                                                         1000.00
15527                                                                                              75
15528                                                                                         23, 228
15529                                                                                         1000.00
15530                                                                     based on weight (56-95 lbs)
15531                                                                                         23, 228
15532                                                                                         1000.00
15533                                                                        based on weight (25 lbs)
15534                                                                                           75.00
15535                                                                                           75.00
15536                                                                                          300.00
15537                                                                                           50.00
15538                                                                                           15.00
15539                                                                                           75.00
15540                                                                                          500.00
15541                                                                                          750.00
15542                                                                                           60.00
15543                                                                                            3.00
15544                                                                                           75.00
15545                                                                                              38
15546                                                                                          136.00
15547                                                                                            4.40
15548                                                                                          227.00
15549                                                                                          113.50
15550                                                                                           50.00
15551                                                                        based on weight (50 lbs)
15552                                                                     based on weight (44-88 lbs)
15553                                                                                          272.00
15554                                                                                 based on weight
15555                                                                                 based on weight
15556                                                                                 based on weight
15557                                                                                          150.00
15558                                                                                            62.5
15559                                                                                          800.00
15560                                                                                        45327.00
15561                                                                                            2.20
15562                                                                                            3.00
15563                                                                                 0.25 inch strip
15564                                                                                          375.00
15565                                                                                          136.00
15566                                                                                           30.00
15567                                                                                           15.00
15568                                                                                          100.00
15569                                                                                           50.00
15570                                                                                            0.30
15571                                                                                          500.00
15572                                                                                           23.00
15573                                                                                         1000.00
15574                                                                                            1.00
15575                                                                                          375.00
15576                                                                                            1.00
15577                                                                                            6.00
15578                                                                                          125.00
15579                                                                                          125.00
15580                                                                                           50.00
15581                                                                                     unspecified
15582                                                                                              50
15583                                                                                             250
15584                                                                                               5
15585                                                                    based on weight (51-100 lbs)
15586                                                                     based on weight (45-88 lbs)
15587                                                                                              50
15588                                                                                            66.5
15589                                                                    based on weight (51-100 lbs)
15590                                                                    based on weight (51-100 lbs)
15591                                                                        based on weight (77 lbs)
15592                                                                        based on weight (77 lbs)
15593                                                                    based on weight (51-100 lbs)
15594                                                                  based on weight (60.1-121 lbs)
15595                                                                                           18.00
15596                                                                                           75.00
15597                                                                    based on weight (51-100 lbs)
15598                                                                    based on weight (60-121 lbs)
15599                                                                                     application
15600                                                                    based on weight (51-100 lbs)
15601                                                                   based on weight (44.1-88 lbs)
15602                                                                                             150
15603                                                                                     unspecified
15604                                                                                     unspecified
15605                                                                                          150.00
15606                                                                                         1000.00
15607                                                                                          200.00
15608                                                                                           75.00
15609                                                                                          300.00
15610                                                                                          300.00
15611                                                                                            5.00
15612                                                                                          272.00
15613                                                            272 ivermectin, 227 pyrantel pamoate
15614                                                                                               3
15615                                                                                            3.00
15616                                                                                             272
15617                                                                                          272.00
15618                                                            272 ivermectin, 227 pyrantel pamoate
15619                                                                                            0.91
15620                                                                                           23.00
15621                                                                                          500.00
15622                                                                                          500.00
15623                                                                                           50.00
15624                                                                                           50.00
15625                                                                                          775.00
15626                                                                                          250.00
15627                                                                                           23.00
15628                                                                                          500.00
15629                                                                                           75.00
15630                                                                                          750.00
15631                                                                                          200.00
15632                                                                                         1000.00
15633                                                                                        tapering
15634                                                                                           23.00
15635                                                                                           23.00
15636                                                                    based on weight (51-100 lbs)
15637                                                                                          204.00
15638                                                                                          400.00
15639                                                                                          100.00
15640                                                                                          200.00
15641                                                                                          400.00
15642                                                                                          100.00
15643                                                                                          500.00
15644                                                                                           10.00
15645                                                                                            2.00
15646                                                                                          250.00
15647                                                                                          200.00
15648                                                                                          200.00
15649                                                                    based on weight (51-100 lbs)
15650                                                                    based on weight (89-132 lbs)
15651                                                                                          200.00
15652                                                                                            5.00
15653                                                                                           50.00
15654                                                                                           10.00
15655                                                                                           10.00
15656                                                                                           56.75
15657                                                                                          102.00
15658                                                                                          272.00
15659                                                                                            1.00
15660                                                                                            5.00
15661                                                                    based on weight (51-100 lbs)
15662                                                                                               1
15663                                                                    based on weight (89-132 lbs)
15664                                                                                          100.00
15665                                                                                            1.00
15666                                                                                            5.00
15667                                                                                    small amount
15668                                                                                            2.00
15669                                                            272 ivermectin, 227 pyrantel pamoate
15670                                                                                             120
15671                                                                                           15.00
15672                                                                    based on weight (51-100 lbs)
15673                                                                      based on weight (1-25 lbs)
15674                                                                    based on weight (88-132 lbs)
15675                                                                                               1
15676                                                                                          120.00
15677                                                                                            1.00
15678                                                                                         1000.00
15679                                                                                            1.00
15680                                                                                            1.00
15681                                                                                         1000.00
15682                                                                                          300.00
15683                                                                                            1.00
15684                                                                                          900.00
15685                                                                                           75.00
15686                                                                                           95.00
15687                                                                                          100.00
15688                                                                                            1.00
15689                                                                    based on weight (60-120 lbs)
15690                                                                    based on weight (60-120 lbs)
15691                                                                                               1
15692                                                                                               1
15693                                                                    based on weight (60-120 lbs)
15694                                                                                            1.00
15695                                                                                            1.00
15696                                                                                          250.00
15697                                                                                          272.00
15698                                                                                          272.00
15699                                                                                               1
15700                                                                                          227.00
15701                                                                                     unspecified
15702                                                                                            4.00
15703                                                                                            1.28
15704                                                                                            4.00
15705                                                                                               4
15706                                                                                    small amount
15707                                                                                        27, 1620
15708                                                                                          500.00
15709                                                                                          750.00
15710                                                                                           50.00
15711                                                                                            1.00
15712                                                                                     unspecified
15713                                                                                            2.00
15714                                                                                            0.75
15715                                                                                        27, 1620
15716                                                                                            0.75
15717                                                                                            2.00
15718                                                                                            1.00
15719                                                                                          272.00
15720                                                                                          136.00
15721                                                                                            0.75
15722                                                                                            2.00
15723                                                                                           70.00
15724                                                                                           70.00
15725                                                                                          272.00
15726                                                                                          136.00
15727                                                                                            2.00
15728                                                                                          272.00
15729                                                                                          136.00
15730                                                                                            3.00
15731                                                                                            3.00
15732                                                                                            2.00
15733                                                            272 ivermectin, 227 pyrantel pamoate
15734                                                                                          300.00
15735                                                                                            2.00
15736                                                                                            2.00
15737                                                                                            8.00
15738                                                                                          300.00
15739                                                                                            2.00
15740                                                                                            0.75
15741                                                                                            9.00
15742                                                                                          300.00
15743                                                                                           50.00
15744                                                                                            0.75
15745                                                                                            0.75
15746                                                                                            1.00
15747                                                                                            1.50
15748                                                                                            1.00
15749                                                                                            2.00
15750                                                                                     unspecified
15751                                                                                           10.00
15752                                                                                          750.00
15753                                                                                            6.00
15754                                                                                            5.00
15755                                                                                            1.00
15756                                                                                            1.00
15757                                                                    based on weight (51-100 lbs)
15758                                                                     based on weight (45-88 lbs)
15759                                                                                          272.00
15760                                                                                          136.00
15761                                                                                          136.00
15762                                                                                          136.00
15763                                                                                          136.00
15764                                                                                          150.00
15765                                                                                          500.00
15766                                                                                          960.00
15767                                                                                     unspecified
15768                                                                                     unspecified
15769                                                                                     unspecified
15770                                                                                     unspecified
15771                                                                                           16.00
15772                                                                                           75.00
15773                                                                                          136.00
15774                                                                                          114.00
15775                                                                                          114.00
15776                                                                                             500
15777                                                                                            1.50
15778                                                                                     unspecified
15779                                                                                          500.00
15780                                                                                            1.50
15781                                                                                     unspecified
15782                                                                                     unspecified
15783                                                                                            1.00
15784                                                                                            1.00
15785                                                                                            1.00
15786                                                                                            1.00
15787                                                                                              30
15788                                                                                             1.5
15789                                                                                          500.00
15790                                                                                     unspecified
15791                                                                                            7.50
15792                                                                                          200.00
15793                                                                                            7.50
15794                                                                                            3.75
15795                                                                                          500.00
15796                                                                                        125, 500
15797                                                                                          136.00
15798                                                                                          500.00
15799                                                                                     unspecified
15800                                                                                            1.50
15801                                                                                          500.00
15802                                                                                           15.00
15803                                                                                          272.00
15804                                                                                            2.68
15805                                                                                           15.00
15806                                                                                           20.00
15807                                                                                            2.68
15808                                                                                            1.00
15809                                                                                          750.00
15810                                                                                            6.50
15811                                                                     based on weight (44-88 lbs)
15812                                                                                          750.00
15813                                                                                            5.40
15814                                                                                            2.00
15815                                                                  based on weight (50.1-100 lbs)
15816                                                                                              66
15817                                                                                           50.00
15818                                                                    based on weight (51-100 lbs)
15819                                                                                            1.00
15820                                                                                            1.00
15821                                                                                          272.00
15822                                                                                            2.68
15823                                                                                          500.00
15824                                                                                           50.00
15825                                                                                          150.00
15826                                                                                           15.00
15827                                                                                            5.00
15828                                                                                            6.30
15829                                                            272 ivermectin, 227 pyrantel pamoate
15830                                                                                            5.00
15831                                                                                            7.50
15832                                                                                          350.00
15833                                                                                          170.00
15834                                                                                          272.00
15835                                                                                          227.00
15836                                                                                           68.00
15837                                                                                          227.00
15838                                                                                           68.00
15839                                                                                     unspecified
15840                                                                                     unspecified
15841                                                                    based on weight (51-100 lbs)
15842                                                                    based on weight (51-100 lbs)
15843                                                                                           50.00
15844                                                                    based on weight (51-100 lbs)
15845                                                                                         1000.00
15846                                                                                          100.00
15847                                                                                          750.00
15848                                                                                               1
15849                                                                    based on weight (51-100 lbs)
15850                                                                    based on weight (51-100 lbs)
15851                                                                                         1400.00
15852                                                                                           75.00
15853                                                                                           15.00
15854                                                                                          120.00
15855                                                                                            1.20
15856                                                                       based on weight (55+ lbs)
15857                                                                                               1
15858                                                                                            37.5
15859                                                                    based on weight (55-100 lbs)
15860                                                                                               1
15861                                                                                               1
15862                                                                                 0.25 inch strip
15863                                                                                 0.25 inch strip
15864                                                                                               1
15865                                                                                         1000.00
15866                                                                                           23.00
15867                                                                                               1
15868                                                                             tablet/pill/capsule
15869                                                                    based on weight (51-100 lbs)
15870                                                                                     unspecified
15871                                                                                               1
15872                                                                                         1000.00
15873                                                                                          200.00
15874                                                                                         1500.00
15875                                                                                            2.00
15876                                                                                         1500.00
15877                                                                                          251.00
15878                                                                                          100.00
15879                                                                                         1500.00
15880                                                                                            2.00
15881                                                                                         1000.00
15882                                                                                           23.00
15883                                                                                            0.57
15884                                                                                           50.00
15885                                                                                         1000.00
15886                                                                                     unspecified
15887                                                                                            1.00
15888                                                                                     unspecified
15889                                                                                     unspecified
15890                                                                                     unspecified
15891                                                                     based on weight (26-50 lbs)
15892                                                                    based on weight (51-100 lbs)
15893                                                                                           50.00
15894                                                                                            1.00
15895                                                                                            1.00
15896                                                                                            1.00
15897                                                                                          240.00
15898                                                                                          250.00
15899                                                                                            1.00
15900                                                                                            1.00
15901                                                                                           62.50
15902                                                                                          250.00
15903                                                                                            1.00
15904                                                                                            4.00
15905                                                                                            3.00
15906                                                                                           37.50
15907                                                                                    small amount
15908                                                                                            1.00
15909                                                                                            1.00
15910                                                                                            1.00
15911                                                                        based on weight (40 lbs)
15912                                                                                               3
15913                                                                                           20.00
15914                                                                                          125.00
15915                                                                                         1000.00
15916                                                                                            1.00
15917                                                                                     unspecified
15918                                                                                             0.5
15919                                                                                              20
15920                                                                                           0.125
15921                                                                                     unspecified
15922                                                                    based on weight (51-100 lbs)
15923                                                                                           0.125
15924                                                                                            1000
15925                                                                                               3
15926                                                                                             150
15927                                                                                         2000 iu
15928                                                                                0.5 pack/package
15929                                                                                               1
15930                                                                    based on weight (51-100 lbs)
15931                                                                                           0.125
15932                                                                                               1
15933                                                                                         2000 iu
15934                                                                                               3
15935                                                                                0.5 pack/package
15936                                                                                               1
15937                                                                    based on weight (51-100 lbs)
15938                                                                                           20.00
15939                                                                                            3.00
15940                                                                                            1.00
15941                                                                                           20.00
15942                                                                                           10.00
15943                                                                                            3.00
15944                                                                    based on weight (51-100 lbs)
15945                                                                                    pack/package
15946                                                                                            2.00
15947                                                                                        10000.00
15948                                                                                            1.00
15949                                                                                            1.00
15950                                                                                            1.00
15951                                                                                           80.00
15952                                                                                           80.00
15953                                                                                          300.00
15954                                                                                            8.00
15955                                                                                            0.25
15956                                                                                            3.00
15957                                                                                           16.00
15958                                                                                          300.00
15959                                                                                            0.50
15960                                                                                         1000.00
15961                                                                                            3.00
15962                                                                                            0.13
15963                                                                                          300.00
15964                                                                                           80.00
15965                                                                                          150.00
15966                                                                                            3.00
15967                                                                                          272.00
15968                                                                                           50.00
15969                                                                                            4.00
15970                                                                                            4.00
15971                                                                                          500.00
15972                                                                                            1.00
15973                                                                                         1620.00
15974                                                                                           25.00
15975                                                                                          100.00
15976                                                                                          272.00
15977                                                                                          240.00
15978                                                                                           37.50
15979                                                                                           75.00
15980                                                                                          500.00
15981                                                                    based on weight (51-100 lbs)
15982                                                                                           50.00
15983                                                                                    small amount
15984                                                                                           16.00
15985                                                                                           16.00
15986                                                                     based on weight (56-95 lbs)
15987                                                                                           20.00
15988                                                                                           10.00
15989                                                                                           10.00
15990                                                                                           10.00
15991                                                                                          150.00
15992                                                                    based on weight (51-100 lbs)
15993                                                                     based on weight (56-95 lbs)
15994                                                                                          125.00
15995                                                                    based on weight (51-100 lbs)
15996                                                                     based on weight (56-95 lbs)
15997                                                                     based on weight (45-88 lbs)
15998                                                                                   1 bottle/vial
15999                                                                    based on weight (51-100 lbs)
16000                                                                     based on weight (45-88 lbs)
16001                                                                                            1.00
16002                                                                                            1.00
16003                                                                                            1.00
16004                                                                                            8.00
16005                                                           23 milbemycin oxime, 228 praziquantel
16006                                                                                         1000.00
16007                                                           23 milbemycin oxime, 228 praziquantel
16008                                                                                            1000
16009                               0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16010                                                                                           20.00
16011                                                                                            1.00
16012                                                                                            1.00
16013                                                                                            1.00
16014                                                                                            0.75
16015                                                                                          250.00
16016                                                                                     application
16017                                                                                          250.00
16018                                                                                          250.00
16019                                                                                          272.00
16020                                                                                            8.04
16021                                                                                          272.00
16022                                                                                          500.00
16023                                                                                          272.00
16024                                                                                          272.00
16025                                                                                          200.00
16026                                                                                    small amount
16027                                                                                           60.00
16028                                                                                            0.50
16029                                                                                          200.00
16030                                                                                           60.00
16031                                                                                           60.00
16032                                                                                          350.00
16033                                                                                 based on weight
16034                                                                                          750.00
16035                                                                                              66
16036                                                                    based on weight (51-100 lbs)
16037                                                                                             500
16038                                                                    based on weight (51-100 lbs)
16039                                                                     based on weight (44-88 lbs)
16040                                                                                          750.00
16041                                                                                           10.00
16042                                                                                          500.00
16043                                                                                            2.00
16044                                                                                          300.00
16045                                                                                          500.00
16046                                                                                          375.00
16047                                                                                           62.50
16048                                                                                          125.00
16049                                                                                          272.00
16050                                                                                            8.00
16051                                                                                          375.00
16052                                                                                 based on weight
16053                                                                                 based on weight
16054                                                                                            5.00
16055                                                                                          750.00
16056                                                                                          500.00
16057                                                                                            4.02
16058                                                                                          500.00
16059                                                                                          300.00
16060                                                                                          227.00
16061                                                                                           68.00
16062                                                                                          272.00
16063                                                                                           68.00
16064                                                                                          500.00
16065                                                                                            4.00
16066                                                                                          200.00
16067                                                                                          272.00
16068                                                                                           68.00
16069                                                                                           10.00
16070                                                                                          300.00
16071                                                                                          300.00
16072                                                                                           50.00
16073                                                                                          300.00
16074                                                                                          100.00
16075                                                                                          200.00
16076                                                                                          300.00
16077                                                                                           20.00
16078                                                                                          300.00
16079                                                                                            2.60
16080                                                                                           25.00
16081                                                                                           20.00
16082                                                                                          272.00
16083                                                                                          125.00
16084                                                                                          250.00
16085                                                                                            3.00
16086                                                                                            0.57
16087                                                                                          175.00
16088                                                                                          450.00
16089                                                                                           50.00
16090                                                                                           18.75
16091                                                                                           50.00
16092                                                                                           35.00
16093                                                                                          227.00
16094                                                            272 ivermectin, 227 pyrantel pamoate
16095                                                                                          136.00
16096                                                                                         1000.00
16097                                                                    based on weight (50-100 lbs)
16098                                                                    based on weight (60-120 lbs)
16099                                                                                          850.00
16100                                                                                          300.00
16101                                                                                          100.00
16102                                                                                           15.00
16103                                                                                           10.00
16104                                                                                            4.00
16105                                                                                         23, 460
16106                                                                                             400
16107                                                                                     application
16108                                                                    based on weight (51-100 lbs)
16109                                                                    based on weight (50-100 lbs)
16110                                                                                   1 bottle/vial
16111                                                                                             2.7
16112                                                                                              40
16113                                                                                    small amount
16114                                                                                     application
16115                                                                                               8
16116                                                                        2 tablets/pills/capsules
16117                                                                        2 tablets/pills/capsules
16118                                                                                        tapering
16119                                                                                          200.00
16120                                                                                            8.00
16121                                                                                            0.50
16122                                                                                           50.00
16123                                                                                          272.00
16124                                                                                            2.00
16125                                                                                            1.00
16126                                                                                            1.00
16127                                                                                          272.00
16128                                                                                         1000.00
16129                                                                                          272.00
16130                                                                                            0.95
16131                                                                                          272.00
16132                                                                                          272.00
16133                                                                                          272.00
16134                                                                                          100.00
16135                                                                                            6.00
16136                                                                                          272.00
16137                                                                                          500.00
16138                                                                                          150.00
16139                                                                                           16.00
16140                                                                                          600.00
16141                                                                                            1.00
16142                                                                                          500.00
16143                                                                                          150.00
16144                                                                                            1.00
16145                                                                                           16.00
16146                                                                                           70.00
16147                                                                                           16.00
16148                                                                                            1.00
16149                                                                                          200.00
16150                                                                                     unspecified
16151                                                                                            0.01
16152                                                                                               1
16153                                                                                               1
16154                                                                                              10
16155                                                                                            8 oz
16156                                                                                  1 pack/package
16157                                                                    based on weight (51-100 lbs)
16158                                                                     based on weight (44-88 lbs)
16159                                                                    based on weight (51-100 lbs)
16160                                                                     based on weight (44-88 lbs)
16161                                                                                               1
16162                                                                                               1
16163                                                                    based on weight (51-100 lbs)
16164                                                                     based on weight (44-88 lbs)
16165                                                                    based on weight (51-100 lbs)
16166                                                                                          300.00
16167                                                                                          250.00
16168                                                                                          250.00
16169                                                                                          200.00
16170                                                                                          100.00
16171                                                                                          375.00
16172                                                                                           62.50
16173                                                                                           30.00
16174                                                                                           40.00
16175                                                                                            0.30
16176                                                                                           30.00
16177                                                                                     unspecified
16178                                                                                          200.00
16179                                                                                     unspecified
16180                                                                                          375.00
16181                                                                                          136.00
16182                                                                                          136.00
16183                                                                                          250.00
16184                                                                                          200.00
16185                                                                                           70.00
16186                                                                                            8.00
16187                                                                                            0.30
16188                                                                                            2.50
16189                                                                                          540.00
16190                                                                                           10.00
16191                                                                                            1.00
16192                                                                                          100.00
16193                                                                                          200.00
16194                                                                                          100.00
16195                                                                                           60.00
16196                                                                                           10.00
16197                                                                                          200.00
16198                                                                                          375.00
16199                                                                                     unspecified
16200                                                                                          100.00
16201                                                                                            0.30
16202                                                                                           50.00
16203                                                                                           60.00
16204                                                                                          150.00
16205                                                                                            0.30
16206                                                                                           70.00
16207                                                                                           15.00
16208                                                                                          200.00
16209                                                                                          300.00
16210                                                                                           60.00
16211                                                                                          272.00
16212                                                                                          227.00
16213                                                                                            8.80
16214                                                                                           44.00
16215                                                                                            0.44
16216                                                                                            1.00
16217                                                                                          200.00
16218                                                                                           50.00
16219                                                                                          750.00
16220                                                                                            5.00
16221                                                                                          375.00
16222                                                                                          500.00
16223                                                                                          100.00
16224                                                                                          250.00
16225                                                                                           20.00
16226                                                                                            5.00
16227                                                                                          500.00
16228                                                                                            6.00
16229                                                                    based on weight (51-100 lbs)
16230                                                                    based on weight (51-100 lbs)
16231                                                                                            1.00
16232                                                                                          300.00
16233                                                                                           50.00
16234                                                                                            1.00
16235                                                                                            1.00
16236                                                                                          200.00
16237                                                                                            1.00
16238                                                                                           16.00
16239                                                                                     unspecified
16240                                                                                     unspecified
16241                                                                                     unspecified
16242                                                                                     unspecified
16243                                                                                            7.50
16244                                                                                            3.30
16245                                                                                            0.68
16246                                                                                          150.00
16247                                                                                          200.00
16248                                                                                            2.20
16249                                                                                           62.50
16250                                                                                          250.00
16251                                                                                    small amount
16252                                                                                            1.00
16253                                                                                     unspecified
16254                                                                                            1.00
16255                                                                                           23.00
16256                                                                                           80.00
16257                                                                                          100.00
16258                                                                                          100.00
16259                                                                                          100.00
16260                                                                                           50.00
16261                                                                                          150.00
16262                                                                                           37.50
16263                                                                                            1.00
16264                                                                                            0.60
16265                                                                                          810.00
16266                                                                                            0.60
16267                                                                                         1000.00
16268                                                                                          400.00
16269                                                                                          437.50
16270                                                                                          810.00
16271                                                                                            6.00
16272                                                                                         1000.00
16273                                                                                           23.00
16274                                                                                         1000.00
16275                                                                                          500.00
16276                                                                                          400.00
16277                                                                                           50.00
16278                                                                                          100.00
16279                                                                                          136.00
16280                                                                                            0.65
16281                                                                                         1000.00
16282                                                                                            0.70
16283                                                                                            1.00
16284                                                                                            0.60
16285                                                                                               1
16286                                                                                     unspecified
16287                                                                             tablet/pill/capsule
16288                                                                                     application
16289                                                                     based on weight (26-50 lbs)
16290                                                                     based on weight (44-88 lbs)
16291                                                                                            75.5
16292                                                                             tablet/pill/capsule
16293                                                                                     application
16294                                                                    based on weight (51-100 lbs)
16295                                                                     based on weight (45-88 lbs)
16296                                                                    based on weight (51-100 lbs)
16297                                                                                           25.00
16298                                                                                          136.00
16299                                                                                           23.00
16300                                                                                           80.00
16301                                                                                          625.00
16302                                                                                           26.10
16303                                                                                            3.50
16304                                                                                            1.00
16305                                                                                            4.00
16306                                                                                            2.00
16307                                                                                           60.00
16308                                                                                           50.00
16309                                                                                            6.00
16310                                                                                          272.00
16311                                                                                           68.00
16312                                                                    based on weight (51-100 lbs)
16313                                                                   based on weight (24.1-60 lbs)
16314                                                                                         6000.00
16315                                                                    based on weight (51-100 lbs)
16316                                                                   based on weight (24.1-60 lbs)
16317                                                                                               2
16318                                                                    based on weight (50-100 lbs)
16319                                                                     based on weight (24-60 lbs)
16320                                                                                         1200.00
16321                                                                  based on weight (50.1-100 lbs)
16322                                                                  based on weight (60.1-120 lbs)
16323                                                                                         1200.00
16324                                                                    based on weight (51-100 lbs)
16325                                                                    based on weight (60-121 lbs)
16326                                                                                               1
16327                                                                                            1.00
16328                                                                                          500.00
16329                                                                                           75.00
16330                                                                                         1000.00
16331                                                                                          204.00
16332                                                                                           30.00
16333                                                                                            8.00
16334                                                                                         1000.00
16335                                                                                           20.00
16336                                                                                          900.00
16337                                                                                          900.00
16338                                                                                           10.00
16339                                                                                            75.5
16340                                                                    based on weight (51-100 lbs)
16341                                                                                           20.00
16342                                                                                            5.00
16343                                                                                          375.00
16344                                                                                          272.00
16345                                                                                           23.00
16346                                                                                          272.00
16347                                           4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16348                                                                                          100.00
16349                                                                                            1.25
16350                                                                                           40.00
16351                                                                                            1.00
16352                                           350 chondroitin sulfate, 900 glucosamine hcl, 800 msm
16353                                                                                         1000.00
16354                                                                                            2.00
16355                                                                                     unspecified
16356                                                                                     unspecified
16357                                                                                            1.00
16358                                                                                            1.00
16359                                                                                            1.00
16360                                                                                            0.50
16361                                                                                            1.00
16362                                                                                            1.00
16363                                                                                            1.00
16364                                                                                            1.00
16365                                                                                            2.00
16366                                                                                            1.00
16367                                                                                     unspecified
16368                                                                                            1.50
16369                                                                                           12.00
16370                                                                                            3.00
16371                                                                                     unspecified
16372                                                                                            1.00
16373                                                                                            0.50
16374                                                                                     unspecified
16375                                                                                          300.00
16376                                                                                     unspecified
16377                                                                                            0.50
16378                                                                                     unspecified
16379                                                                                            1.00
16380                                                                                            1.00
16381                                                                                            1.00
16382                                                                                     unspecified
16383                                                                                          272.00
16384                                                                                           10.00
16385                                                                                          100.00
16386                                                                                              24
16387                                                                                     as directed
16388                                                                                     as directed
16389                                                            272 ivermectin, 227 pyrantel pamoate
16390                                                                                         1620.00
16391                                                                                            4.00
16392                                                                                            1.00
16393                                                                                            4.00
16394                                                                                            2.00
16395                                                                                           16.00
16396                                                                                         2000.00
16397                                                                                            1.00
16398                                                                                         1000.00
16399                                                                                            1.00
16400                                                                    based on weight (51-100 lbs)
16401                                                                    based on weight (60-120 lbs)
16402                                                                                          500.00
16403                                                                    based on weight (51-100 lbs)
16404                                                                    based on weight (60-120 lbs)
16405                                                                                           16.00
16406                                                                                            8.00
16407                                                                                            2.00
16408                                                            272 ivermectin, 227 pyrantel pamoate
16409                                                                                         1000.00
16410                                                                                           16.00
16411                                                                                            2.00
16412                                                                                          200.00
16413                                                                    based on weight (50-100 lbs)
16414                                                                     based on weight (44-88 lbs)
16415                                                                                               4
16416                                                                                              16
16417                                                                                            0.70
16418                                                                                     unspecified
16419                                                                                     unspecified
16420                                                                                     unspecified
16421                                                                                            1.00
16422                                                                                            6.00
16423                                                                                           37.50
16424                                                                                          100.00
16425                                                                     based on weight (45-88 lbs)
16426                                                                     based on weight (45-88 lbs)
16427                                                                                            2.68
16428                                                                                           50.00
16429                                                                                           50.00
16430                                                                                          750.00
16431                                                                                           50.00
16432                                                                                           23.00
16433                                                                                          500.00
16434                                                                                     unspecified
16435                                                                                     unspecified
16436                                                                                     unspecified
16437                                                                                     unspecified
16438                                                                                          187.50
16439                                                                                          500.00
16440                                                                    based on weight (51-100 lbs)
16441                                                                    based on weight (51-100 lbs)
16442                                                                                     unspecified
16443                                                                                     unspecified
16444                                                                                          500.00
16445                                                                                          136.00
16446                                                                                          500.00
16447                                                                    based on weight (51-100 lbs)
16448                                                                                     unspecified
16449                                                                                            4.00
16450                                                                    based on weight (51-100 lbs)
16451                                                                                            8.00
16452                                                                                             3.2
16453                                                                                             3.2
16454                                                                                              40
16455                                                                                            1.00
16456                                                                                            1.00
16457                                                                                           40.00
16458                                                                                            3.20
16459                                                                                            3.20
16460                                                                                            1.00
16461                                                                                         1000.00
16462                                                                                          0.5/kg
16463                                                                                         1000.00
16464                                                                                         1500.00
16465                                                                                         1500.00
16466                                                                                         1000.00
16467                                                                                          400.00
16468                                                                                           50.00
16469                                                                                          750.00
16470                                                                                          272.00
16471                                                                                            4.28
16472                                                              460 lufenuron, 23 milbemycin oxime
16473                                                                                            4.70
16474                                                                               1 syringe/pipette
16475                                                                                           30.00
16476                                                                                            1.50
16477                                                                                         23, 460
16478                                                              8.8% (s)-methoprene, 9.8% fipronil
16479                                                                               1 syringe/pipette
16480                                                                                          272.00
16481                                                                                           23.00
16482                                                                                           27.00
16483                                                                                         1000.00
16484                                                                                           23.00
16485                                                                                            66.5
16486                                                                                          100.00
16487                                                                                          136.00
16488                                                                                          100.00
16489                                                                                            0.02
16490                                                                                           50.00
16491                                                                                           50.00
16492                                                                                          375.00
16493                                                                                            1.00
16494                                                                                          100.00
16495                                                                                          100.00
16496                                                                                           23.00
16497                                                                                     bottle/vial
16498                                                                                            1.00
16499                                                                                            1.00
16500                                                                                           75.00
16501                                                                                          200.00
16502                                                                                          272.00
16503                                                                                           23.00
16504                                                                                         1000.00
16505                                                                                          125.00
16506                                                                                          500.00
16507                                                                                          250.00
16508                                                                                           25.00
16509                                                                                          375.00
16510                                                                                            5.00
16511                                                                                          480.00
16512                                                                                           22.00
16513                                                                                          373.00
16514                                                                                          478.00
16515                                                                                          136.00
16516                                                                                          136.00
16517                                                                                            5.00
16518                                                                                          204.00
16519                                                                                          272.00
16520                                                                                          500.00
16521                                                                                            5.00
16522                                                                    based on weight (51-100 lbs)
16523                                                                    based on weight (51-100 lbs)
16524                                                                     based on weight (44-88 lbs)
16525                                                                    based on weight (51-100 lbs)
16526                                                                     based on weight (56-95 lbs)
16527                                                                                          375.00
16528                                                                                          500.00
16529                                                                                          250.00
16530                                                                                          500.00
16531                                                                                           10.00
16532                                                                                           11.00
16533                                                                                          113.50
16534                                                                                          204.00
16535                                                                                          580.00
16536                                                                                           26.00
16537                                                                                            5.00
16538                                                                                              75
16539                                                                                          136.00
16540                                                                                           93.00
16541                                                                                          500.00
16542                                                                                          500.00
16543                                                                                              66
16544                                                                     based on weight (44-88 lbs)
16545                                                                                          500.00
16546                                                                  based on weight (50.1-100 lbs)
16547                                                                                          500.00
16548                                                                                           93.00
16549                                                                                          136.00
16550                                                                                          375.00
16551                                                                                              66
16552                                                                                          375.00
16553                                                                  based on weight (50.1-100 lbs)
16554                                                                                              66
16555                                                                                          375.00
16556                                                                                           68.00
16557                                                                                          500.00
16558                                                                                            1.00
16559                                                                                           93.00
16560                                                                                            1.00
16561                                                                                          227.00
16562                                                                                           68.00
16563                                                                                          500.00
16564                                                                                            1.00
16565                                                                                           50.00
16566                                                                                            2.70
16567                                                                                          100.00
16568                                                                                          500.00
16569                                                                                          186.00
16570                                                                                          100.00
16571                                                                                          618.00
16572                                                                                           28.00
16573                                                                                           20.00
16574                                                                                           28.00
16575                                                                                            1.80
16576                                                                                          100.00
16577                                                                                            1.80
16578                                                                                          170.00
16579         based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                
16581                                                                                            2.00
16582                                                                                            1.00
16583                                                                                            0.56
16584                                                                                            1.40
16585                                                                                            1.40
16586                                                                                            0.56
16587                                                                                            2.10
16588                                                                                            0.90
16589                                                                                           50.00
16590                                                                                             125
16591                                                                                            1.50
16592                                                                                          500.00
16593                                                                                          200.00
16594                                                                                           20.00
16595                                                                                               1
16596                                                                    based on weight (51-100 lbs)
16597                                                                    based on weight (51-100 lbs)
16598                                                                    based on weight (88-132 lbs)
16599                                                                    based on weight (51-100 lbs)
16600                                                                                          204.00
16601                                                                    based on weight (89-132 lbs)
16602                                                                                             0.7
16603                                                                                          100.00
16604                                                                                            0.70
16605                                                                       based on weight (45+ lbs)
16606                                                                    based on weight (51-100 lbs)
16607                                                                                            0.70
16608                                                                    based on weight (51-100 lbs)
16609                                                                                            0.70
16610                                                                                            0.70
16611                                                                                          500.00
16612                                                                                          850.00
16613                                                                                          272.00
16614                                                                                            2.68
16615                                                                                          272.00
16616                                                                                              20
16617                                                                                               1
16618                                                                                           90.00
16619                                                                                          272.00
16620                                                                                          250.00
16621                                                                                            1.00
16622                                                                                            1.00
16623                                                                                            1.00
16624                                                              27 milbemycin oxime, 1620 spinosad
16625                                                                                            1.00
16626                                                                                          500.00
16627                                                                                         1620.00
16628                                                                                           80.00
16629                                                                                           75.00
16630                                                                                               1
16631                                                                                               1
16632                                                                                          600.00
16633                                                                                            3.00
16634                                                                                           62.50
16635                                                                                 0.25 inch strip
16636                                                                    based on weight (51-100 lbs)
16637                                                                                              66
16638                                                                                              75
16639                                                                    based on weight (51-100 lbs)
16640                                                                                            90.5
16641                                                                                           23.00
16642                                                                                          136.00
16643                                                                                         1000.00
16644                                                                                           10.00
16645                                                                                            4.00
16646                                                                                              10
16647                                                                                           10.00
16648                                                                                          227.00
16649                                                                                          272.00
16650                                                                                          136.00
16651                                                                                           16.00
16652                                                                                          200.00
16653                                                                                           15.00
16654                                                                                           16.00
16655                                                                                          200.00
16656                                                                                           15.00
16657                                                                                               7
16658                                                                                            3.50
16659                                                                                           50.00
16660                                                                                            1.00
16661                                                                                            1.00
16662                                                                                            1.00
16663                                                                                            1.00
16664                                                                                           75.00
16665                                                                                          250.00
16666                                                                                            1.00
16667                                                                                            37.5
16668                                                                                            1.00
16669                                                                                            1.00
16670                                                                                            1.00
16671                                                                                            1.00
16672                                                                                            1.00
16673                                                                                           34.00
16674                                                                                           75.00
16675                                                                                           15.00
16676                                                                                           37.00
16677                                                                                           50.00
16678                                                                                           823.5
16679                                                                                            4.30
16680                                                                                           50.00
16681                                                                                           50.00
16682                                                                                            1.00
16683                                                                                          625.00
16684                                                                                    small amount
16685                                                                                        wipe/pad
16686                                                                                           50.00
16687                                                            272 ivermectin, 227 pyrantel pamoate
16688                                                                                          136.00
16689                                                                                             1.5
16690                                                                                             125
16691                                                                                          300.00
16692                                                                                            2.00
16693                                                                                          750.00
16694                                                            272 ivermectin, 227 pyrantel pamoate
16695                                                                                             136
16696                                                                                            4.00
16697                                                                                         1250.00
16698                                                                                            4.00
16699                                                                                            2.00
16700                                                                                            1.00
16701                                                                                           10.00
16702                                                                                 0.25 inch strip
16703                                                                                          powder
16704                                                                    based on weight (51-100 lbs)
16705                                                                    based on weight (60-120 lbs)
16706                                                                                           40.00
16707                                                                                            1.00
16708                                                                                          500.00
16709                                                                                           41.00
16710                                                                                          120.00
16711                                                                                    small amount
16712                                                                                    small amount
16713                                                                                           16.00
16714                                                                                    small amount
16715                                                                                            3.86
16716                                                                                          344.00
16717                                                                                    small amount
16718                                                                                    small amount
16719                                                                                            5.00
16720                                                                                          136.00
16721                                                                    based on weight (51-100 lbs)
16722                                                                                             1.5
16723                                                                                     application
16724                                                                                     application
16725                                                                                            1.00
16726                                                                                                
16727                                                                                          500.00
16728                                                                                          120.00
16729                                                                                          100.00
16730                                                                                            3.80
16731                                                                                            5.00
16732                                                                                            4.00
16733                                                                                          272.00
16734                                                                                          272.00
16735                                                                                          272.00
16736                                                                                          500.00
16737                                                                                           50.00
16738                                                                                           90.00
16739                                                                                          150.00
16740                                                                                          204.00
16741                                                                                           20.00
16742                                                                                            1.00
16743                                                                                            1.00
16744                                                                                           23.00
16745                                                                                              23
16746                                                                                            1000
16747                                                                                           23.00
16748                                                                                         1000.00
16749                                                              460 lufenuron, 23 milbemycin oxime
16750                                                                                            1000
16751                                                                                        23 , 460
16752                                                                                         1000.00
16753                                                                                           23.00
16754                                                                                         1000.00
16755                                                                                          700.00
16756                                                                                            1.00
16757                                                                                            0.75
16758                                                                                            1.00
16759                                                                                          100.00
16760                                                                                          200.00
16761                                                                                          500.00
16762                                                                                            3.00
16763                                                                                            1.00
16764                                                                                            5.00
16765                                                                                          300.00
16766                                                                                           30.00
16767                                                                                           10.00
16768                                                                                          200.00
16769                                                                                           40.00
16770                                                                                           20.00
16771                                                                                            3.00
16772                                                                                          300.00
16773                                                                                            5.00
16774                                                                                     unspecified
16775                                                                                            1.00
16776                                                                                            1.00
16777                                                                                     as directed
16778                                                                                     as directed
16779                                                                                     as directed
16780                                                                                            1.00
16781                                                                                            1.00
16782                                                                                            1.00
16783                                                                                     unspecified
16784                                                                                     unspecified
16785                                                                                     unspecified
16786                                                                                             3.4
16787                                                                                               1
16788                                                                                          240.00
16789                                                                                             1.1
16790                                                                                            3.40
16791                                                                     based on weight (44-88 lbs)
16792                                                                                            1.10
16793                                                                     based on weight (24-60 lbs)
16794                                                                                          200.00
16795                                                                                          150.00
16796                                                                                          136.00
16797                                                                                          100.00
16798                                                                                     unspecified
16799                                                                                            1.50
16800                                                                                           37.50
16801                                                                                          500.00
16802                                                                                            3.00
16803                                                                                            3.00
16804                                                                                           50.00
16805                                                                    based on weight (50-100 lbs)
16806                                                                                            5.00
16807                                                                       based on weight (55+ lbs)
16808                                                                                          272.00
16809                                                                                                
16810                                                            272 ivermectin, 227 pyrantel pamoate
16811                                                               4.5% flumethrin, 10% imidacloprid
16812                                                                                           23.00
16813                                                                                            0.10
16814                                                                                     unspecified
16815                                                                                     unspecified
16816                                                                                     unspecified
16817                                                                                          750.00
16818                                                                                           23.00
16819                                                                                            4.00
16820                                                                                            0.10
16821                                                                                     unspecified
16822                                                                                           75.00
16823                                                                                     unspecified
16824                                                                                          200.00
16825                                                                                           23.00
16826                                                                                            1.00
16827                                                                                            0.10
16828                                                                                           75.00
16829                                                                                           10.00
16830                                                                                            0.10
16831                                                                                           75.00
16832                                                                                           10.00
16833                                                                                            0.10
16834                                                                                     unspecified
16835                                                                                           10.00
16836                                                                                            0.10
16837                                                                                            1.80
16838                                                                                     unspecified
16839                                                                                           75.00
16840                                                                                     unspecified
16841                                                                                     unspecified
16842                                                                                            1.80
16843                                                                                           10.00
16844                                                                                            0.10
16845                                                                                          300.00
16846                                                                                            1.00
16847                                                                                     unspecified
16848                                                                                           75.00
16849                                                                                               1
16850                                                                                           15.00
16851                                                                                          272.00
16852                                                                                          136.00
16853                                                                                          500.00
16854                                                                                          272.00
16855                                                                                          136.00
16856                                                                                          272.00
16857                                                                                          375.00
16858                                                                                           80.00
16859                                                                                          272.00
16860                                                                                              80
16861                                                                                          272.00
16862                                                                                          136.00
16863                                                                                           23.00
16864                                                                                            75.5
16865                                                                                          375.00
16866                                                                                              75
16867                                                                                          375.00
16868                                                                                            6.00
16869                                                                    based on weight (50-100 lbs)
16870                                                                                            1.00
16871                                                                                            9.80
16872                                                                                            4.50
16873                                                                                          500.00
16874                                                                                           15.00
16875                                                                                           16.60
16876                                                                                           23.00
16877                                                                                       13.5, 810
16878                                                                                           23.00
16879                                                                                            1.00
16880                                                                                           23.00
16881                                                                                           23.00
16882                                                                                 based on weight
16883                                                                                            2.00
16884                                                                                            1.00
16885                                                                                            1.00
16886                                                                                            1.00
16887                                                                                          810.00
16888                                                                                            1.10
16889                                                                                            1.10
16890                                                                                            1.20
16891                                                                                           80.00
16892                                                                                            3.40
16893                                                                                          500.00
16894                                                                                          150.00
16895                                                                                            3.00
16896                                                                                            8.00
16897                                                                                            3.20
16898                                                                                          500.00
16899                                                                                          200.00
16900                                                                                            3.25
16901                                                                                           60.00
16902                                                                                          272.00
16903                                                                                          272.00
16904                                                                                          136.00
16905                                                                                          272.00
16906                                                                                          272.00
16907                                                                                          272.00
16908                                                                                          136.00
16909                                                                                          272.00
16910                                                                                          136.00
16911                                                                                          500.00
16912                                                                                           75.00
16913                                                                                           30.00
16914                                                                                          136.00
16915                                                                                             100
16916                                                                                             500
16917                                                                                          250.00
16918                                                                                     unspecified
16919                                                                                           11.50
16920                                                                                              66
16921                                                                                           44.00
16922                                                                                          500.00
16923                                                                                           16.00
16924                                                                                          400.00
16925                                                                                           11.50
16926                                                                                          125.00
16927                                                                                          810.00
16928                                                                                          240.00
16929                                                                                               1
16930                                                                                              30
16931                                                                                       13.5, 810
16932                                                                                           60.00
16933                                                                                       13.5, 810
16934                                                                                         1620.00
16935                                                                                               1
16936                                                                                               1
16937                                                                                               1
16938                                                                                            1.00
16939                                                                                    small amount
16940                                                                                          500.00
16941                                                                                          100.00
16942                                                                                          500.00
16943                                                                                          375.00
16944                                                                                          500.00
16945                                                                                            1.00
16946                                                                                            1.00
16947                                                                                            1.00
16948                                                                                            1.00
16949                                                                                          500.00
16950                                                                                          500.00
16951                                                                                            4.00
16952                                                                                            1.00
16953                                                                                            1.00
16954                                                                                          136.00
16955                                                                                           23.00
16956                                                                                          113.50
16957                                                                                          113.50
16958                                                                                           23.00
16959                                                                                         1000.00
16960                                                                                           23.00
16961                                                                                            1.00
16962                                                                                            3.00
16963                                                                                          500.00
16964                                                                                          500.00
16965                                                                                          100.00
16966                                                                                          300.00
16967                                                                                          113.00
16968                                                                                          300.00
16969                                                                                           10.00
16970                                                                    based on weight (51-100 lbs)
16971                                                                                           15.00
16972                                                                                            1.00
16973                                                                                            1.00
16974                                                                                            1.50
16975                                                                                            1.00
16976                                                                                            2.00
16977                                                                                            3.00
16978                                                                                            3.50
16979                                                                                           14.00
16980                                                                                            1.00
16981                                                                                            1.00
16982                                                                                            1.00
16983                                                                                        6 months
16984                                                                                          272.00
16985                                                                                          227.00
16986                                                                                          272.00
16987                                                                                          272.00
16988                                                                                           27.00
16989                                                                                            0.34
16990                                                                                          272.00
16991                                                                                          500.00
16992                                                                                          500.00
16993                                                                                     as directed
16994                                                                                     application
16995                                                                                           75.00
16996                                                                                           75.00
16997                                                                                          272.00
16998                                                                     based on weight (56-95 lbs)
16999                                                            272 ivermectin, 227 pyrantel pamoate
17000                                        4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17001                                                                                         1000.00
17002                                                                                            2.00
17003                                                                                            3.50
17004                                                                                           75.00
17005                                                                                            6.00
17006                                                                                           40.00
17007                                                                                          100.00
17008                                                                                          250.00
17009                                                                                          500.00
17010                                                            272 ivermectin, 227 pyrantel pamoate
17011                                                                                          200.00
17012                                                                     based on weight (56-80 lbs)
17013                                                                    based on weight (51-100 lbs)
17014                                                                    based on weight (51-100 lbs)
17015                                                                                          250.00
17016                                                                                            8.00
17017                                                                                          500.00
17018                                                                                     as directed
17019                                                                                     unspecified
17020                                                                                     unspecified
17021                                                                                         1000.00
17022                                                                                     unspecified
17023                                                                                            2.00
17024                                                                                            2.00
17025                                                                                         1000.00
17026                                                                                           40.00
17027                                                                                           60.00
17028                                                                                           10.00
17029                                                                                            2.00
17030                                                                                           40.00
17031                                                                                           10.00
17032                                                                                          136.00
17033                                                                                             272
17034                                                                                          272.00
17035                                                                                             272
17036                                                                                             136
17037                                                                                          272.00
17038                                                                                          272.00
17039                                                                                           68.00
17040                                                                                           16.00
17041                                                                                              75
17042                                                                  based on weight (50.1-100 lbs)
17043                                                                                           16.00
17044                                                                                          200.00
17045                                                                                          750.00
17046                                                                                          200.00
17047                                                                                          500.00
17048                                                                                           15.00
17049                                                                                             272
17050                                                                                         1000.00
17051                                                                                            1000
17052                                                                                          272.00
17053                                                                                               1
17054                                                                                            2.00
17055                                                                                            2.10
17056                                                                                            0.70
17057                                                                                            90.5
17058                                                                                            7.50
17059                                                                                          272.00
17060                                                                                          272.00
17061                                                                                            1.00
17062                                                                                     unspecified
17063                                                                                            1.00
17064                                                                                            2.00
17065                                                                                            1.00
17066                                                                                          375.00
17067                                                                                          272.00
17068                                                                                            1.00
17069                                                                                           60.00
17070                                                                                            1.00
17071                                                                                          100.00
17072                                                                                            1.00
17073                                                                                            1.00
17074                                                                                          272.00
17075                                                                                           68.00
17076                                                                                            2.30
17077                                                                                          272.00
17078                                                                                          227.00
17079                                                                                          500.00
17080                                                                                            1.00
17081                                                                                         1620.00
17082                                                                                            3.00
17083                                                                                            4.80
17084                                                                                          375.00
17085                                                                                          625.00
17086                                                                                          272.00
17087                                                                                          136.00
17088                                                            272 ivermectin, 227 pyrantel pamoate
17089                                                                                             136
17090                                                                    based on weight (51-100 lbs)
17091                                                                    based on weight (60-120 lbs)
17092                                                                                            1.00
17093                                                                                            1.00
17094                                                                                               1
17095                                                                                               1
17096                                                                                          272.00
17097                                                                                          136.00
17098                                                                                     unspecified
17099                                                                                 based on weight
17100                                                                                          375.00
17101                                                                                          500.00
17102                                                                                           20.00
17103                                                                                       500125.00
17104                                                                                           75.00
17105                                                                                           75.00
17106                                                                                          150.00
17107                                                                                           50.00
17108                                                                                           75.00
17109                                                                                           80.00
17110                                                                                          100.00
17111                                                                                          125.00
17112                                                                                           75.00
17113                                                                                          375.00
17114                                                                                            3.00
17115                                                                                            1.00
17116                                                                                           68.00
17117                                                                                            0.68
17118                                                                                          136.00
17119                                                                                            1.37
17120                                                                                    small amount
17121                                                                                    small amount
17122                                                                                          900.00
17123                                                                                          240.00
17124                                                                                          360.00
17125                                                                                           25.00
17126                                                                                    small amount
17127                                                                                     as directed
17128                                                                                           20.00
17129                                                                                            3.00
17130                                                                                          360.00
17131                                                                                            22.5
17132                                                                                          750.00
17133                                                                                           75.00
17134                                                                                          175.00
17135                                                                                            8.00
17136                                                                                            2.00
17137                                                                                            1.00
17138                                                                    based on weight (51-100 lbs)
17139                                                                                            5.00
17140                                                                                            1.00
17141                                                                                           20.00
17142                                                                                            5.00
17143                                                                    based on weight (51-100 lbs)
17144                                                                                          500.00
17145                                                                                           16.00
17146                                                                                          136.00
17147                                                                                          100.00
17148                                                                                           16.00
17149                                                                                            2.00
17150                                                                                           25.00
17151                                                                                              50
17152                                                                                          136.00
17153                                        272 ivermectin, 228mg praziquantel, 228 pyrantel pamoate
17154                                                                                            1.00
17155                                                                                         1620.00
17156                                                                    based on weight (50-100 lbs)
17157                                                                    based on weight (60-121 lbs)
17158                                                                                          240.00
17159                                                                                          240.00
17160                                                                                          228.00
17161                                                                                           80.00
17162                                                                                            1.00
17163                                                                                            7.50
17164                                                                                          500.00
17165                                                                                           75.00
17166                                                                                            3.00
17167                                                                                            1.00
17168                                                                                            2.00
17169                                                                                           23.00
17170                                                                                          100.00
17171                                                                                           75.00
17172                                                                                          100.00
17173                                                                                     unspecified
17174                                                                                          375.00
17175                                                                                           60.00
17176                                                                                          150.00
17177                                                                                     unspecified
17178                                                                                           29.00
17179                                                                                           14.00
17180                                                                                     unspecified
17181                                                                                           75.00
17182                                                                                            1.40
17183                                                                                          300.00
17184                                                                                          150.00
17185                                                                                           75.00
17186                                                                                           60.00
17187                                                                                          225.00
17188                                                                                          100.00
17189                                                                                          300.00
17190                                                                                          140.00
17191                                                                                           60.00
17192                                                                                           20.00
17193                                                                                          160.00
17194                                                                                           25.00
17195                                                                                          272.00
17196                                                                                              38
17197                                                                                              38
17198                                                                                          500.00
17199                                                                                           20.00
17200                                                                                           57.00
17201                                                                                            1.00
17202                                                                                            66.5
17203                                                                                          200.00
17204                                                                                         1620.00
17205                                                                                            2.68
17206                                                                                           20.00
17207                                                                                           16.08
17208                                                                                          272.00
17209                                                                                     unspecified
17210                                                                                             272
17211                                                                                              50
17212                                                                                          272.00
17213                                                                                          136.00
17214                                                                                          300.00
17215                                                                                          100.00
17216                                                                                          300.00
17217                                                                                            1.00
17218                                                                     based on weight (56-95 lbs)
17219                                                                                          272.00
17220                                                                    based on weight (50-100 lbs)
17221                                                                    based on weight (60-120 lbs)
17222                                                                                          272.00
17223                                                                                          136.00
17224                                                                                          227.00
17225                                                                    based on weight (51-100 lbs)
17226                                                                    based on weight (60-120 lbs)
17227                                                                    based on weight (50-100 lbs)
17228                                                                    based on weight (60-100 lbs)
17229                                                                                     unspecified
17230                                                                                            1.00
17231                                                                                            1.00
17232                                                                    based on weight (50-100 lbs)
17233                                                                       based on weight (55+ lbs)
17234                                                                    based on weight (51-100 lbs)
17235                                                                                          750.00
17236                                                                       based on weight (55+ lbs)
17237                                                                    based on weight (50-100 lbs)
17238                                                                                               1
17239                                                                    based on weight (50-100 lbs)
17240                                                                                              68
17241                                                                                             136
17242                                                                                           70.00
17243                                                                                           80.00
17244                                                                                          500.00
17245                                                                                          272.00
17246                                                                                          227.00
17247                                                                                            1.00
17248                                                                                               1
17249                                                                                           50.00
17250                                                                                          500.00
17251                                                                                               1
17252                                                                                 based on weight
17253                                                                                              60
17254                                                                                     application
17255                                                                                 based on weight
17256                                                                                        45293.00
17257                                                                                            1.00
17258                                                                                          425.00
17259                                                                                            1.00
17260                                                                                            1.00
17261                                                                                           75.00
17262                                                                                            1.00
17263                                                                                       13.5, 810
17264                                                                                        27, 1620
17265                                                                                         1620.00
17266                                                                                               1
17267                                                                                          500.00
17268                                                                    based on weight (51-100 lbs)
17269                                                                                           50.00
17270                                                                                          500.00
17271                                                                                          272.00
17272                                                                                          135.00
17273                                                                                           75.00
17274                                                                                          136.00
17275                                                                                          272.00
17276                                                                                           75.00
17277                                                                                          100.00
17278                                                                                           23.00
17279                                                                                          136.00
17280                                                                                            0.70
17281                                                                                            0.08
17282                                                                                          136.00
17283                                                                                          57, 68
17284                                                                                          375.00
17285                                                              68 ivermectin, 57 pyrantel pamoate
17286                                                                                          136.00
17287                                                                                            0.70
17288                                                                                            1.00
17289                                                                                            1.00
17290                                                                                            0.70
17291                                                                                            0.70
17292                                                                                           75.00
17293                                                                                            0.70
17294                                                                                              75
17295                                                                                            66.5
17296                                                                                           40.00
17297                                                                      1.5 tablets/pills/capsules
17298                                                                    based on weight (51-100 lbs)
17299                                                                                           30.00
17300                                                                                          136.00
17301                                                                                          184.00
17302                                                                                            5.00
17303                                                                                           10.00
17304                                                                                           10.00
17305                                                                                          100.00
17306                                                                                          208.00
17307                                                                                           6, 15
17308                                                                                           6, 15
17309                                                                                          3, 7.5
17310                                                                                          3, 7.5
17311                                                                                          272.00
17312                                                                                            4.70
17313                                                                                               1
17314                                                                                     application
17315                                                                                               1
17316                                                                                          272.00
17317                                                                                            0.16
17318                                                                                          110.00
17319                                                                                          272.00
17320                                                                                          200.00
17321                                                                                           50.00
17322                                                                                          300.00
17323                                                                                          100.00
17324                                                                                           60.00
17325                                                                                            0.60
17326                                                                                           55.00
17327                                                                                     application
17328                                                                                            0.01
17329                                                                                     application
17330                                                                                     application
17331                                                                                          100.00
17332                                                                                            0.28
17333                                                                                            5.50
17334                                                                                            1.00
17335                                                                                     application
17336                                                                                            1.00
17337                                                                                            1.00
17338                                                                                            1.00
17339                                                                                          300.00
17340                                                                                            0.25
17341                                                                                            1.00
17342                                                                                          350.00
17343                                                                                            0.25
17344                                                                                            1.00
17345                                                                                           37.50
17346                                                                                          400.00
17347                                                                                            1.00
17348                                                                                          240.00
17349                                                                                           15.00
17350                                                                                          120.00
17351                                                                                          250.00
17352                                                                                     unspecified
17353                                                                                           60.00
17354                                                                                          100.00
17355                                                                                     unspecified
17356                                                                                          500.00
17357                                                                                            3.60
17358                                                                                           80.00
17359                                                                                          272.00
17360                                                                                          500.00
17361                                                                                           50.00
17362                                                                                           25.00
17363                                                                                            1.00
17364                                                                                            1.00
17365                                                                                           20.00
17366                                                                                          500.00
17367                                                                                            1.00
17368                                                                                           50.00
17369                                                                                          500.00
17370                                                                                            1.00
17371                                                                                            1.00
17372                                                                                            1.00
17373                                                                                            1.00
17374                                                                                            6.00
17375                                                                                          500.00
17376                                                                                          500.00
17377                                                                                           75.00
17378                                                                                           20.00
17379                                                                                            1.00
17380                                                                                          500.00
17381                                                                                              30
17382                                                                                          272.00
17383                                                                                          227.00
17384                                                                                          272.00
17385                                                                                           22.70
17386                                                                                             272
17387                                                                                     unspecified
17388                                                                                          222.00
17389                                                            272 ivermectin, 227 pyrantel pamoate
17390                                                                                     unspecified
17391                                                            272 ivermectin, 227 pyrantel pamoate
17392                                                                                           75.00
17393                                                                                     application
17394                                                                                          500.00
17395                                                                                           50.00
17396                                                                                            2.80
17397                                                                                            2.10
17398                                                                                           23.00
17399                                                                  based on weight (50.1-100 lbs)
17400                                                                                           23.00
17401                                                                                           23.00
17402                                                                                           23.00
17403                                                                                          460.00
17404                                                                                          136.00
17405                                                                                           75.00
17406                                                                    based on weight (51-100 lbs)
17407                                                                                             1.5
17408                                                                                          200.00
17409                                                                                           75.00
17410                                                                                           80.00
17411                                                                                           70.00
17412                                                                                     unspecified
17413                                                                                           70.00
17414                                                                                           70.00
17415                                                                                           68.00
17416                                                                                          272.00
17417                                                                                          collar
17418                                                                        3 tablets/pills/capsules
17419                                                                                               1
17420                                                                                               1
17421                                                                                            8.00
17422                                                                                          100.00
17423                                                                                          200.00
17424                                                                                            0.02
17425                                                                                          250.00
17426                                                                                     unspecified
17427                                                                                     unspecified
17428                                                                                          500.00
17429                                                                                          500.00
17430                                                                                            4.00
17431                                                                                           50.00
17432                                                                                          500.00
17433                                                                                          200.00
17434                                                                                           50.00
17435                                                                                          500.00
17436                                                                                          100.00
17437                                                                                           23.00
17438                                                                                          272.00
17439                                                                                          272.00
17440                                                                                             500
17441                                                                                           30.00
17442                                                                                          500.00
17443                                                                                          500.00
17444                                                                                          272.00
17445                                                                                          272.00
17446                                                                                     bottle/vial
17447                                                                                         1000.00
17448                                                                                          272.00
17449                                                                                         1000.00
17450                                                                                            0.01
17451                                                                                          272.00
17452                                                                                         1000.00
17453                                                                                          500.00
17454                                                                                          500.00
17455                                                                                           15.00
17456                                                                                            5.00
17457                                                                                            1.00
17458                                                                                          210.00
17459                                                                                            1.00
17460                                                                                            2.00
17461                                                              460 lufenuron, 23 milbemycin oxime
17462                                                                                         1000.00
17463                                                                                  1 pack/package
17464                                                                                            1.00
17465                                                                                            2.50
17466                                                                                           15.00
17467                                                                                            3.00
17468                                                                                         23, 460
17469                                                                                         1000.00
17470                                                                                  1 pack/package
17471                                                                                          315.00
17472                                                                                            1.00
17473                                                                                            1.00
17474                                                                                            1.00
17475                                                                                            1.00
17476                                                                                            2.50
17477                                                                                            3.20
17478                                                                                           15.00
17479                                                                                          500.00
17480                                                                                           15.00
17481                                                                                          500.00
17482                                                                                    small amount
17483                                                                                           50.00
17484                                                                                              75
17485                                                                                           80.00
17486                                                                    based on weight (51-100 lbs)
17487                                                                     based on weight (45-88 lbs)
17488                                                                    based on weight (51-100 lbs)
17489                                                                     based on weight (45-88 lbs)
17490                                                                     based on weight (45-88 lbs)
17491                                                                    based on weight (50-100 lbs)
17492                                                                    based on weight (50-100 lbs)
17493                                                                    based on weight (51-100 lbs)
17494                                                                                            66.5
17495                                                                    based on weight (50-100 lbs)
17496                                                                     based on weight (45-88 lbs)
17497                                                                                              75
17498                                                                                            66.5
17499                                                                                          500.00
17500                                                                                          120.00
17501                                                                                           16.00
17502                                                                                           80.00
17503                                                                                           37.50
17504                                                                                          500.00
17505                                                                                          625.00
17506                                                                                           80.00
17507                                                                                           37.50
17508                                                                                          125.00
17509                                                                                          375.00
17510                                                                                          100.00
17511                                                                                           50.00
17512                                                                                            2.00
17513                                                                                           23.00
17514                                                                                          500.00
17515                                                                                          250.00
17516                                                                                           50.00
17517                                                                                           50.00
17518                                                                    based on weight (50-100 lbs)
17519                                                                    based on weight (51-100 lbs)
17520                                                                                           75.00
17521                                                                                          100.00
17522                                                                                          100.00
17523                                                                                          200.00
17524                                                                                          875.00
17525                                                                                          250.00
17526                                                                                          100.00
17527                                                                                           75.00
17528                                                                                           60.00
17529                                                                                           15.00
17530                                                                                        45293.00
17531                                                                                          750.00
17532                                                                                           30.00
17533                                                                                          300.00
17534                                                                                            1.40
17535                                                                                           60.00
17536                                                                                           62.50
17537                                                                                          200.00
17538                                                                                          500.00
17539                                                                                          160.00
17540                                                                                           50.00
17541                                                                                            1.40
17542                                                                                           75.00
17543                                                                                          200.00
17544                                                                                            3.00
17545                                                                                            1.40
17546                                                                                          200.00
17547                                                                                            3.00
17548                                                                                            1.40
17549                                                                                            2.00
17550                                                                                           75.00
17551                                                                                          200.00
17552                                                                                           15.00
17553                                                                                          750.00
17554                                                                                           15.00
17555                                                                                         1000.00
17556                                                                                         1000.00
17557                                                                                         1000.00
17558                                                                                          385.00
17559                                                                                          375.00
17560                                                                                            2.00
17561                                                                                           75.00
17562                                                                                           50.00
17563                                                                                            1.00
17564                                                                                          200.00
17565                                                                                          250.00
17566                                                                                          200.00
17567                                                                                            6.00
17568                                                                                            1.00
17569                                                                                            6.00
17570                                                                                          250.00
17571                                                                                            5.00
17572                                                                                          375.00
17573                                                                                           50.00
17574                                                                                          270.00
17575                                                                                            4.50
17576                                                                                     unspecified
17577                                                                                           30.00
17578                                                                                          500.00
17579                                                                                           60.00
17580                                                                                           60.00
17581                                                                                          500.00
17582                                                                                            1.00
17583                                                                                     application
17584                                                                                          500.00
17585                                                                                            1.25
17586                                                                                           75.00
17587                                                                                           75.00
17588                                                                                                
17589                                                                                            1.40
17590                                                                                            1.40
17591                                                                                            1.00
17592                                                                                            1.40
17593                                                                                         1200.00
17594                                                                                           37.50
17595                                                                                           50.00
17596                                                                                          140.00
17597                                                                                           50.00
17598                                                                                          200.00
17599                                                                                            1.40
17600                                                                                           50.00
17601                                                                                            1.00
17602                                                                                    small amount
17603                                                                                               1
17604                                                                                            0.04
17605                                            460 lufenuron, 23 milbemycin oxime, 228 praziquantel
17606                                                                                            4.00
17607                                                                                          164.00
17608                                                                                          400.00
17609                                                                                            5.00
17610                                                                                          170.25
17611                                                                     based on weight (44-88 lbs)
17612                                                                                            1.75
17613                                                                                           16.00
17614                                                                                          400.00
17615                                                                     based on weight (45-88 lbs)
17616                                                                                         1000.00
17617                                                                                            1.83
17618                                                                                           60.00
17619                                                                                           16.00
17620                                                                                          500.00
17621                                                                                            1.00
17622                                                                                            0.30
17623                                                                                          136.00
17624                                                                                          300.00
17625                                                                                            1.00
17626                                                                                            1.74
17627                                                                   based on weight (44.1-88 lbs)
17628                                                                                         1000.00
17629                                                                                            1.74
17630                                                                                           10.00
17631                                                                                            1.00
17632                                                                                          300.00
17633                                                                                            1.71
17634                                                                                         1000.00
17635                                                                                            1.62
17636                                                                                          200.00
17637                                                                                          100.00
17638                                                                                          730.00
17639                                                                                          200.00
17640                                                                                          375.00
17641                                                                                            1.00
17642                                                                                            1.00
17643                                                                                            2.50
17644                                                                                            3.50
17645                                                                                          300.00
17646                                                                                            0.25
17647                                                                                           62.50
17648                                                                                           20.00
17649                                                                                            1.00
17650                                                                                          350.00
17651                                                                                            2.50
17652                                                                                           30.00
17653                                                                                           30.00
17654                                                                                           10.00
17655                                                                                           30.00
17656                                                                                           30.00
17657                                                                                          900.00
17658                                                                                         1000.00
17659                                                                    based on weight (50-100 lbs)
17660                                                                                          500.00
17661                                                                                           75.00
17662                                                                                            3.40
17663                                                                                          500.00
17664                                                                                          300.00
17665                                                                                           75.00
17666                                                                                          100.00
17667                                                                                           75.00
17668                                                                                         1620.00
17669                                                                                           27.00
17670                                                                                              90
17671                                                                                         1620.00
17672                                                              27 milbemycin oxime, 1620 spinosad
17673                                                              27 milbemycin oxime, 1620 spinosad
17674                                                                                            1.00
17675                                                                                            2.00
17676                                                                                            1.00
17677                                                                                           60.00
17678                                                                                          300.00
17679                                                                                            1.00
17680                                                                                     unspecified
17681                                                                                          113.50
17682                                                                                           50.00
17683                                                                                          250.00
17684                                                                                          170.00
17685                                                                                         1693.00
17686                                                                                          400.00
17687                                                                                          500.00
17688                                                                                            8.00
17689                                                                                            1.00
17690                                                                                         1650.00
17691                                                                                          150.00
17692                                                                                          250.00
17693                                                                                            1.00
17694                                                                                          200.00
17695                                                                                          300.00
17696                                                                                          300.00
17697                                                                                        27, 1620
17698                                                                                         1000.00
17699                                                                                          300.00
17700                                                                                            8.00
17701                                                                                          200.00
17702                                                                                         10, 100
17703                                                                                         23, 460
17704                                                                                            3.60
17705                                                                                          100.00
17706                                                                                          200.00
17707                                                                                           50.00
17708                                                                                          750.00
17709                                                                                          100.00
17710                                                                                            0.14
17711                                                                                          375.00
17712                                                                                           50.00
17713                                                                                            0.80
17714                                                                                           23.00
17715                                                                                          300.00
17716                                                                                           27.00
17717                                                                                           19.50
17718                                                                                          150.00
17719                                                                                         23, 460
17720                                                                                    small amount
17721                                                                                          500.00
17722                                                                    based on weight (51-100 lbs)
17723                                                                                              90
17724                                                                                          150.00
17725                                                                                           23.00
17726                                                                                          136.00
17727                                                                                          150.00
17728                                                                                          200.00
17729                                                                                          150.00
17730                                                                                            1.60
17731                                                                                           60.00
17732                                                                                            1.60
17733                                                                                           60.00
17734                                                                                         1000.00
17735                                                                                            1.00
17736                                                                                          500.00
17737                                                                                          375.00
17738                                                                                          100.00
17739                                                                                         1000.00
17740                                                                                            1.00
17741                                                                                            1.00
17742                                                                                     application
17743                                                                                               1
17744                                                                                            1.00
17745                                                                                           36.00
17746                                                                                         1000.00
17747                                                                                          500.00
17748                                                                                          500.00
17749                                                                                           37.50
17750                                                                                            2.50
17751                                                                                          136.00
17752                                                                                            5.00
17753                                                                                            5.00
17754                                                                                          227.00
17755                                                                     based on weight (45-88 lbs)
17756                                                                                          136.00
17757                                                                                          272.00
17758                                                                                          272.00
17759                                                                                          136.00
17760                                                                                           68.00
17761                                                                                          136.00
17762                                                                                          150.00
17763                                                                                          272.00
17764                                                                                          136.00
17765                                                                                          100.00
17766                                                                                            0.60
17767                                                                                          400.00
17768                                                                                          136.00
17769                                                                                           10.00
17770                                                                                           10.00
17771                                                                                            0.40
17772                                                                                           20.00
17773                                                                                          136.00
17774                                                                                           32.00
17775                                                                                          272.00
17776                                                                                            2.50
17777                                                                                          250.00
17778                                                                                           75.00
17779                                                                                     unspecified
17780                                                           2 prednisone, 5 trimeprazine tartrate
17781                                                                                               5
17782                                                                     based on weight (44-88 lbs)
17783                                                                                          300.00
17784                                                                                            5.00
17785                                                                                           16.00
17786                                                                                          750.00
17787                                                                                           16.00
17788                                                                                         1000.00
17789                                                                                           16.00
17790                                                                                           16.00
17791                                                                                         1000.00
17792                                                                                          200.00
17793                                                                                           16.00
17794                                                                                            8.00
17795                                                                                         1000.00
17796                                                                                          200.00
17797                                                                                           16.00
17798                                                                                               7
17799                                                                                          200.00
17800                                                                                          200.00
17801                                                                                          750.00
17802                                                                                     unspecified
17803                                                                                     unspecified
17804                                                                                     unspecified
17805                                                                                            1.00
17806                                                                                           90.00
17807                                                                                          300.00
17808                                                                                            1.00
17809                                                                                           16.00
17810                                                                                           75.00
17811                                                                                            1.00
17812                                                                                          300.00
17813                                                                                           40.00
17814                                                                                          272.00
17815                                                                                            2.68
17816                                                                                          300.00
17817                                                                                          272.00
17818                                                                    based on weight (60-120 lbs)
17819                                                                                          300.00
17820                                                                                          180.00
17821                                                                                            3.50
17822                                                                                            1.00
17823                                                                                           30.00
17824                                                                                          500.00
17825                                                                                          272.00
17826                                                                                          136.00
17827                                                                                          272.00
17828                                                                                          136.00
17829                                                                                           90.00
17830                                                                                         1000.00
17831                                                                                          300.00
17832                                                                                     unspecified
17833                                                                                            1.00
17834                                                                                            1.00
17835                                                                                          150.00
17836                                                                                           80.00
17837                                                                                          100.00
17838                                                                                            4.00
17839                                                                                            2.50
17840                                                                                            1.00
17841                                                                                            1.00
17842                                                                                           75.00
17843                                                                                          200.00
17844                                                                                          500.00
17845                                                                                     unspecified
17846                                                                                            4.00
17847                                                                                           80.00
17848                                                                                            2.00
17849                                                                                          425.00
17850                                                                                          300.00
17851                                                                                          100.00
17852                                                                                           40.00
17853                                                                                     unspecified
17854                                                                                          500.00
17855                                                                                     unspecified
17856                                                                                     unspecified
17857                                                                                           75.00
17858                                                                                          100.00
17859                                                                                          400.00
17860                                                                                     unspecified
17861                                                                                          160.00
17862                                                                                           50.00
17863                                                                                     unspecified
17864                                                                                          500.00
17865                                                                                     unspecified
17866                                                                                            1.00
17867                                                                                            1.00
17868                                                                                           75.00
17869                                                                                           68.00
17870                                                                                          136.00
17871                                                                                            0.02
17872                                                                                            0.05
17873                                                                                            0.09
17874                                                                                          250.00
17875                                                                                          125.00
17876                                                                                          250.00
17877                                                                                          500.00
17878                                                                                            8.00
17879                                                                                          250.00
17880                                                                                          150.00
17881                                                                                           20.00
17882                                                    0.284 betamethasone, 0.57 gentamicin sulfate
17883                                                                                            1.32
17884                                                                                          200.00
17885                                                                                            3.50
17886                                                                                           15.00
17887                                                                                          136.00
17888                                                                                            0.09
17889                                                                                          150.00
17890                                                                                           40.00
17891                                                                                           50.00
17892                                                                                           50.00
17893                                                                                          500.00
17894                                                                                            8.00
17895                                                                                          150.00
17896                                                                                            2.68
17897                                                                                          272.00
17898                                                                                          200.00
17899                                                                                          136.00
17900                                                                                            2.68
17901                                                                                          200.00
17902                                                                                          250.00
17903                                                                                          102.00
17904                                                                                          136.00
17905                                                                                            2.68
17906                                                                                          200.00
17907                                                                                          250.00
17908                                                                                            1.00
17909                                                                                          102.00
17910                                                                                            0.40
17911                                                                                            8.00
17912                                                                                            3.50
17913                                                                                          150.00
17914                                                                                            8.00
17915                                                                                           50.00
17916                                                                                          150.00
17917                                                                                           40.00
17918                                                                                          136.00
17919                                                                                            2.68
17920                                                                                          150.00
17921                                                                                           40.00
17922                                                                                           21.00
17923                                                                                           50.00
17924                                                                                          250.00
17925                                                                                          150.00
17926                                                                                           50.00
17927                                                                                          325.00
17928                                                                                          100.00
17929                                                                                          136.00
17930                                                                                            8.00
17931                                                                                          500.00
17932                                                                                           24.00
17933                                                                                           25.00
17934                                                                                            0.40
17935                                                                                           20.00
17936                                                                                            1.50
17937                                                                                          425.00
17938                                                                                           20.00
17939                                                                                            1.00
17940                                                                                            1.00
17941                                                                                          100.00
17942                                                                                            1.00
17943                                                                                            7.00
17944                                                                                          200.00
17945                                                                                           50.00
17946                                                                                          500.00
17947                                                                                            1.00
17948                                                                                           15.00
17949                                                                                            3.20
17950                                                                                           23.00
17951                                                                                          136.00
17952                                                                                           60.00
17953                                                                                          136.00
17954                                                                                           23.00
17955                                                                                              23
17956                                                                                          136.00
17957                                                                                               4
17958                                                                                          136.00
17959                                                                                           23.00
17960                                                                                          300.00
17961                                                                                           75.00
17962                                                                                          200.00
17963                                                                                           75.00
17964                                                                                         1000.00
17965                                                                                          136.00
17966                                                                                           10.00
17967                                                                                          200.00
17968                                                                                          150.00
17969                                                                                           15.00
17970                                                                                          136.00
17971                                                                                          136.00
17972                                                                                           10.00
17973                                                                                           50.00
17974                                                                                            2.00
17975                                                                                          200.00
17976                                                                                            1.00
17977                                                                                            1.00
17978                                                                                          136.00
17979                                                                                          272.00
17980                                                                                           50.00
17981                                                                                           36.00
17982                                                                                          272.00
17983                                                                                          227.00
17984                                                                                          500.00
17985                                                                                          500.00
17986                                                                                           50.00
17987                                                                                          272.00
17988                                                                                          125.00
17989                                                                                          125.00
17990                                                                                          500.00
17991                                                                                            1.00
17992                                                                                           15.00
17993                                                                                          500.00
17994                                                                                          120.00
17995                                                                                           20.00
17996                                                                                          375.00
17997                                                                                            8.00
17998                                                                                           11.50
17999                                                                                           62.50
18000                                                                                          200.00
18001                                                                                              38
18002                                                                                           50.00
18003                                                                                              75
18004                                                                                            8.00
18005                                                                                           50.00
18006                                                                                            5.00
18007                                                                                           50.00
18008                                                                                            4.00
18009                                                                                              66
18010                                                                                              75
18011                                                                                            66.5
18012                                                                                            1.50
18013                                                                                            5.40
18014                                                                                            66.5
18015                                                                                              75
18016                                                                                            1.50
18017                                                                                          100.00
18018                                                                                            5.40
18019                                                                                           10.80
18020                                                                                          100.00
18021                                                                                              75
18022                                                                                            5.40
18023                                                                    based on weight (50-100 lbs)
18024                                                                    based on weight (60-121 lbs)
18025                                                                                            1.00
18026                                                                                            1.00
18027                                                                                            5.40
18028                                                                                           10.80
18029                                                                                           60.00
18030                                                                                            1.00
18031                                                                                            5.40
18032                                                                                          500.00
18033                                                                                            5.40
18034                                                                                          375.00
18035                                                                                           50.00
18036                                                                                          200.00
18037                                                                                        45355.00
18038                                                                                           10.00
18039                                                                                          500.00
18040                                                                                          500.00
18041                                                                                            1.00
18042                                                                                            9.00
18043                                                                                            2.50
18044                                                                                        45355.00
18045                                                                                          500.00
18046                                                                                          272.00
18047                                                                                          136.00
18048                                                                                          500.00
18049                                                                                          272.00
18050                                                                                          136.00
18051                                                                                          200.00
18052                                                                                           15.00
18053                                                                                            2.50
18054                                                                                          500.00
18055                                                                                               3
18056                                                                                             2.5
18057                                                                  based on weight (60.1-121 lbs)
18058                                                                    based on weight (51-100 lbs)
18059                                                                                           50.00
18060                                                                                           75.00
18061                                                                                          201.00
18062                                                                                          500.00
18063                                                                                          200.00
18064                                                                                            3.00
18065                                                                                          300.00
18066                                                                                          300.00
18067                                                                                           20.00
18068                                                                                            3.00
18069                                                                                            1.00
18070                                                                                           50.00
18071                                                                                            6.00
18072                                                                   based on weight (40.1-60 lbs)
18073                                                                                              66
18074                                                                                 moderate amount
18075                                                                    based on weight (51-100 lbs)
18076                                                                                              66
18077                                                                                           10.00
18078                                                                                           10.00
18079                                                                                            1.00
18080                                                                                            1.00
18081                                                                                            1.00
18082                                                                                          272.00
18083                                                                                            0.36
18084                                                                                           50.00
18085                                                                                          300.00
18086                                                                                          500.00
18087                                                                                          200.00
18088                                                                                          250.00
18089                                                                                          500.00
18090                                                                                           60.00
18091                                                                                           10.00
18092                                                                                           10.00
18093                                                                                          250.00
18094                                                                                     unspecified
18095                                                                                 based on weight
18096                                                                                     application
18097                                                                                          750.00
18098                                                                                     unspecified
18099                                                                                            1.00
18100                                                                                           60.00
18101                                                                                          125.00
18102                                                                                          500.00
18103                                                                                         1000.00
18104                                                                                          200.00
18105                                                                                          562.50
18106                                                                                          300.00
18107                                                                                         1500.00
18108                                                                                          300.00
18109                                                                                          100.00
18110                                                                                          100.00
18111                                                                                          375.00
18112                                                                                            0.70
18113                                                                                          150.00
18114                                                                                     unspecified
18115                                                                                         23, 460
18116                                                                       based on weight (55+ lbs)
18117                                                                                              75
18118                                                                                   1 bottle/vial
18119                                                                                               1
18120                                                                                            4.00
18121                                                                                           23.00
18122                                                                                          125.00
18123                                                                                            1.00
18124                                                                       based on weight (50+ lbs)
18125                                                                                              38
18126                                                                                           23.00
18127                                                                                            3.00
18128                                                                                          200.00
18129                                                                                            5.00
18130                                                                                          100.00
18131                                                                                            8.00
18132                                                                                            3.00
18133                                                                                            5.00
18134                                                                                     unspecified
18135                                                                                            2.40
18136                                                                                            1.20
18137                                                                                            0.50
18138                                                                                            8.00
18139                                                                                          100.00
18140                                                                                           50.00
18141                                                                                     unspecified
18142                                                                                            0.36
18143                                                                                            0.10
18144                                                                                            6.00
18145                                                                                            2.10
18146                                                                                            0.10
18147                                                                                     unspecified
18148                                                                                           23.00
18149                                                                                            2.68
18150                                                                                            1.99
18151                                                                                            6.00
18152                                                                                          150.00
18153                                                                                          500.00
18154                                                                                            0.30
18155                                                                                           48.00
18156                                                                                          100.00
18157                                                                                           56.75
18158                                                                                           34.05
18159                                                                                               6
18160                                                                                           23.00
18161                                                                                          136.00
18162                                                                                           37.50
18163                                                                                         1000.00
18164                                                                                               6
18165                                                                                    small amount
18166                                                                                           23.00
18167                                                                                          136.00
18168                                                                                         1000.00
18169                                                                                            2.00
18170                                                                                          200.00
18171                                                                                           37.50
18172                                                                                           20.00
18173                                                                                         1000.00
18174                                                                                          120.00
18175                                                                                          200.00
18176                                                                                           20.00
18177                                                                                            3.70
18178                                                                                          120.00
18179                                                                                            2.90
18180                                                                                           15.00
18181                                                                                            9.00
18182                                                                                          136.00
18183                                                                                           41.47
18184                                                                                            3.00
18185                                                                                          201.60
18186                                                                                           20.00
18187                                                                                          200.00
18188                                                                                               1
18189                                                                                          100.00
18190                                                                                          272.00
18191                                                                                          100.00
18192                                                                    based on weight (51-100 lbs)
18193                                                                    based on weight (51-100 lbs)
18194                                                                                           10.00
18195                                                                                     unspecified
18196                                                                                          375.00
18197                                                                                           50.00
18198                                                                                          250.00
18199                                                                                            5, 2
18200                                                                                         1000.00
18201                                                                                           16.00
18202                                                                    based on weight (51-100 lbs)
18203                                                                                           16.00
18204                                                                                           16.00
18205                                                                    based on weight (51-100 lbs)
18206                                                                                           16.00
18207                                                                                           16.00
18208                                                                                          100.00
18209                                                                                           16.00
18210                                                                                          500.00
18211                                                                                          100.00
18212                                                                                           50.00
18213                                                                                     unspecified
18214                                                                                     unspecified
18215                                                                                              50
18216                                                                                              10
18217                                                                    based on weight (50-100 lbs)
18218                                                                    based on weight (50-100 lbs)
18219                                                                                           10.00
18220                                                                                               1
18221                                                                                               2
18222                                                                                               1
18223                                                                                           60.00
18224                                                                                           50.00
18225                                                                                          200.00
18226                                                                                           75.00
18227                                                                                            2.00
18228                                                                                          125.00
18229                                                                                         1620.00
18230                                                                                           27.00
18231                                                                                            9.80
18232                                                                                            8.80
18233                                                                                           22.10
18234                                                                                            1.60
18235                                                                                            1.60
18236                                                                                            1.50
18237                                                                                            2.00
18238                                                                                     unspecified
18239                                                                                         1620.00
18240                                                                                           27.00
18241                                                                                            4.95
18242                                                                                            0.44
18243                                                                                           36.08
18244                                                                                           16.00
18245                                                                                            0.08
18246                                                                                            1.70
18247                                                                                            1.70
18248                                                                                            3.00
18249                                                                                             150
18250                                                                                          300.00
18251                                                                                          powder
18252                                                                                             150
18253                                                                                           50.00
18254                                                                                          100.00
18255                                                                                         1620.00
18256                                                                                           27.00
18257                                                                                            1.00
18258                                                                               0.44, 4.95, 36.08
18259                                                                                           10.00
18260                                                                                        27, 1620
18261                                                                                           80.00
18262                                                                               0.44, 4.95, 36.08
18263                                                                                     unspecified
18264                                                                                        27, 1620
18265                                                                                           80.00
18266                                                                                        27, 1620
18267                                                                                           80.00
18268                                                                                           16.00
18269                                                                                           75.00
18270                                                                                          100.00
18271                                                                                              iu
18272                                                                                           80.00
18273                                                                                           27.00
18274                                                                                            1.00
18275                                                                                     unspecified
18276                                                                                     unspecified
18277                                                                                              10
18278                                                                                            1.00
18279                                                                                            1.00
18280                                                                                          250.00
18281                                                                                            1.00
18282                                                                                         1000.00
18283                                                                                            1.00
18284                                                                                              75
18285                                                                                            1.00
18286                                                                                          900.00
18287                                                                                          200.00
18288                                                                                          300.00
18289                                                                                          100.00
18290                                                                                          325.00
18291                                                                                           50.00
18292                                                                                          500.00
18293                                                                                           10.00
18294                                                                                          100.00
18295                                                                                           60.00
18296                                                                                            2.00
18297                                                                                          250.00
18298                                                                                           50.00
18299                                                                                           45.40
18300                                                                                            1.00
18301                                                                                            1.00
18302                                                                                           50.00
18303                                                                                           37.50
18304                                                                                           50.00
18305                                                                                          500.00
18306                                                                                           50.00
18307                                                                                           12.50
18308                                                                                           10.00
18309                                                                                            1.00
18310                                                                                            5.00
18311                                                                                         1000.00
18312                                                                                          750.00
18313                                                                                            2.50
18314                                                                                            1.00
18315                                                                                           10.00
18316                                                                                            1.00
18317                                                                                          200.00
18318                                                                                            1.00
18319                                                                                            1.00
18320                                                                                            1.00
18321                                                                                            1.00
18322                                                                                            1.00
18323                                                                                    small amount
18324                                                                                           20.00
18325                                                                                     unspecified
18326                                                                                     unspecified
18327                                                                                           15.00
18328                                                                                           50.00
18329                                                                                             0.1
18330                                                                                             0.1
18331                                                                                            7.00
18332                                                                                          250.00
18333                                                                                          720.00
18334                                                                                          500.00
18335                                                                                            1.00
18336                                                                                           20.00
18337                                                                    based on weight (51-100 lbs)
18338                                                                                        compound
18339                                                                                 based on weight
18340                                                                                 based on weight
18341                                                                                     unspecified
18342                                                                                 based on weight
18343                                                                                               5
18344                                                                    based on weight (51-100 lbs)
18345                                                                                              30
18346                                                                                          100.00
18347                                                                                            3.75
18348                                                                                          300.00
18349                                                                                          272.00
18350                                                                                          500.00
18351                                                                                         1000.00
18352                                                                                           64.80
18353                                                                                           75.00
18354                                                                                            3.75
18355                                                                                         2500.00
18356                                                                                          500.00
18357                                                                                          300.00
18358                                                                                           75.00
18359                                                                                            1.00
18360                                                                                         2500.00
18361                                                                                           97.20
18362                                                                                           30.00
18363                                                                                          150.00
18364                                                                                          300.00
18365                                                                    based on weight (51-100 lbs)
18366                                                                    based on weight (60-120 lbs)
18367                                                                                            1.00
18368                                                                                          150.00
18369                                                                                          500.00
18370                                                                    based on weight (51-100 lbs)
18371                                                                     based on weight (24-60 lbs)
18372                                                                                            1.50
18373                                                                    based on weight (51-100 lbs)
18374                                                                    based on weight (60-121 lbs)
18375                                                                                              75
18376                                                                                            7.50
18377                                                                                           15.00
18378                                                                                         1500.00
18379                                                                                         2000.00
18380                                                                                            7.50
18381                                                                                           15.00
18382                                                                                           40.00
18383                                                                                            7.50
18384                                                                                           50.00
18385                                                                                          500.00
18386                                                                                           40.00
18387                                                                                            7.50
18388                                                                                           15.00
18389                                                                                           50.00
18390                                                                                          272.00
18391                                                                                          272.00
18392                                                                                          500.00
18393                                                                                            8.00
18394                                                                                         1000.00
18395                                                                                            2.70
18396                                                                                          272.00
18397                                                                                            5.00
18398                                                                                          272.00
18399                                                                                          136.00
18400                                                                                           16.00
18401                                                                                          272.00
18402                                                                                          136.00
18403                                                                                           16.00
18404                                                                                                
18405                                                                                           70.00
18406                                                                                          272.00
18407                                                                                          136.00
18408                                                                                           70.00
18409                                                                                           16.00
18410                                                                                          200.00
18411                                                                                          375.00
18412                                                                                           50.00
18413                                                                                         1000.00
18414                                                                                          272.00
18415                                                                    based on weight (51-100 lbs)
18416                                                                                              66
18417                                                                                           70.00
18418                                                                                          272.00
18419                                                                                          900.00
18420                                                                                           16.00
18421                                                                                         1000.00
18422                                                                                           50.00
18423                                                                                          150.00
18424                                                                                            0.10
18425                                                                                            0.30
18426                                                                                            8.00
18427                                                                                    small amount
18428                                                                                         1000.00
18429                                                                                           16.00
18430                                                                                           70.00
18431                                                                                          200.00
18432                                                                                         1000.00
18433                                                                                           80.00
18434                                                                                           16.00
18435                                                                                          500.00
18436                                                                                            1.00
18437                                                                                            5.00
18438                                                                                           70.00
18439                                                                                           16.00
18440                                                                                            1.00
18441                                                                        2 tablets/pills/capsules
18442                                                                                           50.00
18443                                                                                          500.00
18444                                                                                            1.00
18445                                                                                            1.00
18446                                                                                            1.00
18447                                                                                           50.00
18448                                                                                           50.00
18449                                                                                           25.00
18450                                                                                           50.00
18451                                                                                          200.00
18452                                                                                           20.00
18453                                                                                            1.00
18454                                                                                            1.00
18455                                                                                          200.00
18456                                                                                           50.00
18457                                                                                            1.00
18458                                                                                            1.00
18459                                                                    based on weight (51-100 lbs)
18460                                                                    based on weight (51-100 lbs)
18461                                                                     based on weight (44-88 lbs)
18462                                                                                          400.00
18463                                                                                          500.00
18464                                                                                             500
18465                                                                                           50.00
18466                                                                                               1
18467                                                                                             272
18468                                                                                           60.00
18469                                                                                 0.25 inch strip
18470                                                                                             272
18471                                                                                     application
18472                                                                                             272
18473                                                                                              90
18474                                                                                          450.00
18475                                                                                          200.00
18476                                                                                          150.00
18477                                                                                            1.00
18478                                                                                          750.00
18479                                                                                        27, 1610
18480                                                                                        27, 1610
18481                                                                                          500.00
18482                                                                                         1620.00
18483                                                                                        27, 1610
18484                                                                                           80.00
18485                                                                                          300.00
18486                                                                                           50.00
18487                                                                                          500.00
18488                                                                                           20.00
18489                                                                                 based on weight
18490                                                                                 based on weight
18491                                                                                           50.00
18492                                                                                           50.00
18493                                                                                           20.00
18494                                                                                 based on weight
18495                                                                                 based on weight
18496                                                                                           50.00
18497                                                                                          227.00
18498                                                                                            4.70
18499                                                                                           50.00
18500                                                                                 based on weight
18501                                                                                           50.00
18502                                                                    based on weight (50-100 lbs)
18503                                                                                           50.00
18504                                                                                            1.00
18505                                                                                          130.00
18506                                                                                          100.00
18507                                                                                           75.00
18508                                                                                          300.00
18509                                                                                           75.00
18510                                                                                          300.00
18511                                                                                           75.00
18512                                                                                             272
18513                                                                                          272.00
18514                                                                     based on weight (21-55 lbs)
18515                                                                                          100.00
18516                                                                                          250.00
18517                                                                                          272.00
18518                                                                                          200.00
18519                                                                                              42
18520                                                                        based on weight (60 lbs)
18521                                                                                          113.00
18522                                                                                          500.00
18523                                                                                           16.00
18524                                                                                          272.00
18525                                                                     based on weight (44-88 lbs)
18526                                                                                         1000.00
18527                                                                                         1000.00
18528                                                                                            1.00
18529                                                                                            1.00
18530                                                                                            1.00
18531                                                                                            1.00
18532                                                                                         1000.00
18533                                                                                         1000.00
18534                                                                                     unspecified
18535                                                                                            2.00
18536                                                                                            1.00
18537                                                                                          113.50
18538                                                                                          272.00
18539                                                                                            66.5
18540                                                                                           10.00
18541                                                                                          272.00
18542                                                                                            66.5
18543                                                                                               6
18544                                                                                            4.00
18545                                                                                           16.00
18546                                                                                          227.00
18547                                                                                            3.00
18548                                                                                          200.00
18549                                                                                           30.00
18550                                                                                            1.00
18551                                                                                            3.60
18552                                                                                            3.60
18553                                                                                          400.00
18554                                                                                            2.00
18555                                                                                           70.00
18556                                                                                            4.00
18557                                                                                            3.20
18558                                                                                            1.00
18559                                                                                          120.00
18560                                                                                          400.00
18561                                                                                          272.00
18562                                                                                               1
18563                                                                                          200.00
18564                                                                                          272.00
18565                                                                       based on weight (55+ lbs)
18566                                                                                          150.00
18567                                                                                          562.50
18568                                                                                          300.00
18569                                                                                          204.00
18570                                                                                            1.00
18571                                                                    based on weight (51-100 lbs)
18572                                                                    based on weight (60-120 lbs)
18573                                                                                            1.00
18574                                                                                            1.00
18575                                                                                          272.00
18576                                                                    based on weight (51-100 lbs)
18577                                                                  based on weight (60.1-121 lbs)
18578                                                                                          250.00
18579                                                                                           60.00
18580                                                                    based on weight (50-100 lbs)
18581                                                                                            1.00
18582                                                                                          960.00
18583                                                                                           68.00
18584                                                                                          500.00
18585                                                                                          375.00
18586                                                                                           60.00
18587                                                                                            2.00
18588                                                                                     unspecified
18589                                                                                          272.00
18590                                                                                          227.00
18591                                                                                                
18592                                                                                          460.00
18593                                                                                          460.00
18594                                                                                          460.00
18595                                                                                     as directed
18596                                                                                           23.00
18597                                                                                          136.00
18598                                                                                           23.00
18599                                                                                          136.00
18600                                                                                           23.00
18601                                                                                          136.00
18602                                                                                          500.00
18603                                                                                          100.00
18604                                                                                           75.00
18605                                                                                          500.00
18606                                                                                          200.00
18607                                                                                            1.00
18608                                                                                          500.00
18609                                                                                     unspecified
18610                                                                                            1.00
18611                                                                                           75.00
18612                                                                                     unspecified
18613                                                                                            3.00
18614                                                                                              50
18615                                                                                           23.00
18616                                                                                          136.00
18617                                                                                           23.00
18618                                                                                          136.00
18619                                                                                          300.00
18620                                                                                           75.00
18621                                                                                     unspecified
18622                                                                                           30.00
18623                                                                                          200.00
18624                                                                                          200.00
18625                                                                                           70.00
18626                                                                                            5.00
18627                                                                                           75.00
18628                                                                                          200.00
18629                                                                                            4.00
18630                                                                                            2.00
18631                                                                                           15.00
18632                                                                                           20.00
18633                                                                                           15.00
18634                                                                                          125.00
18635                                                                                            1.00
18636                                                                                           50.00
18637                                                                                          750.00
18638                                                                                          500.00
18639                                                                                            6.00
18640                                                                                           75.00
18641                                                                                          750.00
18642                                                                                          750.00
18643                                                                                           75.00
18644                                                                                         1000.00
18645                                                                                           16.00
18646                                                                                           16.00
18647                                                                                          272.00
18648                                                                                            1.00
18649                                                                       based on weight (25+ lbs)
18650                                                                                           75.00
18651                                                                                           50.00
18652                                                                                           16.00
18653                                                                                         1000.00
18654                                                                                           90.00
18655                                                                                         1000.00
18656                                                                                            8.00
18657                                                                                           90.00
18658                                                                                           16.00
18659                                                                                         1000.00
18660                                                                                           16.00
18661                                                                                          136.00
18662                                                                                          272.00
18663                                                                                           16.00
18664                                                                                         1000.00
18665                                                                                          150.00
18666                                                                                            4.00
18667                                                                                           16.00
18668                                                                                           16.00
18669                                                                                            1.00
18670                                                                                         1000.00
18671                                                                                           16.00
18672                                                                                          150.00
18673                                                                                            8.00
18674                                                                                            1.00
18675                                                                                           75.00
18676                                                                                           30.00
18677                                                                                          300.00
18678                                                                                         1000.00
18679                                                                                          500.00
18680                                                                                           16.00
18681                                                                                           75.00
18682                                                                                           20.00
18683                                                                                          560.00
18684                                                                                            9.30
18685                                                                                             500
18686                                                                                               1
18687                                                                                             6.5
18688                                                                                               3
18689                                                                                              12
18690                                                                                     unspecified
18691                                                                                          200.00
18692                                                                                           65.00
18693                                                                                           60.00
18694                                                                                       11.5, 230
18695                                                                                            2.68
18696                                                                     based on weight (45-88 lbs)
18697                                                                    based on weight (50-100 lbs)
18698                                                                                            1.25
18699                                                                                           15.00
18700                                                                                           14.00
18701                                                                                          500.00
18702                                                                                          500.00
18703                                                                    based on weight (51-100 lbs)
18704                                                                                              42
18705                                                                                              38
18706                                                                                          272.00
18707                                                            132 ivermectin, 114 pyrantel pamoate
18708                                                                                           68.00
18709                                                                                           24.00
18710                                                                                          500.00
18711                                                                                          375.00
18712                                                                                          136.00
18713                                                                                          100.00
18714                                                                                          500.00
18715                                                                                          375.00
18716                                                                                     unspecified
18717                                                                                          250.00
18718                                                                                     unspecified
18719                                                                                           24.00
18720                                                                                           10.00
18721                                                                                          100.00
18722                                                                                          100.00
18723                                                                                           24.00
18724                                                                                          500.00
18725                                                                                           24.00
18726                                                                                          100.00
18727                                                                                            1.00
18728                                                                                            1.00
18729                                                                                     unspecified
18730                                                                                           24.00
18731                                                                                          100.00
18732                                                                                            1.00
18733                                                                                            1.00
18734                                                                      based on weight (5-10 lbs)
18735                                                                      based on weight (0-25 lbs)
18736                                                                   based on weight (20.1-40 lbs)
18737                                                                                            4.50
18738                                                                                          100.00
18739                                                                                          250.00
18740                                                                                            2.00
18741                                                                                           50.00
18742                                                                                          100.00
18743                                                                     based on weight (26-50 lbs)
18744                                                                                            1.00
18745                                                                                            1.00
18746                                                                                          227.00
18747                                                                                           68.00
18748                                                                                            1.00
18749                                                                                          272.00
18750                                                            272 ivermectin, 227 pyrantel pamoate
18751                                                                                          136.00
18752                                                                                          100.00
18753                                                                                              75
18754                                                                                          500.00
18755                                                                                          150.00
18756                                                                                           75.00
18757                                                                                          500.00
18758                                                                                           40.00
18759                                                                                          100.00
18760                                                                                           16.00
18761                                                                                          150.00
18762                                                                                          300.00
18763                                                                                          112.50
18764                                                                                           16.00
18765                                                                                          200.00
18766                                                                                          300.00
18767                                                                                            2.00
18768                                                                                          810.00
18769                                                                                           13.50
18770                                                                                          250.00
18771                                                                                         1000.00
18772                                                                                          500.00
18773                                                                                            1.00
18774                                                                                       13.5, 810
18775                                                             13.5 milbemycin oxime, 810 spinosad
18776                                                                                          150.00
18777                                                                                            5.00
18778                                                                                            1.00
18779                                                                                           20.00
18780                                                                                           50.00
18781                                                                                           10.00
18782                                                                                           20.00
18783                                                                                           30.00
18784                                                                                           75.00
18785                                                                                           20.00
18786                                                                                           25.00
18787                                                                                           20.00
18788                                                                                            1.00
18789                                                                                           25.00
18790                                                                                           10.00
18791                                                                                           30.00
18792                                                                                           50.00
18793                                                                                           75.00
18794                                                                                           20.00
18795                                                                                     as directed
18796                                                                                     as directed
18797                                                                                     as directed
18798                                                                                     as directed
18799                                                                                        114, 136
18800                                                                    based on weight (51-100 lbs)
18801                                                                                          272.00
18802                                                                                            4.00
18803                                                                                            1.00
18804                                                                                          272.00
18805                                                                                          227.00
18806                                                                                           23.00
18807                                                                                          272.00
18808                                                                                          300.00
18809                                                                                          500.00
18810                                                                                           60.00
18811                                                                                            1.00
18812                                                                                           60.00
18813                                                                                           50.00
18814                                                                                          113.50
18815                                                                                          113.50
18816                                                                                           37.50
18817                                                                                           50.00
18818                                                                                          200.00
18819                                                                                           83.30
18820                                                                                    small amount
18821                                                                                               5
18822                                                                                           50.00
18823                                                                                           75.00
18824                                                                                          500.00
18825                                                                                          500.00
18826                                                                                            1.00
18827                                                                                           16.00
18828                                                                                            3.20
18829                                                                                     unspecified
18830                                                                                            0.40
18831                                                                                          100.00
18832                                                                                            0.40
18833                                                                                          200.00
18834                                                                                           16.00
18835                                                                                           75.00
18836                                                                                         1620.00
18837                                                                    based on weight (60-120 lbs)
18838                                                                                 based on weight
18839                                                                     based on weight (45-90 lbs)
18840                                                                                            3.60
18841                                                                                          500.00
18842                                                                                            1.00
18843                                                                                          200.00
18844                                                                     based on weight (45-90 lbs)
18845                                                                  based on weight (50.1-100 lbs)
18846                                                                                              66
18847                                                                                 based on weight
18848                                                                                           16.00
18849                                                                                           10.00
18850                                                                                 based on weight
18851                                                                                              16
18852                                                                                               1
18853                                                                                               1
18854                                                                                               1
18855                                                                                              75
18856                                                                                              66
18857                                                                                           16.00
18858                                                                                           75.00
18859                                                                                          750.00
18860                                                                                          500.00
18861                                                                                            5.00
18862                                                                                           16.00
18863                                                                                           75.00
18864                                                                                            1.00
18865                                                                                            1.00
18866                                                                                          500.00
18867                                                                                           16.00
18868                                                                                           80.00
18869                                                                                            1.00
18870                                                                                            2.00
18871                                                                                          170.00
18872                                                                                          300.00
18873                                                                                           75.00
18874                                                                                         1620.00
18875                                                                                            1.00
18876                                                                                            1.00
18877                                                                                            1.00
18878                                                                                            1.00
18879                                                                                            1.00
18880                                                                                            1.00
18881                                                                                            1.00
18882                                                                                     application
18883                                                                                          500.00
18884                                                                                            3.00
18885                                                                                          300.00
18886                                                                                          272.00
18887                                                                                          136.00
18888                                                                                            0.75
18889                                                                                            1.60
18890                                                                                            0.70
18891                                                                                            1.30
18892                                                                                          150.00
18893                                                                                            1.00
18894                                                                                          272.00
18895                                                                                          136.00
18896                                                                                            7.00
18897                                                                                            2.00
18898                                                                                            1.00
18899                                                                                            2.00
18900                                                                                          900.00
18901                                                                                         1500.00
18902                                                                                          272.00
18903                                                                                          136.00
18904                                                                                              44
18905                                                                                            0.02
18906                                                                                          500.00
18907                                                                                          300.00
18908                                                                    based on weight (51-100 lbs)
18909                                                                       based on weight (55+ lbs)
18910                                                                                          272.00
18911                                                                                          300.00
18912                                                                                           75.00
18913                                                                                            4.00
18914                                                                                          272.00
18915                                                                                          272.00
18916                                                                                          136.00
18917                                                                                          272.00
18918                                                                                          136.00
18919                                                                                          collar
18920                                                                                          272.00
18921                                                                       based on weight (18+ lbs)
18922                                                                                            2.00
18923                                                                                         1000.00
18924                                                                                     unspecified
18925                                                                                          125.00
18926                                                                                          750.00
18927                                                                                          100.00
18928                                                                                          125.00
18929                                                                                           15.00
18930                                                                                          272.00
18931                                                                                            66.5
18932                                                                                            77.5
18933                                                                                     unspecified
18934                                                                                            77.5
18935                                                                  based on weight (50.1-100 lbs)
18936                                                                                 based on weight
18937                                                                                 based on weight
18938                                                                                          500.00
18939                                                                                          272.00
18940                                                                                          272.00
18941                                                                                          200.00
18942                                                                                           60.00
18943                                                                                          600.00
18944                                                                                           60.00
18945                                                                                          204.00
18946                                                                                           15.00
18947                                                                                           60.00
18948                                                                                            2.00
18949                                                                                          750.00
18950                                                                                          240.00
18951                                                                                          272.00
18952                                                                                          227.00
18953                                                                                            8.80
18954                                                                                           44.00
18955                                                                                         1000.00
18956                                                                                           16.00
18957                                                                                          200.00
18958                                                                                            8.00
18959                                                                                          136.00
18960                                                                                          272.00
18961                                                                        2 tablets/pills/capsules
18962                                                                                          272.00
18963                                                                                          136.00
18964                                                                                     unspecified
18965                                                                                            8.00
18966                                                                                            7.50
18967                                                                                          272.00
18968                                                                                          136.00
18969                                                                                            7.50
18970                                                                                               1
18971                                                                                            1.00
18972                                                                                          272.00
18973                                                                                           68.00
18974                                                                                            7.50
18975                                                                                          272.00
18976                                                                                          136.00
18977                                                                                            7.50
18978                                                                                          200.00
18979                                                                                            7.50
18980                                                                                          272.00
18981                                                                                          200.00
18982                                                                                          272.00
18983                                                                                          500.00
18984                                                                                          200.00
18985                                                                                          170.00
18986                                                                                          500.00
18987                                                                                               1
18988                                                                                               1
18989                                                                                             0.5
18990                                                                                          272.00
18991                                                                    based on weight (51-100 lbs)
18992                                                                                          325.00
18993                                                                                        2 scoops
18994                                                                                          200.00
18995                                                                                            3.00
18996                                                                                          200.00
18997                                                                                     unspecified
18998                                                                                     unspecified
18999                                                                                            1.00
19000                                                                                           16.00
19001                                                                                          150.00
19002                                                                                          200.00
19003                                                                                     unspecified
19004                                                                                     unspecified
19005                                                                                     unspecified
19006                                                                                     unspecified
19007                                                                                            3.00
19008                                                                                     unspecified
19009                                                                                     unspecified
19010                                                                                            1.00
19011                                                                                            1.00
19012                                                                                            1.00
19013                                                                                            1.00
19014                                                                                          500.00
19015                                                                                     unspecified
19016                                                                                            1.00
19017                                                                                            1.00
19018                                                                                          200.00
19019                                                                                     unspecified
19020                                                                                           10.00
19021                                                                                     unspecified
19022                                                                    based on weight (60-120 lbs)
19023                                                                                    small amount
19024                                                                                            1.00
19025                                                                                               1
19026                                                                                           37.50
19027                                                                                          300.00
19028                                                                                           25.00
19029                                                                                          300.00
19030                                                                                           20.00
19031                                                                                          125.00
19032                                                                                            9.30
19033                                                                                           23.00
19034                                                                                          460.00
19035                                                                                          228.00
19036                                                                                          272.00
19037                                                                                           68.00
19038                                                                                          272.00
19039                                                                                          136.00
19040                                                              27 milbemycin oxime, 1620 spinosad
19041                                                           23 milbemycin oxime, 228 praziquantel
19042                                                                                          272.00
19043                                                                                            66.5
19044                                                                                          625.00
19045                                                                                            1.00
19046                                                                                          480.00
19047                                                                                            1.00
19048                                                                                          500.00
19049                                                                                            0.01
19050                                                                                          272.00
19051                                                                                            66.5
19052                                                                                          200.00
19053                                                                                           20.00
19054                                                                                          272.00
19055                                                                     based on weight (45-88 lbs)
19056                                                                                     unspecified
19057                                                                                    2 , 1%, 22.7
19058                                                                                            8.00
19059                                                                                            0.40
19060                                                                                            0.40
19061                                                                                 based on weight
19062                                                                    based on weight (50-100 lbs)
19063                                                                                          500.00
19064                                                                                          300.00
19065                                                                                           50.00
19066                                                                                           50.00
19067                                                                                           60.00
19068                                                                        based on weight (50 lbs)
19069                                                                                            0.20
19070                                                                       based on weight (50+ lbs)
19071                                                                                          227.00
19072                                                                     based on weight (45-88 lbs)
19073                                                                    based on weight (51-100 lbs)
19074                                                                                          500.00
19075                                                                                          136.00
19076                                                                                          100.00
19077                                                                                            66.5
19078                                                                    based on weight (51-100 lbs)
19079                                                                                            2.50
19080                                                                                            2.50
19081                                                                                            2.50
19082                                                                     based on weight (45-88 lbs)
19083                                                                                          272.00
19084                                                                                          100.00
19085                                                                                          272.00
19086                                                                                            5.30
19087                                                                                            0.55
19088                                                                                          272.00
19089                                                                                           16.08
19090                                                                                            6.00
19091                                                                                            0.50
19092                                                                                          100.00
19093                                                                                          750.00
19094                                                                                            0.43
19095                                                                                            5.00
19096                                                                                          190.00
19097                                                                                           19.00
19098                                                                                            0.45
19099                                                                                           95.00
19100                                                                                          100.00
19101                                                                                            8.00
19102                                                                                           71.55
19103                                                                                            0.10
19104                                                                                          600.00
19105                                                                                            1.00
19106                                                                                          500.00
19107                                                                                            3.00
19108                                                                                           15.00
19109                                                                                            4.00
19110                                                                                            0.15
19111                                                                                            4.00
19112                                                                                          375.00
19113                                                                                          136.00
19114                                                                                            0.16
19115                                                                                           10.00
19116                                                                                            1.00
19117                                                                                           20.00
19118                                                                                           20.00
19119                                                                                           15.00
19120                                                                                           10.00
19121                                                                                          900.00
19122                                                                       based on weight (55+ lbs)
19123                                                                                            1.30
19124                                                                                            3.20
19125                                                                                            2.30
19126                                                                                            1.60
19127                                                                                            1.60
19128                                                                                            0.30
19129                                                                                            0.10
19130                                                                     based on weight (44-88 lbs)
19131                                                                                           15.00
19132                                                                                           20.00
19133                                                                                          600.00
19134                                                                                            0.13
19135                                                                                           15.00
19136                                                                                           20.00
19137                                                                                            4.80
19138                                                                                           15.00
19139                                                                                           20.00
19140                                                                                            1.00
19141                                                                                            1.50
19142                                                                                            1.00
19143                                                                                           15.00
19144                                                                                           20.00
19145                                                                                            1.50
19146                                                                                            1.00
19147                                                                                           20.00
19148                                                                                           10.00
19149                                                                                           15.00
19150                                                                                           20.00
19151                                                                                            1.00
19152                                                                                     application
19153                                                                   based on weight (24.1-60 lbs)
19154                                                                  based on weight (50.1-100 lbs)
19155                                                                                            1.00
19156                                                                                            1.00
19157                                                                                            1.00
19158                                                                                            1.00
19159                                                                                     unspecified
19160                                                                                           10.00
19161                                                                                          113.50
19162                                                                                            6.00
19163                                                                                           10.00
19164                                                                                            1.00
19165                                                                    based on weight (51-100 lbs)
19166                                                                                            1.00
19167                                                                                            1.00
19168                                                                                           20.00
19169                                                                    based on weight (51-100 lbs)
19170                                                                     based on weight (45-88 lbs)
19171                                                                                           16.00
19172                                                                                           16.00
19173                                                                                          100.00
19174                                                                                          100.00
19175                                                                                          300.00
19176                                                                                           34.00
19177                                                                                            7.00
19178                                                                                            0.10
19179                                                                                            8.00
19180                                                                                          200.00
19181                                                                                            5.00
19182                                                                                            1.00
19183                                                                                          collar
19184                                                                                     unspecified
19185                                                                                          170.00
19186                                                                                         1000.00
19187                                                                                            8.00
19188                                                                                            8.00
19189                                                                                           75.00
19190                                                                                          100.00
19191                                                                                          750.00
19192                                                                                          300.00
19193                                                                                            1.00
19194                                                                                           62.50
19195                                                                                           30.00
19196                                                                                          200.00
19197                                                                                            3.00
19198                                                                                           30.00
19199                                                                                           75.00
19200                                                                                           60.00
19201                                                                                           30.00
19202                                                                                           50.00
19203                                                                                          124.00
19204                                                                                            5.00
19205                                                                                          375.00
19206                                                                                            5.00
19207                                                                                            6.00
19208                                                                                            4.00
19209                                                                                          150.00
19210                                                                                           50.00
19211                                                                                           50.00
19212                                                                                          125.00
19213                                                                                     unspecified
19214                                                                                     unspecified
19215                                                                    based on weight (51-100 lbs)
19216                                                                    based on weight (51-100 lbs)
19217                                                                                               1
19218                                                                                            2.00
19219                                                                                          150.00
19220                                                                                 based on weight
19221                                                                    based on weight (51-100 lbs)
19222                                                                     based on weight (44-88 lbs)
19223                                                                    based on weight (51-100 lbs)
19224                                                                                          collar
19225                                                                                          500.00
19226                                                                                            1.00
19227                                                                                          375.00
19228                                                                                            1.00
19229                                                                                           50.00
19230                                                                                          150.00
19231                                                                                            1.00
19232                                                                                           60.00
19233                                                                                           20.00
19234                                                                                            1.00
19235                                                                                          500.00
19236                                                                                         1000.00
19237                                                                                           10.00
19238                                                                                           50.00
19239                                                                                         1000.00
19240                                                                                           50.00
19241                                                                                             300
19242                                                                                              75
19243                                                                                          272.00
19244                                                                                          227.00
19245                                                                                            1.00
19246                                                                                     as directed
19247                                                                                          500.00
19248                                                                                            0.20
19249                                                                                            1.00
19250                                                                                          250.00
19251                                                                                          125.00
19252                                                                         0.5 tablet/pill/capsule
19253                                                                         1.5 tablet/pill/capsule
19254                                                                         1-2 tablet/pill/capsule
19255                                                                                             272
19256                                                                                             227
19257                                                                                              23
19258                                                                                             228
19259                                                                                              23
19260                                                                                            3.25
19261                                                                                          480.00
19262                                                                                          250.00
19263                                                                                           60.00
19264                                                                                            1.00
19265                                                                                            3.25
19266                                                                                          270.00
19267                                                                                          150.00
19268                                                                                            3.25
19269                                                                                          125.00
19270                                                                                            6.00
19271                                                                    based on weight (51-100 lbs)
19272                                                                   based on weight (44.1-88 lbs)
19273                                                                    based on weight (50-100 lbs)
19274                                                                                         1000.00
19275                                                                                          200.00
19276                                                                                               1
19277                                                                                          200.00
19278                                                                    based on weight (51-100 lbs)
19279                                                                                         1000.00
19280                                                                                           10.00
19281                                                                     based on weight (44-88 lbs)
19282                                                                     based on weight (44-88 lbs)
19283                                                                                          500.00
19284                                                                                          500.00
19285                                                                                           16.00
19286                                                                                           16.00
19287                                                                                           10.00
19288                                                                                     unspecified
19289                                                                                           50.00
19290                                                                                           10.00
19291                                                                                          500.00
19292                                                                                          525.00
19293                                                                                          136.00
19294                                                                                           50.00
19295                                                                                          136.00
19296                                                                                           16.00
19297                                                                                           50.00
19298                                                                                     unspecified
19299                                                                                     unspecified
19300                                                                                           16.00
19301                                                                                           50.00
19302                                                                                          272.00
19303                                                                                            0.09
19304                                                                                           15.00
19305                                                                                          272.00
19306                                                                                            0.09
19307                                                                                         1000.00
19308                                                                                            5.00
19309                                                                                          100.00
19310                                                                                            1.70
19311                                                                                           75.00
19312                                                                                           23.00
19313                                                                                            2.68
19314                                                                                           23.00
19315                                                                                              66
19316                                                                                            5.00
19317                                                                                           23.00
19318                                                                     based on weight (44-88 lbs)
19319                                                                                            1.00
19320                                                                                           16.00
19321                                                                                            1.00
19322                                                                                          100.00
19323                                                                                            1.00
19324                                                                                          100.00
19325                                                                                     unspecified
19326                                                                        based on weight (50 lbs)
19327                                                                        based on weight (50 lbs)
19328                                                                                          125.00
19329                                                                                          480.00
19330                                                                                          250.00
19331                                                                                             500
19332                                                                                          500.00
19333                                                                                           23.00
19334                                                                                          200.00
19335                                                                                             200
19336                                                                                             100
19337                                                                                          375.00
19338                                                                                     unspecified
19339                                                                                          250.00
19340                                                                                           50.00
19341                                                                                            1.00
19342                                                                                          102.00
19343                                                                                          750.00
19344                                                                                            1.00
19345                                                                                            1.00
19346                                                                                            1.00
19347                                                                                            1.00
19348                                                                                          100.00
19349                                                                                          500.00
19350                                                                                 0.25 inch strip
19351                                                                                           50.00
19352                                                                                           50.00
19353                                                                                     unspecified
19354                                                                                     unspecified
19355                                                                                           50.00
19356                                                                    based on weight (50-100 lbs)
19357                                                                       based on weight (55+ lbs)
19358                                                                                           16.00
19359                                                                                          272.00
19360                                                                                           16.00
19361                                                                                           16.00
19362                                                                                           16.00
19363                                                                                          500.00
19364                                                                                           16.00
19365                                                                                          272.00
19366                                                                                          272.00
19367                                                                                          272.00
19368                                                                                          272.00
19369                                                                                           68.00
19370                                                                                          100.00
19371                                                                                          900.00
19372                                                                                           50.00
19373                                                                    based on weight (51-100 lbs)
19374                                                                                              66
19375                                                                                            1.00
19376                                                                                          272.00
19377                                                                                           80.00
19378                                                                                          100.00
19379                                                                                         2655.00
19380                                                                                          272.00
19381                                                                                           80.00
19382                                                                                          100.00
19383                                                                                          375.00
19384                                                                                            1.00
19385                                                                                          100.00
19386                                                                    based on weight (51-100 lbs)
19387                                                                    based on weight (51-100 lbs)
19388                                                                                          375.00
19389                                                                                           50.00
19390                                                                                     application
19391                                                                    based on weight (51-100 lbs)
19392                                                                                            8.00
19393                                                                                          375.00
19394                                                                                           50.00
19395                                                                                            4.00
19396                                                                                          750.00
19397                                                                                            0.25
19398                                                                                           10.00
19399                                                                                           23.00
19400                                                                                           25.00
19401                                                                                          272.00
19402                                                                                          136.00
19403                                                                                          102.00
19404                                                                                          375.00
19405                                                                                           23.00
19406                                                                                          500.00
19407                                                                                           23.00
19408                                                                                           23.00
19409                                                                                           23.00
19410                                                                                          480.00
19411                                                                                          200.00
19412                                                                                           60.00
19413                                                                                          200.00
19414                                                                                           60.00
19415                                                                                          272.00
19416                                                                                          272.00
19417                                                                                            0.30
19418                                                                                            0.60
19419                                                                                            8.00
19420                                                                                            3.70
19421                                                                                          300.00
19422                                                                                            4.02
19423                                                                    based on weight (51-100 lbs)
19424                                                                                              66
19425                                                                                            2.68
19426                                                                                            1.00
19427                                                                                 based on weight
19428                                                                                          150.00
19429                                                                                           20.00
19430                                                                                          250.00
19431                                                                                          272.00
19432                                                                                          272.00
19433                                                                                          272.00
19434                                                                                         1000.00
19435                                                                                          500.00
19436                                                                                           50.00
19437                                                                                            8.00
19438                                                                                           15.00
19439                                                                                            5.00
19440                                                                                           10.00
19441                                                                                          375.00
19442                                                                                           60.00
19443                                                                                           25.00
19444                                                                                           50.00
19445                                                                    based on weight (51-100 lbs)
19446                                                                     based on weight (45-88 lbs)
19447                                                                    based on weight (51-100 lbs)
19448                                                                     based on weight (44-88 lbs)
19449                                                                                 based on weight
19450                                                                     based on weight (61-80 lbs)
19451                                                                                             500
19452                                                                                     unspecified
19453                                                                                     unspecified
19454                                                                                     unspecified
19455                                                                                           20.00
19456                                                                                           50.00
19457                                                                    based on weight (51-100 lbs)
19458                                                                                           15.00
19459                                                                                          500.00
19460                                                                                          200.00
19461                                                                                              66
19462                                                                    based on weight (51-100 lbs)
19463                                                                     based on weight (44-88 lbs)
19464                                                                                     unspecified
19465                                                                                     unspecified
19466                                                                                           80.00
19467                                                                                          100.00
19468                                                                                           37.50
19469                                                                                          136.00
19470                                                                                            8.00
19471                                                                                          500.00
19472                                                                                           70.00
19473                                                                                           50.00
19474                                                                                          100.00
19475                                                                                           50.00
19476                                                                        based on weight (35 lbs)
19477                                                                                           50.00
19478                                                                                          200.00
19479                                                                                          500.00
19480                                                                                          250.00
19481                                                                                          500.00
19482                                                                    based on weight (51-100 lbs)
19483                                                                                            8.00
19484                                                                                            8.00
19485                                                                                          300.00
19486                                                                    based on weight (50-100 lbs)
19487                                                                    based on weight (60-120 lbs)
19488                                                                                           25.00
19489                                                                                           10.00
19490                                                                                            2.00
19491                                                                                              23
19492                                                                    based on weight (50-100 lbs)
19493                                                                    based on weight (60-121 lbs)
19494                                                                                            0.02
19495                                                                       based on weight (50+ lbs)
19496                                                                                           70.00
19497                                                                                          272.00
19498                                                                                          136.00
19499                                                                                           15.00
19500                                                                                            0.57
19501                                                                                            1.00
19502                                                                                           70.00
19503                                                                                          272.00
19504                                                                                          136.00
19505                                                                                           10.00
19506                                                                                           16.00
19507                                                                                            2.00
19508                                                                                          272.00
19509                                                                                          136.00
19510                                                                                           15.00
19511                                                                                            7.50
19512                                                                                           16.00
19513                                                                                           70.00
19514                                                                                           16.60
19515                                                                                            3.00
19516                                                                                            1.00
19517                                                                                            1.00
19518                                                                                           70.00
19519                                                                                           80.00
19520                                                                                           15.00
19521                                                                                            7.50
19522                                                                                            3.00
19523                                                                                           15.00
19524                                                                                            2.00
19525                                                                                           55.00
19526                                                                                           30.00
19527                                                                                          204.00
19528                                                                                          600.00
19529                                                                                           15.00
19530                                                                                            7.50
19531                                                                                           35.00
19532                                                                                          325.00
19533                                                                                           20.00
19534                                                                                            3.00
19535                                                                                           50.00
19536                                                                                           20.00
19537                                                                                 based on weight
19538                                                                                           10.00
19539                                                                                            5.00
19540                                                                                          500.00
19541                                                                                            1.00
19542                                                                                            1.00
19543                                                                                            1.00
19544                                                                                            1.00
19545                                                                                           16.00
19546                                                                                          500.00
19547                                                                                            7.00
19548                                                                                            1.00
19549                                                                                           10.00
19550                                                                                            1.00
19551                                                                                            1.00
19552                                                                                           10.00
19553                                                                                          200.00
19554                                                                                           10.00
19555                                                                                          500.00
19556                                                                                          250.00
19557                                                                                           10.00
19558                                                                                          250.00
19559                                                                                          500.00
19560                                                                                           20.00
19561                                                                                         1000.00
19562                                                                                            1.00
19563                                                                                          250.00
19564                                                                                           20.00
19565                                                                                            1.00
19566                                                                                          500.00
19567                                                                                             150
19568                                                                                               1
19569                                                                                            2.20
19570                                                                                           48.00
19571                                                                                          250.00
19572                                                                                          250.00
19573                                                                                           88.00
19574                                                                                          750.00
19575                                                                                          500.00
19576                                                                                          500.00
19577                                                                                           10.00
19578                                                                                          150.00
19579                                                                                           48.00
19580                                                                                          250.00
19581                                                                                           88.00
19582                                                                                            1.00
19583                                                                                          500.00
19584                                                                                           10.00
19585                                                                                          200.00
19586                                                                                           20.00
19587                                                                                          200.00
19588                                                                                           60.00
19589                                                                                           25.00
19590                                                                                           23.00
19591                                                                                            3.60
19592                                                                                            1.00
19593                                                                                          200.00
19594                                                                                          200.00
19595                                                                                           10.00
19596                                                                    based on weight (51-100 lbs)
19597                                                                                            75.5
19598                                                                                          200.00
19599                                                                                          200.00
19600                                                                                           10.00
19601                                                                                            1.00
19602                                                                                            3.00
19603                                                                     based on weight (40-60 lbs)
19604                                                                                              75
19605                                                                                           50.00
19606                                                                                           10.00
19607                                                                                           10.00
19608                                                                                           75.00
19609                                                                                           10.00
19610                                                                                          272.00
19611                                                                                          272.00
19612                                                                                            2.68
19613                                                                                          272.00
19614                                                                                           50.00
19615                                                                                            8.00
19616                                                                                          272.00
19617                                                                                     2.68of 9.8%
19618                                                                                            62.5
19619                                                                                          200.00
19620                                                                                           16.00
19621                                                                                          272.00
19622                                                                                            2.68
19623                                                                                           16.00
19624                                                                                          272.00
19625                                                                                           16.00
19626                                                                                          272.00
19627                                                                                            2.68
19628                                                                                           16.00
19629                                                                                          200.00
19630                                                                                           16.00
19631                                                                                          200.00
19632                                                                                           16.00
19633                                                                                           16.00
19634                                                                                           75.00
19635                                                                                            2.00
19636                                                                                           16.00
19637                                                                                           15.00
19638                                                                                          200.00
19639                                                                                           90.00
19640                                                                                           75.00
19641                                                                                     unspecified
19642                                                                                          500.00
19643                                                                                            1.20
19644                                                                                          250.00
19645                                                                                          250.00
19646                                                                                            1.00
19647                                                                                           23.00
19648                                                                                          460.00
19649                                                                                          136.00
19650                                                                                          500.00
19651                                                                                               1
19652                                                                                           23.00
19653                                                                                          136.00
19654                                                                                           70.00
19655                                                                                           60.00
19656                                                                                           30.00
19657                                                                                          500.00
19658                                                                                          500.00
19659                                                                                            1.00
19660                                                                                           23.00
19661                                                                                          136.00
19662                                                                                  1 pack/package
19663                                                                                        125, 500
19664                                                                                          500.00
19665                                                                                           40.00
19666                                                                                          250.00
19667                                                                                           23.00
19668                                                                                           80.00
19669                                                                                              75
19670                                                                                           80.00
19671                                                                                           16.00
19672                                                                                          200.00
19673                                                                    based on weight (51-100 lbs)
19674                                                                     based on weight (44-88 lbs)
19675                                                                                          250.00
19676                                                                                          200.00
19677                                                                                            3.50
19678                                                                                           75.00
19679                                                                                          250.00
19680                                                                                          300.00
19681                                                                                           75.00
19682                                                                                           80.00
19683                                                                                          460.00
19684                                                                                              23
19685                                                                    based on weight (51-100 lbs)
19686                                                              460 lufenuron, 25 milbemycin oxime
19687                                                                                           37.50
19688                                                                    based on weight (51-100 lbs)
19689                                                              460 lufenuron, 23 milbemycin oxime
19690                                                                                              15
19691                                                                                           23.00
19692                                                                                           50.00
19693                                                                                           23.00
19694                                                                                          460.00
19695                                                                                           23.00
19696                                                                                           23.00
19697                                                                                           23.00
19698                                                                                           23.00
19699                                                                                           16.00
19700                                                                                           23.00
19701                                                                                           16.00
19702                                                                                           23.00
19703                                                                                           16.00
19704                                                                                          272.00
19705                                                                                          227.00
19706                                                                                            4.00
19707                                                                                          136.00
19708                                                                                             272
19709                                                                                          227.00
19710                                                                    based on weight (51-100 lbs)
19711                                                                    based on weight (50-100 lbs)
19712                                                                                 based on weight
19713                                                                    based on weight (50-100 lbs)
19714                                                                                 based on weight
19715                                                                    based on weight (51-100 lbs)
19716                                                                                 based on weight
19717                                                                    based on weight (51-100 lbs)
19718                                                                                 based on weight
19719                                                                                            1.00
19720                                                                                          150.00
19721                                                                                           50.00
19722                                                                                     unspecified
19723                                                                                          136.00
19724                                                                                            1.00
19725                                                                                          250.00
19726                                                                                          500.00
19727                                                                                           50.00
19728                                                                                            2.00
19729                                                                                            1.00
19730                                                                                            5.00
19731                                                                                          136.00
19732                                                                                           50.00
19733                                                                                           50.00
19734                                                                                          500.00
19735                                                                                    small amount
19736                                                                                           16.00
19737                                                                                    small amount
19738                                                                                           16.00
19739                                                                                           16.00
19740                                                                                           11.50
19741                                                                    based on weight (51-100 lbs)
19742                                                                                          100.00
19743                                                                                           75.00
19744                                                                                          200.00
19745                                                                                           23.00
19746                                                                                            2.68
19747                                                                                           10.00
19748                                                                                           50.00
19749                                                                                         1000.00
19750                                                                                           23.00
19751                                                                                          200.00
19752                                                                                           16.00
19753                                                                                            1.00
19754                                                                                         23, 228
19755                                                                                         1000.00
19756                                                                                           10.00
19757                                                                                           75.00
19758                                                                                          200.00
19759                                                                                           10.00
19760                                                                                           60.00
19761                                                                                           10.00
19762                                                                                           20.00
19763                                                                                           20.00
19764                                                                                          200.00
19765                                                                                          200.00
19766                                                                                            3.00
19767                                                                                               1
19768                                                                     based on weight (40-80 lbs)
19769                                                                                          810.00
19770                                                                                          200.00
19771                                                                                       13.5, 810
19772                                                                                          125.00
19773                                                                                          200.00
19774                                                                                          810.00
19775                                                                                          250.00
19776                                                                     based on weight (40-60 lbs)
19777                                                                             tablet/pill/capsule
19778                                                                                    small amount
19779                                                                                            6.00
19780                                                                                            1.00
19781                                                                                            1.00
19782                                                                                            2.00
19783                                                                                          810.00
19784                                                                                           16.00
19785                                                                                          150.00
19786                                                                                            4.00
19787                                                                                          200.00
19788                                                                                     unspecified
19789                                                                                            2.80
19790                                                                                     unspecified
19791                                                                                           80.00
19792                                                                                     unspecified
19793                                                                                            1.00
19794                                                                                           23.00
19795                                                                                         1000.00
19796                                                                                           80.00
19797                                                                                          600.00
19798                                                                                           80.00
19799                                                                                          600.00
19800                                                                                              75
19801                                                                     based on weight (44-88 lbs)
19802                                                                                            1.00
19803                                                                    based on weight (51-100 lbs)
19804                                                                                            1.00
19805                                                                                            1.00
19806                                                                                            1.00
19807                                                                                            1.00
19808                                                                                           70.00
19809                                                                                            1.00
19810                                                                                            3.00
19811                                                                                          200.00
19812                                                                                            1.00
19813                                                                                            1.00
19814                                                                                          200.00
19815                                                                                           10.00
19816                                                                                            1.00
19817                                                                                            1.00
19818                                                                                            0.10
19819                                                                                           16.00
19820                                                                                           23.00
19821                                                                                            1.00
19822                                                                                           75.00
19823                                                                                    small amount
19824                                                                                          200.00
19825                                                                                            1.00
19826                                                                                           23.00
19827                                                                                           80.00
19828                                                                    based on weight (50-100 lbs)
19829                                                                     based on weight (56-95 lbs)
19830                                                                                           80.00
19831                                                                                          200.00
19832                                                                                          251.00
19833                                                                                            4.70
19834                                                                                           30.00
19835                                                                                          200.00
19836                                                                                          120.00
19837                                                                                           15.00
19838                                                                                     unspecified
19839                                                                                           60.00
19840                                                                                           16.00
19841                                                                                           15.00
19842                                                                                           60.00
19843                                                                                     unspecified
19844                                                                                     unspecified
19845                                                                                     unspecified
19846                                                                                            1.00
19847                                                                                            1.00
19848                                                                                          600.00
19849                                                                                           40.00
19850                                                                                           60.00
19851                                                                    based on weight (60-100 lbs)
19852                                                                                            6.00
19853                                                                                              75
19854                                                                                           110.5
19855                                                                                          500.00
19856                                                                  based on weight (50.1-100 lbs)
19857                                                                                           110.5
19858                                                                                            9.80
19859                                                                                            8.00
19860                                                                                               1
19861                                                                                            8.00
19862                                                                                            2.68
19863                                                                                           23.00
19864                                                                                          960.00
19865                                                                                          125.00
19866                                                                                               2
19867                                                                                           23.00
19868                                                                                            8.00
19869                                                                                          136.00
19870                                                                                           23.00
19871                                                                                          228.00
19872                                                                                            8.00
19873                                                                                           23.00
19874                                                                                          136.00
19875                                                                                            8.00
19876                                                                                     unspecified
19877                                                                                         1000.00
19878                                                                                          480.00
19879                                                                                            8.00
19880                                                                                          204.00
19881                                                                                     unspecified
19882                                                                                          100.00
19883                                                                                          300.00
19884                                                                                            1.00
19885                                                                                            8.00
19886                                                                                            8.00
19887                                                                                            1.00
19888                                                                    based on weight (50-100 lbs)
19889                                                                                          500.00
19890                                                                                          300.00
19891                                                                                            9.30
19892                                                                                           62.50
19893                                                                                            4.50
19894                                                                                           23.00
19895                                                                                          460.00
19896                                                                                          228.00
19897                                                                                          150.00
19898                                                                                          200.00
19899                                                                                           15.00
19900                                                                                            6.00
19901                                                                                          136.00
19902                                                                                          272.00
19903                                                                                          136.00
19904                                                                                          272.00
19905                                                                                          136.00
19906                                                                                           16.00
19907                                                              27 milbemycin oxime, 1620 spinosad
19908                                                                                          200.00
19909                                                           23 milbemycin oxime, 228 praziquantel
19910                                                                                          200.00
19911                                                                                 based on weight
19912                                                                                     unspecified
19913                                                                                            4.00
19914                                                                                     unspecified
19915                                                                                            0.40
19916                                                                                            0.50
19917                                                                                     application
19918                                                                                            0.40
19919                                                                                            0.50
19920                                                                                            0.50
19921                                                                                            0.50
19922                                                                                            0.50
19923                                                                                            2.00
19924                                                                                          300.00
19925                                                                                     unspecified
19926                                                                                     unspecified
19927                                                                                     unspecified
19928                                                                                     unspecified
19929                                                                                            0.50
19930                                                                                       13.5, 810
19931                                                                                          500.00
19932                                                                    based on weight (60-120 lbs)
19933                                                                    based on weight (60-120 lbs)
19934                                                                                          136.00
19935                                                                                          750.00
19936                                                                                              50
19937                                                                                           20.00
19938                                                                                            2.00
19939                                                                                          200.00
19940                                                                                            3.00
19941                                                                                          500.00
19942                                                                                           75.00
19943                                                                                              90
19944                                                                                     unspecified
19945                                                                                     unspecified
19946                                                                    based on weight (60-120 lbs)
19947                                                                                     unspecified
19948                                                                                     unspecified
19949                                                                                     unspecified
19950                                                                                     unspecified
19951                                                                                          200.00
19952                                                                                     unspecified
19953                                                                                           34.00
19954                                                                                          272.00
19955                                                                                          272.00
19956                                                                                          272.00
19957                                                                                          272.00
19958                                                                                          collar
19959                                                                                            1.00
19960                                                                                            1.00
19961                                                                                           75.00
19962                                                                                            1.00
19963                                                                                           75.00
19964                                                                                            1.00
19965                                                                                           75.00
19966                                                                                           50.00
19967                                                                                           50.00
19968                                                                                           50.00
19969                                                                                               2
19970                                                                                            2.00
19971                                                                                            1.00
19972                                                                                          272.00
19973                                                                                          200.00
19974                                                                                          113.50
19975                                                            272 ivermectin, 227 pyrantel pamoate
19976                                                                                           50.00
19977                                                                                            0.40
19978                                                                                          272.00
19979                                                                                          272.00
19980                                                                                            0.40
19981                                                                                           75.00
19982                                                                                           80.00
19983                                                                                            0.40
19984                                                                                     unspecified
19985                                                                                            0.40
19986                                                                                            0.40
19987                                                                                            0.30
19988                                                                                           75.00
19989                                                                                          250.00
19990                                                                                            5.00
19991                                                                                            1.00
19992                                                                                            1.00
19993                                                                                           75.00
19994                                                                                          200.00
19995                                                                                          272.00
19996                                                                                          272.00
19997                                                                                          136.00
19998                                                                                          272.00
19999                                                                                          500.00
          dose_unit
1                mg
2                mg
3                ml
4                mg
5                iu
6                mg
7                mg
8                mg
9                mg
10    other specify
11            drops
12    other specify
13               mg
14    other specify
15               mg
16               ml
17               mg
18            drops
19            drops
20            drops
21               mg
22      unspecified
23               mg
24               mg
25               mg
26               mg
27               mg
28            drops
29               mg
30               mg
31               mg
32               mg
33               mg
34            drops
35            drops
36               mg
37               mg
38               mg
39               ml
40            tube 
41      unspecified
42             tube
43               mg
44               mg
45               mg
46            spray
47              mcg
48             tube
49            drops
50               mg
51             drop
52               mg
53              mcg
54               mg
55               mg
56            units
57            units
58               mg
59             drop
60             drop
61               iu
62               ml
63             drop
64               mg
65            units
66            units
67             drop
68               mg
69               mg
70             pump
71               mg
72            drops
73    other specify
74             pump
75    other specify
76               mg
77               mg
78            drops
79               mg
80               mg
81               mg
82               mg
83    other specify
84             pump
85               mg
86               mg
87             pump
88               mg
89               mg
90               mg
91            drops
92               mg
93               mg
94               mg
95               iu
96               mg
97               mg
98            units
99               mg
100              mg
101              mg
102              mg
103              mg
104              mg
105              mg
106              mg
107              mg
108              mg
109   other specify
110              mg
111           drops
112           drops
113           drops
114           drops
115              ml
116              ml
117              mg
118   other specify
119   other specify
120   other specify
121   other specify
122   other specify
123              mg
124              gm
125              mg
126              mg
127              iu
128   other specify
129              gm
130   other specify
131              gm
132   other specify
133              mg
134              mg
135              mg
136              mg
137              mg
138              mg
139              mg
140              mg
141              mg
142              mg
143              mg
144              mg
145             mcg
146              mg
147              mg
148              mg
149            tube
150             tsp
151           spray
152           spray
153            drop
154              mg
155            tube
156   other specify
157              iu
158              mg
159              mg
160              mg
161   other specify
162   other specify
163              gm
164   other specify
165              gm
166              mg
167     unspecified
168              mg
169              mg
170           units
171              mg
172              mg
173              ml
174              mg
175   other specify
176   other specify
177              mg
178              mg
179              gm
180              ml
181              ml
182              ml
183              ml
184              mg
185              ml
186              mg
187              mg
188             tsp
189              ml
190              ml
191              ml
192            tbsp
193              ml
194              ml
195   other specify
196              ml
197              ml
198              mg
199              mg
200           units
201           units
202              mg
203              mg
204              mg
205              mg
206              mg
207              mg
208              mg
209              mg
210              mg
211              mg
212              mg
213              mg
214              mg
215              mg
216              ml
217   other specify
218              ml
219              ml
220           spray
221              mg
222              mg
223              ml
224              mg
225              mg
226              mg
227             mcg
228              mg
229   other specify
230             mcg
231              mg
232              mg
233           spray
234              oz
235             mcg
236           spray
237              ml
238            tbsp
239              mg
240              ml
241              mg
242              ml
243            drop
244   other specify
245              mg
246              mg
247              mg
248           spray
249              mg
250              ml
251              mg
252              mg
253              mg
254              mg
255              mg
256              mg
257           units
258   other specify
259   other specify
260              mg
261              mg
262              mg
263              mg
264              mg
265              mg
266              mg
267              mg
268              mg
269              mg
270              mg
271              mg
272              mg
273   other specify
274   other specify
275             tsp
276           spray
277           drops
278           drops
279           spray
280          sprays
281   other specify
282   other specify
283   other specify
284   other specify
285           drops
286   other specify
287              mg
288             mcg
289              mg
290              mg
291              mg
292              gm
293              mg
294              mg
295           units
296              mg
297              mg
298              mg
299              mg
300              gm
301              mg
302              mg
303           drops
304              mg
305              mg
306              mg
307              mg
308              ml
309   other specify
310             mcg
311              mg
312   other specify
313              mg
314              mg
315             mcg
316              mg
317           units
318           units
319              gm
320              mg
321              mg
322              mg
323             mcg
324            pump
325              mg
326              mg
327           drops
328            tube
329           drops
330              mg
331              mg
332            tube
333            tube
334              mg
335              mg
336              mg
337              mg
338              mg
339              mg
340              mg
341             mcg
342              mg
343              ml
344              ml
345              mg
346              mg
347              mg
348              mg
349   other specify
350              mg
351              mg
352              mg
353              mg
354              mg
355              mg
356              mg
357              mg
358              mg
359              mg
360              mg
361              mg
362              mg
363              mg
364              mg
365              mg
366     unspecified
367              mg
368              mg
369              mg
370           drops
371           drops
372              mg
373           drops
374   other specify
375           spray
376            drop
377           drops
378   other specify
379   other specify
380   other specify
381   other specify
382           drops
383            drop
384            drop
385           spray
386              ml
387              mg
388              ml
389              mg
390              mg
391   other specify
392             mcg
393   other specify
394              mg
395   other specify
396   other specify
397   other specify
398              mg
399              gm
400              mg
401   other specify
402   other specify
403             mcg
404              mg
405              mg
406             mcg
407              mg
408              mg
409              mg
410              mg
411              mg
412           drops
413              mg
414              mg
415              mg
416              ml
417              mg
418             mcg
419              mg
420              mg
421              ml
422              ml
423              ml
424              mg
425              mg
426              mg
427              ml
428              mg
429             mcg
430              mg
431              mg
432              mg
433             mcg
434             mcg
435              mg
436              mg
437              mg
438              mg
439             mcg
440              mg
441              mg
442              mg
443              mg
444              mg
445              mg
446              mg
447           drops
448              mg
449     unspecified
450              mg
451              mg
452              mg
453           drops
454              mg
455              mg
456              mg
457              gm
458              mg
459              mg
460              mg
461   other specify
462   other specify
463             mcg
464             mcg
465              mg
466             mcg
467              mg
468              mg
469              mg
470              mg
471              ml
472              mg
473           units
474             mcg
475              mg
476              mg
477              ml
478             mcg
479              mg
480              ml
481              mg
482              mg
483              mg
484              ml
485              mg
486              mg
487             mcg
488              mg
489              mg
490              mg
491   other specify
492             mcg
493              mg
494             mcg
495             mcg
496             mcg
497              mg
498              ml
499              mg
500              mg
501              mg
502             mcg
503              mg
504   other specify
505   other specify
506              mg
507              mg
508              mg
509              gm
510              mg
511              mg
512              mg
513             mcg
514              mg
515              mg
516              gm
517              mg
518              mg
519              ml
520              mg
521              mg
522              mg
523             mcg
524              mg
525              mg
526             mcg
527              mg
528              mg
529              mg
530   other specify
531              mg
532             mcg
533              mg
534             mcg
535              mg
536              mg
537           drops
538   other specify
539   other specify
540   other specify
541   other specify
542   other specify
543              mg
544              mg
545              gm
546              mg
547              mg
548   other specify
549              mg
550              ml
551   other specify
552              mg
553              mg
554   other specify
555   other specify
556              mg
557   other specify
558              ml
559   other specify
560              mg
561              mg
562              mg
563              mg
564              mg
565              mg
566              mg
567              mg
568   other specify
569              mg
570              mg
571              mg
572              mg
573              mg
574   other specify
575              ml
576             tbs
577              mg
578              mg
579              mg
580              mg
581              mg
582              ml
583              mg
584              mg
585              mg
586              mg
587              mg
588              mg
589              mg
590              mg
591              mg
592              mg
593              mg
594           drops
595              mg
596              mg
597           drops
598            drop
599   other specify
600   other specify
601              mg
602              mg
603              ml
604           spray
605           units
606           units
607              mg
608   other specify
609   other specify
610           drops
611              mg
612              mg
613              mg
614              mg
615              mg
616              mg
617              mg
618              mg
619           spray
620              mg
621              mg
622              mg
623              mg
624              mg
625              mg
626              mg
627              mg
628              mg
629              mg
630              mg
631              mg
632              ml
633              mg
634   other specify
635              mg
636             mcg
637              ml
638              mg
639              mg
640              mg
641             mcg
642              ml
643              mg
644             mcg
645              mg
646              mg
647              mg
648              mg
649              mg
650   other specify
651             mcg
652              mg
653              mg
654              mg
655              mg
656              mg
657              mg
658              ml
659             mcg
660              mg
661              ml
662              mg
663              mg
664   other specify
665              mg
666              mg
667           drops
668           drops
669              mg
670              mg
671             mcg
672           drops
673              mg
674             mcg
675              mg
676           drops
677              ml
678              mg
679              mg
680              mg
681              mg
682              ml
683              mg
684              mg
685              mg
686     unspecified
687              mg
688              mg
689              mg
690              mg
691              mg
692              mg
693              mg
694   other specify
695              ml
696              mg
697              mg
698              mg
699           units
700             mcg
701              mg
702              ml
703          sprays
704             ml 
705              mg
706              mg
707   other specify
708   other specify
709     unspecified
710     unspecified
711     unspecified
712     unspecified
713              mg
714              ml
715              mg
716              mg
717              mg
718              mg
719              ml
720              mg
721              mg
722              mg
723              mg
724              ml
725              mg
726              ml
727   other specify
728            drop
729            drop
730             mcg
731           mg/kg
732              mg
733           drops
734            drop
735              mg
736              mg
737           drops
738            drop
739           drops
740              mg
741           drops
742              mg
743              mg
744           drops
745   other specify
746              mg
747           drops
748              mg
749              mg
750              mg
751              mg
752              mg
753              mg
754           drops
755             tsp
756   other specify
757            drop
758              mg
759           drops
760           drops
761           drops
762              mg
763           drops
764             mcg
765              mg
766              mg
767           drops
768           drops
769   other specify
770              mg
771              mg
772              mg
773              mg
774              mg
775              mg
776              mg
777              mg
778     unspecified
779              mg
780              mg
781              mg
782              mg
783              mg
784              mg
785           spray
786              mg
787              mg
788              ml
789           drops
790           spray
791              mg
792              ml
793              mg
794              mg
795              mg
796              mg
797     unspecified
798     unspecified
799     unspecified
800     unspecified
801     unspecified
802     unspecified
803           spray
804              ml
805              mg
806              mg
807              ml
808             mcg
809              mg
810           drops
811              ml
812              mg
813              mg
814              mg
815              mg
816           drops
817              mg
818             mcg
819             mcg
820             mcg
821             mcg
822   other specify
823              ml
824          sprays
825             mcg
826              mg
827   other specify
828   other specify
829   other specify
830   other specify
831              mg
832     unspecified
833              mg
834              mg
835              mg
836              mg
837              ml
838              mg
839              ml
840              gm
841              mg
842              mg
843           drops
844              ml
845              mg
846   other specify
847   other specify
848           drops
849   other specify
850              ml
851             mcg
852             mcg
853              mg
854             mcg
855              mg
856             mcg
857              mg
858              mg
859              mg
860              mg
861              mg
862            tube
863              mg
864              mg
865             mcg
866              mg
867              mg
868              mg
869              mg
870              mg
871              mg
872              mg
873              mg
874              mg
875              mg
876              mg
877           drops
878              mg
879              mg
880              mg
881   other specify
882              mg
883              mg
884              mg
885              mg
886              mg
887              mg
888              mg
889              mg
890              mg
891              mg
892              mg
893              mg
894              mg
895              mg
896              mg
897              mg
898              mg
899              mg
900   other specify
901           drops
902             mcg
903              mg
904              ml
905              ml
906              mg
907             mcg
908              mg
909             mcg
910             mcg
911              mg
912             mcg
913           drops
914             mcg
915              mg
916              mg
917              mg
918              mg
919              mg
920              mg
921            drop
922           drops
923              ml
924              ml
925              ml
926              ml
927              ml
928              mg
929           drops
930           drops
931   other specify
932   other specify
933              mg
934              mg
935              mg
936           drops
937           drops
938              mg
939              mg
940              mg
941              mg
942              mg
943              mg
944              mg
945              mg
946              mg
947              mg
948              mg
949             tbs
950           units
951   other specify
952           units
953              oz
954           units
955            tube
956   other specify
957             tbs
958             mcg
959   other specify
960   other specify
961   other specify
962           units
963              ml
964              mg
965              mg
966              mg
967   other specify
968              ml
969           drops
970              ml
971              mg
972              mg
973              gm
974              mg
975              mg
976              mg
977           drops
978              mg
979   other specify
980   other specify
981              mg
982           spray
983           spray
984              mg
985              mg
986              mg
987              gm
988              mg
989           drops
990              mg
991   other specify
992   other specify
993   other specify
994              mg
995   other specify
996   other specify
997              mg
998              mg
999   other specify
1000             mg
1001    unspecified
1002             mg
1003             mg
1004             mg
1005             mg
1006             mg
1007             mg
1008             mg
1009             mg
1010             mg
1011             mg
1012             mg
1013             mg
1014  other specify
1015             mg
1016             mg
1017             ml
1018           tube
1019            ml 
1020             ml
1021             ml
1022             mg
1023  other specify
1024  other specify
1025  other specify
1026             mg
1027          spray
1028          drops
1029             ml
1030           drop
1031          drops
1032             mg
1033          drops
1034             mg
1035             mg
1036           drop
1037          drops
1038             mg
1039           drop
1040             mg
1041             mg
1042           drop
1043  other specify
1044  other specify
1045             mg
1046            mcg
1047             mg
1048             gm
1049             mg
1050           tube
1051  other specify
1052  other specify
1053             oz
1054             oz
1055             mg
1056             mg
1057             mg
1058             mg
1059             mg
1060  other specify
1061  other specify
1062             mg
1063             mg
1064  other specify
1065             mg
1066  other specify
1067          drops
1068             mg
1069  other specify
1070  other specify
1071             mg
1072          drops
1073          drops
1074             ml
1075             mg
1076             ml
1077  other specify
1078  other specify
1079  other specify
1080             ml
1081             mg
1082             mg
1083             mg
1084             ml
1085             mg
1086  other specify
1087             ml
1088             mg
1089             mg
1090             mg
1091          drops
1092             mg
1093             mg
1094             mg
1095             oz
1096             gm
1097             mg
1098             ml
1099          drops
1100          drops
1101          spray
1102             mg
1103             mg
1104             mg
1105             mg
1106             mg
1107             mg
1108          spray
1109             mg
1110             mg
1111             mg
1112             ml
1113             mg
1114             mg
1115             mg
1116            mcg
1117             mg
1118             mg
1119             mg
1120            mcg
1121             mg
1122             mg
1123             mg
1124             mg
1125             mg
1126             mg
1127             mg
1128             mg
1129          drops
1130             mg
1131          drops
1132             mg
1133             mg
1134             ml
1135            tbs
1136             mg
1137             mg
1138             mg
1139          units
1140             ml
1141             mg
1142             mg
1143             ml
1144             mg
1145            mcg
1146             oz
1147            mcg
1148             ml
1149             mg
1150          drops
1151          drops
1152          spray
1153           tube
1154           drop
1155          drops
1156             mg
1157             mg
1158             mg
1159             ml
1160          drops
1161          drops
1162             mg
1163             mg
1164             mg
1165  other specify
1166  other specify
1167             mg
1168          units
1169          units
1170             ml
1171            mcg
1172             mg
1173             ml
1174             mg
1175  other specify
1176            mcg
1177  other specify
1178            mcg
1179           tbsp
1180             mg
1181             mg
1182             mg
1183             mg
1184             mg
1185           tbsp
1186         sprays
1187             mg
1188             mg
1189          drops
1190           tube
1191             mg
1192             mg
1193             mg
1194          units
1195          spray
1196             mg
1197             mg
1198            mcg
1199             ml
1200             ml
1201             ml
1202             mg
1203             mg
1204             mg
1205            mcg
1206            mcg
1207             mg
1208             gm
1209  other specify
1210             mg
1211             mg
1212             mg
1213            mcg
1214            mcg
1215            mcg
1216            mcg
1217            mcg
1218             mg
1219             mg
1220             oz
1221            mcg
1222             ml
1223             mg
1224             mg
1225            mcg
1226          drops
1227            mcg
1228            mcg
1229            mcg
1230             mg
1231             mg
1232             mg
1233    unspecified
1234             mg
1235             mg
1236             mg
1237             mg
1238             mg
1239             mg
1240  other specify
1241  other specify
1242  other specify
1243             mg
1244             mg
1245             mg
1246             mg
1247             ml
1248  other specify
1249             mg
1250             mg
1251             mg
1252             mg
1253             mg
1254            mcg
1255             mg
1256             mg
1257            mcg
1258             mg
1259             mg
1260             mg
1261             mg
1262             mg
1263             ml
1264             mg
1265             mg
1266             mg
1267             mg
1268             mg
1269             mg
1270             mg
1271            mcg
1272             mg
1273             mg
1274             mg
1275             mg
1276             ml
1277             mg
1278             mg
1279             mg
1280             mg
1281             mg
1282             mg
1283             mg
1284             mg
1285             mg
1286          drops
1287             mg
1288             mg
1289          drops
1290             mg
1291             mg
1292             mg
1293             mg
1294             mg
1295             ml
1296             mg
1297             mg
1298             ml
1299             mg
1300             mg
1301             mg
1302  other specify
1303             mg
1304             mg
1305             mg
1306             mg
1307             mg
1308             ml
1309             ml
1310             mg
1311             mg
1312             mg
1313             mg
1314             mg
1315             mg
1316             mg
1317             mg
1318             mg
1319             mg
1320             mg
1321             mg
1322             mg
1323             ml
1324             mg
1325             mg
1326             mg
1327             mg
1328  other specify
1329  other specify
1330             mg
1331             mg
1332             mg
1333             mg
1334             mg
1335             mg
1336    unspecified
1337             mg
1338  other specify
1339  other specify
1340  other specify
1341             mg
1342  other specify
1343             mg
1344            tsp
1345          drops
1346             ml
1347             mg
1348            tsp
1349             mg
1350             mg
1351             ml
1352  other specify
1353             mg
1354             mg
1355           tube
1356             mg
1357             ml
1358             mg
1359  other specify
1360             mg
1361             mg
1362             mg
1363             mg
1364             ml
1365             ml
1366             mg
1367             mg
1368             mg
1369             mg
1370             mg
1371          drops
1372             mg
1373  other specify
1374             mg
1375             mg
1376             mg
1377             mg
1378             mg
1379             mg
1380             mg
1381             mg
1382             mg
1383             mg
1384            tsp
1385             mg
1386             mg
1387             mg
1388             mg
1389             mg
1390             mg
1391             ml
1392             mg
1393  other specify
1394             mg
1395             mg
1396             mg
1397             mg
1398          drops
1399             mg
1400             mg
1401             mg
1402             ml
1403             mg
1404          drops
1405          drops
1406             mg
1407             mg
1408             mg
1409             mg
1410             mg
1411             mg
1412             mg
1413             mg
1414             mg
1415             ml
1416             mg
1417          drops
1418             mg
1419          spray
1420             mg
1421             mg
1422          drops
1423             mg
1424             mg
1425             mg
1426             mg
1427             mg
1428             mg
1429             mg
1430             mg
1431  other specify
1432             mg
1433             mg
1434           drop
1435          spray
1436             mg
1437             mg
1438          drops
1439             mg
1440             ml
1441          drops
1442          drops
1443          drops
1444             mg
1445             ml
1446  other specify
1447  other specify
1448             ml
1449             mg
1450          drops
1451             gm
1452             mg
1453             ml
1454             mg
1455             mg
1456             mg
1457             mg
1458             mg
1459             gm
1460             gm
1461             mg
1462             ml
1463             mg
1464          spray
1465             mg
1466             mg
1467             mg
1468             mg
1469             mg
1470             mg
1471             mg
1472             ml
1473    unspecified
1474             ml
1475    unspecified
1476             mg
1477  other specify
1478             mg
1479             mg
1480             mg
1481             mg
1482             mg
1483             gm
1484             mg
1485             mg
1486             mg
1487             mg
1488  other specify
1489  other specify
1490  other specify
1491          units
1492            mcg
1493             mg
1494             mg
1495             mg
1496  other specify
1497             mg
1498             mg
1499             mg
1500             mg
1501          spray
1502            mcg
1503  other specify
1504            tsp
1505             iu
1506             gm
1507             gm
1508             iu
1509             iu
1510            mcg
1511          drops
1512             ml
1513            mcg
1514             ml
1515            mcg
1516             mg
1517            mcg
1518             mg
1519            mcg
1520             mg
1521  other specify
1522             mg
1523             mg
1524             mg
1525            tsp
1526             mg
1527             mg
1528             ml
1529             ml
1530            mcg
1531             mg
1532           tube
1533             mg
1534          units
1535          units
1536          drops
1537             mg
1538             mg
1539           tube
1540          drops
1541    unspecified
1542    unspecified
1543          drops
1544             mg
1545             mg
1546             mg
1547             mg
1548             mg
1549             gm
1550             ml
1551  other specify
1552             mg
1553             mg
1554             ml
1555             ml
1556          drops
1557             mg
1558             mg
1559             mg
1560             mg
1561             mg
1562             mg
1563             mg
1564             mg
1565             mg
1566             mg
1567             mg
1568             mg
1569  other specify
1570          drops
1571          mg/kg
1572             mg
1573             mg
1574             mg
1575             mg
1576             ml
1577             mg
1578             mg
1579             mg
1580             mg
1581             mg
1582             mg
1583            mcg
1584             mg
1585             ml
1586             oz
1587             ml
1588             mg
1589             mg
1590             ml
1591             mg
1592             mg
1593             mg
1594             mg
1595             mg
1596  other specify
1597  other specify
1598           tube
1599            mcg
1600             mg
1601             ml
1602             mg
1603             mg
1604             mg
1605             mg
1606             mg
1607             mg
1608             mg
1609             mg
1610             mg
1611          units
1612             mg
1613             mg
1614             mg
1615             mg
1616             mg
1617             mg
1618             mg
1619             mg
1620             mg
1621          drops
1622             mg
1623             mg
1624             mg
1625             mg
1626             mg
1627            mcg
1628             ml
1629             mg
1630            mcg
1631             ml
1632             ml
1633           tube
1634          drops
1635         sprays
1636          units
1637  other specify
1638  other specify
1639  other specify
1640  other specify
1641             mg
1642             mg
1643             mg
1644             mg
1645  other specify
1646             mg
1647             mg
1648             mg
1649             mg
1650    unspecified
1651             mg
1652             mg
1653  other specify
1654            mcg
1655            mcg
1656             ml
1657            mcg
1658             oz
1659            mcg
1660             mg
1661             mg
1662  other specify
1663          drops
1664             mg
1665             mg
1666             mg
1667             mg
1668          drops
1669            mcg
1670            mcg
1671  other specify
1672             ml
1673             mg
1674             gm
1675  other specify
1676            mcg
1677            mcg
1678             mg
1679  other specify
1680  other specify
1681  other specify
1682            mcg
1683          drops
1684           drop
1685           tube
1686             mg
1687             mg
1688            mcg
1689          drops
1690          spray
1691             mg
1692           drop
1693             mg
1694             mg
1695          drops
1696             mg
1697            tsp
1698             mg
1699             ml
1700             ml
1701          drops
1702          drops
1703             mg
1704             gm
1705             mg
1706          drops
1707             ml
1708             mg
1709          drops
1710             mg
1711             ml
1712            tsp
1713             ml
1714             mg
1715            tsp
1716             ml
1717            mcg
1718             mg
1719             mg
1720            tsp
1721             mg
1722             mg
1723             mg
1724             mg
1725            mcg
1726             ml
1727          units
1728          units
1729             ml
1730            mcg
1731          units
1732          units
1733            mcg
1734            mcg
1735            mcg
1736            mcg
1737             mg
1738             mg
1739             mg
1740             mg
1741             mg
1742            mcg
1743            mcg
1744            mcg
1745             mg
1746             ml
1747           tube
1748             ml
1749             ml
1750             mg
1751             mg
1752             mg
1753  other specify
1754             mg
1755             ml
1756             ml
1757             ml
1758          drops
1759             gm
1760          mg/ml
1761             mg
1762             mg
1763             mg
1764             mg
1765             mg
1766             gm
1767             mg
1768             mg
1769             mg
1770             mg
1771             mg
1772             mg
1773          spray
1774             mg
1775             mg
1776             mg
1777             mg
1778            mcg
1779             mg
1780            mcg
1781             mg
1782             mg
1783             mg
1784             mg
1785            mcg
1786             mg
1787             gm
1788             mg
1789          drops
1790             mg
1791    unspecified
1792             mg
1793             mg
1794    unspecified
1795    unspecified
1796           tube
1797             mg
1798             ml
1799  other specify
1800             mg
1801             mg
1802  other specify
1803  other specify
1804             gm
1805          drops
1806             mg
1807             mg
1808             mg
1809             mg
1810             mg
1811             mg
1812            tsp
1813            tbs
1814             mg
1815             mg
1816             mg
1817          drops
1818             mg
1819          drops
1820          drops
1821             mg
1822             mg
1823          drops
1824             mg
1825             mg
1826             ml
1827          drops
1828            mcg
1829             mg
1830  other specify
1831  other specify
1832             ml
1833             mg
1834            mcg
1835             mg
1836            mcg
1837             mg
1838            mcg
1839             mg
1840             mg
1841  other specify
1842  other specify
1843            mcg
1844            mcg
1845          drops
1846          drops
1847          drops
1848          drops
1849             ml
1850             ml
1851             ml
1852             mg
1853             mg
1854             mg
1855             mg
1856             mg
1857             mg
1858             mg
1859          drops
1860             mg
1861             mg
1862             mg
1863            mcg
1864  other specify
1865             mg
1866  other specify
1867          drops
1868             mg
1869             gm
1870             mg
1871          drops
1872          drops
1873  other specify
1874  other specify
1875          drops
1876            mcg
1877           drop
1878             mg
1879             mg
1880            mcg
1881             mg
1882          drops
1883          drops
1884          drops
1885  other specify
1886             ml
1887          drops
1888             ml
1889            mcg
1890  other specify
1891             gm
1892             gm
1893  other specify
1894  other specify
1895             mg
1896             mg
1897             gm
1898             mg
1899             mg
1900             mg
1901             mg
1902             mg
1903             mg
1904             mg
1905             mg
1906             mg
1907             mg
1908            mcg
1909  other specify
1910             mg
1911             mg
1912             mg
1913             mg
1914             mg
1915             gm
1916  other specify
1917          spray
1918  other specify
1919             mg
1920  other specify
1921  other specify
1922          drops
1923             mg
1924          drops
1925          drops
1926            tsp
1927             mg
1928           tube
1929           tube
1930  other specify
1931           pump
1932             mg
1933             mg
1934  other specify
1935             mg
1936            mcg
1937             mg
1938          drops
1939            ml 
1940             mg
1941           drop
1942            mcg
1943             mg
1944          drops
1945             gm
1946            mcg
1947  other specify
1948           drop
1949          drops
1950             mg
1951             mg
1952  other specify
1953             mg
1954  other specify
1955  other specify
1956  other specify
1957             mg
1958  other specify
1959             ml
1960  other specify
1961             mg
1962         sprays
1963  other specify
1964  other specify
1965             ml
1966             mg
1967             mg
1968             mg
1969             mg
1970            mcg
1971             ml
1972  other specify
1973  other specify
1974  other specify
1975             ml
1976            mcg
1977             mg
1978             mg
1979             mg
1980             ml
1981          drops
1982           drop
1983           tbsp
1984           tube
1985             ml
1986  other specify
1987  other specify
1988             mg
1989             ml
1990             mg
1991             mg
1992             mg
1993             mg
1994    unspecified
1995             mg
1996             mg
1997             mg
1998           pump
1999             mg
2000             mg
2001             mg
2002             mg
2003             mg
2004             mg
2005             mg
2006            mcg
2007             mg
2008             mg
2009             mg
2010             oz
2011             mg
2012    unspecified
2013    unspecified
2014             mg
2015          drops
2016             ml
2017            mcg
2018             mg
2019             mg
2020             mg
2021          drops
2022          spray
2023          units
2024          units
2025          drops
2026             ml
2027  other specify
2028             mg
2029            mcg
2030             mg
2031            mcg
2032             ml
2033          drops
2034           drop
2035  other specify
2036  other specify
2037             mg
2038  other specify
2039            mcg
2040             mg
2041           tube
2042             ml
2043             ml
2044          mg/kg
2045             mg
2046             ml
2047             ml
2048             ml
2049             ml
2050          drops
2051  other specify
2052             ml
2053             ml
2054             mg
2055             mg
2056             mg
2057          drops
2058             mg
2059            mcg
2060            mcg
2061             mg
2062            mcg
2063            mcg
2064          drops
2065            mcg
2066             ml
2067             mg
2068             mg
2069            mcg
2070             ml
2071             mg
2072             mg
2073            mcg
2074            mcg
2075           drop
2076            mcg
2077             mg
2078             mg
2079             mg
2080             mg
2081             mg
2082             mg
2083          spray
2084             ml
2085           tube
2086  other specify
2087             gm
2088          spray
2089          drops
2090             ml
2091          drops
2092             mg
2093           tube
2094             ml
2095             ml
2096  other specify
2097             mg
2098             mg
2099  other specify
2100             mg
2101             ml
2102             mg
2103             mg
2104             mg
2105             mg
2106             mg
2107           tube
2108             gm
2109           pump
2110           tube
2111             mg
2112             mg
2113           tube
2114             mg
2115          drops
2116             ml
2117             mg
2118  other specify
2119             mg
2120             ml
2121            mcg
2122  other specify
2123             gm
2124  other specify
2125             mg
2126             ml
2127           drop
2128          drops
2129             ml
2130             ml
2131             ml
2132             ml
2133             ml
2134             mg
2135             mg
2136             ml
2137  other specify
2138  other specify
2139             ml
2140             mg
2141  other specify
2142             ml
2143  other specify
2144            tbs
2145             mg
2146  other specify
2147  other specify
2148             ml
2149           drop
2150  other specify
2151             ml
2152  other specify
2153             ml
2154             ml
2155             ml
2156             ml
2157             ml
2158             ml
2159             mg
2160             mg
2161             ml
2162  other specify
2163  other specify
2164  other specify
2165           pump
2166          drops
2167  other specify
2168             mg
2169            mcg
2170             mg
2171             mg
2172             mg
2173            mcg
2174             mg
2175  other specify
2176             mg
2177             mg
2178             mg
2179             mg
2180             mg
2181             mg
2182             mg
2183             mg
2184             mg
2185             mg
2186             mg
2187             mg
2188             mg
2189             mg
2190             mg
2191             mg
2192             mg
2193             mg
2194             mg
2195           tube
2196            mcg
2197             mg
2198            mcg
2199           tube
2200         sprays
2201          spray
2202           tube
2203          drops
2204           tube
2205             ml
2206             ml
2207          drops
2208          drops
2209  other specify
2210             mg
2211          drops
2212             mg
2213             mg
2214          drops
2215             mg
2216  other specify
2217  other specify
2218             mg
2219           drop
2220             ml
2221             mg
2222  other specify
2223  other specify
2224             ml
2225             mg
2226             ml
2227             mg
2228            tbs
2229             gm
2230             mg
2231             mg
2232             gm
2233             mg
2234          units
2235          units
2236             mg
2237  other specify
2238  other specify
2239          units
2240  other specify
2241             gm
2242             ml
2243            tsp
2244           drop
2245             mg
2246             mg
2247             mg
2248             mg
2249             mg
2250           drop
2251          ug/kg
2252  other specify
2253             mg
2254             mg
2255          drops
2256             mg
2257             gm
2258    unspecified
2259    unspecified
2260    unspecified
2261    unspecified
2262    unspecified
2263    unspecified
2264    unspecified
2265    unspecified
2266    unspecified
2267             mg
2268             mg
2269    unspecified
2270    unspecified
2271             mg
2272             ml
2273             mg
2274             mg
2275             mg
2276             mg
2277            mcg
2278            mcg
2279          units
2280             ml
2281             mg
2282  other specify
2283          drops
2284             mg
2285             mg
2286             mg
2287            mcg
2288             mg
2289            tsp
2290             mg
2291             mg
2292             mg
2293             mg
2294            mcg
2295             mg
2296             mg
2297  other specify
2298             mg
2299             mg
2300             mg
2301            tsp
2302             ml
2303             mg
2304             mg
2305             mg
2306             mg
2307  other specify
2308            mcg
2309             mg
2310             mg
2311            mcg
2312             mg
2313             mg
2314             mg
2315             mg
2316             mg
2317             mg
2318             mg
2319             mg
2320             mg
2321             mg
2322             mg
2323             mg
2324             mg
2325             mg
2326             mg
2327             gm
2328             mg
2329  other specify
2330             mg
2331             mg
2332             mg
2333             mg
2334            mcg
2335            mcg
2336             mg
2337  other specify
2338             mg
2339          drops
2340            mcg
2341             mg
2342          drops
2343            mcg
2344             mg
2345            mcg
2346             mg
2347            mcg
2348             mg
2349             mg
2350             mg
2351  other specify
2352            mcg
2353             mg
2354             mg
2355             mg
2356            mcg
2357             mg
2358             mg
2359            mcg
2360             mg
2361             mg
2362             mg
2363             iu
2364             mg
2365             mg
2366             mg
2367             mg
2368             mg
2369             mg
2370             mg
2371          drops
2372             mg
2373             mg
2374          drops
2375             mg
2376             mg
2377          drops
2378             mg
2379             mg
2380  other specify
2381             mg
2382             mg
2383             mg
2384  other specify
2385             mg
2386  other specify
2387             mg
2388             mg
2389             mg
2390           tube
2391             mg
2392             mg
2393             gm
2394             mg
2395            mcg
2396             mg
2397             gm
2398          drops
2399            mcg
2400             mg
2401            tbs
2402            tbs
2403  other specify
2404             ml
2405          drops
2406            tsp
2407            mcg
2408  other specify
2409             mg
2410             mg
2411            mcg
2412             mg
2413             mg
2414             mg
2415             mg
2416            mcg
2417             mg
2418            mcg
2419            mcg
2420            mcg
2421             mg
2422             mg
2423             mg
2424             mg
2425             mg
2426             mg
2427             mg
2428             mg
2429             mg
2430             mg
2431             mg
2432             mg
2433             mg
2434             mg
2435             mg
2436             mg
2437          units
2438             mg
2439             mg
2440             mg
2441  other specify
2442             gm
2443          units
2444             ml
2445             mg
2446          units
2447             mg
2448          units
2449          units
2450             mg
2451          units
2452          units
2453             mg
2454          units
2455             mg
2456             mg
2457             mg
2458             mg
2459             mg
2460             ml
2461             ml
2462             oz
2463          drops
2464          units
2465  other specify
2466             mg
2467            tbs
2468             mg
2469             mg
2470             mg
2471             mg
2472  other specify
2473          drops
2474          drops
2475             mg
2476             ml
2477             mg
2478             mg
2479         sprays
2480             mg
2481             gm
2482           pump
2483  other specify
2484             mg
2485             mg
2486           pump
2487          drops
2488             mg
2489             mg
2490             ml
2491             ml
2492             ml
2493             mg
2494             mg
2495  other specify
2496             mg
2497             gm
2498             mg
2499             ml
2500             ml
2501             mg
2502             mg
2503             mg
2504          drops
2505             ml
2506            tsp
2507             mg
2508             ml
2509             mg
2510            mcg
2511            mcg
2512            mcg
2513            mcg
2514            mcg
2515             mg
2516            mcg
2517             mg
2518          drops
2519            mcg
2520             mg
2521             mg
2522             mg
2523            tsp
2524            tsp
2525             mg
2526             ml
2527             mg
2528             mg
2529             ml
2530             mg
2531             mg
2532             mg
2533             mg
2534          drops
2535             mg
2536          units
2537            mcg
2538            mcg
2539          spray
2540          spray
2541            mcg
2542          spray
2543          drops
2544             mg
2545          spray
2546           tube
2547             ml
2548             ml
2549    unspecified
2550    unspecified
2551             mg
2552             mg
2553             mg
2554             mg
2555             mg
2556             mg
2557             mg
2558          drops
2559           pump
2560           pump
2561             mg
2562             mg
2563             mg
2564            mcg
2565             mg
2566             mg
2567             mg
2568             mg
2569             mg
2570             mg
2571             ml
2572  other specify
2573             ml
2574             mg
2575    unspecified
2576             mg
2577             mg
2578           tube
2579             mg
2580          drops
2581             mg
2582          drops
2583             ml
2584             ml
2585            mcg
2586  other specify
2587             mg
2588             mg
2589             mg
2590  other specify
2591  other specify
2592  other specify
2593          drops
2594            tsp
2595  other specify
2596  other specify
2597             mg
2598          drops
2599          drops
2600             ml
2601  other specify
2602             ml
2603  other specify
2604          drops
2605          drops
2606  other specify
2607             mg
2608             mg
2609             mg
2610  other specify
2611             ml
2612             ml
2613             mg
2614            mcg
2615             mg
2616             mg
2617             mg
2618             ml
2619             mg
2620            mcg
2621             mg
2622             mg
2623             mg
2624             mg
2625             mg
2626             mg
2627             mg
2628             mg
2629             mg
2630             mg
2631             mg
2632            mcg
2633             mg
2634             mg
2635             mg
2636             mg
2637  other specify
2638             mg
2639             mg
2640             mg
2641             mg
2642          drops
2643             mg
2644             mg
2645  other specify
2646             mg
2647            mcg
2648             mg
2649             mg
2650             mg
2651             gm
2652          drops
2653          drops
2654             mg
2655    unspecified
2656             mg
2657             mg
2658             mg
2659           drop
2660          spray
2661           drop
2662             mg
2663             mg
2664  other specify
2665             mg
2666             mg
2667             mg
2668             mg
2669             mg
2670            mcg
2671             mg
2672             mg
2673             mg
2674             mg
2675            mcg
2676             mg
2677             mg
2678             mg
2679             mg
2680            mcg
2681             mg
2682             mg
2683             mg
2684             mg
2685            mcg
2686             mg
2687             mg
2688             mg
2689             mg
2690            mcg
2691             mg
2692             mg
2693             mg
2694             mg
2695  other specify
2696             ml
2697             ml
2698             mg
2699           tube
2700             mg
2701             mg
2702            mcg
2703             mg
2704             mg
2705             mg
2706  other specify
2707             mg
2708             ml
2709             mg
2710             ml
2711             mg
2712             ml
2713          units
2714             mg
2715  other specify
2716             ml
2717  other specify
2718             mg
2719            mcg
2720             mg
2721          drops
2722             mg
2723             mg
2724             mg
2725            mcg
2726          spray
2727             mg
2728             mg
2729             mg
2730             mg
2731             mg
2732             mg
2733             mg
2734             mg
2735             mg
2736             mg
2737             mg
2738             mg
2739             mg
2740             mg
2741             mg
2742             ml
2743             ml
2744             mg
2745             ml
2746          spray
2747             mg
2748           tube
2749             gm
2750             mg
2751             mg
2752             mg
2753             gm
2754             mg
2755             mg
2756             gm
2757             mg
2758             mg
2759             mg
2760          drops
2761             mg
2762             mg
2763             mg
2764             mg
2765             mg
2766             mg
2767             mg
2768             mg
2769             mg
2770             mg
2771             ml
2772            mcg
2773             mg
2774            mcg
2775             mg
2776          drops
2777            mcg
2778             mg
2779          drops
2780             mg
2781            mcg
2782             mg
2783          drops
2784             mg
2785             mg
2786             ml
2787             mg
2788             mg
2789             mg
2790             mg
2791            mcg
2792             mg
2793             mg
2794             mg
2795             mg
2796          drops
2797  other specify
2798             ml
2799             oz
2800             ml
2801  other specify
2802             ml
2803             oz
2804             mg
2805             mg
2806             ml
2807  other specify
2808             mg
2809             ml
2810             mg
2811             mg
2812  other specify
2813             mg
2814             mg
2815             mg
2816             mg
2817  other specify
2818          drops
2819             ml
2820             ml
2821             mg
2822  other specify
2823             mg
2824             mg
2825          pumps
2826  other specify
2827          drops
2828             ml
2829             mg
2830          drops
2831  other specify
2832             ml
2833          units
2834             mg
2835             oz
2836             oz
2837             gm
2838             ml
2839             ml
2840             mg
2841             mg
2842             oz
2843             mg
2844             mg
2845             mg
2846             ml
2847             mg
2848             mg
2849             mg
2850             mg
2851  other specify
2852             mg
2853            mcg
2854             mg
2855             gm
2856             mg
2857            mcg
2858             mg
2859             mg
2860             mg
2861             mg
2862             mg
2863             mg
2864  other specify
2865            mcg
2866  other specify
2867             mg
2868            mcg
2869          units
2870             mg
2871             ml
2872             mg
2873             mg
2874             mg
2875             mg
2876  other specify
2877             mg
2878             ml
2879          drops
2880          drops
2881          drops
2882             ml
2883             ml
2884             mg
2885             mg
2886             mg
2887  other specify
2888             mg
2889             mg
2890             ml
2891             mg
2892             mg
2893             mg
2894             mg
2895             ml
2896             mg
2897           drop
2898             mg
2899  other specify
2900          drops
2901             mg
2902             mg
2903          spray
2904          drops
2905          drops
2906             mg
2907           tube
2908             oz
2909  other specify
2910  other specify
2911          drops
2912           tube
2913             gm
2914             mg
2915             mg
2916             ml
2917             ml
2918             ml
2919             mg
2920             mg
2921           tube
2922             gm
2923             ml
2924             mg
2925            tsp
2926  other specify
2927  other specify
2928             mg
2929             mg
2930             mg
2931             mg
2932  other specify
2933             mg
2934             mg
2935             mg
2936             mg
2937             mg
2938             mg
2939             mg
2940             mg
2941             mg
2942  other specify
2943            tsp
2944          drops
2945             mg
2946          drops
2947             ml
2948  other specify
2949  other specify
2950  other specify
2951          drops
2952             mg
2953             mg
2954             mg
2955             mg
2956             mg
2957  other specify
2958          drops
2959             ml
2960           tube
2961           tube
2962           tube
2963          spray
2964           pump
2965             mg
2966             mg
2967             mg
2968  other specify
2969  other specify
2970             mg
2971             mg
2972  other specify
2973  other specify
2974             ml
2975           tbsp
2976             ml
2977             mg
2978           tube
2979             mg
2980          drops
2981             mg
2982             mg
2983          drops
2984             mg
2985             mg
2986          drops
2987             mg
2988          drops
2989             mg
2990             mg
2991            tsp
2992             mg
2993    unspecified
2994             mg
2995             mg
2996            mcg
2997             mg
2998  other specify
2999             mg
3000             mg
3001          drops
3002             mg
3003           pump
3004            mcg
3005             oz
3006            mcg
3007          drops
3008             mg
3009             mg
3010             mg
3011             mg
3012            mcg
3013          units
3014             mg
3015             mg
3016             mg
3017             mg
3018            mcg
3019            mcg
3020            mcg
3021             mg
3022  other specify
3023             mg
3024             mg
3025             mg
3026             mg
3027            mcg
3028          drops
3029             mg
3030             mg
3031    unspecified
3032             mg
3033             mg
3034             mg
3035             mg
3036             mg
3037             mg
3038             mg
3039             oz
3040            mcg
3041  other specify
3042  other specify
3043          drops
3044            mcg
3045             mg
3046             mg
3047             mg
3048             mg
3049             ml
3050             gm
3051            mcg
3052            mcg
3053             mg
3054             mg
3055           drop
3056             mg
3057             mg
3058           tube
3059             mg
3060          drops
3061            mcg
3062             mg
3063            mcg
3064             mg
3065             mg
3066            mcg
3067             mg
3068             mg
3069             mg
3070             mg
3071             mg
3072             mg
3073          drops
3074             mg
3075            mcg
3076             mg
3077             mg
3078             mg
3079             mg
3080             mg
3081             mg
3082             mg
3083             mg
3084             mg
3085             mg
3086             mg
3087             mg
3088             mg
3089             ml
3090             mg
3091             mg
3092             mg
3093             mg
3094             mg
3095          spray
3096             mg
3097            mcg
3098             mg
3099             mg
3100             mg
3101             mg
3102             mg
3103            mcg
3104             mg
3105             mg
3106            mcg
3107             mg
3108             mg
3109            tsp
3110          drops
3111             mg
3112          drops
3113             mg
3114             mg
3115             mg
3116             mg
3117             mg
3118             mg
3119          drops
3120            tsp
3121            mcg
3122             mg
3123             mg
3124  other specify
3125             mg
3126             mg
3127             mg
3128             mg
3129             mg
3130             mg
3131          drops
3132             mg
3133  other specify
3134  other specify
3135  other specify
3136            mcg
3137             oz
3138             mg
3139             mg
3140           tube
3141             mg
3142             mg
3143             mg
3144             mg
3145  other specify
3146             mg
3147          drops
3148             mg
3149             ml
3150             ml
3151             ml
3152             mg
3153             mg
3154             mg
3155            tsp
3156  other specify
3157  other specify
3158  other specify
3159  other specify
3160             mg
3161             mg
3162  other specify
3163  other specify
3164  other specify
3165  other specify
3166  other specify
3167             ml
3168             mg
3169             mg
3170             mg
3171             ml
3172             ml
3173            mcg
3174             mg
3175            mcg
3176             mg
3177             mg
3178             gm
3179             mg
3180             mg
3181             mg
3182            mcg
3183  other specify
3184             mg
3185             mg
3186            mcg
3187             mg
3188             mg
3189             mg
3190             mg
3191             mg
3192  other specify
3193             mg
3194             mg
3195            mcg
3196             mg
3197             mg
3198             gm
3199             mg
3200             mg
3201             gm
3202             mg
3203             gm
3204             mg
3205             mg
3206             mg
3207  other specify
3208             mg
3209             mg
3210            mcg
3211             mg
3212             ml
3213             gm
3214             mg
3215             mg
3216             gm
3217             mg
3218  other specify
3219  other specify
3220             mg
3221             mg
3222             mg
3223             mg
3224             mg
3225             mg
3226          drops
3227             mg
3228             mg
3229             mg
3230            mcg
3231             mg
3232             mg
3233          drops
3234          drops
3235            mcg
3236             mg
3237          drops
3238          drops
3239             mg
3240             mg
3241            mcg
3242             mg
3243          drops
3244          drops
3245             mg
3246          spray
3247           tube
3248             mg
3249          drops
3250          drops
3251           tube
3252             mg
3253          spray
3254  other specify
3255  other specify
3256          drops
3257            mcg
3258             mg
3259             mg
3260             mg
3261             mg
3262             mg
3263  other specify
3264  other specify
3265  other specify
3266             mg
3267             mg
3268             gm
3269  other specify
3270             mg
3271         sprays
3272  other specify
3273  other specify
3274             mg
3275             mg
3276             ml
3277             mg
3278           pump
3279             mg
3280           drop
3281  other specify
3282             mg
3283             mg
3284           tube
3285             mg
3286             mg
3287             ml
3288             mg
3289             mg
3290             mg
3291           tube
3292             mg
3293           tube
3294          drops
3295             mg
3296  other specify
3297             mg
3298             mg
3299             gm
3300          pumps
3301             mg
3302             mg
3303             mg
3304             gm
3305             gm
3306            mcg
3307             mg
3308            mcg
3309             mg
3310            mcg
3311             mg
3312             gm
3313          spray
3314             mg
3315  other specify
3316             mg
3317             mg
3318             mg
3319             mg
3320             ml
3321             mg
3322             mg
3323             ml
3324             mg
3325             mg
3326             mg
3327             mg
3328             mg
3329             mg
3330          drops
3331          units
3332             mg
3333  other specify
3334             ml
3335          units
3336          units
3337             mg
3338          units
3339             ml
3340             mg
3341             mg
3342          drops
3343             mg
3344             mg
3345             mg
3346             mg
3347             mg
3348             mg
3349             mg
3350          units
3351            mcg
3352            mcg
3353             mg
3354             mg
3355            mcg
3356          units
3357             mg
3358            mcg
3359  other specify
3360             ml
3361             mg
3362            mcg
3363             ml
3364             mg
3365  other specify
3366          drops
3367             mg
3368             mg
3369             mg
3370             ml
3371          drops
3372          units
3373            mcg
3374            mcg
3375          units
3376          drops
3377             mg
3378            mcg
3379          units
3380          drops
3381             mg
3382             mg
3383            mcg
3384  other specify
3385            tbs
3386            tbs
3387          units
3388            mcg
3389             ml
3390             mg
3391             mg
3392             mg
3393  other specify
3394    unspecified
3395             mg
3396            mcg
3397             mg
3398             iu
3399             mg
3400             mg
3401             mg
3402             mg
3403             mg
3404           drop
3405          drops
3406             ml
3407  other specify
3408  other specify
3409  other specify
3410             mg
3411  other specify
3412             mg
3413             mg
3414             mg
3415             mg
3416  other specify
3417             mg
3418             mg
3419             mg
3420             mg
3421          drops
3422          drops
3423             ml
3424             mg
3425             ml
3426           tube
3427             mg
3428             mg
3429          units
3430             mg
3431             mg
3432             mg
3433             mg
3434            mcg
3435             mg
3436             mg
3437          drops
3438             mg
3439          drops
3440            mcg
3441             mg
3442            mcg
3443             mg
3444             mg
3445             mg
3446             mg
3447             mg
3448             mg
3449             mg
3450             mg
3451             mg
3452             mg
3453             mg
3454  other specify
3455             mg
3456             gm
3457             gm
3458             gm
3459             mg
3460             mg
3461             ml
3462             ml
3463             ml
3464             ml
3465             mg
3466            mcg
3467             mg
3468             ml
3469            mcg
3470             mg
3471             mg
3472            mcg
3473             mg
3474             mg
3475             mg
3476             mg
3477             mg
3478            tsp
3479             mg
3480            tsp
3481             mg
3482             gm
3483             mg
3484             mg
3485             mg
3486             mg
3487  other specify
3488             gm
3489             mg
3490           pump
3491           tube
3492           tube
3493             mg
3494             mg
3495          drops
3496          drops
3497          drops
3498          drops
3499             mg
3500             mg
3501             mg
3502             mg
3503             mg
3504             mg
3505             mg
3506             mg
3507             mg
3508             mg
3509          units
3510             mg
3511             mg
3512           pump
3513           pump
3514          spray
3515          units
3516          spray
3517    unspecified
3518             mg
3519          drops
3520             mg
3521             mg
3522             mg
3523             mg
3524             mg
3525            mcg
3526            mcg
3527            mcg
3528             mg
3529             mg
3530  other specify
3531          drops
3532             mg
3533             mg
3534             mg
3535          drops
3536             mg
3537             mg
3538             mg
3539             mg
3540             mg
3541             mg
3542             mg
3543             oz
3544             mg
3545             mg
3546             mg
3547            mcg
3548             mg
3549             mg
3550             mg
3551            mcg
3552             mg
3553             mg
3554             mg
3555            mcg
3556             mg
3557            mcg
3558             mg
3559             mg
3560          drops
3561          drops
3562             mg
3563          drops
3564             mg
3565             mg
3566          drops
3567             mg
3568             mg
3569             mg
3570             mg
3571             mg
3572             mg
3573             mg
3574             gm
3575             mg
3576             mg
3577             mg
3578             mg
3579             mg
3580             mg
3581          drops
3582             ml
3583             ml
3584             ml
3585             ml
3586             ml
3587  other specify
3588  other specify
3589             mg
3590             mg
3591  other specify
3592  other specify
3593  other specify
3594  other specify
3595             ml
3596             mg
3597             mg
3598             mg
3599             mg
3600          mg/ml
3601             mg
3602             mg
3603             mg
3604             mg
3605             mg
3606             gm
3607             gm
3608             mg
3609             mg
3610  other specify
3611             mg
3612             mg
3613             mg
3614             mg
3615             mg
3616  other specify
3617  other specify
3618             mg
3619             mg
3620             mg
3621             mg
3622          drops
3623             mg
3624             mg
3625             mg
3626             mg
3627            mcg
3628             mg
3629             mg
3630             mg
3631             gm
3632          drops
3633             mg
3634             mg
3635             mg
3636             ml
3637             mg
3638             mg
3639          drops
3640          drops
3641          drops
3642             mg
3643             mg
3644             mg
3645          drops
3646             ml
3647             ml
3648             ml
3649             mg
3650          units
3651             mg
3652             mg
3653             gm
3654             mg
3655             mg
3656             mg
3657          drops
3658             mg
3659             mg
3660             ml
3661            mcg
3662             ml
3663  other specify
3664            mcg
3665             mg
3666             gm
3667             gm
3668  other specify
3669  other specify
3670  other specify
3671             mg
3672             mg
3673             mg
3674             mg
3675          drops
3676             mg
3677             mg
3678  other specify
3679             mg
3680             mg
3681             ml
3682             ml
3683             ml
3684             ml
3685           tube
3686             mg
3687             mg
3688          drops
3689  other specify
3690  other specify
3691          drops
3692          spray
3693             gm
3694             mg
3695             mg
3696            mcg
3697             mg
3698           tube
3699            tsp
3700             mg
3701           pump
3702             mg
3703             mg
3704          spray
3705             gm
3706             mg
3707             mg
3708             mg
3709  other specify
3710    unspecified
3711             mg
3712             mg
3713             mg
3714             mg
3715             mg
3716             mg
3717  other specify
3718          drops
3719          drops
3720          units
3721            mcg
3722             mg
3723             ml
3724             mg
3725            mcg
3726          drops
3727            mcg
3728             ml
3729  other specify
3730             mg
3731             mg
3732            mcg
3733  other specify
3734             mg
3735          drops
3736             mg
3737             mg
3738          mg/kg
3739             mg
3740             mg
3741    unspecified
3742    unspecified
3743    unspecified
3744    unspecified
3745    unspecified
3746             mg
3747             mg
3748             mg
3749          drops
3750             mg
3751             ml
3752            mcg
3753             mg
3754  other specify
3755             mg
3756  other specify
3757             mg
3758  other specify
3759  other specify
3760             mg
3761          drops
3762             mg
3763          drops
3764             mg
3765             mg
3766             mg
3767             mg
3768             mg
3769             mg
3770             mg
3771             mg
3772             ml
3773          drops
3774          drops
3775             mg
3776             mg
3777             mg
3778  other specify
3779             mg
3780  other specify
3781          drops
3782          drops
3783          drops
3784             mg
3785             mg
3786             mg
3787             mg
3788             mg
3789    unspecified
3790             mg
3791          drops
3792             mg
3793          drops
3794             mg
3795  other specify
3796          drops
3797           tube
3798          spray
3799             mg
3800           pump
3801             mg
3802             mg
3803             mg
3804             mg
3805             mg
3806             mg
3807             mg
3808             mg
3809            mcg
3810            mcg
3811             mg
3812             mg
3813            mcg
3814            mcg
3815          units
3816             gm
3817             ml
3818             ml
3819             ml
3820             mg
3821             mg
3822          drops
3823             mg
3824             gm
3825             mg
3826             mg
3827             mg
3828             mg
3829          drops
3830             ml
3831             mg
3832             mg
3833             ml
3834             mg
3835            tbs
3836            tbs
3837             mg
3838          units
3839             mg
3840           drop
3841            mcg
3842             mg
3843             mg
3844             mg
3845             mg
3846             mg
3847             mg
3848          drops
3849            mcg
3850  other specify
3851             mg
3852             mg
3853             mg
3854             mg
3855             mg
3856             mg
3857          drops
3858             gm
3859             ml
3860          drops
3861             gm
3862             mg
3863             mg
3864             mg
3865             mg
3866             mg
3867          drops
3868            mcg
3869             mg
3870             mg
3871             mg
3872          units
3873             mg
3874           tube
3875            mcg
3876             mg
3877             mg
3878             mg
3879             mg
3880             mg
3881            mcg
3882             mg
3883            mcg
3884  other specify
3885  other specify
3886          spray
3887             mg
3888             ml
3889           tube
3890  other specify
3891            mcg
3892             ml
3893             mg
3894             mg
3895             mg
3896  other specify
3897           tbsp
3898    unspecified
3899             mg
3900            mcg
3901            mcg
3902  other specify
3903          pumps
3904  other specify
3905          drops
3906             gm
3907  other specify
3908            mcg
3909             ml
3910             mg
3911             gm
3912  other specify
3913             mg
3914            mcg
3915             mg
3916             mg
3917            mcg
3918             mg
3919             mg
3920             mg
3921             ml
3922             ml
3923             ml
3924             mg
3925             mg
3926            mcg
3927             mg
3928             mg
3929             mg
3930             mg
3931             mg
3932             mg
3933             mg
3934             ml
3935             mg
3936  other specify
3937  other specify
3938             gm
3939             mg
3940             mg
3941             mg
3942  other specify
3943           drop
3944          drops
3945          drops
3946           pump
3947             oz
3948             mg
3949  other specify
3950             mg
3951             mg
3952          spray
3953             mg
3954             mg
3955  other specify
3956  other specify
3957          drops
3958  other specify
3959             mg
3960  other specify
3961             mg
3962             mg
3963             mg
3964             mg
3965             mg
3966             mg
3967             mg
3968             mg
3969             mg
3970             mg
3971             ml
3972             ml
3973             mg
3974  other specify
3975             mg
3976             mg
3977             mg
3978  other specify
3979             ml
3980           tube
3981  other specify
3982             mg
3983             mg
3984           tube
3985  other specify
3986             mg
3987             mg
3988             mg
3989             gm
3990          drops
3991             mg
3992             mg
3993             mg
3994             mg
3995             ml
3996             mg
3997  other specify
3998             mg
3999             mg
4000    unspecified
4001  other specify
4002             ml
4003             mg
4004             mg
4005             ml
4006  other specify
4007             mg
4008             mg
4009             ml
4010  other specify
4011             mg
4012            mcg
4013             mg
4014             mg
4015             mg
4016  other specify
4017           tube
4018             mg
4019             mg
4020             mg
4021             mg
4022             mg
4023             mg
4024             mg
4025             mg
4026             mg
4027             mg
4028             mg
4029             mg
4030             mg
4031            tsp
4032             ml
4033            tbs
4034             mg
4035             mg
4036             mg
4037             mg
4038             mg
4039             mg
4040             mg
4041             mg
4042    unspecified
4043             mg
4044             ml
4045             ml
4046             ml
4047             mg
4048             mg
4049             mg
4050             mg
4051             mg
4052             mg
4053             mg
4054             mg
4055             mg
4056             mg
4057             mg
4058           drop
4059             mg
4060            mcg
4061            mcg
4062             mg
4063            mcg
4064             mg
4065             mg
4066             gm
4067           tube
4068             ml
4069             mg
4070             mg
4071          drops
4072          drops
4073           tube
4074             ml
4075             mg
4076             mg
4077             mg
4078             mg
4079             mg
4080             mg
4081             mg
4082             mg
4083             mg
4084             mg
4085             mg
4086             mg
4087          drops
4088             ml
4089          drops
4090             mg
4091             ml
4092          drops
4093             ml
4094            tsp
4095          drops
4096             mg
4097             mg
4098             mg
4099             mg
4100             mg
4101             mg
4102             mg
4103             mg
4104             mg
4105             mg
4106             mg
4107             mg
4108             mg
4109  other specify
4110             mg
4111          drops
4112           pump
4113          drops
4114          drops
4115             mg
4116             mg
4117          drops
4118          drops
4119          drops
4120          drops
4121             mg
4122  other specify
4123             mg
4124             mg
4125             mg
4126             mg
4127           tube
4128          drops
4129             mg
4130  other specify
4131           tube
4132    unspecified
4133    unspecified
4134          drops
4135             mg
4136             mg
4137             mg
4138             mg
4139             ml
4140             mg
4141             mg
4142             mg
4143             mg
4144             mg
4145          drops
4146             gm
4147  other specify
4148             mg
4149             mg
4150             mg
4151  other specify
4152             mg
4153             mg
4154  other specify
4155             ml
4156            mcg
4157             mg
4158             ml
4159             ml
4160             ml
4161            mcg
4162             ml
4163             mg
4164            mcg
4165             mg
4166             mg
4167            mcg
4168             gm
4169            mcg
4170             gm
4171             mg
4172             gm
4173             mg
4174            mcg
4175  other specify
4176  other specify
4177             mg
4178             mg
4179             mg
4180             mg
4181             mg
4182             mg
4183           tube
4184          units
4185             mg
4186             mg
4187             mg
4188             mg
4189           tube
4190          drops
4191           drop
4192             mg
4193          drops
4194             mg
4195             gm
4196             mg
4197  other specify
4198          spray
4199            tsp
4200             mg
4201             mg
4202             mg
4203             mg
4204             ml
4205             mg
4206  other specify
4207             mg
4208            mcg
4209             ml
4210             ml
4211             mg
4212             mg
4213             mg
4214             mg
4215             mg
4216          drops
4217             mg
4218          drops
4219             mg
4220             mg
4221             mg
4222             mg
4223             mg
4224             mg
4225             mg
4226             mg
4227             mg
4228             mg
4229             ml
4230             mg
4231             mg
4232             mg
4233             mg
4234             mg
4235             mg
4236             ml
4237  other specify
4238  other specify
4239             mg
4240             mg
4241             mg
4242             mg
4243  other specify
4244             ml
4245          drops
4246            mcg
4247            mcg
4248             mg
4249          drops
4250             mg
4251            mcg
4252             mg
4253             mg
4254            mcg
4255             mg
4256             mg
4257            mcg
4258             mg
4259             mg
4260             mg
4261            mcg
4262             mg
4263             mg
4264             mg
4265          drops
4266          drops
4267             mg
4268             mg
4269             mg
4270             gm
4271             mg
4272             mg
4273             mg
4274    unspecified
4275             mg
4276            tsp
4277             mg
4278             mg
4279             mg
4280             mg
4281             mg
4282             mg
4283            mcg
4284            mcg
4285            mcg
4286            mcg
4287  other specify
4288            tbs
4289             mg
4290             mg
4291             mg
4292            mcg
4293             mg
4294             mg
4295             mg
4296             mg
4297             mg
4298           drop
4299          drops
4300             mg
4301             mg
4302           tube
4303  other specify
4304            tsp
4305             ml
4306           tube
4307             ml
4308             mg
4309             mg
4310             mg
4311             mg
4312             mg
4313          drops
4314           drop
4315  other specify
4316             ml
4317             mg
4318             mg
4319             mg
4320             mg
4321             mg
4322             mg
4323             ml
4324             ml
4325             ml
4326             gm
4327             mg
4328  other specify
4329             mg
4330             mg
4331             mg
4332             mg
4333             mg
4334             ml
4335  other specify
4336           pump
4337  other specify
4338             ml
4339  other specify
4340  other specify
4341             mg
4342             mg
4343             gm
4344             mg
4345             mg
4346             mg
4347          drops
4348           tube
4349           tube
4350             ml
4351  other specify
4352  other specify
4353             ml
4354          drops
4355             mg
4356             mg
4357             ml
4358             mg
4359  other specify
4360          pumps
4361             mg
4362             mg
4363             mg
4364             mg
4365             mg
4366             mg
4367             mg
4368             mg
4369             mg
4370             mg
4371             mg
4372             mg
4373          drops
4374             mg
4375             mg
4376             mg
4377             mg
4378             mg
4379  other specify
4380             mg
4381            mcg
4382             mg
4383             mg
4384             mg
4385  other specify
4386          drops
4387            mcg
4388             mg
4389           tube
4390          drops
4391             mg
4392            mcg
4393            mcg
4394             mg
4395            mcg
4396             mg
4397             mg
4398             mg
4399            mcg
4400             mg
4401             mg
4402             mg
4403             mg
4404             mg
4405             mg
4406             mg
4407             mg
4408             mg
4409          tube 
4410          units
4411             mg
4412             mg
4413             mg
4414             mg
4415             mg
4416             ml
4417             ml
4418             ml
4419             ml
4420             mg
4421             mg
4422             mg
4423             mg
4424             mg
4425             mg
4426           tube
4427           tube
4428          spray
4429             mg
4430           tube
4431          drops
4432             mg
4433             mg
4434             mg
4435             mg
4436             mg
4437             gm
4438  other specify
4439             mg
4440             ml
4441             ml
4442            tbs
4443             mg
4444           drop
4445           drop
4446           drop
4447  other specify
4448  other specify
4449             mg
4450             ml
4451             mg
4452             mg
4453             mg
4454             ml
4455             mg
4456             ml
4457             mg
4458             mg
4459             mg
4460             mg
4461             mg
4462             mg
4463             mg
4464             mg
4465             mg
4466             mg
4467             mg
4468             mg
4469           drop
4470           drop
4471           pump
4472           pump
4473             mg
4474             mg
4475             mg
4476             mg
4477             mg
4478             mg
4479             mg
4480           pump
4481           pump
4482  other specify
4483             ml
4484             mg
4485  other specify
4486          drops
4487  other specify
4488             ml
4489             mg
4490             oz
4491             ml
4492             mg
4493             mg
4494             mg
4495             mg
4496             oz
4497          drops
4498  other specify
4499             mg
4500             mg
4501            tsp
4502          spray
4503             mg
4504          spray
4505           drop
4506             mg
4507             mg
4508             mg
4509           tube
4510             ml
4511            tsp
4512  other specify
4513             mg
4514  other specify
4515           tbsp
4516          spray
4517             gm
4518  other specify
4519             mg
4520             mg
4521            tsp
4522  other specify
4523          drops
4524          spray
4525            mcg
4526             mg
4527             mg
4528             iu
4529            tsp
4530            tsp
4531  other specify
4532             ml
4533            tsp
4534           drop
4535             mg
4536           drop
4537             mg
4538  other specify
4539            mcg
4540            mcg
4541             ml
4542             mg
4543             mg
4544          units
4545          spray
4546             mg
4547          drops
4548             mg
4549             mg
4550             mg
4551             mg
4552  other specify
4553             mg
4554             mg
4555             mg
4556            mcg
4557             mg
4558          spray
4559          drops
4560          spray
4561         sprays
4562           tube
4563             mg
4564           drop
4565          pumps
4566           pump
4567           tube
4568          drops
4569           tube
4570             mg
4571             mg
4572             mg
4573             mg
4574             mg
4575             mg
4576             mg
4577             mg
4578  other specify
4579             mg
4580             mg
4581             mg
4582             mg
4583            mcg
4584             mg
4585             mg
4586            mcg
4587          units
4588             mg
4589             mg
4590            mcg
4591             mg
4592             mg
4593            mcg
4594             mg
4595             mg
4596             mg
4597             ml
4598             mg
4599            mcg
4600          mg/lb
4601            mcg
4602            mcg
4603             mg
4604            mcg
4605             mg
4606             mg
4607             mg
4608             mg
4609             mg
4610             mg
4611             mg
4612             mg
4613             mg
4614             mg
4615             mg
4616             gm
4617          mg/ml
4618             mg
4619             mg
4620             gm
4621             mg
4622             mg
4623             mg
4624             mg
4625             mg
4626             mg
4627             ml
4628             ml
4629             mg
4630             mg
4631             ml
4632             mg
4633             mg
4634           drop
4635             mg
4636             mg
4637             mg
4638             ml
4639          drops
4640             gm
4641             mg
4642             mg
4643             ml
4644          drops
4645          drops
4646             ml
4647          drops
4648             mg
4649             ml
4650          drops
4651             ml
4652             ml
4653             mg
4654             ml
4655             mg
4656          drops
4657          drops
4658          drops
4659             mg
4660          units
4661             mg
4662             mg
4663          drops
4664          drops
4665             mg
4666             mg
4667             mg
4668             mg
4669             mg
4670          drops
4671          drops
4672             mg
4673             mg
4674             mg
4675             mg
4676             mg
4677          drops
4678          drops
4679          drops
4680          drops
4681             mg
4682             gm
4683          drops
4684          drops
4685             mg
4686             mg
4687             mg
4688             mg
4689            mcg
4690            mcg
4691            mcg
4692             mg
4693  other specify
4694  other specify
4695             ml
4696             mg
4697             mg
4698             mg
4699             mg
4700             mg
4701             mg
4702             mg
4703             mg
4704             mg
4705             mg
4706             mg
4707             mg
4708             mg
4709             mg
4710             mg
4711          drops
4712             mg
4713            mcg
4714            mcg
4715             mg
4716             mg
4717             mg
4718             mg
4719          drops
4720          drops
4721             mg
4722             mg
4723             mg
4724             mg
4725            mcg
4726          spray
4727             mg
4728             mg
4729             ml
4730             mg
4731             mg
4732             mg
4733             mg
4734             mg
4735             mg
4736             ml
4737             mg
4738          spray
4739             ml
4740             mg
4741             mg
4742             mg
4743          drops
4744          drops
4745             mg
4746             mg
4747             mg
4748          units
4749  other specify
4750             mg
4751            mcg
4752             mg
4753             mg
4754            tsp
4755             mg
4756  other specify
4757          drops
4758             ml
4759  other specify
4760            ml 
4761            tsp
4762             mg
4763            ml 
4764             oz
4765             mg
4766           drop
4767             mg
4768             mg
4769             mg
4770  other specify
4771             mg
4772  other specify
4773             mg
4774             mg
4775             mg
4776             mg
4777           drop
4778             mg
4779             mg
4780           drop
4781             mg
4782           drop
4783             mg
4784          units
4785             mg
4786  other specify
4787             mg
4788             mg
4789             mg
4790             mg
4791             mg
4792             mg
4793             mg
4794             mg
4795             mg
4796             mg
4797             mg
4798             mg
4799             mg
4800             mg
4801             mg
4802           drop
4803          drops
4804             mg
4805          drops
4806            tsp
4807             mg
4808             mg
4809             mg
4810             mg
4811             mg
4812             ml
4813    unspecified
4814             mg
4815             ml
4816             mg
4817  other specify
4818             mg
4819             mg
4820             mg
4821             ml
4822             mg
4823             mg
4824             ml
4825             mg
4826           drop
4827             mg
4828          spray
4829             mg
4830             mg
4831             mg
4832  other specify
4833             mg
4834             mg
4835             mg
4836             mg
4837             mg
4838  other specify
4839             mg
4840            tsp
4841             mg
4842  other specify
4843             ml
4844             mg
4845             ml
4846             ml
4847             mg
4848             mg
4849             mg
4850          spray
4851             ml
4852             mg
4853             ml
4854             mg
4855             mg
4856             mg
4857             mg
4858             mg
4859            mcg
4860             mg
4861            mcg
4862            mcg
4863             mg
4864             mg
4865             mg
4866             mg
4867             mg
4868             mg
4869  other specify
4870  other specify
4871             mg
4872             mg
4873             mg
4874          drops
4875             mg
4876             mg
4877             mg
4878             mg
4879             mg
4880             mg
4881          spray
4882  other specify
4883  other specify
4884             mg
4885             mg
4886             mg
4887             mg
4888             ml
4889             mg
4890             mg
4891             mg
4892             mg
4893          drops
4894          drops
4895             mg
4896             mg
4897             mg
4898             mg
4899             mg
4900             mg
4901            mcg
4902  other specify
4903            mcg
4904  other specify
4905             mg
4906            mcg
4907  other specify
4908            mcg
4909            mcg
4910          spray
4911            mcg
4912             mg
4913           pump
4914             mg
4915             mg
4916             mg
4917            mcg
4918             mg
4919            mcg
4920             mg
4921             mg
4922             mg
4923             mg
4924             mg
4925             mg
4926             mg
4927             mg
4928  other specify
4929             mg
4930             mg
4931             mg
4932             mg
4933             mg
4934             mg
4935          drops
4936            mcg
4937            mcg
4938            mcg
4939             mg
4940          drops
4941             mg
4942             mg
4943             mg
4944             mg
4945             mg
4946          drops
4947             mg
4948             mg
4949          drops
4950          drops
4951             mg
4952             ml
4953             mg
4954             mg
4955             mg
4956          spray
4957             gm
4958             mg
4959             mg
4960             ml
4961             mg
4962             mg
4963             ml
4964             mg
4965             mg
4966             mg
4967             mg
4968             mg
4969             mg
4970             iu
4971             mg
4972             ml
4973             mg
4974             mg
4975             mg
4976             mg
4977             mg
4978             mg
4979             mg
4980          spray
4981             mg
4982             mg
4983             ml
4984             mg
4985             mg
4986             mg
4987             oz
4988             mg
4989             mg
4990             mg
4991             mg
4992             mg
4993             mg
4994             mg
4995             mg
4996             ml
4997             mg
4998          drops
4999             mg
5000             mg
5001             mg
5002             mg
5003          drops
5004             mg
5005             mg
5006             mg
5007             mg
5008             mg
5009             mg
5010             ml
5011             mg
5012             mg
5013             mg
5014             mg
5015             mg
5016             mg
5017             mg
5018             mg
5019             mg
5020             mg
5021             ml
5022             ml
5023             ml
5024             ml
5025             ml
5026  other specify
5027             ml
5028  other specify
5029             ml
5030             mg
5031             mg
5032             ml
5033             mg
5034             mg
5035             mg
5036             mg
5037             mg
5038             mg
5039             mg
5040             mg
5041             mg
5042             mg
5043          units
5044             mg
5045             mg
5046          units
5047             mg
5048             mg
5049             mg
5050             mg
5051             mg
5052             mg
5053             mg
5054             mg
5055             mg
5056             mg
5057          drops
5058             mg
5059             mg
5060             mg
5061             mg
5062             mg
5063  other specify
5064  other specify
5065             mg
5066  other specify
5067  other specify
5068             gm
5069  other specify
5070             mg
5071             mg
5072             mg
5073             mg
5074             mg
5075             mg
5076             mg
5077             mg
5078          spray
5079             mg
5080             mg
5081             ml
5082             mg
5083          drops
5084  other specify
5085             mg
5086            mcg
5087          units
5088             mg
5089            mcg
5090             mg
5091            mcg
5092             mg
5093             mg
5094            mcg
5095            mcg
5096             mg
5097            mcg
5098             mg
5099            mcg
5100             mg
5101             gm
5102             mg
5103             mg
5104            mcg
5105            mcg
5106             mg
5107            mcg
5108             mg
5109  other specify
5110             mg
5111            mcg
5112             mg
5113             oz
5114             mg
5115            mcg
5116             ml
5117             mg
5118  other specify
5119  other specify
5120             mg
5121            mcg
5122          units
5123          units
5124             mg
5125             ml
5126             ml
5127             ml
5128             iu
5129             mg
5130  other specify
5131             mg
5132             mg
5133             mg
5134          units
5135             mg
5136             mg
5137             mg
5138             mg
5139             mg
5140             mg
5141  other specify
5142             mg
5143  other specify
5144             ml
5145             mg
5146             mg
5147             mg
5148             mg
5149             mg
5150  other specify
5151             mg
5152            mcg
5153             mg
5154             mg
5155             mg
5156            mcg
5157             mg
5158             mg
5159    unspecified
5160    unspecified
5161    unspecified
5162             mg
5163             mg
5164             mg
5165             mg
5166             mg
5167             mg
5168            tbs
5169            mcg
5170             mg
5171             ml
5172             mg
5173           tube
5174          drops
5175             mg
5176            mcg
5177             mg
5178            mcg
5179             mg
5180            mcg
5181             mg
5182             mg
5183             mg
5184             mg
5185             mg
5186             mg
5187             mg
5188  other specify
5189  other specify
5190  other specify
5191             mg
5192             mg
5193          drops
5194             mg
5195          drops
5196             mg
5197             mg
5198             mg
5199             mg
5200  other specify
5201             mg
5202          units
5203             ml
5204  other specify
5205             ml
5206  other specify
5207  other specify
5208             ml
5209             mg
5210           pump
5211           tube
5212             ml
5213             ml
5214          spray
5215             mg
5216             mg
5217             mg
5218             gm
5219             mg
5220          spray
5221          spray
5222          drops
5223          drops
5224             mg
5225             ml
5226             mg
5227             mg
5228  other specify
5229  other specify
5230             mg
5231  other specify
5232             mg
5233             mg
5234           tube
5235            ml 
5236             mg
5237             mg
5238             gm
5239             mg
5240             mg
5241             mg
5242             mg
5243             ml
5244             ml
5245             mg
5246             mg
5247          spray
5248          spray
5249             mg
5250  other specify
5251             mg
5252             mg
5253             ml
5254             mg
5255           drop
5256             ml
5257         sprays
5258           drop
5259            tsp
5260             mg
5261          drops
5262           drop
5263             mg
5264           drop
5265           tube
5266             mg
5267             mg
5268  other specify
5269             mg
5270          spray
5271          drops
5272             mg
5273  other specify
5274             mg
5275             mg
5276  other specify
5277             mg
5278             mg
5279             ml
5280             mg
5281             mg
5282             ml
5283             mg
5284             mg
5285  other specify
5286            mcg
5287             mg
5288            mcg
5289             ml
5290             mg
5291             mg
5292             mg
5293             mg
5294             mg
5295            mcg
5296             mg
5297             mg
5298             mg
5299            mcg
5300             mg
5301             mg
5302             mg
5303             mg
5304             mg
5305            mcg
5306             mg
5307             mg
5308             mg
5309            mcg
5310             mg
5311             mg
5312             mg
5313             mg
5314            mcg
5315             mg
5316             mg
5317             mg
5318             mg
5319             mg
5320             mg
5321             mg
5322             mg
5323             mg
5324             mg
5325             mg
5326             mg
5327             mg
5328             mg
5329             mg
5330             mg
5331            mcg
5332             ml
5333             ml
5334          drops
5335          drops
5336          drops
5337            mcg
5338             mg
5339          units
5340          spray
5341             ml
5342             mg
5343             mg
5344  other specify
5345             mg
5346            mcg
5347             mg
5348            mcg
5349             mg
5350             mg
5351            mcg
5352             mg
5353             mg
5354          drops
5355            mcg
5356             mg
5357          drops
5358            mcg
5359            mcg
5360            mcg
5361             mg
5362          drops
5363             mg
5364             mg
5365            mcg
5366             mg
5367             mg
5368             mg
5369          spray
5370             ml
5371            mcg
5372             mg
5373             gm
5374             mg
5375             gm
5376            mcg
5377            mcg
5378  other specify
5379           tube
5380  other specify
5381             mg
5382  other specify
5383             oz
5384             mg
5385    unspecified
5386    unspecified
5387    unspecified
5388    unspecified
5389            mcg
5390             mg
5391          drops
5392           tube
5393             mg
5394            mcg
5395            mcg
5396             mg
5397            mcg
5398             mg
5399             mg
5400             mg
5401  other specify
5402             mg
5403             ml
5404             mg
5405             mg
5406             mg
5407             mg
5408             mg
5409             mg
5410             mg
5411             mg
5412             mg
5413             mg
5414          drops
5415             ml
5416             mg
5417             mg
5418             mg
5419             mg
5420          drops
5421             mg
5422             mg
5423             mg
5424             ml
5425             gm
5426             mg
5427             mg
5428             ml
5429             mg
5430             mg
5431             mg
5432             mg
5433             mg
5434             mg
5435             ml
5436             ml
5437             mg
5438          drops
5439          drops
5440             mg
5441             mg
5442             mg
5443             mg
5444             mg
5445             mg
5446             mg
5447             ml
5448             ml
5449             mg
5450             mg
5451             mg
5452             mg
5453             mg
5454             mg
5455             mg
5456             mg
5457             mg
5458             mg
5459             mg
5460          drops
5461             mg
5462             ml
5463             mg
5464             mg
5465             mg
5466             ml
5467             mg
5468             ml
5469             ml
5470             mg
5471             mg
5472             mg
5473             mg
5474             mg
5475             mg
5476             gm
5477             mg
5478             mg
5479             mg
5480             mg
5481             mg
5482             mg
5483          drops
5484             mg
5485             mg
5486             mg
5487  other specify
5488             mg
5489             mg
5490             mg
5491          drops
5492          pumps
5493  other specify
5494          drops
5495          drops
5496             mg
5497           tube
5498          spray
5499             gm
5500          drops
5501          drops
5502             ml
5503             mg
5504            mcg
5505  other specify
5506             mg
5507           pump
5508            tsp
5509            tsp
5510  other specify
5511          drops
5512             mg
5513             ml
5514             mg
5515  other specify
5516  other specify
5517             mg
5518             mg
5519             mg
5520             mg
5521             mg
5522             mg
5523             mg
5524            tbs
5525             mg
5526             mg
5527            tsp
5528           tube
5529          drops
5530             mg
5531             mg
5532             mg
5533          drops
5534          drops
5535          drops
5536             mg
5537          drops
5538             mg
5539             mg
5540             mg
5541           tube
5542          drops
5543             mg
5544             mg
5545          drops
5546             ml
5547             mg
5548             mg
5549             mg
5550             gm
5551            mcg
5552            tbs
5553            tbs
5554             mg
5555             mg
5556  other specify
5557          drops
5558             mg
5559             mg
5560          units
5561             mg
5562  other specify
5563             mg
5564  other specify
5565             mg
5566  other specify
5567  other specify
5568           drop
5569             mg
5570             mg
5571          spray
5572  other specify
5573          drops
5574  other specify
5575  other specify
5576          drops
5577          drops
5578          drops
5579             mg
5580             mg
5581          drops
5582             mg
5583             ml
5584  other specify
5585             mg
5586             ml
5587             mg
5588             mg
5589             mg
5590             mg
5591            mcg
5592             mg
5593             mg
5594             mg
5595          drops
5596             mg
5597             mg
5598          drops
5599             mg
5600          drops
5601  other specify
5602             gm
5603             ml
5604             mg
5605             mg
5606             ml
5607             mg
5608             ml
5609             mg
5610             mg
5611  other specify
5612             mg
5613          units
5614             mg
5615             gm
5616             mg
5617             mg
5618             ml
5619             mg
5620          drops
5621             mg
5622             mg
5623             mg
5624             ml
5625             ml
5626             gm
5627          units
5628          units
5629             mg
5630             mg
5631         sprays
5632          spray
5633             mg
5634             mg
5635             mg
5636             mg
5637             mg
5638             mg
5639            mcg
5640             mg
5641             ml
5642             ml
5643             mg
5644             mg
5645             mg
5646             ml
5647             mg
5648             mg
5649          drops
5650             mg
5651             mg
5652             oz
5653             mg
5654             mg
5655             ml
5656             ml
5657             mg
5658             mg
5659             ml
5660             mg
5661             mg
5662             ml
5663             mg
5664             mg
5665             mg
5666             mg
5667             mg
5668            mcg
5669  other specify
5670  other specify
5671  other specify
5672  other specify
5673             mg
5674             mg
5675             mg
5676  other specify
5677  other specify
5678  other specify
5679  other specify
5680  other specify
5681             ml
5682             ml
5683             mg
5684             mg
5685             mg
5686             mg
5687             ml
5688  other specify
5689  other specify
5690             mg
5691             mg
5692            mcg
5693             ml
5694             ml
5695             mg
5696             mg
5697             ml
5698             mg
5699             mg
5700             mg
5701             mg
5702             mg
5703            mcg
5704             mg
5705             mg
5706             mg
5707             mg
5708             mg
5709             mg
5710             ml
5711             mg
5712             mg
5713             mg
5714             mg
5715             mg
5716             mg
5717             mg
5718             mg
5719             mg
5720             mg
5721             mg
5722             mg
5723             mg
5724             mg
5725             mg
5726             mg
5727             mg
5728             mg
5729          drops
5730             mg
5731          drops
5732             mg
5733             mg
5734             mg
5735             mg
5736             mg
5737             mg
5738             gm
5739            mcg
5740            mcg
5741             mg
5742            mcg
5743             mg
5744            mcg
5745            mcg
5746             ml
5747           tube
5748  other specify
5749             mg
5750            mcg
5751             mg
5752             mg
5753             mg
5754            mcg
5755             mg
5756            mcg
5757             mg
5758             mg
5759             mg
5760          drops
5761             mg
5762             mg
5763             ml
5764            mcg
5765             ml
5766             mg
5767             ml
5768           tube
5769            mcg
5770             mg
5771             mg
5772             mg
5773             mg
5774             mg
5775             mg
5776             mg
5777             ml
5778             mg
5779             mg
5780             mg
5781             mg
5782             mg
5783             mg
5784             mg
5785             mg
5786            mcg
5787             mg
5788             mg
5789             mg
5790             mg
5791             oz
5792             mg
5793  other specify
5794  other specify
5795             mg
5796             mg
5797             mg
5798             mg
5799             gm
5800             mg
5801             mg
5802             mg
5803             mg
5804             mg
5805             mg
5806             mg
5807             mg
5808             mg
5809  other specify
5810  other specify
5811             mg
5812             mg
5813  other specify
5814            tsp
5815             mg
5816             mg
5817             mg
5818          drops
5819            mcg
5820            mcg
5821            mcg
5822             ml
5823             mg
5824          drops
5825             mg
5826             mg
5827             mg
5828             mg
5829  other specify
5830  other specify
5831            mcg
5832             mg
5833            mcg
5834            mcg
5835            mcg
5836             mg
5837             mg
5838             mg
5839             mg
5840             mg
5841             mg
5842            mcg
5843             mg
5844             ml
5845             mg
5846             mg
5847             mg
5848             mg
5849             mg
5850  other specify
5851            mcg
5852  other specify
5853             mg
5854             mg
5855             mg
5856             mg
5857             mg
5858          drops
5859             mg
5860             mg
5861            mcg
5862  other specify
5863             mg
5864             mg
5865            mcg
5866             mg
5867  other specify
5868            mcg
5869            mcg
5870             mg
5871  other specify
5872  other specify
5873  other specify
5874             gm
5875             ml
5876             gm
5877           tube
5878             mg
5879             mg
5880             gm
5881             mg
5882             mg
5883             mg
5884           tube
5885             mg
5886             mg
5887          drops
5888             mg
5889             mg
5890  other specify
5891             mg
5892             mg
5893             mg
5894             mg
5895             mg
5896  other specify
5897             mg
5898             ml
5899             mg
5900             ml
5901             mg
5902             mg
5903             ml
5904             mg
5905             mg
5906             mg
5907             mg
5908             mg
5909             mg
5910             mg
5911             mg
5912             mg
5913         sprays
5914             mg
5915             mg
5916          drops
5917          drops
5918             mg
5919             mg
5920  other specify
5921             mg
5922             mg
5923             mg
5924             mg
5925  other specify
5926             mg
5927             mg
5928  other specify
5929             gm
5930          spray
5931  other specify
5932    unspecified
5933          drops
5934          drops
5935          drops
5936           tube
5937          drops
5938          drops
5939          drops
5940             mg
5941          spray
5942           drop
5943  other specify
5944             mg
5945           tube
5946             mg
5947             mg
5948             ml
5949             mg
5950             mg
5951             mg
5952             mg
5953             mg
5954          drops
5955             mg
5956          drops
5957             mg
5958             mg
5959          drops
5960             mg
5961             mg
5962            tbs
5963            tsp
5964            tsp
5965             mg
5966             mg
5967             mg
5968             mg
5969          units
5970             mg
5971             mg
5972             mg
5973             mg
5974             mg
5975             mg
5976          drops
5977             mg
5978             mg
5979             mg
5980             ml
5981             ml
5982             mg
5983             mg
5984             mg
5985  other specify
5986             mg
5987             mg
5988             mg
5989             mg
5990             mg
5991           tube
5992             ml
5993            mcg
5994          drops
5995          drops
5996  other specify
5997  other specify
5998  other specify
5999             mg
6000             mg
6001             gm
6002             ml
6003             mg
6004             ml
6005             gm
6006             oz
6007             mg
6008             ml
6009             mg
6010             mg
6011  other specify
6012  other specify
6013             mg
6014            mcg
6015            mcg
6016             mg
6017             mg
6018             mg
6019             mg
6020             mg
6021            mcg
6022             mg
6023             mg
6024            mcg
6025            mcg
6026            mcg
6027            mcg
6028             mg
6029             mg
6030             mg
6031             mg
6032             mg
6033             gm
6034            mcg
6035             mg
6036             mg
6037            mcg
6038          spray
6039             ml
6040            mcg
6041             ml
6042             ml
6043            mcg
6044             mg
6045             mg
6046  other specify
6047             mg
6048             ml
6049             oz
6050             ml
6051             mg
6052             mg
6053             ml
6054             mg
6055             ml
6056             mg
6057             mg
6058             ml
6059             ml
6060  other specify
6061  other specify
6062             mg
6063           tube
6064             mg
6065             mg
6066             mg
6067             mg
6068          units
6069           tube
6070             mg
6071           tube
6072             ml
6073  other specify
6074         sprays
6075             mg
6076          spray
6077             mg
6078             ml
6079             mg
6080  other specify
6081             mg
6082             mg
6083             mg
6084             mg
6085             ml
6086             mg
6087             mg
6088           drop
6089             mg
6090          drops
6091             mg
6092          mg/kg
6093          drops
6094             ml
6095          drops
6096             mg
6097             mg
6098             mg
6099             mg
6100             mg
6101             mg
6102             mg
6103  other specify
6104             mg
6105             mg
6106          drops
6107             mg
6108             mg
6109             mg
6110             mg
6111             mg
6112             mg
6113             mg
6114             mg
6115             mg
6116             gm
6117             mg
6118  other specify
6119             mg
6120             mg
6121             mg
6122             mg
6123             mg
6124             mg
6125             mg
6126             ml
6127             ml
6128             mg
6129          drops
6130          drops
6131             mg
6132             ml
6133             ml
6134          units
6135          units
6136          drops
6137           drop
6138             mg
6139          drops
6140             ml
6141  other specify
6142             mg
6143             mg
6144             mg
6145             mg
6146             mg
6147             mg
6148             mg
6149             mg
6150             mg
6151            mcg
6152             mg
6153             mg
6154             mg
6155             mg
6156             mg
6157             mg
6158  other specify
6159             mg
6160  other specify
6161             mg
6162            mcg
6163             mg
6164            tsp
6165             mg
6166             mg
6167             mg
6168             mg
6169            mcg
6170             mg
6171             ml
6172             mg
6173             ml
6174             ml
6175             mg
6176             ml
6177             mg
6178             ml
6179             ml
6180          drops
6181             mg
6182             mg
6183             mg
6184             mg
6185            mcg
6186             gm
6187             mg
6188          units
6189             mg
6190            mcg
6191             ml
6192             mg
6193             mg
6194             mg
6195             mg
6196          drops
6197            mcg
6198             mg
6199             mg
6200           tube
6201            mcg
6202           tube
6203             mg
6204  other specify
6205             mg
6206           pump
6207  other specify
6208            ml 
6209             mg
6210             mg
6211             mg
6212             ml
6213             ml
6214             ml
6215           drop
6216             mg
6217             mg
6218             gm
6219             mg
6220             mg
6221          drops
6222             mg
6223             mg
6224         sprays
6225          drops
6226             ml
6227             mg
6228             mg
6229  other specify
6230             ml
6231          drops
6232           drop
6233             mg
6234          units
6235             oz
6236  other specify
6237             mg
6238             ml
6239             ml
6240             mg
6241             mg
6242             ml
6243             mg
6244          drops
6245          drops
6246             ml
6247             ml
6248             mg
6249             mg
6250             mg
6251             mg
6252            tbs
6253             mg
6254           tube
6255             mg
6256  other specify
6257             ml
6258            ml 
6259             mg
6260             mg
6261             mg
6262           pump
6263          drops
6264             mg
6265             mg
6266          drops
6267          drops
6268          drops
6269  other specify
6270             mg
6271             mg
6272             mg
6273             mg
6274             mg
6275          spray
6276             mg
6277             mg
6278             mg
6279             mg
6280             mg
6281             mg
6282            mcg
6283          drops
6284             mg
6285             mg
6286             mg
6287             mg
6288             mg
6289             mg
6290             mg
6291             mg
6292             mg
6293           pump
6294             mg
6295             mg
6296            tsp
6297             ml
6298            mcg
6299             mg
6300             mg
6301            mcg
6302            mcg
6303             mg
6304            mcg
6305             mg
6306             mg
6307             mg
6308            mcg
6309            tsp
6310            mcg
6311             mg
6312    unspecified
6313             mg
6314            tsp
6315             ml
6316             mg
6317            tsp
6318             mg
6319    unspecified
6320    unspecified
6321             mg
6322             mg
6323            mcg
6324             mg
6325             mg
6326             ml
6327            mcg
6328             mg
6329          drops
6330          drops
6331           drop
6332  other specify
6333          drops
6334  other specify
6335             mg
6336             ml
6337  other specify
6338             mg
6339             mg
6340             mg
6341          spray
6342             oz
6343             mg
6344             mg
6345             ml
6346             mg
6347             mg
6348             mg
6349             mg
6350             mg
6351             ml
6352             mg
6353            mcg
6354  other specify
6355             mg
6356             mg
6357             mg
6358             gm
6359             mg
6360             mg
6361             mg
6362  other specify
6363             mg
6364             mg
6365            mcg
6366  other specify
6367  other specify
6368             mg
6369            mcg
6370             mg
6371             mg
6372             mg
6373             mg
6374             mg
6375             mg
6376             mg
6377             mg
6378             mg
6379            mcg
6380             mg
6381            mcg
6382             mg
6383            mcg
6384             mg
6385             mg
6386  other specify
6387          drops
6388          drops
6389             mg
6390    unspecified
6391            mcg
6392            mcg
6393             mg
6394          drops
6395          drops
6396             mg
6397             mg
6398             mg
6399          drops
6400             gm
6401            mcg
6402             mg
6403             gm
6404            mcg
6405           tube
6406             gm
6407            mcg
6408             mg
6409             mg
6410             mg
6411          units
6412          drops
6413            mcg
6414             mg
6415             mg
6416             mg
6417          drops
6418             mg
6419             mg
6420          drops
6421             mg
6422             mg
6423             mg
6424            mcg
6425             mg
6426             mg
6427             mg
6428             ml
6429             mg
6430             mg
6431             mg
6432             mg
6433             mg
6434             mg
6435             mg
6436             mg
6437            mcg
6438             mg
6439             mg
6440  other specify
6441             mg
6442             mg
6443          drops
6444           tube
6445             mg
6446             mg
6447             mg
6448            mcg
6449             mg
6450             mg
6451             gm
6452             mg
6453  other specify
6454            mcg
6455             mg
6456             mg
6457  other specify
6458             mg
6459             mg
6460             mg
6461          drops
6462             mg
6463             mg
6464             mg
6465             mg
6466             mg
6467             mg
6468             mg
6469             mg
6470             mg
6471             mg
6472             gm
6473            mcg
6474             gm
6475             ml
6476             mg
6477             mg
6478            mcg
6479            mcg
6480  other specify
6481             mg
6482            mcg
6483             mg
6484             mg
6485             mg
6486             mg
6487             mg
6488             mg
6489             mg
6490             mg
6491             mg
6492            mcg
6493             mg
6494             mg
6495           drop
6496            mcg
6497           drop
6498             mg
6499             ml
6500             ml
6501             mg
6502             mg
6503             mg
6504             mg
6505             mg
6506             mg
6507             mg
6508             mg
6509             mg
6510             mg
6511  other specify
6512             mg
6513             mg
6514  other specify
6515             mg
6516             mg
6517  other specify
6518             mg
6519             mg
6520             mg
6521          drops
6522           pump
6523           pump
6524             mg
6525             mg
6526             mg
6527           tube
6528           tube
6529             mg
6530             mg
6531             mg
6532             mg
6533             mg
6534             mg
6535             mg
6536             mg
6537             mg
6538             mg
6539             mg
6540             ml
6541             mg
6542             mg
6543          units
6544             mg
6545             mg
6546             ml
6547             mg
6548             mg
6549            tbs
6550             ml
6551             mg
6552             mg
6553             mg
6554             mg
6555         sprays
6556             mg
6557            tsp
6558             mg
6559             mg
6560             mg
6561             mg
6562          spray
6563             mg
6564             mg
6565           tube
6566            mcg
6567            mcg
6568            mcg
6569          drops
6570           tube
6571             ml
6572            mcg
6573             ml
6574             mg
6575             mg
6576             mg
6577             mg
6578             mg
6579          drops
6580            mcg
6581            mcg
6582            mcg
6583             mg
6584             mg
6585             mg
6586             mg
6587             mg
6588             mg
6589             mg
6590             mg
6591             mg
6592             mg
6593             mg
6594          drops
6595             mg
6596             mg
6597             mg
6598             mg
6599             mg
6600             mg
6601             mg
6602           drop
6603             mg
6604             mg
6605             mg
6606            mcg
6607             mg
6608             mg
6609             mg
6610             mg
6611            mcg
6612             ml
6613             mg
6614             mg
6615             mg
6616             mg
6617             mg
6618             mg
6619             mg
6620             mg
6621             mg
6622             mg
6623             mg
6624             mg
6625             ml
6626             mg
6627             mg
6628             mg
6629             mg
6630             mg
6631             mg
6632             mg
6633  other specify
6634             mg
6635            tbs
6636             ml
6637             mg
6638             mg
6639  other specify
6640             mg
6641             mg
6642             mg
6643             ml
6644             ml
6645            tbs
6646  other specify
6647             gm
6648             ml
6649          mg/kg
6650             ml
6651             mg
6652             mg
6653             mg
6654             mg
6655            mcg
6656             mg
6657            tsp
6658           drop
6659             mg
6660             mg
6661             mg
6662           drop
6663          drops
6664            mcg
6665             mg
6666             mg
6667             mg
6668            mcg
6669             mg
6670  other specify
6671             mg
6672             mg
6673             mg
6674  other specify
6675  other specify
6676  other specify
6677             mg
6678             mg
6679             mg
6680          drops
6681             mg
6682             mg
6683          spray
6684             mg
6685             mg
6686            tsp
6687           tube
6688           tube
6689             mg
6690             mg
6691             mg
6692             mg
6693          drops
6694             mg
6695             mg
6696          drops
6697          drops
6698          drops
6699             mg
6700             mg
6701             mg
6702           drop
6703          drops
6704             mg
6705             mg
6706            tsp
6707             mg
6708             mg
6709             mg
6710             ml
6711             ml
6712             ml
6713             mg
6714             mg
6715          drops
6716             ml
6717          drops
6718             ml
6719             ml
6720             ml
6721             mg
6722             mg
6723             mg
6724             mg
6725             mg
6726  other specify
6727  other specify
6728            mcg
6729             mg
6730             mg
6731            mcg
6732             mg
6733            mcg
6734            mcg
6735            mcg
6736             mg
6737             mg
6738             mg
6739             mg
6740             mg
6741             mg
6742             mg
6743             mg
6744             mg
6745             mg
6746             mg
6747             mg
6748             mg
6749             mg
6750             mg
6751    unspecified
6752             mg
6753             mg
6754             mg
6755             mg
6756             mg
6757             mg
6758             mg
6759          drops
6760             ml
6761            mcg
6762             mg
6763            mcg
6764          drops
6765             mg
6766             mg
6767             mg
6768             mg
6769             mg
6770  other specify
6771  other specify
6772             mg
6773             mg
6774  other specify
6775  other specify
6776  other specify
6777             mg
6778             ml
6779          drops
6780             mg
6781          drops
6782             mg
6783          drops
6784            mcg
6785            mcg
6786          drops
6787             mg
6788             mg
6789            mcg
6790             mg
6791             mg
6792            mcg
6793             mg
6794             mg
6795  other specify
6796          drops
6797             mg
6798             mg
6799             mg
6800             mg
6801             mg
6802             mg
6803             mg
6804  other specify
6805             mg
6806             mg
6807            mcg
6808             mg
6809             mg
6810             mg
6811             mg
6812             mg
6813             mg
6814             mg
6815             mg
6816             ml
6817           tube
6818          drops
6819          drops
6820          drops
6821             mg
6822             mg
6823             mg
6824    unspecified
6825             mg
6826             mg
6827             mg
6828         sprays
6829             mg
6830             mg
6831             mg
6832             mg
6833             mg
6834             mg
6835             mg
6836             mg
6837  other specify
6838            mcg
6839             mg
6840             mg
6841             mg
6842             mg
6843             mg
6844             mg
6845             mg
6846             mg
6847             mg
6848             mg
6849            mcg
6850             mg
6851             mg
6852             mg
6853             mg
6854  other specify
6855            mcg
6856             mg
6857             ml
6858             ml
6859             ml
6860             ml
6861             ml
6862  other specify
6863             ml
6864             ml
6865             mg
6866             mg
6867             mg
6868           pump
6869             ml
6870  other specify
6871             mg
6872             mg
6873  other specify
6874             mg
6875            mcg
6876             ml
6877             mg
6878             mg
6879             mg
6880           pump
6881             ml
6882             mg
6883             ml
6884             mg
6885             ml
6886          drops
6887            mcg
6888  other specify
6889             mg
6890            mcg
6891             ml
6892             ml
6893             mg
6894             mg
6895             mg
6896             mg
6897            mcg
6898  other specify
6899  other specify
6900             mg
6901             mg
6902             mg
6903             ml
6904             mg
6905             mg
6906            mcg
6907             mg
6908             ml
6909             ml
6910             ml
6911             mg
6912             mg
6913             mg
6914             mg
6915             mg
6916            mcg
6917             mg
6918             mg
6919            mcg
6920            mcg
6921             mg
6922             mg
6923             mg
6924             mg
6925             mg
6926             mg
6927             mg
6928             ml
6929             mg
6930             mg
6931  other specify
6932             mg
6933             mg
6934          drops
6935          drops
6936          drops
6937             mg
6938  other specify
6939             mg
6940             mg
6941             mg
6942             mg
6943             mg
6944             mg
6945             mg
6946             mg
6947             mg
6948             mg
6949             mg
6950             mg
6951             mg
6952             mg
6953             mg
6954             mg
6955             mg
6956    unspecified
6957            tsp
6958             mg
6959             mg
6960             mg
6961             mg
6962             mg
6963          drops
6964             mg
6965             mg
6966             mg
6967             ml
6968             ml
6969             mg
6970          drops
6971          units
6972          units
6973             mg
6974             ml
6975             ml
6976             mg
6977             mg
6978             mg
6979             mg
6980             mg
6981             ml
6982          drops
6983          drops
6984           tube
6985            mcg
6986             mg
6987             mg
6988             mg
6989             mg
6990          drops
6991  other specify
6992  other specify
6993             mg
6994             mg
6995  other specify
6996             mg
6997             mg
6998  other specify
6999          spray
7000             mg
7001             mg
7002             mg
7003             mg
7004             mg
7005    unspecified
7006    unspecified
7007             mg
7008             ml
7009             mg
7010             mg
7011             ml
7012             ml
7013             mg
7014             mg
7015             ml
7016             mg
7017          spray
7018          drops
7019             mg
7020             mg
7021             ml
7022             mg
7023             ml
7024             mg
7025          drops
7026             mg
7027             gm
7028             mg
7029             mg
7030             mg
7031             mg
7032             mg
7033             mg
7034             mg
7035             mg
7036             mg
7037             mg
7038             mg
7039             mg
7040             mg
7041             mg
7042          drops
7043             ml
7044             ml
7045             mg
7046          drops
7047             ug
7048            mcg
7049            mcg
7050            mcg
7051            mcg
7052             mg
7053             ug
7054            mcg
7055             mg
7056             mg
7057             mg
7058             ml
7059             mg
7060             mg
7061             mg
7062             mg
7063             mg
7064  other specify
7065  other specify
7066  other specify
7067           pump
7068  other specify
7069             mg
7070             mg
7071          drops
7072             mg
7073          drops
7074  other specify
7075             mg
7076  other specify
7077            mcg
7078            mcg
7079             mg
7080            mcg
7081             mg
7082            mcg
7083             mg
7084             mg
7085             mg
7086             mg
7087             mg
7088  other specify
7089             mg
7090             mg
7091             mg
7092           tube
7093          drops
7094             mg
7095             mg
7096             mg
7097             mg
7098             mg
7099             gm
7100             mg
7101             mg
7102             mg
7103             mg
7104             gm
7105             mg
7106             mg
7107            mcg
7108            mcg
7109            mcg
7110            mcg
7111            mcg
7112             mg
7113             mg
7114             mg
7115             mg
7116          drops
7117             mg
7118             mg
7119             mg
7120             mg
7121             gm
7122             ml
7123             mg
7124             mg
7125             mg
7126             mg
7127    unspecified
7128             mg
7129             mg
7130             mg
7131            mcg
7132            mcg
7133             mg
7134             mg
7135            mcg
7136            mcg
7137           tube
7138            mcg
7139            mcg
7140            mcg
7141          drops
7142          drops
7143             gm
7144             mg
7145             mg
7146  other specify
7147             mg
7148             mg
7149          spray
7150             mg
7151             ml
7152          drops
7153             gm
7154             gm
7155             gm
7156             mg
7157             mg
7158             mg
7159             mg
7160  other specify
7161          drops
7162  other specify
7163          drops
7164  other specify
7165  other specify
7166  other specify
7167  other specify
7168  other specify
7169             mg
7170             mg
7171             mg
7172             ml
7173           drop
7174             mg
7175             oz
7176             mg
7177             oz
7178             mg
7179  other specify
7180           tube
7181             mg
7182             mg
7183             mg
7184             mg
7185             mg
7186             mg
7187             mg
7188             mg
7189             ml
7190             mg
7191             mg
7192             mg
7193             mg
7194             mg
7195             mg
7196             mg
7197  other specify
7198  other specify
7199  other specify
7200             mg
7201          drops
7202  other specify
7203  other specify
7204  other specify
7205             ml
7206             mg
7207             ml
7208          drops
7209             mg
7210             mg
7211             mg
7212  other specify
7213             ml
7214             ml
7215             ml
7216             mg
7217             mg
7218             mg
7219  other specify
7220             mg
7221          drops
7222             mg
7223             mg
7224             mg
7225             mg
7226             mg
7227  other specify
7228             mg
7229             mg
7230             mg
7231             mg
7232          drops
7233             mg
7234             mg
7235             mg
7236             mg
7237             mg
7238             mg
7239             mg
7240          drops
7241            mcg
7242             mg
7243            mcg
7244             mg
7245            mcg
7246             mg
7247          tube 
7248             ml
7249             ml
7250          drops
7251            mcg
7252             mg
7253            mcg
7254            mcg
7255             mg
7256             mg
7257            mcg
7258            mcg
7259            mcg
7260  other specify
7261             ml
7262             ml
7263             mg
7264  other specify
7265  other specify
7266             mg
7267  other specify
7268  other specify
7269  other specify
7270  other specify
7271            tsp
7272  other specify
7273  other specify
7274  other specify
7275  other specify
7276             ml
7277             mg
7278             mg
7279             ml
7280            mcg
7281             ml
7282             mg
7283             mg
7284             ml
7285             mg
7286             mg
7287             mg
7288             mg
7289             mg
7290             ml
7291          spray
7292             mg
7293  other specify
7294             mg
7295           tube
7296             mg
7297             gm
7298             mg
7299             mg
7300            mcg
7301             mg
7302             mg
7303             mg
7304             mg
7305             mg
7306             mg
7307             mg
7308             mg
7309             mg
7310             mg
7311             mg
7312             mg
7313             mg
7314             mg
7315             mg
7316             mg
7317             mg
7318             mg
7319             mg
7320             gm
7321             mg
7322             mg
7323             mg
7324             mg
7325  other specify
7326             mg
7327             mg
7328             mg
7329             mg
7330             mg
7331             mg
7332             mg
7333             mg
7334             mg
7335             mg
7336             mg
7337  other specify
7338  other specify
7339  other specify
7340  other specify
7341  other specify
7342             gm
7343  other specify
7344             gm
7345          drops
7346          drops
7347             mg
7348             mg
7349             mg
7350             mg
7351          drops
7352          drops
7353             mg
7354             mg
7355             mg
7356             mg
7357            mcg
7358             mg
7359             mg
7360             mg
7361             mg
7362             mg
7363             mg
7364          drops
7365          drops
7366             mg
7367             mg
7368          drops
7369             mg
7370             mg
7371          drops
7372          drops
7373            mcg
7374             mg
7375             mg
7376             mg
7377             mg
7378             mg
7379             mg
7380  other specify
7381             mg
7382            mcg
7383             mg
7384             mg
7385             mg
7386             gm
7387             mg
7388            mcg
7389             mg
7390             mg
7391             mg
7392            mcg
7393             mg
7394             mg
7395             mg
7396  other specify
7397            mcg
7398             mg
7399          units
7400             mg
7401             mg
7402             mg
7403             mg
7404             mg
7405             mg
7406             mg
7407             mg
7408             mg
7409             mg
7410             mg
7411             mg
7412             ml
7413             ml
7414             mg
7415             mg
7416          units
7417             mg
7418             ml
7419             mg
7420             mg
7421             mg
7422             mg
7423             mg
7424             mg
7425             mg
7426             mg
7427             mg
7428             mg
7429             mg
7430             mg
7431             mg
7432             mg
7433             mg
7434             mg
7435             mg
7436             mg
7437             mg
7438             mg
7439             mg
7440  other specify
7441             mg
7442             mg
7443             mg
7444          units
7445             mg
7446             mg
7447             ml
7448             mg
7449             mg
7450          units
7451             mg
7452             mg
7453             mg
7454             mg
7455             mg
7456             mg
7457             mg
7458            mcg
7459             mg
7460             mg
7461             mg
7462             mg
7463             mg
7464             mg
7465          drops
7466             mg
7467             mg
7468             mg
7469             mg
7470             mg
7471             mg
7472             mg
7473             mg
7474             mg
7475  other specify
7476             mg
7477            mcg
7478            mcg
7479          drops
7480             mg
7481             mg
7482             mg
7483             mg
7484             mg
7485             mg
7486          drops
7487          drops
7488             mg
7489             mg
7490             mg
7491             mg
7492             mg
7493             mg
7494             mg
7495            mcg
7496            mcg
7497             mg
7498             mg
7499            mcg
7500             mg
7501            mcg
7502             mg
7503          drops
7504             mg
7505             mg
7506             mg
7507            mcg
7508             mg
7509             mg
7510             ml
7511             ml
7512             ml
7513             ml
7514             mg
7515  other specify
7516  other specify
7517            mcg
7518            mcg
7519            mcg
7520             mg
7521            mcg
7522             mg
7523            mcg
7524             ml
7525            mcg
7526             mg
7527            mcg
7528             mg
7529          drops
7530             gm
7531  other specify
7532             mg
7533             mg
7534             mg
7535             mg
7536             mg
7537             ml
7538             ml
7539             ml
7540             ml
7541             ml
7542             mg
7543             mg
7544             mg
7545             mg
7546             mg
7547             mg
7548             mg
7549             mg
7550            mcg
7551          spray
7552             mg
7553             mg
7554             mg
7555           drop
7556             mg
7557             mg
7558  other specify
7559  other specify
7560             ml
7561             mg
7562             mg
7563          drops
7564    unspecified
7565            mcg
7566          drops
7567             mg
7568             mg
7569             mg
7570             mg
7571             mg
7572             mg
7573          drops
7574             mg
7575            mcg
7576             ml
7577             mg
7578             mg
7579             mg
7580             mg
7581             mg
7582             mg
7583           tube
7584             mg
7585    unspecified
7586    unspecified
7587    unspecified
7588    unspecified
7589    unspecified
7590    unspecified
7591             mg
7592             mg
7593          units
7594             mg
7595             mg
7596  other specify
7597             mg
7598             gm
7599  other specify
7600  other specify
7601  other specify
7602  other specify
7603  other specify
7604             mg
7605             gm
7606  other specify
7607  other specify
7608            tsp
7609          drops
7610          units
7611          units
7612          units
7613            tsp
7614          units
7615          units
7616          units
7617          units
7618          units
7619            tsp
7620             mg
7621             mg
7622  other specify
7623  other specify
7624  other specify
7625  other specify
7626  other specify
7627  other specify
7628  other specify
7629  other specify
7630  other specify
7631  other specify
7632  other specify
7633            tsp
7634  other specify
7635             mg
7636             mg
7637             mg
7638  other specify
7639          units
7640          units
7641             mg
7642  other specify
7643  other specify
7644  other specify
7645  other specify
7646             mg
7647  other specify
7648             mg
7649             mg
7650             mg
7651  other specify
7652  other specify
7653  other specify
7654  other specify
7655  other specify
7656  other specify
7657             mg
7658  other specify
7659  other specify
7660          drops
7661             mg
7662             mg
7663             gm
7664             mg
7665             mg
7666             mg
7667             mg
7668             mg
7669             mg
7670             mg
7671             mg
7672             mg
7673             ml
7674           tube
7675             mg
7676             mg
7677             oz
7678           tube
7679           tube
7680             ml
7681             mg
7682  other specify
7683  other specify
7684  other specify
7685             mg
7686             mg
7687             mg
7688             ml
7689             ml
7690             mg
7691             mg
7692             mg
7693             mg
7694  other specify
7695             mg
7696             mg
7697             mg
7698             mg
7699             mg
7700             mg
7701             mg
7702             mg
7703             mg
7704             mg
7705           pump
7706             mg
7707             mg
7708             mg
7709             mg
7710             mg
7711             mg
7712             mg
7713             mg
7714             mg
7715             mg
7716             mg
7717             mg
7718             mg
7719          units
7720             mg
7721             mg
7722             mg
7723             mg
7724          drops
7725          drops
7726             mg
7727          drops
7728             mg
7729             mg
7730             mg
7731             mg
7732             ml
7733             mg
7734          units
7735          units
7736             ml
7737             mg
7738             mg
7739             mg
7740             mg
7741             mg
7742          units
7743          units
7744  other specify
7745  other specify
7746          spray
7747             ml
7748          units
7749          units
7750          units
7751          drops
7752  other specify
7753  other specify
7754             ml
7755            mcg
7756             ml
7757             mg
7758             mg
7759          spray
7760             mg
7761          drops
7762             mg
7763          drops
7764  other specify
7765  other specify
7766             ml
7767            tsp
7768  other specify
7769    unspecified
7770          drops
7771             mg
7772    unspecified
7773            tsp
7774             mg
7775    unspecified
7776    unspecified
7777             mg
7778             mg
7779             mg
7780  other specify
7781          units
7782          units
7783          drops
7784          spray
7785  other specify
7786  other specify
7787          drops
7788             mg
7789  other specify
7790  other specify
7791            mcg
7792             mg
7793             mg
7794             oz
7795          drops
7796             mg
7797             mg
7798            mcg
7799             mg
7800             mg
7801             mg
7802             mg
7803             mg
7804            mcg
7805             mg
7806             mg
7807             mg
7808             mg
7809             mg
7810             mg
7811          drops
7812           tube
7813             ml
7814             mg
7815          drops
7816             mg
7817             mg
7818    unspecified
7819             mg
7820    unspecified
7821             mg
7822    unspecified
7823             mg
7824             mg
7825             mg
7826             ml
7827             mg
7828             mg
7829             mg
7830             mg
7831            mcg
7832             ml
7833          drops
7834            mcg
7835             mg
7836          drops
7837             mg
7838  other specify
7839          spray
7840             mg
7841  other specify
7842  other specify
7843  other specify
7844             mg
7845          drops
7846          drops
7847  other specify
7848             ml
7849             mg
7850             mg
7851             mg
7852    unspecified
7853           tube
7854    unspecified
7855             mg
7856             mg
7857             mg
7858             mg
7859             mg
7860             mg
7861             mg
7862             mg
7863             mg
7864             mg
7865            mcg
7866             mg
7867            mcg
7868            mcg
7869            mcg
7870             mg
7871             mg
7872             mg
7873            mcg
7874            mcg
7875             mg
7876             ml
7877             mg
7878            mcg
7879             mg
7880            mcg
7881             mg
7882             mg
7883         sprays
7884           pump
7885             ml
7886             mg
7887          units
7888             mg
7889          units
7890             mg
7891             mg
7892             mg
7893  other specify
7894             mg
7895          drops
7896             mg
7897          drops
7898             mg
7899             mg
7900             mg
7901             mg
7902             mg
7903             mg
7904             mg
7905             mg
7906             mg
7907             mg
7908             mg
7909             mg
7910             mg
7911             mg
7912            mcg
7913             mg
7914             ml
7915             mg
7916             mg
7917             mg
7918             mg
7919             mg
7920             mg
7921             gm
7922             mg
7923             mg
7924             mg
7925             mg
7926           tube
7927             mg
7928             mg
7929          drops
7930             mg
7931             mg
7932             mg
7933             mg
7934          mg/kg
7935          mg/kg
7936            mcg
7937             mg
7938             mg
7939             mg
7940             mg
7941             ml
7942             mg
7943             mg
7944          drops
7945             ml
7946          drops
7947          drops
7948            mcg
7949            mcg
7950            mcg
7951          drops
7952             ml
7953          drops
7954             mg
7955             ml
7956            mcg
7957          drops
7958             mg
7959             mg
7960             mg
7961          spray
7962             mg
7963             mg
7964          drops
7965            tsp
7966             ml
7967          drops
7968            tsp
7969             ml
7970             mg
7971  other specify
7972             mg
7973          drops
7974  other specify
7975             mg
7976  other specify
7977             mg
7978            mcg
7979          drops
7980             mg
7981             mg
7982             mg
7983             mg
7984             mg
7985             mg
7986             oz
7987             mg
7988             gm
7989          units
7990          units
7991             ml
7992             ml
7993          drops
7994             mg
7995             mg
7996             ml
7997             ml
7998          drops
7999             ml
8000          spray
8001             ml
8002             ml
8003             mg
8004             mg
8005             gm
8006             mg
8007             mg
8008             mg
8009           drop
8010             mg
8011             mg
8012          drops
8013             mg
8014             ml
8015             mg
8016             mg
8017             ml
8018             mg
8019             mg
8020          drops
8021             mg
8022             mg
8023             mg
8024             mg
8025             mg
8026             mg
8027             ml
8028            mcg
8029            mcg
8030          spray
8031          drops
8032             mg
8033          drops
8034             mg
8035            mcg
8036            mcg
8037            mcg
8038            mcg
8039            mcg
8040            mcg
8041             mg
8042             mg
8043             mg
8044             mg
8045             mg
8046             mg
8047             mg
8048             mg
8049             mg
8050             mg
8051             mg
8052             mg
8053             mg
8054             mg
8055             mg
8056             mg
8057             mg
8058  other specify
8059             mg
8060             mg
8061  other specify
8062  other specify
8063  other specify
8064             ml
8065             mg
8066  other specify
8067  other specify
8068             mg
8069  other specify
8070  other specify
8071  other specify
8072             mg
8073             mg
8074             mg
8075    unspecified
8076             gm
8077             mg
8078             mg
8079             mg
8080             mg
8081             gm
8082             mg
8083             mg
8084             mg
8085             mg
8086             ml
8087  other specify
8088             mg
8089             mg
8090             mg
8091             mg
8092  other specify
8093             mg
8094             gm
8095             ml
8096             mg
8097             oz
8098             oz
8099             oz
8100             mg
8101             oz
8102             mg
8103             mg
8104             mg
8105             gm
8106             mg
8107             mg
8108             mg
8109             ml
8110  other specify
8111  other specify
8112             ml
8113  other specify
8114             mg
8115             mg
8116             mg
8117             mg
8118             mg
8119             mg
8120          drops
8121             ml
8122             mg
8123             ml
8124            mcg
8125          units
8126             mg
8127             mg
8128           tube
8129          drops
8130             gm
8131             gm
8132             mg
8133             mg
8134             mg
8135          drops
8136             gm
8137             gm
8138             gm
8139             gm
8140           pump
8141             mg
8142             mg
8143             mg
8144             mg
8145             mg
8146             mg
8147             mg
8148             mg
8149             mg
8150             mg
8151             mg
8152             mg
8153             mg
8154             mg
8155  other specify
8156  other specify
8157             mg
8158             ml
8159            mcg
8160           tube
8161             mg
8162             mg
8163             mg
8164             mg
8165             mg
8166            mcg
8167             mg
8168            mcg
8169             ml
8170            mcg
8171             oz
8172            mcg
8173          drops
8174             ml
8175            mcg
8176             mg
8177             mg
8178            mcg
8179             mg
8180             mg
8181             mg
8182           tube
8183             mg
8184          drops
8185          drops
8186          drops
8187          drops
8188           pump
8189             mg
8190             mg
8191             mg
8192             mg
8193             mg
8194             mg
8195           pump
8196          spray
8197             mg
8198             mg
8199             mg
8200  other specify
8201  other specify
8202             mg
8203  other specify
8204  other specify
8205          spray
8206          spray
8207          spray
8208          drops
8209             mg
8210          units
8211          units
8212          drops
8213             ml
8214             mg
8215          drops
8216             mg
8217             mg
8218             mg
8219            mcg
8220  other specify
8221          drops
8222          drops
8223          units
8224            mcg
8225             mg
8226             mg
8227    unspecified
8228    unspecified
8229             mg
8230             mg
8231             mg
8232             mg
8233             mg
8234          spray
8235           tube
8236             ml
8237             mg
8238          units
8239  other specify
8240             mg
8241             mg
8242          drops
8243             mg
8244  other specify
8245             mg
8246          drops
8247             mg
8248          drops
8249             mg
8250             mg
8251             mg
8252           tbsp
8253             mg
8254             mg
8255             mg
8256             mg
8257             mg
8258             mg
8259             mg
8260             mg
8261             mg
8262             mg
8263             mg
8264             mg
8265             mg
8266             mg
8267             mg
8268             mg
8269             mg
8270             mg
8271             mg
8272             mg
8273             mg
8274             mg
8275             mg
8276             mg
8277             mg
8278             mg
8279             mg
8280    unspecified
8281             mg
8282             mg
8283             mg
8284             gm
8285             mg
8286             mg
8287             mg
8288             mg
8289             mg
8290             mg
8291             mg
8292          drops
8293             gm
8294             mg
8295             mg
8296          drops
8297             ml
8298          drops
8299          drops
8300          drops
8301  other specify
8302  other specify
8303             mg
8304             ml
8305           tube
8306  other specify
8307  other specify
8308             mg
8309          drops
8310          drops
8311          drops
8312          drops
8313          drops
8314             mg
8315             mg
8316             mg
8317             mg
8318             mg
8319             mg
8320             mg
8321            mcg
8322             mg
8323             mg
8324             mg
8325            mcg
8326  other specify
8327             mg
8328             mg
8329             mg
8330             mg
8331            mcg
8332  other specify
8333             mg
8334            mcg
8335  other specify
8336          drops
8337             mg
8338             mg
8339            mcg
8340  other specify
8341          drops
8342             mg
8343             mg
8344            mcg
8345          drops
8346             mg
8347          drops
8348             mg
8349          drops
8350             mg
8351            mcg
8352  other specify
8353            mcg
8354          drops
8355          drops
8356             mg
8357             mg
8358          spray
8359          drops
8360          drops
8361  other specify
8362             ml
8363             mg
8364             mg
8365             mg
8366             mg
8367             mg
8368          drops
8369          drops
8370          spray
8371          drops
8372             mg
8373             mg
8374  other specify
8375  other specify
8376          drops
8377          spray
8378          drops
8379  other specify
8380             mg
8381             mg
8382  other specify
8383             mg
8384          drops
8385  other specify
8386            mcg
8387            mcg
8388            mcg
8389            mcg
8390             mg
8391             mg
8392             mg
8393             mg
8394             mg
8395             mg
8396             mg
8397             mg
8398             mg
8399             mg
8400             mg
8401             mg
8402             ml
8403             mg
8404             mg
8405          drops
8406             mg
8407             mg
8408          drops
8409             ml
8410          drops
8411             ml
8412             ml
8413             mg
8414             mg
8415             mg
8416             mg
8417             mg
8418          spray
8419             mg
8420           tube
8421          spray
8422            mcg
8423            mcg
8424           pump
8425          drops
8426             mg
8427             ml
8428             mg
8429             mg
8430  other specify
8431             ml
8432             mg
8433             ml
8434            mcg
8435             ml
8436          drops
8437            mcg
8438            mcg
8439            mcg
8440            mcg
8441            mcg
8442            mcg
8443            mcg
8444             mg
8445             mg
8446            mcg
8447             mg
8448          drops
8449  other specify
8450            mcg
8451             ug
8452             mg
8453             mg
8454           tube
8455             mg
8456             mg
8457             mg
8458             mg
8459             mg
8460  other specify
8461  other specify
8462             mg
8463            mcg
8464             mg
8465  other specify
8466           drop
8467          drops
8468             mg
8469             mg
8470          drops
8471             mg
8472             mg
8473             mg
8474             mg
8475          drops
8476             mg
8477             mg
8478             gm
8479             mg
8480            mcg
8481             mg
8482          drops
8483            mcg
8484             mg
8485            mcg
8486             mg
8487            mcg
8488             mg
8489  other specify
8490             mg
8491             ml
8492             mg
8493  other specify
8494             mg
8495  other specify
8496             mg
8497             mg
8498             mg
8499             mg
8500          drops
8501             mg
8502             gm
8503             ml
8504             mg
8505  other specify
8506             mg
8507             mg
8508             mg
8509             ml
8510             mg
8511             ml
8512             mg
8513             mg
8514          drops
8515          drops
8516             mg
8517             mg
8518             mg
8519             mg
8520             mg
8521             mg
8522             mg
8523             mg
8524  other specify
8525             mg
8526             mg
8527             mg
8528           tube
8529             mg
8530             mg
8531          drops
8532             mg
8533             mg
8534             mg
8535             mg
8536             mg
8537             mg
8538             mg
8539             mg
8540             mg
8541             oz
8542             mg
8543             mg
8544             mg
8545             mg
8546          drops
8547             mg
8548             mg
8549             mg
8550             mg
8551            mcg
8552            mcg
8553             mg
8554          spray
8555          spray
8556             mg
8557             mg
8558             mg
8559          drops
8560             mg
8561             mg
8562             mg
8563          drops
8564             mg
8565             ml
8566          drops
8567             mg
8568             mg
8569             mg
8570             mg
8571             mg
8572             mg
8573             mg
8574  other specify
8575             mg
8576             mg
8577  other specify
8578           tube
8579             mg
8580             mg
8581           tbsp
8582          drops
8583          drops
8584          drops
8585             gm
8586             gm
8587  other specify
8588          drops
8589             mg
8590             mg
8591           drop
8592             ml
8593             ml
8594             mg
8595  other specify
8596  other specify
8597             ml
8598  other specify
8599  other specify
8600  other specify
8601             mg
8602             mg
8603             mg
8604  other specify
8605          units
8606  other specify
8607          drops
8608             mg
8609          spray
8610             mg
8611             mg
8612             mg
8613             mg
8614             mg
8615  other specify
8616             mg
8617             mg
8618             mg
8619             mg
8620             mg
8621             mg
8622             ml
8623             mg
8624             mg
8625             ml
8626             ml
8627             ml
8628             ml
8629             ml
8630             ml
8631             ml
8632  other specify
8633  other specify
8634             ml
8635             mg
8636             mg
8637             mg
8638             mg
8639             mg
8640  other specify
8641  other specify
8642             mg
8643            mcg
8644             mg
8645             ml
8646             ml
8647             mg
8648             ml
8649             ml
8650             ml
8651             mg
8652             mg
8653             mg
8654             mg
8655  other specify
8656             ml
8657             mg
8658             mg
8659          drops
8660            mcg
8661          drops
8662             mg
8663             mg
8664             mg
8665             mg
8666             mg
8667  other specify
8668             mg
8669          units
8670             mg
8671             mg
8672             mg
8673             mg
8674           pump
8675          spray
8676             ml
8677           tube
8678             mg
8679            mcg
8680            mcg
8681             mg
8682             mg
8683             gm
8684            mcg
8685             mg
8686          drops
8687             mg
8688             mg
8689             mg
8690             mg
8691             mg
8692             mg
8693            mcg
8694           tube
8695             mg
8696             mg
8697             ml
8698  other specify
8699  other specify
8700            mcg
8701            mcg
8702          drops
8703             mg
8704             ml
8705             mg
8706            mcg
8707          drops
8708             mg
8709             mg
8710             ml
8711  other specify
8712             mg
8713  other specify
8714            mcg
8715             mg
8716             ml
8717             mg
8718  other specify
8719             ml
8720             mg
8721             mg
8722             ml
8723             mg
8724  other specify
8725             mg
8726  other specify
8727             mg
8728             mg
8729  other specify
8730             ml
8731           tube
8732             ml
8733             mg
8734             ml
8735            tsp
8736          drops
8737  other specify
8738  other specify
8739  other specify
8740  other specify
8741             mg
8742             mg
8743             mg
8744    unspecified
8745    unspecified
8746             mg
8747             mg
8748             mg
8749             mg
8750             mg
8751             mg
8752             mg
8753             mg
8754             mg
8755             mg
8756           drop
8757             mg
8758  other specify
8759           drop
8760           drop
8761             gm
8762             mg
8763             mg
8764             mg
8765          units
8766             mg
8767  other specify
8768             gm
8769           tube
8770          drops
8771             ml
8772             mg
8773             mg
8774             mg
8775             mg
8776  other specify
8777          drops
8778          drops
8779           tube
8780          drops
8781          drops
8782             mg
8783             mg
8784             mg
8785             mg
8786          drops
8787  other specify
8788             mg
8789             mg
8790             ml
8791             ml
8792    unspecified
8793          drops
8794          drops
8795             ml
8796  other specify
8797             mg
8798             mg
8799  other specify
8800             mg
8801             mg
8802             mg
8803             mg
8804             mg
8805          drops
8806             gm
8807             mg
8808  other specify
8809          drops
8810  other specify
8811             mg
8812             mg
8813             mg
8814             mg
8815           pump
8816          drops
8817             ml
8818            mcg
8819          pumps
8820             gm
8821             ml
8822             ml
8823             mg
8824             mg
8825             mg
8826             ml
8827  other specify
8828          drops
8829            mcg
8830             mg
8831            mcg
8832             mg
8833          drops
8834             mg
8835             mg
8836             mg
8837             mg
8838             mg
8839            mcg
8840            mcg
8841             ml
8842            mcg
8843             ml
8844            mcg
8845  other specify
8846             mg
8847             mg
8848             mg
8849             mg
8850             mg
8851    unspecified
8852    unspecified
8853    unspecified
8854             mg
8855            mcg
8856          drops
8857             mg
8858             mg
8859             gm
8860          drops
8861             mg
8862            mcg
8863             ml
8864            mcg
8865            mcg
8866             mg
8867             mg
8868             mg
8869             mg
8870             mg
8871             mg
8872             mg
8873             mg
8874             mg
8875    unspecified
8876    unspecified
8877          drops
8878             mg
8879           drop
8880            mcg
8881             mg
8882            mcg
8883             mg
8884             mg
8885            mcg
8886             ml
8887             mg
8888            mcg
8889             mg
8890            mcg
8891             mg
8892            mcg
8893             mg
8894             mg
8895          drops
8896             mg
8897             mg
8898             mg
8899          drops
8900             mg
8901             mg
8902             mg
8903  other specify
8904             mg
8905             mg
8906             mg
8907             mg
8908             mg
8909             mg
8910             mg
8911          drops
8912             mg
8913             mg
8914             mg
8915             mg
8916             mg
8917             mg
8918             mg
8919             mg
8920             mg
8921             mg
8922             mg
8923             mg
8924             iu
8925             mg
8926            mcg
8927             mg
8928             mg
8929            mcg
8930            mcg
8931             mg
8932             mg
8933             mg
8934             mg
8935             mg
8936             mg
8937             mg
8938             mg
8939             mg
8940             mg
8941             mg
8942             mg
8943             mg
8944             mg
8945             mg
8946             mg
8947             mg
8948             mg
8949             mg
8950             mg
8951            mcg
8952             ml
8953             mg
8954             mg
8955             mg
8956             ml
8957             gm
8958            mcg
8959             mg
8960             mg
8961            mcg
8962            mcg
8963             mg
8964             mg
8965             mg
8966             mg
8967             mg
8968             mg
8969             mg
8970             mg
8971             mg
8972             mg
8973             mg
8974             mg
8975             mg
8976  other specify
8977  other specify
8978  other specify
8979             mg
8980             mg
8981  other specify
8982             ml
8983             mg
8984  other specify
8985            tbs
8986             mg
8987             mg
8988            mcg
8989             mg
8990             mg
8991             mg
8992          drops
8993            mcg
8994             mg
8995             ml
8996             mg
8997             ml
8998             ml
8999             mg
9000             mg
9001             mg
9002             mg
9003             mg
9004             mg
9005             mg
9006            mcg
9007             mg
9008             mg
9009          drops
9010             mg
9011             mg
9012             mg
9013             mg
9014             mg
9015             mg
9016             mg
9017             mg
9018             mg
9019             mg
9020             mg
9021             mg
9022             mg
9023             mg
9024  other specify
9025            mcg
9026           tube
9027             mg
9028             mg
9029             mg
9030             mg
9031             mg
9032             mg
9033             mg
9034             mg
9035             mg
9036             mg
9037             mg
9038             mg
9039             mg
9040             mg
9041             mg
9042             mg
9043  other specify
9044  other specify
9045             mg
9046          drops
9047          drops
9048             mg
9049          drops
9050          spray
9051             mg
9052             oz
9053             ml
9054             ml
9055             ml
9056             mg
9057             mg
9058             mg
9059             mg
9060             ml
9061             mg
9062             mg
9063          drops
9064          drops
9065             gm
9066             mg
9067             mg
9068             mg
9069             mg
9070          drops
9071          drops
9072             mg
9073          drops
9074             mg
9075             mg
9076             mg
9077             mg
9078             mg
9079             mg
9080             mg
9081             mg
9082             mg
9083             mg
9084    unspecified
9085             mg
9086             mg
9087             mg
9088            mcg
9089             mg
9090             mg
9091          drops
9092             mg
9093             mg
9094             ml
9095          drops
9096             mg
9097             mg
9098           drop
9099             mg
9100           tube
9101            tsp
9102             mg
9103             mg
9104             mg
9105            mcg
9106  other specify
9107  other specify
9108             mg
9109             ml
9110             mg
9111             mg
9112             mg
9113             mg
9114             mg
9115             mg
9116          drops
9117             mg
9118           tube
9119             mg
9120  other specify
9121  other specify
9122  other specify
9123  other specify
9124            tsp
9125             mg
9126             mg
9127            mcg
9128             mg
9129          drops
9130            mcg
9131             mg
9132             ml
9133            tsp
9134  other specify
9135             mg
9136          drops
9137             mg
9138             mg
9139             mg
9140             mg
9141             mg
9142             mg
9143             mg
9144  other specify
9145            tsp
9146  other specify
9147             mg
9148             mg
9149             mg
9150  other specify
9151             mg
9152             mg
9153             mg
9154          drops
9155             mg
9156          drops
9157             mg
9158             ml
9159            mcg
9160           drop
9161  other specify
9162             mg
9163            mcg
9164  other specify
9165  other specify
9166             mg
9167             ml
9168             mg
9169             mg
9170             ml
9171  other specify
9172  other specify
9173             mg
9174             mg
9175             mg
9176             mg
9177             mg
9178             mg
9179             mg
9180            mcg
9181  other specify
9182             mg
9183             mg
9184             mg
9185             mg
9186             mg
9187          drops
9188             mg
9189             ml
9190             mg
9191             mg
9192             mg
9193             gm
9194             mg
9195             mg
9196             mg
9197  other specify
9198  other specify
9199  other specify
9200  other specify
9201             ml
9202          drops
9203             ml
9204             mg
9205             mg
9206             mg
9207             mg
9208             mg
9209  other specify
9210             mg
9211            tsp
9212             mg
9213             mg
9214             gm
9215             mg
9216             mg
9217             mg
9218             mg
9219  other specify
9220             mg
9221             mg
9222            tsp
9223             mg
9224             ml
9225             mg
9226             mg
9227             mg
9228             mg
9229             mg
9230           pump
9231             mg
9232  other specify
9233             mg
9234             mg
9235             mg
9236             ml
9237             mg
9238             ml
9239             ml
9240           tube
9241             ml
9242             ml
9243             mg
9244          drops
9245             mg
9246             mg
9247             ml
9248  other specify
9249            mcg
9250             mg
9251             mg
9252          pumps
9253           tube
9254           tube
9255             mg
9256             mg
9257            mcg
9258             mg
9259          units
9260             mg
9261             mg
9262             mg
9263             mg
9264             ml
9265            mcg
9266            mcg
9267          drops
9268  other specify
9269            mcg
9270             mg
9271             mg
9272             mg
9273             mg
9274             mg
9275             mg
9276             mg
9277             mg
9278             mg
9279             mg
9280             mg
9281             mg
9282             ml
9283             mg
9284             mg
9285             ml
9286             ml
9287            mcg
9288             mg
9289  other specify
9290  other specify
9291             mg
9292             mg
9293             mg
9294             mg
9295             mg
9296             mg
9297             mg
9298             mg
9299  other specify
9300             mg
9301             ml
9302             mg
9303          drops
9304             mg
9305            mcg
9306             ml
9307             ml
9308            mcg
9309             ml
9310            mcg
9311             mg
9312            mcg
9313             mg
9314             mg
9315             mg
9316             mg
9317            tbs
9318             mg
9319             mg
9320            tbs
9321          units
9322             mg
9323             mg
9324             mg
9325             ml
9326  other specify
9327             mg
9328             ml
9329             ml
9330             ml
9331          drops
9332             mg
9333             mg
9334             mg
9335            mcg
9336            mcg
9337            mcg
9338             mg
9339             mg
9340             mg
9341             mg
9342             mg
9343             mg
9344             mg
9345             ml
9346             mg
9347          drops
9348             mg
9349             mg
9350             mg
9351             ml
9352             mg
9353            mcg
9354             mg
9355             mg
9356             mg
9357             mg
9358             mg
9359             mg
9360             mg
9361            mcg
9362            mcg
9363          drops
9364             mg
9365             mg
9366            mcg
9367             mg
9368             mg
9369             mg
9370             mg
9371             mg
9372             mg
9373             mg
9374             mg
9375             mg
9376             mg
9377             mg
9378             mg
9379             mg
9380             mg
9381             mg
9382  other specify
9383  other specify
9384          drops
9385          drops
9386           tube
9387          drops
9388             mg
9389             mg
9390            mcg
9391          drops
9392            mcg
9393             mg
9394            mcg
9395             mg
9396            mcg
9397             mg
9398             mg
9399            mcg
9400             mg
9401             mg
9402             mg
9403             ml
9404             ml
9405             ml
9406  other specify
9407             mg
9408             mg
9409             mg
9410            mcg
9411             mg
9412             mg
9413            tsp
9414          units
9415  other specify
9416             ml
9417          units
9418          drops
9419             mg
9420             mg
9421           drop
9422             ml
9423             mg
9424             mg
9425             ml
9426           drop
9427             mg
9428             mg
9429           drop
9430             mg
9431             mg
9432           pump
9433            tbs
9434           pump
9435           pump
9436             ml
9437             mg
9438          drops
9439             mg
9440  other specify
9441  other specify
9442             mg
9443             mg
9444             mg
9445             mg
9446             mg
9447          drops
9448             mg
9449             mg
9450             mg
9451             mg
9452            mcg
9453  other specify
9454         sprays
9455            mcg
9456  other specify
9457             mg
9458            mcg
9459             mg
9460            mcg
9461             mg
9462            mcg
9463             mg
9464             mg
9465             mg
9466            mcg
9467            mcg
9468            mcg
9469             mg
9470             mg
9471            mcg
9472            mcg
9473             mg
9474            mcg
9475            mcg
9476             mg
9477             mg
9478             gm
9479             mg
9480             mg
9481             mg
9482             mg
9483             mg
9484             mg
9485             mg
9486             mg
9487             mg
9488             mg
9489             mg
9490             mg
9491          drops
9492             ml
9493             mg
9494          drops
9495           tube
9496             mg
9497            mcg
9498             mg
9499             mg
9500             mg
9501             mg
9502             mg
9503             mg
9504             mg
9505            mcg
9506  other specify
9507             mg
9508             mg
9509             mg
9510             mg
9511             mg
9512             mg
9513          drops
9514             mg
9515  other specify
9516          spray
9517             mg
9518             mg
9519          drops
9520             mg
9521            mcg
9522             mg
9523             mg
9524             ml
9525            tsp
9526             mg
9527             mg
9528             mg
9529             mg
9530             mg
9531             mg
9532             mg
9533             mg
9534            mcg
9535            mcg
9536             mg
9537             mg
9538             mg
9539             mg
9540             mg
9541  other specify
9542            mcg
9543            mcg
9544           drop
9545            mcg
9546           tube
9547            mcg
9548             ml
9549            tsp
9550             mg
9551             mg
9552             mg
9553            mcg
9554             mg
9555             mg
9556  other specify
9557             mg
9558             mg
9559             mg
9560             mg
9561            mcg
9562            mcg
9563             mg
9564             mg
9565             mg
9566             mg
9567             mg
9568             mg
9569             mg
9570             mg
9571             mg
9572             mg
9573  other specify
9574  other specify
9575  other specify
9576             mg
9577             mg
9578          units
9579             mg
9580             mg
9581             mg
9582             mg
9583             mg
9584           tbsp
9585             mg
9586             mg
9587  other specify
9588          drops
9589             mg
9590          drops
9591             mg
9592    unspecified
9593             mg
9594             mg
9595             mg
9596          drops
9597             mg
9598             ml
9599  other specify
9600             ml
9601           tbsp
9602             mg
9603             mg
9604             mg
9605             mg
9606             mg
9607             mg
9608  other specify
9609          spray
9610            tsp
9611             mg
9612          spray
9613          drops
9614          spray
9615         sprays
9616           tube
9617           drop
9618          pumps
9619           pump
9620           tube
9621          drops
9622             mg
9623             mg
9624             mg
9625             mg
9626             mg
9627             mg
9628             mg
9629          drops
9630  other specify
9631             mg
9632  other specify
9633          drops
9634          drops
9635             mg
9636             mg
9637             ml
9638  other specify
9639             mg
9640  other specify
9641           tube
9642             mg
9643           tube
9644             mg
9645             mg
9646             mg
9647             mg
9648          drops
9649             mg
9650             mg
9651             mg
9652             mg
9653             mg
9654             mg
9655             ml
9656             mg
9657  other specify
9658            mcg
9659             oz
9660            mcg
9661             mg
9662             ml
9663            mcg
9664             mg
9665             mg
9666             mg
9667             mg
9668             mg
9669             mg
9670             mg
9671             mg
9672             gm
9673            mcg
9674             mg
9675             mg
9676             mg
9677             mg
9678             mg
9679             mg
9680             mg
9681             mg
9682             mg
9683            mcg
9684             ml
9685             mg
9686             mg
9687             mg
9688             mg
9689             mg
9690             ml
9691            mcg
9692             mg
9693             mg
9694             mg
9695            mcg
9696             mg
9697             mg
9698             gm
9699             mg
9700             mg
9701             mg
9702             mg
9703             mg
9704             mg
9705             mg
9706             mg
9707             mg
9708             mg
9709             mg
9710             mg
9711             mg
9712  other specify
9713             mg
9714             mg
9715             mg
9716             mg
9717  other specify
9718             ml
9719             mg
9720             mg
9721             mg
9722  other specify
9723          units
9724             mg
9725             mg
9726             mg
9727             mg
9728             mg
9729  other specify
9730  other specify
9731             mg
9732             mg
9733             mg
9734             mg
9735             mg
9736             mg
9737             mg
9738             mg
9739             mg
9740             mg
9741             mg
9742             mg
9743             mg
9744  other specify
9745             mg
9746             mg
9747             mg
9748             mg
9749          drops
9750             mg
9751             mg
9752             mg
9753          drops
9754          drops
9755             mg
9756            mcg
9757             ml
9758             mg
9759          spray
9760             ml
9761           drop
9762             mg
9763             mg
9764             mg
9765             mg
9766             ml
9767             mg
9768             ml
9769            tbs
9770             ml
9771  other specify
9772             mg
9773             mg
9774             mg
9775             mg
9776             mg
9777             mg
9778            mcg
9779             mg
9780             mg
9781  other specify
9782             mg
9783             mg
9784             mg
9785            mcg
9786             mg
9787             mg
9788             mg
9789             oz
9790             oz
9791             mg
9792             mg
9793             mg
9794             mg
9795             mg
9796          drops
9797             oz
9798             mg
9799             mg
9800          spray
9801             mg
9802             mg
9803             mg
9804             mg
9805             mg
9806             mg
9807          drops
9808          drops
9809          drops
9810             mg
9811             mg
9812             mg
9813             mg
9814  other specify
9815             mg
9816             mg
9817             mg
9818             mg
9819            mcg
9820             mg
9821             ml
9822             mg
9823             ml
9824          drops
9825             ml
9826             ml
9827          drops
9828             mg
9829             mg
9830             mg
9831             mg
9832             mg
9833          spray
9834             mg
9835             ml
9836             mg
9837    unspecified
9838             mg
9839             ml
9840    unspecified
9841             mg
9842             mg
9843    unspecified
9844             mg
9845             mg
9846             mg
9847             mg
9848             mg
9849             mg
9850             mg
9851             mg
9852          drops
9853             mg
9854  other specify
9855             mg
9856             mg
9857             mg
9858             mg
9859             mg
9860             mg
9861             mg
9862             mg
9863           tbsp
9864             mg
9865         sprays
9866             mg
9867             mg
9868             mg
9869             mg
9870             mg
9871             mg
9872             ml
9873    unspecified
9874             mg
9875             mg
9876             mg
9877    unspecified
9878             mg
9879             mg
9880             ml
9881             mg
9882             mg
9883             mg
9884            ml 
9885          units
9886          units
9887          drops
9888  other specify
9889            ml 
9890           drop
9891           drop
9892           drop
9893           drop
9894          units
9895          units
9896          units
9897          drops
9898            tsp
9899           drop
9900           drop
9901           drop
9902          spray
9903          spray
9904  other specify
9905             ml
9906            tbs
9907    unspecified
9908             mg
9909             ml
9910             mg
9911             mg
9912             mg
9913             mg
9914             mg
9915  other specify
9916  other specify
9917          spray
9918  other specify
9919          mg/lb
9920             mg
9921             mg
9922             mg
9923             mg
9924          mg/kg
9925             mg
9926  other specify
9927             mg
9928    unspecified
9929             mg
9930             mg
9931           pump
9932             mg
9933             mg
9934             mg
9935          drops
9936             mg
9937             mg
9938             mg
9939             mg
9940             ml
9941             mg
9942          spray
9943             mg
9944          spray
9945             ml
9946             mg
9947            mcg
9948             mg
9949            mcg
9950            mcg
9951             mg
9952             mg
9953             mg
9954  other specify
9955             mg
9956             mg
9957             mg
9958             mg
9959             mg
9960            mcg
9961          drops
9962            mcg
9963          drops
9964  other specify
9965            mcg
9966             gm
9967            mcg
9968          spray
9969            mcg
9970             ml
9971            mcg
9972          units
9973             mg
9974            mcg
9975             mg
9976  other specify
9977             mg
9978             mg
9979            mcg
9980             mg
9981             mg
9982             ml
9983  other specify
9984             mg
9985             mg
9986             ml
9987  other specify
9988            mcg
9989             mg
9990             mg
9991          drops
9992            mcg
9993             mg
9994             mg
9995             mg
9996             mg
9997             mg
9998            mcg
9999             mg
10000            mg
10001           mcg
10002            mg
10003            mg
10004            mg
10005            mg
10006 other specify
10007            mg
10008            mg
10009            mg
10010           mcg
10011            mg
10012            mg
10013            mg
10014         drops
10015 other specify
10016            mg
10017          pump
10018            mg
10019            mg
10020            mg
10021            mg
10022            mg
10023 other specify
10024            mg
10025            mg
10026            mg
10027           tsp
10028            mg
10029            mg
10030            ml
10031            mg
10032            mg
10033            mg
10034            mg
10035            mg
10036         drops
10037         drops
10038            mg
10039            mg
10040            mg
10041            mg
10042   unspecified
10043            mg
10044            mg
10045            mg
10046            mg
10047            mg
10048           mcg
10049            mg
10050            mg
10051            mg
10052           mcg
10053         drops
10054            mg
10055           mcg
10056           mcg
10057            mg
10058            mg
10059            ml
10060         drops
10061          tube
10062           mcg
10063         drops
10064            mg
10065           mcg
10066          drop
10067            mg
10068            mg
10069            mg
10070            mg
10071            mg
10072           mcg
10073            mg
10074         drops
10075           mcg
10076            mg
10077           mcg
10078            mg
10079            mg
10080            mg
10081         drops
10082           mcg
10083           mcg
10084            mg
10085            mg
10086           mcg
10087            mg
10088            mg
10089            mg
10090            ml
10091            mg
10092         drops
10093   unspecified
10094            mg
10095            mg
10096           mcg
10097            mg
10098            ml
10099            oz
10100            mg
10101            ml
10102            mg
10103            mg
10104            mg
10105            mg
10106           mcg
10107            ml
10108           mcg
10109            ml
10110            ml
10111           mcg
10112           mcg
10113            ml
10114            mg
10115            ml
10116         drops
10117            mg
10118            ml
10119           mcg
10120         drops
10121         spray
10122            mg
10123            mg
10124            mg
10125            mg
10126         units
10127            mg
10128            mg
10129            mg
10130   unspecified
10131   unspecified
10132   unspecified
10133   unspecified
10134           ml 
10135            mg
10136            mg
10137            mg
10138            mg
10139            mg
10140            mg
10141            mg
10142 other specify
10143 other specify
10144 other specify
10145            mg
10146            mg
10147            mg
10148            mg
10149         drops
10150            ml
10151         drops
10152            mg
10153            mg
10154            mg
10155            mg
10156            mg
10157            mg
10158            mg
10159            mg
10160            mg
10161            mg
10162            mg
10163            mg
10164 other specify
10165            mg
10166            mg
10167         spray
10168            mg
10169            mg
10170            ml
10171            mg
10172 other specify
10173            mg
10174            mg
10175 other specify
10176          drop
10177            mg
10178            mg
10179            mg
10180            ml
10181 other specify
10182            mg
10183            ml
10184            mg
10185            mg
10186            mg
10187            ml
10188        sprays
10189            mg
10190            mg
10191            mg
10192            mg
10193            mg
10194            mg
10195            mg
10196            mg
10197            mg
10198            ml
10199            ml
10200          drop
10201           mcg
10202           mcg
10203           mcg
10204            mg
10205            mg
10206            mg
10207            mg
10208            mg
10209          drop
10210            ml
10211            ml
10212            mg
10213            mg
10214            mg
10215            mg
10216            mg
10217            mg
10218            mg
10219          tube
10220            gm
10221            mg
10222            mg
10223            mg
10224            mg
10225            mg
10226            mg
10227            mg
10228            mg
10229         drops
10230         spray
10231         drops
10232            mg
10233            mg
10234            mg
10235           mcg
10236           mcg
10237            mg
10238            mg
10239            mg
10240            mg
10241            mg
10242           mcg
10243            ml
10244            mg
10245         drops
10246            mg
10247 other specify
10248            ml
10249         drops
10250            mg
10251         drops
10252            mg
10253            mg
10254           mcg
10255            mg
10256            mg
10257            mg
10258            mg
10259            mg
10260   unspecified
10261 other specify
10262            mg
10263         drops
10264         spray
10265           tsp
10266            ml
10267            mg
10268 other specify
10269           mcg
10270         drops
10271            mg
10272            mg
10273            ml
10274         drops
10275            ml
10276         drops
10277            ml
10278 other specify
10279            mg
10280            mg
10281            mg
10282            mg
10283 other specify
10284            ml
10285 other specify
10286 other specify
10287            mg
10288            mg
10289            gm
10290            mg
10291 other specify
10292            mg
10293 other specify
10294            mg
10295            mg
10296            mg
10297            ml
10298            ml
10299            mg
10300 other specify
10301            mg
10302            mg
10303            mg
10304            mg
10305            mg
10306            mg
10307            mg
10308            mg
10309            mg
10310            mg
10311            mg
10312         drops
10313            mg
10314            mg
10315            mg
10316            mg
10317            mg
10318            ml
10319            ml
10320            mg
10321            mg
10322            mg
10323            mg
10324            ml
10325            mg
10326            mg
10327            mg
10328            gm
10329            mg
10330            mg
10331            mg
10332 other specify
10333 other specify
10334         drops
10335          tube
10336            mg
10337            mg
10338            mg
10339            mg
10340            mg
10341         units
10342         units
10343            mg
10344            mg
10345            ml
10346            mg
10347            ml
10348            ml
10349          tbsp
10350            mg
10351            mg
10352 other specify
10353            mg
10354            mg
10355            mg
10356          tbsp
10357            mg
10358            mg
10359            mg
10360            mg
10361 other specify
10362            mg
10363 other specify
10364            mg
10365        sprays
10366         drops
10367           mcg
10368            mg
10369            ml
10370           mcg
10371            ml
10372           mcg
10373            ml
10374           mcg
10375            ml
10376            mg
10377            mg
10378            mg
10379            mg
10380            mg
10381            mg
10382            mg
10383            mg
10384            mg
10385            mg
10386            mg
10387            mg
10388            mg
10389            mg
10390            mg
10391            mg
10392            mg
10393            mg
10394            mg
10395            mg
10396            mg
10397            mg
10398            mg
10399            mg
10400            ml
10401            ml
10402           mcg
10403          tube
10404           mcg
10405         pumps
10406           mcg
10407            mg
10408          tube
10409            mg
10410            mg
10411            mg
10412            mg
10413            mg
10414         drops
10415            mg
10416            mg
10417            mg
10418            mg
10419            mg
10420            mg
10421            mg
10422            mg
10423            mg
10424            mg
10425           mcg
10426 other specify
10427            mg
10428            gm
10429         drops
10430           mcg
10431            mg
10432           mcg
10433           mcg
10434           mcg
10435            ml
10436         drops
10437            mg
10438            mg
10439            mg
10440            ml
10441   unspecified
10442            mg
10443            mg
10444            mg
10445          pump
10446            mg
10447            mg
10448            mg
10449            mg
10450            mg
10451            mg
10452            mg
10453            mg
10454            mg
10455            mg
10456            mg
10457            mg
10458            mg
10459            mg
10460            mg
10461            mg
10462            mg
10463            gm
10464            mg
10465            ml
10466            mg
10467 other specify
10468           tbs
10469            oz
10470            gm
10471            oz
10472            mg
10473            mg
10474           mcg
10475            mg
10476         drops
10477           tsp
10478         drops
10479            mg
10480           mcg
10481           mcg
10482            mg
10483           mcg
10484            mg
10485           mcg
10486            mg
10487           mcg
10488            mg
10489            mg
10490            mg
10491         drops
10492            mg
10493            mg
10494            gm
10495            mg
10496            mg
10497            mg
10498            mg
10499            mg
10500            mg
10501           mcg
10502            mg
10503          tube
10504            mg
10505         drops
10506           mcg
10507           mcg
10508            mg
10509           mcg
10510           mcg
10511           mcg
10512           mcg
10513            mg
10514            mg
10515            mg
10516           mcg
10517            ml
10518            mg
10519            ml
10520            mg
10521            ml
10522            ml
10523            mg
10524            mg
10525            ml
10526          drop
10527            mg
10528            mg
10529         drops
10530 other specify
10531            mg
10532            mg
10533            mg
10534            gm
10535            mg
10536            gm
10537            mg
10538            ml
10539            mg
10540            mg
10541            mg
10542            mg
10543            mg
10544            mg
10545            mg
10546            mg
10547            mg
10548            mg
10549            ml
10550            mg
10551            mg
10552            mg
10553            mg
10554            mg
10555          tube
10556            mg
10557   unspecified
10558            mg
10559            mg
10560            mg
10561            mg
10562            mg
10563            mg
10564            mg
10565   unspecified
10566            mg
10567            mg
10568            mg
10569            mg
10570            mg
10571            mg
10572            mg
10573   unspecified
10574            mg
10575         drops
10576            mg
10577            mg
10578            mg
10579            mg
10580            mg
10581            mg
10582            mg
10583         drops
10584           mcg
10585           mcg
10586            mg
10587            mg
10588         drops
10589         drops
10590         drops
10591         drops
10592            mg
10593            mg
10594 other specify
10595 other specify
10596            mg
10597            ml
10598            mg
10599            mg
10600            mg
10601            mg
10602            ml
10603            mg
10604            mg
10605            mg
10606            mg
10607            mg
10608 other specify
10609            ml
10610           mcg
10611            mg
10612            mg
10613            mg
10614            mg
10615            mg
10616 other specify
10617            ml
10618            gm
10619            ml
10620            mg
10621            mg
10622            mg
10623            mg
10624         spray
10625           mcg
10626            mg
10627            mg
10628          tube
10629           mcg
10630            mg
10631           mcg
10632            mg
10633           mcg
10634            mg
10635            mg
10636            mg
10637            mg
10638           mcg
10639            mg
10640            mg
10641            mg
10642            oz
10643            mg
10644            mg
10645            mg
10646            mg
10647            mg
10648            mg
10649            mg
10650            mg
10651            mg
10652            mg
10653        sprays
10654            gm
10655         spray
10656            mg
10657            mg
10658            mg
10659            mg
10660            mg
10661            mg
10662            mg
10663            mg
10664            mg
10665            mg
10666            mg
10667            mg
10668            mg
10669            mg
10670            mg
10671            mg
10672            mg
10673            mg
10674 other specify
10675            mg
10676            mg
10677            mg
10678            mg
10679            mg
10680            mg
10681            mg
10682            mg
10683            ml
10684            ml
10685          tube
10686          tube
10687         drops
10688           tbs
10689          tube
10690            mg
10691            mg
10692         drops
10693            mg
10694         drops
10695            mg
10696         drops
10697           tbs
10698            mg
10699            mg
10700            mg
10701            mg
10702            mg
10703            mg
10704            mg
10705            mg
10706            mg
10707          tube
10708            mg
10709            mg
10710            mg
10711         drops
10712        sprays
10713         drops
10714         spray
10715           tbs
10716            mg
10717         drops
10718         drops
10719            mg
10720            mg
10721            ml
10722            ml
10723            ml
10724            ml
10725          drop
10726          tube
10727         drops
10728            ml
10729            ml
10730            ml
10731            ml
10732            mg
10733            mg
10734            mg
10735            ml
10736            mg
10737            mg
10738            mg
10739            mg
10740   unspecified
10741            mg
10742            mg
10743          drop
10744           mcg
10745           mcg
10746           mcg
10747            mg
10748           mcg
10749            mg
10750         drops
10751   unspecified
10752            ml
10753   unspecified
10754         drops
10755           mcg
10756           tsp
10757           mcg
10758            ml
10759            ml
10760           mcg
10761            ml
10762           mcg
10763            mg
10764            mg
10765           mcg
10766           mcg
10767            mg
10768            mg
10769           mcg
10770           mcg
10771            mg
10772            mg
10773           mcg
10774            gm
10775            mg
10776            mg
10777            mg
10778            ml
10779            mg
10780           tsp
10781           tsp
10782            mg
10783            mg
10784            mg
10785            mg
10786            mg
10787            mg
10788            mg
10789            mg
10790            mg
10791            mg
10792           mcg
10793            ml
10794            ml
10795            mg
10796           mcg
10797            mg
10798            mg
10799            ml
10800            mg
10801            ml
10802            mg
10803 other specify
10804            mg
10805 other specify
10806            mg
10807            mg
10808            mg
10809            mg
10810            mg
10811            mg
10812            mg
10813            ml
10814            mg
10815            mg
10816            mg
10817            mg
10818            mg
10819 other specify
10820 other specify
10821            mg
10822            mg
10823            mg
10824 other specify
10825            ml
10826            mg
10827         drops
10828            mg
10829            mg
10830          tube
10831            mg
10832            mg
10833            mg
10834            mg
10835            mg
10836            mg
10837            ml
10838            mg
10839            mg
10840           mcg
10841            ml
10842            ml
10843            ml
10844            mg
10845            mg
10846         drops
10847            gm
10848            mg
10849            gm
10850 other specify
10851 other specify
10852            mg
10853         drops
10854           mcg
10855            ml
10856            mg
10857           mcg
10858            ml
10859            mg
10860         units
10861         units
10862            mg
10863         drops
10864            mg
10865         units
10866         units
10867            mg
10868            mg
10869            ml
10870            ml
10871          tube
10872            mg
10873            mg
10874          pump
10875            ml
10876            mg
10877          tube
10878          tube
10879            mg
10880            mg
10881            mg
10882            mg
10883            mg
10884            mg
10885            mg
10886           mcg
10887            mg
10888           mcg
10889            ml
10890           mcg
10891           mcg
10892         drops
10893           mcg
10894            mg
10895            mg
10896         drops
10897           mcg
10898            ml
10899         drops
10900           mcg
10901         drops
10902            mg
10903            mg
10904            mg
10905         drops
10906            mg
10907         drops
10908            mg
10909            mg
10910            ml
10911            mg
10912            mg
10913           mcg
10914            mg
10915            ml
10916            ml
10917 other specify
10918            mg
10919 other specify
10920            mg
10921            ml
10922            mg
10923            mg
10924            mg
10925            mg
10926            mg
10927 other specify
10928         drops
10929         drops
10930            mg
10931           mcg
10932 other specify
10933 other specify
10934         drops
10935            mg
10936 other specify
10937            mg
10938         drops
10939 other specify
10940            mg
10941           mcg
10942            mg
10943            mg
10944            mg
10945         drops
10946         drops
10947           mcg
10948            ml
10949           mcg
10950 other specify
10951            mg
10952           mcg
10953         drops
10954           mcg
10955           mcg
10956           mcg
10957            mg
10958           mcg
10959         drops
10960            mg
10961            mg
10962            mg
10963            mg
10964            mg
10965            mg
10966 other specify
10967 other specify
10968 other specify
10969 other specify
10970            ml
10971            ml
10972            mg
10973            gm
10974 other specify
10975            mg
10976            mg
10977            mg
10978            mg
10979            mg
10980            mg
10981            mg
10982            mg
10983            mg
10984         drops
10985 other specify
10986            mg
10987            mg
10988            mg
10989 other specify
10990 other specify
10991            mg
10992            mg
10993            mg
10994         units
10995         units
10996            mg
10997           mcg
10998 other specify
10999            mg
11000           mcg
11001            mg
11002 other specify
11003         drops
11004            mg
11005            mg
11006         units
11007 other specify
11008         drops
11009          drop
11010         drops
11011            ml
11012            mg
11013            mg
11014            mg
11015            mg
11016         spray
11017            mg
11018            mg
11019            mg
11020            mg
11021   unspecified
11022            mg
11023         drops
11024            mg
11025           mcg
11026            mg
11027            mg
11028            mg
11029            mg
11030           mcg
11031            mg
11032            ml
11033           mcg
11034            mg
11035         drops
11036           tsp
11037          tube
11038          tube
11039 other specify
11040 other specify
11041 other specify
11042 other specify
11043            mg
11044            mg
11045            mg
11046            mg
11047            mg
11048         drops
11049            mg
11050           mcg
11051         drops
11052          pump
11053            mg
11054            mg
11055            mg
11056            mg
11057            mg
11058            gm
11059            mg
11060         units
11061            mg
11062 other specify
11063            mg
11064         units
11065            mg
11066            mg
11067            mg
11068            ml
11069           ml 
11070          drop
11071            mg
11072            mg
11073            mg
11074            mg
11075         drops
11076            mg
11077            mg
11078            mg
11079            mg
11080            mg
11081            mg
11082            mg
11083            mg
11084            mg
11085   unspecified
11086            mg
11087            mg
11088   unspecified
11089         drops
11090           mcg
11091 other specify
11092            mg
11093            mg
11094            mg
11095           mcg
11096           mcg
11097            mg
11098            mg
11099           mcg
11100            mg
11101           mcg
11102            mg
11103            mg
11104            mg
11105            ml
11106 other specify
11107            mg
11108            mg
11109 other specify
11110            mg
11111            gm
11112            mg
11113            ml
11114            mg
11115            mg
11116            mg
11117            mg
11118            mg
11119            ml
11120            gm
11121            oz
11122            oz
11123            oz
11124            mg
11125           mcg
11126            mg
11127            mg
11128            mg
11129            mg
11130            ml
11131            mg
11132            gm
11133           mcg
11134        sprays
11135            mg
11136            oz
11137            oz
11138            gm
11139            mg
11140            mg
11141            gm
11142   unspecified
11143            mg
11144            oz
11145            oz
11146            mg
11147            mg
11148            mg
11149            mg
11150            mg
11151            mg
11152          drop
11153          tbsp
11154            mg
11155         units
11156         units
11157            mg
11158           ml 
11159         units
11160            mg
11161            mg
11162            mg
11163         units
11164            mg
11165         drops
11166 other specify
11167            mg
11168            mg
11169            mg
11170            mg
11171            mg
11172            mg
11173            mg
11174            mg
11175            mg
11176            mg
11177            mg
11178            mg
11179            mg
11180            ml
11181            mg
11182   unspecified
11183            mg
11184           mcg
11185           mcg
11186         spray
11187            mg
11188            mg
11189            mg
11190            mg
11191 other specify
11192            mg
11193            mg
11194            mg
11195            mg
11196            mg
11197            mg
11198            mg
11199            mg
11200 other specify
11201            mg
11202            mg
11203 other specify
11204            mg
11205            mg
11206           mcg
11207           mcg
11208            mg
11209            mg
11210          pump
11211         drops
11212            ml
11213   unspecified
11214            mg
11215            mg
11216            mg
11217            mg
11218            mg
11219            gm
11220            mg
11221            mg
11222            mg
11223            mg
11224          drop
11225            mg
11226            mg
11227 other specify
11228          tube
11229           mcg
11230         drops
11231            mg
11232            mg
11233          tube
11234            mg
11235            mg
11236            mg
11237            mg
11238            mg
11239            mg
11240            mg
11241            mg
11242         drops
11243            mg
11244            mg
11245            mg
11246            mg
11247            mg
11248            mg
11249            mg
11250            mg
11251            mg
11252            mg
11253            mg
11254           tsp
11255            mg
11256            mg
11257            mg
11258 other specify
11259            mg
11260           tsp
11261            mg
11262            mg
11263            mg
11264           tsp
11265            mg
11266           tsp
11267         units
11268         units
11269            mg
11270            mg
11271         units
11272         drops
11273            mg
11274            mg
11275            mg
11276            mg
11277            mg
11278            mg
11279            mg
11280            mg
11281            mg
11282            mg
11283            mg
11284            mg
11285            mg
11286            mg
11287            mg
11288            mg
11289            mg
11290            mg
11291          drop
11292         spray
11293            ml
11294          tube
11295            gm
11296         spray
11297            mg
11298 other specify
11299            ml
11300            mg
11301            mg
11302           mcg
11303           mcg
11304            mg
11305            mg
11306            mg
11307          tube
11308            mg
11309 other specify
11310 other specify
11311           mcg
11312           mcg
11313            mg
11314            mg
11315            mg
11316            mg
11317            mg
11318            mg
11319            mg
11320            mg
11321 other specify
11322            mg
11323            ml
11324            ml
11325 other specify
11326            ml
11327            gm
11328 other specify
11329 other specify
11330 other specify
11331            mg
11332            mg
11333            mg
11334 other specify
11335            mg
11336         drops
11337            mg
11338            ml
11339            mg
11340            mg
11341 other specify
11342 other specify
11343            mg
11344 other specify
11345 other specify
11346          drop
11347           mcg
11348            mg
11349          drop
11350         units
11351         units
11352         units
11353            mg
11354         units
11355            mg
11356          tube
11357            mg
11358            mg
11359            mg
11360   unspecified
11361            mg
11362 other specify
11363            mg
11364            mg
11365            mg
11366 other specify
11367            mg
11368        sprays
11369            mg
11370            mg
11371            mg
11372            mg
11373           mcg
11374            mg
11375            mg
11376            mg
11377 other specify
11378           mcg
11379            mg
11380            mg
11381 other specify
11382            mg
11383            mg
11384            ml
11385         spray
11386          tube
11387         drops
11388          tube
11389         drops
11390 other specify
11391            mg
11392            mg
11393            mg
11394            ml
11395            mg
11396            mg
11397            gm
11398            mg
11399 other specify
11400            mg
11401            mg
11402            mg
11403            mg
11404            mg
11405            mg
11406            mg
11407            mg
11408            mg
11409 other specify
11410            mg
11411            mg
11412            mg
11413            mg
11414            mg
11415            ml
11416            mg
11417            mg
11418            mg
11419 other specify
11420            mg
11421            ml
11422            gm
11423            ml
11424            ml
11425 other specify
11426            mg
11427            mg
11428            mg
11429            mg
11430            mg
11431            mg
11432            mg
11433            mg
11434            mg
11435            mg
11436         drops
11437         drops
11438            mg
11439            ml
11440            mg
11441            mg
11442         drops
11443            mg
11444         drops
11445            mg
11446            ml
11447            mg
11448            mg
11449            mg
11450            mg
11451 other specify
11452            mg
11453            ml
11454            mg
11455            mg
11456            mg
11457            mg
11458            mg
11459            ml
11460            mg
11461 other specify
11462            ml
11463            mg
11464          drop
11465            mg
11466            mg
11467            gm
11468            mg
11469            ml
11470   unspecified
11471   unspecified
11472            mg
11473            ml
11474 other specify
11475           mcg
11476            mg
11477            ml
11478 other specify
11479 other specify
11480            mg
11481            mg
11482         mg/lb
11483            mg
11484            mg
11485            mg
11486            mg
11487            mg
11488            mg
11489            ml
11490            mg
11491            mg
11492            ml
11493   unspecified
11494            mg
11495            mg
11496            mg
11497            mg
11498            mg
11499            mg
11500            mg
11501            mg
11502            gm
11503            mg
11504            gm
11505 other specify
11506 other specify
11507 other specify
11508            mg
11509            ml
11510           mcg
11511            mg
11512         drops
11513         drops
11514           mcg
11515            mg
11516            mg
11517           mcg
11518            mg
11519 other specify
11520           mcg
11521            mg
11522           mcg
11523            mg
11524            mg
11525            mg
11526            mg
11527            mg
11528            mg
11529            mg
11530            mg
11531            mg
11532            mg
11533            mg
11534            mg
11535            mg
11536            mg
11537         units
11538         units
11539            mg
11540            mg
11541            mg
11542            mg
11543            mg
11544            mg
11545            mg
11546          drop
11547            mg
11548            mg
11549 other specify
11550 other specify
11551   unspecified
11552            mg
11553 other specify
11554            mg
11555            mg
11556            mg
11557            mg
11558 other specify
11559           mcg
11560         drops
11561         spray
11562          tube
11563            mg
11564         units
11565            mg
11566            mg
11567         drops
11568         drops
11569            mg
11570         drops
11571            ml
11572            mg
11573            mg
11574            mg
11575   unspecified
11576   unspecified
11577   unspecified
11578   unspecified
11579            mg
11580            mg
11581            mg
11582            mg
11583 other specify
11584            gm
11585           tsp
11586 other specify
11587            mg
11588         drops
11589         drops
11590 other specify
11591           mcg
11592            mg
11593         drops
11594 other specify
11595 other specify
11596            ml
11597           mcg
11598 other specify
11599         drops
11600           tsp
11601           mcg
11602           mcg
11603            mg
11604           mcg
11605            mg
11606            mg
11607            mg
11608         drops
11609 other specify
11610            ml
11611            mg
11612            ml
11613            mg
11614            mg
11615            mg
11616            mg
11617            mg
11618            mg
11619            mg
11620         drops
11621         drops
11622            mg
11623            mg
11624            mg
11625            mg
11626            mg
11627         units
11628         units
11629         drops
11630         units
11631           mcg
11632 other specify
11633           mcg
11634            mg
11635           mcg
11636            mg
11637         drops
11638            mg
11639           mcg
11640            mg
11641            mg
11642            mg
11643         units
11644            mg
11645            mg
11646         drops
11647            gm
11648            mg
11649 other specify
11650 other specify
11651         drops
11652         drops
11653         spray
11654         drops
11655          drop
11656            ml
11657            mg
11658            mg
11659            mg
11660          tube
11661            ml
11662         drops
11663 other specify
11664         drops
11665            mg
11666         drops
11667         drops
11668            mg
11669            mg
11670            mg
11671         drops
11672            mg
11673         drops
11674            mg
11675            mg
11676            ml
11677            mg
11678         drops
11679            mg
11680            ml
11681            ml
11682            ml
11683            ml
11684 other specify
11685            mg
11686            mg
11687            mg
11688            mg
11689            ml
11690            mg
11691            ml
11692         drops
11693           tbs
11694            mg
11695            gm
11696            mg
11697            mg
11698 other specify
11699 other specify
11700 other specify
11701            ml
11702           mcg
11703           mcg
11704            mg
11705            mg
11706            mg
11707            mg
11708           mcg
11709         drops
11710            ml
11711            ml
11712            mg
11713            ml
11714 other specify
11715 other specify
11716            mg
11717         drops
11718            mg
11719         units
11720            mg
11721            mg
11722         drops
11723            mg
11724 other specify
11725            mg
11726            mg
11727            gm
11728 other specify
11729 other specify
11730            mg
11731            mg
11732            mg
11733            mg
11734            mg
11735         drops
11736         drops
11737            mg
11738            mg
11739            mg
11740            mg
11741          tube
11742            ml
11743            mg
11744 other specify
11745            mg
11746            mg
11747            mg
11748            mg
11749            mg
11750            mg
11751            mg
11752            mg
11753            mg
11754            mg
11755            mg
11756            mg
11757            mg
11758            mg
11759            mg
11760            ml
11761            mg
11762            mg
11763            mg
11764            mg
11765            mg
11766            mg
11767            mg
11768 other specify
11769            mg
11770            mg
11771         units
11772            mg
11773            mg
11774            mg
11775            mg
11776            ml
11777            mg
11778            mg
11779            ml
11780            mg
11781            mg
11782            mg
11783            mg
11784            mg
11785            mg
11786         drops
11787            mg
11788            mg
11789            mg
11790         drops
11791            mg
11792            mg
11793            mg
11794         drops
11795            gm
11796           mcg
11797            mg
11798           mcg
11799            mg
11800            mg
11801            mg
11802            mg
11803            mg
11804         drops
11805            mg
11806         spray
11807            mg
11808 other specify
11809            mg
11810            mg
11811           tsp
11812         drops
11813            mg
11814         spray
11815 other specify
11816 other specify
11817            mg
11818            mg
11819            ml
11820            mg
11821            ml
11822          tube
11823            ml
11824            ml
11825            ml
11826            mg
11827            mg
11828            mg
11829            mg
11830            mg
11831            mg
11832           mcg
11833 other specify
11834            gm
11835            ml
11836         drops
11837          pump
11838            gm
11839            mg
11840            mg
11841            mg
11842            mg
11843            mg
11844            mg
11845            mg
11846            mg
11847          pump
11848         drops
11849            mg
11850            mg
11851         drops
11852            mg
11853            mg
11854            mg
11855            mg
11856         drops
11857            mg
11858            mg
11859            mg
11860            mg
11861           mcg
11862           mcg
11863            mg
11864            mg
11865            mg
11866            mg
11867         drops
11868            mg
11869            mg
11870            mg
11871            mg
11872         drops
11873         drops
11874          tube
11875         drops
11876            mg
11877            mg
11878            mg
11879         drops
11880            mg
11881            ml
11882         drops
11883            mg
11884            mg
11885 other specify
11886         drops
11887         drops
11888            mg
11889            gm
11890            mg
11891            mg
11892 other specify
11893 other specify
11894 other specify
11895            mg
11896            mg
11897            mg
11898           mcg
11899            mg
11900            mg
11901           mcg
11902            mg
11903            mg
11904           mcg
11905            mg
11906            mg
11907            mg
11908            mg
11909            mg
11910            mg
11911            mg
11912           mcg
11913            iu
11914            mg
11915            mg
11916            mg
11917            mg
11918            mg
11919            ml
11920            mg
11921            mg
11922            mg
11923            mg
11924            mg
11925            mg
11926           mcg
11927           mcg
11928           mcg
11929            gm
11930          drop
11931            mg
11932            mg
11933            gm
11934            mg
11935            mg
11936            mg
11937            mg
11938            mg
11939            mg
11940            mg
11941            mg
11942            mg
11943            mg
11944            mg
11945            mg
11946            mg
11947           mcg
11948            mg
11949            mg
11950            ml
11951            mg
11952            mg
11953            ml
11954            mg
11955            mg
11956            mg
11957            mg
11958            mg
11959            mg
11960         spray
11961            mg
11962            mg
11963            mg
11964          drop
11965            mg
11966         drops
11967         drops
11968         drops
11969         drops
11970         drops
11971            mg
11972            mg
11973            mg
11974            gm
11975            gm
11976            mg
11977            mg
11978          tube
11979            ml
11980         drops
11981            mg
11982            mg
11983         units
11984            mg
11985            mg
11986         drops
11987         drops
11988 other specify
11989            mg
11990 other specify
11991         drops
11992         units
11993         drops
11994         units
11995         drops
11996            mg
11997         drops
11998            mg
11999            mg
12000            mg
12001            mg
12002            mg
12003            ml
12004            mg
12005         drops
12006 other specify
12007 other specify
12008 other specify
12009         drops
12010         drops
12011 other specify
12012            mg
12013            mg
12014            ml
12015 other specify
12016            mg
12017            mg
12018            ml
12019         spray
12020          tube
12021           mcg
12022            mg
12023         mg/kg
12024           mcg
12025            mg
12026            mg
12027           mcg
12028            mg
12029            mg
12030            mg
12031           mcg
12032           mcg
12033            mg
12034            mg
12035            mg
12036           mcg
12037            mg
12038           mcg
12039            mg
12040            mg
12041            mg
12042            mg
12043            mg
12044            mg
12045            mg
12046            mg
12047            mg
12048            ml
12049           mcg
12050            mg
12051            gm
12052            mg
12053            mg
12054         drops
12055            mg
12056            mg
12057            gm
12058           mcg
12059            mg
12060            mg
12061           mcg
12062            mg
12063            mg
12064            mg
12065           mcg
12066            mg
12067            mg
12068         drops
12069            mg
12070           mcg
12071            mg
12072            mg
12073            mg
12074            mg
12075            mg
12076            mg
12077            mg
12078            ml
12079            mg
12080            mg
12081            mg
12082            ml
12083 other specify
12084            mg
12085            mg
12086           mcg
12087            ml
12088            mg
12089            mg
12090         pumps
12091            mg
12092         drops
12093 other specify
12094 other specify
12095            mg
12096            mg
12097            mg
12098 other specify
12099 other specify
12100 other specify
12101 other specify
12102 other specify
12103            ml
12104 other specify
12105 other specify
12106            mg
12107 other specify
12108         drops
12109            mg
12110            mg
12111            ml
12112         units
12113         units
12114            mg
12115            mg
12116         drops
12117         drops
12118            mg
12119            mg
12120   unspecified
12121            mg
12122            mg
12123            mg
12124            mg
12125            ml
12126            mg
12127           mcg
12128            ml
12129            ml
12130         drops
12131            mg
12132         drops
12133            mg
12134            mg
12135            ml
12136            ml
12137            mg
12138            mg
12139           mcg
12140            mg
12141            mg
12142 other specify
12143 other specify
12144 other specify
12145            mg
12146           mcg
12147            mg
12148            mg
12149            mg
12150            mg
12151           mcg
12152            mg
12153            mg
12154            gm
12155         spray
12156           mcg
12157            mg
12158            mg
12159          drop
12160         drops
12161            mg
12162            mg
12163            mg
12164         spray
12165            mg
12166            mg
12167 other specify
12168            ml
12169            mg
12170            mg
12171            mg
12172            mg
12173         drops
12174            ml
12175            mg
12176            mg
12177            mg
12178            mg
12179            mg
12180            ml
12181            mg
12182         drops
12183            mg
12184 other specify
12185         drops
12186           mcg
12187           mcg
12188           mcg
12189            mg
12190         drops
12191            mg
12192           mcg
12193            ml
12194            ug
12195            ml
12196           mcg
12197            mg
12198            mg
12199 other specify
12200 other specify
12201            gm
12202            mg
12203            mg
12204            mg
12205   unspecified
12206         drops
12207            mg
12208            mg
12209            gm
12210            mg
12211           mcg
12212            mg
12213           mcg
12214           mcg
12215           mcg
12216            mg
12217            mg
12218            mg
12219            mg
12220           mcg
12221           tsp
12222           tsp
12223          tube
12224            mg
12225            mg
12226 other specify
12227 other specify
12228            mg
12229 other specify
12230            mg
12231            mg
12232            mg
12233            mg
12234            mg
12235            ml
12236            mg
12237            mg
12238            mg
12239            mg
12240            mg
12241            mg
12242            mg
12243            mg
12244            mg
12245            gm
12246         drops
12247         drops
12248            ml
12249           mcg
12250            gm
12251            mg
12252            mg
12253           mcg
12254            mg
12255 other specify
12256            mg
12257            ml
12258            mg
12259            ml
12260            ml
12261          tube
12262            mg
12263            mg
12264            mg
12265 other specify
12266 other specify
12267 other specify
12268 other specify
12269            mg
12270            mg
12271          tube
12272 other specify
12273          tube
12274            mg
12275 other specify
12276 other specify
12277            mg
12278 other specify
12279         drops
12280            mg
12281            mg
12282 other specify
12283            mg
12284            mg
12285            mg
12286            mg
12287            mg
12288            mg
12289 other specify
12290            mg
12291            mg
12292            mg
12293            mg
12294            mg
12295            mg
12296            mg
12297            mg
12298            mg
12299            mg
12300            mg
12301            mg
12302            mg
12303            mg
12304            ml
12305            mg
12306           tsp
12307            mg
12308            mg
12309           tsp
12310            mg
12311         drops
12312            mg
12313            mg
12314            mg
12315            mg
12316            mg
12317 other specify
12318            mg
12319 other specify
12320            mg
12321            ml
12322            mg
12323            mg
12324         drops
12325            mg
12326            mg
12327            gm
12328            ml
12329            ml
12330            ml
12331            mg
12332            mg
12333            mg
12334            mg
12335            mg
12336            mg
12337         drops
12338            iu
12339            mg
12340            mg
12341            mg
12342            ml
12343          tube
12344            mg
12345            mg
12346            mg
12347 other specify
12348            mg
12349          tube
12350            mg
12351            mg
12352            mg
12353            mg
12354            mg
12355            ml
12356            mg
12357 other specify
12358 other specify
12359            mg
12360            mg
12361 other specify
12362            ml
12363            ml
12364            mg
12365            mg
12366         spray
12367            mg
12368            mg
12369            mg
12370            mg
12371            mg
12372            mg
12373 other specify
12374            mg
12375            mg
12376            mg
12377            mg
12378            mg
12379            mg
12380            mg
12381            mg
12382            oz
12383            mg
12384           mcg
12385           mcg
12386            ml
12387            mg
12388           mcg
12389            mg
12390            mg
12391            mg
12392            mg
12393            mg
12394   unspecified
12395           mcg
12396            mg
12397            mg
12398           mcg
12399 other specify
12400            ml
12401 other specify
12402          tbsp
12403            ml
12404            mg
12405           tsp
12406         spray
12407 other specify
12408            ml
12409            ml
12410            ml
12411         drops
12412            mg
12413            ml
12414          drop
12415          pump
12416 other specify
12417         spray
12418         spray
12419            mg
12420         drops
12421         units
12422         units
12423         drops
12424            mg
12425            ml
12426            mg
12427   unspecified
12428            mg
12429         drops
12430         drops
12431          tube
12432         drops
12433           mcg
12434            mg
12435           mcg
12436            mg
12437            mg
12438           mcg
12439            mg
12440            mg
12441            ml
12442            ml
12443            mg
12444            mg
12445            mg
12446            mg
12447           mcg
12448            ml
12449            mg
12450            mg
12451            gm
12452            mg
12453           mcg
12454         spray
12455           mcg
12456          tube
12457         drops
12458            mg
12459 other specify
12460            mg
12461          tube
12462         spray
12463           tbs
12464            mg
12465         drops
12466            mg
12467            mg
12468            mg
12469            mg
12470            mg
12471            mg
12472            mg
12473          pump
12474          drop
12475            mg
12476            mg
12477   unspecified
12478            mg
12479            mg
12480            mg
12481            ml
12482            mg
12483            mg
12484            mg
12485         drops
12486            mg
12487            mg
12488            mg
12489            mg
12490           mcg
12491            mg
12492            mg
12493         drops
12494            mg
12495         drops
12496 other specify
12497         pumps
12498            gm
12499            mg
12500            gm
12501            mg
12502            mg
12503            gm
12504            mg
12505            mg
12506         drops
12507            mg
12508            mg
12509            mg
12510            mg
12511            ml
12512         drops
12513            mg
12514         drops
12515         units
12516         units
12517            mg
12518            mg
12519            mg
12520            ml
12521            gm
12522            mg
12523         drops
12524         units
12525         units
12526            mg
12527         units
12528         drops
12529         spray
12530          drop
12531            mg
12532            mg
12533            mg
12534            mg
12535         drops
12536         units
12537            mg
12538            mg
12539 other specify
12540            ml
12541         spray
12542            ml
12543            ml
12544 other specify
12545 other specify
12546          tube
12547         units
12548         units
12549         units
12550            ml
12551           tsp
12552          tube
12553            gm
12554            gm
12555            mg
12556 other specify
12557            mg
12558            mg
12559            mg
12560            mg
12561            mg
12562            gm
12563            mg
12564            mg
12565            mg
12566            mg
12567         drops
12568            mg
12569            mg
12570            oz
12571            gm
12572            mg
12573            mg
12574            mg
12575           mcg
12576            mg
12577 other specify
12578           mcg
12579            mg
12580           mcg
12581            mg
12582            mg
12583            mg
12584            mg
12585           mcg
12586            mg
12587            mg
12588            mg
12589           mcg
12590            mg
12591            mg
12592            mg
12593            mg
12594            mg
12595            mg
12596            mg
12597            mg
12598            mg
12599         drops
12600            mg
12601            mg
12602           mcg
12603            mg
12604            mg
12605            mg
12606           mcg
12607            mg
12608            mg
12609            mg
12610            mg
12611            mg
12612           mcg
12613           mcg
12614 other specify
12615            ml
12616          tube
12617 other specify
12618           mcg
12619            mg
12620          tube
12621            mg
12622            mg
12623         drops
12624            mg
12625 other specify
12626            mg
12627            mg
12628            ml
12629            ml
12630         units
12631            mg
12632         drops
12633            mg
12634            mg
12635            mg
12636   unspecified
12637            mg
12638          pump
12639          pump
12640            mg
12641           mcg
12642           mcg
12643            mg
12644            mg
12645            mg
12646         drops
12647            mg
12648            mg
12649            mg
12650            mg
12651            mg
12652            mg
12653            mg
12654            mg
12655            mg
12656            mg
12657           mcg
12658           mcg
12659           mcg
12660           mcg
12661            mg
12662            mg
12663            mg
12664            mg
12665            mg
12666            mg
12667            mg
12668 other specify
12669            mg
12670            mg
12671 other specify
12672            mg
12673            mg
12674            mg
12675            gm
12676            gm
12677            ml
12678            mg
12679            mg
12680            mg
12681            mg
12682            mg
12683 other specify
12684            mg
12685            ml
12686         spray
12687            mg
12688            mg
12689            mg
12690            mg
12691            mg
12692            mg
12693         spray
12694 other specify
12695            mg
12696            mg
12697            mg
12698            mg
12699            mg
12700            mg
12701            mg
12702            mg
12703            mg
12704            mg
12705            mg
12706            mg
12707            mg
12708            ml
12709            mg
12710           mcg
12711         drops
12712         drops
12713            mg
12714         drops
12715           mcg
12716           mcg
12717           mcg
12718         drops
12719            mg
12720            mg
12721            mg
12722            mg
12723            mg
12724           mcg
12725           mcg
12726            mg
12727            mg
12728 other specify
12729            mg
12730         drops
12731            mg
12732         drops
12733            mg
12734            mg
12735         drops
12736            mg
12737            mg
12738            mg
12739            mg
12740            mg
12741            mg
12742            mg
12743            mg
12744            mg
12745            ml
12746            mg
12747 other specify
12748            ml
12749            mg
12750            mg
12751 other specify
12752            ml
12753            mg
12754            mg
12755            mg
12756         drops
12757            mg
12758            mg
12759            mg
12760            mg
12761           mcg
12762            mg
12763           mcg
12764           mcg
12765            mg
12766            mg
12767           mcg
12768           mcg
12769            mg
12770            mg
12771            gm
12772            mg
12773            mg
12774         drops
12775            mg
12776            mg
12777            mg
12778            mg
12779            mg
12780         spray
12781         drops
12782            mg
12783            mg
12784            ml
12785            mg
12786            ml
12787         drops
12788          tbsp
12789           mcg
12790            mg
12791            mg
12792            mg
12793            mg
12794            mg
12795         pumps
12796            gm
12797            gm
12798            mg
12799            mg
12800 other specify
12801         drops
12802            mg
12803            mg
12804 other specify
12805 other specify
12806            mg
12807 other specify
12808 other specify
12809            mg
12810            mg
12811            mg
12812 other specify
12813 other specify
12814 other specify
12815            mg
12816            mg
12817            mg
12818            mg
12819            mg
12820            mg
12821            mg
12822            mg
12823            mg
12824            mg
12825            mg
12826            ml
12827            mg
12828          tube
12829            mg
12830            mg
12831            mg
12832            mg
12833            mg
12834            mg
12835            gm
12836            mg
12837 other specify
12838           mcg
12839            mg
12840           mcg
12841 other specify
12842           mcg
12843            mg
12844            mg
12845            mg
12846            mg
12847           mcg
12848            ml
12849         drops
12850         drops
12851 other specify
12852            mg
12853            mg
12854 other specify
12855 other specify
12856 other specify
12857 other specify
12858 other specify
12859            mg
12860         mg/kg
12861         drops
12862 other specify
12863 other specify
12864 other specify
12865         drops
12866          pump
12867            mg
12868 other specify
12869 other specify
12870         spray
12871            mg
12872            mg
12873         drops
12874            mg
12875            mg
12876            mg
12877            mg
12878            mg
12879          tube
12880         drops
12881          tube
12882         drops
12883            mg
12884            mg
12885            mg
12886            mg
12887            mg
12888            mg
12889 other specify
12890 other specify
12891            mg
12892 other specify
12893            mg
12894         drops
12895         drops
12896            mg
12897            mg
12898            gm
12899            mg
12900           mcg
12901           mcg
12902            mg
12903            mg
12904            mg
12905            ml
12906         drops
12907         spray
12908         drops
12909            mg
12910            mg
12911   unspecified
12912            mg
12913         drops
12914            mg
12915            mg
12916         spray
12917            mg
12918            mg
12919           mcg
12920         drops
12921           mcg
12922            ml
12923            mg
12924            mg
12925            mg
12926         drops
12927           mcg
12928           mcg
12929         drops
12930            mg
12931 other specify
12932         units
12933         drops
12934            ml
12935            mg
12936            mg
12937            ml
12938            mg
12939            mg
12940         units
12941            mg
12942         drops
12943         drops
12944 other specify
12945         spray
12946            mg
12947            mg
12948          tube
12949           mcg
12950            ml
12951            mg
12952          pump
12953         drops
12954            mg
12955            ml
12956            ml
12957         drops
12958 other specify
12959          tube
12960           mcg
12961           mcg
12962         drops
12963          drop
12964           mcg
12965           mcg
12966         drops
12967            mg
12968            mg
12969            mg
12970         units
12971            mg
12972            mg
12973            mg
12974            mg
12975            mg
12976            mg
12977            mg
12978            mg
12979            oz
12980            mg
12981           mcg
12982            mg
12983            mg
12984            ml
12985            mg
12986            mg
12987            mg
12988           mcg
12989           mcg
12990            mg
12991           mcg
12992 other specify
12993           mcg
12994            gm
12995 other specify
12996            mg
12997            mg
12998            mg
12999           mcg
13000            mg
13001            mg
13002            mg
13003            mg
13004            mg
13005            ml
13006         drops
13007            mg
13008         drops
13009            mg
13010   unspecified
13011            mg
13012            mg
13013   unspecified
13014            mg
13015            mg
13016            mg
13017            mg
13018            mg
13019            mg
13020   unspecified
13021            gm
13022 other specify
13023            mg
13024            mg
13025            mg
13026            mg
13027            mg
13028            mg
13029            ml
13030            mg
13031            mg
13032            mg
13033            mg
13034 other specify
13035           mcg
13036            oz
13037           mcg
13038           mcg
13039           mcg
13040           mcg
13041         drops
13042           mcg
13043           mcg
13044         drops
13045           mcg
13046            mg
13047            mg
13048            mg
13049          tube
13050            mg
13051            mg
13052            mg
13053            mg
13054            mg
13055            mg
13056            mg
13057            ml
13058           mcg
13059            mg
13060            ml
13061         spray
13062            ml
13063            mg
13064            mg
13065           mcg
13066            mg
13067           mcg
13068            mg
13069            mg
13070            mg
13071            ml
13072            ml
13073            mg
13074   unspecified
13075         units
13076         units
13077            mg
13078            mg
13079            mg
13080            mg
13081   unspecified
13082            mg
13083            mg
13084            mg
13085            ml
13086            mg
13087            mg
13088            mg
13089            mg
13090            mg
13091            mg
13092            mg
13093            ml
13094           mcg
13095            mg
13096            gm
13097           tsp
13098            mg
13099            mg
13100 other specify
13101            ml
13102 other specify
13103 other specify
13104   unspecified
13105            mg
13106 other specify
13107            mg
13108            mg
13109            mg
13110         mg/m2
13111         mg/m2
13112         mg/m2
13113         mg/kg
13114            mg
13115            mg
13116            mg
13117            mg
13118            mg
13119            mg
13120            mg
13121            mg
13122            mg
13123 other specify
13124         drops
13125           mcg
13126         drops
13127            ml
13128            mg
13129         spray
13130            ml
13131            mg
13132            mg
13133         drops
13134           mcg
13135            mg
13136          tube
13137            gm
13138         drops
13139           mcg
13140            mg
13141         drops
13142         drops
13143          tube
13144            mg
13145            mg
13146            mg
13147            mg
13148            mg
13149           tsp
13150         drops
13151            ml
13152            ml
13153            mg
13154            mg
13155            mg
13156            mg
13157          drop
13158            mg
13159   unspecified
13160   unspecified
13161            mg
13162            mg
13163            mg
13164            mg
13165            mg
13166            mg
13167 other specify
13168            gm
13169          tube
13170         drops
13171            mg
13172            mg
13173         drops
13174 other specify
13175            mg
13176            mg
13177            mg
13178            mg
13179            mg
13180            mg
13181            ml
13182            ml
13183            mg
13184            mg
13185            ml
13186            mg
13187         drops
13188            ml
13189           mcg
13190            mg
13191         drops
13192            mg
13193 other specify
13194            ml
13195         drops
13196         drops
13197            mg
13198         drops
13199            ml
13200            mg
13201           mcg
13202            mg
13203            ml
13204            mg
13205            mg
13206            mg
13207         drops
13208            ml
13209            ml
13210            ml
13211            mg
13212            mg
13213            mg
13214            mg
13215            ml
13216            ml
13217            mg
13218            mg
13219 other specify
13220 other specify
13221            mg
13222            mg
13223            mg
13224            ml
13225            mg
13226            ml
13227            ml
13228            mg
13229            mg
13230         drops
13231            mg
13232            mg
13233         drops
13234            mg
13235            mg
13236            mg
13237         drops
13238            mg
13239            mg
13240            mg
13241            mg
13242            ml
13243            mg
13244            mg
13245 other specify
13246         drops
13247            mg
13248         units
13249         units
13250            mg
13251            mg
13252            ml
13253 other specify
13254            mg
13255            mg
13256            mg
13257            mg
13258            mg
13259            mg
13260           mcg
13261            mg
13262           mcg
13263           mcg
13264           mcg
13265            mg
13266            mg
13267           mcg
13268            mg
13269            mg
13270            mg
13271          pump
13272 other specify
13273 other specify
13274           mcg
13275            ml
13276            mg
13277         drops
13278            gm
13279            ml
13280            mg
13281            mg
13282            mg
13283            gm
13284           mcg
13285 other specify
13286            gm
13287            oz
13288           mcg
13289            mg
13290            mg
13291            mg
13292            mg
13293            ml
13294            mg
13295            mg
13296            ml
13297         drops
13298          tube
13299           mcg
13300            mg
13301            mg
13302            ml
13303            ml
13304            ml
13305            ml
13306         drops
13307         drops
13308          tube
13309         spray
13310         drops
13311            mg
13312            mg
13313         spray
13314         drops
13315         drops
13316            mg
13317            mg
13318         drops
13319            mg
13320 other specify
13321         drops
13322            mg
13323            mg
13324           mcg
13325            mg
13326            mg
13327            mg
13328            mg
13329 other specify
13330            mg
13331            gm
13332          tube
13333         units
13334            mg
13335            mg
13336 other specify
13337            mg
13338            mg
13339            mg
13340         drops
13341          tube
13342            mg
13343         drops
13344          drop
13345         drops
13346           mcg
13347           mcg
13348            mg
13349            mg
13350            mg
13351            mg
13352            mg
13353         drops
13354            ml
13355            ml
13356            mg
13357            ml
13358            mg
13359            mg
13360            mg
13361            mg
13362            mg
13363 other specify
13364            mg
13365            mg
13366 other specify
13367            mg
13368            ml
13369            mg
13370         drops
13371            ml
13372 other specify
13373            ml
13374            mg
13375         drops
13376         units
13377            ml
13378 other specify
13379            ml
13380            ml
13381            mg
13382            ml
13383 other specify
13384            ml
13385            ml
13386            ml
13387            mg
13388            mg
13389            ml
13390            ml
13391 other specify
13392            ml
13393            ml
13394            ml
13395            mg
13396            mg
13397            mg
13398            mg
13399            mg
13400            mg
13401            mg
13402            mg
13403            mg
13404            mg
13405            mg
13406            ml
13407            ml
13408            ml
13409            ml
13410            ml
13411   unspecified
13412            mg
13413            mg
13414            ml
13415            mg
13416            mg
13417            mg
13418            mg
13419            mg
13420            ml
13421            mg
13422            mg
13423 other specify
13424            ml
13425 other specify
13426 other specify
13427            ml
13428            ml
13429            mg
13430            mg
13431 other specify
13432 other specify
13433            mg
13434            mg
13435            ml
13436            ml
13437            ml
13438            ml
13439            ml
13440            ml
13441            ml
13442            ml
13443            mg
13444            mg
13445 other specify
13446            ml
13447 other specify
13448 other specify
13449 other specify
13450 other specify
13451 other specify
13452 other specify
13453            mg
13454         drops
13455         drops
13456            mg
13457           mcg
13458            ml
13459         drops
13460            ml
13461         drops
13462          drop
13463            mg
13464           mcg
13465            mg
13466            mg
13467            mg
13468         drops
13469            mg
13470          tube
13471           tsp
13472            mg
13473 other specify
13474         drops
13475            ml
13476          tube
13477            gm
13478            mg
13479            ml
13480            mg
13481 other specify
13482            mg
13483         drops
13484         drops
13485            mg
13486            mg
13487            mg
13488            mg
13489            mg
13490            mg
13491            mg
13492            mg
13493            mg
13494            mg
13495            mg
13496         drops
13497            mg
13498            mg
13499            mg
13500            mg
13501            mg
13502         units
13503         units
13504         drops
13505           mcg
13506            ml
13507           mcg
13508            mg
13509            mg
13510            mg
13511            mg
13512            mg
13513            mg
13514           mcg
13515            mg
13516           mcg
13517            ml
13518           mcg
13519            mg
13520            mg
13521            mg
13522            mg
13523            mg
13524            mg
13525            mg
13526            mg
13527            mg
13528            mg
13529            mg
13530            mg
13531            mg
13532            ml
13533            mg
13534           mcg
13535            ml
13536            mg
13537            mg
13538            gm
13539            mg
13540            mg
13541            mg
13542            mg
13543            mg
13544            mg
13545            mg
13546            mg
13547            mg
13548            mg
13549            mg
13550            mg
13551            mg
13552            mg
13553            mg
13554            mg
13555            mg
13556         drops
13557         drops
13558            mg
13559            mg
13560         drops
13561            mg
13562            mg
13563         drops
13564            mg
13565            mg
13566            ml
13567            ml
13568            mg
13569            mg
13570            mg
13571            mg
13572            mg
13573            mg
13574            mg
13575          pump
13576            ml
13577            ml
13578 other specify
13579         drops
13580            mg
13581            mg
13582            mg
13583            ml
13584            ml
13585            mg
13586 other specify
13587 other specify
13588 other specify
13589            mg
13590          tube
13591            mg
13592            mg
13593            mg
13594         drops
13595         drops
13596            mg
13597            mg
13598            mg
13599            ml
13600 other specify
13601         drops
13602            mg
13603            mg
13604            mg
13605            mg
13606 other specify
13607         drops
13608            mg
13609          tube
13610            mg
13611         drops
13612            gm
13613         drops
13614         drops
13615         drops
13616            mg
13617            ml
13618 other specify
13619            mg
13620            mg
13621            mg
13622            mg
13623         drops
13624         tube 
13625          tube
13626            mg
13627            mg
13628          tube
13629            mg
13630            mg
13631         spray
13632            mg
13633           mcg
13634           mcg
13635            ml
13636           mcg
13637            ml
13638           mcg
13639            mg
13640           mcg
13641           mcg
13642            mg
13643           mcg
13644            mg
13645           mcg
13646            mg
13647            mg
13648            mg
13649            ml
13650            ml
13651           mcg
13652           mcg
13653            mg
13654          tube
13655            ml
13656            mg
13657         drops
13658            ml
13659         drops
13660          drop
13661 other specify
13662            mg
13663            gm
13664            gm
13665            mg
13666          drop
13667            mg
13668           mcg
13669            mg
13670            mg
13671            mg
13672            mg
13673 other specify
13674 other specify
13675           mcg
13676            mg
13677            gm
13678 other specify
13679            mg
13680 other specify
13681            mg
13682            mg
13683            mg
13684            mg
13685            mg
13686            ml
13687            mg
13688            ml
13689            mg
13690            mg
13691            mg
13692            mg
13693          drop
13694           mcg
13695            mg
13696         drops
13697         drops
13698            mg
13699            mg
13700            mg
13701            mg
13702            mg
13703            mg
13704            mg
13705            mg
13706            mg
13707            mg
13708            mg
13709           mcg
13710            ml
13711            ml
13712         drops
13713         drops
13714            mg
13715            mg
13716            mg
13717            mg
13718            ml
13719 other specify
13720            mg
13721            mg
13722 other specify
13723          drop
13724          pump
13725            mg
13726            mg
13727            mg
13728            mg
13729            mg
13730          pump
13731         drops
13732            mg
13733            mg
13734 other specify
13735            mg
13736            mg
13737          pump
13738           mcg
13739            mg
13740   unspecified
13741   unspecified
13742            mg
13743            mg
13744            mg
13745            mg
13746            mg
13747            mg
13748            mg
13749            mg
13750            mg
13751            mg
13752            mg
13753            mg
13754            mg
13755            mg
13756         drops
13757            mg
13758            mg
13759            mg
13760            mg
13761            mg
13762            mg
13763            mg
13764            mg
13765            mg
13766 other specify
13767            mg
13768         drops
13769        sprays
13770            mg
13771            mg
13772           mcg
13773            mg
13774            mg
13775            ug
13776         drops
13777            mg
13778            mg
13779            mg
13780            ml
13781 other specify
13782          tube
13783           tsp
13784            mg
13785            mg
13786         spray
13787            mg
13788            mg
13789            mg
13790            mg
13791            mg
13792            mg
13793            mg
13794            mg
13795            mg
13796         spray
13797            mg
13798            mg
13799            mg
13800            mg
13801 other specify
13802 other specify
13803            mg
13804            ml
13805 other specify
13806 other specify
13807            mg
13808            mg
13809            mg
13810            mg
13811            mg
13812            mg
13813            mg
13814            mg
13815            mg
13816           mcg
13817            mg
13818            ml
13819            mg
13820           mcg
13821            ml
13822            mg
13823         drops
13824           mcg
13825 other specify
13826            mg
13827 other specify
13828 other specify
13829            mg
13830            mg
13831            mg
13832            mg
13833            gm
13834            mg
13835            mg
13836            mg
13837           mcg
13838            mg
13839            mg
13840           mcg
13841 other specify
13842            mg
13843            mg
13844            mg
13845 other specify
13846            ml
13847            ml
13848         drops
13849            oz
13850            mg
13851 other specify
13852         drops
13853            mg
13854            mg
13855            mg
13856            mg
13857 other specify
13858 other specify
13859            ml
13860            ml
13861            ml
13862            ml
13863            ml
13864            ml
13865            mg
13866            mg
13867            mg
13868            mg
13869            mg
13870            mg
13871            mg
13872            mg
13873            mg
13874 other specify
13875            ml
13876            ml
13877            ml
13878            ml
13879            mg
13880            gm
13881            ml
13882           mcg
13883            mg
13884            ml
13885           mcg
13886            mg
13887            ml
13888            mg
13889            mg
13890            ml
13891            mg
13892            mg
13893            mg
13894            mg
13895            gm
13896          tbsp
13897 other specify
13898            mg
13899            mg
13900            mg
13901            mg
13902            mg
13903            mg
13904            mg
13905            mg
13906            mg
13907            mg
13908         mg/ml
13909            mg
13910            ml
13911 other specify
13912   unspecified
13913   unspecified
13914            mg
13915         drops
13916         drops
13917         drops
13918            mg
13919            mg
13920            mg
13921            mg
13922            mg
13923            mg
13924            mg
13925            mg
13926            mg
13927            mg
13928            mg
13929            mg
13930            mg
13931            mg
13932            mg
13933            mg
13934            mg
13935            mg
13936            mg
13937            mg
13938            mg
13939            mg
13940            mg
13941            mg
13942            mg
13943         units
13944            mg
13945            mg
13946         spray
13947           mcg
13948            mg
13949            mg
13950            mg
13951         drops
13952            mg
13953            mg
13954            mg
13955            mg
13956            mg
13957 other specify
13958 other specify
13959         drops
13960            ml
13961            mg
13962            mg
13963            mg
13964            mg
13965 other specify
13966            mg
13967 other specify
13968           mcg
13969            gm
13970         drops
13971            mg
13972            ml
13973 other specify
13974            mg
13975            mg
13976            mg
13977            mg
13978            mg
13979            ml
13980           mcg
13981            mg
13982            mg
13983            mg
13984            mg
13985            mg
13986            mg
13987            mg
13988            mg
13989            mg
13990            mg
13991            mg
13992           mcg
13993            mg
13994         units
13995         units
13996         drops
13997            mg
13998         drops
13999 other specify
14000            mg
14001            mg
14002         drops
14003            mg
14004            mg
14005            mg
14006         spray
14007        sprays
14008         drops
14009            mg
14010            mg
14011            mg
14012            mg
14013            mg
14014 other specify
14015           mcg
14016            mg
14017            mg
14018            mg
14019           mcg
14020            mg
14021            mg
14022           mcg
14023            mg
14024            mg
14025           mcg
14026            mg
14027           mcg
14028            mg
14029            mg
14030            mg
14031            mg
14032            mg
14033            mg
14034            mg
14035            mg
14036            mg
14037            mg
14038            mg
14039            mg
14040            mg
14041            mg
14042            mg
14043            mg
14044            mg
14045            mg
14046            mg
14047            mg
14048            mg
14049            mg
14050          drop
14051         pumps
14052            mg
14053            gm
14054            mg
14055            mg
14056            mg
14057            mg
14058         drops
14059         drops
14060         drops
14061            mg
14062            mg
14063         drops
14064         spray
14065 other specify
14066            mg
14067            mg
14068            mg
14069            mg
14070            mg
14071 other specify
14072            mg
14073            mg
14074            mg
14075            mg
14076            mg
14077            mg
14078            mg
14079            mg
14080            mg
14081 other specify
14082            mg
14083            mg
14084            mg
14085            mg
14086            mg
14087            mg
14088            mg
14089            mg
14090            mg
14091            mg
14092            mg
14093            mg
14094            mg
14095            mg
14096            mg
14097            mg
14098            mg
14099            mg
14100            mg
14101            mg
14102            mg
14103            mg
14104            mg
14105            mg
14106         spray
14107            mg
14108            mg
14109            mg
14110 other specify
14111            mg
14112            mg
14113 other specify
14114          drop
14115            mg
14116 other specify
14117            mg
14118            mg
14119            mg
14120            ml
14121            ml
14122            ml
14123            ml
14124            ml
14125           tbs
14126           tbs
14127 other specify
14128            mg
14129            ml
14130         drops
14131            ml
14132            mg
14133            mg
14134            mg
14135            mg
14136         drops
14137 other specify
14138            mg
14139         drops
14140            mg
14141            mg
14142            mg
14143            mg
14144            ml
14145 other specify
14146            mg
14147         spray
14148            ml
14149 other specify
14150 other specify
14151            ml
14152            mg
14153 other specify
14154            ml
14155            ml
14156            mg
14157            mg
14158            mg
14159            mg
14160            mg
14161            mg
14162            ml
14163            ml
14164         drops
14165         units
14166         units
14167 other specify
14168            ml
14169            mg
14170         spray
14171         spray
14172         spray
14173            ml
14174            ml
14175         drops
14176            mg
14177          tbsp
14178        sprays
14179           ml 
14180         drops
14181           ml 
14182            mg
14183            mg
14184            mg
14185            mg
14186            mg
14187            mg
14188            mg
14189 other specify
14190            mg
14191           mcg
14192            mg
14193            mg
14194            mg
14195            mg
14196           mcg
14197            mg
14198            mg
14199            mg
14200            mg
14201 other specify
14202            mg
14203            mg
14204            ml
14205           mcg
14206            mg
14207         units
14208            mg
14209            oz
14210            mg
14211            mg
14212            mg
14213            mg
14214            mg
14215            mg
14216            mg
14217            mg
14218         drops
14219           ml 
14220            mg
14221         drops
14222            mg
14223            mg
14224            mg
14225            mg
14226            mg
14227            mg
14228   unspecified
14229            mg
14230         drops
14231            mg
14232 other specify
14233            mg
14234            mg
14235 other specify
14236 other specify
14237 other specify
14238          drop
14239 other specify
14240           mcg
14241            ml
14242           mcg
14243            ml
14244           mcg
14245            ml
14246           mcg
14247            oz
14248           mcg
14249 other specify
14250           mcg
14251         units
14252           mcg
14253            ml
14254            mg
14255            mg
14256            mg
14257            mg
14258            mg
14259            ml
14260            ml
14261            ml
14262            mg
14263            mg
14264            mg
14265            mg
14266           mcg
14267            mg
14268           mcg
14269            ml
14270            mg
14271            mg
14272           mcg
14273            mg
14274            mg
14275            ml
14276           mcg
14277            mg
14278            mg
14279            mg
14280            mg
14281           mcg
14282            mg
14283            mg
14284         units
14285            mg
14286 other specify
14287            mg
14288            mg
14289            mg
14290            mg
14291           tsp
14292            mg
14293            mg
14294            mg
14295           mcg
14296            ug
14297           mcg
14298 other specify
14299            mg
14300            mg
14301          drop
14302          drop
14303            mg
14304            mg
14305            gm
14306            mg
14307            mg
14308            mg
14309            mg
14310            mg
14311            mg
14312            mg
14313           tsp
14314            mg
14315            mg
14316 other specify
14317 other specify
14318 other specify
14319           mcg
14320            mg
14321            mg
14322            ml
14323         spray
14324         drops
14325            mg
14326            mg
14327            mg
14328            mg
14329            mg
14330         drops
14331            mg
14332            mg
14333            mg
14334         spray
14335            ml
14336         drops
14337            mg
14338            mg
14339 other specify
14340 other specify
14341 other specify
14342            mg
14343 other specify
14344            mg
14345            mg
14346 other specify
14347            mg
14348            mg
14349            ml
14350 other specify
14351 other specify
14352 other specify
14353            mg
14354 other specify
14355 other specify
14356            mg
14357         drops
14358 other specify
14359            ml
14360           mcg
14361            mg
14362            mg
14363            mg
14364           mcg
14365           mcg
14366          pump
14367         drops
14368            gm
14369            mg
14370            mg
14371 other specify
14372 other specify
14373         spray
14374            mg
14375 other specify
14376            ml
14377            mg
14378         spray
14379 other specify
14380            ml
14381            mg
14382            mg
14383            mg
14384            mg
14385            mg
14386            mg
14387            mg
14388            mg
14389            mg
14390            mg
14391            mg
14392 other specify
14393            mg
14394           tbs
14395            mg
14396           tbs
14397           tbs
14398 other specify
14399         drops
14400 other specify
14401 other specify
14402            mg
14403            mg
14404            mg
14405            mg
14406            ml
14407         drops
14408          pump
14409         drops
14410            mg
14411            mg
14412            mg
14413            ml
14414          tube
14415           mcg
14416            mg
14417            mg
14418            mg
14419            mg
14420           mcg
14421            mg
14422            mg
14423            mg
14424            mg
14425            mg
14426            mg
14427            mg
14428            mg
14429          drop
14430            mg
14431         drops
14432            ml
14433          pump
14434          tube
14435            mg
14436            mg
14437 other specify
14438            ml
14439            mg
14440            mg
14441            mg
14442            ml
14443            ml
14444            ml
14445         spray
14446         spray
14447         spray
14448         drops
14449         drops
14450            mg
14451            ml
14452            mg
14453            mg
14454           mcg
14455          tube
14456            ml
14457           mcg
14458           mcg
14459            mg
14460           mcg
14461            mg
14462         drops
14463           mcg
14464            mg
14465           mcg
14466            mg
14467            mg
14468            mg
14469            mg
14470            mg
14471           ml 
14472            mg
14473            ml
14474            mg
14475            mg
14476            mg
14477         units
14478            mg
14479         spray
14480            mg
14481            mg
14482            mg
14483            mg
14484            mg
14485            mg
14486            mg
14487            mg
14488         spray
14489            ml
14490          drop
14491            ml
14492            mg
14493            mg
14494            mg
14495            ml
14496            mg
14497            mg
14498        sprays
14499          drop
14500            mg
14501            mg
14502            mg
14503            mg
14504            ml
14505            mg
14506         units
14507         units
14508         units
14509         units
14510            mg
14511            mg
14512         units
14513         units
14514            ml
14515 other specify
14516            mg
14517            mg
14518            mg
14519            mg
14520            mg
14521            mg
14522            mg
14523            mg
14524            mg
14525            mg
14526           mcg
14527 other specify
14528          drop
14529          tube
14530            mg
14531            mg
14532           mcg
14533            mg
14534           mcg
14535            mg
14536            mg
14537           mcg
14538            mg
14539            mg
14540            mg
14541            mg
14542            mg
14543            mg
14544            mg
14545            mg
14546            mg
14547         spray
14548   unspecified
14549            mg
14550            mg
14551            mg
14552            mg
14553 other specify
14554 other specify
14555         drops
14556 other specify
14557 other specify
14558            ml
14559 other specify
14560            mg
14561            mg
14562 other specify
14563            mg
14564           mcg
14565           mcg
14566            mg
14567            mg
14568           mcg
14569 other specify
14570            mg
14571            mg
14572            mg
14573            mg
14574            mg
14575            mg
14576            ml
14577 other specify
14578            ml
14579            mg
14580            mg
14581            gm
14582            ml
14583         drops
14584         drops
14585         drops
14586         spray
14587         spray
14588            ml
14589            mg
14590            mg
14591            mg
14592            mg
14593            mg
14594 other specify
14595            mg
14596 other specify
14597           mcg
14598            mg
14599           mcg
14600            mg
14601         drops
14602            mg
14603            mg
14604            mg
14605            mg
14606            mg
14607            mg
14608            mg
14609            mg
14610            mg
14611 other specify
14612            mg
14613            mg
14614            mg
14615            mg
14616 other specify
14617            mg
14618            mg
14619           mcg
14620            mg
14621            mg
14622           mcg
14623 other specify
14624         drops
14625         drops
14626            mg
14627           mcg
14628           mcg
14629            mg
14630           mcg
14631 other specify
14632            gm
14633            mg
14634            mg
14635            mg
14636           mcg
14637         drops
14638            mg
14639            mg
14640            mg
14641            mg
14642            mg
14643 other specify
14644 other specify
14645            mg
14646           mcg
14647            mg
14648            mg
14649            mg
14650         drops
14651           mcg
14652            mg
14653            mg
14654 other specify
14655            mg
14656            mg
14657            mg
14658           mcg
14659            mg
14660            mg
14661            mg
14662            mg
14663            mg
14664         spray
14665          tube
14666            mg
14667            mg
14668            mg
14669            mg
14670            mg
14671            mg
14672            mg
14673            mg
14674            mg
14675            mg
14676            mg
14677            mg
14678            mg
14679            mg
14680 other specify
14681 other specify
14682            mg
14683            mg
14684            mg
14685            mg
14686 other specify
14687            mg
14688            mg
14689            mg
14690            mg
14691            mg
14692            mg
14693            mg
14694            mg
14695            mg
14696            mg
14697          drop
14698            mg
14699         drops
14700            ml
14701         drops
14702           mcg
14703            mg
14704            mg
14705           mcg
14706            mg
14707            mg
14708            mg
14709            mg
14710 other specify
14711         drops
14712          tube
14713            ml
14714            mg
14715            mg
14716            mg
14717            mg
14718 other specify
14719 other specify
14720            ml
14721            ml
14722          tbsp
14723          tbsp
14724            mg
14725            mg
14726        sprays
14727            mg
14728            mg
14729            mg
14730            mg
14731            mg
14732            mg
14733            mg
14734            mg
14735            mg
14736            mg
14737         drops
14738         drops
14739            mg
14740            mg
14741            mg
14742            mg
14743            mg
14744          tube
14745            mg
14746 other specify
14747            mg
14748         pumps
14749            mg
14750            mg
14751            mg
14752            mg
14753            mg
14754          tube
14755         spray
14756         drops
14757         drops
14758            mg
14759            mg
14760         drops
14761            mg
14762 other specify
14763            ml
14764         drops
14765            mg
14766            mg
14767            mg
14768            ml
14769            mg
14770 other specify
14771 other specify
14772           mcg
14773            mg
14774            mg
14775   unspecified
14776            mg
14777   unspecified
14778   unspecified
14779            mg
14780            mg
14781 other specify
14782           mcg
14783            mg
14784           mcg
14785            mg
14786            mg
14787            mg
14788            mg
14789            mg
14790           mcg
14791            mg
14792            mg
14793            mg
14794            mg
14795            mg
14796           tsp
14797            ml
14798            ml
14799            mg
14800 other specify
14801            mg
14802            mg
14803            mg
14804            ml
14805 other specify
14806         units
14807            mg
14808            mg
14809            mg
14810            mg
14811            mg
14812            mg
14813            mg
14814            ml
14815            mg
14816            mg
14817            mg
14818            mg
14819 other specify
14820            mg
14821            ml
14822            mg
14823            ml
14824            mg
14825            iu
14826            mg
14827            mg
14828            mg
14829            mg
14830            mg
14831            mg
14832            mg
14833            mg
14834            mg
14835 other specify
14836           mcg
14837           mcg
14838            mg
14839            mg
14840            ml
14841           mcg
14842            mg
14843            mg
14844 other specify
14845 other specify
14846         drops
14847         drops
14848         drops
14849            mg
14850 other specify
14851 other specify
14852            mg
14853            ml
14854            mg
14855            mg
14856            mg
14857         units
14858            mg
14859            mg
14860            mg
14861 other specify
14862            mg
14863            mg
14864         units
14865            mg
14866            oz
14867            mg
14868            mg
14869         units
14870         units
14871         units
14872            mg
14873            mg
14874 other specify
14875 other specify
14876            mg
14877            mg
14878   unspecified
14879            mg
14880            mg
14881           mcg
14882            mg
14883            mg
14884            mg
14885            mg
14886            mg
14887            mg
14888            mg
14889            mg
14890            mg
14891            mg
14892            mg
14893            mg
14894           mcg
14895            mg
14896            mg
14897           mcg
14898            mg
14899            ml
14900            mg
14901            mg
14902            mg
14903            mg
14904            mg
14905            mg
14906            mg
14907            mg
14908            mg
14909            mg
14910            mg
14911            mg
14912            mg
14913            mg
14914           mcg
14915            mg
14916            mg
14917           mcg
14918           mcg
14919 other specify
14920            mg
14921            mg
14922            mg
14923            mg
14924            mg
14925            mg
14926            mg
14927            mg
14928         units
14929            mg
14930            mg
14931            mg
14932            mg
14933            mg
14934         units
14935            mg
14936            mg
14937 other specify
14938         units
14939            mg
14940            mg
14941            mg
14942            ml
14943         units
14944            ml
14945            mg
14946 other specify
14947         units
14948            mg
14949            mg
14950            mg
14951 other specify
14952            mg
14953         drops
14954            mg
14955            ml
14956         drops
14957            mg
14958            mg
14959            mg
14960            mg
14961            mg
14962            mg
14963 other specify
14964            mg
14965            mg
14966           mcg
14967           mcg
14968           mcg
14969        mcg/kg
14970           mcg
14971 other specify
14972         drops
14973          drop
14974         spray
14975         drops
14976            mg
14977            ml
14978         drops
14979            mg
14980            ml
14981         drops
14982         drops
14983            gm
14984            mg
14985            mg
14986            mg
14987            mg
14988            gm
14989            mg
14990            mg
14991           mcg
14992           mcg
14993            mg
14994            mg
14995            mg
14996            mg
14997            mg
14998           mcg
14999        mcg/kg
15000           mcg
15001           mcg
15002            oz
15003            ml
15004            ml
15005            ml
15006            mg
15007            mg
15008            ml
15009            ml
15010            ml
15011            mg
15012            mg
15013            mg
15014            mg
15015            ml
15016            ml
15017            ml
15018            mg
15019            mg
15020            mg
15021           mcg
15022            oz
15023          tube
15024            mg
15025            oz
15026            oz
15027            oz
15028            mg
15029            mg
15030            ml
15031            mg
15032            mg
15033            mg
15034            mg
15035         units
15036         units
15037            mg
15038            mg
15039            mg
15040            mg
15041            ml
15042            mg
15043            mg
15044            mg
15045            mg
15046            mg
15047            mg
15048          tube
15049            mg
15050 other specify
15051            mg
15052         drops
15053            mg
15054            mg
15055            mg
15056            mg
15057            mg
15058            mg
15059         drops
15060           mcg
15061        sprays
15062           mcg
15063            ml
15064           mcg
15065            mg
15066            mg
15067           mcg
15068           mcg
15069            mg
15070            mg
15071            mg
15072           mcg
15073            mg
15074            mg
15075           mcg
15076           mcg
15077         drops
15078            mg
15079            mg
15080            mg
15081            ml
15082           mcg
15083 other specify
15084            mg
15085            mg
15086            ml
15087            ml
15088            ml
15089         units
15090            ml
15091         drops
15092            mg
15093            mg
15094            mg
15095            mg
15096            mg
15097            mg
15098            mg
15099            mg
15100            mg
15101            ml
15102         drops
15103            mg
15104         units
15105            ml
15106            ml
15107            ml
15108         units
15109            ml
15110         drops
15111            mg
15112            mg
15113            mg
15114         drops
15115            mg
15116            mg
15117            mg
15118            mg
15119            mg
15120            mg
15121            mg
15122            mg
15123            mg
15124         drops
15125         drops
15126            mg
15127            mg
15128 other specify
15129         drops
15130           mcg
15131            mg
15132            mg
15133         drops
15134            gm
15135            mg
15136            mg
15137          tube
15138            mg
15139         drops
15140         spray
15141           mcg
15142            mg
15143            mg
15144         units
15145         units
15146            mg
15147            mg
15148            mg
15149            mg
15150           tsp
15151         units
15152            mg
15153            mg
15154            mg
15155   unspecified
15156            mg
15157 other specify
15158            mg
15159            mg
15160            mg
15161            mg
15162            mg
15163            mg
15164            mg
15165            mg
15166            mg
15167           mcg
15168            mg
15169            mg
15170            mg
15171            mg
15172            mg
15173            mg
15174            mg
15175            ml
15176            mg
15177            mg
15178 other specify
15179            mg
15180            ml
15181            ml
15182            ml
15183            ml
15184            mg
15185            mg
15186            mg
15187            mg
15188            mg
15189 other specify
15190            mg
15191            mg
15192            mg
15193           mcg
15194            mg
15195            mg
15196            ml
15197         drops
15198           mcg
15199           mcg
15200            ml
15201 other specify
15202           mcg
15203           mcg
15204            mg
15205           mcg
15206            mg
15207           mcg
15208           mcg
15209          tube
15210            mg
15211         drops
15212            mg
15213            ml
15214            mg
15215            mg
15216            mg
15217            mg
15218            mg
15219            mg
15220 other specify
15221            mg
15222            mg
15223            mg
15224 other specify
15225 other specify
15226            mg
15227 other specify
15228 other specify
15229            mg
15230            mg
15231            mg
15232            mg
15233            mg
15234            mg
15235            mg
15236            mg
15237            mg
15238            gm
15239            mg
15240            mg
15241            mg
15242            mg
15243 other specify
15244            mg
15245            mg
15246            mg
15247 other specify
15248           mcg
15249           mcg
15250            ml
15251 other specify
15252         drops
15253            mg
15254            mg
15255 other specify
15256         units
15257            mg
15258            mg
15259           tsp
15260 other specify
15261 other specify
15262            mg
15263 other specify
15264            mg
15265           mcg
15266            mg
15267            mg
15268            gm
15269         drops
15270            mg
15271            mg
15272            mg
15273            mg
15274   unspecified
15275            mg
15276 other specify
15277            mg
15278 other specify
15279 other specify
15280            mg
15281            mg
15282 other specify
15283            mg
15284            mg
15285            mg
15286            mg
15287            mg
15288 other specify
15289            mg
15290            mg
15291            mg
15292            mg
15293            mg
15294            mg
15295 other specify
15296            mg
15297         units
15298            mg
15299            mg
15300 other specify
15301            mg
15302            mg
15303            mg
15304            mg
15305            mg
15306            mg
15307            mg
15308         spray
15309            ml
15310            ml
15311          tube
15312            mg
15313            mg
15314         units
15315          tube
15316            mg
15317          tube
15318            mg
15319            mg
15320            mg
15321        sprays
15322         spray
15323            oz
15324            mg
15325            mg
15326            mg
15327            mg
15328            mg
15329            mg
15330 other specify
15331            mg
15332          drop
15333            gm
15334         drops
15335            mg
15336            mg
15337 other specify
15338 other specify
15339            mg
15340            mg
15341            mg
15342         drops
15343            mg
15344            mg
15345            mg
15346            mg
15347            mg
15348            mg
15349            mg
15350 other specify
15351            mg
15352            mg
15353            mg
15354 other specify
15355 other specify
15356            mg
15357            mg
15358            mg
15359            mg
15360            mg
15361         drops
15362         drops
15363         drops
15364            mg
15365         drops
15366            ml
15367            ml
15368            mg
15369            mg
15370            mg
15371            mg
15372            oz
15373            ml
15374         drops
15375         drops
15376          drop
15377         drops
15378            ml
15379            mg
15380            mg
15381            gm
15382            ml
15383            mg
15384            mg
15385            mg
15386            mg
15387            mg
15388            mg
15389            mg
15390            mg
15391            mg
15392            mg
15393            mg
15394           mcg
15395 other specify
15396            mg
15397           mcg
15398            mg
15399           mcg
15400            mg
15401            mg
15402            oz
15403            mg
15404            ml
15405            mg
15406            mg
15407           mcg
15408            mg
15409            mg
15410            mg
15411 other specify
15412           mcg
15413            mg
15414            mg
15415            mg
15416 other specify
15417           mcg
15418           mcg
15419            mg
15420           mcg
15421            mg
15422            mg
15423            mg
15424           mcg
15425            mg
15426            mg
15427            mg
15428            mg
15429            mg
15430            mg
15431            mg
15432            mg
15433           mcg
15434            ml
15435            mg
15436            mg
15437            mg
15438            mg
15439            mg
15440 other specify
15441            mg
15442         units
15443            mg
15444         drops
15445         drops
15446            mg
15447           mcg
15448           mcg
15449           mcg
15450           mcg
15451          pump
15452            mg
15453           ml 
15454   unspecified
15455            mg
15456            mg
15457            mg
15458            mg
15459            mg
15460            mg
15461            mg
15462            mg
15463            mg
15464           mcg
15465            mg
15466            oz
15467            mg
15468           mcg
15469            mg
15470 other specify
15471            mg
15472            mg
15473            mg
15474           mcg
15475            mg
15476            mg
15477 other specify
15478            mg
15479            mg
15480            mg
15481           mcg
15482            mg
15483            mg
15484         units
15485           mcg
15486            mg
15487           mcg
15488            mg
15489            mg
15490            mg
15491            mg
15492            mg
15493            mg
15494           mcg
15495            mg
15496            mg
15497            mg
15498 other specify
15499           mcg
15500            mg
15501            mg
15502            mg
15503            mg
15504            mg
15505         units
15506            mg
15507            ml
15508            mg
15509           mcg
15510           mcg
15511           mcg
15512         units
15513         units
15514           mcg
15515        sprays
15516            mg
15517           mcg
15518         units
15519           mcg
15520            mg
15521           mcg
15522            mg
15523            mg
15524         drops
15525           mcg
15526            mg
15527 other specify
15528            mg
15529            mg
15530            ml
15531            mg
15532            mg
15533         drops
15534            mg
15535            mg
15536            mg
15537            mg
15538            mg
15539            mg
15540            mg
15541            mg
15542            mg
15543            ml
15544            mg
15545 other specify
15546            mg
15547            mg
15548            mg
15549            mg
15550 other specify
15551          drop
15552          tbsp
15553           mcg
15554          tube
15555            ml
15556           ml 
15557            mg
15558            mg
15559            mg
15560 other specify
15561            mg
15562            mg
15563          pump
15564            mg
15565            mg
15566            mg
15567            mg
15568            mg
15569            mg
15570 other specify
15571            mg
15572            mg
15573            mg
15574 other specify
15575            mg
15576 other specify
15577            ml
15578            mg
15579            mg
15580            mg
15581         drops
15582            mg
15583            mg
15584         drops
15585            ml
15586         spray
15587            mg
15588 other specify
15589         drops
15590            ml
15591          pump
15592         drops
15593            ml
15594         drops
15595            ml
15596            mg
15597          drop
15598          tube
15599            ml
15600          tube
15601         drops
15602            mg
15603   unspecified
15604   unspecified
15605            mg
15606            mg
15607            mg
15608            mg
15609            mg
15610            mg
15611         drops
15612           mcg
15613           mcg
15614         drops
15615         drops
15616           mcg
15617            mg
15618           mcg
15619            oz
15620            mg
15621            mg
15622            mg
15623            mg
15624            mg
15625            mg
15626            mg
15627            mg
15628            mg
15629            mg
15630            mg
15631            mg
15632            mg
15633            mg
15634            mg
15635            mg
15636         units
15637            mg
15638            mg
15639            mg
15640            mg
15641            mg
15642            mg
15643            mg
15644         drops
15645            gm
15646            mg
15647            mg
15648            mg
15649         spray
15650         drops
15651            mg
15652         drops
15653            mg
15654         drops
15655         drops
15656            mg
15657            mg
15658            mg
15659         drops
15660         drops
15661         drops
15662         drops
15663          tube
15664            mg
15665 other specify
15666         drops
15667         drops
15668         drops
15669           mcg
15670            mg
15671            gm
15672           mcg
15673           mcg
15674            mg
15675            gm
15676            mg
15677            ml
15678            mg
15679 other specify
15680         drops
15681            mg
15682            mg
15683         drops
15684            mg
15685            mg
15686            mg
15687            mg
15688 other specify
15689            ml
15690         units
15691         units
15692         units
15693         units
15694         units
15695         units
15696            mg
15697           mcg
15698           mcg
15699           mcg
15700            mg
15701            ml
15702            ml
15703            ml
15704         drops
15705         drops
15706          pump
15707            mg
15708            mg
15709            mg
15710            mg
15711 other specify
15712          tube
15713 other specify
15714           tsp
15715            mg
15716           tsp
15717 other specify
15718 other specify
15719           mcg
15720            mg
15721           tsp
15722 other specify
15723 other specify
15724 other specify
15725           mcg
15726            mg
15727 other specify
15728           mcg
15729            mg
15730 other specify
15731 other specify
15732 other specify
15733           mcg
15734            mg
15735 other specify
15736 other specify
15737         drops
15738            mg
15739 other specify
15740           tsp
15741            mg
15742            mg
15743            mg
15744           tsp
15745           tsp
15746           tbs
15747 other specify
15748 other specify
15749 other specify
15750   unspecified
15751            ml
15752            mg
15753            ml
15754         drops
15755 other specify
15756 other specify
15757        sprays
15758         spray
15759           mcg
15760            mg
15761            mg
15762            mg
15763            mg
15764            mg
15765            mg
15766            mg
15767         drops
15768         drops
15769         drops
15770         drops
15771            mg
15772            mg
15773           mcg
15774            mg
15775            mg
15776            mg
15777            ml
15778            ml
15779            mg
15780            mg
15781         drops
15782         drops
15783 other specify
15784 other specify
15785 other specify
15786 other specify
15787            mg
15788         mg/ml
15789            mg
15790          drop
15791            mg
15792            mg
15793            mg
15794            mg
15795            mg
15796            mg
15797            mg
15798            mg
15799   unspecified
15800            mg
15801            mg
15802            mg
15803           mcg
15804            ml
15805            mg
15806            mg
15807            ml
15808 other specify
15809            mg
15810            mg
15811            ml
15812            mg
15813            mg
15814 other specify
15815            ml
15816 other specify
15817            mg
15818         units
15819 other specify
15820 other specify
15821           mcg
15822            ml
15823            mg
15824            mg
15825            mg
15826            mg
15827            mg
15828            mg
15829           mcg
15830            mg
15831            gm
15832            ml
15833            ml
15834           mcg
15835           mcg
15836           mcg
15837           mcg
15838           mcg
15839            gm
15840            ml
15841            gm
15842           tsp
15843            mg
15844          drop
15845            mg
15846            mg
15847            mg
15848          drop
15849         drops
15850         drops
15851            mg
15852            mg
15853            gm
15854            mg
15855            ml
15856         spray
15857          tube
15858            mg
15859         drops
15860            mg
15861         drops
15862        sprays
15863         drops
15864          drop
15865            mg
15866            mg
15867            ml
15868         drops
15869         drops
15870            ml
15871            mg
15872            mg
15873            mg
15874            mg
15875 other specify
15876            mg
15877            mg
15878            mg
15879            mg
15880 other specify
15881            mg
15882            mg
15883            mg
15884            mg
15885            mg
15886           tsp
15887            mg
15888   unspecified
15889         drops
15890            mg
15891         drops
15892            mg
15893            mg
15894         drops
15895         drops
15896         drops
15897            mg
15898            mg
15899 other specify
15900 other specify
15901            mg
15902            mg
15903 other specify
15904            gm
15905            ml
15906            mg
15907         drops
15908 other specify
15909         units
15910         units
15911         units
15912            mg
15913            mg
15914            mg
15915           mcg
15916           tsp
15917         drops
15918           tsp
15919            mg
15920           tsp
15921          drop
15922            ml
15923            gm
15924           mcg
15925            mg
15926            mg
15927            iu
15928         drops
15929         drops
15930         units
15931            mg
15932           mcg
15933            iu
15934            mg
15935         units
15936            mg
15937            ml
15938            mg
15939            mg
15940            ml
15941            mg
15942            mg
15943            mg
15944            mg
15945         units
15946 other specify
15947         units
15948         units
15949         units
15950 other specify
15951            mg
15952            mg
15953            mg
15954            mg
15955           tsp
15956            mg
15957            mg
15958            mg
15959           tsp
15960           mcg
15961            mg
15962           tsp
15963            mg
15964            mg
15965            mg
15966            mg
15967           mcg
15968            mg
15969            ml
15970            gm
15971            mg
15972 other specify
15973            mg
15974            mg
15975            mg
15976           mcg
15977            mg
15978            mg
15979            mg
15980            mg
15981            ml
15982            mg
15983            ml
15984            mg
15985            mg
15986            ml
15987            mg
15988            mg
15989            mg
15990            mg
15991            mg
15992            gm
15993            ml
15994            mg
15995         drops
15996            ml
15997           tsp
15998            ml
15999         drops
16000         drops
16001            mg
16002            mg
16003            ml
16004         drops
16005            mg
16006            mg
16007            mg
16008            mg
16009            ml
16010            mg
16011         drops
16012         drops
16013         drops
16014            ml
16015            mg
16016          tube
16017            mg
16018            mg
16019           mcg
16020            ml
16021           mcg
16022            mg
16023           mcg
16024            mg
16025            mg
16026         spray
16027            mg
16028            ml
16029            mg
16030            mg
16031            mg
16032            mg
16033           mcg
16034            mg
16035 other specify
16036         spray
16037            mg
16038         drops
16039         spray
16040            mg
16041            mg
16042            mg
16043         drops
16044            mg
16045            mg
16046            mg
16047            mg
16048            mg
16049           mcg
16050         drops
16051            mg
16052          tube
16053            ml
16054            mg
16055            mg
16056            mg
16057            ml
16058            mg
16059            mg
16060           mcg
16061            mg
16062           mcg
16063            mg
16064            mg
16065            mg
16066            mg
16067           mcg
16068            mg
16069            mg
16070            mg
16071            mg
16072            mg
16073            mg
16074            mg
16075            mg
16076            mg
16077            mg
16078            mg
16079            ml
16080            mg
16081            mg
16082           mcg
16083            mg
16084            mg
16085            ml
16086 other specify
16087            mg
16088            mg
16089            mg
16090            mg
16091            mg
16092            mg
16093           mcg
16094           mcg
16095            mg
16096            mg
16097            ml
16098            ml
16099            mg
16100            mg
16101            mg
16102            ml
16103         drops
16104         drops
16105            mg
16106            mg
16107            ml
16108            mg
16109            mg
16110         units
16111            ml
16112         mg/kg
16113         drops
16114         drops
16115         drops
16116            mg
16117            mg
16118            mg
16119            mg
16120         drops
16121            ml
16122            mg
16123           mcg
16124 other specify
16125         units
16126         units
16127           mcg
16128            mg
16129           mcg
16130            ml
16131           mcg
16132           mcg
16133           mcg
16134            mg
16135         drops
16136           mcg
16137            mg
16138            mg
16139            mg
16140            mg
16141 other specify
16142            mg
16143            mg
16144 other specify
16145            mg
16146            mg
16147            mg
16148         drops
16149            mg
16150         drops
16151            ml
16152            gm
16153            gm
16154            gm
16155            ml
16156          drop
16157         spray
16158          drop
16159          tube
16160            ml
16161         drops
16162         spray
16163         tube 
16164            ml
16165            ml
16166            mg
16167            mg
16168            mg
16169            mg
16170            mg
16171            mg
16172            mg
16173            mg
16174            mg
16175            mg
16176            gm
16177            ml
16178            mg
16179            ml
16180            mg
16181            mg
16182            mg
16183            mg
16184            mg
16185            mg
16186         drops
16187            mg
16188            ml
16189            mg
16190            mg
16191            gm
16192            mg
16193            mg
16194            mg
16195            mg
16196            mg
16197            mg
16198            mg
16199            mg
16200            mg
16201            mg
16202            mg
16203            mg
16204            mg
16205            mg
16206            mg
16207            mg
16208            mg
16209            mg
16210            mg
16211           mcg
16212           mcg
16213 other specify
16214 other specify
16215 other specify
16216            gm
16217            mg
16218            mg
16219            mg
16220            mg
16221            mg
16222            mg
16223            mg
16224            mg
16225            mg
16226            mg
16227            mg
16228            mg
16229          tube
16230            gm
16231 other specify
16232            mg
16233            mg
16234 other specify
16235 other specify
16236            mg
16237 other specify
16238            mg
16239   unspecified
16240   unspecified
16241   unspecified
16242   unspecified
16243            ml
16244            ml
16245            ml
16246            mg
16247            mg
16248            ml
16249            mg
16250            mg
16251         drops
16252         drops
16253            gm
16254            mg
16255            mg
16256            mg
16257            mg
16258            mg
16259            mg
16260            mg
16261            mg
16262            mg
16263         drops
16264            ml
16265            mg
16266            ml
16267            mg
16268            mg
16269            mg
16270            mg
16271            mg
16272            mg
16273            mg
16274            mg
16275            mg
16276            mg
16277            mg
16278            mg
16279            mg
16280            ml
16281            mg
16282            ml
16283 other specify
16284            ml
16285            mg
16286   unspecified
16287            ml
16288            ml
16289            ml
16290         drops
16291 other specify
16292            mg
16293         drops
16294           mcg
16295            ml
16296           mcg
16297            mg
16298            mg
16299            mg
16300            mg
16301            mg
16302            mg
16303            mg
16304 other specify
16305 other specify
16306 other specify
16307            mg
16308            mg
16309            mg
16310           mcg
16311            mg
16312         spray
16313         drops
16314            mg
16315         drops
16316          tube
16317         mg/ml
16318         drops
16319          tube
16320            mg
16321          tube
16322          tube
16323            mg
16324          tube
16325            gm
16326            ml
16327            mg
16328            mg
16329            mg
16330            mg
16331            mg
16332            ml
16333            oz
16334            mg
16335            mg
16336            mg
16337            mg
16338         drops
16339 other specify
16340           tsp
16341            mg
16342            mg
16343            mg
16344            mg
16345            mg
16346           mcg
16347 other specify
16348            mg
16349            ml
16350            mg
16351            mg
16352            mg
16353            mg
16354 other specify
16355           tsp
16356         drops
16357 other specify
16358 other specify
16359            gm
16360 other specify
16361 other specify
16362 other specify
16363 other specify
16364 other specify
16365            ml
16366            ml
16367         drops
16368            ml
16369            ml
16370            ml
16371         drops
16372 other specify
16373            mg
16374         drops
16375            mg
16376   unspecified
16377            mg
16378         drops
16379 other specify
16380         drops
16381 other specify
16382         drops
16383           mcg
16384            mg
16385            mg
16386            mg
16387          tube
16388         spray
16389           mcg
16390            mg
16391            mg
16392         units
16393            mg
16394 other specify
16395            mg
16396            mg
16397 other specify
16398            mg
16399 other specify
16400          pump
16401            ml
16402            mg
16403          tbsp
16404          tube
16405            mg
16406            mg
16407 other specify
16408           mcg
16409            mg
16410            mg
16411 other specify
16412            mg
16413         spray
16414            ml
16415            mg
16416            mg
16417            ml
16418            ml
16419         drops
16420          drop
16421           tsp
16422         drops
16423            mg
16424            mg
16425          pump
16426         spray
16427            ml
16428            mg
16429            mg
16430            mg
16431            mg
16432            mg
16433            mg
16434            mg
16435            mg
16436            mg
16437            mg
16438            mg
16439            mg
16440         drops
16441         spray
16442          tube
16443         drops
16444            mg
16445            mg
16446            mg
16447          tube
16448         drops
16449            ml
16450         drops
16451         drops
16452            ml
16453            ml
16454            mg
16455            gm
16456            gm
16457            mg
16458            ml
16459            ml
16460 other specify
16461            mg
16462            ml
16463            mg
16464            mg
16465            mg
16466            mg
16467            mg
16468            mg
16469            mg
16470           mcg
16471            ml
16472            mg
16473            ml
16474         spray
16475            gm
16476            ml
16477            mg
16478         drops
16479         spray
16480           mcg
16481            mg
16482            mg
16483            mg
16484            mg
16485 other specify
16486            mg
16487            mg
16488            mg
16489 other specify
16490            mg
16491            mg
16492            mg
16493 other specify
16494            mg
16495            mg
16496            mg
16497         drops
16498 other specify
16499 other specify
16500            mg
16501            mg
16502           mcg
16503            mg
16504            mg
16505            mg
16506            mg
16507            mg
16508            mg
16509            mg
16510         drops
16511            mg
16512            mg
16513            mg
16514            mg
16515            mg
16516            mg
16517         drops
16518            mg
16519            mg
16520            mg
16521         drops
16522         drops
16523          tube
16524         spray
16525            mg
16526            ml
16527            mg
16528            mg
16529            mg
16530            mg
16531            ml
16532            mg
16533            mg
16534            mg
16535            mg
16536            mg
16537            ml
16538 other specify
16539            mg
16540            mg
16541            mg
16542            mg
16543 other specify
16544          pump
16545            mg
16546         units
16547            mg
16548            mg
16549            mg
16550            mg
16551 other specify
16552            mg
16553          tube
16554 other specify
16555            mg
16556            mg
16557            mg
16558            ml
16559            mg
16560            mg
16561            mg
16562            mg
16563            mg
16564            mg
16565            mg
16566            ml
16567            mg
16568            mg
16569            mg
16570            mg
16571            mg
16572            mg
16573            ml
16574            mg
16575            ml
16576            mg
16577            ml
16578            mg
16579 other specify
16580            ml
16581            ml
16582            ml
16583            ml
16584            ml
16585            ml
16586            ml
16587            ml
16588            ml
16589            mg
16590            mg
16591            ml
16592            mg
16593            mg
16594            mg
16595          tube
16596          tube
16597         drops
16598         pumps
16599            gm
16600            mg
16601            gm
16602            mg
16603            mg
16604            mg
16605           tbs
16606            ml
16607            mg
16608         drops
16609            mg
16610            mg
16611            mg
16612            mg
16613           mcg
16614            ml
16615           mcg
16616            mg
16617            gm
16618            mg
16619            mg
16620            mg
16621            gm
16622 other specify
16623 other specify
16624            mg
16625 other specify
16626            mg
16627            mg
16628            mg
16629            mg
16630            ml
16631            ml
16632            mg
16633            mg
16634            mg
16635            gm
16636         drops
16637 other specify
16638 other specify
16639         drops
16640 other specify
16641            mg
16642            mg
16643            mg
16644         drops
16645            mg
16646         drops
16647         drops
16648           mcg
16649           mcg
16650            mg
16651            mg
16652            mg
16653            gm
16654            mg
16655            mg
16656            gm
16657         drops
16658            mg
16659            mg
16660 other specify
16661 other specify
16662 other specify
16663 other specify
16664            mg
16665            mg
16666 other specify
16667            mg
16668 other specify
16669 other specify
16670 other specify
16671 other specify
16672 other specify
16673            mg
16674            mg
16675            mg
16676            mg
16677            mg
16678            mg
16679            mg
16680            mg
16681            mg
16682 other specify
16683            mg
16684         drops
16685            ml
16686            mg
16687           mcg
16688            mg
16689         mg/ml
16690            mg
16691            mg
16692         drops
16693            mg
16694           mcg
16695            mg
16696 other specify
16697            mg
16698            mg
16699         drops
16700           tbs
16701            ml
16702            ml
16703         spray
16704            ml
16705            ml
16706            mg
16707            gm
16708            mg
16709            mg
16710            mg
16711          tube
16712            ml
16713            mg
16714         drops
16715            mg
16716            mg
16717            ml
16718            ml
16719            ml
16720            mg
16721           tsp
16722         mg/ml
16723          tube
16724           tbs
16725            ml
16726            gm
16727            mg
16728            mg
16729            mg
16730            mg
16731         drops
16732         drops
16733           mcg
16734           mcg
16735           mcg
16736            mg
16737            mg
16738            mg
16739            mg
16740            mg
16741            mg
16742 other specify
16743            ml
16744            mg
16745            mg
16746            mg
16747            mg
16748            mg
16749            mg
16750            mg
16751            mg
16752            mg
16753            mg
16754            mg
16755            mg
16756 other specify
16757           mcg
16758 other specify
16759            mg
16760            mg
16761            mg
16762            ml
16763 other specify
16764            mg
16765            mg
16766            mg
16767            mg
16768            mg
16769            mg
16770            mg
16771            ml
16772            mg
16773            mg
16774            gm
16775 other specify
16776 other specify
16777            gm
16778            gm
16779            gm
16780 other specify
16781 other specify
16782 other specify
16783   unspecified
16784   unspecified
16785   unspecified
16786            mg
16787            mg
16788            mg
16789         drops
16790            mg
16791            ml
16792            ml
16793            mg
16794            mg
16795            mg
16796            mg
16797            mg
16798         drops
16799            ml
16800            mg
16801            mg
16802         drops
16803         drops
16804            mg
16805          pump
16806         drops
16807         spray
16808           mcg
16809         spray
16810           mcg
16811 other specify
16812            mg
16813            mg
16814            ml
16815         spray
16816         drops
16817            mg
16818            mg
16819            ml
16820            mg
16821            ml
16822            mg
16823         drops
16824            mg
16825            mg
16826            ml
16827            mg
16828            mg
16829            mg
16830            mg
16831            mg
16832            mg
16833            mg
16834   unspecified
16835            mg
16836            mg
16837            ml
16838   unspecified
16839            mg
16840   unspecified
16841   unspecified
16842            ml
16843            mg
16844            mg
16845            mg
16846   unspecified
16847   unspecified
16848            mg
16849         drops
16850            gm
16851           mcg
16852            mg
16853            mg
16854           mcg
16855            mg
16856           mcg
16857            mg
16858            mg
16859           mcg
16860            mg
16861           mcg
16862           mcg
16863            mg
16864 other specify
16865            mg
16866 other specify
16867            mg
16868         drops
16869         spray
16870 other specify
16871 other specify
16872 other specify
16873            mg
16874            mg
16875            mg
16876            mg
16877            mg
16878            mg
16879 other specify
16880            mg
16881            mg
16882          tube
16883           tsp
16884           tbs
16885           tbs
16886         units
16887            mg
16888            ml
16889            ml
16890            ml
16891            mg
16892            mg
16893            mg
16894            mg
16895         drops
16896            mg
16897            mg
16898            mg
16899            mg
16900            mg
16901            mg
16902           mcg
16903           mcg
16904            mg
16905           mcg
16906           mcg
16907           mcg
16908            mg
16909           mcg
16910            mg
16911            mg
16912            mg
16913 other specify
16914           mcg
16915            mg
16916            mg
16917            mg
16918            ml
16919            mg
16920 other specify
16921 other specify
16922            mg
16923            mg
16924            mg
16925            mg
16926            mg
16927            mg
16928            mg
16929            ml
16930         mg/kg
16931            mg
16932 other specify
16933            mg
16934            mg
16935         units
16936          tbsp
16937         pumps
16938 other specify
16939         drops
16940            mg
16941            mg
16942            mg
16943            mg
16944            mg
16945 other specify
16946 other specify
16947 other specify
16948 other specify
16949            mg
16950            mg
16951            mg
16952 other specify
16953 other specify
16954            mg
16955            mg
16956            mg
16957            mg
16958            mg
16959            mg
16960            mg
16961         drops
16962            mg
16963            mg
16964            mg
16965            mg
16966            mg
16967            mg
16968            mg
16969            mg
16970           mcg
16971         drops
16972 other specify
16973 other specify
16974            mg
16975            mg
16976            mg
16977            ml
16978            ml
16979 other specify
16980            mg
16981            mg
16982            mg
16983         drops
16984            mg
16985            mg
16986            mg
16987           mcg
16988            mg
16989            mg
16990           mcg
16991            mg
16992            mg
16993            ml
16994          tube
16995            mg
16996            mg
16997           mcg
16998         drops
16999           mcg
17000            ml
17001            mg
17002         units
17003            mg
17004            mg
17005         drops
17006            mg
17007            mg
17008            mg
17009            mg
17010           mcg
17011            mg
17012         spray
17013            gm
17014          tube
17015            mg
17016         drops
17017            mg
17018           tsp
17019          pump
17020   unspecified
17021            mg
17022         drops
17023            mg
17024            mg
17025            mg
17026            mg
17027            mg
17028            mg
17029 other specify
17030            mg
17031            mg
17032           mcg
17033           mcg
17034           mcg
17035           mcg
17036            mg
17037           mcg
17038           mcg
17039            mg
17040            mg
17041 other specify
17042          tube
17043            mg
17044            mg
17045            mg
17046            mg
17047            mg
17048            mg
17049           mcg
17050            mg
17051            mg
17052           mcg
17053         units
17054         units
17055            ml
17056            mg
17057 other specify
17058            gm
17059           mcg
17060           mcg
17061            mg
17062         drops
17063         drops
17064            mg
17065         drops
17066            mg
17067            mg
17068 other specify
17069            mg
17070         drops
17071            mg
17072         drops
17073         drops
17074           mcg
17075            mg
17076            ml
17077           mcg
17078            mg
17079            mg
17080 other specify
17081            mg
17082           tbs
17083            gm
17084            mg
17085            mg
17086            mg
17087            mg
17088           mcg
17089            mg
17090         drops
17091         drops
17092         drops
17093         drops
17094         drops
17095         drops
17096            mg
17097            mg
17098           mcg
17099            mg
17100            mg
17101            mg
17102            mg
17103            mg
17104            mg
17105            mg
17106            mg
17107            mg
17108            mg
17109            mg
17110            mg
17111            mg
17112            mg
17113            mg
17114            ml
17115            ml
17116           mcg
17117            ml
17118           mcg
17119            ml
17120            ml
17121         drops
17122            mg
17123            mg
17124            mg
17125         drops
17126         spray
17127         drops
17128         drops
17129            ml
17130            mg
17131         drops
17132            mg
17133            mg
17134            mg
17135         drops
17136 other specify
17137 other specify
17138         drops
17139            ml
17140            gm
17141            mg
17142 other specify
17143         spray
17144            mg
17145            mg
17146            mg
17147            mg
17148            mg
17149            mg
17150            mg
17151 other specify
17152            mg
17153           mcg
17154         drops
17155            mg
17156         drops
17157         drops
17158            mg
17159            mg
17160            mg
17161            mg
17162            gm
17163            gm
17164            mg
17165            mg
17166            ml
17167            mg
17168            ml
17169            mg
17170            mg
17171            mg
17172            mg
17173         drops
17174            mg
17175            mg
17176            mg
17177         drops
17178            mg
17179            mg
17180         spray
17181            mg
17182            ml
17183            mg
17184            mg
17185            mg
17186            mg
17187            mg
17188            mg
17189            mg
17190            mg
17191            mg
17192            mg
17193            mg
17194            mg
17195           mcg
17196 other specify
17197 other specify
17198            mg
17199 other specify
17200            mg
17201 other specify
17202 other specify
17203            mg
17204            mg
17205            ml
17206            mg
17207            ml
17208           mcg
17209          tube
17210           mcg
17211            mg
17212           mcg
17213            mg
17214            mg
17215            mg
17216            mg
17217            ml
17218           mcg
17219           mcg
17220           mcg
17221           mcg
17222           mcg
17223            mg
17224           mcg
17225           mcg
17226           mcg
17227           mcg
17228           mcg
17229   unspecified
17230 other specify
17231 other specify
17232          drop
17233         drops
17234         drops
17235            mg
17236            gm
17237            ml
17238         drops
17239         drops
17240           mcg
17241           mcg
17242            mg
17243            mg
17244            mg
17245           mcg
17246            mg
17247 other specify
17248          tube
17249            mg
17250            mg
17251         drops
17252           tsp
17253            mg
17254          pump
17255          tube
17256         drops
17257         drops
17258            mg
17259         drops
17260         drops
17261            mg
17262 other specify
17263            mg
17264            mg
17265            mg
17266         units
17267            mg
17268         spray
17269            mg
17270            mg
17271           mcg
17272            mg
17273            mg
17274            mg
17275            mg
17276            mg
17277            mg
17278            mg
17279            mg
17280            mg
17281            mg
17282            mg
17283           mcg
17284            mg
17285           mcg
17286            mg
17287            mg
17288         drops
17289 other specify
17290            mg
17291            mg
17292            mg
17293            mg
17294 other specify
17295 other specify
17296            mg
17297            mg
17298          tbsp
17299            mg
17300           mcg
17301            mg
17302            mg
17303            mg
17304            mg
17305            mg
17306            mg
17307            mg
17308            mg
17309            mg
17310            mg
17311           mcg
17312            ml
17313           mcg
17314            mg
17315            mg
17316           mcg
17317 other specify
17318            mg
17319           mcg
17320            mg
17321            mg
17322            mg
17323            mg
17324            mg
17325            mg
17326            mg
17327            gm
17328 other specify
17329            gm
17330            gm
17331            mg
17332            mg
17333            mg
17334 other specify
17335          drop
17336         drops
17337         drops
17338         drops
17339            mg
17340 other specify
17341         drops
17342            mg
17343 other specify
17344         drops
17345            mg
17346            mg
17347            mg
17348            mg
17349            gm
17350            mg
17351            mg
17352         drops
17353            mg
17354            mg
17355         spray
17356            mg
17357            ml
17358            mg
17359            mg
17360            mg
17361            mg
17362            mg
17363 other specify
17364 other specify
17365            mg
17366            mg
17367 other specify
17368            mg
17369            mg
17370 other specify
17371 other specify
17372 other specify
17373 other specify
17374            ml
17375            mg
17376            mg
17377            mg
17378            mg
17379            gm
17380            mg
17381          pump
17382           mcg
17383            mg
17384           mcg
17385            mg
17386           mcg
17387           mcg
17388 other specify
17389           mcg
17390            ml
17391           mcg
17392            mg
17393          tube
17394            mg
17395            mg
17396            ml
17397            ml
17398            mg
17399          tube
17400            mg
17401            mg
17402            mg
17403            mg
17404            mg
17405            mg
17406            gm
17407         drops
17408            mg
17409            mg
17410            mg
17411            mg
17412   unspecified
17413            mg
17414            mg
17415           mcg
17416           mcg
17417          tube
17418           tsp
17419         drops
17420            ml
17421         drops
17422            mg
17423            mg
17424 other specify
17425            mg
17426   unspecified
17427   unspecified
17428            mg
17429           mcg
17430            mg
17431           mcg
17432            mg
17433            mg
17434            mg
17435            mg
17436            mg
17437            mg
17438           mcg
17439           mcg
17440            mg
17441            gm
17442            mg
17443            mg
17444           mcg
17445           mcg
17446         drops
17447            mg
17448           mcg
17449            mg
17450            ml
17451           mcg
17452            mg
17453            mg
17454            mg
17455            mg
17456            ml
17457 other specify
17458            mg
17459 other specify
17460            ml
17461            mg
17462            mg
17463          drop
17464 other specify
17465            mg
17466            ml
17467            ml
17468            mg
17469            mg
17470            gm
17471            mg
17472         units
17473         units
17474         units
17475         units
17476            mg
17477            ml
17478            ml
17479            mg
17480            ml
17481            mg
17482            oz
17483            mg
17484 other specify
17485            mg
17486         drops
17487            ml
17488         drops
17489         drops
17490          tube
17491         drops
17492         drops
17493         drops
17494 other specify
17495            ml
17496            ml
17497 other specify
17498 other specify
17499            mg
17500            mg
17501            mg
17502            mg
17503            mg
17504            mg
17505            mg
17506            mg
17507            mg
17508            mg
17509            mg
17510            mg
17511            mg
17512         drops
17513            mg
17514            mg
17515            mg
17516            mg
17517            mg
17518            ml
17519         drops
17520            mg
17521            mg
17522            mg
17523            mg
17524            mg
17525            mg
17526            mg
17527            mg
17528            mg
17529            mg
17530 other specify
17531            mg
17532            mg
17533            mg
17534            ml
17535            mg
17536            mg
17537            mg
17538            mg
17539            mg
17540            mg
17541            ml
17542            mg
17543            mg
17544         drops
17545            ml
17546            mg
17547 other specify
17548            ml
17549 other specify
17550            mg
17551            mg
17552            mg
17553            mg
17554            ml
17555            mg
17556            mg
17557            mg
17558            mg
17559            mg
17560 other specify
17561            mg
17562 other specify
17563         drops
17564            mg
17565            mg
17566            mg
17567         drops
17568 other specify
17569         drops
17570            mg
17571            ml
17572            mg
17573            mg
17574            mg
17575            mg
17576         drops
17577            mg
17578            mg
17579            mg
17580            mg
17581            mg
17582 other specify
17583            ml
17584            mg
17585            mg
17586            mg
17587            mg
17588         drops
17589            ml
17590            ml
17591   unspecified
17592            ml
17593            mg
17594            mg
17595            mg
17596            mg
17597            mg
17598            mg
17599            ml
17600            mg
17601         drops
17602         drops
17603          pump
17604 other specify
17605            mg
17606 other specify
17607            mg
17608            mg
17609            mg
17610            mg
17611         pumps
17612            ml
17613            mg
17614            mg
17615            gm
17616            mg
17617            ml
17618            mg
17619            mg
17620            mg
17621 other specify
17622            ml
17623            mg
17624            mg
17625 other specify
17626            ml
17627            ml
17628            mg
17629            ml
17630            mg
17631 other specify
17632            mg
17633            ml
17634            mg
17635            ml
17636            mg
17637            mg
17638            mg
17639            mg
17640            mg
17641         drops
17642 other specify
17643            mg
17644            mg
17645            mg
17646 other specify
17647            mg
17648            mg
17649 other specify
17650            mg
17651            mg
17652            mg
17653            mg
17654            mg
17655            mg
17656            mg
17657            mg
17658            mg
17659         drops
17660            mg
17661            mg
17662            ml
17663            mg
17664            mg
17665            mg
17666            mg
17667            mg
17668            mg
17669            mg
17670 other specify
17671            mg
17672            mg
17673            mg
17674 other specify
17675 other specify
17676 other specify
17677            mg
17678            mg
17679            gm
17680   unspecified
17681            mg
17682            mg
17683            mg
17684            mg
17685            mg
17686            mg
17687            mg
17688         drops
17689 other specify
17690            mg
17691            mg
17692            mg
17693 other specify
17694            mg
17695            mg
17696            mg
17697            mg
17698            mg
17699            mg
17700         drops
17701            mg
17702            mg
17703            mg
17704            ml
17705            mg
17706            mg
17707            mg
17708            mg
17709            mg
17710            ml
17711            mg
17712            mg
17713            ml
17714            mg
17715            mg
17716            mg
17717            ml
17718            mg
17719            mg
17720         drops
17721            mg
17722          tube
17723 other specify
17724            mg
17725           mcg
17726            mg
17727            mg
17728            mg
17729            mg
17730            ml
17731            mg
17732            ml
17733            mg
17734            mg
17735           tsp
17736            mg
17737            mg
17738            mg
17739            mg
17740           tbs
17741 other specify
17742         drops
17743         drops
17744         drops
17745            mg
17746            mg
17747            mg
17748            mg
17749            mg
17750            ml
17751           mcg
17752            mg
17753            mg
17754            mg
17755         spray
17756            mg
17757           mcg
17758           mcg
17759            mg
17760           mcg
17761            mg
17762            mg
17763           mcg
17764            mg
17765            mg
17766            mg
17767            mg
17768            mg
17769            mg
17770            mg
17771            mg
17772            mg
17773            mg
17774            mg
17775           mcg
17776            mg
17777            mg
17778            mg
17779         spray
17780            mg
17781         drops
17782         spray
17783            mg
17784            ml
17785            gm
17786            mg
17787            mg
17788            mg
17789            mg
17790            mg
17791            mg
17792            mg
17793            mg
17794         drops
17795            mg
17796            mg
17797            mg
17798         drops
17799            mg
17800            mg
17801            mg
17802         drops
17803   unspecified
17804   unspecified
17805 other specify
17806            mg
17807            mg
17808 other specify
17809            mg
17810            mg
17811 other specify
17812            mg
17813            mg
17814           mcg
17815            ml
17816            mg
17817           mcg
17818         drops
17819            ml
17820            ml
17821            ml
17822            gm
17823            ml
17824            mg
17825           mcg
17826            mg
17827           mcg
17828            mg
17829            mg
17830            mg
17831            mg
17832          tube
17833         drops
17834         drops
17835            mg
17836 other specify
17837            mg
17838         units
17839         units
17840         drops
17841         drops
17842            mg
17843            mg
17844            mg
17845         drops
17846 other specify
17847 other specify
17848 other specify
17849            mg
17850            mg
17851            mg
17852            mg
17853   unspecified
17854            mg
17855         drops
17856         drops
17857            mg
17858            mg
17859            mg
17860   unspecified
17861            mg
17862            mg
17863            ml
17864            mg
17865   unspecified
17866         drops
17867         drops
17868            mg
17869           mcg
17870           mcg
17871            oz
17872            oz
17873            oz
17874            mg
17875            mg
17876            mg
17877            mg
17878         drops
17879            mg
17880            mg
17881            mg
17882            mg
17883            mg
17884            mg
17885            gm
17886            gm
17887           mcg
17888            oz
17889            mg
17890            mg
17891            mg
17892            mg
17893            mg
17894         drops
17895            mg
17896            ml
17897           mcg
17898            mg
17899           mcg
17900            ml
17901            mg
17902            mg
17903            mg
17904           mcg
17905            ml
17906            mg
17907            mg
17908            gm
17909            mg
17910            mg
17911         drops
17912            mg
17913            mg
17914            mg
17915            mg
17916            mg
17917            mg
17918           mcg
17919            ml
17920            mg
17921            mg
17922            mg
17923            mg
17924            mg
17925            mg
17926            mg
17927            mg
17928            mg
17929            mg
17930            mg
17931            mg
17932            mg
17933            mg
17934            mg
17935            mg
17936 other specify
17937            mg
17938            mg
17939 other specify
17940 other specify
17941            mg
17942 other specify
17943            mg
17944            mg
17945            mg
17946            mg
17947 other specify
17948            mg
17949            ml
17950            mg
17951            mg
17952            mg
17953            mg
17954            mg
17955            mg
17956            mg
17957            gm
17958            mg
17959            mg
17960            mg
17961            mg
17962            mg
17963            mg
17964            mg
17965            mg
17966            mg
17967            mg
17968            mg
17969         drops
17970            mg
17971            mg
17972         drops
17973            mg
17974 other specify
17975            mg
17976 other specify
17977 other specify
17978            mg
17979            mg
17980            mg
17981            mg
17982           mcg
17983            mg
17984            mg
17985            mg
17986            mg
17987           mcg
17988            mg
17989            mg
17990            mg
17991 other specify
17992            gm
17993            mg
17994            ml
17995            mg
17996            mg
17997            oz
17998            mg
17999            mg
18000            mg
18001 other specify
18002            mg
18003 other specify
18004            mg
18005            mg
18006            mg
18007            mg
18008            mg
18009 other specify
18010 other specify
18011 other specify
18012            mg
18013            mg
18014 other specify
18015 other specify
18016            mg
18017            mg
18018            mg
18019            mg
18020            mg
18021 other specify
18022            mg
18023            gm
18024            ml
18025 other specify
18026 other specify
18027            mg
18028            mg
18029            mg
18030 other specify
18031            mg
18032            mg
18033            mg
18034            mg
18035            mg
18036            mg
18037         drops
18038            mg
18039            mg
18040            mg
18041 other specify
18042            gm
18043            mg
18044         drops
18045            mg
18046            mg
18047            mg
18048            mg
18049           mcg
18050            mg
18051            mg
18052            mg
18053            mg
18054            mg
18055         drops
18056            mg
18057         drops
18058         drops
18059            mg
18060            mg
18061            mg
18062            mg
18063            mg
18064         drops
18065            mg
18066            mg
18067            mg
18068         drops
18069 other specify
18070            mg
18071         drops
18072         drops
18073 other specify
18074         drops
18075            ml
18076 other specify
18077         drops
18078         drops
18079 other specify
18080 other specify
18081 other specify
18082           mcg
18083 other specify
18084            mg
18085            mg
18086            mg
18087            mg
18088            mg
18089            mg
18090            mg
18091            mg
18092            mg
18093            mg
18094         drops
18095          drop
18096            ml
18097            mg
18098         drops
18099 other specify
18100            mg
18101            mg
18102            mg
18103            mg
18104            mg
18105            mg
18106            mg
18107            mg
18108            mg
18109            mg
18110            mg
18111            mg
18112            mg
18113            mg
18114            mg
18115            mg
18116            mg
18117 other specify
18118          tube
18119            ml
18120            ml
18121            mg
18122           mcg
18123         units
18124         drops
18125 other specify
18126            mg
18127            ml
18128            mg
18129         drops
18130            mg
18131            mg
18132            ml
18133         drops
18134   unspecified
18135            ml
18136            ml
18137            ml
18138            ml
18139            mg
18140            mg
18141   unspecified
18142            mg
18143            ml
18144            ml
18145            ml
18146            ml
18147         drops
18148            mg
18149            ml
18150 other specify
18151         drops
18152            mg
18153            mg
18154            mg
18155            mg
18156            mg
18157            mg
18158            mg
18159         drops
18160            mg
18161            mg
18162            mg
18163            mg
18164         drops
18165            ml
18166            mg
18167            mg
18168            mg
18169 other specify
18170            mg
18171            mg
18172            mg
18173            mg
18174            mg
18175            mg
18176            mg
18177            ml
18178            mg
18179            ml
18180            mg
18181            ml
18182           mcg
18183 other specify
18184            mg
18185            mg
18186            mg
18187            mg
18188            ml
18189            mg
18190            mg
18191         units
18192            iu
18193            mg
18194            mg
18195            mg
18196            mg
18197            mg
18198            mg
18199            mg
18200            mg
18201            mg
18202            ml
18203            mg
18204            mg
18205          tube
18206            mg
18207            mg
18208            mg
18209            mg
18210            mg
18211            mg
18212            mg
18213         units
18214            ml
18215            mg
18216            mg
18217           mcg
18218           mcg
18219            mg
18220            mg
18221            ml
18222          tube
18223 other specify
18224            mg
18225            mg
18226            mg
18227            ml
18228            mg
18229            mg
18230            mg
18231 other specify
18232 other specify
18233 other specify
18234            ml
18235            ml
18236            ml
18237 other specify
18238          tube
18239            mg
18240            mg
18241 other specify
18242 other specify
18243 other specify
18244            mg
18245            ml
18246            ml
18247            ml
18248            ml
18249            mg
18250            mg
18251         drops
18252            mg
18253            mg
18254 other specify
18255            mg
18256            mg
18257            ml
18258 other specify
18259            mg
18260            mg
18261            mg
18262 other specify
18263            iu
18264            mg
18265            mg
18266            mg
18267            mg
18268            mg
18269            mg
18270            mg
18271            ml
18272            mg
18273            mg
18274            ml
18275          tube
18276         drops
18277         mg/kg
18278         units
18279         units
18280            mg
18281         units
18282            mg
18283         units
18284         units
18285 other specify
18286            mg
18287            mg
18288            mg
18289            mg
18290            mg
18291            mg
18292            mg
18293            mg
18294            mg
18295            mg
18296 other specify
18297            mg
18298            mg
18299            mg
18300 other specify
18301 other specify
18302            mg
18303            mg
18304           mcg
18305            mg
18306            mg
18307            mg
18308            mg
18309 other specify
18310         drops
18311            mg
18312            mg
18313            mg
18314 other specify
18315            mg
18316 other specify
18317            mg
18318 other specify
18319 other specify
18320 other specify
18321 other specify
18322 other specify
18323   unspecified
18324            mg
18325   unspecified
18326   unspecified
18327            gm
18328            mg
18329            ml
18330            ml
18331            ml
18332            mg
18333            mg
18334            mg
18335 other specify
18336            ml
18337            ml
18338         drops
18339          drop
18340          pump
18341          pump
18342         units
18343         drops
18344            ml
18345            mg
18346            mg
18347            mg
18348            mg
18349           mcg
18350            mg
18351            mg
18352            mg
18353            mg
18354            mg
18355            mg
18356            mg
18357            mg
18358            mg
18359         drops
18360            mg
18361            mg
18362            mg
18363            mg
18364            mg
18365         drops
18366         drops
18367 other specify
18368            mg
18369            mg
18370        sprays
18371         drops
18372 other specify
18373          tube
18374           tsp
18375 other specify
18376            mg
18377            mg
18378            mg
18379            mg
18380            mg
18381            mg
18382            mg
18383            mg
18384            mg
18385            mg
18386            mg
18387            mg
18388            mg
18389            mg
18390           mcg
18391           mcg
18392            mg
18393            mg
18394            mg
18395            mg
18396           mcg
18397            mg
18398           mcg
18399            mg
18400            mg
18401           mcg
18402            mg
18403            mg
18404         drops
18405            mg
18406           mcg
18407            mg
18408            mg
18409            mg
18410            mg
18411            mg
18412            mg
18413            mg
18414           mcg
18415         spray
18416 other specify
18417            mg
18418           mcg
18419           mcg
18420            mg
18421            mg
18422            mg
18423            mg
18424            ml
18425            ml
18426            ml
18427          drop
18428            mg
18429            mg
18430            mg
18431            mg
18432            mg
18433            mg
18434            mg
18435            mg
18436 other specify
18437            ml
18438            mg
18439            mg
18440            mg
18441            mg
18442            mg
18443            mg
18444 other specify
18445         units
18446         units
18447            mg
18448            mg
18449            mg
18450            mg
18451            mg
18452            mg
18453 other specify
18454 other specify
18455            mg
18456            mg
18457 other specify
18458 other specify
18459            ml
18460           tsp
18461          tbsp
18462            mg
18463            mg
18464            mg
18465            mg
18466         drops
18467           mcg
18468            mg
18469         spray
18470           mcg
18471         spray
18472           mcg
18473 other specify
18474            mg
18475            mg
18476            mg
18477         drops
18478            mg
18479            mg
18480            mg
18481            mg
18482            mg
18483            mg
18484            mg
18485            mg
18486            mg
18487            mg
18488            mg
18489            ml
18490          tbsp
18491            mg
18492            mg
18493            mg
18494          drop
18495          drop
18496            mg
18497           mcg
18498            ml
18499            mg
18500         spray
18501            mg
18502         spray
18503            mg
18504 other specify
18505            mg
18506            mg
18507            mg
18508            mg
18509            mg
18510            mg
18511            mg
18512           mcg
18513           mcg
18514           tsp
18515            mg
18516            mg
18517           mcg
18518            mg
18519 other specify
18520         spray
18521            mg
18522            mg
18523            mg
18524           mcg
18525            mg
18526            mg
18527            mg
18528         units
18529            mg
18530         units
18531         units
18532            mg
18533            mg
18534         spray
18535 other specify
18536 other specify
18537            mg
18538           mcg
18539 other specify
18540            gm
18541           mcg
18542 other specify
18543        sprays
18544            ml
18545            mg
18546            mg
18547            ml
18548            mg
18549            mg
18550            oz
18551            ml
18552            ml
18553            mg
18554            mg
18555 other specify
18556            ml
18557            ml
18558 other specify
18559            mg
18560            mg
18561           mcg
18562          tube
18563            mg
18564           mcg
18565          drop
18566            mg
18567            mg
18568            mg
18569            mg
18570         drops
18571         pumps
18572          pump
18573         units
18574         drops
18575           mcg
18576          tube
18577         drops
18578            mg
18579            mg
18580          tube
18581 other specify
18582            mg
18583            mg
18584            mg
18585            mg
18586            mg
18587            mg
18588   unspecified
18589           mcg
18590            mg
18591            ml
18592            mg
18593            mg
18594            mg
18595         spray
18596            mg
18597            mg
18598            mg
18599            mg
18600            mg
18601            mg
18602            mg
18603            mg
18604            mg
18605            mg
18606            mg
18607 other specify
18608            mg
18609            mg
18610 other specify
18611            mg
18612          drop
18613            gm
18614 other specify
18615            mg
18616            mg
18617            mg
18618            mg
18619            mg
18620            mg
18621         drops
18622            mg
18623            mg
18624            mg
18625            mg
18626         drops
18627            mg
18628            mg
18629            mg
18630 other specify
18631            mg
18632            mg
18633            mg
18634            mg
18635 other specify
18636            mg
18637            mg
18638            mg
18639         drops
18640            mg
18641            mg
18642            mg
18643            mg
18644            mg
18645            mg
18646            mg
18647            mg
18648            ml
18649          drop
18650            mg
18651            mg
18652            mg
18653            mg
18654            mg
18655            mg
18656         drops
18657            mg
18658            mg
18659            mg
18660            mg
18661            mg
18662           mcg
18663            mg
18664            mg
18665            mg
18666 other specify
18667            mg
18668            mg
18669 other specify
18670            mg
18671            mg
18672            mg
18673         drops
18674 other specify
18675            mg
18676            mg
18677            mg
18678            mg
18679            mg
18680            mg
18681            mg
18682            mg
18683            mg
18684            mg
18685            mg
18686           mcg
18687         drops
18688            mg
18689            mg
18690           mcg
18691            mg
18692 other specify
18693            mg
18694            mg
18695            ml
18696            ml
18697         spray
18698            oz
18699            gm
18700            gm
18701            mg
18702            mg
18703            ml
18704 other specify
18705           mcg
18706           mcg
18707           mcg
18708            mg
18709            mg
18710            mg
18711            mg
18712            mg
18713            mg
18714            mg
18715            mg
18716            ml
18717            mg
18718            ml
18719            mg
18720            mg
18721            mg
18722            mg
18723            mg
18724            mg
18725            mg
18726            mg
18727 other specify
18728            ml
18729            ml
18730            mg
18731            mg
18732 other specify
18733 other specify
18734            ml
18735         drops
18736          drop
18737            gm
18738            mg
18739            mg
18740 other specify
18741            mg
18742            mg
18743            ml
18744 other specify
18745 other specify
18746            mg
18747            mg
18748 other specify
18749           mcg
18750           mcg
18751            mg
18752            mg
18753            mg
18754            mg
18755            mg
18756            mg
18757            mg
18758            mg
18759            mg
18760            mg
18761            mg
18762            mg
18763            mg
18764            mg
18765            mg
18766            mg
18767            ml
18768            mg
18769            mg
18770            mg
18771            mg
18772            mg
18773 other specify
18774            mg
18775            mg
18776            mg
18777         drops
18778 other specify
18779            mg
18780            mg
18781            mg
18782            mg
18783            mg
18784            mg
18785            mg
18786            mg
18787            mg
18788         units
18789            mg
18790            mg
18791            mg
18792            mg
18793            mg
18794            mg
18795         spray
18796         spray
18797         spray
18798            ml
18799           mcg
18800           mcg
18801           mcg
18802            mg
18803            ml
18804           mcg
18805           mcg
18806            mg
18807           mcg
18808            mg
18809            mg
18810            mg
18811            gm
18812            mg
18813            mg
18814            mg
18815            mg
18816            mg
18817            mg
18818            mg
18819            mg
18820         drops
18821         drops
18822            mg
18823            mg
18824            mg
18825            mg
18826 other specify
18827            mg
18828            ml
18829            mg
18830            mg
18831            mg
18832            mg
18833            mg
18834            mg
18835            mg
18836            mg
18837           ml 
18838           ml 
18839           ml 
18840            ml
18841            mg
18842         drops
18843            mg
18844           ml 
18845          drop
18846 other specify
18847          drop
18848            mg
18849            mg
18850          drop
18851            mg
18852          drop
18853           ml 
18854          drop
18855 other specify
18856 other specify
18857            mg
18858            mg
18859            mg
18860            mg
18861         drops
18862            mg
18863            mg
18864         units
18865         units
18866            mg
18867            mg
18868            mg
18869 other specify
18870 other specify
18871            mg
18872            mg
18873            mg
18874            mg
18875 other specify
18876 other specify
18877 other specify
18878 other specify
18879 other specify
18880 other specify
18881 other specify
18882         drops
18883            mg
18884            ml
18885            mg
18886           mcg
18887            mg
18888            ml
18889            ml
18890            ml
18891            ml
18892            mg
18893 other specify
18894           mcg
18895            mg
18896         drops
18897 other specify
18898            gm
18899 other specify
18900            mg
18901            mg
18902           mcg
18903            mg
18904         mg/kg
18905         mg/kg
18906            mg
18907            mg
18908         drops
18909           tsp
18910           mcg
18911            mg
18912            mg
18913            ml
18914           mcg
18915           mcg
18916            mg
18917           mcg
18918            mg
18919          drop
18920           mcg
18921          drop
18922 other specify
18923            mg
18924          drop
18925            mg
18926            mg
18927            mg
18928            mg
18929            gm
18930           mcg
18931            ml
18932           mcg
18933            mg
18934           mcg
18935         spray
18936            ml
18937         spray
18938            mg
18939           mcg
18940           mcg
18941            mg
18942            mg
18943            mg
18944            mg
18945            mg
18946            mg
18947            mg
18948            mg
18949            mg
18950            mg
18951           mcg
18952            mg
18953 other specify
18954 other specify
18955            mg
18956            mg
18957            mg
18958            mg
18959            mg
18960           mcg
18961         spray
18962           mcg
18963            mg
18964          pump
18965            mg
18966            mg
18967           mcg
18968            mg
18969            mg
18970         drops
18971           tbs
18972           mcg
18973            mg
18974            mg
18975           mcg
18976            mg
18977            mg
18978            mg
18979            mg
18980           mcg
18981            mg
18982           mcg
18983            mg
18984            mg
18985            mg
18986            mg
18987           mcg
18988            ml
18989         spray
18990           mcg
18991            ml
18992            mg
18993           tbs
18994            mg
18995 other specify
18996            mg
18997            mg
18998   unspecified
18999 other specify
19000            mg
19001            mg
19002            mg
19003   unspecified
19004         drops
19005        sprays
19006          pump
19007         drops
19008            ml
19009           tsp
19010 other specify
19011 other specify
19012           tsp
19013 other specify
19014            mg
19015            mg
19016            ml
19017            ml
19018            mg
19019            mg
19020            mg
19021   unspecified
19022          tube
19023         drops
19024 other specify
19025          drop
19026            mg
19027            mg
19028            mg
19029            mg
19030            mg
19031            mg
19032            mg
19033            mg
19034            mg
19035            mg
19036           mcg
19037            mg
19038           mcg
19039            mg
19040            mg
19041            mg
19042            mg
19043 other specify
19044            mg
19045 other specify
19046            mg
19047            gm
19048            mg
19049         drops
19050            mg
19051         drops
19052            mg
19053            mg
19054            mg
19055         drops
19056            ml
19057         mg/ml
19058         drops
19059            mg
19060            mg
19061          pump
19062            mg
19063            mg
19064            mg
19065            mg
19066            mg
19067 other specify
19068            mg
19069            mg
19070            ml
19071            mg
19072         spray
19073         spray
19074            mg
19075            mg
19076            mg
19077 other specify
19078         spray
19079            ml
19080            ml
19081            ml
19082         drops
19083           mcg
19084            mg
19085           mcg
19086            ml
19087            oz
19088           mcg
19089            ml
19090         drops
19091            ml
19092            mg
19093            mg
19094            mg
19095            mg
19096            mg
19097            mg
19098            mg
19099            mg
19100            mg
19101         drops
19102 other specify
19103            ml
19104            mg
19105 other specify
19106            mg
19107            ml
19108            mg
19109            ml
19110            ml
19111 other specify
19112            mg
19113            mg
19114            ml
19115            mg
19116            gm
19117            mg
19118            mg
19119            mg
19120            mg
19121            mg
19122         drops
19123            ml
19124            ml
19125            ml
19126            ml
19127            ml
19128            ml
19129            ml
19130            ml
19131            mg
19132            mg
19133            mg
19134            ml
19135            mg
19136            mg
19137            gm
19138            mg
19139            mg
19140 other specify
19141 other specify
19142 other specify
19143            mg
19144            mg
19145 other specify
19146 other specify
19147            mg
19148            mg
19149            mg
19150            mg
19151 other specify
19152         drops
19153           ml 
19154            ml
19155            ml
19156            ml
19157 other specify
19158 other specify
19159   unspecified
19160            mg
19161            mg
19162            ml
19163            mg
19164           tbs
19165         spray
19166 other specify
19167 other specify
19168            mg
19169         spray
19170            ml
19171            mg
19172            mg
19173            mg
19174            mg
19175            mg
19176            mg
19177            mg
19178            mg
19179            mg
19180            mg
19181            mg
19182 other specify
19183          drop
19184            ml
19185            mg
19186            mg
19187         drops
19188         drops
19189            mg
19190            mg
19191            mg
19192            mg
19193         units
19194            mg
19195            mg
19196            mg
19197            ml
19198            mg
19199            mg
19200            mg
19201            mg
19202            mg
19203            mg
19204            mg
19205            mg
19206            mg
19207            mg
19208 other specify
19209            mg
19210            mg
19211            mg
19212            mg
19213        sprays
19214          drop
19215         drops
19216          drop
19217          drop
19218           tbs
19219            mg
19220           mcg
19221         spray
19222         drops
19223            ml
19224            ml
19225            mg
19226 other specify
19227            mg
19228            gm
19229            mg
19230            mg
19231 other specify
19232            mg
19233            mg
19234            gm
19235            mg
19236            mg
19237            mg
19238            mg
19239            mg
19240            mg
19241            mg
19242            mg
19243           mcg
19244            mg
19245         units
19246            ml
19247            mg
19248            mg
19249            gm
19250            mg
19251            mg
19252            mg
19253            mg
19254            mg
19255           mcg
19256            mg
19257            mg
19258            mg
19259            mg
19260            mg
19261            mg
19262            mg
19263            mg
19264            gm
19265            mg
19266            mg
19267            mg
19268            mg
19269            mg
19270         drops
19271         spray
19272         spray
19273            ml
19274            mg
19275            mg
19276         drops
19277            mg
19278            ml
19279            mg
19280         drops
19281         drops
19282         spray
19283            mg
19284            mg
19285            mg
19286            mg
19287         drops
19288         drops
19289            mg
19290         drops
19291            mg
19292            mg
19293            mg
19294            mg
19295            mg
19296            mg
19297            mg
19298         drops
19299         drops
19300            mg
19301            mg
19302           mcg
19303            oz
19304            ml
19305           mcg
19306            oz
19307            mg
19308            mg
19309            mg
19310            ml
19311            mg
19312            mg
19313            ml
19314            mg
19315 other specify
19316            mg
19317            mg
19318            ml
19319            ml
19320            mg
19321            ml
19322            mg
19323         drops
19324            mg
19325         drops
19326         drops
19327          tube
19328            mg
19329            mg
19330            mg
19331            mg
19332            mg
19333            mg
19334            mg
19335            mg
19336            mg
19337            mg
19338            ml
19339            mg
19340            mg
19341 other specify
19342            mg
19343            mg
19344         units
19345         units
19346 other specify
19347         units
19348            mg
19349            mg
19350            ml
19351            mg
19352            mg
19353   unspecified
19354   unspecified
19355            mg
19356           mcg
19357        sprays
19358            mg
19359           mcg
19360            mg
19361            mg
19362            mg
19363            mg
19364            mg
19365           mcg
19366           mcg
19367           mcg
19368            mg
19369            mg
19370            mg
19371            mg
19372            mg
19373         drops
19374 other specify
19375            ml
19376           mcg
19377            mg
19378            mg
19379            mg
19380           mcg
19381            mg
19382            mg
19383            mg
19384            ml
19385            mg
19386         drops
19387          tube
19388            mg
19389            mg
19390         pumps
19391          tube
19392         drops
19393            mg
19394            mg
19395 other specify
19396            mg
19397 other specify
19398            mg
19399            mg
19400            mg
19401           mcg
19402           mcg
19403            mg
19404            mg
19405            mg
19406            mg
19407            mg
19408            mg
19409            mg
19410            mg
19411            mg
19412            mg
19413            mg
19414            mg
19415           mcg
19416           mcg
19417            mg
19418            mg
19419            mg
19420            mg
19421            mg
19422            mg
19423         spray
19424 other specify
19425            ml
19426 other specify
19427            gm
19428            mg
19429            mg
19430            mg
19431           mcg
19432           mcg
19433           mcg
19434            mg
19435            mg
19436            mg
19437            oz
19438            gm
19439            ml
19440            ml
19441            mg
19442            ml
19443            mg
19444            mg
19445         drops
19446         drops
19447            ml
19448          pump
19449           tsp
19450           tsp
19451            mg
19452   unspecified
19453   unspecified
19454   unspecified
19455            mg
19456            mg
19457          tube
19458            mg
19459            mg
19460            mg
19461 other specify
19462         drops
19463         drops
19464         drops
19465         drops
19466            mg
19467            mg
19468            mg
19469            mg
19470            mg
19471            mg
19472            mg
19473            mg
19474            mg
19475            mg
19476         drops
19477            mg
19478            mg
19479            mg
19480            mg
19481            mg
19482          tube
19483         drops
19484         drops
19485            mg
19486         units
19487         drops
19488            mg
19489            mg
19490            mg
19491         mg/ml
19492            ml
19493         drops
19494 other specify
19495         spray
19496            mg
19497           mcg
19498            mg
19499            gm
19500            mg
19501           tbs
19502            mg
19503           mcg
19504            mg
19505            mg
19506            mg
19507 other specify
19508            mg
19509            mg
19510            mg
19511            mg
19512            mg
19513            mg
19514            mg
19515            mg
19516            gm
19517            gm
19518            mg
19519            mg
19520            mg
19521            mg
19522            mg
19523 other specify
19524 other specify
19525            mg
19526            mg
19527            mg
19528            mg
19529            mg
19530            mg
19531            mg
19532            mg
19533            mg
19534            mg
19535            mg
19536            mg
19537         drops
19538         drops
19539         drops
19540            mg
19541 other specify
19542 other specify
19543 other specify
19544 other specify
19545            mg
19546            mg
19547            mg
19548 other specify
19549            mg
19550 other specify
19551 other specify
19552            mg
19553            mg
19554         drops
19555 other specify
19556            mg
19557            mg
19558            mg
19559            mg
19560            mg
19561            mg
19562            oz
19563            mg
19564            mg
19565 other specify
19566            mg
19567            mg
19568          drop
19569            ml
19570            mg
19571            mg
19572            mg
19573            ml
19574            mg
19575            mg
19576            mg
19577            mg
19578            mg
19579            mg
19580            mg
19581            ml
19582 other specify
19583            mg
19584            gm
19585            mg
19586            mg
19587            mg
19588            ml
19589            mg
19590            mg
19591            ml
19592 other specify
19593            mg
19594            mg
19595         drops
19596            mg
19597 other specify
19598            mg
19599            mg
19600         drops
19601 other specify
19602 other specify
19603         drops
19604 other specify
19605            mg
19606            mg
19607            mg
19608            mg
19609            mg
19610           mcg
19611           mcg
19612            ml
19613           mcg
19614            mg
19615         drops
19616           mcg
19617            ml
19618            mg
19619            mg
19620            mg
19621           mcg
19622            ml
19623            mg
19624           mcg
19625            mg
19626           mcg
19627            ml
19628            mg
19629            mg
19630            mg
19631            mg
19632            mg
19633            mg
19634            mg
19635 other specify
19636            mg
19637            mg
19638            mg
19639            mg
19640            mg
19641   unspecified
19642            mg
19643            ml
19644            mg
19645            mg
19646           tbs
19647            mg
19648            mg
19649            mg
19650            mg
19651         drops
19652            mg
19653            mg
19654            mg
19655            mg
19656            mg
19657            mg
19658            mg
19659 other specify
19660            mg
19661            mg
19662         drops
19663            mg
19664            mg
19665            mg
19666            mg
19667            mg
19668            mg
19669         units
19670            mg
19671            mg
19672            mg
19673            gm
19674            gm
19675            mg
19676            mg
19677            ml
19678            mg
19679            mg
19680            mg
19681            mg
19682            mg
19683            mg
19684            mg
19685            ml
19686            mg
19687            mg
19688         spray
19689            mg
19690            gm
19691            mg
19692            mg
19693            mg
19694            mg
19695            mg
19696            mg
19697            mg
19698            mg
19699            mg
19700            mg
19701            mg
19702            mg
19703            mg
19704           mcg
19705            mg
19706            ml
19707            mg
19708           mcg
19709            mg
19710            ml
19711        sprays
19712         spray
19713         spray
19714         drops
19715            ml
19716            ml
19717            ml
19718            ml
19719           tsp
19720            mg
19721            mg
19722          tube
19723           mcg
19724 other specify
19725            mg
19726            mg
19727            mg
19728            oz
19729 other specify
19730         drops
19731            mg
19732            mg
19733            mg
19734            mg
19735          tube
19736            mg
19737         drops
19738            mg
19739            mg
19740            mg
19741         units
19742            mg
19743            mg
19744            mg
19745            mg
19746            ml
19747         drops
19748            mg
19749            mg
19750            mg
19751            mg
19752            mg
19753         units
19754            mg
19755            mg
19756            mg
19757            mg
19758            mg
19759            mg
19760            mg
19761            mg
19762            mg
19763            mg
19764            mg
19765            mg
19766            gm
19767         drops
19768            ml
19769            mg
19770            mg
19771            mg
19772            mg
19773            mg
19774            mg
19775            mg
19776         drops
19777         drops
19778         drops
19779         drops
19780 other specify
19781 other specify
19782 other specify
19783           mcg
19784            mg
19785            mg
19786 other specify
19787            mg
19788            ml
19789            ml
19790            oz
19791            mg
19792   unspecified
19793 other specify
19794            mg
19795            mg
19796            mg
19797            mg
19798            mg
19799            mg
19800 other specify
19801         drops
19802 other specify
19803        sprays
19804 other specify
19805 other specify
19806 other specify
19807 other specify
19808            mg
19809 other specify
19810 other specify
19811            mg
19812 other specify
19813 other specify
19814            mg
19815            mg
19816 other specify
19817 other specify
19818            ml
19819            mg
19820            mg
19821 other specify
19822            mg
19823         drops
19824            mg
19825         units
19826            mg
19827            mg
19828         spray
19829         drops
19830            mg
19831            mg
19832            mg
19833            ml
19834            mg
19835            mg
19836            ml
19837 other specify
19838   unspecified
19839            mg
19840            oz
19841            ml
19842            mg
19843         drops
19844            ml
19845         drops
19846 other specify
19847 other specify
19848            mg
19849            mg
19850            mg
19851         units
19852         drops
19853 other specify
19854 other specify
19855            mg
19856         spray
19857 other specify
19858            mg
19859            mg
19860         mg/lb
19861            mg
19862            ml
19863            mg
19864            mg
19865            mg
19866          drop
19867            mg
19868            mg
19869            mg
19870            mg
19871            mg
19872            mg
19873            mg
19874            mg
19875            mg
19876            mg
19877            mg
19878            mg
19879            mg
19880            mg
19881   unspecified
19882            mg
19883            mg
19884         drops
19885            mg
19886            mg
19887 other specify
19888           tsp
19889            mg
19890            mg
19891            mg
19892            mg
19893            mg
19894            mg
19895            mg
19896            mg
19897            mg
19898            mg
19899            mg
19900            mg
19901            mg
19902           mcg
19903           mcg
19904           mcg
19905            mg
19906            mg
19907            mg
19908            mg
19909            mg
19910            mg
19911           tsp
19912         drops
19913            mg
19914            ml
19915            mg
19916            mg
19917            ml
19918            mg
19919            mg
19920            mg
19921            mg
19922            mg
19923 other specify
19924            mg
19925   unspecified
19926   unspecified
19927   unspecified
19928   unspecified
19929            mg
19930            mg
19931            mg
19932         units
19933            ml
19934            mg
19935            mg
19936 other specify
19937         drops
19938 other specify
19939            mg
19940 other specify
19941            mg
19942            mg
19943 other specify
19944            mg
19945            mg
19946         drops
19947            mg
19948            mg
19949            mg
19950            mg
19951            mg
19952          tube
19953            mg
19954           mcg
19955           mcg
19956           mcg
19957           mcg
19958          pump
19959         drops
19960         drops
19961            mg
19962 other specify
19963            mg
19964         drops
19965            mg
19966            mg
19967            mg
19968            mg
19969         drops
19970         drops
19971 other specify
19972           mcg
19973            mg
19974            mg
19975           mcg
19976            mg
19977            mg
19978           mcg
19979           mcg
19980            mg
19981            mg
19982            mg
19983            mg
19984   unspecified
19985            mg
19986            mg
19987            mg
19988            mg
19989            mg
19990            ml
19991 other specify
19992 other specify
19993            mg
19994            mg
19995           mcg
19996           mcg
19997            mg
19998           mcg
19999            mg
                                                    dose_unit_specify
1                                                                <NA>
2                                                                <NA>
3                                                                <NA>
4                                                                <NA>
5                                                                <NA>
6                                                                <NA>
7                                                                <NA>
8                                                                <NA>
9                                                                <NA>
10                                                                  %
11                                                               <NA>
12                                                                  %
13                                                               <NA>
14                                                    based on weight
15                                                               <NA>
16                                                               <NA>
17                                                               <NA>
18                                                               <NA>
19                                                               <NA>
20                                                               <NA>
21                                                               <NA>
22                                                               <NA>
23                                                               <NA>
24                                                               <NA>
25                                                               <NA>
26                                                               <NA>
27                                                               <NA>
28                                                               <NA>
29                                                               <NA>
30                                                               <NA>
31                                                               <NA>
32                                                               <NA>
33                                                               <NA>
34                                                               <NA>
35                                                               <NA>
36                                                               <NA>
37                                                               <NA>
38                                                               <NA>
39                                                               <NA>
40                                                    based on weight
41                                                               <NA>
42                                                    based on weight
43                                                               <NA>
44                                                               <NA>
45                                                               <NA>
46                                                tablet/pill/capsule
47                                                               <NA>
48                                                               tube
49                                                               tube
50                                                               <NA>
51                                                tablet/pill/capsule
52                                                               <NA>
53                                                               <NA>
54                                                               <NA>
55                                                               <NA>
56                                                               <NA>
57                                                               <NA>
58                                                               <NA>
59                                              1 tablet/pill/capsule
60                                                        bottle/vial
61                                                               <NA>
62                                                        application
63                                                tablet/pill/capsule
64                                                               <NA>
65                                                               <NA>
66                                                               <NA>
67                                                       small amount
68                                                               <NA>
69                                                               <NA>
70                                                       small amount
71                                                               <NA>
72                                                               <NA>
73                                                tablet/pill/capsule
74                                                              drops
75                                                tablet/pill/capsule
76                                                               <NA>
77                                                               <NA>
78                                                               <NA>
79                                                               <NA>
80                                                               <NA>
81                                                               <NA>
82                                                               <NA>
83                                                tablet/pill/capsule
84                                                              spray
85                                                               <NA>
86                                                               <NA>
87                                                    0.25 inch strip
88                                                               <NA>
89                                                               <NA>
90                                                               <NA>
91                                                               <NA>
92                                                               <NA>
93                                                               <NA>
94                                                               <NA>
95                                                               <NA>
96                                                               <NA>
97                                                               <NA>
98                                                               <NA>
99                                                               <NA>
100                                                              <NA>
101                                                              <NA>
102                                                              <NA>
103                                                              <NA>
104                                                              <NA>
105                                                              <NA>
106                                                              <NA>
107                                                              <NA>
108                                                              <NA>
109                                                            mcg/hr
110                                                              <NA>
111                                                              <NA>
112                                                              <NA>
113                                                              <NA>
114                                                              <NA>
115                                                              <NA>
116                                                              <NA>
117                                                              <NA>
118                                               tablet/pill/capsule
119                                               tablet/pill/capsule
120                                               tablet/pill/capsule
121                                               tablet/pill/capsule
122                                                             drops
123                                                              <NA>
124                                                              <NA>
125                                                              <NA>
126                                                              <NA>
127                                                              <NA>
128                                               tablet/pill/capsule
129                                                              <NA>
130                                               tablet/pill/capsule
131                                                              <NA>
132                                               tablet/pill/capsule
133                                                              <NA>
134                                                              <NA>
135                                                              <NA>
136                                                              <NA>
137                                                              <NA>
138                                                              <NA>
139                                                              <NA>
140                                                              <NA>
141                                                              <NA>
142                                                              <NA>
143                                                              <NA>
144                                                              <NA>
145                                                              <NA>
146                                                              <NA>
147                                                              <NA>
148                                                              <NA>
149                                                    shampoo/mousse
150                                                      small amount
151                                                       application
152                                               tablet/pill/capsule
153                                               tablet/pill/capsule
154                                                              <NA>
155                                               tablet/pill/capsule
156                                               tablet/pill/capsule
157                                                              <NA>
158                                                              <NA>
159                                                              <NA>
160                                                              <NA>
161                                               tablet/pill/capsule
162                                               tablet/pill/capsule
163                                                              <NA>
164                                               tablet/pill/capsule
165                                                              <NA>
166                                                              <NA>
167                                                              <NA>
168                                                              <NA>
169                                                              <NA>
170                                                              <NA>
171                                                              <NA>
172                                                              <NA>
173                                                              <NA>
174                                                              <NA>
175                                                    shampoo/mousse
176                                                          ointment
177                                                              <NA>
178                                                              <NA>
179                                                              <NA>
180                                                              <NA>
181                                                              <NA>
182                                                              <NA>
183                                                              <NA>
184                                                              <NA>
185                                                              <NA>
186                                                              <NA>
187                                                              <NA>
188                                               tablet/pill/capsule
189                                                              <NA>
190                                                              <NA>
191                                                              <NA>
192                                               tablet/pill/capsule
193                                                              <NA>
194                                                              <NA>
195                                                   based on weight
196                                                              <NA>
197                                                              <NA>
198                                                              <NA>
199                                                              <NA>
200                                                              <NA>
201                                                              <NA>
202                                                              <NA>
203                                                              <NA>
204                                                              <NA>
205                                                              <NA>
206                                                              <NA>
207                                                              <NA>
208                                                              <NA>
209                                                              <NA>
210                                                              <NA>
211                                                              <NA>
212                                                              <NA>
213                                                              <NA>
214                                                              <NA>
215                                                              <NA>
216                                                              <NA>
217                                               tablet/pill/capsule
218                                                              <NA>
219                                                              <NA>
220                                               tablet/pill/capsule
221                                                              <NA>
222                                                              <NA>
223                                                              <NA>
224                                                              <NA>
225                                                              <NA>
226                                                              <NA>
227                                                              <NA>
228                                                              <NA>
229                                                                 %
230                       272 mcg ivermectin, 227 mg pyrantel pamoate
231                                                              <NA>
232                                                              <NA>
233                                                             drops
234                                                              <NA>
235                                                              <NA>
236                                                              tube
237                                                              tube
238                                                      small amount
239                                                              <NA>
240                                                              <NA>
241                                                              <NA>
242                                                              <NA>
243                                                              tube
244                                                   based on weight
245                                                              <NA>
246                                                              <NA>
247                                                              <NA>
248                                                              tube
249                                                              <NA>
250                                                              <NA>
251                                                              <NA>
252                                                              <NA>
253                                                              <NA>
254                                                              <NA>
255                                                              <NA>
256                                                              <NA>
257                                                              <NA>
258                                               tablet/pill/capsule
259                                               tablet/pill/capsule
260                                                              <NA>
261                                                              <NA>
262                                                              <NA>
263                                                              <NA>
264                                                              <NA>
265                                                              <NA>
266                                                              <NA>
267                                                              <NA>
268                                                              <NA>
269                                                              <NA>
270                                                              <NA>
271                                                              <NA>
272                                                              <NA>
273                                               tablet/pill/capsule
274                                               tablet/pill/capsule
275                                               tablet/pill/capsule
276                                               tablet/pill/capsule
277                                               tablet/pill/capsule
278                                                              <NA>
279                                                   moderate amount
280                                                      small amount
281                                               tablet/pill/capsule
282                                                         injection
283                                               tablet/pill/capsule
284                                                      small amount
285                                                              <NA>
286                                               tablet/pill/capsule
287                                                              <NA>
288                                                              <NA>
289                                                              <NA>
290                                                              <NA>
291                                                              <NA>
292                                                              <NA>
293                                                              <NA>
294                                                              <NA>
295                                                              <NA>
296                                                              <NA>
297                                                              <NA>
298                                                              <NA>
299                                                              <NA>
300                                                              <NA>
301                                                              <NA>
302                                                              <NA>
303                                                              <NA>
304                                                              <NA>
305                                                              <NA>
306                                                              <NA>
307                                                              <NA>
308                                                              <NA>
309                                                                 %
310                                                              <NA>
311                                                              <NA>
312                                                                 %
313                                                              <NA>
314                                                              <NA>
315                                                              <NA>
316                                                              <NA>
317                                                              <NA>
318                                                              <NA>
319                                                              <NA>
320                                                              <NA>
321                                                              <NA>
322                                                              <NA>
323                                                              <NA>
324                                                   based on weight
325                                                              <NA>
326                                                              <NA>
327                                                              <NA>
328                                                   based on weight
329                                                   based on weight
330                                                              <NA>
331                                                              <NA>
332                                                   based on weight
333                                                   based on weight
334                                                              <NA>
335                                                              <NA>
336                                                              <NA>
337                                                              <NA>
338                                                              <NA>
339                                                              <NA>
340                                                              <NA>
341                                                              <NA>
342                                                              <NA>
343                                                              <NA>
344                                                              <NA>
345                                                              <NA>
346                                                              <NA>
347                                                              <NA>
348                                                              <NA>
349                                                             23 mg
350                                                              <NA>
351                                                              <NA>
352                                                              <NA>
353                                                              <NA>
354                                                              <NA>
355                                                              <NA>
356                                                              <NA>
357                                                              <NA>
358                                                              <NA>
359                                                              <NA>
360                                                              <NA>
361                                                              <NA>
362                                                              <NA>
363                                                              <NA>
364                                                              <NA>
365                                                              <NA>
366                                                              <NA>
367                                                              <NA>
368                                                              <NA>
369                                                              <NA>
370                                                              <NA>
371                                                              <NA>
372                                                              <NA>
373                                                              <NA>
374                                               tablet/pill/capsule
375                                               tablet/pill/capsule
376                                               tablet/pill/capsule
377                                                              <NA>
378                                                             mg/kg
379                                                             mg/kg
380                                                             mg/kg
381                                                         mcg/kg/hr
382                                                              <NA>
383                                               tablet/pill/capsule
384                                      based on weight (50-100 lbs)
385                                      based on weight (50-100 lbs)
386                                               tablet/pill/capsule
387                                                              <NA>
388                                                              <NA>
389                                                              <NA>
390                                                              <NA>
391                                                                 %
392                                                              <NA>
393                                                                 %
394                                                              <NA>
395                                                   based on weight
396                                                      small amount
397                                               tablet/pill/capsule
398                                                              <NA>
399                                                              <NA>
400                                                              <NA>
401                                               tablet/pill/capsule
402                                                   based on weight
403                                                              <NA>
404                                                              <NA>
405                                                              <NA>
406                                                              <NA>
407                                                              <NA>
408                                                              <NA>
409                                                              <NA>
410                                                              <NA>
411                                                              <NA>
412                                                              <NA>
413                                                              <NA>
414                                                              <NA>
415                                                              <NA>
416                                                              <NA>
417                                                              <NA>
418                                                              <NA>
419                                                              <NA>
420                                                              <NA>
421                                                              <NA>
422                                                              <NA>
423                                                              <NA>
424                                                              <NA>
425                                                              <NA>
426                                                              <NA>
427                                                              <NA>
428                                                              <NA>
429                                                              <NA>
430                                                              <NA>
431                                                              <NA>
432                                                              <NA>
433                                                              <NA>
434                                                              <NA>
435                                                              <NA>
436                                                              <NA>
437                                                              <NA>
438                                                              <NA>
439                                                              <NA>
440                                                              <NA>
441                                                              <NA>
442                                                              <NA>
443                                                              <NA>
444                                                              <NA>
445                                                              <NA>
446                                                              <NA>
447                                                              <NA>
448                                                              <NA>
449                                                              <NA>
450                                                              <NA>
451                                                              <NA>
452                                                              <NA>
453                                                              <NA>
454                                                              <NA>
455                                                              <NA>
456                                                              <NA>
457                                                              <NA>
458                                                              <NA>
459                                                              <NA>
460                                                              <NA>
461                                      based on weight (60-120 lbs)
462                                                              1 ml
463                                                              <NA>
464                                                              <NA>
465                                                              <NA>
466                                                              <NA>
467                                                              <NA>
468                                                              <NA>
469                                                              <NA>
470                                                              <NA>
471                                                              <NA>
472                                                              <NA>
473                                                              <NA>
474                                                              <NA>
475                                                              <NA>
476                                                              <NA>
477                                                              <NA>
478                                                              <NA>
479                                                              <NA>
480                                                            1 tube
481                                                              <NA>
482                                                              <NA>
483                                                              <NA>
484                                                              <NA>
485                                                              <NA>
486                                                              <NA>
487                                                              <NA>
488                                                              <NA>
489                                                              <NA>
490                                                              <NA>
491                                                       bottle/vial
492                                                              <NA>
493                                                              <NA>
494                                                              <NA>
495                                                              <NA>
496                                                              <NA>
497                                                              <NA>
498                                                   based on weight
499                                                              <NA>
500                                                              <NA>
501                                                              <NA>
502                                                              <NA>
503                                                              <NA>
504                                               tablet/pill/capsule
505                                                       application
506                                                              <NA>
507                                                              <NA>
508                                                              <NA>
509                                                              <NA>
510                                                              <NA>
511                                                              <NA>
512                                                              <NA>
513                                                              <NA>
514                                                              <NA>
515                                                              <NA>
516                                                              <NA>
517                                                              <NA>
518                                                              <NA>
519                                                       unspecified
520                                                              <NA>
521                                                              <NA>
522                                                              <NA>
523                                                              <NA>
524                                                              <NA>
525                                                              <NA>
526                                                              <NA>
527                                                              <NA>
528                                                              <NA>
529                                                              <NA>
530                                                              tube
531                                                              <NA>
532                                                              <NA>
533                                                              <NA>
534                                                              <NA>
535                                                              <NA>
536                                                              <NA>
537                                                              <NA>
538                                               tablet/pill/capsule
539                                               tablet/pill/capsule
540                                               tablet/pill/capsule
541                                               tablet/pill/capsule
542                                               tablet/pill/capsule
543                                                              <NA>
544                                                              <NA>
545                                                              <NA>
546                                                              <NA>
547                                                              <NA>
548                                               tablet/pill/capsule
549                                                              <NA>
550                                                              <NA>
551                                               tablet/pill/capsule
552                                                              <NA>
553                                                              <NA>
554                                               tablet/pill/capsule
555                                               tablet/pill/capsule
556                                                              <NA>
557                                               tablet/pill/capsule
558                                                              <NA>
559                                               tablet/pill/capsule
560                                                              <NA>
561                                                              <NA>
562                                                              <NA>
563                                                              <NA>
564                                                              <NA>
565                                                              <NA>
566                                                              <NA>
567                                                              <NA>
568                                               tablet/pill/capsule
569                                                              <NA>
570                                                              <NA>
571                                                              <NA>
572                                                              <NA>
573                                                              <NA>
574                                               tablet/pill/capsule
575                                                              <NA>
576                                                              <NA>
577                                                              <NA>
578                                                              <NA>
579                                                              <NA>
580                                                              <NA>
581                                                              <NA>
582                                                              <NA>
583                                                              <NA>
584                                                              <NA>
585                                                              <NA>
586                                                              <NA>
587                                                              <NA>
588                                                              <NA>
589                                                              <NA>
590                                                              <NA>
591                                                              <NA>
592                                                              <NA>
593                                                              <NA>
594                                                              <NA>
595                                                              <NA>
596                                                              <NA>
597                                                                 1
598                                                                 1
599                                               tablet/pill/capsule
600                                               tablet/pill/capsule
601                                                              <NA>
602                                                              <NA>
603                                               tablet/pill/capsule
604                                               tablet/pill/capsule
605                                                              <NA>
606                                                              <NA>
607                                                              <NA>
608                                               tablet/pill/capsule
609                                               tablet/pill/capsule
610                                                              <NA>
611                                                              <NA>
612                                                              <NA>
613                                                              <NA>
614                                                              <NA>
615                                                              <NA>
616                                                              <NA>
617                                                              <NA>
618                                                              <NA>
619                                               tablet/pill/capsule
620                                                              <NA>
621                                                              <NA>
622                                                              <NA>
623                                                              <NA>
624                                                              <NA>
625                                                              <NA>
626                                                              <NA>
627                                                              <NA>
628                                                              <NA>
629                                                              <NA>
630                                                              <NA>
631                                                              <NA>
632                                                              <NA>
633                                                              <NA>
634                                               tablet/pill/capsule
635                                                              <NA>
636                                                              <NA>
637                                                   based on weight
638                                                              <NA>
639                                                              <NA>
640                                                              <NA>
641                                                              <NA>
642                                                              <NA>
643                                                              <NA>
644                                                              <NA>
645                                                              <NA>
646                                                              <NA>
647                                                              <NA>
648                                                              <NA>
649                                                              <NA>
650                                                       application
651                                                              <NA>
652                                                              <NA>
653                                                              <NA>
654                                                              <NA>
655                                                              <NA>
656                                                              <NA>
657                                                              <NA>
658                                                              <NA>
659                                                              <NA>
660                                                              <NA>
661                                                              <NA>
662                                                              <NA>
663                                                              <NA>
664                                                                 l
665                                                              <NA>
666                                                              <NA>
667                                                              <NA>
668                                                              <NA>
669                                                              <NA>
670                                                              <NA>
671                                                              <NA>
672                                                              <NA>
673                                                              <NA>
674                                                              <NA>
675                                                              <NA>
676                                                              <NA>
677                                                              <NA>
678                                                              <NA>
679                                                              <NA>
680                                                              <NA>
681                                                              <NA>
682                                                              <NA>
683                                                              <NA>
684                                                              <NA>
685                                                              <NA>
686                                                              <NA>
687                                                              <NA>
688                                                              <NA>
689                                                              <NA>
690                                                              <NA>
691                                                              <NA>
692                                                              <NA>
693                                                              <NA>
694                                                             spray
695                                                              <NA>
696                                                              <NA>
697                                                              <NA>
698                                                              <NA>
699                                                              <NA>
700                                                              <NA>
701                                                              <NA>
702                                                              <NA>
703                                                   based on weight
704                                                   based on weight
705                                                              <NA>
706                                                              <NA>
707                                               tablet/pill/capsule
708                                               tablet/pill/capsule
709                                                              <NA>
710                                                              <NA>
711                                                              <NA>
712                                                              <NA>
713                                                              <NA>
714                                                              <NA>
715                                                              <NA>
716                                                              <NA>
717                                                              <NA>
718                                                              <NA>
719                                                              <NA>
720                                                              <NA>
721                                                              <NA>
722                                                              <NA>
723                                                              <NA>
724                                                              <NA>
725                                                              <NA>
726                                                              <NA>
727                                               tablet/pill/capsule
728                                               tablet/pill/capsule
729                                               tablet/pill/capsule
730                                                              <NA>
731                                                              <NA>
732                                                              <NA>
733                                                              <NA>
734                                                        inch strip
735                                                              <NA>
736                                                              <NA>
737                                                              <NA>
738                                      based on weight (50-100 lbs)
739                                      based on weight (60-120 lbs)
740                                                              <NA>
741                                                              <NA>
742                                                              <NA>
743                                                              <NA>
744                                                              <NA>
745                                                        inch strip
746                                                              <NA>
747                                                              <NA>
748                                                              <NA>
749                                                              <NA>
750                                                              <NA>
751                                                              <NA>
752                                                              <NA>
753                                                              <NA>
754                                               tablet/pill/capsule
755                                                   based on weight
756                                                   based on weight
757                                                   based on weight
758                                                              <NA>
759                                                              <NA>
760                                                              <NA>
761                                                              <NA>
762                                                              <NA>
763                                                              <NA>
764                                                              <NA>
765                                                              <NA>
766                                                              <NA>
767                                                              <NA>
768                                                              <NA>
769                                                   based on weight
770                                                              <NA>
771                                                              <NA>
772                                                              <NA>
773                                                              <NA>
774                                                              <NA>
775                                                              <NA>
776                                                              <NA>
777                                                              <NA>
778                                                              <NA>
779                                                              <NA>
780                                                              <NA>
781                                                              <NA>
782                                                              <NA>
783                                                              <NA>
784                                                              <NA>
785                                               tablet/pill/capsule
786                                                              <NA>
787                                                              <NA>
788                                                              <NA>
789                                                              <NA>
790                                               tablet/pill/capsule
791                                                              <NA>
792                                               tablet/pill/capsule
793                                                              <NA>
794                                                              <NA>
795                                                              <NA>
796                                                              <NA>
797                                                              <NA>
798                                                              <NA>
799                                                              <NA>
800                                                              <NA>
801                                                              <NA>
802                                                              <NA>
803                                                   based on weight
804                                                       unspecified
805                                                              <NA>
806                                                              <NA>
807                                                              <NA>
808                                                              <NA>
809                                                              <NA>
810                                                       bottle/vial
811                                                              <NA>
812                                                              <NA>
813                                                              <NA>
814                                                              <NA>
815                                                              <NA>
816                                                      pack/package
817                                                              <NA>
818                                                              <NA>
819                                                              <NA>
820                                                              <NA>
821                                                              <NA>
822                                                                 %
823                                                              <NA>
824                                               tablet/pill/capsule
825                                                              <NA>
826                                                              <NA>
827                                               tablet/pill/capsule
828                                               tablet/pill/capsule
829                                               tablet/pill/capsule
830                                               tablet/pill/capsule
831                                                              <NA>
832                                                              <NA>
833                                                              <NA>
834                                                              <NA>
835                                                              <NA>
836                                                              <NA>
837                                                              <NA>
838                                                              <NA>
839                                                              <NA>
840                                                              <NA>
841                                                              <NA>
842                                                              <NA>
843                                                              <NA>
844                                                              <NA>
845                                                              <NA>
846                                               tablet/pill/capsule
847                                               tablet/pill/capsule
848                                                              <NA>
849                                               tablet/pill/capsule
850                                                              <NA>
851                                                              <NA>
852                                                              <NA>
853                                                              <NA>
854                                                              <NA>
855                                                              <NA>
856                                                              <NA>
857                                                              <NA>
858                                                              <NA>
859                                                              <NA>
860                                                              <NA>
861                                                              <NA>
862                                               tablet/pill/capsule
863                                                              <NA>
864                                                              <NA>
865                                                              <NA>
866                                                              <NA>
867                                                              <NA>
868                                                              <NA>
869                                                              <NA>
870                                                              <NA>
871                                                              <NA>
872                                                              <NA>
873                                                              <NA>
874                                                              <NA>
875                                                              <NA>
876                                                              <NA>
877                                                              <NA>
878                                                              <NA>
879                                                              <NA>
880                                                              <NA>
881                                                   based on weight
882                                                              <NA>
883                                                              <NA>
884                                                              <NA>
885                                                              <NA>
886                                                              <NA>
887                                                              <NA>
888                                                              <NA>
889                                                              <NA>
890                                                              <NA>
891                                                              <NA>
892                                                              <NA>
893                                                              <NA>
894                                                              <NA>
895                                                              <NA>
896                                                              <NA>
897                                                              <NA>
898                                                              <NA>
899                                                              <NA>
900                                                   based on weight
901                                                              <NA>
902                                                              <NA>
903                                                              <NA>
904                                                              <NA>
905                                                              <NA>
906                                                              <NA>
907                                                              <NA>
908                                                              <NA>
909                                                              <NA>
910                                                              <NA>
911                                                              <NA>
912                                                              <NA>
913                                                   based on weight
914                                                              <NA>
915                                                              <NA>
916                                                              <NA>
917                                                              <NA>
918                                                              <NA>
919                                                              <NA>
920                                                              <NA>
921                                                   based on weight
922                                                              <NA>
923                                                              <NA>
924                                                              <NA>
925                                                              <NA>
926                                                              <NA>
927                                                              <NA>
928                                                              <NA>
929                                                              <NA>
930                                                              <NA>
931                                               tablet/pill/capsule
932                                               tablet/pill/capsule
933                                                              <NA>
934                                                              <NA>
935                                                              <NA>
936                                                              <NA>
937                                                              <NA>
938                                                              <NA>
939                                                              <NA>
940                                                              <NA>
941                                                              <NA>
942                                                              <NA>
943                                                              <NA>
944                                                              <NA>
945                                                              <NA>
946                                                              <NA>
947                                                              <NA>
948                                                              <NA>
949                                                              <NA>
950                                                              <NA>
951                                                            collar
952                                                              <NA>
953                                                              <NA>
954                                                              <NA>
955                                                            collar
956                                               tablet/pill/capsule
957                                                              <NA>
958                                                              <NA>
959                                               tablet/pill/capsule
960                                                            collar
961                                      based on weight (50-100 lbs)
962                                                              <NA>
963                                                              <NA>
964                                                              <NA>
965                                                              <NA>
966                                                              <NA>
967                                      based on weight (50-100 lbs)
968                                                              <NA>
969                                                              <NA>
970                                                            1 pump
971                                                              <NA>
972                                                              <NA>
973                                                              <NA>
974                                                              <NA>
975                                                              <NA>
976                                                              <NA>
977                                                              <NA>
978                                                              <NA>
979                                                   based on weight
980                                                   based on weight
981                                                              <NA>
982                                               tablet/pill/capsule
983                                               tablet/pill/capsule
984                                                              <NA>
985                                                              <NA>
986                                                              <NA>
987                                                              <NA>
988                                                              <NA>
989                                                   based on weight
990                                                              <NA>
991                                                   based on weight
992                                                   based on weight
993                                               tablet/pill/capsule
994                                                              <NA>
995                                                   based on weight
996                                                   based on weight
997                                                              <NA>
998                                                              <NA>
999                                               tablet/pill/capsule
1000                                                             <NA>
1001                                                             <NA>
1002                                                             <NA>
1003                                                             <NA>
1004                                                             <NA>
1005                                                             <NA>
1006                                                             <NA>
1007                                                             <NA>
1008                                                             <NA>
1009                                                             <NA>
1010                                                             <NA>
1011                                                             <NA>
1012                                                             <NA>
1013                                                             <NA>
1014                                     based on weight (50-100 lbs)
1015                                                             <NA>
1016                                                             <NA>
1017                                              tablet/pill/capsule
1018                                              tablet/pill/capsule
1019                                                           1 pump
1020                                                       inch strip
1021                                                         wipe/pad
1022                                                             <NA>
1023                                                     pack/package
1024                                                             pump
1025                                                         wipe/pad
1026                                                             <NA>
1027                                                   shampoo/mousse
1028                                                             <NA>
1029                                                         wipe/pad
1030                                                   shampoo/mousse
1031                                                             <NA>
1032                                                             <NA>
1033                                                             <NA>
1034                                                             <NA>
1035                                                             <NA>
1036                                                     small amount
1037                                                     small amount
1038                                                             <NA>
1039                                                      bottle/vial
1040                                                             <NA>
1041                                                             <NA>
1042                                                         wipe/pad
1043                                                                %
1044                                                                %
1045                                                             <NA>
1046                                                             <NA>
1047                                                             <NA>
1048                                                             <NA>
1049                                                             <NA>
1050                                                  based on weight
1051                                                  based on weight
1052                                                  based on weight
1053                                                             <NA>
1054                                                             <NA>
1055                                                             <NA>
1056                                                             <NA>
1057                                                             <NA>
1058                                                             <NA>
1059                                                             <NA>
1060                                                  based on weight
1061                                                  based on weight
1062                                                             <NA>
1063                                                             <NA>
1064                                                             tube
1065                                                             <NA>
1066                                                  syringe/pipette
1067                                                             <NA>
1068                                                             <NA>
1069                                                         wipe/pad
1070                                              tablet/pill/capsule
1071                                                             <NA>
1072                                                             <NA>
1073                                                             pump
1074                                              tablet/pill/capsule
1075                                                             <NA>
1076                                                             <NA>
1077                                              tablet/pill/capsule
1078                                                     pack/package
1079                                              tablet/pill/capsule
1080                                                             <NA>
1081                                                             <NA>
1082                                                             <NA>
1083                                                             <NA>
1084                                                             <NA>
1085                                                             <NA>
1086                                              tablet/pill/capsule
1087                         27 mg milbemycin oxime, 1620 mg spinosad
1088                                                             <NA>
1089                                                             <NA>
1090                                                             <NA>
1091                                                             <NA>
1092                                                             <NA>
1093                                                             <NA>
1094                                                             <NA>
1095                                                             <NA>
1096                                                             <NA>
1097                                                             <NA>
1098                                                             <NA>
1099                                              tablet/pill/capsule
1100                                              tablet/pill/capsule
1101                                              tablet/pill/capsule
1102                                                             <NA>
1103                                                             <NA>
1104                                                             <NA>
1105                                                             <NA>
1106                                                             <NA>
1107                                                             <NA>
1108                                                         wipe/pad
1109                                                             <NA>
1110                                                             <NA>
1111                                                             <NA>
1112                                                      unspecified
1113                                                             <NA>
1114                                                             <NA>
1115                                                             <NA>
1116                                                      unspecified
1117                                                             <NA>
1118                                                             <NA>
1119                                                             <NA>
1120                                                             <NA>
1121                                                             <NA>
1122                                                             <NA>
1123                                                             <NA>
1124                                                             <NA>
1125                                                             <NA>
1126                                                             <NA>
1127                                                             <NA>
1128                                                             <NA>
1129                                              tablet/pill/capsule
1130                                                             <NA>
1131                                                             <NA>
1132                                                             <NA>
1133                                                             <NA>
1134                                                             <NA>
1135                                                             <NA>
1136                                                             <NA>
1137                                                             <NA>
1138                                                             <NA>
1139                                                             <NA>
1140                                                             <NA>
1141                                                             <NA>
1142                                                             <NA>
1143                                                             <NA>
1144                                                             <NA>
1145                                                             <NA>
1146                                                             <NA>
1147                                                             <NA>
1148                                                             <NA>
1149                                                             <NA>
1150                                                     small amount
1151                                                             <NA>
1152                                     based on weight (50-100 lbs)
1153                                     based on weight (50-100 lbs)
1154                                     based on weight (50-100 lbs)
1155                                              tablet/pill/capsule
1156                                                             <NA>
1157                                                             <NA>
1158                                                             <NA>
1159    460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
1160                                     based on weight (50-100 lbs)
1161                                        based on weight (60+ lbs)
1162                                                             <NA>
1163                                                             <NA>
1164                                                             <NA>
1165                                                                %
1166                                                                %
1167                                                             <NA>
1168                                                             <NA>
1169                                                             <NA>
1170                                                             dose
1171                                                             <NA>
1172                                                             <NA>
1173                                                      application
1174                                                             <NA>
1175                                                                %
1176                                                             <NA>
1177                                                                %
1178                                                             <NA>
1179                                                     small amount
1180                                                             <NA>
1181                                                             <NA>
1182                                                             <NA>
1183                                                             <NA>
1184                                                             <NA>
1185                                                  based on weight
1186                                                  based on weight
1187                                                             <NA>
1188                                                             <NA>
1189                                                  based on weight
1190                                                  based on weight
1191                                                             <NA>
1192                                                             <NA>
1193                                                             <NA>
1194                                                             <NA>
1195                                                  based on weight
1196                                                             <NA>
1197                                                             <NA>
1198                                                             <NA>
1199                                                             <NA>
1200                                                             <NA>
1201                                                             <NA>
1202                                                             <NA>
1203                                                             <NA>
1204                                                             <NA>
1205                                                             <NA>
1206                                                             <NA>
1207                                                             <NA>
1208                                                   1 pack/package
1209                                              tablet/pill/capsule
1210                                                             <NA>
1211                                                             <NA>
1212                                                             <NA>
1213                                                             <NA>
1214                                                             <NA>
1215                                                             <NA>
1216                                                             <NA>
1217                                                      combination
1218                                                             <NA>
1219                                                             <NA>
1220                                                             <NA>
1221                                                             <NA>
1222                                                             <NA>
1223                                                             <NA>
1224                                                             <NA>
1225                                                             <NA>
1226                                                  based on weight
1227                                                             <NA>
1228                                                             <NA>
1229                                                             <NA>
1230                                                             <NA>
1231                                                             <NA>
1232                                                             <NA>
1233                                                             <NA>
1234                                                             <NA>
1235                                                             <NA>
1236                                                             <NA>
1237                                                             <NA>
1238                                                             <NA>
1239                                                             <NA>
1240                                              tablet/pill/capsule
1241                                              tablet/pill/capsule
1242                                              tablet/pill/capsule
1243                                                             <NA>
1244                                                             <NA>
1245                                                             <NA>
1246                                                             <NA>
1247                                                  based on weight
1248                                                  based on weight
1249                                                             <NA>
1250                                                             <NA>
1251                                                             <NA>
1252                                                             <NA>
1253                                                             <NA>
1254                                                             <NA>
1255                                                             <NA>
1256                                                             <NA>
1257                                                             <NA>
1258                                                             <NA>
1259                                                             <NA>
1260                                                             <NA>
1261                                                             <NA>
1262                                                             <NA>
1263                                                             <NA>
1264                                                             <NA>
1265                                                             <NA>
1266                                                             <NA>
1267                                                             <NA>
1268                                                             <NA>
1269                                                             <NA>
1270                                                             <NA>
1271                                                             <NA>
1272                                                             <NA>
1273                                                             <NA>
1274                                                             <NA>
1275                                                             <NA>
1276                                                             <NA>
1277                                                             <NA>
1278                                                             <NA>
1279                                                             <NA>
1280                                                             <NA>
1281                                                             <NA>
1282                                                             <NA>
1283                                                             <NA>
1284                                                             <NA>
1285                                                             <NA>
1286                                                             <NA>
1287                                                             <NA>
1288                                                             <NA>
1289                                                             <NA>
1290                                                             <NA>
1291                                                             <NA>
1292                                                             <NA>
1293                                                             <NA>
1294                                                             <NA>
1295                                                             <NA>
1296                                                             <NA>
1297                                                             <NA>
1298                                                             <NA>
1299                                                             <NA>
1300                                                             <NA>
1301                                                             <NA>
1302                                                                %
1303                                                             <NA>
1304                                                             <NA>
1305                                                             <NA>
1306                                                             <NA>
1307                                                             <NA>
1308                                                             <NA>
1309                                                             <NA>
1310                                                             <NA>
1311                                                             <NA>
1312                                                             <NA>
1313                                                             <NA>
1314                                                             <NA>
1315                                                             <NA>
1316                                                             <NA>
1317                                                             <NA>
1318                                                             <NA>
1319                                                             <NA>
1320                                                             <NA>
1321                                                             <NA>
1322                                                             <NA>
1323                                                             <NA>
1324                                                             <NA>
1325                                                             <NA>
1326                                                             <NA>
1327                                                             <NA>
1328                                                  based on weight
1329                                                  based on weight
1330                                                             <NA>
1331                                                             <NA>
1332                                                             <NA>
1333                                                             <NA>
1334                                                             <NA>
1335                                                             <NA>
1336                                                             <NA>
1337                                                             <NA>
1338                                              tablet/pill/capsule
1339                                                            scoop
1340                                              tablet/pill/capsule
1341                                                             <NA>
1342                                                         wipe/pad
1343                                                             <NA>
1344                                              tablet/pill/capsule
1345                                                             <NA>
1346                                                     small amount
1347                                                             <NA>
1348                                                            spray
1349                                                             <NA>
1350                                                             <NA>
1351                                                             <NA>
1352                                                     small amount
1353                                                             <NA>
1354                                                             <NA>
1355                                                  based on weight
1356                                                             <NA>
1357                                                             <NA>
1358                                                             <NA>
1359                                                                %
1360                                                             <NA>
1361                                                             <NA>
1362                                                             <NA>
1363                                                             <NA>
1364                                                             <NA>
1365                                                             <NA>
1366                                                             <NA>
1367                                                             <NA>
1368                                                             <NA>
1369                                                             <NA>
1370                                                             <NA>
1371                                            1 tablet/pill/capsule
1372                                                             <NA>
1373                                              tablet/pill/capsule
1374                                                             <NA>
1375                                                             <NA>
1376                                                             <NA>
1377                                                             <NA>
1378                                                             <NA>
1379                                                             <NA>
1380                                                             <NA>
1381                                                             <NA>
1382                                                             <NA>
1383                                                             <NA>
1384                                                             <NA>
1385                                                             <NA>
1386                                                             <NA>
1387                                                             <NA>
1388                                                             <NA>
1389                                                             <NA>
1390                                                             <NA>
1391                                                             <NA>
1392                                                             <NA>
1393                                            1 tablet/pill/capsule
1394                                                             <NA>
1395                                                             <NA>
1396                                                             <NA>
1397                                                             <NA>
1398                                                             <NA>
1399                                                             <NA>
1400                                                             <NA>
1401                                                             <NA>
1402                                                             <NA>
1403                                                             <NA>
1404                                                            spray
1405                                                             <NA>
1406                                                             <NA>
1407                                                             <NA>
1408                                                             <NA>
1409                                                             <NA>
1410                                                             <NA>
1411                                                             <NA>
1412                                                             <NA>
1413                                                             <NA>
1414                                                             <NA>
1415                                                     small amount
1416                                                             <NA>
1417                                                             tube
1418                                                             <NA>
1419                                     based on weight (50-100 lbs)
1420                                                             <NA>
1421                                                             <NA>
1422                                              tablet/pill/capsule
1423                                                             <NA>
1424                                                             <NA>
1425                                                             <NA>
1426                                                             <NA>
1427                                                             <NA>
1428                                                             <NA>
1429                                                             <NA>
1430                                                             <NA>
1431                                              tablet/pill/capsule
1432                                                             <NA>
1433                                                             <NA>
1434                                                             tube
1435                                              tablet/pill/capsule
1436                                                             <NA>
1437                                                             <NA>
1438                                              tablet/pill/capsule
1439                                                             <NA>
1440                                                             <NA>
1441                                              tablet/pill/capsule
1442                                              tablet/pill/capsule
1443                                                      bottle/vial
1444                                                             <NA>
1445                                                             <NA>
1446                                     based on weight (50-100 lbs)
1447                                      based on weight (44-88 lbs)
1448                                                             <NA>
1449                                                             <NA>
1450                                                             tube
1451                                              tablet/pill/capsule
1452                                                             <NA>
1453                                                             <NA>
1454                                                             <NA>
1455                                                             <NA>
1456                                                             <NA>
1457                                                             <NA>
1458                                                             <NA>
1459                                                      application
1460                                                             <NA>
1461                                                             <NA>
1462                                                      bottle/vial
1463                                                             <NA>
1464                                                  based on weight
1465                                                             <NA>
1466                                                             <NA>
1467                                                             <NA>
1468                                                             <NA>
1469                                                             <NA>
1470                                                             <NA>
1471                                                             <NA>
1472                                                             <NA>
1473                                                             <NA>
1474                                                             <NA>
1475                                                             <NA>
1476                                                             <NA>
1477                                              tablet/pill/capsule
1478                                                             <NA>
1479                                                             <NA>
1480                                                             <NA>
1481                                                             <NA>
1482                                                             <NA>
1483                                                             <NA>
1484                                                             <NA>
1485                                                             <NA>
1486                                                             <NA>
1487                                                             <NA>
1488                                                          monthly
1489                                                          monthly
1490                                     based on weight (50-100 lbs)
1491                                                             <NA>
1492                                                             <NA>
1493                                                             <NA>
1494                                                             <NA>
1495                                                             <NA>
1496                                                     pack/package
1497                                                             <NA>
1498                                                             <NA>
1499                                                             <NA>
1500                                                             <NA>
1501                                            1 tablet/pill/capsule
1502                                                             <NA>
1503                                                  based on weight
1504                                                             <NA>
1505                                                             <NA>
1506                                                             <NA>
1507                                                             <NA>
1508                                                             <NA>
1509                                                             <NA>
1510                                                             <NA>
1511                                                  based on weight
1512                                                  based on weight
1513                                                             <NA>
1514                                                  based on weight
1515                                                             <NA>
1516                                                             <NA>
1517                                                             <NA>
1518                                                             <NA>
1519                                                             <NA>
1520                                                             <NA>
1521                                                  based on weight
1522                                                             <NA>
1523                                                             <NA>
1524                                                             <NA>
1525                                                             <NA>
1526                                                             <NA>
1527                                                             <NA>
1528                                                  based on weight
1529                                                  based on weight
1530                                                             <NA>
1531                                                             <NA>
1532                                                           1 tube
1533                                                             <NA>
1534                                                             <NA>
1535                                                             <NA>
1536                                                      application
1537                                              tablet/pill/capsule
1538                                                             <NA>
1539                                                             tube
1540                                                             <NA>
1541                                                             <NA>
1542                                                             <NA>
1543                                                             <NA>
1544                                                             <NA>
1545                                                             <NA>
1546                                                             <NA>
1547                                                             <NA>
1548                                                             <NA>
1549                                                             <NA>
1550                                                             <NA>
1551                                              tablet/pill/capsule
1552                                                             <NA>
1553                                                             <NA>
1554                                                             <NA>
1555                                                             <NA>
1556                                                         inhalant
1557                                                             <NA>
1558                                                             <NA>
1559                                                             <NA>
1560                                                             <NA>
1561                                                             <NA>
1562                                                             <NA>
1563                                                             <NA>
1564                                                             <NA>
1565                                                             <NA>
1566                                                             <NA>
1567                                                             <NA>
1568                                                             <NA>
1569                                                     pack/package
1570                                                             <NA>
1571                                      based on weight (44-88 lbs)
1572                                     based on weight (50-100 lbs)
1573                                                             <NA>
1574                                                             <NA>
1575                                                             <NA>
1576                                                             <NA>
1577                                                             <NA>
1578                                                             <NA>
1579                                                             <NA>
1580                                                             <NA>
1581                                                             <NA>
1582                                                             <NA>
1583                                                             <NA>
1584                                                             <NA>
1585                                                             <NA>
1586                                                             <NA>
1587                                                      combination
1588                                                             <NA>
1589                                                             <NA>
1590                                                             <NA>
1591                                                             <NA>
1592                                                             <NA>
1593                                                             <NA>
1594                                                             <NA>
1595                                                             <NA>
1596                                                  based on weight
1597                                                  based on weight
1598                                                  based on weight
1599                                                             <NA>
1600                                                             <NA>
1601                                                             <NA>
1602                                                             <NA>
1603                                                             <NA>
1604                                                             <NA>
1605                                                             <NA>
1606                                                             <NA>
1607                                                             <NA>
1608                                                             <NA>
1609                                                             <NA>
1610                                                             <NA>
1611                                                             <NA>
1612                                                             <NA>
1613                                                             <NA>
1614                                                             <NA>
1615                                                             <NA>
1616                                                             <NA>
1617                                                             <NA>
1618                                                             <NA>
1619                                                             <NA>
1620                                                             <NA>
1621                                                             <NA>
1622                                                             <NA>
1623                                                             <NA>
1624                                                             <NA>
1625                                                             <NA>
1626                                                             <NA>
1627                                                             <NA>
1628                                                             <NA>
1629                                                             <NA>
1630                                                             <NA>
1631                                                             <NA>
1632                                                             <NA>
1633                                     based on weight (50-100 lbs)
1634                                                             <NA>
1635                                         4 tablets/pills/capsules
1636                                                             <NA>
1637                                                             tube
1638                                              tablet/pill/capsule
1639                                              tablet/pill/capsule
1640                                                     pack/package
1641                                                             <NA>
1642                                                             <NA>
1643                                                             <NA>
1644                                                             <NA>
1645                                              tablet/pill/capsule
1646                                                             <NA>
1647                                                             <NA>
1648                                                             <NA>
1649                                                             <NA>
1650                                                             <NA>
1651                                                             <NA>
1652                                                             <NA>
1653                                              tablet/pill/capsule
1654                                                             <NA>
1655                                                             <NA>
1656                                                             <NA>
1657                                                             <NA>
1658                                                             <NA>
1659                                                             <NA>
1660                                                             <NA>
1661                                                             <NA>
1662                                                             pump
1663                                     based on weight (60-120 lbs)
1664                                                             <NA>
1665                                                             <NA>
1666                                                             <NA>
1667                                                             <NA>
1668                                                  moderate amount
1669                                                             <NA>
1670                                                             <NA>
1671                                                  based on weight
1672                                                             <NA>
1673                                                             <NA>
1674                                                             <NA>
1675                                              tablet/pill/capsule
1676                                                             <NA>
1677                                                             <NA>
1678                                                             <NA>
1679                                                     pack/package
1680                                                      application
1681                                                           collar
1682                                                             <NA>
1683                                                           collar
1684                                                   shampoo/mousse
1685                                                            spray
1686                                                             <NA>
1687                                                             <NA>
1688                                                             <NA>
1689                                                  moderate amount
1690                                                            spray
1691                                                             <NA>
1692                                                  moderate amount
1693                                                             <NA>
1694                                                             <NA>
1695                                                             <NA>
1696                                                             <NA>
1697                                                           collar
1698                                                             <NA>
1699                                                             <NA>
1700                                                             <NA>
1701                                                             <NA>
1702                                                             <NA>
1703                                                             <NA>
1704                                                             <NA>
1705                                                             <NA>
1706                                                             <NA>
1707                                                             <NA>
1708                                                             <NA>
1709                                                             <NA>
1710                                                             <NA>
1711                                                             <NA>
1712                                     based on weight (50-100 lbs)
1713                                                             <NA>
1714                                                             <NA>
1715                                     based on weight (50-100 lbs)
1716                                                             <NA>
1717                                                             <NA>
1718                                                             <NA>
1719                                                             <NA>
1720                                     based on weight (50-100 lbs)
1721                                                             <NA>
1722                                                             <NA>
1723                                                             <NA>
1724                                                             <NA>
1725                                                             <NA>
1726                                                             <NA>
1727                                                             <NA>
1728                                                             <NA>
1729                                                             <NA>
1730                                                             <NA>
1731                                                             <NA>
1732                                                             <NA>
1733                                                             <NA>
1734                                                             <NA>
1735                                                             <NA>
1736                                                             <NA>
1737                                                             <NA>
1738                                                             <NA>
1739                                                             <NA>
1740                                                             <NA>
1741                                                             <NA>
1742                                                             <NA>
1743                                                             <NA>
1744                                                             <NA>
1745                                                             <NA>
1746                                                             <NA>
1747                                                      bottle/vial
1748                                                    1 bottle/vial
1749                                                  based on weight
1750                                                             <NA>
1751                                                             <NA>
1752                                                             <NA>
1753                                                   shampoo/mousse
1754                                                             <NA>
1755                                                             <NA>
1756                                                      unspecified
1757                                                      unspecified
1758                                                  based on weight
1759                                                  based on weight
1760                                                             <NA>
1761                                                            spray
1762                                                             <NA>
1763                                                             <NA>
1764                                                             <NA>
1765                                                             <NA>
1766                                                             <NA>
1767                                                             <NA>
1768                                                             <NA>
1769                                                             <NA>
1770                                                             <NA>
1771                                                             <NA>
1772                                                             <NA>
1773                                              tablet/pill/capsule
1774                                                             <NA>
1775                                                             <NA>
1776                                                             <NA>
1777                                                             <NA>
1778                                                             <NA>
1779                                                             <NA>
1780                                                             <NA>
1781                                                             <NA>
1782                                                             <NA>
1783                                                             <NA>
1784                                                             <NA>
1785                                                             <NA>
1786                                                             <NA>
1787                                                             <NA>
1788                                                             <NA>
1789                                                             <NA>
1790                                                             <NA>
1791                                                             <NA>
1792                                                             <NA>
1793                                                             <NA>
1794                                                             <NA>
1795                                                             <NA>
1796                                              tablet/pill/capsule
1797                                                             <NA>
1798                                                             <NA>
1799                                                     pack/package
1800                                                             <NA>
1801                                                             <NA>
1802                                                               gm
1803                                              tablet/pill/capsule
1804                                                             <NA>
1805                                                             <NA>
1806                                                             <NA>
1807                                                             <NA>
1808                                                             <NA>
1809                                                             <NA>
1810                                                             <NA>
1811                                                             <NA>
1812                                                             <NA>
1813                                                             <NA>
1814                                                             <NA>
1815                                                             <NA>
1816                                                             <NA>
1817                                                             <NA>
1818                                                             <NA>
1819                                                             <NA>
1820                                                      unspecified
1821                                                             <NA>
1822                                                             <NA>
1823                                                             <NA>
1824                                                             <NA>
1825                                                             <NA>
1826                                                             <NA>
1827                                                             <NA>
1828                                                             <NA>
1829                                                             <NA>
1830                                              tablet/pill/capsule
1831                                              tablet/pill/capsule
1832                                                             <NA>
1833                                                             <NA>
1834                                                             <NA>
1835                                                             <NA>
1836                                                             <NA>
1837                                                             <NA>
1838                                                             <NA>
1839                                                             <NA>
1840                                                             <NA>
1841                                              tablet/pill/capsule
1842                                                             tube
1843                                                             <NA>
1844                                                             <NA>
1845                                                             tube
1846                                              tablet/pill/capsule
1847                                                             tube
1848                                              tablet/pill/capsule
1849                                                  based on weight
1850                                                       inch strip
1851                                                  0.25 inch strip
1852                                                             <NA>
1853                                                             <NA>
1854                                                             <NA>
1855                                                             <NA>
1856                                                             <NA>
1857                                                             <NA>
1858                                                             <NA>
1859                                                             <NA>
1860                                                             <NA>
1861                                                             <NA>
1862                                                             <NA>
1863                                                             <NA>
1864                                                  based on weight
1865                                                             <NA>
1866                                                  based on weight
1867                                                  based on weight
1868                                                             <NA>
1869                                                             <NA>
1870                                                             <NA>
1871                                                             <NA>
1872                                                  based on weight
1873                                                  based on weight
1874                                                  based on weight
1875                                                             <NA>
1876                                                             <NA>
1877                                                      unspecified
1878                                                             <NA>
1879                                                             <NA>
1880                                                             <NA>
1881                                                             <NA>
1882                                                             <NA>
1883                                                             <NA>
1884                                                             <NA>
1885                                              tablet/pill/capsule
1886                                                             <NA>
1887                                                            spray
1888                                                           collar
1889                                                             <NA>
1890                                                  based on weight
1891                                                             <NA>
1892                                                             <NA>
1893                                              tablet/pill/capsule
1894                                                      unspecified
1895                                                             <NA>
1896                                                             <NA>
1897                                                             <NA>
1898                                                             <NA>
1899                                                             <NA>
1900                                                             <NA>
1901                                                             <NA>
1902                                                             <NA>
1903                                                             <NA>
1904                                                             <NA>
1905                                                             <NA>
1906                                                             <NA>
1907                                                             <NA>
1908                                                             <NA>
1909                                                  based on weight
1910                                                             <NA>
1911                                                             <NA>
1912                                                             <NA>
1913                                                             <NA>
1914                                                             <NA>
1915                                                             <NA>
1916                                                  based on weight
1917                                                  based on weight
1918                                                            scoop
1919                                                             <NA>
1920                                                         wipe/pad
1921                                                             pump
1922                                                            spray
1923                                                             <NA>
1924                                                             <NA>
1925                                                   shampoo/mousse
1926                                                     small amount
1927                                                             <NA>
1928                                                  based on weight
1929                                                  based on weight
1930                                                            spray
1931                                                     small amount
1932                                                             <NA>
1933                                                             <NA>
1934                                                             pump
1935                                                             <NA>
1936                                                             <NA>
1937                                                             <NA>
1938                                                             <NA>
1939                                                      unspecified
1940                                                             <NA>
1941                                                     small amount
1942                                                             <NA>
1943                                                             <NA>
1944                                                             <NA>
1945                                                            daily
1946                                                             <NA>
1947                                                  based on weight
1948                                              tablet/pill/capsule
1949                                                             <NA>
1950                                                             <NA>
1951                                                             <NA>
1952                                                            scoop
1953                                                             <NA>
1954                                                  based on weight
1955                                                  based on weight
1956                                                  based on weight
1957                                                             <NA>
1958                                                     pack/package
1959                                                             <NA>
1960                                                  based on weight
1961                                                             <NA>
1962                                                  based on weight
1963                                              tablet/pill/capsule
1964                                                      application
1965                                                             <NA>
1966                                                             <NA>
1967                                                             <NA>
1968                                                             <NA>
1969                                                             <NA>
1970                                                             <NA>
1971                                                             <NA>
1972                                              tablet/pill/capsule
1973                                              tablet/pill/capsule
1974                                              tablet/pill/capsule
1975                                                             <NA>
1976                                                             <NA>
1977                                                             <NA>
1978                                                             <NA>
1979                                                             <NA>
1980                                                             tube
1981                                              tablet/pill/capsule
1982                                            1 tablet/pill/capsule
1983                                                           1 tube
1984                                          0.5 tablet/pill/capsule
1985                                            1 tablet/pill/capsule
1986                                              tablet/pill/capsule
1987                                              tablet/pill/capsule
1988                                                             <NA>
1989                                                             <NA>
1990                                                             <NA>
1991                                                             <NA>
1992                                                             <NA>
1993                                                             <NA>
1994                                                             <NA>
1995                                                             <NA>
1996                                                             <NA>
1997                                                             <NA>
1998                                                             puff
1999                                                             <NA>
2000                                                             <NA>
2001                                                             <NA>
2002                                                             <NA>
2003                                                             <NA>
2004                                                             <NA>
2005                                                             <NA>
2006                                                             <NA>
2007                                                             <NA>
2008                                                             <NA>
2009                                                             <NA>
2010                                                             <NA>
2011                                                             <NA>
2012                                                             <NA>
2013                                                             <NA>
2014                                                             <NA>
2015                                                             <NA>
2016                                                  based on weight
2017                                                             <NA>
2018                                                             <NA>
2019                                                             <NA>
2020                                                             <NA>
2021                                                             <NA>
2022                                                     small amount
2023                                                             <NA>
2024                                                             <NA>
2025                                                      bottle/vial
2026                                              tablet/pill/capsule
2027                                              tablet/pill/capsule
2028                                                             <NA>
2029                                                             <NA>
2030                                                             <NA>
2031                                                             <NA>
2032                                                      unspecified
2033                                                      unspecified
2034                                                      unspecified
2035                                                  based on weight
2036                                                  based on weight
2037                                                             <NA>
2038                                              tablet/pill/capsule
2039                                                             <NA>
2040                                                             <NA>
2041                                                      as directed
2042                                                      as directed
2043                                                             <NA>
2044                                                            mg/kg
2045                                                             <NA>
2046                                                             <NA>
2047                                                             <NA>
2048                                                             <NA>
2049                                                             <NA>
2050                                                  based on weight
2051                                                  based on weight
2052                                                             <NA>
2053                                                             <NA>
2054                                                             <NA>
2055                                                             <NA>
2056                                                             <NA>
2057                                                             <NA>
2058                                                             <NA>
2059                                                             <NA>
2060                                                             <NA>
2061                                                             <NA>
2062                                                             <NA>
2063                                                             <NA>
2064                                                             <NA>
2065                                                             <NA>
2066                                                             <NA>
2067                                                             <NA>
2068                                                             <NA>
2069                                                             <NA>
2070                                                             <NA>
2071                                                             <NA>
2072                                                             <NA>
2073                                                             <NA>
2074                                                             <NA>
2075                                     based on weight (50-100 lbs)
2076                                                             <NA>
2077                                                             <NA>
2078                                                             <NA>
2079                                                             <NA>
2080                                                             <NA>
2081                                                             <NA>
2082                                                             <NA>
2083                                      based on weight (40-88 lbs)
2084                                     based on weight (50-100 lbs)
2085                                                  based on weight
2086                                     based on weight (50-100 lbs)
2087                                     based on weight (50-100 lbs)
2088                                      based on weight (44-88 lbs)
2089                                        based on weight (80+ lbs)
2090                                                             <NA>
2091                                                  based on weight
2092                                                             <NA>
2093                                                  based on weight
2094                                                             <NA>
2095                                                             <NA>
2096                                              tablet/pill/capsule
2097                                                             <NA>
2098                                                             <NA>
2099                                                               gm
2100                                                             <NA>
2101                                                             <NA>
2102                                                             <NA>
2103                                                             <NA>
2104                                                             <NA>
2105                                                             <NA>
2106                                                             <NA>
2107                                              tablet/pill/capsule
2108                                            1 tablet/pill/capsule
2109                                            1 tablet/pill/capsule
2110                                                  based on weight
2111                                                             <NA>
2112                                                             <NA>
2113                                              tablet/pill/capsule
2114                                                             <NA>
2115                                                             <NA>
2116                                                     small amount
2117                                                             <NA>
2118                                              tablet/pill/capsule
2119                                                             <NA>
2120                                                             <NA>
2121                                                             <NA>
2122                                                              50%
2123                                         2 tablets/pills/capsules
2124                                                             pump
2125                                                             <NA>
2126                                              tablet/pill/capsule
2127                                              tablet/pill/capsule
2128                                                             <NA>
2129                                                             <NA>
2130                                                             <NA>
2131                                                             <NA>
2132                                                             <NA>
2133                                                             <NA>
2134                                                             <NA>
2135                                                             <NA>
2136                                                             <NA>
2137                                              tablet/pill/capsule
2138                                              tablet/pill/capsule
2139                                                             <NA>
2140                                                             <NA>
2141                                                  syringe/pipette
2142                                                             <NA>
2143                                              tablet/pill/capsule
2144                                                             <NA>
2145                                                             <NA>
2146                                                     pack/package
2147                                     based on weight (50-100 lbs)
2148                                                             <NA>
2149                                                  based on weight
2150                                              tablet/pill/capsule
2151                                                  based on weight
2152                                              tablet/pill/capsule
2153                                                             <NA>
2154                                                             <NA>
2155                                                             <NA>
2156                                                             <NA>
2157                                                             <NA>
2158                                                             <NA>
2159                                                             <NA>
2160                                                             <NA>
2161                                                  based on weight
2162                                                  based on weight
2163                                              tablet/pill/capsule
2164                                                     small amount
2165                                                            drops
2166                                                             <NA>
2167                                              tablet/pill/capsule
2168                                                             <NA>
2169                                                             <NA>
2170                                                             <NA>
2171                                                             <NA>
2172                                                             <NA>
2173                                                             <NA>
2174                                                             <NA>
2175                                              tablet/pill/capsule
2176                                                             <NA>
2177                                                             <NA>
2178                                                             <NA>
2179                                                             <NA>
2180                                                             <NA>
2181                                                             <NA>
2182                                                             <NA>
2183                                                             <NA>
2184                                                             <NA>
2185                                                             <NA>
2186                                                             <NA>
2187                                                             <NA>
2188                                                             <NA>
2189                                                             <NA>
2190                                                             <NA>
2191                                                             <NA>
2192                                                             <NA>
2193                                                             <NA>
2194                                                             <NA>
2195                                                      unspecified
2196                                                             <NA>
2197                                                             <NA>
2198                                                             <NA>
2199                                                  based on weight
2200                                                  based on weight
2201                                              tablet/pill/capsule
2202                                              tablet/pill/capsule
2203                                              tablet/pill/capsule
2204                                              tablet/pill/capsule
2205                                              tablet/pill/capsule
2206                                            1 tablet/pill/capsule
2207                                            1 tablet/pill/capsule
2208                                                             <NA>
2209                                              tablet/pill/capsule
2210                                                             <NA>
2211                                                             <NA>
2212                                                             <NA>
2213                                                             <NA>
2214                                                             <NA>
2215                                                             <NA>
2216                                              tablet/pill/capsule
2217                                              tablet/pill/capsule
2218                                                             <NA>
2219                                            1 tablet/pill/capsule
2220                                            1 tablet/pill/capsule
2221                                                             <NA>
2222                                                      application
2223                                              tablet/pill/capsule
2224                                            1 tablet/pill/capsule
2225                                                             <NA>
2226                                            1 tablet/pill/capsule
2227                                                             <NA>
2228                                                             <NA>
2229                                            1 tablet/pill/capsule
2230                                                             <NA>
2231                                                             <NA>
2232                                                             <NA>
2233                                                             <NA>
2234                                                             <NA>
2235                                                             <NA>
2236                                                             <NA>
2237                                                            scoop
2238                                              tablet/pill/capsule
2239                                                             <NA>
2240                                                      application
2241                                                      application
2242                                                             <NA>
2243                                                  based on weight
2244                                                  based on weight
2245                                                             <NA>
2246                                                             <NA>
2247                                                             <NA>
2248                                                             <NA>
2249                                                             <NA>
2250                                                      unspecified
2251                                                             <NA>
2252                                                             tube
2253                                                             <NA>
2254                                                             <NA>
2255                                                             tube
2256                                                             <NA>
2257                                                             <NA>
2258                                                             <NA>
2259                                                             <NA>
2260                                                             <NA>
2261                                                             <NA>
2262                                                             <NA>
2263                                                             <NA>
2264                                                             <NA>
2265                                                             <NA>
2266                                                             <NA>
2267                                                             <NA>
2268                                                             <NA>
2269                                                             <NA>
2270                                                             <NA>
2271                                                             <NA>
2272                                                             <NA>
2273                                                             <NA>
2274                                                             <NA>
2275                                                             <NA>
2276                                                             <NA>
2277                                                             <NA>
2278                                                             <NA>
2279                                                             <NA>
2280                                                  based on weight
2281                                                             <NA>
2282                                     based on weight (50-100 lbs)
2283                                                  based on weight
2284                                                             <NA>
2285                                                             <NA>
2286                                                             <NA>
2287                                                             <NA>
2288                                                             <NA>
2289                                                             <NA>
2290                                                             <NA>
2291                                                             <NA>
2292                                                             <NA>
2293                                                             <NA>
2294                                                             <NA>
2295                                                             <NA>
2296                                                             <NA>
2297                                              tablet/pill/capsule
2298                                                             <NA>
2299                                                             <NA>
2300                                                             <NA>
2301                                                           liquid
2302                                                             <NA>
2303                                                             <NA>
2304                                                             <NA>
2305                                                             <NA>
2306                                                             <NA>
2307                                                           powder
2308                                                             <NA>
2309                                                             <NA>
2310                                                             <NA>
2311                                                             <NA>
2312                                                             <NA>
2313                                                             <NA>
2314                                                             <NA>
2315                                                             <NA>
2316                                                             <NA>
2317                                                             <NA>
2318                                                             <NA>
2319                                                             <NA>
2320                                                             <NA>
2321                                                             <NA>
2322                                                             <NA>
2323                                                             <NA>
2324                                                             <NA>
2325                                                             <NA>
2326                                                             <NA>
2327                                                             <NA>
2328                                                             <NA>
2329                                              tablet/pill/capsule
2330                                                             <NA>
2331                                                             <NA>
2332                                                             <NA>
2333                                                             <NA>
2334                                                             <NA>
2335                                                             <NA>
2336                                                             <NA>
2337                                                                %
2338                                                             <NA>
2339                                                             <NA>
2340                                                             <NA>
2341                                                             <NA>
2342                                                             <NA>
2343                                                             <NA>
2344                                                             <NA>
2345                                                             <NA>
2346                                                             <NA>
2347                                                             <NA>
2348                                                             <NA>
2349                                                             <NA>
2350                                                             <NA>
2351                                                           cup(s)
2352                                                             <NA>
2353                                                             <NA>
2354                                                             <NA>
2355                                                             <NA>
2356                                                             <NA>
2357                                                             <NA>
2358                                                             <NA>
2359                                                             <NA>
2360                                                             <NA>
2361                                                             <NA>
2362                                                             <NA>
2363                                                             <NA>
2364                                                             <NA>
2365                                                             <NA>
2366                                                             <NA>
2367                                                             <NA>
2368                                                             <NA>
2369                                                             <NA>
2370                                                             <NA>
2371                                                             <NA>
2372                                                             <NA>
2373                                                             <NA>
2374                                                             <NA>
2375                                                             <NA>
2376                                                             <NA>
2377                                                             <NA>
2378                                                             <NA>
2379                                                             <NA>
2380                                                         ointment
2381                                                             <NA>
2382                                                             <NA>
2383                                                             <NA>
2384                                                  based on weight
2385                                                             <NA>
2386                                                  based on weight
2387                                                             <NA>
2388                                                             <NA>
2389                                                             <NA>
2390                                                            spray
2391                                                             <NA>
2392                                                             <NA>
2393                                                             <NA>
2394                                                             <NA>
2395                                                             <NA>
2396                                                             <NA>
2397                                                             <NA>
2398                                                            spray
2399                                                             <NA>
2400                                                             <NA>
2401                                                             <NA>
2402                                                             <NA>
2403                                              tablet/pill/capsule
2404                                              tablet/pill/capsule
2405                                                      application
2406                                                             <NA>
2407                                                             <NA>
2408                                                      application
2409                                                             <NA>
2410                                                             <NA>
2411                                                             <NA>
2412                                                             <NA>
2413                                                             <NA>
2414                                                             <NA>
2415                                                             <NA>
2416                                                             <NA>
2417                                                             <NA>
2418                                                             <NA>
2419                                                             <NA>
2420                                                             <NA>
2421                                                             <NA>
2422                                                             <NA>
2423                                                             <NA>
2424                                                             <NA>
2425                                                             <NA>
2426                                                             <NA>
2427                                                             <NA>
2428                                                             <NA>
2429                                                             <NA>
2430                                                             <NA>
2431                                                             <NA>
2432                                                             <NA>
2433                                                             <NA>
2434                                                             <NA>
2435                                                             <NA>
2436                                                             <NA>
2437                                                             <NA>
2438                                                             <NA>
2439                                                             <NA>
2440                                                             <NA>
2441                                              tablet/pill/capsule
2442                                                             <NA>
2443                                                             <NA>
2444                                                             <NA>
2445                                                             <NA>
2446                                                             <NA>
2447                                                             <NA>
2448                                                             <NA>
2449                                                             <NA>
2450                                                             <NA>
2451                                                             <NA>
2452                                                             <NA>
2453                                                             <NA>
2454                                                             <NA>
2455                                                             <NA>
2456                                                             <NA>
2457                                                             <NA>
2458                                                             <NA>
2459                                                             <NA>
2460                                                             <NA>
2461                                                             <NA>
2462                                                             <NA>
2463                                                     pack/package
2464                                                             <NA>
2465                                              tablet/pill/capsule
2466                                                             <NA>
2467                                                             <NA>
2468                                                             <NA>
2469                                                             <NA>
2470                                                             <NA>
2471                                                             <NA>
2472                                                          5 mg/ml
2473                                                             <NA>
2474                                                             <NA>
2475                                                             <NA>
2476                                                             <NA>
2477                                                             <NA>
2478                                                             <NA>
2479                                              tablet/pill/capsule
2480                                                             <NA>
2481                                                            spray
2482                                     based on weight (50-100 lbs)
2483                                     based on weight (60-120 lbs)
2484                                                             <NA>
2485                                                             <NA>
2486                                                        as needed
2487                                                         biweekly
2488                                                             <NA>
2489                                                             <NA>
2490                                                          5 drops
2491                                                     small amount
2492                                                       1 wipe/pad
2493                                                             <NA>
2494                                                             <NA>
2495                                              tablet/pill/capsule
2496                                                             <NA>
2497                                                             <NA>
2498                                                             <NA>
2499                                                     pack/package
2500                                            1 tablet/pill/capsule
2501                                                             <NA>
2502                                                             <NA>
2503                                                             <NA>
2504                                            1 tablet/pill/capsule
2505                                     based on weight (50-100 lbs)
2506                                     based on weight (60-120 lbs)
2507                                                             <NA>
2508                                              tablet/pill/capsule
2509                                                             <NA>
2510                                                             <NA>
2511                                                             <NA>
2512                                                             <NA>
2513                                                             <NA>
2514                                                             <NA>
2515                                                             <NA>
2516                                                             <NA>
2517                                                             <NA>
2518                                              tablet/pill/capsule
2519                                                             <NA>
2520                                                             <NA>
2521                                                             <NA>
2522                                                             <NA>
2523                                                             <NA>
2524                                                             <NA>
2525                                                             <NA>
2526                                                             <NA>
2527                                                             <NA>
2528                                                             <NA>
2529                                                             <NA>
2530                                                             <NA>
2531                                                             <NA>
2532                                                             <NA>
2533                                                             <NA>
2534                                                             <NA>
2535                                                             <NA>
2536                                                             <NA>
2537                                                             <NA>
2538                                                             <NA>
2539                                                  based on weight
2540                                     based on weight (50-100 lbs)
2541                                                             <NA>
2542                                     based on weight (50-100 lbs)
2543                                                           collar
2544                                                             <NA>
2545                                              tablet/pill/capsule
2546                                                           collar
2547                                            1 tablet/pill/capsule
2548                                        based on weight (18+ lbs)
2549                                                             <NA>
2550                                                             <NA>
2551                                                             <NA>
2552                                                             <NA>
2553                                                             <NA>
2554                                                             <NA>
2555                                                             <NA>
2556                                                             <NA>
2557                                                             <NA>
2558                                                  based on weight
2559                                                  based on weight
2560                                                  based on weight
2561                                                             <NA>
2562                                                             <NA>
2563                                                             <NA>
2564                                                             <NA>
2565                                                             <NA>
2566                                                             <NA>
2567                                                             <NA>
2568                                                             <NA>
2569                                                             <NA>
2570                                                             <NA>
2571                                                             <NA>
2572                                                  based on weight
2573                                                             <NA>
2574                                                             <NA>
2575                                                             <NA>
2576                                                             <NA>
2577                                                             <NA>
2578                                                            spray
2579                                                             <NA>
2580                                                         ointment
2581                                                             <NA>
2582                                                             <NA>
2583                                                             <NA>
2584                                                             <NA>
2585                                                             <NA>
2586                                                      application
2587                                                             <NA>
2588                                                             <NA>
2589                                                             <NA>
2590                                                            scoop
2591                                                            scoop
2592                                              tablet/pill/capsule
2593                                                             <NA>
2594                                                             <NA>
2595                                              tablet/pill/capsule
2596                                              tablet/pill/capsule
2597                                                             <NA>
2598                                                             <NA>
2599                                                             <NA>
2600                                                  based on weight
2601                                              tablet/pill/capsule
2602                                                             <NA>
2603                                              tablet/pill/capsule
2604                                                             <NA>
2605                                                             <NA>
2606                                                     small amount
2607                                                             <NA>
2608                                                             <NA>
2609                                                             <NA>
2610                                              tablet/pill/capsule
2611                                                             <NA>
2612                                                             <NA>
2613                                                             <NA>
2614                                                             <NA>
2615                                                             <NA>
2616                                                             <NA>
2617                                                             <NA>
2618                                                             <NA>
2619                                                             <NA>
2620                                                             <NA>
2621                                                             <NA>
2622                                                             <NA>
2623                                                             <NA>
2624                                                             <NA>
2625                                                             <NA>
2626                                                             <NA>
2627                                                             <NA>
2628                                                             <NA>
2629                                                             <NA>
2630                                                             <NA>
2631                                                             <NA>
2632                                                             <NA>
2633                                                             <NA>
2634                                                             <NA>
2635                                                             <NA>
2636                                                             <NA>
2637                                              tablet/pill/capsule
2638                                                             <NA>
2639                                                             <NA>
2640                                                             <NA>
2641                                                             <NA>
2642                                                            spray
2643                                                             <NA>
2644                                                             <NA>
2645                                                      unspecified
2646                                                             <NA>
2647                                                             <NA>
2648                                                             <NA>
2649                                                             <NA>
2650                                                             <NA>
2651                                                      unspecified
2652                                                             <NA>
2653                                                             <NA>
2654                                                             <NA>
2655                                                             <NA>
2656                                                             <NA>
2657                                                             <NA>
2658                                                             <NA>
2659                                                      unspecified
2660                                                      unspecified
2661                                                      unspecified
2662                                                             <NA>
2663                                                             <NA>
2664                                                            spray
2665                                                             <NA>
2666                                                             <NA>
2667                                                             <NA>
2668                                                             <NA>
2669                                                             <NA>
2670                                                             <NA>
2671                                                             <NA>
2672                                                             <NA>
2673                                                             <NA>
2674                                                             <NA>
2675                                                             <NA>
2676                                                             <NA>
2677                                                             <NA>
2678                                                             <NA>
2679                                                             <NA>
2680                                                             <NA>
2681                                                             <NA>
2682                                                             <NA>
2683                                                             <NA>
2684                                                             <NA>
2685                                                             <NA>
2686                                                             <NA>
2687                                                             <NA>
2688                                                             <NA>
2689                                                             <NA>
2690                                                             <NA>
2691                                                             <NA>
2692                                                             <NA>
2693                                                             <NA>
2694                                                             <NA>
2695                                                            mg/ml
2696                                                             <NA>
2697                                                             <NA>
2698                                                             <NA>
2699                                                            spray
2700                                                             <NA>
2701                                                             <NA>
2702                                                             <NA>
2703                                                             <NA>
2704                                                             <NA>
2705                                                             <NA>
2706                                                      unspecified
2707                                                             <NA>
2708                                                             <NA>
2709                                                             <NA>
2710                                                  based on weight
2711                                                             <NA>
2712                                                             <NA>
2713                                                             <NA>
2714                                                             <NA>
2715                                                  based on weight
2716                                                             <NA>
2717                                                  based on weight
2718                                                             <NA>
2719                                                             <NA>
2720                                                             <NA>
2721                                                             <NA>
2722                                                             <NA>
2723                                                             <NA>
2724                                                             <NA>
2725                                                             <NA>
2726                                                             dose
2727                                                             <NA>
2728                                                             <NA>
2729                                                             <NA>
2730                                                             <NA>
2731                                                             <NA>
2732                                                             <NA>
2733                                                             <NA>
2734                                                             <NA>
2735                                                             <NA>
2736                                                             <NA>
2737                                                             <NA>
2738                                                             <NA>
2739                                                             <NA>
2740                                                             <NA>
2741                                                             <NA>
2742                                                  based on weight
2743                                                  based on weight
2744                                                             <NA>
2745                                                  based on weight
2746                                                  based on weight
2747                                                             <NA>
2748                                                  based on weight
2749                                                  based on weight
2750                                                             <NA>
2751                                                             <NA>
2752                                                             <NA>
2753                                                  based on weight
2754                                                             <NA>
2755                                                             <NA>
2756                                                  based on weight
2757                                                             <NA>
2758                                                             <NA>
2759                                                             <NA>
2760                                                             <NA>
2761                                                             <NA>
2762                                                             <NA>
2763                                                             <NA>
2764                                                             <NA>
2765                                                             <NA>
2766                                                             <NA>
2767                                                             <NA>
2768                                                             <NA>
2769                                                             <NA>
2770                                                             <NA>
2771                                                             <NA>
2772                                                             <NA>
2773                                                             <NA>
2774                                                             <NA>
2775                                                             <NA>
2776                                                             <NA>
2777                                                             <NA>
2778                                                             <NA>
2779                                                             <NA>
2780                                                             <NA>
2781                                                             <NA>
2782                                                             <NA>
2783                                                             <NA>
2784                                                             <NA>
2785                                                             <NA>
2786                                                             <NA>
2787                                                             <NA>
2788                                                             <NA>
2789                                                             <NA>
2790                                                             <NA>
2791                                                             <NA>
2792                                                             <NA>
2793                                                             <NA>
2794                                                             <NA>
2795                                                             <NA>
2796                                                             <NA>
2797                                     based on weight (50-100 lbs)
2798                                                             <NA>
2799                                                             <NA>
2800                                                             <NA>
2801                                                      application
2802                                                             <NA>
2803                                                             <NA>
2804                                                             <NA>
2805                                                             <NA>
2806                                                             <NA>
2807                                              tablet/pill/capsule
2808                                                             <NA>
2809                                                             <NA>
2810                                                             <NA>
2811                                                             <NA>
2812                                              tablet/pill/capsule
2813                                                             <NA>
2814                                                             <NA>
2815                                                             <NA>
2816                                                             <NA>
2817                                                  based on weight
2818                                                     pack/package
2819                                                             <NA>
2820                                                             <NA>
2821                                                             <NA>
2822                                                  based on weight
2823                                                             <NA>
2824                                                             <NA>
2825                                                  based on weight
2826                                                  based on weight
2827                                                  based on weight
2828                                              tablet/pill/capsule
2829                                                             <NA>
2830                                                             <NA>
2831                                              tablet/pill/capsule
2832                                                             <NA>
2833                                                             <NA>
2834                                                             <NA>
2835                                                             <NA>
2836                                                             <NA>
2837                                                             <NA>
2838                                            1 tablet/pill/capsule
2839                                                             <NA>
2840                                                             <NA>
2841                                                             <NA>
2842                                                             <NA>
2843                                                             <NA>
2844                                                             <NA>
2845                                                             <NA>
2846                                            1 tablet/pill/capsule
2847                                                             <NA>
2848                                                             <NA>
2849                                                             <NA>
2850                                                             <NA>
2851                                                                %
2852                                                             <NA>
2853                                                             <NA>
2854                                                             <NA>
2855                                              tablet/pill/capsule
2856                                                             <NA>
2857                                                             <NA>
2858                                                             <NA>
2859                                                             <NA>
2860                                                             <NA>
2861                                                             <NA>
2862                                                             <NA>
2863                                                             <NA>
2864                                                                %
2865                                                             <NA>
2866                                                                %
2867                                                             <NA>
2868                                                             <NA>
2869                                                             <NA>
2870                                                             <NA>
2871                                                             <NA>
2872                                                             <NA>
2873                                                             <NA>
2874                                                             <NA>
2875                                                             <NA>
2876                                      based on weight (44-88 lbs)
2877                                                             <NA>
2878                                                             <NA>
2879                                                             <NA>
2880                                                             <NA>
2881                                                             <NA>
2882                                                             <NA>
2883                                                             <NA>
2884                                                             <NA>
2885                                                             <NA>
2886                                                             <NA>
2887                                              tablet/pill/capsule
2888                                                             <NA>
2889                                                             <NA>
2890                                                             <NA>
2891                                                             <NA>
2892                                                             <NA>
2893                                                             <NA>
2894                                                             <NA>
2895                                                             <NA>
2896                                                             <NA>
2897                                                   shampoo/mousse
2898                                                             <NA>
2899                                                               mg
2900                                                     small amount
2901                                                             <NA>
2902                                                             <NA>
2903                                                   shampoo/mousse
2904                                                  moderate amount
2905                                                           weekly
2906                                                             <NA>
2907                                                     pack/package
2908                                                             <NA>
2909                                              tablet/pill/capsule
2910                                                  based on weight
2911                                     based on weight (50-100 lbs)
2912                                      based on weight (24-60 lbs)
2913                                                             <NA>
2914                                                             <NA>
2915                                                             <NA>
2916                                                             <NA>
2917                                                             <NA>
2918                                                             <NA>
2919                                            1 tablet/pill/capsule
2920                                            1 tablet/pill/capsule
2921                                                               gm
2922                                              tablet/pill/capsule
2923                                              tablet/pill/capsule
2924                                                             <NA>
2925                                                      unspecified
2926                                                  based on weight
2927                                                  based on weight
2928                                                             <NA>
2929                                                             <NA>
2930                                                             <NA>
2931                                                             <NA>
2932                                                             tube
2933                                                             <NA>
2934                                                             <NA>
2935                                                             <NA>
2936                                                             <NA>
2937                                                             <NA>
2938                                                             <NA>
2939                                                             <NA>
2940                                                             <NA>
2941                                                             <NA>
2942                                                                %
2943                                            1 tablet/pill/capsule
2944                                                             <NA>
2945                                                             <NA>
2946                                                             <NA>
2947                                                             <NA>
2948                                     based on weight (50-100 lbs)
2949                                                  based on weight
2950                                                  based on weight
2951                                                             <NA>
2952                                                             <NA>
2953                                                             <NA>
2954                                                             <NA>
2955                                                             <NA>
2956                                                             <NA>
2957                                              tablet/pill/capsule
2958                                              tablet/pill/capsule
2959                                              tablet/pill/capsule
2960                                              tablet/pill/capsule
2961                                              tablet/pill/capsule
2962                                              tablet/pill/capsule
2963                                              tablet/pill/capsule
2964                                              tablet/pill/capsule
2965                                                             <NA>
2966                                                             <NA>
2967                                                             <NA>
2968                                      based on weight (44-88 lbs)
2969                                                  based on weight
2970                                                             <NA>
2971                                                             <NA>
2972                                                            drops
2973                                                           1.5 ml
2974                                              tablet/pill/capsule
2975                                                      application
2976                                                             <NA>
2977                                                             <NA>
2978                                              tablet/pill/capsule
2979                                                             <NA>
2980                                                             <NA>
2981                                                             <NA>
2982                                                             <NA>
2983                                                             <NA>
2984                                                             <NA>
2985                                                             <NA>
2986                                                             <NA>
2987                                                             <NA>
2988                                                             <NA>
2989                                                             <NA>
2990                                                             <NA>
2991                                                             <NA>
2992                                                             <NA>
2993                                                             <NA>
2994                                                             <NA>
2995                                                             <NA>
2996                                                             <NA>
2997                                                             <NA>
2998                                                     pack/package
2999                                                             <NA>
3000                                                             <NA>
3001                                                             <NA>
3002                                                             <NA>
3003                                                     small amount
3004                                                             <NA>
3005                                                             <NA>
3006                                                             <NA>
3007                                                             <NA>
3008                                                             <NA>
3009                                                             <NA>
3010                                                             <NA>
3011                                                             <NA>
3012                                                             <NA>
3013                                                             <NA>
3014                                                             <NA>
3015                                                             <NA>
3016                                                             <NA>
3017                                                             <NA>
3018                                                             <NA>
3019                                                             <NA>
3020                                                             <NA>
3021                                                             <NA>
3022                                              tablet/pill/capsule
3023                                                             <NA>
3024                                                             <NA>
3025                                                             <NA>
3026                                                             <NA>
3027                                                             <NA>
3028                                                             <NA>
3029                                                             <NA>
3030                                                             <NA>
3031                                                             <NA>
3032                                                             <NA>
3033                                                             <NA>
3034                                                             <NA>
3035                                                             <NA>
3036                                                             <NA>
3037                                                             <NA>
3038                                                             <NA>
3039                                                             <NA>
3040                                                             <NA>
3041                                              tablet/pill/capsule
3042                                                      application
3043                                                             <NA>
3044                                                             <NA>
3045                                                             <NA>
3046                                                             <NA>
3047                                                             <NA>
3048                                                             <NA>
3049                                                             <NA>
3050                                                             <NA>
3051                                                             <NA>
3052                                                             <NA>
3053                                                             <NA>
3054                                                             <NA>
3055                                                         ointment
3056                                                             <NA>
3057                                                             <NA>
3058                                                     small amount
3059                                                             <NA>
3060                                      based on weight (26-50 lbs)
3061                                                             <NA>
3062                                                             <NA>
3063                                                             <NA>
3064                                                             <NA>
3065                                                             <NA>
3066                                                             <NA>
3067                                                             <NA>
3068                                                             <NA>
3069                                                             <NA>
3070                                                             <NA>
3071                                                             <NA>
3072                                                             <NA>
3073                                                             <NA>
3074                                                             <NA>
3075                                                             <NA>
3076                                                             <NA>
3077                                                             <NA>
3078                                                             <NA>
3079                                                             <NA>
3080                                                             <NA>
3081                                                             <NA>
3082                                                             <NA>
3083                                                             <NA>
3084                                                             <NA>
3085                                                             <NA>
3086                                                             <NA>
3087                                                             <NA>
3088                                                             <NA>
3089                                                             <NA>
3090                                                             <NA>
3091                                                             <NA>
3092                                                             <NA>
3093                                                             <NA>
3094                                                             <NA>
3095                                                      unspecified
3096                                                             <NA>
3097                                                             <NA>
3098                                                             <NA>
3099                                                             <NA>
3100                                                             <NA>
3101                                                             <NA>
3102                                                             <NA>
3103                                                             <NA>
3104                                                             <NA>
3105                                                             <NA>
3106                                                             <NA>
3107                                                             <NA>
3108                                                             <NA>
3109                                                             <NA>
3110                                                             <NA>
3111                                                             <NA>
3112                                                             <NA>
3113                                                             <NA>
3114                                                             <NA>
3115                                                             <NA>
3116                                                             <NA>
3117                                                             <NA>
3118                                                             <NA>
3119                                                             <NA>
3120                                                             <NA>
3121                                                             <NA>
3122                                                             <NA>
3123                                                             <NA>
3124                                                     small amount
3125                                                             <NA>
3126                                                             <NA>
3127                                                             <NA>
3128                                                             <NA>
3129                                                             <NA>
3130                                                             <NA>
3131                                                             <NA>
3132                                                             <NA>
3133                                                             pump
3134                                              tablet/pill/capsule
3135                                              tablet/pill/capsule
3136                                                             <NA>
3137                                                             <NA>
3138                                                             <NA>
3139                                                             <NA>
3140                                                      unspecified
3141                                                             <NA>
3142                                                             <NA>
3143                                                             <NA>
3144                                                             <NA>
3145                                                             pump
3146                                                             <NA>
3147                                                             <NA>
3148                                                             <NA>
3149                                                             <NA>
3150                                                             <NA>
3151                                                             <NA>
3152                                                             <NA>
3153                                                             <NA>
3154                                                             <NA>
3155                                                             <NA>
3156                                              tablet/pill/capsule
3157                                                     pack/package
3158                                              tablet/pill/capsule
3159                                                             pump
3160                                                             <NA>
3161                                                             <NA>
3162                                                             pump
3163                                              tablet/pill/capsule
3164                                              tablet/pill/capsule
3165                                                     pack/package
3166                                              tablet/pill/capsule
3167                                                             <NA>
3168                                                             <NA>
3169                                                             <NA>
3170                                                             <NA>
3171                                                             <NA>
3172                                                             <NA>
3173                                                             <NA>
3174                                                             <NA>
3175                                                             <NA>
3176                                                             <NA>
3177                                                             <NA>
3178                                                             <NA>
3179                                                             <NA>
3180                                                             <NA>
3181                                                             <NA>
3182                                                             <NA>
3183                                                            mg/kg
3184                                                             <NA>
3185                                                             <NA>
3186                                                             <NA>
3187                                                             <NA>
3188                                                             <NA>
3189                                                             <NA>
3190                                                             <NA>
3191                                                             <NA>
3192                                                                l
3193                                                             <NA>
3194                                                             <NA>
3195                                                             <NA>
3196                                                             <NA>
3197                                                             <NA>
3198                                                             <NA>
3199                                                             <NA>
3200                                                             <NA>
3201                                                             <NA>
3202                                                             <NA>
3203                                                             <NA>
3204                                                             <NA>
3205                                                             <NA>
3206                                                             <NA>
3207                                                                %
3208                                                             <NA>
3209                                                             <NA>
3210                                                             <NA>
3211                                                             <NA>
3212                                                             <NA>
3213                                                             <NA>
3214                                                             <NA>
3215                                                             <NA>
3216                                                             <NA>
3217                                                             <NA>
3218                                              tablet/pill/capsule
3219                                              tablet/pill/capsule
3220                                                             <NA>
3221                                                             <NA>
3222                                                             <NA>
3223                                                             <NA>
3224                                                             <NA>
3225                                                             <NA>
3226                                                             <NA>
3227                                                             <NA>
3228                                                             <NA>
3229                                                             <NA>
3230                                                             <NA>
3231                                                             <NA>
3232                                                             <NA>
3233                                                             <NA>
3234                                                             <NA>
3235                                                             <NA>
3236                                                             <NA>
3237                                                             <NA>
3238                                                             <NA>
3239                                                             <NA>
3240                                                             <NA>
3241                                                             <NA>
3242                                                             <NA>
3243                                                             <NA>
3244                                                             <NA>
3245                                                             <NA>
3246                                                  based on weight
3247                                              tablet/pill/capsule
3248                                                             <NA>
3249                                                             <NA>
3250                                                  based on weight
3251                                                  based on weight
3252                                                             <NA>
3253                                     based on weight (50-100 lbs)
3254                                                  based on weight
3255                                                  based on weight
3256                                                             <NA>
3257                                                             <NA>
3258                                                             <NA>
3259                                                             <NA>
3260                                                             <NA>
3261                                                             <NA>
3262                                                             <NA>
3263                                                    1 bottle/vial
3264                                                     pack/package
3265                                                      bottle/vial
3266                                                             <NA>
3267                                                             <NA>
3268                                                             <NA>
3269                                              tablet/pill/capsule
3270                                                             <NA>
3271                                              tablet/pill/capsule
3272                                                           1 pump
3273                                                        as needed
3274                                                             <NA>
3275                                                             <NA>
3276                                                             <NA>
3277                                                             <NA>
3278                                                       inch strip
3279                                                             <NA>
3280                                            1 tablet/pill/capsule
3281                                                             pump
3282                                                             <NA>
3283                                                             <NA>
3284                                                  based on weight
3285                                                             <NA>
3286                                                             <NA>
3287                                                     small amount
3288                                                             <NA>
3289                                                             <NA>
3290                                                             <NA>
3291                                                     small amount
3292                                                             <NA>
3293                                                     small amount
3294                                              tablet/pill/capsule
3295                                                             <NA>
3296                                              tablet/pill/capsule
3297                                                             <NA>
3298                                                             <NA>
3299                                                             <NA>
3300                                              tablet/pill/capsule
3301                                                             <NA>
3302                                                             <NA>
3303                                                             <NA>
3304                                                             <NA>
3305                                                     small amount
3306                                                             <NA>
3307                                                             <NA>
3308                                                             <NA>
3309                                                             <NA>
3310                                                             <NA>
3311                                                             <NA>
3312                                                  moderate amount
3313                                                     small amount
3314                                                             <NA>
3315                                                     pack/package
3316                                                             <NA>
3317                                                             <NA>
3318                                                             <NA>
3319                                                             <NA>
3320                                                             <NA>
3321                                                             <NA>
3322                                                             <NA>
3323                                                             <NA>
3324                                                             <NA>
3325                                                             <NA>
3326                                                             <NA>
3327                                                             <NA>
3328                                                             <NA>
3329                                                             <NA>
3330                                                             <NA>
3331                                                             <NA>
3332                                                             <NA>
3333                                              tablet/pill/capsule
3334                                                             <NA>
3335                                                             <NA>
3336                                                             <NA>
3337                                                             <NA>
3338                                                             <NA>
3339                                              tablet/pill/capsule
3340                                                             <NA>
3341                                                             <NA>
3342                                                      application
3343                                                             <NA>
3344                                                             <NA>
3345                                                             <NA>
3346                                                             <NA>
3347                                                             <NA>
3348                                                             <NA>
3349                                                             <NA>
3350                                                             <NA>
3351                                                             <NA>
3352                                                             <NA>
3353                                                             <NA>
3354                                                             <NA>
3355                                                             <NA>
3356                                                             <NA>
3357                                                             <NA>
3358                                                             <NA>
3359                                                  based on weight
3360                                                  based on weight
3361                                                             <NA>
3362                                                             <NA>
3363                                                             <NA>
3364                                                             <NA>
3365                                              tablet/pill/capsule
3366                                                             <NA>
3367                                                             <NA>
3368                                                             <NA>
3369                                                             <NA>
3370                                                             <NA>
3371                                                             <NA>
3372                                                             <NA>
3373                                                             <NA>
3374                                                             <NA>
3375                                                             <NA>
3376                                                      application
3377                                                             <NA>
3378                                                             <NA>
3379                                                             <NA>
3380                                                             <NA>
3381                                                             <NA>
3382                                                             <NA>
3383                                                             <NA>
3384                                                  based on weight
3385                                                             <NA>
3386                                                             <NA>
3387                                                             <NA>
3388                                                             <NA>
3389                                                             <NA>
3390                                                             <NA>
3391                                                             <NA>
3392                                                             <NA>
3393                                                             tube
3394                                                             <NA>
3395                                                             <NA>
3396                                                             <NA>
3397                                                             <NA>
3398                                                             <NA>
3399                                                             <NA>
3400                                                             <NA>
3401                                                             <NA>
3402                                                             <NA>
3403                                                             <NA>
3404                                      based on weight (24-60 lbs)
3405                                      based on weight (26-50 lbs)
3406                                                             tube
3407                                                  based on weight
3408                                                  based on weight
3409                                              tablet/pill/capsule
3410                                                             <NA>
3411                                                           1 pump
3412                                                             <NA>
3413                                                             <NA>
3414                                                             <NA>
3415                                                             <NA>
3416                                              tablet/pill/capsule
3417                                                             <NA>
3418                                                             <NA>
3419                                                             <NA>
3420                                                             <NA>
3421                                                             <NA>
3422                                                             <NA>
3423                                                             <NA>
3424                                                             <NA>
3425                                                  based on weight
3426                                                      as directed
3427                                                             <NA>
3428                                                             <NA>
3429                                                             <NA>
3430                                                             <NA>
3431                                                             <NA>
3432                                                             <NA>
3433                                                             <NA>
3434                                                             <NA>
3435                                                             <NA>
3436                                                             <NA>
3437                                                             <NA>
3438                                                             <NA>
3439                                                             <NA>
3440                                                             <NA>
3441                                                             <NA>
3442                                                             <NA>
3443                                                             <NA>
3444                                                             <NA>
3445                                                             <NA>
3446                                                             <NA>
3447                                                             <NA>
3448                                                             <NA>
3449                                                             <NA>
3450                                                             <NA>
3451                                                             <NA>
3452                                                             <NA>
3453                                                             <NA>
3454                                                                %
3455                                                             <NA>
3456                                                           1 tube
3457                                              tablet/pill/capsule
3458                                                             tube
3459                                                             <NA>
3460                                                             <NA>
3461                                                             <NA>
3462                                                             <NA>
3463                                                             <NA>
3464                                                             <NA>
3465                                                             <NA>
3466                                                             <NA>
3467                                                             <NA>
3468                                                             <NA>
3469                                                             <NA>
3470                                                             <NA>
3471                                                             <NA>
3472                                                             <NA>
3473                                                             <NA>
3474                                                             <NA>
3475                                                             <NA>
3476                                                             <NA>
3477                                                             <NA>
3478                                                             <NA>
3479                                                             <NA>
3480                                                             <NA>
3481                                                             <NA>
3482                                                             <NA>
3483                                                             <NA>
3484                                                             <NA>
3485                                                             <NA>
3486                                                             <NA>
3487                                                  based on weight
3488                                        based on weight (25+ lbs)
3489                                                             <NA>
3490                                                  based on weight
3491                                                  based on weight
3492                                                  based on weight
3493                                                             <NA>
3494                                                             <NA>
3495                                                  based on weight
3496                                                  based on weight
3497                                                  based on weight
3498                                                  based on weight
3499                                                             <NA>
3500                                                             <NA>
3501                                                             <NA>
3502                                                             <NA>
3503                                                             <NA>
3504                                                             <NA>
3505                                                             <NA>
3506                                                             <NA>
3507                                                             <NA>
3508                                                             <NA>
3509                                                             <NA>
3510                                                             <NA>
3511                                                             <NA>
3512                                            1 tablet/pill/capsule
3513                                                  based on weight
3514                                     based on weight (50-100 lbs)
3515                                                             <NA>
3516                                              tablet/pill/capsule
3517                                                             <NA>
3518                                                             <NA>
3519                                                  based on weight
3520                                                             <NA>
3521                                                             <NA>
3522                                                             <NA>
3523                                                             <NA>
3524                                                             <NA>
3525                                                             <NA>
3526                                                             <NA>
3527                                                             <NA>
3528                                                             <NA>
3529                                                             <NA>
3530                                                             pump
3531                                                             <NA>
3532                                                             <NA>
3533                                                             <NA>
3534                                                             <NA>
3535                                                             <NA>
3536                                                             <NA>
3537                                                             <NA>
3538                                                             <NA>
3539                                                             <NA>
3540                                                             <NA>
3541                                                             <NA>
3542                                                             <NA>
3543                                                             <NA>
3544                                                             <NA>
3545                                                             <NA>
3546                                                             <NA>
3547                                                             <NA>
3548                                                             <NA>
3549                                                             <NA>
3550                                                             <NA>
3551                                                             <NA>
3552                                                             <NA>
3553                                                             <NA>
3554                                                             <NA>
3555                                                             <NA>
3556                                                             <NA>
3557                                                             <NA>
3558                                                             <NA>
3559                                                             <NA>
3560                                                             <NA>
3561                                                             <NA>
3562                                                             <NA>
3563                                                             <NA>
3564                                                             <NA>
3565                                                             <NA>
3566                                                             <NA>
3567                                                             <NA>
3568                                                             <NA>
3569                                                             <NA>
3570                                                             <NA>
3571                                                             <NA>
3572                                                             <NA>
3573                                                             <NA>
3574                                                             <NA>
3575                                                             <NA>
3576                                                             <NA>
3577                                                             <NA>
3578                                                             <NA>
3579                                                             <NA>
3580                                                             <NA>
3581                                              tablet/pill/capsule
3582                                                             <NA>
3583                                                             <NA>
3584                                                             <NA>
3585                                                             <NA>
3586                                                             <NA>
3587                                                                %
3588                                                                %
3589                                                             <NA>
3590                                                             <NA>
3591                                                            mg/kg
3592                                                            mg/kg
3593                                                           mcg/kg
3594                                                            mg/kg
3595                                                             <NA>
3596                                                             <NA>
3597                                                             <NA>
3598                                                             <NA>
3599                                                             <NA>
3600                                                             <NA>
3601                                                             <NA>
3602                                                             <NA>
3603                                                             <NA>
3604                                                             <NA>
3605                                                             <NA>
3606                                                             <NA>
3607                                                             <NA>
3608                                                             <NA>
3609                                                             <NA>
3610                                                                %
3611                                                             <NA>
3612                                                             <NA>
3613                                                             <NA>
3614                                                             <NA>
3615                                                             <NA>
3616                                              tablet/pill/capsule
3617                                              tablet/pill/capsule
3618                                                             <NA>
3619                                                             <NA>
3620                                                             <NA>
3621                                                             <NA>
3622                                                     pack/package
3623                                                             <NA>
3624                                                             <NA>
3625                                                             <NA>
3626                                                             <NA>
3627                                                             <NA>
3628                                                             <NA>
3629                                                             <NA>
3630                                                             <NA>
3631                                            1 tablet/pill/capsule
3632                                            1 tablet/pill/capsule
3633                                                             <NA>
3634                                                             <NA>
3635                                                             <NA>
3636                                                             <NA>
3637                                                             <NA>
3638                                                             <NA>
3639                                                             <NA>
3640                                                             <NA>
3641                                                            spray
3642                                                             <NA>
3643                                                             <NA>
3644                                                             <NA>
3645                                                             <NA>
3646                                                             <NA>
3647                                                             <NA>
3648                                                             <NA>
3649                                                             <NA>
3650                                                             <NA>
3651                                                             <NA>
3652                                                             <NA>
3653                                                             <NA>
3654                                                             <NA>
3655                                                             <NA>
3656                                                             <NA>
3657                                                             <NA>
3658                                                             <NA>
3659                                                             <NA>
3660                                                             <NA>
3661                                                             <NA>
3662                                                             <NA>
3663                                              tablet/pill/capsule
3664                                                             <NA>
3665                                                             <NA>
3666                                                            spray
3667                                                     small amount
3668                                              tablet/pill/capsule
3669                                              tablet/pill/capsule
3670                                              tablet/pill/capsule
3671                                                             <NA>
3672                                                             <NA>
3673                                                             <NA>
3674                                                             <NA>
3675                                                            spray
3676                                                             <NA>
3677                                                             <NA>
3678                                              tablet/pill/capsule
3679                                                             <NA>
3680                                                             <NA>
3681                                                             <NA>
3682                                                             <NA>
3683                                                             <NA>
3684                                              tablet/pill/capsule
3685                                                             tube
3686                                                             <NA>
3687                                                             <NA>
3688                                                             <NA>
3689                                                             tube
3690                                                            drops
3691                                                      bottle/vial
3692                                              tablet/pill/capsule
3693                                                            spray
3694                                                             <NA>
3695                                                             <NA>
3696                                                             <NA>
3697                                                             <NA>
3698                                                  based on weight
3699                                                  based on weight
3700                                                             <NA>
3701                                                  based on weight
3702                                                             <NA>
3703                                                             <NA>
3704                                                  based on weight
3705                                              tablet/pill/capsule
3706                                                             <NA>
3707                                                             <NA>
3708                                                             <NA>
3709                                                  based on weight
3710                                                             <NA>
3711                                                             <NA>
3712                                                             <NA>
3713                                                             <NA>
3714                                                             <NA>
3715                                                             <NA>
3716                                                             <NA>
3717                                         based on weight (10 lbs)
3718                                                             <NA>
3719                                            1 tablet/pill/capsule
3720                                                             <NA>
3721                                                             <NA>
3722                                                             <NA>
3723                                                             <NA>
3724                                                             <NA>
3725                                                             <NA>
3726                                              tablet/pill/capsule
3727                                                             <NA>
3728                                                             <NA>
3729                                              tablet/pill/capsule
3730                                                             <NA>
3731                                                             <NA>
3732                                                             <NA>
3733                                                            spray
3734                                                             <NA>
3735                                                             <NA>
3736                                                             <NA>
3737                                                             <NA>
3738                                                             <NA>
3739                                                             <NA>
3740                                                             <NA>
3741                                                             <NA>
3742                                                             <NA>
3743                                                             <NA>
3744                                                             <NA>
3745                                                             <NA>
3746                                                             <NA>
3747                                                             <NA>
3748                                                             <NA>
3749                                                             <NA>
3750                                                             <NA>
3751                                                             <NA>
3752                                                             <NA>
3753                                                             <NA>
3754                                                        as needed
3755                                                             <NA>
3756                                                            spray
3757                                                             <NA>
3758                                                        as needed
3759                                                        as needed
3760                                                             <NA>
3761                                                             <NA>
3762                                                             <NA>
3763                                                             <NA>
3764                                                             <NA>
3765                                                             <NA>
3766                                                             <NA>
3767                                                             <NA>
3768                                                             <NA>
3769                                                             <NA>
3770                                                             <NA>
3771                                                             <NA>
3772                                                             <NA>
3773                                                             <NA>
3774                                                             <NA>
3775                                                             <NA>
3776                                                             <NA>
3777                                                             <NA>
3778                                                             tube
3779                                                             <NA>
3780                                                            mg/ml
3781                                                             <NA>
3782                                                             <NA>
3783                                                             <NA>
3784                                                             <NA>
3785                                                             <NA>
3786                                                             <NA>
3787                                                             <NA>
3788                                                             <NA>
3789                                                             <NA>
3790                                                             <NA>
3791                                                             <NA>
3792                                                             <NA>
3793                                                             <NA>
3794                                                             <NA>
3795                                                             tube
3796                                                             <NA>
3797                                                            spray
3798                                                     small amount
3799                                                             <NA>
3800                                                     small amount
3801                                                             <NA>
3802                                                             <NA>
3803                                                             <NA>
3804                                                             <NA>
3805                                                             <NA>
3806                                                             <NA>
3807                                                             <NA>
3808                                                             <NA>
3809                                                             <NA>
3810                                                             <NA>
3811                                                             <NA>
3812                                                             <NA>
3813                                                             <NA>
3814                                                             <NA>
3815                                                             <NA>
3816                                                             <NA>
3817                                                             <NA>
3818                                                             <NA>
3819                                                             <NA>
3820                                                             <NA>
3821                                                             <NA>
3822                                                             <NA>
3823                                                             <NA>
3824                                                             <NA>
3825                                                             <NA>
3826                                                             <NA>
3827                                                             <NA>
3828                                                             <NA>
3829                                                             <NA>
3830                                                             <NA>
3831                                                             <NA>
3832                                                             <NA>
3833                                                             <NA>
3834                                                             <NA>
3835                                                             <NA>
3836                                                             <NA>
3837                                                             <NA>
3838                                                             <NA>
3839                                                             <NA>
3840                                                      application
3841                                                             <NA>
3842                                                             <NA>
3843                                                             <NA>
3844                                                             <NA>
3845                                                             <NA>
3846                                                             <NA>
3847                                                             <NA>
3848                                                       inch strip
3849                                                             <NA>
3850                                                             pump
3851                                                             <NA>
3852                                                             <NA>
3853                                                             <NA>
3854                                                             <NA>
3855                                                             <NA>
3856                                                             <NA>
3857                                            1 tablet/pill/capsule
3858                                                           1 tube
3859                                            1 tablet/pill/capsule
3860                                              tablet/pill/capsule
3861                                                             <NA>
3862                                                             <NA>
3863                                                             <NA>
3864                                                             <NA>
3865                                                             <NA>
3866                                                             <NA>
3867                                                             <NA>
3868                                                             <NA>
3869                                                             <NA>
3870                                                             <NA>
3871                                                             <NA>
3872                                                             <NA>
3873                                                             <NA>
3874                                                      application
3875                                                             <NA>
3876                                                             <NA>
3877                                                             <NA>
3878                                                             <NA>
3879                                                             <NA>
3880                                                             <NA>
3881                                                             <NA>
3882                                                             <NA>
3883                                                             <NA>
3884                                                  based on weight
3885                                                  based on weight
3886                                                  based on weight
3887                                                             <NA>
3888                                                             <NA>
3889                                                  based on weight
3890                                                  based on weight
3891                                                             <NA>
3892                                                             <NA>
3893                                                             <NA>
3894                                                             <NA>
3895                                                             <NA>
3896                                                  based on weight
3897                                                  based on weight
3898                                                             <NA>
3899                                                             <NA>
3900                                                             <NA>
3901                                                             <NA>
3902                                                  based on weight
3903                                                  based on weight
3904                                                  based on weight
3905                                                             <NA>
3906                                                  based on weight
3907                                                  based on weight
3908                                                             <NA>
3909                                                             <NA>
3910                                                             <NA>
3911                                                  based on weight
3912                                                  based on weight
3913                                                             <NA>
3914                                                             <NA>
3915                                                             <NA>
3916                                                             <NA>
3917                                                             <NA>
3918                                                             <NA>
3919                                                             <NA>
3920                                                             <NA>
3921                                                             <NA>
3922                                                             <NA>
3923                                                             <NA>
3924                                                             <NA>
3925                                                             <NA>
3926                                                             <NA>
3927                                                             <NA>
3928                                                             <NA>
3929                                                             <NA>
3930                                                             <NA>
3931                                                             <NA>
3932                                                             <NA>
3933                                                             <NA>
3934                                                             <NA>
3935                                                             <NA>
3936                                                  based on weight
3937                                              tablet/pill/capsule
3938                                                  based on weight
3939                                                             <NA>
3940                                                             <NA>
3941                                                             <NA>
3942                                                  based on weight
3943                                                  based on weight
3944                                                     small amount
3945                                                             <NA>
3946                                                  based on weight
3947                                                             <NA>
3948                                                             <NA>
3949                                                         inhalant
3950                                                             <NA>
3951                                                             <NA>
3952                                                  based on weight
3953                                                             <NA>
3954                                                             <NA>
3955                                                  based on weight
3956                                                  based on weight
3957                                                             <NA>
3958                                              tablet/pill/capsule
3959                                                             <NA>
3960                                                             tube
3961                                                             <NA>
3962                                                             <NA>
3963                                                             <NA>
3964                                                             <NA>
3965                                                             <NA>
3966                                                             <NA>
3967                                                             <NA>
3968                                                             <NA>
3969                                                             <NA>
3970                                                             <NA>
3971                                                             <NA>
3972                                                  based on weight
3973                                                             <NA>
3974                                                  based on weight
3975                                                             <NA>
3976                                                             <NA>
3977                                                             <NA>
3978                                                             puff
3979                                                             <NA>
3980                                                  based on weight
3981                                                  based on weight
3982                                                             <NA>
3983                                                             <NA>
3984                                                  based on weight
3985                                                  based on weight
3986                                                             <NA>
3987                                                             <NA>
3988                                                             <NA>
3989                                              tablet/pill/capsule
3990                                              tablet/pill/capsule
3991                                                             <NA>
3992                                                             <NA>
3993                                                             <NA>
3994                                                             <NA>
3995                                                             <NA>
3996                                                             <NA>
3997                                                  based on weight
3998                                                             <NA>
3999                                                             <NA>
4000                                                             <NA>
4001                                              tablet/pill/capsule
4002                                                             <NA>
4003                                                             <NA>
4004                                                             <NA>
4005                                                             <NA>
4006                                              tablet/pill/capsule
4007                                                             <NA>
4008                                                             <NA>
4009                                                             <NA>
4010                                                             tube
4011                                                             <NA>
4012                                                             <NA>
4013                                                             <NA>
4014                                                             <NA>
4015                                                             <NA>
4016                                        based on weight (51+ lbs)
4017                                            1 tablet/pill/capsule
4018                                                             <NA>
4019                                                             <NA>
4020                                                             <NA>
4021                                                             <NA>
4022                                                             <NA>
4023                                                             <NA>
4024                                                             <NA>
4025                                                             <NA>
4026                                                             <NA>
4027                                                             <NA>
4028                                                             <NA>
4029                                                             <NA>
4030                                                             <NA>
4031                                              tablet/pill/capsule
4032                                                             <NA>
4033                                                             <NA>
4034                                                             <NA>
4035                                                             <NA>
4036                                                             <NA>
4037                                                             <NA>
4038                                                             <NA>
4039                                                             <NA>
4040                                                             <NA>
4041                                                             <NA>
4042                                                             <NA>
4043                                                             <NA>
4044                                                             <NA>
4045                                              tablet/pill/capsule
4046                                                             <NA>
4047                                                             <NA>
4048                                                             <NA>
4049                                                             <NA>
4050                                                             <NA>
4051                                                             <NA>
4052                                                             <NA>
4053                                                             <NA>
4054                                                             <NA>
4055                                                             <NA>
4056                                                             <NA>
4057                                                             <NA>
4058                                                  based on weight
4059                                                             <NA>
4060                                                             <NA>
4061                                                             <NA>
4062                                                             <NA>
4063                                                             <NA>
4064                                                             <NA>
4065                                                             <NA>
4066                                                  based on weight
4067                                                  based on weight
4068                                                             <NA>
4069                                                             <NA>
4070                                                             <NA>
4071                                                     small amount
4072                                                  based on weight
4073                                     based on weight (50-100 lbs)
4074                                                             <NA>
4075                                                             <NA>
4076                                                             <NA>
4077                                                             <NA>
4078                                                             <NA>
4079                                                             <NA>
4080                                                             <NA>
4081                                                             <NA>
4082                                                             <NA>
4083                                                             <NA>
4084                                                             <NA>
4085                                                             <NA>
4086                                                             <NA>
4087                                                             <NA>
4088                                                         ointment
4089                                                             <NA>
4090                                                             <NA>
4091                                                             <NA>
4092                                                  syringe/pipette
4093                                                             <NA>
4094                                                             <NA>
4095                                              tablet/pill/capsule
4096                                                             <NA>
4097                                                             <NA>
4098                                                             <NA>
4099                                                             <NA>
4100                                                             <NA>
4101                                                             <NA>
4102                                                             <NA>
4103                                                             <NA>
4104                                                             <NA>
4105                                                             <NA>
4106                                                             <NA>
4107                                                             <NA>
4108                                                             <NA>
4109                                                  based on weight
4110                                                             <NA>
4111                                              tablet/pill/capsule
4112                                              tablet/pill/capsule
4113                                                             <NA>
4114                                                             <NA>
4115                                                             <NA>
4116                                                             <NA>
4117                                                      bottle/vial
4118                                              tablet/pill/capsule
4119                                                             <NA>
4120                                              tablet/pill/capsule
4121                                                             <NA>
4122                                                  based on weight
4123                                                             <NA>
4124                                                             <NA>
4125                                                             <NA>
4126                                                             <NA>
4127                                                  based on weight
4128                                                  based on weight
4129                                                             <NA>
4130                                                  based on weight
4131                                                            spray
4132                                                             <NA>
4133                                                             <NA>
4134                                                             <NA>
4135                                                             <NA>
4136                                                             <NA>
4137                                                             <NA>
4138                                                             <NA>
4139                                                             <NA>
4140                                                             <NA>
4141                                                             <NA>
4142                                                             <NA>
4143                                                             <NA>
4144                                                             <NA>
4145                                                             <NA>
4146                                                             <NA>
4147                                                            mg/ml
4148                                                             <NA>
4149                                                             <NA>
4150                                                             <NA>
4151                                                  based on weight
4152                                                             <NA>
4153                                                             <NA>
4154                                                             tube
4155                                                             <NA>
4156                                                             <NA>
4157                                                             <NA>
4158                                                             <NA>
4159                                                             <NA>
4160                                                             <NA>
4161                                                             <NA>
4162                                                             <NA>
4163                                                             <NA>
4164                                                             <NA>
4165                                                             <NA>
4166                                                             <NA>
4167                                                             <NA>
4168                                                             <NA>
4169                                                             <NA>
4170                                                             <NA>
4171                                                             <NA>
4172                                      based on weight (44-88 lbs)
4173                                                             <NA>
4174                                                             <NA>
4175                                                             tube
4176                                              tablet/pill/capsule
4177                                                             <NA>
4178                                                             <NA>
4179                                                             <NA>
4180                                                             <NA>
4181                                                             <NA>
4182                                                             <NA>
4183                                                      as directed
4184                                                             <NA>
4185                                                             <NA>
4186                                                             <NA>
4187                                                             <NA>
4188                                                             <NA>
4189                                              tablet/pill/capsule
4190                                              tablet/pill/capsule
4191                                                  based on weight
4192                                                             <NA>
4193                                                             <NA>
4194                                                             <NA>
4195                                                             <NA>
4196                                                             <NA>
4197                                                             pump
4198                                                  based on weight
4199                                                  based on weight
4200                                                             <NA>
4201                                                             <NA>
4202                                                             <NA>
4203                                                             <NA>
4204                                                      unspecified
4205                                                             <NA>
4206                                                  based on weight
4207                                                             <NA>
4208                                                             <NA>
4209                                              tablet/pill/capsule
4210                                     based on weight (60-120 lbs)
4211                                                             <NA>
4212                                                             <NA>
4213                                                             <NA>
4214                                                             <NA>
4215                                                             <NA>
4216                                                             <NA>
4217                                                             <NA>
4218                                                             <NA>
4219                                                             <NA>
4220                                                             <NA>
4221                                                             <NA>
4222                                                             <NA>
4223                                                             <NA>
4224                                                             <NA>
4225                                                             <NA>
4226                                                             <NA>
4227                                                             <NA>
4228                                                             <NA>
4229                                                        100 mg/ml
4230                                                             <NA>
4231                                                             <NA>
4232                                                             <NA>
4233                                                             <NA>
4234                                                             <NA>
4235                                                             <NA>
4236                                                             <NA>
4237                                            1 tablet/pill/capsule
4238                                                           1 tube
4239                                                             <NA>
4240                                                             <NA>
4241                                                             <NA>
4242                                                             <NA>
4243                                                  based on weight
4244                                                             <NA>
4245                                                             <NA>
4246                                                             <NA>
4247                                                             <NA>
4248                                                             <NA>
4249                                                             <NA>
4250                                                             <NA>
4251                                                             <NA>
4252                                                             <NA>
4253                                                             <NA>
4254                                                             <NA>
4255                                                             <NA>
4256                                                             <NA>
4257                                                             <NA>
4258                                                             <NA>
4259                                                             <NA>
4260                                                             <NA>
4261                                                             <NA>
4262                                                             <NA>
4263                                                             <NA>
4264                                                             <NA>
4265                                                             <NA>
4266                                                             <NA>
4267                                                             <NA>
4268                                                             <NA>
4269                                                             <NA>
4270                                                             <NA>
4271                                                             <NA>
4272                                                             <NA>
4273                                                             <NA>
4274                                                             <NA>
4275                                                             <NA>
4276                                                             <NA>
4277                                                             <NA>
4278                                                             <NA>
4279                                                             <NA>
4280                                                             <NA>
4281                                                             <NA>
4282                                                             <NA>
4283                                                             <NA>
4284                                                             <NA>
4285                                                             <NA>
4286                                                             <NA>
4287                                                             pump
4288                                                             <NA>
4289                                                             <NA>
4290                                                             <NA>
4291                                                             <NA>
4292                                                             <NA>
4293                                                             <NA>
4294                                                             <NA>
4295                                                             <NA>
4296                                                             <NA>
4297                                                             <NA>
4298                                      based on weight (44-88 lbs)
4299                                     based on weight (50-100 lbs)
4300                                                             <NA>
4301                                                             <NA>
4302                                     based on weight (50-100 lbs)
4303                                      based on weight (44-88 lbs)
4304                                                      unspecified
4305                                                      unspecified
4306                                                      unspecified
4307                                              tablet/pill/capsule
4308                                                             <NA>
4309                                                             <NA>
4310                                                             <NA>
4311                                                             <NA>
4312                                                             <NA>
4313                                                  based on weight
4314                                                  based on weight
4315                                                  based on weight
4316                                                             <NA>
4317                                                             <NA>
4318                                                             <NA>
4319                                                             <NA>
4320                                                             <NA>
4321                                                             <NA>
4322                                                             <NA>
4323                                                  based on weight
4324                                                           powder
4325                                                  based on weight
4326                                                           powder
4327                                                             <NA>
4328                                                  based on weight
4329                                                             <NA>
4330                                                             <NA>
4331                                                             <NA>
4332                                                             <NA>
4333                                                             <NA>
4334                                                             <NA>
4335                                              tablet/pill/capsule
4336                                              tablet/pill/capsule
4337                                              tablet/pill/capsule
4338                                              tablet/pill/capsule
4339                                                      application
4340                                              tablet/pill/capsule
4341                                                             <NA>
4342                                                             <NA>
4343                                                             <NA>
4344                                                             <NA>
4345                                                             <NA>
4346                                                             <NA>
4347                                                             <NA>
4348                                                       inch strip
4349                                                  based on weight
4350                                                  based on weight
4351                                                  based on weight
4352                                                         wipe/pad
4353                                                  based on weight
4354                                              tablet/pill/capsule
4355                                                             <NA>
4356                                                             <NA>
4357                                                             <NA>
4358                                                             <NA>
4359                                                  based on weight
4360                                                          1 spray
4361                                                             <NA>
4362                                                             <NA>
4363                                                             <NA>
4364                                                             <NA>
4365                                                             <NA>
4366                                                             <NA>
4367                                                             <NA>
4368                                                             <NA>
4369                                                             <NA>
4370                                                             <NA>
4371                                                             <NA>
4372                                                             <NA>
4373                                                             <NA>
4374                                                             <NA>
4375                                                             <NA>
4376                                                             <NA>
4377                                                             <NA>
4378                                                             <NA>
4379                                                  based on weight
4380                                                             <NA>
4381                                                             <NA>
4382                                                             <NA>
4383                                                             <NA>
4384                                                             <NA>
4385                                              tablet/pill/capsule
4386                                                             <NA>
4387                                                             <NA>
4388                                                             <NA>
4389                                              tablet/pill/capsule
4390                                              tablet/pill/capsule
4391                                                             <NA>
4392                                                             <NA>
4393                                                             <NA>
4394                                                             <NA>
4395                                                             <NA>
4396                                                             <NA>
4397                                                             <NA>
4398                                                             <NA>
4399                                                             <NA>
4400                                                             <NA>
4401                                                             <NA>
4402                                                             <NA>
4403                                                             <NA>
4404                                                             <NA>
4405                                                             <NA>
4406                                                             <NA>
4407                                                             <NA>
4408                                                             <NA>
4409                                                     small amount
4410                                                             <NA>
4411                                                             <NA>
4412                                                             <NA>
4413                                                             <NA>
4414                                                             <NA>
4415                                                             <NA>
4416                                                             <NA>
4417                                                             <NA>
4418                                                             <NA>
4419                                                             <NA>
4420                                                             <NA>
4421                                                             <NA>
4422                                                             <NA>
4423                                                             <NA>
4424                                                             <NA>
4425                                                             <NA>
4426                                              tablet/pill/capsule
4427                                                             tube
4428                                            1 tablet/pill/capsule
4429                                                             <NA>
4430                                                             pump
4431                                                             pump
4432                                                             <NA>
4433                                                             <NA>
4434                                                             <NA>
4435                                                             <NA>
4436                                                             <NA>
4437                                                             <NA>
4438                                              tablet/pill/capsule
4439                                                             <NA>
4440                                                             <NA>
4441                                                             <NA>
4442                                                             <NA>
4443                                                             <NA>
4444                                                             tube
4445                         27 mg milbemycin oxime, 1620 mg spinosad
4446                                                      1 gm/sachet
4447                                              tablet/pill/capsule
4448                                              tablet/pill/capsule
4449                                                             <NA>
4450                                                             <NA>
4451                                                             <NA>
4452                                                             <NA>
4453                                                             <NA>
4454                                                         inhalant
4455                                                             <NA>
4456                                                             <NA>
4457                                                             <NA>
4458                                                             <NA>
4459                                                             <NA>
4460                                                             <NA>
4461                                                             <NA>
4462                                                             <NA>
4463                                                             <NA>
4464                                                             <NA>
4465                                                             <NA>
4466                                                             <NA>
4467                                                             <NA>
4468                                                             <NA>
4469                                                     small amount
4470                                                     small amount
4471                                                         wipe/pad
4472                                                     small amount
4473                                                             <NA>
4474                                                             <NA>
4475                                                             <NA>
4476                                                             <NA>
4477                                                             <NA>
4478                                                             <NA>
4479                                                             <NA>
4480                                                     small amount
4481                                                         wipe/pad
4482                                              tablet/pill/capsule
4483                                              tablet/pill/capsule
4484                                                             <NA>
4485                                                     pack/package
4486                                              tablet/pill/capsule
4487                                              tablet/pill/capsule
4488                                                             <NA>
4489                                                             <NA>
4490                                                             <NA>
4491                                                             <NA>
4492                                                             <NA>
4493                                                             <NA>
4494                                                             <NA>
4495                                                             <NA>
4496                                                             <NA>
4497                                                  based on weight
4498                                                  based on weight
4499                                              tablet/pill/capsule
4500                                              tablet/pill/capsule
4501                                                      as directed
4502                                              tablet/pill/capsule
4503                                                             <NA>
4504                                                      unspecified
4505                                            1 tablet/pill/capsule
4506                                                             <NA>
4507                                                             <NA>
4508                                                             <NA>
4509                                     based on weight (50-100 lbs)
4510                                     based on weight (60-120 lbs)
4511                                              tablet/pill/capsule
4512                                              tablet/pill/capsule
4513                                                             <NA>
4514                                              tablet/pill/capsule
4515                                     based on weight (50-100 lbs)
4516                                     based on weight (60-120 lbs)
4517                                                             <NA>
4518                                              tablet/pill/capsule
4519                                                             <NA>
4520                                                             <NA>
4521                                                             <NA>
4522                                              tablet/pill/capsule
4523                                                             <NA>
4524                                                  based on weight
4525                                                             <NA>
4526                                                             <NA>
4527                                                             <NA>
4528                                                             <NA>
4529                                                             <NA>
4530                                                             <NA>
4531                                              tablet/pill/capsule
4532                                                  based on weight
4533                                                             <NA>
4534                                                              tbs
4535                                                             <NA>
4536                                                  based on weight
4537                                                             <NA>
4538                                                      bottle/vial
4539                                                             <NA>
4540                                                             <NA>
4541                                                             <NA>
4542                                                             <NA>
4543                                                             <NA>
4544                                                             <NA>
4545                                              tablet/pill/capsule
4546                                                             <NA>
4547                                                             <NA>
4548                                                             <NA>
4549                                                             <NA>
4550                                                             <NA>
4551                                                             <NA>
4552                                              tablet/pill/capsule
4553                                                             <NA>
4554                                                             <NA>
4555                                                             <NA>
4556                                                             <NA>
4557                                                             <NA>
4558                                                  based on weight
4559                                                  based on weight
4560                                              tablet/pill/capsule
4561                                                            spray
4562                                              tablet/pill/capsule
4563                                                             <NA>
4564                                                  based on weight
4565                                                  based on weight
4566                                                  based on weight
4567                                                  based on weight
4568                                                      unspecified
4569                                                  based on weight
4570                                                             <NA>
4571                                                             <NA>
4572                                                             <NA>
4573                                                             <NA>
4574                                                             <NA>
4575                                                             <NA>
4576                                                             <NA>
4577                                                             <NA>
4578                                                     small amount
4579                                                             <NA>
4580                                                             <NA>
4581                                                             <NA>
4582                                                             <NA>
4583                                                             <NA>
4584                                                             <NA>
4585                                                             <NA>
4586                                                             <NA>
4587                                                             <NA>
4588                                                             <NA>
4589                                                             <NA>
4590                                                             <NA>
4591                                                             <NA>
4592                                                             <NA>
4593                                                             <NA>
4594                                                             <NA>
4595                                                             <NA>
4596                                                             <NA>
4597                                                      unspecified
4598                                                             <NA>
4599                                                             <NA>
4600                                                             <NA>
4601                                                             <NA>
4602                                                             <NA>
4603                                                             <NA>
4604                                                             <NA>
4605                                                             <NA>
4606                                                             <NA>
4607                                                             <NA>
4608                                                             <NA>
4609                                                             <NA>
4610                                                             <NA>
4611                                                             <NA>
4612                                                             <NA>
4613                                                             <NA>
4614                                                             <NA>
4615                                                             <NA>
4616                                                             <NA>
4617                                                            spray
4618                                                             <NA>
4619                                                             <NA>
4620                                                             <NA>
4621                                                             <NA>
4622                                                             <NA>
4623                                                             <NA>
4624                                                             <NA>
4625                                                             <NA>
4626                                                             <NA>
4627                                                             <NA>
4628                                                             <NA>
4629                                                             <NA>
4630                                                     small amount
4631                                                             <NA>
4632                                                             <NA>
4633                                                             <NA>
4634                                                     pack/package
4635                                                             <NA>
4636                                                             <NA>
4637                                                             <NA>
4638                                                             <NA>
4639                                                             <NA>
4640                                                             <NA>
4641                                                             <NA>
4642                                                             <NA>
4643                                                            0.20%
4644                                                             <NA>
4645                                                             <NA>
4646                                                            0.03%
4647                                                             <NA>
4648                                                             <NA>
4649                                                             <NA>
4650                                                             <NA>
4651                                                         ointment
4652                                                  moderate amount
4653                                                             <NA>
4654                                                             <NA>
4655                                                             <NA>
4656                                                             <NA>
4657                                                             <NA>
4658                                                             <NA>
4659                                                             <NA>
4660                                                             <NA>
4661                                                             <NA>
4662                                                             <NA>
4663                                                             <NA>
4664                                                             <NA>
4665                                                             <NA>
4666                                                             <NA>
4667                                                             <NA>
4668                                                             <NA>
4669                                                             <NA>
4670                                                             <NA>
4671                                                             <NA>
4672                                                             <NA>
4673                                                             <NA>
4674                                                             <NA>
4675                                                             <NA>
4676                                                             <NA>
4677                                                             <NA>
4678                                                             <NA>
4679                                                             <NA>
4680                                                             <NA>
4681                                                             <NA>
4682                                                             <NA>
4683                                                             <NA>
4684                                                             <NA>
4685                                                             <NA>
4686                                                             <NA>
4687                                                             <NA>
4688                                                             <NA>
4689                                                             <NA>
4690                                                             <NA>
4691                                                             <NA>
4692                                                             <NA>
4693                                              tablet/pill/capsule
4694                                              tablet/pill/capsule
4695                                              tablet/pill/capsule
4696                                                             <NA>
4697                                                             <NA>
4698                                                             <NA>
4699                                                             <NA>
4700                                                             <NA>
4701                                                             <NA>
4702                                                             <NA>
4703                                                             <NA>
4704                                                             <NA>
4705                                                             <NA>
4706                                                             <NA>
4707                                                             <NA>
4708                                                             <NA>
4709                                                             <NA>
4710                                                             <NA>
4711                                                             <NA>
4712                                                             <NA>
4713                                                             <NA>
4714                                                             <NA>
4715                                                             <NA>
4716                                                             <NA>
4717                                                             <NA>
4718                                                             <NA>
4719                                                             <NA>
4720                                                             <NA>
4721                                                             <NA>
4722                                                             <NA>
4723                                                             <NA>
4724                                                             <NA>
4725                                                             <NA>
4726                                                  based on weight
4727                                                             <NA>
4728                                                             <NA>
4729                                                             <NA>
4730                                                             <NA>
4731                                                             <NA>
4732                                                             <NA>
4733                                                             <NA>
4734                                                             <NA>
4735                                                             <NA>
4736                                                             <NA>
4737                                                             <NA>
4738                                     based on weight (60-120 lbs)
4739                                                  based on weight
4740                                                             <NA>
4741                                                             <NA>
4742                                                             <NA>
4743                                                             <NA>
4744                                                             <NA>
4745                                                             <NA>
4746                                                             <NA>
4747                                                             <NA>
4748                                                             <NA>
4749                                              tablet/pill/capsule
4750                                                             <NA>
4751                                                             <NA>
4752                                                             <NA>
4753                                                             <NA>
4754                                                             <NA>
4755                                                             <NA>
4756                                              tablet/pill/capsule
4757                                                             <NA>
4758                                                             <NA>
4759                                              tablet/pill/capsule
4760                                              tablet/pill/capsule
4761                                                             <NA>
4762                                                             <NA>
4763                                        based on weight (55+ lbs)
4764                                                             <NA>
4765                                                             <NA>
4766                                                  based on weight
4767                                                             <NA>
4768                                                             <NA>
4769                                                             <NA>
4770                                                               gm
4771                                                             <NA>
4772                                                               gm
4773                                                             <NA>
4774                                                             <NA>
4775                                                             <NA>
4776                                                             <NA>
4777                                                   shampoo/mousse
4778                                                             <NA>
4779                                                             <NA>
4780                                        based on weight (88+ lbs)
4781                                                             <NA>
4782                                              tablet/pill/capsule
4783                                                             <NA>
4784                                                             <NA>
4785                                                             <NA>
4786                                              tablet/pill/capsule
4787                                                             <NA>
4788                                                             <NA>
4789                                                             <NA>
4790                                                             <NA>
4791                                                             <NA>
4792                                                             <NA>
4793                                                             <NA>
4794                                                             <NA>
4795                                                             <NA>
4796                                                             <NA>
4797                                                             <NA>
4798                                                             <NA>
4799                                                             <NA>
4800                                                             <NA>
4801                                                             <NA>
4802                                              tablet/pill/capsule
4803                                                             <NA>
4804                                                             <NA>
4805                                                             <NA>
4806                                     based on weight (60-120 lbs)
4807                                                             <NA>
4808                                                             <NA>
4809                                                             <NA>
4810                                                             <NA>
4811                                                             <NA>
4812                                                             <NA>
4813                                                             <NA>
4814                                                             <NA>
4815                                                             <NA>
4816                                                             <NA>
4817                                                           1 pump
4818                                                             <NA>
4819                                                             <NA>
4820                                                             <NA>
4821                                                             <NA>
4822                                                             <NA>
4823                                                             <NA>
4824                                                             <NA>
4825                                                             <NA>
4826                                                            units
4827                                                             <NA>
4828                                                           powder
4829                                                             <NA>
4830                                                             <NA>
4831                                                             <NA>
4832                                                                %
4833                                                             <NA>
4834                                                             <NA>
4835                                                             <NA>
4836                                                             <NA>
4837                                                             <NA>
4838                                                         wipe/pad
4839                                                             <NA>
4840                                                             <NA>
4841                                                             <NA>
4842                                              tablet/pill/capsule
4843                                                             <NA>
4844                                                             <NA>
4845                                                             <NA>
4846                                                             <NA>
4847                                                             <NA>
4848                                                             <NA>
4849                                                             <NA>
4850                                                   shampoo/mousse
4851                                                             <NA>
4852                                                             <NA>
4853                                                     small amount
4854                                                             <NA>
4855                                                             <NA>
4856                                                             <NA>
4857                                                             <NA>
4858                                                             <NA>
4859                                                             <NA>
4860                                                             <NA>
4861                                                             <NA>
4862                                                             <NA>
4863                                                             <NA>
4864                                                             <NA>
4865                                                             <NA>
4866                                                             <NA>
4867                                                             <NA>
4868                                                             <NA>
4869                                                            scoop
4870                                              tablet/pill/capsule
4871                                                             <NA>
4872                                                             <NA>
4873                                                             <NA>
4874                                                             <NA>
4875                                                             <NA>
4876                                                             <NA>
4877                                                             <NA>
4878                                                             <NA>
4879                                                             <NA>
4880                                                             <NA>
4881                                                       inch strip
4882                                              tablet/pill/capsule
4883                                              tablet/pill/capsule
4884                                                             <NA>
4885                                                             <NA>
4886                                                             <NA>
4887                                                             <NA>
4888                                                             <NA>
4889                                                             <NA>
4890                                                             <NA>
4891                                                             <NA>
4892                                                             <NA>
4893                                                             <NA>
4894                                                             <NA>
4895                                                             <NA>
4896                                                             <NA>
4897                                                             <NA>
4898                                                             <NA>
4899                                                             <NA>
4900                                                             <NA>
4901                                                             <NA>
4902                                                                %
4903                                                             <NA>
4904                                                      combination
4905                                                             <NA>
4906                                                             <NA>
4907                                                                %
4908                                                             <NA>
4909                                                             <NA>
4910                                                           collar
4911                                                             <NA>
4912                                                             <NA>
4913                                                           collar
4914                                                             <NA>
4915                                                             <NA>
4916                                                             <NA>
4917                                                             <NA>
4918                                                             <NA>
4919                                                             <NA>
4920                                                             <NA>
4921                                                             <NA>
4922                                                             <NA>
4923                                                             <NA>
4924                                                             <NA>
4925                                                             <NA>
4926                                                             <NA>
4927                                                             <NA>
4928                                              tablet/pill/capsule
4929                                                             <NA>
4930                                                             <NA>
4931                                                             <NA>
4932                                                             <NA>
4933                                                             <NA>
4934                                                             <NA>
4935                                                  based on weight
4936                                                             <NA>
4937                                                             <NA>
4938                                                             <NA>
4939                                                             <NA>
4940                                                             <NA>
4941                                                             <NA>
4942                                                             <NA>
4943                                                             <NA>
4944                                                             <NA>
4945                                                             <NA>
4946                                                             <NA>
4947                                                             <NA>
4948                                                             <NA>
4949                                                             <NA>
4950                                                             <NA>
4951                                                             <NA>
4952                                                             <NA>
4953                                                             <NA>
4954                                                             <NA>
4955                                                             <NA>
4956                                                     small amount
4957                                                             <NA>
4958                                                             <NA>
4959                                                             <NA>
4960                                                     small amount
4961                                                             <NA>
4962                                                             <NA>
4963                                                             <NA>
4964                                                             <NA>
4965                                                             <NA>
4966                                                             <NA>
4967                                                             <NA>
4968                                                             <NA>
4969                                                             <NA>
4970                                                             <NA>
4971                                                             <NA>
4972                                                             <NA>
4973                                                             <NA>
4974                                                             <NA>
4975                                                             <NA>
4976                                                             <NA>
4977                                                             <NA>
4978                                                             <NA>
4979                                                             <NA>
4980                                                     pack/package
4981                                                             <NA>
4982                                                             <NA>
4983                                                             <NA>
4984                                                             <NA>
4985                                                             <NA>
4986                                                             <NA>
4987                                                             <NA>
4988                                                             <NA>
4989                                                             <NA>
4990                                                             <NA>
4991                                                             <NA>
4992                                                             <NA>
4993                                                             <NA>
4994                                                             <NA>
4995                                                             <NA>
4996                                                      unspecified
4997                                                             <NA>
4998                                                             <NA>
4999                                                             <NA>
5000                                                             <NA>
5001                                                             <NA>
5002                                                             <NA>
5003                                                             <NA>
5004                                                             <NA>
5005                                                             <NA>
5006                                                             <NA>
5007                                                             <NA>
5008                                                             <NA>
5009                                                             <NA>
5010                                                             <NA>
5011                                                             <NA>
5012                                                             <NA>
5013                                                             <NA>
5014                                                             <NA>
5015                                                             <NA>
5016                                                             <NA>
5017                                                             <NA>
5018                                                             <NA>
5019                                                             <NA>
5020                                                             <NA>
5021                                                             <NA>
5022                                                             <NA>
5023                                                             <NA>
5024                                                             <NA>
5025                                                             <NA>
5026                                                  based on weight
5027                                                             <NA>
5028                                               10:1 ket:ace ratio
5029                                                             <NA>
5030                                                             <NA>
5031                                                             <NA>
5032                                                             <NA>
5033                                                             <NA>
5034                                                             <NA>
5035                                                             <NA>
5036                                                             <NA>
5037                                                             <NA>
5038                                                             <NA>
5039                                                             <NA>
5040                                                             <NA>
5041                                                             <NA>
5042                                                             <NA>
5043                                                             <NA>
5044                                                             <NA>
5045                                                             <NA>
5046                                                             <NA>
5047                                                             <NA>
5048                                                             <NA>
5049                                                             <NA>
5050                                                             <NA>
5051                                                             <NA>
5052                                                             <NA>
5053                                                             <NA>
5054                                                             <NA>
5055                                                             <NA>
5056                                                             <NA>
5057                                                             <NA>
5058                                                             <NA>
5059                                                             <NA>
5060                                                             <NA>
5061                                                             <NA>
5062                                                             <NA>
5063                                              tablet/pill/capsule
5064                                              tablet/pill/capsule
5065                                                             <NA>
5066                                                  based on weight
5067                                                  based on weight
5068                                                             <NA>
5069                                              tablet/pill/capsule
5070                                                             <NA>
5071                                                             <NA>
5072                                                             <NA>
5073                                                             <NA>
5074                                                             <NA>
5075                                                             <NA>
5076                                                             <NA>
5077                                                             <NA>
5078                                                  based on weight
5079                                                             <NA>
5080                                                             <NA>
5081                                                             <NA>
5082                                                             <NA>
5083                                                             <NA>
5084                                                   shampoo/mousse
5085                                                             <NA>
5086                                                             <NA>
5087                                                             <NA>
5088                                                             <NA>
5089                                                             <NA>
5090                                                             <NA>
5091                                                             <NA>
5092                                                             <NA>
5093                                                             <NA>
5094                                                             <NA>
5095                                                             <NA>
5096                                                             <NA>
5097                                                             <NA>
5098                                                             <NA>
5099                                                             <NA>
5100                                                             <NA>
5101                                                             <NA>
5102                                                             <NA>
5103                                                             <NA>
5104                                                             <NA>
5105                                                             <NA>
5106                                                             <NA>
5107                                                             <NA>
5108                                                             <NA>
5109                                                            spray
5110                                                             <NA>
5111                                                             <NA>
5112                                                             <NA>
5113                                                             <NA>
5114                                                             <NA>
5115                                                             <NA>
5116                                                             <NA>
5117                                                             <NA>
5118                                              tablet/pill/capsule
5119                                              tablet/pill/capsule
5120                                                             <NA>
5121                                                             <NA>
5122                                                             <NA>
5123                                                             <NA>
5124                                                             <NA>
5125                                                             <NA>
5126                                                             <NA>
5127                                                      unspecified
5128                                                             <NA>
5129                                                             <NA>
5130                                              tablet/pill/capsule
5131                                                             <NA>
5132                                                             <NA>
5133                                                             <NA>
5134                                                             <NA>
5135                                                             <NA>
5136                                                             <NA>
5137                                                             <NA>
5138                                                             <NA>
5139                                                             <NA>
5140                                                             <NA>
5141                                              tablet/pill/capsule
5142                                                             <NA>
5143                                              tablet/pill/capsule
5144                                                             <NA>
5145                                                             <NA>
5146                                                             <NA>
5147                                                             <NA>
5148                                                             <NA>
5149                                                             <NA>
5150                                                  based on weight
5151                                                             <NA>
5152                                                             <NA>
5153                                                             <NA>
5154                                                             <NA>
5155                                                             <NA>
5156                                                             <NA>
5157                                                             <NA>
5158                                                             <NA>
5159                                                             <NA>
5160                                                             <NA>
5161                                                             <NA>
5162                                                             <NA>
5163                                                             <NA>
5164                                                             <NA>
5165                                                             <NA>
5166                                                             <NA>
5167                                                             <NA>
5168                                                             <NA>
5169                                                             <NA>
5170                                                             <NA>
5171                                                             <NA>
5172                                                             <NA>
5173                                              tablet/pill/capsule
5174                                              tablet/pill/capsule
5175                                                             <NA>
5176                                                             <NA>
5177                                                             <NA>
5178                                                             <NA>
5179                                                             <NA>
5180                                                             <NA>
5181                                                             <NA>
5182                                                             <NA>
5183                                                             <NA>
5184                                                             <NA>
5185                                                             <NA>
5186                                                             <NA>
5187                                                             <NA>
5188                                              tablet/pill/capsule
5189                                                  based on weight
5190                                              tablet/pill/capsule
5191                                                             <NA>
5192                                                             <NA>
5193                                                             <NA>
5194                                                             <NA>
5195                                                  based on weight
5196                                                             <NA>
5197                                                             <NA>
5198                                                             <NA>
5199                                                             <NA>
5200                                                      unspecified
5201                                                             <NA>
5202                                                             <NA>
5203                                              tablet/pill/capsule
5204                                              tablet/pill/capsule
5205                                                             <NA>
5206                                     based on weight (50-100 lbs)
5207                                     based on weight (50-100 lbs)
5208                                                             <NA>
5209                                                             <NA>
5210                                                  moderate amount
5211                                                  moderate amount
5212                                                            spray
5213                                                  moderate amount
5214                                                  based on weight
5215                                                             <NA>
5216                                                             <NA>
5217                                                             <NA>
5218                                                             <NA>
5219                                                             <NA>
5220                                                            spray
5221                                                            spray
5222                                                  based on weight
5223                                                  based on weight
5224                                                             <NA>
5225                                              tablet/pill/capsule
5226                                                             <NA>
5227                                                             <NA>
5228                                                            spray
5229                                                     small amount
5230                                                             <NA>
5231                                              tablet/pill/capsule
5232                                                             <NA>
5233                                                             <NA>
5234                                         2 tablets/pills/capsules
5235                                                  based on weight
5236                                                             <NA>
5237                                                             <NA>
5238                                                             <NA>
5239                                                             <NA>
5240                                                             <NA>
5241                                                             <NA>
5242                                                             <NA>
5243                                                  based on weight
5244                                                  based on weight
5245                                                             <NA>
5246                                                             <NA>
5247                                                  based on weight
5248                                                  based on weight
5249                                                             <NA>
5250                                                             pump
5251                                                             <NA>
5252                                                             <NA>
5253                                                  based on weight
5254                                                             <NA>
5255                                                  based on weight
5256                                                  based on weight
5257                                                  based on weight
5258                                              tablet/pill/capsule
5259                                                             <NA>
5260                                                             <NA>
5261                                                  based on weight
5262                                              tablet/pill/capsule
5263                                                             <NA>
5264                                                  based on weight
5265                                                  based on weight
5266                                                             <NA>
5267                                                             <NA>
5268                                                             pump
5269                                                             <NA>
5270                                                  based on weight
5271                                                  based on weight
5272                                                             <NA>
5273                                              tablet/pill/capsule
5274                                                             <NA>
5275                                                             <NA>
5276                                                               ml
5277                                                             <NA>
5278                                                             <NA>
5279                                                             <NA>
5280                                                             <NA>
5281                                                             <NA>
5282                                                             <NA>
5283                                                             <NA>
5284                                                             <NA>
5285                                                             pump
5286                                                             <NA>
5287                                                             <NA>
5288                                                             <NA>
5289                                                             dose
5290                                                             <NA>
5291                                                             <NA>
5292                                                             <NA>
5293                                                             <NA>
5294                                                             <NA>
5295                                                             <NA>
5296                                                             <NA>
5297                                                             <NA>
5298                                                             <NA>
5299                                                             <NA>
5300                                                             <NA>
5301                                                             <NA>
5302                                                             <NA>
5303                                                             <NA>
5304                                                             <NA>
5305                                                             <NA>
5306                                                             <NA>
5307                                                             <NA>
5308                                                             <NA>
5309                                                             <NA>
5310                                                             <NA>
5311                                                             <NA>
5312                                                             <NA>
5313                                                             <NA>
5314                                                             <NA>
5315                                                             <NA>
5316                                                             <NA>
5317                                                             <NA>
5318                                                             <NA>
5319                                                             <NA>
5320                                                             <NA>
5321                                                             <NA>
5322                                                             <NA>
5323                                                             <NA>
5324                                                             <NA>
5325                                                             <NA>
5326                                                             <NA>
5327                                                             <NA>
5328                                                             <NA>
5329                                                             <NA>
5330                                                             <NA>
5331                                                             <NA>
5332                                                  based on weight
5333                                                      unspecified
5334                                              tablet/pill/capsule
5335                                                           collar
5336                                              tablet/pill/capsule
5337                                                             <NA>
5338                                                             <NA>
5339                                                             <NA>
5340                                                          monthly
5341                                                             pump
5342                                                             <NA>
5343                                                             <NA>
5344                                                  based on weight
5345                                                             <NA>
5346                                                             <NA>
5347                                                             <NA>
5348                                                             <NA>
5349                                                             <NA>
5350                                                             <NA>
5351                                                             <NA>
5352                                                             <NA>
5353                                                             <NA>
5354                                                           collar
5355                                                             <NA>
5356                                                             <NA>
5357                                                             <NA>
5358                                                             <NA>
5359                                                             <NA>
5360                                                             <NA>
5361                                                             <NA>
5362                                              tablet/pill/capsule
5363                                                             <NA>
5364                                                             <NA>
5365                                                             <NA>
5366                                                             <NA>
5367                                                             <NA>
5368                                                             <NA>
5369                                              tablet/pill/capsule
5370                                                             <NA>
5371                                                             <NA>
5372                                                             <NA>
5373                                                             <NA>
5374                                                             <NA>
5375                                                             <NA>
5376                                                             <NA>
5377                                                      combination
5378                                                                %
5379                                                  based on weight
5380                                                  based on weight
5381                                                             <NA>
5382                                                  based on weight
5383                                                             <NA>
5384                                                             <NA>
5385                                                             <NA>
5386                                                             <NA>
5387                                                             <NA>
5388                                                             <NA>
5389                                                             <NA>
5390                                                             <NA>
5391                                            1 tablet/pill/capsule
5392                                            1 tablet/pill/capsule
5393                                                             <NA>
5394                                                             <NA>
5395                                                             <NA>
5396                                                             <NA>
5397                                                             <NA>
5398                                                             <NA>
5399                                                             <NA>
5400                                                             <NA>
5401                                              tablet/pill/capsule
5402                                                             <NA>
5403                                              tablet/pill/capsule
5404                                                             <NA>
5405                                                             <NA>
5406                                                             <NA>
5407                                                             <NA>
5408                                                             <NA>
5409                                                             <NA>
5410                                                             <NA>
5411                                                             <NA>
5412                                                             <NA>
5413                                                             <NA>
5414                                                             <NA>
5415                                                             <NA>
5416                                                             <NA>
5417                                                             <NA>
5418                                                             <NA>
5419                                                             <NA>
5420                                                             <NA>
5421                                                             <NA>
5422                                                             <NA>
5423                                                             <NA>
5424                                                           3.5 gm
5425                                                             <NA>
5426                                                             <NA>
5427                                                             <NA>
5428                                                      bottle/vial
5429                                                             <NA>
5430                                                             <NA>
5431                                                             <NA>
5432                                                             <NA>
5433                                                             <NA>
5434                                                             <NA>
5435                                                             <NA>
5436                                                             <NA>
5437                                                             <NA>
5438                                                             <NA>
5439                                                             <NA>
5440                                                             <NA>
5441                                                             <NA>
5442                                                             <NA>
5443                                                             <NA>
5444                                                             <NA>
5445                                                             <NA>
5446                                                             <NA>
5447                                                             <NA>
5448                                                             <NA>
5449                                                             <NA>
5450                                                             <NA>
5451                                                             <NA>
5452                                                             <NA>
5453                                                             <NA>
5454                                                             <NA>
5455                                                             <NA>
5456                                                             <NA>
5457                                                             <NA>
5458                                                             <NA>
5459                                                             <NA>
5460                                                             <NA>
5461                                                             <NA>
5462                                                             <NA>
5463                                                             <NA>
5464                                                             <NA>
5465                                                             <NA>
5466                                                             <NA>
5467                                                             <NA>
5468                                                             <NA>
5469                                                             <NA>
5470                                                             <NA>
5471                                                             <NA>
5472                                                             <NA>
5473                                                             <NA>
5474                                                             <NA>
5475                                                             <NA>
5476                                                             <NA>
5477                                                             <NA>
5478                                                             <NA>
5479                                                             <NA>
5480                                                             <NA>
5481                                                             <NA>
5482                                                             <NA>
5483                                              tablet/pill/capsule
5484                                                             <NA>
5485                                                             <NA>
5486                                                             <NA>
5487                                              tablet/pill/capsule
5488                                                             <NA>
5489                                                             <NA>
5490                                                             <NA>
5491                                                             <NA>
5492                                              tablet/pill/capsule
5493                                              tablet/pill/capsule
5494                                                             <NA>
5495                                                             <NA>
5496                                                             <NA>
5497                                              tablet/pill/capsule
5498                                              tablet/pill/capsule
5499                                                             dose
5500                                              tablet/pill/capsule
5501                                                     small amount
5502                                                      bottle/vial
5503                                                             <NA>
5504                                                             <NA>
5505                                                        mcg/kg/hr
5506                                                             <NA>
5507                                              tablet/pill/capsule
5508                                              tablet/pill/capsule
5509                                                  based on weight
5510                                              tablet/pill/capsule
5511                                                  based on weight
5512                                                             <NA>
5513                                              tablet/pill/capsule
5514                                                             <NA>
5515                                              tablet/pill/capsule
5516                                              tablet/pill/capsule
5517                                                             <NA>
5518                                                             <NA>
5519                                                             <NA>
5520                                                             <NA>
5521                                                             <NA>
5522                                                             <NA>
5523                                                             <NA>
5524                                                             <NA>
5525                                                             <NA>
5526                                                             <NA>
5527                                                     small amount
5528                                                      application
5529                                                      application
5530                                                             <NA>
5531                                                             <NA>
5532                                                             <NA>
5533                                                     small amount
5534                                     based on weight (50-100 lbs)
5535                                                             <NA>
5536                                                             <NA>
5537                                                            spray
5538                                                             <NA>
5539                                                             <NA>
5540                                                             <NA>
5541                                              tablet/pill/capsule
5542                                                  syringe/pipette
5543                                                             <NA>
5544                                                             <NA>
5545                                            1 tablet/pill/capsule
5546                                         2 tablets/pills/capsules
5547                                                             <NA>
5548                                                             <NA>
5549                                                             <NA>
5550                                                             <NA>
5551                                                             <NA>
5552                                                             <NA>
5553                                                             <NA>
5554                                                             <NA>
5555                                                             <NA>
5556                                                   1 pack/package
5557                                              tablet/pill/capsule
5558                                                             <NA>
5559                                                             <NA>
5560                                                             <NA>
5561                                                             <NA>
5562                                              tablet/pill/capsule
5563                                                             <NA>
5564                                              tablet/pill/capsule
5565                                                             <NA>
5566                                                           collar
5567                                                           collar
5568                                                  based on weight
5569                                                             <NA>
5570                                                             <NA>
5571                                                  based on weight
5572                                                           collar
5573                                                             <NA>
5574                                                  based on weight
5575                                                           collar
5576                                              tablet/pill/capsule
5577                                                           collar
5578                                              tablet/pill/capsule
5579                                                             <NA>
5580                                                             <NA>
5581                                                             <NA>
5582                                                             <NA>
5583                                                             <NA>
5584                                                     pack/package
5585                                                             <NA>
5586                                                             <NA>
5587                                                             <NA>
5588                                                             <NA>
5589                                                             <NA>
5590                                                             <NA>
5591                                                             <NA>
5592                                                             <NA>
5593                                                             <NA>
5594                                                             <NA>
5595                                     based on weight (50-100 lbs)
5596                                                             <NA>
5597                                                             <NA>
5598                                                             <NA>
5599                                                             <NA>
5600                                                  based on weight
5601                                                  based on weight
5602                                                  based on weight
5603                                                             <NA>
5604                                                             <NA>
5605                                                             <NA>
5606                                                             <NA>
5607                                                             <NA>
5608                                                             <NA>
5609                                                             <NA>
5610                                                             <NA>
5611                                              tablet/pill/capsule
5612                                                             <NA>
5613                                                             <NA>
5614                                                             <NA>
5615                                                             <NA>
5616                                                             <NA>
5617                                                             <NA>
5618                                                             <NA>
5619                                                             <NA>
5620                                                             <NA>
5621                                                             <NA>
5622                                                             <NA>
5623                                                             <NA>
5624                                                             <NA>
5625                                                             <NA>
5626                                                  based on weight
5627                                                             <NA>
5628                                                             <NA>
5629                                                             <NA>
5630                                                             <NA>
5631                                                  based on weight
5632                                                  based on weight
5633                                                             <NA>
5634                                                             <NA>
5635                                                             <NA>
5636                                                             <NA>
5637                                                             <NA>
5638                                                             <NA>
5639                                                             <NA>
5640                                                             <NA>
5641                                                             <NA>
5642                                                             <NA>
5643                                                             <NA>
5644                                                             <NA>
5645                                                             <NA>
5646                                                             <NA>
5647                                                             <NA>
5648                                                             <NA>
5649                                                      billion cfu
5650                                                             <NA>
5651                                                             <NA>
5652                                                             <NA>
5653                                                             <NA>
5654                                                             <NA>
5655                                                             <NA>
5656                                                             <NA>
5657                                                             <NA>
5658                                                             <NA>
5659                                                             <NA>
5660                                                             <NA>
5661                                                             <NA>
5662                                                             <NA>
5663                                                             <NA>
5664                                                             <NA>
5665                                                             <NA>
5666                                                             <NA>
5667                                                             <NA>
5668                                                             <NA>
5669                                              tablet/pill/capsule
5670                                              tablet/pill/capsule
5671                                              tablet/pill/capsule
5672                                              tablet/pill/capsule
5673                                                             <NA>
5674                                                             <NA>
5675                                                             <NA>
5676                                              tablet/pill/capsule
5677                                              tablet/pill/capsule
5678                                                     pack/package
5679                                              tablet/pill/capsule
5680                                              tablet/pill/capsule
5681                                              tablet/pill/capsule
5682                                              tablet/pill/capsule
5683                                                             <NA>
5684                                                             <NA>
5685                                                             <NA>
5686                                                             <NA>
5687                                                             <NA>
5688                                                     pack/package
5689                                              tablet/pill/capsule
5690                                                             <NA>
5691                                                             <NA>
5692                                                             <NA>
5693                                                             <NA>
5694                                                             <NA>
5695                                                             <NA>
5696                                                             <NA>
5697                                                             <NA>
5698                                                             <NA>
5699                                                             <NA>
5700                                                             <NA>
5701                                                             <NA>
5702                                                             <NA>
5703                                                             <NA>
5704                                                             <NA>
5705                                                             <NA>
5706                                                             <NA>
5707                                                             <NA>
5708                                                             <NA>
5709                                                             <NA>
5710                                                             <NA>
5711                                                             <NA>
5712                                                             <NA>
5713                                                             <NA>
5714                                                             <NA>
5715                                                             <NA>
5716                                                             <NA>
5717                                                             <NA>
5718                                                             <NA>
5719                                                             <NA>
5720                                                             <NA>
5721                                                             <NA>
5722                                                             <NA>
5723                                                             <NA>
5724                                                             <NA>
5725                                                             <NA>
5726                                                             <NA>
5727                                                             <NA>
5728                                                             <NA>
5729                                                             <NA>
5730                                                             <NA>
5731                                                             <NA>
5732                                                             <NA>
5733                                                             <NA>
5734                                                             <NA>
5735                                                             <NA>
5736                                                             <NA>
5737                                                             <NA>
5738                                                             <NA>
5739                                                             <NA>
5740                                                             <NA>
5741                                                             <NA>
5742                                                             <NA>
5743                                                             <NA>
5744                                                             <NA>
5745                                                             <NA>
5746                                                             <NA>
5747                                              tablet/pill/capsule
5748                                              tablet/pill/capsule
5749                                                             <NA>
5750                                                             <NA>
5751                                                             <NA>
5752                                                             <NA>
5753                                                             <NA>
5754                                                             <NA>
5755                                                             <NA>
5756                                                             <NA>
5757                                                             <NA>
5758                                                             <NA>
5759                                                             <NA>
5760                                                  based on weight
5761                                                             <NA>
5762                                                             <NA>
5763                                                             <NA>
5764                                                             <NA>
5765                                                             <NA>
5766                                                             <NA>
5767                                                             <NA>
5768                                     based on weight (50-100 lbs)
5769                                                             <NA>
5770                                                             <NA>
5771                                                             <NA>
5772                                                             <NA>
5773                                                             <NA>
5774                                                             <NA>
5775                                                             <NA>
5776                                                             <NA>
5777                                                      unspecified
5778                                                             <NA>
5779                                                             <NA>
5780                                                             <NA>
5781                                                             <NA>
5782                                                             <NA>
5783                                                             <NA>
5784                                                             <NA>
5785                                                             <NA>
5786                                                             <NA>
5787                                                             <NA>
5788                                                             <NA>
5789                                                             <NA>
5790                                                             <NA>
5791                                                             <NA>
5792                                                             <NA>
5793                                                  based on weight
5794                                                  based on weight
5795                                                             <NA>
5796                                                             <NA>
5797                                                             <NA>
5798                                                             <NA>
5799                                                             <NA>
5800                                                             <NA>
5801                                                             <NA>
5802                                                             <NA>
5803                                                             <NA>
5804                                                             <NA>
5805                                                             <NA>
5806                                                             <NA>
5807                                                             <NA>
5808                                                             <NA>
5809                                              tablet/pill/capsule
5810                                                             tube
5811                                                             <NA>
5812                                                             <NA>
5813                                                     small amount
5814                                                             <NA>
5815                                                             <NA>
5816                                                             <NA>
5817                                                             <NA>
5818                                                             <NA>
5819                                                             <NA>
5820                                                             <NA>
5821                                                             <NA>
5822                                                             <NA>
5823                                                             <NA>
5824                                                             <NA>
5825                                                             <NA>
5826                                                             <NA>
5827                                                             <NA>
5828                                                             <NA>
5829                                              tablet/pill/capsule
5830                                              tablet/pill/capsule
5831                                                             <NA>
5832                                                             <NA>
5833                                                             <NA>
5834                                                             <NA>
5835                                                             <NA>
5836                                                             <NA>
5837                                                             <NA>
5838                                                             <NA>
5839                                                             <NA>
5840                                                             <NA>
5841                                                             <NA>
5842                                                             <NA>
5843                                                             <NA>
5844                                                             <NA>
5845                                                             <NA>
5846                                                             <NA>
5847                                                             <NA>
5848                                                             <NA>
5849                                                             <NA>
5850                                                            l/min
5851                                                             <NA>
5852                                                                %
5853                                                             <NA>
5854                                                             <NA>
5855                                                             <NA>
5856                                                             <NA>
5857                                                             <NA>
5858                                                       inch strip
5859                                                             <NA>
5860                                                             <NA>
5861                                                             <NA>
5862                                                                %
5863                                                             <NA>
5864                                                             <NA>
5865                                                             <NA>
5866                                                             <NA>
5867                                                                %
5868                                                             <NA>
5869                                                             <NA>
5870                                                             <NA>
5871                                                       inch strip
5872                                                  based on weight
5873                                                  based on weight
5874                                                             <NA>
5875                                                             <NA>
5876                                                             <NA>
5877                                                  based on weight
5878                                                             <NA>
5879                                                             <NA>
5880                                                             <NA>
5881                                                             <NA>
5882                                                             <NA>
5883                                                             <NA>
5884                                                      unspecified
5885                                                             <NA>
5886                                                             <NA>
5887                                                             <NA>
5888                                                             <NA>
5889                                                             <NA>
5890                                                  based on weight
5891                                                             <NA>
5892                                                             <NA>
5893                                                             <NA>
5894                                                             <NA>
5895                                                             <NA>
5896                                                  based on weight
5897                                                             <NA>
5898                                                             <NA>
5899                                                             <NA>
5900                                                             <NA>
5901                                                             <NA>
5902                                                             <NA>
5903                                                             <NA>
5904                                                             <NA>
5905                                                             <NA>
5906                                                             <NA>
5907                                                             <NA>
5908                                                             <NA>
5909                                                             <NA>
5910                                                             <NA>
5911                                                             <NA>
5912                                                             <NA>
5913                                              tablet/pill/capsule
5914                                                             <NA>
5915                                                             <NA>
5916                                                             <NA>
5917                                                             <NA>
5918                                                             <NA>
5919                                                             <NA>
5920                                                  based on weight
5921                                                             <NA>
5922                                                             <NA>
5923                                                             <NA>
5924                                                             <NA>
5925                                                  based on weight
5926                                                             <NA>
5927                                                             <NA>
5928                                                  based on weight
5929                                                             <NA>
5930                                                  based on weight
5931                                                  based on weight
5932                                                             <NA>
5933                                                  based on weight
5934                                                  based on weight
5935                                                             <NA>
5936                                                  based on weight
5937                                                  based on weight
5938                                                             <NA>
5939                                                             <NA>
5940                                                             <NA>
5941                                                  based on weight
5942                                                  based on weight
5943                                                            gm/ml
5944                                                             <NA>
5945                                                         wipe/pad
5946                                                             <NA>
5947                                                             <NA>
5948                                                             <NA>
5949                                                             <NA>
5950                                                             <NA>
5951                                                             <NA>
5952                                                             <NA>
5953                                                             <NA>
5954                                                             <NA>
5955                                                             <NA>
5956                                                             <NA>
5957                                                             <NA>
5958                                                             <NA>
5959                                                             <NA>
5960                                                             <NA>
5961                                                             <NA>
5962                                                             <NA>
5963                                                  based on weight
5964                                                  based on weight
5965                                                             <NA>
5966                                                             <NA>
5967                                                             <NA>
5968                                                             <NA>
5969                                                             <NA>
5970                                                             <NA>
5971                                                             <NA>
5972                                                             <NA>
5973                                                             <NA>
5974                                                             <NA>
5975                                                             <NA>
5976                                                             <NA>
5977                                                             <NA>
5978                                                             <NA>
5979                                                             <NA>
5980                                                  based on weight
5981                                              tablet/pill/capsule
5982                                                             <NA>
5983                                                             <NA>
5984                                                             <NA>
5985                                                  based on weight
5986                                                             <NA>
5987                                                             <NA>
5988                                                             <NA>
5989                                                             <NA>
5990                                                             <NA>
5991                                                  syringe/pipette
5992                                              tablet/pill/capsule
5993                                                             <NA>
5994                                                             <NA>
5995                                                             <NA>
5996                                              tablet/pill/capsule
5997                                              tablet/pill/capsule
5998                                              tablet/pill/capsule
5999                                                             <NA>
6000                                                             <NA>
6001                                                             <NA>
6002                                                                %
6003                                                             <NA>
6004                                                             <NA>
6005                                                             <NA>
6006                                                             <NA>
6007                                                             <NA>
6008                                                             <NA>
6009                                                             <NA>
6010                                                             <NA>
6011                                                             tube
6012                                                  based on weight
6013                                                             <NA>
6014                                                             <NA>
6015                                                             <NA>
6016                                                             <NA>
6017                                                             <NA>
6018                                                             <NA>
6019                                                             <NA>
6020                                                             <NA>
6021                                                             <NA>
6022                                                             <NA>
6023                                                             <NA>
6024                                                             <NA>
6025                                                             <NA>
6026                                                             <NA>
6027                                                             <NA>
6028                                                             <NA>
6029                                                             <NA>
6030                                                             <NA>
6031                                                             <NA>
6032                                                             <NA>
6033                                                             <NA>
6034                                                             <NA>
6035                                                             <NA>
6036                                                             <NA>
6037                                                             <NA>
6038                                              tablet/pill/capsule
6039                                     based on weight (50-100 lbs)
6040                                                             <NA>
6041                                                             <NA>
6042                                                             <NA>
6043                                                             <NA>
6044                                                             <NA>
6045                                                             <NA>
6046                                                            spray
6047                                                             <NA>
6048                                                             <NA>
6049                                                             <NA>
6050                                                             <NA>
6051                                                             <NA>
6052                                                             <NA>
6053                                                             <NA>
6054                                                             <NA>
6055                                                             <NA>
6056                                                             <NA>
6057                                                             <NA>
6058                                                             <NA>
6059                                                  based on weight
6060                                                  based on weight
6061                                                  based on weight
6062                                                             <NA>
6063                                                      as directed
6064                                                             <NA>
6065                                                             <NA>
6066                                                             <NA>
6067                                                             <NA>
6068                                                             <NA>
6069                                                      application
6070                                                             <NA>
6071                                     based on weight (50-100 lbs)
6072                                                      unspecified
6073                                                          monthly
6074                                                            spray
6075                                                             <NA>
6076                                                           collar
6077                                                             <NA>
6078                                                           collar
6079                                                             <NA>
6080                                              tablet/pill/capsule
6081                                                             <NA>
6082                                                             <NA>
6083                                                             <NA>
6084                                                             <NA>
6085                                                             <NA>
6086                                                             <NA>
6087                                                             <NA>
6088                                                  0.25 inch strip
6089                                                             <NA>
6090                                                  0.25 inch strip
6091                                                             <NA>
6092                                                             <NA>
6093                                     based on weight (50-100 lbs)
6094                                                             <NA>
6095                                                            spray
6096                                                             <NA>
6097                                                             <NA>
6098                                                             <NA>
6099                                                             <NA>
6100                                                             <NA>
6101                                                             <NA>
6102                                                             <NA>
6103                                                                %
6104                                                             <NA>
6105                                                             <NA>
6106                                                             <NA>
6107                                                             <NA>
6108                                                             <NA>
6109                                                             <NA>
6110                                                             <NA>
6111                                                             <NA>
6112                                                             <NA>
6113                                                             <NA>
6114                                                             <NA>
6115                                                             <NA>
6116                                                             <NA>
6117                                                             <NA>
6118                                                              meq
6119                                                             <NA>
6120                                                             <NA>
6121                                                             <NA>
6122                                                             <NA>
6123                                                             <NA>
6124                                                             <NA>
6125                                                             <NA>
6126                                                             <NA>
6127                                                             <NA>
6128                                                             <NA>
6129                                     based on weight (50-100 lbs)
6130                                     based on weight (60-120 lbs)
6131                                                             <NA>
6132                                              tablet/pill/capsule
6133                                              tablet/pill/capsule
6134                                                             <NA>
6135                                                             <NA>
6136                                              tablet/pill/capsule
6137                                              tablet/pill/capsule
6138                                                             <NA>
6139                                              tablet/pill/capsule
6140                                              tablet/pill/capsule
6141                                                        injection
6142                                                             <NA>
6143                                                             <NA>
6144                                                             <NA>
6145                                                             <NA>
6146                                                             <NA>
6147                                                             <NA>
6148                                                             <NA>
6149                                                             <NA>
6150                                                             <NA>
6151                                                             <NA>
6152                                                             <NA>
6153                                                             <NA>
6154                                                             <NA>
6155                                                             <NA>
6156                                                             <NA>
6157                                                             <NA>
6158                                                         wipe/pad
6159                                                             <NA>
6160                                                  based on weight
6161                                                             <NA>
6162                                                             <NA>
6163                                                             <NA>
6164                                                        as needed
6165                                                             <NA>
6166                                                             <NA>
6167                                                             <NA>
6168                                                             <NA>
6169                                                             <NA>
6170                                                             <NA>
6171                                                             <NA>
6172                                                             <NA>
6173                                                             <NA>
6174                                                             <NA>
6175                                                             <NA>
6176                                                             <NA>
6177                                                             <NA>
6178                                                             <NA>
6179                                                             <NA>
6180                                                             <NA>
6181                                                             <NA>
6182                                                             <NA>
6183                                                             <NA>
6184                                                             <NA>
6185                                                             <NA>
6186                                                             <NA>
6187                                                             <NA>
6188                                                             <NA>
6189                                                             <NA>
6190                                                             <NA>
6191                                                             <NA>
6192                                                             <NA>
6193                                                             <NA>
6194                                                             <NA>
6195                                                             <NA>
6196                                                             <NA>
6197                                                             <NA>
6198                                                             <NA>
6199                                                             <NA>
6200                                              tablet/pill/capsule
6201                                                             <NA>
6202                                              tablet/pill/capsule
6203                                                             <NA>
6204                                                         wipe/pad
6205                                                             <NA>
6206                                                           1 tube
6207                                                         wipe/pad
6208                                                             tube
6209                                                             <NA>
6210                                                             <NA>
6211                                                             <NA>
6212                                                             <NA>
6213                                                             <NA>
6214                                                             <NA>
6215                                                            spray
6216                                                             <NA>
6217                                                             <NA>
6218                                                           joules
6219                                                             <NA>
6220                                                             <NA>
6221                                                             <NA>
6222                                                             <NA>
6223                                                             <NA>
6224                                                  based on weight
6225                                                  based on weight
6226                                                  based on weight
6227                                                             <NA>
6228                                                             <NA>
6229                                                             tube
6230                                                             <NA>
6231                                                  based on weight
6232                                                  based on weight
6233                                                             <NA>
6234                                                             <NA>
6235                                                             <NA>
6236                                                             tube
6237                                                             <NA>
6238                                                             <NA>
6239                                                             <NA>
6240                                                             <NA>
6241                                                             <NA>
6242                                                             <NA>
6243                                                             <NA>
6244                                                             <NA>
6245                                                             <NA>
6246                                                             <NA>
6247                                                             <NA>
6248                                                             <NA>
6249                                                             <NA>
6250                                                             <NA>
6251                                                             <NA>
6252                                                             <NA>
6253                                                             <NA>
6254                                              tablet/pill/capsule
6255                                                             <NA>
6256                                              tablet/pill/capsule
6257                                                      application
6258                                              tablet/pill/capsule
6259                                                             <NA>
6260                                                             <NA>
6261                                                             <NA>
6262                                     based on weight (50-100 lbs)
6263                                      based on weight (24-60 lbs)
6264                                                             <NA>
6265                                                             <NA>
6266                                                             <NA>
6267                                                             <NA>
6268                                                             <NA>
6269                                                            mg/ml
6270                                                             <NA>
6271                                                             <NA>
6272                                                             <NA>
6273                                                             <NA>
6274                                                             <NA>
6275                                                      application
6276                                                             <NA>
6277                                                             <NA>
6278                                                             <NA>
6279                                                             <NA>
6280                                                             <NA>
6281                                                             <NA>
6282                                                             <NA>
6283                                                      application
6284                                                             <NA>
6285                                                             <NA>
6286                                                             <NA>
6287                                                             <NA>
6288                                                             <NA>
6289                                                             <NA>
6290                                                             <NA>
6291                                                             <NA>
6292                                                             <NA>
6293                                              tablet/pill/capsule
6294                                                             <NA>
6295                                                             <NA>
6296                                                             <NA>
6297                                                             <NA>
6298                                                             <NA>
6299                                                             <NA>
6300                                                             <NA>
6301                                                             <NA>
6302                                                             <NA>
6303                                                             <NA>
6304                                                             <NA>
6305                                                             <NA>
6306                                                             <NA>
6307                                                             <NA>
6308                                                             <NA>
6309                                                             <NA>
6310                                                             <NA>
6311                                                             <NA>
6312                                                             <NA>
6313                                                             <NA>
6314                                                             <NA>
6315                                                             <NA>
6316                                                             <NA>
6317                                                             <NA>
6318                                                             <NA>
6319                                                             <NA>
6320                                                             <NA>
6321                                                             <NA>
6322                                                             <NA>
6323                                                             <NA>
6324                                                             <NA>
6325                                                             <NA>
6326                                                      application
6327                                                             <NA>
6328                                                             <NA>
6329                                     based on weight (50-100 lbs)
6330                                                             <NA>
6331                                                  based on weight
6332                                              tablet/pill/capsule
6333                                                             <NA>
6334                                              tablet/pill/capsule
6335                                                             <NA>
6336                                                             <NA>
6337                                              tablet/pill/capsule
6338                                                             <NA>
6339                                                             <NA>
6340                                                             <NA>
6341                                              tablet/pill/capsule
6342                                                             <NA>
6343                                                             <NA>
6344                                                             <NA>
6345                                                             <NA>
6346                                                             <NA>
6347                                                             <NA>
6348                                                             <NA>
6349                                                             <NA>
6350                                                             <NA>
6351                                                             <NA>
6352                                                             <NA>
6353                                                             <NA>
6354                                                  based on weight
6355                                                             <NA>
6356                                                             <NA>
6357                                                             <NA>
6358                                                   shampoo/mousse
6359                                                             <NA>
6360                                                             <NA>
6361                                                             <NA>
6362                                                  based on weight
6363                                                             <NA>
6364                                                             <NA>
6365                                                             <NA>
6366                                                             tube
6367                                              tablet/pill/capsule
6368                                                             <NA>
6369                                                             <NA>
6370                                                             <NA>
6371                                                             <NA>
6372                                                             <NA>
6373                                                             <NA>
6374                                                             <NA>
6375                                                             <NA>
6376                                                             <NA>
6377                                                             <NA>
6378                                                             <NA>
6379                                                             <NA>
6380                                                             <NA>
6381                                                             <NA>
6382                                                             <NA>
6383                                                             <NA>
6384                                                             <NA>
6385                                                             <NA>
6386                                                            units
6387                                                             <NA>
6388                                                             <NA>
6389                                                             <NA>
6390                                                             <NA>
6391                                                             <NA>
6392                                                             <NA>
6393                                                             <NA>
6394                                                             <NA>
6395                                                  based on weight
6396                                                             <NA>
6397                                                             <NA>
6398                                                             <NA>
6399                                                             <NA>
6400                                                             <NA>
6401                                                             <NA>
6402                                                             <NA>
6403                                                             <NA>
6404                                                             <NA>
6405                                                  based on weight
6406                                                           collar
6407                                                             <NA>
6408                                                             <NA>
6409                                                             <NA>
6410                                                             <NA>
6411                                                             <NA>
6412                                                             <NA>
6413                                                             <NA>
6414                                                             <NA>
6415                                                             <NA>
6416                                                             <NA>
6417                                                             <NA>
6418                                                             <NA>
6419                                                             <NA>
6420                                                             <NA>
6421                                                             <NA>
6422                                                             <NA>
6423                                                             <NA>
6424                                                             <NA>
6425                                                             <NA>
6426                                                             <NA>
6427                                                             <NA>
6428                                                             <NA>
6429                                                             <NA>
6430                                                             <NA>
6431                                                             <NA>
6432                                                             <NA>
6433                                                             <NA>
6434                                                             <NA>
6435                                                             <NA>
6436                                                             <NA>
6437                                                             <NA>
6438                                                             <NA>
6439                                                             <NA>
6440                                              tablet/pill/capsule
6441                                                             <NA>
6442                                                             <NA>
6443                                                             <NA>
6444                                            1 tablet/pill/capsule
6445                                                             <NA>
6446                                                             <NA>
6447                                                             <NA>
6448                                                             <NA>
6449                                                             <NA>
6450                                                             <NA>
6451                                                      unspecified
6452                                                             <NA>
6453                                              tablet/pill/capsule
6454                                                             <NA>
6455                                                             <NA>
6456                                                             <NA>
6457                                              tablet/pill/capsule
6458                                                             <NA>
6459                                                             <NA>
6460                                                             <NA>
6461                                                             <NA>
6462                                                             <NA>
6463                                                             <NA>
6464                                                             <NA>
6465                                                             <NA>
6466                                                             <NA>
6467                                                             <NA>
6468                                                             <NA>
6469                                                             <NA>
6470                                                             <NA>
6471                                                             <NA>
6472                                                             <NA>
6473                                                             <NA>
6474                                              tablet/pill/capsule
6475                                            1 tablet/pill/capsule
6476                                                             <NA>
6477                                                             <NA>
6478                                                             <NA>
6479                                                             <NA>
6480                                              tablet/pill/capsule
6481                                                             <NA>
6482                                                             <NA>
6483                                                             <NA>
6484                                                             <NA>
6485                                                             <NA>
6486                                                             <NA>
6487                                                             <NA>
6488                                                             <NA>
6489                                                             <NA>
6490                                                             <NA>
6491                                                             <NA>
6492                                                             <NA>
6493                                                             <NA>
6494                                                             <NA>
6495                                                            drops
6496                                                             <NA>
6497                                                            drops
6498                                                             <NA>
6499                                              tablet/pill/capsule
6500                                                  based on weight
6501                                                             <NA>
6502                                                             <NA>
6503                                                             <NA>
6504                                                             <NA>
6505                                                             <NA>
6506                                                             <NA>
6507                                                             <NA>
6508                                                             <NA>
6509                                                             <NA>
6510                                                             <NA>
6511                                                                %
6512                                                             <NA>
6513                                                             <NA>
6514                                                                %
6515                                                             <NA>
6516                                                             <NA>
6517                                                                %
6518                                                             <NA>
6519                                                             <NA>
6520                                                             <NA>
6521                                                             <NA>
6522                                                  based on weight
6523                                                  based on weight
6524                                                             <NA>
6525                                                             <NA>
6526                                                             <NA>
6527                                                  based on weight
6528                                                  based on weight
6529                                                             <NA>
6530                                                             <NA>
6531                                                             <NA>
6532                                                             <NA>
6533                                                             <NA>
6534                                                             <NA>
6535                                                             <NA>
6536                                                             <NA>
6537                                                             <NA>
6538                                                             <NA>
6539                                                             <NA>
6540                                                             <NA>
6541                                                             <NA>
6542                                                             <NA>
6543                                                             <NA>
6544                                                             <NA>
6545                                                             <NA>
6546                                                             <NA>
6547                                                             <NA>
6548                                                             <NA>
6549                                                             <NA>
6550                                                             <NA>
6551                                                             <NA>
6552                                                             <NA>
6553                                                             <NA>
6554                                                             <NA>
6555                                                  based on weight
6556                                                             <NA>
6557                                                             <NA>
6558                                                             <NA>
6559                                                             <NA>
6560                                                             <NA>
6561                                                             <NA>
6562                                                     small amount
6563                                                             <NA>
6564                                                             <NA>
6565                                              tablet/pill/capsule
6566                                                             <NA>
6567                                                             <NA>
6568                                                             <NA>
6569                                              tablet/pill/capsule
6570                                                             tube
6571                                                      unspecified
6572                                                             <NA>
6573                                                      bottle/vial
6574                                                             <NA>
6575                                                             <NA>
6576                                                             <NA>
6577                                                             <NA>
6578                                                             <NA>
6579                                                  based on weight
6580                                                             <NA>
6581                                                      unspecified
6582                                                             <NA>
6583                                                             <NA>
6584                                                             <NA>
6585                                                             <NA>
6586                                                             <NA>
6587                                                             <NA>
6588                                                             <NA>
6589                                                             <NA>
6590                                                             <NA>
6591                                                             <NA>
6592                                                             <NA>
6593                                                             <NA>
6594                                     based on weight (50-100 lbs)
6595                                                             <NA>
6596                                                             <NA>
6597                                                             <NA>
6598                                                             <NA>
6599                                                             <NA>
6600                                                             <NA>
6601                                                             <NA>
6602                                            1 tablet/pill/capsule
6603                                                             <NA>
6604                                                             <NA>
6605                                                             <NA>
6606                                       1-2 tablets/pills/capsules
6607                                                             <NA>
6608                                                             <NA>
6609                                                             <NA>
6610                                                             <NA>
6611                                                             <NA>
6612                                              tablet/pill/capsule
6613                                                             <NA>
6614                                                             <NA>
6615                                                             <NA>
6616                                                             <NA>
6617                                                             <NA>
6618                                                             <NA>
6619                                                             <NA>
6620                                                             <NA>
6621                                                             <NA>
6622                                                             <NA>
6623                                                             <NA>
6624                                                             <NA>
6625                                            1 tablet/pill/capsule
6626                                                             <NA>
6627                                                             <NA>
6628                                                             <NA>
6629                                                             <NA>
6630                                                             <NA>
6631                                                             <NA>
6632                                                             <NA>
6633                                              tablet/pill/capsule
6634                                                             <NA>
6635                                                             <NA>
6636                                              tablet/pill/capsule
6637                                                             <NA>
6638                                                             <NA>
6639                                                  based on weight
6640                                                             <NA>
6641                                                             <NA>
6642                                                             <NA>
6643                                                             <NA>
6644                                                  based on weight
6645                                                             <NA>
6646                                              tablet/pill/capsule
6647                                            1 tablet/pill/capsule
6648                                            1 tablet/pill/capsule
6649                                                             <NA>
6650                                                             <NA>
6651                                                             <NA>
6652                                                             <NA>
6653                                                             <NA>
6654                                                             <NA>
6655                                                             <NA>
6656                                                             <NA>
6657                                            1 tablet/pill/capsule
6658                                              tablet/pill/capsule
6659                                                             <NA>
6660                                                             <NA>
6661                                                             <NA>
6662                                     based on weight (50-100 lbs)
6663                                              tablet/pill/capsule
6664                                                             <NA>
6665                                                             <NA>
6666                                                             <NA>
6667                                                             <NA>
6668                                                             <NA>
6669                                                             <NA>
6670                                              tablet/pill/capsule
6671                                                             <NA>
6672                                                             <NA>
6673                                                             <NA>
6674                                                  based on weight
6675                                                  based on weight
6676                                                  based on weight
6677                                                             <NA>
6678                                                             <NA>
6679                                                             <NA>
6680                                                  based on weight
6681                                                             <NA>
6682                                                             <NA>
6683                                                     small amount
6684                                                             <NA>
6685                                                             <NA>
6686                                                             <NA>
6687                                                  based on weight
6688                                                  based on weight
6689                                                             <NA>
6690                                                             <NA>
6691                                                             <NA>
6692                                                             <NA>
6693                                            1 tablet/pill/capsule
6694                                                             <NA>
6695                                                             <NA>
6696                                                  based on weight
6697                                                             <NA>
6698                                              tablet/pill/capsule
6699                                                             <NA>
6700                                                             <NA>
6701                                                             <NA>
6702                                              tablet/pill/capsule
6703                                                             <NA>
6704                                                             <NA>
6705                                                             <NA>
6706                                                             <NA>
6707                                                             <NA>
6708                                                             <NA>
6709                                                             <NA>
6710                                                             <NA>
6711                                                             <NA>
6712                                                             <NA>
6713                                                             <NA>
6714                                                             <NA>
6715                                      based on weight (26-50 lbs)
6716                                                      unspecified
6717                                                      unspecified
6718                                                             <NA>
6719                                                             <NA>
6720                                                             <NA>
6721                                                             <NA>
6722                                                             <NA>
6723                                                             <NA>
6724                                                             <NA>
6725                                                             <NA>
6726                                              tablet/pill/capsule
6727                                              tablet/pill/capsule
6728                                                             <NA>
6729                                                             <NA>
6730                                                             <NA>
6731                                                             <NA>
6732                                                             <NA>
6733                                                             <NA>
6734                                                             <NA>
6735                                                             <NA>
6736                                                             <NA>
6737                                                             <NA>
6738                                                             <NA>
6739                                                             <NA>
6740                                                             <NA>
6741                                                             <NA>
6742                                                             <NA>
6743                                                             <NA>
6744                                                             <NA>
6745                                                             <NA>
6746                                                             <NA>
6747                                                             <NA>
6748                                                             <NA>
6749                                                             <NA>
6750                                                             <NA>
6751                                                             <NA>
6752                                                             <NA>
6753                                                             <NA>
6754                                                             <NA>
6755                                                             <NA>
6756                                                             <NA>
6757                                                             <NA>
6758                                                             <NA>
6759                                                             <NA>
6760                                        based on weight (51+ lbs)
6761                                                             <NA>
6762                                                             <NA>
6763                                                             <NA>
6764                                                  based on weight
6765                                                             <NA>
6766                                                             <NA>
6767                                                             <NA>
6768                                                             <NA>
6769                                                             <NA>
6770                                                     pack/package
6771                                              tablet/pill/capsule
6772                                                             <NA>
6773                                                             <NA>
6774                                              tablet/pill/capsule
6775                                              tablet/pill/capsule
6776                                                  0.25 inch strip
6777                                                             <NA>
6778                                              tablet/pill/capsule
6779                                              tablet/pill/capsule
6780                                                             <NA>
6781                                              tablet/pill/capsule
6782                                                             <NA>
6783                                              tablet/pill/capsule
6784                                                             <NA>
6785                                                             <NA>
6786                                                             <NA>
6787                                                             <NA>
6788                                                             <NA>
6789                                                             <NA>
6790                                                             <NA>
6791                                                             <NA>
6792                                                             <NA>
6793                                                             <NA>
6794                                                             <NA>
6795                                     based on weight (50-100 lbs)
6796                                                  based on weight
6797                                                             <NA>
6798                                                             <NA>
6799                                                             <NA>
6800                                                             <NA>
6801                                                             <NA>
6802                                                             <NA>
6803                                                             <NA>
6804                                              tablet/pill/capsule
6805                                                             <NA>
6806                                                             <NA>
6807                                                             <NA>
6808                                                             <NA>
6809                                                             <NA>
6810                                                             <NA>
6811                                                             <NA>
6812                                                             <NA>
6813                                                             <NA>
6814                                                             <NA>
6815                                                             <NA>
6816                                                       inch strip
6817                                                       inch strip
6818                                                             <NA>
6819                                                             <NA>
6820                                                             <NA>
6821                                                             <NA>
6822                                                             <NA>
6823                                                             <NA>
6824                                                             <NA>
6825                                                             <NA>
6826                                                             <NA>
6827                                                             <NA>
6828                                                             dose
6829                                                             <NA>
6830                                                             <NA>
6831                                                             <NA>
6832                                                             <NA>
6833                                                             <NA>
6834                                                             <NA>
6835                                                             <NA>
6836                                                             <NA>
6837                                                            spray
6838                                                             <NA>
6839                                                             <NA>
6840                                                             <NA>
6841                                                             <NA>
6842                                                             <NA>
6843                                                             <NA>
6844                                                             <NA>
6845                                                             <NA>
6846                                                             <NA>
6847                                                             <NA>
6848                                                             <NA>
6849                                                             <NA>
6850                                                             <NA>
6851                                                             <NA>
6852                                                             <NA>
6853                                                             <NA>
6854                                                  based on weight
6855                                                             <NA>
6856                                                             <NA>
6857                                                             <NA>
6858                                                             <NA>
6859                                                             <NA>
6860                                                             <NA>
6861                                                             <NA>
6862                                                         titrated
6863                                                             <NA>
6864                                                             <NA>
6865                                                             <NA>
6866                                                             <NA>
6867                                                             <NA>
6868                                                         inhalant
6869                                                             <NA>
6870                                                     small amount
6871                                                             <NA>
6872                                                             <NA>
6873                                                     pack/package
6874                                                             <NA>
6875                                                             <NA>
6876                                                             <NA>
6877                                                             <NA>
6878                                                             <NA>
6879                                                             <NA>
6880                                                         inhalant
6881                                                             <NA>
6882                                                             <NA>
6883                                                             <NA>
6884                                                             <NA>
6885                                                             <NA>
6886                                                  moderate amount
6887                                                             <NA>
6888                                                     pack/package
6889                                                             <NA>
6890                                                             <NA>
6891                                                      application
6892                                                     small amount
6893                                                             <NA>
6894                                                             <NA>
6895                                                             <NA>
6896                                                             <NA>
6897                                                             <NA>
6898                                                  based on weight
6899                                                      bottle/vial
6900                                                             <NA>
6901                                                             <NA>
6902                                                             <NA>
6903                                                             <NA>
6904                                                             <NA>
6905                                                             <NA>
6906                                              tablet/pill/capsule
6907                                                             <NA>
6908                                                             1 ml
6909                                              tablet/pill/capsule
6910                                              tablet/pill/capsule
6911                                                             <NA>
6912                                                             <NA>
6913                                                             <NA>
6914                                                             <NA>
6915                                                             <NA>
6916                                                             <NA>
6917                                                             <NA>
6918                                                             <NA>
6919                                                             <NA>
6920                                                             <NA>
6921                                                             <NA>
6922                                                             <NA>
6923                                                             <NA>
6924                                                             <NA>
6925                                                             <NA>
6926                                                             <NA>
6927                                                             <NA>
6928                                                   shampoo/mousse
6929                                                             <NA>
6930                                                             <NA>
6931                                                           collar
6932                                                             <NA>
6933                                                             <NA>
6934                                                             <NA>
6935                                                             <NA>
6936                                                             <NA>
6937                                                             <NA>
6938                                                  based on weight
6939                                                             <NA>
6940                                                             <NA>
6941                                                             <NA>
6942                                                             <NA>
6943                                                             <NA>
6944                                                             <NA>
6945                                                             <NA>
6946                                                             <NA>
6947                                                             <NA>
6948                                                             <NA>
6949                                                             <NA>
6950                                                             <NA>
6951                                                             <NA>
6952                                                             <NA>
6953                                                             <NA>
6954                                                             <NA>
6955                                                             <NA>
6956                                                             <NA>
6957                                                  based on weight
6958                                                             <NA>
6959                                                             <NA>
6960                                                             <NA>
6961                                                             <NA>
6962                                                             <NA>
6963                                                             <NA>
6964                                                             <NA>
6965                                                             <NA>
6966                                                             <NA>
6967                                                             <NA>
6968                                                             <NA>
6969                                                             <NA>
6970                                                             <NA>
6971                                                             <NA>
6972                                                             <NA>
6973                                                             <NA>
6974                                                             <NA>
6975                                                             <NA>
6976                                                             <NA>
6977                                                             <NA>
6978                                                             <NA>
6979                                                             <NA>
6980                                                             <NA>
6981                                              tablet/pill/capsule
6982                                              tablet/pill/capsule
6983                                              tablet/pill/capsule
6984                                              tablet/pill/capsule
6985                                                             <NA>
6986                                                             <NA>
6987                                                             <NA>
6988                                                             <NA>
6989                                                             <NA>
6990                                                             <NA>
6991                                              tablet/pill/capsule
6992                                                  based on weight
6993                                                             <NA>
6994                                                             <NA>
6995                                                  based on weight
6996                                                             <NA>
6997                                                             <NA>
6998                                                  based on weight
6999                                                             tube
7000                                                             <NA>
7001                                                             <NA>
7002                                                             <NA>
7003                                                             <NA>
7004                                                             <NA>
7005                                                             <NA>
7006                                                             <NA>
7007                                                             <NA>
7008                                                             <NA>
7009                                                             <NA>
7010                                                             <NA>
7011                                                             <NA>
7012                                                             <NA>
7013                                                             <NA>
7014                                                             <NA>
7015                                                             <NA>
7016                                                             <NA>
7017                                              tablet/pill/capsule
7018                                                             <NA>
7019                                                             <NA>
7020                                                             <NA>
7021                                              tablet/pill/capsule
7022                                                             <NA>
7023                                                             <NA>
7024                                                             <NA>
7025                                                             <NA>
7026                                                             <NA>
7027                                                             <NA>
7028                                                             <NA>
7029                                                             <NA>
7030                                                             <NA>
7031                                                             <NA>
7032                                                             <NA>
7033                                                             <NA>
7034                                                             <NA>
7035                                                             <NA>
7036                                                             <NA>
7037                                                             <NA>
7038                                                             <NA>
7039                                                             <NA>
7040                                                             <NA>
7041                                                             <NA>
7042                                                             <NA>
7043                                                             <NA>
7044                                                             <NA>
7045                                                             <NA>
7046                                                             <NA>
7047                                                             <NA>
7048                                                             <NA>
7049                                                             <NA>
7050                                                             <NA>
7051                                                             <NA>
7052                                                             <NA>
7053                                                             <NA>
7054                                                             <NA>
7055                                                             <NA>
7056                                                             <NA>
7057                                                             <NA>
7058                                                             <NA>
7059                                                             <NA>
7060                                                             <NA>
7061                                                             <NA>
7062                                                             <NA>
7063                                                             <NA>
7064                                                  based on weight
7065                                                  based on weight
7066                                              tablet/pill/capsule
7067                                                  based on weight
7068                                              tablet/pill/capsule
7069                                                             <NA>
7070                                                             <NA>
7071                                                             <NA>
7072                                                             <NA>
7073                                                             <NA>
7074                                                             pump
7075                                                             <NA>
7076                                                             pump
7077                                                             <NA>
7078                                                             <NA>
7079                                                             <NA>
7080                                                             <NA>
7081                                                             <NA>
7082                                                             <NA>
7083                                                             <NA>
7084                                                             <NA>
7085                                                             <NA>
7086                                                             <NA>
7087                                                             <NA>
7088                                              tablet/pill/capsule
7089                                                             <NA>
7090                                                             <NA>
7091                                                             <NA>
7092                                                            spray
7093                                              tablet/pill/capsule
7094                                                             <NA>
7095                                                             <NA>
7096                                                             <NA>
7097                                                             <NA>
7098                                                             <NA>
7099                                                             <NA>
7100                                                             <NA>
7101                                                             <NA>
7102                                                             <NA>
7103                                                             <NA>
7104                                                             <NA>
7105                                                             <NA>
7106                                                             <NA>
7107                                                             <NA>
7108                                                             <NA>
7109                                                             <NA>
7110                                                             <NA>
7111                                                             <NA>
7112                                                             <NA>
7113                                                             <NA>
7114                                                             <NA>
7115                                                             <NA>
7116                                                             <NA>
7117                                                             <NA>
7118                                                             <NA>
7119                                                             <NA>
7120                                                             <NA>
7121                                                             <NA>
7122                                                             <NA>
7123                                                             <NA>
7124                                                             <NA>
7125                                                             <NA>
7126                                                             <NA>
7127                                                             <NA>
7128                                                             <NA>
7129                                                             <NA>
7130                                                             <NA>
7131                                                             <NA>
7132                                                             <NA>
7133                                                             <NA>
7134                                                             <NA>
7135                                                             <NA>
7136                                                             <NA>
7137                                                            scoop
7138                                                             <NA>
7139                                                             <NA>
7140                                                             <NA>
7141                                                             <NA>
7142                                                             <NA>
7143                                                             <NA>
7144                                                             <NA>
7145                                                             <NA>
7146                                              tablet/pill/capsule
7147                                                             <NA>
7148                                                             <NA>
7149                                            1 tablet/pill/capsule
7150                                                             <NA>
7151                                                         ointment
7152                                                   1 pack/package
7153                                                     small amount
7154                                                           liquid
7155                                                           powder
7156                                                             <NA>
7157                                                             <NA>
7158                                                             <NA>
7159                                                             <NA>
7160                                              tablet/pill/capsule
7161                                                             <NA>
7162                                                             puff
7163                                                             <NA>
7164                                              tablet/pill/capsule
7165                                              tablet/pill/capsule
7166                                              tablet/pill/capsule
7167                                              tablet/pill/capsule
7168                                                            spray
7169                                                             <NA>
7170                                                             <NA>
7171                                                             <NA>
7172                                                           powder
7173                                                         wipe/pad
7174                                                             <NA>
7175                                                             <NA>
7176                                                             <NA>
7177                                                             <NA>
7178                                                             <NA>
7179                                              tablet/pill/capsule
7180                                                             pump
7181                                                             <NA>
7182                                                             <NA>
7183                                                             <NA>
7184                                                             <NA>
7185                                                             <NA>
7186                                                             <NA>
7187                                                             <NA>
7188                                                             <NA>
7189                                                            spray
7190                                                             <NA>
7191                                                             <NA>
7192                                                             <NA>
7193                                                             <NA>
7194                                                             <NA>
7195                                                             <NA>
7196                                                             <NA>
7197                                                            spray
7198                                                               gm
7199                                              tablet/pill/capsule
7200                                                             <NA>
7201                                                             <NA>
7202                                                            spray
7203                                     based on weight (60-120 lbs)
7204                                              tablet/pill/capsule
7205                                                             <NA>
7206                                                             <NA>
7207                                                             <NA>
7208                                                  0.25 inch strip
7209                                                             <NA>
7210                                                             <NA>
7211                                                             <NA>
7212                                                     small amount
7213                                                             <NA>
7214                                                             <NA>
7215                                                             <NA>
7216                                                             <NA>
7217                                                             <NA>
7218                                                             <NA>
7219                                                  based on weight
7220                                                             <NA>
7221                                                             <NA>
7222                                                             <NA>
7223                                                             <NA>
7224                                                             <NA>
7225                                                             <NA>
7226                                                             <NA>
7227                                              tablet/pill/capsule
7228                                                             <NA>
7229                                                             <NA>
7230                                                             <NA>
7231                                                             <NA>
7232                                                             <NA>
7233                                                             <NA>
7234                                                             <NA>
7235                                                             <NA>
7236                                                             <NA>
7237                                                             <NA>
7238                                                             <NA>
7239                                                             <NA>
7240                                                             <NA>
7241                                                             <NA>
7242                                                             <NA>
7243                                                             <NA>
7244                                                             <NA>
7245                                                             <NA>
7246                                                             <NA>
7247                                              tablet/pill/capsule
7248                                              tablet/pill/capsule
7249                                              tablet/pill/capsule
7250                                                             <NA>
7251                                                             <NA>
7252                                                             <NA>
7253                                                             <NA>
7254                                                             <NA>
7255                                                             <NA>
7256                                                             <NA>
7257                                                             <NA>
7258                                                             <NA>
7259                                                             <NA>
7260                                              tablet/pill/capsule
7261                                              tablet/pill/capsule
7262                                              tablet/pill/capsule
7263                                                             <NA>
7264                                              tablet/pill/capsule
7265                                              tablet/pill/capsule
7266                                                             <NA>
7267                                              tablet/pill/capsule
7268                                              tablet/pill/capsule
7269                                              tablet/pill/capsule
7270                                              tablet/pill/capsule
7271                                                             <NA>
7272                                              tablet/pill/capsule
7273                                              tablet/pill/capsule
7274                                              tablet/pill/capsule
7275                                              tablet/pill/capsule
7276                                                             <NA>
7277                                                             <NA>
7278                                                             <NA>
7279                                                             <NA>
7280                                                             <NA>
7281                                                             <NA>
7282                                                             <NA>
7283                                                             <NA>
7284                                                             <NA>
7285                                                             <NA>
7286                                                             <NA>
7287                                                             <NA>
7288                                                             <NA>
7289                                                             <NA>
7290                                                             <NA>
7291                                              tablet/pill/capsule
7292                                                             <NA>
7293                                                  syringe/pipette
7294                                                             <NA>
7295                                              tablet/pill/capsule
7296                                                             <NA>
7297                                         2 tablets/pills/capsules
7298                                                             <NA>
7299                                                             <NA>
7300                                                             <NA>
7301                                                             <NA>
7302                                                             <NA>
7303                                                             <NA>
7304                                                             <NA>
7305                                                             <NA>
7306                                                             <NA>
7307                                                             <NA>
7308                                                             <NA>
7309                                                             <NA>
7310                                                             <NA>
7311                                                             <NA>
7312                                                             <NA>
7313                                                             <NA>
7314                                                             <NA>
7315                                                             <NA>
7316                                                             <NA>
7317                                                             <NA>
7318                                                             <NA>
7319                                                             <NA>
7320                                                  based on weight
7321                                                             <NA>
7322                                                             <NA>
7323                                                             <NA>
7324                                                             <NA>
7325                                                     small amount
7326                                                             <NA>
7327                                                             <NA>
7328                                                             <NA>
7329                                                             <NA>
7330                                                             <NA>
7331                                                             <NA>
7332                                                             <NA>
7333                                                             <NA>
7334                                                             <NA>
7335                                                             <NA>
7336                                                             <NA>
7337                                      based on weight (25-50 lbs)
7338                                      based on weight (22-44 lbs)
7339                                                  syringe/pipette
7340                                              tablet/pill/capsule
7341                                                      unspecified
7342                                                  syringe/pipette
7343                                                  syringe/pipette
7344                                                      unspecified
7345                                                      unspecified
7346                                                             <NA>
7347                                                             <NA>
7348                                                             <NA>
7349                                                             <NA>
7350                                                             <NA>
7351                                                             <NA>
7352                                                             <NA>
7353                                                             <NA>
7354                                                             <NA>
7355                                                             <NA>
7356                                                             <NA>
7357                                                             <NA>
7358                                                             <NA>
7359                                                             <NA>
7360                                                             <NA>
7361                                                             <NA>
7362                                                             <NA>
7363                                                             <NA>
7364                                                             <NA>
7365                                                             <NA>
7366                                                             <NA>
7367                                                             <NA>
7368                                                             <NA>
7369                                                             <NA>
7370                                                             <NA>
7371                                                     small amount
7372                                                             <NA>
7373                                                             <NA>
7374                                                             <NA>
7375                                                             <NA>
7376                                                             <NA>
7377                                                             <NA>
7378                                                             <NA>
7379                                                             <NA>
7380                                                                %
7381                                                             <NA>
7382                                                             <NA>
7383                                                             <NA>
7384                                                             <NA>
7385                                                             <NA>
7386                                                             <NA>
7387                                                             <NA>
7388                                                             <NA>
7389                                                             <NA>
7390                                                             <NA>
7391                                                             <NA>
7392                                                             <NA>
7393                                                             <NA>
7394                                                             <NA>
7395                                                             <NA>
7396                                              tablet/pill/capsule
7397                                                             <NA>
7398                                                             <NA>
7399                                                             <NA>
7400                                                             <NA>
7401                                                             <NA>
7402                                                             <NA>
7403                                                             <NA>
7404                                                             <NA>
7405                                                             <NA>
7406                                                             <NA>
7407                                                             <NA>
7408                                                             <NA>
7409                                                             <NA>
7410                                                             <NA>
7411                                                             <NA>
7412                                                             <NA>
7413                                                  based on weight
7414                                                             <NA>
7415                                                             <NA>
7416                                                             <NA>
7417                                                             <NA>
7418                                                             <NA>
7419                                                             <NA>
7420                                                             <NA>
7421                                                             <NA>
7422                                                             <NA>
7423                                                             <NA>
7424                                                             <NA>
7425                                                             <NA>
7426                                                             <NA>
7427                                                             <NA>
7428                                                             <NA>
7429                                                             <NA>
7430                                                             <NA>
7431                                                             <NA>
7432                                                             <NA>
7433                                                             <NA>
7434                                                             <NA>
7435                                                             <NA>
7436                                                             <NA>
7437                                                             <NA>
7438                                                             <NA>
7439                                                             <NA>
7440                                                                %
7441                                                             <NA>
7442                                                             <NA>
7443                                                             <NA>
7444                                                             <NA>
7445                                                             <NA>
7446                                                             <NA>
7447                                                             <NA>
7448                                                             <NA>
7449                                                             <NA>
7450                                                             <NA>
7451                                                             <NA>
7452                                                             <NA>
7453                                                             <NA>
7454                                                             <NA>
7455                                                             <NA>
7456                                                             <NA>
7457                                                             <NA>
7458                                                             <NA>
7459                                                             <NA>
7460                                                             <NA>
7461                                                             <NA>
7462                                                             <NA>
7463                                                             <NA>
7464                                                             <NA>
7465                                                             <NA>
7466                                                             <NA>
7467                                                             <NA>
7468                                                             <NA>
7469                                                             <NA>
7470                                                             <NA>
7471                                                             <NA>
7472                                                             <NA>
7473                                                             <NA>
7474                                                             <NA>
7475                                                             tube
7476                                                             <NA>
7477                                                             <NA>
7478                                                             <NA>
7479                                                             <NA>
7480                                                             <NA>
7481                                                             <NA>
7482                                                             <NA>
7483                                                             <NA>
7484                                                             <NA>
7485                                                             <NA>
7486                                                             <NA>
7487                                                             <NA>
7488                                                             <NA>
7489                                                             <NA>
7490                                                             <NA>
7491                                                             <NA>
7492                                                             <NA>
7493                                                             <NA>
7494                                                             <NA>
7495                                                             <NA>
7496                                                             <NA>
7497                                                             <NA>
7498                                                             <NA>
7499                                                             <NA>
7500                                                             <NA>
7501                                                             <NA>
7502                                                             <NA>
7503                                              tablet/pill/capsule
7504                                                             <NA>
7505                                                             <NA>
7506                                                             <NA>
7507                                                             <NA>
7508                                                             <NA>
7509                                                             <NA>
7510                                              tablet/pill/capsule
7511                                              tablet/pill/capsule
7512                                              tablet/pill/capsule
7513                                              tablet/pill/capsule
7514                                                             <NA>
7515                                              tablet/pill/capsule
7516                                              tablet/pill/capsule
7517                                                             <NA>
7518                                                             <NA>
7519                                                             <NA>
7520                                                             <NA>
7521                                                      combination
7522                                                             <NA>
7523                                                             <NA>
7524                                                      unspecified
7525                                                             <NA>
7526                                                             <NA>
7527                                                             <NA>
7528                                                             <NA>
7529                                                             <NA>
7530                                                             <NA>
7531                                              tablet/pill/capsule
7532                                                             <NA>
7533                                                             <NA>
7534                                                             <NA>
7535                                                             <NA>
7536                                                             <NA>
7537                                                             <NA>
7538                                                             <NA>
7539                                                             <NA>
7540                                                             <NA>
7541                                                             <NA>
7542                                                             <NA>
7543                                                             <NA>
7544                                                             <NA>
7545                                                             <NA>
7546                                                             <NA>
7547                                                             <NA>
7548                                                             <NA>
7549                                                             <NA>
7550                                                             <NA>
7551                                            1 tablet/pill/capsule
7552                                                             <NA>
7553                                                             <NA>
7554                                                             <NA>
7555                                              tablet/pill/capsule
7556                                                             <NA>
7557                                                             <NA>
7558                                     based on weight (50-100 lbs)
7559                                        based on weight (55+ lbs)
7560                                                             <NA>
7561                                                             <NA>
7562                                                             <NA>
7563                                              tablet/pill/capsule
7564                                                             <NA>
7565                                                             <NA>
7566                                     based on weight (50-100 lbs)
7567                                                             <NA>
7568                                                             <NA>
7569                                                             <NA>
7570                                                             <NA>
7571                                                             <NA>
7572                                                             <NA>
7573                                                             <NA>
7574                                                             <NA>
7575                                                             <NA>
7576                                                             <NA>
7577                                                             <NA>
7578                                                             <NA>
7579                                                             <NA>
7580                                                             <NA>
7581                                                             <NA>
7582                                                             <NA>
7583                                     based on weight (50-100 lbs)
7584                                                             <NA>
7585                                                             <NA>
7586                                                             <NA>
7587                                                             <NA>
7588                                                             <NA>
7589                                                             <NA>
7590                                                             <NA>
7591                                                             <NA>
7592                                                             <NA>
7593                                                             <NA>
7594                                                             <NA>
7595                                                             <NA>
7596                                              tablet/pill/capsule
7597                                                             <NA>
7598                                                         wipe/pad
7599                                              tablet/pill/capsule
7600                                              tablet/pill/capsule
7601                                              tablet/pill/capsule
7602                                              tablet/pill/capsule
7603                                              tablet/pill/capsule
7604                                                             <NA>
7605                                                             <NA>
7606                                              tablet/pill/capsule
7607                                                             tube
7608                                                             <NA>
7609                                                             <NA>
7610                                                             <NA>
7611                                                             <NA>
7612                                                             <NA>
7613                                                             <NA>
7614                                                             <NA>
7615                                                             <NA>
7616                                                             <NA>
7617                                                             <NA>
7618                                                             <NA>
7619                                                             <NA>
7620                                                             <NA>
7621                                                             <NA>
7622                                              tablet/pill/capsule
7623                                              tablet/pill/capsule
7624                                              tablet/pill/capsule
7625                                              tablet/pill/capsule
7626                                              tablet/pill/capsule
7627                                              tablet/pill/capsule
7628                                              tablet/pill/capsule
7629                                              tablet/pill/capsule
7630                                              tablet/pill/capsule
7631                                              tablet/pill/capsule
7632                                              tablet/pill/capsule
7633                                                             <NA>
7634                                              tablet/pill/capsule
7635                                                             <NA>
7636                                                             <NA>
7637                                                             <NA>
7638                                              tablet/pill/capsule
7639                                                             <NA>
7640                                                             <NA>
7641                                                             <NA>
7642                                              tablet/pill/capsule
7643                                              tablet/pill/capsule
7644                                              tablet/pill/capsule
7645                                              tablet/pill/capsule
7646                                                             <NA>
7647                                              tablet/pill/capsule
7648                                                             <NA>
7649                                                             <NA>
7650                                                             <NA>
7651                                              tablet/pill/capsule
7652                                              tablet/pill/capsule
7653                                              tablet/pill/capsule
7654                                              tablet/pill/capsule
7655                                              tablet/pill/capsule
7656                                              tablet/pill/capsule
7657                                                             <NA>
7658                                              tablet/pill/capsule
7659                                              tablet/pill/capsule
7660                                     based on weight (50-100 lbs)
7661                                                             <NA>
7662                                                             <NA>
7663                                                             <NA>
7664                                                             <NA>
7665                                                             <NA>
7666                                                             <NA>
7667                                                             <NA>
7668                                                             <NA>
7669                                                             <NA>
7670                                                             <NA>
7671                                                             <NA>
7672                                                             <NA>
7673                                                      unspecified
7674                                                      unspecified
7675                                                             <NA>
7676                                                             <NA>
7677                                                             <NA>
7678                                                  0.25 inch strip
7679                                                           1 pump
7680                                                             <NA>
7681                                                             <NA>
7682                                                  based on weight
7683                                                  based on weight
7684                                                  based on weight
7685                                                             <NA>
7686                                                             <NA>
7687                                                             <NA>
7688                                                             <NA>
7689                                                             <NA>
7690                                                             <NA>
7691                                                             <NA>
7692                                                             <NA>
7693                                                             <NA>
7694                                                                %
7695                                                             <NA>
7696                                                             <NA>
7697                                                             <NA>
7698                                                             <NA>
7699                                                             <NA>
7700                                                             <NA>
7701                                                             <NA>
7702                                                             <NA>
7703                                                             <NA>
7704                                                             <NA>
7705                                                            daily
7706                                                             <NA>
7707                                                             <NA>
7708                                                             <NA>
7709                                                             <NA>
7710                                                             <NA>
7711                                                             <NA>
7712                                                             <NA>
7713                                                             <NA>
7714                                                             <NA>
7715                                                             <NA>
7716                                                             <NA>
7717                                                             <NA>
7718                                                             <NA>
7719                                                             <NA>
7720                                                             <NA>
7721                                                             <NA>
7722                                                             <NA>
7723                                                             <NA>
7724                                                             <NA>
7725                                                             <NA>
7726                                                             <NA>
7727                                                             <NA>
7728                                                             <NA>
7729                                                             <NA>
7730                                                             <NA>
7731                                                             <NA>
7732                                      based on weight (25-50 lbs)
7733                                                             <NA>
7734                                                             <NA>
7735                                                             <NA>
7736                                                             <NA>
7737                                                             <NA>
7738                                                             <NA>
7739                                                             <NA>
7740                                                             <NA>
7741                                                             <NA>
7742                                                             <NA>
7743                                                             <NA>
7744                                                  based on weight
7745                                                  based on weight
7746                                              tablet/pill/capsule
7747                                                      application
7748                                                             <NA>
7749                                                             <NA>
7750                                                             <NA>
7751                                                             <NA>
7752                                                            scoop
7753                                                            scoop
7754                                                             <NA>
7755                                                             <NA>
7756                                                             <NA>
7757                                                             <NA>
7758                                                             <NA>
7759                                                           1 tube
7760                                                             <NA>
7761                                                             <NA>
7762                                                             <NA>
7763                                            1 tablet/pill/capsule
7764                                              tablet/pill/capsule
7765                                                             tube
7766                                                             <NA>
7767                                                             <NA>
7768                                              tablet/pill/capsule
7769                                                             <NA>
7770                                                             <NA>
7771                                                             <NA>
7772                                                             <NA>
7773                                                             <NA>
7774                                                             <NA>
7775                                                             <NA>
7776                                                             <NA>
7777                                                             <NA>
7778                                                             <NA>
7779                                                             <NA>
7780                                                             tube
7781                                                             <NA>
7782                                                             <NA>
7783                                                           1 tube
7784                                            1 tablet/pill/capsule
7785                                              tablet/pill/capsule
7786                                                           1 tube
7787                                                             <NA>
7788                                                             <NA>
7789                                              tablet/pill/capsule
7790                                                             tube
7791                                                             <NA>
7792                                                             <NA>
7793                                                             <NA>
7794                                                             <NA>
7795                                              tablet/pill/capsule
7796                                                             <NA>
7797                                                             <NA>
7798                                                             <NA>
7799                                                             <NA>
7800                                                             <NA>
7801                                                             <NA>
7802                                                             <NA>
7803                                                             <NA>
7804                                                             <NA>
7805                                                             <NA>
7806                                                             <NA>
7807                                                             <NA>
7808                                                             <NA>
7809                                                             <NA>
7810                                                             <NA>
7811                                                             <NA>
7812                                                     small amount
7813                                                             <NA>
7814                                                             <NA>
7815                                                             <NA>
7816                                                             <NA>
7817                                                             <NA>
7818                                                             <NA>
7819                                                             <NA>
7820                                                             <NA>
7821                                                             <NA>
7822                                                             <NA>
7823                                                             <NA>
7824                                                             <NA>
7825                                                             <NA>
7826                                                             <NA>
7827                                                             <NA>
7828                                                             <NA>
7829                                                             <NA>
7830                                                             <NA>
7831                                                             <NA>
7832                                                             <NA>
7833                                                             <NA>
7834                                                             <NA>
7835                                                             <NA>
7836                                                             <NA>
7837                                                             <NA>
7838                                              tablet/pill/capsule
7839                                                           powder
7840                                                             <NA>
7841                                              tablet/pill/capsule
7842                                              tablet/pill/capsule
7843                                              tablet/pill/capsule
7844                                                             <NA>
7845                                                             <NA>
7846                                                             <NA>
7847                                                     pack/package
7848                                                             <NA>
7849                                                             <NA>
7850                                                             <NA>
7851                                                             <NA>
7852                                                             <NA>
7853                                                             pump
7854                                                             <NA>
7855                                                             <NA>
7856                                                             <NA>
7857                                                             <NA>
7858                                                             <NA>
7859                                                             <NA>
7860                                                             <NA>
7861                                                             <NA>
7862                                                             <NA>
7863                                                             <NA>
7864                                                             <NA>
7865                                                             <NA>
7866                                                             <NA>
7867                                                             <NA>
7868                                                             <NA>
7869                                                             <NA>
7870                                                             <NA>
7871                                                             <NA>
7872                                                             <NA>
7873                                                             <NA>
7874                                                             <NA>
7875                                                             <NA>
7876                                                             <NA>
7877                                                             <NA>
7878                                                             <NA>
7879                                                             <NA>
7880                                                             <NA>
7881                                                             <NA>
7882                                                             <NA>
7883                                            1 tablet/pill/capsule
7884                                            1 tablet/pill/capsule
7885                                                             <NA>
7886                                                             <NA>
7887                                                             <NA>
7888                                                             <NA>
7889                                                             <NA>
7890                                                             <NA>
7891                                                             <NA>
7892                                                             <NA>
7893                                                             tube
7894                                                             <NA>
7895                                                             <NA>
7896                                                             <NA>
7897                                                             <NA>
7898                                                             <NA>
7899                                                             <NA>
7900                                                             <NA>
7901                                                             <NA>
7902                                                             <NA>
7903                                                             <NA>
7904                                                             <NA>
7905                                                             <NA>
7906                                                             <NA>
7907                                                             <NA>
7908                                                             <NA>
7909                                                             <NA>
7910                                                             <NA>
7911                                                             <NA>
7912                                                             <NA>
7913                                                             <NA>
7914                                                             <NA>
7915                                                             <NA>
7916                                                             <NA>
7917                                                             <NA>
7918                                                             <NA>
7919                                                             <NA>
7920                                                             <NA>
7921                                                             <NA>
7922                                                             <NA>
7923                                                             <NA>
7924                                                             <NA>
7925                                                             <NA>
7926                                                           powder
7927                                                             <NA>
7928                                                             <NA>
7929                                                     small amount
7930                                                             <NA>
7931                                                             <NA>
7932                                                             <NA>
7933                                                             <NA>
7934                                                             <NA>
7935                                                             <NA>
7936                                                             <NA>
7937                                                             <NA>
7938                                                             <NA>
7939                                                             <NA>
7940                                                             <NA>
7941                                                             <NA>
7942                                                             <NA>
7943                                                             <NA>
7944                                                             <NA>
7945                                                             <NA>
7946                                                             <NA>
7947                                                             <NA>
7948                                                             <NA>
7949                                                             <NA>
7950                                                             <NA>
7951                                                             <NA>
7952                                                             <NA>
7953                                                             <NA>
7954                                                             <NA>
7955                                                             <NA>
7956                                                             <NA>
7957                                                             <NA>
7958                                                             <NA>
7959                                                             <NA>
7960                                                             <NA>
7961                                                         ointment
7962                                                             <NA>
7963                                                             <NA>
7964                                                             <NA>
7965                                                             <NA>
7966                                              tablet/pill/capsule
7967                                              tablet/pill/capsule
7968                                              tablet/pill/capsule
7969                                              tablet/pill/capsule
7970                                                             <NA>
7971                                                  based on weight
7972                                                             <NA>
7973                                                             <NA>
7974                                                  based on weight
7975                                                             <NA>
7976                                                  based on weight
7977                                                             <NA>
7978                                                             <NA>
7979                                                             <NA>
7980                                                             <NA>
7981                                                             <NA>
7982                                                             <NA>
7983                                                             <NA>
7984                                                             <NA>
7985                                                             <NA>
7986                                                             <NA>
7987                                                             <NA>
7988                                                  based on weight
7989                                                             <NA>
7990                                                             <NA>
7991                                                             <NA>
7992                                                             <NA>
7993                                                  based on weight
7994                                                             <NA>
7995                                                             <NA>
7996                                                             <NA>
7997                                                             <NA>
7998                                                     pack/package
7999                                                             <NA>
8000                                                  based on weight
8001                                                             <NA>
8002                                                             <NA>
8003                                                             <NA>
8004                                                             <NA>
8005                                                             <NA>
8006                                                             <NA>
8007                                                             <NA>
8008                                                             <NA>
8009                                                      unspecified
8010                                                             <NA>
8011                                                             <NA>
8012                                                         ointment
8013                                                             <NA>
8014                                                     small amount
8015                                                             <NA>
8016                                                             <NA>
8017                                                     small amount
8018                                                             <NA>
8019                                                             <NA>
8020                                                             <NA>
8021                                                             <NA>
8022                                                             <NA>
8023                                                             <NA>
8024                                                             <NA>
8025                                                             <NA>
8026                                                             <NA>
8027                                                             <NA>
8028                                                             <NA>
8029                                                      combination
8030                                                  based on weight
8031                                                             <NA>
8032                                                             <NA>
8033                                                             <NA>
8034                                                             <NA>
8035                                                             <NA>
8036                                                             <NA>
8037                                                             <NA>
8038                                                             <NA>
8039                                                             <NA>
8040                                                             <NA>
8041                                                             <NA>
8042                                                             <NA>
8043                                                             <NA>
8044                                                             <NA>
8045                                                             <NA>
8046                                                             <NA>
8047                                                             <NA>
8048                                                             <NA>
8049                                                             <NA>
8050                                                             <NA>
8051                                                             <NA>
8052                                                             <NA>
8053                                                             <NA>
8054                                                             <NA>
8055                                                             <NA>
8056                                                             <NA>
8057                                                             <NA>
8058                                              tablet/pill/capsule
8059                                                             <NA>
8060                                                             <NA>
8061                                                     pack/package
8062                                              tablet/pill/capsule
8063                                                  based on weight
8064                                                             <NA>
8065                                                             <NA>
8066                                                  based on weight
8067                                                  based on weight
8068                                                             <NA>
8069                                                  based on weight
8070                                                  based on weight
8071                                                  based on weight
8072                                                             <NA>
8073                                                             <NA>
8074                                                             <NA>
8075                                                             <NA>
8076                                                             <NA>
8077                                                             <NA>
8078                                                             <NA>
8079                                                             <NA>
8080                                                             <NA>
8081                                                             <NA>
8082                                                             <NA>
8083                                                             <NA>
8084                                                             <NA>
8085                                                             <NA>
8086                                                     small amount
8087                                              tablet/pill/capsule
8088                                                             <NA>
8089                                                             <NA>
8090                                                             <NA>
8091                                                             <NA>
8092                                                         wipe/pad
8093                                                             <NA>
8094                                                             <NA>
8095                                                             <NA>
8096                                                             <NA>
8097                                                             <NA>
8098                                                             <NA>
8099                                                             <NA>
8100                                                             <NA>
8101                                                             <NA>
8102                                                             <NA>
8103                                                             <NA>
8104                                                             <NA>
8105                                                             <NA>
8106                                                             <NA>
8107                                                             <NA>
8108                                                             <NA>
8109                                                             <NA>
8110                                                  0.25 inch strip
8111                                                             tube
8112                                                             <NA>
8113                                                     small amount
8114                                                             <NA>
8115                                                             <NA>
8116                                                             <NA>
8117                                                             <NA>
8118                                                             <NA>
8119                                                             <NA>
8120                                                  based on weight
8121                                     based on weight (50-100 lbs)
8122                                                             <NA>
8123                                              tablet/pill/capsule
8124                                                             <NA>
8125                                                             <NA>
8126                                                             <NA>
8127                                                             <NA>
8128                                                     small amount
8129                                                             <NA>
8130                                                  based on weight
8131                                                  based on weight
8132                                                             <NA>
8133                                                             <NA>
8134                                                             <NA>
8135                                                             <NA>
8136                                                  based on weight
8137                                                  based on weight
8138                                                  based on weight
8139                                                  based on weight
8140                                                     small amount
8141                                                             <NA>
8142                                                             <NA>
8143                                                             <NA>
8144                                                             <NA>
8145                                                             <NA>
8146                                                             <NA>
8147                                                             <NA>
8148                                                             <NA>
8149                                                             <NA>
8150                                                             <NA>
8151                                                             <NA>
8152                                                             <NA>
8153                                                             <NA>
8154                                                             <NA>
8155                                              tablet/pill/capsule
8156                                              tablet/pill/capsule
8157                                                             <NA>
8158                                                             <NA>
8159                                                             <NA>
8160                                                      unspecified
8161                                                             <NA>
8162                                                             <NA>
8163                                                             <NA>
8164                                                             <NA>
8165                                                             <NA>
8166                                                             <NA>
8167                                                             <NA>
8168                                                             <NA>
8169                                                             <NA>
8170                                                             <NA>
8171                                                             <NA>
8172                                                             <NA>
8173                                                             <NA>
8174                                                             <NA>
8175                                                             <NA>
8176                                                             <NA>
8177                                                             <NA>
8178                                                             <NA>
8179                                                             <NA>
8180                                                             <NA>
8181                                                             <NA>
8182                                                     small amount
8183                                                             <NA>
8184                                                           powder
8185                                     based on weight (50-100 lbs)
8186                                     based on weight (50-100 lbs)
8187                                     based on weight (50-100 lbs)
8188                                     based on weight (60-120 lbs)
8189                                                             <NA>
8190                                                             <NA>
8191                                                             <NA>
8192                                                             <NA>
8193                                                             <NA>
8194                                                             <NA>
8195                                                  based on weight
8196                                                  based on weight
8197                                                             <NA>
8198                                                             <NA>
8199                                                             <NA>
8200                                                            spray
8201                                                             puff
8202                                                             <NA>
8203                                      based on weight (44-88 lbs)
8204                                              tablet/pill/capsule
8205                                                  based on weight
8206                                                  based on weight
8207                                                  based on weight
8208                                                  based on weight
8209                                                             <NA>
8210                                                             <NA>
8211                                                             <NA>
8212                                                  based on weight
8213                                                             <NA>
8214                                                             <NA>
8215                                                  based on weight
8216                                                             <NA>
8217                                                             <NA>
8218                                                             <NA>
8219                                                             <NA>
8220                                            1 tablet/pill/capsule
8221                                            1 tablet/pill/capsule
8222                                            1 tablet/pill/capsule
8223                                                             <NA>
8224                                                             <NA>
8225                                                             <NA>
8226                                                             <NA>
8227                                                             <NA>
8228                                                             <NA>
8229                                                             <NA>
8230                                                             <NA>
8231                                                             <NA>
8232                                                             <NA>
8233                                                             <NA>
8234                                                          8 drops
8235                                                     small amount
8236                                                            spray
8237                                                             <NA>
8238                                                             <NA>
8239                                              tablet/pill/capsule
8240                                                             <NA>
8241                                                             <NA>
8242                                                             <NA>
8243                                                             <NA>
8244                                                  based on weight
8245                                                             <NA>
8246                                                             <NA>
8247                                                             <NA>
8248                                              tablet/pill/capsule
8249                                                             <NA>
8250                                                             <NA>
8251                                                             <NA>
8252                                                            spray
8253                                                             <NA>
8254                                                             <NA>
8255                                                             <NA>
8256                                                             <NA>
8257                                                             <NA>
8258                                                             <NA>
8259                                                             <NA>
8260                                                             <NA>
8261                                                             <NA>
8262                                                             <NA>
8263                                                             <NA>
8264                                                             <NA>
8265                                                             <NA>
8266                                                             <NA>
8267                                                             <NA>
8268                                                             <NA>
8269                                                             <NA>
8270                                                             <NA>
8271                                                             <NA>
8272                                                             <NA>
8273                                                             <NA>
8274                                                             <NA>
8275                                                             <NA>
8276                                                             <NA>
8277                                                             <NA>
8278                                                             <NA>
8279                                                             <NA>
8280                                                             <NA>
8281                                                             <NA>
8282                                                             <NA>
8283                                                             <NA>
8284                                                     small amount
8285                                                             <NA>
8286                                                             <NA>
8287                                                             <NA>
8288                                                             <NA>
8289                                                             <NA>
8290                                                             <NA>
8291                                                             <NA>
8292                                                             <NA>
8293                                                     small amount
8294                                                             <NA>
8295                                                             <NA>
8296                                     based on weight (50-100 lbs)
8297                                      based on weight (44-88 lbs)
8298                                                             <NA>
8299                                                             1 ml
8300                                                             <NA>
8301                                                  based on weight
8302                                                  based on weight
8303                                                             <NA>
8304                                                             <NA>
8305                                                            spray
8306                                                  based on weight
8307                                                  based on weight
8308                                                             <NA>
8309                                                             <NA>
8310                                                             <NA>
8311                                                             <NA>
8312                                                             <NA>
8313                                                             <NA>
8314                                                             <NA>
8315                                                             <NA>
8316                                                             <NA>
8317                                                             <NA>
8318                                                             <NA>
8319                                                             <NA>
8320                                                             <NA>
8321                                                             <NA>
8322                                                             <NA>
8323                                                             <NA>
8324                                                             <NA>
8325                                                             <NA>
8326                                                  based on weight
8327                                                             <NA>
8328                                                             <NA>
8329                                                             <NA>
8330                                                             <NA>
8331                                                             <NA>
8332                                                  based on weight
8333                                                             <NA>
8334                                                             <NA>
8335                                                  based on weight
8336                                                             <NA>
8337                                                             <NA>
8338                                                             <NA>
8339                                                             <NA>
8340                                                  based on weight
8341                                                             <NA>
8342                                                             <NA>
8343                                                             <NA>
8344                                                             <NA>
8345                                                             <NA>
8346                                                             <NA>
8347                                                             <NA>
8348                                                             <NA>
8349                                                  based on weight
8350                                                             <NA>
8351                                                             <NA>
8352                                                  moderate amount
8353                                                             <NA>
8354                                              tablet/pill/capsule
8355                                                    1 application
8356                                                             <NA>
8357                                                             <NA>
8358                                                  based on weight
8359                                                  based on weight
8360                                                             <NA>
8361                                              tablet/pill/capsule
8362                                                     small amount
8363                                                             <NA>
8364                                                             <NA>
8365                                                             <NA>
8366                                                             <NA>
8367                                                             <NA>
8368                                                             <NA>
8369                                                     small amount
8370                                              tablet/pill/capsule
8371                                              tablet/pill/capsule
8372                                                             <NA>
8373                                                             <NA>
8374                                                             pump
8375                                                             tube
8376                                                     small amount
8377                                              tablet/pill/capsule
8378                                              tablet/pill/capsule
8379                                                     small amount
8380                                                             <NA>
8381                                                             <NA>
8382                                                     pack/package
8383                                                             <NA>
8384                                                             <NA>
8385                                                     pack/package
8386                                                             <NA>
8387                                                             <NA>
8388                                                             <NA>
8389                                                             <NA>
8390                                                             <NA>
8391                                                             <NA>
8392                                                             <NA>
8393                                                             <NA>
8394                                                             <NA>
8395                                                             <NA>
8396                                                             <NA>
8397                                                             <NA>
8398                                                             <NA>
8399                                                             <NA>
8400                                                             <NA>
8401                                                             <NA>
8402                                                             <NA>
8403                                                             <NA>
8404                                                             <NA>
8405                                                             tube
8406                                                             <NA>
8407                                                             <NA>
8408                                                                1
8409                                                             <NA>
8410                                                  based on weight
8411                                                             <NA>
8412                                                             <NA>
8413                                                             <NA>
8414                                                             <NA>
8415                                                             <NA>
8416                                                             <NA>
8417                                                             <NA>
8418                                                         inhalant
8419                                                             <NA>
8420                                                  based on weight
8421                                              tablet/pill/capsule
8422                                                             <NA>
8423                                                             <NA>
8424                                                           1 tube
8425                                              tablet/pill/capsule
8426                                                             <NA>
8427                                              tablet/pill/capsule
8428                                                             <NA>
8429                                                             <NA>
8430                                              tablet/pill/capsule
8431                                                             <NA>
8432                                                             <NA>
8433                                                             <NA>
8434                                                             <NA>
8435                                                   1 pack/package
8436                                                     small amount
8437                                                             <NA>
8438                                                             <NA>
8439                                                             <NA>
8440                                                             <NA>
8441                                                             <NA>
8442                                                             <NA>
8443                                                             <NA>
8444                                                             <NA>
8445                                                             <NA>
8446                                                             <NA>
8447                                                             <NA>
8448                                                             <NA>
8449                                                       inch strip
8450                                                             <NA>
8451                                                             <NA>
8452                                                             <NA>
8453                                                             <NA>
8454                                              tablet/pill/capsule
8455                                                             <NA>
8456                                                             <NA>
8457                                                             <NA>
8458                                                             <NA>
8459                                                             <NA>
8460                                                     pack/package
8461                                                  based on weight
8462                                                             <NA>
8463                                                             <NA>
8464                                                             <NA>
8465                                                  based on weight
8466                                            1 tablet/pill/capsule
8467                                                     small amount
8468                                                             <NA>
8469                                                             <NA>
8470                                                             <NA>
8471                                                             <NA>
8472                                                             <NA>
8473                                                             <NA>
8474                                                             <NA>
8475                                                   shampoo/mousse
8476                                                             <NA>
8477                                                             <NA>
8478                                                   shampoo/mousse
8479                                                             <NA>
8480                                                             <NA>
8481                                                             <NA>
8482                                                             <NA>
8483                                                             <NA>
8484                                                             <NA>
8485                                                             <NA>
8486                                                             <NA>
8487                                                             <NA>
8488                                                             <NA>
8489                                                  based on weight
8490                                                             <NA>
8491                                                             <NA>
8492                                                             <NA>
8493                                                            spray
8494                                                             <NA>
8495                                                  moderate amount
8496                                                             <NA>
8497                                                             <NA>
8498                                                             <NA>
8499                                                             <NA>
8500                                                             <NA>
8501                                                             <NA>
8502                                                             <NA>
8503                                                             <NA>
8504                                                             <NA>
8505                                              tablet/pill/capsule
8506                                                             <NA>
8507                                                             <NA>
8508                                                             <NA>
8509                                              tablet/pill/capsule
8510                                                             <NA>
8511                                                             <NA>
8512                                                             <NA>
8513                                                             <NA>
8514                                              tablet/pill/capsule
8515                                              tablet/pill/capsule
8516                                                             <NA>
8517                                                             <NA>
8518                                                             <NA>
8519                                                             <NA>
8520                                                             <NA>
8521                                                             <NA>
8522                                                             <NA>
8523                                                             <NA>
8524                                                      unspecified
8525                                                             <NA>
8526                                                             <NA>
8527                                                             <NA>
8528                                              tablet/pill/capsule
8529                                                             <NA>
8530                                                             <NA>
8531                                              tablet/pill/capsule
8532                                              tablet/pill/capsule
8533                                              tablet/pill/capsule
8534                                              tablet/pill/capsule
8535                                                             <NA>
8536                                                             <NA>
8537                                                             <NA>
8538                                                             <NA>
8539                                                             <NA>
8540                                                             <NA>
8541                                                             <NA>
8542                                                             <NA>
8543                                                             <NA>
8544                                                             <NA>
8545                                                             <NA>
8546                                                             <NA>
8547                                                             <NA>
8548                                                             <NA>
8549                                                             <NA>
8550                                                             <NA>
8551                                                             <NA>
8552                                                             <NA>
8553                                                             <NA>
8554                                                  based on weight
8555                                                  based on weight
8556                                                             <NA>
8557                                                             <NA>
8558                                                             <NA>
8559                                                             <NA>
8560                                                             <NA>
8561                                                             <NA>
8562                                                             <NA>
8563                                                             <NA>
8564                                                             <NA>
8565                                                             <NA>
8566                                                             <NA>
8567                                                             <NA>
8568                                                             <NA>
8569                                                             <NA>
8570                                                             <NA>
8571                                                             <NA>
8572                                                             <NA>
8573                                                             <NA>
8574                                              tablet/pill/capsule
8575                                                             <NA>
8576                                                             <NA>
8577                                                     small amount
8578                                                     small amount
8579                                                             <NA>
8580                                                             <NA>
8581                                                     small amount
8582                                            1 tablet/pill/capsule
8583                                                             <NA>
8584                                                             <NA>
8585                                                           powder
8586                                                       1 wipe/pad
8587                                              tablet/pill/capsule
8588                                                             <NA>
8589                                                             <NA>
8590                                                             <NA>
8591                                              tablet/pill/capsule
8592                                                             <NA>
8593                                                             <NA>
8594                                                             <NA>
8595                                              tablet/pill/capsule
8596                                              tablet/pill/capsule
8597                                                             <NA>
8598                                              tablet/pill/capsule
8599                                              tablet/pill/capsule
8600                                              tablet/pill/capsule
8601                                                             <NA>
8602                                                             <NA>
8603                                                             <NA>
8604                                              tablet/pill/capsule
8605                                                             <NA>
8606                                              tablet/pill/capsule
8607                                                  based on weight
8608                                                             <NA>
8609                                                  based on weight
8610                                                             <NA>
8611                                                             <NA>
8612                                                             <NA>
8613                                                             <NA>
8614                                                             <NA>
8615                                              tablet/pill/capsule
8616                                                             <NA>
8617                                                             <NA>
8618                                                             <NA>
8619                                                             <NA>
8620                                                             <NA>
8621                                                             <NA>
8622                                                             <NA>
8623                                                             <NA>
8624                                                             <NA>
8625                                                             <NA>
8626                                                             <NA>
8627                                                             <NA>
8628                                                             <NA>
8629                                                             <NA>
8630                                                             <NA>
8631                                                             <NA>
8632                                                                %
8633                                                                %
8634                                                             <NA>
8635                                                             <NA>
8636                                                             <NA>
8637                                                             <NA>
8638                                                             <NA>
8639                                                             <NA>
8640                                              tablet/pill/capsule
8641                                                  based on weight
8642                                                             <NA>
8643                                                             <NA>
8644                                                             <NA>
8645                                                             <NA>
8646                                                             <NA>
8647                                                             <NA>
8648                                                             <NA>
8649                                                             <NA>
8650                                                             <NA>
8651                                                             <NA>
8652                                                             <NA>
8653                                                             <NA>
8654                                                             <NA>
8655                                              tablet/pill/capsule
8656                                                             <NA>
8657                                                             <NA>
8658                                                             <NA>
8659                                                             <NA>
8660                                                             <NA>
8661                                                             <NA>
8662                                                             <NA>
8663                                                             <NA>
8664                                                             <NA>
8665                                                             <NA>
8666                                                             <NA>
8667                                                       inch strip
8668                                                             <NA>
8669                                                             <NA>
8670                                                             <NA>
8671                                                             <NA>
8672                                                             <NA>
8673                                                             <NA>
8674                                                  based on weight
8675                                              tablet/pill/capsule
8676                                              tablet/pill/capsule
8677                                              tablet/pill/capsule
8678                                                             <NA>
8679                                                             <NA>
8680                                                             <NA>
8681                                                             <NA>
8682                                                             <NA>
8683                                                             <NA>
8684                                                             <NA>
8685                                                             <NA>
8686                                                             <NA>
8687                                                             <NA>
8688                                                             <NA>
8689                                                             <NA>
8690                                                             <NA>
8691                                                             <NA>
8692                                                             <NA>
8693                                                             <NA>
8694                                                    1 bottle/vial
8695                                                             <NA>
8696                                                             <NA>
8697                                                             <NA>
8698                                                         wipe/pad
8699                                              tablet/pill/capsule
8700                                                             <NA>
8701                                                             <NA>
8702                                                      bottle/vial
8703                                                             <NA>
8704                                                             <NA>
8705                                                             <NA>
8706                                                             <NA>
8707                                                    1 bottle/vial
8708                                                             <NA>
8709                                                             <NA>
8710                                                             <NA>
8711                                              tablet/pill/capsule
8712                                                             <NA>
8713                                              tablet/pill/capsule
8714                                                             <NA>
8715                                                             <NA>
8716                                                             <NA>
8717                                                             <NA>
8718                                              tablet/pill/capsule
8719                                                             <NA>
8720                                                             <NA>
8721                                                             <NA>
8722                                                             <NA>
8723                                                             <NA>
8724                                                             tube
8725                                                             <NA>
8726                                                           cup(s)
8727                                                             <NA>
8728                                                             <NA>
8729                                                             tube
8730                                                             <NA>
8731                                                           collar
8732                                                             <NA>
8733                                                             <NA>
8734                                                             <NA>
8735                                                     small amount
8736                                                         wipe/pad
8737                                              tablet/pill/capsule
8738                                                             tube
8739                                              tablet/pill/capsule
8740                                                             tube
8741                                                             <NA>
8742                                                             <NA>
8743                                                             <NA>
8744                                                             <NA>
8745                                                             <NA>
8746                                                             <NA>
8747                                                             <NA>
8748                                                             <NA>
8749                                                             <NA>
8750                                                             <NA>
8751                                                             <NA>
8752                                                             <NA>
8753                                                             <NA>
8754                                                             <NA>
8755                                                             <NA>
8756                                            1 tablet/pill/capsule
8757                                                             <NA>
8758                                              tablet/pill/capsule
8759                                                  based on weight
8760                                                  based on weight
8761                                                             <NA>
8762                                                             <NA>
8763                                                             <NA>
8764                                                             <NA>
8765                                                             <NA>
8766                                                             <NA>
8767                                                      application
8768                                        based on weight (51+ lbs)
8769                                        based on weight (56+ lbs)
8770                                            1 tablet/pill/capsule
8771                                                           1 tube
8772                                                             <NA>
8773                                                             <NA>
8774                                                             <NA>
8775                                                             <NA>
8776                                                  based on weight
8777                                                  based on weight
8778                                            1 tablet/pill/capsule
8779                                                    1 application
8780                                            1 tablet/pill/capsule
8781                                                    1 application
8782                                                             <NA>
8783                                                             <NA>
8784                                                             <NA>
8785                                                             <NA>
8786                                                  based on weight
8787                                                  based on weight
8788                                                             <NA>
8789                                                             <NA>
8790                                                  based on weight
8791                                                  based on weight
8792                                                             <NA>
8793                                              tablet/pill/capsule
8794                                              tablet/pill/capsule
8795                                                  based on weight
8796                                                  based on weight
8797                                                             <NA>
8798                                                             <NA>
8799                                                            mg/ml
8800                                                             <NA>
8801                                                             <NA>
8802                                                             <NA>
8803                                                             <NA>
8804                                                             <NA>
8805                                              tablet/pill/capsule
8806                                                             <NA>
8807                                                             <NA>
8808                                                      application
8809                                                             <NA>
8810                                              tablet/pill/capsule
8811                                                             <NA>
8812                                                             <NA>
8813                                                             <NA>
8814                                                             <NA>
8815                                                       inch strip
8816                                                             <NA>
8817                                                             <NA>
8818                                                             <NA>
8819                                                  based on weight
8820                                                  based on weight
8821                                                             <NA>
8822                                                             <NA>
8823                                                             <NA>
8824                                                             <NA>
8825                                                             <NA>
8826                                                             dose
8827                                                  based on weight
8828                                                  based on weight
8829                                                             <NA>
8830                                                             <NA>
8831                                                             <NA>
8832                                                             <NA>
8833                                                  based on weight
8834                                                             <NA>
8835                                                             <NA>
8836                                                             <NA>
8837                                                             <NA>
8838                                                             <NA>
8839                                                             <NA>
8840                                                             <NA>
8841                                                             <NA>
8842                                                             <NA>
8843                                                             <NA>
8844                                                             <NA>
8845                                                  based on weight
8846                                                             <NA>
8847                                                             <NA>
8848                                                             <NA>
8849                                                             <NA>
8850                                                             <NA>
8851                                                             <NA>
8852                                                             <NA>
8853                                                             <NA>
8854                                                             <NA>
8855                                                             <NA>
8856                                                             <NA>
8857                                                             <NA>
8858                                                             <NA>
8859                                                             <NA>
8860                                                             <NA>
8861                                                             <NA>
8862                                                             <NA>
8863                                                             <NA>
8864                                                             <NA>
8865                                                             <NA>
8866                                                             <NA>
8867                                                             <NA>
8868                                                             <NA>
8869                                                             <NA>
8870                                                             <NA>
8871                                                             <NA>
8872                                                             <NA>
8873                                                             <NA>
8874                                                             <NA>
8875                                                             <NA>
8876                                                             <NA>
8877                                                             <NA>
8878                                                             <NA>
8879                                                  based on weight
8880                                                             <NA>
8881                                                             <NA>
8882                                                             <NA>
8883                                                             <NA>
8884                                                             <NA>
8885                                                             <NA>
8886                                                             <NA>
8887                                                             <NA>
8888                                                             <NA>
8889                                                             <NA>
8890                                                             <NA>
8891                                                             <NA>
8892                                                             <NA>
8893                                                             <NA>
8894                                                             <NA>
8895                                                             <NA>
8896                                                             <NA>
8897                                                             <NA>
8898                                                             <NA>
8899                                                             <NA>
8900                                                             <NA>
8901                                                             <NA>
8902                                                             <NA>
8903                                                            spray
8904                                                             <NA>
8905                                                             <NA>
8906                                                             <NA>
8907                                                             <NA>
8908                                                             <NA>
8909                                                             <NA>
8910                                                             <NA>
8911                                                  based on weight
8912                                                             <NA>
8913                                                             <NA>
8914                                                             <NA>
8915                                                             <NA>
8916                                                             <NA>
8917                                                             <NA>
8918                                                             <NA>
8919                                                             <NA>
8920                                                             <NA>
8921                                                             <NA>
8922                                                             <NA>
8923                                                             <NA>
8924                                                             <NA>
8925                                                             <NA>
8926                                                             <NA>
8927                                                             <NA>
8928                                                             <NA>
8929                                                      as directed
8930                                                             <NA>
8931                                                             <NA>
8932                                                             <NA>
8933                                                             <NA>
8934                                                             <NA>
8935                                                             <NA>
8936                                                             <NA>
8937                                                             <NA>
8938                                                             <NA>
8939                                                             <NA>
8940                                                             <NA>
8941                                                             <NA>
8942                                                             <NA>
8943                                                             <NA>
8944                                                             <NA>
8945                                                             <NA>
8946                                                             <NA>
8947                                                             <NA>
8948                                                             <NA>
8949                                                             <NA>
8950                                                             <NA>
8951                                                             <NA>
8952                                                             <NA>
8953                                                             <NA>
8954                                                             <NA>
8955                                                             <NA>
8956                                                             <NA>
8957                                                             <NA>
8958                                                             <NA>
8959                                                             <NA>
8960                                                             <NA>
8961                                                      as directed
8962                                                             <NA>
8963                                                             <NA>
8964                                                             <NA>
8965                                                             <NA>
8966                                                             <NA>
8967                                                             <NA>
8968                                                             <NA>
8969                                                             <NA>
8970                                                             <NA>
8971                                                             <NA>
8972                                                             <NA>
8973                                                             <NA>
8974                                                             <NA>
8975                                                             <NA>
8976                                              tablet/pill/capsule
8977                                              tablet/pill/capsule
8978                                              tablet/pill/capsule
8979                                                             <NA>
8980                                                             <NA>
8981                                              tablet/pill/capsule
8982                                                             <NA>
8983                                                             <NA>
8984                                              tablet/pill/capsule
8985                                                             <NA>
8986                                                             <NA>
8987                                                             <NA>
8988                                                             <NA>
8989                                                             <NA>
8990                                                             <NA>
8991                                                             <NA>
8992                                                             <NA>
8993                                                             <NA>
8994                                                             <NA>
8995                                                             <NA>
8996                                                             <NA>
8997                                                             <NA>
8998                                                             <NA>
8999                                                             <NA>
9000                                                             <NA>
9001                                                             <NA>
9002                                                             <NA>
9003                                                             <NA>
9004                                                             <NA>
9005                                                             <NA>
9006                                                             <NA>
9007                                                             <NA>
9008                                                             <NA>
9009                                                             <NA>
9010                                                             <NA>
9011                                                             <NA>
9012                                                             <NA>
9013                                                             <NA>
9014                                                             <NA>
9015                                                             <NA>
9016                                                             <NA>
9017                                                             <NA>
9018                                                             <NA>
9019                                                             <NA>
9020                                                             <NA>
9021                                                             <NA>
9022                                                             <NA>
9023                                                             <NA>
9024                                              tablet/pill/capsule
9025                                                             <NA>
9026                                     based on weight (50-100 lbs)
9027                                                             <NA>
9028                                                             <NA>
9029                                                             <NA>
9030                                                             <NA>
9031                                                             <NA>
9032                                                             <NA>
9033                                                             <NA>
9034                                                             <NA>
9035                                                             <NA>
9036                                                             <NA>
9037                                                             <NA>
9038                                                             <NA>
9039                                                             <NA>
9040                                                             <NA>
9041                                                             <NA>
9042                                                             <NA>
9043                                                  0.25 inch strip
9044                                         based on weight (20 lbs)
9045                                                             <NA>
9046                                            1 tablet/pill/capsule
9047                                                             <NA>
9048                                                             <NA>
9049                                                             <NA>
9050                                              tablet/pill/capsule
9051                                                             <NA>
9052                                                             <NA>
9053                                              tablet/pill/capsule
9054                                              tablet/pill/capsule
9055                                                  based on weight
9056                                                             <NA>
9057                                                             <NA>
9058                                                             <NA>
9059                                                             <NA>
9060                                            1 tablet/pill/capsule
9061                                                             <NA>
9062                                                             <NA>
9063                                                             <NA>
9064                                                             <NA>
9065                                                             <NA>
9066                                                             <NA>
9067                                                             <NA>
9068                                                             <NA>
9069                                                             <NA>
9070                                              tablet/pill/capsule
9071                                              tablet/pill/capsule
9072                                                             <NA>
9073                                                             <NA>
9074                                                             <NA>
9075                                                             <NA>
9076                                                             <NA>
9077                                                             <NA>
9078                                                             <NA>
9079                                                             <NA>
9080                                                             <NA>
9081                                                             <NA>
9082                                                             <NA>
9083                                                             <NA>
9084                                                             <NA>
9085                                                             <NA>
9086                                                             <NA>
9087                                                             <NA>
9088                                                             <NA>
9089                                                             <NA>
9090                                                             <NA>
9091                                                             <NA>
9092                                                             <NA>
9093                                                             <NA>
9094                                                  based on weight
9095                                                  based on weight
9096                                                             <NA>
9097                                                             <NA>
9098                                                  based on weight
9099                                                             <NA>
9100                                                      unspecified
9101                                                      unspecified
9102                                                             <NA>
9103                                                             <NA>
9104                                                             <NA>
9105                                                             <NA>
9106                                                                %
9107                                              tablet/pill/capsule
9108                                                             <NA>
9109                                                  0.25 inch strip
9110                                                             <NA>
9111                                                             <NA>
9112                                                             <NA>
9113                                                             <NA>
9114                                                             <NA>
9115                                                             <NA>
9116                                                             <NA>
9117                                                             <NA>
9118                                                       inch strip
9119                                                             <NA>
9120                                              tablet/pill/capsule
9121                                              tablet/pill/capsule
9122                                              tablet/pill/capsule
9123                                              tablet/pill/capsule
9124                                                             <NA>
9125                                                             <NA>
9126                                                             <NA>
9127                                                             <NA>
9128                                                             <NA>
9129                                                             <NA>
9130                                                             <NA>
9131                                                             <NA>
9132                                              tablet/pill/capsule
9133                                                             <NA>
9134                                              tablet/pill/capsule
9135                                                             <NA>
9136                                                     small amount
9137                                                             <NA>
9138                                                             <NA>
9139                                                             <NA>
9140                                                             <NA>
9141                                                             <NA>
9142                                                             <NA>
9143                                                             <NA>
9144                                              tablet/pill/capsule
9145                                                             <NA>
9146                                                     pack/package
9147                                                             <NA>
9148                                                             <NA>
9149                                                             <NA>
9150                                                               gm
9151                                                             <NA>
9152                                                             <NA>
9153                                                             <NA>
9154                                                             <NA>
9155                                                             <NA>
9156                                                             <NA>
9157                                                             <NA>
9158                                                             <NA>
9159                                                             <NA>
9160                                                  based on weight
9161                                                  based on weight
9162                                                             <NA>
9163                                                             <NA>
9164                                                  based on weight
9165                                              tablet/pill/capsule
9166                                                             <NA>
9167                                                             <NA>
9168                                                             <NA>
9169                                                             <NA>
9170                                                  based on weight
9171                                                  based on weight
9172                                                  based on weight
9173                                                             <NA>
9174                                                             <NA>
9175                                                             <NA>
9176                                                             <NA>
9177                                                             <NA>
9178                                                             <NA>
9179                                                             <NA>
9180                                                             <NA>
9181                                                     pack/package
9182                                                             <NA>
9183                                                             <NA>
9184                                                             <NA>
9185                                                             <NA>
9186                                                             <NA>
9187                                                             <NA>
9188                                                             <NA>
9189                                              tablet/pill/capsule
9190                                                             <NA>
9191                                                             <NA>
9192                                                             <NA>
9193                                                     pack/package
9194                                                             <NA>
9195                                                             <NA>
9196                                                             <NA>
9197                                              tablet/pill/capsule
9198                                              tablet/pill/capsule
9199                                                           collar
9200                                              tablet/pill/capsule
9201                                                             <NA>
9202                                            1 tablet/pill/capsule
9203                                                             <NA>
9204                                                             <NA>
9205                                                             <NA>
9206                                                             <NA>
9207                                                             <NA>
9208                                                             <NA>
9209                                              tablet/pill/capsule
9210                                                             <NA>
9211                                                             <NA>
9212                                                             <NA>
9213                                                             <NA>
9214                                                             <NA>
9215                                                             <NA>
9216                                                             <NA>
9217                                                             <NA>
9218                                                             <NA>
9219                                                            mg/ml
9220                                                             <NA>
9221                                                             <NA>
9222                                                             <NA>
9223                                                             <NA>
9224                                                             <NA>
9225                                                             <NA>
9226                                                             <NA>
9227                                                             <NA>
9228                                                             <NA>
9229                                                             <NA>
9230                                                     small amount
9231                                                             <NA>
9232                                                             pump
9233                                                             <NA>
9234                                                             <NA>
9235                                                             <NA>
9236                                                  based on weight
9237                                                             <NA>
9238                                                             <NA>
9239                                                             <NA>
9240                                                      as directed
9241                                                      unspecified
9242                                              tablet/pill/capsule
9243                                                             <NA>
9244                                                             <NA>
9245                                                             <NA>
9246                                                             <NA>
9247                                                             <NA>
9248                                              tablet/pill/capsule
9249                                                             <NA>
9250                                                             <NA>
9251                                                             <NA>
9252                                                     pack/package
9253                                                        as needed
9254                                              tablet/pill/capsule
9255                                                             <NA>
9256                                                             <NA>
9257                                                             <NA>
9258                                                             <NA>
9259                                                             <NA>
9260                                                             <NA>
9261                                                             <NA>
9262                                                             <NA>
9263                                                             <NA>
9264                                                             <NA>
9265                                                             <NA>
9266                                                             <NA>
9267                                                  based on weight
9268                                                  based on weight
9269                                            1 tablet/pill/capsule
9270                                            1 tablet/pill/capsule
9271                                                             <NA>
9272                                                             <NA>
9273                                                             <NA>
9274                                                             <NA>
9275                                                             <NA>
9276                                                             <NA>
9277                                                             <NA>
9278                                                             <NA>
9279                                                             <NA>
9280                                                             <NA>
9281                                                             <NA>
9282                                                             <NA>
9283                                                             <NA>
9284                                                             <NA>
9285                                                             <NA>
9286                                                             <NA>
9287                                                             <NA>
9288                                                             <NA>
9289                                                     pack/package
9290                                              tablet/pill/capsule
9291                                                             <NA>
9292                                                             <NA>
9293                                                             <NA>
9294                                                             <NA>
9295                                                             <NA>
9296                                                             <NA>
9297                                                             <NA>
9298                                                             <NA>
9299                                                  based on weight
9300                                                             <NA>
9301                                                             <NA>
9302                                                             <NA>
9303                                                             <NA>
9304                                                             <NA>
9305                                                             <NA>
9306                                                             <NA>
9307                                                             <NA>
9308                                                             <NA>
9309                                                             <NA>
9310                                                             <NA>
9311                                                             <NA>
9312                                                             <NA>
9313                                                             <NA>
9314                                                             <NA>
9315                                                             <NA>
9316                                                             <NA>
9317                                                             <NA>
9318                                                             <NA>
9319                                                             <NA>
9320                                                             <NA>
9321                                                             <NA>
9322                                                             <NA>
9323                                                             <NA>
9324                                                             <NA>
9325                                                             <NA>
9326                                              tablet/pill/capsule
9327                                                             <NA>
9328                                                             <NA>
9329                                                             <NA>
9330                                                             <NA>
9331                                                             <NA>
9332                                                             <NA>
9333                                                             <NA>
9334                                                             <NA>
9335                                                             <NA>
9336                                                             <NA>
9337                                                             <NA>
9338                                                             <NA>
9339                                                             <NA>
9340                                                             <NA>
9341                                                             <NA>
9342                                                             <NA>
9343                                                             <NA>
9344                                                             <NA>
9345                                                             <NA>
9346                                                             <NA>
9347                                                             <NA>
9348                                                             <NA>
9349                                                             <NA>
9350                                                             <NA>
9351                                                             <NA>
9352                                                             <NA>
9353                                                             <NA>
9354                                                             <NA>
9355                                                             <NA>
9356                                                             <NA>
9357                                                             <NA>
9358                                                             <NA>
9359                                                             <NA>
9360                                                             <NA>
9361                                                             <NA>
9362                                                             <NA>
9363                                                             <NA>
9364                                                             <NA>
9365                                                             <NA>
9366                                                             <NA>
9367                                                             <NA>
9368                                                             <NA>
9369                                                             <NA>
9370                                                             <NA>
9371                                                             <NA>
9372                                                             <NA>
9373                                                             <NA>
9374                                                             <NA>
9375                                                             <NA>
9376                                                             <NA>
9377                                                             <NA>
9378                                                             <NA>
9379                                                             <NA>
9380                                                             <NA>
9381                                                             <NA>
9382                                              tablet/pill/capsule
9383                                                      application
9384                                                             <NA>
9385                                                             <NA>
9386                                              tablet/pill/capsule
9387                                                      bottle/vial
9388                                                             <NA>
9389                                                             <NA>
9390                                                             <NA>
9391                                                             <NA>
9392                                                             <NA>
9393                                                             <NA>
9394                                                             <NA>
9395                                                             <NA>
9396                                                             <NA>
9397                                                             <NA>
9398                                                             <NA>
9399                                                             <NA>
9400                                                             <NA>
9401                                                             <NA>
9402                                                             <NA>
9403                                                             <NA>
9404                                                             <NA>
9405                                                             <NA>
9406                                                         inhalant
9407                                                             <NA>
9408                                                             <NA>
9409                                                             <NA>
9410                                                             <NA>
9411                                                             <NA>
9412                                                             <NA>
9413                                                             <NA>
9414                                                             <NA>
9415                                              tablet/pill/capsule
9416                                                             <NA>
9417                                                             <NA>
9418                                                             <NA>
9419                                                             <NA>
9420                                                             <NA>
9421                                                           collar
9422                                              tablet/pill/capsule
9423                                                             <NA>
9424                                                             <NA>
9425                                                             <NA>
9426                                            1 tablet/pill/capsule
9427                                                             <NA>
9428                                                             <NA>
9429                                                      application
9430                                                             <NA>
9431                                                             <NA>
9432                                                           collar
9433                                                             <NA>
9434                                                  based on weight
9435                                                      unspecified
9436                                              tablet/pill/capsule
9437                                                             <NA>
9438                                                     small amount
9439                                                             <NA>
9440                                              tablet/pill/capsule
9441                                              tablet/pill/capsule
9442                                                             <NA>
9443                                                             <NA>
9444                                                             <NA>
9445                                                             <NA>
9446                                                             <NA>
9447                                                             <NA>
9448                                                             <NA>
9449                                                             <NA>
9450                                                             <NA>
9451                                                             <NA>
9452                                                             <NA>
9453                                                                %
9454                                                       inch strip
9455                                                             <NA>
9456                                                                %
9457                                                             <NA>
9458                                                             <NA>
9459                                                             <NA>
9460                                                             <NA>
9461                                                             <NA>
9462                                                             <NA>
9463                                                             <NA>
9464                                                             <NA>
9465                                                             <NA>
9466                                                             <NA>
9467                                                             <NA>
9468                                                             <NA>
9469                                                             <NA>
9470                                                             <NA>
9471                                                             <NA>
9472                                                             <NA>
9473                                                             <NA>
9474                                                             <NA>
9475                                                             <NA>
9476                                                             <NA>
9477                                                             <NA>
9478                                                             <NA>
9479                                                             <NA>
9480                                                             <NA>
9481                                                             <NA>
9482                                                             <NA>
9483                                                             <NA>
9484                                                             <NA>
9485                                                             <NA>
9486                                                             <NA>
9487                                                             <NA>
9488                                                             <NA>
9489                                                             <NA>
9490                                                             <NA>
9491                                                             <NA>
9492                                                             <NA>
9493                                                             <NA>
9494                                                      unspecified
9495                                                      unspecified
9496                                                             <NA>
9497                                                             <NA>
9498                                                             <NA>
9499                                                             <NA>
9500                                                             <NA>
9501                                                             <NA>
9502                                                             <NA>
9503                                                             <NA>
9504                                                             <NA>
9505                                                             <NA>
9506                                                      unspecified
9507                                                             <NA>
9508                                                             <NA>
9509                                                             <NA>
9510                                                             <NA>
9511                                                             <NA>
9512                                                             <NA>
9513                                                             <NA>
9514                                                             <NA>
9515                                              tablet/pill/capsule
9516                                                 0.125 inch strip
9517                                                             <NA>
9518                                                             <NA>
9519                                                             <NA>
9520                                                             <NA>
9521                                                             <NA>
9522                                                             <NA>
9523                                                             <NA>
9524                                                             <NA>
9525                                                             <NA>
9526                                                             <NA>
9527                                                             <NA>
9528                                                             <NA>
9529                                                             <NA>
9530                                                             <NA>
9531                                                             <NA>
9532                                                             <NA>
9533                                                             <NA>
9534                                                             <NA>
9535                                                             <NA>
9536                                                             <NA>
9537                                                             <NA>
9538                                                             <NA>
9539                                                             <NA>
9540                                                             <NA>
9541                                                                %
9542                                                             <NA>
9543                                                             <NA>
9544                                                  based on weight
9545                                                             <NA>
9546                                                  based on weight
9547                                                             <NA>
9548                                                  based on weight
9549                                                  based on weight
9550                                                             <NA>
9551                                                             <NA>
9552                                                             <NA>
9553                                                             <NA>
9554                                                             <NA>
9555                                                             <NA>
9556                                                                %
9557                                                             <NA>
9558                                                             <NA>
9559                                                             <NA>
9560                                                             <NA>
9561                                                             <NA>
9562                                                             <NA>
9563                                                             <NA>
9564                                                             <NA>
9565                                                             <NA>
9566                                                             <NA>
9567                                                             <NA>
9568                                                             <NA>
9569                                                             <NA>
9570                                                             <NA>
9571                                                             <NA>
9572                                                             <NA>
9573                                              tablet/pill/capsule
9574                                              tablet/pill/capsule
9575                                              tablet/pill/capsule
9576                                                             <NA>
9577                                                             <NA>
9578                                                             <NA>
9579                                                             <NA>
9580                                                             <NA>
9581                                                             <NA>
9582                                                             <NA>
9583                                                             <NA>
9584                                            1 tablet/pill/capsule
9585                                                             <NA>
9586                                                             <NA>
9587                                              tablet/pill/capsule
9588                                                             <NA>
9589                                                             <NA>
9590                                                             <NA>
9591                                                             <NA>
9592                                                             <NA>
9593                                                             <NA>
9594                                                             <NA>
9595                                                             <NA>
9596                                                             <NA>
9597                                                             <NA>
9598                                                             <NA>
9599                                                            ml/hr
9600                                                  based on weight
9601                                                  based on weight
9602                                                             <NA>
9603                                                             <NA>
9604                                                             <NA>
9605                                                             <NA>
9606                                                             <NA>
9607                                                             <NA>
9608                                              tablet/pill/capsule
9609                                              tablet/pill/capsule
9610                                              tablet/pill/capsule
9611                                                             <NA>
9612                                                            spray
9613                                                            spray
9614                                                         wipe/pad
9615                                              tablet/pill/capsule
9616                                              tablet/pill/capsule
9617                                              tablet/pill/capsule
9618                                              tablet/pill/capsule
9619                                              tablet/pill/capsule
9620                                              tablet/pill/capsule
9621                                     based on weight (50-100 lbs)
9622                                                             <NA>
9623                                                             <NA>
9624                                                             <NA>
9625                                                             <NA>
9626                                                             <NA>
9627                                                             <NA>
9628                                                             <NA>
9629                                                             <NA>
9630                                              tablet/pill/capsule
9631                                                             <NA>
9632                                                  based on weight
9633                                                             <NA>
9634                                                             <NA>
9635                                                             <NA>
9636                                                             <NA>
9637                                                             <NA>
9638                                                  based on weight
9639                                                             <NA>
9640                                              tablet/pill/capsule
9641                                              tablet/pill/capsule
9642                                                             <NA>
9643                                              tablet/pill/capsule
9644                                                             <NA>
9645                                                             <NA>
9646                                                             <NA>
9647                                                             <NA>
9648                                                             <NA>
9649                                                             <NA>
9650                                                             <NA>
9651                                                             <NA>
9652                                                             <NA>
9653                                                             <NA>
9654                                                             <NA>
9655                                                             <NA>
9656                                                             <NA>
9657                                                  based on weight
9658                                                             <NA>
9659                                                             <NA>
9660                                                             <NA>
9661                                                             <NA>
9662                                                             <NA>
9663                                                             <NA>
9664                                                             <NA>
9665                                                             <NA>
9666                                                             <NA>
9667                                                             <NA>
9668                                                             <NA>
9669                                                             <NA>
9670                                                             <NA>
9671                                                             <NA>
9672                                                             <NA>
9673                                                             <NA>
9674                                                             <NA>
9675                                                             <NA>
9676                                                             <NA>
9677                                                             <NA>
9678                                                             <NA>
9679                                                             <NA>
9680                                                             <NA>
9681                                                             <NA>
9682                                                             <NA>
9683                                                             <NA>
9684                                                             <NA>
9685                                                             <NA>
9686                                                             <NA>
9687                                                             <NA>
9688                                                             <NA>
9689                                                             <NA>
9690                                                             <NA>
9691                                                             <NA>
9692                                                             <NA>
9693                                                             <NA>
9694                                                             <NA>
9695                                                             <NA>
9696                                                             <NA>
9697                                                             <NA>
9698                                                             <NA>
9699                                                             <NA>
9700                                                             <NA>
9701                                                             <NA>
9702                                                             <NA>
9703                                                             <NA>
9704                                                             <NA>
9705                                                             <NA>
9706                                                             <NA>
9707                                                             <NA>
9708                                                             <NA>
9709                                                             <NA>
9710                                                             <NA>
9711                                                             <NA>
9712                                                  based on weight
9713                                                             <NA>
9714                                                             <NA>
9715                                                             <NA>
9716                                                             <NA>
9717                                                  based on weight
9718                                                      unspecified
9719                                                             <NA>
9720                                                             <NA>
9721                                                             <NA>
9722                                                                %
9723                                                             <NA>
9724                                                             <NA>
9725                                                             <NA>
9726                                                             <NA>
9727                                                             <NA>
9728                                                             <NA>
9729                                                  based on weight
9730                                                  based on weight
9731                                                             <NA>
9732                                                             <NA>
9733                                                             <NA>
9734                                                             <NA>
9735                                                             <NA>
9736                                                             <NA>
9737                                                             <NA>
9738                                                             <NA>
9739                                                             <NA>
9740                                                             <NA>
9741                                                             <NA>
9742                                                             <NA>
9743                                                             <NA>
9744                                                           powder
9745                                                             <NA>
9746                                                             <NA>
9747                                                             <NA>
9748                                                             <NA>
9749                                                             <NA>
9750                                                             <NA>
9751                                                             <NA>
9752                                                             <NA>
9753                                                             <NA>
9754                                                             <NA>
9755                                                             <NA>
9756                                                             <NA>
9757                                                             <NA>
9758                                                             <NA>
9759                      272 mcg ivermectin, 227 mg pyrantel pamoate
9760                                                             <NA>
9761                                                  based on weight
9762                                                             <NA>
9763                                                             <NA>
9764                                                             <NA>
9765                                                             <NA>
9766                                                  based on weight
9767                                                             <NA>
9768                                                             <NA>
9769                                                             <NA>
9770                                                  based on weight
9771                                                  based on weight
9772                                                             <NA>
9773                                                             <NA>
9774                                                             <NA>
9775                                                             <NA>
9776                                                             <NA>
9777                                                             <NA>
9778                                                             <NA>
9779                                                             <NA>
9780                                                             <NA>
9781                                                                %
9782                                                             <NA>
9783                                                             <NA>
9784                                                             <NA>
9785                                                             <NA>
9786                                                             <NA>
9787                                                             <NA>
9788                                                             <NA>
9789                                                             <NA>
9790                                                             <NA>
9791                                                             <NA>
9792                                                             <NA>
9793                                                             <NA>
9794                                                             <NA>
9795                                                             <NA>
9796                                                             <NA>
9797                                                             <NA>
9798                                                             <NA>
9799                                                             <NA>
9800                                     based on weight (50-100 lbs)
9801                                                             <NA>
9802                                                             <NA>
9803                                                             <NA>
9804                                                             <NA>
9805                                                             <NA>
9806                                                             <NA>
9807                                                             <NA>
9808                                                             <NA>
9809                                                             <NA>
9810                                                             <NA>
9811                                                             <NA>
9812                                                             <NA>
9813                                                             <NA>
9814                                                     pack/package
9815                                                             <NA>
9816                                                             <NA>
9817                                                             <NA>
9818                                                             <NA>
9819                                                             <NA>
9820                                                             <NA>
9821                                                     pack/package
9822                                                             <NA>
9823                                                             <NA>
9824                                                             <NA>
9825                                                             <NA>
9826                                                       inch strip
9827                                                             <NA>
9828                                                             <NA>
9829                                                             <NA>
9830                                                             <NA>
9831                                                             <NA>
9832                                                             <NA>
9833                                                  0.25 inch strip
9834                                                             <NA>
9835                                                             <NA>
9836                                                             <NA>
9837                                                             <NA>
9838                                                             <NA>
9839                                                             <NA>
9840                                                             <NA>
9841                                                             <NA>
9842                                                             <NA>
9843                                                             <NA>
9844                                                             <NA>
9845                                                             <NA>
9846                                                             <NA>
9847                                                             <NA>
9848                                                             <NA>
9849                                                             <NA>
9850                                                             <NA>
9851                                                             <NA>
9852                                                             <NA>
9853                                                             <NA>
9854                                                       inch strip
9855                                                             <NA>
9856                                                             <NA>
9857                                                             <NA>
9858                                                             <NA>
9859                                                             <NA>
9860                                                             <NA>
9861                                                             <NA>
9862                                                             <NA>
9863                                                         wipe/pad
9864                                                             <NA>
9865                                                             pump
9866                                                             <NA>
9867                                                             <NA>
9868                                                             <NA>
9869                                                             <NA>
9870                                                             <NA>
9871                                                             <NA>
9872                                                             <NA>
9873                                                             <NA>
9874                                                             <NA>
9875                                                             <NA>
9876                                                             <NA>
9877                                                             <NA>
9878                                                             <NA>
9879                                                             <NA>
9880                                                             <NA>
9881                                                             <NA>
9882                                                             <NA>
9883                                                             <NA>
9884                                                               1%
9885                                                             <NA>
9886                                                             <NA>
9887                                                             <NA>
9888                                                       inch strip
9889                                              tablet/pill/capsule
9890                                                      bottle/vial
9891                                                       inch strip
9892                                                     small amount
9893                                     based on weight (60-120 lbs)
9894                                                             <NA>
9895                                                             <NA>
9896                                                             <NA>
9897                                     based on weight (50-100 lbs)
9898                                     based on weight (60-120 lbs)
9899                                              tablet/pill/capsule
9900                                            1 tablet/pill/capsule
9901                                            1 tablet/pill/capsule
9902                                            1 tablet/pill/capsule
9903                                                  0.25 inch strip
9904                                              tablet/pill/capsule
9905                                                             <NA>
9906                                                             <NA>
9907                                                             <NA>
9908                                                             <NA>
9909                                                             <NA>
9910                                                             <NA>
9911                                                             <NA>
9912                                                             <NA>
9913                                                             <NA>
9914                                                             <NA>
9915                                              tablet/pill/capsule
9916                                                             tube
9917                                                  based on weight
9918                                                  based on weight
9919                                                             <NA>
9920                                                             <NA>
9921                                                             <NA>
9922                                                             <NA>
9923                                                             <NA>
9924                                                             <NA>
9925                                                             <NA>
9926                                                      combination
9927                                                             <NA>
9928                                                             <NA>
9929                                                             <NA>
9930                                                             <NA>
9931                                            1 tablet/pill/capsule
9932                                                             <NA>
9933                                                             <NA>
9934                                                             <NA>
9935                                              tablet/pill/capsule
9936                                                             <NA>
9937                                                             <NA>
9938                                                             <NA>
9939                                                             <NA>
9940                                                             <NA>
9941                                                             <NA>
9942                                                           cup(s)
9943                                                             <NA>
9944                                                      unspecified
9945                                                  based on weight
9946                                                             <NA>
9947                                                             <NA>
9948                                                             <NA>
9949                                                             <NA>
9950                                                             <NA>
9951                                                             <NA>
9952                                                             <NA>
9953                                                             <NA>
9954                                              tablet/pill/capsule
9955                                                             <NA>
9956                                                             <NA>
9957                                                             <NA>
9958                                                             <NA>
9959                                                             <NA>
9960                                                             <NA>
9961                                                           1 tube
9962                                                             <NA>
9963                                                  based on weight
9964                                        based on weight (55+ lbs)
9965                                                             <NA>
9966                                                  based on weight
9967                                                             <NA>
9968                                                  based on weight
9969                                                             <NA>
9970                                                     small amount
9971                                                             <NA>
9972                                                             <NA>
9973                                                             <NA>
9974                                                             <NA>
9975                                                             <NA>
9976                                                           1 drop
9977                                                             <NA>
9978                                                             <NA>
9979                                                             <NA>
9980                                                             <NA>
9981                                                             <NA>
9982                                                             <NA>
9983                                                                %
9984                                                             <NA>
9985                                                             <NA>
9986                                                             <NA>
9987                                                            spray
9988                                                             <NA>
9989                                                             <NA>
9990                                                             <NA>
9991                                                             <NA>
9992                                                             <NA>
9993                                                             <NA>
9994                                                             <NA>
9995                                                             <NA>
9996                                                             <NA>
9997                                                             <NA>
9998                                                             <NA>
9999                                                             <NA>
10000                                                            <NA>
10001                                                            <NA>
10002                                                            <NA>
10003                                                            <NA>
10004                                                            <NA>
10005                                                            <NA>
10006                                                    small amount
10007                                                            <NA>
10008                                                            <NA>
10009                                                            <NA>
10010                                                            <NA>
10011                                                            <NA>
10012                                                            <NA>
10013                                                            <NA>
10014                                                            <NA>
10015                                                           spray
10016                                                            <NA>
10017                                                 based on weight
10018                                                            <NA>
10019                                                            <NA>
10020                                                            <NA>
10021                                                            <NA>
10022                                                            <NA>
10023                                              transient-gradient
10024                                                            <NA>
10025                                                            <NA>
10026                                                            <NA>
10027                                                     application
10028                                                            <NA>
10029                                                            <NA>
10030                                                            <NA>
10031                                                            <NA>
10032                                                            <NA>
10033                                                            <NA>
10034                                                            <NA>
10035                                                            <NA>
10036                                                            <NA>
10037                                                            <NA>
10038                                                            <NA>
10039                                                            <NA>
10040                                                            <NA>
10041                                                            <NA>
10042                                                            <NA>
10043                                                            <NA>
10044                                                            <NA>
10045                                                            <NA>
10046                                                            <NA>
10047                                                            <NA>
10048                                                            <NA>
10049                                                            <NA>
10050                                                            <NA>
10051                                                            <NA>
10052                                                            <NA>
10053                                                 based on weight
10054                                                            <NA>
10055                                                            <NA>
10056                                                            <NA>
10057                                                            <NA>
10058                                                            <NA>
10059                                                            <NA>
10060                                                            <NA>
10061                                                    small amount
10062                                                            <NA>
10063                                                 based on weight
10064                                                            <NA>
10065                                                            <NA>
10066                                                 based on weight
10067                                                            <NA>
10068                                                            <NA>
10069                                                            <NA>
10070                                                            <NA>
10071                                                            <NA>
10072                                                            <NA>
10073                                                            <NA>
10074                                                            <NA>
10075                                                            <NA>
10076                                                            <NA>
10077                                                            <NA>
10078                                                            <NA>
10079                                                            <NA>
10080                                                            <NA>
10081                                                            <NA>
10082                                                            <NA>
10083                                                            <NA>
10084                                                            <NA>
10085                                                            <NA>
10086                                                            <NA>
10087                                                            <NA>
10088                                                            <NA>
10089                                                            <NA>
10090                                                            <NA>
10091                                                            <NA>
10092                                                            <NA>
10093                                                            <NA>
10094                                                            <NA>
10095                                                            <NA>
10096                                                            <NA>
10097                                                            <NA>
10098                                                            <NA>
10099                                                            <NA>
10100                                                            <NA>
10101                                                            <NA>
10102                                                            <NA>
10103                                                            <NA>
10104                                                            <NA>
10105                                                            <NA>
10106                                                            <NA>
10107                                                            <NA>
10108                                                            <NA>
10109                                                            <NA>
10110                                                            <NA>
10111                                                            <NA>
10112                                                            <NA>
10113                                                            <NA>
10114                                                            <NA>
10115                                             tablet/pill/capsule
10116                                                            <NA>
10117                                                            <NA>
10118                                                            <NA>
10119                                                     combination
10120                                                            <NA>
10121                                             tablet/pill/capsule
10122                                                            <NA>
10123                                                            <NA>
10124                                                            <NA>
10125                                                            <NA>
10126                                                            <NA>
10127                                                            <NA>
10128                                                            <NA>
10129                                                            <NA>
10130                                                            <NA>
10131                                                            <NA>
10132                                                            <NA>
10133                                                            <NA>
10134                                             tablet/pill/capsule
10135                                                            <NA>
10136                                                            <NA>
10137                                                            <NA>
10138                                                            <NA>
10139                                                            <NA>
10140                                                            <NA>
10141                                                            <NA>
10142                                             tablet/pill/capsule
10143                                                           scoop
10144                                                           scoop
10145                                                            <NA>
10146                                                            <NA>
10147                                                            <NA>
10148                                                            <NA>
10149                                                            <NA>
10150                                                            <NA>
10151                                                            <NA>
10152                                                            <NA>
10153                                                            <NA>
10154                                                            <NA>
10155                                                            <NA>
10156                                                            <NA>
10157                                                            <NA>
10158                                                            <NA>
10159                                                            <NA>
10160                                                            <NA>
10161                                                            <NA>
10162                                                            <NA>
10163                                                            <NA>
10164                                                 based on weight
10165                                                            <NA>
10166                                                            <NA>
10167                                    based on weight (50-100 lbs)
10168                                                            <NA>
10169                                                            <NA>
10170                                    based on weight (50-100 lbs)
10171                                                            <NA>
10172                                             tablet/pill/capsule
10173                                                            <NA>
10174                                                            <NA>
10175                                           1 tablet/pill/capsule
10176                                                    small amount
10177                                                            <NA>
10178                                                            <NA>
10179                                                            <NA>
10180                                                            <NA>
10181                                    based on weight (50-100 lbs)
10182                                                            <NA>
10183                                                            <NA>
10184                                                            <NA>
10185                                                            <NA>
10186                                                            <NA>
10187                                                    small amount
10188                                             tablet/pill/capsule
10189                                                            <NA>
10190                                                            <NA>
10191                                                            <NA>
10192                                                            <NA>
10193                                                            <NA>
10194                                                            <NA>
10195                                                            <NA>
10196                                                            <NA>
10197                                                            <NA>
10198                                                            <NA>
10199                                                            <NA>
10200                                             tablet/pill/capsule
10201                                                            <NA>
10202                                                            <NA>
10203                                                            <NA>
10204                                                            <NA>
10205                                                            <NA>
10206                                                            <NA>
10207                                                            <NA>
10208                                                            <NA>
10209                                                 based on weight
10210                                                            <NA>
10211                                                            <NA>
10212                                                            <NA>
10213                                                            <NA>
10214                                                            <NA>
10215                                                            <NA>
10216                                                            <NA>
10217                                                            <NA>
10218                                                            <NA>
10219                                                 based on weight
10220                                                            <NA>
10221                                                            <NA>
10222                                                            <NA>
10223                                                            <NA>
10224                                                            <NA>
10225                                                            <NA>
10226                                                            <NA>
10227                                                            <NA>
10228                                                            <NA>
10229                                                            <NA>
10230                                    based on weight (50-100 lbs)
10231                                    based on weight (60-120 lbs)
10232                                                            <NA>
10233                                                            <NA>
10234                                                            <NA>
10235                                                            <NA>
10236                                                            <NA>
10237                                                            <NA>
10238                                                            <NA>
10239                                                            <NA>
10240                                                            <NA>
10241                                                            <NA>
10242                                                            <NA>
10243                                                            <NA>
10244                                                            <NA>
10245                                             tablet/pill/capsule
10246                                                            <NA>
10247                                             tablet/pill/capsule
10248                                                            <NA>
10249                                     based on weight (44-88 lbs)
10250                                                            <NA>
10251                                                            <NA>
10252                                                            <NA>
10253                                                            <NA>
10254                                                            <NA>
10255                                                            <NA>
10256                                                            <NA>
10257                                                            <NA>
10258                                                            <NA>
10259                                                            <NA>
10260                                                            <NA>
10261                                     based on weight (44-88 lbs)
10262                                                            <NA>
10263                                                            <NA>
10264                                                 moderate amount
10265                                                            <NA>
10266                                                            <NA>
10267                                                            <NA>
10268                                             tablet/pill/capsule
10269                                                            <NA>
10270                                                            <NA>
10271                                                            <NA>
10272                                                            <NA>
10273                                                 based on weight
10274                                                 based on weight
10275                                                 based on weight
10276                                                 based on weight
10277                                                            <NA>
10278                                             tablet/pill/capsule
10279                                                            <NA>
10280                                                            <NA>
10281                                                            <NA>
10282                                                            <NA>
10283                                                    pack/package
10284                                                            <NA>
10285                                             tablet/pill/capsule
10286                                             tablet/pill/capsule
10287                                                            <NA>
10288                                                            <NA>
10289                                                            <NA>
10290                                                            <NA>
10291                                                           mg/ml
10292                                                            <NA>
10293                                                               %
10294                                                            <NA>
10295                                                            <NA>
10296                                                            <NA>
10297                                                            <NA>
10298                                                            <NA>
10299                                                            <NA>
10300                                                     bottle/vial
10301                                                            <NA>
10302                                                            <NA>
10303                                                            <NA>
10304                                                            <NA>
10305                                                            <NA>
10306                                                            <NA>
10307                                                            <NA>
10308                                                            <NA>
10309                                                            <NA>
10310                                                            <NA>
10311                                                            <NA>
10312                                                            <NA>
10313                                                            <NA>
10314                                                            <NA>
10315                                                            <NA>
10316                                                            <NA>
10317                                                            <NA>
10318                                                            <NA>
10319                                                            <NA>
10320                                                            <NA>
10321                                                            <NA>
10322                                                            <NA>
10323                                                            <NA>
10324                                                            <NA>
10325                                                            <NA>
10326                                                            <NA>
10327                                                            <NA>
10328                                                            <NA>
10329                                                            <NA>
10330                                                            <NA>
10331                                                            <NA>
10332                                                 based on weight
10333                                                 based on weight
10334                                             tablet/pill/capsule
10335                                             tablet/pill/capsule
10336                                                            <NA>
10337                                                            <NA>
10338                                                            <NA>
10339                                                            <NA>
10340                                                            <NA>
10341                                                            <NA>
10342                                                            <NA>
10343                                                            <NA>
10344                                                            <NA>
10345                                                    small amount
10346                                                            <NA>
10347                                             tablet/pill/capsule
10348                                             tablet/pill/capsule
10349                                                    small amount
10350                                                            <NA>
10351                                                            <NA>
10352                                             tablet/pill/capsule
10353                                                            <NA>
10354                                                            <NA>
10355                                                            <NA>
10356                                                    small amount
10357                                                            <NA>
10358                                                            <NA>
10359                                                            <NA>
10360                                                            <NA>
10361                                             tablet/pill/capsule
10362                                                            <NA>
10363                                             tablet/pill/capsule
10364                                                            <NA>
10365                                             tablet/pill/capsule
10366                                                            tube
10367                                                            <NA>
10368                                                            <NA>
10369                                                            <NA>
10370                                                            <NA>
10371                                                            <NA>
10372                                                     combination
10373                                                            <NA>
10374                                                     combination
10375                                                            <NA>
10376                                                            <NA>
10377                                                            <NA>
10378                                                            <NA>
10379                                                            <NA>
10380                                                            <NA>
10381                                                            <NA>
10382                                                            <NA>
10383                                                            <NA>
10384                                                            <NA>
10385                                                            <NA>
10386                                                            <NA>
10387                                                            <NA>
10388                                                            <NA>
10389                                                            <NA>
10390                                                            <NA>
10391                                                            <NA>
10392                                                            <NA>
10393                                                            <NA>
10394                                                            <NA>
10395                                                            <NA>
10396                                                            <NA>
10397                                                            <NA>
10398                                                            <NA>
10399                                                            <NA>
10400                                                            <NA>
10401                                                            <NA>
10402                                                            <NA>
10403                                                          1 tube
10404                                                            <NA>
10405                                                 based on weight
10406                                                            <NA>
10407                                                            <NA>
10408                                             tablet/pill/capsule
10409                                                            <NA>
10410                                                            <NA>
10411                                                            <NA>
10412                                                            <NA>
10413                                                            <NA>
10414                                                            <NA>
10415                                                            <NA>
10416                                                            <NA>
10417                                                            <NA>
10418                                                            <NA>
10419                                                            <NA>
10420                                                            <NA>
10421                                                            <NA>
10422                                                            <NA>
10423                                                            <NA>
10424                                                            <NA>
10425                                                            <NA>
10426                                                               %
10427                                                            <NA>
10428                                                            <NA>
10429                                                            <NA>
10430                                                            <NA>
10431                                                            <NA>
10432                                                            <NA>
10433                                                            <NA>
10434                                                            <NA>
10435                                                            <NA>
10436                                                        wipe/pad
10437                                                            <NA>
10438                                                            <NA>
10439                                                            <NA>
10440                                                            <NA>
10441                                                            <NA>
10442                                                            <NA>
10443                                                            <NA>
10444                                                            <NA>
10445                                                           spray
10446                                                            <NA>
10447                                                            <NA>
10448                                                            <NA>
10449                                                            <NA>
10450                                                            <NA>
10451                                                            <NA>
10452                                                            <NA>
10453                                                            <NA>
10454                                                            <NA>
10455                                                            <NA>
10456                                                            <NA>
10457                                                            <NA>
10458                                                            <NA>
10459                                                            <NA>
10460                                                            <NA>
10461                                                            <NA>
10462                                                            <NA>
10463                                                            <NA>
10464                                                            <NA>
10465                                                            <NA>
10466                                                            <NA>
10467                                                           mg/ml
10468                                                            <NA>
10469                                                            <NA>
10470                                                            <NA>
10471                                                            <NA>
10472                                                            <NA>
10473                                                            <NA>
10474                                                            <NA>
10475                                                            <NA>
10476                                                            <NA>
10477                                                     bottle/vial
10478                                    based on weight (50-100 lbs)
10479                                                            <NA>
10480                                                            <NA>
10481                                                            <NA>
10482                                                            <NA>
10483                                                            <NA>
10484                                                            <NA>
10485                                                            <NA>
10486                                                            <NA>
10487                                                            <NA>
10488                                                            <NA>
10489                                                            <NA>
10490                                                            <NA>
10491                                                            <NA>
10492                                                            <NA>
10493                                                            <NA>
10494                                                            <NA>
10495                                                            <NA>
10496                                                            <NA>
10497                                                            <NA>
10498                                                            <NA>
10499                                                            <NA>
10500                                                            <NA>
10501                                                            <NA>
10502                                                            <NA>
10503                                           1 tablet/pill/capsule
10504                                                            <NA>
10505                                           1 tablet/pill/capsule
10506                                                            <NA>
10507                                                            <NA>
10508                                                            <NA>
10509                                                            <NA>
10510                                                            <NA>
10511                                                            <NA>
10512                                                            <NA>
10513                                                            <NA>
10514                                                            <NA>
10515                                                            <NA>
10516                                                            <NA>
10517                                                            <NA>
10518                                                            <NA>
10519                                                            <NA>
10520                                                            <NA>
10521                                                            <NA>
10522                                                            <NA>
10523                                                            <NA>
10524                                                            <NA>
10525                                                            <NA>
10526                                                     unspecified
10527                                                            <NA>
10528                                                            <NA>
10529                                                    small amount
10530                                                               %
10531                                                            <NA>
10532                                                            <NA>
10533                                                            <NA>
10534                                                            <NA>
10535                                                            <NA>
10536                                                            <NA>
10537                                                            <NA>
10538                                                            <NA>
10539                                                            <NA>
10540                                                            <NA>
10541                                                            <NA>
10542                                                            <NA>
10543                                                            <NA>
10544                                                            <NA>
10545                                                            <NA>
10546                                                            <NA>
10547                                                            <NA>
10548                                                            <NA>
10549                                                            <NA>
10550                                                            <NA>
10551                                                            <NA>
10552                                                            <NA>
10553                                                            <NA>
10554                                                            <NA>
10555                                                     application
10556                                                            <NA>
10557                                                            <NA>
10558                                                            <NA>
10559                                                            <NA>
10560                                                            <NA>
10561                                                            <NA>
10562                                                            <NA>
10563                                                            <NA>
10564                                                            <NA>
10565                                                            <NA>
10566                                                            <NA>
10567                                                            <NA>
10568                                                            <NA>
10569                                                            <NA>
10570                                                            <NA>
10571                                                            <NA>
10572                                                            <NA>
10573                                                            <NA>
10574                                                            <NA>
10575                                                    small amount
10576                                                            <NA>
10577                                                            <NA>
10578                                                            <NA>
10579                                                            <NA>
10580                                                            <NA>
10581                                                            <NA>
10582                                                            <NA>
10583                                                 based on weight
10584                                                            <NA>
10585                                                            <NA>
10586                                                            <NA>
10587                                                            <NA>
10588                                             tablet/pill/capsule
10589                                             tablet/pill/capsule
10590                                             tablet/pill/capsule
10591                                           1 tablet/pill/capsule
10592                                                            <NA>
10593                                                            <NA>
10594                                                 based on weight
10595                                             tablet/pill/capsule
10596                                                            <NA>
10597                                                            <NA>
10598                                                            <NA>
10599                                                            <NA>
10600                                                            <NA>
10601                                                            <NA>
10602                                                            <NA>
10603                                                            <NA>
10604                                                            <NA>
10605                                                            <NA>
10606                                                            <NA>
10607                                                            <NA>
10608                                                          mcg/hr
10609                                                            <NA>
10610                                                            <NA>
10611                                                            <NA>
10612                                                            <NA>
10613                                                            <NA>
10614                                                            <NA>
10615                                                            <NA>
10616                                                           spray
10617                                                            <NA>
10618                                             tablet/pill/capsule
10619                                             tablet/pill/capsule
10620                                                            <NA>
10621                                                            <NA>
10622                                                            <NA>
10623                                                            <NA>
10624                                                 based on weight
10625                                                            <NA>
10626                                                            <NA>
10627                                                            <NA>
10628                                                      inch strip
10629                                                            <NA>
10630                                                            <NA>
10631                                                            <NA>
10632                                                            <NA>
10633                                                            <NA>
10634                                                            <NA>
10635                                                            <NA>
10636                                                            <NA>
10637                                                            <NA>
10638                                                            <NA>
10639                                                            <NA>
10640                                                            <NA>
10641                                                            <NA>
10642                                                            <NA>
10643                                                            <NA>
10644                                                            <NA>
10645                                                            <NA>
10646                                                            <NA>
10647                                                            <NA>
10648                                                            <NA>
10649                                                            <NA>
10650                                                            <NA>
10651                                                            <NA>
10652                                                            <NA>
10653                                             tablet/pill/capsule
10654                                                            <NA>
10655                                    based on weight (50-100 lbs)
10656                                                            <NA>
10657                                                            <NA>
10658                                                            <NA>
10659                                                            <NA>
10660                                                            <NA>
10661                                                            <NA>
10662                                                            <NA>
10663                                                            <NA>
10664                                                            <NA>
10665                                                            <NA>
10666                                                            <NA>
10667                                                            <NA>
10668                                                            <NA>
10669                                                            <NA>
10670                                                            <NA>
10671                                                            <NA>
10672                                                            <NA>
10673                                                            <NA>
10674                                             tablet/pill/capsule
10675                                                            <NA>
10676                                                            <NA>
10677                                                            <NA>
10678                                                            <NA>
10679                                                            <NA>
10680                                                            <NA>
10681                                                            <NA>
10682                                                            <NA>
10683                                    based on weight (50-100 lbs)
10684                                    based on weight (50-100 lbs)
10685                                                 based on weight
10686                                                     unspecified
10687                                                      1-2 scoops
10688                                                            <NA>
10689                                    based on weight (50-100 lbs)
10690                                                            <NA>
10691                                                            <NA>
10692                                                            <NA>
10693                                                            <NA>
10694                                    based on weight (50-100 lbs)
10695                                                            <NA>
10696                                                            <NA>
10697                                                            <NA>
10698                                                            <NA>
10699                                                            <NA>
10700                                                            <NA>
10701                                                            <NA>
10702                                                            <NA>
10703                                                            <NA>
10704                                                            <NA>
10705                                                            <NA>
10706                                                            <NA>
10707                                    based on weight (50-100 lbs)
10708                                                            <NA>
10709                                                            <NA>
10710                                                            <NA>
10711                                    based on weight (50-100 lbs)
10712                                                 based on weight
10713                                                     unspecified
10714                                                      1-2 scoops
10715                                                            <NA>
10716                                                            <NA>
10717                                    based on weight (50-100 lbs)
10718                                                            <NA>
10719                                                            <NA>
10720                                                            <NA>
10721                                                            <NA>
10722                                                            <NA>
10723                                                            <NA>
10724                                                            <NA>
10725                                    based on weight (50-100 lbs)
10726                                                          powder
10727                                                     unspecified
10728                                                            <NA>
10729                                                            <NA>
10730                                                            <NA>
10731                                                            <NA>
10732                                                            <NA>
10733                                                            <NA>
10734                                                            <NA>
10735                                                            <NA>
10736                                                            <NA>
10737                                                            <NA>
10738                                                            <NA>
10739                                                            <NA>
10740                                                            <NA>
10741                                                            <NA>
10742                                                            <NA>
10743                                                        wipe/pad
10744                                                            <NA>
10745                                                            <NA>
10746                                                            <NA>
10747                                                            <NA>
10748                                                            <NA>
10749                                                            <NA>
10750                                                            <NA>
10751                                                            <NA>
10752                                                            <NA>
10753                                                            <NA>
10754                                                            <NA>
10755                                                            <NA>
10756                                           1 tablet/pill/capsule
10757                                                            <NA>
10758                                                            <NA>
10759                                                            <NA>
10760                                                            <NA>
10761                                                            <NA>
10762                                                            <NA>
10763                                                            <NA>
10764                                                            <NA>
10765                                                            <NA>
10766                                                            <NA>
10767                                                            <NA>
10768                                                            <NA>
10769                                                            <NA>
10770                                                            <NA>
10771                                                            <NA>
10772                                                            <NA>
10773                                                            <NA>
10774                                                            <NA>
10775                                                            <NA>
10776                                                            <NA>
10777                                                            <NA>
10778                                                            <NA>
10779                                                            <NA>
10780                                                 based on weight
10781                                                 based on weight
10782                                                            <NA>
10783                                                            <NA>
10784                                                            <NA>
10785                                                            <NA>
10786                                                            <NA>
10787                                                            <NA>
10788                                                            <NA>
10789                                                            <NA>
10790                                                            <NA>
10791                                                            <NA>
10792                                                            <NA>
10793                                                            <NA>
10794                                                 based on weight
10795                                                            <NA>
10796                                                     combination
10797                                                            <NA>
10798                                                            <NA>
10799                                                            <NA>
10800                                                            <NA>
10801                                                            <NA>
10802                                                            <NA>
10803                                             tablet/pill/capsule
10804                                                            <NA>
10805                                             tablet/pill/capsule
10806                                                            <NA>
10807                                                            <NA>
10808                                                            <NA>
10809                                                            <NA>
10810                                                            <NA>
10811                                                            <NA>
10812                                                            <NA>
10813                                                            <NA>
10814                                                            <NA>
10815                                                            <NA>
10816                                                            <NA>
10817                                                            <NA>
10818                                                            <NA>
10819                                             tablet/pill/capsule
10820                                             tablet/pill/capsule
10821                                                            <NA>
10822                                                            <NA>
10823                                                            <NA>
10824                                                 based on weight
10825                                                          collar
10826                                                            <NA>
10827                                                          collar
10828                                                            <NA>
10829                                                            <NA>
10830                                             tablet/pill/capsule
10831                                                            <NA>
10832                                                            <NA>
10833                                                            <NA>
10834                                                            <NA>
10835                                                            <NA>
10836                                                            <NA>
10837                                                  125 mg, 500 mg
10838                                                            <NA>
10839                                                            <NA>
10840                                                            <NA>
10841                     2 mg prednisone, 5 mg trimeprazine tartrate
10842                                    based on weight (50-100 lbs)
10843                                    based on weight (85-130 lbs)
10844                                                            <NA>
10845                                                            <NA>
10846                                             tablet/pill/capsule
10847                                                            <NA>
10848                                                            <NA>
10849                                                 based on weight
10850                                                 based on weight
10851                                                 based on weight
10852                                                            <NA>
10853                                                    small amount
10854                                                            <NA>
10855                                                            <NA>
10856                                                            <NA>
10857                                                            <NA>
10858                                                            <NA>
10859                                                            <NA>
10860                                                            <NA>
10861                                                            <NA>
10862                                                            <NA>
10863                                                            pump
10864                                                            <NA>
10865                                                            <NA>
10866                                                            <NA>
10867                                                            <NA>
10868                                                            <NA>
10869                                                            <NA>
10870                                             tablet/pill/capsule
10871                                                     bottle/vial
10872                                                            <NA>
10873                                                            <NA>
10874                                             tablet/pill/capsule
10875                                                            <NA>
10876                                                            <NA>
10877                                             tablet/pill/capsule
10878                                             tablet/pill/capsule
10879                                                            <NA>
10880                                                            <NA>
10881                                                            <NA>
10882                                                            <NA>
10883                                                            <NA>
10884                                                            <NA>
10885                                                            <NA>
10886                                                            <NA>
10887                                                            <NA>
10888                                                            <NA>
10889                                                            <NA>
10890                                                            <NA>
10891                                                            <NA>
10892                                                            <NA>
10893                                                            <NA>
10894                                                            <NA>
10895                                                            <NA>
10896                                                            <NA>
10897                                                            <NA>
10898                                                            <NA>
10899                                                            <NA>
10900                                                            <NA>
10901                                                            <NA>
10902                                                            <NA>
10903                                                            <NA>
10904                                                            <NA>
10905                                                           spray
10906                                                            <NA>
10907                                                            <NA>
10908                                                            <NA>
10909                                                            <NA>
10910                                                            <NA>
10911                                                            <NA>
10912                                                            <NA>
10913                                                            <NA>
10914                                                            <NA>
10915                                                            <NA>
10916                                                            <NA>
10917                                                           drops
10918                                                            <NA>
10919                                                    small amount
10920                                                            <NA>
10921                                                            <NA>
10922                                                            <NA>
10923                                                            <NA>
10924                                                            <NA>
10925                                                            <NA>
10926                                                            <NA>
10927                                    based on weight (60-120 lbs)
10928                                                            tube
10929                                                            tube
10930                                                            <NA>
10931                                                            <NA>
10932                                                 based on weight
10933                                                 based on weight
10934                                                 based on weight
10935                                                            <NA>
10936                                             tablet/pill/capsule
10937                                                            <NA>
10938                                             tablet/pill/capsule
10939                                                      inch strip
10940                                                            <NA>
10941                                                            <NA>
10942                                                            <NA>
10943                                                            <NA>
10944                                                            <NA>
10945                                                            <NA>
10946                                                            <NA>
10947                                                            <NA>
10948                                                            <NA>
10949                                                            <NA>
10950                                                 based on weight
10951                                                            <NA>
10952                                                            <NA>
10953                                                            <NA>
10954                                                            <NA>
10955                                                            <NA>
10956                                                            <NA>
10957                                                            <NA>
10958                                                            <NA>
10959                                                            <NA>
10960                                                            <NA>
10961                                                            <NA>
10962                                                            <NA>
10963                                                            <NA>
10964                                                            <NA>
10965                                                            <NA>
10966                                                 based on weight
10967                                                 based on weight
10968                                             tablet/pill/capsule
10969                                             tablet/pill/capsule
10970                                             tablet/pill/capsule
10971                                             tablet/pill/capsule
10972                                                            <NA>
10973                                                            <NA>
10974                                             tablet/pill/capsule
10975                                                            <NA>
10976                                                            <NA>
10977                                                            <NA>
10978                                                            <NA>
10979                                                            <NA>
10980                                                            <NA>
10981                                                            <NA>
10982                                                            <NA>
10983                                                            <NA>
10984                                                            <NA>
10985                                             tablet/pill/capsule
10986                                                            <NA>
10987                                                            <NA>
10988                                                            <NA>
10989                                             tablet/pill/capsule
10990                                                 based on weight
10991                                                            <NA>
10992                                                            <NA>
10993                                                            <NA>
10994                                                            <NA>
10995                                                            <NA>
10996                                                            <NA>
10997                                                            <NA>
10998                                                 syringe/pipette
10999                                                            <NA>
11000                                                            <NA>
11001                                                            <NA>
11002                                             tablet/pill/capsule
11003                                             tablet/pill/capsule
11004                                                            <NA>
11005                                                            <NA>
11006                                                            <NA>
11007                                                 based on weight
11008                                           1 tablet/pill/capsule
11009                                           1 tablet/pill/capsule
11010                                                 based on weight
11011                                                 based on weight
11012                                                            <NA>
11013                                                            <NA>
11014                                                            <NA>
11015                                                            <NA>
11016                                                    small amount
11017                                                            <NA>
11018                                                            <NA>
11019                                                            <NA>
11020                                                            <NA>
11021                                                            <NA>
11022                                                            <NA>
11023                                                            <NA>
11024                                                            <NA>
11025                                                            <NA>
11026                                                            <NA>
11027                                                            <NA>
11028                                                            <NA>
11029                                                            <NA>
11030                                                            <NA>
11031                                                            <NA>
11032                                                            <NA>
11033                                                            <NA>
11034                                                            <NA>
11035                                             tablet/pill/capsule
11036                                             tablet/pill/capsule
11037                                             tablet/pill/capsule
11038                                             tablet/pill/capsule
11039                                             tablet/pill/capsule
11040                                             tablet/pill/capsule
11041                                             tablet/pill/capsule
11042                                             tablet/pill/capsule
11043                                                            <NA>
11044                                                            <NA>
11045                                                            <NA>
11046                                                            <NA>
11047                                                            <NA>
11048                                                            <NA>
11049                                                            <NA>
11050                                                            <NA>
11051                                                            <NA>
11052                                                            tube
11053                                                            <NA>
11054                                                            <NA>
11055                                                            <NA>
11056                                                            <NA>
11057                                                            <NA>
11058                                                            <NA>
11059                                                            <NA>
11060                                                            <NA>
11061                                                            <NA>
11062                                             tablet/pill/capsule
11063                                                            <NA>
11064                                                            <NA>
11065                                                            <NA>
11066                                                            <NA>
11067                                                            <NA>
11068                                                            <NA>
11069                                             tablet/pill/capsule
11070                                    based on weight (50-100 lbs)
11071                                                            <NA>
11072                                                            <NA>
11073                                                            <NA>
11074                                                            <NA>
11075                                                            <NA>
11076                                                            <NA>
11077                                                            <NA>
11078                                                            <NA>
11079                                                            <NA>
11080                                                            <NA>
11081                                                            <NA>
11082                                                            <NA>
11083                                                            <NA>
11084                                                            <NA>
11085                                                            <NA>
11086                                                            <NA>
11087                                                            <NA>
11088                                                            <NA>
11089                                                            <NA>
11090                                                            <NA>
11091                                     based on weight (21-55 lbs)
11092                                                            <NA>
11093                                                            <NA>
11094                                                            <NA>
11095                                                            <NA>
11096                                                            <NA>
11097                                                            <NA>
11098                                                            <NA>
11099                                                            <NA>
11100                                                            <NA>
11101                                                            <NA>
11102                                                            <NA>
11103                                                            <NA>
11104                                                            <NA>
11105                                                            <NA>
11106                                                 based on weight
11107                                                            <NA>
11108                                                            <NA>
11109                                                            pump
11110                                                            <NA>
11111                                                            <NA>
11112                                                            <NA>
11113                                                            <NA>
11114                                                            <NA>
11115                                                            <NA>
11116                                                            <NA>
11117                                                            <NA>
11118                                                            <NA>
11119                                                            <NA>
11120                                                            <NA>
11121                                                            <NA>
11122                                                            <NA>
11123                                                            <NA>
11124                                                            <NA>
11125                                                            <NA>
11126                                                            <NA>
11127                                                            <NA>
11128                                                            <NA>
11129                                                            <NA>
11130                                                            <NA>
11131                                                            <NA>
11132                                                            <NA>
11133                                                            <NA>
11134                                                 based on weight
11135                                                            <NA>
11136                                                            <NA>
11137                                                            <NA>
11138                                                            <NA>
11139                                                            <NA>
11140                                                            <NA>
11141                                                            <NA>
11142                                                            <NA>
11143                                                            <NA>
11144                                                            <NA>
11145                                                            <NA>
11146                                                            <NA>
11147                                                            <NA>
11148                                                            <NA>
11149                                                            <NA>
11150                                                            <NA>
11151                                                            <NA>
11152                                                 based on weight
11153                                                 based on weight
11154                                                            <NA>
11155                                                            <NA>
11156                                                            <NA>
11157                                                            <NA>
11158                                                 based on weight
11159                                                            <NA>
11160                                                            <NA>
11161                                                            <NA>
11162                                                            <NA>
11163                                                            <NA>
11164                                                            <NA>
11165                                                 based on weight
11166                                                 based on weight
11167                                                            <NA>
11168                                                            <NA>
11169                                                            <NA>
11170                                                            <NA>
11171                                                            <NA>
11172                                                            <NA>
11173                                                            <NA>
11174                                                            <NA>
11175                                                            <NA>
11176                                                            <NA>
11177                                                            <NA>
11178                                                            <NA>
11179                                                            <NA>
11180                                                            <NA>
11181                                                            <NA>
11182                                                            <NA>
11183                                                            <NA>
11184                                                            <NA>
11185                                                            <NA>
11186                                             tablet/pill/capsule
11187                                                            <NA>
11188                                                            <NA>
11189                                                            <NA>
11190                                                            <NA>
11191                                           1 tablet/pill/capsule
11192                                                            <NA>
11193                                                            <NA>
11194                                                            <NA>
11195                                                            <NA>
11196                                                            <NA>
11197                                                            <NA>
11198                                                            <NA>
11199                                                            <NA>
11200                                             tablet/pill/capsule
11201                                                            <NA>
11202                                                            <NA>
11203                                                 based on weight
11204                                                            <NA>
11205                                                            <NA>
11206                                                            <NA>
11207                                                            <NA>
11208                                                            <NA>
11209                                                            <NA>
11210                                                     unspecified
11211                                                     unspecified
11212                                                 based on weight
11213                                                            <NA>
11214                                                            <NA>
11215                                                            <NA>
11216                                                            <NA>
11217                                                            <NA>
11218                                                            <NA>
11219                                                            <NA>
11220                                                            <NA>
11221                                                            <NA>
11222                                                            <NA>
11223                                                            <NA>
11224                                             tablet/pill/capsule
11225                                                            <NA>
11226                                                            <NA>
11227                                                     bottle/vial
11228                                             tablet/pill/capsule
11229                                                            <NA>
11230                                                            <NA>
11231                                                            <NA>
11232                                                            <NA>
11233                                             tablet/pill/capsule
11234                                                            <NA>
11235                                                            <NA>
11236                                                            <NA>
11237                                                            <NA>
11238                                                            <NA>
11239                                                            <NA>
11240                                                            <NA>
11241                                                            <NA>
11242                        460 mg lufenuron, 23 mg milbemycin oxime
11243                                                            <NA>
11244                                                            <NA>
11245                                                            <NA>
11246                                                            <NA>
11247                                                            <NA>
11248                                                            <NA>
11249                                                            <NA>
11250                                                            <NA>
11251                                                            <NA>
11252                                                            <NA>
11253                                                            <NA>
11254                                                            <NA>
11255                                                            <NA>
11256                                                            <NA>
11257                                                            <NA>
11258                                                           spray
11259                                                            <NA>
11260                                                            <NA>
11261                                                            <NA>
11262                                                            <NA>
11263                                                            <NA>
11264                                                            <NA>
11265                                                            <NA>
11266                                                            <NA>
11267                                                            <NA>
11268                                                            <NA>
11269                                                            <NA>
11270                                                            <NA>
11271                                                            <NA>
11272                                                            <NA>
11273                                                            <NA>
11274                                                            <NA>
11275                                                            <NA>
11276                                                            <NA>
11277                                                            <NA>
11278                                                            <NA>
11279                                                            <NA>
11280                                                            <NA>
11281                                                            <NA>
11282                                                            <NA>
11283                                                            <NA>
11284                                                            <NA>
11285                                                            <NA>
11286                                                            <NA>
11287                                                            <NA>
11288                                                            <NA>
11289                                                            <NA>
11290                                                            <NA>
11291                                                 based on weight
11292                                                 based on weight
11293                                           1 tablet/pill/capsule
11294                                           1 tablet/pill/capsule
11295                                           1 tablet/pill/capsule
11296                                           1 tablet/pill/capsule
11297                                                            <NA>
11298                                             tablet/pill/capsule
11299                                                            <NA>
11300                                                            <NA>
11301                                                            <NA>
11302                                                            <NA>
11303                                                            <NA>
11304                                                            <NA>
11305                                                            <NA>
11306                                                            <NA>
11307                                             tablet/pill/capsule
11308                                                            <NA>
11309                                             tablet/pill/capsule
11310                                             tablet/pill/capsule
11311                                                            <NA>
11312                                                            <NA>
11313                                                            <NA>
11314                                                            <NA>
11315                                                            <NA>
11316                                                            <NA>
11317                                                            <NA>
11318                                                            <NA>
11319                                                            <NA>
11320                                                            <NA>
11321                                             tablet/pill/capsule
11322                                                            <NA>
11323                                                            <NA>
11324                                                            <NA>
11325                                             tablet/pill/capsule
11326                                             tablet/pill/capsule
11327                                             tablet/pill/capsule
11328                                             tablet/pill/capsule
11329                                             tablet/pill/capsule
11330                                             tablet/pill/capsule
11331                                                            <NA>
11332                                                            <NA>
11333                                                            <NA>
11334                                             tablet/pill/capsule
11335                                                            <NA>
11336                                                            <NA>
11337                                                            <NA>
11338                                                    small amount
11339                                                            <NA>
11340                                                            <NA>
11341                                                 based on weight
11342                                                 based on weight
11343                                                            <NA>
11344                                             tablet/pill/capsule
11345                                             tablet/pill/capsule
11346                                                          liquid
11347                                                            <NA>
11348                                                            <NA>
11349                                                          liquid
11350                                                            <NA>
11351                                                            <NA>
11352                                                            <NA>
11353                                                            <NA>
11354                                                            <NA>
11355                                                            <NA>
11356                                                    small amount
11357                                                            <NA>
11358                                                            <NA>
11359                                                            <NA>
11360                                                            <NA>
11361                                                            <NA>
11362                                             tablet/pill/capsule
11363                                                            <NA>
11364                                                            <NA>
11365                                                            <NA>
11366                                                 based on weight
11367                                                            <NA>
11368                                             tablet/pill/capsule
11369                                                            <NA>
11370                                                            <NA>
11371                                                            <NA>
11372                                                            <NA>
11373                                                            <NA>
11374                                                            <NA>
11375                                                            <NA>
11376                                                            <NA>
11377                                                 based on weight
11378                                                            <NA>
11379                                                            <NA>
11380                                                            <NA>
11381                                             tablet/pill/capsule
11382                                                            <NA>
11383                                                            <NA>
11384                                                            <NA>
11385                                             tablet/pill/capsule
11386                                             tablet/pill/capsule
11387                                                    pack/package
11388                                                    pack/package
11389                                                            <NA>
11390                                                     application
11391                                                            <NA>
11392                                                            <NA>
11393                                                            <NA>
11394                                                    small amount
11395                                                            <NA>
11396                                                            <NA>
11397                                                            <NA>
11398                                                            <NA>
11399                                                           spray
11400                                                            <NA>
11401                                                            <NA>
11402                                                            <NA>
11403                                                            <NA>
11404                                                            <NA>
11405                                                            <NA>
11406                                                            <NA>
11407                                                            <NA>
11408                                                            <NA>
11409                                             tablet/pill/capsule
11410                                                            <NA>
11411                                                            <NA>
11412                                                            <NA>
11413                                                            <NA>
11414                                                            <NA>
11415                                                    small amount
11416                                                            <NA>
11417                                                            <NA>
11418                                                            <NA>
11419                                             tablet/pill/capsule
11420                                                            <NA>
11421                                                            <NA>
11422                                                            <NA>
11423                                                            <NA>
11424                                                            <NA>
11425                                                 based on weight
11426                                                            <NA>
11427                                                            <NA>
11428                                                            <NA>
11429                                                            <NA>
11430                                                            <NA>
11431                                                            <NA>
11432                                                            <NA>
11433                                                            <NA>
11434                                                            <NA>
11435                                                            <NA>
11436                                                 based on weight
11437                                                 based on weight
11438                                                            <NA>
11439                                                            <NA>
11440                                                            <NA>
11441                                                            <NA>
11442                                                            <NA>
11443                                                            <NA>
11444                                                            <NA>
11445                                                            <NA>
11446                                                            <NA>
11447                                                            <NA>
11448                                                            <NA>
11449                                                            <NA>
11450                                                            <NA>
11451                                                               %
11452                                                            <NA>
11453                                                            <NA>
11454                                                            <NA>
11455                                                            <NA>
11456                                                            <NA>
11457                                                            <NA>
11458                                                            <NA>
11459                                                            <NA>
11460                                                            <NA>
11461                                                 based on weight
11462                                                            <NA>
11463                                                            <NA>
11464                                                    small amount
11465                                                            <NA>
11466                                                            <NA>
11467                                                            <NA>
11468                                                            <NA>
11469                                                            <NA>
11470                                                            <NA>
11471                                                            <NA>
11472                                                            <NA>
11473                                                 based on weight
11474                                                 based on weight
11475                                                            <NA>
11476                                                            <NA>
11477                                             tablet/pill/capsule
11478                                             tablet/pill/capsule
11479                                             tablet/pill/capsule
11480                                                            <NA>
11481                                                            <NA>
11482                                                            <NA>
11483                                                            <NA>
11484                                                            <NA>
11485                                                            <NA>
11486                                                            <NA>
11487                                                            <NA>
11488                                                            <NA>
11489                                                            <NA>
11490                                                            <NA>
11491                                                            <NA>
11492                                                            <NA>
11493                                                            <NA>
11494                                                            <NA>
11495                                                            <NA>
11496                                                            <NA>
11497                                                            <NA>
11498                                                            <NA>
11499                                                            <NA>
11500                                                            <NA>
11501                                                            <NA>
11502                                                            <NA>
11503                                                            <NA>
11504                                                            <NA>
11505                                                 0.25 inch strip
11506                                                 0.25 inch strip
11507                                                           spray
11508                                                            <NA>
11509                                    based on weight (50-100 lbs)
11510                                                            <NA>
11511                                                            <NA>
11512                                                            <NA>
11513                                                            <NA>
11514                                                            <NA>
11515                                                            <NA>
11516                                                            <NA>
11517                                                            <NA>
11518                                                            <NA>
11519                                             tablet/pill/capsule
11520                                                            <NA>
11521                                                            <NA>
11522                                                            <NA>
11523                                                            <NA>
11524                                                            <NA>
11525                                                            <NA>
11526                                                            <NA>
11527                                                            <NA>
11528                                                            <NA>
11529                                                            <NA>
11530                                                            <NA>
11531                                                            <NA>
11532                                                            <NA>
11533                                                            <NA>
11534                                                            <NA>
11535                                                            <NA>
11536                                                            <NA>
11537                                                            <NA>
11538                                                            <NA>
11539                                                            <NA>
11540                                                            <NA>
11541                                                            <NA>
11542                                                            <NA>
11543                                                            <NA>
11544                                                            <NA>
11545                                                            <NA>
11546                                                 based on weight
11547                                                            <NA>
11548                                                            <NA>
11549                                             tablet/pill/capsule
11550                                             tablet/pill/capsule
11551                                                            <NA>
11552                                                            <NA>
11553                                                           mg/ml
11554                                                            <NA>
11555                                                            <NA>
11556                                                            <NA>
11557                                                            <NA>
11558                                                              gm
11559                                                            <NA>
11560                                           1 tablet/pill/capsule
11561                                                 based on weight
11562                                                 based on weight
11563                                                            <NA>
11564                                                            <NA>
11565                                                            <NA>
11566                                                            <NA>
11567                                             tablet/pill/capsule
11568                                             tablet/pill/capsule
11569                                                            <NA>
11570                                             tablet/pill/capsule
11571                                                            <NA>
11572                                                            <NA>
11573                                                            <NA>
11574                                                            <NA>
11575                                                            <NA>
11576                                                            <NA>
11577                                                            <NA>
11578                                                            <NA>
11579                                                            <NA>
11580                                                            <NA>
11581                                                            <NA>
11582                                                            <NA>
11583                                             tablet/pill/capsule
11584                                                            <NA>
11585                                                            <NA>
11586                                             tablet/pill/capsule
11587                                                            <NA>
11588                                                            <NA>
11589                                                 based on weight
11590                                                 based on weight
11591                                                            <NA>
11592                                                            <NA>
11593                                             tablet/pill/capsule
11594                                             tablet/pill/capsule
11595                                             tablet/pill/capsule
11596                                                 based on weight
11597                                                            <NA>
11598                                                               %
11599                                                            tube
11600                                             tablet/pill/capsule
11601                                                            <NA>
11602                                                            <NA>
11603                                                            <NA>
11604                                                            <NA>
11605                                                            <NA>
11606                                                            <NA>
11607                                                            <NA>
11608                                                            <NA>
11609                                                    pack/package
11610                                                            <NA>
11611                                                            <NA>
11612                                                            <NA>
11613                                                            <NA>
11614                                                            <NA>
11615                                                            <NA>
11616                                                            <NA>
11617                                                            <NA>
11618                                                            <NA>
11619                                                            <NA>
11620                                                            <NA>
11621                                                            <NA>
11622                                                            <NA>
11623                                                            <NA>
11624                                                            <NA>
11625                                                            <NA>
11626                                                            <NA>
11627                                                            <NA>
11628                                                            <NA>
11629                                                            <NA>
11630                                                            <NA>
11631                                                            <NA>
11632                                                     application
11633                                                            <NA>
11634                                                            <NA>
11635                                                            <NA>
11636                                                            <NA>
11637                                     based on weight (25-60 lbs)
11638                                                            <NA>
11639                                                            <NA>
11640                                                            <NA>
11641                                                            <NA>
11642                                                            <NA>
11643                                                            <NA>
11644                                                            <NA>
11645                                                            <NA>
11646                                                            <NA>
11647                                                            <NA>
11648                                                            <NA>
11649                                                            tube
11650                                    based on weight (50-100 lbs)
11651                                             tablet/pill/capsule
11652                                                            tube
11653                                    based on weight (60-120 lbs)
11654                                           1 tablet/pill/capsule
11655                                             tablet/pill/capsule
11656                                                 based on weight
11657                                                            <NA>
11658                                                            <NA>
11659                                                            <NA>
11660                                                 based on weight
11661                                           1 tablet/pill/capsule
11662                                           1 tablet/pill/capsule
11663                                                 based on weight
11664                                                 based on weight
11665                                                            <NA>
11666                                                            <NA>
11667                                                            <NA>
11668                                                            <NA>
11669                                                            <NA>
11670                                                            <NA>
11671                                                            <NA>
11672                                                            <NA>
11673                                                            <NA>
11674                                                            <NA>
11675                                                            <NA>
11676                                                            <NA>
11677                                                            <NA>
11678                                                 based on weight
11679                                                            <NA>
11680                                                 based on weight
11681                                                 based on weight
11682                                                            <NA>
11683                                                 based on weight
11684                                                 based on weight
11685                                                            <NA>
11686                                                            <NA>
11687                                                            <NA>
11688                                                            <NA>
11689                                                            <NA>
11690                                                            <NA>
11691                                       based on weight (51+ lbs)
11692                                                            <NA>
11693                                                            <NA>
11694                                                            <NA>
11695                                                    small amount
11696                                                            <NA>
11697                                                            <NA>
11698                                                 based on weight
11699                                             tablet/pill/capsule
11700                                             tablet/pill/capsule
11701                                             tablet/pill/capsule
11702                                                            <NA>
11703                                                            <NA>
11704                                                            <NA>
11705                                                            <NA>
11706                                                            <NA>
11707                                                            <NA>
11708                                                            <NA>
11709                                             tablet/pill/capsule
11710                                             tablet/pill/capsule
11711                                                            <NA>
11712                                                            <NA>
11713                                                            <NA>
11714                                             tablet/pill/capsule
11715                                                     application
11716                                                            <NA>
11717                                                            <NA>
11718                                                            <NA>
11719                                                            <NA>
11720                                                            <NA>
11721                                                            <NA>
11722                                                            <NA>
11723                                                            <NA>
11724                                                           scoop
11725                                                            <NA>
11726                                                            <NA>
11727                                                            <NA>
11728                                             tablet/pill/capsule
11729                                             tablet/pill/capsule
11730                                                            <NA>
11731                                                            <NA>
11732                                                            <NA>
11733                                                            <NA>
11734                                                            <NA>
11735                                                 based on weight
11736                                                            <NA>
11737                                                            <NA>
11738                                                            <NA>
11739                                                            <NA>
11740                                                            <NA>
11741                                             tablet/pill/capsule
11742                                                            <NA>
11743                                                            <NA>
11744                                             tablet/pill/capsule
11745                                                            <NA>
11746                                                            <NA>
11747                                                            <NA>
11748                                                            <NA>
11749                                                            <NA>
11750                                                            <NA>
11751                                                            <NA>
11752                                                            <NA>
11753                                                            <NA>
11754                                                            <NA>
11755                                                            <NA>
11756                                                            <NA>
11757                                                            <NA>
11758                                                            <NA>
11759                                                            <NA>
11760                                                            <NA>
11761                                                            <NA>
11762                                                            <NA>
11763                                                            <NA>
11764                                                            <NA>
11765                                                            <NA>
11766                                                            <NA>
11767                                                            <NA>
11768                                             tablet/pill/capsule
11769                                                            <NA>
11770                                                            <NA>
11771                                                            <NA>
11772                                                            <NA>
11773                                                            <NA>
11774                                                            <NA>
11775                                                            <NA>
11776                                                            <NA>
11777                                                            <NA>
11778                                                            <NA>
11779                                                            <NA>
11780                                                            <NA>
11781                                                            <NA>
11782                                                            <NA>
11783                                                            <NA>
11784                                                            <NA>
11785                                                            <NA>
11786                                                            <NA>
11787                                                            <NA>
11788                                                            <NA>
11789                                                            <NA>
11790                                                            <NA>
11791                                                            <NA>
11792                                                            <NA>
11793                                                            <NA>
11794                                                            <NA>
11795                                                            <NA>
11796                                                            <NA>
11797                                                            <NA>
11798                                                            <NA>
11799                                                            <NA>
11800                                                            <NA>
11801                                                            <NA>
11802                                                            <NA>
11803                                                            <NA>
11804                                                            <NA>
11805                                                            <NA>
11806                                                     unspecified
11807                                                            <NA>
11808                                                           spray
11809                                                            <NA>
11810                                                            <NA>
11811                                                            <NA>
11812                                             tablet/pill/capsule
11813                                                            <NA>
11814                                                 based on weight
11815                                                 based on weight
11816                                                 based on weight
11817                                                            <NA>
11818                                                            <NA>
11819                                                            <NA>
11820                                                            <NA>
11821                                                            <NA>
11822                                             tablet/pill/capsule
11823                                             tablet/pill/capsule
11824                                                     application
11825                                             tablet/pill/capsule
11826                                                            <NA>
11827                                                            <NA>
11828                                                            <NA>
11829                                                            <NA>
11830                                                            <NA>
11831                                                            <NA>
11832                                                     combination
11833                                                     combination
11834                                                            <NA>
11835                                             tablet/pill/capsule
11836                                             tablet/pill/capsule
11837                                             tablet/pill/capsule
11838                                                            <NA>
11839                                                            <NA>
11840                                                            <NA>
11841                                                            <NA>
11842                                                            <NA>
11843                                                            <NA>
11844                                                            <NA>
11845                                                            <NA>
11846                                                            <NA>
11847                                             tablet/pill/capsule
11848                                             tablet/pill/capsule
11849                                                            <NA>
11850                                                            <NA>
11851                                                            <NA>
11852                                                            <NA>
11853                                                            <NA>
11854                                                            <NA>
11855                                                            <NA>
11856                                                            <NA>
11857                                                            <NA>
11858                                                            <NA>
11859                                                            <NA>
11860                                                            <NA>
11861                                                     combination
11862                                                     combination
11863                                                            <NA>
11864                                                            <NA>
11865                                                            <NA>
11866                                                            <NA>
11867                                                            <NA>
11868                                                            <NA>
11869                                                            <NA>
11870                                                            <NA>
11871                                                            <NA>
11872                                                            <NA>
11873                                             tablet/pill/capsule
11874                                             tablet/pill/capsule
11875                                             tablet/pill/capsule
11876                                                            <NA>
11877                                                            <NA>
11878                                                            <NA>
11879                                                            <NA>
11880                                                            <NA>
11881                                                 based on weight
11882                                                 based on weight
11883                                                            <NA>
11884                                                            <NA>
11885                                                 0.25 inch strip
11886                                                            <NA>
11887                                                            <NA>
11888                                                            <NA>
11889                                                 based on weight
11890                                                            <NA>
11891                                                            <NA>
11892                                             tablet/pill/capsule
11893                                             tablet/pill/capsule
11894                                                           spray
11895                                                            <NA>
11896                                                            <NA>
11897                                                            <NA>
11898                                                            <NA>
11899                                                            <NA>
11900                                                            <NA>
11901                                                            <NA>
11902                                                            <NA>
11903                                                            <NA>
11904                                                            <NA>
11905                                                            <NA>
11906                                                            <NA>
11907                                                            <NA>
11908                                                            <NA>
11909                                                            <NA>
11910                                                            <NA>
11911                                                            <NA>
11912                                                            <NA>
11913                                                            <NA>
11914                                                            <NA>
11915                                                            <NA>
11916                                                            <NA>
11917                                                            <NA>
11918                                                            <NA>
11919                                             tablet/pill/capsule
11920                                                            <NA>
11921                                                            <NA>
11922                                                            <NA>
11923                                                            <NA>
11924                                                            <NA>
11925                                                            <NA>
11926                                                            <NA>
11927                                                            <NA>
11928                                                            <NA>
11929                                                            <NA>
11930                                                     billion cfu
11931                                                            <NA>
11932                                                            <NA>
11933                                                            <NA>
11934                                                            <NA>
11935                                                            <NA>
11936                                                            <NA>
11937                                                            <NA>
11938                                                            <NA>
11939                                                            <NA>
11940                                                            <NA>
11941                                                            <NA>
11942                                                            <NA>
11943                                                            <NA>
11944                                                            <NA>
11945                                                            <NA>
11946                                                            <NA>
11947                                                            <NA>
11948                                                            <NA>
11949                                                            <NA>
11950                                                            <NA>
11951                                                            <NA>
11952                                                            <NA>
11953                                                            <NA>
11954                                                            <NA>
11955                                                            <NA>
11956                                                            <NA>
11957                                                            <NA>
11958                                                            <NA>
11959                                                            <NA>
11960                                                     as directed
11961                                                            <NA>
11962                                                            <NA>
11963                                                            <NA>
11964                                                 based on weight
11965                                                            <NA>
11966                                                            <NA>
11967                                                            <NA>
11968                                                            <NA>
11969                                                            <NA>
11970                                                            <NA>
11971                                                            <NA>
11972                                                            <NA>
11973                                                            <NA>
11974                                                            <NA>
11975                                                            <NA>
11976                                                            <NA>
11977                                                            <NA>
11978                                                           spray
11979                                                            <NA>
11980                                                          1 tube
11981                                                            <NA>
11982                                                            <NA>
11983                                                            <NA>
11984                                                            <NA>
11985                                                            <NA>
11986                                                            <NA>
11987                                                            <NA>
11988                                                               1
11989                                                            <NA>
11990                                                            tube
11991                                                            <NA>
11992                                                            <NA>
11993                                                            <NA>
11994                                                            <NA>
11995                                                            <NA>
11996                                                            <NA>
11997                                                            <NA>
11998                                                            <NA>
11999                                                            <NA>
12000                                                            <NA>
12001                                                            <NA>
12002                                                            <NA>
12003                                                            <NA>
12004                                                            <NA>
12005                                                            <NA>
12006                                                 based on weight
12007                                                 based on weight
12008                                             tablet/pill/capsule
12009                                                            <NA>
12010                                                            <NA>
12011                                                    pack/package
12012                                                            <NA>
12013                                                            <NA>
12014                                                 based on weight
12015                                                 based on weight
12016                                                            <NA>
12017                                                            <NA>
12018                                                            tube
12019                                             tablet/pill/capsule
12020                                    based on weight (50-100 lbs)
12021                                                            <NA>
12022                                                            <NA>
12023                                                            <NA>
12024                                                            <NA>
12025                                                            <NA>
12026                                                            <NA>
12027                                                            <NA>
12028                                                            <NA>
12029                                                            <NA>
12030                                                            <NA>
12031                                                            <NA>
12032                                                            <NA>
12033                                                            <NA>
12034                                                            <NA>
12035                                                            <NA>
12036                                                            <NA>
12037                                                            <NA>
12038                                                            <NA>
12039                                                            <NA>
12040                                                            <NA>
12041                                                            <NA>
12042                                                            <NA>
12043                                                            <NA>
12044                                                            <NA>
12045                                                            <NA>
12046                                                            <NA>
12047                                                            <NA>
12048                                                            <NA>
12049                                                            <NA>
12050                                                            <NA>
12051                                                    pack/package
12052                                                            <NA>
12053                                                            <NA>
12054                                                     unspecified
12055                                                            <NA>
12056                                                            <NA>
12057                                                            <NA>
12058                                                            <NA>
12059                                                            <NA>
12060                                                            <NA>
12061                                                            <NA>
12062                                                            <NA>
12063                                                            <NA>
12064                                                            <NA>
12065                                                            <NA>
12066                                                            <NA>
12067                                                            <NA>
12068                                                            <NA>
12069                                                            <NA>
12070                                                            <NA>
12071                                                            <NA>
12072                                                            <NA>
12073                                                            <NA>
12074                                                            <NA>
12075                                                            <NA>
12076                                                            <NA>
12077                                                            <NA>
12078                                                            <NA>
12079                                                            <NA>
12080                                                            <NA>
12081                                                            <NA>
12082                                                            <NA>
12083                                             tablet/pill/capsule
12084                                                            <NA>
12085                                                            <NA>
12086                                                            <NA>
12087                                                            <NA>
12088                                                            <NA>
12089                                                            <NA>
12090                                                 based on weight
12091                                                            <NA>
12092                                                            <NA>
12093                                             tablet/pill/capsule
12094                                             tablet/pill/capsule
12095                                                            <NA>
12096                                                            <NA>
12097                                                            <NA>
12098                                    based on weight (60-120 lbs)
12099                                    based on weight (50-100 lbs)
12100                                     based on weight (40-60 lbs)
12101                                                            pump
12102                                                 based on weight
12103                                                            <NA>
12104                                        based on weight (68 lbs)
12105                                    based on weight (50-100 lbs)
12106                                                            <NA>
12107                                    based on weight (50-100 lbs)
12108                                                            <NA>
12109                                                            <NA>
12110                                                            <NA>
12111                                                 moderate amount
12112                                                            <NA>
12113                                                            <NA>
12114                                                            <NA>
12115                                                            <NA>
12116                                                            <NA>
12117                                                            <NA>
12118                                                            <NA>
12119                                                            <NA>
12120                                                            <NA>
12121                                                            <NA>
12122                                                            <NA>
12123                                                            <NA>
12124                                                            <NA>
12125                                                            <NA>
12126                                                            <NA>
12127                                                            <NA>
12128                                                 based on weight
12129                                                 based on weight
12130                                                            <NA>
12131                                                            <NA>
12132                                                            <NA>
12133                                                            <NA>
12134                                                            <NA>
12135                                             tablet/pill/capsule
12136                                             tablet/pill/capsule
12137                                                            <NA>
12138                                                            <NA>
12139                                                            <NA>
12140                                                            <NA>
12141                                                            <NA>
12142                                             tablet/pill/capsule
12143                                             tablet/pill/capsule
12144                                             tablet/pill/capsule
12145                                                            <NA>
12146                                                            <NA>
12147                                                            <NA>
12148                                                            <NA>
12149                                                            <NA>
12150                                                            <NA>
12151                                                            <NA>
12152                                                            <NA>
12153                                                            <NA>
12154                                           1 tablet/pill/capsule
12155                                           1 tablet/pill/capsule
12156                                                            <NA>
12157                                                            <NA>
12158                                                            <NA>
12159                                                     unspecified
12160                                                     unspecified
12161                                                            <NA>
12162                                                            <NA>
12163                                                            <NA>
12164                                                     unspecified
12165                                                            <NA>
12166                                                            <NA>
12167                                             tablet/pill/capsule
12168                                                            <NA>
12169                                                            <NA>
12170                                                            <NA>
12171                                                            <NA>
12172                                                            <NA>
12173                                           1 tablet/pill/capsule
12174                                                            <NA>
12175                                                            <NA>
12176                                                            <NA>
12177                                                            <NA>
12178                                                            <NA>
12179                                                            <NA>
12180                                                            <NA>
12181                                                            <NA>
12182                                                            <NA>
12183                                                            <NA>
12184                                                      inch strip
12185                                                            <NA>
12186                                                            <NA>
12187                                                            <NA>
12188                                                            <NA>
12189                                                            <NA>
12190                                                           spray
12191                                                            <NA>
12192                                                            <NA>
12193                                                            <NA>
12194                                                            <NA>
12195                                                            <NA>
12196                                                            <NA>
12197                                                            <NA>
12198                                                            <NA>
12199                                             tablet/pill/capsule
12200                                                            pump
12201                                                            <NA>
12202                                                            <NA>
12203                                                            <NA>
12204                                                            <NA>
12205                                                            <NA>
12206                                                            <NA>
12207                                                            <NA>
12208                                                            <NA>
12209                                                            <NA>
12210                                                            <NA>
12211                                                            <NA>
12212                                                            <NA>
12213                                                            <NA>
12214                                                            <NA>
12215                                                            <NA>
12216                                                            <NA>
12217                                                            <NA>
12218                                                            <NA>
12219                                                            <NA>
12220                                                            <NA>
12221                                                            <NA>
12222                                                            <NA>
12223                                                       0.5 drops
12224                                                            <NA>
12225                                                            <NA>
12226                                                           scoop
12227                                                           scoop
12228                                                            <NA>
12229                                             tablet/pill/capsule
12230                                                            <NA>
12231                                                            <NA>
12232                                                            <NA>
12233                                                            <NA>
12234                                                            <NA>
12235                                                            <NA>
12236                                                            <NA>
12237                                                            <NA>
12238                                                            <NA>
12239                                                            <NA>
12240                                                            <NA>
12241                                                            <NA>
12242                                                            <NA>
12243                                                            <NA>
12244                                                            <NA>
12245                                                            <NA>
12246                                                            <NA>
12247                                                            <NA>
12248                                                            <NA>
12249                                                            <NA>
12250                                                            <NA>
12251                                                            <NA>
12252                                                            <NA>
12253                                                            <NA>
12254                                                            <NA>
12255                                                            tube
12256                                                            <NA>
12257                                                            <NA>
12258                                                            <NA>
12259                                                            <NA>
12260                                                            <NA>
12261                                             tablet/pill/capsule
12262                                                            <NA>
12263                                                            <NA>
12264                                                            <NA>
12265                                                 based on weight
12266                                                 based on weight
12267                                                 based on weight
12268                                                 based on weight
12269                                                            <NA>
12270                                                            <NA>
12271                                                 based on weight
12272                                                 based on weight
12273                                                        ointment
12274                                                            <NA>
12275                                                 based on weight
12276                                                 based on weight
12277                                                            <NA>
12278                                                        wipe/pad
12279                                                            <NA>
12280                                                            <NA>
12281                                                            <NA>
12282                                                          collar
12283                                                            <NA>
12284                                                            <NA>
12285                                                            <NA>
12286                                                            <NA>
12287                                                            <NA>
12288                                                            <NA>
12289                                                            tube
12290                                                            <NA>
12291                                                            <NA>
12292                                                            <NA>
12293                                                            <NA>
12294                                                            <NA>
12295                                                            <NA>
12296                                                            <NA>
12297                                                            <NA>
12298                                                            <NA>
12299                                                            <NA>
12300                                                            <NA>
12301                                                            <NA>
12302                                                            <NA>
12303                                                            <NA>
12304                                                            <NA>
12305                                                            <NA>
12306                                                    small amount
12307                                                            <NA>
12308                                                            <NA>
12309                                                            pump
12310                                                            <NA>
12311                                                            <NA>
12312                                                            <NA>
12313                                                            <NA>
12314                                                            <NA>
12315                                                            <NA>
12316                                                            <NA>
12317                                                     bottle/vial
12318                                                            <NA>
12319                                             tablet/pill/capsule
12320                                                            <NA>
12321                                                            <NA>
12322                                                            <NA>
12323                                                            <NA>
12324                                             tablet/pill/capsule
12325                                                            <NA>
12326                                                            <NA>
12327                                                            <NA>
12328                                                            <NA>
12329                                                            <NA>
12330                                                            <NA>
12331                                                            <NA>
12332                                                            <NA>
12333                                                            <NA>
12334                                                            <NA>
12335                                                            <NA>
12336                                                            <NA>
12337                                                     unspecified
12338                                                            <NA>
12339                                                            <NA>
12340                                                            <NA>
12341                                                            <NA>
12342                                             tablet/pill/capsule
12343                                                     unspecified
12344                                                            <NA>
12345                                                            <NA>
12346                                                            <NA>
12347                                           monoclonal antibodies
12348                                                            <NA>
12349                                                     bottle/vial
12350                                                            <NA>
12351                                                            <NA>
12352                                                            <NA>
12353                                                            <NA>
12354                                                            <NA>
12355                                                            <NA>
12356                                                            <NA>
12357                                                     bottle/vial
12358                                             tablet/pill/capsule
12359                                                            <NA>
12360                                                            <NA>
12361                                             tablet/pill/capsule
12362                                                            <NA>
12363                                                            <NA>
12364                                                            <NA>
12365                                                            <NA>
12366                                             tablet/pill/capsule
12367                                                            <NA>
12368                                                            <NA>
12369                                                            <NA>
12370                                                            <NA>
12371                                                            <NA>
12372                                                            <NA>
12373                                             tablet/pill/capsule
12374                                                            <NA>
12375                                                            <NA>
12376                                                            <NA>
12377                                                            <NA>
12378                                                            <NA>
12379                                                            <NA>
12380                                                            <NA>
12381                                                            <NA>
12382                                                            <NA>
12383                                                            <NA>
12384                                                            <NA>
12385                                                            <NA>
12386                                                            <NA>
12387                                                            <NA>
12388                                                            <NA>
12389                                                            <NA>
12390                                                            <NA>
12391                                                            <NA>
12392                                                            <NA>
12393                                                            <NA>
12394                                                            <NA>
12395                                                            <NA>
12396                                                            <NA>
12397                                                            <NA>
12398                                                            <NA>
12399                                                               %
12400                                                            <NA>
12401                                                 based on weight
12402                                                 based on weight
12403                                                            <NA>
12404                                                            <NA>
12405                                                            <NA>
12406                                             tablet/pill/capsule
12407                                             tablet/pill/capsule
12408                                                            <NA>
12409                                                  1 pack/package
12410                                           1 tablet/pill/capsule
12411                                                           drops
12412                                                            <NA>
12413                                                            <NA>
12414                                                 based on weight
12415                                                 based on weight
12416                                             tablet/pill/capsule
12417                                             tablet/pill/capsule
12418                                             tablet/pill/capsule
12419                                                            <NA>
12420                                                        ointment
12421                                                            <NA>
12422                                                            <NA>
12423                                                    small amount
12424                                                            <NA>
12425                                                            <NA>
12426                                                            <NA>
12427                                                            <NA>
12428                                                            <NA>
12429                                                            <NA>
12430                                             tablet/pill/capsule
12431                                             tablet/pill/capsule
12432                                             tablet/pill/capsule
12433                                                            <NA>
12434                                                            <NA>
12435                                                            <NA>
12436                                                            <NA>
12437                                                            <NA>
12438                                                            <NA>
12439                                                            <NA>
12440                                                            <NA>
12441                                                            <NA>
12442                                                            <NA>
12443                                                            <NA>
12444                                                            <NA>
12445                                                            <NA>
12446                                                            <NA>
12447                                                            <NA>
12448                                                            <NA>
12449                                                            <NA>
12450                                                            <NA>
12451                                                            <NA>
12452                                                            <NA>
12453                                                     combination
12454                                    based on weight (50-100 lbs)
12455                                                            <NA>
12456                                                 based on weight
12457                                                 based on weight
12458                                                            <NA>
12459                                             tablet/pill/capsule
12460                                                            <NA>
12461                                                        wipe/pad
12462                                             tablet/pill/capsule
12463                                                            <NA>
12464                                                            <NA>
12465                                                            <NA>
12466                                                            <NA>
12467                                                            <NA>
12468                                                            <NA>
12469                                                            <NA>
12470                                                            <NA>
12471                                                            <NA>
12472                                                            <NA>
12473                                                 based on weight
12474                                                 based on weight
12475                                                            <NA>
12476                                                            <NA>
12477                                                            <NA>
12478                                                            <NA>
12479                                                            <NA>
12480                                                            <NA>
12481                                                 based on weight
12482                                                            <NA>
12483                                                            <NA>
12484                                                            <NA>
12485                                                            <NA>
12486                                                            <NA>
12487                                                            <NA>
12488                                                            <NA>
12489                                                            <NA>
12490                                                            <NA>
12491                                                            <NA>
12492                                                            <NA>
12493                                                            <NA>
12494                                                            <NA>
12495                                                 based on weight
12496                                                 based on weight
12497                                                     billion cfu
12498                                                 based on weight
12499                                                            <NA>
12500                                             tablet/pill/capsule
12501                                                            <NA>
12502                                                            <NA>
12503                                                            <NA>
12504                                                            <NA>
12505                                                            <NA>
12506                                                            <NA>
12507                                                            <NA>
12508                                                            <NA>
12509                                                            <NA>
12510                                                            <NA>
12511                                             tablet/pill/capsule
12512                                             tablet/pill/capsule
12513                                             tablet/pill/capsule
12514                                                            <NA>
12515                                                            <NA>
12516                                                            <NA>
12517                                                            <NA>
12518                                                            <NA>
12519                                                            <NA>
12520                                                 based on weight
12521                                           1 tablet/pill/capsule
12522                                                            <NA>
12523                                                 based on weight
12524                                                            <NA>
12525                                                            <NA>
12526                                                            <NA>
12527                                                            <NA>
12528                                                    small amount
12529                                                    small amount
12530                                                 based on weight
12531                                                            <NA>
12532                                                            <NA>
12533                                                            <NA>
12534                                                            <NA>
12535                                                    small amount
12536                                                            <NA>
12537                                                            <NA>
12538                                                            <NA>
12539                                    0.5-2 tablets/pills/capsules
12540                                                            dose
12541                                                            dose
12542                                             tablet/pill/capsule
12543                                                     bottle/vial
12544                                             tablet/pill/capsule
12545                                                     application
12546                                                           scoop
12547                                                            <NA>
12548                                                            <NA>
12549                                                            <NA>
12550                                             tablet/pill/capsule
12551                                                            tube
12552                                             tablet/pill/capsule
12553                                                    small amount
12554                                                    small amount
12555                                                            <NA>
12556                                                               %
12557                                                            <NA>
12558                                                            <NA>
12559                                                            <NA>
12560                                                            <NA>
12561                                                            <NA>
12562                                                            <NA>
12563                                                            <NA>
12564                                                            <NA>
12565                                                            <NA>
12566                                                            <NA>
12567                                                            <NA>
12568                                                            <NA>
12569                                                            <NA>
12570                                                            <NA>
12571                                                              1%
12572                                                            <NA>
12573                                                            <NA>
12574                                                            <NA>
12575                                                            <NA>
12576                                                            <NA>
12577                                                           tubes
12578                                                            <NA>
12579                                                            <NA>
12580                                                            <NA>
12581                                                            <NA>
12582                                                            <NA>
12583                                                            <NA>
12584                                                            <NA>
12585                                                            <NA>
12586                                                            <NA>
12587                                                            <NA>
12588                                                            <NA>
12589                                                            <NA>
12590                                                            <NA>
12591                                                            <NA>
12592                                                            <NA>
12593                                                            <NA>
12594                                                            <NA>
12595                                                            <NA>
12596                                                            <NA>
12597                                                            <NA>
12598                                                            <NA>
12599                                                            <NA>
12600                                                            <NA>
12601                                                            <NA>
12602                                                            <NA>
12603                                                            <NA>
12604                                                            <NA>
12605                                                            <NA>
12606                                                            <NA>
12607                                                            <NA>
12608                                                            <NA>
12609                                                            <NA>
12610                                                            <NA>
12611                                                            <NA>
12612                                                            <NA>
12613                                                            <NA>
12614                                             tablet/pill/capsule
12615                                                            <NA>
12616                                    based on weight (50-100 lbs)
12617                                             tablet/pill/capsule
12618                                                            <NA>
12619                                                            <NA>
12620                                           1 tablet/pill/capsule
12621                                                            <NA>
12622                                                            <NA>
12623                                           1 tablet/pill/capsule
12624                                                            <NA>
12625                                             tablet/pill/capsule
12626                                                            <NA>
12627                                                            <NA>
12628                                                            <NA>
12629                                                            <NA>
12630                                                            <NA>
12631                                                            <NA>
12632                                                            <NA>
12633                                                            <NA>
12634                                                            <NA>
12635                                                            <NA>
12636                                                            <NA>
12637                                                            <NA>
12638                                                 based on weight
12639                                           1 tablet/pill/capsule
12640                                                            <NA>
12641                                                            <NA>
12642                                                            <NA>
12643                                                            <NA>
12644                                                            <NA>
12645                                                            <NA>
12646                                                            <NA>
12647                                                            <NA>
12648                                                            <NA>
12649                                                            <NA>
12650                                                            <NA>
12651                                                            <NA>
12652                                                            <NA>
12653                                                            <NA>
12654                                                            <NA>
12655                                                            <NA>
12656                                                            <NA>
12657                                                            <NA>
12658                                                            <NA>
12659                                                            <NA>
12660                                                            <NA>
12661                                                            <NA>
12662                                                            <NA>
12663                                                            <NA>
12664                                                            <NA>
12665                                                            <NA>
12666                                                            <NA>
12667                                                            <NA>
12668                                                           spray
12669                                                            <NA>
12670                                                            <NA>
12671                                                           spray
12672                                                            <NA>
12673                                                            <NA>
12674                                                            <NA>
12675                                                            <NA>
12676                                                            <NA>
12677                                                            <NA>
12678                                                            <NA>
12679                                                            <NA>
12680                                                            <NA>
12681                                                            <NA>
12682                                                            <NA>
12683                                             tablet/pill/capsule
12684                                                            <NA>
12685                                                            <NA>
12686                                           1 tablet/pill/capsule
12687                                                            <NA>
12688                                                            <NA>
12689                                                            <NA>
12690                                                            <NA>
12691                                                            <NA>
12692                                                            <NA>
12693                                             tablet/pill/capsule
12694                                             tablet/pill/capsule
12695                                                            <NA>
12696                                                            <NA>
12697                                                            <NA>
12698                                                            <NA>
12699                                                            <NA>
12700                                                            <NA>
12701                                                            <NA>
12702                                                            <NA>
12703                                                            <NA>
12704                                                            <NA>
12705                                                            <NA>
12706                                                            <NA>
12707                                                            <NA>
12708                                                            <NA>
12709                                                            <NA>
12710                                                            <NA>
12711                                                            <NA>
12712                                                            <NA>
12713                                                            <NA>
12714                                                 based on weight
12715                                                            <NA>
12716                                                            <NA>
12717                                                            <NA>
12718                                                            <NA>
12719                                                            <NA>
12720                                                            <NA>
12721                                                            <NA>
12722                                                            <NA>
12723                                                            <NA>
12724                                                            <NA>
12725                                                            <NA>
12726                                                            <NA>
12727                                                            <NA>
12728                                                               %
12729                                                            <NA>
12730                                                            <NA>
12731                                                            <NA>
12732                                                            <NA>
12733                                                            <NA>
12734                                                            <NA>
12735                                                    small amount
12736                                                            <NA>
12737                                                            <NA>
12738                                                            <NA>
12739                                                            <NA>
12740                                                            <NA>
12741                                                            <NA>
12742                                                            <NA>
12743                                                            <NA>
12744                                                            <NA>
12745                                                            <NA>
12746                                                            <NA>
12747                                                    pack/package
12748                                                            <NA>
12749                                                            <NA>
12750                                                            <NA>
12751                                                    pack/package
12752                                                            <NA>
12753                                                            <NA>
12754                                                            <NA>
12755                                                            <NA>
12756                                                            <NA>
12757                                                            <NA>
12758                                                            <NA>
12759                                                            <NA>
12760                                                            <NA>
12761                                                            <NA>
12762                                                            <NA>
12763                                                            <NA>
12764                                                            <NA>
12765                                                            <NA>
12766                                                            <NA>
12767                                                            <NA>
12768                                                            <NA>
12769                                                            <NA>
12770                                                            <NA>
12771                                                       injection
12772                                                            <NA>
12773                                                            <NA>
12774                                             tablet/pill/capsule
12775                                                            <NA>
12776                                                            <NA>
12777                                                            <NA>
12778                                                            <NA>
12779                                                            <NA>
12780                                                    pack/package
12781                                                            <NA>
12782                                                            <NA>
12783                                                            <NA>
12784                                                    pack/package
12785                                                            <NA>
12786                                                            tube
12787                                                          collar
12788                                                 0.25 inch strip
12789                                                            <NA>
12790                                                            <NA>
12791                                                            <NA>
12792                                                            <NA>
12793                                                            <NA>
12794                                                            <NA>
12795                                           1 tablet/pill/capsule
12796                                                          collar
12797                                                  1 pack/package
12798                                                            <NA>
12799                                                            <NA>
12800                                                    pack/package
12801                                                          powder
12802                                                            <NA>
12803                                                            <NA>
12804                                                          collar
12805                                                              2%
12806                                                            <NA>
12807                                             tablet/pill/capsule
12808                                             tablet/pill/capsule
12809                                                            <NA>
12810                                                            <NA>
12811                                                            <NA>
12812                                                    pack/package
12813                                             tablet/pill/capsule
12814                                             tablet/pill/capsule
12815                                                            <NA>
12816                                                            <NA>
12817                                                            <NA>
12818                                                            <NA>
12819                                                            <NA>
12820                                                            <NA>
12821                                                            <NA>
12822                                                            <NA>
12823                                                            <NA>
12824                                                            <NA>
12825                                                            <NA>
12826                                                     application
12827                                                            <NA>
12828                                                     application
12829                                                            <NA>
12830                                                            <NA>
12831                                                            <NA>
12832                                                            <NA>
12833                                                            <NA>
12834                                                            <NA>
12835                                                            <NA>
12836                                                            <NA>
12837                                                 based on weight
12838                                                            <NA>
12839                                                            <NA>
12840                                                            <NA>
12841                                                 based on weight
12842                                                            <NA>
12843                                                            <NA>
12844                                                            <NA>
12845                                                            <NA>
12846                                                            <NA>
12847                                                            <NA>
12848                                                            <NA>
12849                                                            <NA>
12850                                                            <NA>
12851                                             tablet/pill/capsule
12852                                                            <NA>
12853                                                            <NA>
12854                                             tablet/pill/capsule
12855                                             tablet/pill/capsule
12856                                                            tube
12857                                             tablet/pill/capsule
12858                                                           spray
12859                                                            <NA>
12860                                                           mg/kg
12861                                                            <NA>
12862                                           1 tablet/pill/capsule
12863                                             tablet/pill/capsule
12864                                             tablet/pill/capsule
12865                                                            <NA>
12866                                                     unspecified
12867                                                            <NA>
12868                                             tablet/pill/capsule
12869                                             tablet/pill/capsule
12870                                                          powder
12871                                                            <NA>
12872                                                            <NA>
12873                                                            <NA>
12874                                                            <NA>
12875                                                            <NA>
12876                                                            <NA>
12877                                                            <NA>
12878                                                            <NA>
12879                                    based on weight (50-100 lbs)
12880                                    based on weight (60-120 lbs)
12881                                                    small amount
12882                                                    small amount
12883                                                            <NA>
12884                                                            <NA>
12885                                                            <NA>
12886                                                            <NA>
12887                                                            <NA>
12888                                                            <NA>
12889                                             tablet/pill/capsule
12890                                             tablet/pill/capsule
12891                                                            <NA>
12892                                             tablet/pill/capsule
12893                                                            <NA>
12894                                                            <NA>
12895                                                     unspecified
12896                                                            <NA>
12897                                                            <NA>
12898                                                            <NA>
12899                                                            <NA>
12900                                                            <NA>
12901                                                            <NA>
12902                                                            <NA>
12903                                                            <NA>
12904                                                            <NA>
12905                                                            <NA>
12906                                                              ml
12907                                                     unspecified
12908                                                     unspecified
12909                                                            <NA>
12910                                                            <NA>
12911                                                            <NA>
12912                                                            <NA>
12913                                                            <NA>
12914                                                            <NA>
12915                                                            <NA>
12916                                                 based on weight
12917                                                            <NA>
12918                                                            <NA>
12919                                                            <NA>
12920                                                 based on weight
12921                                                            <NA>
12922                                                            <NA>
12923                                                            <NA>
12924                                                            <NA>
12925                                                            <NA>
12926                                                            <NA>
12927                                                            <NA>
12928                                                            <NA>
12929                                                 based on weight
12930                                                            <NA>
12931                                             tablet/pill/capsule
12932                                                            <NA>
12933                                                            <NA>
12934                                                            <NA>
12935                                                            <NA>
12936                                                            <NA>
12937                                                            <NA>
12938                                                            <NA>
12939                                                            <NA>
12940                                                            <NA>
12941                                                            <NA>
12942                                             tablet/pill/capsule
12943                                                 based on weight
12944                                                 based on weight
12945                                             tablet/pill/capsule
12946                                                            <NA>
12947                                                            <NA>
12948                                             tablet/pill/capsule
12949                                                            <NA>
12950                                                            <NA>
12951                                                            <NA>
12952                                             tablet/pill/capsule
12953                                                            <NA>
12954                                                            <NA>
12955                                             tablet/pill/capsule
12956                                                     as directed
12957                                    based on weight (50-100 lbs)
12958                                             tablet/pill/capsule
12959                                                           drops
12960                                                            <NA>
12961                                                            <NA>
12962                                                            <NA>
12963                                        2 tablets/pills/capsules
12964                                                            <NA>
12965                                                            <NA>
12966                                                 based on weight
12967                                                            <NA>
12968                                                            <NA>
12969                                                            <NA>
12970                                                            <NA>
12971                                                            <NA>
12972                                                            <NA>
12973                                                            <NA>
12974                                                            <NA>
12975                                                            <NA>
12976                                                            <NA>
12977                                                            <NA>
12978                                                            <NA>
12979                                                            <NA>
12980                                                            <NA>
12981                                                            <NA>
12982                                                            <NA>
12983                                                            <NA>
12984                                                            <NA>
12985                                                            <NA>
12986                                                            <NA>
12987                                                            <NA>
12988                                                            <NA>
12989                                                            <NA>
12990                                                            <NA>
12991                                                            <NA>
12992                                                 based on weight
12993                                                            <NA>
12994                                                            tube
12995                                             tablet/pill/capsule
12996                                                            <NA>
12997                                                            <NA>
12998                                                            <NA>
12999                                                            <NA>
13000                                                            <NA>
13001                                                            <NA>
13002                                                            <NA>
13003                                                            <NA>
13004                                                            <NA>
13005                                    based on weight (50-100 lbs)
13006                                    based on weight (60-120 lbs)
13007                                                            <NA>
13008                                           1 tablet/pill/capsule
13009                                                            <NA>
13010                                                            <NA>
13011                                                            <NA>
13012                                                            <NA>
13013                                                            <NA>
13014                                                            <NA>
13015                                                            <NA>
13016                                                            <NA>
13017                                                            <NA>
13018                                                            <NA>
13019                                                            <NA>
13020                                                            <NA>
13021                                                            <NA>
13022                                             tablet/pill/capsule
13023                                                            <NA>
13024                                                            <NA>
13025                                                            <NA>
13026                                                            <NA>
13027                                                            <NA>
13028                                                            <NA>
13029                                                            <NA>
13030                                                            <NA>
13031                                                            <NA>
13032                                                            <NA>
13033                                                            <NA>
13034                                     based on weight (20-40 lbs)
13035                                                            <NA>
13036                                                            <NA>
13037                                                            <NA>
13038                                                            <NA>
13039                                                            <NA>
13040                                                            <NA>
13041                                                            <NA>
13042                                                            <NA>
13043                                                            <NA>
13044                                                            <NA>
13045                                                            <NA>
13046                                                            <NA>
13047                                                            <NA>
13048                                                            <NA>
13049                                                    small amount
13050                                                            <NA>
13051                                                            <NA>
13052                                                            <NA>
13053                                                            <NA>
13054                                                            <NA>
13055                                                            <NA>
13056                                                            <NA>
13057                                                            <NA>
13058                                                            <NA>
13059                                                            <NA>
13060                                                            <NA>
13061                                             tablet/pill/capsule
13062                                                            <NA>
13063                                             tablet/pill/capsule
13064                                                            <NA>
13065                                                            <NA>
13066                                                            <NA>
13067                                                            <NA>
13068                                                            <NA>
13069                                                            <NA>
13070                                                            <NA>
13071                                                            <NA>
13072                                                            <NA>
13073                                                            <NA>
13074                                                            <NA>
13075                                                            <NA>
13076                                                            <NA>
13077                                                            <NA>
13078                                                            <NA>
13079                                                            <NA>
13080                                                            <NA>
13081                                                            <NA>
13082                                                            <NA>
13083                                                            <NA>
13084                                                            <NA>
13085                                                            <NA>
13086                                                            <NA>
13087                                                            <NA>
13088                                                            <NA>
13089                                                            <NA>
13090                                                            <NA>
13091                                                            <NA>
13092                                                            <NA>
13093                                                            <NA>
13094                                                            <NA>
13095                                                            <NA>
13096                                                    small amount
13097                                                            <NA>
13098                                                            <NA>
13099                                                            <NA>
13100                                                            dose
13101                                                            <NA>
13102                                                            tube
13103                                             tablet/pill/capsule
13104                                                            <NA>
13105                                                            <NA>
13106                                             tablet/pill/capsule
13107                                                            <NA>
13108                                                            <NA>
13109                                                            <NA>
13110                                                     combination
13111                                                     combination
13112                                                     combination
13113                                                            <NA>
13114                                                            <NA>
13115                                                            <NA>
13116                                                            <NA>
13117                                                            <NA>
13118                                                            <NA>
13119                                                            <NA>
13120                                                            <NA>
13121                                                            <NA>
13122                                                            <NA>
13123                                                    small amount
13124                                                    small amount
13125                                                            <NA>
13126                                                            <NA>
13127                                                            <NA>
13128                                                            <NA>
13129                                                    small amount
13130                                                    small amount
13131                                                            <NA>
13132                                                            <NA>
13133                                                            <NA>
13134                                                            <NA>
13135                                                            <NA>
13136                                                 based on weight
13137                                     based on weight (44-88 lbs)
13138                                                            <NA>
13139                                                            <NA>
13140                                                            <NA>
13141                                                            <NA>
13142                                                 based on weight
13143                                                 based on weight
13144                                                            <NA>
13145                                                            <NA>
13146                                                            <NA>
13147                                                            <NA>
13148                                                            <NA>
13149                                           1 tablet/pill/capsule
13150                                           1 tablet/pill/capsule
13151                                           1 tablet/pill/capsule
13152                                           1 tablet/pill/capsule
13153                                                            <NA>
13154                                                            <NA>
13155                                                            <NA>
13156                                                            <NA>
13157                                           1 tablet/pill/capsule
13158                                                            <NA>
13159                                                            <NA>
13160                                                            <NA>
13161                                                            <NA>
13162                                                            <NA>
13163                                                            <NA>
13164                                                            <NA>
13165                                                            <NA>
13166                                                            <NA>
13167                                             tablet/pill/capsule
13168                                             tablet/pill/capsule
13169                                             tablet/pill/capsule
13170                                             tablet/pill/capsule
13171                                                            <NA>
13172                                                            <NA>
13173                                                            <NA>
13174                                             tablet/pill/capsule
13175                                                            <NA>
13176                                                            <NA>
13177                                                            <NA>
13178                                                            <NA>
13179                                                            <NA>
13180                                                            <NA>
13181                                                            <NA>
13182                                                            <NA>
13183                                                            <NA>
13184                                                            <NA>
13185                                                            <NA>
13186                                                            <NA>
13187                                                           spray
13188                                                            <NA>
13189                                                            <NA>
13190                                                            <NA>
13191                                                            <NA>
13192                                                            <NA>
13193                                                    pack/package
13194                                                            <NA>
13195                                                           spray
13196                                                  shampoo/mousse
13197                                                            <NA>
13198                                                    small amount
13199                                             tablet/pill/capsule
13200                                                            <NA>
13201                                                            <NA>
13202                                                            <NA>
13203                                                            <NA>
13204                                                            <NA>
13205                                                            <NA>
13206                                                            <NA>
13207                                                            <NA>
13208                                             tablet/pill/capsule
13209                                             tablet/pill/capsule
13210                                                            <NA>
13211                                                            <NA>
13212                                                            <NA>
13213                                                            <NA>
13214                                                            <NA>
13215                                                            <NA>
13216                                                            <NA>
13217                                                            <NA>
13218                                                            <NA>
13219                                             tablet/pill/capsule
13220                                             tablet/pill/capsule
13221                                                            <NA>
13222                                                            <NA>
13223                                                            <NA>
13224                                                            <NA>
13225                                                            <NA>
13226                                                            <NA>
13227                                                            <NA>
13228                                                            <NA>
13229                                                            <NA>
13230                                                            <NA>
13231                                                            <NA>
13232                                                            <NA>
13233                                                     application
13234                                                            <NA>
13235                                                            <NA>
13236                                                            <NA>
13237                                                            <NA>
13238                                                            <NA>
13239                                                            <NA>
13240                                                            <NA>
13241                                                            <NA>
13242                                                            <NA>
13243                                                            <NA>
13244                                                            <NA>
13245                                                            tube
13246                                                      inch strip
13247                                                            <NA>
13248                                                            <NA>
13249                                                            <NA>
13250                                                            <NA>
13251                                                            <NA>
13252                                                            <NA>
13253                                             tablet/pill/capsule
13254                                                            <NA>
13255                                                            <NA>
13256                                                            <NA>
13257                                                            <NA>
13258                                                            <NA>
13259                                                            <NA>
13260                                                            <NA>
13261                                                            <NA>
13262                                                            <NA>
13263                                                            <NA>
13264                                                            <NA>
13265                                                            <NA>
13266                                                            <NA>
13267                                                            <NA>
13268                                                            <NA>
13269                                                            <NA>
13270                                                            <NA>
13271                                             tablet/pill/capsule
13272                                             tablet/pill/capsule
13273                                             tablet/pill/capsule
13274                                                            <NA>
13275                                                            <NA>
13276                                                            <NA>
13277                                                            <NA>
13278                                                        ointment
13279                                                        ointment
13280                                                            <NA>
13281                                                            <NA>
13282                                                            <NA>
13283                                                            <NA>
13284                                                            <NA>
13285                                                               %
13286                                                            <NA>
13287                                                            <NA>
13288                                                            <NA>
13289                                                            <NA>
13290                                                            <NA>
13291                                                            <NA>
13292                                                            <NA>
13293                                                            <NA>
13294                                                            <NA>
13295                                                            <NA>
13296                                                            <NA>
13297                                             tablet/pill/capsule
13298                                             tablet/pill/capsule
13299                                                            <NA>
13300                                                            <NA>
13301                                                            <NA>
13302                                                            <NA>
13303                                                            <NA>
13304                                                            <NA>
13305                                                            <NA>
13306                                                            <NA>
13307                                             tablet/pill/capsule
13308                                                 based on weight
13309                                                 based on weight
13310                                                            <NA>
13311                                                            <NA>
13312                                                            <NA>
13313                                                 based on weight
13314                                                 based on weight
13315                                                            <NA>
13316                                                            <NA>
13317                                                            <NA>
13318                                                            <NA>
13319                                                            <NA>
13320                                             tablet/pill/capsule
13321                                                 moderate amount
13322                                                            <NA>
13323                                                            <NA>
13324                                                            <NA>
13325                                                            <NA>
13326                                                            <NA>
13327                                                            <NA>
13328                                                            <NA>
13329                                             tablet/pill/capsule
13330                                                            <NA>
13331                                                 based on weight
13332                                                       2-3 drops
13333                                                            <NA>
13334                                                            <NA>
13335                                                            <NA>
13336                                                 based on weight
13337                                                            <NA>
13338                                                            <NA>
13339                                                            <NA>
13340                                                            <NA>
13341                                             tablet/pill/capsule
13342                                                            <NA>
13343                                             tablet/pill/capsule
13344                                             tablet/pill/capsule
13345                                                            <NA>
13346                                                            <NA>
13347                                                            <NA>
13348                                                            <NA>
13349                                                            <NA>
13350                                                            <NA>
13351                                                            <NA>
13352                                                            <NA>
13353                                                            <NA>
13354                                             tablet/pill/capsule
13355                                             tablet/pill/capsule
13356                                                            <NA>
13357                                                     unspecified
13358                                                            <NA>
13359                                                            <NA>
13360                                                            <NA>
13361                                                            <NA>
13362                                                            <NA>
13363                                             tablet/pill/capsule
13364                                                            <NA>
13365                                                            <NA>
13366                                                           spray
13367                                                            <NA>
13368                                                            <NA>
13369                                                            <NA>
13370                                                            <NA>
13371                                                            <NA>
13372                                             tablet/pill/capsule
13373                                                            <NA>
13374                                                            <NA>
13375                                                            <NA>
13376                                                            <NA>
13377                                                            <NA>
13378                                             tablet/pill/capsule
13379                                                            <NA>
13380                                                            <NA>
13381                                                            <NA>
13382                                                            <NA>
13383                                             tablet/pill/capsule
13384                                                            <NA>
13385                                                            <NA>
13386                                                            <NA>
13387                                                            <NA>
13388                                                            <NA>
13389                                                            <NA>
13390                                                            <NA>
13391                                             tablet/pill/capsule
13392                                                            <NA>
13393                                                            <NA>
13394                                                            <NA>
13395                                                            <NA>
13396                                                            <NA>
13397                                                            <NA>
13398                                                            <NA>
13399                                                            <NA>
13400                                                            <NA>
13401                                                            <NA>
13402                                                            <NA>
13403                                                            <NA>
13404                                                            <NA>
13405                                                            <NA>
13406                                                            <NA>
13407                                                            <NA>
13408                                                            <NA>
13409                                                            <NA>
13410                                                            <NA>
13411                                                            <NA>
13412                                                            <NA>
13413                                                            <NA>
13414                                                            <NA>
13415                                                            <NA>
13416                                                            <NA>
13417                                                            <NA>
13418                                                            <NA>
13419                                                            <NA>
13420                                                            <NA>
13421                                                            <NA>
13422                                                            <NA>
13423                                             tablet/pill/capsule
13424                                                            <NA>
13425                                                              gm
13426                                             tablet/pill/capsule
13427                                                            <NA>
13428                                                            <NA>
13429                                                            <NA>
13430                                                            <NA>
13431                                             tablet/pill/capsule
13432                                             tablet/pill/capsule
13433                                                            <NA>
13434                                                            <NA>
13435                                                            <NA>
13436                                                            <NA>
13437                                                            <NA>
13438                                                            <NA>
13439                                                            <NA>
13440                                                            <NA>
13441                                                            <NA>
13442                                                            <NA>
13443                                                            <NA>
13444                                                            <NA>
13445                                             tablet/pill/capsule
13446                                                            <NA>
13447                                             tablet/pill/capsule
13448                                             tablet/pill/capsule
13449                                             tablet/pill/capsule
13450                                             tablet/pill/capsule
13451                                             tablet/pill/capsule
13452                                                            tube
13453                                                            <NA>
13454                                                 based on weight
13455                                                 based on weight
13456                                                            <NA>
13457                                                            <NA>
13458                                                            <NA>
13459                                                 based on weight
13460                                                    small amount
13461                                             tablet/pill/capsule
13462                                             tablet/pill/capsule
13463                                                            <NA>
13464                                                            <NA>
13465                                                            <NA>
13466                                                            <NA>
13467                                                            <NA>
13468                                                     unspecified
13469                                                            <NA>
13470                                             tablet/pill/capsule
13471                                                 based on weight
13472                                                            <NA>
13473                                                      inch strip
13474                                                            <NA>
13475                                                 based on weight
13476                                             tablet/pill/capsule
13477                                                            <NA>
13478                                                            <NA>
13479                                                 based on weight
13480                                                            <NA>
13481                                             tablet/pill/capsule
13482                                                            <NA>
13483                                                 based on weight
13484                                                 based on weight
13485                                                            <NA>
13486                                                            <NA>
13487                                                            <NA>
13488                                                            <NA>
13489                                                            <NA>
13490                                                            <NA>
13491                                                            <NA>
13492                                                            <NA>
13493                                                            <NA>
13494                                                            <NA>
13495                                                            <NA>
13496                                                            <NA>
13497                                                            <NA>
13498                                                            <NA>
13499                                                            <NA>
13500                                                            <NA>
13501                                                            <NA>
13502                                                            <NA>
13503                                                            <NA>
13504                                                            <NA>
13505                                                            <NA>
13506                                             tablet/pill/capsule
13507                                                            <NA>
13508                                                            <NA>
13509                                                            <NA>
13510                                                            <NA>
13511                                                            <NA>
13512                                                            <NA>
13513                                                            <NA>
13514                                                            <NA>
13515                                                            <NA>
13516                                                            <NA>
13517                                                            <NA>
13518                                                            <NA>
13519                                                            <NA>
13520                                                            <NA>
13521                                                            <NA>
13522                                                            <NA>
13523                                                            <NA>
13524                                                            <NA>
13525                                                            <NA>
13526                                                            <NA>
13527                                                            <NA>
13528                                                            <NA>
13529                                                            <NA>
13530                                                            <NA>
13531                                                            <NA>
13532                                                    pack/package
13533                                                            <NA>
13534                                                            <NA>
13535                                                            <NA>
13536                                                            <NA>
13537                                                            <NA>
13538                                             tablet/pill/capsule
13539                                                            <NA>
13540                                                            <NA>
13541                                                            <NA>
13542                                                            <NA>
13543                                                            <NA>
13544                                                            <NA>
13545                                                            <NA>
13546                                                            <NA>
13547                                                            <NA>
13548                                                            <NA>
13549                                                            <NA>
13550                                                            <NA>
13551                                                            <NA>
13552                                                            <NA>
13553                                                            <NA>
13554                                                            <NA>
13555                                                            <NA>
13556                                                            <NA>
13557                                                            <NA>
13558                                                            <NA>
13559                                                            <NA>
13560                                                            <NA>
13561                                                            <NA>
13562                                                            <NA>
13563                                                  shampoo/mousse
13564                                                            <NA>
13565                                                            <NA>
13566                                                            <NA>
13567                                                            <NA>
13568                                                            <NA>
13569                                                            <NA>
13570                                                            <NA>
13571                                                            <NA>
13572                                                            <NA>
13573                                                            <NA>
13574                                                            <NA>
13575                                                        titrated
13576                                           1 tablet/pill/capsule
13577                                                            <NA>
13578                                                            pump
13579                                                            <NA>
13580                                                            <NA>
13581                                                            <NA>
13582                                                            <NA>
13583                                                            <NA>
13584                                                            <NA>
13585                                                            <NA>
13586                                                           spray
13587                                                            pump
13588                                                      inch strip
13589                                                            <NA>
13590                                                       as needed
13591                                                            <NA>
13592                                                            <NA>
13593                                                            <NA>
13594                                                            <NA>
13595                                                            <NA>
13596                                                            <NA>
13597                                                            <NA>
13598                                                            <NA>
13599                                                            <NA>
13600                                                           spray
13601                                                      inch strip
13602                                                            <NA>
13603                                                            <NA>
13604                                                            <NA>
13605                                                            <NA>
13606                                                            pump
13607                                                            <NA>
13608                                                            <NA>
13609                                                 0.25 inch strip
13610                                                            <NA>
13611                                                            <NA>
13612                                                            <NA>
13613                                                            <NA>
13614                                                            <NA>
13615                                                            <NA>
13616                                                            <NA>
13617                                                            <NA>
13618                                                    small amount
13619                                                            <NA>
13620                                                            <NA>
13621                                                            <NA>
13622                                                            <NA>
13623                                                     bottle/vial
13624                                                 based on weight
13625                                                            tube
13626                                                            <NA>
13627                                                            <NA>
13628                                                 based on weight
13629                                                            <NA>
13630                                                            <NA>
13631                                                    small amount
13632                                                            <NA>
13633                                                            <NA>
13634                                                            <NA>
13635                                                            <NA>
13636                                                            <NA>
13637                                                            <NA>
13638                                                            <NA>
13639                                                            <NA>
13640                                                            <NA>
13641                                                            <NA>
13642                                                            <NA>
13643                                                            <NA>
13644                                                            <NA>
13645                                                            <NA>
13646                                                            <NA>
13647                                                            <NA>
13648                                                            <NA>
13649                                                            <NA>
13650                                                            <NA>
13651                                                            <NA>
13652                                                            <NA>
13653                                                            <NA>
13654                                                    small amount
13655                                                            <NA>
13656                                                            <NA>
13657                                                    small amount
13658                                                            <NA>
13659                                                            <NA>
13660                                                          powder
13661                                                     bottle/vial
13662                                                            <NA>
13663                                                            <NA>
13664                                                            <NA>
13665                                                            <NA>
13666                                                   1 bottle/vial
13667                                                            <NA>
13668                                                            <NA>
13669                                                            <NA>
13670                                                            <NA>
13671                                                            <NA>
13672                                                            <NA>
13673                                                               %
13674                                                              gm
13675                                                            <NA>
13676                                                            <NA>
13677                                                            <NA>
13678                                                     bottle/vial
13679                                                            <NA>
13680                                                        inhalant
13681                                                            <NA>
13682                                                            <NA>
13683                                                            <NA>
13684                                                            <NA>
13685                                                            <NA>
13686                                                            <NA>
13687                                                            <NA>
13688                                                            <NA>
13689                                                            <NA>
13690                                                            <NA>
13691                                                            <NA>
13692                                                            <NA>
13693                                             tablet/pill/capsule
13694                                                            <NA>
13695                                                            <NA>
13696                                                            <NA>
13697                                                            <NA>
13698                                                            <NA>
13699                                                            <NA>
13700                                                            <NA>
13701                                                            <NA>
13702                                                            <NA>
13703                                                            <NA>
13704                                                            <NA>
13705                                                            <NA>
13706                                                            <NA>
13707                                                            <NA>
13708                                                            <NA>
13709                                                            <NA>
13710                                                            <NA>
13711                                                            <NA>
13712                                                            <NA>
13713                                                            <NA>
13714                                                            <NA>
13715                                                            <NA>
13716                                                            <NA>
13717                                                            <NA>
13718                                                            <NA>
13719                                             tablet/pill/capsule
13720                                                            <NA>
13721                                                            <NA>
13722                                             tablet/pill/capsule
13723                                     based on weight (44-88 lbs)
13724                                                 based on weight
13725                                                            <NA>
13726                                                            <NA>
13727                                                            <NA>
13728                                                            <NA>
13729                                                            <NA>
13730                                             tablet/pill/capsule
13731                                                            <NA>
13732                                                            <NA>
13733                                                            <NA>
13734                                                          collar
13735                                                            <NA>
13736                                                            <NA>
13737                                             tablet/pill/capsule
13738                                                            <NA>
13739                                                            <NA>
13740                                                            <NA>
13741                                                            <NA>
13742                                                            <NA>
13743                                                            <NA>
13744                                                            <NA>
13745                                                            <NA>
13746                                                            <NA>
13747                                                            <NA>
13748                                                            <NA>
13749                                                            <NA>
13750                                                            <NA>
13751                                                            <NA>
13752                                                            <NA>
13753                                                            <NA>
13754                                                            <NA>
13755                                                            <NA>
13756                                                            <NA>
13757                                                            <NA>
13758                                                            <NA>
13759                                                            <NA>
13760                                                            <NA>
13761                                                            <NA>
13762                                                            <NA>
13763                                                            <NA>
13764                                                            <NA>
13765                                                            <NA>
13766                                             tablet/pill/capsule
13767                                                            <NA>
13768                                                            <NA>
13769                                                           spray
13770                                                            <NA>
13771                                                            <NA>
13772                                                            <NA>
13773                                                            <NA>
13774                                                            <NA>
13775                                                            <NA>
13776                                                 based on weight
13777                                                            <NA>
13778                                                            <NA>
13779                                                            <NA>
13780                                                            <NA>
13781                                           1 tablet/pill/capsule
13782                                                 syringe/pipette
13783                                                 based on weight
13784                                                            <NA>
13785                                                            <NA>
13786                                                            tube
13787                                                            <NA>
13788                                                            <NA>
13789                                                            <NA>
13790                                                            <NA>
13791                                                            <NA>
13792                                                            <NA>
13793                                                            <NA>
13794                                                            <NA>
13795                                                            <NA>
13796                                                        wipe/pad
13797                                                            <NA>
13798                                                            <NA>
13799                                                            <NA>
13800                                                            <NA>
13801                                             tablet/pill/capsule
13802                                             tablet/pill/capsule
13803                                                            <NA>
13804                                                            <NA>
13805                                                    pack/package
13806                                             tablet/pill/capsule
13807                                                            <NA>
13808                                                            <NA>
13809                                                            <NA>
13810                                                            <NA>
13811                                                            <NA>
13812                                                            <NA>
13813                                                            <NA>
13814                                                            <NA>
13815                                                            <NA>
13816                                                            <NA>
13817                                                            <NA>
13818                                                            <NA>
13819                                                            <NA>
13820                                                            <NA>
13821                                                            <NA>
13822                                                            <NA>
13823                                                            <NA>
13824                                                            <NA>
13825                                                               %
13826                                                            <NA>
13827                                             tablet/pill/capsule
13828                                                    pack/package
13829                                                            <NA>
13830                                                            <NA>
13831                                                            <NA>
13832                                                            <NA>
13833                                                            <NA>
13834                                                            <NA>
13835                                                            <NA>
13836                                                            <NA>
13837                                                            <NA>
13838                                                            <NA>
13839                                                            <NA>
13840                                                            <NA>
13841                                                            dose
13842                                                            <NA>
13843                                                            <NA>
13844                                                            <NA>
13845                                                    pack/package
13846                                                            <NA>
13847                                                            <NA>
13848                                                            <NA>
13849                                                            <NA>
13850                                                            <NA>
13851                                             tablet/pill/capsule
13852                                                            <NA>
13853                                                            <NA>
13854                                                            <NA>
13855                                                            <NA>
13856                                                            <NA>
13857                                             tablet/pill/capsule
13858                                                    pack/package
13859                                                            <NA>
13860                                                            <NA>
13861                                                            <NA>
13862                                                            <NA>
13863                                                            <NA>
13864                                                            <NA>
13865                                                            <NA>
13866                                                            <NA>
13867                                                            <NA>
13868                                                            <NA>
13869                                                            <NA>
13870                                                            <NA>
13871                                                            <NA>
13872                                                            <NA>
13873                                                            <NA>
13874                                                    pack/package
13875                                                            <NA>
13876                                                            <NA>
13877                                                            <NA>
13878                                                            <NA>
13879                                                            <NA>
13880                                                            <NA>
13881                                                            <NA>
13882                                                            <NA>
13883                                                            <NA>
13884                                                            <NA>
13885                                                            <NA>
13886                                                            <NA>
13887                                                            <NA>
13888                                                            <NA>
13889                                                            <NA>
13890                                                            <NA>
13891                                                            <NA>
13892                                                            <NA>
13893                                                            <NA>
13894                                                            <NA>
13895                                                            <NA>
13896                                                 based on weight
13897                                                 based on weight
13898                                                            <NA>
13899                                                            <NA>
13900                                                            <NA>
13901                                                            <NA>
13902                                                            <NA>
13903                                                            <NA>
13904                                                            <NA>
13905                                                            <NA>
13906                                                            <NA>
13907                                                            <NA>
13908                                                            <NA>
13909                                                            <NA>
13910                                                 based on weight
13911                                                 based on weight
13912                                                            <NA>
13913                                                            <NA>
13914                                                            <NA>
13915                                                            <NA>
13916                                                            <NA>
13917                                                            <NA>
13918                                                            <NA>
13919                                                            <NA>
13920                                                            <NA>
13921                                                            <NA>
13922                                                            <NA>
13923                                                            <NA>
13924                                                            <NA>
13925                                                            <NA>
13926                                                            <NA>
13927                                                            <NA>
13928                                                            <NA>
13929                                                            <NA>
13930                                                            <NA>
13931                                                            <NA>
13932                                                            <NA>
13933                                                            <NA>
13934                                                            <NA>
13935                                                            <NA>
13936                                                            <NA>
13937                                                            <NA>
13938                                                            <NA>
13939                                                            <NA>
13940                                                            <NA>
13941                                                            <NA>
13942                                                            <NA>
13943                                                            <NA>
13944                                                            <NA>
13945                                                            <NA>
13946                                                           spray
13947                                                            <NA>
13948                                                            <NA>
13949                                                            <NA>
13950                                                            <NA>
13951                                                            <NA>
13952                                                            <NA>
13953                                                            <NA>
13954                                                            <NA>
13955                                                            <NA>
13956                                                            <NA>
13957                                                            pump
13958                                                           drops
13959                                                            <NA>
13960                                                            <NA>
13961                                                            <NA>
13962                                                            <NA>
13963                                                            <NA>
13964                                                            <NA>
13965                                             tablet/pill/capsule
13966                                                            <NA>
13967                                                           mg/ml
13968                                                            <NA>
13969                                                            <NA>
13970                                                            <NA>
13971                                                            <NA>
13972                                                            <NA>
13973                                             tablet/pill/capsule
13974                                                            <NA>
13975                                                            <NA>
13976                                                            <NA>
13977                                                            <NA>
13978                                                            <NA>
13979                                                            <NA>
13980                                                            <NA>
13981                                                            <NA>
13982                                                            <NA>
13983                                                            <NA>
13984                                                            <NA>
13985                                                            <NA>
13986                                                            <NA>
13987                                                            <NA>
13988                                                            <NA>
13989                                                            <NA>
13990                                                            <NA>
13991                                                            <NA>
13992                                                            <NA>
13993                                                            <NA>
13994                                                            <NA>
13995                                                            <NA>
13996                                                            <NA>
13997                                                            <NA>
13998                                           1 tablet/pill/capsule
13999                                             tablet/pill/capsule
14000                                                            <NA>
14001                                                            <NA>
14002                                                            <NA>
14003                                                            <NA>
14004                                                            <NA>
14005                                                            <NA>
14006                                                           spray
14007                                             tablet/pill/capsule
14008                                                            <NA>
14009                                                            <NA>
14010                                                            <NA>
14011                                                            <NA>
14012                                                            <NA>
14013                                                            <NA>
14014                                                 based on weight
14015                                                            <NA>
14016                                                            <NA>
14017                                                            <NA>
14018                                                            <NA>
14019                                                            <NA>
14020                                                            <NA>
14021                                                            <NA>
14022                                                            <NA>
14023                                                            <NA>
14024                                                            <NA>
14025                                                            <NA>
14026                                                            <NA>
14027                                                            <NA>
14028                                                            <NA>
14029                                                            <NA>
14030                                                            <NA>
14031                                                            <NA>
14032                                                            <NA>
14033                                                            <NA>
14034                                                            <NA>
14035                                                            <NA>
14036                                                            <NA>
14037                                                            <NA>
14038                                                            <NA>
14039                                                            <NA>
14040                                                            <NA>
14041                                                            <NA>
14042                                                            <NA>
14043                                                            <NA>
14044                                                            <NA>
14045                                                            <NA>
14046                                                            <NA>
14047                                                            <NA>
14048                                                            <NA>
14049                                                            <NA>
14050                                                 0.25 inch strip
14051                                             tablet/pill/capsule
14052                                                            <NA>
14053                                                            <NA>
14054                                                            <NA>
14055                                                            <NA>
14056                                                            <NA>
14057                                                            <NA>
14058                                                            <NA>
14059                                                            <NA>
14060                                             tablet/pill/capsule
14061                                                            <NA>
14062                                                            <NA>
14063                                                            <NA>
14064                                                 based on weight
14065                                             tablet/pill/capsule
14066                                                            <NA>
14067                                                            <NA>
14068                                                            <NA>
14069                                                            <NA>
14070                                                            <NA>
14071                                                 based on weight
14072                                                            <NA>
14073                                                            <NA>
14074                                                            <NA>
14075                                                            <NA>
14076                                                            <NA>
14077                                                            <NA>
14078                                                            <NA>
14079                                                            <NA>
14080                                                            <NA>
14081                                                          liquid
14082                                                            <NA>
14083                                                            <NA>
14084                                                            <NA>
14085                                                            <NA>
14086                                                            <NA>
14087                                                            <NA>
14088                                                            <NA>
14089                                                            <NA>
14090                                                            <NA>
14091                                                            <NA>
14092                                                            <NA>
14093                                                            <NA>
14094                                                            <NA>
14095                                                            <NA>
14096                                                            <NA>
14097                                                            <NA>
14098                                                            <NA>
14099                                                            <NA>
14100                                                            <NA>
14101                                                            <NA>
14102                                                            <NA>
14103                                                            <NA>
14104                                                            <NA>
14105                                                            <NA>
14106                                                 based on weight
14107                                                            <NA>
14108                                                            <NA>
14109                                                            <NA>
14110                                                 based on weight
14111                                                            <NA>
14112                                                            <NA>
14113                                             tablet/pill/capsule
14114                                             tablet/pill/capsule
14115                                                            <NA>
14116                                             tablet/pill/capsule
14117                                                            <NA>
14118                                                            <NA>
14119                                                            <NA>
14120                                                            <NA>
14121                                                            <NA>
14122                                                            <NA>
14123                                                            <NA>
14124                                                            <NA>
14125                                                            <NA>
14126                                                            <NA>
14127                                                    pack/package
14128                                                            <NA>
14129                                                 based on weight
14130                                                            <NA>
14131                                                    small amount
14132                                                            <NA>
14133                                                            <NA>
14134                                                            <NA>
14135                                                            <NA>
14136                                                            <NA>
14137                                                 based on weight
14138                                                            <NA>
14139                                                            <NA>
14140                                                            <NA>
14141                                                            <NA>
14142                                                            <NA>
14143                                                            <NA>
14144                                                            <NA>
14145                                                    pack/package
14146                                                            <NA>
14147                                             tablet/pill/capsule
14148                                                     bottle/vial
14149                                             tablet/pill/capsule
14150                                             tablet/pill/capsule
14151                                             tablet/pill/capsule
14152                                                            <NA>
14153                                                 based on weight
14154                                             tablet/pill/capsule
14155                                                            <NA>
14156                                                            <NA>
14157                                                            <NA>
14158                                                            <NA>
14159                                                            <NA>
14160                                                            <NA>
14161                                                            <NA>
14162                                             tablet/pill/capsule
14163                                             tablet/pill/capsule
14164                                             tablet/pill/capsule
14165                                                            <NA>
14166                                                            <NA>
14167                                                    small amount
14168                                                            <NA>
14169                                                            <NA>
14170                                                    small amount
14171                                                            tube
14172                                                 based on weight
14173                                                 based on weight
14174                                                            tube
14175                                                            <NA>
14176                                                            <NA>
14177                                           1 tablet/pill/capsule
14178                                                            tube
14179                                                            tube
14180                                                            <NA>
14181                                             tablet/pill/capsule
14182                                                            <NA>
14183                                                            <NA>
14184                                                            <NA>
14185                                                            <NA>
14186                                                            <NA>
14187                                                            <NA>
14188                                                            <NA>
14189                                                               %
14190                                                            <NA>
14191                                                            <NA>
14192                                                            <NA>
14193                                                            <NA>
14194                                                            <NA>
14195                                                            <NA>
14196                                                            <NA>
14197                                                            <NA>
14198                                                            <NA>
14199                                                            <NA>
14200                                                            <NA>
14201                                             tablet/pill/capsule
14202                                                            <NA>
14203                                                            <NA>
14204                                                            <NA>
14205                                                            <NA>
14206                                                            <NA>
14207                                                            <NA>
14208                                                            <NA>
14209                                                            <NA>
14210                                                            <NA>
14211                                                            <NA>
14212                                                            <NA>
14213                                                            <NA>
14214                                                            <NA>
14215                                                            <NA>
14216                                                            <NA>
14217                                                            <NA>
14218                                                            <NA>
14219                                                 based on weight
14220                                                            <NA>
14221                                                            <NA>
14222                                                            <NA>
14223                                                            <NA>
14224                                                            <NA>
14225                                                            <NA>
14226                                                            <NA>
14227                                                            <NA>
14228                                                            <NA>
14229                                                            <NA>
14230                                                            <NA>
14231                                                            <NA>
14232                                                            pump
14233                                                            <NA>
14234                                                            <NA>
14235                                             tablet/pill/capsule
14236                                             tablet/pill/capsule
14237                                             tablet/pill/capsule
14238                                                    small amount
14239                                             tablet/pill/capsule
14240                                                            <NA>
14241                                                            <NA>
14242                                                            <NA>
14243                                                            <NA>
14244                                                            <NA>
14245                                                            <NA>
14246                                                            <NA>
14247                                                            <NA>
14248                                                            <NA>
14249                                                 based on weight
14250                                                            <NA>
14251                                                            <NA>
14252                                                            <NA>
14253                                                            <NA>
14254                                                            <NA>
14255                                                            <NA>
14256                                                            <NA>
14257                                                            <NA>
14258                                                            <NA>
14259                                                            <NA>
14260                                                            <NA>
14261                                                            <NA>
14262                                                            <NA>
14263                                                            <NA>
14264                                                            <NA>
14265                                                            <NA>
14266                                                            <NA>
14267                                                            <NA>
14268                                                            <NA>
14269                                                            <NA>
14270                                                            <NA>
14271                                                            <NA>
14272                                                            <NA>
14273                                                            <NA>
14274                                                            <NA>
14275                                                            <NA>
14276                                                            <NA>
14277                                                            <NA>
14278                                                            <NA>
14279                                                            <NA>
14280                                                            <NA>
14281                                                            <NA>
14282                                                            <NA>
14283                                                            <NA>
14284                                                            <NA>
14285                                                            <NA>
14286                                                 based on weight
14287                                                            <NA>
14288                                                            <NA>
14289                                                            <NA>
14290                                                            <NA>
14291                                                            pump
14292                                                            <NA>
14293                                                            <NA>
14294                                                            <NA>
14295                                                            <NA>
14296                                                            <NA>
14297                                                            <NA>
14298                                                 based on weight
14299                                                            <NA>
14300                                                            <NA>
14301                                    based on weight (50-100 lbs)
14302                                       based on weight (25+ lbs)
14303                                                            <NA>
14304                                                            <NA>
14305                                                            <NA>
14306                                                            <NA>
14307                                                            <NA>
14308                                                            <NA>
14309                                                            <NA>
14310                                                            <NA>
14311                                                            <NA>
14312                                                            <NA>
14313                                                            <NA>
14314                                                            <NA>
14315                                                            <NA>
14316                                             tablet/pill/capsule
14317                                             tablet/pill/capsule
14318                                             tablet/pill/capsule
14319                                                            <NA>
14320                                                            <NA>
14321                                                            <NA>
14322                                                            <NA>
14323                                                      inch strip
14324                                                            <NA>
14325                                                            <NA>
14326                                                            <NA>
14327                                                            <NA>
14328                                                            <NA>
14329                                                            <NA>
14330                                                            <NA>
14331                                                            <NA>
14332                                                            <NA>
14333                                                            <NA>
14334                                                            tube
14335                                                            <NA>
14336                                                            <NA>
14337                                                            <NA>
14338                                                            <NA>
14339                                                            tube
14340                                                            tube
14341                                                            tube
14342                                                            <NA>
14343                                                            tube
14344                                                            <NA>
14345                                                            <NA>
14346                                                            tube
14347                                                            <NA>
14348                                                            <NA>
14349                                                            <NA>
14350                                                            tube
14351                                             tablet/pill/capsule
14352                                                            tube
14353                                                            <NA>
14354                                             tablet/pill/capsule
14355                                             tablet/pill/capsule
14356                                                            <NA>
14357                                                            <NA>
14358                                             tablet/pill/capsule
14359                                                            <NA>
14360                                                            <NA>
14361                                                            <NA>
14362                                                            <NA>
14363                                                            <NA>
14364                                                            <NA>
14365                                                     combination
14366                     272 mcg ivermectin, 227 mg pyrantel pamoate
14367 680.4 mg febantel, 136 mg praziquantel, 136 mg pyrantel pamoate
14368                                                            <NA>
14369                                                            <NA>
14370                                                            <NA>
14371                                                    pack/package
14372                                                 based on weight
14373                                       based on weight (18+ lbs)
14374                                                            <NA>
14375                                                 based on weight
14376                                                          collar
14377                                                            <NA>
14378                                             tablet/pill/capsule
14379                                                 based on weight
14380                                                          collar
14381                                                            <NA>
14382                                                            <NA>
14383                                                            <NA>
14384                                                            <NA>
14385                                                            <NA>
14386                                                            <NA>
14387                                                            <NA>
14388                                                            <NA>
14389                                                            <NA>
14390                                                            <NA>
14391                                                            <NA>
14392                                             tablet/pill/capsule
14393                                                            <NA>
14394                                                            <NA>
14395                                                            <NA>
14396                                                            <NA>
14397                                                            <NA>
14398                                             tablet/pill/capsule
14399                                                            <NA>
14400                                                     unspecified
14401                                                       as needed
14402                                                            <NA>
14403                                                            <NA>
14404                                                            <NA>
14405                                                            <NA>
14406                                    based on weight (50-100 lbs)
14407                                                            <NA>
14408                                             tablet/pill/capsule
14409                                                            <NA>
14410                                                            <NA>
14411                                                            <NA>
14412                                                            <NA>
14413                                                            <NA>
14414                                                     unspecified
14415                                                            <NA>
14416                                                            <NA>
14417                                                            <NA>
14418                                                            <NA>
14419                                                            <NA>
14420                                                            <NA>
14421                                                            <NA>
14422                                                            <NA>
14423                                                            <NA>
14424                                                            <NA>
14425                                                            <NA>
14426                                                            <NA>
14427                                                            <NA>
14428                                                            <NA>
14429                                    based on weight (50-100 lbs)
14430                                                            <NA>
14431                                    based on weight (50-100 lbs)
14432                                                 based on weight
14433                                                     unspecified
14434                                                           scoop
14435                                                            <NA>
14436                                                            <NA>
14437                                                               %
14438                                                            <NA>
14439                                                            <NA>
14440                                                            <NA>
14441                                                            <NA>
14442                                                            <NA>
14443                                    based on weight (50-100 lbs)
14444                                                     unspecified
14445                                                     unspecified
14446                                                     unspecified
14447                                                     unspecified
14448                                    based on weight (50-100 lbs)
14449                                    based on weight (50-100 lbs)
14450                                                            <NA>
14451                                             tablet/pill/capsule
14452                                                            <NA>
14453                                                            <NA>
14454                                                            <NA>
14455                                                 0.25 inch strip
14456                                                            <NA>
14457                                                            <NA>
14458                                                            <NA>
14459                                                            <NA>
14460                                                            <NA>
14461                                                            <NA>
14462                                                            <NA>
14463                                                            <NA>
14464                                                            <NA>
14465                                                            <NA>
14466                                                            <NA>
14467                                                            <NA>
14468                                                            <NA>
14469                                                            <NA>
14470                                                            <NA>
14471                                                     unspecified
14472                                                            <NA>
14473                                                     unspecified
14474                                                            <NA>
14475                                                            <NA>
14476                                                            <NA>
14477                                                            <NA>
14478                                                            <NA>
14479                                                 based on weight
14480                                                            <NA>
14481                                                            <NA>
14482                                                            <NA>
14483                                                            <NA>
14484                                                            <NA>
14485                                                            <NA>
14486                                                            <NA>
14487                                                            <NA>
14488                                           1 tablet/pill/capsule
14489                                             tablet/pill/capsule
14490                                    based on weight (50-100 lbs)
14491                                                            <NA>
14492                                                            <NA>
14493                                                            <NA>
14494                                                            <NA>
14495                                           1 tablet/pill/capsule
14496                                                            <NA>
14497                                                            <NA>
14498                                             tablet/pill/capsule
14499                                    based on weight (50-100 lbs)
14500                                                            <NA>
14501                                                            <NA>
14502                                                            <NA>
14503                                                            <NA>
14504                                                            <NA>
14505                                                            <NA>
14506                                                            <NA>
14507                                                            <NA>
14508                                                            <NA>
14509                                                            <NA>
14510                                                            <NA>
14511                                                            <NA>
14512                                                            <NA>
14513                                                            <NA>
14514                                                            <NA>
14515                                                 based on weight
14516                                                            <NA>
14517                                                            <NA>
14518                                                            <NA>
14519                                                            <NA>
14520                                                            <NA>
14521                                                            <NA>
14522                                                            <NA>
14523                                                            <NA>
14524                                                            <NA>
14525                                                            <NA>
14526                                                            <NA>
14527                                                 based on weight
14528                                     based on weight (44-88 lbs)
14529                                    based on weight (50-100 lbs)
14530                                                            <NA>
14531                                                            <NA>
14532                                                            <NA>
14533                                                            <NA>
14534                                                            <NA>
14535                                                            <NA>
14536                                                            <NA>
14537                                                            <NA>
14538                                                            <NA>
14539                                                            <NA>
14540                                                            <NA>
14541                                                            <NA>
14542                                                            <NA>
14543                                                            <NA>
14544                                                            <NA>
14545                                                            <NA>
14546                                                            <NA>
14547                                    based on weight (50-100 lbs)
14548                                                            <NA>
14549                                                            <NA>
14550                                                            <NA>
14551                                                            <NA>
14552                                                            <NA>
14553                                    based on weight (50-100 lbs)
14554                                     based on weight (44-88 lbs)
14555                                                            <NA>
14556                                             tablet/pill/capsule
14557                                             tablet/pill/capsule
14558                                                            <NA>
14559                                             tablet/pill/capsule
14560                                                            <NA>
14561                                                            <NA>
14562                                                 based on weight
14563                                                            <NA>
14564                                                            <NA>
14565                                                            <NA>
14566                                                            <NA>
14567                                                            <NA>
14568                                                            <NA>
14569                                                               %
14570                                                            <NA>
14571                                                            <NA>
14572                                                            <NA>
14573                                                            <NA>
14574                                                            <NA>
14575                                                            <NA>
14576                                                 based on weight
14577                                                 based on weight
14578                                       based on weight (25+ lbs)
14579                                                            <NA>
14580                                                            <NA>
14581                                                            <NA>
14582                                                 based on weight
14583                                                 based on weight
14584                                                 based on weight
14585                                                 based on weight
14586                                                 based on weight
14587                                                 based on weight
14588                                                 based on weight
14589                                                            <NA>
14590                                                            <NA>
14591                                                            <NA>
14592                                                            <NA>
14593                                                            <NA>
14594                                             tablet/pill/capsule
14595                                                            <NA>
14596                                             tablet/pill/capsule
14597                                                            <NA>
14598                                                            <NA>
14599                                                            <NA>
14600                                                            <NA>
14601                                                     unspecified
14602                                                            <NA>
14603                                                            <NA>
14604                                                            <NA>
14605                                                            <NA>
14606                                                            <NA>
14607                                                            <NA>
14608                                                            <NA>
14609                                                            <NA>
14610                                                            <NA>
14611                                                           spray
14612                                                            <NA>
14613                                                            <NA>
14614                                                            <NA>
14615                                                            <NA>
14616                                             tablet/pill/capsule
14617                                                            <NA>
14618                                                            <NA>
14619                                                            <NA>
14620                                                            <NA>
14621                                                            <NA>
14622                                                            <NA>
14623                                                 based on weight
14624                                                            <NA>
14625                                                            <NA>
14626                                                            <NA>
14627                                                            <NA>
14628                                                            <NA>
14629                                                            <NA>
14630                                                            <NA>
14631                                                 based on weight
14632                                                            <NA>
14633                                                            <NA>
14634                                                            <NA>
14635                                                            <NA>
14636                                                            <NA>
14637                                                            <NA>
14638                                                            <NA>
14639                                                            <NA>
14640                                                            <NA>
14641                                                            <NA>
14642                                                            <NA>
14643                                             tablet/pill/capsule
14644                                             tablet/pill/capsule
14645                                                            <NA>
14646                                                            <NA>
14647                                                            <NA>
14648                                                            <NA>
14649                                                            <NA>
14650                                                    small amount
14651                                                            <NA>
14652                                                            <NA>
14653                                                            <NA>
14654                                                               %
14655                                                            <NA>
14656                                                            <NA>
14657                                                            <NA>
14658                     272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                            <NA>
14660                                                            <NA>
14661                                                            <NA>
14662                                                            <NA>
14663                                                            <NA>
14664                                    based on weight (50-100 lbs)
14665                                    based on weight (60-120 lbs)
14666                                                            <NA>
14667                                                            <NA>
14668                                                            <NA>
14669                                                            <NA>
14670                                                            <NA>
14671                                                            <NA>
14672                                                            <NA>
14673                                                            <NA>
14674                                                            <NA>
14675                                                            <NA>
14676                                                            <NA>
14677                                                            <NA>
14678                                                            <NA>
14679                                                            <NA>
14680                                             tablet/pill/capsule
14681                                             tablet/pill/capsule
14682                                                            <NA>
14683                                                            <NA>
14684                                                            <NA>
14685                                                            <NA>
14686                                             tablet/pill/capsule
14687                                                            <NA>
14688                                                            <NA>
14689                                                            <NA>
14690                                                            <NA>
14691                                                            <NA>
14692                                                            <NA>
14693                                                            <NA>
14694                                                            <NA>
14695                                                            <NA>
14696                                                            <NA>
14697                                                        ointment
14698                                                            <NA>
14699                                                     application
14700                                                 based on weight
14701                                                 based on weight
14702                                                            <NA>
14703                                                            <NA>
14704                                                            <NA>
14705                                                            <NA>
14706                                                            <NA>
14707                                                            <NA>
14708                                                            <NA>
14709                                                            <NA>
14710                                     based on weight (56-95 lbs)
14711                                    based on weight (50-100 lbs)
14712                                     based on weight (56-95 lbs)
14713                                        based on weight (85 lbs)
14714                                                            <NA>
14715                                                            <NA>
14716                                                            <NA>
14717                                                            <NA>
14718                                             tablet/pill/capsule
14719                                             tablet/pill/capsule
14720                                    based on weight (50-100 lbs)
14721                                     based on weight (56-95 lbs)
14722                                    based on weight (50-100 lbs)
14723                                    based on weight (50-100 lbs)
14724                                                            <NA>
14725                                                            <NA>
14726                                     based on weight (44-88 lbs)
14727                                                            <NA>
14728                                                            <NA>
14729                                                            <NA>
14730                                                            <NA>
14731                                                            <NA>
14732                                                            <NA>
14733                                                            <NA>
14734                                                            <NA>
14735                                                            <NA>
14736                                                            <NA>
14737                                    based on weight (50-100 lbs)
14738                                     based on weight (44-88 lbs)
14739                                                            <NA>
14740                                                            <NA>
14741                                                            <NA>
14742                                                            <NA>
14743                                                            <NA>
14744                                                 based on weight
14745                                                            <NA>
14746                                     based on weight (44-88 lbs)
14747                                                            <NA>
14748                                                           drops
14749                                                            <NA>
14750                                                            <NA>
14751                                                            <NA>
14752                                                            <NA>
14753                                                            <NA>
14754                                       based on weight (22+ lbs)
14755                                    based on weight (50-100 lbs)
14756                                                            <NA>
14757                                                            <NA>
14758                                                            <NA>
14759                                                            <NA>
14760                                                 based on weight
14761                                                            <NA>
14762                                                            tube
14763                                    based on weight (50-100 lbs)
14764                                                            <NA>
14765                                                            <NA>
14766                                                            <NA>
14767                                                            <NA>
14768                                                            <NA>
14769                                                            <NA>
14770                                             tablet/pill/capsule
14771                                             tablet/pill/capsule
14772                                                            <NA>
14773                                                            <NA>
14774                                                            <NA>
14775                                                            <NA>
14776                                                            <NA>
14777                                                            <NA>
14778                                                            <NA>
14779                                                            <NA>
14780                                                            <NA>
14781                                                            tube
14782                                                            <NA>
14783                                                            <NA>
14784                                                            <NA>
14785                                                            <NA>
14786                                                            <NA>
14787                                                            <NA>
14788                                                            <NA>
14789                                                            <NA>
14790                                                            <NA>
14791                                                            <NA>
14792                                                            <NA>
14793                                                            <NA>
14794                                                            <NA>
14795                                                            <NA>
14796                                                            <NA>
14797                                                            <NA>
14798                                                            <NA>
14799                                                            <NA>
14800                                             tablet/pill/capsule
14801                                                            <NA>
14802                                                            <NA>
14803                                                            <NA>
14804                                                            <NA>
14805                                             tablet/pill/capsule
14806                                                            <NA>
14807                                                            <NA>
14808                                                            <NA>
14809                                                            <NA>
14810                                                            <NA>
14811                                                            <NA>
14812                                                            <NA>
14813                                                            <NA>
14814                                                            <NA>
14815                                                            <NA>
14816                                                            <NA>
14817                                                            <NA>
14818                                                            <NA>
14819                                             tablet/pill/capsule
14820                                                            <NA>
14821                                                            <NA>
14822                                                            <NA>
14823                                                            <NA>
14824                                                            <NA>
14825                                                            <NA>
14826                                                            <NA>
14827                                                            <NA>
14828                                                            <NA>
14829                                                            <NA>
14830                                                            <NA>
14831                                                            <NA>
14832                                                            <NA>
14833                                                            <NA>
14834                                                            <NA>
14835                                                               %
14836                                                            <NA>
14837                                                            <NA>
14838                                                            <NA>
14839                                                            <NA>
14840                                                            <NA>
14841                                                            <NA>
14842                                                            <NA>
14843                                                            <NA>
14844                                                             tbs
14845                                                             tbs
14846                                                            <NA>
14847                                                            <NA>
14848                                                            <NA>
14849                                                            <NA>
14850                                             tablet/pill/capsule
14851                                             tablet/pill/capsule
14852                                                            <NA>
14853                                                            <NA>
14854                                                            <NA>
14855                                                            <NA>
14856                                                            <NA>
14857                                                            <NA>
14858                                                            <NA>
14859                                                            <NA>
14860                                                            <NA>
14861                                                 based on weight
14862                                                            <NA>
14863                                                            <NA>
14864                                                            <NA>
14865                                                            <NA>
14866                                                            <NA>
14867                                                            <NA>
14868                                                            <NA>
14869                                                            <NA>
14870                                                            <NA>
14871                                                            <NA>
14872                                                            <NA>
14873                                                            <NA>
14874                                                 based on weight
14875                                                 based on weight
14876                                                            <NA>
14877                                                            <NA>
14878                                                            <NA>
14879                                                            <NA>
14880                                                            <NA>
14881                                                            <NA>
14882                                                            <NA>
14883                                                            <NA>
14884                                                            <NA>
14885                                                            <NA>
14886                                                            <NA>
14887                                                            <NA>
14888                                                            <NA>
14889                                                            <NA>
14890                                                            <NA>
14891                                                            <NA>
14892                                                            <NA>
14893                                                            <NA>
14894                                                            <NA>
14895                                                            <NA>
14896                                                            <NA>
14897                                                            <NA>
14898                                                            <NA>
14899                                                            <NA>
14900                                                            <NA>
14901                                                            <NA>
14902                                                            <NA>
14903                                                            <NA>
14904                                                            <NA>
14905                                                            <NA>
14906                                                            <NA>
14907                                                            <NA>
14908                                                            <NA>
14909                                                            <NA>
14910                                                            <NA>
14911                                                            <NA>
14912                                                            <NA>
14913                                                            <NA>
14914                                                            <NA>
14915                                                            <NA>
14916                                                            <NA>
14917                                                            <NA>
14918                                                            <NA>
14919                                                               %
14920                                                            <NA>
14921                                                            <NA>
14922                                                            <NA>
14923                                                            <NA>
14924                                                            <NA>
14925                                                            <NA>
14926                                                            <NA>
14927                                                            <NA>
14928                                                            <NA>
14929                                                            <NA>
14930                                                            <NA>
14931                                                            <NA>
14932                                                            <NA>
14933                                                            <NA>
14934                                                            <NA>
14935                                                            <NA>
14936                                                            <NA>
14937                                                     unspecified
14938                                                            <NA>
14939                                                            <NA>
14940                                                            <NA>
14941                                                            <NA>
14942                                                            <NA>
14943                                                            <NA>
14944                                                            <NA>
14945                                                            <NA>
14946                                                               %
14947                                                            <NA>
14948                                                            <NA>
14949                                                            <NA>
14950                                                            <NA>
14951                                                             pnu
14952                                                            <NA>
14953                                                            <NA>
14954                                                            <NA>
14955                                                            <NA>
14956                                                            <NA>
14957                                                            <NA>
14958                                                            <NA>
14959                                                            <NA>
14960                                                            <NA>
14961                                                            <NA>
14962                                                            <NA>
14963                                                 0.25 inch strip
14964                                                            <NA>
14965                                                            <NA>
14966                                                            <NA>
14967                                                            <NA>
14968                                                            <NA>
14969                                                            <NA>
14970                                                            <NA>
14971                                                 based on weight
14972                                             tablet/pill/capsule
14973                                                     unspecified
14974                                             tablet/pill/capsule
14975                                             tablet/pill/capsule
14976                                                            <NA>
14977                                                            <NA>
14978                                             tablet/pill/capsule
14979                                         0.5 tablet/pill/capsule
14980                                                            <NA>
14981                                                 based on weight
14982                                             tablet/pill/capsule
14983                                                     as directed
14984                                                            <NA>
14985                                                            <NA>
14986                                                            <NA>
14987                                                            <NA>
14988                                                            <NA>
14989                                                            <NA>
14990                                                            <NA>
14991                                                            <NA>
14992                                                            <NA>
14993                                                            <NA>
14994                                                            <NA>
14995                                                            <NA>
14996                                                            <NA>
14997                                                            <NA>
14998                                                            <NA>
14999                                                            <NA>
15000                                                            <NA>
15001                                                            <NA>
15002                                                            <NA>
15003                                                            <NA>
15004                                                            <NA>
15005                                                            <NA>
15006                                                            <NA>
15007                                                            <NA>
15008                                                            <NA>
15009                                                            <NA>
15010                                                            <NA>
15011                                                            <NA>
15012                                                            <NA>
15013                                                            <NA>
15014                                                            <NA>
15015                                                            <NA>
15016                                                            <NA>
15017                                    based on weight (50-100 lbs)
15018                                                            <NA>
15019                                                            <NA>
15020                                                            <NA>
15021                                                            <NA>
15022                                                            <NA>
15023                                                   1 bottle/vial
15024                                                            <NA>
15025                                                            <NA>
15026                                                            <NA>
15027                                                            <NA>
15028                                                            <NA>
15029                                                            <NA>
15030                                                            <NA>
15031                                                            <NA>
15032                                                            <NA>
15033                                                            <NA>
15034                                                            <NA>
15035                                                            <NA>
15036                                                            <NA>
15037                                                            <NA>
15038                                                            <NA>
15039                                                            <NA>
15040                                                            <NA>
15041                                                            <NA>
15042                                                            <NA>
15043                                                            <NA>
15044                                                            <NA>
15045                                                            <NA>
15046                                                            <NA>
15047                                                            <NA>
15048                                                 based on weight
15049                                                            <NA>
15050                                                     as directed
15051                                                            <NA>
15052                                                            <NA>
15053                                                            <NA>
15054                                                            <NA>
15055                                                            <NA>
15056                                                            <NA>
15057                                                            <NA>
15058                                                            <NA>
15059                                           1 tablet/pill/capsule
15060                                                            <NA>
15061                                             tablet/pill/capsule
15062                                                            <NA>
15063                                                            <NA>
15064                                                            <NA>
15065                                                            <NA>
15066                                                            <NA>
15067                                                            <NA>
15068                                                            <NA>
15069                                                            <NA>
15070                                                            <NA>
15071                                                            <NA>
15072                                                            <NA>
15073                                                            <NA>
15074                                                            <NA>
15075                                                            <NA>
15076                                                            <NA>
15077                                                          collar
15078                                                            <NA>
15079                                                            <NA>
15080                                                            <NA>
15081                                                            <NA>
15082                                                            <NA>
15083                                                          1 tube
15084                                                            <NA>
15085                                                            <NA>
15086                                                            <NA>
15087                                                            <NA>
15088                                                            <NA>
15089                                                            <NA>
15090                                                            <NA>
15091                                                            <NA>
15092                                                            <NA>
15093                                                            <NA>
15094                                                            <NA>
15095                                                            <NA>
15096                                                            <NA>
15097                                                            <NA>
15098                                                            <NA>
15099                                                            <NA>
15100                                                            <NA>
15101                                                            <NA>
15102                                                            <NA>
15103                                                            <NA>
15104                                                            <NA>
15105                                                            <NA>
15106                                                            <NA>
15107                                                            <NA>
15108                                                            <NA>
15109                                                            <NA>
15110                                                            <NA>
15111                                                            <NA>
15112                                                            <NA>
15113                                                            <NA>
15114                                                            <NA>
15115                                                            <NA>
15116                                                            <NA>
15117                                                            <NA>
15118                                                            <NA>
15119                                                            <NA>
15120                                                            <NA>
15121                                                            <NA>
15122                                                            <NA>
15123                                                            <NA>
15124                                                            <NA>
15125                                                            <NA>
15126                                                            <NA>
15127                                                            <NA>
15128                                             tablet/pill/capsule
15129                                                           drops
15130                                                            <NA>
15131                                                            <NA>
15132                                                            <NA>
15133                                                            <NA>
15134                                                            <NA>
15135                                                            <NA>
15136                                                            <NA>
15137                                                           spray
15138                                                            <NA>
15139                                                     combination
15140                                                     combination
15141                                                            <NA>
15142                                                            <NA>
15143                                                            <NA>
15144                                                            <NA>
15145                                                            <NA>
15146                                                            <NA>
15147                                                            <NA>
15148                                                            <NA>
15149                                                            <NA>
15150                                                 based on weight
15151                                                            <NA>
15152                                                            <NA>
15153                                                            <NA>
15154                                                            <NA>
15155                                                            <NA>
15156                                                            <NA>
15157                                                               %
15158                                                            <NA>
15159                                                            <NA>
15160                                                            <NA>
15161                                                            <NA>
15162                                                            <NA>
15163                                                            <NA>
15164                                                            <NA>
15165                                                            <NA>
15166                                                            <NA>
15167                                                            <NA>
15168                                                            <NA>
15169                                                            <NA>
15170                                                            <NA>
15171                                                            <NA>
15172                                                            <NA>
15173                                                            <NA>
15174                                                            <NA>
15175                                                            <NA>
15176                                                            <NA>
15177                                                            <NA>
15178                                                 based on weight
15179                                                            <NA>
15180                                                            <NA>
15181                                                            <NA>
15182                                                            <NA>
15183                                                            <NA>
15184                                                            <NA>
15185                                                            <NA>
15186                                                            <NA>
15187                                                            <NA>
15188                                                            <NA>
15189                                                          collar
15190                                                            <NA>
15191                                                            <NA>
15192                                                            <NA>
15193                                                            <NA>
15194                                                            <NA>
15195                                                            <NA>
15196                                                     unspecified
15197                                                    small amount
15198                                                            <NA>
15199                                                            <NA>
15200                                                            <NA>
15201                                                    small amount
15202                                                            <NA>
15203                                                            <NA>
15204                                                            <NA>
15205                                                            <NA>
15206                                                            <NA>
15207                                                            <NA>
15208                                                            <NA>
15209                                                     bottle/vial
15210                                                            <NA>
15211                                                            <NA>
15212                                                            <NA>
15213                                                            pump
15214                                                            <NA>
15215                                                            <NA>
15216                                                            <NA>
15217                                                            <NA>
15218                                                            <NA>
15219                                                            <NA>
15220                                             tablet/pill/capsule
15221                                                            <NA>
15222                                                            <NA>
15223                                                            <NA>
15224                                             tablet/pill/capsule
15225                                             tablet/pill/capsule
15226                                                            <NA>
15227                                             tablet/pill/capsule
15228                                             tablet/pill/capsule
15229                                                            <NA>
15230                                                            <NA>
15231                                                            <NA>
15232                                                            <NA>
15233                                                            <NA>
15234                                                            <NA>
15235                                                            <NA>
15236                                                            <NA>
15237                                                            <NA>
15238                                                            <NA>
15239                                                            <NA>
15240                                                            <NA>
15241                                                            <NA>
15242                                                            <NA>
15243                                                            mg/g
15244                                                            <NA>
15245                                                            <NA>
15246                                                            <NA>
15247                                             tablet/pill/capsule
15248                                                            <NA>
15249                                                            <NA>
15250                                                            tube
15251                                             tablet/pill/capsule
15252                                                            <NA>
15253                                                            <NA>
15254                                                            <NA>
15255                                             tablet/pill/capsule
15256                                                            <NA>
15257                                                            <NA>
15258                                                            <NA>
15259                                                            <NA>
15260                                                 based on weight
15261                                             tablet/pill/capsule
15262                                                            <NA>
15263                                                 based on weight
15264                                                            <NA>
15265                                                            <NA>
15266                                                            <NA>
15267                                                            <NA>
15268                                    based on weight (50-100 lbs)
15269                                     based on weight (24-60 lbs)
15270                                                            <NA>
15271                                                            <NA>
15272                                                            <NA>
15273                                                            <NA>
15274                                                            <NA>
15275                                                            <NA>
15276                                           1 tablet/pill/capsule
15277                                                            <NA>
15278                                             tablet/pill/capsule
15279                                             tablet/pill/capsule
15280                                                            <NA>
15281                                                            <NA>
15282                                                    small amount
15283                                                            <NA>
15284                                                            <NA>
15285                                                            <NA>
15286                                                            <NA>
15287                                                            <NA>
15288                                             tablet/pill/capsule
15289                                                            <NA>
15290                                                            <NA>
15291                                                            <NA>
15292                                                            <NA>
15293                                                            <NA>
15294                                                            <NA>
15295                                                            dose
15296                                                            <NA>
15297                                                            <NA>
15298                                                            <NA>
15299                                                            <NA>
15300                                                    pack/package
15301                                                            <NA>
15302                                                            <NA>
15303                                                            <NA>
15304                                                            <NA>
15305                                                            <NA>
15306                                                            <NA>
15307                                                            <NA>
15308                                             tablet/pill/capsule
15309                                             tablet/pill/capsule
15310                                           1 tablet/pill/capsule
15311                                                          collar
15312                                                            <NA>
15313                                                            <NA>
15314                                                            <NA>
15315                                                          collar
15316                                                            <NA>
15317                                             tablet/pill/capsule
15318                                                            <NA>
15319                                                            <NA>
15320                                                            <NA>
15321                                           1 tablet/pill/capsule
15322                                                          collar
15323                                                            <NA>
15324                                                            <NA>
15325                                                            <NA>
15326                                                            <NA>
15327                                                            <NA>
15328                                                            <NA>
15329                                                            <NA>
15330                                             tablet/pill/capsule
15331                                                            <NA>
15332                                                     as directed
15333                                                            <NA>
15334                                                           spray
15335                                                            <NA>
15336                                                            <NA>
15337                                                 based on weight
15338                                                            puff
15339                                                            <NA>
15340                                                            <NA>
15341                                                            <NA>
15342                                                            <NA>
15343                                                            <NA>
15344                                                            <NA>
15345                                                            <NA>
15346                                                            <NA>
15347                                                            <NA>
15348                                                            <NA>
15349                                                            <NA>
15350                                                    pack/package
15351                                                            <NA>
15352                                                            <NA>
15353                                                            <NA>
15354                                             tablet/pill/capsule
15355                                             tablet/pill/capsule
15356                                                            <NA>
15357                                                            <NA>
15358                                                            <NA>
15359                                                            <NA>
15360                                                            <NA>
15361                                             tablet/pill/capsule
15362                                             tablet/pill/capsule
15363                                                            <NA>
15364                                                            <NA>
15365                                             tablet/pill/capsule
15366                                             tablet/pill/capsule
15367                                           1 tablet/pill/capsule
15368                                                            <NA>
15369                                                            <NA>
15370                                                            <NA>
15371                                                            <NA>
15372                                                            <NA>
15373                                                 based on weight
15374                                                 based on weight
15375                                           1 tablet/pill/capsule
15376                                                          1 tube
15377                                           1 tablet/pill/capsule
15378                                                     bottle/vial
15379                                                            <NA>
15380                                                            <NA>
15381                                                            <NA>
15382                                                            <NA>
15383                                                            <NA>
15384                                                            <NA>
15385                                                            <NA>
15386                                                            <NA>
15387                                                            <NA>
15388                                                            <NA>
15389                                                            <NA>
15390                                                            <NA>
15391                                                            <NA>
15392                                                            <NA>
15393                                                            <NA>
15394                                                            <NA>
15395                                                               %
15396                                                            <NA>
15397                                                            <NA>
15398                                                            <NA>
15399                                                            <NA>
15400                                                            <NA>
15401                                                            <NA>
15402                                                            <NA>
15403                                                            <NA>
15404                                                            <NA>
15405                                                            <NA>
15406                                                            <NA>
15407                                                            <NA>
15408                                                            <NA>
15409                                                            <NA>
15410                                                            <NA>
15411                                             tablet/pill/capsule
15412                                                            <NA>
15413                                                            <NA>
15414                                                            <NA>
15415                                                            <NA>
15416                                             tablet/pill/capsule
15417                                                            <NA>
15418                                                            <NA>
15419                                                            <NA>
15420                                                            <NA>
15421                                                            <NA>
15422                                                            <NA>
15423                                                            <NA>
15424                                                            <NA>
15425                                                            <NA>
15426                                                            <NA>
15427                                                            <NA>
15428                                                            <NA>
15429                                                            <NA>
15430                                                            <NA>
15431                                                            <NA>
15432                                                            <NA>
15433                                                            <NA>
15434                                                            <NA>
15435                                                            <NA>
15436                                                            <NA>
15437                                                            <NA>
15438                                                            <NA>
15439                                                            <NA>
15440                                             tablet/pill/capsule
15441                                                            <NA>
15442                                                            <NA>
15443                                                            <NA>
15444                                                            <NA>
15445                                                            <NA>
15446                                                            <NA>
15447                                                            <NA>
15448                                                            <NA>
15449                                                            <NA>
15450                                                            <NA>
15451                                             tablet/pill/capsule
15452                                                            <NA>
15453                                                 moderate amount
15454                                                            <NA>
15455                                                            <NA>
15456                                                            <NA>
15457                                                            <NA>
15458                                                            <NA>
15459                                                            <NA>
15460                                                            <NA>
15461                                                            <NA>
15462                                                            <NA>
15463                                                            <NA>
15464                                                            <NA>
15465                                                            <NA>
15466                                                            <NA>
15467                                                            <NA>
15468                                                            <NA>
15469                                                            <NA>
15470                                                            pump
15471                                                            <NA>
15472                                                            <NA>
15473                                                            <NA>
15474                                                            <NA>
15475                                                            <NA>
15476                                                            <NA>
15477                                                            pump
15478                                                            <NA>
15479                                                            <NA>
15480                                                            <NA>
15481                                                            <NA>
15482                                                            <NA>
15483                                                            <NA>
15484                                                            <NA>
15485                                                            <NA>
15486                                                            <NA>
15487                                                            <NA>
15488                                                            <NA>
15489                                                            <NA>
15490                                                            <NA>
15491                                                            <NA>
15492                                                            <NA>
15493                                                            <NA>
15494                                                            <NA>
15495                                                            <NA>
15496                                                            <NA>
15497                                                            <NA>
15498                                             tablet/pill/capsule
15499                                                            <NA>
15500                                                            <NA>
15501                                                            <NA>
15502                                                            <NA>
15503                                                            <NA>
15504                                                            <NA>
15505                                                            <NA>
15506                                                            <NA>
15507                                                            <NA>
15508                                                            <NA>
15509                                                            <NA>
15510                                                            <NA>
15511                                                            <NA>
15512                                                            <NA>
15513                                                            <NA>
15514                                                            <NA>
15515                                           1 tablet/pill/capsule
15516                                                            <NA>
15517                                                            <NA>
15518                                                            <NA>
15519                                                            <NA>
15520                                                            <NA>
15521                                                            <NA>
15522                                                            <NA>
15523                                                            <NA>
15524                                             tablet/pill/capsule
15525                                                            <NA>
15526                                                            <NA>
15527                                             tablet/pill/capsule
15528                                                            <NA>
15529                                                            <NA>
15530                                                 based on weight
15531                                                            <NA>
15532                                                            <NA>
15533                                             tablet/pill/capsule
15534                                                            <NA>
15535                                                            <NA>
15536                                                            <NA>
15537                                                            <NA>
15538                                                            <NA>
15539                                                            <NA>
15540                                                            <NA>
15541                                                            <NA>
15542                                                            <NA>
15543                                                            <NA>
15544                                                            <NA>
15545                                                 based on weight
15546                                                            <NA>
15547                                                            <NA>
15548                                                            <NA>
15549                                                            <NA>
15550                                                 based on weight
15551                                                 based on weight
15552                                             tablet/pill/capsule
15553                                                            <NA>
15554                                                 based on weight
15555                                                 based on weight
15556                                                 based on weight
15557                                                            <NA>
15558                                                            <NA>
15559                                                            <NA>
15560                                                       mcg/kg/hr
15561                                                            <NA>
15562                                                            <NA>
15563                                                        ointment
15564                                                            <NA>
15565                                                            <NA>
15566                                                            <NA>
15567                                                            <NA>
15568                                                            <NA>
15569                                                            <NA>
15570                                                               %
15571                                                            <NA>
15572                                                            <NA>
15573                                                            <NA>
15574                                    based on weight (50-100 lbs)
15575                                                            <NA>
15576                                             tablet/pill/capsule
15577                                                            <NA>
15578                                                            <NA>
15579                                                            <NA>
15580                                                            <NA>
15581                                                          liquid
15582                                                            <NA>
15583                                                            <NA>
15584                                                            <NA>
15585                                           1 tablet/pill/capsule
15586                                                     application
15587                                                            <NA>
15588                                                 based on weight
15589                                                 based on weight
15590                                             tablet/pill/capsule
15591                                             tablet/pill/capsule
15592                                                            <NA>
15593                                             tablet/pill/capsule
15594                                             tablet/pill/capsule
15595                                                            <NA>
15596                                                            <NA>
15597                                             tablet/pill/capsule
15598                                             tablet/pill/capsule
15599                                                        ointment
15600                                           1 tablet/pill/capsule
15601                                           1 tablet/pill/capsule
15602                                                            <NA>
15603                                                            <NA>
15604                                                            <NA>
15605                                                            <NA>
15606                                                            <NA>
15607                                                            <NA>
15608                                                            <NA>
15609                                                            <NA>
15610                                                            <NA>
15611                                                            <NA>
15612                                                            <NA>
15613                                                            <NA>
15614                                                            <NA>
15615                                                            <NA>
15616                                                            <NA>
15617                                                            <NA>
15618                                                            <NA>
15619                                                            <NA>
15620                                                            <NA>
15621                                                            <NA>
15622                                                            <NA>
15623                                                            <NA>
15624                                                            <NA>
15625                                                            <NA>
15626                                                            <NA>
15627                                                            <NA>
15628                                                            <NA>
15629                                                            <NA>
15630                                                            <NA>
15631                                                            <NA>
15632                                                            <NA>
15633                                                            <NA>
15634                                                            <NA>
15635                                                            <NA>
15636                                                            <NA>
15637                                                            <NA>
15638                                                            <NA>
15639                                                            <NA>
15640                                                            <NA>
15641                                                            <NA>
15642                                                            <NA>
15643                                                            <NA>
15644                                                            <NA>
15645                                                            <NA>
15646                                                            <NA>
15647                                                            <NA>
15648                                                            <NA>
15649                                                 based on weight
15650                                                 based on weight
15651                                                            <NA>
15652                                                            <NA>
15653                                                            <NA>
15654                                                            <NA>
15655                                                            <NA>
15656                                                            <NA>
15657                                                            <NA>
15658                                                            <NA>
15659                                                            <NA>
15660                                                            <NA>
15661                                             tablet/pill/capsule
15662                                                            <NA>
15663                                                     bottle/vial
15664                                                            <NA>
15665                                                           spray
15666                                                            <NA>
15667                                                            <NA>
15668                                                            <NA>
15669                                                            <NA>
15670                                                            <NA>
15671                                                            <NA>
15672                                                            <NA>
15673                                                            <NA>
15674                                                            <NA>
15675                                                          1 tube
15676                                                            <NA>
15677                                                            <NA>
15678                                                            <NA>
15679                                                            tube
15680                                                            <NA>
15681                                                            <NA>
15682                                                            <NA>
15683                                                            <NA>
15684                                                            <NA>
15685                                                            <NA>
15686                                                            <NA>
15687                                                            <NA>
15688                                    based on weight (60-120 lbs)
15689                                             tablet/pill/capsule
15690                                                            <NA>
15691                                                            <NA>
15692                                                            <NA>
15693                                                            <NA>
15694                                                            <NA>
15695                                                            <NA>
15696                                                            <NA>
15697                                                            <NA>
15698                                                            <NA>
15699                                                            <NA>
15700                                                            <NA>
15701                                                 13.5 mg, 810 mg
15702                                                            <NA>
15703                                                            <NA>
15704                                                            <NA>
15705                                                            <NA>
15706                                                    small amount
15707                                                            <NA>
15708                                                            <NA>
15709                                                            <NA>
15710                                                            <NA>
15711                                                    small amount
15712                                             tablet/pill/capsule
15713                                             tablet/pill/capsule
15714                                                            <NA>
15715                                                            <NA>
15716                                                            <NA>
15717                                             tablet/pill/capsule
15718                                                     application
15719                                                            <NA>
15720                                                            <NA>
15721                                                            <NA>
15722                                             tablet/pill/capsule
15723                                                 based on weight
15724                                                 based on weight
15725                                                            <NA>
15726                                                            <NA>
15727                                             tablet/pill/capsule
15728                                                            <NA>
15729                                                            <NA>
15730                                             tablet/pill/capsule
15731                                             tablet/pill/capsule
15732                                             tablet/pill/capsule
15733                                                            <NA>
15734                                                            <NA>
15735                                             tablet/pill/capsule
15736                                             tablet/pill/capsule
15737                                                            <NA>
15738                                                            <NA>
15739                                             tablet/pill/capsule
15740                                                            <NA>
15741                                                            <NA>
15742                                                            <NA>
15743                                                            <NA>
15744                                                            <NA>
15745                                                            <NA>
15746                                                            <NA>
15747                                             tablet/pill/capsule
15748                                                           drops
15749                                             tablet/pill/capsule
15750                                                            <NA>
15751                                                            <NA>
15752                                                            <NA>
15753                                                            <NA>
15754                                                            <NA>
15755                                             tablet/pill/capsule
15756                                                            dose
15757                                             tablet/pill/capsule
15758                                                     bottle/vial
15759                                                            <NA>
15760                                                            <NA>
15761                                                            <NA>
15762                                                            <NA>
15763                                                            <NA>
15764                                                            <NA>
15765                                                            <NA>
15766                                                            <NA>
15767                                                            <NA>
15768                                                            <NA>
15769                                                            <NA>
15770                                                            <NA>
15771                                                            <NA>
15772                                                            <NA>
15773                                                            <NA>
15774                                                            <NA>
15775                                                            <NA>
15776                                                            <NA>
15777                                                            <NA>
15778                                                           spray
15779                                                            <NA>
15780                                                            <NA>
15781                                                 0.25 inch strip
15782                                                           spray
15783                                                     unspecified
15784                                    based on weight (50-100 lbs)
15785                                             tablet/pill/capsule
15786                                             tablet/pill/capsule
15787                                                            <NA>
15788                                                       1.5 mg/ml
15789                                                            <NA>
15790                                                     unspecified
15791                                                            <NA>
15792                                                            <NA>
15793                                                            <NA>
15794                                                            <NA>
15795                                                            <NA>
15796                                                            <NA>
15797                                                            <NA>
15798                                                            <NA>
15799                                                            <NA>
15800                                                            <NA>
15801                                                            <NA>
15802                                                            <NA>
15803                                                            <NA>
15804                                                            <NA>
15805                                                            <NA>
15806                                                            <NA>
15807                                                            <NA>
15808                                             tablet/pill/capsule
15809                                                            <NA>
15810                                                            <NA>
15811                                                    pack/package
15812                                                            <NA>
15813                                                            <NA>
15814                                             tablet/pill/capsule
15815                                                 based on weight
15816                                                 based on weight
15817                                                            <NA>
15818                                                            <NA>
15819                                             tablet/pill/capsule
15820                                                            tube
15821                                                            <NA>
15822                                                            <NA>
15823                                                            <NA>
15824                                                            <NA>
15825                                                            <NA>
15826                                                            <NA>
15827                                                            <NA>
15828                                                            <NA>
15829                                                            <NA>
15830                                                            <NA>
15831                                                            <NA>
15832                                                            <NA>
15833                                                            <NA>
15834                                                            <NA>
15835                                                            <NA>
15836                                                            <NA>
15837                                                            <NA>
15838                                                            <NA>
15839                                                     unspecified
15840                                                     unspecified
15841                                    based on weight (50-100 lbs)
15842                                    based on weight (50-100 lbs)
15843                                                            <NA>
15844                                    based on weight (50-100 lbs)
15845                                                            <NA>
15846                                                            <NA>
15847                                                            <NA>
15848                                                 based on weight
15849                                    based on weight (50-100 lbs)
15850                                    based on weight (50-100 lbs)
15851                                                            <NA>
15852                                                            <NA>
15853                                                            <NA>
15854                                                            <NA>
15855                                                            <NA>
15856                                                          1 tube
15857                                             tablet/pill/capsule
15858                                                            <NA>
15859                                           1 tablet/pill/capsule
15860                                                            <NA>
15861                                                           spray
15862                                                      inch strip
15863                                                      inch strip
15864                                                           drops
15865                                                            <NA>
15866                                                            <NA>
15867                                             tablet/pill/capsule
15868                                           1 tablet/pill/capsule
15869                                                 based on weight
15870                                                 based on weight
15871                                                            <NA>
15872                                                            <NA>
15873                                                            <NA>
15874                                                            <NA>
15875                                                               %
15876                                                            <NA>
15877                                                            <NA>
15878                                                            <NA>
15879                                                            <NA>
15880                                                               %
15881                                                            <NA>
15882                                                            <NA>
15883                                                            <NA>
15884                                                            <NA>
15885                                                            <NA>
15886                                             tablet/pill/capsule
15887                                                            <NA>
15888                                                            <NA>
15889                                                            <NA>
15890                                                            <NA>
15891                                                 based on weight
15892                                                            <NA>
15893                                                            <NA>
15894                                                            <NA>
15895                                                            <NA>
15896                                                            <NA>
15897                                                            <NA>
15898                                                            <NA>
15899                                                    pack/package
15900                                             tablet/pill/capsule
15901                                                            <NA>
15902                                                            <NA>
15903                                             tablet/pill/capsule
15904                                                            <NA>
15905                                                            <NA>
15906                                                            <NA>
15907                                                            <NA>
15908                                             tablet/pill/capsule
15909                                                            <NA>
15910                                                            <NA>
15911                                                            <NA>
15912                                                            <NA>
15913                                                            <NA>
15914                                                            <NA>
15915                                                            <NA>
15916                                                            <NA>
15917                                             tablet/pill/capsule
15918                                                            <NA>
15919                                                            <NA>
15920                                                            <NA>
15921                                             tablet/pill/capsule
15922                                                 based on weight
15923                                                            <NA>
15924                                                            <NA>
15925                                                            <NA>
15926                                                            <NA>
15927                                                            <NA>
15928                                                    pack/package
15929                                             tablet/pill/capsule
15930                                                            <NA>
15931                                                            <NA>
15932                                                            <NA>
15933                                                            <NA>
15934                                                            <NA>
15935                                                            <NA>
15936                                                            <NA>
15937                                                 based on weight
15938                                                            <NA>
15939                                                            <NA>
15940                                                            <NA>
15941                                                            <NA>
15942                                                            <NA>
15943                                                            <NA>
15944                                                            <NA>
15945                                                            <NA>
15946                                             tablet/pill/capsule
15947                                                            <NA>
15948                                                            <NA>
15949                                                            <NA>
15950                                             tablet/pill/capsule
15951                                                            <NA>
15952                                                            <NA>
15953                                                            <NA>
15954                                                            <NA>
15955                                                            <NA>
15956                                                            <NA>
15957                                                            <NA>
15958                                                            <NA>
15959                                                            <NA>
15960                                                            <NA>
15961                                                            <NA>
15962                                                            <NA>
15963                                                            <NA>
15964                                                            <NA>
15965                                                            <NA>
15966                                                            <NA>
15967                                                            <NA>
15968                                                            <NA>
15969                                                            <NA>
15970                                                            <NA>
15971                                                            <NA>
15972                                                           spray
15973                                                            <NA>
15974                                                            <NA>
15975                                                            <NA>
15976                                                            <NA>
15977                                                            <NA>
15978                                                            <NA>
15979                                                            <NA>
15980                                                            <NA>
15981                                    based on weight (50-100 lbs)
15982                                                            <NA>
15983                                                    small amount
15984                                                            <NA>
15985                                                            <NA>
15986                                     based on weight (56-95 lbs)
15987                                                            <NA>
15988                                                            <NA>
15989                                                            <NA>
15990                                                            <NA>
15991                                                            <NA>
15992                                    based on weight (50-100 lbs)
15993                                     based on weight (56-95 lbs)
15994                                                            <NA>
15995                                    based on weight (50-100 lbs)
15996                                     based on weight (56-95 lbs)
15997                                     based on weight (44-88 lbs)
15998                                                   1 bottle/vial
15999                                    based on weight (50-100 lbs)
16000                                     based on weight (44-88 lbs)
16001                                                            <NA>
16002                                                            <NA>
16003                                                            <NA>
16004                                                            <NA>
16005                                                            <NA>
16006                                                            <NA>
16007                                                            <NA>
16008                                                            <NA>
16009                                                            <NA>
16010                                                            <NA>
16011                                                            <NA>
16012                                                            <NA>
16013                                                            <NA>
16014                                                            <NA>
16015                                                            <NA>
16016                                                        ointment
16017                                                            <NA>
16018                                                            <NA>
16019                                                            <NA>
16020                                                            <NA>
16021                                                            <NA>
16022                                                            <NA>
16023                                                            <NA>
16024                                                            <NA>
16025                                                            <NA>
16026                                                    small amount
16027                                                            <NA>
16028                                                            <NA>
16029                                                            <NA>
16030                                                            <NA>
16031                                                            <NA>
16032                                                            <NA>
16033                                                            <NA>
16034                                                            <NA>
16035                                                 based on weight
16036                                                 based on weight
16037                                                            <NA>
16038                                                 based on weight
16039                                                     application
16040                                                            <NA>
16041                                                            <NA>
16042                                                            <NA>
16043                                                            <NA>
16044                                                            <NA>
16045                                                            <NA>
16046                                                            <NA>
16047                                                            <NA>
16048                                                            <NA>
16049                                                            <NA>
16050                                                            <NA>
16051                                                            <NA>
16052                                             tablet/pill/capsule
16053                                                            tube
16054                                                            <NA>
16055                                                            <NA>
16056                                                            <NA>
16057                                                            <NA>
16058                                                            <NA>
16059                                                            <NA>
16060                                                            <NA>
16061                                                            <NA>
16062                                                            <NA>
16063                                                            <NA>
16064                                                            <NA>
16065                                                            <NA>
16066                                                            <NA>
16067                                                            <NA>
16068                                                            <NA>
16069                                                            <NA>
16070                                                            <NA>
16071                                                            <NA>
16072                                                            <NA>
16073                                                            <NA>
16074                                                            <NA>
16075                                                            <NA>
16076                                                            <NA>
16077                                                            <NA>
16078                                                            <NA>
16079                                                            <NA>
16080                                                            <NA>
16081                                                            <NA>
16082                                                            <NA>
16083                                                            <NA>
16084                                                            <NA>
16085                                                            <NA>
16086                                                           spray
16087                                                            <NA>
16088                                                            <NA>
16089                                                            <NA>
16090                                                            <NA>
16091                                                            <NA>
16092                                                            <NA>
16093                                                            <NA>
16094                     272 mcg ivermectin, 227 mg pyrantel pamoate
16095                                                            <NA>
16096                                                            <NA>
16097                                             tablet/pill/capsule
16098                                             tablet/pill/capsule
16099                                                            <NA>
16100                                                            <NA>
16101                                                            <NA>
16102                                                            <NA>
16103                                                            <NA>
16104                                                            <NA>
16105                                                            <NA>
16106                                                            <NA>
16107                                                       6-8 drops
16108                                                            <NA>
16109                                                            <NA>
16110                                                            <NA>
16111                                                            <NA>
16112                                                            <NA>
16113                                                     unspecified
16114                                                            <NA>
16115                                                            <NA>
16116                                                            <NA>
16117                                                            <NA>
16118                                                            <NA>
16119                                                            <NA>
16120                                                            <NA>
16121                                                            <NA>
16122                                                            <NA>
16123                                                            <NA>
16124                                                            pump
16125                                                            <NA>
16126                                                            <NA>
16127                                                            <NA>
16128                                                            <NA>
16129                                                            <NA>
16130                                                            <NA>
16131                                                            <NA>
16132                                                            <NA>
16133                                                            <NA>
16134                                                            <NA>
16135                                                            <NA>
16136                                                            <NA>
16137                                                            <NA>
16138                                                            <NA>
16139                                                            <NA>
16140                                                            <NA>
16141                                                    pack/package
16142                                                            <NA>
16143                                                            <NA>
16144                                                     application
16145                                                            <NA>
16146                                                            <NA>
16147                                                            <NA>
16148                                                            <NA>
16149                                                            <NA>
16150                                                     bottle/vial
16151                                                            <NA>
16152                                                            tube
16153                                             tablet/pill/capsule
16154                                                     bottle/vial
16155                                                     bottle/vial
16156                                                    pack/package
16157                                             tablet/pill/capsule
16158                                             tablet/pill/capsule
16159                                             tablet/pill/capsule
16160                                             tablet/pill/capsule
16161                                             tablet/pill/capsule
16162                                             tablet/pill/capsule
16163                                             tablet/pill/capsule
16164                                             tablet/pill/capsule
16165                                             tablet/pill/capsule
16166                                                            <NA>
16167                                                            <NA>
16168                                                            <NA>
16169                                                            <NA>
16170                                                            <NA>
16171                                                            <NA>
16172                                                            <NA>
16173                                                            <NA>
16174                                                            <NA>
16175                                                            <NA>
16176                                                            <NA>
16177                                                    small amount
16178                                                            <NA>
16179                                                        wipe/pad
16180                                                            <NA>
16181                                                            <NA>
16182                                                            <NA>
16183                                                            <NA>
16184                                                            <NA>
16185                                                            <NA>
16186                                                            <NA>
16187                                                            <NA>
16188                                                            <NA>
16189                                                            <NA>
16190                                                            <NA>
16191                                                            <NA>
16192                                                            <NA>
16193                                                            <NA>
16194                                                            <NA>
16195                                                            <NA>
16196                                                            <NA>
16197                                                            <NA>
16198                                                            <NA>
16199                                                            <NA>
16200                                                            <NA>
16201                                                            <NA>
16202                                                            <NA>
16203                                                            <NA>
16204                                                            <NA>
16205                                                            <NA>
16206                                                            <NA>
16207                                                            <NA>
16208                                                            <NA>
16209                                                            <NA>
16210                                                            <NA>
16211                                                            <NA>
16212                                                            <NA>
16213                                                 based on weight
16214                                                 based on weight
16215                                                 based on weight
16216                                                            <NA>
16217                                                            <NA>
16218                                                            <NA>
16219                                                            <NA>
16220                                                            <NA>
16221                                                            <NA>
16222                                                            <NA>
16223                                                            <NA>
16224                                                            <NA>
16225                                                            <NA>
16226                                                            <NA>
16227                                                            <NA>
16228                                                            <NA>
16229                                             tablet/pill/capsule
16230                                    based on weight (50-100 lbs)
16231                                             tablet/pill/capsule
16232                                                            <NA>
16233                                                            <NA>
16234                                             tablet/pill/capsule
16235                                                          collar
16236                                                            <NA>
16237                                                          collar
16238                                                            <NA>
16239                                                            <NA>
16240                                                            <NA>
16241                                                            <NA>
16242                                                            <NA>
16243                                                            <NA>
16244                                                            <NA>
16245                                                            <NA>
16246                                                            <NA>
16247                                                            <NA>
16248                                                            <NA>
16249                                                            <NA>
16250                                                            <NA>
16251                                                            <NA>
16252                                                            <NA>
16253                                                            <NA>
16254                                                            <NA>
16255                                                            <NA>
16256                                                            <NA>
16257                                                            <NA>
16258                                                            <NA>
16259                                                            <NA>
16260                                                            <NA>
16261                                                            <NA>
16262                                                            <NA>
16263                                                            <NA>
16264                                                            <NA>
16265                                                            <NA>
16266                                                            <NA>
16267                                                            <NA>
16268                                                            <NA>
16269                                                            <NA>
16270                                                            <NA>
16271                                                            <NA>
16272                                                            <NA>
16273                                                            <NA>
16274                                                            <NA>
16275                                                            <NA>
16276                                                            <NA>
16277                                                            <NA>
16278                                                            <NA>
16279                                                            <NA>
16280                                                            <NA>
16281                                                            <NA>
16282                                                            <NA>
16283                                             tablet/pill/capsule
16284                                                            <NA>
16285                                                            <NA>
16286                                                            <NA>
16287                                     based on weight (26-50 lbs)
16288                                     based on weight (44-88 lbs)
16289                                             tablet/pill/capsule
16290                                                            <NA>
16291                                             tablet/pill/capsule
16292                                                            <NA>
16293                                                            <NA>
16294                                                            <NA>
16295                                                            <NA>
16296                                                            <NA>
16297                                                            <NA>
16298                                                            <NA>
16299                                                            <NA>
16300                                                            <NA>
16301                                                            <NA>
16302                                                            <NA>
16303                                                            <NA>
16304                                             tablet/pill/capsule
16305                                             tablet/pill/capsule
16306                                             tablet/pill/capsule
16307                                                            <NA>
16308                                                            <NA>
16309                                                            <NA>
16310                                                            <NA>
16311                                                            <NA>
16312                                             tablet/pill/capsule
16313                                             tablet/pill/capsule
16314                                                            <NA>
16315                                             tablet/pill/capsule
16316                                             tablet/pill/capsule
16317                                                            <NA>
16318                                           1 tablet/pill/capsule
16319                                           1 tablet/pill/capsule
16320                                                            <NA>
16321                                           1 tablet/pill/capsule
16322                                           1 tablet/pill/capsule
16323                                                            <NA>
16324                                           1 tablet/pill/capsule
16325                                           1 tablet/pill/capsule
16326                                    based on weight (50-100 lbs)
16327                                                            <NA>
16328                                                            <NA>
16329                                                            <NA>
16330                                                            <NA>
16331                                                            <NA>
16332                                                            <NA>
16333                                                            <NA>
16334                                                            <NA>
16335                                                            <NA>
16336                                                            <NA>
16337                                                            <NA>
16338                                                            <NA>
16339                                                 based on weight
16340                                                 based on weight
16341                                                            <NA>
16342                                                            <NA>
16343                                                            <NA>
16344                                                            <NA>
16345                                                            <NA>
16346                                                            <NA>
16347                                                               %
16348                                                            <NA>
16349                                                            <NA>
16350                                                            <NA>
16351                                                            <NA>
16352                                                            <NA>
16353                                                            <NA>
16354                                             tablet/pill/capsule
16355                                                    small amount
16356                                                     as directed
16357                                                  shampoo/mousse
16358                                                  shampoo/mousse
16359                                                            <NA>
16360                                             tablet/pill/capsule
16361                                             tablet/pill/capsule
16362                                             tablet/pill/capsule
16363                                             tablet/pill/capsule
16364                                             tablet/pill/capsule
16365                                                            <NA>
16366                                                            <NA>
16367                                                            <NA>
16368                                                            <NA>
16369                                                            <NA>
16370                                                            <NA>
16371                                                            <NA>
16372                                             tablet/pill/capsule
16373                                                            <NA>
16374                                                            <NA>
16375                                                            <NA>
16376                                                            <NA>
16377                                                            <NA>
16378                                                            <NA>
16379                                             tablet/pill/capsule
16380                                                            <NA>
16381                                             tablet/pill/capsule
16382                                                            <NA>
16383                                                            <NA>
16384                                                            <NA>
16385                                                            <NA>
16386                                                            <NA>
16387                                                  shampoo/mousse
16388                                                           spray
16389                                                            <NA>
16390                                                            <NA>
16391                                                            <NA>
16392                                                            <NA>
16393                                                            <NA>
16394                                                            pump
16395                                                            <NA>
16396                                                            <NA>
16397                                             tablet/pill/capsule
16398                                                            <NA>
16399                                             tablet/pill/capsule
16400                                             tablet/pill/capsule
16401                                             tablet/pill/capsule
16402                                                            <NA>
16403                                                 based on weight
16404                                                 based on weight
16405                                                            <NA>
16406                                                            <NA>
16407                                                            pump
16408                                                            <NA>
16409                                                            <NA>
16410                                                            <NA>
16411                                                            pump
16412                                                            <NA>
16413                                             tablet/pill/capsule
16414                                             tablet/pill/capsule
16415                                                            <NA>
16416                                                            <NA>
16417                                                            <NA>
16418                                                     unspecified
16419                                                     unspecified
16420                                                     unspecified
16421                                                            <NA>
16422                                                            <NA>
16423                                                            <NA>
16424                                                            <NA>
16425                                     based on weight (44-88 lbs)
16426                                     based on weight (44-88 lbs)
16427                                                            <NA>
16428                                                            <NA>
16429                                                            <NA>
16430                                                            <NA>
16431                                                            <NA>
16432                                                            <NA>
16433                                                            <NA>
16434                                                            <NA>
16435                                                            <NA>
16436                                                            <NA>
16437                                                            <NA>
16438                                                            <NA>
16439                                                            <NA>
16440                                    based on weight (50-100 lbs)
16441                                    based on weight (50-100 lbs)
16442                                                     unspecified
16443                                                     unspecified
16444                                                            <NA>
16445                                                            <NA>
16446                                                            <NA>
16447                                    based on weight (50-100 lbs)
16448                                                     unspecified
16449                                                            <NA>
16450                                    based on weight (50-100 lbs)
16451                                                            <NA>
16452                                                            <NA>
16453                                                            <NA>
16454                                                            <NA>
16455                                                            <NA>
16456                                                            <NA>
16457                                                            <NA>
16458                                                            <NA>
16459                                                            <NA>
16460                                                     application
16461                                                            <NA>
16462                                                            <NA>
16463                                                            <NA>
16464                                                            <NA>
16465                                                            <NA>
16466                                                            <NA>
16467                                                            <NA>
16468                                                            <NA>
16469                                                            <NA>
16470                                                            <NA>
16471                                                            <NA>
16472                                                            <NA>
16473                                                            <NA>
16474                                                 syringe/pipette
16475                                                            <NA>
16476                                                            <NA>
16477                                                            <NA>
16478                                                            <NA>
16479                                                 syringe/pipette
16480                                                            <NA>
16481                                                            <NA>
16482                                                            <NA>
16483                                                            <NA>
16484                                                            <NA>
16485                                                 based on weight
16486                                                            <NA>
16487                                                            <NA>
16488                                                            <NA>
16489                                                        ointment
16490                                                            <NA>
16491                                                            <NA>
16492                                                            <NA>
16493                                             tablet/pill/capsule
16494                                                            <NA>
16495                                                            <NA>
16496                                                            <NA>
16497                                                            <NA>
16498                                             tablet/pill/capsule
16499                                                 syringe/pipette
16500                                                            <NA>
16501                                                            <NA>
16502                                                            <NA>
16503                                                            <NA>
16504                                                            <NA>
16505                                                            <NA>
16506                                                            <NA>
16507                                                            <NA>
16508                                                            <NA>
16509                                                            <NA>
16510                                                            <NA>
16511                                                            <NA>
16512                                                            <NA>
16513                                                            <NA>
16514                                                            <NA>
16515                                                            <NA>
16516                                                            <NA>
16517                                                            <NA>
16518                                                            <NA>
16519                                                            <NA>
16520                                                            <NA>
16521                                                            <NA>
16522                                             tablet/pill/capsule
16523                                             tablet/pill/capsule
16524                                                     bottle/vial
16525                                                            <NA>
16526                                                            <NA>
16527                                                            <NA>
16528                                                            <NA>
16529                                                            <NA>
16530                                                            <NA>
16531                                                            <NA>
16532                                                            <NA>
16533                                                            <NA>
16534                                                            <NA>
16535                                                            <NA>
16536                                                            <NA>
16537                                                            <NA>
16538                                                 based on weight
16539                                                            <NA>
16540                                                            <NA>
16541                                                            <NA>
16542                                                            <NA>
16543                                                 based on weight
16544                                                     bottle/vial
16545                                                            <NA>
16546                                                            <NA>
16547                                                            <NA>
16548                                                            <NA>
16549                                                            <NA>
16550                                                            <NA>
16551                                                 based on weight
16552                                                            <NA>
16553                                                 based on weight
16554                                                 based on weight
16555                                                            <NA>
16556                                                            <NA>
16557                                                            <NA>
16558                                                            <NA>
16559                                                            <NA>
16560                                                            <NA>
16561                                                            <NA>
16562                                                            <NA>
16563                                                            <NA>
16564                                                            <NA>
16565                                                            <NA>
16566                                                            <NA>
16567                                                            <NA>
16568                                                            <NA>
16569                                                            <NA>
16570                                                            <NA>
16571                                                            <NA>
16572                                                            <NA>
16573                                                            <NA>
16574                                                            <NA>
16575                                                            <NA>
16576                                                            <NA>
16577                                                            <NA>
16578                                                            <NA>
16579                                                 based on weight
16580                                                    small amount
16581                                                            <NA>
16582                                                            <NA>
16583                                                            <NA>
16584                                                            <NA>
16585                                                            <NA>
16586                                                            <NA>
16587                                                            <NA>
16588                                                            <NA>
16589                                                            <NA>
16590                                                            <NA>
16591                                                            <NA>
16592                                                            <NA>
16593                                                            <NA>
16594                                                            <NA>
16595                                    based on weight (50-100 lbs)
16596                                                 based on weight
16597                                                 based on weight
16598                                                 based on weight
16599                                                 based on weight
16600                                                            <NA>
16601                                                 based on weight
16602                                                            <NA>
16603                                                            <NA>
16604                                                            <NA>
16605                                                            <NA>
16606                                                 based on weight
16607                                                            <NA>
16608                                                 based on weight
16609                                                            <NA>
16610                                                            <NA>
16611                                                            <NA>
16612                                                            <NA>
16613                                                            <NA>
16614                                                            <NA>
16615                                                            <NA>
16616                                                            <NA>
16617                                                            <NA>
16618                                                            <NA>
16619                                                            <NA>
16620                                                            <NA>
16621                                                            <NA>
16622                                             tablet/pill/capsule
16623                                             tablet/pill/capsule
16624                                                            <NA>
16625                                                    pack/package
16626                                                            <NA>
16627                                                            <NA>
16628                                                            <NA>
16629                                                            <NA>
16630                                    based on weight (50-100 lbs)
16631                                    based on weight (50-100 lbs)
16632                                                            <NA>
16633                                                            <NA>
16634                                                            <NA>
16635                                                        ointment
16636                                             tablet/pill/capsule
16637                                                 based on weight
16638                                                 based on weight
16639                                             tablet/pill/capsule
16640                                             tablet/pill/capsule
16641                                                            <NA>
16642                                                            <NA>
16643                                                            <NA>
16644                                                            <NA>
16645                                                            <NA>
16646                                                            <NA>
16647                                                            <NA>
16648                                                            <NA>
16649                                                            <NA>
16650                                                            <NA>
16651                                                            <NA>
16652                                                            <NA>
16653                                                            <NA>
16654                                                            <NA>
16655                                                            <NA>
16656                                                            <NA>
16657                                                            <NA>
16658                                                            <NA>
16659                                                            <NA>
16660                                             tablet/pill/capsule
16661                                    based on weight (60-120 lbs)
16662                                                 0.25 inch strip
16663                                                        wipe/pad
16664                                                            <NA>
16665                                                            <NA>
16666                                                    small amount
16667                                                            <NA>
16668                                     based on weight (40-60 lbs)
16669                                    based on weight (50-100 lbs)
16670                                     based on weight (26-50 lbs)
16671                                                     as directed
16672                                   based on weight (11 - 20 lbs)
16673                                                            <NA>
16674                                                            <NA>
16675                                                            <NA>
16676                                                            <NA>
16677                                                            <NA>
16678                                                            <NA>
16679                                                            <NA>
16680                                                            <NA>
16681                                                            <NA>
16682                                                        wipe/pad
16683                                                            <NA>
16684                                                          powder
16685                                                        wipe/pad
16686                                                            <NA>
16687                                                            dose
16688                                                            <NA>
16689                                                 based on weight
16690                                                            <NA>
16691                                                            <NA>
16692                                                            <NA>
16693                                                            <NA>
16694                                             tablet/pill/capsule
16695                                             tablet/pill/capsule
16696                                             tablet/pill/capsule
16697                                                            <NA>
16698                                                            <NA>
16699                                                            <NA>
16700                                                            <NA>
16701                                                            <NA>
16702                                                 0.25 inch strip
16703                                                          powder
16704                                             tablet/pill/capsule
16705                                             tablet/pill/capsule
16706                                                            <NA>
16707                                                            <NA>
16708                                                            <NA>
16709                                                            <NA>
16710                                                            <NA>
16711                                                    small amount
16712                                                  shampoo/mousse
16713                                                            <NA>
16714                                                    small amount
16715                                                            <NA>
16716                                                            <NA>
16717                                                    small amount
16718                                                    small amount
16719                                                            <NA>
16720                                                            <NA>
16721                                             tablet/pill/capsule
16722                                                 based on weight
16723                                                          powder
16724                                                            <NA>
16725                                                            <NA>
16726                                                           spray
16727                                                            <NA>
16728                                                            <NA>
16729                                                            <NA>
16730                                                            <NA>
16731                                                            <NA>
16732                                                            <NA>
16733                                                            <NA>
16734                                                            <NA>
16735                                                            <NA>
16736                                                            <NA>
16737                                                            <NA>
16738                                                            <NA>
16739                                                            <NA>
16740                                                            <NA>
16741                                                            <NA>
16742                                             tablet/pill/capsule
16743                                                            <NA>
16744                                                            <NA>
16745                                                            <NA>
16746                                                            <NA>
16747                                                            <NA>
16748                                                            <NA>
16749                                                            <NA>
16750                                                            <NA>
16751                                                            <NA>
16752                                                            <NA>
16753                                                            <NA>
16754                                                            <NA>
16755                                                            <NA>
16756                                                            dose
16757                                                            <NA>
16758                                                            dose
16759                                                            <NA>
16760                                                            <NA>
16761                                                            <NA>
16762                                                            <NA>
16763                                             tablet/pill/capsule
16764                                                            <NA>
16765                                                            <NA>
16766                                                            <NA>
16767                                                            <NA>
16768                                                            <NA>
16769                                                            <NA>
16770                                                            <NA>
16771                                                            <NA>
16772                                                            <NA>
16773                                                            <NA>
16774                                             tablet/pill/capsule
16775                                             tablet/pill/capsule
16776                                                     application
16777                                             tablet/pill/capsule
16778                                                     bottle/vial
16779                                                           mg/kg
16780                                    based on weight (50-100 lbs)
16781                                                    pack/package
16782                                                    small amount
16783                                                            <NA>
16784                                                            <NA>
16785                                                            <NA>
16786                                                            <NA>
16787                                                            <NA>
16788                                                            <NA>
16789                                                             10%
16790                                                            <NA>
16791                                                            <NA>
16792                                                            <NA>
16793                                                            <NA>
16794                                                            <NA>
16795                                                            <NA>
16796                                                            <NA>
16797                                                            <NA>
16798                                                            <NA>
16799                                                            <NA>
16800                                                            <NA>
16801                                                            <NA>
16802                                                            <NA>
16803                                                            <NA>
16804                                                            <NA>
16805                                                 based on weight
16806                                                            <NA>
16807                                                     application
16808                                                            <NA>
16809                                                            tube
16810                                                     combination
16811                                                 based on weight
16812                                                            <NA>
16813                                                            <NA>
16814                                                            <NA>
16815                                                     unspecified
16816                                                            <NA>
16817                                                            <NA>
16818                                                            <NA>
16819                                                            <NA>
16820                                                            <NA>
16821                                             tablet/pill/capsule
16822                                                            <NA>
16823                                                            <NA>
16824                                                            <NA>
16825                                                            <NA>
16826                                                            <NA>
16827                                                            <NA>
16828                                                            <NA>
16829                                                            <NA>
16830                                                            <NA>
16831                                                            <NA>
16832                                                            <NA>
16833                                                            <NA>
16834                                                            <NA>
16835                                                            <NA>
16836                                                            <NA>
16837                                                            <NA>
16838                                                            <NA>
16839                                                            <NA>
16840                                                            <NA>
16841                                                            <NA>
16842                                                            <NA>
16843                                                            <NA>
16844                                                            <NA>
16845                                                            <NA>
16846                                                            <NA>
16847                                                            <NA>
16848                                                            <NA>
16849                                                            pump
16850                                                            <NA>
16851                                                            <NA>
16852                                                            <NA>
16853                                                            <NA>
16854                                                            <NA>
16855                                                            <NA>
16856                                                            <NA>
16857                                                            <NA>
16858                                                            <NA>
16859                                                            <NA>
16860                                                            <NA>
16861                                                            <NA>
16862                                                            <NA>
16863                                                            <NA>
16864                                                 based on weight
16865                                                            <NA>
16866                                                 based on weight
16867                                                            <NA>
16868                                                            <NA>
16869                                                 based on weight
16870                                               1 syringe/pipette
16871                                                               %
16872                                                               %
16873                                                            <NA>
16874                                                            <NA>
16875                                                            <NA>
16876                                                            <NA>
16877                                                            <NA>
16878                                                            <NA>
16879                                                          collar
16880                                                            <NA>
16881                                                            <NA>
16882                                                          collar
16883                                                            <NA>
16884                                                            <NA>
16885                                                            <NA>
16886                                                            <NA>
16887                                                            <NA>
16888                                                            <NA>
16889                                                            <NA>
16890                                                            <NA>
16891                                                            <NA>
16892                                                            <NA>
16893                                                            <NA>
16894                                                            <NA>
16895                                                            <NA>
16896                                                            <NA>
16897                                                            <NA>
16898                                                            <NA>
16899                                                            <NA>
16900                                                            <NA>
16901                                                            <NA>
16902                                                            <NA>
16903                                                            <NA>
16904                                                            <NA>
16905                                                            <NA>
16906                                                            <NA>
16907                                                            <NA>
16908                                                            <NA>
16909                                                            <NA>
16910                                                            <NA>
16911                                                            <NA>
16912                                                            <NA>
16913                                                 based on weight
16914                                                            <NA>
16915                                                            <NA>
16916                                                            <NA>
16917                                                            <NA>
16918                                                     unspecified
16919                                                            <NA>
16920                                                 based on weight
16921                                                 based on weight
16922                                                            <NA>
16923                                                            <NA>
16924                                                            <NA>
16925                                                            <NA>
16926                                                            <NA>
16927                                                            <NA>
16928                                                            <NA>
16929                                                     as directed
16930                                                            dose
16931                                                            <NA>
16932                                                              ml
16933                                                            <NA>
16934                                                            <NA>
16935                                                            <NA>
16936                                     based on weight (26-50 lbs)
16937                                     based on weight (44-88 lbs)
16938                                             tablet/pill/capsule
16939                                                            <NA>
16940                                                            <NA>
16941                                                            <NA>
16942                                                            <NA>
16943                                                            <NA>
16944                                                            <NA>
16945                                             tablet/pill/capsule
16946                                             tablet/pill/capsule
16947                                             tablet/pill/capsule
16948                                             tablet/pill/capsule
16949                                                            <NA>
16950                                                            <NA>
16951                                                            <NA>
16952                                             tablet/pill/capsule
16953                                             tablet/pill/capsule
16954                                                            <NA>
16955                                                            <NA>
16956                                                            <NA>
16957                                                            <NA>
16958                                                            <NA>
16959                                                            <NA>
16960                                                            <NA>
16961                                                            <NA>
16962                                                            <NA>
16963                                                            <NA>
16964                                                            <NA>
16965                                                            <NA>
16966                                                            <NA>
16967                                                            <NA>
16968                                                            <NA>
16969                                                            <NA>
16970                                                            <NA>
16971                                                            <NA>
16972                                             tablet/pill/capsule
16973                                             tablet/pill/capsule
16974                                                            <NA>
16975                                                            <NA>
16976                                                            <NA>
16977                                                            <NA>
16978                                                            <NA>
16979                                             tablet/pill/capsule
16980                                                            <NA>
16981                                                            <NA>
16982                                                            <NA>
16983                                             tablet/pill/capsule
16984                                                            <NA>
16985                                                            <NA>
16986                                                            <NA>
16987                                                            <NA>
16988                                                            <NA>
16989                                                            <NA>
16990                                                            <NA>
16991                                                            <NA>
16992                                                            <NA>
16993                                                    small amount
16994                                                    small amount
16995                                                            <NA>
16996                                                            <NA>
16997                                                            <NA>
16998                                                           tubes
16999                                                            <NA>
17000                                                            <NA>
17001                                                            <NA>
17002                                                            <NA>
17003                                                            <NA>
17004                                                            <NA>
17005                                                            <NA>
17006                                                            <NA>
17007                                                            <NA>
17008                                                            <NA>
17009                                                            <NA>
17010                                                     combination
17011                                                            <NA>
17012                                                     bottle/vial
17013                                             tablet/pill/capsule
17014                                                 based on weight
17015                                                            <NA>
17016                                                            <NA>
17017                                                            <NA>
17018                                                     unspecified
17019                                             tablet/pill/capsule
17020                                                            <NA>
17021                                                            <NA>
17022                                                            <NA>
17023                                                            <NA>
17024                                                            <NA>
17025                                                            <NA>
17026                                                            <NA>
17027                                                            <NA>
17028                                                            <NA>
17029                                             tablet/pill/capsule
17030                                                            <NA>
17031                                                            <NA>
17032                                                            <NA>
17033                                                            <NA>
17034                                                            <NA>
17035                                                            <NA>
17036                                                            <NA>
17037                                                            <NA>
17038                                                            <NA>
17039                                                            <NA>
17040                                                            <NA>
17041                                                 based on weight
17042                                                 based on weight
17043                                                            <NA>
17044                                                            <NA>
17045                                                            <NA>
17046                                                            <NA>
17047                                                            <NA>
17048                                                            <NA>
17049                                                            <NA>
17050                                                            <NA>
17051                                                            <NA>
17052                                                            <NA>
17053                                                            <NA>
17054                                                            <NA>
17055                                                            <NA>
17056                                                            <NA>
17057                                                 based on weight
17058                                                            <NA>
17059                                                            <NA>
17060                                                            <NA>
17061                                                            <NA>
17062                                                            <NA>
17063                                                            <NA>
17064                                                            <NA>
17065                                                            <NA>
17066                                                            <NA>
17067                                                            <NA>
17068                                                    small amount
17069                                                            <NA>
17070                                                            <NA>
17071                                                            <NA>
17072                                                            <NA>
17073                                                            <NA>
17074                                                            <NA>
17075                                                            <NA>
17076                                                            <NA>
17077                                                            <NA>
17078                                                            <NA>
17079                                                            <NA>
17080                                             tablet/pill/capsule
17081                                                            <NA>
17082                                                            <NA>
17083                                                            <NA>
17084                                                            <NA>
17085                                                            <NA>
17086                                                            <NA>
17087                                                            <NA>
17088                                                     combination
17089                                                            <NA>
17090                                           1 tablet/pill/capsule
17091                                           1 tablet/pill/capsule
17092                                                            <NA>
17093                                                            <NA>
17094                                    based on weight (50-100 lbs)
17095                                    based on weight (60-120 lbs)
17096                                                            <NA>
17097                                                            <NA>
17098                                                            <NA>
17099                                                            <NA>
17100                                                            <NA>
17101                                                            <NA>
17102                                                            <NA>
17103                                                            <NA>
17104                                                            <NA>
17105                                                            <NA>
17106                                                            <NA>
17107                                                            <NA>
17108                                                            <NA>
17109                                                            <NA>
17110                                                            <NA>
17111                                                            <NA>
17112                                                            <NA>
17113                                                            <NA>
17114                                                            <NA>
17115                                                            <NA>
17116                                                            <NA>
17117                                                            <NA>
17118                                                            <NA>
17119                                                            <NA>
17120                                                    small amount
17121                                                    small amount
17122                                                            <NA>
17123                                                            <NA>
17124                                                            <NA>
17125                                                            <NA>
17126                                                       as needed
17127                                                       as needed
17128                                                            <NA>
17129                                                            <NA>
17130                                                            <NA>
17131                                                            <NA>
17132                                                            <NA>
17133                                                            <NA>
17134                                                            <NA>
17135                                                            <NA>
17136                                                            pump
17137                                             tablet/pill/capsule
17138                                             tablet/pill/capsule
17139                                                            <NA>
17140                                                            <NA>
17141                                                            <NA>
17142                                                    small amount
17143                                                 based on weight
17144                                                            <NA>
17145                                                            <NA>
17146                                                            <NA>
17147                                                            <NA>
17148                                                            <NA>
17149                                                            <NA>
17150                                                            <NA>
17151                                                 based on weight
17152                                                            <NA>
17153                                                            <NA>
17154                                                            <NA>
17155                                                            <NA>
17156                                             tablet/pill/capsule
17157                                             tablet/pill/capsule
17158                                                            <NA>
17159                                                            <NA>
17160                                                            <NA>
17161                                                            <NA>
17162                                                            <NA>
17163                                                            <NA>
17164                                                            <NA>
17165                                                            <NA>
17166                                                            <NA>
17167                                                            <NA>
17168                                                            <NA>
17169                                                            <NA>
17170                                                            <NA>
17171                                                            <NA>
17172                                                            <NA>
17173                                                            <NA>
17174                                                            <NA>
17175                                                            <NA>
17176                                                            <NA>
17177                                             tablet/pill/capsule
17178                                                            <NA>
17179                                                            <NA>
17180                                             tablet/pill/capsule
17181                                                            <NA>
17182                                                            <NA>
17183                                                            <NA>
17184                                                            <NA>
17185                                                            <NA>
17186                                                            <NA>
17187                                                            <NA>
17188                                                            <NA>
17189                                                            <NA>
17190                                                            <NA>
17191                                                            <NA>
17192                                                            <NA>
17193                                                            <NA>
17194                                                            <NA>
17195                                                            <NA>
17196                                                 based on weight
17197                                                 based on weight
17198                                                            <NA>
17199                                                 based on weight
17200                                                            <NA>
17201                                                           spray
17202                                                 based on weight
17203                                                            <NA>
17204                                                            <NA>
17205                                                            <NA>
17206                                                            <NA>
17207                                                            <NA>
17208                                                            <NA>
17209                                             tablet/pill/capsule
17210                                                            <NA>
17211                                                            <NA>
17212                                                            <NA>
17213                                                            <NA>
17214                                                            <NA>
17215                                                            <NA>
17216                                                            <NA>
17217                                                            <NA>
17218                                                            <NA>
17219                                                            <NA>
17220                                                            <NA>
17221                                                            <NA>
17222                                                            <NA>
17223                                                            <NA>
17224                                                            <NA>
17225                                                            <NA>
17226                                                            <NA>
17227                                                            <NA>
17228                                                            <NA>
17229                                                            <NA>
17230                                             tablet/pill/capsule
17231                                                            tube
17232                                             tablet/pill/capsule
17233                                                            tube
17234                                             tablet/pill/capsule
17235                                                            <NA>
17236                                                          1 tube
17237                                             tablet/pill/capsule
17238                                                            tube
17239                                             tablet/pill/capsule
17240                                                            <NA>
17241                                                            <NA>
17242                                                            <NA>
17243                                                            <NA>
17244                                                            <NA>
17245                                                            <NA>
17246                                                            <NA>
17247                                             tablet/pill/capsule
17248                                    based on weight (50-100 lbs)
17249                                                            <NA>
17250                                                            <NA>
17251                                    based on weight (50-100 lbs)
17252                                                 syringe/pipette
17253                                                            <NA>
17254                                                    small amount
17255                                           1 tablet/pill/capsule
17256                                                            <NA>
17257                                                            <NA>
17258                                                            <NA>
17259                                                            <NA>
17260                                                            <NA>
17261                                                            <NA>
17262                                             tablet/pill/capsule
17263                                                            <NA>
17264                                                            <NA>
17265                                                            <NA>
17266                                                            <NA>
17267                                                            <NA>
17268                                                 based on weight
17269                                                            <NA>
17270                                                            <NA>
17271                                                            <NA>
17272                                                            <NA>
17273                                                            <NA>
17274                                                            <NA>
17275                                                            <NA>
17276                                                            <NA>
17277                                                            <NA>
17278                                                            <NA>
17279                                                            <NA>
17280                                                            <NA>
17281                                                            <NA>
17282                                                            <NA>
17283                                                            <NA>
17284                                                            <NA>
17285                                                            <NA>
17286                                                            <NA>
17287                                                            <NA>
17288                                                            <NA>
17289                                                      inch strip
17290                                                            <NA>
17291                                                            <NA>
17292                                                            <NA>
17293                                                            <NA>
17294                                                 based on weight
17295                                                 based on weight
17296                                                            <NA>
17297                                                            <NA>
17298                                                 based on weight
17299                                                            <NA>
17300                                                            <NA>
17301                                                            <NA>
17302                                                            <NA>
17303                                                            <NA>
17304                                                            <NA>
17305                                                            <NA>
17306                                                            <NA>
17307                                                            <NA>
17308                                                            <NA>
17309                                                            <NA>
17310                                                            <NA>
17311                                                            <NA>
17312                                                            <NA>
17313                                                            <NA>
17314                                                            <NA>
17315                                                            <NA>
17316                                                            <NA>
17317                                                           fl oz
17318                                                            <NA>
17319                                                            <NA>
17320                                                            <NA>
17321                                                            <NA>
17322                                                            <NA>
17323                                                            <NA>
17324                                                            <NA>
17325                                                            <NA>
17326                                                            <NA>
17327                                                     application
17328                                                               %
17329                                                     application
17330                                                     application
17331                                                            <NA>
17332                                                            <NA>
17333                                                            <NA>
17334                                                               %
17335                                                     application
17336                                                            <NA>
17337                                                            <NA>
17338                                                            <NA>
17339                                                            <NA>
17340                                                      inch strip
17341                                                            <NA>
17342                                                            <NA>
17343                                                      inch strip
17344                                                            <NA>
17345                                                            <NA>
17346                                                            <NA>
17347                                                            <NA>
17348                                                            <NA>
17349                                                            <NA>
17350                                                            <NA>
17351                                                            <NA>
17352                                                           spray
17353                                                            <NA>
17354                                                            <NA>
17355                                                    small amount
17356                                                            <NA>
17357                                                            <NA>
17358                                                            <NA>
17359                                                            <NA>
17360                                                            <NA>
17361                                                            <NA>
17362                                                            <NA>
17363                                             tablet/pill/capsule
17364                                                     bottle/vial
17365                                                            <NA>
17366                                                            <NA>
17367                                             tablet/pill/capsule
17368                                                            <NA>
17369                                                            <NA>
17370                                             tablet/pill/capsule
17371                                             tablet/pill/capsule
17372                                             tablet/pill/capsule
17373                                             tablet/pill/capsule
17374                                                            <NA>
17375                                                            <NA>
17376                                                            <NA>
17377                                                            <NA>
17378                                                            <NA>
17379                                                            <NA>
17380                                                            <NA>
17381                                                       2-3 drops
17382                                                            <NA>
17383                                                            <NA>
17384                                                            <NA>
17385                                                            <NA>
17386                                                            <NA>
17387                                                            <NA>
17388                                                            mg/g
17389                                                            <NA>
17390                                             tablet/pill/capsule
17391                                                            <NA>
17392                                                            <NA>
17393                                                        ointment
17394                                                            <NA>
17395                                                            <NA>
17396                                                            <NA>
17397                                                            <NA>
17398                                                            <NA>
17399                                             tablet/pill/capsule
17400                                                            <NA>
17401                                                            <NA>
17402                                                            <NA>
17403                                                            <NA>
17404                                                            <NA>
17405                                                            <NA>
17406                                                 based on weight
17407                                                           spray
17408                                                            <NA>
17409                                                            <NA>
17410                                                            <NA>
17411                                                            <NA>
17412                                                            <NA>
17413                                                            <NA>
17414                                                            <NA>
17415                                                            <NA>
17416                                                            <NA>
17417                                                          collar
17418                                             tablet/pill/capsule
17419                                             tablet/pill/capsule
17420                                             tablet/pill/capsule
17421                                                            <NA>
17422                                                            <NA>
17423                                                            <NA>
17424                                                    small amount
17425                                                            <NA>
17426                                                            <NA>
17427                                                            <NA>
17428                                                            <NA>
17429                                                            <NA>
17430                                                            <NA>
17431                                                            <NA>
17432                                                            <NA>
17433                                                            <NA>
17434                                                            <NA>
17435                                                            <NA>
17436                                                            <NA>
17437                                                            <NA>
17438                                                            <NA>
17439                                                            <NA>
17440                                                            <NA>
17441                                                            <NA>
17442                                                            <NA>
17443                                                            <NA>
17444                                                            <NA>
17445                                                            <NA>
17446                                                            <NA>
17447                                                            <NA>
17448                                                            <NA>
17449                                                            <NA>
17450                                                            <NA>
17451                                                            <NA>
17452                                                            <NA>
17453                                                            <NA>
17454                                                            <NA>
17455                                                            <NA>
17456                                                            <NA>
17457                                             tablet/pill/capsule
17458                                                            <NA>
17459                                                            tube
17460                                                            <NA>
17461                                                            <NA>
17462                                                            <NA>
17463                                                    pack/package
17464                                             tablet/pill/capsule
17465                                                            <NA>
17466                                                            <NA>
17467                                                            <NA>
17468                                                            <NA>
17469                                                            <NA>
17470                                                            <NA>
17471                                                            <NA>
17472                                                            <NA>
17473                                                            <NA>
17474                                                            <NA>
17475                                                            <NA>
17476                                                            <NA>
17477                                                            <NA>
17478                                                            <NA>
17479                                                            <NA>
17480                                                            <NA>
17481                                                            <NA>
17482                                                            <NA>
17483                                                            <NA>
17484                                                 based on weight
17485                                                            <NA>
17486                                                 based on weight
17487                                                 based on weight
17488                                                 based on weight
17489                                                 based on weight
17490                                                 based on weight
17491                                                 based on weight
17492                                                 based on weight
17493                                                 based on weight
17494                                                 based on weight
17495                                                 based on weight
17496                                                 based on weight
17497                                                 based on weight
17498                                                 based on weight
17499                                                            <NA>
17500                                                            <NA>
17501                                                            <NA>
17502                                                            <NA>
17503                                                            <NA>
17504                                                            <NA>
17505                                                            <NA>
17506                                                            <NA>
17507                                                            <NA>
17508                                                            <NA>
17509                                                            <NA>
17510                                                            <NA>
17511                                                            <NA>
17512                                                            <NA>
17513                                                            <NA>
17514                                                            <NA>
17515                                                            <NA>
17516                                                            <NA>
17517                                                            <NA>
17518                                                 based on weight
17519                                           1 tablet/pill/capsule
17520                                                            <NA>
17521                                                            <NA>
17522                                                            <NA>
17523                                                            <NA>
17524                                                            <NA>
17525                                                            <NA>
17526                                                            <NA>
17527                                                            <NA>
17528                                                            <NA>
17529                                                            <NA>
17530                                             tablet/pill/capsule
17531                                                            <NA>
17532                                                            <NA>
17533                                                            <NA>
17534                                                            <NA>
17535                                                            <NA>
17536                                                            <NA>
17537                                                            <NA>
17538                                                            <NA>
17539                                                            <NA>
17540                                                            <NA>
17541                                                            <NA>
17542                                                            <NA>
17543                                                            <NA>
17544                                                            <NA>
17545                                                            <NA>
17546                                                            <NA>
17547                                             tablet/pill/capsule
17548                                                            <NA>
17549                                                           spray
17550                                                            <NA>
17551                                                            <NA>
17552                                                            <NA>
17553                                                            <NA>
17554                                                            <NA>
17555                                                            <NA>
17556                                                            <NA>
17557                                                            <NA>
17558                                                            <NA>
17559                                                            <NA>
17560                                             tablet/pill/capsule
17561                                                            <NA>
17562                                                 based on weight
17563                                                            <NA>
17564                                                            <NA>
17565                                                            <NA>
17566                                                            <NA>
17567                                                            <NA>
17568                                                            tube
17569                                                            <NA>
17570                                                            <NA>
17571                                                            <NA>
17572                                                            <NA>
17573                                                            <NA>
17574                                                            <NA>
17575                                                            <NA>
17576                                                 0.25 inch strip
17577                                                            <NA>
17578                                                            <NA>
17579                                                            <NA>
17580                                                            <NA>
17581                                                            <NA>
17582                                                           spray
17583                                                            <NA>
17584                                                            <NA>
17585                                                            <NA>
17586                                                            <NA>
17587                                                            <NA>
17588                                                           spray
17589                                                            <NA>
17590                                                            <NA>
17591                                                            <NA>
17592                                                            <NA>
17593                                                            <NA>
17594                                                            <NA>
17595                                                            <NA>
17596                                                            <NA>
17597                                                            <NA>
17598                                                            <NA>
17599                                                            <NA>
17600                                                            <NA>
17601                                                            <NA>
17602                                                    small amount
17603                                                           23 mg
17604                                                               %
17605                                                            <NA>
17606                                                               %
17607                                                            <NA>
17608                                                            <NA>
17609                                                            <NA>
17610                                                            <NA>
17611                                                 based on weight
17612                                                            <NA>
17613                                                            <NA>
17614                                                            <NA>
17615                                                 based on weight
17616                                                            <NA>
17617                                                            <NA>
17618                                                            <NA>
17619                                                            <NA>
17620                                                            <NA>
17621                                                    pack/package
17622                                                            <NA>
17623                                                            <NA>
17624                                                            <NA>
17625                                                    pack/package
17626                                                            <NA>
17627                                                 based on weight
17628                                                            <NA>
17629                                                            <NA>
17630                                                            <NA>
17631                                                    pack/package
17632                                                            <NA>
17633                                                            <NA>
17634                                                            <NA>
17635                                                            <NA>
17636                                                            <NA>
17637                                                            <NA>
17638                                                            <NA>
17639                                                            <NA>
17640                                                            <NA>
17641                                                            <NA>
17642                                                           spray
17643                                                            <NA>
17644                                                            <NA>
17645                                                            <NA>
17646                                                      inch strip
17647                                                            <NA>
17648                                                            <NA>
17649                                                           spray
17650                                                            <NA>
17651                                                            <NA>
17652                                                            <NA>
17653                                                            <NA>
17654                                                            <NA>
17655                                                            <NA>
17656                                                            <NA>
17657                                                            <NA>
17658                                                            <NA>
17659                                             tablet/pill/capsule
17660                                                            <NA>
17661                                                            <NA>
17662                                                            <NA>
17663                                                            <NA>
17664                                                            <NA>
17665                                                            <NA>
17666                                                            <NA>
17667                                                            <NA>
17668                                                            <NA>
17669                                                            <NA>
17670                                                 based on weight
17671                                                            <NA>
17672                                                            <NA>
17673                                                            <NA>
17674                                             tablet/pill/capsule
17675                                             tablet/pill/capsule
17676                                             tablet/pill/capsule
17677                                                            <NA>
17678                                                            <NA>
17679                                                            <NA>
17680                                                            <NA>
17681                                                            <NA>
17682                                                            <NA>
17683                                                            <NA>
17684                                                            <NA>
17685                                                            <NA>
17686                                                            <NA>
17687                                                            <NA>
17688                                                            <NA>
17689                                             tablet/pill/capsule
17690                                                            <NA>
17691                                                            <NA>
17692                                                            <NA>
17693                                             tablet/pill/capsule
17694                                                            <NA>
17695                                                            <NA>
17696                                                            <NA>
17697                                                            <NA>
17698                                                            <NA>
17699                                                            <NA>
17700                                                            <NA>
17701                                                            <NA>
17702                                                            <NA>
17703                                                            <NA>
17704                                                            <NA>
17705                                                            <NA>
17706                                                            <NA>
17707                                                            <NA>
17708                                                            <NA>
17709                                                            <NA>
17710                                                            <NA>
17711                                                            <NA>
17712                                                            <NA>
17713                                                            <NA>
17714                                                            <NA>
17715                                                            <NA>
17716                                                            <NA>
17717                                                            <NA>
17718                                                            <NA>
17719                                                            <NA>
17720                                                    small amount
17721                                                            <NA>
17722                                                 based on weight
17723                                                 based on weight
17724                                                            <NA>
17725                                                            <NA>
17726                                                            <NA>
17727                                                            <NA>
17728                                                            <NA>
17729                                                            <NA>
17730                                                            <NA>
17731                                                            <NA>
17732                                                            <NA>
17733                                                            <NA>
17734                                                            <NA>
17735                                                            <NA>
17736                                                            <NA>
17737                                                            <NA>
17738                                                            <NA>
17739                                                            <NA>
17740                                                            <NA>
17741                                                    pack/package
17742                                                            <NA>
17743                                                            <NA>
17744                                                            <NA>
17745                                                            <NA>
17746                                                            <NA>
17747                                                            <NA>
17748                                                            <NA>
17749                                                            <NA>
17750                                                            <NA>
17751                                                            <NA>
17752                                                            <NA>
17753                                                            <NA>
17754                                                            <NA>
17755                                                 syringe/pipette
17756                                                            <NA>
17757                                                            <NA>
17758                                                            <NA>
17759                                                            <NA>
17760                                                            <NA>
17761                                                            <NA>
17762                                                            <NA>
17763                                                            <NA>
17764                                                            <NA>
17765                                                            <NA>
17766                                                            <NA>
17767                                                            <NA>
17768                                                            <NA>
17769                                                            <NA>
17770                                                            <NA>
17771                                                            <NA>
17772                                                            <NA>
17773                                                            <NA>
17774                                                            <NA>
17775                                                            <NA>
17776                                                            <NA>
17777                                                            <NA>
17778                                                            <NA>
17779                                                     application
17780                                                            <NA>
17781                                                            <NA>
17782                                                     application
17783                                                            <NA>
17784                                                            <NA>
17785                                                            <NA>
17786                                                            <NA>
17787                                                            <NA>
17788                                                            <NA>
17789                                                            <NA>
17790                                                            <NA>
17791                                                            <NA>
17792                                                            <NA>
17793                                                            <NA>
17794                                                            <NA>
17795                                                            <NA>
17796                                                            <NA>
17797                                                            <NA>
17798                                                            <NA>
17799                                                            <NA>
17800                                                            <NA>
17801                                                            <NA>
17802                                                           paste
17803                                                            <NA>
17804                                                            <NA>
17805                                                           spray
17806                                                            <NA>
17807                                                            <NA>
17808                                                           spray
17809                                                            <NA>
17810                                                            <NA>
17811                                                           spray
17812                                                            <NA>
17813                                                            <NA>
17814                                                            <NA>
17815                                                            <NA>
17816                                                            <NA>
17817                                                            <NA>
17818                                                 based on weight
17819                                                            <NA>
17820                                                            <NA>
17821                                                            <NA>
17822                                                            <NA>
17823                                                            <NA>
17824                                                            <NA>
17825                                                            <NA>
17826                                                            <NA>
17827                                                            <NA>
17828                                                            <NA>
17829                                                            <NA>
17830                                                            <NA>
17831                                                            <NA>
17832                                        based on weight (80 lbs)
17833                                                            <NA>
17834                                                            <NA>
17835                                                            <NA>
17836                                                 based on weight
17837                                                            <NA>
17838                                                            <NA>
17839                                                            <NA>
17840                                                            <NA>
17841                                                            <NA>
17842                                                            <NA>
17843                                                            <NA>
17844                                                            <NA>
17845                                                 based on weight
17846                                             tablet/pill/capsule
17847                                                 based on weight
17848                                             tablet/pill/capsule
17849                                                            <NA>
17850                                                            <NA>
17851                                                            <NA>
17852                                                            <NA>
17853                                                            <NA>
17854                                                            <NA>
17855                                                            <NA>
17856                                                            <NA>
17857                                                            <NA>
17858                                                            <NA>
17859                                                            <NA>
17860                                                            <NA>
17861                                                            <NA>
17862                                                            <NA>
17863                                             tablet/pill/capsule
17864                                                            <NA>
17865                                                            <NA>
17866                                                            <NA>
17867                                                            <NA>
17868                                                            <NA>
17869                                                            <NA>
17870                                                            <NA>
17871                                                            <NA>
17872                                                            <NA>
17873                                                            <NA>
17874                                                            <NA>
17875                                                            <NA>
17876                                                            <NA>
17877                                                            <NA>
17878                                                            <NA>
17879                                                            <NA>
17880                                                            <NA>
17881                                                            <NA>
17882                                                            <NA>
17883                                                            <NA>
17884                                                            <NA>
17885                                                            <NA>
17886                                                            <NA>
17887                                                            <NA>
17888                                                            <NA>
17889                                                            <NA>
17890                                                            <NA>
17891                                                            <NA>
17892                                                            <NA>
17893                                                            <NA>
17894                                                            <NA>
17895                                                            <NA>
17896                                                            <NA>
17897                                                            <NA>
17898                                                            <NA>
17899                                                            <NA>
17900                                                            <NA>
17901                                                            <NA>
17902                                                            <NA>
17903                                                            <NA>
17904                                                            <NA>
17905                                                            <NA>
17906                                                            <NA>
17907                                                            <NA>
17908                                                            <NA>
17909                                                            <NA>
17910                                                            <NA>
17911                                                            <NA>
17912                                                            <NA>
17913                                                            <NA>
17914                                                            <NA>
17915                                                            <NA>
17916                                                            <NA>
17917                                                            <NA>
17918                                                            <NA>
17919                                                            <NA>
17920                                                            <NA>
17921                                                            <NA>
17922                                                            <NA>
17923                                                            <NA>
17924                                                            <NA>
17925                                                            <NA>
17926                                                            <NA>
17927                                                            <NA>
17928                                                            <NA>
17929                                                            <NA>
17930                                                            <NA>
17931                                                            <NA>
17932                                                            <NA>
17933                                                            <NA>
17934                                                            <NA>
17935                                                            <NA>
17936                                             tablet/pill/capsule
17937                                                            <NA>
17938                                                            <NA>
17939                                             tablet/pill/capsule
17940                                                    pack/package
17941                                                            <NA>
17942                                     based on weight (40-60 lbs)
17943                                                            <NA>
17944                                                            <NA>
17945                                                            <NA>
17946                                                            <NA>
17947                                                    pack/package
17948                                                            <NA>
17949                                                            <NA>
17950                                                            <NA>
17951                                                            <NA>
17952                                                            <NA>
17953                                                            <NA>
17954                                                            <NA>
17955                                                            <NA>
17956                                                            <NA>
17957                                                            <NA>
17958                                                            <NA>
17959                                                            <NA>
17960                                                            <NA>
17961                                                            <NA>
17962                                                            <NA>
17963                                                            <NA>
17964                                                            <NA>
17965                                                            <NA>
17966                                                            <NA>
17967                                                            <NA>
17968                                                            <NA>
17969                                                            <NA>
17970                                                            <NA>
17971                                                            <NA>
17972                                                            <NA>
17973                                                            <NA>
17974                                                           spray
17975                                                            <NA>
17976                                             tablet/pill/capsule
17977                                                    small amount
17978                                                            <NA>
17979                                                            <NA>
17980                                                            <NA>
17981                                                            <NA>
17982                                                            <NA>
17983                                                            <NA>
17984                                                            <NA>
17985                                                            <NA>
17986                                                            <NA>
17987                                                            <NA>
17988                                                            <NA>
17989                                                            <NA>
17990                                                            <NA>
17991                                                    pack/package
17992                                                            <NA>
17993                                                            <NA>
17994                                                            <NA>
17995                                                            <NA>
17996                                                            <NA>
17997                                                            <NA>
17998                                                            <NA>
17999                                                            <NA>
18000                                                            <NA>
18001                                                 based on weight
18002                                                            <NA>
18003                                                 based on weight
18004                                                            <NA>
18005                                                            <NA>
18006                                                            <NA>
18007                                                            <NA>
18008                                                            <NA>
18009                                                 based on weight
18010                                                 based on weight
18011                                                 based on weight
18012                                                            <NA>
18013                                                            <NA>
18014                                                 based on weight
18015                                                 based on weight
18016                                                            <NA>
18017                                                            <NA>
18018                                                            <NA>
18019                                                            <NA>
18020                                                            <NA>
18021                                                 based on weight
18022                                                            <NA>
18023                                                 based on weight
18024                                                 based on weight
18025                                                 based on weight
18026                                                 based on weight
18027                                                            <NA>
18028                                                            <NA>
18029                                                            <NA>
18030                                                 based on weight
18031                                                            <NA>
18032                                                            <NA>
18033                                                            <NA>
18034                                                            <NA>
18035                                                            <NA>
18036                                                            <NA>
18037                                                            <NA>
18038                                                            <NA>
18039                                                            <NA>
18040                                                            <NA>
18041                                                           spray
18042                                                            <NA>
18043                                                            <NA>
18044                                                            <NA>
18045                                                            <NA>
18046                                                            <NA>
18047                                                            <NA>
18048                                                            <NA>
18049                                                            <NA>
18050                                                            <NA>
18051                                                            <NA>
18052                                                            <NA>
18053                                                            <NA>
18054                                                            <NA>
18055                                                            <NA>
18056                                                            <NA>
18057                                                 based on weight
18058                                                 based on weight
18059                                                            <NA>
18060                                                            <NA>
18061                                                            <NA>
18062                                                            <NA>
18063                                                            <NA>
18064                                                            <NA>
18065                                                            <NA>
18066                                                            <NA>
18067                                                            <NA>
18068                                                            <NA>
18069                                     based on weight (40-60 lbs)
18070                                                            <NA>
18071                                                            <NA>
18072                                             tablet/pill/capsule
18073                                             tablet/pill/capsule
18074                                                            <NA>
18075                                                            dose
18076                                                            dose
18077                                                            <NA>
18078                                                            <NA>
18079                                             tablet/pill/capsule
18080                                             tablet/pill/capsule
18081                                                     bottle/vial
18082                                                            <NA>
18083                                                               %
18084                                                            <NA>
18085                                                            <NA>
18086                                                            <NA>
18087                                                            <NA>
18088                                                            <NA>
18089                                                            <NA>
18090                                                            <NA>
18091                                                            <NA>
18092                                                            <NA>
18093                                                            <NA>
18094                                             tablet/pill/capsule
18095                                             tablet/pill/capsule
18096                                                            <NA>
18097                                                            <NA>
18098                                                            <NA>
18099                                             tablet/pill/capsule
18100                                                            <NA>
18101                                                            <NA>
18102                                                            <NA>
18103                                                            <NA>
18104                                                            <NA>
18105                                                            <NA>
18106                                                            <NA>
18107                                                            <NA>
18108                                                            <NA>
18109                                                            <NA>
18110                                                            <NA>
18111                                                            <NA>
18112                                                            <NA>
18113                                                            <NA>
18114                                                            <NA>
18115                                                            <NA>
18116                                                            <NA>
18117                                                 based on weight
18118                                       based on weight (55+ lbs)
18119                                    based on weight (50-100 lbs)
18120                                                            <NA>
18121                                                            <NA>
18122                                                            <NA>
18123                                                            <NA>
18124                                                 based on weight
18125                                                 based on weight
18126                                                            <NA>
18127                                                            <NA>
18128                                                            <NA>
18129                                                            <NA>
18130                                                            <NA>
18131                                                            <NA>
18132                                                            <NA>
18133                                                            <NA>
18134                                                            <NA>
18135                                                            <NA>
18136                                                            <NA>
18137                                                            <NA>
18138                                                            <NA>
18139                                                            <NA>
18140                                                            <NA>
18141                                                            <NA>
18142                                                            <NA>
18143                                                            <NA>
18144                                                            <NA>
18145                                                            <NA>
18146                                                            <NA>
18147                                                            hour
18148                                                            <NA>
18149                                                            <NA>
18150                                                               %
18151                                                            <NA>
18152                                                            <NA>
18153                                                            <NA>
18154                                                            <NA>
18155                                                            <NA>
18156                                                            <NA>
18157                                                            <NA>
18158                                                            <NA>
18159                                                            <NA>
18160                                                            <NA>
18161                                                            <NA>
18162                                                            <NA>
18163                                                            <NA>
18164                                                            <NA>
18165                                                    small amount
18166                                                            <NA>
18167                                                            <NA>
18168                                                            <NA>
18169                                                           tubes
18170                                                            <NA>
18171                                                            <NA>
18172                                                            <NA>
18173                                                            <NA>
18174                                                            <NA>
18175                                                            <NA>
18176                                                            <NA>
18177                                                            <NA>
18178                                                            <NA>
18179                                                            <NA>
18180                                                            <NA>
18181                                                            <NA>
18182                                                            <NA>
18183                                                               %
18184                                                            <NA>
18185                                                            <NA>
18186                                                            <NA>
18187                                                            <NA>
18188                                             tablet/pill/capsule
18189                                                            <NA>
18190                                                            <NA>
18191                                                            <NA>
18192                                                            <NA>
18193                                                            <NA>
18194                                                            <NA>
18195                                                            <NA>
18196                                                            <NA>
18197                                                            <NA>
18198                                                            <NA>
18199                                                            <NA>
18200                                                            <NA>
18201                                                            <NA>
18202                                                 based on weight
18203                                                            <NA>
18204                                                            <NA>
18205                                                 based on weight
18206                                                            <NA>
18207                                                            <NA>
18208                                                            <NA>
18209                                                            <NA>
18210                                                            <NA>
18211                                                            <NA>
18212                                                            <NA>
18213                                                            <NA>
18214                                                 based on weight
18215                                                            <NA>
18216                                                            <NA>
18217                                                            <NA>
18218                                                            <NA>
18219                                                            <NA>
18220                                                            <NA>
18221                                                            <NA>
18222                                             tablet/pill/capsule
18223                                                 based on weight
18224                                                            <NA>
18225                                                            <NA>
18226                                                            <NA>
18227                                                            <NA>
18228                                                            <NA>
18229                                                            <NA>
18230                                                            <NA>
18231                                                               %
18232                                                               %
18233                                                               %
18234                                                            <NA>
18235                                                            <NA>
18236                                                            <NA>
18237                                                               %
18238                                                     unspecified
18239                                                            <NA>
18240                                                            <NA>
18241                                                               %
18242                                                               %
18243                                                               %
18244                                                            <NA>
18245                                                            <NA>
18246                                                            <NA>
18247                                                            <NA>
18248                                                            <NA>
18249                                                            <NA>
18250                                                            <NA>
18251                                                          powder
18252                                                            <NA>
18253                                                            <NA>
18254                                                               %
18255                                                            <NA>
18256                                                            <NA>
18257                                                            <NA>
18258                                                               %
18259                                                            <NA>
18260                                                            <NA>
18261                                                            <NA>
18262                                                               %
18263                                                            <NA>
18264                                                            <NA>
18265                                                            <NA>
18266                                                            <NA>
18267                                                            <NA>
18268                                                            <NA>
18269                                                            <NA>
18270                                                            <NA>
18271                                                            <NA>
18272                                                            <NA>
18273                                                            <NA>
18274                                                            <NA>
18275                                                    small amount
18276                                                            <NA>
18277                                                            <NA>
18278                                                            <NA>
18279                                                            <NA>
18280                                                            <NA>
18281                                                            <NA>
18282                                                            <NA>
18283                                                            <NA>
18284                                                            <NA>
18285                                             tablet/pill/capsule
18286                                                            <NA>
18287                                                            <NA>
18288                                                            <NA>
18289                                                            <NA>
18290                                                            <NA>
18291                                                            <NA>
18292                                                            <NA>
18293                                                            <NA>
18294                                                            <NA>
18295                                                            <NA>
18296                                             tablet/pill/capsule
18297                                                            <NA>
18298                                                            <NA>
18299                                                            <NA>
18300                                                            tube
18301                                                     unspecified
18302                                                            <NA>
18303                                                            <NA>
18304                                                            <NA>
18305                                                            <NA>
18306                                                            <NA>
18307                                                            <NA>
18308                                                            <NA>
18309                                                       as needed
18310                                                            <NA>
18311                                                            <NA>
18312                                                            <NA>
18313                                                            <NA>
18314                                                        ointment
18315                                                            <NA>
18316                                                     unspecified
18317                                                            <NA>
18318                                                   tapering dose
18319                                                 based on weight
18320                                                    small amount
18321                                             tablet/pill/capsule
18322                                             tablet/pill/capsule
18323                                                            <NA>
18324                                                            <NA>
18325                                                            <NA>
18326                                                            <NA>
18327                                                            <NA>
18328                                                            <NA>
18329                                                            <NA>
18330                                                            <NA>
18331                                                            <NA>
18332                                                            <NA>
18333                                                            <NA>
18334                                                            <NA>
18335                                             tablet/pill/capsule
18336                                                            <NA>
18337                                             tablet/pill/capsule
18338                                                            <NA>
18339                                             tablet/pill/capsule
18340                                             tablet/pill/capsule
18341                                                     unspecified
18342                                                            <NA>
18343                                                            <NA>
18344                                           1 tablet/pill/capsule
18345                                                            <NA>
18346                                                            <NA>
18347                                                            <NA>
18348                                                            <NA>
18349                                                            <NA>
18350                                                            <NA>
18351                                                            <NA>
18352                                                            <NA>
18353                                                            <NA>
18354                                                            <NA>
18355                                                            <NA>
18356                                                            <NA>
18357                                                            <NA>
18358                                                            <NA>
18359                                                            <NA>
18360                                                            <NA>
18361                                                            <NA>
18362                                                            <NA>
18363                                                            <NA>
18364                                                            <NA>
18365                                             tablet/pill/capsule
18366                                             tablet/pill/capsule
18367                                             tablet/pill/capsule
18368                                                            <NA>
18369                                                            <NA>
18370                                             tablet/pill/capsule
18371                                             tablet/pill/capsule
18372                                             tablet/pill/capsule
18373                                           1 tablet/pill/capsule
18374                                           1 tablet/pill/capsule
18375                                                 based on weight
18376                                                            <NA>
18377                                                            <NA>
18378                                                            <NA>
18379                                                            <NA>
18380                                                            <NA>
18381                                                            <NA>
18382                                                            <NA>
18383                                                            <NA>
18384                                                            <NA>
18385                                                            <NA>
18386                                                            <NA>
18387                                                            <NA>
18388                                                            <NA>
18389                                                            <NA>
18390                                                            <NA>
18391                                                            <NA>
18392                                                            <NA>
18393                                                            <NA>
18394                                                            <NA>
18395                                                            <NA>
18396                                                            <NA>
18397                                                            <NA>
18398                                                            <NA>
18399                                                            <NA>
18400                                                            <NA>
18401                                                            <NA>
18402                                                            <NA>
18403                                                            <NA>
18404                                                            <NA>
18405                                                            <NA>
18406                                                            <NA>
18407                                                            <NA>
18408                                                            <NA>
18409                                                            <NA>
18410                                                            <NA>
18411                                                            <NA>
18412                                                            <NA>
18413                                                            <NA>
18414                                                            <NA>
18415                                                 based on weight
18416                                                 based on weight
18417                                                            <NA>
18418                                                            <NA>
18419                                                            <NA>
18420                                                            <NA>
18421                                                            <NA>
18422                                                            <NA>
18423                                                            <NA>
18424                                                            <NA>
18425                                                            <NA>
18426                                                            <NA>
18427                                                      inch strip
18428                                                            <NA>
18429                                                            <NA>
18430                                                            <NA>
18431                                                            <NA>
18432                                                            <NA>
18433                                                            <NA>
18434                                                            <NA>
18435                                                            <NA>
18436                                             tablet/pill/capsule
18437                                                            <NA>
18438                                                            <NA>
18439                                                            <NA>
18440                                                            <NA>
18441                                                            <NA>
18442                                                            <NA>
18443                                                            <NA>
18444                                                            pump
18445                                                            <NA>
18446                                                            <NA>
18447                                                            <NA>
18448                                                            <NA>
18449                                                            <NA>
18450                                                            <NA>
18451                                                            <NA>
18452                                                            <NA>
18453                                             tablet/pill/capsule
18454                                             tablet/pill/capsule
18455                                                            <NA>
18456                                                            <NA>
18457                                             tablet/pill/capsule
18458                                             tablet/pill/capsule
18459                                                 based on weight
18460                                                            dose
18461                                                            dose
18462                                                            <NA>
18463                                                            <NA>
18464                                                            <NA>
18465                                                            <NA>
18466                                                            <NA>
18467                                                            <NA>
18468                                                            <NA>
18469                                                 0.25 inch strip
18470                                                            <NA>
18471                                                 0.25 inch strip
18472                                                            <NA>
18473                                                 based on weight
18474                                                            <NA>
18475                                                            <NA>
18476                                                            <NA>
18477                                                            <NA>
18478                                                            <NA>
18479                                                            <NA>
18480                                                            <NA>
18481                                                            <NA>
18482                                                            <NA>
18483                                                            <NA>
18484                                                            <NA>
18485                                                            <NA>
18486                                                            <NA>
18487                                                            <NA>
18488                                                            <NA>
18489                                             tablet/pill/capsule
18490                                             tablet/pill/capsule
18491                                                            <NA>
18492                                                            <NA>
18493                                                            <NA>
18494                                             tablet/pill/capsule
18495                                             tablet/pill/capsule
18496                                                            <NA>
18497                                                            <NA>
18498                                                            <NA>
18499                                                            <NA>
18500                                             tablet/pill/capsule
18501                                                            <NA>
18502                                             tablet/pill/capsule
18503                                                            <NA>
18504                                             tablet/pill/capsule
18505                                                            <NA>
18506                                                            <NA>
18507                                                            <NA>
18508                                                            <NA>
18509                                                            <NA>
18510                                                            <NA>
18511                                                            <NA>
18512                                                            <NA>
18513                                                            <NA>
18514                                     based on weight (21-55 lbs)
18515                                                            <NA>
18516                                                            <NA>
18517                                                            <NA>
18518                                                            <NA>
18519                                                 based on weight
18520                                        based on weight (60 lbs)
18521                                                            <NA>
18522                                                            <NA>
18523                                                            <NA>
18524                                                            <NA>
18525                                                            <NA>
18526                                                            <NA>
18527                                                            <NA>
18528                                                            <NA>
18529                                                            <NA>
18530                                                            <NA>
18531                                                            <NA>
18532                                                            <NA>
18533                                                            <NA>
18534                                                           daily
18535                                             tablet/pill/capsule
18536                                             tablet/pill/capsule
18537                                                            <NA>
18538                                                            <NA>
18539                                                 based on weight
18540                                                            <NA>
18541                                                            <NA>
18542                                                 based on weight
18543                                                           drops
18544                                                            <NA>
18545                                                            <NA>
18546                                                            <NA>
18547                                                            <NA>
18548                                                            <NA>
18549                                                            <NA>
18550                                                            <NA>
18551                                                            <NA>
18552                                                            <NA>
18553                                                            <NA>
18554                                                            <NA>
18555                                                 based on weight
18556                                                            <NA>
18557                                                            <NA>
18558                                                            puff
18559                                                            <NA>
18560                                                            <NA>
18561                                                            <NA>
18562                                                          powder
18563                                                            <NA>
18564                                                            <NA>
18565                                                          1 tube
18566                                                            <NA>
18567                                                            <NA>
18568                                                            <NA>
18569                                                            <NA>
18570                                                            <NA>
18571                                             tablet/pill/capsule
18572                                             tablet/pill/capsule
18573                                                            <NA>
18574                                                            <NA>
18575                                                            <NA>
18576                                             tablet/pill/capsule
18577                                             tablet/pill/capsule
18578                                                            <NA>
18579                                                            <NA>
18580                                             tablet/pill/capsule
18581                                             tablet/pill/capsule
18582                                                            <NA>
18583                                                            <NA>
18584                                                            <NA>
18585                                                            <NA>
18586                                                            <NA>
18587                                                            <NA>
18588                                                            <NA>
18589                                                            <NA>
18590                                                            <NA>
18591                                                           spray
18592                                                            <NA>
18593                                                            <NA>
18594                                                            <NA>
18595                                                 based on weight
18596                                                            <NA>
18597                                                            <NA>
18598                                                            <NA>
18599                                                            <NA>
18600                                                            <NA>
18601                                                            <NA>
18602                                                            <NA>
18603                                                            <NA>
18604                                                            <NA>
18605                                                            <NA>
18606                                                            <NA>
18607                                                    pack/package
18608                                                            <NA>
18609                                                            <NA>
18610                                                    pack/package
18611                                                            <NA>
18612                                                     unspecified
18613                                                            <NA>
18614                                                 based on weight
18615                                                            <NA>
18616                                                            <NA>
18617                                                            <NA>
18618                                                            <NA>
18619                                                            <NA>
18620                                                            <NA>
18621                                                            <NA>
18622                                                            <NA>
18623                                                            <NA>
18624                                                            <NA>
18625                                                            <NA>
18626                                                            <NA>
18627                                                            <NA>
18628                                                            <NA>
18629                                                            <NA>
18630                                                 0.25 inch strip
18631                                                            <NA>
18632                                                            <NA>
18633                                                            <NA>
18634                                                            <NA>
18635                                             tablet/pill/capsule
18636                                                            <NA>
18637                                                            <NA>
18638                                                            <NA>
18639                                                            <NA>
18640                                                            <NA>
18641                                                            <NA>
18642                                                            <NA>
18643                                                            <NA>
18644                                                            <NA>
18645                                                            <NA>
18646                                                            <NA>
18647                                                            <NA>
18648                                                            <NA>
18649                                                 based on weight
18650                                                            <NA>
18651                                                            <NA>
18652                                                            <NA>
18653                                                            <NA>
18654                                                            <NA>
18655                                                            <NA>
18656                                                            <NA>
18657                                                            <NA>
18658                                                            <NA>
18659                                                            <NA>
18660                                                            <NA>
18661                                                            <NA>
18662                                                            <NA>
18663                                                            <NA>
18664                                                            <NA>
18665                                                            <NA>
18666                                             tablet/pill/capsule
18667                                                            <NA>
18668                                                            <NA>
18669                                                        wipe/pad
18670                                                            <NA>
18671                                                            <NA>
18672                                                            <NA>
18673                                                            <NA>
18674                                                    pack/package
18675                                                            <NA>
18676                                                            <NA>
18677                                                            <NA>
18678                                                            <NA>
18679                                                            <NA>
18680                                                            <NA>
18681                                                            <NA>
18682                                                            <NA>
18683                                                            <NA>
18684                                                            <NA>
18685                                                            <NA>
18686                                                            <NA>
18687                                                            <NA>
18688                                                            <NA>
18689                                                            <NA>
18690                                                            <NA>
18691                                                            <NA>
18692                                        based on weight (65 lbs)
18693                                                            <NA>
18694                                                            <NA>
18695                                                            <NA>
18696                                                     combination
18697                                                     combination
18698                                                            <NA>
18699                                                            <NA>
18700                                                            <NA>
18701                                                            <NA>
18702                                                            <NA>
18703                     272 mcg ivermectin, 227 mg pyrantel pamoate
18704                                                68 mg afoxolaner
18705                                                            <NA>
18706                                                            <NA>
18707                                                            <NA>
18708                                                            <NA>
18709                                                            <NA>
18710                                                            <NA>
18711                                                            <NA>
18712                                                            <NA>
18713                                                            <NA>
18714                                                            <NA>
18715                                                            <NA>
18716                                                        ointment
18717                                                            <NA>
18718                                                           spray
18719                                                            <NA>
18720                                                            <NA>
18721                                                            <NA>
18722                                                            <NA>
18723                                                            <NA>
18724                                                            <NA>
18725                                                            <NA>
18726                                                            <NA>
18727                                             tablet/pill/capsule
18728                                                            <NA>
18729                                                        ointment
18730                                                            <NA>
18731                                                            <NA>
18732                                                            tube
18733                                             tablet/pill/capsule
18734                                             tablet/pill/capsule
18735                                             tablet/pill/capsule
18736                                             tablet/pill/capsule
18737                                                            <NA>
18738                                                            <NA>
18739                                                            <NA>
18740                                             tablet/pill/capsule
18741                                                            <NA>
18742                                                            <NA>
18743                                             tablet/pill/capsule
18744                                                          collar
18745                                                    pack/package
18746                                                            <NA>
18747                                                            <NA>
18748                                                    pack/package
18749                                                            <NA>
18750                                                            <NA>
18751                                                            <NA>
18752                                                            <NA>
18753                                                            <NA>
18754                                                            <NA>
18755                                                            <NA>
18756                                                            <NA>
18757                                                            <NA>
18758                                                            <NA>
18759                                                            <NA>
18760                                                            <NA>
18761                                                            <NA>
18762                                                            <NA>
18763                                                            <NA>
18764                                                            <NA>
18765                                                            <NA>
18766                                                            <NA>
18767                                                            <NA>
18768                                                            <NA>
18769                                                            <NA>
18770                                                            <NA>
18771                                                            <NA>
18772                                                            <NA>
18773                                             tablet/pill/capsule
18774                                                            <NA>
18775                                                            <NA>
18776                                                            <NA>
18777                                                            <NA>
18778                                             tablet/pill/capsule
18779                                                            <NA>
18780                                                            <NA>
18781                                                            <NA>
18782                                                            <NA>
18783                                                            <NA>
18784                                                            <NA>
18785                                                            <NA>
18786                                                            <NA>
18787                                                            <NA>
18788                                                            <NA>
18789                                                            <NA>
18790                                                            <NA>
18791                                                            <NA>
18792                                                            <NA>
18793                                                            <NA>
18794                                                            <NA>
18795                                             tablet/pill/capsule
18796                                                     bottle/vial
18797                                             tablet/pill/capsule
18798                                                     bottle/vial
18799                                                            <NA>
18800                                                            <NA>
18801                                                            <NA>
18802                                                            <NA>
18803                                                            <NA>
18804                                                            <NA>
18805                                                            <NA>
18806                                                            <NA>
18807                                                            <NA>
18808                                                            <NA>
18809                                                            <NA>
18810                                                            <NA>
18811                                                            <NA>
18812                                                            <NA>
18813                                                            <NA>
18814                                                            <NA>
18815                                                            <NA>
18816                                                            <NA>
18817                                                            <NA>
18818                                                            <NA>
18819                                                            <NA>
18820                                                            <NA>
18821                                                            <NA>
18822                                                            <NA>
18823                                                            <NA>
18824                                                            <NA>
18825                                                            <NA>
18826                                                         monthly
18827                                                            <NA>
18828                                                            <NA>
18829                                                            <NA>
18830                                                            <NA>
18831                                                            <NA>
18832                                                            <NA>
18833                                                            <NA>
18834                                                            <NA>
18835                                                            <NA>
18836                                                            <NA>
18837                                             tablet/pill/capsule
18838                                        2 tablets/pills/capsules
18839                                           1 tablet/pill/capsule
18840                                                            <NA>
18841                                                            <NA>
18842                                                            <NA>
18843                                                            <NA>
18844                                                 syringe/pipette
18845                                             tablet/pill/capsule
18846                                             tablet/pill/capsule
18847                                        2 tablets/pills/capsules
18848                                                            <NA>
18849                                                            <NA>
18850                                           1 tablet/pill/capsule
18851                                                            <NA>
18852                                             tablet/pill/capsule
18853                                           1 tablet/pill/capsule
18854                                           1 tablet/pill/capsule
18855                                                 based on weight
18856                                                 based on weight
18857                                                            <NA>
18858                                                            <NA>
18859                                                            <NA>
18860                                                            <NA>
18861                                                            <NA>
18862                                                            <NA>
18863                                                            <NA>
18864                                                            <NA>
18865                                                            <NA>
18866                                                            <NA>
18867                                                            <NA>
18868                                                            <NA>
18869                                             tablet/pill/capsule
18870                                             tablet/pill/capsule
18871                                                            <NA>
18872                                                            <NA>
18873                                                            <NA>
18874                                                            <NA>
18875                                             tablet/pill/capsule
18876                                             tablet/pill/capsule
18877                                             tablet/pill/capsule
18878                                             tablet/pill/capsule
18879                                             tablet/pill/capsule
18880                                             tablet/pill/capsule
18881                                             tablet/pill/capsule
18882                                                            dose
18883                                                            <NA>
18884                                                            <NA>
18885                                                            <NA>
18886                                                            <NA>
18887                                                            <NA>
18888                                                            <NA>
18889                                                            <NA>
18890                                                            <NA>
18891                                                            <NA>
18892                                                            <NA>
18893                                             tablet/pill/capsule
18894                                                            <NA>
18895                                                            <NA>
18896                                                            <NA>
18897                                             tablet/pill/capsule
18898                                                            <NA>
18899                                             tablet/pill/capsule
18900                                                            <NA>
18901                                                            <NA>
18902                                                            <NA>
18903                                                            <NA>
18904                                                            <NA>
18905                                                            <NA>
18906                                                            <NA>
18907                                                            <NA>
18908                                                 based on weight
18909                                                 based on weight
18910                                                            <NA>
18911                                                            <NA>
18912                                                            <NA>
18913                                                            <NA>
18914                                                            <NA>
18915                                                            <NA>
18916                                                            <NA>
18917                                                            <NA>
18918                                                            <NA>
18919                                                          collar
18920                                                            <NA>
18921                                                          collar
18922                                             tablet/pill/capsule
18923                                                            <NA>
18924                                                 based on weight
18925                                                            <NA>
18926                                                            <NA>
18927                                                            <NA>
18928                                                            <NA>
18929                                                            <NA>
18930                                                            <NA>
18931                                                            <NA>
18932                                                            <NA>
18933                                                            <NA>
18934                                                            <NA>
18935                                    based on weight (50-100 lbs)
18936                                                          collar
18937                                             tablet/pill/capsule
18938                                                            <NA>
18939                                                            <NA>
18940                                                            <NA>
18941                                                            <NA>
18942                                                            <NA>
18943                                                            <NA>
18944                                                            <NA>
18945                                                            <NA>
18946                                                            <NA>
18947                                                            <NA>
18948                                                            <NA>
18949                                                            <NA>
18950                                                            <NA>
18951                                                            <NA>
18952                                                            <NA>
18953                                                 based on weight
18954                                                 based on weight
18955                                                            <NA>
18956                                                            <NA>
18957                                                            <NA>
18958                                                            <NA>
18959                                                            <NA>
18960                                                            <NA>
18961                                        2 tablets/pills/capsules
18962                                                            <NA>
18963                                                            <NA>
18964                                             tablet/pill/capsule
18965                                                            <NA>
18966                                                            <NA>
18967                                                            <NA>
18968                                                            <NA>
18969                                                            <NA>
18970                                             tablet/pill/capsule
18971                                                            <NA>
18972                                                            <NA>
18973                                                            <NA>
18974                                                            <NA>
18975                                                            <NA>
18976                                                            <NA>
18977                                                            <NA>
18978                                                            <NA>
18979                                                            <NA>
18980                                                            <NA>
18981                                                            <NA>
18982                                                            <NA>
18983                                                            <NA>
18984                                                            <NA>
18985                                                            <NA>
18986                                                            <NA>
18987                                                            <NA>
18988                                                     unspecified
18989                                                     unspecified
18990                                                            <NA>
18991                                                    small amount
18992                                                            <NA>
18993                                                            <NA>
18994                                                            <NA>
18995                                             tablet/pill/capsule
18996                                                            <NA>
18997                                                            <NA>
18998                                                            <NA>
18999                                             tablet/pill/capsule
19000                                                            <NA>
19001                                                            <NA>
19002                                                            <NA>
19003                                                            <NA>
19004                                                            <NA>
19005                                                           spray
19006                                                           spray
19007                                                            <NA>
19008                                      1-2 tablets/pills/capsules
19009                                      1-2 tablets/pills/capsules
19010                                                           scoop
19011                                                           scoop
19012                                                            <NA>
19013                                                           scoop
19014                                                            <NA>
19015                                                            <NA>
19016                                                            <NA>
19017                                                            <NA>
19018                                                            <NA>
19019                                                            <NA>
19020                                                            <NA>
19021                                                            <NA>
19022                                             tablet/pill/capsule
19023                                                    small amount
19024                                             tablet/pill/capsule
19025                                    based on weight (50-100 lbs)
19026                                                            <NA>
19027                                                            <NA>
19028                                                            <NA>
19029                                                            <NA>
19030                                                            <NA>
19031                                                            <NA>
19032                                                            <NA>
19033                                                            <NA>
19034                                                            <NA>
19035                                                            <NA>
19036                                                            <NA>
19037                                                            <NA>
19038                                                            <NA>
19039                                                            <NA>
19040                                                            <NA>
19041                                                            <NA>
19042                                                            <NA>
19043                                                 based on weight
19044                                                            <NA>
19045                                             tablet/pill/capsule
19046                                                            <NA>
19047                                                            <NA>
19048                                                            <NA>
19049                                                            <NA>
19050                                                            <NA>
19051                                                            <NA>
19052                                                            <NA>
19053                                                            <NA>
19054                                                            <NA>
19055                                                 based on weight
19056                                                     unspecified
19057                                                            <NA>
19058                                                            <NA>
19059                                                            <NA>
19060                                                            <NA>
19061                                                 based on weight
19062                                                            <NA>
19063                                                            <NA>
19064                                                            <NA>
19065                                                            <NA>
19066                                                            <NA>
19067                                                 based on weight
19068                                                            <NA>
19069                                                            <NA>
19070                                             tablet/pill/capsule
19071                                                            <NA>
19072                                                            tube
19073                                             tablet/pill/capsule
19074                                                            <NA>
19075                                                            <NA>
19076                                                            <NA>
19077                                                 based on weight
19078                                                 based on weight
19079                                                            <NA>
19080                                                            <NA>
19081                                                            <NA>
19082                                                          1 tube
19083                                                            <NA>
19084                                                            <NA>
19085                                                            <NA>
19086                                                            <NA>
19087                                                            <NA>
19088                                                            <NA>
19089                                                            <NA>
19090                                                            <NA>
19091                                                            <NA>
19092                                                            <NA>
19093                                                            <NA>
19094                                                            <NA>
19095                                                            <NA>
19096                                                            <NA>
19097                                                            <NA>
19098                                                            <NA>
19099                                                            <NA>
19100                                                            <NA>
19101                                                            <NA>
19102                                                 based on weight
19103                                                            <NA>
19104                                                            <NA>
19105                                                            tube
19106                                                            <NA>
19107                                                            <NA>
19108                                                            <NA>
19109                                                            <NA>
19110                                                            <NA>
19111                                             tablet/pill/capsule
19112                                                            <NA>
19113                                                            <NA>
19114                                                            <NA>
19115                                                            <NA>
19116                                                            <NA>
19117                                                            <NA>
19118                                                            <NA>
19119                                                            <NA>
19120                                                            <NA>
19121                                                            <NA>
19122                                                 based on weight
19123                                                            <NA>
19124                                                            <NA>
19125                                                            <NA>
19126                                                            <NA>
19127                                                            <NA>
19128                                                            <NA>
19129                                                            <NA>
19130                                             tablet/pill/capsule
19131                                                            <NA>
19132                                                            <NA>
19133                                                            <NA>
19134                                                            <NA>
19135                                                            <NA>
19136                                                            <NA>
19137                                                            <NA>
19138                                                            <NA>
19139                                                            <NA>
19140                                             tablet/pill/capsule
19141                                                           scoop
19142                                                    pack/package
19143                                                            <NA>
19144                                                            <NA>
19145                                                           scoop
19146                                                    pack/package
19147                                                            <NA>
19148                                                            <NA>
19149                                                            <NA>
19150                                                            <NA>
19151                                                    pack/package
19152                                                            <NA>
19153                                             tablet/pill/capsule
19154                                             tablet/pill/capsule
19155                                                            <NA>
19156                                                            <NA>
19157                                             tablet/pill/capsule
19158                                             tablet/pill/capsule
19159                                                            <NA>
19160                                                            <NA>
19161                                                            <NA>
19162                                                            <NA>
19163                                                            <NA>
19164                                                            <NA>
19165                                             tablet/pill/capsule
19166                                             tablet/pill/capsule
19167                                                            tube
19168                                                            <NA>
19169                                           1 tablet/pill/capsule
19170                                                          1 tube
19171                                                            <NA>
19172                                                            <NA>
19173                                                            <NA>
19174                                                            <NA>
19175                                                            <NA>
19176                                                            <NA>
19177                                                            <NA>
19178                                                            <NA>
19179                                                            <NA>
19180                                                            <NA>
19181                                                            <NA>
19182                                                               %
19183                                                               1
19184                                                     unspecified
19185                                                            <NA>
19186                                                            <NA>
19187                                                            <NA>
19188                                                            <NA>
19189                                                            <NA>
19190                                                            <NA>
19191                                                            <NA>
19192                                                            <NA>
19193                                                            <NA>
19194                                                            <NA>
19195                                                            <NA>
19196                                                            <NA>
19197                                                            <NA>
19198                                                            <NA>
19199                                                            <NA>
19200                                                            <NA>
19201                                                            <NA>
19202                                                            <NA>
19203                                                            <NA>
19204                                                            <NA>
19205                                                            <NA>
19206                                                            <NA>
19207                                                            <NA>
19208                                             tablet/pill/capsule
19209                                                            <NA>
19210                                                            <NA>
19211                                                            <NA>
19212                                                            <NA>
19213                                                     unspecified
19214                                                     unspecified
19215                                                     as directed
19216                                                     as directed
19217                                                            tube
19218                                                            <NA>
19219                                                            <NA>
19220                                                            <NA>
19221                                           1 tablet/pill/capsule
19222                                           1 tablet/pill/capsule
19223                                           1 tablet/pill/capsule
19224                                                          collar
19225                                                            <NA>
19226                                             tablet/pill/capsule
19227                                                            <NA>
19228                                                            <NA>
19229                                                            <NA>
19230                                                            <NA>
19231                                             tablet/pill/capsule
19232                                                            <NA>
19233                                                            <NA>
19234                                                            <NA>
19235                                                            <NA>
19236                                                            <NA>
19237                                                            <NA>
19238                                                            <NA>
19239                                                            <NA>
19240                                                            <NA>
19241                                                            <NA>
19242                                                            <NA>
19243                                                            <NA>
19244                                                            <NA>
19245                                                            <NA>
19246                                                     as directed
19247                                                            <NA>
19248                                                            <NA>
19249                                                            <NA>
19250                                                            <NA>
19251                                                            <NA>
19252                                                            <NA>
19253                                                            <NA>
19254                                                            <NA>
19255                                                            <NA>
19256                                                            <NA>
19257                                                            <NA>
19258                                                            <NA>
19259                                                            <NA>
19260                                                            <NA>
19261                                                            <NA>
19262                                                            <NA>
19263                                                            <NA>
19264                                                            <NA>
19265                                                            <NA>
19266                                                            <NA>
19267                                                            <NA>
19268                                                            <NA>
19269                                                            <NA>
19270                                                            <NA>
19271                                                 based on weight
19272                                                 based on weight
19273                                                 based on weight
19274                                                            <NA>
19275                                                            <NA>
19276                                                            <NA>
19277                                                            <NA>
19278                                                     combination
19279                                                            <NA>
19280                                                            <NA>
19281                                                 based on weight
19282                                                 based on weight
19283                                                            <NA>
19284                                                            <NA>
19285                                                            <NA>
19286                                                            <NA>
19287                                                            <NA>
19288                                                            <NA>
19289                                                            <NA>
19290                                                            <NA>
19291                                                            <NA>
19292                                                            <NA>
19293                                                            <NA>
19294                                                            <NA>
19295                                                            <NA>
19296                                                            <NA>
19297                                                            <NA>
19298                                                            <NA>
19299                                                            dose
19300                                                            <NA>
19301                                                            <NA>
19302                                                            <NA>
19303                                                            <NA>
19304                                                            <NA>
19305                                                            <NA>
19306                                                            <NA>
19307                                                            <NA>
19308                                                            <NA>
19309                                                            <NA>
19310                                                            <NA>
19311                                                            <NA>
19312                                                            <NA>
19313                                                            <NA>
19314                                                            <NA>
19315                                                 based on weight
19316                                                            <NA>
19317                                                            <NA>
19318                                                 based on weight
19319                                                            <NA>
19320                                                            <NA>
19321                                                            <NA>
19322                                                            <NA>
19323                                                            <NA>
19324                                                            <NA>
19325                                                            <NA>
19326                                                 based on weight
19327                                                 based on weight
19328                                                            <NA>
19329                                                            <NA>
19330                                                            <NA>
19331                                                            <NA>
19332                                                            <NA>
19333                                                            <NA>
19334                                                            <NA>
19335                                                            <NA>
19336                                                            <NA>
19337                                                            <NA>
19338                                                 based on weight
19339                                                            <NA>
19340                                                            <NA>
19341                                                    pack/package
19342                                                            <NA>
19343                                                            <NA>
19344                                                            <NA>
19345                                                            <NA>
19346                                                           spray
19347                                                            <NA>
19348                                                            <NA>
19349                                                            <NA>
19350                                                      inch strip
19351                                                            <NA>
19352                                                            <NA>
19353                                                            <NA>
19354                                                            <NA>
19355                                                            <NA>
19356                                                            <NA>
19357                                       based on weight (55+ lbs)
19358                                                            <NA>
19359                                                            <NA>
19360                                                            <NA>
19361                                                            <NA>
19362                                                            <NA>
19363                                                            <NA>
19364                                                            <NA>
19365                                                            <NA>
19366                                                            <NA>
19367                                                            <NA>
19368                                                            <NA>
19369                                                            <NA>
19370                                                            <NA>
19371                                                            <NA>
19372                                                            <NA>
19373                                             tablet/pill/capsule
19374                                             tablet/pill/capsule
19375                                                            <NA>
19376                                                            <NA>
19377                                                            <NA>
19378                                                            <NA>
19379                                                            <NA>
19380                                                            <NA>
19381                                                            <NA>
19382                                                            <NA>
19383                                                            <NA>
19384                                                            <NA>
19385                                                            <NA>
19386                                                 based on weight
19387                                                 based on weight
19388                                                            <NA>
19389                                                            <NA>
19390                                                    small amount
19391                                                 based on weight
19392                                                            <NA>
19393                                                            <NA>
19394                                                            <NA>
19395                                                           spray
19396                                                            <NA>
19397                                                      inch strip
19398                                                            <NA>
19399                                                            <NA>
19400                                                            <NA>
19401                                                            <NA>
19402                                                            <NA>
19403                                                            <NA>
19404                                                            <NA>
19405                                                            <NA>
19406                                                            <NA>
19407                                                            <NA>
19408                                                            <NA>
19409                                                            <NA>
19410                                                            <NA>
19411                                                            <NA>
19412                                                            <NA>
19413                                                            <NA>
19414                                                            <NA>
19415                                                            <NA>
19416                                                            <NA>
19417                                                            <NA>
19418                                                            <NA>
19419                                                            <NA>
19420                                                            <NA>
19421                                                            <NA>
19422                                                            <NA>
19423                                                 based on weight
19424                                                 based on weight
19425                                                            <NA>
19426                                             tablet/pill/capsule
19427                                             tablet/pill/capsule
19428                                                            <NA>
19429                                                            <NA>
19430                                                            <NA>
19431                                                            <NA>
19432                                                            <NA>
19433                                                            <NA>
19434                                                            <NA>
19435                                                            <NA>
19436                                                            <NA>
19437                                                            <NA>
19438                                                            <NA>
19439                                                            <NA>
19440                                                            <NA>
19441                                                            <NA>
19442                                                            <NA>
19443                                                            <NA>
19444                                                            <NA>
19445                                             tablet/pill/capsule
19446                                                     application
19447                                                 based on weight
19448                                                 based on weight
19449                                                 based on weight
19450                                                 based on weight
19451                                                            <NA>
19452                                                            <NA>
19453                                                            <NA>
19454                                                            <NA>
19455                                                            <NA>
19456                                                            <NA>
19457                                                 based on weight
19458                                                            <NA>
19459                                                            <NA>
19460                                                            <NA>
19461                                                 based on weight
19462                                           1 tablet/pill/capsule
19463                                           1 tablet/pill/capsule
19464                                                            <NA>
19465                                                            <NA>
19466                                                            <NA>
19467                                                            <NA>
19468                                                            <NA>
19469                                                            <NA>
19470                                                            <NA>
19471                                                            <NA>
19472                                                            <NA>
19473                                                            <NA>
19474                                                            <NA>
19475                                                            <NA>
19476                                                 syringe/pipette
19477                                                            <NA>
19478                                                            <NA>
19479                                                            <NA>
19480                                                            <NA>
19481                                                            <NA>
19482                     272 mcg ivermectin, 227 mg pyrantel pamoate
19483                                                            <NA>
19484                                                            <NA>
19485                                                            <NA>
19486                                                            <NA>
19487                                             tablet/pill/capsule
19488                                                            <NA>
19489                                                            <NA>
19490                                                            <NA>
19491                                                            <NA>
19492                                             tablet/pill/capsule
19493                                             tablet/pill/capsule
19494                                                     application
19495                                             tablet/pill/capsule
19496                                                            <NA>
19497                                                            <NA>
19498                                                            <NA>
19499                                                            <NA>
19500                                                            <NA>
19501                                                            <NA>
19502                                                            <NA>
19503                                                            <NA>
19504                                                            <NA>
19505                                                            <NA>
19506                                                            <NA>
19507                                                               %
19508                                                            <NA>
19509                                                            <NA>
19510                                                            <NA>
19511                                                            <NA>
19512                                                            <NA>
19513                                                            <NA>
19514                                                            <NA>
19515                                                            <NA>
19516                                                            <NA>
19517                                                            <NA>
19518                                                            <NA>
19519                                                            <NA>
19520                                                            <NA>
19521                                                            <NA>
19522                                                            <NA>
19523                                                               %
19524                                                               %
19525                                                            <NA>
19526                                                            <NA>
19527                                                            <NA>
19528                                                            <NA>
19529                                                            <NA>
19530                                                            <NA>
19531                                                            <NA>
19532                                                            <NA>
19533                                                            <NA>
19534                                                            <NA>
19535                                                            <NA>
19536                                                            <NA>
19537                                             tablet/pill/capsule
19538                                                            <NA>
19539                                                            <NA>
19540                                                            <NA>
19541                                             tablet/pill/capsule
19542                                             tablet/pill/capsule
19543                                             tablet/pill/capsule
19544                                                     application
19545                                                            <NA>
19546                                                            <NA>
19547                                                            <NA>
19548                                             tablet/pill/capsule
19549                                                            <NA>
19550                                                            tube
19551                                             tablet/pill/capsule
19552                                                            <NA>
19553                                                            <NA>
19554                                                            <NA>
19555                                           1 tablet/pill/capsule
19556                                                            <NA>
19557                                                            <NA>
19558                                                            <NA>
19559                                                            <NA>
19560                                                            <NA>
19561                                                            <NA>
19562                                                            <NA>
19563                                                            <NA>
19564                                                            <NA>
19565                                             tablet/pill/capsule
19566                                                            <NA>
19567                                                            <NA>
19568                                                          1 pump
19569                                                            <NA>
19570                                                            <NA>
19571                                                            <NA>
19572                                                            <NA>
19573                                                            <NA>
19574                                                            <NA>
19575                                                            <NA>
19576                                                            <NA>
19577                                                            <NA>
19578                                                            <NA>
19579                                                            <NA>
19580                                                            <NA>
19581                                                            <NA>
19582                                                            tube
19583                                                            <NA>
19584                                                            <NA>
19585                                                            <NA>
19586                                                            <NA>
19587                                                            <NA>
19588                                                            <NA>
19589                                                            <NA>
19590                                                            <NA>
19591                                                            <NA>
19592                                                            tube
19593                                                            <NA>
19594                                                            <NA>
19595                                                            <NA>
19596                                                            <NA>
19597                                                 based on weight
19598                                                            <NA>
19599                                                            <NA>
19600                                                            <NA>
19601                                                            tube
19602                                                    small amount
19603                                             tablet/pill/capsule
19604                                                            tube
19605                                                            <NA>
19606                                                            <NA>
19607                                                            <NA>
19608                                                            <NA>
19609                                                            <NA>
19610                                                            <NA>
19611                                                            <NA>
19612                                                            <NA>
19613                                                            <NA>
19614                                                            <NA>
19615                                                            <NA>
19616                                                            <NA>
19617                                                            <NA>
19618                                                            <NA>
19619                                                            <NA>
19620                                                            <NA>
19621                                                            <NA>
19622                                                            <NA>
19623                                                            <NA>
19624                                                            <NA>
19625                                                            <NA>
19626                                                            <NA>
19627                                                            <NA>
19628                                                            <NA>
19629                                                            <NA>
19630                                                            <NA>
19631                                                            <NA>
19632                                                            <NA>
19633                                                            <NA>
19634                                                            <NA>
19635                                                           spray
19636                                                            <NA>
19637                                                            <NA>
19638                                                            <NA>
19639                                                            <NA>
19640                                                            <NA>
19641                                                            <NA>
19642                                                            <NA>
19643                                                            <NA>
19644                                                            <NA>
19645                                                            <NA>
19646                                                            <NA>
19647                                                            <NA>
19648                                                            <NA>
19649                                                            <NA>
19650                                                            <NA>
19651                                                            <NA>
19652                                                            <NA>
19653                                                            <NA>
19654                                                            <NA>
19655                                                            <NA>
19656                                                            <NA>
19657                                                            <NA>
19658                                                            <NA>
19659                                                    pack/package
19660                                                            <NA>
19661                                                            <NA>
19662                                                    pack/package
19663                                                            <NA>
19664                                                            <NA>
19665                                                            <NA>
19666                                                            <NA>
19667                                                            <NA>
19668                                                            <NA>
19669                                                            <NA>
19670                                                            <NA>
19671                                                            <NA>
19672                                                            <NA>
19673                                                 based on weight
19674                                                 based on weight
19675                                                            <NA>
19676                                                            <NA>
19677                                                            <NA>
19678                                                            <NA>
19679                                                            <NA>
19680                                                            <NA>
19681                                                            <NA>
19682                                                            <NA>
19683                                                            <NA>
19684                                                            <NA>
19685                                                 based on weight
19686                                                            <NA>
19687                                                            <NA>
19688                                             tablet/pill/capsule
19689                                                            <NA>
19690                                                            <NA>
19691                                                            <NA>
19692                                                            <NA>
19693                                                            <NA>
19694                                                            <NA>
19695                                                            <NA>
19696                                                            <NA>
19697                                                            <NA>
19698                                                            <NA>
19699                                                            <NA>
19700                                                            <NA>
19701                                                            <NA>
19702                                                            <NA>
19703                                                            <NA>
19704                                                            <NA>
19705                                                            <NA>
19706                                                            <NA>
19707                                                            <NA>
19708                                                            <NA>
19709                                                            <NA>
19710                                                 based on weight
19711                                                 based on weight
19712                                                 based on weight
19713                                           1 tablet/pill/capsule
19714                                                          collar
19715                                             tablet/pill/capsule
19716                                                          collar
19717                                                 based on weight
19718                                                 based on weight
19719                                                            <NA>
19720                                                            <NA>
19721                                                            <NA>
19722                                             tablet/pill/capsule
19723                                                            <NA>
19724                                                           9.80%
19725                                                            <NA>
19726                                                            <NA>
19727                                                            <NA>
19728                                                            <NA>
19729                                             tablet/pill/capsule
19730                                                            <NA>
19731                                                            <NA>
19732                                                            <NA>
19733                                                            <NA>
19734                                                            <NA>
19735                                                    small amount
19736                                                            <NA>
19737                                                            <NA>
19738                                                            <NA>
19739                                                            <NA>
19740                                                            <NA>
19741                                                            <NA>
19742                                                            <NA>
19743                                                            <NA>
19744                                                            <NA>
19745                                                            <NA>
19746                                                            <NA>
19747                                                            <NA>
19748                                                            <NA>
19749                                                            <NA>
19750                                                            <NA>
19751                                                            <NA>
19752                                                            <NA>
19753                                                            <NA>
19754                                                            <NA>
19755                                                            <NA>
19756                                                            <NA>
19757                                                            <NA>
19758                                                            <NA>
19759                                                            <NA>
19760                                                            <NA>
19761                                                            <NA>
19762                                                            <NA>
19763                                                            <NA>
19764                                                            <NA>
19765                                                            <NA>
19766                                                            <NA>
19767                                                            <NA>
19768                                                            dose
19769                                                            <NA>
19770                                                            <NA>
19771                                                            <NA>
19772                                                            <NA>
19773                                                            <NA>
19774                                                            <NA>
19775                                                            <NA>
19776                                     based on weight (40-60 lbs)
19777                                           1 tablet/pill/capsule
19778                                                 based on weight
19779                                                            <NA>
19780                                             tablet/pill/capsule
19781                                             tablet/pill/capsule
19782                                             tablet/pill/capsule
19783                                                            <NA>
19784                                                            <NA>
19785                                                            <NA>
19786                                                               %
19787                                                            <NA>
19788                                                        wipe/pad
19789                                                            <NA>
19790                                                            <NA>
19791                                                            <NA>
19792                                                            <NA>
19793                                             tablet/pill/capsule
19794                                                            <NA>
19795                                                            <NA>
19796                                                            <NA>
19797                                                            <NA>
19798                                                            <NA>
19799                                                            <NA>
19800                                                 based on weight
19801                                                 based on weight
19802                                             tablet/pill/capsule
19803                                             tablet/pill/capsule
19804                                             tablet/pill/capsule
19805                                             tablet/pill/capsule
19806                                                           scoop
19807                                             tablet/pill/capsule
19808                                                            <NA>
19809                                             tablet/pill/capsule
19810                                             tablet/pill/capsule
19811                                                            <NA>
19812                                             tablet/pill/capsule
19813                                             tablet/pill/capsule
19814                                                            <NA>
19815                                                            <NA>
19816                                                     application
19817                                             tablet/pill/capsule
19818                                                            <NA>
19819                                                            <NA>
19820                                                            <NA>
19821                                                     application
19822                                                            <NA>
19823                                                        ointment
19824                                                            <NA>
19825                                                            <NA>
19826                                                            <NA>
19827                                                            <NA>
19828                                                 based on weight
19829                                                 based on weight
19830                                                            <NA>
19831                                                            <NA>
19832                                                            <NA>
19833                                                            <NA>
19834                                                            <NA>
19835                                                            <NA>
19836                                                            <NA>
19837                                                              gm
19838                                                            <NA>
19839                                                            <NA>
19840                                                            <NA>
19841                                                            <NA>
19842                                                            <NA>
19843                                                            <NA>
19844                                                            <NA>
19845                                                            <NA>
19846                                                            tube
19847                                                    small amount
19848                                                            <NA>
19849                                                            <NA>
19850                                                            <NA>
19851                                                            <NA>
19852                                                            <NA>
19853                                                 based on weight
19854                                                 based on weight
19855                                                            <NA>
19856                                                 based on weight
19857                                                 based on weight
19858                                                            <NA>
19859                                                            <NA>
19860                                                            <NA>
19861                                                            <NA>
19862                                                            <NA>
19863                                                            <NA>
19864                                                            <NA>
19865                                                            <NA>
19866                                                           spray
19867                                                            <NA>
19868                                                            <NA>
19869                                                            <NA>
19870                                                            <NA>
19871                                                            <NA>
19872                                                            <NA>
19873                                                            <NA>
19874                                                            <NA>
19875                                                            <NA>
19876                                                            <NA>
19877                                                            <NA>
19878                                                            <NA>
19879                                                            <NA>
19880                                                            <NA>
19881                                                            <NA>
19882                                                            <NA>
19883                                                            <NA>
19884                                                            <NA>
19885                                                            <NA>
19886                                                            <NA>
19887                                     based on weight (20-50 lbs)
19888                                             tablet/pill/capsule
19889                                                            <NA>
19890                                                            <NA>
19891                                                            <NA>
19892                                                            <NA>
19893                                                            <NA>
19894                                                            <NA>
19895                                                            <NA>
19896                                                            <NA>
19897                                                            <NA>
19898                                                            <NA>
19899                                                            <NA>
19900                                                            <NA>
19901                                                            <NA>
19902                                                            <NA>
19903                                                            <NA>
19904                                                            <NA>
19905                                                            <NA>
19906                                                            <NA>
19907                                                            <NA>
19908                                                            <NA>
19909                                                            <NA>
19910                                                            <NA>
19911                                                 based on weight
19912                                                            <NA>
19913                                                            <NA>
19914                                                     unspecified
19915                                                            <NA>
19916                                                            <NA>
19917                                                    small amount
19918                                                            <NA>
19919                                                            <NA>
19920                                                            <NA>
19921                                                            <NA>
19922                                                            <NA>
19923                                                               %
19924                                                            <NA>
19925                                                            <NA>
19926                                                            <NA>
19927                                                            <NA>
19928                                                            <NA>
19929                                                            <NA>
19930                                                            <NA>
19931                                                            <NA>
19932                                                            <NA>
19933                                                 based on weight
19934                                                            <NA>
19935                                                            <NA>
19936                                                 based on weight
19937                                                            <NA>
19938                                             tablet/pill/capsule
19939                                                            <NA>
19940                                             tablet/pill/capsule
19941                                                            <NA>
19942                                                            <NA>
19943                                                 based on weight
19944                                                            <NA>
19945                                                            <NA>
19946                                                 based on weight
19947                                                            <NA>
19948                                                            <NA>
19949                                                            <NA>
19950                                                            <NA>
19951                                                            <NA>
19952                                                     unspecified
19953                                                            <NA>
19954                                                            <NA>
19955                                                            <NA>
19956                                                            <NA>
19957                                                            <NA>
19958                                                          collar
19959                                                            <NA>
19960                                                            <NA>
19961                                                            <NA>
19962                                                      inch strip
19963                                                            <NA>
19964                                                            <NA>
19965                                                            <NA>
19966                                                            <NA>
19967                                                            <NA>
19968                                                            <NA>
19969                                                            <NA>
19970                                                            <NA>
19971                                             tablet/pill/capsule
19972                                                            <NA>
19973                                                            <NA>
19974                                                            <NA>
19975                                                     combination
19976                                                            <NA>
19977                                                            <NA>
19978                                                            <NA>
19979                                                            <NA>
19980                                                            <NA>
19981                                                            <NA>
19982                                                            <NA>
19983                                                            <NA>
19984                                                            <NA>
19985                                                            <NA>
19986                                                            <NA>
19987                                                            <NA>
19988                                                            <NA>
19989                                                            <NA>
19990                                                            <NA>
19991                                             tablet/pill/capsule
19992                                                            tube
19993                                                            <NA>
19994                                                            <NA>
19995                                                            <NA>
19996                                                            <NA>
19997                                                            <NA>
19998                                                            <NA>
19999                                                            <NA>
                                                                                              dose_original
1                                                                                                    500.00
2                                                                                                    75-100
3                                                                                                     12.00
4                                                                                                    460.00
5                                                                                                      1.00
6                                                                                                    300.00
7                                                                                                     50.00
8                                                                                                      2.50
9                                                                                                    300.00
10                                                                                                     1.00
11                                                                                                     1.00
12                                                                                                     0.30
13                                                                                                    50.00
14                                                                                                    60.00
15                                                                                                   680.00
16                                                                                                     3.00
17                                                                                                     3.00
18                                                                                                     1.00
19                                                                                                     1.00
20                                                                                                     1.00
21                                                                                                    50.00
22                                                                                              unspecified
23                                                                                                   300.00
24                                                                                                     2.27
25                                                                                                   200.00
26                                                                                                   325.00
27                                                                                                   375.00
28                                                                                                     6.00
29                                                                                                   150.00
30                                                                                                    30.00
31                                                                                                   640.00
32                                                                                                     5.50
33                                                                                                    40.00
34                                                                                                     6.00
35                                                                                                     6.00
36                                                                                                   375.00
37                                                                                                     2.72
38                                                                                                    23.00
39                                                                                                     0.56
40                                                                                              unspecified
41                                                                                              unspecified
42                                                                                              unspecified
43                                                                                                    25.00
44                                                                                                   500.00
45                                                                                                   227.00
46                                                                              based on weight (40-60 lbs)
47                                                                                                   272.00
48                                                                             based on weight (51-100 lbs)
49                                                                             based on weight (51-100 lbs)
50                                                                                                   100.00
51                                                                              based on weight (21-40 lbs)
52                                                                                                   500.00
53                                                                                                   272.00
54                                                                                                   500.00
55                                                                                                   227.00
56                                                                                                     1.00
57                                                                                                100000.00
58                                                                                                    40.00
59                                                                             based on weight (51-100 lbs)
60                                                                                based on weight (55+ lbs)
61                                                                                                   500.00
62                                                                             based on weight (51-100 lbs)
63                                                                             based on weight (51-100 lbs)
64                                                                                                   750.00
65                                                                                                  1000.00
66                                                                                                     1.00
67                                                                                              application
68                                                                                                    20.00
69                                                                                                   500.00
70                                                                                              application
71                                                                                                   200.00
72                                                                                                     3.00
73                                                                                                     1.00
74                                                                                              bottle/vial
75                                                                                                     1.00
76                                                                                                   500.00
77                                                                                                     1.00
78                                                                                                     4.00
79                                                                                                    50.00
80                                                                                                   750.00
81                                                                                                    60.00
82                                                                                                  1000.00
83                                                                                                     1.00
84                                                                                              application
85                                                                                                    20.00
86                                                                                                   100.00
87                                                                                              application
88                                                                                                    50.00
89                                                                                                   100.00
90                                                                                                   100.00
91                                                                                              application
92                                                                                                  1000.00
93                                                                                                  1000.00
94                                                                                                    60.00
95                                                                                                   400.00
96                                                                                                  1500.00
97                                                                                                  1105.00
98                                                                                                     1.00
99                                                                                                   300.00
100                                                                                                  500.00
101                                                                                                  100.00
102                                                                                                  200.00
103                                                                                                  200.00
104                                                                                                 1000.00
105                                                                                                  150.00
106                                                                                                  300.00
107                                                                                                  200.00
108                                                                                                    0.75
109                                                                                                   25.00
110                                                                                                  100.00
111                                                                                             unspecified
112                                                                                             unspecified
113                                                                                             unspecified
114                                                                                             unspecified
115                                                                                                    1.00
116                                                                                                    1.00
117                                                                                                  100.00
118                                                                                                    1.00
119                                                                                                    1.00
120                                                                                                    1.00
121                                                                                                    3.00
122                                                                                                    1.50
123                                                                                                 1000.00
124                                                                                                    0.90
125                                                                                                   60.00
126                                                                                                 1000.00
127                                                                                                  400.00
128                                                                                                    2.00
129                                                                                                    1.00
130                                                                                                    1.00
131                                                                                                    1.00
132                                                                                                    1.00
133                                                                                                  113.50
134                                                                                                  100.00
135                                                                                                    8.00
136                                                                                                    8.00
137                                                                                                  272.00
138                                                                                                  200.00
139                                                                                                  750.00
140                                                                                                    3.50
141                                                                                                  600.00
142                                                                                                   60.00
143                                                                                                  100.00
144                                                                                                  500.00
145                                                                                                   75.00
146                                                                                                   50.00
147                                                                                                  150.00
148                                                                                                  100.00
149                                                                                             unspecified
150                                                                                             unspecified
151                                                                                             unspecified
152                                                                                             unspecified
153                                                                                             unspecified
154                                                                                                  500.00
155                                                                                             unspecified
156                                                                                                    3.00
157                                                                                                  400.00
158                                                                                                 1000.00
159                                                                                                  500.00
160                                                                                                   60.00
161                                                                                                    1.00
162                                                                                                    1.00
163                                                                                                    0.90
164                                                                                                    1.00
165                                                                                                    3.00
166                                                                                                 1500.00
167                                                                                             unspecified
168                                                                                                  100.00
169                                                                                                   30.00
170                                                                                                    1.00
171                                                                                                  272.00
172                                                                                                  300.00
173                                                                                                    1.00
174                                                                                                    3.50
175                                                                                                    1.00
176                                                                                                    1.00
177                                                                                                   25.00
178                                                                                                   20.00
179                                                                                                    6.00
180                                                                                                    0.70
181                                                                                                    0.80
182                                                                                                    0.76
183                                                                                                    0.70
184                                                                                                 1000.00
185                                                                                                    0.70
186                                                                                                 1000.00
187                                                                                                  112.50
188                                                                             based on weight (44-88 lbs)
189                                                                                                    0.86
190                                                                                                   16.00
191                                                                                                    0.80
192                                                                             based on weight (44-88 lbs)
193                                                                                                    0.60
194                                                                                                    0.60
195                                                                                                   45-88
196                                                                                                    0.59
197                                                                                                    0.60
198                                                                                                 1000.00
199                                                                                                  150.00
200                                                                                                   30.00
201                                                                                               300000.00
202                                                                                                  720.00
203                                                                                                  145.00
204                                                                                                    0.30
205                                                                                                   75.00
206                                                                                                  437.50
207                                                                                                 1000.00
208                                                                                                    0.17
209                                                                                                    0.60
210                                                                                                  112.50
211                                                                                                   26.80
212                                                                                                  130.00
213                                                                                                  640.00
214                                                                                                  375.00
215                                                                                                  100.00
216                                                                                                    0.60
217                                                                                                    1.00
218                                                                                                   13.00
219                                                                                                    0.60
220                                                                             based on weight (44-88 lbs)
221                                                                                                  375.00
222                                                                                                  300.00
223                                                                                                    3.20
224                                                                                                  100.00
225                                                                                                  500.00
226                                                                                                   20.00
227                                                                                                  272.00
228                                                                                                  500.00
229                                                                                                    1.00
230                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
231                                                                                                  500.00
232                                                                                                    2.27
233                                                                                               4-6 drops
234                                                                                                    0.09
235                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
236                                                                                             unspecified
237                                                                                             unspecified
238                                                                                            small amount
239                                                                                                   68 mg
240                                                                                                    2.68
241                                                                                                   60.00
242                                                                                           1 tube - 1 ml
243                                                                                                  1 tube
244                                                                                                   45-88
245                                                                                                   60.00
246                                                                                                   70.00
247                                                                                                   60.00
248                                                                                                  1 tube
249                                                                                                   60.00
250                                                                                                    1.00
251                                                                                                   75.00
252                                                                                                   50.00
253                                                                                                  125.00
254                                                                                                   50.00
255                                                                                                  480.00
256                                                                                                   13.50
257                                                                             based on weight (40-60 lbs)
258                                                                                                    1.00
259                                                                                                    1.00
260                                                                                                   37.50
261                                                                                                   23.00
262                                                                                                   20.00
263                                                                                                  540.00
264                                                                                                   20.00
265                                                                                                   20.00
266                                                                                                    1.00
267                                                                                                  500.00
268                                                                                                  500.00
269                                                                                                   60.00
270                                                                                                  425.00
271                                                                                                  100.00
272                                                                                                   16.00
273                                                                                                    1.00
274                                                                                                    1.00
275                                                                            based on weight (51-100 lbs)
276                                                                            based on weight (51-100 lbs)
277                                                                          based on weight (60.1-121 lbs)
278                                                                                                    8.00
279                                                                                            small amount
280                                                                                                   spray
281                                                                                                    2.00
282                                                                                                    1.00
283                                                                                                    1.00
284                                                                                                    1.00
285                                                                                                    8.00
286                                                                                                    1.00
287                                                                                                  272 mg
288                                                                                                  272.00
289                                                                                                  500.00
290                                                                                                   23.00
291                                                                                                  375.00
292                                                                                                    7.00
293                                                                                                  150.00
294                                                                                                   50.00
295                                                                                               810000.00
296                                                                                                  150.00
297                                                                                                  125.00
298                                                                                                  500.00
299                                                                                                  375.00
300                                                                                                    7.00
301                                                                                                  100.00
302                                                                                                  300.00
303                                                                                                    7.00
304                                                                                                  500.00
305                                                                                                   37.50
306                                                                                                  500.00
307                                                                                                  375.00
308                                                                                                    0.80
309                                                                                                    8.80
310                                                                                             unspecified
311                                                                                                  200.00
312                                                                                                    1.00
313                                                                                                  500.00
314                                                                                                 1800.00
315                                                                                                  750.00
316                                                                                                  870.00
317                                                                                             as directed
318                                                                            based on weight (51-100 lbs)
319                                                                                                    7.50
320                                                                                                  500.00
321                                                                                                  300.00
322                                                                                                  500.00
323                                                                                                  272.00
324                                                                                             as directed
325                                                                                                  136.00
326                                                                                                  150.00
327                                                                                                    7.00
328                                                                                         based on weight
329                                                                                         based on weight
330                                                                                                  200.00
331                                                                                                  200.00
332                                                                                         based on weight
333                                                                                         based on weight
334                                                                                                   40.00
335                                                                                                   20.00
336                                                                                                   20.00
337                                                                                                   75.00
338                                                                                                  200.00
339                                                                                                  500.00
340                                                                                                   75.00
341                                                                                                  272.00
342                                                                                                    1.00
343                                                                                                    7.20
344                                                                                                    2.90
345                                                                                                  375.00
346                                                                                                  136.00
347                                                                                                 23, 460
348                                                                                           23 mg, 460 mg
349                                                                                                    1.00
350                                                                                                 23, 460
351                                                                                                 23, 460
352                                                                                                   80.00
353                                                                                                 23, 460
354                                                                                                   80.00
355                                                                                                 23, 460
356                                                                                                  300.00
357                                                                                                  200.00
358                                                                                                  500.00
359                                                                                                  300.00
360                                                                                                  150.00
361                                                                                                   60.00
362                                                                                                  100.00
363                                                                                                  100.00
364                                                                                                  500.00
365                                                                                                 1000.00
366                                                                                             unspecified
367                                                                                                    1.00
368                                                                            based on weight (60-121 lbs)
369                                                                                                  136.00
370                                                                                                    1.00
371                                                                                                    0.01
372                                                                                                  136 mg
373                                                                                                    1.00
374                                                                                                    1.00
375                                                                            based on weight (51-100 lbs)
376                                                                             based on weight (44-88 lbs)
377                                                                                                    0.01
378                                                                                                   30.00
379                                                                                                   10.00
380                                                                                                    0.50
381                                                                                                    3.00
382                                                                                                    1.00
383                                                                            based on weight (51-100 lbs)
384                                                                            based on weight (51-100 lbs)
385                                                                                   1 tablet/pill/capsule
386                                                                            based on weight (51-100 lbs)
387                                                                                                  500.00
388                                                                                                   14.00
389                                                                                                  483.00
390                                                                                                  136.00
391                                                                                                    8.80
392                                                                                                  136.00
393                                                                                                    8.80
394                                                                                                  125.00
395                                                                                                   14.34
396                                                                                                    2.05
397                                                                                                    1.00
398                                                                                                  500.00
399                                                                                                    4.00
400                                                                                                    2.00
401                                                                                                    1.00
402                                                                                                  50-100
403                                                                                             unspecified
404                                                                                             unspecified
405                                                                                                  100.00
406                                                                                                  272.00
407                                                                                                   23.00
408                                                                                                   50.00
409                                                                                                  250.00
410                                                                                                    0.30
411                                                                                                   75.00
412                                                                                                   10.00
413                                                                                                  100.00
414                                                                                           23 mg, 460 mg
415                                                                                                   24.00
416                                                                                                    1.00
417                                                                                                   23.00
418                                                                                                  272.00
419                                                                                                   16.00
420                                                                                                  100.00
421                                                                                                    1.00
422                                                                                                    3.00
423                                                                                                   30.00
424                                                                                                  100.00
425                                                                                                  100.00
426                                                                                                  200.00
427                                                                                                    2.00
428                                                                                                  100.00
429                                                                                                  272.00
430                                                                                                  136.00
431                                                                                                   16.00
432                                                                                                  100.00
433                                                                                                  272.00
434                                                                                                   68.00
435                                                                                                   16.00
436                                                                                                 1400.00
437                                                                                                  400.00
438                                                                                                  110.00
439                                                                                                  272.00
440                                                                                                  136.00
441                                                                                                   16.00
442                                                                                                  110.00
443                                                                                                   16.00
444                                                                                                   16.00
445                                                                                                  300.00
446                                                                                                   16.00
447                                                                                             unspecified
448                                                                                                  300.00
449                                                                                             unspecified
450                                                                                                  100.00
451                                                                                                   20.00
452                                                                                                   16.00
453                                                                                             unspecified
454                                                                                                  100.00
455                                                                                                  300.00
456                                                                                                   24.00
457                                                                                                    4.00
458                                                                                                   30.00
459                                                                                                   50.00
460                                                                                                   20.00
461                                                                                                    1.00
462                                                                                                    1.00
463                                                                                                  272.00
464                                                                                                  272.00
465                                                                                                   68.00
466                                                                                                  272.00
467                                                                                                   68.00
468                                                                                                   80.00
469                                                                                                  150.00
470                                                                                                   50.00
471                                                                                                    2.50
472                                                                                                   10.70
473                                                                                                    1.00
474                                                                                                  272.00
475                                                                                                    0.70
476                                                                                                   30.00
477                                                                                                  120.00
478                                                                                                  272.00
479                                                                                                   68.00
480                                                                                                  1 tube
481                                                                                                  150.00
482                                                                                                   60.00
483                                                                                                  375.00
484                                                                                                    2.50
485                                                                                                   60.00
486                                                                                                   50.00
487                                                                                                  272.00
488                                                                                                   68.00
489                                                                                                   60.00
490                                                                                                  375.00
491                                                                                                    1.00
492                                                                                                  272.00
493                                                                                                  375.00
494                                                                                                  227.00
495                                                                                                  136.00
496                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
497                                                                                                  136 mg
498                                                                            based on weight (51-100 lbs)
499                                                                                                 1000.00
500                                                                                                 1000.00
501                                                                                                  100.00
502                                                                                                   10.00
503                                                                                                   37.50
504                                                                                                    1.00
505                                                                                                    1.00
506                                                                                                  500.00
507                                                                                                   50.00
508                                                                                                   75.00
509                                                                                                    1.00
510                                                                                                   15.00
511                                                                                                  500.00
512                                                                                                   50.00
513                                                                                                  272.00
514                                                                                                   68.00
515                                                                                                   15.00
516                                                                                                    1.00
517                                                                                                   50.00
518                                                                                                  500.00
519                                                                                                inhalant
520                                                                                                  300.00
521                                                                                                   12.00
522                                                                                                   40.00
523                                                                                                  272.00
524                                                                                                  136.00
525                                                                                                  375.00
526                                                                                                  272.00
527                                                                                                  136.00
528                                                                                                   16.00
529                                                                                                   16.00
530                                                                                                    1.00
531                                                                                                  500.00
532                                                                                                  272.00
533                                                                                                  136.00
534                                                                                                  272.00
535                                                                                                  136.00
536                                                                                                  500.00
537                                                                                                   drops
538                                                                                                    1.00
539                                                                                                    1.00
540                                                                                                    1.00
541                                                                                                    1.00
542                                                                                                    2.00
543                                                                                                   75.00
544                                                                                                   75.00
545                                                                                                    1.00
546                                                                                                  272.00
547                                                                                                  500.00
548                                                                                                    2.00
549                                                                                                  125.00
550                                                                                                  125.00
551                                                                                                    1.00
552                                                                                                   50.00
553                                                                                                  200.00
554                                                                                                    1.00
555                                                                                                    1.00
556                                                                                                  160.00
557                                                                                                    1.00
558                                                                                                    1.20
559                                                                                                    3.50
560                                                                                                   20.00
561                                                                                                   20.00
562                                                                                                   10.00
563                                                                                                  272.00
564                                                                                                  500.00
565                                                                                                  500.00
566                                                                                                  100.00
567                                                                                                  500.00
568                                                                                                    1.00
569                                                                                                    5.00
570                                                                                                    5.00
571                                                                                                    0.20
572                                                                                                    0.30
573                                                                                                    0.40
574                                                                                                    1.00
575                                                                                                    1.40
576                                                                                                    2.00
577                                                                                                  160.00
578                                                                                                   20.00
579                                                                                                   20.00
580                                                                                                   15.00
581                                                                                                   10.00
582                                                                                                    6.00
583                                                                                                  500.00
584                                                                                                  250.00
585                                                                                                  200.00
586                                                                                                   50.00
587                                                                                                  200.00
588                                                                                                   50.00
589                                                                                                   68.00
590                                                                                                  500.00
591                                                                                                   50.00
592                                                                                                   20.00
593                                                                                                  200.00
594                                                                                                    5.00
595                                                                                                  200.00
596                                                                                                   50.00
597                                                                               based on weight (60+ lbs)
598                                                                               based on weight (60+ lbs)
599                                                                                                    1.00
600                                                                                                    1.00
601                                                                                                   50.00
602                                                                                                  200.00
603                                                                                   1 tablet/pill/capsule
604                                                                                   1 tablet/pill/capsule
605                                                                                                    1.00
606                                                                                                    1.00
607                                                                                                   50.00
608                                                                                                    1.00
609                                                                                                    1.00
610                                                                                            small amount
611                                                                                                   50.00
612                                                                                                  200.00
613                                                                                                  200.00
614                                                                                                   16.00
615                                                                                                   50.00
616                                                                                                  300.00
617                                                                                                   75.00
618                                                                                                  200.00
619                                                                                             unspecified
620                                                                                                  100.00
621                                                                                                    3.00
622                                                                                                   75.00
623                                                                                                   60.00
624                                                                                                   60.00
625                                                                                                   15.00
626                                                                                                  150.00
627                                                                                                   60.00
628                                                                                                  500.00
629                                                                                                   80.00
630                                                                                                    6.00
631                                                                                                    4.00
632                                                                                                    3.00
633                                                                                                  500.00
634                                                                                                    1.00
635                                                                                                    3 mg
636                                                                                                  272.00
637                                                                                         based on weight
638                                                                                                    3.00
639                                                                                                  600.00
640                                                                                                  500.00
641                                                                                                  272.00
642                                                                                            small amount
643                                                                                                    5.00
644                                                                                                  272.00
645                                                                                                    3 mg
646                                                                                                    5.00
647                                                                                                   10.00
648                                                                                                    6.00
649                                                                                                   16.00
650                                                                                                    1.00
651                                                                                                  272.00
652                                                                                                   10.00
653                                                                                                    6.00
654                                                                                                   16.00
655                                                                                                  227.00
656                                                                                                   10.00
657                                                                                                  200.00
658                                                                                                    3.00
659                                                                                                  272.00
660                                                                                                  227.00
661                                                                                                    1.10
662                                                                                                  500.00
663                                                                                                   20.00
664                                                                                                    2.00
665                                                                                                   34.00
666                                                                                                   30.00
667                                                                                                    2.00
668                                                                                                    1.00
669                                                                                                  250.00
670                                                                                                  300.00
671                                                                                                  272.00
672                                                                                                    2.00
673                                                                                                  300.00
674                                                                                                  272.00
675                                                                                                  136.00
676                                                                                                    2.00
677                                                                                                    5.00
678                                                                                                  500.00
679                                                                                                  500.00
680                                                                                                   90.00
681                                                                                                  300.00
682                                                                                                  850.00
683                                                                                                  100.00
684                                                                                                  500.00
685                                                                                                   30.00
686                                                                                             unspecified
687                                                                                                  100.00
688                                                                                             unspecified
689                                                                                                  340.00
690                                                                                                  100.00
691                                                                                                   10.00
692                                                                                                  100.00
693                                                                                                   30.00
694                                                                                                    2.00
695                                                                                                    0.70
696                                                                                                   10.00
697                                                                                                   25.00
698                                                                                                   50.00
699                                                                                                    2.00
700                                                                                                  272.00
701                                                                                                   75.00
702                                                                                                   15.00
703                                                                            based on weight (51-100 lbs)
704                                                                           based on weight (44.1-88 lbs)
705                                                                                                   23.00
706                                                                                                   80.00
707                                                                                                    1.00
708                                                                                                    1.00
709                                                                                             unspecified
710                                                                                             unspecified
711                                                                                                   55.00
712                                                                                             unspecified
713                                                                                                  150.00
714                                                                                                    1.50
715                                                                                                  500.00
716                                                                                                  425.00
717                                                                                                 1000.00
718                                                                                                   55.00
719                                                                                                    0.60
720                                                                                                  150.00
721                                                                                                   30.00
722                                                                                                    8.00
723                                                                                                   20.00
724                                                                                                    8.00
725                                                                27 mg milbemycin oxime, 1620 mg spinosad
726                                                                                                    8.00
727                                                                                                    1.00
728                                                                            based on weight (50-100 lbs)
729                                                                               based on weight (60+ lbs)
730                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
731                                                                                                 2 mg/kg
732                                                                                                   16.00
733                                                                                                  1 drop
734                                                                                         0.25 inch strip
735                                                                                                   10 mg
736                                                                                                  250 mg
737                                                                                                  1 drop
738                                                                                             unspecified
739                                                                                             unspecified
740                                                                                                    5.00
741                                                                                                    1.00
742                                                                                                  250.00
743                                                                                                  204.00
744                                                                                                    1.00
745                                                                                                    1.00
746                                                                                                  250.00
747                                                                                                    1.00
748                                                                                                    0.80
749                                                                                                    5.00
750                                                                                                  136 mg
751                                                                                                   50.00
752                                                                                                    8.00
753                                                                                                  500.00
754                                                                            based on weight (51-100 lbs)
755                                                                               based on weight (45+ lbs)
756                                                                                                   44-88
757                                                                            based on weight (51-100 lbs)
758                                                                                                  300.00
759                                                                                                    1.00
760                                                                                                  1 drop
761                                                                                                    1.00
762                                                                                                  400.00
763                                                                                                    1.00
764                                                                                                  272.00
765                                                                                                  100.00
766                                                                                                  110.00
767                                                                                                    2.00
768                                                                                                    8.00
769                                                                                                   90.00
770                                                                                                   23.00
771                                                                                                   50 mg
772                                                                                                   23.00
773                                                                                                   23.00
774                                                                                                   23.00
775                                                                                                   23.00
776                                                                                                  500.00
777                                                                                                   50.00
778                                                                                             unspecified
779                                                                                                  360.00
780                                                                                                   50.00
781                                                                                                   10.00
782                                                                                                  360.00
783                                                                                                   50.00
784                                                                                                  460.00
785                                                                            based on weight (60-120 lbs)
786                                                                                                   27.00
787                                                                                                 1620.00
788                                                                                                    2.68
789                                                                                                45387.00
790                                                                            based on weight (60-120 lbs)
791                                                                                                 1000.00
792                                                                            based on weight (51-100 lbs)
793                                                                                                  900.00
794                                                                                                  900.00
795                                                                                                  200.00
796                                                                                                   75.00
797                                                                                             unspecified
798                                                                                             unspecified
799                                                                                             unspecified
800                                                                                             unspecified
801                                                                                             unspecified
802                                                                                             unspecified
803                                                                             based on weight (45-88 lbs)
804                                                                           based on weight (44.1-88 lbs)
805                                                                                                   75.00
806                                                                                                  227.00
807                                                                                                    2.68
808                                                                                                  272.00
809                                                                                                 1000.00
810                                                                             based on weight (40-85 lbs)
811                                                                                                    7.00
812                                                                                                   50.00
813                                                                                                   50.00
814                                                                                                 1000.00
815                                                                                                  200.00
816                                                                                             unspecified
817                                                                                                   40.00
818                                                                                                  136.00
819                                                                             based on weight (26-50 lbs)
820                                                                             based on weight (26-50 lbs)
821                                                                                                  136.00
822                                                                                                    9.80
823                                                                             based on weight (45-88 lbs)
824                                                                            based on weight (51-100 lbs)
825                                                                                                  136.00
826                                                                                                   64.00
827                                                                                                    1.00
828                                                                                                    1.00
829                                                                                                    1.00
830                                                                                                    1.00
831                                                                                                   10.00
832                                                                                             unspecified
833                                                                                                   50.00
834                                                                                                  100.00
835                                                                                                  200.00
836                                                                                                  300.00
837                                                                                                   30.00
838                                                                                                   24.00
839                                                                                                    2.50
840                                                                                                   15.00
841                                                                                                   25.00
842                                                                                                   60.00
843                                                                                                    5.00
844                                                                                                    3.00
845                                                                                                  250.00
846                                                                                                    1.00
847                                                                                                    3.00
848                                                                                                    1.00
849                                                                                                    1.00
850                                                                                                 2.68 ml
851                                                                  based on weight (50-100 lbs) - 272 mcg
852                                                                                                  272.00
853                                                                                                  136.00
854                                                                                                  272.00
855                                                                                                  136.00
856                                                                                                  272.00
857                                                                                                  136.00
858                                                                                                  100.00
859                                                                                                   75.00
860                                                                                                   30.00
861                                                                                                   10.00
862                                                                                         based on weight
863                                                                                                  200 mg
864                                                                                                    4.00
865                                                                                                  227.00
866                                                                                                  200.00
867                                                                                                  113.50
868                                                                                                   37.50
869                                                                                                  300.00
870                                                                                                   30.00
871                                                                                               13.5, 810
872                                                                                                  810.00
873                                                                                                   13.50
874                                                                                                27, 1620
875                                                                                                   27.00
876                                                                                                  750.00
877                                                                                             application
878                                                                                                27, 1620
879                                                                                                27, 1620
880                                                                                                27, 1620
881                                                                                                  61-120
882                                                                                                   50.00
883                                                                                                  100.00
884                                                                                               13.5, 810
885                                                                                                  810.00
886                                                                                                   13.50
887                                                                                                27, 1620
888                                                                                                  500.00
889                                                                                                   27.00
890                                                                                                   37.50
891                                                                                                27, 1620
892                                                                                                  136.00
893                                                                                                27, 1620
894                                                                                                    5.50
895                                                                                                   20.00
896                                                                                                   10.00
897                                                                                                   10.00
898                                                                                                   50.00
899                                                                                                27, 1620
900                                                                                                  61-120
901                                                                                             unspecified
902                                                                                                  272.00
903                                                                                                    4.02
904                                                                                                    3.00
905                                                                                             unspecified
906                                                                                                   16.00
907                                                                                                  272.00
908                                                                                                   16.00
909                                                                                                  272.00
910                                                                                                  272.00
911                                                                                                  227.00
912                                                                                                  272.00
913                                                                               based on weight (55+ lbs)
914                                                                                                  272.00
915                                                                                                   50.00
916                                                                                                  200.00
917                                                                                                  227 mg
918                                                                                                  250 mg
919                                                                                                   75.00
920                                                                                                  437.50
921                                                                            based on weight (51-100 lbs)
922                                                                                                    1.00
923                                                                                                    1.00
924                                                                                                    1.90
925                                                                                                    1.30
926                                                                                                   13.00
927                                                                                                    0.34
928                                                                                                  100.00
929                                                                                                  1 drop
930                                                                                                  1 drop
931                                                                                                    1.00
932                                                                                                    1.00
933                                                                                                  136.00
934                                                                                                  272.00
935                                                                                                   50.00
936                                                                                                    1.00
937                                                                                                    1.00
938                                                                                                   50.00
939                                                                                                 1000.00
940                                                                                                   25.00
941                                                                                                   20.00
942                                                                                                  375.00
943                                                                                                  150.00
944                                                                                                  200.00
945                                                                                                  100.00
946                                                                                                  150.00
947                                                                                                  200.00
948                                                                                                  100.00
949                                                                                                    1.00
950                                                                                   1 tablet/pill/capsule
951                                                                                                    1.00
952                                                                                                    1.00
953                                                                                                    1.00
954                                                                                                    1.00
955                                                                                                  collar
956                                                                                                    1.00
957                                                                                                    1.00
958                                                             272 mcg ivermectin, 227 mg pyrantel pamoate
959                                                                                                    1.00
960                                                                                                    1.00
961                                                                                                    1.00
962                                                                                                    1.00
963                                                                                                    0.70
964                                                                                                  100.00
965                                                                                                  500.00
966                                                                                                    5.00
967                                                                                                   50.00
968                                                                                                    1.00
969                                                                                             unspecified
970                                                                                                  1 pump
971                                                                                                  500.00
972                                                                                                  136.00
973                                                                                                    1.00
974                                                                                                  100.00
975                                                                                                   16.00
976                                                                                                  750.00
977                                                                                             application
978                                                                                                   16.00
979                                                                                                  50-100
980                                                                                                  60-121
981                                                                                                   16.00
982                                                                                             unspecified
983                                                                                             unspecified
984                                                                                                  250.00
985                                                                                                  272.00
986                                                                                                  136.00
987                                                                                                   15.00
988                                                                                                   16.00
989                                                                                         based on weight
990                                                                                                  300.00
991                                                                                                  50-100
992                                                                                                  60-121
993                                                                                                45293.00
994                                                                                                   16.00
995                                                                                                  60-121
996                                                                                                  50-100
997                                                                                                   60.00
998                                                                                                  250.00
999                                                                                                    1.00
1000                                                                                                  16.00
1001                                                                                            unspecified
1002                                                                                                  15.00
1003                                                                                                  16.00
1004                                                                                                   3.00
1005                                                                                                  20.00
1006                                                                                                 150.00
1007                                                                                                 125.00
1008                                                                                                 150.00
1009                                                                                                 250.00
1010                                                                                                 100.00
1011                                                                                                 150.00
1012                                                                                                 476.00
1013                                                                                                  15.00
1014                                                                                                  50.00
1015                                                                                                 750.00
1016                                                                                                 100.00
1017                                                                           based on weight (50-100 lbs)
1018                                                                           based on weight (60-121 lbs)
1019                                                                                                 1 pump
1020                                                                                           small amount
1021                                                                                               wipe/pad
1022                                                                                                 250.00
1023                                                                                                   1.00
1024                                                                                                   1.00
1025                                                                                                   1.00
1026                                                                                                 225.00
1027                                                                                            unspecified
1028                                                                                                 1 pump
1029                                                                                             1 wipe/pad
1030                                                                                           small amount
1031                                                                                           small amount
1032                                                                                                 500.00
1033                                                                                        syringe/pipette
1034                                                                                                  20.00
1035                                                                                                  20.00
1036                                                                                           small amount
1037                                                                                                 1 pump
1038                                                                                                 300.00
1039                                                                                          1 bottle/vial
1040                                                                                                  16.00
1041                                                                                                  16.00
1042                                                                                            unspecified
1043                                                                                                   1.00
1044                                                                                                   3.00
1045                                                                                                  60.00
1046                                                                                                 272.00
1047                                                                                                 136.00
1048                                                                                                   7.50
1049                                                                                                  16.00
1050                                                                                        based on weight
1051                                                                                                 50-100
1052                                                                                                 60-121
1053                                                                                                   6.80
1054                                                                                                   1.00
1055                                                                                                 300.00
1056                                                                                                  60.00
1057                                                                                                 300.00
1058                                                                                                 300.00
1059                                                                                                  16.00
1060                                                                                                 60-121
1061                                                                                                 50-100
1062                                                                                                 250.00
1063                                                                                                 250.00
1064                                                                                                   1.00
1065                                                                                                   0.10
1066                                                                                                   1.00
1067                                                                                                  10.00
1068                                                                                                  70.00
1069                                                                                                   1.00
1070                                                                                                   1.00
1071                                                                                                 150.00
1072                                                                                            unspecified
1073                                                                                            unspecified
1074                                                                                            unspecified
1075                                                                                                 150.00
1076                                                                                                   1.00
1077                                                                                                   1.00
1078                                                                                                   1.00
1079                                                                                                   1.00
1080                                                                                                   3.00
1081                                                                                                 150.00
1082                                                                                                  60.00
1083                                                                                                  30.00
1084                                                                                                  10.00
1085                                                                                                  60.00
1086                                                                                                   3.00
1087                                                                           based on weight (60-120 lbs)
1088                                                                                                  25 mg
1089                                                                                                  75.00
1090                                                                                                1620.00
1091                                                                                           small amount
1092                                                                                                  20 mg
1093                                                                                                 500 mg
1094                                                                                                4000.00
1095                                                                                                  16.00
1096                                                                                                  15.00
1097                                                               27 mg milbemycin oxime, 1620 mg spinosad
1098                                                                                                   4 ml
1099                                                                           based on weight (51-100 lbs)
1100                                                                           based on weight (51-100 lbs)
1101                                                                              based on weight (55+ lbs)
1102                                                                                                1000.00
1103                                                                                                8000.00
1104                                                                                                  16.00
1105                                                                                                  75.00
1106                                                                                                1000.00
1107                                                                                                 136.00
1108                                                                                             1 wipe/pad
1109                                                                                                 136.00
1110                                                                                                1000.00
1111                                                               460 mg lufenuron, 23 mg milbemycin oxime
1112                                                                                               wipe/pad
1113                                                                                                 136.00
1114                                                                                                1000.00
1115                                                                                                  16.00
1116                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
1117                                                                                                1000.00
1118                                                                                                1000.00
1119                                                                                                1000.00
1120                                                                                                 272.00
1121                                                                                                  20.00
1122                                                                                                 600.00
1123                                                                                                1000.00
1124                                                                                                 300.00
1125                                                                                                  20.00
1126                                                                                                  20.00
1127                                                                                                 425.00
1128                                                                                                 272.00
1129                                                                           based on weight (21-100 lbs)
1130                                                                                                 200.00
1131                                                                                                5 drops
1132                                                                                                 375.00
1133                                                                                                 500.00
1134                                                                                                  15.00
1135                                                                                                   1.00
1136                                                                                                 500.00
1137                                                                                                  50.00
1138                                                                                                  50.00
1139                                                                                                   1.00
1140                                                                                                   3.00
1141                                                                                                 500.00
1142                                                                                                 227.00
1143                                                                                                   2.00
1144                                                                                                 136.00
1145                                                                                                 272.00
1146                                                                                                   0.14
1147                                                                                                 227.00
1148                                                                                                   2.00
1149                                                                                                 300.00
1150                                                                                           small amount
1151                                                                                                   8.00
1152                                                                                            unspecified
1153                                                                           based on weight (51-100 lbs)
1154                                                                           based on weight (51-100 lbs)
1155                                                                           based on weight (51-100 lbs)
1156                                                                                                  23.00
1157                                                                                                  23.00
1158                                                                                                 375.00
1159                                                                         based on weight (50.1-100 lbs)
1160                                                                           based on weight (51-100 lbs)
1161                                                                              based on weight (60+ lbs)
1162                                                                                                 375.00
1163                                                                                                 150.00
1164                                                                                                  23.00
1165                                                                                                   9.70
1166                                                                                                   8.80
1167                                                                                                1000.00
1168                                                                                        based on weight
1169                                                                            based on weight (26-50 lbs)
1170                                                                            based on weight (44-88 lbs)
1171                                                                                                 272.00
1172                                                                                                 227.00
1173                                                                            based on weight (45-88 lbs)
1174                                                                                               272, 228
1175                                                                                             8.8%, 9.8%
1176                                                                                               272, 228
1177                                                                                               8.8, 9.8
1178                                                                                                 272.00
1179                                                                                            unspecified
1180                                                                                                  50.00
1181                                                                                                 200.00
1182                                                                                                  50.00
1183                                                                                                  23.80
1184                                                                                                  50.00
1185                                                                                            unspecified
1186                                                                                            unspecified
1187                                                                                            unspecified
1188                                                                                                 300.00
1189                                                                                            unspecified
1190                                                                                            unspecified
1191                                                                                                 250.00
1192                                                                                                 227.00
1193                                                                           based on weight (51-100 lbs)
1194                                                                           based on weight (51-100 lbs)
1195                                                                         based on weight (50.1-100 lbs)
1196                                                                                                 100.00
1197                                                                                                  23.00
1198                                                                                                 272.00
1199                                                                                                   2.80
1200                                                                                                   2.30
1201                                                                                                   0.50
1202                                                                                                  75.00
1203                                                                                                  75.00
1204                                                                                                 125.00
1205                                                                                                 272.00
1206                                                                                                 272.00
1207                                                                                                  16.00
1208                                                                              based on weight (55+ lbs)
1209                                                                                                 50-100
1210                                                                                                 200.00
1211                                                                                                  16.00
1212                                                                                                 100.00
1213                                                                                                 272.00
1214                                                                                                 136.00
1215                                                                                                 272.00
1216                                                                                                 272.00
1217                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1218                                                                                                 300.00
1219                                                                                                  75.00
1220                                                                                                   1.00
1221                                                                                                 272.00
1222                                                                                                   2.50
1223                                                                                                  75.00
1224                                                                                                 150.00
1225                                                                                                 272.00
1226                                                                              based on weight (55+ lbs)
1227                                                                                                 272.00
1228                                                                                                 272.00
1229                                                                                                 272.00
1230                                                                                                 600.00
1231                                                                                                  75.00
1232                                                                                                 136.00
1233                                                                                            unspecified
1234                                                                                                  75.00
1235                                                                                                  37.50
1236                                                                                                  20.00
1237                                                                                                 150.00
1238                                                                                                   2.00
1239                                                                                                 300.00
1240                                                                                                   2.00
1241                                                                                                   1.00
1242                                                                                                   1.00
1243                                                                                                  20.00
1244                                                                                                  23.00
1245                                                                                                   5.00
1246                                                                                                  20.00
1247                                                                           based on weight (51-100 lbs)
1248                                                                                                 60-120
1249                                                                                                  16.00
1250                                                                                                 460.00
1251                                                                                                 136.00
1252                                                                                                  16.00
1253                                                                                                  10.00
1254                                                                                                 460.00
1255                                                                                                 136.00
1256                                                                                                  16.00
1257                                                                                                  23.00
1258                                                                                                 136.00
1259                                                                                                   0.57
1260                                                                                                 375.00
1261                                                                                                 100.00
1262                                                                                                  70.00
1263                                                                                                   1.00
1264                                                                                                  30.00
1265                                                                                                 300.00
1266                                                                                                  10.00
1267                                                                                                 500.00
1268                                                                                                  23.00
1269                                                                                                  68.00
1270                                                                                                  68.00
1271                                                                                                 272.00
1272                                                                                                 500.00
1273                                                                                                   5.00
1274                                                                                                  23 mg
1275                                                                                                  60.00
1276                                                                                                   2.50
1277                                                                                                  68.00
1278                                                                                                  23.00
1279                                                                                                  60.00
1280                                                                                                 200.00
1281                                                                                                 375.00
1282                                                                                                 500.00
1283                                                                                                 227.00
1284                                                                                                  68.00
1285                                                                                            unspecified
1286                                                                                                   8.00
1287                                                                                                 200.00
1288                                                                                                  60.00
1289                                                                                                   1.00
1290                                                                                                 125.00
1291                                                                                                  60.00
1292                                                                                                 500.00
1293                                                                                                  23.00
1294                                                                                                 125.00
1295                                                                                                   2.68
1296                                                                                                  23.00
1297                                                                                                   1.00
1298                                                                                                   2.68
1299                                                                                                  23.00
1300                                                                                                 375.00
1301                                                                                                  23.00
1302                                                                                                   9.80
1303                                                                                                   1.00
1304                                                                                                  50.00
1305                                                                                                  15.00
1306                                                                                                 500.00
1307                                                                                                 600 mg
1308                                                                                                   4.70
1309                                                                                                   2.68
1310                                                                                                  23.00
1311                                                                                                  23.00
1312                                                                                                  80.00
1313                                                                                                  50.00
1314                                                                                                  20.00
1315                                                                                                   1.00
1316                                                                                                 600.00
1317                                                                                                  50.00
1318                                                                                                  20.00
1319                                                                                                 100.00
1320                                                                                                  60.00
1321                                                                                                  20.00
1322                                                                                                 800.00
1323                                                                                                   3.00
1324                                                                                                  50.00
1325                                                                                                  20.00
1326                                                                                                   1.00
1327                                                                                                  20.00
1328                                                                                                 50-100
1329                                                                                                  44-88
1330                                                                                                 200.00
1331                                                                                                  50.00
1332                                                                                                 130.00
1333                                                                                                 100.00
1334                                                                                                   0.50
1335                                                                                                  20.00
1336                                                                                            unspecified
1337                                                                                                  20.00
1338                                                                                                   1.00
1339                                                                                                   2.00
1340                                                                                                   1.00
1341                                                                                                 325.00
1342                                                                                                   1.00
1343                                                                                                  60.00
1344                                                                         based on weight (50.1-100 lbs)
1345                                                                                                6 drops
1346                                                                                        moderate amount
1347                                                                                                1000.00
1348                                                                                               2 sprays
1349                                                                                                1000.00
1350                                                                                                  20.00
1351                                                                                                   0.14
1352                                                                                                   2.00
1353                                                                                                   8.00
1354                                                                                                1000.00
1355                                                                           based on weight (89-132 lbs)
1356                                                                                                  24.00
1357                                                                                                   4.02
1358                                                                                                  16.00
1359                                                                                                   9.80
1360                                                                                                  23.00
1361                                                                                                  24.00
1362                                                                                                  90.00
1363                                                                                                 600.00
1364                                                                                                   4.70
1365                                                                                                   4.02
1366                                                                                                  23.00
1367                                                                                                  23.00
1368                                                                                                 120.00
1369                                                                                                 500.00
1370                                                                                                 200.00
1371                                                                           based on weight (51-100 lbs)
1372                                                                                                 500.00
1373                                                                                                   1.00
1374                                                                                                 500.00
1375                                                                                                 200.00
1376                                                                                                 500.00
1377                                                                                  1 tablet/pill/capsule
1378                                                                                  1 tablet/pill/capsule
1379                                                                                  1 tablet/pill/capsule
1380                                                                                  1 tablet/pill/capsule
1381                                                                                                 500.00
1382                                                                                                  75.00
1383                                                                                                 500.00
1384                                                                                                   0.25
1385                                                                                                   0.50
1386                                                                                                 300.00
1387                                                                                                  75.00
1388                                                                                                 200.00
1389                                                                                                  10.00
1390                                                                                                  16.00
1391                                                                                                  60.00
1392                                                                                                  16.00
1393                                                                                                   1.00
1394                                                                                                  16.00
1395                                                                                                  10.00
1396                                                                                                 200.00
1397                                                                                                 500.00
1398                                                                                              1-2 drops
1399                                                                                                  16.00
1400                                                                                                  90.00
1401                                                                                                  20.00
1402                                                                                                   1.00
1403                                                                                                 500.00
1404                                                                                            unspecified
1405                                                                                            unspecified
1406                                                                                                 500.00
1407                                                                                                 100.00
1408                                                                                                 200.00
1409                                                                                                 200.00
1410                                                                                                 200.00
1411                                                                                                1000.00
1412                                                                                                  10.00
1413                                                                                                 200.00
1414                                                                                                  24.00
1415                                                                                            unspecified
1416                                                                                                 100 mg
1417                                                                                                 1 tube
1418                                                                                                 500 mg
1419                                                                                  1 tablet/pill/capsule
1420                                                                                676 mg dha, 1030 mg epa
1421                                                                                                  60.00
1422                                                                           based on weight (51-100 lbs)
1423                                                                                                 750.00
1424                                                                                                  50.00
1425                                                                                                  15.00
1426                                                                                                  50.00
1427                                                                                                 500.00
1428                                                                                                 500.00
1429                                                                                                  50.00
1430                                                                                                  60.00
1431                                                                                                   2.00
1432                                                                                                  16.00
1433                                                                                                  16.00
1434                                                                            based on weight (45-88 lbs)
1435                                                                         based on weight (50.1-100 lbs)
1436                                                                                                  16.00
1437                                                                                                  50.00
1438                                                                           based on weight (51-100 lbs)
1439                                                                                                  60.00
1440                                                                                                   1.00
1441                                                                           based on weight (51-100 lbs)
1442                                                                         based on weight (50.1-100 lbs)
1443                                                                            based on weight (44-88 lbs)
1444                                                                                                  70.00
1445                                                                                                   1.00
1446                                                                                                   1.00
1447                                                                                                   1.00
1448                                                                                                   1.00
1449                                                                                                  60.00
1450                                                                            based on weight (45-88 lbs)
1451                                                                           based on weight (51-100 lbs)
1452                                                                                                  70.00
1453                                                                                                   1.00
1454                                                                                                  70.00
1455                                                                                                 300.00
1456                                                                                                  50.00
1457                                                                                                 150.00
1458                                                                                                 100.00
1459                                                                             based on weight (2-55 lbs)
1460                                                                                                  50.00
1461                                                                                                  10.00
1462                                                                            based on weight (56-95 lbs)
1463                                                                                                 900.00
1464                                                                           based on weight (51-100 lbs)
1465                                                                                                   0.09
1466                                                                                                   1.25
1467                                                                                                   2.00
1468                                                                                                   2.00
1469                                                                                                  23.00
1470                                                                                                 100.00
1471                                                                                                 100.00
1472                                                                                                   1.00
1473                                                                                            unspecified
1474                                                                                                   1.90
1475                                                                                            unspecified
1476                                                                                                 500.00
1477                                                                                                   1.00
1478                                                                                                 500.00
1479                                                                                                  10.00
1480                                                                                                   5.00
1481                                                                                                   5.00
1482                                                                                                 500.00
1483                                                                                                   1.50
1484                                                                                                  10.00
1485                                                                                                 500.00
1486                                                                                                   5.00
1487                                                                                                   0.40
1488                                                                                                   1.00
1489                                                                                                   1.00
1490                                                                                                   1.00
1491                                                                                  1 tablet/pill/capsule
1492                                                                                                 272.00
1493                                                                                                 200.00
1494                                                                                                  25.00
1495                                                                                                 200.00
1496                                                                                                   1.00
1497                                                                                                 200.00
1498                                                                                                  50.00
1499                                                                                         27 mg, 1620 mg
1500                                                                27mg milbemycin oxime, 1620 mg spinosad
1501                                                                                            unspecified
1502                                                                                                272 mcg
1503                                                                                                  50-95
1504                                                                                               0.25 tsp
1505                                                                                                 400.00
1506                                                                                                   7.00
1507                                                                                                   3.00
1508                                                                                               10000.00
1509                                                                                                 400.00
1510                                                                                                 272.00
1511                                                                          based on weight (24.1-60 lbs)
1512                                                                              based on weight (55+ lbs)
1513                                                                                                 272.00
1514                                                                          based on weight (24.1-60 lbs)
1515                                                                                                 272.00
1516                                                                                                 136.00
1517                                                                                                 227.00
1518                                                                                                 136.00
1519                                                                                                 272.00
1520                                                                                                  68.00
1521                                                                                                  60.00
1522                                                                                                 375.00
1523                                                                                                1000.00
1524                                                                                                 600.00
1525                                                                                                   0.50
1526                                                                                                  50.00
1527                                                                                                 272.00
1528                                                                              based on weight (55+ lbs)
1529                                                                           based on weight (51-100 lbs)
1530                                                                                                 272.00
1531                                                                                                 272.00
1532                                                                              based on weight (55+ lbs)
1533                                                                                                 272.00
1534                                                                              based on weight (55+ lbs)
1535                                                                           based on weight (51-100 lbs)
1536                                                                              based on weight (55+ lbs)
1537                                                            23 mg milbemycin oxime, 228 mg praziquantel
1538                                                            23 mg milbemycin oxime, 228 mg praziquantel
1539                                                                              based on weight (55+ lbs)
1540                                                                                                   1.00
1541                                                                                            unspecified
1542                                                                                            unspecified
1543                                                                                                   1.00
1544                                                                                                 500.00
1545                                                                                                 500.00
1546                                                                                                 200.00
1547                                                                                                 100.00
1548                                                                                                  75.00
1549                                                                                                   3.00
1550                                                                                                   6.00
1551                                                                                                   1.00
1552                                                                                                 100.00
1553                                                                                                   8.00
1554                                                                                                  12.00
1555                                                                                                   7.00
1556                                                                                               inhalant
1557                                                                                                  16.00
1558                                                                                                 200.00
1559                                                                                                 375.00
1560                                                                                                 100.00
1561                                                                                                  50.00
1562                                                                                                 400.00
1563                                                                                                  75.00
1564                                                                                                 400.00
1565                                                                                                  50.00
1566                                                                                                 375.00
1567                                                                                                   2.50
1568                                                                                                 500.00
1569                                                                                                   1.00
1570                                                                                                   1.00
1571                                                                                                2 mg/kg
1572                                                            23 mg milbemycin oxime, 228 mg praziquantel
1573                                                                                                 136.00
1574                                                                                                  80.00
1575                                                                                                 100.00
1576                                                                                                   1.00
1577                                                                                                   0.40
1578                                                                                                 100.00
1579                                                                                                 100.00
1580                                                                                                   0.40
1581                                                                                                  20.00
1582                                                                                                  50.00
1583                                                                                                 272.00
1584                                                                                                 227.00
1585                                                                                                   4.00
1586                                                                                           small amount
1587                                                                                            unspecified
1588                                                                                                1000.00
1589                                                                                                  75.00
1590                                                                                                   7.50
1591                                                                                                 225.00
1592                                                                                                 100.00
1593                                                                                                  20.00
1594                                                                                                  50.00
1595                                                                                                 250.00
1596                                                                                                  60.00
1597                                                                                                  60.00
1598                                                                           based on weight (51-100 lbs)
1599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
1600                                                                                                 136.00
1601                                                                                                   1.00
1602                                                                                                   7.50
1603                                                                                                  70.00
1604                                                                                                   3.75
1605                                                                                                 200.00
1606                                                                                                   0.13
1607                                                                                                   6.30
1608                                                                                                 180.00
1609                                                                                                   2.50
1610                                                                                                 204.00
1611                                                                                                   1.00
1612                                                                                                  80.00
1613                                                                                                 200.00
1614                                                                                                  80.00
1615                                                                                                   7.00
1616                                                                                                 200.00
1617                                                                                                 204.00
1618                                                                                                  80.00
1619                                                                                                  50.00
1620                                                                                                 500.00
1621                                                                                                  10.00
1622                                                                                                  50.00
1623                                                                                                  75.00
1624                                                                                                  50.00
1625                                                                                                   1.50
1626                                                                                                  50.00
1627                                                                                                 272.00
1628                                                                                                   2.68
1629                                                                                                  50.00
1630                                                                                                 272.00
1631                                                                                                   2.68
1632                                                                                                   0.10
1633                                                                                  1 tablet/pill/capsule
1634                                                                            based on weight (45-88 lbs)
1635                                                                                    tablet/pill/capsule
1636                                                                                  1 tablet/pill/capsule
1637                                                                                                   1.00
1638                                                                                                   1.00
1639                                                                                                   1.00
1640                                                                                                   1.00
1641                                                                                                  75.00
1642                                                                                                 500.00
1643                                                                                                 500.00
1644                                                                                                  20.00
1645                                                                                                   0.25
1646                                                                                                  75.00
1647                                                                                                 500.00
1648                                                                                                 500.00
1649                                                                                                 200.00
1650                                                                                            unspecified
1651                                                                                                 100.00
1652                                                                                                  75.00
1653                                                                                                   1.00
1654                                                                                                 272.00
1655                                                                                                 272.00
1656                                                                                                   2.68
1657                                                                                                 272.00
1658                                                                                                   0.09
1659                                                                                                 272.00
1660                                                                                                  68.00
1661                                                                                                  50.00
1662                                                                                                  15.00
1663                                                                           based on weight (60-120 lbs)
1664                                                                                                  25.00
1665                                                                                                 250.00
1666                                                                                                 250.00
1667                                                                                                 750.00
1668                                                                                            unspecified
1669                                                                                                 272.00
1670                                                                                                 272.00
1671                                                                                                  44-88
1672                                                                                                   2.68
1673                                                                                                  29.00
1674                                                                                                   1.00
1675                                                                                                   2.00
1676                                                                                                 272.00
1677                                                                                                 272.00
1678                                                                                                 500.00
1679                                                                                                   1.00
1680                                                                                                   1.00
1681                                                                                                   1.00
1682                                                                                                 272.00
1683                                                                                                 collar
1684                                                                                            unspecified
1685                                                                                                  spray
1686                                                                                                 500.00
1687                                                                                                 120.00
1688                                                                                                 272.00
1689                                                                                        moderate amount
1690                                                                                                1 spray
1691                                                                                                 500.00
1692                                                                                        moderate amount
1693                                                                                                 100.00
1694                                                                                                 100.00
1695                                                                                                 1 drop
1696                                                                                                  75.00
1697                                                                                        based on weight
1698                                                                                                  23.00
1699                                                                                                   2.68
1700                                                                                                   2.68
1701                                                                                                   8.00
1702                                                                                                   1.00
1703                                                                                                 375.00
1704                                                                                                   2.50
1705                                                                                                  50.00
1706                                                                                                   8.00
1707                                                                                                   2.68
1708                                                                                                23, 460
1709                                                                                                   8.00
1710                                                               460 mg lufenuron, 26 mg milbemycin oxime
1711                                                                                                   2.68
1712                                                                           based on weight (50-100 lbs)
1713                                                                                                   2.68
1714                                                                                                1000.00
1715                                                                           based on weight (51-100 lbs)
1716                                                                                                   2.68
1717                                                                                                1000.00
1718                                                               460 mg lufenuron, 23 mg milbemycin oxime
1719                                                                                                  80 mg
1720                                                                           based on weight (51-100 lbs)
1721                                                                                                 120.00
1722                                                                                                1000.00
1723                                                                                                2000.00
1724                                                                                                  10.00
1725                                                                                                 272.00
1726                                                                                                   4.00
1727                                                                                                   1.00
1728                                                                                                   1.00
1729                                                                                                 1 tube
1730                                                                                  1 tablet/pill/capsule
1731                                                                                                   1.00
1732                                                                                                   1.00
1733                                                                                                 272.00
1734                                                                                                 272.00
1735                                                                                                 272.00
1736                                                                                                 272.00
1737                                                                                                 227.00
1738                                                                                                 200.00
1739                                                                                                 227.00
1740                                                                                                  20.00
1741                                                                                                 227.00
1742                                                                                                 272.00
1743                                                                                        based on weight
1744                                                                                                 272.00
1745                                                                                                1647.00
1746                                                                                                   1.50
1747                                                                                                 1 bath
1748                                                                                            application
1749                                                                           based on weight (60-120 lbs)
1750                                                                                                 750.00
1751                                                                                                 120.00
1752                                                                                                 400.00
1753                                                                                                   0.04
1754                                                                                                  20.00
1755                                                                                                   3.70
1756                                                                                            unspecified
1757                                                                                            unspecified
1758                                                                           based on weight (51-100 lbs)
1759                                                                           based on weight (60-121 lbs)
1760                                                                                      80 mg/ml - 4.1 ml
1761                                                                                      0.284 mg, 0.57 mg
1762                                                                                                 375.00
1763                                                                                                  75.00
1764                                                                                                 100.00
1765                                                                                                 200.00
1766                                                                                                  15.00
1767                                                                                                   2.00
1768                                                                                                 200.00
1769                                                                                            application
1770                                                                                                  23.00
1771                                                                                                1000.00
1772                                                                                                 200.00
1773                                                                               3 tablets/pills/capsules
1774                                                                                          23 mg, 460 mg
1775                                                                                                1000 mg
1776                                                                                                1000.00
1777                                                                                                  23.00
1778                                                                                                 272.00
1779                                                                                                1000.00
1780                                                                                                 272.00
1781                                                                                                1000.00
1782                                                                                                 132.00
1783                                                                                                   3.20
1784                                                                                                  50.00
1785                                                                                                 272.00
1786                                                                                                1000.00
1787                                                                                                 240.00
1788                                                                                                1090.00
1789                                                                                            unspecified
1790                                                                                                 375.00
1791                                                                                            unspecified
1792                                                                                                 150.00
1793                                                                                                 200.00
1794                                                                                            unspecified
1795                                                                                            unspecified
1796                                                                                            unspecified
1797                                                                                                  50.00
1798                                                                               based on weight (75 lbs)
1799                                                                                                   1.00
1800                                                                                                 250.00
1801                                                                                                 300.00
1802                                                                                                  15.00
1803                                                                                                   3.00
1804                                                                                                  22.00
1805                                                                                           small amount
1806                                                                                                  95.00
1807                                                                                                  95.00
1808                                                                                                 500.00
1809                                                                                            unspecified
1810                                                                                                1000.00
1811                                                                                                 500.00
1812                                                                                                  1 tsp
1813                                                                                                 1 tbsp
1814                                                                                                 100.00
1815                                                                                                  50.00
1816                                                                                                 170.00
1817                                                                                                   1.00
1818                                                                                                   0.50
1819                                                                                            unspecified
1820                                                                                            unspecified
1821                                                                                                 150.00
1822                                                                                                 100.00
1823                                                                                            unspecified
1824                                                                                                  50.00
1825                                                                                                  16.00
1826                                                                                                   1.20
1827                                                                                                  10.00
1828                                                                                                 272.00
1829                                                                                                 500.00
1830                                                                                                   1.00
1831                                                                                                   1.00
1832                                                                                                   1.40
1833                                                                                                  16.00
1834                                                                                                 272.00
1835                                                                                                 136.00
1836                                                                                                 272.00
1837                                                                                                 136.00
1838                                                                                                 272.00
1839                                                                                                 136.00
1840                                                                                                 100.00
1841                                                                                                   1.00
1842                                                                                                   1.00
1843                                                                                                 272.00
1844                                                                                                 272.00
1845                                                                              based on weight (55+ lbs)
1846                                                                           based on weight (51-100 lbs)
1847                                                                              based on weight (55+ lbs)
1848                                                                           based on weight (51-100 lbs)
1849                                                                           based on weight (51-100 lbs)
1850                                                                                        0.25 inch strip
1851                                                                                           small amount
1852                                                                                                 100.00
1853                                                                                                   5.00
1854                                                                                                 500.00
1855                                                                                                 500.00
1856                                                                                                  20.00
1857                                                                                                 500.00
1858                                                                                                  68.00
1859                                                                                                   4.00
1860                                                                                                  50.00
1861                                                                                                  75 mg
1862                                                                                                  75.00
1863                                                                                                 272.00
1864                                                                                                  56-95
1865                                                                                                 900.00
1866                                                                                                  56-95
1867                                                                           based on weight (51-100 lbs)
1868                                                                                                 500.00
1869                                                                                                   1.00
1870                                                                                                 150.00
1871                                                                                                   5.00
1872                                                                           based on weight (51-100 lbs)
1873                                                                                                  56-95
1874                                                                                                  66.00
1875                                                                                                   8.00
1876                                                                                                 190.00
1877                                                                                            unspecified
1878                                                                                                  50.00
1879                                                                                                 375.00
1880                                                                                                 227.00
1881                                                                                                 375.00
1882                                                                                                  10.00
1883                                                                                                   8.00
1884                                                                                                   8.00
1885                                                                                                   1.00
1886                                                                                                   1.00
1887                                                                                                  spray
1888                                                                                             continuous
1889                                                                                                 272.00
1890                                                                                                  60.00
1891                                                                                                   1.00
1892                                                                                                   1.00
1893                                                                                                   1.00
1894                                                                                                   1.00
1895                                                                                                  50.00
1896                                                                                                  60.00
1897                                                                                                   1.00
1898                                                                                                 375.00
1899                                                                                                 375.00
1900                                                                                                 100.00
1901                                                                                                 300.00
1902                                                                                                 150.00
1903                                                                                                  50.00
1904                                                                                                  10.00
1905                                                                                                  75 mg
1906                                                                                                 500 mg
1907                                                                                                  50.00
1908                                                                                                 190.00
1909                                                                                                  56-95
1910                                                                                                 900.00
1911                                                                                                  14.00
1912                                                                                                   7.00
1913                                                                                                   7.00
1914                                                                                                 200.00
1915                                                                                                   0.50
1916                                                                                                  56-95
1917                                                                           based on weight (51-100 lbs)
1918                                                                                                   1.50
1919                                                                                                 750.00
1920                                                                                                   1.00
1921                                                                                                   2.00
1922                                                                                                  spray
1923                                                                                                  68.00
1924                                                                                                   8.00
1925                                                                                            unspecified
1926                                                                                           small amount
1927                                                                                                  16.00
1928                                                                           based on weight (51-100 lbs)
1929                                                                                            unspecified
1930                                                                                                   2.00
1931                                                                                           small amount
1932                                                                                                 150.00
1933                                                                                                  50.00
1934                                                                                                   2.00
1935                                                                                                  60.00
1936                                                                                                 190.00
1937                                                                                                  50.00
1938                                                                                                   2.00
1939                                                                                            unspecified
1940                                                                                                 200.00
1941                                                                                            application
1942                                                                                                 190.00
1943                                                                                                  50.00
1944                                                                                                   2.00
1945                                                                                                  spray
1946                                                                                                 190.00
1947                                                                                                  70.00
1948                                                                                        based on weight
1949                                                                                                   1.00
1950                                                                                                  50.00
1951                                                                                                 200.00
1952                                                                                                   2.00
1953                                                                                                  50.00
1954                                                                                                   0-22
1955                                                                                                  23-44
1956                                                                                                  26-50
1957                                                                                                 250.00
1958                                                                                                   1.00
1959                                                                                                  10.50
1960                                                                                                  45-88
1961                                                                                                 100.00
1962                                                                           based on weight (51-100 lbs)
1963                                                                                                   1.00
1964                                                                                                   1.00
1965                                                                                           small amount
1966                                                                                                 240.00
1967                                                                                                1200.00
1968                                                                                                 450.00
1969                                                                                                   2.00
1970                                                                                                 136.00
1971                                                                                                   2.50
1972                                                                                                   1.00
1973                                                                                                   1.00
1974                                                                                                   1.00
1975                                                                                                   4.00
1976                                                                                                 272.00
1977                                                                                                1200.00
1978                                                                                                 900.00
1979                                                                                                   2.00
1980                                                                                            application
1981                                                                                  1 tablet/pill/capsule
1982                                                                           based on weight (51-100 lbs)
1983                                                                              based on weight (55+ lbs)
1984                                                                                        based on weight
1985                                                                                  1 tablet/pill/capsule
1986                                                                                                   1.00
1987                                                                                                   1.00
1988                                                                                                 100.00
1989                                                                                                   1.00
1990                                                                                                 300.00
1991                                                                                                  50.00
1992                                                                                                 500.00
1993                                                                                                 136.00
1994                                                                                            unspecified
1995                                                                                                  70.00
1996                                                                                                  50.00
1997                                                                                                 400.00
1998                                                                                           small amount
1999                                                                                                 272.00
2000                                                                                                1000.00
2001                                                                                                 272.00
2002                                                                                                1000.00
2003                                                                                                1000.00
2004                                                                                                  75.00
2005                                                                                                1000.00
2006                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2007                                                                                                 500 mg
2008                                                                                                 900.00
2009                                                                                                 937.50
2010                                                                                                   9.80
2011                                                                                                 500.00
2012                                                                                            unspecified
2013                                                                                            unspecified
2014                                                                                                 200.00
2015                                                                                                   5.00
2016                                                                           based on weight (51-100 lbs)
2017                                                                                                 272.00
2018                                                                                                 100.00
2019                                                                                                 300.00
2020                                                                                                 100.00
2021                                                                                                   5.00
2022                                                                                            application
2023                                                                                                   1.00
2024                                                                                                   1.00
2025                                                                              based on weight (55+ lbs)
2026                                                                           based on weight (50-100 lbs)
2027                                                                                                   1.00
2028                                                                                                 500.00
2029                                                                           based on weight (51-100 lbs)
2030                                                                                        based on weight
2031                                                                                                 136.00
2032                                                                                            unspecified
2033                                                                                            unspecified
2034                                                                                            unspecified
2035                                                                                                  26-50
2036                                                                                                  45-88
2037                                                                                                 250.00
2038                                                                                                   1.00
2039                                                                                                 272.00
2040                                                                                                 227.00
2041                                                                           based on weight (51-100 lbs)
2042                                                                            based on weight (26-50 lbs)
2043                                                                                                  11 ml
2044                                                                                               50 mg/kg
2045                                                                                                  50.00
2046                                                                                                  13.00
2047                                                                                                   2.20
2048                                                                                                   0.22
2049                                                                                                   0.11
2050                                                                           based on weight (51-100 lbs)
2051                                                                                                  45-88
2052                                                                                                   7.60
2053                                                                                                  11.00
2054                                                                                                 125.00
2055                                                                                                 375.00
2056                                                                                                  50.00
2057                                                                                                   4.00
2058                                                                                                 150.00
2059                                                                                                 272.00
2060                                                                                                 272.00
2061                                                                                                 200.00
2062                                                                                                 272.00
2063                                                                                                 220.00
2064                                                                                                   1.00
2065                                                                                                 220.00
2066                                                                                                   2.68
2067                                                                                                1000.00
2068                                                                                                 150.00
2069                                                                                                 272.00
2070                                                                                                   2.68
2071                                                                                                  80.00
2072                                                                                                 500 mg
2073                                                                                                 272.00
2074                                                                                                 272.00
2075                                                                           based on weight (51-100 lbs)
2076                                                                                                 272.00
2077                                                                                                1000.00
2078                                                                                                  75.00
2079                                                                                                  23.00
2080                                                                                                 160.00
2081                                                                                                 900.00
2082                                                                                                1000.00
2083                                                                            based on weight (40-85 lbs)
2084                                                                           based on weight (51-100 lbs)
2085                                                                                        based on weight
2086                                                                                                 50-100
2087                                                                           based on weight (51-100 lbs)
2088                                                                            based on weight (44-88 lbs)
2089                                                                              based on weight (80+ lbs)
2090                                                                                                   1.60
2091                                                                           based on weight (51-100 lbs)
2092                                                                                                1000.00
2093                                                                              based on weight (80+ lbs)
2094                                                                                                   1.60
2095                                                                                                   1.60
2096                                                                                                   1.00
2097                                                                                                   3.75
2098                                                                                                 160.00
2099                                                                                                   6.00
2100                                                                                                   3.75
2101                                                                                                   2.00
2102                                                                                                   3.75
2103                                                                                                 136.00
2104                                                                                                 500.00
2105                                                                                                  20.00
2106                                                                                                   7.50
2107                                                                           based on weight (51-100 lbs)
2108                                                                                        based on weight
2109                                                                           based on weight (51-100 lbs)
2110                                                                           based on weight (51-100 lbs)
2111                                                                                                 150.00
2112                                                                                                 200.00
2113                                                                                               tapering
2114                                                                                                  16.00
2115                                                                                            unspecified
2116                                                                                            unspecified
2117                                                                                                  20.00
2118                                                                                                   1.00
2119                                                                                                 300.00
2120                                                                                                   1.00
2121                                                                                                 272.00
2122                                                                                                  50.00
2123                                                                                  1 tablet/pill/capsule
2124                                                                                                   1.00
2125                                                                                                 750.00
2126                                                                           based on weight (51-100 lbs)
2127                                                                           based on weight (51-100 lbs)
2128                                                                                                   9.00
2129                                                                                                1000.00
2130                                                                                                  13.30
2131                                                                                                   3.25
2132                                                                                                   1.26
2133                                                                                                   0.90
2134                                                                                                   7.50
2135                                                                                                 750.00
2136                                                                                                1000.00
2137                                                                                                   1.00
2138                                                                                                   3.00
2139                                                                                                   8.00
2140                                                                                                   2.50
2141                                                                                                   1.00
2142                                                                                                   1.00
2143                                                                                                   1.00
2144                                                                                                   2.00
2145                                                                                                 500.00
2146                                                                                                   1.00
2147                                                                                                   1.00
2148                                                                                                  15.00
2149                                                                           based on weight (51-100 lbs)
2150                                                                                                   1.00
2151                                                                           based on weight (51-100 lbs)
2152                                                                                                   1.00
2153                                                                                                   1.50
2154                                                                                                  16.00
2155                                                                                                   4.50
2156                                                                                                   1.80
2157                                                                                                   0.60
2158                                                                                                1000.00
2159                                                                                                   3.75
2160                                                                                                 100.00
2161                                                                           based on weight (51-100 lbs)
2162                                                                                                  44-88
2163                                                                                                   1.00
2164                                                                                               45294.00
2165                                                                                           small amount
2166                                                                                            as directed
2167                                                                                                   1.00
2168                                                                                                 500.00
2169                                                                                                1000.00
2170                                                                                                 700.00
2171                                                                                                  60.00
2172                                                                                                 240.00
2173                                                                                                1000.00
2174                                                                                                 500.00
2175                                                                                                   1.00
2176                                                                                                  50.00
2177                                                                                                 200.00
2178                                                                                                  23.00
2179                                                                                                 810.00
2180                                                                                                  50.00
2181                                                                                                 250.00
2182                                                                                                  93.00
2183                                                                                                 120.00
2184                                                                                                  50.00
2185                                                                                                  40.00
2186                                                                                                  50.00
2187                                                                                                1000.00
2188                                                                                                 800.00
2189                                                                                                  68.00
2190                                                                                                  68.00
2191                                                                                                 200.00
2192                                                                                                  50.00
2193                                                                                                1000.00
2194                                                                                                 800.00
2195                                                                                            unspecified
2196                                                                                                 272.00
2197                                                                                                  68.00
2198                                                                                                 272.00
2199                                                                           based on weight (51-100 lbs)
2200                                                                          based on weight (24.1-60 lbs)
2201                                                                                        based on weight
2202                                                                                        based on weight
2203                                                                                        based on weight
2204                                                                           based on weight (51-100 lbs)
2205                                                                          based on weight (24.1-60 lbs)
2206                                                                               2 tablets/pills/capsules
2207                                                                                  1 tablet/pill/capsule
2208                                                                                                   0.30
2209                                                                                                   1.00
2210                                                                                                 100.00
2211                                                                                            unspecified
2212                                                                                                  50.00
2213                                                                                                  50.00
2214                                                                                                   1.00
2215                                                                                                  50.00
2216                                                                                                   1.00
2217                                                                                                   2.00
2218                                                                                                  50.00
2219                                                                                               1 pellet
2220                                                                                               1 pellet
2221                                                                                                 500 mg
2222                                                                                                   1.00
2223                                                                                                   1.00
2224                                                                                            unspecified
2225                                                                                                 750 mg
2226                                                                                            unspecified
2227                                                                                                 750.00
2228                                                                                                 1 tbsp
2229                                                                                            unspecified
2230                                                                                                 500 mg
2231                                                                                                  20.00
2232                                                                                                   1.00
2233                                                                           based on weight (50-100 lbs)
2234                                                                                                   1.00
2235                                                                                                   1.00
2236                                                                                                 200.00
2237                                                                                                   1.50
2238                                                                                                   1.00
2239                                                                                                   1.00
2240                                                                                                   1.00
2241                                                                                            application
2242                                                                                                   0.30
2243                                                                           based on weight (50-100 lbs)
2244                                                                            based on weight (44-88 lbs)
2245                                                                                                 0.5 mg
2246                                                                                                  60.00
2247                                                                                                  10.00
2248                                                                                                 100.00
2249                                                                                                  50.00
2250                                                                                            unspecified
2251                                                                                               50 ug/kg
2252                                                                                                   1.00
2253                                                                                                  68.00
2254                                                                                                1000.00
2255                                                                            based on weight (21-55 lbs)
2256                                                                                                 450.00
2257                                                                                                   4.00
2258                                                                                            unspecified
2259                                                                                            unspecified
2260                                                                                            unspecified
2261                                                                                            unspecified
2262                                                                                            unspecified
2263                                                                                            unspecified
2264                                                                                            unspecified
2265                                                                                            unspecified
2266                                                                                            unspecified
2267                                                                                                 375.00
2268                                                                                                 375.00
2269                                                                                            unspecified
2270                                                                                            unspecified
2271                                                                                                  60.00
2272                                                                                            unspecified
2273                                                                                                  20.00
2274                                                                                                 375.00
2275                                                                                                  25.00
2276                                                                                                  15.00
2277                                                                                                 272.00
2278                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
2279                                                                           based on weight (51-100 lbs)
2280                                                                           based on weight (51-100 lbs)
2281                                                                                                 250.00
2282                                                                                                   1.00
2283                                                                           based on weight (51-100 lbs)
2284                                                                                                 272.00
2285                                                                                                 200.00
2286                                                                                                   2.50
2287                                                                                                 272.00
2288                                                                                                 500.00
2289                                                                                                   0.25
2290                                                                                                 300.00
2291                                                                                                  10.00
2292                                                                                                 300.00
2293                                                                                                  75.00
2294                                                                                                 500.00
2295                                                                                                  75.00
2296                                                                                                  12.50
2297                                                                                                   1.00
2298                                                                                                  50.00
2299                                                                                                 480.00
2300                                                                                                1000.00
2301                                                                                        moderate amount
2302                                                                                             0.75, 0.75
2303                                                                                                1000.00
2304                                                                                                   4.00
2305                                                                                                  12.00
2306                                                                                                 500.00
2307                                                                                                   1.00
2308                                                                                                 272.00
2309                                                                                                 136.00
2310                                                                                                 200.00
2311                                                                                                 272.00
2312                                                                                                 136.00
2313                                                                                                 500.00
2314                                                                                                 500.00
2315                                                                                                 200.00
2316                                                                                                  10.00
2317                                                                                                 500.00
2318                                                                                                 500.00
2319                                                                                                 500.00
2320                                                                                                  75.00
2321                                                                                                   2.00
2322                                                                                                 300.00
2323                                                                                                 100.00
2324                                                                                                 500.00
2325                                                                                                  20.00
2326                                                                                                  75.00
2327                                                                                                   1.00
2328                                                                                                 500.00
2329                                                                                                   1.00
2330                                                                                                  50.00
2331                                                                                                  70.00
2332                                                                                                 500.00
2333                                                                                                 272 mg
2334                                                                                                 272.00
2335                                                                                                 272.00
2336                                                                                                 227.00
2337                                                                                                   9.10
2338                                                                                                  20.00
2339                                                                                                 1 drop
2340                                                                                                 272.00
2341                                                                                                 227.00
2342                                                                                                 1 drop
2343                                                                                                 272.00
2344                                                                                                 227.00
2345                                                                                                272 mcg
2346                                                                                                 227.00
2347                                                                                                272 mcg
2348                                                                                                 227.00
2349                                                                                                  20.00
2350                                                                                                 300.00
2351                                                                                                   1.50
2352                                                                                                272 mcg
2353                                                                                                 227.00
2354                                                                                                  20.00
2355                                                                                                 350.00
2356                                                                                                272 mcg
2357                                                                                                  20.00
2358                                                                                                 229.00
2359                                                                                                 429.00
2360                                                                                                  60.00
2361                                                                                                   6.00
2362                                                                                                 500.00
2363                                                                                                 500.00
2364                                                                                                  30.00
2365                                                                                                 300.00
2366                                                                                                  20.00
2367                                                                                                 500.00
2368                                                                                                  20.00
2369                                                                                                 500.00
2370                                                                                                  68.00
2371                                                                                                   1.00
2372                                                                                                 350.00
2373                                                                                                 500.00
2374                                                                                                   1.00
2375                                                                                                 250.00
2376                                                                                                 300.00
2377                                                                                                   8.00
2378                                                                                                 100.00
2379                                                                                                  75.00
2380                                                                                                   1.00
2381                                                                                                 250.00
2382                                                                                                 500.00
2383                                                                                                 400.00
2384                                                                                                 50-100
2385                                                                                                 500.00
2386                                                                                                 50-100
2387                                                                                                   0.15
2388                                                                                                  30.00
2389                                                                                                  48.00
2390                                                                                                  spray
2391                                                                                                 250.00
2392                                                                                                  37.50
2393                                                                                                   1.00
2394                                                                                                   4.00
2395                                                                                                 252.00
2396                                                                                                  80.00
2397                                                                                                   1.00
2398                                                                                                  spray
2399                                                                                                 272.00
2400                                                                                                  30.00
2401                                                                                                   1.00
2402                                                                                                   1.00
2403                                                                                                   1.00
2404                                                                           based on weight (51-100 lbs)
2405                                                                            based on weight (44-88 lbs)
2406                                                                                                  1 tsp
2407                                                                                                 272.00
2408                                                                                                  44-88
2409                                                                           based on weight (51-100 lbs)
2410                                                                                                 500.00
2411                                                                                               1000 mcg
2412                                                                                                 150 mg
2413                                                                                                 100.00
2414                                                                                                  75.00
2415                                                                                                 200.00
2416                                                                                                 272.00
2417                                                                                                 227.00
2418                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
2419                                                                                                272 mcg
2420                                                                                                 272.00
2421                                                                                                  16.00
2422                                                                                                  16.00
2423                                                                                                1000.00
2424                                                                                                  60 mg
2425                                                                                                  20 mg
2426                                                                                                 250 mg
2427                                                                                                 500 mg
2428                                                                      0.5-1 tablet/pill/capsule - 16 mg
2429                                                                                                  16.00
2430                                                                                                 500.00
2431                                                                                                  75.00
2432                                                                                                  16.00
2433                                                                                                  75.00
2434                                                                                                 500.00
2435                                                                                                  75.00
2436                                                                                                 300.00
2437                                                                                                   1.00
2438                                                                                                 500.00
2439                                                                                                 500.00
2440                                                                                                 250.00
2441                                                                                                   3.00
2442                                                                                                   1.00
2443                                                                                                   2.00
2444                                                                                                 227.00
2445                                                                                                 250.00
2446                                                                                                   1.00
2447                                                                                                 100.00
2448                                                                                                   1.00
2449                                                                                                   1.00
2450                                                                                                 150 mg
2451                                                                                                   3.50
2452                                                                                                   3.20
2453                                                                                                  60 mg
2454                                                                                                   3.60
2455                                                                                                  60 mg
2456                                                                                                  60 mg
2457                                                                                                 500.00
2458                                                                                                  50.00
2459                                                                                                   5.00
2460                                                                                                   5.00
2461                                                                                                  15.00
2462                                                                                                  12.00
2463                                                                                                0.5 cup
2464                                                                                    tablet/pill/capsule
2465                                                                                                   1.00
2466                                                                                                 500.00
2467                                                                                    tablet/pill/capsule
2468                                                                                                 300.00
2469                                                                                                  60.00
2470                                                                                                 500.00
2471                                                                                                  20.00
2472                                                                                                   5.00
2473                                                                                           small amount
2474                                                                                           small amount
2475                                                                                                 200.00
2476                                                                                                  30.00
2477                                                                                              injection
2478                                                                                              injection
2479                                                                                    tablet/pill/capsule
2480                                                                                                 100.00
2481                                                                                                  spray
2482                                                                           based on weight (51-100 lbs)
2483                                                                                                 60-120
2484                                                                                                 200.00
2485                                                                                                  16.00
2486                                                                                            as directed
2487                                                                                            as directed
2488                                                                                                 375.00
2489                                                                                                  75.00
2490                                                                                                5 drops
2491                                                                                            application
2492                                                                                            application
2493                                                                                                  16.00
2494                                                                                                 200.00
2495                                                                                                   1.00
2496                                                                                                  20.00
2497                                                                                                   1.00
2498                                                                                                 250.00
2499                                                                                            unspecified
2500                                                                           based on weight (51-100 lbs)
2501                                                                          1 tablet/pill/capsule - 75 mg
2502                                                                        2 tablets/pills/capsules - 1 mg
2503                                                                          1 tablet/pill/capsule - 16 mg
2504                                                                         based on weight (60.1-120 lbs)
2505                                                                                  1 tablet/pill/capsule
2506                                                                                  1 tablet/pill/capsule
2507                                                                                                 250.00
2508                                                                                    tablet/pill/capsule
2509                                                                                                  60.00
2510                                                                                                 272.00
2511                                                                                                 272.00
2512                                                                                                 227.00
2513                                                                                                 228.00
2514                                                                                                 272.00
2515                                                                                                 500.00
2516                                                                                                 272.00
2517                                                                           based on weight (51-100 lbs)
2518                                                                               2 tablets/pills/capsules
2519                                                                                                 460.00
2520                                                                                                 150.00
2521                                                                                                  23.00
2522                                                                                                  23.00
2523                                                                                                   0.75
2524                                                                                                   0.75
2525                                                                                                 125.00
2526                                                                                                   1.40
2527                                                                                                 125.00
2528                                                                                                 170.00
2529                                                                                                   1.40
2530                                                                                                 125.00
2531                                                                                                 136.00
2532                                                                                                  20.00
2533                                                                                                 150.00
2534                                                                                            unspecified
2535                                                                                                 100.00
2536                                                                                                   1.00
2537                                                                                                 272.00
2538                                                                                                 272.00
2539                                                                           based on weight (51-100 lbs)
2540                                                                                  1 tablet/pill/capsule
2541                                                                                                 136.00
2542                                                                           based on weight (51-100 lbs)
2543                                                                              based on weight (18+ lbs)
2544                                                                                                 750 mg
2545                                                                           based on weight (50-100 lbs)
2546                                                                              based on weight (18+ lbs)
2547                                                                           based on weight (51-100 lbs)
2548                                                                              based on weight (18+ lbs)
2549                                                                                            unspecified
2550                                                                                            unspecified
2551                                                                                                  75.00
2552                                                                                                 500.00
2553                                                                                                  75.00
2554                                                                                                 500.00
2555                                                                                                  75.00
2556                                                                                                 500.00
2557                                                                                                  20.00
2558                                                                           based on weight (50-100 lbs)
2559                                                                           based on weight (50-100 lbs)
2560                                                                                        based on weight
2561                                                                                                  20.00
2562                                                                           based on weight (50-100 lbs)
2563                                                                                                   8.00
2564                                                                                                 227.00
2565                                                                                                  20.00
2566                                                                                    tablet/pill/capsule
2567                                                                                                  20.00
2568                                                                                                  16.00
2569                                                                                                   8.00
2570                                                                                                   0.40
2571                                                                                                   0.30
2572                                                                                                  21-55
2573                                                                                                   0.35
2574                                                                                                 375.00
2575                                                                                            unspecified
2576                                                                                                  10.00
2577                                                                                                 200.00
2578                                                                                                  spray
2579                                                                                                  10.80
2580                                                                                            application
2581                                                                                                 375.00
2582                                                                                                   8.00
2583                                                                                            unspecified
2584                                                                                                   2.68
2585                                                                                                 136.00
2586                                                                                                   1.00
2587                                                                                                 100 mg
2588                                                                                                1000 mg
2589                                                                                                  60 mg
2590                                                                                                   1.00
2591                                                                                                   1.00
2592                                                                                                   2.00
2593                                                                                                   1.00
2594                                                                                                   2.00
2595                                                                                                   1.00
2596                                                                                                   2.00
2597                                                                                                1950.00
2598                                                                                                   1.00
2599                                                                                            unspecified
2600                                                                                            unspecified
2601                                                                                                   2.50
2602                                                                                                  11.00
2603                                                                                                   1.00
2604                                                                                                   1.00
2605                                                                                                   1.00
2606                                                                                                   1.00
2607                                                                                                  50.00
2608                                                                                                  50.00
2609                                                                                                   6.50
2610                                                                                                   1.00
2611                                                                                                   1.00
2612                                                                                                   1.00
2613                                                                                                  68.00
2614                                                                                                  81.50
2615                                                                                                  73.00
2616                                                                                                 100.00
2617                                                                                                 136.50
2618                                                                                                   3.00
2619                                                                                                  68.00
2620                                                                                                  81.50
2621                                                                                                  73.00
2622                                                                                                 100.00
2623                                                                                                 136.50
2624                                                                                                   5.00
2625                                                                                                 204.00
2626                                                                                                   1.00
2627                                                                                                0.57 mg
2628                                                                                                   5.00
2629                                                                                                   5.00
2630                                                                                                   5.00
2631                                                                                                  68.00
2632                                                                                                  81.50
2633                                                                                                  73.00
2634                                                                                                 100.00
2635                                                                                                 136.50
2636                                                                                                  16 mg
2637                                                                                                   1.00
2638                                                                                                 500.00
2639                                                                                                   8.00
2640                                                                                                   8.00
2641                                                                                                  50.00
2642                                                                                            unspecified
2643                                                                                                  70.00
2644                                                                                                1000.00
2645                                                                                                   1.00
2646                                                                                                  68.00
2647                                                                                                  81.50
2648                                                                                                  73.00
2649                                                                                                 100.00
2650                                                                                                 136.50
2651                                                                                        based on weight
2652                                                                                            unspecified
2653                                                                                            unspecified
2654                                                                                                 500.00
2655                                                                                            unspecified
2656                                                                                                  75.00
2657                                                                                                 200.00
2658                                                                                                 100.00
2659                                                                                                1 scoop
2660                                                                                            unspecified
2661                                                                                            unspecified
2662                                                                                                   5.00
2663                                                                                                  25.00
2664                                                                                                   2.00
2665                                                                                                   5.00
2666                                                                                                   5.00
2667                                                                                                   5.00
2668                                                                                                 500.00
2669                                                                                                  68.00
2670                                                                                                  81.50
2671                                                                                                  73.00
2672                                                                                                 100.00
2673                                                                                                 136.50
2674                                                                                                  68.00
2675                                                                                                  81.50
2676                                                                                                  73.00
2677                                                                                                 100.00
2678                                                                                                 136.50
2679                                                                                                  68.00
2680                                                                                                  81.50
2681                                                                                                  73.00
2682                                                                                                 100.00
2683                                                                                                 136.50
2684                                                                                                  68.00
2685                                                                                                  81.50
2686                                                                                                  73.00
2687                                                                                                 100.00
2688                                                                                                 136.50
2689                                                                                                  68.00
2690                                                                                                  81.50
2691                                                                                                  73.00
2692                                                                                                 100.00
2693                                                                                                 136.50
2694                                                                                                  60.00
2695                                                                                                   0.57
2696                                                                                                   1.00
2697                                                                                                   3.00
2698                                                                                                   5.00
2699                                                                                               2 sprays
2700                                                                                                  60.00
2701                                                                                                  68.00
2702                                                                                                  81.50
2703                                                                                                  73.00
2704                                                                                                 100.00
2705                                                                                                 136.50
2706                                                                                                   1.00
2707                                                                                                 500.00
2708                                                                                                   2.70
2709                                                                                                 400.00
2710                                                                           based on weight (51-100 lbs)
2711                                                                                                 500.00
2712                                                                                                   2.50
2713                                                                                                   1.00
2714                                                                                                  60.00
2715                                                                                                  60.00
2716                                                                                                   2.70
2717                                                                                                   1.00
2718                                                                                                  70.00
2719                                                                                                 272.00
2720                                                                                                 136.00
2721                                                                                            application
2722                                                                                                  20.00
2723                                                                                                  20.00
2724                                                                                                 136.00
2725                                                                                                 272.00
2726                                                                           based on weight (50-100 lbs)
2727                                                                                                  40.00
2728                                                                                                  20.00
2729                                                                                                   4.00
2730                                                                                                  20.00
2731                                                                                              13.5, 810
2732                                                                                                 250.00
2733                                                                                                 200.00
2734                                                                                                 250.00
2735                                                                                              13.5, 810
2736                                                                                                  68.00
2737                                                                                           23, 228, 460
2738                                                                           based on weight (51-100 lbs)
2739                                                                           based on weight (60-120 lbs)
2740                                                                                                 134.00
2741                                                                                                 200.00
2742                                                                           based on weight (51-100 lbs)
2743                                                                            based on weight (44-88 lbs)
2744                                                                                                  16.00
2745                                                                           based on weight (50-100 lbs)
2746                                                                            based on weight (44-88 lbs)
2747                                                                                                  70.00
2748                                                                           based on weight (51-100 lbs)
2749                                                                            based on weight (44-88 lbs)
2750                                                                                                  16 mg
2751                                                                                                  80.00
2752                                                                                                 200.00
2753                                                                           based on weight (50-100 lbs)
2754                                                                                                1000.00
2755                                                                                                  16.00
2756                                                                               based on weight (80 lbs)
2757                                                                                                 200.00
2758                                                                                                  80.00
2759                                                                                                  16.00
2760                                                                                                   5.00
2761                                                                                                 500.00
2762                                                                                                 200.00
2763                                                                                                 500.00
2764                                                                                                  16.00
2765                                                                                                  70.00
2766                                                                                                 300.00
2767                                                                                                  50.00
2768                                                                                                 500.00
2769                                                                                                 500.00
2770                                                                                                 250.00
2771                                                                                                   2.68
2772                                                                                                 272.00
2773                                                                                                 750.00
2774                                                                                                 272.00
2775                                                                                                  68.00
2776                                                                                                   8.00
2777                                                                                                 272.00
2778                                                                                                  68.00
2779                                                                                                  10.00
2780                                                                                                 300.00
2781                                                                                                 272.00
2782                                                                                                  80.00
2783                                                                                                   8.00
2784                                                                                                 500.00
2785                                                                                                  30.00
2786                                                                                                 400.00
2787                                                                                                 136.00
2788                                                                                                 750.00
2789                                                                                                   2.00
2790                                                                                                 300.00
2791                                                                                                 272.00
2792                                                                                                 136.00
2793                                                                                                 300.00
2794                                                                                                 750.00
2795                                                                                                  10.00
2796                                                                                                   8.00
2797                                                                                                   1.00
2798                                                                                                   5.00
2799                                                                                                   0.09
2800                                                                                                   5.00
2801                                                                                                   1.00
2802                                                                                                   0.60
2803                                                                                                   0.55
2804                                                                                                1400.00
2805                                                                  based on weight (45-88 lbs) - 2.68 mg
2806                                                                                                   0.60
2807                                                                                                   1.00
2808                                                                                                1400 mg
2809                                                                                                   0.60
2810                                                                                                1400.00
2811                                                                                                 500.00
2812                                                                                                   1.00
2813                                                                                                   6.00
2814                                                                                                1000.00
2815                                                                                               300, 600
2816                                                                                                1400.00
2817                                                                                                   0-25
2818                                                                                        0.25 inch strip
2819                                                                                                   2.13
2820                                                                                                   2.33
2821                                                                                                  50.00
2822                                                                                                  40.00
2823                                                                                                  10.00
2824                                                                                                 200.00
2825                                                                           based on weight (51-100 lbs)
2826                                                                                                  25-50
2827                                                                           based on weight (51-100 lbs)
2828                                                                           based on weight (51-100 lbs)
2829                                                                                                 375.00
2830                                                                                                   1.00
2831                                                                                                   1.00
2832                                                                                                   5.00
2833                                                                           based on weight (51-100 lbs)
2834                                                                                                 375.00
2835                                                                                                  12.00
2836                                                                                                   1.00
2837                                                                                                  30.00
2838                                                                           based on weight (50-100 lbs)
2839                                                                                           small amount
2840                                                                                                 100.00
2841                                                                                                 200.00
2842                                                                                           small amount
2843                                                                                                  16.00
2844                                                                                        0.25 inch strip
2845                                                                                                  75.00
2846                                                                           based on weight (50-100 lbs)
2847                                                                                                 200.00
2848                                                                                                 500.00
2849                                                                                                  10.00
2850                                                                                                 300.00
2851                                                                                                   0.10
2852                                                                                                  10.00
2853                                                                                                 110.00
2854                                                                                                 100.00
2855                                                                                            unspecified
2856                                                                                                 500.00
2857                                                                                                 272.00
2858                                                                                                   8.00
2859                                                                                                  10.00
2860                                                                                                1000.00
2861                                                                                                   8.00
2862                                                                                                  20.00
2863                                                                                                 227.00
2864                                                                                                   9.80
2865                                                                                                 272.00
2866                                                                                                   9.20
2867                                                                                                  75.00
2868                                                                                                 272.00
2869                                                                                  1 tablet/pill/capsule
2870                                                                                                 272.00
2871                                                                                                  10.00
2872                                                                                                  59.20
2873                                                                                                  50.00
2874                                                                                                  50.00
2875                                                                                                  50.00
2876                                                                                                   1.00
2877                                                                                                 810.00
2878                                                                                                   3.00
2879                                                                                                  20.00
2880                                                                                                  10.00
2881                                                                                                  10.00
2882                                                                                                   1.17
2883                                                                                                   0.15
2884                                                                                                   1.45
2885                                                                                                 375.00
2886                                                                                                 300.00
2887                                                                                                   1.00
2888                                                                                                  50.00
2889                                                                                                 200.00
2890                                                                                                   2.00
2891                                                                                                   3.10
2892                                                                                                   8.00
2893                                                                                                 150.00
2894                                                                                                 375.00
2895                                                                                                   2.20
2896                                                                                                 160.00
2897                                                                                  lather and then rinse
2898                                                                                                 200.00
2899                                                                                                  20.00
2900                                                                                            application
2901                                                                                                 200.00
2902                                                                                                  20.00
2903                                                                                            unspecified
2904                                                                                        moderate amount
2905                                                                                                   bath
2906                                                                                                  20.00
2907                                                                                         1 pack/package
2908                                                                                                   8.00
2909                                                                                                   1.00
2910                                                                                                  24-60
2911                                                                                  1 tablet/pill/capsule
2912                                                                                  1 tablet/pill/capsule
2913                                                                                         1 pack/package
2914                                                                                                  50.00
2915                                                                                                 375.00
2916                                                                                                   3.00
2917                                                                                                   1.50
2918                                                                                                   1.50
2919                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
2920                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
2921                                                                                         1 pack/package
2922                                                                           based on weight (50-100 lbs)
2923                                                                           based on weight (60-121 lbs)
2924                                                                                                1000.00
2925                                                                                            unspecified
2926                                                                                                 50-100
2927                                                                                                 60-121
2928                                                                                                1000.00
2929                                                                                                1000.00
2930                                                                                                1000.00
2931                                                                                                  80.00
2932                                                                                                   2.00
2933                                                                                                  20.00
2934                                                                                                  80.00
2935                                                                                                  20.00
2936                                                                                                 500.00
2937                                                                                                  10.00
2938                                                                                                  16.00
2939                                                                                                   5.00
2940                                                                                                 500.00
2941                                                               460 mg lufenuron, 23 mg milbemycin oxime
2942                                                     8.8 imidacloprid, 44 permethrin, 0.44 pyriproxyfen
2943                                                                           based on weight (51-100 lbs)
2944                                                                              based on weight (55+ lbs)
2945                                                                                                  23.00
2946                                                                                          1 bottle/vial
2947                                                                                                   4.00
2948                                                                                                   1.00
2949                                                                                                   1.00
2950                                                                                                   1.00
2951                                                                                                 1 tube
2952                                                                                                  40.00
2953                                                                                                  60.00
2954                                                                                                  49.00
2955                                                                                                 400.00
2956                                                                                                 100.00
2957                                                                                                   1.00
2958                                                                           based on weight (51-100 lbs)
2959                                                                           based on weight (51-100 lbs)
2960                                                                                  1 tablet/pill/capsule
2961                                                                                            unspecified
2962                                                                                            unspecified
2963                                                                                            unspecified
2964                                                                                            unspecified
2965                                                                                                 300.00
2966                                                                                                 200.00
2967                                                                                                  23.00
2968                                                                                                  45-88
2969                                                                                                   1.00
2970                                                                                                   3.00
2971                                                                                                  32.50
2972                                                                                                   1.00
2973                                                                                                   1.00
2974                                                                           based on weight (51-100 lbs)
2975                                                                            based on weight (45-88 lbs)
2976                                                                                                   1.00
2977                                                                                                  23.00
2978                                                                         based on weight (50.1-100 lbs)
2979                                                                                                 136.00
2980                                                                                                 1 drop
2981                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
2982                                                                                                 136 mg
2983                                                                                                   1.00
2984                                                                                                  23.00
2985                                                                                                 136.00
2986                                                                                                   1.00
2987                                                                                                 750.00
2988                                                                                        based on weight
2989                                                                                                 150.00
2990                                                                                                 272.00
2991                                                                                                   0.13
2992                                                                                                 500.00
2993                                                                                            unspecified
2994                                                                                                 100.00
2995                                                                                                  50.00
2996                                                                                                 272.00
2997                                                                             1.5 tablets/pills/capsules
2998                                                                                                   1.00
2999                                                                                                   8.00
3000                                                                                                   5.00
3001                                                                                               45451.00
3002                                                                        1.5 tablets/pills/capsules - 20
3003                                                                                           small amount
3004                                                                                                 272.00
3005                                                                                                   0.09
3006                                                                                                 272.00
3007                                                                            based on weight (45-88 lbs)
3008                                                                                                 375.00
3009                                                                                                  50.00
3010                                                                                                  60.00
3011                                                                                                 105.00
3012                                                                                                1000.00
3013                                                                                                   1.00
3014                                                                                                   4.00
3015                                                                                                  30.00
3016                                                                                                  20.00
3017                                                                                                 150.00
3018                                                                                                 227.00
3019                                                                                                 272.00
3020                                                                                                 272.00
3021                                                                                                 272.00
3022                                                                                                   1.00
3023                                                                                                 150.00
3024                                                                                                 300.00
3025                                                                                                 425.00
3026                                                                                                 300.00
3027                                                                                                 272.00
3028                                                                            based on weight (45-88 lbs)
3029                                                                                                 150.00
3030                                                                                                   0.50
3031                                                                                            unspecified
3032                                                                                                 300.00
3033                                                                                                 850.00
3034                                                                                                 150.00
3035                                                                                                 150.00
3036                                                                                                   0.40
3037                                                                                                 100.00
3038                                                                                                  60.00
3039                                                                                                   0.09
3040                                                                                                 272.00
3041                                                                                                   1.00
3042                                                                                                   1.00
3043                                                                                                  45-88
3044                                                                                                 272.00
3045                                                                                                 500.00
3046                                                                                                 400.00
3047                                                                                                  62.50
3048                                                                                                   5.00
3049                                                                                                   2.50
3050                                                                                                   7.50
3051                                                                                                 68-136
3052                                                                                                 272.00
3053                                                                                                 227.00
3054                                                                                                 500.00
3055                                                                                            application
3056                                                                                                 100.00
3057                                                                                                  75.00
3058                                                                                            application
3059                                                                                                 500.00
3060                                                                                            unspecified
3061                                                                                                 272.00
3062                                                                                                 227.00
3063                                                                                                 272.00
3064                                                                                                 227.00
3065                                                                                                  10.00
3066                                                                                                 272.00
3067                                                                                                 227.00
3068                                                                                                  10.00
3069                                                                                                 272.00
3070                                                                                                  10.00
3071                                                                                                 400.00
3072                                                                                                 136.00
3073                                                                                                   8.00
3074                                                                                                  16.00
3075                                                                                                 272.00
3076                                                                                                  50.00
3077                                                                                                 150.00
3078                                                                                                 400.00
3079                                                                                                 136.00
3080                                                                                                 150.00
3081                                                                                                  50.00
3082                                                                                                 272.00
3083                                                                                                  50.00
3084                                                                                                   7.00
3085                                                                                                  10.00
3086                                                                                                  18.50
3087                                                                                                  50.00
3088                                                                                                 100.00
3089                                                                                                   4.70
3090                                                                                                  23.00
3091                                                                                                 240.00
3092                                                                                                 100 mg
3093                                                                                                 500.00
3094                                                                                                  20.00
3095                                                                               2 tablets/pills/capsules
3096                                                                                                 500 mg
3097                                                                                                 272.00
3098                                                                                                  12.50
3099                                                                                                  75.00
3100                                                                                                  50.00
3101                                                                                                 240.00
3102                                                                                                 136.00
3103                                                                                                 272.00
3104                                                                                                 136.00
3105                                                                                                  25.00
3106                                                                                                 272.00
3107                                                                                                 136.00
3108                                                                                                  25-50
3109                                                                                                   0.25
3110                                                                                           small amount
3111                                                                                                 500.00
3112                                                                                                   6.00
3113                                                                                                  16.00
3114                                                                                                  20.00
3115                                                                                                  20.00
3116                                                                                                 500.00
3117                                                                                                 200.00
3118                                                                                                  12.50
3119                                                                                            as directed
3120                                                                                                   0.25
3121                                                                                                 272.00
3122                                                                                                 136.00
3123                                                                                                  16.00
3124                                                                                                   1.00
3125                                                                                                  16.00
3126                                                                                                  75.00
3127                                                                                                   4.00
3128                                                                                                  30.00
3129                                                                                                   4.00
3130                                                                                                  30.00
3131                                                                                                   2.00
3132                                                                                                   4.00
3133                                                                                                   2.00
3134                                                                                                   3.00
3135                                                                                                   1.00
3136                                                                                                 240.00
3137                                                                                                   0.09
3138                                                                                                  30.00
3139                                                                                                   4.00
3140                                                                                                2 pumps
3141                                                                                                 240.00
3142                                                                                                  80.00
3143                                                                                                   4.00
3144                                                                                                  30.00
3145                                                                                                   2.00
3146                                                                                                  10 mg
3147                                                                                            unspecified
3148                                                                                                  30.00
3149                                                                                                   0.30
3150                                                                                                   0.30
3151                                                                                                   0.30
3152                                                                                                  75.00
3153                                                                                                 500.00
3154                                                                                                  60.00
3155                                                                                                  18.00
3156                                                                                                   4.00
3157                                                                                                   1.00
3158                                                                                                   1.00
3159                                                                                                   2.00
3160                                                                                                  50.00
3161                                                                                                 300.00
3162                                                                                                   2.00
3163                                                                                                   1.00
3164                                                                                                   4.00
3165                                                                                                   1.00
3166                                                                                                   2.00
3167                                                                                                  12.00
3168                                                                                                  50.00
3169                                                                                                   3.00
3170                                                                                                 500.00
3171                                                                                                   3.20
3172                                                                                                   5.00
3173                                                                                                 272.00
3174                                                                                                 227.00
3175                                                                                                 810.00
3176                                                                                                  13.50
3177                                                                                                 180.00
3178                                                                                                   1.50
3179                                                                                  1 tablet/pill/capsule
3180                                                                                            unspecified
3181                                                                                                1000.00
3182                                                                                                 272.00
3183                                                                                                  10.00
3184                                                                                                 500.00
3185                                                                                                 300.00
3186                                                                                                 272.00
3187                                                                                                1000.00
3188                                                                                                 320.00
3189                                                                                                 310.00
3190                                                                                                 300.00
3191                                                                                                   0.30
3192                                                                                                   1.00
3193                                                                                                 100.00
3194                                                                                                1000.00
3195                                                                                                 272.00
3196                                                                                                1000.00
3197                                                                                                 450.00
3198                                                                                                   1.50
3199                                                                                                 600.00
3200                                                                                                  20.00
3201                                                                                                   1.00
3202                                                                                                  15.00
3203                                                                                                   1.00
3204                                                                                                   8.00
3205                                                                                                 120.00
3206                                                                                                   8.20
3207                                                                                               45293.00
3208                                                                                  1 tablet/pill/capsule
3209                                                                                  1 tablet/pill/capsule
3210                                                                                                 272.00
3211                                                                                                1000.00
3212                                                                                                 1 pump
3213                                                                                                   0.01
3214                                                                                                 500.00
3215                                                                                                 500.00
3216                                                                                                   1.50
3217                                                                                                 100.00
3218                                                                                                   1.00
3219                                                                                                   2.00
3220                                                                                                  75.00
3221                                                                                                   0.70
3222                                                                                                   0.35
3223                                                                                                   0.35
3224                                                                                                   0.30
3225                                                                                                   0.30
3226                                                                                                   1.00
3227                                                                                                1000.00
3228                                                                                                   0.30
3229                                                                                                   0.60
3230                                                                                                1000.00
3231                                                                                                 500.00
3232                                                                                                   0.30
3233                                                                                                   1.00
3234                                                                                                   1.00
3235                                                                                                1000.00
3236                                                                                                   0.30
3237                                                                                                   1.00
3238                                                                                                   1.00
3239                                                                                                  34.50
3240                                                                                                 272.00
3241                                                                                                1000.00
3242                                                                                                   0.30
3243                                                                                                   1.00
3244                                                                                                   1.00
3245                                                                                                  68.00
3246                                                                           based on weight (50-100 lbs)
3247                                                                           based on weight (50-100 lbs)
3248                                                                                                 500.00
3249                                                                                                  10.00
3250                                                                           based on weight (50-100 lbs)
3251                                                                           based on weight (50-100 lbs)
3252                                                                                                1900.00
3253                                                                           based on weight (50-100 lbs)
3254                                                                                                 50-100
3255                                                                                                 50-100
3256                                                                                                  10.00
3257                                                                           based on weight (50-100 lbs)
3258                                                                                                 300.00
3259                                                                                                 100.00
3260                                                                                                  56.00
3261                                                                                                 500 mg
3262                                                                                                 136.00
3263                                                                                                   1.00
3264                                                                                                   1.00
3265                                                                                                   1.00
3266                                                                                                 100.00
3267                                                                                                 250.00
3268                                                                                                   1.00
3269                                                                                                   1.00
3270                                                                                                62.5 mg
3271                                                                           based on weight (51-100 lbs)
3272                                                                                                   1.00
3273                                                                                                   1.00
3274                                                                                                 500.00
3275                                                                                                 625.00
3276                                                                                                  14.00
3277                                                                                                 750.00
3278                                                                                        0.25 inch strip
3279                                                                                                  50.00
3280                                                                           based on weight (50-100 lbs)
3281                                                                                                   1.00
3282                                                                                                 375.00
3283                                                                                                  50.00
3284                                                                           based on weight (51-100 lbs)
3285                                                                                                 500.00
3286                                                                                                 100.00
3287                                                                                            application
3288                                                                                                 200.00
3289                                                                                                  10.00
3290                                                                                                  40.00
3291                                                                                            application
3292                                                                                                 500.00
3293                                                                                            application
3294                                                                           based on weight (51-100 lbs)
3295                                                                                                 500.00
3296                                                                                                   1.00
3297                                                                                                 150.00
3298                                                                                                  40.00
3299                                                                                                  15.00
3300                                                                           based on weight (51-100 lbs)
3301                                                                                                  50.00
3302                                                                                                  50.00
3303                                                                                                 50-100
3304                                                                                                   1.00
3305                                                                                           small amount
3306                                                                                                 272.00
3307                                                                                                1400.00
3308                                                                                                 272.00
3309                                                                                                1000.00
3310                                                                                                 272.00
3311                                                                                                1400.00
3312                                                                                           small amount
3313                                                                                           small amount
3314                                                                                                  23.00
3315                                                                                                   1.00
3316                                                                                                  80.00
3317                                                                                                 300.00
3318                                                                                                 150.00
3319                                                                                                 300.00
3320                                                                                                   6.00
3321                                                                                                1000.00
3322                                                                                                   0.60
3323                                                                                                   3.60
3324                                                                                                  15.00
3325                                                                                                  90.00
3326                                                                                                  60.00
3327                                                                                                  45.00
3328                                                                                                  23.00
3329                                                                                                  37.50
3330                                                                                                   1.00
3331                                                                                                   1.00
3332                                                                                                 500.00
3333                                                                                                   2.00
3334                                                                                                   4.00
3335                                                                                                   1.00
3336                                                                                                   1.00
3337                                                                                                 500.00
3338                                                                                                   1.00
3339                                                                           based on weight (51-100 lbs)
3340                                                                                                  75.00
3341                                                                                                  50.00
3342                                                                                            unspecified
3343                                                                                                 500.00
3344                                                                                                 500.00
3345                                                                                                23, 460
3346                                                               460 mg lufenuron, 23 mg milbemycin oxime
3347                                                                                                 500.00
3348                                                                                                 125.00
3349                                                                                                  13.50
3350                                                                                            unspecified
3351                                                                                                 227.00
3352                                                                                                 136.00
3353                                                                                                 114.00
3354                                                                                                 204.00
3355                                                                                                 136.00
3356                                                                                                   1.00
3357                                                                                                 150.00
3358                                                                                                 136.00
3359                                                                                                  44-88
3360                                                                                        based on weight
3361                                                                                                 150.00
3362                                                                                                 272.00
3363                                                                                                   4.00
3364                                                                                                  50.00
3365                                                                                                   1.00
3366                                                                                            unspecified
3367                                                                                                1250.00
3368                                                                                                 100.00
3369                                                                                                  27.00
3370                                                                                                   6.00
3371                                                                                                   6.00
3372                                                                                            unspecified
3373                                                                                                 227.00
3374                                                                                                 136.00
3375                                                                                  based on weight - 1.5
3376                                                                                            application
3377                                                                                                 272.00
3378                                                                                                 136.00
3379                                                                                                   1.00
3380                                                                                                   5.00
3381                                                                                                1000.00
3382                                                                                                  10.00
3383                                                                                                 136.00
3384                                                                                                  44-88
3385                                                                                                   2.00
3386                                                                                                   2.00
3387                                                                                                   1.00
3388                                                                                                 272.00
3389                                                                                                   4.00
3390                                                                                                   0.80
3391                                                                                                 204.00
3392                                                                                                 600.00
3393                                                                                                   1.00
3394                                                                                            unspecified
3395                                                                                                 250.00
3396                                                                                                  68.00
3397                                                                                                1200.00
3398                                                                                                 500.00
3399                                                              13.5 mg milbemycin oxime, 810 mg spinosad
3400                                                                                                  11.50
3401                                                                                                  68.00
3402                                                                                                1000.00
3403                                                                                              13.5, 810
3404                                                                                  1 tablet/pill/capsule
3405                                                                                  1 tablet/pill/capsule
3406                                                                                                 1 tube
3407                                                                                                 50-100
3408                                                                                                  24-60
3409                                                                                                   1.00
3410                                                                                                 100.00
3411                                                                                                   1.00
3412                                                                                                 113.50
3413                                                                                                 200.00
3414                                                                                                  60.00
3415                                                                                                 113.50
3416                                                                                                   1.00
3417                                                                                                  60.00
3418                                                                                                   5.00
3419                                                                                                  60.00
3420                                                                                                  25.00
3421                                                                                            unspecified
3422                                                                                                  drops
3423                                                                                                 1 tube
3424                                                                                                   2.70
3425                                                                                            unspecified
3426                                                                                            unspecified
3427                                                                                                   3.75
3428                                                                                                1620.00
3429                                                                             based on weight (4-60 lbs)
3430                                                                                                  23.00
3431                                                                                                1000.00
3432                                                                                                  23.00
3433                                                                                                1000.00
3434                                                                                                 227.00
3435                                                                                                1000.00
3436                                                                                                  60.00
3437                                                                                           small amount
3438                                                                                                  60.00
3439                                                                                                 1 tube
3440                                                                                                 272.00
3441                                                                                                1000.00
3442                                                                                                 272.00
3443                                                                                                 136.00
3444                                                                                                  70 mg
3445                                                                                            unspecified
3446                                                                                            unspecified
3447                                                                                            unspecified
3448                                                                                            unspecified
3449                                                                                            unspecified
3450                                                                                                  11.50
3451                                                                                                23, 460
3452                                                                                                  23.00
3453                                                                                                  23.00
3454                                                                                                   9.80
3455                                                                                                23, 460
3456                                                                            based on weight (45-88 lbs)
3457                                                                           based on weight (51-100 lbs)
3458                                                                            based on weight (45-88 lbs)
3459                                                                                                23, 460
3460                                                                                                  23.00
3461                                                                                                   2.68
3462                                                                                                   0.70
3463                                                                                                   0.60
3464                                                                                                   0.80
3465                                                                                                  50 mg
3466                                                                                                 272.00
3467                                                                                                  50.00
3468                                                                                                   2.80
3469                                                                                                 272.00
3470                                                                                                  50.00
3471                                                                                                  50.00
3472                                                                                                 272.00
3473                                                                                                  50.00
3474                                                                                                 200.00
3475                                                                                                  50.00
3476                                                                                                 150.00
3477                                                                                                  50.00
3478                                                                                                   1.00
3479                                                                                                  23.00
3480                                                                                                   1.00
3481                                                                                                 750.00
3482                                                                                                   7.50
3483                                                                                                  23.00
3484                                                                                                 460.00
3485                                                                                                  23.00
3486                                                                                                 200.00
3487                                                                                                  45-88
3488                                                                              based on weight (25+ lbs)
3489                                                                                                 170.00
3490                                                                          based on weight (44.1-88 lbs)
3491                                                                           based on weight (51-100 lbs)
3492                                                                          based on weight (44.1-88 lbs)
3493                                                                                                  60.00
3494                                                                                                 750.00
3495                                                                           based on weight (51-100 lbs)
3496                                                                          based on weight (44.1-88 lbs)
3497                                                                           based on weight (51-100 lbs)
3498                                                                          based on weight (44.1-88 lbs)
3499                                                                                                 500.00
3500                                                                                                  75.00
3501                                                                                                 200.00
3502                                                                                                1000.00
3503                                                                                                  50.00
3504                                                                                                  75.00
3505                                                                                                 250.00
3506                                                                                                  60.00
3507                                                                                                 500.00
3508                                                                                                  60.00
3509                                                                                                   3.00
3510                                                                                                   2.50
3511                                                                                                  75.00
3512                                                                           based on weight (50-100 lbs)
3513                                                                           based on weight (50-100 lbs)
3514                                                                           based on weight (50-100 lbs)
3515                                                                           based on weight (50-100 lbs)
3516                                                                           based on weight (50-100 lbs)
3517                                                                                            unspecified
3518                                                                                                 100.00
3519                                                                           based on weight (51-100 lbs)
3520                                                                                        based on weight
3521                                                                                                1000.00
3522                                                                           based on weight (51-100 lbs)
3523                                                                                                1000.00
3524                                                                                                 800.00
3525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
3526                                                                                                272 mcg
3527                                                                                                 272.00
3528                                                                                                 200.00
3529                                                                                                  90.00
3530                                                                                               0.5%, 3%
3531                                                                                            unspecified
3532                                                                                                  90.00
3533                                                                                                  75.00
3534                                                                                                  90.00
3535                                                                                            unspecified
3536                                                                                                  75.00
3537                                                                                                 100.00
3538                                                                                                 200.00
3539                                                                                                  20.00
3540                                                                                                  25.00
3541                                                                                                  30.00
3542                                                                                                  57.00
3543                                                                                                   0.05
3544                                                                                                   9.30
3545                                                                                                 810.00
3546                                                                                                  13.50
3547                                                                                                 272.00
3548                                                                                                  23.00
3549                                                                                                  23.00
3550                                                                                                  23.00
3551                                                                                                 272.00
3552                                                                                                  68.00
3553                                                                                                 500.00
3554                                                                                                  10.00
3555                                                                                                 272.00
3556                                                                                                  68.00
3557                                                                                                 272.00
3558                                                                                                   1.00
3559                                                                                                 500.00
3560                                                                                                   1.00
3561                                                                                                   1.00
3562                                                                                                   1.00
3563                                                                                                   1.00
3564                                                                                                   1.00
3565                                                                                                 100.00
3566                                                                                                   1.00
3567                                                                                                 100.00
3568                                                                                                1620.00
3569                                                                                                  27.00
3570                                                                                                 200.00
3571                                                                                                   1.50
3572                                                                                                  32.50
3573                                                                                                 375.00
3574                                                                                                   4.00
3575                                                                                                  55.00
3576                                                                                                1620.00
3577                                                                                                  27.00
3578                                                                                                 375.00
3579                                                                                                1620.00
3580                                                                                                  27.00
3581                                                                                    tablet/pill/capsule
3582                                                                                                   1.70
3583                                                                                                   0.09
3584                                                                                                   1.30
3585                                                                                                   3.40
3586                                                                                                   2.00
3587                                                                                                   8.50
3588                                                                                                1.5-2.5
3589                                                                                                1620.00
3590                                                                                                  27.00
3591                                                                                                   0.20
3592                                                                                                   0.30
3593                                                                                                   3.00
3594                                                                                                   0.03
3595                                                                                                   1.40
3596                                                                                                  75.00
3597                                                                                                 200.00
3598                                                                                                 100.00
3599                                                                                                 200.00
3600                                                                                              1.9 mg/ml
3601                                                                                                  75 mg
3602                                                                                                  75.00
3603                                                                                                 100.00
3604                                                                                                 190.00
3605                                                                                                  80.00
3606                                                                                                   1.00
3607                                                                                                   1.00
3608                                                                                                  16.00
3609                                                                                                  75.00
3610                                                                                                   2.00
3611                                                                                                1620.00
3612                                                                                                  27.00
3613                                                                                                  16.00
3614                                                                                                1620.00
3615                                                                                                  27.00
3616                                                                                                   1.00
3617                                                                                                   3.00
3618                                                                                                  80.00
3619                                                                                                23, 228
3620                                                                                                 375.00
3621                                                                                                  16.00
3622                                                                                           pack/package
3623                                                                                                  80.00
3624                                                                                                  11.50
3625                                                                                                  60.00
3626                                                                                                  20.00
3627                                                                                                 272.00
3628                                                                                                  40.00
3629                                                                                                 500.00
3630                                                                                                  10.00
3631                                                                                  1 tablet/pill/capsule
3632                                                                                  1 tablet/pill/capsule
3633                                                                                                 100.00
3634                                                                                                 230.00
3635                                                                            based on weight (44-88 lbs)
3636                                                                                                   2 ml
3637                                                                                                 325.00
3638                                                                                                  50.00
3639                                                                                            application
3640                                                                                            application
3641                                                                                            application
3642                                                                                                 250.00
3643                                                                                                  20.00
3644                                                                                                1300.00
3645                                                                                                   5.00
3646                                                                                                   4.00
3647                                                                                                   4.00
3648                                                                                                   4.00
3649                                                                                         100 mg, 400 mg
3650                                                                              based on weight (<80 lbs)
3651                                                                                                 500 mg
3652                                                                                    tablet/pill/capsule
3653                                                                                                   7.00
3654                                                                                                 500.00
3655                                                                                                  68.00
3656                                                                                                 250.00
3657                                                                                                   6.00
3658                                                                                                 102.00
3659                                                                                                 375.00
3660                                                                                                   1.34
3661                                                                                                 136.00
3662                                                                                                   2.68
3663                                                                                                   1.00
3664                                                                                                 272.00
3665                                                                                                 136.00
3666                                                                                                  spray
3667                                                                                           small amount
3668                                                                                                   1.00
3669                                                                                                   1.00
3670                                                                                                   1.00
3671                                                                                                  23.00
3672                                                                                                 136.00
3673                                                                                                  16.00
3674                                                                                                  16.00
3675                                                                                           small amount
3676                                                                                                1000.00
3677                                                                                                  23.00
3678                                                                                                   1.00
3679                                                                                                  75.00
3680                                                                                                1000.00
3681                                                                                                   2.70
3682                                                                                                   3.70
3683                                                                                                   0.52
3684                                                                                            unspecified
3685                                                                                            unspecified
3686                                                                                                1000.00
3687                                                                                                  75.00
3688                                                                                                   6.00
3689                                                                                                   1.00
3690                                                                                                   1.00
3691                                                                                            unspecified
3692                                                                                            unspecified
3693                                                                                                  spray
3694                                                                                                  16.00
3695                                                                                                  16.00
3696                                                                                                 272.00
3697                                                                                                 500.00
3698                                                                            based on weight (40-85 lbs)
3699                                                                            based on weight (40-85 lbs)
3700                                                                                                  50.00
3701                                                                           based on weight (51-100 lbs)
3702                                                                                                 750.00
3703                                                                                                 500.00
3704                                                                           based on weight (50-100 lbs)
3705                                                                                        based on weight
3706                                                                           based on weight (50-100 lbs)
3707                                                                                                 200.00
3708                                                                                                 300.00
3709                                                                                                  74.00
3710                                                                                            unspecified
3711                                                                                                  75.00
3712                                                                                                 250.00
3713                                                                                                 187.50
3714                                                                                                 125.00
3715                                                                                                  62.50
3716                                                                                                  12.50
3717                                                                                                  10.00
3718                                                                                           small amount
3719                                                                           based on weight (51-100 lbs)
3720                                                                                                   1.00
3721                                                                                                 272.00
3722                                                                                                  68.00
3723                                                                                                   2.50
3724                                                                                                  60.00
3725                                                                           based on weight (51-100 lbs)
3726                                                                           based on weight (51-100 lbs)
3727                                                                                                 272.00
3728                                                                                                  16.08
3729                                                                                                   3.00
3730                                                                                                   5.00
3731                                                                                                  50.00
3732                                                                                                 272.00
3733                                                                                                   1.00
3734                                                                                                  10.00
3735                                                                                                   gtts
3736                                                                                                 500.00
3737                                                                                                 100.00
3738                                                                                                1 mg/kg
3739                                                                                                 800.00
3740                                                                                                  75.00
3741                                                                                            unspecified
3742                                                                                            unspecified
3743                                                                                            unspecified
3744                                                                                            unspecified
3745                                                                                            unspecified
3746                                                                                                  90.00
3747                                                                                                  10.00
3748                                                                                                 100.00
3749                                                                                                   1.00
3750                                                                                          23 mg, 460 mg
3751                                                                                                   1.00
3752                                                                                                 272.00
3753                                                                                                 227.00
3754                                                                                                   0.02
3755                                                                                                 500.00
3756                                                                                                   0.01
3757                                                                                                 200.00
3758                                                                                                   0.01
3759                                                                                                   0.02
3760                                                               27 mg milbemycin oxime, 1620 mg spinosad
3761                                                                                                   1.00
3762                                                                                                 150.00
3763                                                                                                   1.00
3764                                                                                                  10.00
3765                                                                                                  10.00
3766                                                                                                 300.00
3767                                                                                                  50.00
3768                                                                                                 100.00
3769                                                                                                 250.00
3770                                                                                                1620.00
3771                                                                                                   5.00
3772                                                                                                   1.00
3773                                                                                            application
3774                                                                                                   0.03
3775                                                                                                1692.00
3776                                                                                                 375.00
3777                                                                                                  16.00
3778                                                                                                   1.00
3779                                                                                                1620.00
3780                                                                                                 100.00
3781                                                                                                 1 drop
3782                                                                                                 1 drop
3783                                                                                                 1 drop
3784                                                                         1 tablet/pill/capsule - 250 mg
3785                                                                           1 tablet/pill/capsule - 5 mg
3786                                                                          1 tablet/pill/capsule - 20 mg
3787                                                                                                1620.00
3788                                                                                                  70.00
3789                                                                                            unspecified
3790                                                                                                  16.00
3791                                                                                                   1.00
3792                                                                                                 250.00
3793                                                                                                   1.00
3794                                                                                                   5.00
3795                                                                                                   1.00
3796                                                                                                  10.00
3797                                                                                                  spray
3798                                                                                            as directed
3799                                                                                                  16.00
3800                                                                                            application
3801                                                                                                  16.00
3802                                                                                                  75.00
3803                                                                                              1200-2400
3804                                                                                                 200 mg
3805                                                                                                  16.00
3806                                                                                                 250.00
3807                                                                                                   5.00
3808                                                                                                  75.00
3809                                                                                                 120.00
3810                                                                                                 272.00
3811                                                                                                  75.00
3812                                                                                                  75.00
3813                                                                                                 272.00
3814                                                                                                 272.00
3815                                                                                        based on weight
3816                                                                                                   1.00
3817                                                                                                   2.90
3818                                                                                                   5.80
3819                                                                                                   1.00
3820                                                                                                  60.00
3821                                                                                                 170.00
3822                                                                                                   2.00
3823                                                                                                  60.00
3824                                                                                                   1.00
3825                                                                                                  20.00
3826                                                                                                  75.00
3827                                                                                                 560.00
3828                                                                                                 500.00
3829                                                                                           small amount
3830                                                                                                 2.5 ml
3831                                                                                                1620.00
3832                                                                                                  50.00
3833                                                                                                   2.50
3834                                                                                                   3.00
3835                                                                           based on weight (50-100 lbs)
3836                                                                           based on weight (60-120 lbs)
3837                                                                                                 0.4 mg
3838                                                                           based on weight (60-120 lbs)
3839                                                                                                 0.3 mg
3840                                                                                           small amount
3841                                                                                                 272.00
3842                                                                                                 136.00
3843                                                                                                   0.40
3844                                                                                                   3.00
3845                                                                                                   0.40
3846                                                                                                  32.50
3847                                                                                                  50.00
3848                                                                                        0.25 inch strip
3849                                                                                                 136.00
3850                                                                                                   1.00
3851                                                                                                  32.50
3852                                                                                                 500.00
3853                                                                                                  50.00
3854                                                                                                 500.00
3855                                                                                                 200.00
3856                                                                                                  50.00
3857                                                                           based on weight (51-100 lbs)
3858                                                                            based on weight (23-44 lbs)
3859                                                                            based on weight (26-50 lbs)
3860                                                                          based on weight (24.1-60 lbs)
3861                                                                                            unspecified
3862                                                                                                  37.50
3863                                                                                                 560.00
3864                                                                                                 500.00
3865                                                                                                 250.00
3866                                                                                                  50.00
3867                                                                                           small amount
3868                                                                                                 272.00
3869                                                                                                 136.00
3870                                                                           based on weight (50-100 lbs)
3871                                                                           based on weight (60-120 lbs)
3872                                                                           based on weight (60-120 lbs)
3873                                                                                                   0.40
3874                                                                                           small amount
3875                                                                                                 272.00
3876                                                                                                 136.00
3877                                                                                                   0.40
3878                                                                                                   0.30
3879                                                                                                   0.30
3880                                                                                                   0.80
3881                                                                           based on weight (51-100 lbs)
3882                                                                                                 960.00
3883                                                                                                 272.00
3884                                                                                                  45-88
3885                                                                                                  45-88
3886                                                                           based on weight (51-100 lbs)
3887                                                                                                 113.50
3888                                                                                                   3.00
3889                                                                           based on weight (51-100 lbs)
3890                                                                                                  45-88
3891                                                                                                 272.00
3892                                                                                                   2.68
3893                                                                                                 200.00
3894                                                                                                  10.00
3895                                                                                                1000.00
3896                                                                                                  44-88
3897                                                                           based on weight (51-100 lbs)
3898                                                                                            unspecified
3899                                                                                                 100.00
3900                                                                           based on weight (51-100 lbs)
3901                                                                                                 272.00
3902                                                                                                  44-88
3903                                                                           based on weight (51-100 lbs)
3904                                                                                                  45-88
3905                                                                                                  10.00
3906                                                                           based on weight (51-100 lbs)
3907                                                                                                  45-88
3908                                                                                                 272.00
3909                                                                                                   2.68
3910                                                                                                1000.00
3911                                                                           based on weight (51-100 lbs)
3912                                                                                                  45-88
3913                                                                                                 272.00
3914                                                                                                 272.00
3915                                                                                                  23.00
3916                                                                                                 460.00
3917                                                                                                 272.00
3918                                                                                                 227.00
3919                                                                                                 272.00
3920                                                                                                 227.00
3921                                                                                                   2.68
3922                                                                                                   4.00
3923                                                                                                   2.68
3924                                                                                                  23.00
3925                                                                                                  23.00
3926                                                                                                  23.00
3927                                                                                                 100.00
3928                                                                                                  75.00
3929                                                                                                  50.00
3930                                                                                                1647.00
3931                                                                                                 500.00
3932                                                                                                 250.00
3933                                                                                                  50.00
3934                                                                                                   3.60
3935                                                                                                 843.50
3936                                                                                                  41-60
3937                                                                                                   1.00
3938                                                                           based on weight (51-100 lbs)
3939                                                                                                 100.00
3940                                                                                                   5.00
3941                                                                                                 200.00
3942                                                                                                  25-60
3943                                                                           based on weight (51-100 lbs)
3944                                                                                                 7.5 ml
3945                                                                                                   8 oz
3946                                                                          based on weight (24.1-60 lbs)
3947                                                                                                  16.00
3948                                                                                                  20.00
3949                                                                                                   1.00
3950                                                                                                 375.00
3951                                                                                                 100.00
3952                                                                           based on weight (51-100 lbs)
3953                                                                                                  50.00
3954                                                                                                 375.00
3955                                                                                                  24-50
3956                                                                                                  60.00
3957                                                                                                   2.00
3958                                                                                                   1.00
3959                                                                                                 100.00
3960                                                                                                   1.00
3961                                                                                                 100.00
3962                                                                                                 375.00
3963                                                                                                 100.00
3964                                                                                                  60.00
3965                                                                                                  75.00
3966                                                                                                1647.00
3967                                                                                                  25.00
3968                                                                                                  25.00
3969                                                                                                  12.50
3970                                                                                                 826.50
3971                                                                                                   3.60
3972                                                                          based on weight (40.1-60 lbs)
3973                                                                                                  12.50
3974                                                                                                  50.00
3975                                                                                                  12.50
3976                                                                                                  35.00
3977                                                                                                 200.00
3978                                                                                                   2.00
3979                                                                                                   2.00
3980                                                                           based on weight (51-100 lbs)
3981                                                                                                  24-60
3982                                                                                                  12.50
3983                                                                                                  12.50
3984                                                                           based on weight (51-100 lbs)
3985                                                                                                  24-60
3986                                                                                                 300.00
3987                                                                                                 150.00
3988                                                                                                 150.00
3989                                                                           based on weight (51-100 lbs)
3990                                                                           based on weight (51-100 lbs)
3991                                                                                                  12.50
3992                                                                                                 150.00
3993                                                                                                 375.00
3994                                                                                                 100.00
3995                                                                                                   1.10
3996                                                                                                  12.50
3997                                                                                                  60.00
3998                                                                                                  12.50
3999                                                                                                 110.00
4000                                                                                            unspecified
4001                                                                                                   1.00
4002                                                                                                   1.20
4003                                                                                                  12.50
4004                                                                                                  12.50
4005                                                                                                   1.10
4006                                                                                                   1.00
4007                                                                                                 100.00
4008                                                                                                  60.00
4009                                                                                                   2.00
4010                                                                                                   1.00
4011                                                                                                 500.00
4012                                                                                                 136.00
4013                                                                                                  23.00
4014                                                                                                  23.00
4015                                                                                                  23.00
4016                                                                                                   1.00
4017                                                                           based on weight (51-100 lbs)
4018                                                                                                 200.00
4019                                                                                                  16.00
4020                                                                                                 300.00
4021                                                                                                 200.00
4022                                                                                                 500.00
4023                                                                                                 150.00
4024                                                                                                 100.00
4025                                                                                                  50.00
4026                                                                                                   6.00
4027                                                                                                  10.00
4028                                                                                                 111.00
4029                                                                                                1000.00
4030                                                                                         27 mg, 1620 mg
4031                                                                         based on weight (60.1-120 lbs)
4032                                                                                                   4.70
4033                                                                                                 136.00
4034                                                                                                  75.00
4035                                                                                                 100.00
4036                                                                                                 200.00
4037                                                                                                  23.00
4038                                                                                                1620.00
4039                                                                                                  23.00
4040                                                                                                1620.00
4041                                                                                                 500.00
4042                                                                                            unspecified
4043                                                                                                  75.00
4044                                                                                                 1.1 ml
4045                                                                                  1 tablet/pill/capsule
4046                                                                                                   1.40
4047                                                                                                  80 mg
4048                                                                                                 500.00
4049                                                                                                 720.00
4050                                                                                                 500.00
4051                                                                                                  10.00
4052                                                                                                  25.00
4053                                                                                                   3.00
4054                                                                                                   9.00
4055                                                                                                 500.00
4056                                                                                                  10.00
4057                                                                                                  60.00
4058                                                                           based on weight (51-100 lbs)
4059                                                  2 mg prednisolone acetate, 5 mg trimeprazine tartrate
4060                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4061                                                                                                 272.00
4062                                                                                                 227.00
4063                                                                           based on weight (51-100 lbs)
4064                                                                            based on weight (44-88 lbs)
4065                                                                                                  16.00
4066                                                                                            unspecified
4067                                                                                            unspecified
4068                                                                                            unspecified
4069  2.5 mg neomycin sulfate, 100000 units nystatin, 2500 units thiostrepton, 1 mg triamcinolone acetonide
4070                                                                          1 tablet/pill/capsule - 16 mg
4071                                                                                           small amount
4072                                                                                  1 tablet/pill/capsule
4073                                                                                  1 tablet/pill/capsule
4074                                                                                        based on weight
4075                                                                                        based on weight
4076                                                                                                  16 mg
4077                                                                                        based on weight
4078                                                                                                 100.00
4079                                                                                                 500.00
4080                                                                                                 750.00
4081                                                                                                 100.00
4082                                                                                                 113.50
4083                                                                                                 750.00
4084                                                                                                 170.00
4085                                                                                                 100.00
4086                                                                                                  70.00
4087                                                                                            unspecified
4088                                                                                            unspecified
4089                                                                                            unspecified
4090                                                                                                 113.50
4091                                                                                                   1.20
4092                                                                                      1 syringe/pipette
4093                                                                                                   1.50
4094                                                                                                   3.00
4095                                                                                  1 tablet/pill/capsule
4096                                                                                                 1.6 ml
4097                                                                          1 tablet/pill/capsule - 80 mg
4098                                                                                                 500.00
4099                                                                                                 150.00
4100                                                                                                 100.00
4101                                                                                                   8.00
4102                                                                                                   3.00
4103                                                                                                 150.00
4104                                                                                                 500.00
4105                                                                                                 720.00
4106                                                                                                 650.00
4107                                                                                                 150.00
4108                                                                                                  60.00
4109                                                                                                   1.00
4110                                                                                                  45.00
4111                                                                           based on weight (60-120 lbs)
4112                                                                           based on weight (50-100 lbs)
4113                                                                                           small amount
4114                                                                                           small amount
4115                                                                                                 200.00
4116                                                                                               tapering
4117                                                                            based on weight (45-88 lbs)
4118                                                                           based on weight (60-120 lbs)
4119                                                                                           small amount
4120                                                                           based on weight (60-120 lbs)
4121                                                                                                1620.00
4122                                                                                                 60-120
4123                                                                                                 200.00
4124                                                                                                  16.00
4125                                                                                               27, 1620
4126                                                                                                 200.00
4127                                                                           based on weight (51-100 lbs)
4128                                                                         based on weight (60.1-121 lbs)
4129                                                                                                 200.00
4130                                                                                                 60-120
4131                                                                                                  spray
4132                                                                                            unspecified
4133                                                                                            unspecified
4134                                                                                            unspecified
4135                                                                                                  16.00
4136                                                                                                  50.00
4137                                                                                                 100.00
4138                                                                                                 100.00
4139                                                                                                   3.00
4140                                                                                                   7.50
4141                                                                                                  20.00
4142                                                                                                 160.00
4143                                                                                                  10.00
4144                                                                                                 500.00
4145                                                                                                   3.00
4146                                                                                                   6.00
4147                                                                                                   1.50
4148                                                                                                 500.00
4149                                                                                                 227.00
4150                                                                                                 100.00
4151                                                                                                  73.00
4152                                                                                                 500.00
4153                                                                                                 500.00
4154                                                                                                   1.00
4155                                                                                                   1.34
4156                                                                                                 272.00
4157                                                                                                 227.00
4158                                                                                                   2.68
4159                                                                                                 0.5 ml
4160                                                                                                   1 ml
4161                                                                                                272 mcg
4162                                                                           based on weight (50-100 lbs)
4163                                                                                                   2.00
4164                                                                                                   4.40
4165                                                                                                  20.00
4166                                                                                                  37.50
4167                                                                                                1000.00
4168                                                                                                   1.00
4169                                                                                                  80.00
4170                                                                                                   4.00
4171                                                                                                 500.00
4172                                                                            based on weight (45-88 lbs)
4173                                                                                                 272.00
4174                                                                                                 272.00
4175                                                                                                   1.00
4176                                                                                                   1.00
4177                                                                                                 272.00
4178                                                                                                1620.00
4179                                                                                                1620.00
4180                                                                                                 360.00
4181                                                                                                 360.00
4182                                                                                                 240.00
4183                                                                            based on weight (40-85 lbs)
4184                                                                            based on weight (40-85 lbs)
4185                                                                                                 100.00
4186                                                                                                  75.00
4187                                                                                                 200.00
4188                                                                                                 240.00
4189                                                                                  1 tablet/pill/capsule
4190                                                                                  1 tablet/pill/capsule
4191                                                                           based on weight (60-120 lbs)
4192                                                                                                  75.00
4193                                                                                            application
4194                                                                                                 200.00
4195                                                                                                   6.00
4196                                                                                                1620.00
4197                                                                                                   1.00
4198                                                                           based on weight (60-120 lbs)
4199                                                                           based on weight (50-100 lbs)
4200                                                                                                 200.00
4201                                                                                                  16.00
4202                                                                                                  23.00
4203                                                                                                  80.00
4204                                                                                                   1 ml
4205                                                                                                 375.00
4206                                                                                                  80.00
4207                                                                                                 810.00
4208                                                                                                 272.00
4209                                                                                  1 tablet/pill/capsule
4210                                                                           based on weight (60-120 lbs)
4211                                                                                                 810.00
4212                                                                                              13.5, 810
4213                                                                                           23, 228, 460
4214                                                                                                  23.00
4215                                                                                                23, 460
4216                                                                                            unspecified
4217                                                                                                  20.00
4218                                                                                            unspecified
4219                                                                                                 100.00
4220                                                                                                 120.00
4221                                                                                                 100.00
4222                                                                                                 100.00
4223                                                                                                  60.00
4224                                                                                                  28.00
4225                                                                                                1000.00
4226                                                                                                 136.00
4227                                                                                                 500.00
4228                                                                                                 500.00
4229                                                                                                15.7 ml
4230                                                                                                 150.00
4231                                                                                                  20.00
4232                                                                                                 120.00
4233                                                                                                 150.00
4234                                                                                                 100 mg
4235                                                                                                   0.60
4236                                                                                                   2.00
4237                                                                                                   1.00
4238                                                                                                   1.00
4239                                                                                                 300.00
4240                                                                                                 125.00
4241                                                                                                 375.00
4242                                                                                                 150.00
4243                                                                                                  70.00
4244                                                                                                  14 ml
4245                                                                                              4-5 drops
4246                                                                                                 272.00
4247                                                                                            unspecified
4248                                                                                                   0.50
4249                                                                                                   1.00
4250                                                                                                 875.00
4251                                                                                                 272.00
4252                                                                                                 136.00
4253                                                                                                   0.50
4254                                                                                                 272.00
4255                                                                                                   0.50
4256                                                                                                 136.00
4257                                                                                                 272.00
4258                                                                                                 136.00
4259                                                                                                   0.50
4260                                                                                                  60.00
4261                                                                                                 272.00
4262                                                                                                 136.00
4263                                                                                                   0.50
4264                                                                                                 310.00
4265                                                                                                 1 drop
4266                                                                                            as directed
4267                                                                                                  70.00
4268                                                                                                   0.13
4269                                                                                                   0.11
4270                                                                                                   0.20
4271                                                                                                   6.00
4272                                                                                                  30.00
4273                                                                                                  60.00
4274                                                                                            unspecified
4275                                                                                                 500.00
4276                                                                                                   0.25
4277                                                                                                  12.50
4278                                                                                                 250.00
4279                                                                                                 125.00
4280                                                                                                 250.00
4281                                                                                                  50 mg
4282                                                                                                 500 mg
4283                                                                                                 227.00
4284                                                                                                 272.00
4285                                                                                                 272.00
4286                                                                                                 272.00
4287                                                                                                   1.00
4288                                                                                                   2.00
4289                                                                                                  25.00
4290                                                                                                 300.00
4291                                                                                                 100.00
4292                                                                                                  50.00
4293                                                                                                   7.20
4294                                                                                                 150.00
4295                                                                                                 125.00
4296                                                                                                  65.00
4297                                                                                                  50.00
4298                                                                            based on weight (45-88 lbs)
4299                                                                           based on weight (51-100 lbs)
4300                                                                                                 750.00
4301                                                                                                 100.00
4302                                                                           based on weight (51-100 lbs)
4303                                                                                                  45-88
4304                                                                           based on weight (51-100 lbs)
4305                                                                            based on weight (45-88 lbs)
4306                                                                                            unspecified
4307                                                                           based on weight (51-100 lbs)
4308                                                                           based on weight (51-100 lbs)
4309                                                                            based on weight (45-88 lbs)
4310                                                                                                1200.00
4311                                                                                            unspecified
4312                                                                                                  75.00
4313                                                                           based on weight (50-100 lbs)
4314                                                                            based on weight (44-88 lbs)
4315                                                                                                  60.00
4316                                                                                                   1.60
4317                                                                                                  75.00
4318                                                                                                 300.00
4319                                                                                                   5.00
4320                                                                                                 200.00
4321                                                                                                 120.00
4322                                                                                                 200.00
4323                                                                            based on weight (40-85 lbs)
4324                                                                                           small amount
4325                                                                           based on weight (50-100 lbs)
4326                                                                                                 powder
4327                                                                                                 500.00
4328                                                                                                   1.00
4329                                                                                                 100.00
4330                                                                                                  50.00
4331                                                                                                  75.00
4332                                                                                                   5.00
4333                                                                                                 300.00
4334                                                                                                   1 ml
4335                                                                                                   2.00
4336                                                                                            unspecified
4337                                                                                                   1.00
4338                                                                         based on weight (50.1-100 lbs)
4339                                                                                                   1.00
4340                                                                                                   1.00
4341                                                                                                 100 mg
4342                                                                                                  50.00
4343                                                                                                   1.00
4344                                                                                                  10.00
4345                                                                                                 250.00
4346                                                                                                 500.00
4347                                                                                                   1.00
4348                                                                                        0.25 inch strip
4349                                                                            based on weight (40-60 lbs)
4350                                                                           based on weight (60-120 lbs)
4351                                                                                                  41-60
4352                                                                                                   1.00
4353                                                                            based on weight (40-60 lbs)
4354                                                                            based on weight (41-60 lbs)
4355                                                                                                  15.00
4356                                                                                                  17.00
4357                                                                                                   0.40
4358                                                                                                  75.00
4359                                                                                                 60-120
4360                                                                                                1 spray
4361                                                                                                  16.00
4362                                                                                                 810.00
4363                                                                                                 100.00
4364                                                                                                 900.00
4365                                                                                                 375.00
4366                                                                                                  75.00
4367                                                                                                  50.00
4368                                                                                        based on weight
4369                                                                                                   1.00
4370                                                                                                 500.00
4371                                                                                        based on weight
4372                                                                                                 250.00
4373                                                                                                   1.00
4374                                                                                                 500.00
4375                                                                                                 200.00
4376                                                                                                 500.00
4377                                                                                                  25.00
4378                                                                                                 100.00
4379                                                                                                   1.00
4380                                                                                                 200.00
4381                                                                                                 272.00
4382                                                                                                 227.00
4383                                                                                                  50.00
4384                                                                                               350, 900
4385                                                                                                   1.00
4386                                                                                                 150.00
4387                                                                                                 272.00
4388                                                                                                 900.00
4389                                                                           based on weight (51-100 lbs)
4390                                                                           based on weight (88-123 lbs)
4391                                                                                                  23.00
4392                                                                                                  23.00
4393                                                                                                  23.00
4394                                                                                                 130.00
4395                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4396                                                                                                  16.00
4397                                                                                                  60.00
4398                                                                                                  60.00
4399                                                                                                 272.00
4400                                                                                                  16.00
4401                                                                                                  16.00
4402                                                                                                  16.00
4403                                                                                                  16.00
4404                                                                                                  75.00
4405                                                                                              13.5, 810
4406                                                                                                 250.00
4407                                                                                                 250.00
4408                                                                                                 150.00
4409                                                                                         1 pack/package
4410                                                                                                   1.50
4411                                                                                                 500.00
4412                                                                                                 500.00
4413                                                                                                  10.00
4414                                                                                                  50.00
4415                                                                                                  75.00
4416                                                                                                   2.50
4417                                                                                                   2.60
4418                                                                                                   3.00
4419                                                                                                   4.50
4420                                                                                                  75.00
4421                                                                                                 375.00
4422                                                                                                1500.00
4423                                                                                                 750.00
4424                                                                                                 500.00
4425                                                                                                  30.00
4426                                                                           based on weight (51-100 lbs)
4427                                                                              based on weight (55+ lbs)
4428                                                                               based on weight (60 lbs)
4429                                                                                                 500.00
4430                                                                                                  spray
4431                                                                                                  spray
4432                                                                                                 100.00
4433                                                                                                 175.00
4434                                                                                                 150.00
4435                                                                                                 270.00
4436                                                                                                1000.00
4437                                                                                                   1.00
4438                                                                                                   1.00
4439                                                                                                 150.00
4440                                                                                                   1.00
4441                                                                                                   1.00
4442                                                                                                   1.00
4443                                                                                                 560.00
4444                                                                              based on weight (<88 lbs)
4445                                                                                  1 tablet/pill/capsule
4446                                                                                         1 pack/package
4447                                                                                                   1.00
4448                                                                                                   2.00
4449                                                                                                 375.00
4450                                                                                                   2.00
4451                                                                                                 150.00
4452                                                                                                   7.50
4453                                                                                                   3.00
4454                                                                                               inhalant
4455                                                                                                  50.00
4456                                                                                                   2.60
4457                                                                                                 190.00
4458                                                                                                   9.50
4459                                                                                                   0.36
4460                                                                                                  15.00
4461                                                                                                  75.00
4462                                                                                                 375.00
4463                                                                                                   6.00
4464                                                                                                 100.00
4465                                                                                                 375.00
4466                                                                                                 125.00
4467                                                                                                  40.00
4468                                                                                                 170.00
4469                                                                                           small amount
4470                                                                                            application
4471                                                                                               wipe/pad
4472                                                                                           small amount
4473                                                                                                 170.00
4474                                                                                                 500.00
4475                                                                                                 375.00
4476                                                                                                  75.00
4477                                                                                                  40.00
4478                                                                                                  12.00
4479                                                                                                 100.00
4480                                                                                           small amount
4481                                                                                             1 wipe/pad
4482                                                                                                   2.00
4483                                                                                        based on weight
4484                                                                                                 136.00
4485                                                                                                   1.00
4486                                                                               3 tablets/pills/capsules
4487                                                                                                   2.00
4488                                                                                                   1 ml
4489                                                                                                  16.00
4490                                                                                                   8.00
4491                                                                                                   1 ml
4492                                                                                                 500.00
4493                                                                                                  60.00
4494                                                                                                   8.00
4495                                                                                                  16.00
4496                                                                                                   8.00
4497                                                                           based on weight (51-100 lbs)
4498                                                                                                 60-121
4499                             based on weight (50-100 lbs) - 23 mg milbemycin oxime, 228 mg praziquantel
4500                                                       based on weight (60-120 lbs) - 136 mg afoxolaner
4501                                                                                            as directed
4502                                                                           based on weight (60-120 lbs)
4503                                                                                                  16.00
4504                                                                                            as directed
4505                                                                           based on weight (50-100 lbs)
4506                                                                                                   0.96
4507                                                                                                  40.00
4508                                                                                                  16.00
4509                                                                                  1 tablet/pill/capsule
4510                                                                                  1 tablet/pill/capsule
4511                                                                               3 tablets/pills/capsules
4512                                                                                                   1.00
4513                                                                                                  16.00
4514                                                                                                   1.00
4515                                                                                  1 tablet/pill/capsule
4516                                                                                  1 tablet/pill/capsule
4517                                                                                         1 pack/package
4518                                                                                                   1.00
4519                                                                                                  16.00
4520                                                                                                  75.00
4521                                                                                                   1.00
4522                                                                                                   1.00
4523                                                                                                   8.00
4524                                                                           based on weight (50-100 lbs)
4525                                                                                                 272.00
4526                                                                                                 228.00
4527                                                                                                 228.00
4528                                                                                                1000.00
4529                                                                                                   1.00
4530                                                                                                   1.00
4531                                                                                                   1.00
4532                                                                           based on weight (50-100 lbs)
4533                                                                                                    tsp
4534                                                                                                 1 tbsp
4535                                                                                                  16 mg
4536                                                                           based on weight (50-100 lbs)
4537                                                                                                1000.00
4538                                                                                                   1.00
4539                                                                                                 272.00
4540                                                                                                 272.00
4541                                                                                                   4.70
4542                                                                                                 200.00
4543                                                                                                  50.00
4544                                                                                            unspecified
4545                                                                           based on weight (51-100 lbs)
4546                                                                                                  75.00
4547                                                                                           small amount
4548                                                                                                 200.00
4549                                                                                                 200.00
4550                                                                                                  75.00
4551                                                                                                 375.00
4552                                                                                                   1.00
4553                                                                                                  75.00
4554                                                                                                  75.00
4555                                                                                                  25.00
4556                                                                                                 272.00
4557                                                                                                 250.00
4558                                                                           based on weight (51-100 lbs)
4559                                                                              based on weight (50+ lbs)
4560                                                                              based on weight (50+ lbs)
4561                                                                                             1-2 sprays
4562                                                                            based on weight (45-88 lbs)
4563                                                                                                 100.00
4564                                                                           based on weight (51-100 lbs)
4565                                                                            based on weight (44-88 lbs)
4566                                                                           based on weight (50-100 lbs)
4567                                                                            based on weight (44-88 lbs)
4568                                                                            based on weight (44-88 lbs)
4569                                                                              based on weight (50+ lbs)
4570                                                                                                 300.00
4571                                                                                                  50.00
4572                                                                                                 300.00
4573                                                                                                  60.00
4574                                                                                                 500.00
4575                                                                                                 500.00
4576                                                                                                   8.00
4577                                                                                                   8.00
4578                                                                                                   1.00
4579                                                                                                 300.00
4580                                                                                                  50.00
4581                                                                                                   8.00
4582                                                                                                 810.00
4583                                                                                                 272.00
4584                                                                                                 227.00
4585                                                                                                 136.00
4586                                                                                                 272.00
4587                                                                           based on weight (51-100 lbs)
4588                                                                                                 136.00
4589                                                                                                 750.00
4590                                                                                                 272.00
4591                                                                                                 136.00
4592                                                                                                 750.00
4593                                                                                                 227.00
4594                                                                                                 136.00
4595                                                                                                  80.00
4596                                                                                                 750.00
4597                                                                                            unspecified
4598                                                                                                 227 mg
4599                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4600                                                                                             1.14 mg/lb
4601                                                                                                 272.00
4602                                                                                                 130.00
4603                                                                                                  16.00
4604                                                                                                 272.00
4605                                                                                                 100.00
4606                                                                                                  50.00
4607                                                                                                  16.00
4608                                                                                                   1.50
4609                                                                                                  30.00
4610                                                                                                 227.00
4611                                                                                               27, 1620
4612                                                                                                 300.00
4613                                                                                                  75.00
4614                                                                                                 240.00
4615                                                                                                 250.00
4616                                                                                                   4.00
4617                                                                                             0.57 mg/ml
4618                                                                                                  27.00
4619                                                                                                1620.00
4620                                                                                                   1.00
4621                                                                                                 750.00
4622                                                                                                 200.00
4623                                                                                                  75.00
4624                                                                                                1620.00
4625                                                                                                  23.00
4626                                                                                                 460.00
4627                                                                                        2.68 ml of 9.7%
4628                                                                                        2.68 ml of 8.8%
4629                                                               460 mg lufenuron, 23 mg milbemycin oxime
4630                                                                                                  15 mg
4631                                                                                        2.68 ml of 9.8%
4632                                                                                                 750.00
4633                                                                                                1600.00
4634                                                                                            unspecified
4635                                                                                                  23.00
4636                                                                                                 750.00
4637                                                                                                1600.00
4638                                                                                        2.68 ml of 9.8%
4639                                                                                                   1.00
4640                                                                                                  15 au
4641                                                                                                  23.00
4642                                                            23 mg milbemycin oxime, 228 mg praziquantel
4643                                                                                           small amount
4644                                                                                                 1 drop
4645                                                                                                 1 drop
4646                                                                                                 1 drop
4647                                                                                                 1 drop
4648                                                            23 mg milbemycin oxime, 228 mg praziquantel
4649                                                                                        2.68 ml of 9.8%
4650                                                                                                   0.01
4651                                                                                           small amount
4652                                                                                        moderate amount
4653                                                                                                   3.18
4654                                                                            based on weight (44-88 lbs)
4655                                                            23 mg milbemycin oxime, 228 mg praziquantel
4656                                                                                                   1.00
4657                                                                                                   1.00
4658                                                                                                   1.00
4659                                                                                                1000.00
4660                                                                                                1000.00
4661                                                                                                1000.00
4662                                                                                                1000.00
4663                                                                                                   1.00
4664                                                                                                   1.00
4665                                                                                                 250.00
4666                                                                                                 500.00
4667                                                                                                 300.00
4668                                                                                                  50.00
4669                                                                                                  50.00
4670                                                                                                   1.00
4671                                                                                                   1.00
4672                                                                                                 200.00
4673                                                                                                 625.00
4674                                                                                                 225.00
4675                                                                                                 500.00
4676                                                                                                 500.00
4677                                                                                                   1.00
4678                                                                                                   1.00
4679                                                                                                   3.00
4680                                                                                                   3.00
4681                                                                                                  50.00
4682                                                                                                   1.00
4683                                                                                                   1.00
4684                                                                                                   1.00
4685                                                                                                 300.00
4686                                                                                                 200.00
4687                                                                                                  16.00
4688                                                                                                 125 mg
4689                                                                                                 272.00
4690                                                                                                 272.00
4691                                                                                                 273.00
4692                                                                                                  68.00
4693                                                                                                 50-100
4694                                                                                                  24-60
4695                                                                           based on weight (50-110 lbs)
4696                                                                                                 136 mg
4697                                                                                                  23 mg
4698                                                                                                 136.00
4699                                                                                                 100.00
4700                                                                                                   5 mg
4701                                                                                                 150.00
4702                                                                                                 250.00
4703                                                                                                  23 mg
4704                                                                                                 136.00
4705                                                                                                  23 mg
4706                                                                                                 500.00
4707                                                                                                 100.00
4708                                                                                                  12.50
4709                                                                                                   7.50
4710                                                                                                 100.00
4711                                                                                                 1 drop
4712                                                                                                   0.40
4713                                                                                                 272.00
4714                                                                                                   0.40
4715                                                                                                   0.20
4716                                                                                                 200 mg
4717                                                                           based on weight (60-120 lbs)
4718                                                                                                   0.40
4719                                                                                                  drops
4720                                                                                                  drops
4721                                                                                                  23.00
4722                                                                                                   0.40
4723                                                                                                1000.00
4724                                                                                                   3.60
4725                                                                                                 272.00
4726                                                                           based on weight (51-100 lbs)
4727                                                                                                   0.40
4728                                                                                                 500.00
4729                                                                                                   1.70
4730                                                                                                   0.60
4731                                                                                                  60.00
4732                                                                                                 272.00
4733                                                                                                  80.00
4734                                                                                                  60.00
4735                                                                                                   0.60
4736                                                                                                   1.50
4737                                                                                                  60.00
4738                                                                           based on weight (60-120 lbs)
4739                                                                           based on weight (60-120 lbs)
4740                                                                                                   3.00
4741                                                                                                 200.00
4742                                                                                                   5.00
4743                                                                                            application
4744                                                                                            application
4745                                                               27 mg milbemycin oxime, 1620 mg spinosad
4746                                                                                                 136.00
4747                                                                                                 900.00
4748                                                                                                 1 unit
4749                                                                                                   1.00
4750                                                                                                 900.00
4751                                                                                                 272.00
4752                                                                                                   5.00
4753                                                                                                 500.00
4754                                                                                                   0.50
4755                                                                                                 900.00
4756                                                                                                   0.50
4757                                                                                        based on weight
4758                                                                                                   1.50
4759                                                                                                   1.00
4760                                                                                  1 tablet/pill/capsule
4761                                                                                                  1 tsp
4762                                                                                                   5.10
4763                                                                              based on weight (55+ lbs)
4764                                                                            based on weight (21-55 lbs)
4765                                                                                                  80.00
4766                                                                              based on weight (55+ lbs)
4767                                                                                                   5.50
4768                                                                                                  80.00
4769                                                                                                 200.00
4770                                                                                                 110.00
4771                                                                                                 200.00
4772                                                                                                   6.00
4773                                                                                                  16.00
4774                                                                                                 100.00
4775                                                                                                   2.50
4776                                                                                                  50.00
4777                                                                                            unspecified
4778                                                                                                  80.00
4779                                                                                                  50.00
4780                                                                                            unspecified
4781                                                                                                 200.00
4782                                                                                            unspecified
4783                                                                                                  16.00
4784                                                                                                   1.50
4785                                                                                                  80.00
4786                                                                                                   1.00
4787                                                                                                  16.00
4788                                                                                                 300.00
4789                                                                                                 200.00
4790                                                                                                  80.00
4791                                                                                                 200.00
4792                                                                                                 360.00
4793                                                                                                  80.00
4794                                                                                                 200.00
4795                                                                                                 100.00
4796                                                                                                 150.00
4797                                                                                                   5.00
4798                                                                                                  20 mg
4799                                                                                                 200.00
4800                                                                                                 200.00
4801                                                                                               tapering
4802                                                                           based on weight (51-110 lbs)
4803                                                                                                 1 drop
4804                                                                                                  30 mg
4805                                                                                                   drop
4806                                                                         based on weight (60.1-121 lbs)
4807                                                                                                  50 mg
4808                                                                                                  23.00
4809                                                                                                 750.00
4810                                                                                                  75.00
4811                                                                                                  10.00
4812                                                                                                   1.40
4813                                                                                            unspecified
4814                                                                                                  60.00
4815                                                                                                   2.00
4816                                                                                                 250.00
4817                                                                                                   1.00
4818                                                                                                 500.00
4819                                                                                                 500.00
4820                                                                                                  60.00
4821                                                                                                   1.00
4822                                                                                                  10.80
4823                                                                                                  75.00
4824                                                                            based on weight (20-55 lbs)
4825                                                                                                  68.00
4826                                                                                            unspecified
4827                                                                                                  10.80
4828                                                                                            unspecified
4829                                                                                                  37.50
4830                                                                                                  23.00
4831                                                                                                1000.00
4832                                                                                                 0.1, 1
4833                                                                                                1000.00
4834                                                                                                  23.00
4835                                                                                                  23.00
4836                                                                                                1000.00
4837                                                                                                 100.00
4838                                                                                                   1.00
4839                                                                                                 150.00
4840                                                                                                   1.00
4841                                                                                                  16.00
4842                                                                                                   3.00
4843                                                                                                   2.00
4844                                                                                                 150.00
4845                                                                                                   2.00
4846                                                                                                   1.00
4847                                                                                                  60.00
4848                                                                                                1000.00
4849                                                                                                 100.00
4850                                                                                                 1 drop
4851                                                                                                   5.00
4852                                                                                                 150.00
4853                                                                                           small amount
4854                                                                                                  50.00
4855                                                                                               27, 1620
4856                                                                                                 810.00
4857                                                                                                  15.00
4858                                                                                               27, 1620
4859                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4860                                                                                                 136.00
4861                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4862                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
4863                                                                                                 336.00
4864                                                                                                  10.00
4865                                                                                                   0.80
4866                                                                                                 180.00
4867                                                                                                1400.00
4868                                                                                                1000.00
4869                                                                                                   1.50
4870                                                                                                   1.00
4871                                                                                                  90.00
4872                                                                                                  50.00
4873                                                                                                1000.00
4874                                                                                                   5.00
4875                                                                                                  20.00
4876                                                                                                  20.00
4877                                                                                                  20.00
4878                                                                                                  70.00
4879                                                                                                  75.00
4880                                                                                                 750.00
4881                                                                                           small amount
4882                                                                                                   1.00
4883                                                                                                   1.00
4884                                                                                                 180.00
4885                                                                                                1200.00
4886                                                                                                  75.00
4887                                                                                                 100.00
4888                                                                                                   3.80
4889                                                                                                 500.00
4890                                                                                                 500.00
4891                                                                                                 300.00
4892                                                                                                   0.80
4893                                                                                                   5.00
4894                                                                                                   5.00
4895                                                                                                  50.00
4896                                                                                                  40.00
4897                                                                                                  33.20
4898                                                                                                  75.00
4899                                                                                                  20.00
4900                                                                                                  90.00
4901                                                                                                 272.00
4902                                                          5.8 (s)-methoprene, 7.6 amitraz, 6.4 fipronil
4903                                                                                                 272.00
4904                                                                                               27, 1620
4905                                                                                               27, 1620
4906                                                                                                 272.00
4907                                                                                                 4.5-10
4908                                                                                                272 mcg
4909                                                                                                 272.00
4910                                                                                                 collar
4911                                                                                                 272.00
4912                                                                                                23, 228
4913                                                                                                 collar
4914                                                                                                23, 228
4915                                                                                                1000.00
4916                                                                                                1000.00
4917                                                                                        23 mcg, 228 mcg
4918                                                                                                1000.00
4919                                                                                                 272.00
4920                                                                                                 228.00
4921                                                                                                 250.00
4922                                                                                                 180.00
4923                                                                                                 300.00
4924                                                                                                 300.00
4925                                                                                                  75.00
4926                                                                                                 300.00
4927                                                                                                 150.00
4928                                                                                                   1.00
4929                                                                                                  75.00
4930                                                                                                 300.00
4931                                                                                                 300.00
4932                                                                                                 150.00
4933                                                                                                  20.00
4934                                                                                                  75.00
4935                                                                           based on weight (51-100 lbs)
4936                                                                                                 136.00
4937                                                                                                 136.00
4938                                                                                                 136.00
4939                                                                                                  11.50
4940                                                                                                   1.00
4941                                                                                                  50.00
4942                                                                                                 125.00
4943                                                                                                 125.00
4944                                                                                                  50.00
4945                                                                                                 150.00
4946                                                                                                   1.00
4947                                                                                                 150.00
4948                                                                                                 125.00
4949                                                                                                   1.00
4950                                                                                                   1.00
4951                                                                                                 562.50
4952                                                                                                   0.40
4953                                                                                                1000.00
4954                                                                                                  27.00
4955                                                                                                1620.00
4956                                                                                            unspecified
4957                                                                                                   5.00
4958                                                                                                   6.00
4959                                                                                                  15.00
4960                                                                                           small amount
4961                                                                                                1620.00
4962                                                                                                  27.00
4963                                                                                                   2.00
4964                                                                                                1000.00
4965                                                                                                1620.00
4966                                                                                                  27.00
4967                                                                                                 180.00
4968                                                                                               27, 1620
4969                                                                  2-3 tablets/pills/capsules - 400, 500
4970                                                                                                 360.00
4971                                                                                                  40.00
4972                                                                                                   1.00
4973                                                                                                  20.00
4974                                                                                                  23.00
4975                                                                                                  80.00
4976                                                                                                  80.00
4977                                                                                                 160.00
4978                                                                                                  40.00
4979                                                                                                 400.00
4980                                                                                           pack/package
4981                                                                                                23, 228
4982                                                                                                  80.00
4983                                                                                                   1.00
4984                                                                                                 200.00
4985                                                                                                 100.00
4986                                                                                                   1.00
4987                                                                                                   1.00
4988                                                                                                  25.00
4989                                                                                                  50 mg
4990                                                                                                 150 mg
4991                                                                                                 136.00
4992                                                                                                  50.00
4993                                                                                                  50.00
4994                                                                                                 100.00
4995                                                                                                 200.00
4996                                                                                            unspecified
4997                                                                                                 200.00
4998                                                                                            unspecified
4999                                                                                                 200.00
5000                                                                                                 113.50
5001                                                                                                  20.00
5002                                                                                                 250.00
5003                                                                                                   1.00
5004                                                                                                 113.50
5005                                                                                                 300.00
5006                                                                                                 500.00
5007                                                                                                 227.00
5008                                                                                                   0.60
5009                                                                                                 300.00
5010                                                                                                   2.80
5011                                                                                                   0.60
5012                                                                                                 227.00
5013                                                                                                 200.00
5014                                                                                                 500.00
5015                                                                                                  10.00
5016                                                                                                  20.00
5017                                                                                                  40.00
5018                                                                                                  50.00
5019                                                                                                   1.00
5020                                                                                                 100.00
5021                                                                                                   2.00
5022                                                                                                   1.50
5023                                                                                                  50.00
5024                                                                                                  60.00
5025                                                                                                   1.00
5026                                                                                                   5.00
5027                                                                                                  12.00
5028                                                                                                   2.25
5029                                                                                                   1.20
5030                                                                                                 500.00
5031                                                                                                  75.00
5032                                                                                                   1.50
5033                                                                                                 500.00
5034                                                                                                   6.00
5035                                                                                                   0.40
5036                                                                                                   0.40
5037                                                                                                   0.40
5038                                                                                                   0.50
5039                                                                                                   0.30
5040                                                                                                 136 mg
5041                                                                                                  16.00
5042                                                                                                   0.50
5043                                                                                                  spray
5044                                                                                                  16.00
5045                                                                                                 500.00
5046                                                                                                  spray
5047                                                                                                  24.00
5048                                                                                                  70.00
5049                                                                                                  16.00
5050                                                                                                 136.00
5051                                                                                                 437.50
5052                                                                                                 300.00
5053                                                                                                  70.00
5054                                                                                                 100.00
5055                                                                                                  60.00
5056                                                                                                   0.40
5057                                                                                                   4.00
5058                                                                                                  60.00
5059                                                                                                  15.00
5060                                                                                                 375.00
5061                                                                                                   0.30
5062                                                                                                 100.00
5063                                                                                                   1.00
5064                                                                                                   1.00
5065                                                                                                 250.00
5066                                                                                                 60-120
5067                                                                                                 60-120
5068                                                                                                  15.00
5069                                                                                                   2.00
5070                                                                                                 200.00
5071                                                                                                  75.00
5072                                                                                                 350.00
5073                                                                                                  45.00
5074                                                                                                  75.00
5075                                                                                                  30.00
5076                                                                                                  75.00
5077                                                                                                   5.00
5078                                                                            based on weight (40-60 lbs)
5079                                                                                                 200.00
5080                                                                                                 500.00
5081                                                                                                   0.50
5082                                                                                                 272.00
5083                                                                                                   2.00
5084                                                                                                   1.00
5085                                                                                                 500.00
5086                                                                                                1620.00
5087                                                                                                   1.00
5088                                                                                                 500.00
5089                                                                                                 272.00
5090                                                                                                  50.00
5091                                                                                                 272.00
5092                                                                                                  27.00
5093                                                                                                 750.00
5094                                                                                                 272.00
5095                                                                                                 227.00
5096                                                                                                 136.00
5097                                                                                                 227.00
5098                                                                                                 136.00
5099                                                                                                 272.00
5100                                                                                                 136.00
5101                                                                                                  15.00
5102                                                                                                  75.00
5103                                                                                                 250.00
5104                                                                                                 272.00
5105                                                                                                 272.00
5106                                                                                                 500.00
5107                                                                                                 272.00
5108                                                                                                 500.00
5109                                                                                                   2.00
5110                                                                                                 150.00
5111                                                                                                 272.00
5112                                                                                                 150.00
5113                                                                                                   0.55
5114                                                                                                 600.00
5115                                                                                                 272.00
5116                                                                                                  15.00
5117                                                                                                  68.00
5118                                                                                                   1.00
5119                                                                                                   1.00
5120                                                                                                  68.00
5121                                                                                                 272.00
5122                                                                           based on weight (51-100 lbs)
5123                                                                           based on weight (60-121 lbs)
5124                                                                                                 113.50
5125                                                                                                   1 ml
5126                                                                                                   1.00
5127                                                                                              injection
5128                                                                                               10000.00
5129                                                                                                 500.00
5130                                                                                                   1.00
5131                                                                                                1000.00
5132                                                                                                 227.00
5133                                                                                                 300.00
5134                                                                                        based on weight
5135                                                                                                 600.00
5136                                                                                                 100.00
5137                                                                                                  75.00
5138                                                                                                 875.00
5139                                                                                                 200.00
5140                                                                                            750, 187, 5
5141                                                                                                   1.00
5142                                                                                                 227.00
5143                                                                                                   1.00
5144                                                                                                   2.40
5145                                                                                                 250.00
5146                                                                                                 250.00
5147                                                                                                   2.00
5148                                                                                                  11.50
5149                                                                                                  23.00
5150                                                                                                  40-60
5151                                                                                                 136.00
5152                                                                                                 272.00
5153                                                                                                  75.00
5154                                                                                                 272.00
5155                                                                                                 136.00
5156                                                                                                 272.00
5157                                                                                                  68.00
5158                                                                                                 150.00
5159                                                                                            unspecified
5160                                                                                            unspecified
5161                                                                                            unspecified
5162                                                                                                  50.00
5163                                                                                                 250.00
5164                                                                                                 100.00
5165                                                                                                 100 mg
5166                                                                                                 250.00
5167                                                                                                 222.00
5168                                                                                                   1.00
5169                                                                                                 272.00
5170                                                                                                 136.00
5171                                                                                                   3.20
5172                                                                                                 500.00
5173                                                                           based on weight (51-100 lbs)
5174                                                                           based on weight (60-120 lbs)
5175                                                                                                  68 mg
5176                                                                                                 272.00
5177                                                                                                 136.00
5178                                                                                                 272.00
5179                                                                                                 136.00
5180                                                                                                 272.00
5181                                                                                                 136.00
5182                                                                                                  80.00
5183                                                                                                  75.00
5184                                                                                                  75.00
5185                                                                                                 375.00
5186                                                                                                  60.00
5187                                                                                                  75.00
5188                                                                                                   1.00
5189                                                                                                 60-120
5190                                                                                                   1.00
5191                                                                                               27, 1620
5192                                                                                                  75 mg
5193                                                                                            application
5194                                                                                                  23.00
5195                                                                              based on weight (18+ lbs)
5196                                                                                                 500.00
5197                                                                                                  75.00
5198                                                                                                 150.00
5199                                                                                                 100.00
5200                                                                                                   1.00
5201                                                                                                  75 mg
5202                                                                                                   1.00
5203                                                                           based on weight (50-100 lbs)
5204                                                                                                   1.00
5205                                                                                                   0.75
5206                                                                                                   1.00
5207                                                                                                   1.00
5208                                                                                                   1.00
5209                                                                                                 150.00
5210                                                                                        moderate amount
5211                                                                                        moderate amount
5212                                                                                        moderate amount
5213                                                                                        moderate amount
5214                                                                           based on weight (51-100 lbs)
5215                                                                                                 500.00
5216                                                                                                 500.00
5217                                                                                                 200.00
5218                                                                                                   1.00
5219                                                                                                  21.00
5220                                                                                                  spray
5221                                                                                                  spray
5222                                                                              based on weight (55+ lbs)
5223                                                                           based on weight (51-100 lbs)
5224                                                                                                 750.00
5225                                                                           based on weight (51-100 lbs)
5226                                                                                                 750.00
5227                                                                                                   7.00
5228                                                                                                   1.00
5229                                                                                                   1.00
5230                                                                                                1224.60
5231                                                                                                   3.00
5232                                                                                                 150.00
5233                                                                                                1000.00
5234                                                                                        based on weight
5235                                                                           based on weight (51-100 lbs)
5236                                                                                                 150.00
5237                                                                                                 200.00
5238                                                                                                  15.00
5239                                                                                                  21.00
5240                                                                                                  16.00
5241                                                                                                 280.00
5242                                                                                                 164.00
5243                                                                           based on weight (51-100 lbs)
5244                                                                              based on weight (55+ lbs)
5245                                                                                                 500.00
5246                                                                                                  60.00
5247                                                                           based on weight (51-100 lbs)
5248                                                                           based on weight (51-100 lbs)
5249                                                                                                  16.00
5250                                                                                                   1.00
5251                                                                                                 550.00
5252                                                                                                 150.00
5253                                                                           based on weight (51-100 lbs)
5254                                                                                                 125.00
5255                                                                           based on weight (51-100 lbs)
5256                                                                           based on weight (51-100 lbs)
5257                                                                           based on weight (51-100 lbs)
5258                                                                           based on weight (51-100 lbs)
5259                                                                                                   2.00
5260                                                                                                1088.20
5261                                                                           based on weight (51-100 lbs)
5262                                                                                        based on weight
5263                                                                                                 150.00
5264                                                                              based on weight (55+ lbs)
5265                                                                           based on weight (51-100 lbs)
5266                                                                                                 625.00
5267                                                                                                 150.00
5268                                                                                                   1.00
5269                                                                                                 150.00
5270                                                                           based on weight (51-100 lbs)
5271                                                                           based on weight (51-100 lbs)
5272                                                                                                 750.00
5273                                                                                                   3.00
5274                                                                                                 200.00
5275                                                                                                 500.00
5276                                                                                                   1.50
5277                                                                                                 150.00
5278                                                                                                 150.00
5279                                                                                                   1.50
5280                                                                                                 100.00
5281                                                                                                 400.00
5282                                                                                                   1.50
5283                                                                                                 150.00
5284                                                                                                  20.00
5285                                                                                                   1.00
5286                                                                                                 272.00
5287                                                                                                 136.00
5288                                                                                                 236.00
5289                                                                           based on weight (50-100 lbs)
5290                                                                                                  40.00
5291                                                                                                   0.80
5292                                                                                                  40.00
5293                                                                                                 500.00
5294                                                                                                  30.00
5295                                                                                                 272.00
5296                                                                                                   5.00
5297                                                                                                 500.00
5298                                                                                                  16.00
5299                                                                                                 272.00
5300                                                                                                1000.00
5301                                                                                                 450.00
5302                                                                                                   6.00
5303                                                                                                 100.00
5304                                                                                                  60.00
5305                                                                                                 272.00
5306                                                                                                 100.00
5307                                                                                                  40.00
5308                                                                                                  70.00
5309                                                                                                 272.00
5310                                                                                                 100.00
5311                                                                                                  80.00
5312                                                                                                 100.00
5313                                                                                                  80.00
5314                                                                                                 272.00
5315                                                                                                  70.00
5316                                                                                                  80.00
5317                                                                                                  81.00
5318                                                                                                 100.00
5319                                                                                                 100.00
5320                                                                                                 300.00
5321                                                                                                  75.00
5322                                                                                                 250.00
5323                                                                                                 200.00
5324                                                                                                 300.00
5325                                                                                                 250.00
5326                                                                                                 500.00
5327                                                                                                  50.00
5328                                                                                                  50.00
5329                                                                                                 437.50
5330                                                                                                 437.50
5331                                                                                                 272.00
5332                                                                                               1 collar
5333                                                                                            unspecified
5334                                                                                        based on weight
5335                                                                                                 collar
5336                                                                               2 tablets/pills/capsules
5337                                                                                            unspecified
5338                                                                                                 300.00
5339                                                                                                  70.00
5340                                                                           based on weight (51-100 lbs)
5341                                                                                                 1 pump
5342                                                                                                 500.00
5343                                                                                                 300.00
5344                                                                                                  70.00
5345                                                                                                  75.00
5346                                                                                                 272.00
5347                                                                                                   7.00
5348                                                                                                 272.00
5349                                                                                                 227.00
5350                                                                                                 500.00
5351                                                                                                 272.00
5352                                                                                                 227.00
5353                                                                                                 136.00
5354                                                                                                 collar
5355                                                                                                 272.00
5356                                                                                                 500.00
5357                                                                                                  drops
5358                                                                                                 272.00
5359                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5360                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5361                                                                                                  50 mg
5362                                                                               3 tablets/pills/capsules
5363                                                                                                 500.00
5364                                                                                                 480.00
5365                                                                                                 272.00
5366                                                                                                 228.00
5367                                                                                                 228.00
5368                                                                                                  75.00
5369                                                                           based on weight (50-100 lbs)
5370                                                                                                   4.70
5371                                                                                                 272.00
5372                                                                                                 136.00
5373                                                                                                   1.00
5374                                                                                                1000.00
5375                                                                                                  25.00
5376                                                                                                 272.00
5377                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5378                                                                     8.8% (s)-methoprene, 9.8% fipronil
5379                                                                           based on weight (51-100 lbs)
5380                                                                                                  45-88
5381                                                                                                  23.00
5382                                                                                                  45-88
5383                                                                                                   0.14
5384                                                            23 mg milbemycin oxime, 228 mg praziquantel
5385                                                                                            unspecified
5386                                                                                            unspecified
5387                                                                                            unspecified
5388                                                                                            unspecified
5389                                                                                                 272.00
5390                                                                                                 136.00
5391                                                                           based on weight (60-121 lbs)
5392                                                                           based on weight (51-100 lbs)
5393                                                                                                  50.00
5394                                                                                                 272.00
5395                                                                                                 272.00
5396                                                                                                 227.00
5397                                                                                                 272.00
5398                                                                                                 227.00
5399                                                                                                  23.00
5400                                                                                                  23.00
5401                                                                                                   1.00
5402                                                                                                   0.60
5403                                                                              based on weight (100 lbs)
5404                                                                                                   0.80
5405                                                                                                 375.00
5406                                                                                                   1.00
5407                                                                                                  23.00
5408                                                                                                   0.70
5409                                                                                                1000.00
5410                                                                                                  12.50
5411                                                                                                  23.00
5412                                                                                                1000.00
5413                                                                                                 150.00
5414                                                                                                   8.00
5415                                                                                                   2.00
5416                                                                                                   0.70
5417                                                                                                1000.00
5418                                                                                                1000.00
5419                                                                                                  10.00
5420                                                                                                   8.00
5421                                                                                                   0.70
5422                                                                                                 100.00
5423                                                                                                 200.00
5424                                                                                           small amount
5425                                                                                                   1.00
5426                                                                                                  20.00
5427                                                                                                 500.00
5428                                                                                                  spray
5429                                                                                                 300.00
5430                                                                                                  50.00
5431                                                                                                  75.00
5432                                                                                                 200.00
5433                                                                                                  75.00
5434                                                                                                  50.00
5435                                                                                                   0.50
5436                                                                                                  20.00
5437                                                                                                 500.00
5438                                                                                                  15.00
5439                                                                                                  10.00
5440                                                                                            unspecified
5441                                                                                                  75.00
5442                                                                                                  75.00
5443                                                                                                  75.00
5444                                                                                                1000.00
5445                                                                                                  75.00
5446                                                                                                   3.75
5447                                                                                                   1.40
5448                                                                                                   1.00
5449                                                                                                 500.00
5450                                                                                                 100.00
5451                                                                                                  37.50
5452                                                                                                 500.00
5453                                                                                                 250.00
5454                                                                                                  23.00
5455                                                                                                  80.00
5456                                                                                                   0.60
5457                                                                                                   0.60
5458                                                                                                  23.00
5459                                                                                                 460.00
5460                                                                                           small amount
5461                                                                                                  23.00
5462                                                                                                   6.00
5463                                                                                                  23.00
5464                                                                                               27, 1620
5465                                                                                                1000.00
5466                                                                                                   6.00
5467                                                                                                  23.00
5468                                                                                                   1.80
5469                                                                                                   2 ml
5470                                                                                                 250.00
5471                                                                                                 500.00
5472                                                                                                  30.00
5473                                                                                                 500.00
5474                                                                                                   5.00
5475                                                                                                  20.00
5476                                                                                                   1.00
5477                                                                                                 500.00
5478                                                                                                  50.00
5479                                                                                                  50.00
5480                                                                                                  10.00
5481                                                                                                   2.50
5482                                                                                                1700.00
5483                                                                                  1 tablet/pill/capsule
5484                                                                     2 tablets/pills/capsules - 1200 mg
5485                                                                                                 300 mg
5486                                                                                                3000.00
5487                                                                                                   1.00
5488                                                                                                   5.00
5489                                                                                                  10.00
5490                                                                                                  16 mg
5491                                                                            based on weight (45-88 lbs)
5492                                                                           based on weight (51-100 lbs)
5493                                                                                                   1.00
5494                                                                                                   1.00
5495                                                                                                   1.00
5496                                                                                                  75.00
5497                                                                           based on weight (51-100 lbs)
5498                                                                           based on weight (51-100 lbs)
5499                                                                            based on weight (45-88 lbs)
5500                                                                           based on weight (51-100 lbs)
5501                                                                                           small amount
5502                                                                                          1 bottle/vial
5503                                                                                                  75.00
5504                                                                                                 102.00
5505                                                                                                   2.00
5506                                                                                                 100.00
5507                                                                           based on weight (51-100 lbs)
5508                                                                           based on weight (51-100 lbs)
5509                                                                           based on weight (51-100 lbs)
5510                                                                                                   2.00
5511                                                                           based on weight (51-100 lbs)
5512                                                                                                  75.00
5513                                                                           based on weight (51-100 lbs)
5514                                                                                                1000.00
5515                                                                                                   1.00
5516                                                                                                   1.00
5517                                                                                                 300.00
5518                                                                                                 100.00
5519                                                                                                  75.00
5520                                                                                                1000.00
5521                                                                                                  30.00
5522                                                                                                  75.00
5523                                                                                                 100.00
5524                                                                                                   2.00
5525                                                                                                 300.00
5526                                                                                                  25.00
5527                                                                                           small amount
5528                                                                                            application
5529                                                                                                  spray
5530                                                                                                   5.00
5531                                                                                                  60.00
5532                                                                                                  14.00
5533                                                                                           small amount
5534                                                                                        based on weight
5535                                                                                           small amount
5536                                                                                                   5.00
5537                                                                                           small amount
5538                                                                                                 375.00
5539                                                                                                  70.00
5540                                                                                                  50.00
5541                                                                           based on weight (51-100 lbs)
5542                                                                            based on weight (45-88 lbs)
5543                                                                                                   7.50
5544                                                                                                  80.00
5545                                                                                        based on weight
5546                                                                                        based on weight
5547                                                                                                  16.00
5548                                                                                                  16.00
5549                                                                                                  40.00
5550                                                                                                   7.50
5551                                                                                                 272.00
5552                                                                           based on weight (51-100 lbs)
5553                                                                                        based on weight
5554                                                                                                1000.00
5555                                                                                                  16.00
5556                                                                                                  44-88
5557                                                                           based on weight (51-100 lbs)
5558                                                                                                 100.00
5559                                                                                                  16.00
5560                                                                                                1000.00
5561                                                                                                  16.00
5562                                                                                                   1.00
5563                                                                                                  16.00
5564                                                                                                   1.00
5565                                                                                                 810.00
5566                                                                                                   1.00
5567                                                                                                   1.00
5568                                                                           based on weight (51-100 lbs)
5569                                                                                                  50.00
5570                                                                                                 375.00
5571                                                                           based on weight (51-100 lbs)
5572                                                                                                   1.00
5573                                                                                                   8.00
5574                                                                                                 50-100
5575                                                                                                   1.00
5576                                                                           based on weight (51-100 lbs)
5577                                                                                            unspecified
5578                                                                           based on weight (51-100 lbs)
5579                                                                                                 200.00
5580                                                                                                 200.00
5581                                                                                                   1.00
5582                                                                                                 125.00
5583                                                                                                   8.00
5584                                                                                                   1.00
5585                                                                                                1000.00
5586                                                                                                  11.00
5587                                                                                                 500.00
5588                                                                                                   5.00
5589                                                                                                  57.00
5590                                                                                                  68.00
5591                                                                                                  81.50
5592                                                                                                  73.00
5593                                                                                                 100.00
5594                                                                                                 136.50
5595                                                                           based on weight (51-100 lbs)
5596                                                                                                  23.00
5597                                                                                                 460.00
5598                                                                                                  10.00
5599                                                                                                  60.00
5600                                                                           based on weight (51-100 lbs)
5601                                                                                                  45-88
5602                                                                           based on weight (51-100 lbs)
5603                                                                                                   2.68
5604                                                                                                  23.00
5605                                                                                                 500.00
5606                                                                                                   1.36
5607                                                               460 mg lufenuron, 23 mg milbemycin oxime
5608                                                                                                   2.68
5609                                                                                                  23.00
5610                                                                                                 200.00
5611                                                                                                   1.00
5612                                                                                                 500.00
5613                                                                                                   1.00
5614                                                                                                  60.00
5615                                                                                                   1.00
5616                                                                                                 200.00
5617                                                                                                  15.00
5618                                                                                                   3.00
5619                                                                                                  80.00
5620                                                                                                   1.00
5621                                                                                                  30.00
5622                                                                                                 400.00
5623                                                                                                 500.00
5624                                                                                                   1.20
5625                                                                                                   1.20
5626                                                                           based on weight (51-100 lbs)
5627                                                                           based on weight (51-100 lbs)
5628                                                                           based on weight (61-120 lbs)
5629                                                                           based on weight (51-100 lbs)
5630                                                                           based on weight (60-120 lbs)
5631                                                                           based on weight (51-100 lbs)
5632                                                                            based on weight (24-60 lbs)
5633                                                                                                 200.00
5634                                                                                                 200.00
5635                                                                                                 100.00
5636                                                                                                   5.00
5637                                                                                                  13.50
5638                                                                                                 810.00
5639                                                                                                 810.00
5640                                                                                                  13.50
5641                                                                                                 1.7 ml
5642                                                                                                   1.70
5643                                                                                                   0.18
5644                                                                                                  60.00
5645                                                                                                  17.70
5646                                                                                                   1.84
5647                                                                                                1000.00
5648                                                                                                 180.00
5649                                                                                          5 billion cfu
5650                                                                                                  60.00
5651                                                                                                1500.00
5652                                                                                                   1.00
5653                                                                                                 300.00
5654                                                                                                 600.00
5655                                                                                                   6.00
5656                                                                                                   2.00
5657                                                                                                 200.00
5658                                                                                                  40.00
5659                                                                                                   7.00
5660                                                                                                 400.00
5661                                                                                                  10.00
5662                                                                                                 175.00
5663                                                                                                 200.00
5664                                                                                                1000.00
5665                                                                                                 200.00
5666                                                                                                 500.00
5667                                                                                                 400.00
5668                                                                                                272 mcg
5669                                                                                                   1.00
5670                                                                                                   2.00
5671                                                                                                   2.00
5672                                                                                                   1.00
5673                                                                                                  25.00
5674                                                                                                  50.00
5675                                                                                                  10.00
5676                                                                                                   2.00
5677                                                                                                   1.00
5678                                                                                                   1.00
5679                                                                                                   2.00
5680                                                                                                   1.00
5681                                                                           based on weight (60-120 lbs)
5682                                                                           based on weight (51-100 lbs)
5683                                                                                                  10.00
5684                                                                                                   7.50
5685                                                                                                2000.00
5686                                                                                                  70.00
5687                                                                                                   1.00
5688                                                                                                   1.00
5689                                                                                                   1.00
5690                                                                                                  50.00
5691                                                                                                   8.00
5692                                                                                                 272.00
5693                                                                                                   6.00
5694                                                                                                   6.00
5695                                                                                            unspecified
5696                                                                                                  23.00
5697                                                                                                   2.68
5698                                                                                                  23.00
5699                                                                                                1000.00
5700                                                                                                  23.00
5701                                                                                                  68.00
5702                                                                                                  23.00
5703                                                                                                 272.00
5704                                                                                                 136.00
5705                                                                                                 460.00
5706                                                                                                 136.00
5707                                                                                                  23.00
5708                                                                                                  68.00
5709                                                                                                  23.00
5710                                                                                                   2.30
5711                                                                                                 136.00
5712                                                                                                  60.00
5713                                                                                                1620.00
5714                                                                                                  27.00
5715                                                                                                  45.40
5716                                                                                                  45.40
5717                                                                                                 226.80
5718                                                                                                 250.00
5719                                                                                                 500.00
5720                                                                                                1454.00
5721                                                               27 mg milbemycin oxime, 1620 mg spinosad
5722                                                                                         27 mg, 1620 mg
5723                                                               27 mg milbemycin oxime, 1620 mg spinosad
5724                                                               27 mg milbemycin oxime, 1620 mg spinosad
5725                                                                                               27, 1620
5726                                                                                                  23.00
5727                                                                                                1000.00
5728                                                               27 mg milbemycin oxime, 1620 mg spinosad
5729                                                                                            unspecified
5730                                                                                                 200.00
5731                                                                                            unspecified
5732                                                                                                 150.00
5733                                                                                                 300.00
5734                                                                                                 300.00
5735                                                                                                  30.00
5736                                                                                                  20.00
5737                                                                                                 750 mg
5738                                                                                                   1.00
5739                                                                                                 272.00
5740                                                                                                 272.00
5741                                                                                                 136.00
5742                                                                                                 272.00
5743                                                                                                 136.00
5744                                                                                                 227.00
5745                                                                                                 272.00
5746                                                                                                   4.28
5747                                                                                        based on weight
5748                                                                                                  60-10
5749                                                                                                 136.00
5750                                                                                                 272.00
5751                                                                                                 136.00
5752                                                                                                 227.00
5753                                                                                                 136.00
5754                                                                                                 272.00
5755                                                                                                 136.00
5756                                                                                                 272.00
5757                                                                                                 136.00
5758                                                                                                1500.00
5759                                                                                                 500.00
5760                                                                                            unspecified
5761                                                                                                 483.00
5762                                                                                        based on weight
5763                                                                                                   1.30
5764                                                                                                 272.00
5765                                                                                                   1.60
5766                                                                                                 200.00
5767                                                                                                   1.40
5768                                                                           based on weight (51-100 lbs)
5769                                                                                                 272.00
5770                                                                                                 120.00
5771                                                            23 mg milbemycin oxime, 228 mg praziquantel
5772                                                                                                  23.00
5773                                                                                                 228.00
5774                                                                                                 750 mg
5775                                                                                                  75.00
5776                                                                                                 375.00
5777                                                                                            unspecified
5778                                                                                                 100.00
5779                                                                                                   1.00
5780                                                                                                 300.00
5781                                                                                                 300.00
5782                                                                                                 100.00
5783                                                                                                 300.00
5784                                                                                                  10.00
5785                                                                                                  75.00
5786                                                                                                 136.00
5787                                                                                                 125.00
5788                                                                                                 125.00
5789                                                                                                  25.00
5790                                                                                                 200.00
5791                                                                                                   8.00
5792                                                                                                  50.00
5793                                                                                                  26-50
5794                                                                                                  41-60
5795                                                                                                 200.00
5796                                                                                                  50.00
5797                                                                                                 250.00
5798                                                                                                 100.00
5799                                                                                                   1.00
5800                                                                                                 100.00
5801                                                                                                  50.00
5802                                                                                                 200.00
5803                                                                                                   8.00
5804                                                                                                13, 228
5805                                                                                                   8.00
5806                                                                                                   8.00
5807                                                                                                  75.00
5808                                                                                                   1.00
5809                                                                                                   1.00
5810                                                                                                   1.00
5811                                                                                                   8.00
5812                                                                                                  40.00
5813                                                                                                   4.00
5814                                                                                            unspecified
5815                                                                                                   8.00
5816                                                                                                  40.00
5817                                                                                                 250.00
5818                                                                                                   5.00
5819                                                                                                 272.00
5820                                                                                                 272.00
5821                                                                                                 272.00
5822                                                                                                   1.00
5823                                                                                                  37.50
5824                                                                                                  10.00
5825                                                                                                  50.00
5826                                                                                                  50.00
5827                                                                                                  75.00
5828                                                                                                  50.00
5829                                                                                                   1.00
5830                                                                                                   1.00
5831                                                                                                 272.00
5832                                                                                                 227.00
5833                                                                                                 272.00
5834                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5835                                                                                                 272.00
5836                                                                                                 460.00
5837                                                                                                 500.00
5838                                                                                                  10.00
5839                                                                           based on weight (51-100 lbs)
5840                                                                                                23, 460
5841                                                                                                  50.00
5842                                                                                                 272.00
5843                                                                                                 250.00
5844                                                                                                   1.00
5845                                                                                                   1.00
5846                                                                                                   5.00
5847                                                                                                  95.00
5848                                                                                                 125.00
5849                                                                                                   6.25
5850                                                                                                   1.00
5851                                                                                                 136.00
5852                                                                                                  41.00
5853                                                                                                 100.00
5854                                                                                                 275.00
5855                                                                                                 100.00
5856                                                                                                 275.00
5857                                                                                                 420.00
5858                                                                                        0.25 inch strip
5859                                                                                                 375.00
5860                                                                                                   5.00
5861                                                                                                 272.00
5862                                                                                                  41.47
5863                                                                                                 130.00
5864                                                                                                  50.00
5865                                                                                                 272.00
5866                                                                                                 840.00
5867                                                                                                  41.47
5868                                                                                                 272.00
5869                                                                           based on weight (51-100 lbs)
5870                                                                                                 500.00
5871                                                                                                   0.25
5872                                                                                                  0-125
5873                                                                                                   0-88
5874                                                                                                   2.00
5875                                                                                                  15.00
5876                                                                                                   4.00
5877                                                                                        based on weight
5878                                                                                                 500.00
5879                                                                                                 200.00
5880                                                                                                  15.00
5881                                                                                                  75.00
5882                                                                                                1000.00
5883                                                                                                  50.00
5884                                                                                            unspecified
5885                                                                                                 100.00
5886                                                                                                  10.00
5887                                                                                           small amount
5888                                                                                                1000.00
5889                                                                                                 200.00
5890                                                                                                 86-130
5891                                                                                                 100.00
5892                                                                                                 200.00
5893                                                                                                 100.00
5894                                                                                                  50.00
5895                                                                                                  16.00
5896                                                                                                 88-123
5897                                                                                                 100.00
5898                                                                                                   1.00
5899                                                                                                  16.00
5900                                                                                                   1.00
5901                                                                                                1400.00
5902                                                                                                  16.00
5903                                                                                                   0.50
5904                                                                                                  75.00
5905                                                                                                1400.00
5906                                                                                                  16.00
5907                                                                                                  75.00
5908                                                                                                1400.00
5909                                                                                                  16.00
5910                                                                                                  20.00
5911                                                                                                 300.00
5912                                                                                                  75.00
5913                                                                                        based on weight
5914                                                                                                  16.00
5915                                                                                                  20.00
5916                                                                                                   8.00
5917                                                                                              6-8 drops
5918                                                                                                   5.63
5919                                                                                                 500.00
5920                                                                                                   1.00
5921                                                                                                 250.00
5922                                                                                                 500.00
5923                                                                                                 350.00
5924                                                                                                  50.00
5925                                                                                                 60-120
5926                                                                                                1620.00
5927                                                                                                  27.00
5928                                                                                                 60-120
5929                                                                                                  15.00
5930                                                                           based on weight (51-100 lbs)
5931                                                                                                  44-88
5932                                                                                            unspecified
5933                                                                            based on weight (44-88 lbs)
5934                                                                           based on weight (51-100 lbs)
5935                                                                                                  drops
5936                                                                           based on weight (51-100 lbs)
5937                                                                            based on weight (44-88 lbs)
5938                                                                                                   0.01
5939                                                                                                   0.01
5940                                                                                                 500.00
5941                                                                           based on weight (51-100 lbs)
5942                                                                            based on weight (44-88 lbs)
5943                                                                                                   1.00
5944                                                                                                 500.00
5945                                                                                             1 wipe/pad
5946                                                                                                 200.00
5947                                                                                                 500.00
5948                                                                                                   1.50
5949                                                                                                 300.00
5950                                                                                                  75.00
5951                                                                                                 500.00
5952                                                                                                  12.50
5953                                                                                                  30.00
5954                                                                                                   1.00
5955                                                                                                 375.00
5956                                                                                                   1.00
5957                                                                                                 300.00
5958                                                                                                  75.00
5959                                                                                                   1.00
5960                                                                                                  15.00
5961                                                                                                  30.00
5962                                                                                                  75.00
5963                                                                           based on weight (51-100 lbs)
5964                                                                         based on weight (60.1-121 lbs)
5965                                                               460 mg lufenuron, 23 mg milbemycin oxime
5966                                                                                                  23 mg
5967                                                                                       460 mg lufenuron
5968                                                                                                  23 mg
5969                                                                                                1000.00
5970                                                                                                 400.00
5971                                                                                                 500.00
5972                                                                                                  80.00
5973                                                                                                  20.00
5974                                                                                                 125.00
5975                                                                                                 136.00
5976                                                                                            as directed
5977                                                                                                  75 mg
5978                                                                                                  50 mg
5979                                                                                                1000 mg
5980                                                                                  1 tablet/pill/capsule
5981                                                                                    tablet/pill/capsule
5982                                                                                                1620.00
5983                                                                                                  37.50
5984                                                                                                 200.00
5985                                                                                                 88-123
5986                                                                                                  37.50
5987                                                                                                100-150
5988                                                                                        based on weight
5989                                                                                                  75.00
5990                                                                                                 500.00
5991                                                                                        based on weight
5992                                                                                        based on weight
5993                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
5994                                                                            based on weight (44-88 lbs)
5995                                                                                                   1.00
5996                                                                                                   1.00
5997                                                                                                   1.00
5998                                                                                                   1.00
5999                                                                                                 100.00
6000                                                               460 mg lufenuron, 23 mg milbemycin oxime
6001                                                                                                  15.00
6002                                                                              based on weight (55+ lbs)
6003                                                               460 mg lufenuron, 23 mg milbemycin oxime
6004                                                                8.8% imidacloprid, 44% permethrin - 4ml
6005                                                                                                  15 gm
6006                                                                                                   1.00
6007                                                                                                 227.00
6008                                                                                                  60.00
6009                                                                                                  16.00
6010                                                                                                 500.00
6011                                                                                                   1.00
6012                                                                                                 50-121
6013                                                                                                 150.00
6014                                                                                            unspecified
6015                                                                                            unspecified
6016                                                                                            unspecified
6017                                                                                            unspecified
6018                                                                                                 500.00
6019                                                                                                 750.00
6020                                                                                                 100.00
6021                                                                                                227 mcg
6022                                                                                                 227 mg
6023                                                                                                 272.00
6024                                                                                                 272.00
6025                                                                                                 272.00
6026                                                                                                 272.00
6027                                                                                                 227.00
6028                                                                                                 500.00
6029                                                                                                 108.00
6030                                                                                                 300.00
6031                                                                                                  75.00
6032                                                                                                 500.00
6033                                                                                                  15.00
6034                                                                                                   7.00
6035                                                                                                   5.00
6036                                                                                               27, 1620
6037                                                                                                 272.00
6038                                                                           based on weight (51-100 lbs)
6039                                                                                  1 tablet/pill/capsule
6040                                                                                                 272.00
6041                                                                                                   4.02
6042                                                                                                   2.68
6043                                                                                                 272.00
6044                                                                                                  16.00
6045                                                                                                 200.00
6046                                                                                                   4.00
6047                                                                                                  23.00
6048                                                                                                   2.68
6049                                                                                                   0.09
6050                                                                                                   2.68
6051                                                                                                 500.00
6052                                                                                                 136.00
6053                                                                                                  10.00
6054                                                                                                 100.00
6055                                                                                                   2.60
6056                                                                                                  23.00
6057                                                                                                  23.00
6058                                                                                                   2.68
6059                                                                           based on weight (51-100 lbs)
6060                                                                                                 60-121
6061                                                                                                  70.00
6062                                                                                                 750.00
6063                                                                                           small amount
6064                                                                                                  37.50
6065                                                                                                  60.00
6066                                                                                                 500.00
6067                                                                                                  10.00
6068                                                                           based on weight (50-100 lbs)
6069                                                                            based on weight (55-95 lbs)
6070                                                                                                  50 mg
6071                                                                                            unspecified
6072                                                                                        based on weight
6073                                                                                                 50-100
6074                                                                                                1 spray
6075                                                                                                 500.00
6076                                                                                                 collar
6077                                                                                                 227.00
6078                                                                                                 collar
6079                                                                                                 500.00
6080                                                                                                   1.00
6081                                                                                                 750.00
6082                                                                                                  50.00
6083                                                                                                 500.00
6084                                                                                                  50.00
6085                                                                                                   2.50
6086                                                                                                1620.00
6087                                                                                                 160.00
6088                                                                                        0.25 inch strip
6089                                                                                                  25-50
6090                                                                                        0.25 inch strip
6091                                                                                                  75.00
6092                                                                                              0.4 mg/kg
6093                                                                                            unspecified
6094                                                                                                  60 ml
6095                                                                                             1-2 sprays
6096                                                                                                  20 mg
6097                                                                                                  15 mg
6098                                                                                                 1.3 mg
6099                                                                                                  30 mg
6100                                                                                                  23.00
6101                                          460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
6102                                        1 mg betamethasone, 10 mg clotrimazole, 3 mg gentamicin sulfate
6103                                                                                                   0.10
6104                                                                                           23, 228, 460
6105                                                                                                  80.00
6106                                                                                                   1.00
6107                                                                                                  80.00
6108                                                                                                 100.00
6109                                                                                      90, 350, 800, 900
6110                                                                                                 200.00
6111                                                                                                 900.00
6112                                                                                                  60.00
6113                                                                                                 300.00
6114                                                                                                  20.00
6115                                                                                                  60.00
6116                                                                                                   1.00
6117                                                                                                  17.00
6118                                                                                                  20.00
6119                                                                                                   0.90
6120                                                                                                  24.00
6121                                                                                                  80.00
6122                                                                                                   7.20
6123                                                                                                   7.20
6124                                                                                                  75.00
6125                                                                                                  75.00
6126                                                                                                   1.00
6127                                                                                                   3.60
6128                                                                                                  75.00
6129                                                                                  1 tablet/pill/capsule
6130                                                                                  1 tablet/pill/capsule
6131                                                                                                 100.00
6132                                                                           based on weight (51-100 lbs)
6133                                                                           based on weight (60-120 lbs)
6134                                                                           based on weight (51-100 lbs)
6135                                                                            based on weight (44-88 lbs)
6136                                                                           based on weight (51-100 lbs)
6137                                                                            based on weight (44-88 lbs)
6138                                                                                                  16.00
6139                                                                           based on weight (51-100 lbs)
6140                                                                            based on weight (44-88 lbs)
6141                                                                                                   1.00
6142                                                                                                 200.00
6143                                                                                                 300.00
6144                                                                                                 600.00
6145                                                                                                  75.00
6146                                                                                                  20.00
6147                                                                                                1647.00
6148                                                                         based on weight (60.1-120 lbs)
6149                                                                                  1 tablet/pill/capsule
6150                                                                                  1 tablet/pill/capsule
6151                                                                                                 136.00
6152                                                                                                  23 mg
6153                                                                                                1000.00
6154                                                                                                  20.00
6155                                                                                                  10.00
6156                                                                                                   5.00
6157                                                                                                   5.00
6158                                                                                                   1.00
6159                                                                                                  57.00
6160                                                                                                  45-88
6161                                                                                                23, 460
6162                                                                                                 272.00
6163                                                                                                 136.00
6164                                                                                           small amount
6165                                                                                                  90.00
6166                                                                                                  50.00
6167                                                                                                 200.00
6168                                                                                                 250.00
6169                                                                                                 227.00
6170                                                                                                  22.70
6171                                                                                                   0.40
6172                                                                                                  50.00
6173                                                                                                  10.00
6174                                                                                                  18.00
6175                                                                                                 250.00
6176                                                                                                   1.20
6177                                                                                                 240.00
6178                                                                                                  12.00
6179                                                                                                   1.50
6180                                                                                                   8.00
6181                                                                                                  50.00
6182                                                                                                 113.50
6183                                                                                                 500.00
6184                                                                                                 500.00
6185                                                                                                 272.00
6186                                                                                                  25.00
6187                                                                                                 136.00
6188                                                                                                   1.00
6189                                                                                                  25-50
6190                                                                                                 272.00
6191                                                                                                   3.00
6192                                                                                                  20.00
6193                                                                                                 850.00
6194                                                                                                 750.00
6195                                                                                                  75.00
6196                                                                                                   6.00
6197                                                                                                 272.00
6198                                                                                                   1.40
6199                                                                                                  50.00
6200                                                                           based on weight (88-132 lbs)
6201                                                                                                 272.00
6202                                                                           based on weight (60-120 lbs)
6203                                                                                                  16.00
6204                                                                                                  60.00
6205                                                                                                 200.00
6206                                                                                            application
6207                                                                                                  60.00
6208                                                                                            application
6209                                                                                                  23.00
6210                                                                                                 120.00
6211                                                                                                 900.00
6212                                                                                                   4.20
6213                                                                                                   2.00
6214                                                                                                   3.80
6215                                                                                                 1 pump
6216                                                                                                  90.00
6217                                                                                             14.8, 16.6
6218                                                                                                 varies
6219                                                                                                   2.50
6220                                                                                                  75.00
6221                                                                                                5-10 ml
6222                                                                                                  75.00
6223                                                                                                  50.00
6224                                                                           based on weight (50-100 lbs)
6225                                                                         based on weight (88.1-132 lbs)
6226                                                                              based on weight (60+ lbs)
6227                                                                                                  90.00
6228                                                                                                1000.00
6229                                                                                                   1.00
6230                                                                                                   4.30
6231                                                                           based on weight (50-100 lbs)
6232                                                                         based on weight (88.1-132 lbs)
6233                                                                                                 100.00
6234                                                                                                   1.00
6235                                                                                                   1.00
6236                                                                                                   1.00
6237                                                                                                 100.00
6238                                                                                                   4.10
6239                                                                                                   4.10
6240                                                                                                 500.00
6241                                                                                                 204.00
6242                                                                                                   1.80
6243                                                                                                 100.00
6244                                                                                            unspecified
6245                                                                                                   8.00
6246                                                                                                  20.00
6247                                                                                                   4.00
6248                                                                                                  60.00
6249                                                                                                  15.00
6250                                                                                                 100.00
6251                                                                                                  90.00
6252                                                                                                  50.00
6253                                                                                                 500.00
6254                                                                                  1 tablet/pill/capsule
6255                                                                                                 200 mg
6256                                                                                                   3.00
6257                                                                            based on weight (40-85 lbs)
6258                                                                           based on weight (50-100 lbs)
6259                                                                                                 150.00
6260                                                                                                   3.00
6261                                                                                                 175.00
6262                                                                                  1 tablet/pill/capsule
6263                                                                                  1 tablet/pill/capsule
6264                                                                                                 175.00
6265                                                                                                 150.00
6266                                                                                            application
6267                                                                                           small amount
6268                                                                                                   5.00
6269                                                                                                   0.09
6270                                                                                                 300.00
6271                                                                                                 200.00
6272                                                                                                  50.00
6273                                                                                                 200.00
6274                                                                                                   7.50
6275                                                                                            unspecified
6276                                                                                                  50.00
6277                                                                                                 600.00
6278                                                                                                 300.00
6279                                                                                                 250.00
6280                                                                                                   5.00
6281                                                                                                1100.00
6282                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6283                                                                            based on weight (44-88 lbs)
6284                                                                                                410 epa
6285                                                                                                 274.00
6286                                                                                                 600.00
6287                                                                                                 300.00
6288                                                                                                 250.00
6289                                                                                                 820.00
6290                                                                                                 548.00
6291                                                                                                1000.00
6292                                                                                                 800.00
6293                                                                            based on weight (24-60 lbs)
6294                                                                                                 500.00
6295                                                                                                 500.00
6296                                                                                              0.125 tsp
6297                                                                                                   1.00
6298                                                                                                 272.00
6299                                                                                                  75.00
6300                                                                                                 100.00
6301                                                                                                 272.00
6302                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6303                                                                                                  16.00
6304                                                                                                1000.00
6305                                                                                                  16.00
6306                                                                                                 170.00
6307                                                                                              62.5, 437
6308                                                                                                1000.00
6309                                                                                                   0.13
6310                                                                                                 500.00
6311                                                                                                  80.00
6312                                                                                            unspecified
6313                                                                                                 750.00
6314                                                                                                   0.12
6315                                                                                                   1.00
6316                                                                                                 750.00
6317                                                                                                   0.13
6318                                                                                                1000.00
6319                                                                                            unspecified
6320                                                                                            unspecified
6321                                                                                                  75.00
6322                                                                                                 750.00
6323                                                                                                1000.00
6324                                                                                                2000.00
6325                                                                                  1 tablet/pill/capsule
6326                                                                                            application
6327                                                                                                 272.00
6328                                                                               2 tablets/pills/capsules
6329                                                                                  1 tablet/pill/capsule
6330                                                                                                   8.00
6331                                                                           based on weight (51-100 lbs)
6332                                                                                                   1.50
6333                                                                                                   1.00
6334                                                                                                   1.00
6335                                                                                                  50.00
6336                                                                                                   2.40
6337                                                                                                   1.00
6338                                                                                                  75.00
6339                                                                                                  20.00
6340                                                                                                  20.00
6341                                                                                  1 tablet/pill/capsule
6342                                                                                                 1 tube
6343                                                                                  1 tablet/pill/capsule
6344                                                                                                  50.00
6345                                                                                                   2.60
6346                                                                                                 100.00
6347                                                                                                 200.00
6348                                                                                                 375.00
6349                                                                                                  50.00
6350                                                                                                   0.57
6351                                                                                                   2.60
6352                                                                                                 100.00
6353                                                                                                 272.00
6354                                                                                                  45-88
6355                                                                                                 500.00
6356                                                                                                  50.00
6357                                                                                                 150.00
6358                                                                                            unspecified
6359                                                                                                 100.00
6360                                                                                                 100.00
6361                                                                                                 272.00
6362                                                                                                  45-88
6363                                                                                                 200.00
6364                                                                                                 500.00
6365                                                                                                 272.00
6366                                                                                                   1.00
6367                                                                                                   1.00
6368                                                                                                1000.00
6369                                                                                                 272.00
6370                                                                                                  75.00
6371                                                                                                1000.00
6372                                                                                                  75.00
6373                                                                                                1000.00
6374                                                                                                  75.00
6375                                                                                                 200.00
6376                                                                                                 170.00
6377                                                                                                1000.00
6378                                                                                                 600.00
6379                                                                                                 272.00
6380                                                                                                1000.00
6381                                                                                                 272.00
6382                                                                                                 60-120
6383                                                                                                 272.00
6384                                                                                                  23.00
6385                                                                                                 150.00
6386                                                                                                  60.00
6387                                                                                                   1.00
6388                                                                                                 1 drop
6389                                                                                                   7.00
6390                                                                                            unspecified
6391                                                                                                 272.00
6392                                                                                                 272.00
6393                                                                                                 250.00
6394                                                                                                  10.00
6395                                                                            based on weight (45-88 lbs)
6396                                                                                                  50.00
6397                                                                                                  50.00
6398                                                                                                   3.00
6399                                                                                                8 drops
6400                                                                                                   1.00
6401                                                                                                 272.00
6402                                                                                                  15.00
6403                                                                                                   1.00
6404                                                                                                 272.00
6405                                                                            based on weight (44-88 lbs)
6406                                                                                        based on weight
6407                                                                                                 272.00
6408                                                                                                  68.00
6409                                                                                                  12.00
6410                                                                                                1000.00
6411                                                                                           small amount
6412                                                                                               45577.00
6413                                                                                                 272.00
6414                                                                                                 136.00
6415                                                                                                 272.00
6416                                                                                                  80.00
6417                                                                                                  12.00
6418                                                                                                  50.00
6419                                                                                                  50.00
6420                                                                                                   6.00
6421                                                                                                 300.00
6422                                                                                                 200.00
6423                                                                                                 600.00
6424                                                                                                 272.00
6425                                                                                                 900.00
6426                                                                                                 750.00
6427                                                                                                  16.00
6428                                                                                                   1.00
6429                                                                                                 600.00
6430                                                                                                  50.00
6431                                                                                                 250.00
6432                                                                                                 600.00
6433                                                                                                  50.00
6434                                                                                                 600.00
6435                                                                                                  50.00
6436                                                                                                  75.00
6437                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6438                                                                                                1000.00
6439                                                                                                1200.00
6440                                                                                                   1.00
6441                                                                                             1200, 1500
6442                                                                                                1000.00
6443                                                                                               0.5 tube
6444                                                                           based on weight (51-100 lbs)
6445                                                                                                1500.00
6446                                                                                                   1.00
6447                                                                                                 250.00
6448                                                                                                 272.00
6449                                                                                                 136.00
6450                                                                                                  16.00
6451                                                                                            unspecified
6452                                                                                                 250.00
6453                                                                                                   3.00
6454                                                                                                 272.00
6455                                                                                                 136.00
6456                                                                                                  16.00
6457                                                                                                   3.00
6458                                                                                                1000.00
6459                                                                                             1200, 1500
6460                                                                                                  16.00
6461                                                                                            unspecified
6462                                                                                                  16.00
6463                                                                                                 750.00
6464                                                                                                  60.00
6465                                                                                                 400.00
6466                                                                                                   3.75
6467                                                                                                  50.00
6468                                                                                                 100.00
6469                                                                                                 300.00
6470                                                                                                 750.00
6471                                                                                                  60.00
6472                                                                                                   0.50
6473                                                                                                 272.00
6474                                                                           based on weight (51-100 lbs)
6475                                                                            based on weight (44-88 lbs)
6476                                                                                                  60.00
6477                                                                                                  20.00
6478                                                                                                 272.00
6479                                                                                                1400.00
6480                                                                                                   0.50
6481                                                                                                 160.00
6482                                                                                                 272.00
6483                                                                                                1000.00
6484                                                                                                1400.00
6485                                                                                                1400.00
6486                                                         28.75 mg milbemycin oxime, 285 mg praziquantel
6487                                                                                                 100.00
6488                                                                                                 100.00
6489                                                                                                1400.00
6490                                                                                                 100.00
6491                                                                                                 136.00
6492                                                                                                 272.00
6493                                                                                                 136.00
6494                                                                                                  50.00
6495                                                                                                  drops
6496                                                                                                 272.00
6497                                                                                                 1 drop
6498                                                                                                   8 mg
6499                                                                           based on weight (51-100 lbs)
6500                                                                            based on weight (44-88 lbs)
6501                                                                                                 300.00
6502                                                                                                  50.00
6503                                                                                                  90.00
6504                                                                                                  90.00
6505                                                                                                 250.00
6506                                                                                                 250.00
6507                                                                                                 250.00
6508                                                                                                 500.00
6509                                                                                                   0.40
6510                                                                                                 409.80
6511                                                                                                   9.80
6512                                                                                                   0.40
6513                                                                                                 409.80
6514                                                                                                   9.80
6515                                                                                                   0.40
6516                                                                                                 409.80
6517                                                                                                   9.80
6518                                                                                                  23.00
6519                                                                                                   5.00
6520                                                                                                 500.00
6521                                                                                                  20.00
6522                                                                           based on weight (51-100 lbs)
6523                                                                          based on weight (24.1-60 lbs)
6524                                                                                                   0.40
6525                                                                                                  10.00
6526                                                                                                 750.00
6527                                                                           based on weight (51-100 lbs)
6528                                                                          based on weight (24.1-60 lbs)
6529                                                                                                   0.50
6530                                                                                                  10.00
6531                                                                                                 150.00
6532                                                                                                  10.00
6533                                                                                                   0.50
6534                                                                                                  10.70
6535                                                                                                  10.00
6536                                                                                                  10.00
6537                                                                                                   0.50
6538                                                                                                  10.00
6539                                                                                                   0.50
6540                                                                                                   2.40
6541                                                                                                   0.50
6542                                                                                                  10.00
6543                                                                                                   1.00
6544                                                                                                 200.00
6545                                                                                                  50.00
6546                                                                                                   5.00
6547                                                                                                 200.00
6548                                                                                                1000.00
6549                                                                                                  30.00
6550                                                                                                   3.00
6551                                                                                                  24.00
6552                                                                                                 500.00
6553                                                                                                 460.00
6554                                                                                                  68.00
6555                                                                           based on weight (51-100 lbs)
6556                                                                                                 250.00
6557                                                                                                   6.00
6558                                                                                                  23.00
6559                                                                                                 250.00
6560                                                                                                 150.00
6561                                                                                                 250.00
6562                                                                                        moderate amount
6563                                                                                                  13.50
6564                                                                                                 810.00
6565                                                                                  1 tablet/pill/capsule
6566                                                                                                 272.00
6567                                                                                                 272.00
6568                                                                                                 272.00
6569                                                                           based on weight (51-100 lbs)
6570                                                                            based on weight (44-88 lbs)
6571                                                                                            unspecified
6572                                                                                                 272.00
6573                                                                            based on weight (45-88 lbs)
6574                                                                                                 600.00
6575                                                                                                 227.00
6576                                                                                                  68.00
6577                                                                                                  60.00
6578                                                                                                 200.00
6579                                                                                        based on weight
6580                                                                                                 136.00
6581                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6582                                                                                                 272.00
6583                                                                                                 227.00
6584                                                                                                  23.00
6585                                                                                                 200.00
6586                                                                                                  23.00
6587                                                                                                 200.00
6588                                                                                                 200.00
6589                                                                                                  23.00
6590                                                                                                 200.00
6591                                                                                                  20.00
6592                                                                                                 200.00
6593                                                                                                  20.00
6594                                                                           based on weight (51-100 lbs)
6595                                                                                                 375.00
6596                                                                                                 100.00
6597                                                                                                 200.00
6598                                                                                                  75.00
6599                                                                                                  75.00
6600                                                                                                 200.00
6601                                                                                                  50.00
6602                                                                           based on weight (51-100 lbs)
6603                                                                                                1000.00
6604                                                                                                  15.00
6605                                                                                                 750.00
6606                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6607                                                                                                 100.00
6608                                                                                                 499.00
6609                                                                                                 500.00
6610                                                                                                 227.00
6611                                                                                                 272.00
6612                                                                         based on weight (50.1-100 lbs)
6613                                                                                                  75.00
6614                                                                                                 300.00
6615                                                                                                 100.00
6616                                                                                                1000.00
6617                                                                                                 375.00
6618                                                                                                  75.00
6619                                                                                                  20.00
6620                                                                                                  75.00
6621                                                                                                1000.00
6622                                                                                                1000.00
6623                                                                                                  20.00
6624                                                                                                  20.00
6625                                                                           based on weight (51-100 lbs)
6626                                                                                                  20.00
6627                                                                                                  10.00
6628                                                                                                  20.00
6629                                                                                                 500.00
6630                                                                                                  75.00
6631                                                                                                  70.00
6632                                                                                                  70.00
6633                                                                                                   1.00
6634                                                                                                 500.00
6635                                                                                                   1.00
6636                                                                           based on weight (50-100 lbs)
6637                                                                                                 113.50
6638                                                                                                 500.00
6639                                                                                                 51-100
6640                                                                                                 100.00
6641                                                                                                 500.00
6642                                                                                                 500.00
6643                                                                                                   3.00
6644                                                                           based on weight (51-100 lbs)
6645                                                                                                   1.00
6646                                                                                                   1.00
6647                                                                           based on weight (51-100 lbs)
6648                                                                            based on weight (44-88 lbs)
6649                                                                                             0.03 mg/kg
6650                                                                                            application
6651                                                                                                 500.00
6652                                                                                                  23.00
6653                                                                                                 600.00
6654                                                                                                 228.00
6655                                                                                                 272.00
6656                                                                                                 375.00
6657                                                                                  1 tablet/pill/capsule
6658                                                                                        based on weight
6659                                                                                                 750.00
6660                                                                                                  68.00
6661                                                                                                  50.00
6662                                                                                            unspecified
6663                                                                           based on weight (51-100 lbs)
6664                                                                                                 272.00
6665                                                                                                   1.00
6666                                                                                                  45.00
6667                                                                                                  10.00
6668                                                                                                 272.00
6669                                                                                                 227.00
6670                                                                                                   1.00
6671                                                                                                 125.00
6672                                                                                                 500.00
6673                                                                                                  50.00
6674                                                                                                   0-25
6675                                                                                                  26-50
6676                                                                                                 50-100
6677                                                                                                  75.00
6678                                                                                                  60.00
6679                                                                                                  50.00
6680                                                                                            unspecified
6681                                                                                                 125.00
6682                                                                                                  37.50
6683                                                                                           small amount
6684                                                                                                 250.00
6685                                                                                                1200.00
6686                                                                                                   1.00
6687                                                                                            unspecified
6688                                                                                            unspecified
6689                                                                                                 136.00
6690                                                                                                  12.00
6691                                                                                                  50.00
6692                                                                                                 500.00
6693                                                                                  1 tablet/pill/capsule
6694                                                                               2 tablets/pills/capsules
6695                                                                                                  32.00
6696                                                                                        based on weight
6697                                                                               based on weight (58 lbs)
6698                                                                                            unspecified
6699                                                                                                1200.00
6700                                                                                                 450.00
6701                                                                                                 150.00
6702                                                                                            unspecified
6703                                                                                        based on weight
6704                                                                                                 450.00
6705                                                                                                  10.00
6706                                                                                                   1.00
6707                                                                                                 100.00
6708                                                                                                 100.00
6709                                                                                                   5.00
6710                                                                                                   1.70
6711                                                                                                   1.70
6712                                                                                                   1.10
6713                                                                                                 375.00
6714                                                                                                5-10 mg
6715                                                                            based on weight (26-50 lbs)
6716                                                                                            unspecified
6717                                                                                            unspecified
6718                                                                                                   3.80
6719                                                                                                   2.50
6720                                                                                                   0.55
6721                                                                                                 500.00
6722                                                                                                 500.00
6723                                                                                                 100.00
6724                                                                                                  40.00
6725                                                                                                  50.00
6726                                                                                                   1.00
6727                                                                                                   1.00
6728                                                                                                 272.00
6729                                                                                                 100.00
6730                                                                                                 150.00
6731                                                                                                 272.00
6732                                                                                                  40.00
6733                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
6734                                                                                                 227.00
6735                                                                                                 340.00
6736                                                                                                 200.00
6737                                                                                                  32.00
6738                                                                                                   0.40
6739                                                                                                 125 mg
6740                                                                                                 300.00
6741                                                                                                   0.40
6742                                                                                                  16.00
6743                                                                                                 600.00
6744                                                                                                 200.00
6745                                                                                                 100.00
6746                                                                                                 750.00
6747                                                                                                 600.00
6748                                                                                                   0.40
6749                                                                                                  16.00
6750                                                                                                 200.00
6751                                                                                            unspecified
6752                                                                                                 100.00
6753                                                                                                 200.00
6754                                                                                                 600.00
6755                                                                                                   0.40
6756                                                                                                 100.00
6757                                                                                                 272.00
6758                                                                                                 500.00
6759                                                                                            application
6760                                                                                            unspecified
6761                                                                                                 272.00
6762                                                                                                  10.20
6763                                                                           based on weight (51-100 lbs)
6764                                                                            based on weight (44-88 lbs)
6765                                                                                                  16.00
6766                                                                                                  20.00
6767                                                                                                   8.00
6768                                                                                                 500.00
6769                                                                                                 600.00
6770                                                                                                   1.00
6771                                                                                                   3.00
6772                                                                                                 250.00
6773                                                                                                 125.00
6774                                                                                                   1.00
6775                                                                                                   1.00
6776                                                                                                   1.00
6777                                                                                                  50.00
6778                                                                           based on weight (51-100 lbs)
6779                                                                           based on weight (51-100 lbs)
6780                                                                                                 116.00
6781                                                                           based on weight (51-100 lbs)
6782                                                                                                 227.00
6783                                                                         based on weight (50.1-100 lbs)
6784                                                                                                 136.00
6785                                                                                                 272.00
6786                                                                              based on weight (55+ lbs)
6787                                                                                                 272.00
6788                                                                                                  68.00
6789                                                                                                272 mcg
6790                                                                                                1000.00
6791                                                                                                1000.00
6792                                                                                                 272.00
6793                                                                                                1000.00
6794                                                                                                  50.00
6795                                                                                                  50.00
6796                                                                           based on weight (51-100 lbs)
6797                                                                                                23, 228
6798                                                                                                 500.00
6799                                                                                                 100.00
6800                                                                                                   0.70
6801                                                                                                  75.00
6802                                                                                                   0.30
6803                                                                                                  75.00
6804                                                                                                   1.00
6805                                                                                                  16.00
6806                                                                                                 500.00
6807                                                                                                 272.00
6808                                                                                                  16.00
6809                                                                                                  16.00
6810                                                                                                  75.00
6811                                                                                                 200.00
6812                                                                                                  60.00
6813                                                                                                  16.00
6814                                                                                                 100.00
6815                                                                           based on weight (51-100 lbs)
6816                                                                                        0.25 inch strip
6817                                                                                        0.25 inch strip
6818                                                                                              5-8 drops
6819                                                                                                   8.00
6820                                                                                                   2.00
6821                                                                                                 500.00
6822                                                                                                 100.00
6823                                                                                                 625.00
6824                                                                                            unspecified
6825                                                                                                 100.00
6826                                                                                            unspecified
6827                                                                                                 100.00
6828                                                                           based on weight (51-100 lbs)
6829                                                                                                  20.00
6830                                                                                                  25.00
6831                                                                                                   8.00
6832                                                                                                1000.00
6833                                                                                                   8.00
6834                                                                                                  10.00
6835                                                                                                  10.00
6836                                                                                                  10.00
6837                                                                                                   1.00
6838                                                                                                 272.00
6839                                                                                                  75 mg
6840                                                                                                  16.00
6841                                                                                                  23.00
6842                                                                                                  23.00
6843                                                                                                  23.00
6844                                                                                                 200.00
6845                                                                                                 100.00
6846                                                                                                  23.00
6847                                                                                                 125.00
6848                                                                                                  24.00
6849                                                                                                 136.00
6850                                                                                                  50.00
6851                                                                                                  75.00
6852                                                                                                 250.00
6853                                                                                                   5.00
6854                                                                                                  45-88
6855                                                                                                 272.00
6856                                                                                                  60.00
6857                                                                                                   1.00
6858                                                                                                  50.00
6859                                                                                                   1.00
6860                                                                                                   0.07
6861                                                                                                   1.22
6862                                                                                                   1.00
6863                                                                                                   1.00
6864                                                                                                   1 ml
6865                                                                                                   0.66
6866                                                                                                   0.66
6867                                                                                                  88.00
6868                                                                                            as directed
6869                                                                                                   1.00
6870                                                                                                   1.00
6871                                                                                                 200.00
6872                                                                                                  10.00
6873                                                                                                   1.00
6874                                                                                                 200.00
6875                                                                                                 272.00
6876                                                                                                   1.00
6877                                                                                                   0.66
6878                                                                                                   0.66
6879                                                                                                  88.00
6880                                                                                            as directed
6881                                                                                                   1.00
6882                                                                                                  60.00
6883                                                                                                   2.00
6884                                                                                                   0.97
6885                                                                                                  50.00
6886                                                                                            application
6887                                                                                                 272.00
6888                                                                                                   1.00
6889                                                                                                 200.00
6890                                                                                                 272.00
6891                                                                                            application
6892                                                                                           small amount
6893                                                                                                  50.00
6894                                                                                                  20.00
6895                                                                                                 500.00
6896                                                                                                  20.00
6897                                                                                                 272.00
6898                                                                                                  45-88
6899                                                                                                   2.00
6900                                                                                                 500.00
6901                                                                                                  24.00
6902                                                                                                 250.00
6903                                                                                                   1.00
6904                                                                                                 375.00
6905                                                                                                  15.00
6906                                                                                                272 mcg
6907                                                                                                1000.00
6908                                                                                                 1 pump
6909                                                                                  1 tablet/pill/capsule
6910                                                                           based on weight (50-100 lbs)
6911                                                                                                 100.00
6912                                                                                                 750.00
6913                                                                                                 500.00
6914                                                                                                1000.00
6915                                                                                                   0.80
6916                                                                                                 340.00
6917                                                                                                 100.00
6918                                                                                                 260.00
6919                                                                                                 272.00
6920                                                                                                  68.00
6921                                                                                                   0.80
6922                                                                                                   0.80
6923                                                                                                   0.80
6924                                                                                                 260.00
6925                                                                                                  24.00
6926                                                                                                  40.00
6927                                                                                                   0.80
6928                                                                                            application
6929                                                                                                 500.00
6930                                                                                                 360.00
6931                                                                                                   9.00
6932                                                                                                1000.00
6933                                                                                                 408.00
6934                                                                                           small amount
6935                                                                                            unspecified
6936                                                                                           small amount
6937                                                                                                 500.00
6938                                                                                                 60-120
6939                                                                                                1000.00
6940                                                                                                  19.80
6941                                                                                                 100.00
6942                                                                                                1620.00
6943                                                                                                  38.70
6944                                                                                                1000.00
6945                                                                                                 100.00
6946                                                                                               27, 1620
6947                                                                                                1000.00
6948                                                                                                 100.00
6949                                                                                                  75.00
6950                                                                                                 100.00
6951                                                                                                1000.00
6952                                                                                                  16.00
6953                                                                                                 500.00
6954                                                                                                1620.00
6955                                                                                                1000.00
6956                                                                                            unspecified
6957                                                                                            unspecified
6958                                                                                                 300.00
6959                                                                                                 200.00
6960                                                                                                  75.00
6961                                                                                                 272.00
6962                                                                                                 562.50
6963                                                                                                   1.00
6964                                                                                                  80.00
6965                                                                                                 200.00
6966                                                                                                 200.00
6967                                                                                                   4.30
6968                                                                                                   1.30
6969                                                                                                 100.00
6970                                                                                                   1.00
6971                                                                                                   1.00
6972                                                                                                   1.00
6973                                                                                                 200.00
6974                                                                                                   1.30
6975                                                                                                   1.00
6976                                                                                                 100.00
6977                                                                                                 100.00
6978                                                                                                  20.00
6979                                                                                                 500.00
6980                                                                                                 240.00
6981                                                                            based on weight (44-88 lbs)
6982                                                                           based on weight (51-100 lbs)
6983                                                                           based on weight (55-100 lbs)
6984                                                                                  1 tablet/pill/capsule
6985                                                                                                 272.00
6986                                                                                            unspecified
6987                                                                                                  50.00
6988                                                                                                 300.00
6989                                                                                                  50.00
6990                                                                                                   2.00
6991                                                                                                   2.00
6992                                                                                                  40-85
6993                                                                                                 200.00
6994                                                                                                  16.00
6995                                                                                                  40-85
6996                                                                                                  16.00
6997                                                                                                  16.00
6998                                                                                                  40-85
6999                                                                                                 1 tube
7000                                                                                                 240.00
7001                                                                                                  16.00
7002                                                               27 mg milbemycin oxime, 1620 mg spinosad
7003                                                                                                  16.00
7004                                                                                                  16.00
7005                                                                                            unspecified
7006                                                                                            unspecified
7007                                                                                                  50.00
7008                                                                                                   1.70
7009                                                                                                  40.00
7010                                                                                                 120.00
7011                                                                                                   1.70
7012                                                                                                   1.70
7013                                                                                                  20 mg
7014                                                                                                  20.00
7015                                                                                                   1.60
7016                                                                                                   5.00
7017                                                                            based on weight (44-88 lbs)
7018                                                                                                  30 ml
7019                                                                                                 500 mg
7020                                                                                                  20.00
7021                                                                            based on weight (44-88 lbs)
7022                                                                                                 150.00
7023                                                                                                 1.6 ml
7024                                                                                                  20.00
7025                                                                                            unspecified
7026                                                                                                  50.00
7027                                                                                        0.25 inch strip
7028                                                                                                   0.50
7029                                                                                                   0.50
7030                                                                                  1 tablet/pill/capsule
7031                                                                                                   0.50
7032                                                                                                 500.00
7033                                                                                                  22.70
7034                                                                                                 100.00
7035                                                                                                 500.00
7036                                                                                                   0.50
7037                                                                                                 100.00
7038                                                                                                 500.00
7039                                                                                                 500.00
7040                                                                                                 100.00
7041                                                                                                 500.00
7042                                                                                           small amount
7043                                                                                                   2.00
7044                                                                                                   1.00
7045                                                                                                 500.00
7046                                                                                                   5.00
7047                                                                                                 272 ug
7048                                                                                                 272.00
7049                                                                                                 272.00
7050                                                                                                 272.00
7051                                                                                                 272.00
7052                                                                                                 136.00
7053                                                                                                 272 ug
7054                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7055                                                                                                 500.00
7056                                                                                                  75.00
7057                                                                                                  75.00
7058                                                                                                   1.75
7059                                                                                                 200.00
7060                                                                                                  30.00
7061                                                                                                 100.00
7062                                                                                                 500.00
7063                                                                                                 114.00
7064                                                                                                  26-50
7065                                                                                                 50-100
7066                                                                                                   1.00
7067                                                                                  1 tablet/pill/capsule
7068                                                                                                   1.00
7069                                                                                                 500.00
7070                                                                                                 100.00
7071                                                                                            unspecified
7072                                                                                                  75.00
7073                                                                                                   8.00
7074                                                                                                   1.00
7075                                                                                                  20.00
7076                                                                                                   2.00
7077                                                                                                 272.00
7078                                                                                                 272.00
7079                                                                                                 136.00
7080                                                                                                 272.00
7081                                                                                                 136.00
7082                                                                                                 272.00
7083                                                                                                 136.00
7084                                                                                                  23.00
7085                                                                                                 120.00
7086                                                                                                  25.00
7087                                                                                                 120.00
7088                                                                                                   1.00
7089                                                                                                  50.00
7090                                                                                                 200.00
7091                                                                                                 500.00
7092                                                                                                  spray
7093                                                                           based on weight (60-120 lbs)
7094                                                                                                  60.00
7095                                                                                               27, 1620
7096                                                                                               27, 1620
7097                                                                                                1620.00
7098                                                                                                 136.00
7099                                                                                                  15.00
7100                                                                                                1620.00
7101                                                                                                1620.00
7102                                                                                                1620.00
7103                                                                                                  60.00
7104                                                                                                   3.00
7105                                                                                                 136.00
7106                                                                                                 272.00
7107                                                                                                 272.00
7108                                                                                                 272.00
7109                                                                                                 272.00
7110                                                                                                 272.00
7111                                                                                                 272.00
7112                                                                                                 136.00
7113                                                                                                   0.70
7114                                                                                                 500.00
7115                                                                                                 300.00
7116                                                                                            unspecified
7117                                                                                                  50.00
7118                                                                                                 200.00
7119                                                                                                 300.00
7120                                                                                                  80.00
7121                                                                                                  60.00
7122                                                                                                   3.00
7123                                                                                                  75.00
7124                                                                                                  10.00
7125                                                                                                  10.00
7126                                                                                                  10.00
7127                                                                                            unspecified
7128                                                                                                 810.00
7129                                                                                                  13.50
7130                                                                                               27, 1620
7131                                                                                               272, 228
7132                                                                                                 272.00
7133                                                                                                  25.00
7134                                                                                                  50.00
7135                                                                                                 272.00
7136                                                                                                 272.00
7137                                                                                        based on weight
7138                                                                                                 272.00
7139                                                                                                 272.00
7140                                                                                                 272.00
7141                                                                                                   1.00
7142                                                                                                   1.00
7143                                                                                                   2.00
7144                                                                                                 200.00
7145                                                                                                  30.00
7146                                                                                                   1.00
7147                                                                                                 750.00
7148                                                                                                  75.00
7149                                                                           based on weight (60-120 lbs)
7150                                                                                                1000.00
7151                                                                                           small amount
7152                                                                                         1 pack/package
7153                                                                                           small amount
7154                                                                                           small amount
7155                                                                                           small amount
7156                                                                                                   5.00
7157                                                                                                  75.00
7158                                                                                                 204.00
7159                                                                                                1000.00
7160                                                                                                   1.00
7161                                                                                                   1.00
7162                                                                                                   1.00
7163                                                                                                   1.00
7164                                                                                                   1.00
7165                                                                                                   1.00
7166                                                                                                   1.00
7167                                                                                                   1.00
7168                                                                                                   1.00
7169                                                                                                  75.00
7170                                                                                                 500.00
7171                                                                                                 500.00
7172                                                                                                 powder
7173                                                                                               wipe/pad
7174                                                                                                 100.00
7175                                                                                            application
7176                                                                                                 300.00
7177                                                                                                  spray
7178                                                                                                1620.00
7179                                                                                                   1.00
7180                                                                                                  spray
7181                                                                                                 204.00
7182                                                                                                 500.00
7183                                                                                                   5.00
7184                                                                                                   5.00
7185                                                                                                 204.00
7186                                                                                                 500.00
7187                                                                                                2000.00
7188                                                                                                  10.00
7189                                                                                            unspecified
7190                                                                                                 375.00
7191                                                                                                  60.00
7192                                                                                                 300.00
7193                                                                                                 100.00
7194                                                                                                  75.00
7195                                                                                                 300.00
7196                                                                                                 500.00
7197                                                                                                   1.00
7198                                                                                                   8.00
7199                                                                                                   4.00
7200                                                                                                  75.00
7201                                                                                                  10.00
7202                                                                                                   1.00
7203                                                                                                   1.00
7204                                                                                                   1.00
7205                                                                                                   3.40
7206                                                                                                 500.00
7207                                                                                                  60.00
7208                                                                                        0.25 inch strip
7209                                                                                                  60.00
7210                                                                                                  20.00
7211                                                                                                  50.00
7212                                                                                                   1.00
7213                                                                                                   3.37
7214                                                                                                   2.50
7215                                                                                                   1.92
7216                                                                                                 200.00
7217                                                                                                1620.00
7218                                                               27 mg milbemycin oxime, 1620 mg spinosad
7219                                                                                                 60-120
7220                                                                                                1620.00
7221                                                                                                   1.00
7222                                                                                                  10.00
7223                                                                                                 500.00
7224                                                                                                   1.00
7225                                                                                                  50.00
7226                                                                                                 200.00
7227                                                                                                   1.00
7228                                                                                                  50.00
7229                                                                                                 200.00
7230                                                                                                 300.00
7231                                                                                                1000.00
7232                                                                                                   8.00
7233                                                                                                  75.00
7234                                                                                                  20.00
7235                                                                                                  20.00
7236                                                                                                 125.00
7237                                                                                                  50.00
7238                                                                                                 500.00
7239                                                                                                  50.00
7240                                                                                                2 drops
7241                                                                                                 227.00
7242                                                                                                  50.00
7243                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7244                                                                                                  68.00
7245                                                                                                 272.00
7246                                                                                                  68.00
7247                                                                                        based on weight
7248                                                                          based on weight (21.1-60 lbs)
7249                                                                           based on weight (50-110 lbs)
7250                                                                                                   2.00
7251                                                                                                 272.00
7252                                                                                                   1.00
7253                                                                                                 272.00
7254                                                                                                 272.00
7255                                                                                                  40.00
7256                                                                                                 500.00
7257                                                                                                 272.00
7258                                                                                                 272.00
7259                                                                                                 272.00
7260                                                              64000 amylase, 9000 lipase, 5700 protease
7261                                                                                  1 tablet/pill/capsule
7262                                                                               5 tablets/pills/capsules
7263                                                                                                   0.80
7264                                                                                                   1.00
7265                                                                                                   4.00
7266                                                                                                   0.70
7267                                                                                                   2.00
7268                                                                                                   1.00
7269                                                                                                   1.00
7270                                                                                                   1.00
7271                                                                                                   1.00
7272                                                                                                   1.00
7273                                                                                                   4.00
7274                                                                                                   1.00
7275                                                                                                   1.00
7276                                                                                                   2.50
7277                                                                                                 500.00
7278                                                                                                   5.00
7279                                                                                                  10.00
7280                                                                                                 272.00
7281                                                                                                   1.70
7282                                                                                                 340.50
7283                                                                                                  75.00
7284                                                                                                   1.90
7285                                                                                                 300 mg
7286                                                                                                  75 mg
7287                                                                                                  75.00
7288                                                                                                 300.00
7289                                                                                                  16.00
7290                                                                                                   1.90
7291                                                                            based on weight (44-88 lbs)
7292                                                                                                 500.00
7293                                                                                                   1.00
7294                                                                                                  16 mg
7295                                                                            based on weight (44-88 lbs)
7296                                                                                                 500.00
7297                                                                                            unspecified
7298                                                                                                 227.00
7299                                                                                                  20.00
7300                                                                                                 272.00
7301                                                                                                 250.00
7302                                                                                                  50.00
7303                                                                                                 227.00
7304                                                                                                1000.00
7305                                                                                                  12.00
7306                                                                                                   8.00
7307                                                                                                  40.00
7308                                                                                                 200.00
7309                                                                                                  16.00
7310                                                                                                  16.00
7311                                                                                                 476.00
7312                                                                                                  16.00
7313                                                                                                 250.00
7314                                                                                                  50.00
7315                                                                                                  50.00
7316                                                                                                  50.00
7317                                                                                                 272.00
7318                                                                                                 500.00
7319                                                                                                 100.00
7320                                                                           based on weight (51-100 lbs)
7321                                                                                                1125.00
7322                                                                                                 500.00
7323                                                                                                  50.00
7324                                                                                                 375.00
7325                                                                                                   1.00
7326                                                                                                 200.00
7327                                                                                                   0.61
7328                                                                                                   0.50
7329                                                                                                   0.63
7330                                                                                                   0.64
7331                                                                                                 300.00
7332                                                                                                 150.00
7333                                                                                                  10.00
7334                                                                                                  10.00
7335                                                                                                   5.00
7336                                                                                                  50.00
7337                                                                                                   1.00
7338                                                                                                   1.00
7339                                                                                                   1.00
7340                                                                                                   1.00
7341                                                                                                   1.00
7342                                                                            based on weight (45-88 lbs)
7343                                                                                                  45-88
7344                                                                                            unspecified
7345                                                                                            unspecified
7346                                                                            based on weight (45-88 lbs)
7347                                                                                                  50.00
7348                                                                                                  60.00
7349                                                                                                 100.00
7350                                                                                                 500.00
7351                                                                                                   7.00
7352                                                                                                   1.00
7353                                                                                                  75.00
7354                                                                                                 100.00
7355                                                                                                   7.50
7356                                                                                                  70.00
7357                                                                                                 272.00
7358                                                                                                 250.00
7359                                                                                                 500.00
7360                                                                                                 725.00
7361                                                                                                 500.00
7362                                                                                                  50.00
7363                                                                                                 500.00
7364                                                                                                   6.00
7365                                                                                                   6.00
7366                                                                                                  20.00
7367                                                                                                 200.00
7368                                                                                                   6.00
7369                                                                                                  75.00
7370                                                                                                  75.00
7371                                                                                           small amount
7372                                                                                                   1.00
7373                                                                                                 252.00
7374                                                                                                 500.00
7375                                                                                                  75.00
7376                                                                                                  23.00
7377                                                                                                   1.60
7378                                                                                                   9.60
7379                                                                                                  70.35
7380                                                                                                   1.00
7381                                                                                                  75.00
7382                                                                                                 272.00
7383                                                                                                 200.00
7384                                                                                                  75.00
7385                                                                                                  72.90
7386                                                                                                   1.00
7387                                                                                                  60.00
7388                                                                                                 272.00
7389                                                                                                 500.00
7390                                                                                                 200.00
7391                                                                                                   1.58
7392                                                                                                  15.00
7393                                                                                                   9.45
7394                                                                                                 107.50
7395                                                                                                 750.00
7396                                                                                                   2.00
7397                                                                                                 272.00
7398                                                                                                 200.00
7399                                                                                               10000.00
7400                                                                                                  40.00
7401                                                                                                  60.00
7402                                                                                                 750.00
7403                                                                                                   0.71
7404                                                                                                  30.00
7405                                                                                                   0.70
7406                                                                                                  20.00
7407                                                                                                  30.20
7408                                                                                                   3.20
7409                                                                                                  64.00
7410                                                                                                  60.00
7411                                                                                                 750.00
7412                                                                                                   1.00
7413                                                                           based on weight (51-100 lbs)
7414                                                                                                 200.00
7415                                                                                                 750.00
7416                                                                                               10000.00
7417                                                                                                  40.00
7418                                                                                                   0.71
7419                                                                                                 250.00
7420                                                                                                  30.20
7421                                                                                                   3.20
7422                                                                                                  64.00
7423                                                                                                  60.00
7424                                                                                                 200.00
7425                                                                                                 180.00
7426                                                                                                150-480
7427                                                                                                  60.00
7428                                                                                                  30.00
7429                                                                                                1000.00
7430                                                                                                  15.00
7431                                                                                                  15.00
7432                                                                                                 50-100
7433                                                                                                  15.00
7434                                                                                                  15.00
7435                                                                                                  15.00
7436                                                                                                  90.00
7437                                                                                                  60.00
7438                                                                                                  30.00
7439                                                                                                  30.00
7440                                                                                                   2.00
7441                                                                                                 450.00
7442                                                                                                  50.00
7443                                                                                                  50.00
7444                                                                                                   2.00
7445                                                                                                 300.00
7446                                                                                                 660.00
7447                                                                                                 120.00
7448                                                                                                 150.00
7449                                                                                                 850.00
7450                                                                                                   1.00
7451                                                                                                 500.00
7452                                                                                                 200.00
7453                                                                                                  23.00
7454                                                                                                1000.00
7455                                                                                                  75.00
7456                                                                                                 200.00
7457                                                                                                 200.00
7458                                                                                                 200.00
7459                                                                                                 200.00
7460                                                                                                 200.00
7461                                                                                                  75.00
7462                                                                                                  75.00
7463                                                                                                 200.00
7464                                                                                                 200.00
7465                                                                                                   6.00
7466                                                                                                  75.00
7467                                                                                                  10.00
7468                                                                                                  80.00
7469                                                                                                  20.00
7470                                                                                                 250.00
7471                                                                                                  23.00
7472                                                                                                 500.00
7473                                                                                                  23.00
7474                                                                                                  23.00
7475                                                                                                   1.00
7476                                                                                                  23.00
7477                                                                                                  23.00
7478                                                                                                  23.00
7479                                                                                               45293.00
7480                                                                                                  75.00
7481                                                                                                 150.00
7482                                                                                                 300.00
7483                                                                                                  75.00
7484                                                                                                 325.00
7485                                                                                                 325.00
7486                                                                                                  10.00
7487                                                                                                  10.00
7488                                                                                                 125.00
7489                                                                                                  50.00
7490                                                                                                  50.00
7491                                                                                                 500.00
7492                                                                                                 375.00
7493                                                                                                 100.00
7494                                                                                                 300.00
7495                                                                                                 272.00
7496                                                                                                 227.00
7497                                                                                                 200.00
7498                                                                                                  50.00
7499                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7500                                                                                                  68.00
7501                                                                                                 272.00
7502                                                                                                  68.00
7503                                                                                        based on weight
7504                                                                                                 250.00
7505                                                                                                  75.00
7506                                                                                                 500.00
7507                                                                                                 272.00
7508                                                                                                 228.00
7509                                                                                                 228.00
7510                                                                                  1 tablet/pill/capsule
7511                                                                                  1 tablet/pill/capsule
7512                                                                                  1 tablet/pill/capsule
7513                                                                                    tablet/pill/capsule
7514                                                                                                  50.00
7515                                                                                                   1.00
7516                                                                                                   1.00
7517                                                                                                1000.00
7518                                                                                                1000.00
7519                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7520                                                                                                 136.00
7521                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7522                                                                                                 136 mg
7523                                                                                               1000 mcg
7524                                                                                            unspecified
7525                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
7526                                                                         1 tablet/pill/capsule - 136 mg
7527                                                                                                1000.00
7528                                                                                                 500.00
7529                                                                                                   8.00
7530                                                                                                   1.50
7531                                                                                                   1.00
7532                                                                                                  12.50
7533                                                                                                  50.00
7534                                                                                                 500.00
7535                                                                                                 250.00
7536                                                                                                   0.25
7537                                                                                                   3.00
7538                                                                                                   1.20
7539                                                                                                   1.50
7540                                                                                                   1.30
7541                                                                                                   0.20
7542                                                                                                  50.00
7543                                                                                                  12.50
7544                                                                                                 250.00
7545                                                                                                 500.00
7546                                                                                                  50.00
7547                                                                                                  12.50
7548                                                                                                  60.00
7549                                                                                                  50.00
7550                                                                                                1000.00
7551                                                                                  1 tablet/pill/capsule
7552                                                                                                 200.00
7553                                                                                                  75.00
7554                                                                                                   3.50
7555                                                                           based on weight (88-123 lbs)
7556                                                                                                1000.00
7557                                                                                                 170.00
7558                                                                                                  51.00
7559                                                                                                  55.00
7560                                                                                                   2.00
7561                                                                                                 100.00
7562                                                                                                  10.00
7563                                                                           based on weight (51-100 lbs)
7564                                                                                            unspecified
7565                                                                           based on weight (51-100 lbs)
7566                                                                           based on weight (51-100 lbs)
7567                                                                                                 170.00
7568                                                                                                500-125
7569                                                                                                 300.00
7570                                                                                                  32.00
7571                                                                                                   1.00
7572                                                                                                 227.00
7573                                                                                                  10.00
7574                                                                                                 170.00
7575                                                                                                 272.00
7576                                                                                          1 bottle/vial
7577                                                               460 mg lufenuron, 23 mg milbemycin oxime
7578                                                                                  1 tablet/pill/capsule
7579                                                                                  1 tablet/pill/capsule
7580                                                                                0.5 tablet/pill/capsule
7581                                                                                                 460.00
7582                                                                                                 460.00
7583                                                                           based on weight (51-100 lbs)
7584                                                                                        based on weight
7585                                                                                            unspecified
7586                                                                                            unspecified
7587                                                                                            unspecified
7588                                                                                            unspecified
7589                                                                                            unspecified
7590                                                                                            unspecified
7591                                                                                                  15.00
7592                                                                                                1200.00
7593                                                                                                   1.00
7594                                                                                                 750.00
7595                                                                                                 350.00
7596                                                                                                   2.00
7597                                                                                                 200.00
7598                                                                                             1 wipe/pad
7599                                                                                                   2.00
7600                                                                                                   1.00
7601                                                                                                   1.00
7602                                                                                                   1.00
7603                                                                                                   1.00
7604                                                                                                 750.00
7605                                                                                                   1.00
7606                                                                                                   1.00
7607                                                                                                   1.00
7608                                                                                                   2.00
7609                                                                                                   8.00
7610                                                                                                   1.00
7611                                                                                                   1.00
7612                                                                                                   1.00
7613                                                                                                   1.00
7614                                                                                                   1.00
7615                                                                                                   1.00
7616                                                                                                   1.00
7617                                                                                                   1.00
7618                                                                                                   1.00
7619                                                                                                   2.00
7620                                                                                                 225.00
7621                                                                                                 375.00
7622                                                                                                   2.00
7623                                                                                                   2.00
7624                                                                                                   2.00
7625                                                                                                   0.50
7626                                                                                                   2.00
7627                                                                                                   1.00
7628                                                                                                   1.00
7629                                                                                                   1.00
7630                                                                                                   1.00
7631                                                                                                   1.00
7632                                                                                                   2.00
7633                                                                                                   1.00
7634                                                                                                   2.00
7635                                                                                          10 mg, 100 mg
7636                                                                                                 150 mg
7637                                                                                                  50 mg
7638                                                                                                   2.00
7639                                                                                                   1.00
7640                                                                                                   1.00
7641                                                                                                 500.00
7642                                                                                                   1.00
7643                                                                                                   0.50
7644                                                                                                   1.00
7645                                                                                                   1.00
7646                                                                                                   0.25
7647                                                                                                   1.00
7648                                                                                                 550.00
7649                                                                                                2600.00
7650                                                                                                 500.00
7651                                                                                                   1.00
7652                                                                                                   1.00
7653                                                                                                   1.00
7654                                                                                                   1.00
7655                                                                                                   2.00
7656                                                                                                   2.00
7657                                                                                                   0.25
7658                                                                                                   0.25
7659                                                                                                   0.50
7660                                                                           based on weight (51-100 lbs)
7661                                                                                                 200.00
7662                                                                                                  20.00
7663                                                                                                   3.00
7664                                                                                                 810.00
7665                                                                                                 375.00
7666                                                                                                 100.00
7667                                                                                                  75.00
7668                                                                                                 250.00
7669                                                                                                 100.00
7670                                                                                                  50.00
7671                                                                                                40, 200
7672                                                                                                   0.45
7673                                                                                            unspecified
7674                                                                                            unspecified
7675                                                              13.5 mg milbemycin oxime, 810 mg spinosad
7676                                                                                                 375.00
7677                                                                                                   1.00
7678                                                                                        0.25 inch strip
7679                                                                                           small amount
7680                                                                                                   1.00
7681                                                                            based on weight (40-60 lbs)
7682                                                                                                 60-120
7683                                                                                                 50-100
7684                                                                                                  44-88
7685                                                                                                 375.00
7686                                                                                                  50.00
7687                                                                                                  16.00
7688                                                                                                   1.00
7689                                                                                                   1.00
7690                                                                                                  50.00
7691                                                                                                 100.00
7692                                                                                          23 mg, 228 mg
7693                                                                                                1000.00
7694                                                                                                   3.00
7695                                                                                                1000.00
7696                                                                                                23, 228
7697                                                                                                  50.00
7698                                                                                                  40.00
7699                                                                                                23, 228
7700                                                                                                  40.00
7701                                                                                                23, 228
7702                                                                                                  16.00
7703                                                                                                 100.00
7704                                                                                                 150.00
7705                                                                                           small amount
7706                                                                                                  50.00
7707                                                                                                 200.00
7708                                                                                                 130.00
7709                                                                                                 750.00
7710                                                                                                  50.00
7711                                                                                                   6.00
7712                                                                                                 200.00
7713                                                                                                  16.00
7714                                                                                                 200.00
7715                                                                                                  15.00
7716                                                                                                 200.00
7717                                                                                                  16.00
7718                                                                                                 130.00
7719                                                                                                   1.00
7720                                                                                                  15.00
7721                                                                                                 200.00
7722                                                                                                  10.40
7723                                                                                                  65.00
7724                                                                                                   5.00
7725                                                                                                   8.00
7726                                                                                                  50.00
7727                                                                                                   1.00
7728                                                                                                 200.00
7729                                                                                                 300.00
7730                                                                                                  75.00
7731                                                                                                 200.00
7732                                                                                        based on weight
7733                                                                                                 200.00
7734                                                                                                   1.00
7735                                                                                                   1.00
7736                                                                                                   2.00
7737                                                                                                 500.00
7738                                                                                                 500.00
7739                                                                                                 500.00
7740                                                                                                 160.00
7741                                                                                                 437.50
7742                                                                                            unspecified
7743                                                                            based on weight (44-88 lbs)
7744                                                                                                  45-88
7745                                                                                                 50-100
7746                                                                                        based on weight
7747                                                                            based on weight (44-88 lbs)
7748                                                                                            unspecified
7749                                                                           based on weight (51-100 lbs)
7750                                                                           based on weight (89-132 lbs)
7751                                                                                                  drops
7752                                                                                                   1.00
7753                                                                                                   1.00
7754                                                                       based on weight (61+ lbs) - 5 ml
7755                                                                                                 272.00
7756                                                                                                   2.68
7757                                                                                                  75.00
7758                                                                                                  50.00
7759                                                                            based on weight (56-95 lbs)
7760                                                                                                4600.00
7761                                                                                                  15.00
7762                                                                                                1500.00
7763                                                                           based on weight (51-100 lbs)
7764                                                                                                   1.00
7765                                                                                                   1.00
7766                                                                                                   2.00
7767                                                                                                   0.50
7768                                                                                                   2.00
7769                                                                                                   1.00
7770                                                                                                   3.00
7771                                                                                                9000.00
7772                                                                                            unspecified
7773                                                                                                   1.00
7774                                                                                                  50.00
7775                                                                                                   0.50
7776                                                                                            unspecified
7777                                                                                                 720.00
7778                                                                                                 100.00
7779                                                                                                  23.00
7780                                                                                                   1.00
7781                                                                                                   1.00
7782                                                                                                   1.00
7783                                                                               based on weight (54 lbs)
7784                                                                               based on weight (54 lbs)
7785                                                                                                   1.00
7786                                                                                                   1.00
7787                                                                                                 1 tube
7788                                                                                                  23.00
7789                                                                                                   1.00
7790                                                                                                   1.00
7791                                                                                                 272.00
7792                                                                                                 240.00
7793                                                                                                 187.50
7794                                                                                                   1.25
7795                                                                            based on weight (60-90 lbs)
7796                                                                                                  50.00
7797                                                                                                  16.00
7798                                                                                                 272.00
7799                                                                                                 136.00
7800                                                                                                  16.00
7801                                                                                                 200.00
7802                                                                                                 100.00
7803                                                                                                  16.00
7804                                                                                                 272.00
7805                                                                                                 136.00
7806                                                                                                  16.00
7807                                                                                                 100.00
7808                                                                                                 272.00
7809                                                                                                 136.00
7810                                                                                                  16.00
7811                                                                                                   2.00
7812                                                                                            unspecified
7813                                                                                                   1.00
7814                                                                                                 200.00
7815                                                                                                   1.00
7816                                                                                                  75.00
7817                                                                                                  20.00
7818                                                                                            unspecified
7819                                                                                                 200.00
7820                                                                                            unspecified
7821                                                                                                 200.00
7822                                                                                            unspecified
7823                                                                                                  16.00
7824                                                                                                 300.00
7825                                                                                                   5.00
7826                                                                                                   3.00
7827                                                                                                  60.00
7828                                                                                                  60.00
7829                                                                                                   5.00
7830                                                                                                 300.00
7831                                                                                                 272.00
7832                                                                                        2.68 ml of 9.7%
7833                                                                                               45451.00
7834                                                                                                 272.00
7835                                                                                                 600.00
7836                                                                                                   1.00
7837                                                                                                 100 mg
7838                                                                                                   1.00
7839                                                                                            application
7840                                                                                                  25-50
7841                                                                                                   1.00
7842                                                                                                   1.00
7843                                                                                                 300.00
7844                                                                                                  75.00
7845                                                                                            unspecified
7846                                                                                            unspecified
7847                                                                                                   1.00
7848                                                                                            unspecified
7849                                                                                                 200.00
7850                                                                                                 250.00
7851                                                                                                 136.00
7852                                                                                            unspecified
7853                                                                                            unspecified
7854                                                                                            unspecified
7855                                                                                                  20.00
7856                                                                                                  10.00
7857                                                                                                 500.00
7858                                                                                                 375.00
7859                                                                                                  75.00
7860                                                                                                 375.00
7861                                                                                                 500.00
7862                                                                             2-3 tablets/pills/capsules
7863                                                                                                 468.75
7864                                                                                                 50-100
7865                                                                                                 272.00
7866                                                                                                 500.00
7867                                                                                                 272.00
7868                                                                                                 272.00
7869                                                                                                 272.00
7870                                                                                                  75.00
7871                                                                                                 500.00
7872                                                                                                 200.00
7873                                                                                                 272.00
7874                                                                                                 272.00
7875                                                                                                  20.00
7876                                                                                                   2.65
7877                                                                                                 240.00
7878                                                                                                 272.00
7879                                                                                                 126.00
7880                                                                                                 272.00
7881                                                                                                 136.00
7882                                                                                                 375.00
7883                                                                                            unspecified
7884                                                                                            unspecified
7885                                                                                                   1 ml
7886                                                                                                1000.00
7887                                                                                            unspecified
7888                                                                                                1000.00
7889                                                                                            unspecified
7890                                                                                                  90.00
7891                                                                                                1000.00
7892                                                                                                  90.00
7893                                                                                                   2.00
7894                                                                                                 204.00
7895                                                                                            unspecified
7896                                                                                                 500.00
7897                                                                                                   8.00
7898                                                                                                  20.00
7899                                                                                                 200.00
7900                                                                                                 500.00
7901                                                                                                  20.00
7902                                                                                                  10.00
7903                                                                                                   1.00
7904                                                                                                 750.00
7905                                                                                                 750.00
7906                                                                                                   4.00
7907                                                                                                 750.00
7908                                                                                                  50.00
7909                                                                                                 200.00
7910                                                                                                  50.00
7911                                                                                                   8.00
7912                                                                                                 136.00
7913                                                                                                 750.00
7914                                                                                                  12.00
7915                                                                                                 300.00
7916                                                                                                   8.00
7917                                                                                                  50.00
7918                                                                                                 100.00
7919                                                                                                 200.00
7920                                                                                                 500.00
7921                                                                                                   8.00
7922                                                                                                 500.00
7923                                                                                                   5.00
7924                                                                                                 175.00
7925                                                                                                1000.00
7926                                                                                           small amount
7927                                                                                                  20.00
7928                                                                                                1250.00
7929                                                                                           small amount
7930                                                                                                 227.00
7931                                                                                                 450.00
7932                                                                                                 120.00
7933                                                                                                  25.00
7934                                                                                                4 mg/kg
7935                                                                                                2 mg/kg
7936                                                                                                 272.00
7937                                                                                                 200.00
7938                                                                                                   6.00
7939                                                                                                   5.00
7940                                                                                                  25.00
7941                                                                                                   1 ml
7942                                                                                                 200.00
7943                                                                                                   5.00
7944                                                                                           small amount
7945                                                                                                   0.70
7946                                                                                           small amount
7947                                                                                                   4.00
7948                                                                                                 272.00
7949                                                                                                 272.00
7950                                                                                                 272.00
7951                                                                                                   2.00
7952                                                                                                   1.50
7953                                                                                                   4.00
7954                                                                                                  25.00
7955                                                                                                   0.75
7956                                                                                                 272.00
7957                                                                                                   4.00
7958                                                                                                  25.00
7959                                                                                                 400.00
7960                                                                                                 100.00
7961                                                                                        0.25 inch strip
7962                                                                                                 100.00
7963                                                                                                   5.00
7964                                                                                                   5.00
7965                                                                                                   1.00
7966                                                                           based on weight (51-100 lbs)
7967                                                                           based on weight (60-121 lbs)
7968                                                                                        based on weight
7969                                                                                        based on weight
7970                                                                                              62.5, 250
7971                                                                                                  63.00
7972                                                                                                 500.00
7973                                                                                            unspecified
7974                                                                                                  60.00
7975                                                                                                  75.00
7976                                                                                                  60.00
7977                                                                                                 250.00
7978                                                                                                 272.00
7979                                                                                                   6.00
7980                                                                                                 500.00
7981                                                                                                  25.00
7982                                                                                                 120.00
7983                                                                                                  50.00
7984                                                                                                 250.00
7985                                                                                                 250.00
7986                                                                                                   0.14
7987                                                                                               27, 1620
7988                                                                           based on weight (51-100 lbs)
7989                                                                                                   1.50
7990                                                                                                   0.50
7991                                                                                                   1.00
7992                                                                                                   1.00
7993                                                                            based on weight (40-85 lbs)
7994                                                                                                 100.00
7995                                                                                           500 mg, 5 ml
7996                                                                                                   3.00
7997                                                                                                   1.00
7998                                                                           based on weight (85-130 lbs)
7999                                                                                                   1.00
8000                                                                           based on weight (85-130 lbs)
8001                                                                                                   1.80
8002                                                                                                   1.00
8003                                                                                                 100.00
8004                                                                                                 100.00
8005                                                                                                   1.00
8006                                                                                                  10.00
8007                                                                                                 250.00
8008                                                                                                 100.00
8009                                                                                           small amount
8010                                                                                                  50.00
8011                                                                                                 200.00
8012                                                                                           small amount
8013                                                                                                  50.00
8014                                                                                           small amount
8015                                                                                                  23.00
8016                                                                                                 200.00
8017                                                                                           small amount
8018                                                                                                 200.00
8019                                                                                                  75.00
8020                                                                                                   1.00
8021                                                                                                  75.00
8022                                                                                                 200.00
8023                                                                                                 200.00
8024                                                                                                 500.00
8025                                                                                                 300.00
8026                                                                                                  75.00
8027                                                                                                   0.50
8028                                                                                                 272.00
8029                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8030                                                                           based on weight (51-100 lbs)
8031                                                                                                   1.00
8032                                                                                                 100.00
8033                                                                                                   1.00
8034                                                                                                 272.00
8035                                                                                                 272.00
8036                                                                                                 272.00
8037                                                                                                 272.00
8038                                                                                                 272.00
8039                                                                                                 272.00
8040                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8041                                                                                                 500.00
8042                                                                                                23, 460
8043                                                                                                23, 228
8044                                                                                                23, 228
8045                                                                                                23, 228
8046                                                                                                 500.00
8047                                                                                                1000.00
8048                                                                                                 680.00
8049                                                                                                 310.00
8050                                                                                                 950.00
8051                                                                                                 500.00
8052                                                                                                 272.00
8053                                                                                                   4.00
8054                                                                                                   5.00
8055                                                                                                 375.00
8056                                                                                                 500.00
8057                                                                                                 136.00
8058                                                                                                   1.00
8059                                                                                                   0.20
8060                                                                                                 136.00
8061                                                                                                   1.00
8062                                                                                                   1.00
8063                                                                                                  26-60
8064                                                                                                   3.60
8065                                                                                                   0.20
8066                                                                                                  21-55
8067                                                                                                  21-55
8068                                                                                                   0.20
8069                                                                                                  21-55
8070                                                                                                  26-50
8071                                                                                                  26-50
8072                                                                                                   0.40
8073                                                                                                  25.00
8074                                                                                                   0.20
8075                                                                                            unspecified
8076                                                                                                   7.50
8077                                                                                                  50.00
8078                                                                                                   5.00
8079                                                                                                 400.00
8080                                                                                                 500.00
8081                                                                                                   3.50
8082                                                                                                 250.00
8083                                                                                                 250.00
8084                                                                                                  75.00
8085                                                                                                 125.00
8086                                                                                           small amount
8087                                                                                                   1.00
8088                                                                                                 375.00
8089                                                                                                 125.00
8090                                                                                                  50.00
8091                                                                                               125, 375
8092                                                                                                  60.00
8093                                                                                                  26.00
8094                                                                                                   3.50
8095                                                                                                  36.00
8096                                                                                                  16.00
8097                                                                                                   8.00
8098                                                                            based on weight (45-88 lbs)
8099                                                                         based on weight (50.1-100 lbs)
8100                                                                                                  16 mg
8101                                                                                                  24.00
8102                                                                                                  16.00
8103                                                                                                 500.00
8104                                                                                                  50.00
8105                                                                                                   1.00
8106                                                                                                  20.00
8107                                                                                                  30.00
8108                                                                                                 100.00
8109                                                                                                   3.20
8110                                                                                                   1.00
8111                                                                                                   1.00
8112                                                                                                   3.20
8113                                                                                                   1.00
8114                                                                                                  75.00
8115                                                                                                 425.00
8116                                                                                                 100.00
8117                                                                                                 425.00
8118                                                                                                 100.00
8119                                                                                                 215.00
8120                                                                           based on weight (51-100 lbs)
8121                                                                           based on weight (51-100 lbs)
8122                                                                                                 500 mg
8123                                                                           based on weight (50-100 lbs)
8124                                                                                                 272.00
8125                                                                                            unspecified
8126                                                                                                 500.00
8127                                                                                                  15.00
8128                                                                                           small amount
8129                                                                                                   8.00
8130                                                                           based on weight (51-100 lbs)
8131                                                                         based on weight (60.1-121 lbs)
8132                                                                                                  23.00
8133                                                                                                 900.00
8134                                                                                                  75.00
8135                                                                                                  15-20
8136                                                                           based on weight (50-100 lbs)
8137                                                                           based on weight (50-100 lbs)
8138                                                                           based on weight (51-100 lbs)
8139                                                                           based on weight (51-100 lbs)
8140                                                                                           small amount
8141                                                                                                 500.00
8142                                                                                                  32.00
8143                                                                                                  60.00
8144                                                                                                1000.00
8145                                                                                                 500.00
8146                                                                                                  60.00
8147                                                                                                  60.00
8148                                                                                                   1.60
8149                                                                                                  13.00
8150                                                                                                 130.00
8151                                                                                                  32.00
8152                                                                                                 100.00
8153                                                                                                  75.00
8154                                                                                                 100.00
8155                                                                                                   1.00
8156                                                                                                   2.00
8157                                                                                                 500.00
8158                                                                                                   2.68
8159                                                                                                 272.00
8160                                                                               2 tablets/pills/capsules
8161                                                                                                 150.00
8162                                                                                                 150.00
8163                                                                                                 700.00
8164                                                                                                 500.00
8165                                                                                               750-1000
8166                                                                                                 272.00
8167                                                                                                 227.00
8168                                                                                                 272.00
8169                                                                                                   2.68
8170                                                                                                 227.00
8171                                                                                                   0.55
8172                                                                                                 272.00
8173                                                                                                   8.00
8174                                                                                                   1.00
8175                                                                                                 272.00
8176                                                                                                1000.00
8177                                                                                                1000.00
8178                                                                                                 272.00
8179                                                                                                  80.00
8180                                                                                                  80.00
8181                                                                                                  75.00
8182                                                                                           small amount
8183                                                                                                  75.00
8184                                                                                                 powder
8185                                                                           based on weight (51-100 lbs)
8186                                                                           based on weight (51-100 lbs)
8187                                                                           based on weight (51-100 lbs)
8188                                                                           based on weight (61-120 lbs)
8189                                                                                                 200.00
8190                                                                                                 200.00
8191                                                                                                  10.00
8192                                                                                                 200.00
8193                                                                                                   7.00
8194                                                                                                  16.00
8195                                                                           based on weight (51-100 lbs)
8196                                                                          based on weight (24.1-60 lbs)
8197                                                                                                 272.00
8198                                                                                                 375.00
8199                                                                                                  50.00
8200                                                                                                   1.00
8201                                                                                                   1.00
8202                                                                                                  10.00
8203                                                                                                   1.00
8204                                                                                                   1.00
8205                                                                           based on weight (89-132 lbs)
8206                                                                           based on weight (51-100 lbs)
8207                                                                           based on weight (51-100 lbs)
8208                                                                           based on weight (89-132 lbs)
8209                                                                                           23, 228, 460
8210                                                                           based on weight (51-100 lbs)
8211                                                                          based on weight (45-88.9 lbs)
8212                                                                         based on weight (50.1-100 lbs)
8213                                                                                                   6.00
8214                                                                                                  23 mg
8215                                                                           based on weight (89-132 lbs)
8216                                                                                                  75.00
8217                                                                                                 900.00
8218                                                                                                 500.00
8219                                                                                                 136.00
8220                                                                                                  26-50
8221                                                                           based on weight (51-100 lbs)
8222                                                                                  1 tablet/pill/capsule
8223                                                                           based on weight (51-100 lbs)
8224                                                                           based on weight (51-100 lbs)
8225                                                                                                 750.00
8226                                                                                                  50.00
8227                                                                                                   2.00
8228                                                                                                   1.00
8229                                                                                                 100.00
8230                                                                                                 100.00
8231                                                                                                  23.00
8232                                                                                                  23.00
8233                                                                                                1000.00
8234                                                                                            application
8235                                                                                            application
8236                                                                                                1 spray
8237                                                                                                  50.00
8238                                                                                           small amount
8239                                                                                                   4.00
8240                                                                                                   6.00
8241                                                                                                  23 mg
8242                                                                                                   8.00
8243                                                                                                  23.00
8244                                                                                                  44-88
8245                                                                                                 750.00
8246                                                                                                   8.00
8247                                                                                                  23.00
8248                                                                            based on weight (44-88 lbs)
8249                                                                                                  32.00
8250                                                                                                 120.00
8251                                                                                               500, 750
8252                                                                                                  spray
8253                                                                                                  23.00
8254                                                                                                  80.00
8255                                                                                                  50.00
8256                                                                                                1000.00
8257                                                                                                  16.00
8258                                                                                                  23.00
8259                                                                                                  50.00
8260                                                                                                  16.00
8261                                                                                                  62.50
8262                                                                                                   6.00
8263                                                                                                 800.00
8264                                                                                                  88.00
8265                                                                                                 500.00
8266                                                                                                 100.00
8267                                                                                                  16.00
8268                                                                                                  50.00
8269                                                                                                 136.20
8270                                                                                                  23.00
8271                                                                                                 500.00
8272                                                                                                 200.00
8273                                                                                                 200.00
8274                                                                                                  16.00
8275                                                                                                  50.00
8276                                                                                                   0.28
8277                                                                                                 740.00
8278                                                                                                 170.00
8279                                                                                                   8.50
8280                                                                                            unspecified
8281                                                                                                   6.00
8282                                                                                                 750.00
8283                                                                                                   5.00
8284                                                                                            unspecified
8285                                                                                                  50.00
8286                                                                                                  16.00
8287                                                                                                  75.00
8288                                                                                                  50.00
8289                                                                                                  16.00
8290                                                                                                  16.00
8291                                                                                                  50.00
8292                                                                                                   8.00
8293                                                                                            unspecified
8294                                                                                                  60.00
8295                                                                                                  16.00
8296                                                                           based on weight (51-100 lbs)
8297                                                                            based on weight (44-88 lbs)
8298                                                                                           small amount
8299                                                                                                   1 ml
8300                                                                                                 1 drop
8301                                                                                                 50-100
8302                                                                                                 50-100
8303                                                                                                  16 mg
8304                                                                                                  30 ml
8305                                                                                               2 sprays
8306                                                                                                 50-100
8307                                                                                                  44-88
8308                                                                                                  16.00
8309                                                                                                   3.00
8310                                                                                                   1.00
8311                                                                                                 1 drop
8312                                                                                                4 drops
8313                                                                                                 1 drop
8314                                                                           based on weight (50-100 lbs)
8315                                                                              based on weight (55+ lbs)
8316                                                                                                 125.00
8317                                                                                                 125.00
8318                                                                                                 120.00
8319                                                                                                 125.00
8320                                                                                                 136.00
8321                                                                                                 272.00
8322                                                                                                 375.00
8323                                                                                                 500.00
8324                                                                                                  20.00
8325                                                                                                 272.00
8326                                                                                                  56-95
8327                                                                                                 375.00
8328                                                                                                 500.00
8329                                                                                                  20.00
8330                                                                                                  50.00
8331                                                                                                 272.00
8332                                                                                                  56-95
8333                                                                                                  50.00
8334                                                                                                 272.00
8335                                                                                                  56-95
8336                                                                                                   1.00
8337                                                                                            unspecified
8338                                                                                            unspecified
8339                                                                                                 272.00
8340                                                                                                  56-95
8341                                                                                                 1 drop
8342                                                                                                 325.00
8343                                                                                                 750.00
8344                                                                                                 272.00
8345                                                                                                   1.00
8346                                                                                                  50.00
8347                                                                                                   1.00
8348                                                                                                 750.00
8349                                                                                            unspecified
8350                                                                                                  50.00
8351                                                                                                 500.00
8352                                                                                                   1.00
8353                                                                                                 272.00
8354                                                                           based on weight (50-100 lbs)
8355                                                                            based on weight (45-88 lbs)
8356                                                                                                1000.00
8357                                                                                                   4.76
8358                                                                           based on weight (51-100 lbs)
8359                                                                            based on weight (44-88 lbs)
8360                                                                                                   7.00
8361                                                                                                   3.00
8362                                                                                           small amount
8363                                                                                                 500.00
8364                                                                                                  23.00
8365                                                                                                 460.00
8366                                                                                                  80.00
8367                                                                                                1000.00
8368                                                                                                   6.00
8369                                                                                        moderate amount
8370                                                                           based on weight (51-100 lbs)
8371                                                                            based on weight (44-88 lbs)
8372                                                                                                  60.00
8373                                                                                                 375.00
8374                                                                                                   1.00
8375                                                                                                   1.00
8376                                                                                           small amount
8377                                                                           based on weight (51-100 lbs)
8378                                                                            based on weight (44-88 lbs)
8379                                                                                                   1.00
8380                                                                                                 375.00
8381                                                                                                 375.00
8382                                                                                                   1.00
8383                                                                                                 375.00
8384                                                                                                   8.00
8385                                                                                                   1.00
8386                                                                                                 272.00
8387                                                                                                 272.00
8388                                                                                                 272.00
8389                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8390                                                                                                 450.00
8391                                                                                                 275.00
8392                                                                                                   0.60
8393                                                                                                 450.00
8394                                                                                                   1.00
8395                                                                                                  75.00
8396                                                                                                 300.00
8397                                                                                                   5.00
8398                                                                                                 300.00
8399                                                                                                   1.00
8400                                                                                                  75.00
8401                                                                                                  20.00
8402                                                                                                   1.00
8403                                                                                                 960.00
8404                                                                                                  75.00
8405                                                                                                 1 tube
8406                                                                                                 500.00
8407                                                                                                  50.00
8408                                                                           based on weight (50-100 lbs)
8409                                                                                                   1.00
8410                                                                           based on weight (51-100 lbs)
8411                                                                                                   0.50
8412                                                                                                   0.90
8413                                                                                                 150.00
8414                                                                                                   1.70
8415                                                                                                   0.43
8416                                                                                                  80.00
8417                                                                                                   4.00
8418                                                                                            unspecified
8419                                                                                                 200.00
8420                                                                           based on weight (51-100 lbs)
8421                                                                                            unspecified
8422                                                                                                 272.00
8423                                                                                                 272.00
8424                                                                              based on weight (55+ lbs)
8425                                                                           based on weight (51-100 lbs)
8426                                                                                                 136.00
8427                                                                           based on weight (51-100 lbs)
8428                                                                                                 750.00
8429                                                                                                 227.00
8430                                                                                                   1.00
8431                                                                                                   1.20
8432                                                                                                 150.00
8433                                                                                                   1.50
8434                                                                                                 136.00
8435                                                                                         1 pack/package
8436                                                                                           small amount
8437                                                                                                 272.00
8438                                                                                                 272.00
8439                                                                                                 272.00
8440                                                                                              45-60 mcg
8441                                                                                                272 mcg
8442                                                                                                 272.00
8443                                                                                                 136.00
8444                                                                                                  20.00
8445                                                                                                  50.00
8446                                                                                                 272.00
8447                                                                                                 100.00
8448                                                                                                   1.00
8449                                                                                                   1.00
8450                                                                                                 272.00
8451                                                                                                 272 ug
8452                                                                                                 500 mg
8453                                                                                                  23.00
8454                                                                           based on weight (50-100 lbs)
8455                                                                                                 200.00
8456                                                                                                  16.00
8457                                                                                                 200.00
8458                                                                                                  16.00
8459                                                                                                 500.00
8460                                                                                                   1.00
8461                                                                                                 50-100
8462                                                                                                 500.00
8463                                                                                                 272.00
8464                                                                                                 100.00
8465                                                                                                  26-50
8466                                                                           based on weight (51-100 lbs)
8467                                                                                            application
8468                                                                                                 150.00
8469                                                                                                  10.00
8470                                                                                                   5.00
8471                                                                                                 150.00
8472                                                                                                  10.00
8473                                                                                                   4.00
8474                                                                                                 200.00
8475                                                                                                   bath
8476                                                                                                 136.00
8477                                                                                                  10.00
8478                                                                                                   bath
8479                                                                                                   4.00
8480                                                                                                 272.00
8481                                                                                                 136.00
8482                                                                                                   5.00
8483                                                                                                 272.00
8484                                                                                                 136.00
8485                                                                                                 272.00
8486                                                                                                 136.00
8487                                                                                                 272.00
8488                                                                                                 136.00
8489                                                                                                  44-88
8490                                                                                                  80.00
8491                                                                                                   1.50
8492                                                                                                 300.00
8493                                                                                                   1.00
8494                                                                                                 100.00
8495                                                                                                   1.00
8496                                                                                                  20.00
8497                                                                                                  20.00
8498                                                                                                  10.00
8499                                                                                                  10.00
8500                                                                                                   1.00
8501                                                                                                 160.00
8502                                                                                                   1.00
8503                                                                                                   2.50
8504                                                                                                   3.00
8505                                                                                                   4.00
8506                                                                                                  30.00
8507                                                                                                  30.00
8508                                                                                                 250.00
8509                                                                                    tablet/pill/capsule
8510                                                                                                 375 mg
8511                                                                                                   1.40
8512                                                                                                   1.00
8513                                                                                                  30.00
8514                                                                           based on weight (51-100 lbs)
8515                                                                           based on weight (51-100 lbs)
8516                                                                                                  23.00
8517                                                                                                  30.00
8518                                                                                                   1.00
8519                                                                                                   0.48
8520                                                                                                   1.20
8521                                                                                                  72.00
8522                                                                                                   6.00
8523                                                                                                 105.00
8524                                                                                                   1.00
8525                                                                                                  10.00
8526                                                                                                   0.40
8527                                                                                                   0.20
8528                                                                         based on weight (50.1-100 lbs)
8529                                                                                                   0.20
8530                                                                                                  30.00
8531                                                                         based on weight (50.1-100 lbs)
8532                                                                                                  50 mg
8533                                                                                                 0.3 mg
8534                                                                                                 375 mg
8535                                                                                                  50.00
8536                                                                                                  15.00
8537                                                                                                 300.00
8538                                                                                                 300.00
8539                                                                                                  20.00
8540                                                                                                 200.00
8541                                                                                                  spray
8542                                                                                                 500.00
8543                                                                                                 810.00
8544                                                                                                  37.50
8545                                                                                                  25.00
8546                                                                                                8 drops
8547                                                                                                 500 mg
8548                                                                                                 100.00
8549                                                                                                   5.00
8550                                                                           based on weight (50-100 lbs)
8551                                                                                                 272.00
8552                                                                                                 272.00
8553                                                                                                  23.00
8554                                                                           based on weight (50-100 lbs)
8555                                                                              based on weight (<50 lbs)
8556                                                                                                2000.00
8557                                                                                                 500.00
8558                                                                                                 375.00
8559                                                                                                   1.00
8560                                                                                                 200.00
8561                                                                                                  20.00
8562                                                                                                 375.00
8563                                                                                                   1.00
8564                                                                                                   0.69
8565                                                                                                   2.20
8566                                                                                                   1.00
8567                                                                                                 468.75
8568                                                                                                   3.13
8569                                                                                                  37.50
8570                                                                                                  12.00
8571                                                                                                  72.00
8572                                                                                                1620.00
8573                                                                                                  27.00
8574                                                                                                   1.00
8575                                                                                                  25-50
8576                                                                                                1000.00
8577                                                                                                   1.00
8578                                                                                           small amount
8579                                                                                                  20.00
8580                                                                                                 400.00
8581                                                                                           small amount
8582                                                                           based on weight (50-100 lbs)
8583                                                                                           small amount
8584                                                                                           small amount
8585                                                                                        moderate amount
8586                                                                                             1 wipe/pad
8587                                                                                                   1.00
8588                                                                                           small amount
8589                                                                                                 500.00
8590                                                                                                  10.00
8591                                                                           based on weight (60-120 lbs)
8592                                                                                                   1.00
8593                                                                                                   1.50
8594                                                                                                 100.00
8595                                                                                                   1.00
8596                                                                                                   1.00
8597                                                                                                   3.00
8598                                                                                                   1.00
8599                                                                                                   1.00
8600                                                                                                   1.00
8601                                                                                                 100.00
8602                                                                                                 125.00
8603                                                                                                 500.00
8604                                                                                                   1.00
8605                                                                                                   1.00
8606                                                                                                   1.00
8607                                                                              based on weight (55+ lbs)
8608                                                                                                 325.00
8609                                                                           based on weight (51-100 lbs)
8610                                                                                                  75.00
8611                                                                                                  75.00
8612                                                                                                 350.00
8613                                                     0.284 mg betamethasone, 0.57 mg gentamicin sulfate
8614                                                                                                 350.00
8615                                                                                                   1.00
8616                                                                                                 400.00
8617                                                                                                  20.00
8618                                                                                                 625.00
8619                                                                                                1000.00
8620                                                                                                  60.00
8621                                                                                                 137.00
8622                                                                                                   6.80
8623                                                                                                 200.00
8624                                                                                                 300.00
8625                                                                                                   3.20
8626                                                                                                   1.30
8627                                                                                                   0.65
8628                                                                                                   0.05
8629                                                                                                   4.20
8630                                                                                                   2.20
8631                                                                                                 161.80
8632                                                                                                   2.00
8633                                                                                                   1.50
8634                                                                                                   1.40
8635                                                                                                  75.00
8636                                                                                                 136.00
8637                                                                                                 300.00
8638                                                                                                  75.00
8639                                                                                                 200.00
8640                                                                                                   1.00
8641                                                                                                  20.00
8642                                                                                                   5.00
8643                                                                                                 227.00
8644                                                                                                 750.00
8645                                                                                                   3.30
8646                                                                                                   2.00
8647                                                                                                  12.70
8648                                                                                                   2.00
8649                                                                                                   2.00
8650                                                                                                   2.50
8651                                                                                                  75.00
8652                                                                                                  50.00
8653                                                                                                 200.00
8654                                                                                                 750.00
8655                                                                                                   1.50
8656                                                                                                   4.00
8657                                                                                                  60.00
8658                                                                                                 750.00
8659                                                                                                  12.00
8660                                                                                                 272.00
8661                                                                                                   8.00
8662                                                                                                 300.00
8663                                                                                                  75.00
8664                                                                                                 300.00
8665                                                                                                  60.00
8666                                                                                                  75.00
8667                                                                                                   0.50
8668                                                                                                  60.00
8669                                                                                                   1.00
8670                                                                                                 200.00
8671                                                                                                1647.00
8672                                                                                                1647.00
8673                                                               27 mg milbemycin oxime, 1620 mg spinosad
8674                                                                           based on weight (60-120 lbs)
8675                                                                           based on weight (60-120 lbs)
8676                                                                           based on weight (60-120 lbs)
8677                                                                           based on weight (60-120 lbs)
8678                                                                                                 500.00
8679                                                                                                 272.00
8680                                                                                                 272.00
8681                                                                                                 500.00
8682                                                                                                  10.00
8683                                                                                                  15.00
8684                                                                                                 272.00
8685                                                                                                150-100
8686                                                                                                   4.00
8687                                                                                                  10.00
8688                                                                                                 500.00
8689                                                                                                  10.00
8690                                                                                                  50.00
8691                                                                                                 500.00
8692                                                                                                 200.00
8693                                                                                                 272.00
8694                                                                            based on weight (45-88 lbs)
8695                                                                                                25-37.5
8696                                                                                                 200.00
8697                                                                                                 varies
8698                                                                                                   1.00
8699                                                                                                   1.00
8700                                                                                                 272.00
8701                                                                                                 272.00
8702                                                                            based on weight (45-88 lbs)
8703                                                                                                 200.00
8704                                                                                                   1.00
8705                                                                                                  57.00
8706                                                                                                 272.00
8707                                                                            based on weight (45-88 lbs)
8708                                                                                                   3.75
8709                                                                                                 200.00
8710                                                                                                   1.00
8711                                                                                                   1.00
8712                                                                                                1000.00
8713                                                                                                   1.00
8714                                                                                                 272.00
8715                                                                                                   1.88
8716                                                                                                   1.00
8717                                                                                                  12.50
8718                                                                                                   3.00
8719                                                                                                  14.00
8720                                                                                                 150.00
8721                                                                                                 200 mg
8722                                                                                                   2.20
8723                                                                                                 300.00
8724                                                                                                   1.00
8725                                                                                                   4.80
8726                                                                                                   4.50
8727                                                                                                 200.00
8728                                                                                                 300.00
8729                                                                                                   1.00
8730                                                                                                   2.40
8731                                                                                        based on weight
8732                                                                                                   2.60
8733                                                                                                 200.00
8734                                                                                                   1.00
8735                                                                                        moderate amount
8736                                                                                             1 wipe/pad
8737                                                                                                   6.00
8738                                                                                                   1.00
8739                                                                                                  21.00
8740                                                                                                   1.00
8741                                                                                                   5.00
8742                                                                                                 200.00
8743                                                                                                 200.00
8744                                                                                            unspecified
8745                                                                                            unspecified
8746                                                                                                 200.00
8747                                                                                                 400.00
8748                                                                                                 600.00
8749                                                                                                 500.00
8750                                                                                                 600.00
8751                                                                                                 400.00
8752                                                                                                 500.00
8753                                                                                                 600.00
8754                                                                                                 400.00
8755                                                                                                 100.00
8756                                                                           based on weight (51-100 lbs)
8757                                                            23 mg milbemycin oxime, 228 mg praziquantel
8758                                                                                                   1.00
8759                                                                              based on weight (55+ lbs)
8760                                                                           based on weight (51-100 lbs)
8761                                                                                                   7.50
8762                                                                                                 150.00
8763                                                                                                 300.00
8764                                                                                                 150.00
8765                                                                                                   1.00
8766                                                                                                 227.00
8767                                                                                                   1.00
8768                                                                               based on weight (51 lbs)
8769                                                                                            unspecified
8770                                                                           based on weight (50-100 lbs)
8771                                                                                            unspecified
8772                                                                                                  37.50
8773                                                                                                  16.00
8774                                                                                                  16.00
8775                                                                                                  37.50
8776                                                                                                  56-95
8777                                                                           based on weight (51-100 lbs)
8778                                                                           based on weight (51-100 lbs)
8779                                                                            based on weight (56-95 lbs)
8780                                                                           based on weight (51-100 lbs)
8781                                                                            based on weight (56-95 lbs)
8782                                                                                                 750.00
8783                                                                                                  30.00
8784                                                                                                 150.00
8785                                                                                                  60.00
8786                                                                           based on weight (51-100 lbs)
8787                                                                                                  44-88
8788                                                                                                 200.00
8789                                                                                                  75.00
8790                                                                           based on weight (51-100 lbs)
8791                                                                            based on weight (44-88 lbs)
8792                                                                                           small amount
8793                                                                            based on weight (44-88 lbs)
8794                                                                           based on weight (51-100 lbs)
8795                                                                           based on weight (51-100 lbs)
8796                                                                                                  44-88
8797                                                                                            unspecified
8798                                                                                                 200.00
8799                                                                                                  20.00
8800                                                                                                  75.00
8801                                                                                                 100.00
8802                                                                                                 300.00
8803                                                                                                  20.00
8804                                                                                                  75.00
8805                                                                           based on weight (51-100 lbs)
8806                                                                                                   7.00
8807                                                                                                 500.00
8808                                                                                                  44-88
8809                                                                                                   5.00
8810                                                                                                   1.00
8811                                                                                                 750.00
8812                                                                                                 204.00
8813                                                                                                 500.00
8814                                                                                                 500.00
8815                                                                                        0.25 inch strip
8816                                                                                                   8.00
8817                                                                                                   6.00
8818                                                                                                 272.00
8819                                                                           based on weight (51-100 lbs)
8820                                                                           based on weight (60-121 lbs)
8821                                                                                                   3.40
8822                                                                                                   3.40
8823                                                                                                 500.00
8824                                                                                                  20.00
8825                                                                                               125, 500
8826                                                                                        0.25 inch strip
8827                                                                                                 60-120
8828                                                                           based on weight (51-100 lbs)
8829                                                                                                 272.00
8830                                                                                                 136.00
8831                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8832                                                                                                 227.00
8833                                                                           based on weight (51-100 lbs)
8834                                                                                                 500 mg
8835                                                                                                  75.00
8836                                                                                                 500.00
8837                                                                                            unspecified
8838                                                                                                  75.00
8839                                                                                                 272.00
8840                                                                                                 272.00
8841                                                                                                   2.68
8842                                                                                                 272.00
8843                                                                            based on weight (45-88 lbs)
8844                                                                                                 227.00
8845                                                                                                   1.14
8846                                                                                                   1.00
8847                                                                                                 200.00
8848                                                                                                 300.00
8849                                                                                                  75.00
8850                                                                                                 300.00
8851                                                                                            unspecified
8852                                                                                            unspecified
8853                                                                                            unspecified
8854                                                                                                 150.00
8855                                                                                                272 mcg
8856                                                                                                   8.00
8857                                                                                                 500.00
8858                                                                                                  60.00
8859                                                                                                   1.00
8860                                                                                           small amount
8861                                                                                                 500.00
8862                                                                                                 272.00
8863                                                                                                   4.00
8864                                                                                                   1.00
8865                                                                                                 272.00
8866                                                                                                 136.00
8867                                                                                                 227.00
8868                                                                                                  16.00
8869                                                                                                1620.00
8870                                                                                                 750.00
8871                                                                                                 300.00
8872                                                                                                 300.00
8873                                                                                                 200.00
8874                                                                                                 200.00
8875                                                                                            unspecified
8876                                                                                            unspecified
8877                                                                                            unspecified
8878                                                                                                  25.00
8879                                                                           based on weight (51-100 lbs)
8880                                                                                                 272.00
8881                                                                                                 227.00
8882                                                                                                 272.00
8883                                                                                                 227.00
8884                                                                                                 200.00
8885                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
8886                                                                                                   1.00
8887                                                                                                 200.00
8888                                                                                                 272.00
8889                                                                                                 227.00
8890                                                                                                 272.00
8891                                                                                                 500.00
8892                                                                                                 272.00
8893                                                                                                  75.00
8894                                                                                                  50.00
8895                                                                                                   1.00
8896                                                                                                 100.00
8897                                                                                                 500.00
8898                                                                                                 200.00
8899                                                                                                   8.00
8900                                                                                                  75.00
8901                                                                                                  75.00
8902                                                                                                 500.00
8903                                                                                                   1.00
8904                                                                                                 250.00
8905                                                                                                   0.30
8906                                                                                                 250.00
8907                                                                                                   0.30
8908                                                                                              13.5, 810
8909                                                                                                 500.00
8910                                                                                                 500.00
8911                                                                           based on weight (51-100 lbs)
8912                                                                                                   0.40
8913                                                                                                   0.40
8914                                                                                                  23.00
8915                                                                                                   0.40
8916                                                                                                  23.00
8917                                                                                                   0.40
8918                                                                                                  23.00
8919                                                                                                   0.40
8920                                                                                                   0.40
8921                                                                                                 100.00
8922                                                                                                   0.40
8923                                                                                                  70.00
8924                                                                                                9200.00
8925                                                                                                  30.00
8926                                                                                                 272.00
8927                                                                                                 228.00
8928                                                                                                 228.00
8929                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8930                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8931                                                                                                  50.00
8932                                                                                                  23.00
8933                                                                                                 500.00
8934                                                                                                   2.00
8935                                                                                                  23.00
8936                                                                                                1000.00
8937                                                                                                  23.00
8938                                                                                                1000.00
8939                                                                                                  16.00
8940                                                                                                  23.00
8941                                                                                                1000.00
8942                                                                                                  16.00
8943                                                                                                  23.00
8944                                                                                                1000.00
8945                                                                                                 228.00
8946                                                                                                  16.00
8947                                                                                                   0.70
8948                                                                                                   0.70
8949                                                                                                  16.00
8950                                                                                                  16.00
8951                                                                                                   0.70
8952                                                                                                   3.00
8953                                                                                                  60.00
8954                                                                                                  40.00
8955                                                                                                  16.00
8956                                                                                                   2.00
8957                                                                                                   1.00
8958                                                                                                 272.00
8959                                                                                                 228.00
8960                                                                                                 228.00
8961                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8962                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
8963                                                                                                  25.00
8964                                                                                                  23.00
8965                                                                                                  23.00
8966                                                                                                1000.00
8967                                                                                                  23.00
8968                                                                                                1000.00
8969                                                                                                  23.00
8970                                                                                                1000.00
8971                                                                                                  23.00
8972                                                                                                1000.00
8973                                                                                                 228.00
8974                                                                                                  30.00
8975                                                                                                  60.00
8976                                                                                                   1.00
8977                                                                                                   1.00
8978                                                                                                   1.00
8979                                                                                                 500.00
8980                                                                                                  60.00
8981                                                                                                   3.00
8982                                                                                                   0.50
8983                                                                                                1000.00
8984                                                                                                   3.00
8985                                                                                                   2.00
8986                                                                                                  16.00
8987                                                                                                  16.00
8988                                                                                                 272.00
8989                                                                                                  24.00
8990                                                                                                  75.00
8991                                                                                                 200.00
8992                                                                                                   6.00
8993                                                                                                 272.00
8994                                                                                                  16 mg
8995                                                                                                 0.5 ml
8996                                                                                                  80.00
8997                                                                                                 0.5 ml
8998                                                                                                 0.5 ml
8999                                                                                                  70.00
9000                                                                                                  80.00
9001                                                                                                  75.00
9002                                                                                                  75.00
9003                                                                                                 300.00
9004                                                                                                 200.00
9005                                                                                                  80.00
9006                                                                                                 272.00
9007                                                                                                  70.00
9008                                                                                                  70.00
9009                                                                                                   6.00
9010                                                                                                 200.00
9011                                                                                                 200.00
9012                                                                                                  50.00
9013                                                                                                 200.00
9014                                                                                                  70.00
9015                                                                                                  50.00
9016                                                                                                 200.00
9017                                                                                                  70.00
9018                                                                                                  50.00
9019                                                                                                  23.00
9020                                                                                                  23.00
9021                                                                                                1000.00
9022                                                                                                   5.00
9023                                                                                                  23.00
9024                                                                                                   1.00
9025                                                                                                  23.00
9026                                                                           based on weight (50-100 lbs)
9027                                                                                                  75.00
9028                                                                                                  17.60
9029                                                                                                  75.00
9030                                                                                                  20.00
9031                                                                                                  23.00
9032                                                                                                  20.00
9033                                                                                                1000.00
9034                                                                                                  23.00
9035                                                                                                1776.00
9036                                                                                                   4.00
9037                                                                                                  60.00
9038                                                                                                 300.00
9039                                                                                                   3.75
9040                                                                                                 100.00
9041                                                                                                  23.00
9042                                                                                                 460.00
9043                                                                                                   1.00
9044                                                                                                   1.00
9045                                                                                                  23.00
9046                                                                           based on weight (51-100 lbs)
9047                                                                                           small amount
9048                                                                                                 460.00
9049                                                                                                2 drops
9050                                                                                            as directed
9051                                                                                                 187.50
9052                                                                                       0.125 inch strip
9053                                                                                  1 tablet/pill/capsule
9054                                                                            based on weight (26-50 lbs)
9055                                                                           based on weight (51-100 lbs)
9056                                                                                  1 tablet/pill/capsule
9057                                                                                                 500.00
9058                                                                                                  75.00
9059                                                                                                 250.00
9060                                                                                            unspecified
9061                                                                                                 100.00
9062                                                                                                 100.00
9063                                                                                                   1.00
9064                                                                                            as directed
9065                                                                                  1 tablet/pill/capsule
9066                                                                                                  10.00
9067                                                                                                  50.00
9068                                                                                                 400.00
9069                                                                                                 100.00
9070                                                                                            unspecified
9071                                                                                            unspecified
9072                                                                                                 100.00
9073                                                                                                   2.00
9074                                                                                                 375.00
9075                                                                                                  11.50
9076                                                                                                1000.00
9077                                                                                                  68.00
9078                                                                                                  11.50
9079                                                                                                1000.00
9080                                                                                                 100.00
9081                                                                                                  60.00
9082                                                                                                  20.00
9083                                                                                                  10.00
9084                                                                                            unspecified
9085                                                                                                 500.00
9086                                                                                                 600.00
9087                                                                                                  53.00
9088                                                                                                  91.00
9089                                                                                                 136.00
9090                                                                                                  20.00
9091                                                                                                   1.00
9092                                                                                                 100.00
9093                                                                                                  20.00
9094                                                                              based on weight (50+ lbs)
9095                                                                           based on weight (51-100 lbs)
9096                                                                                                 100.00
9097                                                                                                  50.00
9098                                                                           based on weight (51-100 lbs)
9099                                                                                            unspecified
9100                                                                                            unspecified
9101                                                                                            unspecified
9102                                                                                                 100.00
9103                                                                                                3000.00
9104                                                                                                   1.00
9105                                                                                                 272.00
9106                                                                                                   9.80
9107                                                                                                   1.00
9108                                                                                                 150.00
9109                                                                                        0.25 inch strip
9110                                                                                                 227.00
9111                                                                                                 500.00
9112                                                                                                 500.00
9113                                                                                                 500.00
9114                                                                                                  20.00
9115                                                                                                  10.00
9116                                                                                                   6.00
9117                                                                                                 150.00
9118                                                                                        0.25 inch strip
9119                                                                                                  20.00
9120                                                                                                   1.00
9121                                                                                                   1.00
9122                                                                                                   1.00
9123                                                                                                   1.00
9124                                                                                                   1.00
9125                                                                                                 500.00
9126                                                                                               45585.00
9127                                                                                                 272.00
9128                                                                                                 136.00
9129                                                                                                   8.00
9130                                                                                                 272.00
9131                                                                                                 136.00
9132                                                                              based on weight (60+ lbs)
9133                                                                                                   1.00
9134                                                                                                   1.00
9135                                                                                  1 tablet/pill/capsule
9136                                                                                            application
9137                                                                                  1 tablet/pill/capsule
9138                                                                                                 227.00
9139                                                                                                 136.00
9140                                                                                                 227.00
9141                                                                                                 136.00
9142                                                                                                 227.00
9143                                                                                                 136.00
9144                                                                                                   1.00
9145                                                                                                   1.00
9146                                                                                                   1.00
9147                                                                                                 500.00
9148                                                                                                   0.60
9149                                                                                                 200.00
9150                                                                                                  15.00
9151                                                                                                 227.00
9152                                                                                                 200.00
9153                                                                                                 500.00
9154                                                                                                   8.00
9155                                                                                                  50.00
9156                                                                                            unspecified
9157                                                                                                  50.00
9158                                                                                                   4.00
9159                                                                                                 340.00
9160                                                                           based on weight (89-132 lbs)
9161                                               based on weight (0-25 lbs), based on weight (51-100 lbs)
9162                                                                                                 300.00
9163                                                                                                 340.00
9164                                                                                                 88-132
9165                                                                                                   2.00
9166                                                                                                  28.75
9167                                                                                                   4.00
9168                                                                                                   0.90
9169                                                                                                 100.00
9170                                                                           based on weight (51-100 lbs)
9171                                                                                                   0-25
9172                                                                                                 88-132
9173                                                                                                   0.60
9174                                                                                                  50.00
9175                                                                                                  50.00
9176                                                                                                  50.00
9177                                                                                                   0.30
9178                                                                                                  50.00
9179                                                                                                  50.00
9180                                                                                                 272.00
9181                                                                                                   1.00
9182                                                                                                  75.00
9183                                                                                                  50.00
9184                                                                                                 500.00
9185                                                                                                 100.00
9186                                                                                                  50.00
9187                                                                                            application
9188                                                                                                  16.00
9189                                                                                  1 tablet/pill/capsule
9190                                                                                                  80.00
9191                                                                                                 200.00
9192                                                                                                 500.00
9193                                                                                         1 pack/package
9194                                                                                                  80.00
9195                                                                                                  12.00
9196                                                                                                  15.00
9197                                                                                                   2.00
9198                                                                                                   1.00
9199                                                                                                   1.00
9200                                                                                                   1.00
9201                                                                                                   1.00
9202                                                                           based on weight (51-100 lbs)
9203                                                                                                   1.00
9204                                                                                                  16.00
9205                                                                                                 200.00
9206                                                                                                  50.00
9207                                                                                                  60.00
9208                                                                                                1750.00
9209                                                                                                   1.00
9210                                                                                                1750.00
9211                                                                                                   0.25
9212                                                                                                 100.00
9213                                                                                                  50.00
9214                                                                                                  12.50
9215                                                                                                1750.00
9216                                                                                                 200.00
9217                                                                                                  50.00
9218                                                                                                 100.00
9219                                                                                                 100.00
9220                                                                                                1750.00
9221                                                                                                  50.00
9222                                                                                                   0.25
9223                                                                                                 100.00
9224                                                                                                   1.30
9225                                                                                                 100.00
9226                                                                                                  50.00
9227                                                                                                 100.00
9228                                                                                                  75.00
9229                                                                                                  75 mg
9230                                                                                           small amount
9231                                                                                                  10.00
9232                                                                                                   1.00
9233                                                                                                 250 mg
9234                                                                                                  75.00
9235                                                                                                 750.00
9236                                                                           based on weight (51-100 lbs)
9237                                                                                                   3.25
9238                                                                                                   1.00
9239                                                                                               tapering
9240                                                                                               tapering
9241                                                                                                 varies
9242                                                                           based on weight (51-100 lbs)
9243                                                                                                 0.7 mg
9244                                                                                            unspecified
9245                                                                                                 0.7 mg
9246                                                                                                  60.00
9247                                                                                                   1.50
9248                                                                                                   1.00
9249                                                                                                 272.00
9250                                                                                                 227.00
9251                                                                                                   0.75
9252                                                                                            unspecified
9253                                                                                            application
9254                                                                           based on weight (50-100 lbs)
9255                                                                                                   0.50
9256                                                                                                 500.00
9257                                                                                                 500.00
9258                                                                                                   0.50
9259                                                                           based on weight (60-120 lbs)
9260                                                                                                 500.00
9261                                                                                                   0.50
9262                                                                                                 250.00
9263                                                                                                1000.00
9264                                                                                                  10.00
9265                                                                                                 272.00
9266                                                                                                 272.00
9267                                                                           based on weight (51-100 lbs)
9268                                                                                                  44-88
9269                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9270                                                                                                1000 mg
9271                                                                                            unspecified
9272                                                                                                  50.00
9273                                                                                                 100.00
9274                                                                                                 100.00
9275                                                                                                 600.00
9276                                                                                                  20.00
9277                                                                                                 625.00
9278                                                                                                 500.00
9279                                                                                                  10.00
9280                                                                                                  50.00
9281                                                                                                  25.00
9282                                                                                                   5.00
9283                                                                                                  50.00
9284                                                                                                 125.00
9285                                                                                                   4.00
9286                                                                                                   2.00
9287                                                                                                 272.00
9288                                                                                                 227.00
9289                                                                                                   1.00
9290                                                                                                 60-120
9291                                                                                                 750.00
9292                                                                                               27, 1620
9293                                                                                                1620.00
9294                                                                                               27, 1620
9295                                                                                               27, 1620
9296                                                                                                  16.00
9297                                                                                            unspecified
9298                                                                                                  16.00
9299                                                                                                 60-120
9300                                                                                                  16.00
9301                                                                                                   1.20
9302                                                                                                 500.00
9303                                                                                                   3.00
9304                                                                                                 200.00
9305                                                                                                 272.00
9306                                                                                                   2.00
9307                                                                                                   3.00
9308                                                                                                 272.00
9309                                                                                                   4.70
9310                                                                                                 272.00
9311                                                                                                 136.00
9312                                                                                                272 mcg
9313                                                                                                 136.00
9314                                                                                                  75.00
9315                                                                                                  75.00
9316                                                                                                   1.88
9317                                                                                                   1.00
9318                                                                                                  25.00
9319                                                                                                  50.00
9320                                                                                                   1.00
9321                                                                                                   1.00
9322                                                                                                  50.00
9323                                                                                                  75.00
9324                                                                                                  50.00
9325                                                                                                   3.00
9326                                                                                                   1.00
9327                                                                                                 150.00
9328                                                                                                   5.20
9329                                                                                                   1.10
9330                                                                                                   4.70
9331                                                                                                   5.00
9332                                                                                                1340.00
9333                                                                                                  75.00
9334                                                                                                1620.00
9335                                                                                                 272.00
9336                                                                                                 272.00
9337                                                                                                272 mcg
9338                                                                                                 200 mg
9339                                                                                                  60 mg
9340                                                                                                 100.00
9341                                                                                                   5.00
9342                                                                                                  20.00
9343                                                                                                   0.01
9344                                                                                                   0.50
9345                                                                                                   0.60
9346                                                                                                 500.00
9347                                                                                                   4.00
9348                                                                                                 136 mg
9349                                                                                                 150.00
9350                                                                                                  50.00
9351                                                                                                   1.90
9352                                                                                                 200.00
9353                                                                                                 200.00
9354                                                                                                 500.00
9355                                                                                                 500.00
9356                                                                                                 100.00
9357                                                                                                 100.00
9358                                                                                                  30.00
9359                                                                                                   2.50
9360                                                                                                  20.00
9361                                                                                                 272.00
9362                                                                                                 272.00
9363                                                                                                   6.00
9364                                                                                                 500.00
9365                                                                                                  75.00
9366                                                                                                 272.00
9367                                                                                                1000.00
9368                                                                                                 500.00
9369                                                                                                  75.00
9370                                                                                                 750.00
9371                                                                                                 300.00
9372                                                                                                  75.00
9373                                                                                                 750.00
9374                                                                                                  75.00
9375                                                                                                 750.00
9376                                                                                                   0.70
9377                                                                                                  75.00
9378                                                                                                  30.00
9379                                                                                                   0.70
9380                                                                                                  30.00
9381                                                                                                   0.70
9382                                                                                                   1.00
9383                                                                                                   1.00
9384                                                                                                7 drops
9385                                                                                                7 drops
9386                                                                           based on weight (51-100 lbs)
9387                                                                            based on weight (56-95 lbs)
9388                                                                                                  50.00
9389                                                                                                 136.00
9390                                                                                                272 mcg
9391                                                                                                   7.00
9392                                                                                                 272.00
9393                                                                                                 136.00
9394                                                                                                 272.00
9395                                                                                                 136.00
9396                                                                                                 272.00
9397                                                                                                 136.00
9398                                                                                                 600.00
9399                                                                                                 272.00
9400                                                                                                 136.00
9401                                                                                                1000.00
9402                                                                                                  50.00
9403                                                                                                   2.00
9404                                                                                                   2.00
9405                                                                                                   0.20
9406                                                                                                  45.00
9407                                                                                                  10.00
9408                                                                                                 500.00
9409                                                                                                 136.00
9410                                                                                                 272.00
9411                                                                                                  50.00
9412                                                                                                  75.00
9413                                                                                                   1.00
9414                                                                                                   1.00
9415                                                                                                   1.00
9416                                                                                           small amount
9417                                                                                                   1.00
9418                                                                                           small amount
9419                                                                                                 100.00
9420                                                                                                 200.00
9421                                                                                                 collar
9422                                                                                        based on weight
9423                                                                                                 200.00
9424                                                                                                  16.00
9425                                                                                                   1.00
9426                                                                           based on weight (50-100 lbs)
9427                                                                                                 500.00
9428                                                                                                 500.00
9429                                                                                            application
9430                                                                                                  50.00
9431                                                                                                 200.00
9432                                                                              based on weight (25+ lbs)
9433                                                                           based on weight (50-100 lbs)
9434                                                                           based on weight (51-100 lbs)
9435                                                                                              injection
9436                                                                           based on weight (51-100 lbs)
9437                                                                                                 200.00
9438                                                                                              injection
9439                                                                                                6000.00
9440                                                                                                   1.00
9441                                                                                                   1.00
9442                                                                                                 375.00
9443                                                                                                 500.00
9444                                                                                                  50.00
9445                                                                                                 500.00
9446                                                                                                 100.00
9447                                                                                            unspecified
9448                                                                                                 150.00
9449                                                                                                 125.00
9450                                                                                                 250.00
9451                                                                                                 625.00
9452                                                            272 mcg ivermectin, 227 mg pyrantel pamoate
9453                                                                                               8.8, 9.8
9454                                                                                        0.25 inch strip
9455                                                                                                 272.00
9456                                                                                                   9.80
9457                                                                                                 250.00
9458                                                                                                 272.00
9459                                                                                                  68.00
9460                                                                                                 272.00
9461                                                                                                  68.00
9462                                                                                                 227.00
9463                                                                                                 136.00
9464                                                                                                  23.00
9465                                                                                                  68.00
9466                                                                                                 272.00
9467                                                                                                 272.00
9468                                                                                                 272.00
9469                                                                                                  12.50
9470                                                                                                  12.50
9471                                                                                                 272.00
9472                                                                                                 272.00
9473                                                                                                1000.00
9474                                                                                                 272.00
9475                                                                                                 272.00
9476                                                                                                  12.50
9477                                                                                                 500.00
9478                                                                                                   7.00
9479                                                                                                  74.00
9480                                                                                                   0.50
9481                                                                                                  37.50
9482                                                                                                 350.00
9483                                                                                                  62.50
9484                                                                                                 250.00
9485                                                                                                 500 mg
9486                                                                                                   3.00
9487                                                                                                  25.00
9488                                                                                                 500.00
9489                                                                                                 500.00
9490                                                                                                 100.00
9491                                                                                                   1.00
9492                                                                                                   1.00
9493                                                                                                 200.00
9494                                                                                           small amount
9495                                                                                           small amount
9496                                                                                                 136.00
9497                                                                                                 272.00
9498                                                                                                 136.00
9499                                                                                                1000.00
9500                                                                                                 136.00
9501                                                                                                 400.00
9502                                                                                                   5.00
9503                                                                                                 200.00
9504                                                                                                 136.00
9505                                                                                                 272.00
9506                                                                                                   1.00
9507                                                                                                 400.00
9508                                                                                                 200.00
9509                                                                                                 227.00
9510                                                                                                 200.00
9511                                                                                            unspecified
9512                                                                                                 300.00
9513                                                                                                   5.00
9514                                                                                                 100.00
9515                                                                                                   1.50
9516                                                                                       0.125 inch strip
9517                                                                                                 250.00
9518                                                                                                 100.00
9519                                                                                                   1.00
9520                                                                                                 113.50
9521                                                                                                 272.00
9522                                                                                                 228.00
9523                                                                                                 228.00
9524                                                                                           small amount
9525                                                                                                   1.00
9526                                                                                                 160.00
9527                                                                                                  62.50
9528                                                                                                  32.50
9529                                                                                                   5.00
9530                                                                                                  75.00
9531                                                                                                  34.50
9532                                                                                                  75.00
9533                                                                                                   5.00
9534                                                                                                 272.00
9535                                                                                                 272.00
9536                                                                                                 160.00
9537                                                                                                 160.00
9538                                                                                                   1.63
9539                                                                                                   1.09
9540                                                                                                 108.73
9541                                                                                                   2.50
9542                                                                                                 272.00
9543                                                                                                 272.00
9544                                                                          based on weight (24.1-60 lbs)
9545                                                                                                 272.00
9546                                                                         based on weight (60.1-121 lbs)
9547                                                                                                 272.00
9548                                                                          based on weight (44.1-88 lbs)
9549                                                                         based on weight (60.1-121 lbs)
9550                                                                                                   1.00
9551                                                                                                   1.12
9552                                                                                                 112.00
9553                                                                                                 272.00
9554                                                                                                  75.00
9555                                                                                                 500.00
9556                                                                                                   2.00
9557                                                                                                   1.00
9558                                                                                                   1.17
9559                                                                                                  11.71
9560                                                                                                 117.09
9561                                                                                                 180.00
9562                                                                                                 272.00
9563                                                                                                  75.00
9564                                                                                                 100.00
9565                                                                                                  60.00
9566                                                                                                  75.00
9567                                                                                                  60.00
9568                                                                                                  60.00
9569                                                                                                  15.00
9570                                                                                                 125.00
9571                                                                                                 500.00
9572                                                                                                 900.00
9573                                                                                                   2.00
9574                                                                                                   2.00
9575                                                                                                 60-120
9576                                                                                                  60.00
9577                                                                                                 500.00
9578                                                                                                 60-120
9579                                                                                                2000.00
9580                                                                                                 500.00
9581                                                                                                  15.00
9582                                                                                                1000.00
9583                                                                                                  20.00
9584                                                                           based on weight (51-100 lbs)
9585                                                                                                 200.00
9586                                                                                                  10.00
9587                                                                                                   1.00
9588                                                                                           small amount
9589                                                                                                 500.00
9590                                                                                                   5.00
9591                                                                                                 500.00
9592                                                                                            unspecified
9593                                                                                                  75.00
9594                                                                                                  75.00
9595                                                                                                  75.00
9596                                                                                            unspecified
9597                                                                                                  75.00
9598                                                                                                   0.60
9599                                                                                                 150.00
9600                                                                                            unspecified
9601                                                                                            unspecified
9602                                                                                        based on weight
9603                                                                                        based on weight
9604                                                                                        based on weight
9605                                                                                                  17.00
9606                                                                                                 250.00
9607                                                                                                  68.00
9608                                                                                                   1.00
9609                                                                           based on weight (51-100 lbs)
9610                                                                            based on weight (44-88 lbs)
9611                                                                                                 150.00
9612                                                                                                  spray
9613                                                                                                  spray
9614                                                                                               wipe/pad
9615                                                                           based on weight (50-100 lbs)
9616                                                                            based on weight (44-88 lbs)
9617                                                                           based on weight (51-100 lbs)
9618                                                                            based on weight (44-80 lbs)
9619                                                                           based on weight (51-100 lbs)
9620                                                                            based on weight (44-88 lbs)
9621                                                                           based on weight (50-100 lbs)
9622                                                                                                 200.00
9623                                                                                                  75.00
9624                                                                                                 200.00
9625                                                                                                  75.00
9626                                                                                                 125.00
9627                                                                                                 375.00
9628                                                                                                 375.00
9629                                                                                                   8.00
9630                                                                                                   1.00
9631                                                                                                 150.00
9632                                                                                                 60-120
9633                                                                                                   8.00
9634                                                                                                   1.00
9635                                                                                               27, 1620
9636                                                                                                  16.00
9637                                                                                                   0.50
9638                                                                                                 60-120
9639                                                                                                  16.00
9640                                                                                               27, 1620
9641                                                                           based on weight (60-120 lbs)
9642                                                                                                  16.00
9643                                                                           based on weight (60-120 lbs)
9644                                                                                                  16.00
9645                                                                                                  16.00
9646                                                                                                 200.00
9647                                                                                                  16.00
9648                                                                                                   8.00
9649                                                                                                  70.00
9650                                                                                                  16.00
9651                                                                                                 200.00
9652                                                                                                  20.00
9653                                                                                                 250.00
9654                                                                                                 250.00
9655                                                                                                   1.00
9656                                                                                                  83.00
9657                                                                                                  21-55
9658                                                                                                 136.00
9659                                                                                                   0.12
9660                                                                                                 136.00
9661                                                                                                 100.00
9662                                                                                                   0.12
9663                                                                                                 272.00
9664                                                                                                 100.00
9665                                                                                                 200.00
9666                                                                                                 500.00
9667                                                                                                 250.00
9668                                                                                                   2.50
9669                                                                                                  25.00
9670                                                                                                 375.00
9671                                                                                                 102.00
9672                                                                                                   1.00
9673                                                                                                 272.00
9674                                                                                                  68.00
9675                                                                                                 425.00
9676                                                                                                 200.00
9677                                                                                                 200.00
9678                                                                                                 102.00
9679                                                                                                 375.00
9680                                                                                                 500.00
9681                                                                                                   2.30
9682                                                                                                 500.00
9683                                                                                                 272.00
9684                                                                                                   3.60
9685                                                                                                   0.40
9686                                                                                                 425.00
9687                                                                                                 250.00
9688                                                                                                 113.00
9689                                                                                                 200.00
9690                                                                                                   1.50
9691                                                                                                 272.00
9692                                                                                                 200.00
9693                                                                                                 500.00
9694                                                                                                   0.45
9695                                                                                                 272.00
9696                                                                                                   0.45
9697                                                                                                   0.40
9698                                                                                                   1.00
9699                                                                                                 100.00
9700                                                                                                 200.00
9701                                                                                                 300.00
9702                                                                                                  50.00
9703                                                                                                 150.00
9704                                                                                                 250.00
9705                                                                                                 150.00
9706                                                                                                   0.45
9707                                                                                                  50.00
9708                                                                                                   0.45
9709                                                                                                 200.00
9710                                                                                                  50.00
9711                                                                                                 375.00
9712                                                                                                 51-100
9713                                                                                                 300.00
9714                                                                                                 750.00
9715                                                                                                 300.00
9716                                                                                                 750.00
9717                                                                                                 51-100
9718                                                                                            unspecified
9719                                                                                                 750.00
9720                                                                                                  10.00
9721                                                                                                 100.00
9722                                                                                                   1.00
9723                                                                           based on weight (51-100 lbs)
9724                                                                                                 450.00
9725                                                                                                 750.00
9726                                                                                                1000.00
9727                                                                                                  16.00
9728                                                                                                1000.00
9729                                                                                                 51-100
9730                                                                                                 51-100
9731                                                                                                1000.00
9732                                                                                                   8.00
9733                                                                                                 500.00
9734                                                                                                   8.00
9735                                                                                                 400.00
9736                                                                                                  16.00
9737                                                                                                 100.00
9738                                                                                                 100.00
9739                                                                                                 500.00
9740                                                                                                  16.00
9741                                                                                                 500.00
9742                                                                                                 125.00
9743                                                                                                 100.00
9744                                                                                                   1.00
9745                                                                                                   2.50
9746                                                                                                 250.00
9747                                                                                                 250.00
9748                                                                                                  50.00
9749                                                                                                   1.00
9750                                                                                                   2.25
9751                                                                                                 500.00
9752                                                                                                 300.00
9753                                                                                                   4.00
9754                                                                                                   4.00
9755                                                                                                 823.50
9756                                                                                                 499.00
9757                                                                                                   4.00
9758                                                                                                  10.00
9759                                                                           based on weight (51-100 lbs)
9760                                                                              based on weight (55+ lbs)
9761                                                                           based on weight (51-100 lbs)
9762                                                                                                   2.00
9763                                                                                  1 tablet/pill/capsule
9764                                                                                  1 tablet/pill/capsule
9765                                                                                  1 tablet/pill/capsule
9766                                                                           based on weight (51-100 lbs)
9767                                                                                                  80.00
9768                                                                                                   1.00
9769                                                                                                   0.50
9770                                                                         based on weight (50.1-100 lbs)
9771                                                                                                  45-88
9772                                                                                                 100.00
9773                                                                                                 300.00
9774                                                                                                 250.00
9775                                                                                                  50.00
9776                                                                                                  50.00
9777                                                                                                 250.00
9778                                                                                                 272.00
9779                                                                                                 228.00
9780                                                                                                 228.00
9781                                                                                                   9.70
9782                                                                                                  75.00
9783                                                                                                 100.00
9784                                                                                                 150.00
9785                                        272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
9786                                                                                                  20.00
9787                                                                                                 250.00
9788                                                                                                 500.00
9789                                                                                                   1.00
9790                                                                                                   4.00
9791                                                                           based on weight (50-100 lbs)
9792                                                                                                  50.00
9793                                                                                                  75.00
9794                                                                                                 750.00
9795                                                                                                 500.00
9796                                                                                                   8.00
9797                                                                                                   0.00
9798                                                                                                 315.00
9799                                                                                                 136.00
9800                                                                                  1 tablet/pill/capsule
9801                                                                                                 200.00
9802                                                                                                  75.00
9803                                                                                                 200.00
9804                                                                                                 136.00
9805                                                                                                  20.00
9806                                                                                                 500.00
9807                                                                                            unspecified
9808                                                                                            unspecified
9809                                                                                            unspecified
9810                                                                                                  75.00
9811                                                                                                 750.00
9812                                                                                                 500.00
9813                                                                                                 500.00
9814                                                                                                   1.00
9815                                                                                                  28 mg
9816                                                                                                  60.00
9817                                                                                                 500.00
9818                                                                                                   1.00
9819                                                                                                 272.00
9820                                                                                                 500.00
9821                                                                                         1 pack/package
9822                                                                                                 750.00
9823                                                                                                   1 ml
9824                                                                                               10 drops
9825                                                                                                   3 ml
9826                                                                                           1 inch strip
9827                                                                                                7 drops
9828                                                                                               5-7.5 mg
9829                                                                                                 500 mg
9830                                                                                                  50.00
9831                                                                                                1000.00
9832                                                                                                  50.00
9833                                                                                            application
9834                                                                                                1000.00
9835                                                                                                   4.00
9836                                                                                                 200.00
9837                                                                                            unspecified
9838                                                                                                 200.00
9839                                                                                                   1.40
9840                                                                                            unspecified
9841                                                                                                   3.25
9842                                                                                                 300.00
9843                                                                                            unspecified
9844                                                                                                   3.25
9845                                                                                                 468.00
9846                                                                                                1000.00
9847                                                                                                 200.00
9848                                                                                                 500.00
9849                                                                                                 100.00
9850                                                                                                   3.25
9851                                                                                                 468.00
9852                                                                                                   1.00
9853                                                                                                  20.00
9854                                                                                                   1.00
9855                                                                                                  25.00
9856                                                                                                 250.00
9857                                                                                                  75.00
9858                                                                                                  75.00
9859                                                                                                  75.00
9860                                                                                                  75 mg
9861                                                                                                 750.00
9862                                                                                                  75 mg
9863                                                                                               wipe/pad
9864                                                                                                1000.00
9865                                                                                                  spray
9866                                                                                                  20.00
9867                                                                                                 300.00
9868                                                                                                  75.00
9869                                                                                                 200.00
9870                                                                                                 300.00
9871                                                                                                 300.00
9872                                                                                                   1.56
9873                                                                                            unspecified
9874                                                                                                   3.25
9875                                                                                                  75.00
9876                                                                                                 300.00
9877                                                                                            unspecified
9878                                                                                                 500.00
9879                                                                                                 300.00
9880                                                                                                   1.56
9881                                                                                                 300.00
9882                                                                                                 170.00
9883                                                                                                  50.00
9884                                                                                        0.25 inch strip
9885                                                                                                   1.00
9886                                                                                                   1.00
9887                                                                                                   2.00
9888                                                                                                   0.25
9889                                                                           based on weight (51-100 lbs)
9890                                                                            based on weight (45-88 lbs)
9891                                                                                        0.25 inch strip
9892                                                                                           small amount
9893                                                                                  1 tablet/pill/capsule
9894                                                                         based on weight (50.1-100 lbs)
9895                                                                         based on weight (60.1-121 lbs)
9896                                                                                        0.25 inch strip
9897                                                                                            unspecified
9898                                                                                        based on weight
9899                                                                                  1 tablet/pill/capsule
9900                                                                                  1 tablet/pill/capsule
9901                                                                                        based on weight
9902                                                                                  1 tablet/pill/capsule
9903                                                                                        0.25 inch strip
9904                                                                                                   1.00
9905                                                                                                   9.00
9906                                                                                                   2.00
9907                                                                                            unspecified
9908                                                                                                 200.00
9909                                                                                                   1.00
9910                                                                                                 100.00
9911                                                                                                 500.00
9912                                                                                                 500.00
9913                                                                                                  60.00
9914                                                                                                  20.00
9915                                                                                                   1.00
9916                                                                                                   1.00
9917                                                                           based on weight (51-100 lbs)
9918                                                                                                  41-85
9919                                                                                               10 mg/lb
9920                                                                                                  10 mg
9921                                                                                                 500.00
9922                                                                                                  10.00
9923                                                                                                  10 mg
9924                                                                                               10 mg/kg
9925                                                                                                 250.00
9926                                                                                                   1.00
9927                                                                                                 150.00
9928                                                                                            unspecified
9929                                                                                                  20.00
9930                                                                                                  75.00
9931                                                                           based on weight (50-100 lbs)
9932                                                                                                 227.00
9933                                                                                                1400.00
9934                                                                                                  75.00
9935                                                                            based on weight (40-60 lbs)
9936                                                                                                  68.00
9937                                                                                                 500.00
9938                                                                                                 500.00
9939                                                                                                 500.00
9940                                                                                                  12.00
9941                                                                                                 500.00
9942                                                                                             4.125 cups
9943                                                                          based on weight (40.1-60 lbs)
9944                                                                            based on weight (40-60 lbs)
9945                                                                           based on weight (50-100 lbs)
9946                                                                                                  10.00
9947                                                                                                 272.00
9948                                                                                                 136.00
9949                                                                                                 272.00
9950                                                                                                 136.00
9951                                                                                                 200.00
9952                                                                                                 100.00
9953                                                                                                  50.00
9954                                                                                                   1.00
9955                                                                                                 120.00
9956                                                                                                   1.00
9957                                                                                                  60.00
9958                                                                                                 500.00
9959                                                                                                 100.00
9960                                                                                                272 mcg
9961                                                                                                 1 tube
9962                                                                                                272 mcg
9963                                                                              based on weight (55+ lbs)
9964                                                                                                   1.00
9965                                                                                                 272.00
9966                                                                              based on weight (55+ lbs)
9967                                                                                                272 mcg
9968                                                                              based on weight (55+ lbs)
9969                                                                                                272 mcg
9970                                                                                           small amount
9971                                                                                                272 mcg
9972                                                                              based on weight (55+ lbs)
9973                                                                                                  75.00
9974                                                                                                 272.00
9975                                                                                                  60.00
9976                                                                                                   1.00
9977                                                                                                 187.50
9978                                                                                                  32.50
9979                                                                                                 272.00
9980                                                                                                   6.40
9981                                                                                                  65.00
9982                                                                                                  16.00
9983                                                                                                   2.00
9984                                                                                                  30.00
9985                                                                                                 113.50
9986                                                                                                   1.00
9987                                                                                                   2.00
9988                                                                                                 272.00
9989                                                                                                 136.00
9990                                                                                                 450.00
9991                                                                                                   5.00
9992                                                                                                 272.00
9993                                                                                                 136.00
9994                                                                                                 500.00
9995                                                                                                  75.00
9996                                                                                                   1.00
9997                                                                                                 900.00
9998                                                                                                 272.00
9999                                                                                                 136.00
10000                                                                                                 50.00
10001                                                                                                272.00
10002                                                                                                136.00
10003                                                                                                 50.00
10004                                                                                                 60.00
10005                                                                                                 30.00
10006                                                                                                  3.00
10007                                                                                               1500.00
10008                                                                                                750.00
10009                                                                                                 50.00
10010                                                                                                272.00
10011                                                                                                136.00
10012                                                                                                750.00
10013                                                                                                170.25
10014                                                                                                  5.00
10015                                                                                                  1.00
10016                                                                                                 23.00
10017                                                                          based on weight (51-100 lbs)
10018                                                                                                500.00
10019                                                                                                 50.00
10020                                                                                                300.00
10021                                                                                                 37.50
10022                                                                                                375.00
10023                                                                                                  0.99
10024                                                                                                 23.00
10025                                                                                                 50.00
10026                                                                          based on weight (51-100 lbs)
10027                                                                             based on weight (18+ lbs)
10028                                                                                                 23.00
10029                                                                                                 20.00
10030                                                                                                  5.00
10031                                                                                                500.00
10032                                                                                                 20.00
10033                                                                                                 37.50
10034                                                                                                500.00
10035                                                                                                 20.00
10036                                                                                                  7.00
10037                                                                                           unspecified
10038                                                                                                 37.50
10039                                                                                                500.00
10040                                                                                                 20.00
10041                                                                                                 37.50
10042                                                                                           unspecified
10043                                                                                                 20.00
10044                                                                                                300.00
10045                                                                                                 37.50
10046                                                                                                150.00
10047                                                                                                 60.00
10048                                                                                                272.00
10049                                                                                                 10.00
10050                                                                                                400.00
10051                                                                                                 40.00
10052                                                                                                272.00
10053                                                                          based on weight (50-100 lbs)
10054                                                                                                 75.00
10055                                                                                                272.00
10056                                                                                               272 mcg
10057                                                                                                227 mg
10058                                                                                               1000.00
10059                                                                                                  2.80
10060                                                                                                  8.00
10061                                                                                           application
10062                                                                                                272.00
10063                                                                             based on weight (18+ lbs)
10064                                                                                                500.00
10065                                                                                                272.00
10066                                                                             based on weight (18+ lbs)
10067                                                                                                300.00
10068                                                                                                375.00
10069                                                                                                 50.00
10070                                                                                                100.00
10071                                                                                                 50.00
10072                                                                                                272.00
10073                                                                                                600.00
10074                                                                                                1 drop
10075                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10076                                                                                                 75.00
10077                                                                                                272.00
10078                                                                                                500.00
10079                                                                                                  4.00
10080                                                                                                  1.80
10081                                                                                                  6.00
10082                                                                                                272.00
10083                                                                                                272.00
10084                                                                                                 60.00
10085                                                                                                390.00
10086                                                                                                272.00
10087                                                                                                100.00
10088                                                                                                 10.00
10089                                                                                                600.00
10090                                                                                                  7.50
10091                                                                                                375.00
10092                                                                                           unspecified
10093                                                                                           unspecified
10094                                                                                                900.00
10095                                                                                                 10.00
10096                                                                                                272.00
10097                                                                                                227.00
10098                                                                                                  2.68
10099                                                                                                  8.00
10100                                                                                                  3.00
10101                                                                                                  3.00
10102                                                                                                 25.00
10103                                                                                                100.00
10104                                                                                                460.00
10105                                                                                                 11.50
10106                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10107                                                                    8.8% (s)-methoprene, 9.8% fipronil
10108                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10109                                                                    8.8% (s)-methoprene, 9.8% fipronil
10110                                                                                                  2.68
10111                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10112                                                                                 1 tablet/pill/capsule
10113                                                                                         1 bottle/vial
10114                                                                                                500.00
10115                                                                                           unspecified
10116                                                                           based on weight (45-88 lbs)
10117                                                                                                200.00
10118                                                                                                  2.68
10119                                                                                       272 mcg, 228 mg
10120                                                                                          small amount
10121                                                                                   tablet/pill/capsule
10122                                                                                                170.00
10123                                                                                                500 mg
10124                                                                                                500.00
10125                                                                                                136.00
10126                                                                                                  1.00
10127                                                                                                100.00
10128                                                                                                200.00
10129                                                                                                136.00
10130                                                                                           unspecified
10131                                                                                           unspecified
10132                                                                                           unspecified
10133                                                                                           unspecified
10134                                                                                           unspecified
10135                                                                                                300.00
10136                                                                                                 75.00
10137                                                                                                200.00
10138                                                                                                100.00
10139                                                                                                 50.00
10140                                                                                                100.00
10141                                                                                                  1.25
10142                                                                                                  1.00
10143                                                                                                  2.00
10144                                                                                                  2.00
10145                                                                                                 75.00
10146                                                                                                 40.00
10147                                                                                                250.00
10148                                                                                                200.00
10149                                                                                              10 drops
10150                                                                                                  2.90
10151                                                                                           unspecified
10152                                                                                                  6 mg
10153                                                                                                200 mg
10154                                                                                               2000 mg
10155                                                                                               2000.00
10156                                                                                                250.00
10157                                                                                                 37.50
10158                                                                                                500.00
10159                                                                                               1500.00
10160                                                                                                1.5 ml
10161                                                                                                 70.00
10162                                                                                                 30.00
10163                                                                                                  5.00
10164                                                                                                50-100
10165                                                                                                750.00
10166                                                                                                375.00
10167                                                                          based on weight (51-100 lbs)
10168                                                                                                750 mg
10169                                                                                                 75 mg
10170                                                                          based on weight (51-100 lbs)
10171                                                                                                 80.00
10172                                                                                                  1.00
10173                                                                                                 75.00
10174                                                                                                 75.00
10175                                                                                                  1.00
10176                                                                                          small amount
10177                                                                                                375.00
10178                                                                                                100.00
10179                                                                                                 32.40
10180                                                                                                  1.50
10181                                                                                                  1.00
10182                                                                                                 81.00
10183                                                                                                  1.50
10184                                                                                                750.00
10185                                                                                                200.00
10186                                                                                                750.00
10187                                                                                                 drops
10188                                                                              2 tablets/pills/capsules
10189                                                                                                200.00
10190                                                                                                500.00
10191                                                                                                500.00
10192                                                                                                  5.00
10193                                                                                                 50.00
10194                                                                                                500.00
10195                                                                                           unspecified
10196                                                                                                  5.00
10197                                                                                                  4.00
10198                                                                             based on weight (55+ lbs)
10199                                                                                                  0.50
10200                                                                              based on weight (60 lbs)
10201                                                                                               1000.00
10202                                                                                               1000.00
10203                                                                                                272.00
10204                                                                                                200.00
10205                                                                                                100.00
10206                                                                                                 50.00
10207                                                                                                 10.00
10208                                                                                                200.00
10209                                                                          based on weight (51-100 lbs)
10210                                                                                                 24.00
10211                                                                                                  1.50
10212                                                                                                400.00
10213                                                                                                200.00
10214                                                                                                 10.00
10215                                                                                                 50.00
10216                                                                                                 10.00
10217                                                                                                100.00
10218                                                                                                 25.00
10219                                                                          based on weight (51-100 lbs)
10220                                                                                                  3.50
10221                                                                                                 10.00
10222                                                                                                100.00
10223                                                                                                150.00
10224                                                                                                 40.00
10225                                                                                                 10.00
10226                                                                                                 16.00
10227                                                                                                  2.00
10228                                                                                                 75.00
10229                                                                                                  2.00
10230                                                                                 1 tablet/pill/capsule
10231                                                                                 1 tablet/pill/capsule
10232                                                                         1 tablet/pill/capsule - 10 mg
10233                                                                              2 tablets/pills/capsules
10234                                                                         1 tablet/pill/capsule - 10 mg
10235                                                                          based on weight (51-100 lbs)
10236                                                                                                60-121
10237                                                                                                 40.00
10238                                                                                                100.00
10239                                                                                                 10.00
10240                                                                                                500.00
10241                                                                                                 50.00
10242                                                                                                272.00
10243                                                                                                  1.50
10244                                                                                                 50.00
10245                                                                          based on weight (50-100 lbs)
10246                                                                                                 80.00
10247                                                                                                  1.00
10248                                                                                                  3.00
10249                                                                                           unspecified
10250                                                                                                 50.00
10251                                                                                                 10.00
10252                                                                                                240.00
10253                                                                                                250.00
10254                                                                                                272.00
10255                                                                                                227.00
10256                                                                                                 12.50
10257                                                                                                113.50
10258                                                                                                 50.00
10259                                                                                                 75.00
10260                                                                                                collar
10261                                                                                                  1.00
10262                                                                                                 70.00
10263                                                                                                 10.00
10264                                                                                          small amount
10265                                                                                                  1.00
10266                                                                                                  3.00
10267                                                                                                 60.00
10268                                                                                                  1.00
10269                                                                                                272.00
10270                                                                                                  8.00
10271                                                                                                 23 mg
10272                                                                                                 68.00
10273                                                                          based on weight (51-100 lbs)
10274                                                                           based on weight (40-60 lbs)
10275                                                                          based on weight (51-100 lbs)
10276                                                                           based on weight (41-60 lbs)
10277                                                                                                 10.00
10278                                                                                                  1.00
10279                                                                                                 23.00
10280                                                                                                 23.00
10281                                                                                                150.00
10282                                                                                                500.00
10283                                                                                                  1.00
10284                                                                                                 10.00
10285                                                                                                  1.00
10286                                                                                                  1.00
10287                                                                                                 23.00
10288                                                                                                 75.00
10289                                                                                                 15.00
10290                                                                                                900.00
10291                                                                                                100.00
10292                                                                                                 23 mg
10293                                                                                                  9.80
10294                                                                                                 23.00
10295                                                                                                 75.00
10296                                                                                               1000.00
10297                                                                                                  0.60
10298                                                                                                  0.70
10299                                                                                                 23.00
10300                                                                                                  1.00
10301                                                                                               23, 460
10302                                                                                                200.00
10303                                                                                                112.50
10304                                                                                                 23.00
10305                                                                                               1000.00
10306                                                                                                250.00
10307                                                                                                250.00
10308                                                                                                 75.00
10309                                                                                                100.00
10310                                                                                                240.00
10311                                                                                               1000.00
10312                                                                           based on weight (40-85 lbs)
10313                                                                      1.5 tablets/pills/capsules - 136
10314                                                                         0.5 tablet/pill/capsule - 250
10315                                                                                                200.00
10316                                                                                 1 tablet/pill/capsule
10317                                                                                                200.00
10318                                                                                                  2.00
10319                                                                                                  2.00
10320                                                                           1 tablet/pill/capsule - 375
10321                                                                                                200.00
10322                                                                                                240.00
10323                                                                                                240.00
10324                                                                          based on weight (85-130 lbs)
10325                                                                                                375.00
10326                                                                                                125.00
10327                                                                                                 16.00
10328                                                                                                 15.00
10329                                                                                                500.00
10330                                                                                                 60.00
10331                                                                                                 75.00
10332                                                                                                60-120
10333                                                                                                88-123
10334                                                                          based on weight (60-120 lbs)
10335                                                                          based on weight (88-123 lbs)
10336                                                                                               1627.00
10337                                                                                                300.00
10338                                                                                                100.00
10339                                                                                                300.00
10340                                                                                                100.00
10341                                                                                                  1.00
10342                                                                                                  1.00
10343                                                                                                480 mg
10344                                                                                                300.00
10345                                                                                   tablet/pill/capsule
10346                                                                                               1620.00
10347                                                                                           unspecified
10348                                                                                           unspecified
10349                                                                                          small amount
10350                                                                                                300.00
10351                                                                                               1620.00
10352                                                                                                  1.00
10353                                                                                               1620.00
10354                                                                                                 75.00
10355                                                                                               1620.00
10356                                                                                       based on weight
10357                                                                                                  1.00
10358                                                                                                  1.00
10359                                                                                                 40.00
10360                                                                                                 75.00
10361                                                                                                  1.00
10362                                                                                                 20.00
10363                                                                                                  1.00
10364                                                                                                 50.00
10365                                                                          based on weight (51-100 lbs)
10366                                                                           based on weight (44-88 lbs)
10367                                                                                               272 mcg
10368                                                                                                227.00
10369                                                                                                 16.08
10370                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10371                                                                                                 16.08
10372                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10373                                                                                                  2.68
10374                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10375                                                                                                  2.68
10376                                                                                                 75.00
10377                                                                                                300.00
10378                                                                                                 80.00
10379                                                                                               23, 228
10380                                                                                                 75.00
10381                                                                                                200.00
10382                                                                                                 75.00
10383                                                                                                 80.00
10384                                                                                               1000.00
10385                                                                                               1000.00
10386                                                                                               1000.00
10387                                                                                               1000.00
10388                                                                                                150.00
10389                                                                                               1000.00
10390                                                                                                150.00
10391                                                                                                500.00
10392                                                                                                 75.00
10393                                                                                                300.00
10394                                                                                                100.00
10395                                                                                                 60.00
10396                                                                                                 20.00
10397                                                                                                 50.00
10398                                                                                                 60.00
10399                                                                                                500.00
10400                                                                                           unspecified
10401                                                                                                  2.68
10402                                                                                                272.00
10403                                                                           based on weight (45-88 lbs)
10404                                                                                               272 mcg
10405                                                                           based on weight (45-88 lbs)
10406                                                                                                272.00
10407                                                                                                136.00
10408                                                                          based on weight (50-100 lbs)
10409                                                           23 mg milbemycin oxime, 228 mg praziquantel
10410                                                                                               23, 228
10411                                                                                                136.00
10412                                                                                               23, 228
10413                                                                                                136.00
10414                                                                                                  1.00
10415                                                                                                200.00
10416                                                                                                200.00
10417                                                                                                  1.75
10418                                                                                                 60.00
10419                                                                                                 20.00
10420                                                                                                500.00
10421                                                                                                310.00
10422                                                                                                682.00
10423                                                                                                 32.00
10424                                                                                                  1.75
10425                                                                                                272.00
10426                                                                                                  9.70
10427                                                                                               1620.00
10428                                                                                                 15.00
10429                                                                                                 drops
10430                                                                                                272.00
10431                                                                                                136.00
10432                                                                                                1 tube
10433                                                                                                272.00
10434                                                                                                272.00
10435                                                                                           unspecified
10436                                                                                           unspecified
10437                                                                                                325.00
10438                                                                                                100.00
10439                                                                                                200.00
10440                                                                                                  3.00
10441                                                                                           unspecified
10442                                                                                                100.00
10443                                                                                               1000.00
10444                                                                                                500.00
10445                                                                                           unspecified
10446                                                                                                100.00
10447                                                                                                 20.00
10448                                                                                               1000.00
10449                                                                                                100.00
10450                                                                                                 20.00
10451                                                                                                 19.60
10452                                                                                                  4.00
10453                                                                                                156.00
10454                                                                                                  4.00
10455                                                                                                170.00
10456                                                                                                500.00
10457                                                                                                500.00
10458                                                                                                500.00
10459                                                                                                500.00
10460                                                                                                136.00
10461                                                                                                100.00
10462                                                                                                100.00
10463                                                                                                  1.00
10464                                                                                                 25.00
10465                                                                                                 60.00
10466                                                                                                100.00
10467                                                                                                 10.00
10468                                                                                                 25.00
10469                                                                                                  8.00
10470                                                                                          small amount
10471                                                                                                  8.00
10472                                                                                                500.00
10473                                                                                                100.00
10474                                                                                                272.00
10475                                                                                               1620.00
10476                                                                                                  5.00
10477                                                                                         1 bottle/vial
10478                                                                                       based on weight
10479                                                                                                136.00
10480                                                                                                272.00
10481                                                                                                272.00
10482                                                                                                136.00
10483                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10484                                                                                                136.00
10485                                                                          based on weight (51-100 lbs)
10486                                                                                                136.00
10487                                                                          based on weight (51-100 lbs)
10488                                                                                                625.00
10489                                                                                                 75.00
10490                                                                                                113.50
10491                                                                                                  4.00
10492                                                                                                250.00
10493                                                                                                682.00
10494                                                                                                  1.00
10495                                                                                                100.00
10496                                                                                                100.00
10497                                                                                                227.00
10498                                                                                                227.00
10499                                                                                               23, 228
10500                                                                                             113.5-227
10501                                                                                                272.00
10502                                                                                                200 mg
10503                                                                          based on weight (50-100 lbs)
10504                                                                                                136.00
10505                                                                          based on weight (51-100 lbs)
10506                                                                          based on weight (51-100 lbs)
10507                                                                                                272.00
10508                                                                                                227.00
10509                                                                                                272.00
10510                                                                                               272 mcg
10511                                                                                               272 mcg
10512                                                                                                272.00
10513                                                                                                500.00
10514                                                                                                272.00
10515                                                                                                272.00
10516                                                                                                272.00
10517                                                                                                  2.68
10518                                                                                                 50.00
10519                                                                                                  1.00
10520                                                                                                 16.00
10521                                                                                                  1.00
10522                                                                                                  1.00
10523                                                                                                 16 mg
10524                                                                                                200 mg
10525                                                                                                  1 ml
10526                                                                                                0.5 ml
10527                                                                                                 16.00
10528                                                                                                200.00
10529                                                                                           unspecified
10530                                                                                                  8.80
10531                                                                                                810.00
10532                                                                                                  8.00
10533                                                                                                 70.00
10534                                                                                                 15.00
10535                                                                                                200.00
10536                                                                                                 15.00
10537                                                                                                300.00
10538                                                                                                  4.00
10539                                                                                                 23.00
10540                                                                                               1620.00
10541                                                                                                  8.00
10542                                                                                                200.00
10543                                                                                                 80.00
10544                                                                                                  3.00
10545                                                                                                 23.00
10546                                                                                               1000.00
10547                                                                                                300.00
10548                                                                                                300.00
10549                                                                                                  3.15
10550                                                                                                 70.00
10551                                                                                                 16.00
10552                                                                                                 75.00
10553                                                                                                  7.50
10554                                                                                                 80.00
10555                                                                                           unspecified
10556                                                                                                 16.00
10557                                                                                           unspecified
10558                                                                                                300.00
10559                                                                                                100.00
10560                                                                                                200.00
10561                                                                                                100.00
10562                                                                                                 80.00
10563                                                                                                200.00
10564                                                                                                750.00
10565                                                                                           unspecified
10566                                                                                                 15.00
10567                                                                                                200.00
10568                                                                                                100.00
10569                                                                                                100.00
10570                                                                                                300.00
10571                                                                                                150.00
10572                                                                                                150.00
10573                                                                                           unspecified
10574                                                                                                100.00
10575                                                                                          small amount
10576                                                                         3 tablets/pills/capsules - 25
10577                                                                            1 tablet/pill/capsule - 20
10578                                                                           1 tablet/pill/capsule - 160
10579                                                                           1 tablet/pill/capsule - 500
10580                                                                                        1.9 mg, 1.9 ml
10581                                                                                               1000.00
10582                                                                                                 16.00
10583                                                                          based on weight (60-120 lbs)
10584                                                                                                272.00
10585                                                                                                272.00
10586                                                                                                136.00
10587                                                                                                 50 mg
10588                                                                          based on weight (50-100 lbs)
10589                                                                                 1 tablet/pill/capsule
10590                                                                          based on weight (51-100 lbs)
10591                                                                          based on weight (50-100 lbs)
10592                                                                                                 50.00
10593                                                                                                100.00
10594                                                                                                 21-55
10595                                                                                                 50.00
10596                                                                                                500.00
10597                                                                                                  1.00
10598                                                                                                  3.75
10599                                                                                                500.00
10600                                                                                                  3.75
10601                                                                                                136.00
10602                                                                                                  2.68
10603                                                                                                100.00
10604                                                                                                100.00
10605                                                                                                100.00
10606                                                                                                200.00
10607                                                                                                500.00
10608                                                                                                 12.00
10609                                                                                                  2.75
10610                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10611                                                                                                100.00
10612                                                                                                100.00
10613                                                                                                150.00
10614                                                                                                 20.00
10615                                                                                                375.00
10616                                                                                                  1.00
10617                                                                                               2.68 ml
10618                                                                                 1 tablet/pill/capsule
10619                                                                            1.5 tablets/pills/capsules
10620                                                                                                375.00
10621                                                                                                 20.00
10622                                                                                                200.00
10623                                                                                                100.00
10624                                                                                       based on weight
10625                                                                                                272.00
10626                                                                                                500.00
10627                                                                                                500.00
10628                                                                                       0.25 inch strip
10629                                                                                                272.00
10630                                                                                                136.00
10631                                                                                                272.00
10632                                                                                                 80.00
10633                                                                                                272.00
10634                                                                                                 80.00
10635                                                                                                 50.00
10636                                                                                                500.00
10637                                                                                                100.00
10638                                                                                                272.00
10639                                                                                                 80.00
10640                                                                                                100.00
10641                                                                                               1000.00
10642                                                                                           unspecified
10643                                                                                                100.00
10644                                                                                                100.00
10645                                                                                               1000.00
10646                                                                                                100.00
10647                                                                                                100.00
10648                                                                                                100.00
10649                                                                                                100.00
10650                                                                                                100 mg
10651                                                                                                 37.50
10652                                                                                               32.5 mg
10653                                                                                 1 tablet/pill/capsule
10654                                                                                                  1.00
10655                                                                          based on weight (51-100 lbs)
10656                                                                                                100 mg
10657                                                                                                100.00
10658                                                                                                 50 mg
10659                                                                                                 50.00
10660                                                                                                300.00
10661                                                                                                 23.00
10662                                                                                                500.00
10663                                                                                                500.00
10664                                                                                                 23.00
10665                                                                                               1000.00
10666                                                                                                500.00
10667                                                                          based on weight (51-100 lbs)
10668                                                                                                500 mg
10669                                                                                                 23 mg
10670                                                                                                500.00
10671                                                                             based on weight (55+ lbs)
10672                                                                                                500.00
10673                                                                                                500.00
10674                                                                                                  1.00
10675                                                                                                100.00
10676                                                                                                100.00
10677                                                                                                272.00
10678                                                                                           unspecified
10679                                                                                                550.00
10680                                                                                                 50.00
10681                                                                                                 50.00
10682                                                                                           unspecified
10683                                                                          based on weight (51-100 lbs)
10684                                                                          based on weight (51-100 lbs)
10685                                                                                       based on weight
10686                                                                                           unspecified
10687                                                                                            1-2 scoops
10688                                                                                                1 tbsp
10689                                                                          based on weight (51-100 lbs)
10690                                                                                                750.00
10691                                                                                                500.00
10692                                                                                                  6.00
10693                                                                                           unspecified
10694                                                                          based on weight (51-100 lbs)
10695                                                                                                 10.00
10696                                                                                           unspecified
10697                                                                                           unspecified
10698                                                                                                468.75
10699                                                                                                 20.00
10700                                                                                                272.00
10701                                                                                           unspecified
10702                                                                                                550.00
10703                                                                                                 50.00
10704                                                                                                 50.00
10705                                                                                                500.00
10706                                                                                           unspecified
10707                                                                          based on weight (51-100 lbs)
10708                                                                                                100.00
10709                                                                                                200.00
10710                                                                                                 50.00
10711                                                                          based on weight (51-100 lbs)
10712                                                                                       based on weight
10713                                                                                           unspecified
10714                                                                                            1-2 scoops
10715                                                                                                1 tbsp
10716                                                                                                 50.00
10717                                                                          based on weight (51-100 lbs)
10718                                                                                          small amount
10719                                                                                                 75.00
10720                                                                                               1000.00
10721                                                                                                  0.30
10722                                                                                                  1.00
10723                                                                                                  1.30
10724                                                                                                 14.00
10725                                                                          based on weight (51-100 lbs)
10726                                                                                                powder
10727                                                                                           unspecified
10728                                                                                                  0.90
10729                                                                                                  0.50
10730                                                                                                  0.02
10731                                                                                                  0.90
10732                                                                                                375.00
10733                                                                                                300.00
10734                                                                                                 50.00
10735                                                                                                  3.00
10736                                                                                                375.00
10737                                                                                                 50.00
10738                                                                                                 50.00
10739                                                                                                  0.50
10740                                                                                           unspecified
10741                                                                                                500.00
10742                                                                                                  0.50
10743                                                                                           unspecified
10744                                                                                                272.00
10745                                                                                                272.00
10746                                                                                                272.00
10747                                                                                                 37.00
10748                                                                                                272.00
10749                                                                                                375.00
10750                                                                                                  3.00
10751                                                                                           unspecified
10752                                                                                                  2.00
10753                                                                                                  1.00
10754                                                                                                  4.00
10755                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10756                                                                                 1 tablet/pill/capsule
10757                                                                                                272.00
10758                                                                                                  2.68
10759                                                                                                  8.04
10760                                                                                                272.00
10761                                                                                                  8.04
10762                                                                                                272.00
10763                                                                                                250.00
10764                                                                                                100.00
10765                                                                                                272.00
10766                                                                                               272 mcg
10767                                                                                                500.00
10768                                                                                                 12.00
10769                                                                                       based on weight
10770                                                                                                272.00
10771                                                                                                136.00
10772                                                                                                 80.00
10773                                                                                                272.00
10774                                                                                                 30.00
10775                                                                                                 60.00
10776                                                                                                 10.00
10777                                                                                                300.00
10778                                                                                                 60.00
10779                                                                                                500.00
10780                                                                          based on weight (51-100 lbs)
10781                                                                        based on weight (60.1-121 lbs)
10782                                                                                                300 mg
10783                                                                                                 10 mg
10784                                                                                                500.00
10785                                                                                                500.00
10786                                                                                                600.00
10787                                                                                                 50.00
10788                                                                                                  3.00
10789                                                                                                  8.00
10790                                                                                                  0.80
10791                                                                                                 60.00
10792                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10793                                                                                                  8.10
10794                                                                          based on weight (51-100 lbs)
10795                                                                                                272.00
10796                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
10797                                                                                                400.00
10798                                                                                                400.00
10799                                                                                                  0.50
10800                                                                                                100.00
10801                                                                                                  9.10
10802                                                                                                100.00
10803                                                                                                  1.50
10804                                                                                                 80.00
10805                                                                                                  1.00
10806                                                                                                300.00
10807                                                                                                 80.00
10808                                                                                                 60.00
10809                                                                                                 75.00
10810                                                                                                200.00
10811                                                                                                300.00
10812                                                                                                 80.00
10813                                                                                                  2.50
10814                                                                                                 75.00
10815                                                                                                500.00
10816                                                                                                200.00
10817                                                                                                 60.00
10818                                                                                                 75.00
10819                                                                                                  1.00
10820                                                                                                  1.00
10821                                                                                                 75.00
10822                                                                                                500.00
10823                                                                                                500.00
10824                                                                                                  0.17
10825                                                                                           unspecified
10826                                                                                                499.00
10827                                                                                                collar
10828                                                                                                 16.00
10829                                                                                                500.00
10830                                                                          based on weight (51-100 lbs)
10831                                                                                                 75.00
10832                                                                                                 16.00
10833                                                                                                500.00
10834                                                                                                500.00
10835                                                                                                 16.00
10836                                                                                                 75.00
10837                                                                                           unspecified
10838                                                                                                 16.00
10839                                                                                                 75.00
10840                                                                                                272.00
10841                                                                                 1 tablet/pill/capsule
10842                                                                                 1 tablet/pill/capsule
10843                                                                                                1 dose
10844                                                                                                  2.00
10845                                                                                                200.00
10846                                                                             based on weight (60+ lbs)
10847                                                                                                  6.00
10848                                                                                                 16.00
10849                                                                          based on weight (51-100 lbs)
10850                                                                                                88-123
10851                                                                                                 56-95
10852                                                                                                 50.00
10853                                                                                          small amount
10854                                                                                                272.00
10855                                                                                                  2.15
10856                                                                                               1250.00
10857                                                                                                272.00
10858                                                                                                  2.68
10859                                                                                                 25.00
10860                                                                                                  1.00
10861                                                                                                  1.00
10862                                                                                                 25.00
10863                                                                                            1-2 sprays
10864                                                                                                500.00
10865                                                                          based on weight (51-100 lbs)
10866                                                                           based on weight (44-88 lbs)
10867                                                                                                 25 mg
10868                                                                                                 23.00
10869                                                                                                  2.68
10870                                                                          based on weight (51-100 lbs)
10871                                                                           based on weight (45-88 lbs)
10872                                                                                                 25.00
10873                                                                                                 50.00
10874                                                                          based on weight (51-100 lbs)
10875                                                                                                  2.68
10876                                                                                                 25.00
10877                                                                          based on weight (51-100 lbs)
10878                                                                         based on weight (24.1-60 lbs)
10879                                                                                               1000.00
10880                                                                                                950.00
10881                                                                                                250.00
10882                                                                                                 60.00
10883                                                                                                 55.00
10884                                                                                               1000.00
10885                                                                                                950.00
10886                                                                                                272.00
10887                                                                                                 50.00
10888                                                                                                272.00
10889                                                                                                  2.68
10890                                                                                                272.00
10891                                                                                                272.00
10892                                                                           based on weight (45-88 lbs)
10893                                                                                               272 mcg
10894                                                                                                 50 mg
10895                                                                                                100.00
10896                                                                                             6-8 drops
10897                                                                                                272.00
10898                                                                           based on weight (45-88 lbs)
10899                                                                                                 drops
10900                                                                                               272 mcg
10901                                                                                           application
10902                                                                                                 75.00
10903                                                                                                500.00
10904                                                                                                  8.00
10905                                                                                           application
10906                                                                                                500.00
10907                                                                                                 55.00
10908                                                                                                227.00
10909                                                                                               1000.00
10910                                                                                                  1.60
10911                                                                                                 20.00
10912                                                                                                227.00
10913                                                                                                272.00
10914                                                                                                 50.00
10915                                                                                                  0.20
10916                                                                                                  3.00
10917                                                                                                  1.00
10918                                                                                                250.00
10919                                                                                                  1.00
10920                                                                                                 25.00
10921                                                                                                  1.00
10922                                                                                                 62.50
10923                                                                                                175.00
10924                                                                                                 10.00
10925                                                                                                400 mg
10926                                                                                                  5 mg
10927                                                                                                  1.00
10928                                                                          based on weight (60-120 lbs)
10929                                                                          based on weight (50-100 lbs)
10930                                                                                                136 mg
10931                                                                                                272.00
10932                                                                                                60-120
10933                                                                                                50-100
10934                                                                                       based on weight
10935                                                                                                 96.00
10936                                                                                                  1.00
10937                                                                                                300.00
10938                                                                          based on weight (50-100 lbs)
10939                                                                                                  0.25
10940                                                                                                 50.00
10941                                                                                                272.00
10942                                                                                               1000.00
10943                                                                                                100.00
10944                                                                                               1000.00
10945                                                                                                  5.00
10946                                                                                                  1.00
10947                                                                                                272.00
10948                                                                                                  4.00
10949                                                                                                272.00
10950                                                                                                89-132
10951                                                                                                 50.00
10952                                                                                                272.00
10953                                                                          based on weight (89-132 lbs)
10954                                                                                                272.00
10955                                                                                                136.00
10956                                                                                                272.00
10957                                                                                                136.00
10958                                                                                                272.00
10959                                                                          based on weight (89-132 lbs)
10960                                                                                                500.00
10961                                                                                                 15.00
10962                                                                                                 20.00
10963                                                                                                 60.00
10964                                                                                                100.00
10965                                                                                                200.00
10966                                                                                                50-100
10967                                                                                                 44-88
10968                                                                                                  1.00
10969                                                                                                  1.00
10970                                                                          based on weight (50-100 lbs)
10971                                                                           based on weight (44-88 lbs)
10972                                                                                                500.00
10973                                                                                                  6.00
10974                                                                                                  1.00
10975                                                                                                 50.00
10976                                                                                                  0.13
10977                                                                                                  2.60
10978                                                                                                110.00
10979                                                                                                 35.00
10980                                                                                                  1.00
10981                                                                                                105.00
10982                                                                                                 50.00
10983                                                                                                600.00
10984                                                                                                  2.00
10985                                                                                                  1.00
10986                                                                                                 50.00
10987                                                                                                150.00
10988                                                                                                250.00
10989                                                                                                  1.00
10990                                                                                                  1.00
10991                                                                                                 50.00
10992                                                                                                 50.00
10993                                                                                                375.00
10994                                                                                                  1.00
10995                                                                                                  2.00
10996                                                                                                500.00
10997                                                                                                272.00
10998                                                                                                  1.00
10999                                                                                                375.00
11000                                                                                                 68.00
11001                                                                                                500.00
11002                                                                                                  1.00
11003                                                                          based on weight (60-121 lbs)
11004                                                                                                500.00
11005                                                                                                325.00
11006                                                                                                50-100
11007                                                                                                50-100
11008                                                                                           unspecified
11009                                                                          based on weight (50-100 lbs)
11010                                                                          based on weight (51-100 lbs)
11011                                                                          based on weight (51-100 lbs)
11012                                                                                                200.00
11013                                                                                                 20.00
11014                                                                                                 10.00
11015                                                                                                200.00
11016                                                                                           unspecified
11017                                                                                                 20.00
11018                                                                                                300.00
11019                                                                                                100.00
11020                                                                                                 50.00
11021                                                                                           unspecified
11022                                                                                                240.00
11023                                                                                                 20.00
11024                                                                                                  5.90
11025                                                                                                205.00
11026                                                                                                 65.00
11027                                                                                                  0.18
11028                                                                                                 28.00
11029                                                                                                 29.50
11030                                                                                                272.00
11031                                                                                                228.00
11032                                                                                                  2.68
11033                                                                                                272.00
11034                                                                                                263.00
11035                                                                          based on weight (51-100 lbs)
11036                                                                        based on weight (60.1-121 lbs)
11037                                                                          based on weight (51-100 lbs)
11038                                                                        based on weight (60.1-120 lbs)
11039                                                                                                  1.00
11040                                                                                                  1.00
11041                                                                                                  1.00
11042                                                                                                  1.00
11043                                                                                                375.00
11044                                                                                                 80.00
11045                                                                                                  4.00
11046                                                                                                 10.00
11047                                                                                                750.00
11048                                                                                                  4.00
11049                                                                                                750.00
11050                                                                                                272.00
11051                                                                                                  8.00
11052                                                                                                1 tube
11053                                                                                                204.00
11054                                                                                                 40.00
11055                                                                                                 10.00
11056                                                                                                 23.00
11057                                                                                                810.00
11058                                                                                                  7.00
11059                                                                                                 37.50
11060                                                                                                  1.00
11061                                                                                                  5.00
11062                                                                                                  1.00
11063                                                                                                100.00
11064                                                                                                  1.00
11065                                                              460 mg lufenuron, 23 mg milbemycin oxime
11066                                                                                               1000 mg
11067                                                                                                 50 mg
11068                                                                                                  2.50
11069                                                                                 1 tablet/pill/capsule
11070                                                                                 1 tablet/pill/capsule
11071                                                                                                 50 mg
11072                                                                                                 11.50
11073                                                                                               1000.00
11074                                                                                                 50.00
11075                                                                                                  5.00
11076                                                                                                200.00
11077                                                                                                 50.00
11078                                                                                                 50.00
11079                                                                                                 50.00
11080                                                                                                100.00
11081                                                                                                  8.00
11082                                                                                                 50.00
11083                                                                                                 50.00
11084                                                                                                300.00
11085                                                                                           unspecified
11086                                                                                                 35.00
11087                                                                                                 50.00
11088                                                                                           unspecified
11089                                                                                                  5.00
11090                                                                                                136.00
11091                                                                                                 21-55
11092                                                                                               1620.00
11093                                                               8 mg dexamethasone, 400 mg enrofloxacin
11094                                                                                                500.00
11095                                                                                                272.00
11096                                                                                                272.00
11097                                                                                                 16.00
11098                                                                                                200.00
11099                                                                                                272.00
11100                                                                                                250.00
11101                                                                                                272.00
11102                                                                                                200.00
11103                                                                                                500.00
11104                                                                                                250.00
11105                                                                                                  5.00
11106                                                                                                 55.00
11107                                                                                                 16.00
11108                                                                                                100.00
11109                                                                                                  1.00
11110                                                                                                 50.00
11111                                                                                                 15.00
11112                                                                                                200 mg
11113                                                                                                 60.00
11114                                                                                                 60.00
11115                                                                                                200.00
11116                                                                                                300.00
11117                                                                                                 20.00
11118                                                                                                300.00
11119                                                                                                500.00
11120                                                                                                 30.00
11121                                                                                                 12.00
11122                                                                                                 16.90
11123                                                                                                  6.80
11124                                                                                               1000.00
11125                                                                                                272.00
11126                                                                                                 60.00
11127                                                                                                200.00
11128                                                                                                300.00
11129                                                                                                 20.00
11130                                                                                                  0.01
11131                                                                                                 50.00
11132                                                                                                 30.00
11133                                                                                                272.00
11134                                                                           based on weight (45-88 lbs)
11135                                                                                                 60.00
11136                                                                                                 16.90
11137                                                                                                 12.00
11138                                                                                                 30.00
11139                                                                                                500.00
11140                                                                                                250.00
11141                                                                                                 30.00
11142                                                                                           unspecified
11143                                                                                                 60.00
11144                                                                                           unspecified
11145                                                                                           unspecified
11146                                                                                                500.00
11147                                                                                                 50.00
11148                                                                                                 60.00
11149                                                                                                 50.00
11150                                                                                                100.00
11151                                                                                                600.00
11152                                                                                           unspecified
11153                                                                                           unspecified
11154                                                                                                 50.00
11155                                                                                           unspecified
11156                                                                                           unspecified
11157                                                                                                 68.00
11158                                                                                           unspecified
11159                                                                                           unspecified
11160                                                                                                 68.00
11161                                                                                                 20.00
11162                                                                                                 34.00
11163                                                                                           unspecified
11164                                                                                                 68.00
11165                                                                                           unspecified
11166                                                                                                 24-60
11167                                                                                                 34.00
11168                                                                                                272.00
11169                                                                                                 68.00
11170                                                                                                 50.00
11171                                                                                                 20.00
11172                                                                                                100.00
11173                                                                                                 10.00
11174                                                                                                375.00
11175                                                                                                 75.00
11176                                                                                                 50.00
11177                                                                                                 60.00
11178                                                                                                100.00
11179                                                                                                100.00
11180                                                                                                  1.20
11181                                                                                                 50.00
11182                                                                                           unspecified
11183                                                                                                  7.00
11184                                                                                                272.00
11185                                                                                                272.00
11186                                                                          based on weight (50-100 lbs)
11187                                                                                                 16.00
11188                                                                                                 25.00
11189                                                                                           unspecified
11190                                                                                                 16.00
11191                                                                                                 12.00
11192                                                                                                150.00
11193                                                                                                300.00
11194                                                                                                 16.00
11195                                                                                                100.00
11196                                                                                               1620.00
11197                                                                                               1620.00
11198                                                                                               1620.00
11199                                                                                                500.00
11200                                                                                                  0.25
11201                                                                                                300.00
11202                                                                                                 50.00
11203                                                                                                 70.00
11204                                                                                                125.00
11205                                                                                                 50.00
11206                                                                                                272.00
11207                                                                                                272.00
11208                                                                        based on weight (50.1-100 lbs)
11209                                                                                                250.00
11210                                                                                           unspecified
11211                                                                                           unspecified
11212                                                                          based on weight (51-100 lbs)
11213                                                                                           unspecified
11214                                                                                                500 mg
11215                                                                                                100.00
11216                                                                                                 75.00
11217                                                                                                250.00
11218                                                                                                200.00
11219                                                                                                  4.00
11220                                                                                                500.00
11221                                                                                                500.00
11222                                                                                                 60.00
11223                                                                                              12510.00
11224                                                                                           unspecified
11225                                                                                                500.00
11226                                                                                                 50.00
11227                                                                                                 40-88
11228                                                                                           unspecified
11229                                                                          based on weight (51-100 lbs)
11230                                                                                                 44-88
11231                                                                                                 23.00
11232                                                                                               1000.00
11233                                                                                 1 tablet/pill/capsule
11234                                                                                                 16.00
11235                                                                                                 50.00
11236                                                                                                  8.00
11237                                                                                                 50.00
11238                                                                                                 50.00
11239                                                                                                 50.00
11240                                                                                                100.00
11241                                                              27 mg milbemycin oxime, 1620 mg spinosad
11242                                                                          based on weight (51-100 lbs)
11243                                                                                                 23.00
11244                                                                                               1620.00
11245                                                                                                 23.00
11246                                                                                                620.00
11247                                                                                                250.00
11248                                                                                                500.00
11249                                                                                                150.00
11250                                                                                                 50.00
11251                                                                                                  0.60
11252                                                                                                 10.00
11253                                                                                                  7.50
11254                                                                                                  1.00
11255                                                                                                483.00
11256                                                                                                  0.60
11257                                                                                                 15.00
11258                                                                                                  2.00
11259                                                                                                200.00
11260                                                                                                  1.00
11261                                                                                                  2.00
11262                                                                                                  7.50
11263                                                                                                  2.00
11264                                                                                                  1.00
11265                                                                                                200.00
11266                                                                                                  1.00
11267                                                                                                  1.00
11268                                                                                                  1.00
11269                                                                                                  0.60
11270                                                                                                 15.00
11271                                                                                                  1.00
11272                                                                                                  8.00
11273                                                                                                483.00
11274                                                                                                  0.35
11275                                                                                                 15.00
11276                                                                                         23 mg, 460 mg
11277                                                                                                  0.30
11278                                                                                                 10.00
11279                                                                                                  0.30
11280                                                                                                 10.00
11281                                                                                                 10.00
11282                                                                                                600.00
11283                                                                                                  0.30
11284                                                                                                300.00
11285                                                                                                 10.00
11286                                                                                                  0.20
11287                                                                                                600.00
11288                                                                                                300.00
11289                                                                                                300.00
11290                                                                                                300.00
11291                                                                          based on weight (51-100 lbs)
11292                                                                          based on weight (60-120 lbs)
11293                                                                          based on weight (51-100 lbs)
11294                                                                           based on weight (24-60 lbs)
11295                                                                          based on weight (51-100 lbs)
11296                                                                          based on weight (60-120 lbs)
11297                                                                                                227.00
11298                                                                                                  1.00
11299                                                                                                  2.50
11300                                                                                                 50.00
11301                                                                                 1 tablet/pill/capsule
11302                                                                                                  1.00
11303                                                                                                  1.00
11304                                                                                                227.00
11305                                                                                 1 tablet/pill/capsule
11306                                                                                                200.00
11307                                                                          based on weight (50-100 lbs)
11308                                                                                                136.00
11309                                                                                                  1.00
11310                                                                                                  1.00
11311                                                                          based on weight (50-100 lbs)
11312                                                                           based on weight (44-88 lbs)
11313                                                                                                150.00
11314                                                                                                227.00
11315                                                                                   tablet/pill/capsule
11316                                                                                   tablet/pill/capsule
11317                                                                                   tablet/pill/capsule
11318                                                                                   tablet/pill/capsule
11319                                                                                                200.00
11320                                                                                                200.00
11321                                                                                                  1.00
11322                                                                                                227.00
11323                                                                                                  3.25
11324                                                                                                  1.10
11325                                                                                                  1.00
11326                                                                          based on weight (51-100 lbs)
11327                                                                          based on weight (60-120 lbs)
11328                                                                                                  1.00
11329                                                                                                  1.00
11330                                                                                                  1.00
11331                                                                                               1620.00
11332                                                                                                150.00
11333                                                                                                 16.00
11334                                                                                                  2.00
11335                                                                                                250.00
11336                                                                                                  3.00
11337                                                                                                 25.00
11338                                                                                          small amount
11339                                                                                                200.00
11340                                                                                               10, 100
11341                                                                                                50-100
11342                                                                                                 56-95
11343                                                                                                 25.00
11344                                                                                                  1.00
11345                                                                                                  1.00
11346                                                                                       moderate amount
11347                                                                                                272.00
11348                                                                                                136.00
11349                                                                                       moderate amount
11350                                                                                          small amount
11351                                                                                 1 tablet/pill/capsule
11352                                                                                 1 tablet/pill/capsule
11353                                                                                       136, 136, 680.4
11354                                                                                               2 pumps
11355                                                                                                150.00
11356                                                                                           unspecified
11357                                                                                                375.00
11358                                                                                                300.00
11359                                                                                                 78.00
11360                                                                                           unspecified
11361                                                                                                  0.60
11362                                                                                                  1.00
11363                                                                                                50-100
11364                                                                                                  0.60
11365                                                                                                500.00
11366                                                                                                50-100
11367                                                                                                  0.60
11368                                                                          based on weight (50-100 lbs)
11369                                                                                                  0.30
11370                                                                                                  0.30
11371                                                                                                500.00
11372                                                                                                300.00
11373                                                                                                272.00
11374                                                                                                  0.30
11375                                                                                                  0.30
11376                                                                                                  0.15
11377                                                                                                 40-85
11378                                                                                                272.00
11379                                                                                                500.00
11380                                                                                                  0.15
11381                                                                                                  1.00
11382                                                                                                250.00
11383                                                                                                 50.00
11384                                                                                                 10.00
11385                                                                                       based on weight
11386                                                                                       based on weight
11387                                                                                          pack/package
11388                                                                              based on weight (40 lbs)
11389                                                                                                  3.00
11390                                                                                                  1.00
11391                                                                                                250.00
11392                                                                                                125.00
11393                                                                                                350.00
11394                                                                                          small amount
11395                                                                                                100.00
11396                                                                                                 50.00
11397                                                                                                  1.00
11398                                                                                                 10.00
11399                                                                                                  0.01
11400                                                                                                 75.00
11401                                                                                                375.00
11402                                                                                                 75.00
11403                                                                                                 28.00
11404                                                                                                 10.00
11405                                                                                                 30.00
11406                                                                                                100.00
11407                                                                                                500.00
11408                                                                                                 60.00
11409                                                                                                  4.00
11410                                                                                                  2.00
11411                                                                                                500.00
11412                                                                                                 75.00
11413                                                                                                 60.00
11414                                                                                                 50.00
11415                                                                                           unspecified
11416                                                                                                500.00
11417                                                                                                 50.00
11418                                                                                                500.00
11419                                                                                                  1.00
11420                                                                                                200.00
11421                                                                                                  0.88
11422                                                                                                  1.00
11423                                                                                                  3.03
11424                                                                                                  7.58
11425                                                                                                 26-50
11426                                                                                                 23.00
11427                                                                                                460.00
11428                                                                                                  2.40
11429                                                                                                  0.50
11430                                                                                                 50.00
11431                                                                                                  2.50
11432                                                                                                120.00
11433                                                                                                100.00
11434                                                                                                150.00
11435                                                                                                100.00
11436                                                                          based on weight (51-100 lbs)
11437                                                                          based on weight (51-100 lbs)
11438                                                                                               1000.00
11439                                                                                                  2.50
11440                                                                                                 23.00
11441                                                              460 mg lufenuron, 23 mg milbemycin oxime
11442                                                                                                  8.00
11443                                                                                                 23.00
11444                                                                                                  1.00
11445                                                                                                 23.00
11446                                                                                                  4.70
11447                                                                                                150.00
11448                                                                                                150.00
11449                                                                                                  5.00
11450                                                                                                 50.00
11451                                                                                                  1.00
11452                                                                                                 23.00
11453                                                                                                  4.70
11454                                                                                                375.00
11455                                                                                                375.00
11456                                                                                                200.00
11457                                                                                                  3.75
11458                                                                                                323.00
11459                                                                                                  4.70
11460                                                                                                 23.00
11461                                                                                                 55-95
11462                                                                                                  4.70
11463                                                                                                 23.00
11464                                                                                           unspecified
11465                                                                                                 10.70
11466                                                                                                 10.70
11467                                                                                                  1.00
11468                                                                                                  2.80
11469                                                                                                  7.10
11470                                                                                           unspecified
11471                                                                                           unspecified
11472                                                                                                240.00
11473                                                                             based on weight (50+ lbs)
11474                                                                                                 24-60
11475                                                                                                272.00
11476                                                                                                 68.00
11477                                                                          based on weight (51-100 lbs)
11478                                                                                                  1.00
11479                                                                                                  1.00
11480                                                                                                  3.75
11481                                                                                                227.00
11482                                                                                            1.14 mg/lb
11483                                                                                                  3.75
11484                                                                                                 75.00
11485                                                                                                 75.00
11486                                                                                                500.00
11487                                                                                                 15.00
11488                                                                                                120.00
11489                                                                                                  3.00
11490                                                                                                100.00
11491                                                                                                300.00
11492                                                                                                  5.00
11493                                                                                           unspecified
11494                                                                                                 75.00
11495                                                                                                 20.00
11496                                                                                                  2.00
11497                                                                                                500.00
11498                                                                                                 75.00
11499                                                                                                 20.00
11500                                                                                                  4.00
11501                                                                                                 10.00
11502                                                                                                  1.00
11503                                                                                                120.00
11504                                                                                                  1.00
11505                                                                                                  1.00
11506                                                                                                  1.00
11507                                                                                                  1.00
11508                                                                                                 75.00
11509                                                                          based on weight (50-100 lbs)
11510                                                                                                272.00
11511                                                                                                125 mg
11512                                                                                                  8.00
11513                                                                                                  8.00
11514                                                                                                272.00
11515                                                                                                  0.50
11516                                                                                                 10.00
11517                                                                                                227.00
11518                                                                                                  0.50
11519                                                                                                  1.00
11520                                                                                                262.00
11521                                                                                                  0.50
11522                                                                                                262.00
11523                                                                                                  0.50
11524                                                                                                  0.50
11525                                                                                                  7.50
11526                                                                                                 20.00
11527                                                                                                  0.50
11528                                                                                                 20.00
11529                                                                                                  0.50
11530                                                                                                 25.00
11531                                                                                                 60.00
11532                                                                                                 60.00
11533                                                                                                460.00
11534                                                                                                 23.00
11535                                                                                                 37.50
11536                                                                                               23, 460
11537                                                                          based on weight (51-100 lbs)
11538                                                                          based on weight (51-100 lbs)
11539                                                                                                100.00
11540                                                                                                300.00
11541                                                                                                 30.00
11542                                                                                                425.00
11543                                                                                                250.00
11544                                                                                                250.00
11545                                                                          based on weight (50-100 lbs)
11546                                                                                           unspecified
11547                                                                                               23, 460
11548                                                                                                 20.00
11549                                                                                                  2.00
11550                                                                                                500.00
11551                                                                                           unspecified
11552                                                                                                300.00
11553                                                                                                 20.00
11554                                                                                                150.00
11555                                                                                                 10.00
11556                                                                                                 10.00
11557                                                                                                  5.00
11558                                                                                                  1.00
11559                                                                                                272.00
11560                                                                          based on weight (51-100 lbs)
11561                                                                          based on weight (51-100 lbs)
11562                                                                          based on weight (60-121 lbs)
11563                                                                                               1000 mg
11564                                                                                 1 tablet/pill/capsule
11565                                                                                                300 mg
11566                                                                                                 75 mg
11567                                                                          based on weight (51-100 lbs)
11568                                                                          based on weight (60-121 lbs)
11569                                                                                                170.00
11570                                                                                           unspecified
11571                                                                                                  1.90
11572                                                                                                500.00
11573                                                                                                300.00
11574                                                                                                 60.00
11575                                                                                           unspecified
11576                                                                                           unspecified
11577                                                                                           unspecified
11578                                                                                           unspecified
11579                                                                                                750.00
11580                                                                                                500.00
11581                                                                                                750.00
11582                                                                                                 60.00
11583                                                                                                  1.00
11584                                                                                                  1.00
11585                                                                                                  5.00
11586                                                                                                  1.00
11587                                                                                                240.00
11588                                                                                                  8.00
11589                                                                             based on weight (50+ lbs)
11590                                                                                                 24-60
11591                                                                                                272.00
11592                                                                                                136.00
11593                                                                          based on weight (51-100 lbs)
11594                                                                                                  1.00
11595                                                                                                  1.00
11596                                                                          based on weight (51-100 lbs)
11597                                                                                                272.00
11598                                                                                                  9.80
11599                                                                           based on weight (43-88 lbs)
11600                                                                          based on weight (51-100 lbs)
11601                                                                                                136.00
11602                                                                                                272.00
11603                                                                                                 50.00
11604                                                                                                272.00
11605                                                                                                 16.00
11606                                                                                                 16.00
11607                                                                                                300.00
11608                                                                                                  2.00
11609                                                                                                  1.00
11610                                                                                                  2.90
11611                                                                                                 75.00
11612                                                                                                  2.80
11613                                                                                                 30.00
11614                                                                                                200.00
11615                                                                                                200.00
11616                                                                                                 16.00
11617                                                                                                 75.00
11618                                                                                                300.00
11619                                                                                                 75.00
11620                                                                                           unspecified
11621                                                                                           unspecified
11622                                                                                                300.00
11623                                                                                                 16.00
11624                                                                                                 75.00
11625                                                                                                300.00
11626                                                                                                 40.00
11627                                                                                 1 tablet/pill/capsule
11628                                                                                                1 tube
11629                                                                                                  4.00
11630                                                                                 1 tablet/pill/capsule
11631                                                                                                  1.00
11632                                                                                                  1.00
11633                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11634                                                                                                136 mg
11635                                                                                                 5-100
11636                                                                                                100 mg
11637                                                                                           unspecified
11638                                                                                                 80.00
11639                                                                                                272.00
11640                                                                                                204.00
11641                                                           23 mg milbemycin oxime, 228 mg praziquantel
11642                                                                                                 50.00
11643                                                                                               3000.00
11644                                                                                                500.00
11645                                                                                                250.00
11646                                                                                                  1.00
11647                                                                                                 50.00
11648                                                                                                100.00
11649                                                                                                  1.00
11650                                                                                                  1.00
11651                                                                          based on weight (51-100 lbs)
11652                                                                          based on weight (51-100 lbs)
11653                                                                          based on weight (60-120 lbs)
11654                                                                          based on weight (51-100 lbs)
11655                                                                          based on weight (60-120 lbs)
11656                                                                          based on weight (51-100 lbs)
11657                                                                                                 25.00
11658                                                                                                  0.50
11659                                                                                                1.5 mg
11660                                                                          based on weight (50-100 lbs)
11661                                                                          based on weight (51-100 lbs)
11662                                                                           based on weight (44-88 lbs)
11663                                                                                                50-100
11664                                                                          based on weight (88-123 lbs)
11665                                                                                                 16 mg
11666                                                                                           application
11667                                                                                           application
11668                                                                                                  6.25
11669                                                                                                0.5 mg
11670                                                                                               1125.00
11671                                                                                           application
11672                                                                                                200.00
11673                                                                                                 spray
11674                                                                                                500.00
11675                                                                                                500.00
11676                                                                                                  1.80
11677                                                                                                  0.80
11678                                                                          based on weight (51-100 lbs)
11679                                                                                                  0.80
11680                                                                                       based on weight
11681                                                                          based on weight (51-100 lbs)
11682                                                                                                  1.80
11683                                                                          based on weight (51-100 lbs)
11684                                                                                                 44-88
11685                                                                                                170.00
11686                                                                                                  0.80
11687                                                                                                 80.00
11688                                                                                                  0.60
11689                                                                                                  1.80
11690                                                                                                500.00
11691                                                                                           unspecified
11692                                                                                           unspecified
11693                                                                                           as directed
11694                                                                                                810.00
11695                                                                                          small amount
11696                                                                                                 23.00
11697                                                                                                 23.00
11698                                                                                                 45-88
11699                                                                                                  1.00
11700                                                                                                  1.00
11701                                                                                           unspecified
11702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11703                                                                                                272.00
11704                                                                                               1000.00
11705                                                                                                 16.00
11706                                                                                                 20.00
11707                                                                                                 75.00
11708                                                                                                272.00
11709                                                                                           unspecified
11710                                                                                           unspecified
11711                                                                                                  2.68
11712                                                                                                500.00
11713                                                                                                  1.00
11714                                                                                                  1.00
11715                                                                                                  1.00
11716                                                                                                150.00
11717                                                                                                  5.00
11718                                                                                                 23.00
11719                                                                                           as directed
11720                                                                                                 75.00
11721                                                                                                400.00
11722                                                                                           unspecified
11723                                                                                           unspecified
11724                                                                                                  3.00
11725                                                                                               100-150
11726                                                                                                150.00
11727                                                                                                  1.00
11728                                                                                                  1.00
11729                                                                                                  1.00
11730                                                                                                300.00
11731                                                                                                 16.00
11732                                                                                                150.00
11733                                                                                                 10.00
11734                                                                                               1000.00
11735                                                                          based on weight (51-100 lbs)
11736                                                                                                  1.00
11737                                                                                                500.00
11738                                                                                                  2.00
11739                                                                                                600.00
11740                                                                                                100.00
11741                                                                                 1 tablet/pill/capsule
11742                                                                                         1 bottle/vial
11743                                                                                                500.00
11744                                                                                                  1.00
11745                                                                                                 20.00
11746                                                                                                425.00
11747                                                                                                125.00
11748                                                                                                375.00
11749                                                                                                 68.00
11750                                                                                               1000.00
11751                                                                                                115.00
11752                                                                                                500.00
11753                                                                                                 25.00
11754                                                                                                  5.00
11755                                                                                                 50.00
11756                                                                                                  0.54
11757                                                                                                115.00
11758                                                                                                 50.00
11759                                                                                                500.00
11760                                                                                                  2.30
11761                                                                                                250.00
11762                                                                                                375.00
11763                                                                                                 25.00
11764                                                                                                500.00
11765                                                                                                240.00
11766                                                                                                 60.00
11767                                                                                                250.00
11768                                                                                                  2.00
11769                                                                                                  2.60
11770                                                                                                540.00
11771                                                                                                  1.00
11772                                                                                                115.00
11773                                                                                                 50.00
11774                                                                                                500.00
11775                                                                                                 25.00
11776                                                                                                  1.00
11777                                                                                                500.00
11778                                                                                                500.00
11779                                                                                                  7.50
11780                                                                                                300.00
11781                                                                                                227.00
11782                                                                                                200.00
11783                                                                                                 10.00
11784                                                                                                300.00
11785                                                                                                 50.00
11786                                                                                                  8.00
11787                                                                                                250.00
11788                                                                                                100.00
11789                                                                                                 50.00
11790                                                                                                 15 gm
11791                                                                                                100.00
11792                                                                                                227.00
11793                                                                                                 68.00
11794                                                                                                  5.00
11795                                                                                                272.00
11796                                                                                                136.00
11797                                                                                                272.00
11798                                                                                                136.00
11799                                                                                                200.00
11800                                                                                                227.00
11801                                                                                                136.00
11802                                                                                               23, 460
11803                                                                                                 34.00
11804                                                                                                  5.00
11805                                                                                                 50.00
11806                                                                                           unspecified
11807                                                                                                 50.00
11808                                                                                                  1.00
11809                                                                                                500.00
11810                                                                                                 75.00
11811                                                                                                  0.25
11812                                                                                 1 tablet/pill/capsule
11813                                                                                               23, 460
11814                                                                             based on weight (55+ lbs)
11815                                                                                                50-100
11816                                                                                                50-100
11817                                                              460 mg lufenuron, 23 mg milbemycin oxime
11818                                                                                                500.00
11819                                                                                                 12.00
11820                                                                                                120.00
11821                                                                                                  3.00
11822                                                                          based on weight (51-100 lbs)
11823                                                                                                25 lbs
11824                                                                          based on weight (89-132 lbs)
11825                                                                        based on weight (60.1-121 lbs)
11826                                                                                               100-150
11827                                                                                                  3.75
11828                                                                                                500.00
11829                                                                                                120.00
11830                                                                                                900.00
11831                                                                                                136.00
11832                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11833                                                                                                57, 68
11834                                                                                                 30.00
11835                                                                          based on weight (51-100 lbs)
11836                                                                            based on weight (0-25 lbs)
11837                                                                        based on weight (60.1-121 lbs)
11838                                                                                                 30.00
11839                                                                                                250.00
11840                                                                                               20, 200
11841                                                                                                120.00
11842                                                                                              10325.00
11843                                                                                                250.00
11844                                                                                               20, 200
11845                                                                                                120.00
11846                                                                                               10, 325
11847                                                                          based on weight (51-100 lbs)
11848                                                                             based on weight (<25 lbs)
11849                                                                                                136.00
11850                                                                                            1200, 1500
11851                                                                                                  8.00
11852                                                                                                250.00
11853                                                                                                 32.00
11854                                                                                                 32.00
11855                                                                                                300.00
11856                                                                                               8 drops
11857                                                                                                 32.00
11858                                                                                                 32.00
11859                                                                                                300.00
11860                                                                                                250.00
11861                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
11862                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
11863                                                                                                136.00
11864                                                                                               1500.00
11865                                                                                               1200.00
11866                                                                                                100.00
11867                                                                                                 10.00
11868                                                                                                 24.00
11869                                                                                               1500.00
11870                                                                                                 24.00
11871                                                                                                100.00
11872                                                                                                 10.00
11873                                                                          based on weight (50-100 lbs)
11874                                                                             based on weight (<25 lbs)
11875                                                                          based on weight (60-121 lbs)
11876                                                                                 1 tablet/pill/capsule
11877                                                                                                150 mg
11878                                                                                                 24 mg
11879                                                                                              10 drops
11880                                                                                                100 mg
11881                                                                             based on weight (125 lbs)
11882                                                                          based on weight (60-121 lbs)
11883                                                                                                100 mg
11884                                                                                                100.00
11885                                                                                                  1.00
11886                                                                                                  1.00
11887                                                                                                  1.00
11888                                                                                                100.00
11889                                                                          based on weight (51-100 lbs)
11890                                                                                                500.00
11891                                                                                                272.00
11892                                                                                                  1.00
11893                                                                                                  1.00
11894                                                                                                  1.00
11895                                                                                                272.00
11896                                                                                                 10.00
11897                                                                                                  0.80
11898                                                                          based on weight (51-100 lbs)
11899                                                                                                750.00
11900                                                                                                 60.00
11901                                                                                                272.00
11902                                                                                                750.00
11903                                                                                                 60.00
11904                                                                                                272.00
11905                                                                                                  4.00
11906                                                                                                150.00
11907                                                                                                  5.00
11908                                                                                                 75.00
11909                                                                                                 10.00
11910                                                                                                450.00
11911                                                                                          small amount
11912                                                                                                272.00
11913                                                                                               1000.00
11914                                                                                                 16.00
11915                                                                                                500.00
11916                                                                                                 75.00
11917                                                                                                500.00
11918                                                                                                250.00
11919                                                                                           unspecified
11920                                                                                                 75.00
11921                                                                                                200.00
11922                                                                                                 75.00
11923                                                                                                300.00
11924                                                                                                500.00
11925                                                                                                 75.00
11926                                                                                               272 mcg
11927                                                                                                272.00
11928                                                                                                272.00
11929                                                                                                  1.00
11930                                                                                         5 billion cfu
11931                                                                                                250.00
11932                                                                                                500.00
11933                                                                                                  3.00
11934                                                                                                204.00
11935                                                                                                240.00
11936                                                                                               1000.00
11937                                                                                                120.00
11938                                                                                               1000.00
11939                                                                                                250.00
11940                                                                                                500.00
11941                                                                                                100.00
11942                                                                                               1000.00
11943                                                                                                 75.00
11944                                                                                               1000.00
11945                                                                                               1800.00
11946                                                                                                 75.00
11947                                                                                                252.00
11948                                                                                                560.00
11949                                                                                                270.00
11950                                                                                                  2.50
11951                                                                                                250.00
11952                                                                                                300.00
11953                                                                                                  2.60
11954                                                                                                562.50
11955                                                                                                204.00
11956                                                                                                 75.00
11957                                                                                                250.00
11958                                                                                                 13.50
11959                                                              460 mg lufenuron, 23 mg milbemycin oxime
11960                                                                                           as directed
11961                                                                                                 23.00
11962                                                              460 mg lufenuron, 23 mg milbemycin oxime
11963                                                                                                 50.00
11964                                                                          based on weight (51-100 lbs)
11965                                                                                                100.00
11966                                                                                                  1.00
11967                                                                                                  1.00
11968                                                                                                  1.00
11969                                                                                                  1.00
11970                                                                                                  1.00
11971                                                                                                  2.68
11972                                                                                                 20.00
11973                                                                                                750.00
11974                                                                                                 15.00
11975                                                                                                204.00
11976                                                                                                  7.50
11977                                                                                                 20.00
11978                                                                                           application
11979                                                                          based on weight (89-132 lbs)
11980                                                                          based on weight (89-132 lbs)
11981                                                                                                750.00
11982                                                                                                 75.00
11983                                                                          based on weight (89-132 lbs)
11984                                                                                                300.00
11985                                                                                                 24.00
11986                                                                                                  8.00
11987                                                                                                  5.00
11988                                                                                                  1.00
11989                                                                                                 16.00
11990                                                                                                  1.00
11991                                                                                                  1.00
11992                                                                                                  2.00
11993                                                                                           unspecified
11994                                                                                                  1.00
11995                                                                                                  1.00
11996                                                                                                 24.00
11997                                                                                                  1.00
11998                                                                                                  0.50
11999                                                                                                  0.30
12000                                                                                                 24.00
12001                                                                                                 50.00
12002                                                                                                500.00
12003                                                                                                 30.00
12004                                                                                                 25.00
12005                                                                                                  1.00
12006                                                                                                 50.00
12007                                                                                                 50.00
12008                                                                                                  1.00
12009                                                                                           unspecified
12010                                                                                           unspecified
12011                                                                                                  1.00
12012                                                                                                 75.00
12013                                                                                                500.00
12014                                                                          based on weight (51-100 lbs)
12015                                                                                                 55.00
12016                                                                                               1000.00
12017                                                                                                 20.00
12018                                                                                           unspecified
12019                                                                                           unspecified
12020                                                                          based on weight (51-100 lbs)
12021                                                                                                272.00
12022                                                                                               1000.00
12023                                                                                               5 mg/kg
12024                                                                                                272.00
12025                                                                                                 44-88
12026                                                                                                 15.00
12027                                                                                                272.00
12028                                                                                                227.00
12029                                                                                                500.00
12030                                                                                                113.50
12031                                                                                                272.00
12032                                                                                                272.00
12033                                                                                               1000.00
12034                                                                                                500.00
12035                                                                                                 75.00
12036                                                                                                272.00
12037                                                                                               1400.00
12038                                                                                                272.00
12039                                                                                                 16.00
12040                                                                                                 16.00
12041                                                                                                 80.00
12042                                                                                                 37.50
12043                                                                                           unspecified
12044                                                                                                 20.00
12045                                                                                                500.00
12046                                                                                                 25.00
12047                                                                                           unspecified
12048                                                                 based on weight (45-88 lbs) - 2.68 ml
12049                                                                                                272.00
12050                                                                                                500.00
12051                                                                                        1 pack/package
12052                                                                                                 68.00
12053                                                                                                500.00
12054                                                                                           unspecified
12055                                                                                                  0.60
12056                                                                                                600.00
12057                                                                                                  6.00
12058                                                                                                272.00
12059                                                                                                136.00
12060                                                                                                  0.60
12061                                                                                                272.00
12062                                                                                                 68.00
12063                                                                                                  0.60
12064                                                                                                 68.00
12065                                                                                                272.00
12066                                                                                                  0.60
12067                                                                                                100.00
12068                                                                                                  6.00
12069                                                                                                 68.00
12070                                                                                                272.00
12071                                                                                                  0.60
12072                                                                                                100.00
12073                                                                                                120.00
12074                                                                                                  0.60
12075                                                                                                100.00
12076                                                                                                  0.60
12077                                                                                                500.00
12078                                                                                                  1.20
12079                                                                                                100.00
12080                                                                                                200.00
12081                                                                                                  0.50
12082                                                                                                  1.20
12083                                                                                                  1.00
12084                                                                                                 59.00
12085                                                                                                250.00
12086                                                                                                  0.38
12087                                                                                                  1.20
12088                                                                                                 50.00
12089                                                                                                500.00
12090                                                                          based on weight (51-100 lbs)
12091                                                                                                500.00
12092                                                                                                  5.00
12093                                                                                                  1.00
12094                                                                                                  1.00
12095                                                                                                100.00
12096                                                                                               1000.00
12097                                                                                                100.00
12098                                                                                                  1.00
12099                                                                                                  1.00
12100                                                                                                  1.00
12101                                                                                                  1.00
12102                                                                                                  1.50
12103                                                                                                  1.00
12104                                                                                                  1.00
12105                                                                                                  1.00
12106                                                                                                250.00
12107                                                                                                 51.00
12108                                                                                       moderate amount
12109                                                                                                 23.00
12110                                                                                                136.00
12111                                                                                           unspecified
12112                                                                                                  1.00
12113                                                                                                  1.00
12114                                                                                                100.00
12115                                                                                                300.00
12116                                                                                                  1.00
12117                                                                                                  8.00
12118                                                                                                 50.00
12119                                                                                                150.00
12120                                                                                           unspecified
12121                                                                                                150.00
12122                                                                                                150.00
12123                                                                                                150.00
12124                                                                                                  4.00
12125                                                                                                  1.60
12126                                                                                                 50.00
12127                                                                                                272.00
12128                                                                           based on weight (44-88 lbs)
12129                                                                          based on weight (51-100 lbs)
12130                                                                                           application
12131                                                                                                 23.00
12132                                                                                                  1.00
12133                                                                                                200.00
12134                                                                                               1000.00
12135                                                                           based on weight (44-88 lbs)
12136                                                                          based on weight (51-100 lbs)
12137                                                                                                272.00
12138                                                                                                227.00
12139                                                                                                272.00
12140                                                                                                136.00
12141                                                                                                227.00
12142                                                                                                  2.00
12143                                                                                                  1.00
12144                                                                                                  1.00
12145                                                                                                136.00
12146                                                                                                272.00
12147                                                                                                227.00
12148                                                                                                272.00
12149                                                                                                136.00
12150                                                                                                227.00
12151                                                                                                272.00
12152                                                                                                136.00
12153                                                                                                227.00
12154                                                                                           unspecified
12155                                                                                           unspecified
12156                                                                                                272.00
12157                                                                                                136.00
12158                                                                                                272.00
12159                                                                                           unspecified
12160                                                                                           unspecified
12161                                                                                                272.00
12162                                                                                                136.00
12163                                                                                                227.00
12164                                                                                           unspecified
12165                                                                                                500.00
12166                                                                                                136.00
12167                                                                                                  1.00
12168                                                                                                  1.50
12169                                                                                                227.00
12170                                                                                               1000.00
12171                                                                                                469.00
12172                                                                                                300.00
12173                                                                                           unspecified
12174                                                                                                  1.50
12175                                                                                                227.00
12176                                                                                                 60.00
12177                                                                                                500.00
12178                                                                                                 60.00
12179                                                                                                600.00
12180                                                                                                  2.00
12181                                                                                                200.00
12182                                                                                                  8.00
12183                                                                                                200.00
12184                                                                                                  0.25
12185                                                                                                  8.00
12186                                                                                                272.00
12187                                                                                                272.00
12188                                                                                                272.00
12189                                                                                                200.00
12190                                                                                                1 pump
12191                                                                                                 15.00
12192                                                                                                272.00
12193                                                                                                  2.68
12194                                                                                                272 ug
12195                                                                                                  2.68
12196                                                                                                272.00
12197                                                                                                 20.00
12198                                                                                                  2.50
12199                                                                                                  1.00
12200                                                                                                  3.00
12201                                                                                                 25.00
12202                                                                                                750.00
12203                                                                                                500.00
12204                                                                                                500.00
12205                                                                                                200.00
12206                                                                                                  5.00
12207                                                                                                 20.00
12208                                                                                                500.00
12209                                                                                                  7.00
12210                                                                                                  6.00
12211                                                                                                272.00
12212                                                                                                200.00
12213                                                                                               272 mcg
12214                                                                                                272.00
12215                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12216                                                                                                200.00
12217                                                                                                 16.00
12218                                                                                                 60.00
12219                                                                                                 20.00
12220                                                                                                272.00
12221                                                                                              0.75 tsp
12222                                                                                               0.5 tsp
12223                                                                                                 drops
12224                                                                                                 23.00
12225                                                                                                 23.00
12226                                                                                                  1.00
12227                                                                                                  1.00
12228                                                                                                500.00
12229                                                                                                  1.00
12230                                                                                                 23.00
12231                                                                                                228.00
12232                                                                                                  2.00
12233                                                                                                500.00
12234                                                                                                 60.00
12235                                                                                                 15.00
12236                                                                                                 30.00
12237                                                                                                150.00
12238                                                                                                 75.00
12239                                                                                                150.00
12240                                                                                                 75.00
12241                                                                                                 60.00
12242                                                                                                 60.00
12243                                                                                                500.00
12244                                                                                                560.00
12245                                                                                                  1.00
12246                                                                                                  1.00
12247                                                                                                  1.00
12248                                                                                                  1.00
12249                                                                                                227.00
12250                                                                                               1400.00
12251                                                                                                272.00
12252                                                                                               1400.00
12253                                                                                                272.00
12254                                                                                               1400.00
12255                                                                                                  1.00
12256                                                                                                250.00
12257                                                                                                  3.00
12258                                                                                                500.00
12259                                                                                                 80.00
12260                                                                                                  4.00
12261                                                                        based on weight (60.1-120 lbs)
12262                                                                                                 25.00
12263                                                                                                200.00
12264                                                                                               1000.00
12265                                                                                                50-100
12266                                                                                                 45-88
12267                                                                                                50-100
12268                                                                                                 45-88
12269                                                                                                 40.00
12270                                                                                                100.00
12271                                                                           based on weight (45-88 lbs)
12272                                                                                                50-100
12273                                                                                          small amount
12274                                                                                                200.00
12275                                                                                                 44-88
12276                                                                                                50-100
12277                                                                                                 20.00
12278                                                                                                  1.00
12279                                                                                          small amount
12280                                                                                                200.00
12281                                                                                                  5.00
12282                                                                                                  1.00
12283                                                                                               23, 228
12284                                                                                               1000.00
12285                                                                                                 23.00
12286                                                                                               1000.00
12287                                                                                                750.00
12288                                                                                                170.00
12289                                                                                                  1.00
12290                                                                                                100.00
12291                                                                                                300.00
12292                                                                                               1000.00
12293                                                                                                150.00
12294                                                                                                 23.00
12295                                                                                                900.00
12296                                                                                                900.00
12297                                                                                                  3.00
12298                                                                                                 37.50
12299                                                                                           unspecified
12300                                                                                                 16.00
12301                                                                                                300.00
12302                                                                                                 75.00
12303                                                                                                 60.00
12304                                                                                                 15.00
12305                                                                                               1000.00
12306                                                                                           unspecified
12307                                                                                                300.00
12308                                                                                                 20.00
12309                                                                                           unspecified
12310                                                                                                 75.00
12311                                                                                                  8.00
12312                                                                                                 27.00
12313                                                                                               23, 460
12314                                                                                              27, 1620
12315                                                                                               1200.00
12316                                                                                               1500.00
12317                                                                                                  1.00
12318                                                                                                200.00
12319                                                                                                  1.00
12320                                                                                                250.00
12321                                                                                                  3.00
12322                                                                                            1200, 1500
12323                                                                                               1200.00
12324                                                                          based on weight (60-120 lbs)
12325                                                                                                500.00
12326                                                                                                  2.00
12327                                                                                                  1.50
12328                                                                                                  3.80
12329                                                                                                  2.00
12330                                                                                                  2.00
12331                                                                                               1600.00
12332                                                                                                480.00
12333                                                                                                 40.00
12334                                                                                             injection
12335                                                                                                225.00
12336                                                                                             injection
12337                                                                                           unspecified
12338                                                                                              10000.00
12339                                                                                                 50.00
12340                                                                                                500.00
12341                                                                                                500.00
12342                                                                          based on weight (60-120 lbs)
12343                                                                                           unspecified
12344                                                                                               1620.00
12345                                                                                               1200 mg
12346                                                                                             155, 1200
12347                                                                                                 52.00
12348                                                                                               1620.00
12349                                                                                       2 bottles/vials
12350                                                                                               1200.00
12351                                                                                             150, 1200
12352                                                                                                500.00
12353                                                                                           unspecified
12354                                                                                                 20.00
12355                                                                                                  2.00
12356                                                                                                 10.00
12357                                                                                                  1.00
12358                                                                                                  1.00
12359                                                                                               1200.00
12360                                                                                               1500.00
12361                                                                                                  1.00
12362                                                                                                  3.00
12363                                                                                                  2.00
12364                                                                                            1200, 1500
12365                                                                                               1200.00
12366                                                                          based on weight (60-120 lbs)
12367                                                                                                 75.00
12368                                                                                                720.00
12369                                                                                               1600.00
12370                                                                                                500.00
12371                                                                                               1500.00
12372                                                                                               1000.00
12373                                                                                                60-120
12374                                                                                               1620.00
12375                                                                                               1200 mg
12376                                                                                             155, 1200
12377                                                                                               1620.00
12378                                                                                               1200.00
12379                                                                                             200, 1500
12380                                                                                                300.00
12381                                                                                                100.00
12382                                                                                                 16.00
12383                                                                                                100.00
12384                                                                                                272.00
12385                                                                                                272.00
12386                                                                                                1.4 ml
12387                                                                                                272.00
12388                                                                                                272.00
12389                                                                                                500.00
12390                                                                                                 37.50
12391                                                                                                625.00
12392                                                                                                100.00
12393                                                                                                 75.00
12394                                                                                           unspecified
12395                                                                                                272.00
12396                                                                                                227.00
12397                                                                                                 50 mg
12398                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12399                                                                                                  0.10
12400                                                                                                 14.00
12401                                                                                                 45-88
12402                                                                          based on weight (51-100 lbs)
12403                                                                                                 14.00
12404                                                                                                500.00
12405                                                                                              0.25 tsp
12406                                                                                 1 tablet/pill/capsule
12407                                                                                                  1.00
12408                                                                                                 16.00
12409                                                                                        1 pack/package
12410                                                                          based on weight (51-100 lbs)
12411                                                                           based on weight (41-88 lbs)
12412                                                                                                500 mg
12413                                                                                                 16.00
12414                                                                          based on weight (51-100 lbs)
12415                                                                        based on weight (60.1-121 lbs)
12416                                                                                                  1.00
12417                                                                          based on weight (51-100 lbs)
12418                                                                          based on weight (60-121 lbs)
12419                                                                                                 50.00
12420                                                                                           application
12421                                                                          based on weight (51-100 lbs)
12422                                                                         based on weight (44.1-88 lbs)
12423                                                                                           application
12424                                                                                                875.00
12425                                                                                                 16.00
12426                                                                                                 50.00
12427                                                                                           unspecified
12428                                                                                                250.00
12429                                                                                                1 tube
12430                                                                                 1 tablet/pill/capsule
12431                                                                                 1 tablet/pill/capsule
12432                                                                                 1 tablet/pill/capsule
12433                                                                                 1 tablet/pill/capsule
12434                                                                                 1 tablet/pill/capsule
12435                                                                                                272.00
12436                                                                                                 80.00
12437                                                                                                200.00
12438                                                                                 1 tablet/pill/capsule
12439                                                                                 1 tablet/pill/capsule
12440                                                                                                 60.00
12441                                                                                                  1.60
12442                                                                                                  1.00
12443                                                                                                500.00
12444                                                                                                300.00
12445                                                                                                100.00
12446                                                                                                  8.00
12447                                                                                                272.00
12448                                                                                                  1.40
12449                                                                                                114.00
12450                                                                                                 60.00
12451                                                                                                  1.00
12452                                                                                                 50.00
12453                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12454                                                                          based on weight (51-100 lbs)
12455                                                                                       based on weight
12456                                                                          based on weight (51-100 lbs)
12457                                                                          based on weight (60-120 lbs)
12458                                                                                               3000.00
12459                                                                                                  1.00
12460                                                                                                150.00
12461                                                                                           unspecified
12462                                                                                           unspecified
12463                                                                                           unspecified
12464                                                                                                 75.00
12465                                                                                                  1.00
12466                                                                                 1 tablet/pill/capsule
12467                                                                                                500.00
12468                                                                                                240.00
12469                                                                                                240 mg
12470                                                                                                 50 mg
12471                                                                                                2.7 mg
12472                                                                                                  8 mg
12473                                                                         based on weight (40.1-85 lbs)
12474                                                                         based on weight (40.1-85 lbs)
12475                                                                                         5.4 mg, 16 mg
12476                                                                                                200 mg
12477                                                                                           unspecified
12478                                                                                                 16.00
12479                                                                                                 10.00
12480                                                                                                  3.00
12481                                                                                           unspecified
12482                                                                                                 16.00
12483                                                                                                 16.00
12484                                                                                                 10.00
12485                                                                                           unspecified
12486                                                                                                 16.00
12487                                                                                           unspecified
12488                                                                                                 16.00
12489                                                                                                500.00
12490                                                                                                272.00
12491                                                                                                250.00
12492                                                                                                250.00
12493                                                                                                  5.00
12494                                                                                                 68.00
12495                                                                          based on weight (51-100 lbs)
12496                                                                                                 24-60
12497                                                                                        10 billion cfu
12498                                                                          based on weight (51-100 lbs)
12499                                                                                                272.00
12500                                                                          based on weight (50-100 lbs)
12501                                                                                                200.00
12502                                                                                                 16.00
12503                                                                                                100.00
12504                                                                                                 75.00
12505                                                                                                200.00
12506                                                                                           unspecified
12507                                                                                                 60.00
12508                                                                                                  5.00
12509                                                                                                 75.00
12510                                                                                                 25.00
12511                                                                                 1 tablet/pill/capsule
12512                                                                                 1 tablet/pill/capsule
12513                                                                                                500 mg
12514                                                                                             6-8 drops
12515                                                                                                 50-80
12516                                                                          based on weight (51-100 lbs)
12517                                                                                                100 mg
12518                                                                                                100.00
12519                                                                                                 25.00
12520                                                                          based on weight (51-100 lbs)
12521                                                                          based on weight (60-120 lbs)
12522                                                                                                900.00
12523                                                                          based on weight (51-100 lbs)
12524                                                                                                  1.00
12525                                                                                                  1.00
12526                                                                                                 10.00
12527                                                                                                  1.00
12528                                                                                 1 tablet/pill/capsule
12529                                                                                         1 bottle/vial
12530                                                                          based on weight (51-100 lbs)
12531                                                                                                100.00
12532                                                                                                 50.00
12533                                                                                                100.00
12534                                                                                                400.00
12535                                                                                           unspecified
12536                                                                                          small amount
12537                                                                                                200.00
12538                                                                                                100.00
12539                                                                                                 25.00
12540                                                                          based on weight (51-100 lbs)
12541                                                                           based on weight (21-55 lbs)
12542                                                                                 1 tablet/pill/capsule
12543                                                                                         1 bottle/vial
12544                                                                                                  1.00
12545                                                                                                  1.00
12546                                                                                           as directed
12547                                                                                 1 tablet/pill/capsule
12548                                                                                 1 tablet/pill/capsule
12549                                                                                           application
12550                                                                          based on weight (50-100 lbs)
12551                                                                                       based on weight
12552                                                                                       based on weight
12553                                                                                       based on weight
12554                                                                                       based on weight
12555                                                                                                272.00
12556                                                                                                  8.80
12557                                                                                                 10.00
12558                                                                                                200.00
12559                                                                                                  0.40
12560                                                                                                200.00
12561                                                                                                 20.00
12562                                                                                                  1.00
12563                                                                                                 50.00
12564                                                                                                250.00
12565                                                                                                  0.40
12566                                                                                                100.00
12567                                                                                               8 drops
12568                                                                                                 25.00
12569                                                                                              27, 1610
12570                                                                                                  0.16
12571                                                                                            7-10 drops
12572                                                                                                 20.00
12573                                                                                               1620.00
12574                                                                                                 27.00
12575                                                                                                272.00
12576                                                                                                136.00
12577                                                                                                  2.00
12578                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12579                                                                                                136.00
12580                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12581                                                                                                200.00
12582                                                                                                 16.00
12583                                                                                                150.00
12584                                                                                                136.00
12585                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12586                                                                                                136.00
12587                                                                                                500.00
12588                                                                                             1, 32, 40
12589                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
12590                                                                                                136.00
12591                                                                                                200.00
12592                                                                                                100.00
12593                                                                                                750.00
12594                                                                                                 90.00
12595                                                                                           unspecified
12596                                                                                           unspecified
12597                                                                                                 20.00
12598                                                                                                150.00
12599                                                                                                  8.00
12600                                                                                                  5.00
12601                                                                                                 75.00
12602                                                                                                136.00
12603                                                                                                114.00
12604                                                                                                114.00
12605                                                                                             11.5, 114
12606                                                                                                  1.00
12607                                                                                                500 mg
12608                                                                                         23 mg, 228 mg
12609                                                                                                136 mg
12610                                                                                                200.00
12611                                                                                                 60.00
12612                                                                                               272 mcg
12613                                                                                               272 mcg
12614                                                                                                  1.00
12615                                                                                           unspecified
12616                                                                          based on weight (51-100 lbs)
12617                                                                                                227.00
12618                                                                                                272.00
12619                                                                                                  0.70
12620                                                                                           unspecified
12621                                                                                                 70.00
12622                                                                                                  6.00
12623                                                                          based on weight (51-100 lbs)
12624                                                                                                  0.70
12625                                                                                                  1.00
12626                                                                                                  0.70
12627                                                                                                  0.70
12628                                                                                                 15.00
12629                                                                                                 15.00
12630                                                                                           unspecified
12631                                                                                                  0.70
12632                                                                                           unspecified
12633                                                                                                  0.70
12634                                                                                                  0.70
12635                                                                                                  0.35
12636                                                                          based on weight (50-100 lbs)
12637                                                                                                100.00
12638                                                                          based on weight (51-100 lbs)
12639                                                                          based on weight (50-100 lbs)
12640                                                                                                200.00
12641                                                                                                272.00
12642                                                                          based on weight (50-100 lbs)
12643                                                                                                625.00
12644                                                                                                  7.80
12645                                                                                              125, 500
12646                                                                                                  6.00
12647                                                                                                136.00
12648                                                                                                625.00
12649                                                                                                  9.00
12650                                                                                                625.00
12651                                                                                                136.00
12652                                                                                                625.00
12653                                                                                                175.00
12654                                                                                                  2.00
12655                                                                                                  6.00
12656                                                                                                222.00
12657                                                                                                272.00
12658                                                                                                272.00
12659                                                                                                272.00
12660                                                                                                272.00
12661                                                                                                 50.00
12662                                                                                                 33.00
12663                                                                                                375.00
12664                                                                                                 20.00
12665                                                                                                  7.50
12666                                                                                                  2.00
12667                                                                                                200.00
12668                                                                                                  2.00
12669                                                                                                 23.00
12670                                                                                                200.00
12671                                                                                                  2.00
12672                                                                                                500.00
12673                                                                                                500.00
12674                                                                                                 16.00
12675                                                                                                  1.50
12676                                                                                                  0.50
12677                                                                                                 20.00
12678                                                                                                125.00
12679                                                                                               1000.00
12680                                                                                                150.00
12681                                                                                                375.00
12682                                                                                                625.00
12683                                                                                                  1.00
12684                                                                                                150.00
12685                                                                                                 20.00
12686                                                                          based on weight (51-100 lbs)
12687                                                                                                500.00
12688                                                                                                 20.00
12689                                                                                               1000.00
12690                                                                                               1400.00
12691                                                                                                280.00
12692                                                           23 mg milbemycin oxime, 228 mg praziquantel
12693                                                                          based on weight (51-100 lbs)
12694                                                                                                50-100
12695                                                                                                 75.00
12696                                                                                                300.00
12697                                                                                                 75.00
12698                                                                                                625.00
12699                                                                                                272.00
12700                                                                                                200.00
12701                                                                                                850.00
12702                                                                                                 10.00
12703                                                                                                 50.00
12704                                                                                                100.00
12705                                                                                                 50.00
12706                                                                                                 10.00
12707                                                                                                  5.00
12708                                                                                                  0.43
12709                                                                                                100.00
12710                                                                                                272.00
12711                                                                                                  1.00
12712                                                                                                1 drop
12713                                                                                                 10 mg
12714                                                                          based on weight (51-100 lbs)
12715                                                                                                272.00
12716                                                                                                272.00
12717                                                                                                272.00
12718                                                                                                  8.00
12719                                                                                                 60.00
12720                                                                                                 30.00
12721                                                                                                 10.00
12722                                                                                                 10.00
12723                                                                                                 10.00
12724                                                                                                272.00
12725                                                                                                272.00
12726                                                                                                 23.00
12727                                                                                                 23.00
12728                                                                                                  9.70
12729                                                                                                500.00
12730                                                                                           unspecified
12731                                                                                                500.00
12732                                                                                           application
12733                                                                                                 75.00
12734                                                                                                750.00
12735                                                                                           as directed
12736                                                                                                  4.00
12737                                                                                                264.00
12738                                                                          1 tablet/pill/capsule - 1000
12739                                                                                                 13.50
12740                                                                                             13.5, 810
12741                                                                                                500.00
12742                                                                                                 50.00
12743                                                                                                 13.50
12744                                                                                       13.5 mg, 810 mg
12745                                                                                                  2.30
12746                                                                                                250.00
12747                                                                                                  1.00
12748                                                                                                600.00
12749                                                                                             13.5, 810
12750                                                                                                250.00
12751                                                                                                  1.00
12752                                                                                                  2.30
12753                                                                                                 50.00
12754                                                                                       13.5 mg, 810 mg
12755                                                                          based on weight (60-120 lbs)
12756                                                                                          small amount
12757                                                                                                200.00
12758                                                                                                136.00
12759                                                                                                100.00
12760                                                                                                 40.00
12761                                                                                                272.00
12762                                                                                                100.00
12763                                                                                                272.00
12764                                                                                                272.00
12765                                                                                                 23.00
12766                                                                                                 23.00
12767                                                                                                272.00
12768                                                                                                272.00
12769                                                                                                227.00
12770                                                                                                250.00
12771                                                                                       based on weight
12772                                                                                                500.00
12773                                                                                                200.00
12774                                                                                       based on weight
12775                                                                                                136.00
12776                                                                                                  5.00
12777                                                                                               1000.00
12778                                                                                                250.00
12779                                                                                                500.00
12780                                                                          based on weight (51-100 lbs)
12781                                                                                               6 drops
12782                                                                                                200.00
12783                                                                                                100.00
12784                                                                                        1 pack/package
12785                                                                                                100.00
12786                                                                                                1 tube
12787                                                                                              1 collar
12788                                                                                       0.25 inch strip
12789                                                                                                272.00
12790                                                                                                136.00
12791                                                                                                  2.00
12792                                                                                                113.50
12793                                                                                               1000.00
12794                                                                                                375.00
12795                                                                                           unspecified
12796                                                                                                collar
12797                                                                                        1 pack/package
12798                                                                                               1000.00
12799                                                                                                500.00
12800                                                                                                  1.00
12801                                                                                           application
12802                                                                                                 20.00
12803                                                                                                500.00
12804                                                                                                  1.00
12805                                                                                                  0.02
12806                                                                                                500.00
12807                                                                                                  1.00
12808                                                                                                  1.00
12809                                                                                                 70.00
12810                                                                                                500.00
12811                                                                                                300.00
12812                                                                                                  1.00
12813                                                                                                  1.00
12814                                                                                                  1.00
12815                                                                                                  1.00
12816                                                                                                  1.80
12817                                                                                                500.00
12818                                                                                                500.00
12819                                                                                               1000.00
12820                                                                                                300.00
12821                                                                                                  1.90
12822                                                                                               1000.00
12823                                                                                                500.00
12824                                                                                                100.00
12825                                                                                                300.00
12826                                                                                           unspecified
12827                                                                                                 16.00
12828                                                                                           unspecified
12829                                                                                                500.00
12830                                                                                               1700.00
12831                                                                                                 80.00
12832                                                                                                  1.80
12833                                                                                                 27 mg
12834                                                                                               1620.00
12835                                                                                                 15.00
12836                                                                          based on weight (60-120 lbs)
12837                                                                                                60-120
12838                                                                                                272.00
12839                                                                                                136.00
12840                                                                                                272.00
12841                                                                                                60-120
12842                                                                                                272.00
12843                                                                                                 68.00
12844                                                                                                 10.00
12845                                                                                                200.00
12846                                                                                                 20.00
12847                                                                                                272.00
12848                                                                                                  2.68
12849                                                                                                 drops
12850                                                                                                 drops
12851                                                                                                  3.00
12852                                                                                                300.00
12853                                                                                                 50.00
12854                                                                                                  3.00
12855                                                                                                  3.00
12856                                                                                                  1.00
12857                                                                                                  1.00
12858                                                                                                  1.00
12859                                                                                                300.00
12860                                                                                            0.03 mg/kg
12861                                                                                          small amount
12862                                                                                                  1.00
12863                                                                                                  1.00
12864                                                                                                  2.00
12865                                                                                          small amount
12866                                                                                          small amount
12867                                                                                                300.00
12868                                                                                                  1.00
12869                                                                                                  1.00
12870                                                                                           application
12871                                                                                                300.00
12872                                                                                                 10.00
12873                                                                                       moderate amount
12874                                                                                                500 mg
12875                                                                                                300.00
12876                                                                                                 16.00
12877                                                                                                300.00
12878                                                                                                100.00
12879                                                                          based on weight (51-100 lbs)
12880                                                                        based on weight (60.1-120 lbs)
12881                                                                                          small amount
12882                                                                                          small amount
12883                                                                                                 16.00
12884                                                                                                100.00
12885                                                                                                300.00
12886                                                                                                500.00
12887                                                                                                100.00
12888                                                                                                300.00
12889                                                                                                  1.00
12890                                                                                                  1.00
12891                                                                                                 16.00
12892                                                                                                  1.00
12893                                                                                               100-200
12894                                                                                          small amount
12895                                                                                                  bath
12896                                                                                               1647.00
12897                                                                                                200.00
12898                                                                                                  1.00
12899                                                                                                136.00
12900                                                                                                227.00
12901                                                                                           unspecified
12902                                                                                           unspecified
12903                                                                                           as directed
12904                                                                                                250 mg
12905                                                                                             injection
12906                                                                                           unspecified
12907                                                                                           unspecified
12908                                                                                           unspecified
12909                                                                                                750 mg
12910                                                                                                0.8 mg
12911                                                                                           unspecified
12912                                                                                                100.00
12913                                                                                                  4.00
12914                                                                                                 80.00
12915                                                                                                300.00
12916                                                                          based on weight (51-100 lbs)
12917                                                                                                 43.00
12918                                                                                                500.00
12919                                                                                                272.00
12920                                                                          based on weight (51-100 lbs)
12921                                                                                                272.00
12922                                                                                                  4.02
12923                                                                                                100.00
12924                                                                                                300.00
12925                                                                                                100.00
12926                                                                                                  8.00
12927                                                                                                275.00
12928                                                                                                272.00
12929                                                                          based on weight (51-100 lbs)
12930                                                                                                136.00
12931                                                                                                  1.00
12932                                                                                                  1.00
12933                                                                                                  1.00
12934                                                                                                  1.00
12935                                                                                                 18.00
12936                                                                                                  0.50
12937                                                                                                 12.00
12938                                                                                                100.00
12939                                                                                                100.00
12940                                                                                                  1.00
12941                                                                                                100.00
12942                                                                          based on weight (50-100 lbs)
12943                                                                          based on weight (51-100 lbs)
12944                                                                                                 44-88
12945                                                                          based on weight (51-100 lbs)
12946                                                                                                750.00
12947                                                                                                500 mg
12948                                                                          based on weight (51-100 lbs)
12949                                                                          based on weight (51-100 lbs)
12950                                                                                                 44-88
12951                                                                                                204.00
12952                                                                          based on weight (51-100 lbs)
12953                                                                                                 15 ml
12954                                                                                                200.00
12955                                                                                           unspecified
12956                                                                           based on weight (44-88 lbs)
12957                                                                          based on weight (51-100 lbs)
12958                                                                                                  1.00
12959                                                                                               8 drops
12960                                                                                                272.00
12961                                                                                                272.00
12962                                                                           based on weight (45-88 lbs)
12963                                                                                   tablet/pill/capsule
12964                                                                                                272.00
12965                                                                                                272.00
12966                                                                           based on weight (45-88 lbs)
12967                                                                                                200.00
12968                                                                                                200.00
12969                                                                                                 60.00
12970                                                                                                  1.00
12971                                                                                                  1.50
12972                                                                                                  8.00
12973                                                                                                300.00
12974                                                                                                150.00
12975                                                                                                  0.75
12976                                                                                                100.00
12977                                                                                                300.00
12978                                                                                                 75.00
12979                                                                                               1 spray
12980                                                                                                  0.80
12981                                                                                                272.00
12982                                                                                                500.00
12983                                                                                                250.00
12984                                                                                                 15.00
12985                                                                                                 75.00
12986                                                                                                  0.80
12987                                                                                                100 mg
12988                                                                                               272 mcg
12989                                                                                               272 mcg
12990                                                                                                 50 mg
12991                                                                                                272.00
12992                                                                                                 20-55
12993                                                                                               272 mcg
12994                                                                             based on weight (55+ lbs)
12995                                                                                                 44-88
12996                                                                                                 16 mg
12997                                                                                                200.00
12998                                                                                                 75.00
12999                                                                                                272.00
13000                                                                                                250.00
13001                                                                                                 50.00
13002                                                                                                 37.50
13003                                                                                                200.00
13004                                                                                                 68.00
13005                                                                                           unspecified
13006                                                                                           unspecified
13007                                                                                                600.00
13008                                                                                           unspecified
13009                                                                                                 16.00
13010                                                                                           unspecified
13011                                                                                                 16.00
13012                                                                                                 50.00
13013                                                                                           unspecified
13014                                                                                                250.00
13015                                                                                                500.00
13016                                                                                                170.00
13017                                                                                                375.00
13018                                                                                                 16.00
13019                                                                                                 20.00
13020                                                                                           unspecified
13021                                                                                                  1.00
13022                                                                                                  1.00
13023                                                                                                 60.00
13024                                                                                                 50.00
13025                                                                                                500.00
13026                                                                                                136.00
13027                                                                                                300.00
13028                                                                                                 16.00
13029                                                                                                  1.40
13030                                                                                                215.00
13031                                                                                                 60.00
13032                                                                                                 50.00
13033                                                                                                100.00
13034                                                                                                 20-40
13035                                                                                                272.00
13036                                                                                                  0.20
13037                                                                                                272.00
13038                                                                                                272.00
13039                                                                                                272.00
13040                                                                                                272.00
13041                                                                                          small amount
13042                                                                                                272.00
13043                                                                                                272.00
13044                                                                                                  6.00
13045                                                                                                272.00
13046                                                                                                400.00
13047                                                                                                 10.00
13048                                                                                                250.00
13049                                                                                           application
13050                                                                                                375.00
13051                                                                                                 50.00
13052                                                                                                 50.00
13053                                                                                                  5.00
13054                                                                                                200.00
13055                                                                                                 50.00
13056                                                                                                 50.00
13057                                                                                                  2.68
13058                                                                                                272.00
13059                                                                                                200.00
13060                                                                                                 15.00
13061                                                                           based on weight (44-80 lbs)
13062                                                                                           as directed
13063                                                                                                 50 mg
13064                                                                                               1000.00
13065                                                                                                 22.70
13066                                                                                               1000.00
13067                                                                                                272.00
13068                                                                                               1000.00
13069                                                                                                100.00
13070                                                                                                600.00
13071                                                                                                  1.00
13072                                                                                                  1.00
13073                                                                                                500.00
13074                                                                                           unspecified
13075                                                                          based on weight (51-100 lbs)
13076                                                                             based on weight (19+ lbs)
13077                                                                                                 23.00
13078                                                                                                 23.00
13079                                                                                               1000.00
13080                                                                                                 16.00
13081                                                                                           unspecified
13082                                                                                                200.00
13083                                                                                                200.00
13084                                                                                               23, 460
13085                                                                                                  2.68
13086                                                                          based on weight (51-100 lbs)
13087                                                                                               1000.00
13088                                                                                                 23.00
13089                                                                                                 23.00
13090                                                                                               1000.00
13091                                                                                                 23.00
13092                                                                                               1000.00
13093                                                                                                  2.00
13094                                                                                                272.00
13095                                                                                               1000.00
13096                                                                                          small amount
13097                                                                                                  1.00
13098                                                                                                50-100
13099                                                                                                113.50
13100                                                                                                  1.00
13101                                                                                                  0.50
13102                                                                                                  1.00
13103                                                                                                  1.00
13104                                                                                           unspecified
13105                                                                                                 50.00
13106                                                                                                  1.00
13107                                                                                                500.00
13108                                                                                             13.5, 810
13109                                                                                            13.5, 1620
13110                                                                                              30 mg/m2
13111                                                                                             0.7 mg/m2
13112                                                                                             250 mg/m2
13113                                                                                             2.5 mg/kg
13114                                                                          based on weight (60-120 lbs)
13115                                                                          based on weight (60-120 lbs)
13116                                                               27 mg milbemycin oxime, 620 mg spinosad
13117                                                                                               1620.00
13118                                                                                                250.00
13119                                                                                                300.00
13120                                                                                                 20.00
13121                                                                                               1000.00
13122                                                                                                 20.00
13123                                                                                                  1.00
13124                                                                                          small amount
13125                                                                                                272.00
13126                                                                                          small amount
13127                                                                                          small amount
13128                                                                                                 25.00
13129                                                                                          small amount
13130                                                                                          small amount
13131                                                                                                 20.00
13132                                                                                                 50.00
13133                                                                                          small amount
13134                                                                                                272.00
13135                                                                                                227.00
13136                                                                          based on weight (50-100 lbs)
13137                                                                           based on weight (45-88 lbs)
13138                                                                                               2 drops
13139                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13140                                                                                               1000 mg
13141                                                                                                  6.00
13142                                                                          based on weight (51-100 lbs)
13143                                                                           based on weight (45-88 lbs)
13144                                                                                                200.00
13145                                                                                                 50.00
13146                                                                                                400.00
13147                                                                                                 75.00
13148                                                                                              125, 875
13149                                                                          based on weight (51-100 lbs)
13150                                                                           based on weight (45-88 lbs)
13151                                                                          based on weight (51-100 lbs)
13152                                                                           based on weight (44-88 lbs)
13153                                                                                               1500.00
13154                                                                                              125, 875
13155                                                                                                400.00
13156                                                                                                300.00
13157                                                                          based on weight (50-100 lbs)
13158                                                                                                170.00
13159                                                                                           unspecified
13160                                                                                           unspecified
13161                                                                                                150.00
13162                                                                                                227.00
13163                                                                                                500.00
13164                                                                                                500.00
13165                                                                                                500.00
13166                                                                                                300.00
13167                                                                                                60-121
13168                                                                          based on weight (51-100 lbs)
13169                                                                          based on weight (51-100 lbs)
13170                                                                          based on weight (60-120 lbs)
13171                                                                                                 16 mg
13172                                                                                                150.00
13173                                                                                                1 drop
13174                                                                                                  3.00
13175                                                                                                500.00
13176                                                                                                 20.00
13177                                                                                                500.00
13178                                                                                                 30.00
13179                                                                                                 75.00
13180                                                                                                250.00
13181                                                                                                  3.00
13182                                                                                                  3.45
13183                                                                                               1000 mg
13184                                                                                                 60 mg
13185                                                                                                  1.50
13186                                                                                               1000.00
13187                                                                                           application
13188                                                                           based on weight (45-88 lbs)
13189                                                                          based on weight (51-100 lbs)
13190                                                                                                150 mg
13191                                                                                              45451.00
13192                                                                                                 50.00
13193                                                                                                  1.00
13194                                                                                                  3.40
13195                                                                                                 spray
13196                                                                                                  bath
13197                                                                                                150.00
13198                                                                                       moderate amount
13199                                                                                              tapering
13200                                                                                                200.00
13201                                                                                                272.00
13202                                                                                                 68.00
13203                                                                                                  3.80
13204                                                                                                500.00
13205                                                                                                160.00
13206                                                                                                960.00
13207                                                                                                  8.00
13208                                                                                 1 tablet/pill/capsule
13209                                                                                 1 tablet/pill/capsule
13210                                                                                                  3.00
13211                                                                                                  2.00
13212                                                                                                 76.00
13213                                                                                                150.00
13214                                                                                                 17.50
13215                                                                                                  2.00
13216                                                                                                  2.00
13217                                                                                                300.00
13218                                                                                                 75.00
13219                                                                                                  1.00
13220                                                                                                  1.00
13221                                                                                                300.00
13222                                                                                                 75.00
13223                                                                                                 76.00
13224                                                                                                  3.00
13225                                                                                                  2.00
13226                                                                                                  2.00
13227                                                                                                  2.00
13228                                                                                                 17.50
13229                                                                                                150.00
13230                                                                                                  8.00
13231                                                                                                 75.00
13232                                                                                                300.00
13233                                                                                           unspecified
13234                                                                                                 75.00
13235                                                                                                  2.00
13236                                                                                                 10.00
13237                                                                                                  2.00
13238                                                                                                500 mg
13239                                                                                                250.00
13240                                                                                                200.00
13241                                                                                                500.00
13242                                                                                                  2.00
13243                                                                                                500.00
13244                                                                                                 10.00
13245                                                                                                  2.00
13246                                                                                       0.25 inch strip
13247                                                                                                113.50
13248                                                                          based on weight (51-100 lbs)
13249                                                                           based on weight (45-88 lbs)
13250                                                                                                 16.00
13251                                                                                                200.00
13252                                                                                                  1.00
13253                                                                                                  1.00
13254                                                                                                200.00
13255                                                                                                170.25
13256                                                                                                250.00
13257                                                                                                 62.50
13258                                                                                                500.00
13259                                                                                                 20.00
13260                                                                                                272.00
13261                                                                                                227.00
13262                                                                                               272 mcg
13263                                                                                                272.00
13264                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13265                                                                                                136.00
13266                                                                                                 20.00
13267                                                                                                272.00
13268                                                                                                136.00
13269                                                                                                 20.00
13270                                                                                 1 tablet/pill/capsule
13271                                                                                 1 tablet/pill/capsule
13272                                                                                                  1.00
13273                                                                                                  1.00
13274                                                                                                136.00
13275                                                                                                  2.68
13276                                                                                                500.00
13277                                                                                       moderate amount
13278                                                                                          small amount
13279                                                                                           application
13280                                                                                                500.00
13281                                                                                                 37.50
13282                                                                                                375.00
13283                                                                                                 15.00
13284                                                                                                272.00
13285                                                                                                  9.80
13286                                                                                          small amount
13287                                                                                           application
13288                                                                                 1 tablet/pill/capsule
13289                                                                                                600.00
13290                                                                                                136.00
13291                                                                                                100.00
13292                                                                                               1620.00
13293                                                                                                  3.60
13294                                                                                                 27.00
13295                                                                                                500.00
13296                                                                                                 22.00
13297                                                                          based on weight (51-100 lbs)
13298                                                                        based on weight (60.1-120 lbs)
13299                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13300                                                                                                136.00
13301                                                                                                100.00
13302                                                                                                  0.45
13303                                                                                                 11.00
13304                                                                                                  0.20
13305                                                                                                  2.20
13306                                                                                                 10.00
13307                                                                        based on weight (60.1-120 lbs)
13308                                                                          based on weight (51-100 lbs)
13309                                                                                 1 tablet/pill/capsule
13310                                                                                                  8.00
13311                                                                                                100.00
13312                                                                                                 50.00
13313                                                                          based on weight (50-100 lbs)
13314                                                                          based on weight (60-120 lbs)
13315                                                                                               8 drops
13316                                                                                                136.00
13317                                                                                                500.00
13318                                                                                               8 drops
13319                                                                                                500.00
13320                                                                                                  1.00
13321                                                                                                  bath
13322                                                                                                100.00
13323                                                                                                100.00
13324                                                                                                272.00
13325                                                                                                136.00
13326                                                                                                500.00
13327                                                                                                500.00
13328                                                                                                250.00
13329                                                                                                  1.00
13330                                                                                                 50.00
13331                                                                          based on weight (60-120 lbs)
13332                                                                                             2-3 drops
13333                                                                                                60-120
13334                                                              27 mg milbemycin oxime, 1620 mg spinosad
13335                                                                                                 11.00
13336                                                                                                60-120
13337                                                                                                300.00
13338                                                                                                 20.00
13339                                                                                                227.00
13340                                                                                          small amount
13341                                                                                           unspecified
13342                                                                                                500.00
13343                                                                                           unspecified
13344                                                                          based on weight (60-120 lbs)
13345                                                                                               5 drops
13346                                                                                                227.00
13347                                                                                                136.00
13348                                                                                                100 mg
13349                                                                          based on weight (51-100 lbs)
13350                                                                                                500.00
13351                                                                                                 20.00
13352                                                                                                900.00
13353                                                                                             5-6 drops
13354                                                                                       based on weight
13355                                                                           based on weight (60-80 lbs)
13356                                                                                        27 mg, 1620 mg
13357                                                                                           unspecified
13358                                                                                                 37.50
13359                                                                                                 20.00
13360                                                                                                 75.00
13361                                                                                                250.00
13362                                                                                                 37.50
13363                                                                                                  1.00
13364                                                                                                500.00
13365                                                                                                136.00
13366                                                                                                  2.00
13367                                                                                                500.00
13368                                                                                                  5.00
13369                                                                                                375.00
13370                                                                                                  5.00
13371                                                                                                  5.00
13372                                                                                                  1.00
13373                                                                                                 15.00
13374                                                                                                200.00
13375                                                                                                  1.00
13376                                                                                           unspecified
13377                                                                                                  5.00
13378                                                                                                  1.00
13379                                                                                                 15.00
13380                                                                                                  3.00
13381                                                                                                500.00
13382                                                                                                  5.00
13383                                                                                                  1.00
13384                                                                                                  0.50
13385                                                                                                  3.00
13386                                                                                                  3.00
13387                                                                                                100.00
13388                                                                                                150.00
13389                                                                                                  5.00
13390                                                                                                  5.00
13391                                                                                                  2.00
13392                                                                                                  6.80
13393                                                                                                  0.13
13394                                                                                                  1.70
13395                                                                                                450.00
13396                                                                                                200.00
13397                                                                                                750.00
13398                                                                                                 30.00
13399                                                                                                200.00
13400                                                                                                500.00
13401                                                                                                500.00
13402                                                                                                200.00
13403                                                                                                 30.00
13404                                                                                                 20.00
13405                                                                                           unspecified
13406                                                                                                 24.00
13407                                                                                                  3.20
13408                                                                                                  2.00
13409                                                                                                  1.00
13410                                                                                                  4.90
13411                                                                                           unspecified
13412                                                                                                 60.00
13413                                                                                                  3.00
13414                                                                                                  6.50
13415                                                                                                 40.00
13416                                                                                                 80.00
13417                                                                                                150.00
13418                                                                                                200.00
13419                                                                                                250.00
13420                                                                                                 24.00
13421                                                                                                750.00
13422                                                                                                 80.00
13423                                                                                                  3.00
13424                                                                                                  1.00
13425                                                                                                  1.00
13426                                                                                                  2.00
13427                                                                                                  5.00
13428                                                                                                  4.90
13429                                                                                                  3.00
13430                                                                                                 60.00
13431                                                                                                  2.00
13432                                                                                                  1.00
13433                                                                                                100.00
13434                                                                                                 10.00
13435                                                                                                 20.00
13436                                                                                                 82.00
13437                                                                                                  3.00
13438                                                                                                  1.40
13439                                                                                                  7.00
13440                                                                                                  2.70
13441                                                                                                  2.70
13442                                                                                                  4.00
13443                                                                                                750.00
13444                                                                                                  3.00
13445                                                                                                  4.00
13446                                                                                                  1.00
13447                                                                                                  2.00
13448                                                                                                  2.00
13449                                                                                                  2.00
13450                                                                                                  2.00
13451                                                                                                  1.00
13452                                                                                                  1.00
13453                                                                                               1000.00
13454                                                                          based on weight (51-100 lbs)
13455                                                                        based on weight (60.1-121 lbs)
13456                                                                           based on weight (25-75 lbs)
13457                                                                                                272.00
13458                                                                                                 16.08
13459                                                                                       moderate amount
13460                                                                                           application
13461                                                                          based on weight (51-100 lbs)
13462                                                                        based on weight (60.1-121 lbs)
13463                                                                                                300.00
13464                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
13465                                                                                               1000.00
13466                                                                                                272.00
13467                                                                                                300.00
13468                                                                                           unspecified
13469                                                                                                500.00
13470                                                                                       based on weight
13471                                                                          based on weight (51-100 lbs)
13472                                                                                                  2.50
13473                                                                                                  0.25
13474                                                                                                  8.00
13475                                                                          based on weight (51-100 lbs)
13476                                                                                   tablet/pill/capsule
13477                                                                                                 15.00
13478                                                                                                500.00
13479                                                                              based on weight (70 lbs)
13480                                                                                                500.00
13481                                                                                                  1.00
13482                                                                                                  5.00
13483                                                                          based on weight (51-100 lbs)
13484                                                                           based on weight (44-88 lbs)
13485                                                                                                 20 mg
13486                                                                                                625.00
13487                                                                                                 20 mg
13488                                                                                                625.00
13489                                                                                                500.00
13490                                                                                               1000.00
13491                                                                                                500.00
13492                                                                                                 20.00
13493                                                                                                625.00
13494                                                                                                300.00
13495                                                                                                 20.00
13496                                                                                       based on weight
13497                                                                                                  0.13
13498                                                                                                 25.00
13499                                                                                                  2.50
13500                                                                                                  1.25
13501                                                                                                  0.00
13502                                                                                           unspecified
13503                                                                             based on weight (55+ lbs)
13504                                                                                                  1.00
13505                                                                                                272.00
13506                                                                          based on weight (50-100 lbs)
13507                                                                                                272.00
13508                                                                                                  4.00
13509                                                                                                 10.00
13510                                                                                                 30.00
13511                                                                                                130.00
13512                                                                                                  0.81
13513                                                                                                500.00
13514                                                                                                272.00
13515                                                                                               1000.00
13516                                                                                                272.00
13517                                                                                                  3.00
13518                                                                                                272.00
13519                                                                                               1000.00
13520                                                                                                500.00
13521                                                                                                 40.00
13522                                                                                                500.00
13523                                                                                                 80.00
13524                                                                                                250.00
13525                                                                                                500.00
13526                                                                                                 50.00
13527                                                                                                500.00
13528                                                                                                500.00
13529                                                                                                500.00
13530                                                                                                  4.00
13531                                                                                                750.00
13532                                                                                        1 pack/package
13533                                                                                                500.00
13534                                                                                                272.00
13535                                                                                                  2.68
13536                                                                                                 27.00
13537                                                                          based on weight (50-100 lbs)
13538                                                                          based on weight (51-100 lbs)
13539                                                                                               1620.00
13540                                                                                                100.00
13541                                                                                               1620.00
13542                                                                                               1620.00
13543                                                                                                 75.00
13544                                                                                               1620.00
13545                                                                                                500.00
13546                                                                                                 37.50
13547                                                                                                 75.00
13548                                                                                               1647.00
13549                                                                                                 20.00
13550                                                                                                250.00
13551                                                                                                 12.00
13552                                                                                                900.00
13553                                                                                                 20.00
13554                                                                                               1620.00
13555                                                                                                200.00
13556                                                                                                  5.00
13557                                                                                                  7.00
13558                                                                                               1647.00
13559                                                                                               1647.00
13560                                                                                                  7.00
13561                                                                                                  2.00
13562                                                                                              27, 1620
13563                                                                                           as directed
13564                                                                                              27, 1620
13565                                                                                                375.00
13566                                                                                                  1.00
13567                                                                                                  1.00
13568                                                                                                  2.00
13569                                                                                                150.00
13570                                                                                                150.00
13571                                                                                                150.00
13572                                                                                                  3.00
13573                                                                                                  3.00
13574                                                                                                 60.00
13575                                                                                           unspecified
13576                                                                          based on weight (60-120 lbs)
13577                                                                                                  5.00
13578                                                                                                  1.00
13579                                                                                          small amount
13580                                                                                                  2.00
13581                                                                                        27 mg, 1620 mg
13582                                                                                                  2.00
13583                                                                                                  1.00
13584                                                                                                  5.00
13585                                                                                              27, 1620
13586                                                                                                  1.00
13587                                                                                                  1.00
13588                                                                                                  1.00
13589                                                                                                  2.00
13590                                                                                                  bath
13591                                                                                                200.00
13592                                                                                                  2.00
13593                                                                                                100.00
13594                                                                                           unspecified
13595                                                                                           unspecified
13596                                                                                                100.00
13597                                                                                                200.00
13598                                                                                                 16.00
13599                                                                                                  1.00
13600                                                                                                  1.00
13601                                                                                           unspecified
13602                                                                                                150.00
13603                                                                                           unspecified
13604                                                                                                  2.00
13605                                                                                           unspecified
13606                                                                                                  1.00
13607                                                                                                  1.00
13608                                                                                                230.00
13609                                                                                       0.25 inch strip
13610                                                                                                 25.00
13611                                                                                                 10.00
13612                                                                                                  1.00
13613                                                                                                 10.00
13614                                                                                                 10.00
13615                                                                                          small amount
13616                                                                                               1100.00
13617                                                                                                  0.25
13618                                                                                                  0.25
13619                                                                                                100 mg
13620                                                                                               1136.00
13621                                                                                                250.00
13622                                                                                                 50.00
13623                                                                           based on weight (21-55 lbs)
13624                                                                           based on weight (21-55 lbs)
13625                                                                           based on weight (21-55 lbs)
13626                                                                                                100.00
13627                                                                                                300.00
13628                                                                           based on weight (21-55 lbs)
13629                                                                                                300.00
13630                                                                                                 50.00
13631                                                                                          small amount
13632                                                                                                 68.00
13633                                                                                                272.00
13634                                                                                                272.00
13635                                                                                                  2.68
13636                                                                                                272.00
13637                                                                                                  2.68
13638                                                                                                272.00
13639                                                                                                136.00
13640                                                                                                272.00
13641                                                                                                272.00
13642                                                                                                136.00
13643                                                                                                272.00
13644                                                                                                136.00
13645                                                                                                272.00
13646                                                                                                136.00
13647                                                                                                200.00
13648                                                                                                 50.00
13649                                                                                                  1.00
13650                                                                                                  1.00
13651                                                                                                272.00
13652                                                                                                272.00
13653                                                                                                500.00
13654                                                                                          small amount
13655                                                                                                  1.00
13656                                                                                               1000.00
13657                                                                                          small amount
13658                                                                                                  1.00
13659                                                                                                 15 gm
13660                                                                                                 15 gm
13661                                                                                                  4.00
13662                                                                                               1000.00
13663                                                                                                 15.00
13664                                                                                                 15.00
13665                                                                                                500.00
13666                                                                                           application
13667                                                                                                 75.00
13668                                                                                                210.00
13669                                                                                                  1.00
13670                                                                                                  1.27
13671                                                                                                 12.65
13672                                                                                                126.55
13673                                                                                                  2.00
13674                                                                                                 15.00
13675                                                                                                272.00
13676                                                                                               1000.00
13677                                                                                                 15.00
13678                                                                                                  1.00
13679                                                                                                 75.00
13680                                                                                                  0.02
13681                                                                                                  1.00
13682                                                                                                  1.27
13683                                                                                                 12.60
13684                                                                                                126.55
13685                                                                                                139.20
13686                                                                                                  0.20
13687                                                                                               1000 mg
13688                                                                                                0.5 ml
13689                                                                                               1620.00
13690                                                                                                  1.00
13691                                                                                                  2.30
13692                                                                                                 10.00
13693                                                                          based on weight (60-120 lbs)
13694                                                                                                272.00
13695                                                                                                 23.00
13696                                                                                                  1.00
13697                                                                                                  1.00
13698                                                                                                 75.00
13699                                                                                                300.00
13700                                                                                                500.00
13701                                                                                                 75.00
13702                                                                                                 10.00
13703                                                                                                  6.00
13704                                                                                                 50.00
13705                                                                                                 16.00
13706                                                                                               1620.00
13707                                                                                               1620.00
13708                                                                                                500.00
13709                                                                                                272.00
13710                                                                                                  0.60
13711                                                                                                  2.68
13712                                                                                                  8.00
13713                                                                                                 10.00
13714                                                                                                  0.60
13715                                                                                                750 mg
13716                                                                                                175.00
13717                                                                                                  0.60
13718                                                                                                  0.60
13719                                                                                                  1.00
13720                                                                                                150.00
13721                                                                                                500.00
13722                                                                                                  1.00
13723                                                                           based on weight (44-88 lbs)
13724                                                                                       based on weight
13725                                                                                                  0.70
13726                                                                                                250.00
13727                                                                                               1000.00
13728                                                                                                150.00
13729                                                                                                500.00
13730                                                                                   tablet/pill/capsule
13731                                                                                                  8.00
13732                                                                                                250.00
13733                                                                                               1000.00
13734                                                                                                  1.00
13735                                                                                                  0.60
13736                                                                                                200.00
13737                                                                          based on weight (50-100 lbs)
13738                                                                                                  0.70
13739                                                                                                150.00
13740                                                                                           unspecified
13741                                                                                           unspecified
13742                                                                                                  1.05
13743                                                                                                 60.00
13744                                                                                                300.00
13745                                                                                                 23.00
13746                                                                                                 23.00
13747                                                                                               23, 460
13748                                                                                                 23.00
13749                                                                                               1000.00
13750                                                                                               1400.00
13751                                                                                                 23.00
13752                                                                                                200.00
13753                                                                                                 23.00
13754                                                                                               1000.00
13755                                                                                                200.00
13756                                                                                           unspecified
13757                                                                                                150.00
13758                                                                                                150.00
13759                                                                                                300.00
13760                                                                                                150.00
13761                                                                                                200.00
13762                                                                                                300.00
13763                                                                                                500.00
13764                                                                                                 20.00
13765                                                                                                150.00
13766                                                                                                 40-60
13767                                                                                                 11.50
13768                                                                                           application
13769                                                                                                 spray
13770                                                                                                200.00
13771                                                                                                 50.00
13772                                                                                                136.00
13773                                                                                                125.00
13774                                                                                                100 mg
13775                                                                                                272 ug
13776                                                                             based on weight (50+ lbs)
13777                                                                                                136.00
13778                                                                                                100.00
13779                                                                                                500.00
13780                                                                                                  1.00
13781                                                                                                 25-50
13782                                                                              based on weight (50 lbs)
13783                                                                          based on weight (50-100 lbs)
13784                                                                                                100.00
13785                                                                                                200.00
13786                                                                                                1 tube
13787                                                                                                100.00
13788                                                                                                 50.00
13789                                                                                                100.00
13790                                                                                                 50.00
13791                                                                                                100.00
13792                                                                                                100.00
13793                                                                                                100.00
13794                                                                                                184.00
13795                                                                                                 10.00
13796                                                                                            1 wipe/pad
13797                                                                                                 36.00
13798                                                                                                  0.30
13799                                                                                                  0.30
13800                                                                                                  1.00
13801                                                                                                50-100
13802                                                                                                  1.00
13803                                                                                                375 mg
13804                                                                                                  1.20
13805                                                                                                  1.00
13806                                                                                                  1.00
13807                                                                                               4200.00
13808                                                                                                 50.00
13809                                                                                                500.00
13810                                                                                                500.00
13811                                                                                                 50.00
13812                                                                                                125.00
13813                                                                                                 50.00
13814                                                                                                 10.00
13815                                                                                                 20.00
13816                                                                                                272.00
13817                                                                                                375.00
13818                                                                                                  1.20
13819                                                                                                 20.00
13820                                                                                                272.00
13821                                                                                                  2.90
13822                                                                                                 60.00
13823                                                                                                  4.00
13824                                                                                                272.00
13825                                                                                                  9.80
13826                                                                                                 20.00
13827                                                                                                  1.00
13828                                                                                                  1.00
13829                                                                                                 50.00
13830                                                                                                 50.00
13831                                                                                                100.00
13832                                                                                                500.00
13833                                                                                                  1.00
13834                                                                                                 25.00
13835                                                                                                 10.00
13836                                                                                                 20.00
13837                                                                                               1000.00
13838                                                                                                130.00
13839                                                                                                  1.00
13840                                                                                                272.00
13841                                                                                                 44-88
13842                                                                                                 20.00
13843                                                                                                 37.50
13844                                                                                                 10.00
13845                                                                                                  1.00
13846                                                                                                  1.00
13847                                                                                                  1.20
13848                                                                                                  4.00
13849                                                                                                  1.00
13850                                                                                                 10.00
13851                                                                                                  1.00
13852                                                                                                  4.00
13853                                                                                                500.00
13854                                                                                                 10.00
13855                                                                                                 20.00
13856                                                                                                 37.50
13857                                                                                                  1.00
13858                                                                                                  1.00
13859                                                                                                  1.20
13860                                                                                                  1.00
13861                                                                                                  1.60
13862                                                                                                  1.60
13863                                                                                                 13.00
13864                                                                                                  2.00
13865                                                                                                 16.00
13866                                                                                                136.00
13867                                                                                                100.00
13868                                                                                                500.00
13869                                                                                                 20.00
13870                                                                                                 10.00
13871                                                                                                500.00
13872                                                                                                300.00
13873                                                                                                 37.50
13874                                                                                                  1.00
13875                                                                                                  0.02
13876                                                                                                  1.20
13877                                                                                                  1.00
13878                                                                                                  3.30
13879                                                                                                 30.00
13880                                                                                                  1.00
13881                                                                                                  7 ml
13882                                                                                                272.00
13883                                                                                                 50.00
13884                                                                                              2 sprays
13885                                                                                                272.00
13886                                                                                                456.00
13887                                                                                                  3.00
13888                                                                                                200.00
13889                                                                                                200.00
13890                                                                                                  0.70
13891                                                                                                375.00
13892                                                                                                150.00
13893                                                                          based on weight (51-100 lbs)
13894                                                                          based on weight (51-100 lbs)
13895                                                                                                 30.00
13896                                                                        based on weight (50.1-100 lbs)
13897                                                                                                 56-95
13898                                                                                                100.00
13899                                                                                                100.00
13900                                                                                                300.00
13901                                                                                                150.00
13902                                                                                           unspecified
13903                                                                                                200 mg
13904                                                                                                500 mg
13905                                                                          based on weight (51-100 lbs)
13906                                                                          based on weight (51-100 lbs)
13907                                                                                                 20.00
13908                                                                                             100 mg/ml
13909                                                                                                 10.00
13910                                                                        based on weight (50.1-100 lbs)
13911                                                                                                 56-95
13912                                                                                           unspecified
13913                                                                                           unspecified
13914                                                                                                100.00
13915                                                                                                  1.00
13916                                                                                                  1.00
13917                                                                                                  1.00
13918                                                                                                250.00
13919                                                                                                 50.00
13920                                                                                                 25.00
13921                                                                                                120.00
13922                                                                                                 27.00
13923                                                                                               1620.00
13924                                                                                                 62.50
13925                                                                                              27, 1620
13926                                                                                                200.00
13927                                                                                                 15.00
13928                                                                                                200.00
13929                                                                                                 15.00
13930                                                                                                240.00
13931                                                                                                100.00
13932                                                                                                  2.00
13933                                                                                                  3.00
13934                                                                                                  3.00
13935                                                                                                 75.00
13936                                                                                                500.00
13937                                                                                                  1.00
13938                                                                                                300.00
13939                                                                                                  0.60
13940                                                                                                300.00
13941                                                                                                  0.60
13942                                                                                                  0.60
13943                                                                          based on weight (51-100 lbs)
13944                                                                                                  0.60
13945                                                                                                136.00
13946                                                                                                 spray
13947                                                                                                272.00
13948                                                                                                136.00
13949                                                                                                200.00
13950                                                                                               1000.00
13951                                                                                                  8.00
13952                                                                                                200.00
13953                                                                                                  1.00
13954                                                                                                200.00
13955                                                                                                 75.00
13956                                                                                               1000.00
13957                                                                                                  1.00
13958                                                                                                  8.00
13959                                                                                                  8.00
13960                                                                                                  1.00
13961                                                                                                300.00
13962                                                                                                300.00
13963                                                                                                 25.00
13964                                                                                                 75.00
13965                                                                                                  2.00
13966                                                                                                500.00
13967                                                                                                200.00
13968                                                                                                136.00
13969                                                                                                  2.00
13970                                                                                                  8.00
13971                                                                                                  2.00
13972                                                                                                  2.50
13973                                                                                                  1.00
13974                                                                                                500.00
13975                                                                                                100.00
13976                                                                                                 20.00
13977                                                                                                 24.00
13978                                                                                                150.00
13979                                                                                                  2.68
13980                                                                                                272.00
13981                                                                                                500.00
13982                                                                                                150.00
13983                                                                                                 20.00
13984                                                                                                 48.00
13985                                                                                                500.00
13986                                                                                                 50.00
13987                                                                                                 25.00
13988                                                                                                750.00
13989                                                                                                  4.00
13990                                                                                                150.00
13991                                                                                                100.00
13992                                                                                                272.00
13993                                                                                                 68.00
13994                                                                                 1 tablet/pill/capsule
13995                                                                                 1 tablet/pill/capsule
13996                                                                                       0.25 inch strip
13997                                                                                                 80.00
13998                                                                                           unspecified
13999                                                                                                  1.00
14000                                                                                                 80.00
14001                                                                                                150.00
14002                                                                                                  1.00
14003                                                                                                375.00
14004                                                                                                 20.00
14005                                                                                                 75.00
14006                                                                                                 spray
14007                                                                          based on weight (50-100 lbs)
14008                                                                                               8 drops
14009                                                                                                223.00
14010                                                                                                300.00
14011                                                                                                 50.00
14012                                                                                                600.00
14013                                                                                                300.00
14014                                                                                                  2.00
14015                                                                                                136.00
14016                                                                                                125.00
14017                                                                                                 25.00
14018                                                                                                150.00
14019                                                                                                272.00
14020                                                                                                 50.00
14021                                                                                                100.00
14022                                                                                                272.00
14023                                                                                                 80.00
14024                                                                                                 50.00
14025                                                                                                272.00
14026                                                                                                 80.00
14027                                                                                                272.00
14028                                                                                                 80.00
14029                                                                                                 50.00
14030                                                                                                 50.00
14031                                                                                                250.00
14032                                                                                                200.00
14033                                                                                                225.00
14034                                                                                               1620.00
14035                                                                                                240.00
14036                                                                                                240.00
14037                                                                                                 23.00
14038                                                                                                468.00
14039                                                                                                 75.00
14040                                                                                                400.00
14041                                                                                                 75.00
14042                                                                                                468.00
14043                                                                                                 20.00
14044                                                                                                 20.00
14045                                                                                                 50.00
14046                                                                                                 50.00
14047                                                                                                300.00
14048                                                                                                 75.00
14049                                                                                                375.00
14050                                                                                           unspecified
14051                                                                          based on weight (50-100 lbs)
14052                                                                                                375.00
14053                                                                                                  6.50
14054                                                                                                 10.00
14055                                                                          based on weight (50-100 lbs)
14056                                                                                                 50.00
14057                                                                                                 20.00
14058                                                                                                  1.00
14059                                                                           based on weight (40-85 lbs)
14060                                                                          based on weight (51-100 lbs)
14061                                                                          based on weight (51-100 lbs)
14062                                                                          based on weight (50-100 lbs)
14063                                                                           based on weight (44-88 lbs)
14064                                                                          based on weight (51-100 lbs)
14065                                                                                                  1.00
14066                                                                                                  7.50
14067                                                                                                  7.50
14068                                                                                                 37.50
14069                                                                                               1000.00
14070                                                                                               1400.00
14071                                                                                                 44-88
14072                                                                                               1500 mg
14073                                                                                                  7.50
14074                                                                                                 25.00
14075                                                                                                  5.00
14076                                                                                                  7.50
14077                                                                                                  7.50
14078                                                                                                 37.50
14079                                                                                               1500.00
14080                                                                                                50-100
14081                                                                                                 44-88
14082                                                                                                375.00
14083                                                                                               1000.00
14084                                                                                                  5.00
14085                                                                                                 37.50
14086                                                                                                  7.50
14087                                                                                                500.00
14088                                                                                                  7.50
14089                                                                                                 37.50
14090                                                                                                  5.00
14091                                                                                               1000.00
14092                                                                                                  7.50
14093                                                                                                 37.50
14094                                                                                                  5.00
14095                                                                                               1000.00
14096                                                                                                 37.50
14097                                                                                                  5.00
14098                                                                                                  7.50
14099                                                                                               1000.00
14100                                                                                                 20.00
14101                                                                                                 37.50
14102                                                                                                  5.00
14103                                                                                                  7.50
14104                                                                                               1000.00
14105                                                                                                 60.00
14106                                                                          based on weight (51-100 lbs)
14107                                                                                                375.00
14108                                                                                                500.00
14109                                                                                                 50.00
14110                                                                                                 50.00
14111                                                                                                 10.00
14112                                                                                                750.00
14113                                                                                                  1.00
14114                                                                          based on weight (60-120 lbs)
14115                                                                                                750.00
14116                                                                                                  1.00
14117                                                                                                500.00
14118                                                              27 mg milbemycin oxime, 1620 mg spinosad
14119                                                                                               1620.00
14120                                                                                                0.4 ml
14121                                                                                                0.4 ml
14122                                                                                                0.4 ml
14123                                                                                                   1 l
14124                                                                                                  4 ml
14125                                                                                                  1.00
14126                                                                                                  1.00
14127                                                                                                  1.00
14128                                                                                              27, 1620
14129                                                                          based on weight (60-120 lbs)
14130                                                                                                  8.00
14131                                                                                          small amount
14132                                                                                               1620.00
14133                                                                                                200.00
14134                                                                                                 27.00
14135                                                                                                 16.00
14136                                                                                                  8.00
14137                                                                                                 70.00
14138                                                                                                 15.00
14139                                                                                                  8.00
14140                                                                                                 23.00
14141                                                                                                 64.80
14142                                                                                                500.00
14143                                                                                               1000.00
14144                                                                                                  1.00
14145                                                                                                  1.00
14146                                                                                                500.00
14147                                                                          based on weight (51-100 lbs)
14148                                                                           based on weight (44-88 lbs)
14149                                                                                                  1.00
14150                                                                                                  1.00
14151                                                                          based on weight (50-100 lbs)
14152                                                                                                 20.00
14153                                                                                                60-120
14154                                                                          based on weight (50-100 lbs)
14155                                                                                                  5.00
14156                                                                                                 80.00
14157                                                                                                 75.00
14158                                                                                                750.00
14159                                                                                                 40.00
14160                                                                                                375.00
14161                                                                                                 75.00
14162                                                                          based on weight (50-100 lbs)
14163                                                                                           unspecified
14164                                                                          based on weight (51-100 lbs)
14165                                                                                          small amount
14166                                                                                 1 tablet/pill/capsule
14167                                                                                                  1.00
14168                                                                                                  4.50
14169                                                                                                 20 mg
14170                                                                                          small amount
14171                                                                                                1 tube
14172                                                                          based on weight (51-100 lbs)
14173                                                                            based on weight (0-25 lbs)
14174                                                                          based on weight (89-132 lbs)
14175                                                                                           as directed
14176                                                                                                  3.75
14177                                                                          based on weight (50-100 lbs)
14178                                                                          based on weight (89-132 lbs)
14179                                                                                                1 tube
14180                                                                          based on weight (88-120 lbs)
14181                                                                          based on weight (51-100 lbs)
14182                                                                                                272.00
14183                                                                                                750.00
14184                                                                                                272.00
14185                                                                                                260.00
14186                                                                                                 50.00
14187                                                                                                500.00
14188                                                                                                900.00
14189                                                                                                  9.80
14190                                  1 mg dexamethasone, 3.5 mg neomycin sulfate, 10000 units polymyxin b
14191                                                                                                272.00
14192                                                                                                136.00
14193                                                                                                 50.00
14194                                                                                                 16.00
14195                                                                                                 25.00
14196                                                                                                272.00
14197                                                                                                 80.00
14198                                                                                                100.00
14199                                                                                                300.00
14200                                                                                                 25.00
14201                                                                                                  2.00
14202                                                                                                 25.00
14203                                                                                                 60.00
14204                                                                                                  2.00
14205                                                                                                272.00
14206                                                                                                500.00
14207                                                                                                  1.00
14208                                                                                               1000.00
14209                                                                                                  0.14
14210                                                                                               1620.00
14211                                                                                               1620.00
14212                                                                                                  6.00
14213                                                                                                 20.00
14214                                                                                               1620.00
14215                                                                                                136.00
14216                                                                                                150.00
14217                                                                                                  0.20
14218                                                                                                  3.00
14219                                                                          based on weight (51-100 lbs)
14220                                                                                                 25.00
14221                                                                                           unspecified
14222                                                                                                100.00
14223                                                                                                300.00
14224                                                                                                600.00
14225                                                                                                375.00
14226                                                                                                600.00
14227                                                                                                 50.00
14228                                                                                           unspecified
14229                                                                                                200.00
14230                                                                                                  1.00
14231                                                                                                 60.00
14232                                                                                                  1.00
14233                                                                                                 10.00
14234                                                                                                  5.40
14235                                                                                                  1.50
14236                                                                                                  1.00
14237                                                                                                  1.00
14238                                                                                           unspecified
14239                                                                                                  0.50
14240                                                                                                136.00
14241                                                                           based on weight (44-88 lbs)
14242                                                                           based on weight (26-50 lbs)
14243                                                                                                 45-88
14244                                                                                                136.00
14245                                                                           based on weight (22-44 lbs)
14246                                                                                                136.00
14247                                                                                                  0.09
14248                                                                                                136.00
14249                                                                                                 45-88
14250                                                                                                136.00
14251                                                                                                 45-88
14252                                                                                                136.00
14253                                                                                                 16.00
14254                                                                                                500.00
14255                                                                                                250.00
14256                                                                                                500.00
14257                                                                                                250.00
14258                                                                                                200.00
14259                                                                                                  0.45
14260                                                                                                  0.90
14261                                                                                                  1.90
14262                                                                                               1620.00
14263                                                                                                 27.00
14264                                                                                                 27.00
14265                                                                                               1620.00
14266                                                                                                272.00
14267                                                                                                227.00
14268                                                                                                272.00
14269                                                                                                  2.68
14270                                                                                                900.00
14271                                                                                                500.00
14272                                                                                                272.00
14273                                                                                                136.00
14274                                                                                                750.00
14275                                                                                                  0.20
14276                                                                                                272.00
14277                                                                                                136.00
14278                                                                                                300.00
14279                                                                                                  7.50
14280                                                                                                300.00
14281                                                                                                272.00
14282                                                                          based on weight (50-100 lbs)
14283                                                                                                  0.40
14284                                                                          based on weight (50-100 lbs)
14285                                                                                                  0.40
14286                                                                                                50-100
14287                                                                                                  0.40
14288                                                                                                  0.40
14289                                                                                                  0.40
14290                                                                                                500.00
14291                                                                                           unspecified
14292                                                                                                  0.40
14293                                                                                                100.00
14294                                                                                                500.00
14295                                                                                                272.00
14296                                                                                                272 ug
14297                                                                                 1 tablet/pill/capsule
14298                                                                                                50-100
14299                                                                                                 23.00
14300                                                                                                 75.00
14301                                                                          based on weight (50-100 lbs)
14302                                                                             based on weight (25+ lbs)
14303                                                                                                250.00
14304                                                                                                 60.00
14305                                                                                                  1.50
14306                                                                                                  3.00
14307                                                                                                  0.70
14308                                                                                                  0.35
14309                                                                                                  0.35
14310                                                                                                500.00
14311                                                                                                  0.35
14312                                                                                                125.00
14313                                                                                                  0.25
14314                                                                                                  0.35
14315                                                                                                  0.50
14316                                                                                                  1.00
14317                                                                                                  2.00
14318                                                                                                  1.00
14319                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14320                                                                                                500.00
14321                                                                                                  1.50
14322                                                                                                  3.00
14323                                                                                           application
14324                                                                                             3-4 drops
14325                                                                                                 60.00
14326                                                                                                 10.00
14327                                                                                                 60.00
14328                                                                                                 60.00
14329                                                                                                 60.00
14330                                                                                           unspecified
14331                                                                                                 10.00
14332                                                                                                 60.00
14333                                                                                                 10.00
14334                                                                         based on weight (20.1-55 lbs)
14335                                                                                                  2.50
14336                                                                                             2-3 drops
14337                                                                                                500.00
14338                                                                                                500.00
14339                                                                                                  1.00
14340                                                                                                  1.00
14341                                                                                                  1.00
14342                                                                                                 22-30
14343                                                                                                  1.00
14344                                                                                                500.00
14345                                                                                                 26.00
14346                                                                                                  1.00
14347                                                                                                250.00
14348                                                                                                 30.00
14349                                                                                                  3.00
14350                                                                                                  1.00
14351                                                                                                  1.00
14352                                                                                                  1.00
14353                                                                                                 20.00
14354                                                                                                  1.00
14355                                                                                                  1.00
14356                                                                                                  3.50
14357                                                                                                  8.00
14358                                                                                                  1.00
14359                                                                                                  0.90
14360                                                                                                272.00
14361                                                                                                300.00
14362                                                                                               1000.00
14363                                                                                                 20.00
14364                                                                                                272.00
14365                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14366                                                                                 1 tablet/pill/capsule
14367                                                                                 1 tablet/pill/capsule
14368                                                                                                  1.00
14369                                                                                                  5.00
14370                                                                                                500.00
14371                                                                                                  2.00
14372                                                                                                50-100
14373                                                                                       based on weight
14374                                                                                                500.00
14375                                                                                                50-100
14376                                                                                       based on weight
14377                                                                                                500.00
14378                                                                             based on weight (60+ lbs)
14379                                                                                                50-100
14380                                                                                       based on weight
14381                                                                                                500.00
14382                                                                                               1500.00
14383                                                                                                 23.00
14384                                                                                                 68.00
14385                                                                          based on weight (51-100 lbs)
14386                                                                          based on weight (60-120 lbs)
14387                                                                          based on weight (51-100 lbs)
14388                                                                           based on weight (24-60 lbs)
14389                                                                                                 23.00
14390                                                                                                 68.00
14391                                                                                                100.00
14392                                                                                                  1.00
14393                                                                                                 25.00
14394                                                                                                  1.00
14395                                                                                                250.00
14396                                                                                                  1.00
14397                                                                                                  1.00
14398                                                                                                  1.00
14399                                                                                                  4.00
14400                                                                                                  1.00
14401                                                                                                  1.00
14402                                                                                                227.00
14403                                                                                               1000.00
14404                                                              460 mg lufenuron, 23 mg milbemycin oxime
14405                                                                                                227 mg
14406                                                                                 1 tablet/pill/capsule
14407                                                                                                1 tube
14408                                                                          based on weight (51-100 lbs)
14409                                                                                                 44-88
14410                                                                                                  0.10
14411                                                                                                375.00
14412                                                                          based on weight (60-120 lbs)
14413                                                                           based on weight (44-88 lbs)
14414                                                                              based on weight (60 lbs)
14415                                                                                               272 mcg
14416                                                                                               1000.00
14417                                                                                                200.00
14418                                                                                                 50.00
14419                                                                                                0.4 mg
14420                                                                                 1 tablet/pill/capsule
14421                                                                                 1 tablet/pill/capsule
14422                                                                                                375.00
14423                                                                                                  0.80
14424                                                                                                 37.50
14425                                                                                                272.00
14426                                                                                           unspecified
14427                                                                                                550.00
14428                                                                                           unspecified
14429                                                                          based on weight (51-100 lbs)
14430                                                                                                500.00
14431                                                                          based on weight (51-100 lbs)
14432                                                                                       based on weight
14433                                                                                           unspecified
14434                                                                                               1 scoop
14435                                                                                                100.00
14436                                                                                                 50.00
14437                                                                                                  3.00
14438                                                                                                  0.55
14439                                                                                                 10.00
14440                                                                                                  2.50
14441                                                                                                  0.25
14442                                                                                                  2.20
14443                                                                          based on weight (51-100 lbs)
14444                                                                                           unspecified
14445                                                                                           unspecified
14446                                                                                           unspecified
14447                                                                                           unspecified
14448                                                                          based on weight (51-100 lbs)
14449                                                                          based on weight (51-100 lbs)
14450                                                                                                500.00
14451                                                                          based on weight (51-100 lbs)
14452                                                                                                500.00
14453                                                                                                 16.00
14454                                                                                                272.00
14455                                                                                       0.25 inch strip
14456                                                                                                  2.90
14457                                                                                                272.00
14458                                                                                                272.00
14459                                                                                                136.00
14460                                                                                                272.00
14461                                                                                                136.00
14462                                                                                                  5.00
14463                                                                                                272.00
14464                                                                                                136.00
14465                                                                                                272.00
14466                                                                                                272.00
14467                                                                                                 75.00
14468                                                                                                200.00
14469                                                                                               1000.00
14470                                                                                                 20.00
14471                                                                                           unspecified
14472                                                                                                  0.40
14473                                                                                           unspecified
14474                                                                                                  0.60
14475                                                                                                400.00
14476                                                                                                  0.60
14477                                                                                           unspecified
14478                                                                                                  0.80
14479                                                                                       based on weight
14480                                                                                                  0.40
14481                                                                                                 90.00
14482                                                                                                150.00
14483                                                                                                  0.80
14484                                                                                                 10.00
14485                                                                                                500.00
14486                                                                                                 75.00
14487                                                                                                  0.80
14488                                                                          based on weight (51-100 lbs)
14489                                                                          based on weight (51-100 lbs)
14490                                                                          based on weight (51-100 lbs)
14491                                                                                                  1.00
14492                                                                                                  5 mg
14493                                                                                                 10 mg
14494                                                                                                  5.00
14495                                                                          based on weight (51-100 lbs)
14496                                                                                                500.00
14497                                                                                                  5.00
14498                                                                          based on weight (51-100 lbs)
14499                                                                          based on weight (50-100 lbs)
14500                                                                                                500.00
14501                                                                                                750.00
14502                                                                                               1000.00
14503                                                                                               1000.00
14504                                                                                                  3.20
14505                                                                                                272.00
14506                                                                                                  1.00
14507                                                                                                  1.00
14508                                                                                                  1.00
14509                                                                                                  1.00
14510                                                                                                 80.00
14511                                                                                                 16.00
14512                                                                          based on weight (51-100 lbs)
14513                                                                           based on weight (60-70 lbs)
14514                                                                                                  1.20
14515                                                                                                 70.00
14516                                                                                                255.00
14517                                                                                                150.00
14518                                                                                                 80.00
14519                                                                                                 16.00
14520                                                                                                113.50
14521                                                                                                113.50
14522                                                                                                113.50
14523                                                                                                 70.00
14524                                                                                                 70.00
14525                                                                                                113.50
14526                                                                                                136.00
14527                                                                                                 45-88
14528                                                                                         1 bottle/vial
14529                                                                                 1 tablet/pill/capsule
14530                                                                                                  0.30
14531                                                                                                  0.30
14532                                                                                                272.00
14533                                                                                                136.00
14534                                                                                                272.00
14535                                                                                                  0.30
14536                                                                                                136.00
14537                                                                                                272.00
14538                                                                                                  0.30
14539                                                                                                136.00
14540                                                                                                  0.20
14541                                                                                                  0.20
14542                                                                                                 20.00
14543                                                                                                  0.20
14544                                                                                                200.00
14545                                                                                                 20.00
14546                                                                                                  0.30
14547                                                                                 1 tablet/pill/capsule
14548                                                                                                120.00
14549                                                                                                120.00
14550                                                                                                200.00
14551                                                                                                500.00
14552                                                                                                113.50
14553                                                                                                  1.00
14554                                                                                                  1.00
14555                                                                                                  1.00
14556                                                                                                  1.00
14557                                                                                                  1.00
14558                                                                                                 15.00
14559                                                                                                  1.00
14560                                                                                               1620.00
14561                                                                                                 16.00
14562                                                                                                85-132
14563                                                                                           unspecified
14564                                                                                                272.00
14565                                                                                                272.00
14566                                                                                               1600.00
14567                                                                                                460.00
14568                                                                                                272.00
14569                                                                                                  9.70
14570                                                                                                 75.00
14571                                                                                                300.00
14572                                                                                                 75.00
14573                                                                                                 23.00
14574                                                                                                460.00
14575                                                                                                375.00
14576                                                                          based on weight (51-100 lbs)
14577                                                                                                 45-88
14578                                                                             based on weight (25+ lbs)
14579                                                                                                170.00
14580                                                                                                200.00
14581                                                                                                  1.00
14582                                                                         based on weight (44.1-88 lbs)
14583                                                                          based on weight (51-100 lbs)
14584                                                                         based on weight (44.1-88 lbs)
14585                                                                          based on weight (51-100 lbs)
14586                                                                         based on weight (44.1-88 lbs)
14587                                                                          based on weight (51-100 lbs)
14588                                                                         based on weight (44.1-88 lbs)
14589                                                                                                 80.00
14590                                                                                               1000.00
14591                                                                                                750.00
14592                                                                                                 75.00
14593                                                                                                120.00
14594                                                                                                  1.00
14595                                                                                                100.00
14596                                                                                                  1.00
14597                                                                                                136.00
14598                                                                                                 10.00
14599                                                                                                272.00
14600                                                                                                 10.00
14601                                                                                           unspecified
14602                                                                                                 23.00
14603                                                                                                 80.00
14604                                                                                                 10.00
14605                                                                 25 milbemycin oxime, 228 praziquantel
14606                                                                                                 80.00
14607                                                                                                 10.00
14608                                                           23 mg milbemycin oxime, 228 mg praziquantel
14609                                                                                                 10.00
14610                                                                                                500.00
14611                                                                                                  1.00
14612                                                                                                 10.00
14613                                                                                                500.00
14614                                                                                                 75.00
14615                                                                                                113.50
14616                                                                                                  2.00
14617                                                                                                250.00
14618                                                                                                500.00
14619                                                                                                227.00
14620                                                                                                500.00
14621                                                                                                  2.25
14622                                                                                                272.00
14623                                                                                                 45-88
14624                                                                                                  2.00
14625                                                                                                  8.00
14626                                                                                                 20.00
14627                                                                                                272.00
14628                                                                                                272.00
14629                                                                                                200.00
14630                                                                                                272.00
14631                                                                                                 44-88
14632                                                                                                 15.00
14633                                                                                                 20.00
14634                                                                                                 75.00
14635                                                                                                  4.00
14636                                                                                                272.00
14637                                                                           based on weight (44-88 lbs)
14638                                                                                                500.00
14639                                                                                                150.00
14640                                                                                                150.00
14641                                                                                                204.00
14642                                                                                                500.00
14643                                                                                                  3.00
14644                                                                                                  2.00
14645                                                                                              27, 1620
14646                                                                                                262.00
14647                                                                                                136.00
14648                                                                                                204.00
14649                                                                                               1000 mg
14650                                                                                                  1 ml
14651                                                                                                272.00
14652                                                                                                136.00
14653                                                                                               1000.00
14654                                                                                          0.1%, 1%, 2%
14655                                                                                                750.00
14656                                                           23 mg milbemycin oxime, 228 mg praziquantel
14657                                                                                                136 mg
14658                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14659                                                                                                500 mg
14660                                                                                                750 mg
14661                                                                                               1000.00
14662                                                                                                 10.00
14663                                                                                                  3.75
14664                                                                          based on weight (50-100 lbs)
14665                                                                          based on weight (60-121 lbs)
14666                                                                                               1000.00
14667                                                                                                 10.00
14668                                                                                               1000.00
14669                                                                                                 10.00
14670                                                                                               1000.00
14671                                                                                                  7.50
14672                                                                                                 16.00
14673                                                                                                200.00
14674                                                                                                 23.00
14675                                                                                                136.00
14676                                                                                                  3.75
14677                                                                                                750.00
14678                                                                                                500.00
14679                                                                                                 16.00
14680                                                                                                  1.00
14681                                                                                                  1.50
14682                                                                                                  3.75
14683                                                                                                300.00
14684                                                                                                  3.75
14685                                                                                                  0.60
14686                                                                                                  1.00
14687                                                                                                 16.00
14688                                                                                                  3.75
14689                                                                                                  4.00
14690                                                                                                300.00
14691                                                                                                  3.75
14692                                                                                                300.00
14693                                                                                                  3.25
14694                                                                                                500.00
14695                                                                                                200.00
14696                                                                                                200.00
14697                                                                                          small amount
14698                                                                                                 37.50
14699                                                                                       based on weight
14700                                                                          based on weight (50-100 lbs)
14701                                                                                       based on weight
14702                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14703                                                                                                400.00
14704                                                                                                 60.00
14705                                                                                                272.00
14706                                                                                                320.00
14707                                                                                                750.00
14708                                                                                                 23.00
14709                                                                                                 50.00
14710                                                                                                  1.00
14711                                                                          based on weight (51-100 lbs)
14712                                                                           based on weight (56-95 lbs)
14713                                                                              based on weight (85 lbs)
14714                                                                                                750.00
14715                                                                                               1000.00
14716                                                                                                320.00
14717                                                                                                500.00
14718                                                                                                  3.00
14719                                                                                                  1.00
14720                                                                          based on weight (51-100 lbs)
14721                                                                           based on weight (56-95 lbs)
14722                                                                          based on weight (51-100 lbs)
14723                                                                          based on weight (51-100 lbs)
14724                                                                                                  2.00
14725                                                                                                 75.00
14726                                                                           based on weight (45-88 lbs)
14727                                                                                                228 mg
14728                                                                                               23, 228
14729                                                                                               1000.00
14730                                                           23 mg milbemycin oxime, 228 mg praziquantel
14731                                                                                               1000 mg
14732                                                                                                  0.40
14733                                                           23 mg milbemycin oxime, 228 mg praziquantel
14734                                                                                               1000 mg
14735                                                                                                  0.40
14736                                                                                                  0.40
14737                                                                          based on weight (51-100 lbs)
14738                                                                           based on weight (45-88 lbs)
14739                                                                                                  2.40
14740                                                                                                  0.10
14741                                                                                                 20.00
14742                                                                                                750.00
14743                                                                                                250.00
14744                                                                                       based on weight
14745                                                                                                 23.00
14746                                                                                                 44-88
14747                                                                                                 23.00
14748                                                                                            5-10 drops
14749                                                                                                500.00
14750                                                                                                300.00
14751                                                                                                500.00
14752                                                                                                 50.00
14753                                                                                                150.00
14754                                                                             based on weight (22+ lbs)
14755                                                                          based on weight (51-100 lbs)
14756                                                                                            5-10 drops
14757                                                                                            5-10 drops
14758                                                                                                250 mg
14759                                                                                                 50 mg
14760                                                                          based on weight (51-100 lbs)
14761                                                                                                 60.00
14762                                                                                                  1.00
14763                                                                                 1 tablet/pill/capsule
14764                                                                                          small amount
14765                                                                                                 30.00
14766                                                                                                 75.00
14767                                                                                                 75.00
14768                                                                                                  1.00
14769                                                                                                200.00
14770                                                                                                  1.00
14771                                                                                                  1.00
14772                                                                                                272.00
14773                                                                                                136.00
14774                                                                                                 75.00
14775                                                                                           unspecified
14776                                                                                                200.00
14777                                                                                           unspecified
14778                                                                                           unspecified
14779                                                                                                 31.00
14780                                                                                                 75.00
14781                                                                                                  1.00
14782                                                                                                272.00
14783                                                                                                136.00
14784                                                                                                272.00
14785                                                                                                 80.00
14786                                                                                                 16.00
14787                                                                                                200.00
14788                                                                                                200.00
14789                                                                                                136.00
14790                                                                                                272.00
14791                                                                                                136.00
14792                                                                                                 16.00
14793                                                                                                100.00
14794                                                                                                100.00
14795                                                                                                 75.00
14796                                                                                                  0.50
14797                                                                                                  1.00
14798                                                                                                  1.00
14799                                                                                                200.00
14800                                                                                                  1.00
14801                                                                                                 16.00
14802                                                                                                 80.00
14803                                                                                                100.00
14804                                                                                                  1.00
14805                                                                                                  1.00
14806                                                                                                  1.00
14807                                                                                                 16.00
14808                                                                                                100.00
14809                                                                                                 75.00
14810                                                                                                300.00
14811                                                                                                500.00
14812                                                                                                 16.00
14813                                                                                                100.00
14814                                                                                                  1.00
14815                                                                                                 75.00
14816                                                                                                200.00
14817                                                                                                800.00
14818                                                                                                500.00
14819                                                                                                  1.00
14820                                                                                                 80.00
14821                                                                                                  3.40
14822                                                                                                 15.00
14823                                                                                                  1.40
14824                                                                                                 75.00
14825                                                                                              10000.00
14826                                                                                                  0.63
14827                                                                                                250.00
14828                                                                                                 32.10
14829                                                                                                 20.00
14830                                                                                                 80.00
14831                                                                                                 30.00
14832                                                                                                 20.00
14833                                                                                              350, 900
14834                                                                                              27, 1620
14835                                                                                                  9.80
14836                                                                                                250.00
14837                                                                                                250.00
14838                                                                                              350, 900
14839                                                                                               23, 228
14840                                                                                                  2.50
14841                                                                                                272.00
14842                                                                                                 23.00
14843                                                                                               1620.00
14844                                                                                                  1.00
14845                                                                                                  1.00
14846                                                                                                  5.00
14847                                                                                                  1.00
14848                                                                                                  1.00
14849                                                                                                100.00
14850                                                                                                  4.00
14851                                                                                                  2.00
14852                                                                                                 60.00
14853                                                                                                  3.00
14854                                                                                                500.00
14855                                                                                                500.00
14856                                                                                                 20.00
14857                                                                                           unspecified
14858                                                                                               23, 460
14859                                                                                                 20.00
14860                                                                                                170.00
14861                                                                                                50-100
14862                                                                                           unspecified
14863                                                                                           unspecified
14864                                                                        based on weight (50.1-100 lbs)
14865                                                                                                 23.00
14866                                                                                                  0.48
14867                                                                                         23 mg, 228 mg
14868                                                                                                900.00
14869                                                                                                  1.00
14870                                                                          based on weight (50-100 lbs)
14871                                                                          based on weight (50-100 lbs)
14872                                                                                                875.00
14873                                                                                                 50.00
14874                                                                                                50-100
14875                                                                                                50-100
14876                                                                                                 60.00
14877                                                                                                500.00
14878                                                                                           unspecified
14879                                                                                                200.00
14880                                                                                                 37.50
14881                                                                                                136.00
14882                                                                                                136.00
14883                                                                                 1 tablet/pill/capsule
14884                                                                                 1 tablet/pill/capsule
14885                                                                                                 22.70
14886                                                                                                250.00
14887                                                                                                170.00
14888                                                                                                454.00
14889                                                                                               1000.00
14890                                                                                                 11.35
14891                                                                                                 85.00
14892                                                                                                125.00
14893                                                                                                227.00
14894                                                                                                272.00
14895                                                                                                136.00
14896                                                                                                500.00
14897                                                                                                272.00
14898                                                                                                136.00
14899                                                                                           unspecified
14900                                                                                                300.00
14901                                                                                                 75.00
14902                                                                                                  0.50
14903                                                                                                100.00
14904                                                                                                500.00
14905                                                                                                120.00
14906                                                                                               1700.00
14907                                                                                                 30 mg
14908                                                                                                500.00
14909                                                                                                500.00
14910                                                                                                  7.50
14911                                                                                              27, 1620
14912                                                                                                500.00
14913                                                              27 mg milbemycin oxime, 1620 mg spinosad
14914                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
14915                                                                                                136.00
14916                                                                                                112.50
14917                                                                                                272.00
14918                                                                                                272.00
14919                                                                                                  9.80
14920                                                                                                 90.00
14921                                                                                                900.00
14922                                                                                               3540.00
14923                                                                                                 75.00
14924                                                                                                 23.00
14925                                                                                                 80.00
14926                                                                                                500.00
14927                                                                                                 10.00
14928                                                                                                60-120
14929                                                                                                 50.00
14930                                                                                                150.00
14931                                                                                                 10.00
14932                                                                                                 10.00
14933                                                                                                 10.00
14934                                                                          based on weight (60-120 lbs)
14935                                                                                                 16.00
14936                                                                                                 10.00
14937                                                                                              12000.00
14938                                                                                                  3.00
14939                                                                                                200.00
14940                                                                                               1000.00
14941                                                                                                500.00
14942                                                                                                  0.50
14943                                                                           based on weight (44-88 lbs)
14944                                                                                           unspecified
14945                                                                                                 10.00
14946                                                                                                  1.00
14947                                                                                                  1.00
14948                                                                                               1000.00
14949                                                                                           unspecified
14950                                                                                                 17.00
14951                                                                                              20000.00
14952                                                                                                 90.00
14953                                                                                                  1.00
14954                                                                                                 80.00
14955                                                                                                  1.00
14956                                                                                                  1.00
14957                                                                                                100.00
14958                                                                                                 90.00
14959                                                                                                562.50
14960                                                                                                 90.00
14961                                                                                                  5.00
14962                                                                                                 60.00
14963                                                                                                  1.00
14964                                                                                                 80.00
14965                                                                                                 60.00
14966                                                                                                272.00
14967                                                                                                 50.00
14968                                                                                                 50.00
14969                                                                                             50 mcg/kg
14970                                                                                                 50.00
14971                                                                                                  1.00
14972                                                                           based on weight (41-60 lbs)
14973                                                                                           unspecified
14974                                                                           based on weight (41-60 lbs)
14975                                                                           based on weight (41-60 lbs)
14976                                                                                                100 mg
14977                                                                                                  1 ml
14978                                                                                 1 tablet/pill/capsule
14979                                                                                                 75 mg
14980                                                                                                  1.00
14981                                                                           based on weight (40-60 lbs)
14982                                                                                           unspecified
14983                                                                                        1 pack/package
14984                                                                                                 37.50
14985                                                                                                500.00
14986                                                                                                300.00
14987                                                                                                250.00
14988                                                                                                 15.00
14989                                                                                                 50.00
14990                                                                                                 20.00
14991                                                                                                272.00
14992                                                                                                 50.00
14993                                                                                                 25.00
14994                                                                                                 10.00
14995                                                                                                600.00
14996                                                                                                 13.00
14997                                                                                                 50.00
14998                                                                                                 50.00
14999                                                                                             50 mcg/kg
15000                                                                                                 50.00
15001                                                                          based on weight (50-100 lbs)
15002                                                                           based on weight (45-88 lbs)
15003                                                                                                  2.68
15004                                                                             based on weight (55+ lbs)
15005                                                                           based on weight (45-88 lbs)
15006                                                                          based on weight (51-100 lbs)
15007                                                                          based on weight (50-100 lbs)
15008                                                                             based on weight (55+ lbs)
15009                                                                           based on weight (45-88 lbs)
15010                                                                           based on weight (45-88 lbs)
15011                                                                        based on weight (50.1-100 lbs)
15012                                                                                                  0.60
15013                                                                                                 20.00
15014                                                                                                  0.60
15015                                                                                                  1.40
15016                                                                                                  1.30
15017                                                                          based on weight (50-100 lbs)
15018                                                                                                 50.00
15019                                                                                                 75.00
15020                                                                                                375.00
15021                                                                          based on weight (50-100 lbs)
15022                                                                           based on weight (44-88 lbs)
15023                                                                           based on weight (45-88 lbs)
15024                                                                                                 23.00
15025                                                                                                1 tube
15026                                                                                                1 tube
15027                                                                           based on weight (45-88 lbs)
15028                                                                        based on weight (50.1-100 lbs)
15029                                                                        based on weight (50.1-100 lbs)
15030                                                                           based on weight (44-88 lbs)
15031                                                                                                250.00
15032                                                                                                136.00
15033                                                                                                  0.60
15034                                                                                                  0.70
15035                                                                                           unspecified
15036                                                                                           unspecified
15037                                                                                                  0.45
15038                                                                                                 60.00
15039                                                                                                500.00
15040                                                                                                 75.00
15041                                                                                                  1.30
15042                                                                                                 60.00
15043                                                                                                  0.65
15044                                                                                                 60.00
15045                                                                                       based on weight
15046                                                                                                810.00
15047                                                                                                 50.00
15048                                                                          based on weight (50-100 lbs)
15049                                                                                                200.00
15050                                                                                                  1.00
15051                                                                                                250.00
15052                                                                                                  8.00
15053                                                                                                500.00
15054                                                                                                  8.00
15055                                                                                           unspecified
15056                                                                                                 20.00
15057                                                                                               1000.00
15058                                                                                                272.00
15059                                                                          based on weight (51-100 lbs)
15060                                                                                                272.00
15061                                                                          based on weight (51-100 lbs)
15062                                                                                                272.00
15063                                                                                                  2.68
15064                                                                                                272.00
15065                                                                                                 20.00
15066                                                                                                 16.00
15067                                                                                                272.00
15068                                                                                               1000.00
15069                                                                                                500.00
15070                                                                                                 60.00
15071                                                                                                204.00
15072                                                                                                272.00
15073                                                                                                200.00
15074                                                                                                100.00
15075                                                                                                272.00
15076                                                                                                272.00
15077                                                                                           unspecified
15078                                                                                                100.00
15079                                                                                                  2.00
15080                                                                                                  2.00
15081                                                                                                  0.50
15082                                                                                                272.00
15083                                                                                                  1.00
15084                                                                                                  1.30
15085                                                                                                 13.00
15086                                                                                                  1.60
15087                                                                                                  1.61
15088                                                                                                  7.10
15089                                                                                                  1.00
15090                                                                                                  1.80
15091                                                                                                  1.00
15092                                                                                                300 mg
15093                                                                                                360.00
15094                                                                                                500.00
15095                                                                                                 75.00
15096                                                                                                320.00
15097                                                                                                385.00
15098                                                                                                  4.00
15099                                                                                                  8.00
15100                                                                                                130.00
15101                                                                                                  1.80
15102                                                                                          small amount
15103                                                                                                300.00
15104                                                                                                  1.00
15105                                                                                                  7.00
15106                                                                                                  1.60
15107                                                                                                  1.70
15108                                                                                                  1.00
15109                                                                                                  7.00
15110                                                                                                  8.00
15111                                                                                                150.00
15112                                                                                                150.00
15113                                                                                                300.00
15114                                                                                                  8.00
15115                                                                                                150.00
15116                                                                                                300.00
15117                                                                                                 75.00
15118                                                                                                100.00
15119                                                                                                500.00
15120                                                                                                 25.00
15121                                                                                                480.00
15122                                                                                               1500.00
15123                                                                                                960.00
15124                                                                                                  1.00
15125                                                                                                  1.00
15126                                                                                                960.00
15127                                                                                               1500.00
15128                                                                                                  1.00
15129                                                                                             6-8 drops
15130                                                                                 1 tablet/pill/capsule
15131                                                                                 1 tablet/pill/capsule
15132                                                                                 1 tablet/pill/capsule
15133                                                                                                  8.00
15134                                                                                                 15.00
15135                                                                                                 50.00
15136                                                                                                 50.00
15137                                                                                              2 sprays
15138                                                                                                200.00
15139                                                                          based on weight (51-100 lbs)
15140                                                                           based on weight (45-88 lbs)
15141                                                                                                  0.70
15142                                                                                                400.00
15143                                                                                                250.00
15144                                                                           based on weight (26-50 lbs)
15145                                                                           based on weight (45-88 lbs)
15146                                                                                                 16.00
15147                                                                                                200.00
15148                                                                                                 16.00
15149                                                                                                 50.00
15150                                                                                       based on weight
15151                                                                                       based on weight
15152                                                                                                 16.00
15153                                                                                                500.00
15154                                                                                                500.00
15155                                                                                           unspecified
15156                                                                                                437.00
15157                                                                                                  2.00
15158                                                                                                200.00
15159                                                                                                300.00
15160                                                                                                 75.00
15161                                                                                               1000.00
15162                                                                                                600.00
15163                                                                                                 75.00
15164                                                                                                200.00
15165                                                                                                600.00
15166                                                                                                 75.00
15167                                                                                                272.00
15168                                                                                                227.00
15169                                                                                                125.00
15170                                                                                 1 tablet/pill/capsule
15171                                                                                                375.00
15172                                                                                                100 mg
15173                                                                                                400 mg
15174                                                                                                100 mg
15175                                                                                                  1.50
15176                                                                                                200.00
15177                                                                                                200.00
15178                                                                                                 66.00
15179                                                                           based on weight (25-75 lbs)
15180                                                                                                  0.67
15181                                                                                                  2.40
15182                                                                                                  1.20
15183                                                                                                  2.00
15184                                                                                                750 mg
15185                                                                                                500.00
15186                                                                                                 10.00
15187                                                                                                375.00
15188                                                                                                200.00
15189                                                                                                  1.00
15190                                                                                                200.00
15191                                                                                                300.00
15192                                                                                                600.00
15193                                                                                                272.00
15194                                                                                               1000.00
15195                                                                                               1000.00
15196                                                                                           application
15197                                                                                          small amount
15198                                                                                                272.00
15199                                                                                                272.00
15200                                                                                                  2.68
15201                                                                                                  0.02
15202                                                                                               272 mcg
15203                                                                                               272 mcg
15204                                                                                                 75.00
15205                                                                                                272.00
15206                                                                                                 50.00
15207                                                                                                272.00
15208                                                                                                272.00
15209                                                                           based on weight (44-88 lbs)
15210                                                                                                 50.00
15211                                                                                                  6.00
15212                                                                                                 50.00
15213                                                                                           unspecified
15214                                                                                                 20.00
15215                                                                                                300.00
15216                                                                                                 50.00
15217                                                                                                 20.00
15218                                                                                                300.00
15219                                                                                                 50.00
15220                                                                                                  1.00
15221                                                                                                100.00
15222                                                                                                 40.00
15223                                                                                                500.00
15224                                                                                                  1.00
15225                                                                                                  1.00
15226                                                                                                227.00
15227                                                                                                  1.00
15228                                                                                                  1.00
15229                                                                                                 20.00
15230                                                                                                500.00
15231                                                                                                 50.00
15232                                                                                                 23.00
15233                                                                                                136.00
15234                                                                                                 23.00
15235                                                                                                136.00
15236                                                                                                250.00
15237                                                                                                312.50
15238                                                                                                  5.50
15239                                                                                                 23.00
15240                                                                                                 68.00
15241                                                                                                500.00
15242                                                                                                136.00
15243                                                                                                222.00
15244                                                                                                0.3, 1
15245                                                                                                150.00
15246                                                                                                300.00
15247                                                                                                  2.00
15248                                                                                                272.00
15249                                                                                                272.00
15250                                                                                       based on weight
15251                                                                                                  1.00
15252                                                                                               4 drops
15253                                                                                                227 mg
15254                                                                                                  0.50
15255                                                                                                  4.00
15256                                                                                       based on weight
15257                                                                                                  0.50
15258                                                                                                  0.50
15259                                                                              1.25 tablet/pill/capsule
15260                                                                                                 60.00
15261                                                                                                  6.00
15262                                                                                                100.00
15263                                                                                                  1.14
15264                                                                                                  0.50
15265                                                                                                272.00
15266                                                                                                 68.00
15267                                                                                                  0.50
15268                                                                          based on weight (50-100 lbs)
15269                                                                           based on weight (24-60 lbs)
15270                                                                                                  0.50
15271                                                                                                450.00
15272                                                                                                 20.00
15273                                                                                                450.00
15274                                                                                           unspecified
15275                                                                                                 60.00
15276                                                                                                  1.00
15277                                                                                               1000.00
15278                                                                                                  2.00
15279                                                                                                  1.00
15280                                                                                                200.00
15281                                                                                                720.00
15282                                                                                                  1.00
15283                                                                                                720.00
15284                                                                                                500.00
15285                                                                                                100.00
15286                                                                                                100.00
15287                                                                                                750.00
15288                                                                                                  3.00
15289                                                                                                500.00
15290                                                                                                500.00
15291                                                                                                850.00
15292                                                                                                375.00
15293                                                                                                250.00
15294                                                                                                270.00
15295                                                                                                  1.00
15296                                                                                                 75.00
15297                                                                                                  1.00
15298                                                                                                200.00
15299                                                                                                 10.00
15300                                                                                                  1.00
15301                                                                                                500.00
15302                                                                                                340.00
15303                                                                                                  4.00
15304                                                                                                  3.50
15305                                                                                                 70.00
15306                                                                                                  0.40
15307                                                                                                 50.00
15308                                                                          based on weight (50-100 lbs)
15309                                                                        based on weight (60.1-121 lbs)
15310                                                                          based on weight (50-100 lbs)
15311                                                                                       based on weight
15312                                                                                                  0.40
15313                                                                                                 50.00
15314                                                                          based on weight (50-100 lbs)
15315                                                                                       based on weight
15316                                                                                                  0.40
15317                                                                          based on weight (50-100 lbs)
15318                                                                                                  0.40
15319                                                                                 1 tablet/pill/capsule
15320                                                                                                  0.40
15321                                                                                       based on weight
15322                                                                                       based on weight
15323                                                                                           unspecified
15324                                                                                                  0.40
15325                                                                                                  0.40
15326                                                                                                375.00
15327                                                                                                  0.40
15328                                                                                                 60.00
15329                                                                                                 20.00
15330                                                                                                 60.00
15331                                                                                                  0.40
15332                                                                                           unspecified
15333                                                                                        1 pack/package
15334                                                                                               1 spray
15335                                                                                                 15.00
15336                                                                                                 15.00
15337                                                                                                60-120
15338                                                                                                  1.00
15339                                                                                              27, 1620
15340                                                                                               1620.00
15341                                                                                                 75.00
15342                                                                                                 10.00
15343                                                                                               1620.00
15344                                                                                                 15.00
15345                                                                                              27, 1620
15346                                                                                                 15.00
15347                                                                                                 30.00
15348                                                                                              27, 1620
15349                                                                                                 15.00
15350                                                                                                  1.00
15351                                                                                                900.00
15352                                                                                                 10.60
15353                                                                                                 10.00
15354                                                                                                  2.00
15355                                                                                                  1.00
15356                                                                                                 15.00
15357                                                                                                 10.00
15358                                                                                                900.00
15359                                                                                                  9.00
15360                                                                                                125 mg
15361                                                                          based on weight (50-100 lbs)
15362                                                                                           unspecified
15363                                                                                             3-5 drops
15364                                                                                                500.00
15365                                                                                           unspecified
15366                                                                          based on weight (50-100 lbs)
15367                                                                                           unspecified
15368                                                                                                 23.00
15369                                                                                                 23.00
15370                                                                                                136.00
15371                                                                                                 23.00
15372                                                                                                  0.09
15373                                                                          based on weight (51-100 lbs)
15374                                                                           based on weight (44-88 lbs)
15375                                                                          based on weight (51-100 lbs)
15376                                                                           based on weight (44-88 lbs)
15377                                                                          based on weight (51-100 lbs)
15378                                                                           based on weight (45-88 lbs)
15379                                                                                                100 mg
15380                                                                                                 20.00
15381                                                                                                  1.00
15382                                                                                                  2.60
15383                                                                                           unspecified
15384                                                                                           unspecified
15385                                                                                                500.00
15386                                                                                                300.00
15387                                                                                                100.00
15388                                                                                                 50.00
15389                                                                                                250.00
15390                                                                                                 60.00
15391                                                                                                 23.00
15392                                                                                                 40.00
15393                                                                                                 20.00
15394                                                                                                272.00
15395                                                                                                  9.80
15396                                                                                                 50.00
15397                                                                                                272.00
15398                                                                                                 24.00
15399                                                                                                272.00
15400                                                                                                  5.00
15401                                                                                                 50.00
15402                                                                                          small amount
15403                                                                                                 30.00
15404                                                                                                500.00
15405                                                                                                 10.00
15406                                                                                                500.00
15407                                                                                                272.00
15408                                                                                                375.00
15409                                                                                                250.00
15410                                                                                                600.00
15411                                                                                                  3.00
15412                                                                                             22.7, 272
15413                                                                                                375.00
15414                                                                                                 48.00
15415                                                                                                600.00
15416                                                                                                  3.00
15417                                                                                                272.00
15418                                                                                                272.00
15419                                                                                                 20.00
15420                                                                                                132.00
15421                                                                                                375.00
15422                                                                                                 10.00
15423                                                                                                 10.00
15424                                                                                                272.00
15425                                                                                                250.00
15426                                                                                                 48.00
15427                                                                                                 50.00
15428                                                                                                250.00
15429                                                                                                 50.00
15430                                                                                                 20.00
15431                                                                                                 10.00
15432                                                                                                 60.00
15433                                                                                                 68.00
15434                                                                                                 16.08
15435                                                                                                  7.00
15436                                                                                                 30.00
15437                                                                                                250.00
15438                                                                                                 30.00
15439                                                                                                  7.00
15440                                                                                                  1.00
15441                                                                                           unspecified
15442                                                                                                  1.00
15443                                                                                                300.00
15444                                                                                                  5.00
15445                                                                                           unspecified
15446                                                                                                 20.00
15447                                                                                                272.00
15448                                                                                 1 tablet/pill/capsule
15449                                                                                                272.00
15450                                                                                                272.00
15451                                                                          based on weight (51-100 lbs)
15452                                                                                                750.00
15453                                                                                           unspecified
15454                                                                                           unspecified
15455                                                                                                50-100
15456                                                                                                50-100
15457                                                                                                 75.00
15458                                                                                                 75.00
15459                                                                                                200.00
15460                                                                                                 75.00
15461                                                                                                 75.00
15462                                                                                                625.00
15463                                                                                                 20.00
15464                                                                                                272.00
15465                                                                                                300.00
15466                                                                                                  0.50
15467                                                                                                750.00
15468                                                                                                272.00
15469                                                                                                136.00
15470                                                                                                  1.00
15471                                                                                                500.00
15472                                                                                                250.00
15473                                                                                                 16.00
15474                                                                                                272.00
15475                                                                                                136.00
15476                                                                                                 16.00
15477                                                                                                  1.00
15478                                                                                                500.00
15479                                                                                                250.00
15480                                                                                                200.00
15481                                                                                                272.00
15482                                                                                                136.00
15483                                                                                                 16.00
15484                                                                                                  1.00
15485                                                                                                272.00
15486                                                                                                136.00
15487                                                                                                272.00
15488                                                                                                136.00
15489                                                                                                  0.57
15490                                                                                                 16.00
15491                                                                                                150.00
15492                                                                                               1000.00
15493                                                                                                400.00
15494                                                                                                272.00
15495                                                                                                136.00
15496                                                                                                900.00
15497                                                                                                100.00
15498                                                                                                  2.00
15499                                                                                                272.00
15500                                                                                                136.00
15501                                                                                                 20.00
15502                                                                                                300.00
15503                                                                                                150.00
15504                                                                                                500.00
15505                                                                                                  1.00
15506                                                                                                200.00
15507                                                                                                  1.00
15508                                                                                                150.00
15509                                                                                                272.00
15510                                                                                                272.00
15511                                                                                                272.00
15512                                                                         based on weight (44.1-88 lbs)
15513                                                                                           unspecified
15514                                                                                                272.00
15515                                                                         based on weight (44.1-88 lbs)
15516                                                                                                250.00
15517                                                                                                136.00
15518                                                                                                  1.00
15519                                                                                                272.00
15520                                                                                               1000.00
15521                                                                                                272.00
15522                                                                                                 50.00
15523                                                                                                 50.00
15524                                                                                 1 tablet/pill/capsule
15525                                                                                                272.00
15526                                                                                               1000.00
15527                                                                                                50-100
15528                                                                                               23, 228
15529                                                                                               1000.00
15530                                                                           based on weight (56-95 lbs)
15531                                                                                               23, 228
15532                                                                                               1000.00
15533                                                                              based on weight (25 lbs)
15534                                                                                                 75.00
15535                                                                                                 75.00
15536                                                                                                300.00
15537                                                                                                 50.00
15538                                                                                                 15.00
15539                                                                                                 75.00
15540                                                                                                500.00
15541                                                                                                750.00
15542                                                                                                 60.00
15543                                                                                                  3.00
15544                                                                                                 75.00
15545                                                                                                 21-55
15546                                                                                                136.00
15547                                                                                                  4.40
15548                                                                                                227.00
15549                                                                                                113.50
15550                                                                                                 50.00
15551                                                                              based on weight (50 lbs)
15552                                                                           based on weight (44-88 lbs)
15553                                                                                                272.00
15554                                                                                       based on weight
15555                                                                                       based on weight
15556                                                                                       based on weight
15557                                                                                                150.00
15558                                                                                                 50-75
15559                                                                                                800.00
15560                                                                                              45327.00
15561                                                                                                  2.20
15562                                                                                                  3.00
15563                                                                                       0.25 inch strip
15564                                                                                                375.00
15565                                                                                                136.00
15566                                                                                                 30.00
15567                                                                                                 15.00
15568                                                                                                100.00
15569                                                                                                 50.00
15570                                                                                                  0.30
15571                                                                                                500.00
15572                                                                                                 23.00
15573                                                                                               1000.00
15574                                                                                                  1.00
15575                                                                                                375.00
15576                                                                                                  1.00
15577                                                                                                  6.00
15578                                                                                                125.00
15579                                                                                                125.00
15580                                                                                                 50.00
15581                                                                                           unspecified
15582                                                                                                 50 mg
15583                                                                                                250 mg
15584                                                                                             4-6 drops
15585                                                                          based on weight (51-100 lbs)
15586                                                                           based on weight (45-88 lbs)
15587                                                                                                 50 mg
15588                                                                                                 45-88
15589                                                                          based on weight (51-100 lbs)
15590                                                                          based on weight (51-100 lbs)
15591                                                                              based on weight (77 lbs)
15592                                                                              based on weight (77 lbs)
15593                                                                          based on weight (51-100 lbs)
15594                                                                        based on weight (60.1-121 lbs)
15595                                                                                                 18.00
15596                                                                                                 75.00
15597                                                                          based on weight (51-100 lbs)
15598                                                                          based on weight (60-121 lbs)
15599                                                                                           application
15600                                                                          based on weight (51-100 lbs)
15601                                                                         based on weight (44.1-88 lbs)
15602                                                                                                150 mg
15603                                                                                           unspecified
15604                                                                                           unspecified
15605                                                                                                150.00
15606                                                                                               1000.00
15607                                                                                                200.00
15608                                                                                                 75.00
15609                                                                                                300.00
15610                                                                                                300.00
15611                                                                                                  5.00
15612                                                                                                272.00
15613                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15614                                                                                               3 drops
15615                                                                                                  3.00
15616                                                                                               272 mcg
15617                                                                                                272.00
15618                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15619                                                                                                  0.91
15620                                                                                                 23.00
15621                                                                                                500.00
15622                                                                                                500.00
15623                                                                                                 50.00
15624                                                                                                 50.00
15625                                                                                                775.00
15626                                                                                                250.00
15627                                                                                                 23.00
15628                                                                                                500.00
15629                                                                                                 75.00
15630                                                                                                750.00
15631                                                                                                200.00
15632                                                                                               1000.00
15633                                                                                              tapering
15634                                                                                                 23.00
15635                                                                                                 23.00
15636                                                                          based on weight (51-100 lbs)
15637                                                                                                204.00
15638                                                                                                400.00
15639                                                                                                100.00
15640                                                                                                200.00
15641                                                                                                400.00
15642                                                                                                100.00
15643                                                                                                500.00
15644                                                                                                 10.00
15645                                                                                                  2.00
15646                                                                                                250.00
15647                                                                                                200.00
15648                                                                                                200.00
15649                                                                          based on weight (51-100 lbs)
15650                                                                          based on weight (89-132 lbs)
15651                                                                                                200.00
15652                                                                                                  5.00
15653                                                                                                 50.00
15654                                                                                                 10.00
15655                                                                                                 10.00
15656                                                                                                 56.75
15657                                                                                                102.00
15658                                                                                                272.00
15659                                                                                                  1.00
15660                                                                                                  5.00
15661                                                                          based on weight (51-100 lbs)
15662                                                                                                1 drop
15663                                                                          based on weight (89-132 lbs)
15664                                                                                                100.00
15665                                                                                                  1.00
15666                                                                                                  5.00
15667                                                                                          small amount
15668                                                                                                  2.00
15669                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15670                                                                                                120 mg
15671                                                                                                 15.00
15672                                                                          based on weight (51-100 lbs)
15673                                                                            based on weight (1-25 lbs)
15674                                                                          based on weight (88-132 lbs)
15675                                                                                                1 tube
15676                                                                                                120.00
15677                                                                                                  1.00
15678                                                                                               1000.00
15679                                                                                                  1.00
15680                                                                                                  1.00
15681                                                                                               1000.00
15682                                                                                                300.00
15683                                                                                                  1.00
15684                                                                                                900.00
15685                                                                                                 75.00
15686                                                                                                 95.00
15687                                                                                                100.00
15688                                                                                                  1.00
15689                                                                          based on weight (60-120 lbs)
15690                                                                          based on weight (60-120 lbs)
15691                                                                                 1 tablet/pill/capsule
15692                                                                                 1 tablet/pill/capsule
15693                                                                          based on weight (60-120 lbs)
15694                                                                                                  1.00
15695                                                                                                  1.00
15696                                                                                                250.00
15697                                                                                                272.00
15698                                                                                                272.00
15699                                                                                 1 tablet/pill/capsule
15700                                                                                                227.00
15701                                                                                           unspecified
15702                                                                                                  4.00
15703                                                                                                  1.28
15704                                                                                                  4.00
15705                                                                                               4 drops
15706                                                                                          small amount
15707                                                                                              27, 1620
15708                                                                                                500.00
15709                                                                                                750.00
15710                                                                                                 50.00
15711                                                                                                  1.00
15712                                                                                           unspecified
15713                                                                                                  2.00
15714                                                                                                  0.75
15715                                                                                              27, 1620
15716                                                                                                  0.75
15717                                                                                                  2.00
15718                                                                                                  1.00
15719                                                                                                272.00
15720                                                                                                136.00
15721                                                                                                  0.75
15722                                                                                                  2.00
15723                                                                                                 70.00
15724                                                                                                 70.00
15725                                                                                                272.00
15726                                                                                                136.00
15727                                                                                                  2.00
15728                                                                                                272.00
15729                                                                                                136.00
15730                                                                                                  3.00
15731                                                                                                  3.00
15732                                                                                                  2.00
15733                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15734                                                                                                300.00
15735                                                                                                  2.00
15736                                                                                                  2.00
15737                                                                                                  8.00
15738                                                                                                300.00
15739                                                                                                  2.00
15740                                                                                                  0.75
15741                                                                                                  9.00
15742                                                                                                300.00
15743                                                                                                 50.00
15744                                                                                                  0.75
15745                                                                                                  0.75
15746                                                                                                  1.00
15747                                                                                                  1.50
15748                                                                                                  1.00
15749                                                                                                  2.00
15750                                                                                           unspecified
15751                                                                                                 10.00
15752                                                                                                750.00
15753                                                                                                  6.00
15754                                                                                                  5.00
15755                                                                                                  1.00
15756                                                                                                  1.00
15757                                                                          based on weight (51-100 lbs)
15758                                                                           based on weight (45-88 lbs)
15759                                                                                                272.00
15760                                                                                                136.00
15761                                                                                                136.00
15762                                                                                                136.00
15763                                                                                                136.00
15764                                                                                                150.00
15765                                                                                                500.00
15766                                                                                                960.00
15767                                                                                           unspecified
15768                                                                                           unspecified
15769                                                                                           unspecified
15770                                                                                           unspecified
15771                                                                                                 16.00
15772                                                                                                 75.00
15773                                                                                                136.00
15774                                                                                                114.00
15775                                                                                                114.00
15776                                                                                                500 mg
15777                                                                                                  1.50
15778                                                                                           unspecified
15779                                                                                                500.00
15780                                                                                                  1.50
15781                                                                                           unspecified
15782                                                                                           unspecified
15783                                                                                                  1.00
15784                                                                                                  1.00
15785                                                                                                  1.00
15786                                                                                                  1.00
15787                                                                                                 30 mg
15788                                                                                             1.5 mg/ml
15789                                                                                                500.00
15790                                                                                           unspecified
15791                                                                                                  7.50
15792                                                                                                200.00
15793                                                                                                  7.50
15794                                                                                                  3.75
15795                                                                                                500.00
15796                                                                                              125, 500
15797                                                                                                136.00
15798                                                                                                500.00
15799                                                                                           unspecified
15800                                                                                                  1.50
15801                                                                                                500.00
15802                                                                                                 15.00
15803                                                                                                272.00
15804                                                                                                  2.68
15805                                                                                                 15.00
15806                                                                                                 20.00
15807                                                                                                  2.68
15808                                                                                                  1.00
15809                                                                                                750.00
15810                                                                                                  6.50
15811                                                                           based on weight (44-88 lbs)
15812                                                                                                750.00
15813                                                                                                  5.40
15814                                                                                                  2.00
15815                                                                        based on weight (50.1-100 lbs)
15816                                                                                                 44-88
15817                                                                                                 50.00
15818                                                                          based on weight (51-100 lbs)
15819                                                                                                  1.00
15820                                                                                                  1.00
15821                                                                                                272.00
15822                                                                                                  2.68
15823                                                                                                500.00
15824                                                                                                 50.00
15825                                                                                                150.00
15826                                                                                                 15.00
15827                                                                                                  5.00
15828                                                                                                  6.30
15829                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
15830                                                                                                  5.00
15831                                                                                                  7.50
15832                                                                                                350.00
15833                                                                                                170.00
15834                                                                                                272.00
15835                                                                                                227.00
15836                                                                                                 68.00
15837                                                                                                227.00
15838                                                                                                 68.00
15839                                                                                           unspecified
15840                                                                                           unspecified
15841                                                                          based on weight (51-100 lbs)
15842                                                                          based on weight (51-100 lbs)
15843                                                                                                 50.00
15844                                                                          based on weight (51-100 lbs)
15845                                                                                               1000.00
15846                                                                                                100.00
15847                                                                                                750.00
15848                                                                                 1 tablet/pill/capsule
15849                                                                          based on weight (51-100 lbs)
15850                                                                          based on weight (51-100 lbs)
15851                                                                                               1400.00
15852                                                                                                 75.00
15853                                                                                                 15.00
15854                                                                                                120.00
15855                                                                                                  1.20
15856                                                                             based on weight (55+ lbs)
15857                                                                                 1 tablet/pill/capsule
15858                                                                          0.5 tablet/pill/capsule - 75
15859                                                                          based on weight (55-100 lbs)
15860                                                                                 1 tablet/pill/capsule
15861                                                                                               1 spray
15862                                                                                       0.25 inch strip
15863                                                                                       0.25 inch strip
15864                                                                                                1 drop
15865                                                                                               1000.00
15866                                                                                                 23.00
15867                                                                                 1 tablet/pill/capsule
15868                                                                                   tablet/pill/capsule
15869                                                                          based on weight (51-100 lbs)
15870                                                                                           unspecified
15871                                                                                                1 tube
15872                                                                                               1000.00
15873                                                                                                200.00
15874                                                                                               1500.00
15875                                                                                                  2.00
15876                                                                                               1500.00
15877                                                                                                251.00
15878                                                                                                100.00
15879                                                                                               1500.00
15880                                                                                                  2.00
15881                                                                                               1000.00
15882                                                                                                 23.00
15883                                                                                                  0.57
15884                                                                                                 50.00
15885                                                                                               1000.00
15886                                                                                           unspecified
15887                                                                                                  1.00
15888                                                                                           unspecified
15889                                                                                           unspecified
15890                                                                                           unspecified
15891                                                                           based on weight (26-50 lbs)
15892                                                                          based on weight (51-100 lbs)
15893                                                                                                 50.00
15894                                                                                                  1.00
15895                                                                                                  1.00
15896                                                                                                  1.00
15897                                                                                                240.00
15898                                                                                                250.00
15899                                                                                                  1.00
15900                                                                                                  1.00
15901                                                                                                 62.50
15902                                                                                                250.00
15903                                                                                                  1.00
15904                                                                                                  4.00
15905                                                                                                  3.00
15906                                                                                                 37.50
15907                                                                                          small amount
15908                                                                                                  1.00
15909                                                                                                  1.00
15910                                                                                                  1.00
15911                                                                              based on weight (40 lbs)
15912                                                                                                  3 mg
15913                                                                                                 20.00
15914                                                                                                125.00
15915                                                                                               1000.00
15916                                                                                                  1.00
15917                                                                                           unspecified
15918                                                                                               0.5 tsp
15919                                                                                                 20 mg
15920                                                                                             0.125 tsp
15921                                                                                           unspecified
15922                                                                          based on weight (51-100 lbs)
15923                                                                                             0.125 tsp
15924                                                                                              1000 mcg
15925                                                                                                  3 mg
15926                                                                                                150 mg
15927                                                                                               2000 iu
15928                                                                                      0.5 pack/package
15929                                                                                 1 tablet/pill/capsule
15930                                                                          based on weight (51-100 lbs)
15931                                                                                             0.125 tsp
15932                                                                                                  1 ml
15933                                                                                               2000 iu
15934                                                                                                  3 mg
15935                                                                                      0.5 pack/package
15936                                                                                                  1 mg
15937                                                                          based on weight (51-100 lbs)
15938                                                                                                 20.00
15939                                                                                                  3.00
15940                                                                                                  1.00
15941                                                                                                 20.00
15942                                                                                                 10.00
15943                                                                                                  3.00
15944                                                                          based on weight (51-100 lbs)
15945                                                                                          pack/package
15946                                                                                                  2.00
15947                                                                                              10000.00
15948                                                                                                  1.00
15949                                                                                                  1.00
15950                                                                                                  1.00
15951                                                                                                 80.00
15952                                                                                                 80.00
15953                                                                                                300.00
15954                                                                                                  8.00
15955                                                                                                  0.25
15956                                                                                                  3.00
15957                                                                                                 16.00
15958                                                                                                300.00
15959                                                                                                  0.50
15960                                                                                               1000.00
15961                                                                                                  3.00
15962                                                                                                  0.13
15963                                                                                                300.00
15964                                                                                                 80.00
15965                                                                                                150.00
15966                                                                                                  3.00
15967                                                                                                272.00
15968                                                                                                 50.00
15969                                                                                                  4.00
15970                                                                                                  4.00
15971                                                                                                500.00
15972                                                                                                  1.00
15973                                                                                               1620.00
15974                                                                                                 25.00
15975                                                                                                100.00
15976                                                                                                272.00
15977                                                                                                240.00
15978                                                                                                 37.50
15979                                                                                                 75.00
15980                                                                                                500.00
15981                                                                          based on weight (51-100 lbs)
15982                                                                                                 50.00
15983                                                                                          small amount
15984                                                                                                 16.00
15985                                                                                                 16.00
15986                                                                           based on weight (56-95 lbs)
15987                                                                                                 20.00
15988                                                                                                 10.00
15989                                                                                                 10.00
15990                                                                                                 10.00
15991                                                                                                150.00
15992                                                                          based on weight (51-100 lbs)
15993                                                                           based on weight (56-95 lbs)
15994                                                                                                125.00
15995                                                                          based on weight (51-100 lbs)
15996                                                                           based on weight (56-95 lbs)
15997                                                                           based on weight (45-88 lbs)
15998                                                                                         1 bottle/vial
15999                                                                          based on weight (51-100 lbs)
16000                                                                           based on weight (45-88 lbs)
16001                                                                                                  1.00
16002                                                                                                  1.00
16003                                                                                                  1.00
16004                                                                                                  8.00
16005                                                           23 mg milbemycin oxime, 228 mg praziquantel
16006                                                                                               1000.00
16007                                                           23 mg milbemycin oxime, 228 mg praziquantel
16008                                                                                               1000 mg
16009                                     0.23% enrofloxacin, 1% ketoconazole, 0.1% triamcinolone acetonide
16010                                                                                                 20.00
16011                                                                                                  1.00
16012                                                                                                  1.00
16013                                                                                                  1.00
16014                                                                                                  0.75
16015                                                                                                250.00
16016                                                                                           application
16017                                                                                                250.00
16018                                                                                                250.00
16019                                                                                                272.00
16020                                                                                                  8.04
16021                                                                                                272.00
16022                                                                                                500.00
16023                                                                                                272.00
16024                                                                                                272.00
16025                                                                                                200.00
16026                                                                                          small amount
16027                                                                                                 60.00
16028                                                                                                  0.50
16029                                                                                                200.00
16030                                                                                                 60.00
16031                                                                                                 60.00
16032                                                                                                350.00
16033                                                                                       based on weight
16034                                                                                                750.00
16035                                                                                                 44-88
16036                                                                          based on weight (51-100 lbs)
16037                                                                                                500 mg
16038                                                                          based on weight (51-100 lbs)
16039                                                                           based on weight (44-88 lbs)
16040                                                                                                750.00
16041                                                                                                 10.00
16042                                                                                                500.00
16043                                                                                                  2.00
16044                                                                                                300.00
16045                                                                                                500.00
16046                                                                                                375.00
16047                                                                                                 62.50
16048                                                                                                125.00
16049                                                                                                272.00
16050                                                                                                  8.00
16051                                                                                                375.00
16052                                                                                       based on weight
16053                                                                                       based on weight
16054                                                                                                  5.00
16055                                                                                                750.00
16056                                                                                                500.00
16057                                                                                                  4.02
16058                                                                                                500.00
16059                                                                                                300.00
16060                                                                                                227.00
16061                                                                                                 68.00
16062                                                                                                272.00
16063                                                                                                 68.00
16064                                                                                                500.00
16065                                                                                                  4.00
16066                                                                                                200.00
16067                                                                                                272.00
16068                                                                                                 68.00
16069                                                                                                 10.00
16070                                                                                                300.00
16071                                                                                                300.00
16072                                                                                                 50.00
16073                                                                                                300.00
16074                                                                                                100.00
16075                                                                                                200.00
16076                                                                                                300.00
16077                                                                                                 20.00
16078                                                                                                300.00
16079                                                                                                  2.60
16080                                                                                                 25.00
16081                                                                                                 20.00
16082                                                                                                272.00
16083                                                                                                125.00
16084                                                                                                250.00
16085                                                                                                  3.00
16086                                                                                                  0.57
16087                                                                                                175.00
16088                                                                                                450.00
16089                                                                                                 50.00
16090                                                                                                 18.75
16091                                                                                                 50.00
16092                                                                                                 35.00
16093                                                                                                227.00
16094                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16095                                                                                                136.00
16096                                                                                               1000.00
16097                                                                          based on weight (50-100 lbs)
16098                                                                          based on weight (60-120 lbs)
16099                                                                                                850.00
16100                                                                                                300.00
16101                                                                                                100.00
16102                                                                                                 15.00
16103                                                                                                 10.00
16104                                                                                                  4.00
16105                                                                                               23, 460
16106                                                                                                400 mg
16107                                                                                           application
16108                                                                          based on weight (51-100 lbs)
16109                                                                          based on weight (50-100 lbs)
16110                                                                                         1 bottle/vial
16111                                                                                                2.7 ml
16112                                                                   2 tablets/pills/capsules - 20 mg/kg
16113                                                                                          small amount
16114                                                                                           application
16115                                                                                               8 drops
16116                                                                              2 tablets/pills/capsules
16117                                                                              2 tablets/pills/capsules
16118                                                                                              tapering
16119                                                                                                200.00
16120                                                                                                  8.00
16121                                                                                                  0.50
16122                                                                                                 50.00
16123                                                                                                272.00
16124                                                                                                  2.00
16125                                                                                                  1.00
16126                                                                                                  1.00
16127                                                                                                272.00
16128                                                                                               1000.00
16129                                                                                                272.00
16130                                                                                                  0.95
16131                                                                                                272.00
16132                                                                                                272.00
16133                                                                                                272.00
16134                                                                                                100.00
16135                                                                                                  6.00
16136                                                                                                272.00
16137                                                                                                500.00
16138                                                                                                150.00
16139                                                                                                 16.00
16140                                                                                                600.00
16141                                                                                                  1.00
16142                                                                                                500.00
16143                                                                                                150.00
16144                                                                                                  1.00
16145                                                                                                 16.00
16146                                                                                                 70.00
16147                                                                                                 16.00
16148                                                                                                  1.00
16149                                                                                                200.00
16150                                                                                           unspecified
16151                                                                                                  0.01
16152                                                                                                1 tube
16153                                                                                 1 tablet/pill/capsule
16154                                                                                                 10 ml
16155                                                                                                  8 oz
16156                                                                                        1 pack/package
16157                                                                          based on weight (51-100 lbs)
16158                                                                           based on weight (44-88 lbs)
16159                                                                          based on weight (51-100 lbs)
16160                                                                           based on weight (44-88 lbs)
16161                                                                                 1 tablet/pill/capsule
16162                                                                                 1 tablet/pill/capsule
16163                                                                          based on weight (51-100 lbs)
16164                                                                           based on weight (44-88 lbs)
16165                                                                          based on weight (51-100 lbs)
16166                                                                                                300.00
16167                                                                                                250.00
16168                                                                                                250.00
16169                                                                                                200.00
16170                                                                                                100.00
16171                                                                                                375.00
16172                                                                                                 62.50
16173                                                                                                 30.00
16174                                                                                                 40.00
16175                                                                                                  0.30
16176                                                                                                 30.00
16177                                                                                           unspecified
16178                                                                                                200.00
16179                                                                                           unspecified
16180                                                                                                375.00
16181                                                                                                136.00
16182                                                                                                136.00
16183                                                                                                250.00
16184                                                                                                200.00
16185                                                                                                 70.00
16186                                                                                                  8.00
16187                                                                                                  0.30
16188                                                                                                  2.50
16189                                                                                                540.00
16190                                                                                                 10.00
16191                                                                                                  1.00
16192                                                                                                100.00
16193                                                                                                200.00
16194                                                                                                100.00
16195                                                                                                 60.00
16196                                                                                                 10.00
16197                                                                                                200.00
16198                                                                                                375.00
16199                                                                                           unspecified
16200                                                                                                100.00
16201                                                                                                  0.30
16202                                                                                                 50.00
16203                                                                                                 60.00
16204                                                                                                150.00
16205                                                                                                  0.30
16206                                                                                                 70.00
16207                                                                                                 15.00
16208                                                                                                200.00
16209                                                                                                300.00
16210                                                                                                 60.00
16211                                                                                                272.00
16212                                                                                                227.00
16213                                                                                                  8.80
16214                                                                                                 44.00
16215                                                                                                  0.44
16216                                                                                                  1.00
16217                                                                                                200.00
16218                                                                                                 50.00
16219                                                                                                750.00
16220                                                                                                  5.00
16221                                                                                                375.00
16222                                                                                                500.00
16223                                                                                                100.00
16224                                                                                                250.00
16225                                                                                                 20.00
16226                                                                                                  5.00
16227                                                                                                500.00
16228                                                                                                  6.00
16229                                                                          based on weight (51-100 lbs)
16230                                                                          based on weight (51-100 lbs)
16231                                                                                                  1.00
16232                                                                                                300.00
16233                                                                                                 50.00
16234                                                                                                  1.00
16235                                                                                                  1.00
16236                                                                                                200.00
16237                                                                                                  1.00
16238                                                                                                 16.00
16239                                                                                           unspecified
16240                                                                                           unspecified
16241                                                                                           unspecified
16242                                                                                           unspecified
16243                                                                                                  7.50
16244                                                                                                  3.30
16245                                                                                                  0.68
16246                                                                                                150.00
16247                                                                                                200.00
16248                                                                                                  2.20
16249                                                                                                 62.50
16250                                                                                                250.00
16251                                                                                          small amount
16252                                                                                                  1.00
16253                                                                                           unspecified
16254                                                                                                  1.00
16255                                                                                                 23.00
16256                                                                                                 80.00
16257                                                                                                100.00
16258                                                                                                100.00
16259                                                                                                100.00
16260                                                                                                 50.00
16261                                                                                                150.00
16262                                                                                                 37.50
16263                                                                                                  1.00
16264                                                                                                  0.60
16265                                                                                                810.00
16266                                                                                                  0.60
16267                                                                                               1000.00
16268                                                                                                400.00
16269                                                                                                437.50
16270                                                                                                810.00
16271                                                                                                  6.00
16272                                                                                               1000.00
16273                                                                                                 23.00
16274                                                                                               1000.00
16275                                                                                                500.00
16276                                                                                                400.00
16277                                                                                                 50.00
16278                                                                                                100.00
16279                                                                                                136.00
16280                                                                                                  0.65
16281                                                                                               1000.00
16282                                                                                                  0.70
16283                                                                                                  1.00
16284                                                                                                  0.60
16285                                                                                 1 tablet/pill/capsule
16286                                                                                           unspecified
16287                                                                                   tablet/pill/capsule
16288                                                                                           application
16289                                                                           based on weight (26-50 lbs)
16290                                                                           based on weight (44-88 lbs)
16291                                                                                                51-100
16292                                                                                   tablet/pill/capsule
16293                                                                                           application
16294                                                                          based on weight (51-100 lbs)
16295                                                                           based on weight (45-88 lbs)
16296                                                                          based on weight (51-100 lbs)
16297                                                                                                 25.00
16298                                                                                                136.00
16299                                                                                                 23.00
16300                                                                                                 80.00
16301                                                                                                625.00
16302                                                                                                 26.10
16303                                                                                                  3.50
16304                                                                                                  1.00
16305                                                                                                  4.00
16306                                                                                                  2.00
16307                                                                                                 60.00
16308                                                                                                 50.00
16309                                                                                                  6.00
16310                                                                                                272.00
16311                                                                                                 68.00
16312                                                                          based on weight (51-100 lbs)
16313                                                                         based on weight (24.1-60 lbs)
16314                                                                                               6000.00
16315                                                                          based on weight (51-100 lbs)
16316                                                                         based on weight (24.1-60 lbs)
16317                                                                                               2 mg/ml
16318                                                                          based on weight (50-100 lbs)
16319                                                                           based on weight (24-60 lbs)
16320                                                                                               1200.00
16321                                                                        based on weight (50.1-100 lbs)
16322                                                                        based on weight (60.1-120 lbs)
16323                                                                                               1200.00
16324                                                                          based on weight (51-100 lbs)
16325                                                                          based on weight (60-121 lbs)
16326                                                                                 1 tablet/pill/capsule
16327                                                                                                  1.00
16328                                                                                                500.00
16329                                                                                                 75.00
16330                                                                                               1000.00
16331                                                                                                204.00
16332                                                                                                 30.00
16333                                                                                                  8.00
16334                                                                                               1000.00
16335                                                                                                 20.00
16336                                                                                                900.00
16337                                                                                                900.00
16338                                                                                                 10.00
16339                                                                                                 56-95
16340                                                                          based on weight (51-100 lbs)
16341                                                                                                 20.00
16342                                                                                                  5.00
16343                                                                                                375.00
16344                                                                                                272.00
16345                                                                                                 23.00
16346                                                                                                272.00
16347                                                 4.95 dinotefuran, 36.08 permethrin, 0.44 pyriproxyfen
16348                                                                                                100.00
16349                                                                                                  1.25
16350                                                                                                 40.00
16351                                                                                                  1.00
16352                                        350 mg chondroitin sulfate, 900 mg glucosamine hcl, 800 mg msm
16353                                                                                               1000.00
16354                                                                                                  2.00
16355                                                                                           unspecified
16356                                                                                           unspecified
16357                                                                                                  1.00
16358                                                                                                  1.00
16359                                                                                                  1.00
16360                                                                                                  0.50
16361                                                                                                  1.00
16362                                                                                                  1.00
16363                                                                                                  1.00
16364                                                                                                  1.00
16365                                                                                                  2.00
16366                                                                                                  1.00
16367                                                                                           unspecified
16368                                                                                                  1.50
16369                                                                                                 12.00
16370                                                                                                  3.00
16371                                                                                           unspecified
16372                                                                                                  1.00
16373                                                                                                  0.50
16374                                                                                           unspecified
16375                                                                                                300.00
16376                                                                                           unspecified
16377                                                                                                  0.50
16378                                                                                           unspecified
16379                                                                                                  1.00
16380                                                                                                  1.00
16381                                                                                                  1.00
16382                                                                                           unspecified
16383                                                                                                272.00
16384                                                                                                 10.00
16385                                                                                                100.00
16386                                                                                                 24 mg
16387                                                                                           as directed
16388                                                                                           as directed
16389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16390                                                                                               1620.00
16391                                                                                                  4.00
16392                                                                                                  1.00
16393                                                                                                  4.00
16394                                                                                                  2.00
16395                                                                                                 16.00
16396                                                                                               2000.00
16397                                                                                                  1.00
16398                                                                                               1000.00
16399                                                                                                  1.00
16400                                                                          based on weight (51-100 lbs)
16401                                                                          based on weight (60-120 lbs)
16402                                                                                                500.00
16403                                                                          based on weight (51-100 lbs)
16404                                                                          based on weight (60-120 lbs)
16405                                                                                                 16.00
16406                                                                                                  8.00
16407                                                                                                  2.00
16408                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16409                                                                                               1000.00
16410                                                                                                 16.00
16411                                                                                                  2.00
16412                                                                                                200.00
16413                                                                          based on weight (50-100 lbs)
16414                                                                           based on weight (44-88 lbs)
16415                                                                                                  4 mg
16416                                                                                                 16 mg
16417                                                                                                  0.70
16418                                                                                           unspecified
16419                                                                                           unspecified
16420                                                                                           unspecified
16421                                                                                                  1.00
16422                                                                                                  6.00
16423                                                                                                 37.50
16424                                                                                                100.00
16425                                                                           based on weight (45-88 lbs)
16426                                                                           based on weight (45-88 lbs)
16427                                                                                                  2.68
16428                                                                                                 50.00
16429                                                                                                 50.00
16430                                                                                                750.00
16431                                                                                                 50.00
16432                                                                                                 23.00
16433                                                                                                500.00
16434                                                                                           unspecified
16435                                                                                           unspecified
16436                                                                                           unspecified
16437                                                                                           unspecified
16438                                                                                                187.50
16439                                                                                                500.00
16440                                                                          based on weight (51-100 lbs)
16441                                                                          based on weight (51-100 lbs)
16442                                                                                           unspecified
16443                                                                                           unspecified
16444                                                                                                500.00
16445                                                                                                136.00
16446                                                                                                500.00
16447                                                                          based on weight (51-100 lbs)
16448                                                                                           unspecified
16449                                                                                                  4.00
16450                                                                          based on weight (51-100 lbs)
16451                                                                                                  8.00
16452                                                                                                3.2 ml
16453                                                                                                3.2 ml
16454                                                                                                 40 mg
16455                                                                                                  1.00
16456                                                                                                  1.00
16457                                                                                                 40.00
16458                                                                                                  3.20
16459                                                                                                  3.20
16460                                                                                                  1.00
16461                                                                                               1000.00
16462                                                                                             0.5 ml/kg
16463                                                                                               1000.00
16464                                                                                               1500.00
16465                                                                                               1500.00
16466                                                                                               1000.00
16467                                                                                                400.00
16468                                                                                                 50.00
16469                                                                                                750.00
16470                                                                                                272.00
16471                                                                                                  4.28
16472                                                              460 mg lufenuron, 23 mg milbemycin oxime
16473                                                                                                  4.70
16474                                                                                     1 syringe/pipette
16475                                                                                                 30.00
16476                                                                                                  1.50
16477                                                                                               23, 460
16478                                                                    8.8% (s)-methoprene, 9.8% fipronil
16479                                                                                     1 syringe/pipette
16480                                                                                                272.00
16481                                                                                                 23.00
16482                                                                                                 27.00
16483                                                                                               1000.00
16484                                                                                                 23.00
16485                                                                                                 45-88
16486                                                                                                100.00
16487                                                                                                136.00
16488                                                                                                100.00
16489                                                                                                  0.02
16490                                                                                                 50.00
16491                                                                                                 50.00
16492                                                                                                375.00
16493                                                                                                  1.00
16494                                                                                                100.00
16495                                                                                                100.00
16496                                                                                                 23.00
16497                                                                                           bottle/vial
16498                                                                                                  1.00
16499                                                                                                  1.00
16500                                                                                                 75.00
16501                                                                                                200.00
16502                                                                                                272.00
16503                                                                                                 23.00
16504                                                                                               1000.00
16505                                                                                                125.00
16506                                                                                                500.00
16507                                                                                                250.00
16508                                                                                                 25.00
16509                                                                                                375.00
16510                                                                                                  5.00
16511                                                                                                480.00
16512                                                                                                 22.00
16513                                                                                                373.00
16514                                                                                                478.00
16515                                                                                                136.00
16516                                                                                                136.00
16517                                                                                                  5.00
16518                                                                                                204.00
16519                                                                                                272.00
16520                                                                                                500.00
16521                                                                                                  5.00
16522                                                                          based on weight (51-100 lbs)
16523                                                                          based on weight (51-100 lbs)
16524                                                                           based on weight (44-88 lbs)
16525                                                                          based on weight (51-100 lbs)
16526                                                                           based on weight (56-95 lbs)
16527                                                                                                375.00
16528                                                                                                500.00
16529                                                                                                250.00
16530                                                                                                500.00
16531                                                                                                 10.00
16532                                                                                                 11.00
16533                                                                                                113.50
16534                                                                                                204.00
16535                                                                                                580.00
16536                                                                                                 26.00
16537                                                                                                  5.00
16538                                                                                                50-100
16539                                                                                                136.00
16540                                                                                                 93.00
16541                                                                                                500.00
16542                                                                                                500.00
16543                                                                                                 44-88
16544                                                                           based on weight (44-88 lbs)
16545                                                                                                500.00
16546                                                                        based on weight (50.1-100 lbs)
16547                                                                                                500.00
16548                                                                                                 93.00
16549                                                                                                136.00
16550                                                                                                375.00
16551                                                                                                 44-88
16552                                                                                                375.00
16553                                                                        based on weight (50.1-100 lbs)
16554                                                                                                 44-88
16555                                                                                                375.00
16556                                                                                                 68.00
16557                                                                                                500.00
16558                                                                                                  1.00
16559                                                                                                 93.00
16560                                                                                                  1.00
16561                                                                                                227.00
16562                                                                                                 68.00
16563                                                                                                500.00
16564                                                                                                  1.00
16565                                                                                                 50.00
16566                                                                                                  2.70
16567                                                                                                100.00
16568                                                                                                500.00
16569                                                                                                186.00
16570                                                                                                100.00
16571                                                                                                618.00
16572                                                                                                 28.00
16573                                                                                                 20.00
16574                                                                                                 28.00
16575                                                                                                  1.80
16576                                                                                                100.00
16577                                                                                                  1.80
16578                                                                                                170.00
16579               based on weight (0-25 lbs), based on weight (26-50 lbs)\n, based on weight (51-100 lbs)
16580                                                                                                 drops
16581                                                                                                  2.00
16582                                                                                                  1.00
16583                                                                                                  0.56
16584                                                                                                  1.40
16585                                                                                                  1.40
16586                                                                                                  0.56
16587                                                                                                  2.10
16588                                                                                                  0.90
16589                                                                                                 50.00
16590                                                                                               100-150
16591                                                                                                  1.50
16592                                                                                                500.00
16593                                                                                                200.00
16594                                                                                                 20.00
16595                                                                                 1 tablet/pill/capsule
16596                                                                          based on weight (51-100 lbs)
16597                                                                          based on weight (51-100 lbs)
16598                                                                          based on weight (88-132 lbs)
16599                                                                          based on weight (51-100 lbs)
16600                                                                                                204.00
16601                                                                          based on weight (89-132 lbs)
16602                                                                                                0.7 mg
16603                                                                                                100.00
16604                                                                                                  0.70
16605                                                                             based on weight (45+ lbs)
16606                                                                          based on weight (51-100 lbs)
16607                                                                                                  0.70
16608                                                                          based on weight (51-100 lbs)
16609                                                                                                  0.70
16610                                                                                                  0.70
16611                                                                                                500.00
16612                                                                                                850.00
16613                                                                                                272.00
16614                                                                                                  2.68
16615                                                                                                272.00
16616                                                                                                 20 mg
16617                                                                                                  1 gm
16618                                                                                                 90.00
16619                                                                                                272.00
16620                                                                                                250.00
16621                                                                                                  1.00
16622                                                                                                  1.00
16623                                                                                                  1.00
16624                                                              27 mg milbemycin oxime, 1620 mg spinosad
16625                                                                                                  1.00
16626                                                                                                500.00
16627                                                                                               1620.00
16628                                                                                                 80.00
16629                                                                                                 75.00
16630                                                                                 1 tablet/pill/capsule
16631                                                                                 1 tablet/pill/capsule
16632                                                                                                600.00
16633                                                                                                  3.00
16634                                                                                                 62.50
16635                                                                                       0.25 inch strip
16636                                                                          based on weight (51-100 lbs)
16637                                                                                                 44-88
16638                                                                                                50-100
16639                                                                          based on weight (51-100 lbs)
16640                                                                                                60-121
16641                                                                                                 23.00
16642                                                                                                136.00
16643                                                                                               1000.00
16644                                                                                                 10.00
16645                                                                                                  4.00
16646                                                                                              10 drops
16647                                                                                                 10.00
16648                                                                                                227.00
16649                                                                                                272.00
16650                                                                                                136.00
16651                                                                                                 16.00
16652                                                                                                200.00
16653                                                                                                 15.00
16654                                                                                                 16.00
16655                                                                                                200.00
16656                                                                                                 15.00
16657                                                                                             6-8 drops
16658                                                                                                  3.50
16659                                                                                                 50.00
16660                                                                                                  1.00
16661                                                                                                  1.00
16662                                                                                                  1.00
16663                                                                                                  1.00
16664                                                                                                 75.00
16665                                                                                                250.00
16666                                                                                                  1.00
16667                                                                                                 25-50
16668                                                                                                  1.00
16669                                                                                                  1.00
16670                                                                                                  1.00
16671                                                                                                  1.00
16672                                                                                                  1.00
16673                                                                                                 34.00
16674                                                                                                 75.00
16675                                                                                                 15.00
16676                                                                                                 37.00
16677                                                                                                 50.00
16678                                                                                               27-1620
16679                                                                                                  4.30
16680                                                                                                 50.00
16681                                                                                                 50.00
16682                                                                                                  1.00
16683                                                                                                625.00
16684                                                                                          small amount
16685                                                                                              wipe/pad
16686                                                                                                 50.00
16687                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16688                                                                                                136.00
16689                                                                                             1.5 mg/ml
16690                                                                                               100-150
16691                                                                                                300.00
16692                                                                                                  2.00
16693                                                                                                750.00
16694                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16695                                                                                                136 mg
16696                                                                                                  4.00
16697                                                                                               1250.00
16698                                                                                                  4.00
16699                                                                                                  2.00
16700                                                                                                  1.00
16701                                                                                                 10.00
16702                                                                                       0.25 inch strip
16703                                                                                                powder
16704                                                                          based on weight (51-100 lbs)
16705                                                                          based on weight (60-120 lbs)
16706                                                                                                 40.00
16707                                                                                                  1.00
16708                                                                                                500.00
16709                                                                                                 41.00
16710                                                                                                120.00
16711                                                                                          small amount
16712                                                                                          small amount
16713                                                                                                 16.00
16714                                                                                          small amount
16715                                                                                                  3.86
16716                                                                                                344.00
16717                                                                                          small amount
16718                                                                                          small amount
16719                                                                                                  5.00
16720                                                                                                136.00
16721                                                                          based on weight (51-100 lbs)
16722                                                                                             1.5 mg/ml
16723                                                                                           application
16724                                                                                           application
16725                                                                                                  1.00
16726                                                                                                 spray
16727                                                                                                500.00
16728                                                                                                120.00
16729                                                                                                100.00
16730                                                                                                  3.80
16731                                                                                                  5.00
16732                                                                                                  4.00
16733                                                                                                272.00
16734                                                                                                272.00
16735                                                                                                272.00
16736                                                                                                500.00
16737                                                                                                 50.00
16738                                                                                                 90.00
16739                                                                                                150.00
16740                                                                                                204.00
16741                                                                                                 20.00
16742                                                                                                  1.00
16743                                                                                                  1.00
16744                                                                                                 23.00
16745                                                                                                 23 mg
16746                                                                                               1000 mg
16747                                                                                                 23.00
16748                                                                                               1000.00
16749                                                              460 mg lufenuron, 23 mg milbemycin oxime
16750                                                                                               1000 mg
16751                                                                                         23 mg, 460 mg
16752                                                                                               1000.00
16753                                                                                                 23.00
16754                                                                                               1000.00
16755                                                                                                700.00
16756                                                                                                  1.00
16757                                                                                                  0.75
16758                                                                                                  1.00
16759                                                                                                100.00
16760                                                                                                200.00
16761                                                                                                500.00
16762                                                                                                  3.00
16763                                                                                                  1.00
16764                                                                                                  5.00
16765                                                                                                300.00
16766                                                                                                 30.00
16767                                                                                                 10.00
16768                                                                                                200.00
16769                                                                                                 40.00
16770                                                                                                 20.00
16771                                                                                                  3.00
16772                                                                                                300.00
16773                                                                                                  5.00
16774                                                                                           unspecified
16775                                                                                                  1.00
16776                                                                                                  1.00
16777                                                                                           as directed
16778                                                                                           as directed
16779                                                                                           as directed
16780                                                                                                  1.00
16781                                                                                                  1.00
16782                                                                                                  1.00
16783                                                                                           unspecified
16784                                                                                           unspecified
16785                                                                                           unspecified
16786                                                                                                3.4 mg
16787                                                                                                  1 ml
16788                                                                                                240.00
16789                                                                                                1.1 ml
16790                                                                                                  3.40
16791                                                                           based on weight (44-88 lbs)
16792                                                                                                  1.10
16793                                                                           based on weight (24-60 lbs)
16794                                                                                                200.00
16795                                                                                                150.00
16796                                                                                                136.00
16797                                                                                                100.00
16798                                                                                           unspecified
16799                                                                                                  1.50
16800                                                                                                 37.50
16801                                                                                                500.00
16802                                                                                                  3.00
16803                                                                                                  3.00
16804                                                                                                 50.00
16805                                                                          based on weight (50-100 lbs)
16806                                                                                                  5.00
16807                                                                             based on weight (55+ lbs)
16808                                                                                                272.00
16809                                                                                                  tube
16810                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
16811                                                                     4.5% flumethrin, 10% imidacloprid
16812                                                                                                 23.00
16813                                                                                                  0.10
16814                                                                                           unspecified
16815                                                                                           unspecified
16816                                                                                           unspecified
16817                                                                                                750.00
16818                                                                                                 23.00
16819                                                                                                  4.00
16820                                                                                                  0.10
16821                                                                                           unspecified
16822                                                                                                 75.00
16823                                                                                           unspecified
16824                                                                                                200.00
16825                                                                                                 23.00
16826                                                                                                  1.00
16827                                                                                                  0.10
16828                                                                                                 75.00
16829                                                                                                 10.00
16830                                                                                                  0.10
16831                                                                                                 75.00
16832                                                                                                 10.00
16833                                                                                                  0.10
16834                                                                                           unspecified
16835                                                                                                 10.00
16836                                                                                                  0.10
16837                                                                                                  1.80
16838                                                                                           unspecified
16839                                                                                                 75.00
16840                                                                                           unspecified
16841                                                                                           unspecified
16842                                                                                                  1.80
16843                                                                                                 10.00
16844                                                                                                  0.10
16845                                                                                                300.00
16846                                                                                                  1.00
16847                                                                                           unspecified
16848                                                                                                 75.00
16849                                                                                                1 pump
16850                                                                                                 15.00
16851                                                                                                272.00
16852                                                                                                136.00
16853                                                                                                500.00
16854                                                                                                272.00
16855                                                                                                136.00
16856                                                                                                272.00
16857                                                                                                375.00
16858                                                                                                 80.00
16859                                                                                                272.00
16860                                                                                                 80 mg
16861                                                                                                272.00
16862                                                                                                136.00
16863                                                                                                 23.00
16864                                                                                                51-100
16865                                                                                                375.00
16866                                                                                                50-100
16867                                                                                                375.00
16868                                                                                                  6.00
16869                                                                          based on weight (50-100 lbs)
16870                                                                                                  1.00
16871                                                                                                  9.80
16872                                                                                                  4.50
16873                                                                                                500.00
16874                                                                                                 15.00
16875                                                                                                 16.60
16876                                                                                                 23.00
16877                                                                                             13.5, 810
16878                                                                                                 23.00
16879                                                                                                  1.00
16880                                                                                                 23.00
16881                                                                                                 23.00
16882                                                                                       based on weight
16883                                                                                                  2.00
16884                                                                                                  1.00
16885                                                                                                  1.00
16886                                                                                                  1.00
16887                                                                                                810.00
16888                                                                                                  1.10
16889                                                                                                  1.10
16890                                                                                                  1.20
16891                                                                                                 80.00
16892                                                                                                  3.40
16893                                                                                                500.00
16894                                                                                                150.00
16895                                                                                                  3.00
16896                                                                                                  8.00
16897                                                                                                  3.20
16898                                                                                                500.00
16899                                                                                                200.00
16900                                                                                                  3.25
16901                                                                                                 60.00
16902                                                                                                272.00
16903                                                                                                272.00
16904                                                                                                136.00
16905                                                                                                272.00
16906                                                                                                272.00
16907                                                                                                272.00
16908                                                                                                136.00
16909                                                                                                272.00
16910                                                                                                136.00
16911                                                                                                500.00
16912                                                                                                 75.00
16913                                                                                                 30.00
16914                                                                                                136.00
16915                                                                                                100 mg
16916                                                                                                500 mg
16917                                                                                                250.00
16918                                                                                           unspecified
16919                                                                                                 11.50
16920                                                                                                 44-88
16921                                                                                                 44.00
16922                                                                                                500.00
16923                                                                                                 16.00
16924                                                                                                400.00
16925                                                                                                 11.50
16926                                                                                                125.00
16927                                                                                                810.00
16928                                                                                                240.00
16929                                                                                 1 tablet/pill/capsule
16930                                                                                              30 mg/kg
16931                                                                                             13.5, 810
16932                                                                                                 60.00
16933                                                                                             13.5, 810
16934                                                                                               1620.00
16935                                                                                 1 tablet/pill/capsule
16936                                                                                 1 tablet/pill/capsule
16937                                                                                                1 tube
16938                                                                                                  1.00
16939                                                                                          small amount
16940                                                                                                500.00
16941                                                                                                100.00
16942                                                                                                500.00
16943                                                                                                375.00
16944                                                                                                500.00
16945                                                                                                  1.00
16946                                                                                                  1.00
16947                                                                                                  1.00
16948                                                                                                  1.00
16949                                                                                                500.00
16950                                                                                                500.00
16951                                                                                                  4.00
16952                                                                                                  1.00
16953                                                                                                  1.00
16954                                                                                                136.00
16955                                                                                                 23.00
16956                                                                                                113.50
16957                                                                                                113.50
16958                                                                                                 23.00
16959                                                                                               1000.00
16960                                                                                                 23.00
16961                                                                                                  1.00
16962                                                                                                  3.00
16963                                                                                                500.00
16964                                                                                                500.00
16965                                                                                                100.00
16966                                                                                                300.00
16967                                                                                                113.00
16968                                                                                                300.00
16969                                                                                                 10.00
16970                                                                          based on weight (51-100 lbs)
16971                                                                                                 15.00
16972                                                                                                  1.00
16973                                                                                                  1.00
16974                                                                                                  1.50
16975                                                                                                  1.00
16976                                                                                                  2.00
16977                                                                                                  3.00
16978                                                                                                  3.50
16979                                                                                                 14.00
16980                                                                                                  1.00
16981                                                                                                  1.00
16982                                                                                                  1.00
16983                                                                                              6 months
16984                                                                                                272.00
16985                                                                                                227.00
16986                                                                                                272.00
16987                                                                                                272.00
16988                                                                                                 27.00
16989                                                                                                  0.34
16990                                                                                                272.00
16991                                                                                                500.00
16992                                                                                                500.00
16993                                                                                           as directed
16994                                                                                           application
16995                                                                                                 75.00
16996                                                                                                 75.00
16997                                                                                                272.00
16998                                                                           based on weight (56-95 lbs)
16999                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17000                                              4.95% dinotefuran, 36.08% permethrin, 0.44% pyriproxyfen
17001                                                                                               1000.00
17002                                                                                                  2.00
17003                                                                                                  3.50
17004                                                                                                 75.00
17005                                                                                                  6.00
17006                                                                                                 40.00
17007                                                                                                100.00
17008                                                                                                250.00
17009                                                                                                500.00
17010                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17011                                                                                                200.00
17012                                                                           based on weight (56-80 lbs)
17013                                                                          based on weight (51-100 lbs)
17014                                                                          based on weight (51-100 lbs)
17015                                                                                                250.00
17016                                                                                                  8.00
17017                                                                                                500.00
17018                                                                                           as directed
17019                                                                                           unspecified
17020                                                                                           unspecified
17021                                                                                               1000.00
17022                                                                                           unspecified
17023                                                                                                  2.00
17024                                                                                                  2.00
17025                                                                                               1000.00
17026                                                                                                 40.00
17027                                                                                                 60.00
17028                                                                                                 10.00
17029                                                                                                  2.00
17030                                                                                                 40.00
17031                                                                                                 10.00
17032                                                                                                136.00
17033                                                                                               272 mcg
17034                                                                                                272.00
17035                                                                                               272 mcg
17036                                                                                                136 mg
17037                                                                                                272.00
17038                                                                                                272.00
17039                                                                                                 68.00
17040                                                                                                 16.00
17041                                                                                                50-100
17042                                                                        based on weight (50.1-100 lbs)
17043                                                                                                 16.00
17044                                                                                                200.00
17045                                                                                                750.00
17046                                                                                                200.00
17047                                                                                                500.00
17048                                                                                                 15.00
17049                                                                                               272 mcg
17050                                                                                               1000.00
17051                                                                                               1000 mg
17052                                                                                                272.00
17053                                                                                 1 tablet/pill/capsule
17054                                                                                                  2.00
17055                                                                                                  2.10
17056                                                                                                  0.70
17057                                                                                                60-121
17058                                                                                                  7.50
17059                                                                                                272.00
17060                                                                                                272.00
17061                                                                                                  1.00
17062                                                                                           unspecified
17063                                                                                                  1.00
17064                                                                                                  2.00
17065                                                                                                  1.00
17066                                                                                                375.00
17067                                                                                                272.00
17068                                                                                                  1.00
17069                                                                                                 60.00
17070                                                                                                  1.00
17071                                                                                                100.00
17072                                                                                                  1.00
17073                                                                                                  1.00
17074                                                                                                272.00
17075                                                                                                 68.00
17076                                                                                                  2.30
17077                                                                                                272.00
17078                                                                                                227.00
17079                                                                                                500.00
17080                                                                                                  1.00
17081                                                                                               1620.00
17082                                                                                                  3.00
17083                                                                                                  4.80
17084                                                                                                375.00
17085                                                                                                625.00
17086                                                                                                272.00
17087                                                                                                136.00
17088                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17089                                                                                                136 mg
17090                                                                          based on weight (51-100 lbs)
17091                                                                          based on weight (60-120 lbs)
17092                                                                                                  1.00
17093                                                                                                  1.00
17094                                                                                 1 tablet/pill/capsule
17095                                                                                 1 tablet/pill/capsule
17096                                                                                                272.00
17097                                                                                                136.00
17098                                                                                           unspecified
17099                                                                                       based on weight
17100                                                                                                375.00
17101                                                                                                500.00
17102                                                                                                 20.00
17103                                                                                             500125.00
17104                                                                                                 75.00
17105                                                                                                 75.00
17106                                                                                                150.00
17107                                                                                                 50.00
17108                                                                                                 75.00
17109                                                                                                 80.00
17110                                                                                                100.00
17111                                                                                                125.00
17112                                                                                                 75.00
17113                                                                                                375.00
17114                                                                                                  3.00
17115                                                                                                  1.00
17116                                                                                                 68.00
17117                                                                                                  0.68
17118                                                                                                136.00
17119                                                                                                  1.37
17120                                                                                          small amount
17121                                                                                          small amount
17122                                                                                                900.00
17123                                                                                                240.00
17124                                                                                                360.00
17125                                                                                                 25.00
17126                                                                                          small amount
17127                                                                                           as directed
17128                                                                                                 20.00
17129                                                                                                  3.00
17130                                                                                                360.00
17131                                                                                                 20-25
17132                                                                                                750.00
17133                                                                                                 75.00
17134                                                                                                175.00
17135                                                                                                  8.00
17136                                                                                                  2.00
17137                                                                                                  1.00
17138                                                                          based on weight (51-100 lbs)
17139                                                                                                  5.00
17140                                                                                                  1.00
17141                                                                                                 20.00
17142                                                                                                  5.00
17143                                                                          based on weight (51-100 lbs)
17144                                                                                                500.00
17145                                                                                                 16.00
17146                                                                                                136.00
17147                                                                                                100.00
17148                                                                                                 16.00
17149                                                                                                  2.00
17150                                                                                                 25.00
17151                                                                                                 40-60
17152                                                                                                136.00
17153                                       272 mcg ivermectin, 228mg praziquantel, 228 mg pyrantel pamoate
17154                                                                                                  1.00
17155                                                                                               1620.00
17156                                                                          based on weight (50-100 lbs)
17157                                                                          based on weight (60-121 lbs)
17158                                                                                                240.00
17159                                                                                                240.00
17160                                                                                                228.00
17161                                                                                                 80.00
17162                                                                                                  1.00
17163                                                                                                  7.50
17164                                                                                                500.00
17165                                                                                                 75.00
17166                                                                                                  3.00
17167                                                                                                  1.00
17168                                                                                                  2.00
17169                                                                                                 23.00
17170                                                                                                100.00
17171                                                                                                 75.00
17172                                                                                                100.00
17173                                                                                           unspecified
17174                                                                                                375.00
17175                                                                                                 60.00
17176                                                                                                150.00
17177                                                                                           unspecified
17178                                                                                                 29.00
17179                                                                                                 14.00
17180                                                                                           unspecified
17181                                                                                                 75.00
17182                                                                                                  1.40
17183                                                                                                300.00
17184                                                                                                150.00
17185                                                                                                 75.00
17186                                                                                                 60.00
17187                                                                                                225.00
17188                                                                                                100.00
17189                                                                                                300.00
17190                                                                                                140.00
17191                                                                                                 60.00
17192                                                                                                 20.00
17193                                                                                                160.00
17194                                                                                                 25.00
17195                                                                                                272.00
17196                                                                                                 26-50
17197                                                                                                 26-50
17198                                                                                                500.00
17199                                                                                                 20.00
17200                                                                                                 57.00
17201                                                                                                  1.00
17202                                                                                                 45-88
17203                                                                                                200.00
17204                                                                                               1620.00
17205                                                                                                  2.68
17206                                                                                                 20.00
17207                                                                                                 16.08
17208                                                                                                272.00
17209                                                                                           unspecified
17210                                                                                               272 mcg
17211                                                                                                 50 mg
17212                                                                                                272.00
17213                                                                                                136.00
17214                                                                                                300.00
17215                                                                                                100.00
17216                                                                                                300.00
17217                                                                                                  1.00
17218                                                                           based on weight (56-95 lbs)
17219                                                                                                272.00
17220                                                                          based on weight (50-100 lbs)
17221                                                                          based on weight (60-120 lbs)
17222                                                                                                272.00
17223                                                                                                136.00
17224                                                                                                227.00
17225                                                                          based on weight (51-100 lbs)
17226                                                                          based on weight (60-120 lbs)
17227                                                                          based on weight (50-100 lbs)
17228                                                                          based on weight (60-100 lbs)
17229                                                                                           unspecified
17230                                                                                                  1.00
17231                                                                                                  1.00
17232                                                                          based on weight (50-100 lbs)
17233                                                                             based on weight (55+ lbs)
17234                                                                          based on weight (51-100 lbs)
17235                                                                                                750.00
17236                                                                             based on weight (55+ lbs)
17237                                                                          based on weight (50-100 lbs)
17238                                                                                                1 tube
17239                                                                          based on weight (50-100 lbs)
17240                                                                                                68 mcg
17241                                                                                               136 mcg
17242                                                                                                 70.00
17243                                                                                                 80.00
17244                                                                                                500.00
17245                                                                                                272.00
17246                                                                                                227.00
17247                                                                                                  1.00
17248                                                                                 1 tablet/pill/capsule
17249                                                                                                 50.00
17250                                                                                                500.00
17251                                                                                 1 tablet/pill/capsule
17252                                                                                       based on weight
17253                                                                                                 60 mg
17254                                                                                           application
17255                                                                                       based on weight
17256                                                                                              45293.00
17257                                                                                                  1.00
17258                                                                                                425.00
17259                                                                                                  1.00
17260                                                                                                  1.00
17261                                                                                                 75.00
17262                                                                                                  1.00
17263                                                                                             13.5, 810
17264                                                                                              27, 1620
17265                                                                                               1620.00
17266                                                                                 1 tablet/pill/capsule
17267                                                                                                500.00
17268                                                                          based on weight (51-100 lbs)
17269                                                                                                 50.00
17270                                                                                                500.00
17271                                                                                                272.00
17272                                                                                                135.00
17273                                                                                                 75.00
17274                                                                                                136.00
17275                                                                                                272.00
17276                                                                                                 75.00
17277                                                                                                100.00
17278                                                                                                 23.00
17279                                                                                                136.00
17280                                                                                                  0.70
17281                                                                                                  0.08
17282                                                                                                136.00
17283                                                                                                57, 68
17284                                                                                                375.00
17285                                                             68 mcg ivermectin, 57 mg pyrantel pamoate
17286                                                                                                136.00
17287                                                                                                  0.70
17288                                                                                                  1.00
17289                                                                                                  1.00
17290                                                                                                  0.70
17291                                                                                                  0.70
17292                                                                                                 75.00
17293                                                                                                  0.70
17294                                                                                                50-100
17295                                                                                                 45-88
17296                                                                                                 40.00
17297                                                                            1.5 tablets/pills/capsules
17298                                                                          based on weight (51-100 lbs)
17299                                                                                                 30.00
17300                                                                                                136.00
17301                                                                                                184.00
17302                                                                                                  5.00
17303                                                                                                 10.00
17304                                                                                                 10.00
17305                                                                                                100.00
17306                                                                                                208.00
17307                                                                                                 6, 15
17308                                                                                                 6, 15
17309                                                                                                3, 7.5
17310                                                                                                3, 7.5
17311                                                                                                272.00
17312                                                                                                  4.70
17313                                                                                 1 tablet/pill/capsule
17314                                                                                           application
17315                                                                                 1 tablet/pill/capsule
17316                                                                                                272.00
17317                                                                                                  0.16
17318                                                                                                110.00
17319                                                                                                272.00
17320                                                                                                200.00
17321                                                                                                 50.00
17322                                                                                                300.00
17323                                                                                                100.00
17324                                                                                                 60.00
17325                                                                                                  0.60
17326                                                                                                 55.00
17327                                                                                           application
17328                                                                                                  0.01
17329                                                                                           application
17330                                                                                           application
17331                                                                                                100.00
17332                                                                                                  0.28
17333                                                                                                  5.50
17334                                                                                                  1.00
17335                                                                                           application
17336                                                                                                  1.00
17337                                                                                                  1.00
17338                                                                                                  1.00
17339                                                                                                300.00
17340                                                                                                  0.25
17341                                                                                                  1.00
17342                                                                                                350.00
17343                                                                                                  0.25
17344                                                                                                  1.00
17345                                                                                                 37.50
17346                                                                                                400.00
17347                                                                                                  1.00
17348                                                                                                240.00
17349                                                                                                 15.00
17350                                                                                                120.00
17351                                                                                                250.00
17352                                                                                           unspecified
17353                                                                                                 60.00
17354                                                                                                100.00
17355                                                                                           unspecified
17356                                                                                                500.00
17357                                                                                                  3.60
17358                                                                                                 80.00
17359                                                                                                272.00
17360                                                                                                500.00
17361                                                                                                 50.00
17362                                                                                                 25.00
17363                                                                                                  1.00
17364                                                                                                  1.00
17365                                                                                                 20.00
17366                                                                                                500.00
17367                                                                                                  1.00
17368                                                                                                 50.00
17369                                                                                                500.00
17370                                                                                                  1.00
17371                                                                                                  1.00
17372                                                                                                  1.00
17373                                                                                                  1.00
17374                                                                                                  6.00
17375                                                                                                500.00
17376                                                                                                500.00
17377                                                                                                 75.00
17378                                                                                                 20.00
17379                                                                                                  1.00
17380                                                                                                500.00
17381                                                                                                 30 ml
17382                                                                                                272.00
17383                                                                                                227.00
17384                                                                                                272.00
17385                                                                                                 22.70
17386                                                                                               272 mcg
17387                                                                                           unspecified
17388                                                                                                222.00
17389                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17390                                                                                           unspecified
17391                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
17392                                                                                                 75.00
17393                                                                                           application
17394                                                                                                500.00
17395                                                                                                 50.00
17396                                                                                                  2.80
17397                                                                                                  2.10
17398                                                                                                 23.00
17399                                                                        based on weight (50.1-100 lbs)
17400                                                                                                 23.00
17401                                                                                                 23.00
17402                                                                                                 23.00
17403                                                                                                460.00
17404                                                                                                136.00
17405                                                                                                 75.00
17406                                                                          based on weight (51-100 lbs)
17407                                                                                            1-2 sprays
17408                                                                                                200.00
17409                                                                                                 75.00
17410                                                                                                 80.00
17411                                                                                                 70.00
17412                                                                                           unspecified
17413                                                                                                 70.00
17414                                                                                                 70.00
17415                                                                                                 68.00
17416                                                                                                272.00
17417                                                                                                collar
17418                                                                              3 tablets/pills/capsules
17419                                                                                 1 tablet/pill/capsule
17420                                                                                 1 tablet/pill/capsule
17421                                                                                                  8.00
17422                                                                                                100.00
17423                                                                                                200.00
17424                                                                                                  0.02
17425                                                                                                250.00
17426                                                                                           unspecified
17427                                                                                           unspecified
17428                                                                                                500.00
17429                                                                                                500.00
17430                                                                                                  4.00
17431                                                                                                 50.00
17432                                                                                                500.00
17433                                                                                                200.00
17434                                                                                                 50.00
17435                                                                                                500.00
17436                                                                                                100.00
17437                                                                                                 23.00
17438                                                                                                272.00
17439                                                                                                272.00
17440                                                                                                500 mg
17441                                                                                                 30.00
17442                                                                                                500.00
17443                                                                                                500.00
17444                                                                                                272.00
17445                                                                                                272.00
17446                                                                                           bottle/vial
17447                                                                                               1000.00
17448                                                                                                272.00
17449                                                                                               1000.00
17450                                                                                                  0.01
17451                                                                                                272.00
17452                                                                                               1000.00
17453                                                                                                500.00
17454                                                                                                500.00
17455                                                                                                 15.00
17456                                                                                                  5.00
17457                                                                                                  1.00
17458                                                                                                210.00
17459                                                                                                  1.00
17460                                                                                                  2.00
17461                                                              460 mg lufenuron, 23 mg milbemycin oxime
17462                                                                                               1000.00
17463                                                                                        1 pack/package
17464                                                                                                  1.00
17465                                                                                                  2.50
17466                                                                                                 15.00
17467                                                                                                  3.00
17468                                                                                               23, 460
17469                                                                                               1000.00
17470                                                                                        1 pack/package
17471                                                                                                315.00
17472                                                                                                  1.00
17473                                                                                                  1.00
17474                                                                                                  1.00
17475                                                                                                  1.00
17476                                                                                                  2.50
17477                                                                                                  3.20
17478                                                                                                 15.00
17479                                                                                                500.00
17480                                                                                                 15.00
17481                                                                                                500.00
17482                                                                                          small amount
17483                                                                                                 50.00
17484                                                                                                50-100
17485                                                                                                 80.00
17486                                                                          based on weight (51-100 lbs)
17487                                                                           based on weight (45-88 lbs)
17488                                                                          based on weight (51-100 lbs)
17489                                                                           based on weight (45-88 lbs)
17490                                                                           based on weight (45-88 lbs)
17491                                                                          based on weight (50-100 lbs)
17492                                                                          based on weight (50-100 lbs)
17493                                                                          based on weight (51-100 lbs)
17494                                                                                                 45-88
17495                                                                          based on weight (50-100 lbs)
17496                                                                           based on weight (45-88 lbs)
17497                                                                                                50-100
17498                                                                                                 45-88
17499                                                                                                500.00
17500                                                                                                120.00
17501                                                                                                 16.00
17502                                                                                                 80.00
17503                                                                                                 37.50
17504                                                                                                500.00
17505                                                                                                625.00
17506                                                                                                 80.00
17507                                                                                                 37.50
17508                                                                                                125.00
17509                                                                                                375.00
17510                                                                                                100.00
17511                                                                                                 50.00
17512                                                                                                  2.00
17513                                                                                                 23.00
17514                                                                                                500.00
17515                                                                                                250.00
17516                                                                                                 50.00
17517                                                                                                 50.00
17518                                                                          based on weight (50-100 lbs)
17519                                                                          based on weight (51-100 lbs)
17520                                                                                                 75.00
17521                                                                                                100.00
17522                                                                                                100.00
17523                                                                                                200.00
17524                                                                                                875.00
17525                                                                                                250.00
17526                                                                                                100.00
17527                                                                                                 75.00
17528                                                                                                 60.00
17529                                                                                                 15.00
17530                                                                                              45293.00
17531                                                                                                750.00
17532                                                                                                 30.00
17533                                                                                                300.00
17534                                                                                                  1.40
17535                                                                                                 60.00
17536                                                                                                 62.50
17537                                                                                                200.00
17538                                                                                                500.00
17539                                                                                                160.00
17540                                                                                                 50.00
17541                                                                                                  1.40
17542                                                                                                 75.00
17543                                                                                                200.00
17544                                                                                                  3.00
17545                                                                                                  1.40
17546                                                                                                200.00
17547                                                                                                  3.00
17548                                                                                                  1.40
17549                                                                                                  2.00
17550                                                                                                 75.00
17551                                                                                                200.00
17552                                                                                                 15.00
17553                                                                                                750.00
17554                                                                                                 15.00
17555                                                                                               1000.00
17556                                                                                               1000.00
17557                                                                                               1000.00
17558                                                                                                385.00
17559                                                                                                375.00
17560                                                                                                  2.00
17561                                                                                                 75.00
17562                                                                                                 50.00
17563                                                                                                  1.00
17564                                                                                                200.00
17565                                                                                                250.00
17566                                                                                                200.00
17567                                                                                                  6.00
17568                                                                                                  1.00
17569                                                                                                  6.00
17570                                                                                                250.00
17571                                                                                                  5.00
17572                                                                                                375.00
17573                                                                                                 50.00
17574                                                                                                270.00
17575                                                                                                  4.50
17576                                                                                           unspecified
17577                                                                                                 30.00
17578                                                                                                500.00
17579                                                                                                 60.00
17580                                                                                                 60.00
17581                                                                                                500.00
17582                                                                                                  1.00
17583                                                                                           application
17584                                                                                                500.00
17585                                                                                                 1-1.5
17586                                                                                                 75.00
17587                                                                                                 75.00
17588                                                                                                 spray
17589                                                                                                  1.40
17590                                                                                                  1.40
17591                                                                                                  1.00
17592                                                                                                  1.40
17593                                                                                               1200.00
17594                                                                                                 37.50
17595                                                                                                 50.00
17596                                                                                                140.00
17597                                                                                                 50.00
17598                                                                                                200.00
17599                                                                                                  1.40
17600                                                                                                 50.00
17601                                                                                                  1.00
17602                                                                                          small amount
17603                                                                                 1 tablet/pill/capsule
17604                                                                                                  0.04
17605                                         460 mg lufenuron, 23 mg milbemycin oxime, 228 mg praziquantel
17606                                                                                                  4.00
17607                                                                                                164.00
17608                                                                                                400.00
17609                                                                                                  5.00
17610                                                                                                170.25
17611                                                                           based on weight (44-88 lbs)
17612                                                                                                  1.75
17613                                                                                                 16.00
17614                                                                                                400.00
17615                                                                           based on weight (45-88 lbs)
17616                                                                                               1000.00
17617                                                                                                  1.83
17618                                                                                                 60.00
17619                                                                                                 16.00
17620                                                                                                500.00
17621                                                                                                  1.00
17622                                                                                                  0.30
17623                                                                                                136.00
17624                                                                                                300.00
17625                                                                                                  1.00
17626                                                                                                  1.74
17627                                                                         based on weight (44.1-88 lbs)
17628                                                                                               1000.00
17629                                                                                                  1.74
17630                                                                                                 10.00
17631                                                                                                  1.00
17632                                                                                                300.00
17633                                                                                               1.71 ml
17634                                                                                               1000.00
17635                                                                                                  1.62
17636                                                                                                200.00
17637                                                                                                100.00
17638                                                                                                730.00
17639                                                                                                200.00
17640                                                                                                375.00
17641                                                                                                  1.00
17642                                                                                                  1.00
17643                                                                                                  2.50
17644                                                                                                  3.50
17645                                                                                                300.00
17646                                                                                                  0.25
17647                                                                                                 62.50
17648                                                                                                 20.00
17649                                                                                                  1.00
17650                                                                                                350.00
17651                                                                                                  2.50
17652                                                                                                 30.00
17653                                                                                                 30.00
17654                                                                                                 10.00
17655                                                                                                 30.00
17656                                                                                                 30.00
17657                                                                                                900.00
17658                                                                                               1000.00
17659                                                                          based on weight (50-100 lbs)
17660                                                                                                500.00
17661                                                                                                 75.00
17662                                                                                                  3.40
17663                                                                                                500.00
17664                                                                                                300.00
17665                                                                                                 75.00
17666                                                                                                100.00
17667                                                                                                 75.00
17668                                                                                               1620.00
17669                                                                                                 27.00
17670                                                                                                60-120
17671                                                                                               1620.00
17672                                                              27 mg milbemycin oxime, 1620 mg spinosad
17673                                                              27 mg milbemycin oxime, 1620 mg spinosad
17674                                                                                                  1.00
17675                                                                                                  2.00
17676                                                                                                  1.00
17677                                                                                                 60.00
17678                                                                                                300.00
17679                                                                                                  1.00
17680                                                                                           unspecified
17681                                                                                                113.50
17682                                                                                                 50.00
17683                                                                                                250.00
17684                                                                                                170.00
17685                                                                                               1693.00
17686                                                                                                400.00
17687                                                                                                500.00
17688                                                                                                  8.00
17689                                                                                                  1.00
17690                                                                                               1650.00
17691                                                                                                150.00
17692                                                                                                250.00
17693                                                                                                  1.00
17694                                                                                                200.00
17695                                                                                                300.00
17696                                                                                                300.00
17697                                                                                              27, 1620
17698                                                                                               1000.00
17699                                                                                                300.00
17700                                                                                                  8.00
17701                                                                                                200.00
17702                                                                                               10, 100
17703                                                                                               23, 460
17704                                                                                                  3.60
17705                                                                                                100.00
17706                                                                                                200.00
17707                                                                                                 50.00
17708                                                                                                750.00
17709                                                                                                100.00
17710                                                                                                  0.14
17711                                                                                                375.00
17712                                                                                                 50.00
17713                                                                                                  0.80
17714                                                                                                 23.00
17715                                                                                                300.00
17716                                                                                                 27.00
17717                                                                                                 19.50
17718                                                                                                150.00
17719                                                                                               23, 460
17720                                                                                          small amount
17721                                                                                                500.00
17722                                                                          based on weight (51-100 lbs)
17723                                                                                                60-120
17724                                                                                                150.00
17725                                                                                                 23.00
17726                                                                                                136.00
17727                                                                                                150.00
17728                                                                                                200.00
17729                                                                                                150.00
17730                                                                                                  1.60
17731                                                                                                 60.00
17732                                                                                                  1.60
17733                                                                                                 60.00
17734                                                                                               1000.00
17735                                                                                                  1.00
17736                                                                                                500.00
17737                                                                                                375.00
17738                                                                                                100.00
17739                                                                                               1000.00
17740                                                                                                  1.00
17741                                                                                                  1.00
17742                                                                                           application
17743                                                                                                1 drop
17744                                                                                                  1.00
17745                                                                                                 36.00
17746                                                                                               1000.00
17747                                                                                                500.00
17748                                                                                                500.00
17749                                                                                                 37.50
17750                                                                                                  2.50
17751                                                                                                136.00
17752                                                                                                  5.00
17753                                                                                                  5.00
17754                                                                                                227.00
17755                                                                           based on weight (45-88 lbs)
17756                                                                                                136.00
17757                                                                                                272.00
17758                                                                                                272.00
17759                                                                                                136.00
17760                                                                                                 68.00
17761                                                                                                136.00
17762                                                                                                150.00
17763                                                                                                272.00
17764                                                                                                136.00
17765                                                                                                100.00
17766                                                                                                  0.60
17767                                                                                                400.00
17768                                                                                                136.00
17769                                                                                                 10.00
17770                                                                                                 10.00
17771                                                                                                  0.40
17772                                                                                                 20.00
17773                                                                                                136.00
17774                                                                                                 32.00
17775                                                                                                272.00
17776                                                                                                  2.50
17777                                                                                                250.00
17778                                                                                                 75.00
17779                                                                                           unspecified
17780                                                           2 mg prednisone, 5 mg trimeprazine tartrate
17781                                                                                             4-6 drops
17782                                                                           based on weight (44-88 lbs)
17783                                                                                                300.00
17784                                                                                                  5.00
17785                                                                                                 16.00
17786                                                                                                750.00
17787                                                                                                 16.00
17788                                                                                               1000.00
17789                                                                                                 16.00
17790                                                                                                 16.00
17791                                                                                               1000.00
17792                                                                                                200.00
17793                                                                                                 16.00
17794                                                                                                  8.00
17795                                                                                               1000.00
17796                                                                                                200.00
17797                                                                                                 16.00
17798                                                                                             6-8 drops
17799                                                                                                200.00
17800                                                                                                200.00
17801                                                                                                750.00
17802                                                                                           unspecified
17803                                                                                           unspecified
17804                                                                                           unspecified
17805                                                                                                  1.00
17806                                                                                                 90.00
17807                                                                                                300.00
17808                                                                                                  1.00
17809                                                                                                 16.00
17810                                                                                                 75.00
17811                                                                                                  1.00
17812                                                                                                300.00
17813                                                                                                 40.00
17814                                                                                                272.00
17815                                                                                                  2.68
17816                                                                                                300.00
17817                                                                                                272.00
17818                                                                          based on weight (60-120 lbs)
17819                                                                                                300.00
17820                                                                                                180.00
17821                                                                                                  3.50
17822                                                                                                  1.00
17823                                                                                                 30.00
17824                                                                                                500.00
17825                                                                                                272.00
17826                                                                                                136.00
17827                                                                                                272.00
17828                                                                                                136.00
17829                                                                                                 90.00
17830                                                                                               1000.00
17831                                                                                                300.00
17832                                                                                           unspecified
17833                                                                                                  1.00
17834                                                                                                  1.00
17835                                                                                                150.00
17836                                                                                                 80.00
17837                                                                                                100.00
17838                                                                                                  4.00
17839                                                                                                  2.50
17840                                                                                                  1.00
17841                                                                                                  1.00
17842                                                                                                 75.00
17843                                                                                                200.00
17844                                                                                                500.00
17845                                                                                           unspecified
17846                                                                                                  4.00
17847                                                                                                 80.00
17848                                                                                                  2.00
17849                                                                                                425.00
17850                                                                                                300.00
17851                                                                                                100.00
17852                                                                                                 40.00
17853                                                                                           unspecified
17854                                                                                                500.00
17855                                                                                           unspecified
17856                                                                                           unspecified
17857                                                                                                 75.00
17858                                                                                                100.00
17859                                                                                                400.00
17860                                                                                           unspecified
17861                                                                                                160.00
17862                                                                                                 50.00
17863                                                                                           unspecified
17864                                                                                                500.00
17865                                                                                           unspecified
17866                                                                                                  1.00
17867                                                                                                  1.00
17868                                                                                                 75.00
17869                                                                                                 68.00
17870                                                                                                136.00
17871                                                                                                  0.02
17872                                                                                                  0.05
17873                                                                                                  0.09
17874                                                                                                250.00
17875                                                                                                125.00
17876                                                                                                250.00
17877                                                                                                500.00
17878                                                                                                  8.00
17879                                                                                                250.00
17880                                                                                                150.00
17881                                                                                                 20.00
17882                                                    0.284 mg betamethasone, 0.57 mg gentamicin sulfate
17883                                                                                                  1.32
17884                                                                                                200.00
17885                                                                                                  3.50
17886                                                                                                 15.00
17887                                                                                                136.00
17888                                                                                                  0.09
17889                                                                                                150.00
17890                                                                                                 40.00
17891                                                                                                 50.00
17892                                                                                                 50.00
17893                                                                                                500.00
17894                                                                                                  8.00
17895                                                                                                150.00
17896                                                                                                  2.68
17897                                                                                                272.00
17898                                                                                                200.00
17899                                                                                                136.00
17900                                                                                                  2.68
17901                                                                                                200.00
17902                                                                                                250.00
17903                                                                                                102.00
17904                                                                                                136.00
17905                                                                                                  2.68
17906                                                                                                200.00
17907                                                                                                250.00
17908                                                                                                  1.00
17909                                                                                                102.00
17910                                                                                                  0.40
17911                                                                                                  8.00
17912                                                                                                  3.50
17913                                                                                                150.00
17914                                                                                                  8.00
17915                                                                                                 50.00
17916                                                                                                150.00
17917                                                                                                 40.00
17918                                                                                                136.00
17919                                                                                                  2.68
17920                                                                                                150.00
17921                                                                                                 40.00
17922                                                                                                 21.00
17923                                                                                                 50.00
17924                                                                                                250.00
17925                                                                                                150.00
17926                                                                                                 50.00
17927                                                                                                325.00
17928                                                                                                100.00
17929                                                                                                136.00
17930                                                                                                  8.00
17931                                                                                                500.00
17932                                                                                                 24.00
17933                                                                                                 25.00
17934                                                                                                  0.40
17935                                                                                                 20.00
17936                                                                                                  1.50
17937                                                                                                425.00
17938                                                                                                 20.00
17939                                                                                                  1.00
17940                                                                                                  1.00
17941                                                                                                100.00
17942                                                                                                  1.00
17943                                                                                                  7.00
17944                                                                                                200.00
17945                                                                                                 50.00
17946                                                                                                500.00
17947                                                                                                  1.00
17948                                                                                                 15.00
17949                                                                                                  3.20
17950                                                                                                 23.00
17951                                                                                                136.00
17952                                                                                                 60.00
17953                                                                                                136.00
17954                                                                                                 23.00
17955                                                                                                 23 mg
17956                                                                                                136.00
17957                                                                                               4 drops
17958                                                                                                136.00
17959                                                                                                 23.00
17960                                                                                                300.00
17961                                                                                                 75.00
17962                                                                                                200.00
17963                                                                                                 75.00
17964                                                                                               1000.00
17965                                                                                                136.00
17966                                                                                                 10.00
17967                                                                                                200.00
17968                                                                                                150.00
17969                                                                                                 15.00
17970                                                                                                136.00
17971                                                                                                136.00
17972                                                                                                 10.00
17973                                                                                                 50.00
17974                                                                                                  2.00
17975                                                                                                200.00
17976                                                                                                  1.00
17977                                                                                                  1.00
17978                                                                                                136.00
17979                                                                                                272.00
17980                                                                                                 50.00
17981                                                                                                 36.00
17982                                                                                                272.00
17983                                                                                                227.00
17984                                                                                                500.00
17985                                                                                                500.00
17986                                                                                                 50.00
17987                                                                                                272.00
17988                                                                                                125.00
17989                                                                                                125.00
17990                                                                                                500.00
17991                                                                                                  1.00
17992                                                                                                 15.00
17993                                                                                                500.00
17994                                                                                                120.00
17995                                                                                                 20.00
17996                                                                                                375.00
17997                                                                                                  8.00
17998                                                                                                 11.50
17999                                                                                                 62.50
18000                                                                                                200.00
18001                                                                                                 26-50
18002                                                                                                 50.00
18003                                                                                                50-100
18004                                                                                                  8.00
18005                                                                                                 50.00
18006                                                                                                  5.00
18007                                                                                                 50.00
18008                                                                                                  4.00
18009                                                                                                 44-88
18010                                                                                                50-100
18011                                                                                                 45-88
18012                                                                                                  1.50
18013                                                                                                  5.40
18014                                                                                                 45-88
18015                                                                                                50-100
18016                                                                                                  1.50
18017                                                                                                100.00
18018                                                                                                  5.40
18019                                                                                                 10.80
18020                                                                                                100.00
18021                                                                                                50-100
18022                                                                                                  5.40
18023                                                                          based on weight (50-100 lbs)
18024                                                                          based on weight (60-121 lbs)
18025                                                                                                  1.00
18026                                                                                                  1.00
18027                                                                                                  5.40
18028                                                                                                 10.80
18029                                                                                                 60.00
18030                                                                                                  1.00
18031                                                                                                  5.40
18032                                                                                                500.00
18033                                                                                                  5.40
18034                                                                                                375.00
18035                                                                                                 50.00
18036                                                                                                200.00
18037                                                                                              45355.00
18038                                                                                                 10.00
18039                                                                                                500.00
18040                                                                                                500.00
18041                                                                                                  1.00
18042                                                                                                  9.00
18043                                                                                                  2.50
18044                                                                                              45355.00
18045                                                                                                500.00
18046                                                                                                272.00
18047                                                                                                136.00
18048                                                                                                500.00
18049                                                                                                272.00
18050                                                                                                136.00
18051                                                                                                200.00
18052                                                                                                 15.00
18053                                                                                                  2.50
18054                                                                                                500.00
18055                                                                                               3 drops
18056                                                                                                2.5 mg
18057                                                                        based on weight (60.1-121 lbs)
18058                                                                          based on weight (51-100 lbs)
18059                                                                                                 50.00
18060                                                                                                 75.00
18061                                                                                                201.00
18062                                                                                                500.00
18063                                                                                                200.00
18064                                                                                                  3.00
18065                                                                                                300.00
18066                                                                                                300.00
18067                                                                                                 20.00
18068                                                                                                  3.00
18069                                                                                                  1.00
18070                                                                                                 50.00
18071                                                                                                  6.00
18072                                                                         based on weight (40.1-60 lbs)
18073                                                                                                 44-88
18074                                                                                       moderate amount
18075                                                                          based on weight (51-100 lbs)
18076                                                                                                 44-88
18077                                                                                                 10.00
18078                                                                                                 10.00
18079                                                                                                  1.00
18080                                                                                                  1.00
18081                                                                                                  1.00
18082                                                                                                272.00
18083                                                                                                  0.36
18084                                                                                                 50.00
18085                                                                                                300.00
18086                                                                                                500.00
18087                                                                                                200.00
18088                                                                                                250.00
18089                                                                                                500.00
18090                                                                                                 60.00
18091                                                                                                 10.00
18092                                                                                                 10.00
18093                                                                                                250.00
18094                                                                                           unspecified
18095                                                                                       based on weight
18096                                                                                           application
18097                                                                                                750.00
18098                                                                                           unspecified
18099                                                                                                  1.00
18100                                                                                                 60.00
18101                                                                                                125.00
18102                                                                                                500.00
18103                                                                                               1000.00
18104                                                                                                200.00
18105                                                                                                562.50
18106                                                                                                300.00
18107                                                                                               1500.00
18108                                                                                                300.00
18109                                                                                                100.00
18110                                                                                                100.00
18111                                                                                                375.00
18112                                                                                                  0.70
18113                                                                                                150.00
18114                                                                                           unspecified
18115                                                                                               23, 460
18116                                                                             based on weight (55+ lbs)
18117                                                                                                50-100
18118                                                                                         1 bottle/vial
18119                                                                                 1 tablet/pill/capsule
18120                                                                                                  4.00
18121                                                                                                 23.00
18122                                                                                                125.00
18123                                                                                                  1.00
18124                                                                             based on weight (50+ lbs)
18125                                                                                                 21-55
18126                                                                                                 23.00
18127                                                                                                  3.00
18128                                                                                                200.00
18129                                                                                                  5.00
18130                                                                                                100.00
18131                                                                                                  8.00
18132                                                                                                  3.00
18133                                                                                                  5.00
18134                                                                                           unspecified
18135                                                                                                  2.40
18136                                                                                                  1.20
18137                                                                                                  0.50
18138                                                                                                  8.00
18139                                                                                                100.00
18140                                                                                                 50.00
18141                                                                                           unspecified
18142                                                                                                  0.36
18143                                                                                                  0.10
18144                                                                                                  6.00
18145                                                                                                  2.10
18146                                                                                                  0.10
18147                                                                                           unspecified
18148                                                                                                 23.00
18149                                                                                                  2.68
18150                                                                                                  1.99
18151                                                                                                  6.00
18152                                                                                                150.00
18153                                                                                                500.00
18154                                                                                                  0.30
18155                                                                                                 48.00
18156                                                                                                100.00
18157                                                                                                 56.75
18158                                                                                                 34.05
18159                                                                                               6 drops
18160                                                                                                 23.00
18161                                                                                                136.00
18162                                                                                                 37.50
18163                                                                                               1000.00
18164                                                                                               6 drops
18165                                                                                          small amount
18166                                                                                                 23.00
18167                                                                                                136.00
18168                                                                                               1000.00
18169                                                                                                  2.00
18170                                                                                                200.00
18171                                                                                                 37.50
18172                                                                                                 20.00
18173                                                                                               1000.00
18174                                                                                                120.00
18175                                                                                                200.00
18176                                                                                                 20.00
18177                                                                                                  3.70
18178                                                                                                120.00
18179                                                                                                  2.90
18180                                                                                                 15.00
18181                                                                                                  9.00
18182                                                                                                136.00
18183                                                                                                 41.47
18184                                                                                                  3.00
18185                                                                                                201.60
18186                                                                                                 20.00
18187                                                                                                200.00
18188                                                                                 1 tablet/pill/capsule
18189                                                                                                100.00
18190                                                                                                272.00
18191                                                                                                100.00
18192                                                                          based on weight (51-100 lbs)
18193                                                                          based on weight (51-100 lbs)
18194                                                                                                 10.00
18195                                                                                           unspecified
18196                                                                                                375.00
18197                                                                                                 50.00
18198                                                                                                250.00
18199                                                                                                  5, 2
18200                                                                                               1000.00
18201                                                                                                 16.00
18202                                                                          based on weight (51-100 lbs)
18203                                                                                                 16.00
18204                                                                                                 16.00
18205                                                                          based on weight (51-100 lbs)
18206                                                                                                 16.00
18207                                                                                                 16.00
18208                                                                                                100.00
18209                                                                                                 16.00
18210                                                                                                500.00
18211                                                                                                100.00
18212                                                                                                 50.00
18213                                                                                           unspecified
18214                                                                                           unspecified
18215                                                                                                 50 mg
18216                                                                                                 10 mg
18217                                                                          based on weight (50-100 lbs)
18218                                                                          based on weight (50-100 lbs)
18219                                                                                                 10.00
18220                                                                                 1 tablet/pill/capsule
18221                                                                                                  2 ml
18222                                                                                 1 tablet/pill/capsule
18223                                                                                                 60.00
18224                                                                                                 50.00
18225                                                                                                200.00
18226                                                                                                 75.00
18227                                                                                                  2.00
18228                                                                                                125.00
18229                                                                                               1620.00
18230                                                                                                 27.00
18231                                                                                                  9.80
18232                                                                                                  8.80
18233                                                                                                 22.10
18234                                                                                                  1.60
18235                                                                                                  1.60
18236                                                                                                  1.50
18237                                                                                                  2.00
18238                                                                                           unspecified
18239                                                                                               1620.00
18240                                                                                                 27.00
18241                                                                                                  4.95
18242                                                                                                  0.44
18243                                                                                                 36.08
18244                                                                                                 16.00
18245                                                                                                  0.08
18246                                                                                                  1.70
18247                                                                                                  1.70
18248                                                                                                  3.00
18249                                                                                                150 mg
18250                                                                                                300.00
18251                                                                                                powder
18252                                                                                                150 mg
18253                                                                                                 50.00
18254                                                                                                100.00
18255                                                                                               1620.00
18256                                                                                                 27.00
18257                                                                                                  1.00
18258                                                                                     0.44, 4.95, 36.08
18259                                                                                                 10.00
18260                                                                                              27, 1620
18261                                                                                                 80.00
18262                                                                                     0.44, 4.95, 36.08
18263                                                                                           unspecified
18264                                                                                              27, 1620
18265                                                                                                 80.00
18266                                                                                              27, 1620
18267                                                                                                 80.00
18268                                                                                                 16.00
18269                                                                                                 75.00
18270                                                                                                100.00
18271                                                                                                    iu
18272                                                                                                 80.00
18273                                                                                                 27.00
18274                                                                                                  1.00
18275                                                                                           unspecified
18276                                                                                           unspecified
18277                                                                                              10 mg/kg
18278                                                                                                  1.00
18279                                                                                                  1.00
18280                                                                                                250.00
18281                                                                                                  1.00
18282                                                                                               1000.00
18283                                                                                                  1.00
18284                                                                                                50-100
18285                                                                                                  1.00
18286                                                                                                900.00
18287                                                                                                200.00
18288                                                                                                300.00
18289                                                                                                100.00
18290                                                                                                325.00
18291                                                                                                 50.00
18292                                                                                                500.00
18293                                                                                                 10.00
18294                                                                                                100.00
18295                                                                                                 60.00
18296                                                                                                  2.00
18297                                                                                                250.00
18298                                                                                                 50.00
18299                                                                                                 45.40
18300                                                                                                  1.00
18301                                                                                                  1.00
18302                                                                                                 50.00
18303                                                                                                 37.50
18304                                                                                                 50.00
18305                                                                                                500.00
18306                                                                                                 50.00
18307                                                                                                 12.50
18308                                                                                                 10.00
18309                                                                                                  1.00
18310                                                                                                  5.00
18311                                                                                               1000.00
18312                                                                                                750.00
18313                                                                                                  2.50
18314                                                                                                  1.00
18315                                                                                                 10.00
18316                                                                                                  1.00
18317                                                                                                200.00
18318                                                                                                  1.00
18319                                                                                                  1.00
18320                                                                                                  1.00
18321                                                                                                  1.00
18322                                                                                                  1.00
18323                                                                                          small amount
18324                                                                                                 20.00
18325                                                                                           unspecified
18326                                                                                           unspecified
18327                                                                                                 15.00
18328                                                                                                 50.00
18329                                                                                                0.1 ml
18330                                                                                                0.1 ml
18331                                                                                                  7.00
18332                                                                                                250.00
18333                                                                                                720.00
18334                                                                                                500.00
18335                                                                                                  1.00
18336                                                                                                 20.00
18337                                                                          based on weight (51-100 lbs)
18338                                                                                              compound
18339                                                                                       based on weight
18340                                                                                       based on weight
18341                                                                                           unspecified
18342                                                                                       based on weight
18343                                                                                               5 drops
18344                                                                          based on weight (51-100 lbs)
18345                                                                                                 30 mg
18346                                                                                                100.00
18347                                                                                                  3.75
18348                                                                                                300.00
18349                                                                                                272.00
18350                                                                                                500.00
18351                                                                                               1000.00
18352                                                                                                 64.80
18353                                                                                                 75.00
18354                                                                                                  3.75
18355                                                                                               2500.00
18356                                                                                                500.00
18357                                                                                                300.00
18358                                                                                                 75.00
18359                                                                                                  1.00
18360                                                                                               2500.00
18361                                                                                                 97.20
18362                                                                                                 30.00
18363                                                                                                150.00
18364                                                                                                300.00
18365                                                                          based on weight (51-100 lbs)
18366                                                                          based on weight (60-120 lbs)
18367                                                                                                  1.00
18368                                                                                                150.00
18369                                                                                                500.00
18370                                                                          based on weight (51-100 lbs)
18371                                                                           based on weight (24-60 lbs)
18372                                                                                                  1.50
18373                                                                          based on weight (51-100 lbs)
18374                                                                          based on weight (60-121 lbs)
18375                                                                                                50-100
18376                                                                                                  7.50
18377                                                                                                 15.00
18378                                                                                               1500.00
18379                                                                                               2000.00
18380                                                                                                  7.50
18381                                                                                                 15.00
18382                                                                                                 40.00
18383                                                                                                  7.50
18384                                                                                                 50.00
18385                                                                                                500.00
18386                                                                                                 40.00
18387                                                                                                  7.50
18388                                                                                                 15.00
18389                                                                                                 50.00
18390                                                                                                272.00
18391                                                                                                272.00
18392                                                                                                500.00
18393                                                                                                  8.00
18394                                                                                               1000.00
18395                                                                                                  2.70
18396                                                                                                272.00
18397                                                                                                  5.00
18398                                                                                                272.00
18399                                                                                                136.00
18400                                                                                                 16.00
18401                                                                                                272.00
18402                                                                                                136.00
18403                                                                                                 16.00
18404                                                                                                 drops
18405                                                                                                 70.00
18406                                                                                                272.00
18407                                                                                                136.00
18408                                                                                                 70.00
18409                                                                                                 16.00
18410                                                                                                200.00
18411                                                                                                375.00
18412                                                                                                 50.00
18413                                                                                               1000.00
18414                                                                                                272.00
18415                                                                          based on weight (51-100 lbs)
18416                                                                                                 44-88
18417                                                                                                 70.00
18418                                                                                                272.00
18419                                                                                                900.00
18420                                                                                                 16.00
18421                                                                                               1000.00
18422                                                                                                 50.00
18423                                                                                                150.00
18424                                                                                                  0.10
18425                                                                                                  0.30
18426                                                                                                  8.00
18427                                                                                          small amount
18428                                                                                               1000.00
18429                                                                                                 16.00
18430                                                                                                 70.00
18431                                                                                                200.00
18432                                                                                               1000.00
18433                                                                                                 80.00
18434                                                                                                 16.00
18435                                                                                                500.00
18436                                                                                                  1.00
18437                                                                                                  5.00
18438                                                                                                 70.00
18439                                                                                                 16.00
18440                                                                                                  1.00
18441                                                                              2 tablets/pills/capsules
18442                                                                                                 50.00
18443                                                                                                500.00
18444                                                                                                  1.00
18445                                                                                                  1.00
18446                                                                                                  1.00
18447                                                                                                 50.00
18448                                                                                                 50.00
18449                                                                                                 25.00
18450                                                                                                 50.00
18451                                                                                                200.00
18452                                                                                                 20.00
18453                                                                                                  1.00
18454                                                                                                  1.00
18455                                                                                                200.00
18456                                                                                                 50.00
18457                                                                                                  1.00
18458                                                                                                  1.00
18459                                                                          based on weight (51-100 lbs)
18460                                                                          based on weight (51-100 lbs)
18461                                                                           based on weight (44-88 lbs)
18462                                                                                                400.00
18463                                                                                                500.00
18464                                                                                                500 mg
18465                                                                                                 50.00
18466                                                                                                1 drop
18467                                                                                               272 mcg
18468                                                                                                 60.00
18469                                                                                       0.25 inch strip
18470                                                                                               272 mcg
18471                                                                                           application
18472                                                                                               272 mcg
18473                                                                                                60-120
18474                                                                                                450.00
18475                                                                                                200.00
18476                                                                                                150.00
18477                                                                                                  1.00
18478                                                                                                750.00
18479                                                                                              27, 1610
18480                                                                                              27, 1610
18481                                                                                                500.00
18482                                                                                               1620.00
18483                                                                                              27, 1610
18484                                                                                                 80.00
18485                                                                                                300.00
18486                                                                                                 50.00
18487                                                                                                500.00
18488                                                                                                 20.00
18489                                                                                       based on weight
18490                                                                                       based on weight
18491                                                                                                 50.00
18492                                                                                                 50.00
18493                                                                                                 20.00
18494                                                                                       based on weight
18495                                                                                       based on weight
18496                                                                                                 50.00
18497                                                                                                227.00
18498                                                                                                  4.70
18499                                                                                                 50.00
18500                                                                                       based on weight
18501                                                                                                 50.00
18502                                                                          based on weight (50-100 lbs)
18503                                                                                                 50.00
18504                                                                                                  1.00
18505                                                                                                130.00
18506                                                                                                100.00
18507                                                                                                 75.00
18508                                                                                                300.00
18509                                                                                                 75.00
18510                                                                                                300.00
18511                                                                                                 75.00
18512                                                                                               272 mcg
18513                                                                                                272.00
18514                                                                           based on weight (21-55 lbs)
18515                                                                                                100.00
18516                                                                                                250.00
18517                                                                                                272.00
18518                                                                                                200.00
18519                                                                                                 24-60
18520                                                                              based on weight (60 lbs)
18521                                                                                                113.00
18522                                                                                                500.00
18523                                                                                                 16.00
18524                                                                                                272.00
18525                                                                           based on weight (44-88 lbs)
18526                                                                                               1000.00
18527                                                                                               1000.00
18528                                                                                                  1.00
18529                                                                                                  1.00
18530                                                                                                  1.00
18531                                                                                                  1.00
18532                                                                                               1000.00
18533                                                                                               1000.00
18534                                                                                           unspecified
18535                                                                                                  2.00
18536                                                                                                  1.00
18537                                                                                                113.50
18538                                                                                                272.00
18539                                                                                                 45-88
18540                                                                                                 10.00
18541                                                                                                272.00
18542                                                                                                 45-88
18543                                                                                               6 drops
18544                                                                                                  4.00
18545                                                                                                 16.00
18546                                                                                                227.00
18547                                                                                                  3.00
18548                                                                                                200.00
18549                                                                                                 30.00
18550                                                                                                  1.00
18551                                                                                                  3.60
18552                                                                                                  3.60
18553                                                                                                400.00
18554                                                                                                  2.00
18555                                                                                                 70.00
18556                                                                                                  4.00
18557                                                                                                  3.20
18558                                                                                                  1.00
18559                                                                                                120.00
18560                                                                                                400.00
18561                                                                                                272.00
18562                                                                                                  1 ml
18563                                                                                                200.00
18564                                                                                                272.00
18565                                                                             based on weight (55+ lbs)
18566                                                                                                150.00
18567                                                                                                562.50
18568                                                                                                300.00
18569                                                                                                204.00
18570                                                                                                  1.00
18571                                                                          based on weight (51-100 lbs)
18572                                                                          based on weight (60-120 lbs)
18573                                                                                                  1.00
18574                                                                                                  1.00
18575                                                                                                272.00
18576                                                                          based on weight (51-100 lbs)
18577                                                                        based on weight (60.1-121 lbs)
18578                                                                                                250.00
18579                                                                                                 60.00
18580                                                                          based on weight (50-100 lbs)
18581                                                                                                  1.00
18582                                                                                                960.00
18583                                                                                                 68.00
18584                                                                                                500.00
18585                                                                                                375.00
18586                                                                                                 60.00
18587                                                                                                  2.00
18588                                                                                           unspecified
18589                                                                                                272.00
18590                                                                                                227.00
18591                                                                                                 spray
18592                                                                                                460.00
18593                                                                                                460.00
18594                                                                                                460.00
18595                                                                                           as directed
18596                                                                                                 23.00
18597                                                                                                136.00
18598                                                                                                 23.00
18599                                                                                                136.00
18600                                                                                                 23.00
18601                                                                                                136.00
18602                                                                                                500.00
18603                                                                                                100.00
18604                                                                                                 75.00
18605                                                                                                500.00
18606                                                                                                200.00
18607                                                                                                  1.00
18608                                                                                                500.00
18609                                                                                           unspecified
18610                                                                                                  1.00
18611                                                                                                 75.00
18612                                                                                           unspecified
18613                                                                                                  3.00
18614                                                                                                 40-60
18615                                                                                                 23.00
18616                                                                                                136.00
18617                                                                                                 23.00
18618                                                                                                136.00
18619                                                                                                300.00
18620                                                                                                 75.00
18621                                                                                           unspecified
18622                                                                                                 30.00
18623                                                                                                200.00
18624                                                                                                200.00
18625                                                                                                 70.00
18626                                                                                                  5.00
18627                                                                                                 75.00
18628                                                                                                200.00
18629                                                                                                  4.00
18630                                                                                                  2.00
18631                                                                                                 15.00
18632                                                                                                 20.00
18633                                                                                                 15.00
18634                                                                                                125.00
18635                                                                                                  1.00
18636                                                                                                 50.00
18637                                                                                                750.00
18638                                                                                                500.00
18639                                                                                                  6.00
18640                                                                                                 75.00
18641                                                                                                750.00
18642                                                                                                750.00
18643                                                                                                 75.00
18644                                                                                               1000.00
18645                                                                                                 16.00
18646                                                                                                 16.00
18647                                                                                                272.00
18648                                                                                                  1.00
18649                                                                             based on weight (25+ lbs)
18650                                                                                                 75.00
18651                                                                                                 50.00
18652                                                                                                 16.00
18653                                                                                               1000.00
18654                                                                                                 90.00
18655                                                                                               1000.00
18656                                                                                                  8.00
18657                                                                                                 90.00
18658                                                                                                 16.00
18659                                                                                               1000.00
18660                                                                                                 16.00
18661                                                                                                136.00
18662                                                                                                272.00
18663                                                                                                 16.00
18664                                                                                               1000.00
18665                                                                                                150.00
18666                                                                                                  4.00
18667                                                                                                 16.00
18668                                                                                                 16.00
18669                                                                                                  1.00
18670                                                                                               1000.00
18671                                                                                                 16.00
18672                                                                                                150.00
18673                                                                                                  8.00
18674                                                                                                  1.00
18675                                                                                                 75.00
18676                                                                                                 30.00
18677                                                                                                300.00
18678                                                                                               1000.00
18679                                                                                                500.00
18680                                                                                                 16.00
18681                                                                                                 75.00
18682                                                                                                 20.00
18683                                                                                                560.00
18684                                                                                                  9.30
18685                                                                                                500 mg
18686                                                                                 1 tablet/pill/capsule
18687                                                                                             5-8 drops
18688                                                                                                  3 mg
18689                                                                      2-3 tablets/pills/capsules - 4mg
18690                                                                                           unspecified
18691                                                                                                200.00
18692                                                                                                 65.00
18693                                                                                                 60.00
18694                                                                                             11.5, 230
18695                                                                                                  2.68
18696                                                                           based on weight (45-88 lbs)
18697                                                                          based on weight (50-100 lbs)
18698                                                                                                  1.25
18699                                                                                                 15.00
18700                                                                                                 14.00
18701                                                                                                500.00
18702                                                                                                500.00
18703                                                                          based on weight (51-100 lbs)
18704                                                                                                 24-60
18705                                                                                                 26-50
18706                                                                                                272.00
18707                                                           132 mcg ivermectin, 114 mg pyrantel pamoate
18708                                                                                                 68.00
18709                                                                                                 24.00
18710                                                                                                500.00
18711                                                                                                375.00
18712                                                                                                136.00
18713                                                                                                100.00
18714                                                                                                500.00
18715                                                                                                375.00
18716                                                                                           unspecified
18717                                                                                                250.00
18718                                                                                           unspecified
18719                                                                                                 24.00
18720                                                                                                 10.00
18721                                                                                                100.00
18722                                                                                                100.00
18723                                                                                                 24.00
18724                                                                                                500.00
18725                                                                                                 24.00
18726                                                                                                100.00
18727                                                                                                  1.00
18728                                                                                                  1.00
18729                                                                                           unspecified
18730                                                                                                 24.00
18731                                                                                                100.00
18732                                                                                                  1.00
18733                                                                                                  1.00
18734                                                                            based on weight (5-10 lbs)
18735                                                                            based on weight (0-25 lbs)
18736                                                                         based on weight (20.1-40 lbs)
18737                                                                                                  4.50
18738                                                                                                100.00
18739                                                                                                250.00
18740                                                                                                  2.00
18741                                                                                                 50.00
18742                                                                                                100.00
18743                                                                           based on weight (26-50 lbs)
18744                                                                                                  1.00
18745                                                                                                  1.00
18746                                                                                                227.00
18747                                                                                                 68.00
18748                                                                                                  1.00
18749                                                                                                272.00
18750                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
18751                                                                                                136.00
18752                                                                                                100.00
18753                                                                                                 75 mg
18754                                                                                                500.00
18755                                                                                                150.00
18756                                                                                                 75.00
18757                                                                                                500.00
18758                                                                                                 40.00
18759                                                                                                100.00
18760                                                                                                 16.00
18761                                                                                                150.00
18762                                                                                                300.00
18763                                                                                                112.50
18764                                                                                                 16.00
18765                                                                                                200.00
18766                                                                                                300.00
18767                                                                                                  2.00
18768                                                                                                810.00
18769                                                                                                 13.50
18770                                                                                                250.00
18771                                                                                               1000.00
18772                                                                                                500.00
18773                                                                                                  1.00
18774                                                                                             13.5, 810
18775                                                             13.5 mg milbemycin oxime, 810 mg spinosad
18776                                                                                                150.00
18777                                                                                                  5.00
18778                                                                                                  1.00
18779                                                                                                 20.00
18780                                                                                                 50.00
18781                                                                                                 10.00
18782                                                                                                 20.00
18783                                                                                                 30.00
18784                                                                                                 75.00
18785                                                                                                 20.00
18786                                                                                                 25.00
18787                                                                                                 20.00
18788                                                                                                  1.00
18789                                                                                                 25.00
18790                                                                                                 10.00
18791                                                                                                 30.00
18792                                                                                                 50.00
18793                                                                                                 75.00
18794                                                                                                 20.00
18795                                                                                           as directed
18796                                                                                           as directed
18797                                                                                           as directed
18798                                                                                           as directed
18799                                                                                              114, 136
18800                                                                          based on weight (51-100 lbs)
18801                                                                                                272.00
18802                                                                                                  4.00
18803                                                                                                  1.00
18804                                                                                                272.00
18805                                                                                                227.00
18806                                                                                                 23.00
18807                                                                                                272.00
18808                                                                                                300.00
18809                                                                                                500.00
18810                                                                                                 60.00
18811                                                                                                  1.00
18812                                                                                                 60.00
18813                                                                                                 50.00
18814                                                                                                113.50
18815                                                                                                113.50
18816                                                                                                 37.50
18817                                                                                                 50.00
18818                                                                                                200.00
18819                                                                                                 83.30
18820                                                                                          small amount
18821                                                                                               5 drops
18822                                                                                                 50.00
18823                                                                                                 75.00
18824                                                                                                500.00
18825                                                                                                500.00
18826                                                                                                  1.00
18827                                                                                                 16.00
18828                                                                                                  3.20
18829                                                                                           unspecified
18830                                                                                                  0.40
18831                                                                                                100.00
18832                                                                                                  0.40
18833                                                                                                200.00
18834                                                                                                 16.00
18835                                                                                                 75.00
18836                                                                                               1620.00
18837                                                                          based on weight (60-120 lbs)
18838                                                                                       based on weight
18839                                                                           based on weight (45-90 lbs)
18840                                                                                                  3.60
18841                                                                                                500.00
18842                                                                                                  1.00
18843                                                                                                200.00
18844                                                                           based on weight (45-90 lbs)
18845                                                                        based on weight (50.1-100 lbs)
18846                                                                                                 44-88
18847                                                                                       based on weight
18848                                                                                                 16.00
18849                                                                                                 10.00
18850                                                                                       based on weight
18851                                                                                                 16 mg
18852                                                                                 1 tablet/pill/capsule
18853                                                                                 1 tablet/pill/capsule
18854                                                                                 1 tablet/pill/capsule
18855                                                                                                50-100
18856                                                                                                 44-88
18857                                                                                                 16.00
18858                                                                                                 75.00
18859                                                                                                750.00
18860                                                                                                500.00
18861                                                                                                  5.00
18862                                                                                                 16.00
18863                                                                                                 75.00
18864                                                                                                  1.00
18865                                                                                                  1.00
18866                                                                                                500.00
18867                                                                                                 16.00
18868                                                                                                 80.00
18869                                                                                                  1.00
18870                                                                                                  2.00
18871                                                                                                170.00
18872                                                                                                300.00
18873                                                                                                 75.00
18874                                                                                               1620.00
18875                                                                                                  1.00
18876                                                                                                  1.00
18877                                                                                                  1.00
18878                                                                                                  1.00
18879                                                                                                  1.00
18880                                                                                                  1.00
18881                                                                                                  1.00
18882                                                                                           application
18883                                                                                                500.00
18884                                                                                                  3.00
18885                                                                                                300.00
18886                                                                                                272.00
18887                                                                                                136.00
18888                                                                                                  0.75
18889                                                                                                  1.60
18890                                                                                                  0.70
18891                                                                                                  1.30
18892                                                                                                150.00
18893                                                                                                  1.00
18894                                                                                                272.00
18895                                                                                                136.00
18896                                                                                                  7.00
18897                                                                                                  2.00
18898                                                                                                  1.00
18899                                                                                                  2.00
18900                                                                                                900.00
18901                                                                                               1500.00
18902                                                                                                272.00
18903                                                                                                136.00
18904                                                                                              44 mg/kg
18905                                                                                            0.02 mg/kg
18906                                                                                                500.00
18907                                                                                                300.00
18908                                                                          based on weight (51-100 lbs)
18909                                                                             based on weight (55+ lbs)
18910                                                                                                272.00
18911                                                                                                300.00
18912                                                                                                 75.00
18913                                                                                                  4.00
18914                                                                                                272.00
18915                                                                                                272.00
18916                                                                                                136.00
18917                                                                                                272.00
18918                                                                                                136.00
18919                                                                                                collar
18920                                                                                                272.00
18921                                                                             based on weight (18+ lbs)
18922                                                                                                  2.00
18923                                                                                               1000.00
18924                                                                                           unspecified
18925                                                                                                125.00
18926                                                                                                750.00
18927                                                                                                100.00
18928                                                                                                125.00
18929                                                                                                 15.00
18930                                                                                                272.00
18931                                                                                                 45-88
18932                                                                                                55-100
18933                                                                                           unspecified
18934                                                                                                55-100
18935                                                                        based on weight (50.1-100 lbs)
18936                                                                                       based on weight
18937                                                                                       based on weight
18938                                                                                                500.00
18939                                                                                                272.00
18940                                                                                                272.00
18941                                                                                                200.00
18942                                                                                                 60.00
18943                                                                                                600.00
18944                                                                                                 60.00
18945                                                                                                204.00
18946                                                                                                 15.00
18947                                                                                                 60.00
18948                                                                                                  2.00
18949                                                                                                750.00
18950                                                                                                240.00
18951                                                                                                272.00
18952                                                                                                227.00
18953                                                                                                  8.80
18954                                                                                                 44.00
18955                                                                                               1000.00
18956                                                                                                 16.00
18957                                                                                                200.00
18958                                                                                                  8.00
18959                                                                                                136.00
18960                                                                                                272.00
18961                                                                              2 tablets/pills/capsules
18962                                                                                                272.00
18963                                                                                                136.00
18964                                                                                           unspecified
18965                                                                                                  8.00
18966                                                                                                  7.50
18967                                                                                                272.00
18968                                                                                                136.00
18969                                                                                                  7.50
18970                                                                                 1 tablet/pill/capsule
18971                                                                                                  1.00
18972                                                                                                272.00
18973                                                                                                 68.00
18974                                                                                                  7.50
18975                                                                                                272.00
18976                                                                                                136.00
18977                                                                                                  7.50
18978                                                                                                200.00
18979                                                                                                  7.50
18980                                                                                                272.00
18981                                                                                                200.00
18982                                                                                                272.00
18983                                                                                                500.00
18984                                                                                                200.00
18985                                                                                                170.00
18986                                                                                                500.00
18987                                                                                 1 tablet/pill/capsule
18988                                                                                 1 tablet/pill/capsule
18989                                                                                               0.5 tsp
18990                                                                                                272.00
18991                                                                          based on weight (51-100 lbs)
18992                                                                                                325.00
18993                                                                                              2 scoops
18994                                                                                                200.00
18995                                                                                                  3.00
18996                                                                                                200.00
18997                                                                                           unspecified
18998                                                                                           unspecified
18999                                                                                                  1.00
19000                                                                                                 16.00
19001                                                                                                150.00
19002                                                                                                200.00
19003                                                                                           unspecified
19004                                                                                           unspecified
19005                                                                                           unspecified
19006                                                                                           unspecified
19007                                                                                                  3.00
19008                                                                                           unspecified
19009                                                                                           unspecified
19010                                                                                                  1.00
19011                                                                                                  1.00
19012                                                                                                  1.00
19013                                                                                                  1.00
19014                                                                                                500.00
19015                                                                                           unspecified
19016                                                                                                  1.00
19017                                                                                                  1.00
19018                                                                                                200.00
19019                                                                                           unspecified
19020                                                                                                 10.00
19021                                                                                           unspecified
19022                                                                          based on weight (60-120 lbs)
19023                                                                                          small amount
19024                                                                                                  1.00
19025                                                                                 1 tablet/pill/capsule
19026                                                                                                 37.50
19027                                                                                                300.00
19028                                                                                                 25.00
19029                                                                                                300.00
19030                                                                                                 20.00
19031                                                                                                125.00
19032                                                                                                  9.30
19033                                                                                                 23.00
19034                                                                                                460.00
19035                                                                                                228.00
19036                                                                                                272.00
19037                                                                                                 68.00
19038                                                                                                272.00
19039                                                                                                136.00
19040                                                              27 mg milbemycin oxime, 1620 mg spinosad
19041                                                           23 mg milbemycin oxime, 228 mg praziquantel
19042                                                                                                272.00
19043                                                                                                 45-88
19044                                                                                                625.00
19045                                                                                                  1.00
19046                                                                                                480.00
19047                                                                                                  1.00
19048                                                                                                500.00
19049                                                                                                  0.01
19050                                                                                                272.00
19051                                                                                                 45-88
19052                                                                                                200.00
19053                                                                                                 20.00
19054                                                                                                272.00
19055                                                                           based on weight (45-88 lbs)
19056                                                                                           unspecified
19057                                                                               2 mg/ml, 1%, 22.7 mg/ml
19058                                                                                                  8.00
19059                                                                                                  0.40
19060                                                                                                  0.40
19061                                                                                       based on weight
19062                                                                          based on weight (50-100 lbs)
19063                                                                                                500.00
19064                                                                                                300.00
19065                                                                                                 50.00
19066                                                                                                 50.00
19067                                                                                                 60.00
19068                                                                              based on weight (50 lbs)
19069                                                                                                  0.20
19070                                                                             based on weight (50+ lbs)
19071                                                                                                227.00
19072                                                                           based on weight (45-88 lbs)
19073                                                                          based on weight (51-100 lbs)
19074                                                                                                500.00
19075                                                                                                136.00
19076                                                                                                100.00
19077                                                                                                 45-88
19078                                                                          based on weight (51-100 lbs)
19079                                                                                                  2.50
19080                                                                                                  2.50
19081                                                                                                  2.50
19082                                                                           based on weight (45-88 lbs)
19083                                                                                                272.00
19084                                                                                                100.00
19085                                                                                                272.00
19086                                                                                                  5.30
19087                                                                                                  0.55
19088                                                                                                272.00
19089                                                                                                 16.08
19090                                                                                                  6.00
19091                                                                                                  0.50
19092                                                                                                100.00
19093                                                                                                750.00
19094                                                                                                  0.43
19095                                                                                                  5.00
19096                                                                                                190.00
19097                                                                                                 19.00
19098                                                                                                  0.45
19099                                                                                                 95.00
19100                                                                                                100.00
19101                                                                                                  8.00
19102                                                                                               55.1-88
19103                                                                                                  0.10
19104                                                                                                600.00
19105                                                                                                  1.00
19106                                                                                                500.00
19107                                                                                                  3.00
19108                                                                                                 15.00
19109                                                                                                  4.00
19110                                                                                                  0.15
19111                                                                                                  4.00
19112                                                                                                375.00
19113                                                                                                136.00
19114                                                                                                  0.16
19115                                                                                                 10.00
19116                                                                                                  1.00
19117                                                                                                 20.00
19118                                                                                                 20.00
19119                                                                                                 15.00
19120                                                                                                 10.00
19121                                                                                                900.00
19122                                                                             based on weight (55+ lbs)
19123                                                                                                  1.30
19124                                                                                                  3.20
19125                                                                                                  2.30
19126                                                                                                  1.60
19127                                                                                                  1.60
19128                                                                                                  0.30
19129                                                                                                  0.10
19130                                                                           based on weight (44-88 lbs)
19131                                                                                                 15.00
19132                                                                                                 20.00
19133                                                                                                600.00
19134                                                                                                  0.13
19135                                                                                                 15.00
19136                                                                                                 20.00
19137                                                                                                  4.80
19138                                                                                                 15.00
19139                                                                                                 20.00
19140                                                                                                  1.00
19141                                                                                                  1.50
19142                                                                                                  1.00
19143                                                                                                 15.00
19144                                                                                                 20.00
19145                                                                                                  1.50
19146                                                                                                  1.00
19147                                                                                                 20.00
19148                                                                                                 10.00
19149                                                                                                 15.00
19150                                                                                                 20.00
19151                                                                                                  1.00
19152                                                                                           application
19153                                                                         based on weight (24.1-60 lbs)
19154                                                                        based on weight (50.1-100 lbs)
19155                                                                                                  1.00
19156                                                                                                  1.00
19157                                                                                                  1.00
19158                                                                                                  1.00
19159                                                                                           unspecified
19160                                                                                                 10.00
19161                                                                                                113.50
19162                                                                                                  6.00
19163                                                                                                 10.00
19164                                                                                                  1.00
19165                                                                          based on weight (51-100 lbs)
19166                                                                                                  1.00
19167                                                                                                  1.00
19168                                                                                                 20.00
19169                                                                          based on weight (51-100 lbs)
19170                                                                           based on weight (45-88 lbs)
19171                                                                                                 16.00
19172                                                                                                 16.00
19173                                                                                                100.00
19174                                                                                                100.00
19175                                                                                                300.00
19176                                                                                                 34.00
19177                                                                                                  7.00
19178                                                                                                  0.10
19179                                                                                                  8.00
19180                                                                                                200.00
19181                                                                                                  5.00
19182                                                                                                  1.00
19183                                                                                                collar
19184                                                                                           unspecified
19185                                                                                                170.00
19186                                                                                               1000.00
19187                                                                                                  8.00
19188                                                                                                  8.00
19189                                                                                                 75.00
19190                                                                                                100.00
19191                                                                                                750.00
19192                                                                                                300.00
19193                                                                                                  1.00
19194                                                                                                 62.50
19195                                                                                                 30.00
19196                                                                                                200.00
19197                                                                                                  3.00
19198                                                                                                 30.00
19199                                                                                                 75.00
19200                                                                                                 60.00
19201                                                                                                 30.00
19202                                                                                                 50.00
19203                                                                                                124.00
19204                                                                                                  5.00
19205                                                                                                375.00
19206                                                                                                  5.00
19207                                                                                                  6.00
19208                                                                                                  4.00
19209                                                                                                150.00
19210                                                                                                 50.00
19211                                                                                                 50.00
19212                                                                                                125.00
19213                                                                                           unspecified
19214                                                                                           unspecified
19215                                                                          based on weight (51-100 lbs)
19216                                                                          based on weight (51-100 lbs)
19217                                                                                                1 tube
19218                                                                                                  2.00
19219                                                                                                150.00
19220                                                                                       based on weight
19221                                                                          based on weight (51-100 lbs)
19222                                                                           based on weight (44-88 lbs)
19223                                                                          based on weight (51-100 lbs)
19224                                                                                                collar
19225                                                                                                500.00
19226                                                                                                  1.00
19227                                                                                                375.00
19228                                                                                                  1.00
19229                                                                                                 50.00
19230                                                                                                150.00
19231                                                                                                  1.00
19232                                                                                                 60.00
19233                                                                                                 20.00
19234                                                                                                  1.00
19235                                                                                                500.00
19236                                                                                               1000.00
19237                                                                                                 10.00
19238                                                                                                 50.00
19239                                                                                               1000.00
19240                                                                                                 50.00
19241                                                                                                300 mg
19242                                                                                                 75 mg
19243                                                                                                272.00
19244                                                                                                227.00
19245                                                                                                  1.00
19246                                                                                           as directed
19247                                                                                                500.00
19248                                                                                                  0.20
19249                                                                                                  1.00
19250                                                                                                250.00
19251                                                                                                125.00
19252                                                                               0.5 tablet/pill/capsule
19253                                                                               1.5 tablet/pill/capsule
19254                                                                               1-2 tablet/pill/capsule
19255                                                                                               272 mcg
19256                                                                                                227 mg
19257                                                                                                 23 mg
19258                                                                                                228 mg
19259                                                                                                 23 mg
19260                                                                                                  3.25
19261                                                                                                480.00
19262                                                                                                250.00
19263                                                                                                 60.00
19264                                                                                                  1.00
19265                                                                                                  3.25
19266                                                                                                270.00
19267                                                                                                150.00
19268                                                                                                  3.25
19269                                                                                                125.00
19270                                                                                                  6.00
19271                                                                          based on weight (51-100 lbs)
19272                                                                         based on weight (44.1-88 lbs)
19273                                                                          based on weight (50-100 lbs)
19274                                                                                               1000.00
19275                                                                                                200.00
19276                                                                                                1 tube
19277                                                                                                200.00
19278                                                                          based on weight (51-100 lbs)
19279                                                                                               1000.00
19280                                                                                                 10.00
19281                                                                           based on weight (44-88 lbs)
19282                                                                           based on weight (44-88 lbs)
19283                                                                                                500.00
19284                                                                                                500.00
19285                                                                                                 16.00
19286                                                                                                 16.00
19287                                                                                                 10.00
19288                                                                                           unspecified
19289                                                                                                 50.00
19290                                                                                                 10.00
19291                                                                                                500.00
19292                                                                                                525.00
19293                                                                                                136.00
19294                                                                                                 50.00
19295                                                                                                136.00
19296                                                                                                 16.00
19297                                                                                                 50.00
19298                                                                                           unspecified
19299                                                                                           unspecified
19300                                                                                                 16.00
19301                                                                                                 50.00
19302                                                                                                272.00
19303                                                                                                  0.09
19304                                                                                                 15.00
19305                                                                                                272.00
19306                                                                                                  0.09
19307                                                                                               1000.00
19308                                                                                                  5.00
19309                                                                                                100.00
19310                                                                                                  1.70
19311                                                                                                 75.00
19312                                                                                                 23.00
19313                                                                                                  2.68
19314                                                                                                 23.00
19315                                                                                                 44-88
19316                                                                                                  5.00
19317                                                                                                 23.00
19318                                                                           based on weight (44-88 lbs)
19319                                                                                                  1.00
19320                                                                                                 16.00
19321                                                                                                  1.00
19322                                                                                                100.00
19323                                                                                                  1.00
19324                                                                                                100.00
19325                                                                                           unspecified
19326                                                                              based on weight (50 lbs)
19327                                                                              based on weight (50 lbs)
19328                                                                                                125.00
19329                                                                                                480.00
19330                                                                                                250.00
19331                                                                                                500 mg
19332                                                                                                500.00
19333                                                                                                 23.00
19334                                                                                                200.00
19335                                                                                                200 mg
19336                                                                                                100 mg
19337                                                                                                375.00
19338                                                                                           unspecified
19339                                                                                                250.00
19340                                                                                                 50.00
19341                                                                                                  1.00
19342                                                                                                102.00
19343                                                                                                750.00
19344                                                                                                  1.00
19345                                                                                                  1.00
19346                                                                                                  1.00
19347                                                                                                  1.00
19348                                                                                                100.00
19349                                                                                                500.00
19350                                                                                       0.25 inch strip
19351                                                                                                 50.00
19352                                                                                                 50.00
19353                                                                                           unspecified
19354                                                                                           unspecified
19355                                                                                                 50.00
19356                                                                          based on weight (50-100 lbs)
19357                                                                             based on weight (55+ lbs)
19358                                                                                                 16.00
19359                                                                                                272.00
19360                                                                                                 16.00
19361                                                                                                 16.00
19362                                                                                                 16.00
19363                                                                                                500.00
19364                                                                                                 16.00
19365                                                                                                272.00
19366                                                                                                272.00
19367                                                                                                272.00
19368                                                                                                272.00
19369                                                                                                 68.00
19370                                                                                                100.00
19371                                                                                                900.00
19372                                                                                                 50.00
19373                                                                          based on weight (51-100 lbs)
19374                                                                                                 44-88
19375                                                                                                  1.00
19376                                                                                                272.00
19377                                                                                                 80.00
19378                                                                                                100.00
19379                                                                                               2655.00
19380                                                                                                272.00
19381                                                                                                 80.00
19382                                                                                                100.00
19383                                                                                                375.00
19384                                                                                                  1.00
19385                                                                                                100.00
19386                                                                          based on weight (51-100 lbs)
19387                                                                          based on weight (51-100 lbs)
19388                                                                                                375.00
19389                                                                                                 50.00
19390                                                                                           application
19391                                                                          based on weight (51-100 lbs)
19392                                                                                                  8.00
19393                                                                                                375.00
19394                                                                                                 50.00
19395                                                                                                  4.00
19396                                                                                                750.00
19397                                                                                                  0.25
19398                                                                                                 10.00
19399                                                                                                 23.00
19400                                                                                                 25.00
19401                                                                                                272.00
19402                                                                                                136.00
19403                                                                                                102.00
19404                                                                                                375.00
19405                                                                                                 23.00
19406                                                                                                500.00
19407                                                                                                 23.00
19408                                                                                                 23.00
19409                                                                                                 23.00
19410                                                                                                480.00
19411                                                                                                200.00
19412                                                                                                 60.00
19413                                                                                                200.00
19414                                                                                                 60.00
19415                                                                                                272.00
19416                                                                                                272.00
19417                                                                                                  0.30
19418                                                                                                  0.60
19419                                                                                                  8.00
19420                                                                                                  3.70
19421                                                                                                300.00
19422                                                                                                  4.02
19423                                                                          based on weight (51-100 lbs)
19424                                                                                                 44-88
19425                                                                                                  2.68
19426                                                                                                  1.00
19427                                                                                       based on weight
19428                                                                                                150.00
19429                                                                                                 20.00
19430                                                                                                250.00
19431                                                                                                272.00
19432                                                                                                272.00
19433                                                                                                272.00
19434                                                                                               1000.00
19435                                                                                                500.00
19436                                                                                                 50.00
19437                                                                                                  8.00
19438                                                                                                 15.00
19439                                                                                                  5.00
19440                                                                                                 10.00
19441                                                                                                375.00
19442                                                                                                 60.00
19443                                                                                                 25.00
19444                                                                                                 50.00
19445                                                                          based on weight (51-100 lbs)
19446                                                                           based on weight (45-88 lbs)
19447                                                                          based on weight (51-100 lbs)
19448                                                                           based on weight (44-88 lbs)
19449                                                                                       based on weight
19450                                                                           based on weight (61-80 lbs)
19451                                                                                                500 mg
19452                                                                                           unspecified
19453                                                                                           unspecified
19454                                                                                           unspecified
19455                                                                                                 20.00
19456                                                                                                 50.00
19457                                                                          based on weight (51-100 lbs)
19458                                                                                                 15.00
19459                                                                                                500.00
19460                                                                                                200.00
19461                                                                                                 44-88
19462                                                                          based on weight (51-100 lbs)
19463                                                                           based on weight (44-88 lbs)
19464                                                                                           unspecified
19465                                                                                           unspecified
19466                                                                                                 80.00
19467                                                                                                100.00
19468                                                                                                 37.50
19469                                                                                                136.00
19470                                                                                                  8.00
19471                                                                                                500.00
19472                                                                                                 70.00
19473                                                                                                 50.00
19474                                                                                                100.00
19475                                                                                                 50.00
19476                                                                              based on weight (35 lbs)
19477                                                                                                 50.00
19478                                                                                                200.00
19479                                                                                                500.00
19480                                                                                                250.00
19481                                                                                                500.00
19482                                                                          based on weight (51-100 lbs)
19483                                                                                                  8.00
19484                                                                                                  8.00
19485                                                                                                300.00
19486                                                                          based on weight (50-100 lbs)
19487                                                                          based on weight (60-120 lbs)
19488                                                                                                 25.00
19489                                                                                                 10.00
19490                                                                                                  2.00
19491                                                                                              23 mg/ml
19492                                                                          based on weight (50-100 lbs)
19493                                                                          based on weight (60-121 lbs)
19494                                                                                                  0.02
19495                                                                             based on weight (50+ lbs)
19496                                                                                                 70.00
19497                                                                                                272.00
19498                                                                                                136.00
19499                                                                                                 15.00
19500                                                                                               0.57 mg
19501                                                                                                  1.00
19502                                                                                                 70.00
19503                                                                                                272.00
19504                                                                                                136.00
19505                                                                                                 10.00
19506                                                                                                 16.00
19507                                                                                                  2.00
19508                                                                                                272.00
19509                                                                                                136.00
19510                                                                                                 15.00
19511                                                                                                  7.50
19512                                                                                                 16.00
19513                                                                                                 70.00
19514                                                                                                 16.60
19515                                                                                                  3.00
19516                                                                                                  1.00
19517                                                                                                  1.00
19518                                                                                                 70.00
19519                                                                                                 80.00
19520                                                                                                 15.00
19521                                                                                                  7.50
19522                                                                                                  3.00
19523                                                                                                 15.00
19524                                                                                                  2.00
19525                                                                                                 55.00
19526                                                                                                 30.00
19527                                                                                                204.00
19528                                                                                                600.00
19529                                                                                                 15.00
19530                                                                                                  7.50
19531                                                                                                 35.00
19532                                                                                                325.00
19533                                                                                                 20.00
19534                                                                                                  3.00
19535                                                                                                 50.00
19536                                                                                                 20.00
19537                                                                                       based on weight
19538                                                                                                 10.00
19539                                                                                                  5.00
19540                                                                                                500.00
19541                                                                                                  1.00
19542                                                                                                  1.00
19543                                                                                                  1.00
19544                                                                                                  1.00
19545                                                                                                 16.00
19546                                                                                                500.00
19547                                                                                                  7.00
19548                                                                                                  1.00
19549                                                                                                 10.00
19550                                                                                                  1.00
19551                                                                                                  1.00
19552                                                                                                 10.00
19553                                                                                                200.00
19554                                                                                                 10.00
19555                                                                                                500.00
19556                                                                                                250.00
19557                                                                                                 10.00
19558                                                                                                250.00
19559                                                                                                500.00
19560                                                                                                 20.00
19561                                                                                               1000.00
19562                                                                                                  1.00
19563                                                                                                250.00
19564                                                                                                 20.00
19565                                                                                                  1.00
19566                                                                                                500.00
19567                                                                                                150 mg
19568                                                                                                1 pump
19569                                                                                                  2.20
19570                                                                                                 48.00
19571                                                                                                250.00
19572                                                                                                250.00
19573                                                                                                 88.00
19574                                                                                                750.00
19575                                                                                                500.00
19576                                                                                                500.00
19577                                                                                                 10.00
19578                                                                                                150.00
19579                                                                                                 48.00
19580                                                                                                250.00
19581                                                                                                 88.00
19582                                                                                                  1.00
19583                                                                                                500.00
19584                                                                                                 10.00
19585                                                                                                200.00
19586                                                                                                 20.00
19587                                                                                                200.00
19588                                                                                                 60.00
19589                                                                                                 25.00
19590                                                                                                 23.00
19591                                                                                                  3.60
19592                                                                                                  1.00
19593                                                                                                200.00
19594                                                                                                200.00
19595                                                                                                 10.00
19596                                                                          based on weight (51-100 lbs)
19597                                                                                                 56-95
19598                                                                                                200.00
19599                                                                                                200.00
19600                                                                                                 10.00
19601                                                                                                  1.00
19602                                                                                                  3.00
19603                                                                           based on weight (40-60 lbs)
19604                                                                                                50-100
19605                                                                                                 50.00
19606                                                                                                 10.00
19607                                                                                                 10.00
19608                                                                                                 75.00
19609                                                                                                 10.00
19610                                                                                                272.00
19611                                                                                                272.00
19612                                                                                                  2.68
19613                                                                                                272.00
19614                                                                                                 50.00
19615                                                                                                  8.00
19616                                                                                                272.00
19617                                                                                       2.68 ml of 9.8%
19618                                                                                                 50-75
19619                                                                                                200.00
19620                                                                                                 16.00
19621                                                                                                272.00
19622                                                                                                  2.68
19623                                                                                                 16.00
19624                                                                                                272.00
19625                                                                                                 16.00
19626                                                                                                272.00
19627                                                                                                  2.68
19628                                                                                                 16.00
19629                                                                                                200.00
19630                                                                                                 16.00
19631                                                                                                200.00
19632                                                                                                 16.00
19633                                                                                                 16.00
19634                                                                                                 75.00
19635                                                                                                  2.00
19636                                                                                                 16.00
19637                                                                                                 15.00
19638                                                                                                200.00
19639                                                                                                 90.00
19640                                                                                                 75.00
19641                                                                                           unspecified
19642                                                                                                500.00
19643                                                                                                  1.20
19644                                                                                                250.00
19645                                                                                                250.00
19646                                                                                                  1.00
19647                                                                                                 23.00
19648                                                                                                460.00
19649                                                                                                136.00
19650                                                                                                500.00
19651                                                                                                1 drop
19652                                                                                                 23.00
19653                                                                                                136.00
19654                                                                                                 70.00
19655                                                                                                 60.00
19656                                                                                                 30.00
19657                                                                                                500.00
19658                                                                                                500.00
19659                                                                                                  1.00
19660                                                                                                 23.00
19661                                                                                                136.00
19662                                                                                        1 pack/package
19663                                                                                              125, 500
19664                                                                                                500.00
19665                                                                                                 40.00
19666                                                                                                250.00
19667                                                                                                 23.00
19668                                                                                                 80.00
19669                                                                                                50-100
19670                                                                                                 80.00
19671                                                                                                 16.00
19672                                                                                                200.00
19673                                                                          based on weight (51-100 lbs)
19674                                                                           based on weight (44-88 lbs)
19675                                                                                                250.00
19676                                                                                                200.00
19677                                                                                                  3.50
19678                                                                                                 75.00
19679                                                                                                250.00
19680                                                                                                300.00
19681                                                                                                 75.00
19682                                                                                                 80.00
19683                                                                                                460.00
19684                                                                                                 23 mg
19685                                                                          based on weight (51-100 lbs)
19686                                                                    460 lufenuron, 25 milbemycin oxime
19687                                                                                                 37.50
19688                                                                          based on weight (51-100 lbs)
19689                                                              460 mg lufenuron, 23 mg milbemycin oxime
19690                                                                                                 15 gm
19691                                                                                                 23.00
19692                                                                                                 50.00
19693                                                                                                 23.00
19694                                                                                                460.00
19695                                                                                                 23.00
19696                                                                                                 23.00
19697                                                                                                 23.00
19698                                                                                                 23.00
19699                                                                                                 16.00
19700                                                                                                 23.00
19701                                                                                                 16.00
19702                                                                                                 23.00
19703                                                                                                 16.00
19704                                                                                                272.00
19705                                                                                                227.00
19706                                                                                                  4.00
19707                                                                                                136.00
19708                                                                                               272 mcg
19709                                                                                                227.00
19710                                                                          based on weight (51-100 lbs)
19711                                                                          based on weight (50-100 lbs)
19712                                                                                       based on weight
19713                                                                          based on weight (50-100 lbs)
19714                                                                                       based on weight
19715                                                                          based on weight (51-100 lbs)
19716                                                                                       based on weight
19717                                                                          based on weight (51-100 lbs)
19718                                                                                       based on weight
19719                                                                                                  1.00
19720                                                                                                150.00
19721                                                                                                 50.00
19722                                                                                           unspecified
19723                                                                                                136.00
19724                                                                                                  1.00
19725                                                                                                250.00
19726                                                                                                500.00
19727                                                                                                 50.00
19728                                                                                                  2.00
19729                                                                                                  1.00
19730                                                                                                  5.00
19731                                                                                                136.00
19732                                                                                                 50.00
19733                                                                                                 50.00
19734                                                                                                500.00
19735                                                                                          small amount
19736                                                                                                 16.00
19737                                                                                          small amount
19738                                                                                                 16.00
19739                                                                                                 16.00
19740                                                                                                 11.50
19741                                                                          based on weight (51-100 lbs)
19742                                                                                                100.00
19743                                                                                                 75.00
19744                                                                                                200.00
19745                                                                                                 23.00
19746                                                                                                  2.68
19747                                                                                                 10.00
19748                                                                                                 50.00
19749                                                                                               1000.00
19750                                                                                                 23.00
19751                                                                                                200.00
19752                                                                                                 16.00
19753                                                                                                  1.00
19754                                                                                               23, 228
19755                                                                                               1000.00
19756                                                                                                 10.00
19757                                                                                                 75.00
19758                                                                                                200.00
19759                                                                                                 10.00
19760                                                                                                 60.00
19761                                                                                                 10.00
19762                                                                                                 20.00
19763                                                                                                 20.00
19764                                                                                                200.00
19765                                                                                                200.00
19766                                                                                                  3.00
19767                                                                                                1 drop
19768                                                                           based on weight (40-80 lbs)
19769                                                                                                810.00
19770                                                                                                200.00
19771                                                                                             13.5, 810
19772                                                                                                125.00
19773                                                                                                200.00
19774                                                                                                810.00
19775                                                                                                250.00
19776                                                                           based on weight (40-60 lbs)
19777                                                                                   tablet/pill/capsule
19778                                                                                          small amount
19779                                                                                                  6.00
19780                                                                                                  1.00
19781                                                                                                  1.00
19782                                                                                                  2.00
19783                                                                                                810.00
19784                                                                                                 16.00
19785                                                                                                150.00
19786                                                                                                  4.00
19787                                                                                                200.00
19788                                                                                           unspecified
19789                                                                                                  2.80
19790                                                                                           unspecified
19791                                                                                                 80.00
19792                                                                                           unspecified
19793                                                                                                  1.00
19794                                                                                                 23.00
19795                                                                                               1000.00
19796                                                                                                 80.00
19797                                                                                                600.00
19798                                                                                                 80.00
19799                                                                                                600.00
19800                                                                                                50-100
19801                                                                           based on weight (44-88 lbs)
19802                                                                                                  1.00
19803                                                                          based on weight (51-100 lbs)
19804                                                                                                  1.00
19805                                                                                                  1.00
19806                                                                                                  1.00
19807                                                                                                  1.00
19808                                                                                                 70.00
19809                                                                                                  1.00
19810                                                                                                  3.00
19811                                                                                                200.00
19812                                                                                                  1.00
19813                                                                                                  1.00
19814                                                                                                200.00
19815                                                                                                 10.00
19816                                                                                                  1.00
19817                                                                                                  1.00
19818                                                                                                  0.10
19819                                                                                                 16.00
19820                                                                                                 23.00
19821                                                                                                  1.00
19822                                                                                                 75.00
19823                                                                                          small amount
19824                                                                                                200.00
19825                                                                                                  1.00
19826                                                                                                 23.00
19827                                                                                                 80.00
19828                                                                          based on weight (50-100 lbs)
19829                                                                           based on weight (56-95 lbs)
19830                                                                                                 80.00
19831                                                                                                200.00
19832                                                                                                251.00
19833                                                                                                  4.70
19834                                                                                                 30.00
19835                                                                                                200.00
19836                                                                                                120.00
19837                                                                                                 15.00
19838                                                                                           unspecified
19839                                                                                                 60.00
19840                                                                                                 16.00
19841                                                                                                 15.00
19842                                                                                                 60.00
19843                                                                                           unspecified
19844                                                                                           unspecified
19845                                                                                           unspecified
19846                                                                                                  1.00
19847                                                                                                  1.00
19848                                                                                                600.00
19849                                                                                                 40.00
19850                                                                                                 60.00
19851                                                                          based on weight (60-100 lbs)
19852                                                                                                  6.00
19853                                                                                                50-100
19854                                                                                                89-132
19855                                                                                                500.00
19856                                                                        based on weight (50.1-100 lbs)
19857                                                                                                89-132
19858                                                                                                  9.80
19859                                                                                                  8.00
19860                                                                                               1 mg/lb
19861                                                                                                  8.00
19862                                                                                                  2.68
19863                                                                                                 23.00
19864                                                                                                960.00
19865                                                                                                125.00
19866                                                                                              2 sprays
19867                                                                                                 23.00
19868                                                                                                  8.00
19869                                                                                                136.00
19870                                                                                                 23.00
19871                                                                                                228.00
19872                                                                                                  8.00
19873                                                                                                 23.00
19874                                                                                                136.00
19875                                                                                                  8.00
19876                                                                                           unspecified
19877                                                                                               1000.00
19878                                                                                                480.00
19879                                                                                                  8.00
19880                                                                                                204.00
19881                                                                                           unspecified
19882                                                                                                100.00
19883                                                                                                300.00
19884                                                                                                  1.00
19885                                                                                                  8.00
19886                                                                                                  8.00
19887                                                                                                  1.00
19888                                                                          based on weight (50-100 lbs)
19889                                                                                                500.00
19890                                                                                                300.00
19891                                                                                                  9.30
19892                                                                                                 62.50
19893                                                                                                  4.50
19894                                                                                                 23.00
19895                                                                                                460.00
19896                                                                                                228.00
19897                                                                                                150.00
19898                                                                                                200.00
19899                                                                                                 15.00
19900                                                                                                  6.00
19901                                                                                                136.00
19902                                                                                                272.00
19903                                                                                                136.00
19904                                                                                                272.00
19905                                                                                                136.00
19906                                                                                                 16.00
19907                                                              27 mg milbemycin oxime, 1620 mg spinosad
19908                                                                                                200.00
19909                                                           23 mg milbemycin oxime, 228 mg praziquantel
19910                                                                                                200.00
19911                                                                                       based on weight
19912                                                                                           unspecified
19913                                                                                                  4.00
19914                                                                                           unspecified
19915                                                                                                  0.40
19916                                                                                                  0.50
19917                                                                                           application
19918                                                                                                  0.40
19919                                                                                                  0.50
19920                                                                                                  0.50
19921                                                                                                  0.50
19922                                                                                                  0.50
19923                                                                                                  2.00
19924                                                                                                300.00
19925                                                                                           unspecified
19926                                                                                           unspecified
19927                                                                                           unspecified
19928                                                                                           unspecified
19929                                                                                                  0.50
19930                                                                                             13.5, 810
19931                                                                                                500.00
19932                                                                          based on weight (60-120 lbs)
19933                                                                          based on weight (60-120 lbs)
19934                                                                                                136.00
19935                                                                                                750.00
19936                                                                                                 40-60
19937                                                                                                 20.00
19938                                                                                                  2.00
19939                                                                                                200.00
19940                                                                                                  3.00
19941                                                                                                500.00
19942                                                                                                 75.00
19943                                                                                                60-120
19944                                                                                           unspecified
19945                                                                                           unspecified
19946                                                                          based on weight (60-120 lbs)
19947                                                                                           unspecified
19948                                                                                           unspecified
19949                                                                                           unspecified
19950                                                                                           unspecified
19951                                                                                                200.00
19952                                                                                           unspecified
19953                                                                                                 34.00
19954                                                                                                272.00
19955                                                                                                272.00
19956                                                                                                272.00
19957                                                                                                272.00
19958                                                                                                collar
19959                                                                                                  1.00
19960                                                                                                  1.00
19961                                                                                                 75.00
19962                                                                                                  1.00
19963                                                                                                 75.00
19964                                                                                                  1.00
19965                                                                                                 75.00
19966                                                                                                 50.00
19967                                                                                                 50.00
19968                                                                                                 50.00
19969                                                                                               2 drops
19970                                                                                                  2.00
19971                                                                                                  1.00
19972                                                                                                272.00
19973                                                                                                200.00
19974                                                                                                113.50
19975                                                           272 mcg ivermectin, 227 mg pyrantel pamoate
19976                                                                                                 50.00
19977                                                                                                  0.40
19978                                                                                                272.00
19979                                                                                                272.00
19980                                                                                                  0.40
19981                                                                                                 75.00
19982                                                                                                 80.00
19983                                                                                                  0.40
19984                                                                                           unspecified
19985                                                                                                  0.40
19986                                                                                                  0.40
19987                                                                                                  0.30
19988                                                                                                 75.00
19989                                                                                                250.00
19990                                                                                                  5.00
19991                                                                                                  1.00
19992                                                                                                  1.00
19993                                                                                                 75.00
19994                                                                                                200.00
19995                                                                                                272.00
19996                                                                                                272.00
19997                                                                                                136.00
19998                                                                                                272.00
19999                                                                                                500.00
 [ reached 'max' / getOption("max.print") -- omitted 30213 rows ]
non_numeric_dose6<- dose[!grepl("^\\d+(\\.\\d+)?$", dose$dose), ]

###

#unfixable doses in non_numeric dose
non_numeric_dose6 <- non_numeric_dose6 %>%
  filter(!dose%in%c("unspecified","varies"))
print(nrow(non_numeric_dose6))
[1] 6724

Approx 8000 rows are not able to be tidied with code above.

Of these, some could be tidied further just not sure how to yet and some cannot be worked with:

~4000 are parasite tx and the dose is written in format ’based on weight(weight in brackets)

~2.5k look unusable

#unfixable doses in non_numeric dose
unfixable<- non_numeric_dose6 %>%
  filter(dose%in%c("unspecified","varies","","moderate amount","small amount","as directed","powder"))
print(nrow(unfixable))
[1] 755
#parasite tx that might be fixable
parasite <- non_numeric_dose6 %>%
  dplyr::filter(grepl("based on", dose, ignore.case = TRUE))
print(nrow(parasite))
[1] 4113

Replace rows of tidied, number-ified data back into main df:

medications_2$dose <- dose$dose
medications_2$dose_unit <- dose$dose_unit

Many are done mg/kg or say something based on dogs weight = add in dog weight column to dataset

dog_pe <- read.csv("C:/Users/ctaylor18/GitHub/GRLS_analyses/Data/exam_physical.csv")

dog_pe2 <- dog_pe %>%
  dplyr::select(c(subject_id,year_in_study,weight,weight_units))
#convert lb columns into kg columns 
dog_pe2 <- dog_pe2 %>%
  mutate(
    weight = if_else(weight_units == "lb", weight * 0.453592, weight),
    weight_units = if_else(weight_units == "lb", "kg", weight_units)
  )


medications_3 <- medications_2 %>% left_join(
  dog_pe2, by=c("subject_id","year_in_study")
)

There is LOADS of nonsense weights her eg. 0.8kg to 361kg dogs

  • work out what I think is an outlier for weight later (tidy data and do the calculation functions first
dog_pe2 %>%
  summarise(mean=mean(weight,na.rm = T),
            range=range(weight,na.rm = T),
            min=min(weight,na.rm = T),
            max=max(weight,na.rm = T)
            )
Warning: Returning more (or less) than 1 row per `summarise()` group was deprecated in
dplyr 1.1.0.
ℹ Please use `reframe()` instead.
ℹ When switching from `summarise()` to `reframe()`, remember that `reframe()`
  always returns an ungrouped data frame and adjust accordingly.
      mean       range       min      max
1 26.45953   0.8210015 0.8210015 361.9664
2 26.45953 361.9664160 0.8210015 361.9664

Ones to sort:

‘based on weight’

based_on_weight <- medications_3 %>%
  filter(grepl('based on weight', dose_unit_specify))

‘tablet/pill/capsule’

tablet_pill_capsule <- medications_3 %>%
  filter(grepl('tablet/pill/capsule', dose_unit_specify))

Majority all are parasite tx OR glucosamine supplement:

table(tablet_pill_capsule$medication_ingredients)

                                            acetaminophen, codeine 
                                                                 1 
         activated charcoal, bismuth subsalicylate, kaolin, pectin 
                                                                 6 
                                                        afoxolaner 
                                                               335 
                                      afoxolaner, milbemycin oxime 
                                                                 2 
                                                        alprazolam 
                                                                 1 
                                                           amforal 
                                                                 2 
                                                        amlodipine 
                                                                 1 
                                                       amoxicillin 
                                                                 4 
                                amoxicillin, clavulanate potassium 
                                                                10 
                                         amylase, lipase, protease 
                                                                 1 
                                             anal gland supplement 
                                                                 1 
                                                   apomorphine hcl 
                                                                 1 
                                              apoptosis supplement 
                                                                 2 
                                               apple cider vinegar 
                                                                 1 
                                                            arnica 
                                                                 5 
                                   atropine sulfate, diphenoxylate 
                                                                 2 
                    attapulgite, bismuth subcarbonate, kanamycin a 
                                                                 1 
                                             bismuth subsalicylate 
                                                                 1 
                                                         body sore 
                                                                 3 
                                                           calcium 
                                                                 1 
                                                calming supplement 
                                                                14 
                                        cardiac support supplement 
                                                                 2 
                                                         carprofen 
                                                                24 
                                                   cbd or hemp oil 
                                                                 4 
                   cbd or hemp oil, joint supplement (unspecified) 
                                                                 1 
                                              cefpodoxime proxetil 
                                                                19 
                                                        cephalexin 
                                                                11 
                                                        cetirizine 
                                                                 4 
                                                     ciprofloxacin 
                                                                 1 
                                              cognitive supplement 
                                                                 3 
                                                          curcumin 
                                                                 2 
                                                         damp heat 
                                                                 2 
                                                         deracoxib 
                                                                 1 
                                     dextromethorphan hydrobromide 
                                                                 2 
                        dextromethorphan hydrobromide, guaifenesin 
                                                                17 
                                                diethylstilbestrol 
                                                                 2 
                                              digestive supplement 
                                                                50 
                                                    dimenhydrinate 
                                                                 1 
                                                       doxycycline 
                                                                 5 
                                                         enalapril 
                                                                 1 
                                                      enrofloxacin 
                                                                 3 
                                                        famotidine 
                                                                 2 
                          febantel, praziquantel, pyrantel pamoate 
                                                                13 
                                              fipronil, permethrin 
                                                                 1 
                                fipronil, permethrin, pyriproxyfen 
                                                                 1 
                                                         firocoxib 
                                                                 1 
                                                        fluralaner 
                                                               174 
                                                        gabapentin 
                                                                 9 
                                   gallbladder function supplement 
                                                                 1 
                                                            garlic 
                                                                 2 
                                                   gather vitality 
                                                                 1 
                                  general female health supplement 
                                                                 3 
                                                        grapiprant 
                                                                 3 
                                          homatropine, hydrocodone 
                                                                 1 
                                                         hypericum 
                                                                 1 
                                                      imidacloprid 
                                                                 1 
                                        imidacloprid, pyriproxyfen 
                                                                 1 
                                         immune support supplement 
                                                                16 
                                                        ivermectin 
                                                               176 
ivermectin, lufenuron, mebendazole, praziquantel, pyrantel pamoate 
                                                                 2 
                        ivermectin, praziquantel, pyrantel pamoate 
                                                                56 
                                      ivermectin, pyrantel pamoate 
                                                               683 
                                                   jade windscreen 
                                                                 1 
                                        jia wei xue fu zhu yu tang 
                                                                 1 
            joint supplement (chondroitin sulfate/glucosamine hcl) 
                                                                56 
        joint supplement (chondroitin sulfate/glucosamine hcl/msm) 
                                                               220 
                                joint supplement (glucosamine hcl) 
                                                                14 
                            joint supplement (glucosamine hcl/msm) 
                                                                42 
                                            joint supplement (msm) 
                                                                 2 
                                          joint supplement (other) 
                                                                27 
                joint supplement (other), skin and coat supplement 
                                                                 1 
                                    joint supplement (unspecified) 
                                                                 1 
                                                         juan bi 1 
                                                                 1 
                                                      ketoconazole 
                                                                 1 
                                          kidney health supplement 
                                                                 3 
                                                     levothyroxine 
                                                                 8 
                                              liu wei di huang wan 
                                                                 1 
                                                       liver happy 
                                                                 2 
                                                  liver supplement 
                                                                12 
                                                 loranthus formula 
                                                                 1 
                                                        loratadine 
                                                                 1 
                                                         lotilaner 
                                                                 5 
                                       lufenuron, milbemycin oxime 
                                                               298 
                         lufenuron, milbemycin oxime, praziquantel 
                                                                27 
                                                   lung supplement 
                                                                 4 
                                                            lyssin 
                                                                 1 
                                                     magnolia bark 
                                                                 1 
                                                     marbofloxacin 
                                                                 3 
                                                maropitant citrate 
                                                                 3 
                       mebendazole, praziquantel, pyrantel pamoate 
                                                                 2 
                                                         meloxicam 
                                                                 1 
                                                     methocarbamol 
                                                                 3 
                                                methylprednisolone 
                                                                 1 
                                                    metoclopramide 
                                                                 1 
                                                     metronidazole 
                                                                 8 
                                                  milbemycin oxime 
                                                               168 
                                    milbemycin oxime, praziquantel 
                                                                54 
                                        milbemycin oxime, spinosad 
                                                               139 
                                                      multivitamin 
                                                                52 
                                              natural wart remover 
                                                                 1 
 neomycin sulfate, nystatin, thiostrepton, triamcinolone acetonide 
                                                                 4 
                                                        nitenpyram 
                                                                 2 
                                           nourish essence formula 
                                                                 1 
                                                       oclacitinib 
                                                                 5 
                                                           omega 3 
                                                                83 
                                                         omega 3-6 
                                                                 4 
                                                       omega 3-6-9 
                                                                 6 
                                                     phenobarbital 
                                                                 1 
                                               phenylpropanolamine 
                                                                 1 
                                                      praziquantel 
                                                                 3 
                                    praziquantel, pyrantel pamoate 
                                                                 3 
                                              prebiotic, probiotic 
                                                                22 
                                                        prednisone 
                                                                 4 
                                                         probiotic 
                                                               154 
                                                  pyrantel pamoate 
                                                                 1 
                                                         sarolaner 
                                                                41 
                     seasonal and environmental allergy supplement 
                                                                 2 
                                                        selamectin 
                                                                 1 
                                                         shu jin i 
                                                                 1 
                                          skin and coat supplement 
                                                                 4 
                                         spinal support supplement 
                                                                 1 
                                                          spinosad 
                                                                12 
                                                    stasis breaker 
                                                                 1 
                                                  strengthen metal 
                                                                 1 
                                                        sucralfate 
                                                                 1 
                                        sulfadiazine, trimethoprim 
                                                                 1 
                                                  sulfadimethoxine 
                                                                 3 
                                                  sulfamethoxazole 
                                                                 3 
                                 sulforaphane producing supplement 
                                                                 1 
                                                           taurine 
                                                                 2 
                                        thyroid support supplement 
                                                                 4 
                                                         thyroxine 
                                                                 1 
                        toothpaste/dental health solution or chews 
                                                                11 
                                                          tramadol 
                                                                 2 
                                                         trazodone 
                                                                 4 
                                 trimeprazine tartrate, prednisone 
                                                                75 
                                                          turmeric 
                                                                 1 
                                                  tylosin tartrate 
                                                                10 
                                unspecified heartworm preventative 
                                                                 1 
                                   unspecified herbal wart remover 
                                                                 1 
                                            unspecified medication 
                                                                 4 
                      unspecified thyroid medication or supplement 
                                                                 1 
                                               unspecified vitamin 
                                                                 1 
                                          urinary tract supplement 
                                                                33 
                                                  viola clear fire 
                                                                 1 
                                                 vision supplement 
                                                                16 
                                                         vitamin b 
                                                                14 
                                                         vitamin c 
                                                                 4 
                                                    wei qi booster 
                                                                 1 
                                                        wheat germ 
                                                                 1 
                                                 xiao chai hu tang 
                                                                 2 
                                                     yunnan baiyao 
                                                                45 
table(tablet_pill_capsule$active_ingredient_groups)

           anti_hist          anti_inflam      anti_microbials 
                   5                  111                   82 
      anti_parasites   cardio_respiratory  dietary_supplements 
                2206                   22                  943 
             enteric hormones_and_related       immunologicals 
                  16                   11                    5 
                misc         neurological 
                  49                   17 
  • mostly not interested in supplements dosage (if desired could do a YN supplement variable later?)

Medication frequency:

freq_unit_count <- medications_3%>%
  count(frequency, name="Count") %>%
  arrange(desc(Count))

freq_unit_count
            frequency Count
1                 bid 14177
2                 sid 11257
3       other specify  9620
4            q (days)  7865
5                once  2456
6                 prn  1526
7                 tid  1406
8   q (days), specify  1129
9           q (hours)   319
10                eod   301
11                qid   140
12 q (hours), specify    16
freq_unit_specify_count <- medications_3%>%
  count(frequency_specify, name="Count") %>%
  arrange(desc(Count))

freq_unit_specify_count
                                                                  frequency_specify
1                                                                              <NA>
2                                                                           monthly
3                                                                              once
4                                                                          3 months
5                                                                       unspecified
6                                                                               prn
7                                                                          tapering
8                                                                          6 months
9                                                                          8 months
10                                                                           weekly
11                                                               monthly (seasonal)
12                                                                       continuous
13                                                                         biweekly
14                                                                              bid
15                                                                          2 weeks
16                                    bid for 3 days, then sid for 3 days, then eod
17                                                                         2 months
18                                                                       tid to bid
19                                                                              sid
20                                                                            twice
21                                    bid for 5 days, then sid for 5 days, then eod
22                                                                   3 times weekly
23                                                                          3 weeks
24                                    bid for 4 days, then sid for 4 days, then eod
25                                                           duration of anesthesia
26                                                                          6 weeks
27                                                                       bid to sid
28                                    bid for 1 week, then sid for 1 week, then eod
29                                                                            daily
30                                                                          3 doses
31                                                                           yearly
32                                              bid for 1 week, then sid for 1 week
33                                                        bid for 2 weeks, then sid
34                                                                     4 to 6 weeks
35                                                                      as directed
36                                                          bid, then sid, then eod
37                                                         sid for 5 days, then eod
38                                                                     6 to 8 weeks
39                                                                    1 to 2 months
40                                                                     1 to 2 weeks
41                                                                   2 times yearly
42                                                                              eod
43                                                                              tid
44                                                                    2 to 3 months
45                                                              2 to 3 times weekly
46                                                                    3 to 4 months
47                                                                    6 to 8 months
48                                                         bid for 1 week, then sid
49                                    bid for 2 days, then sid for 2 days, then eod
50                                                                    chop protocol
51                                                         sid for 3 days, then eod
52                               sid for 3 days, then stop for 3 weeks, then repeat
53                                                                          2 doses
54                                                                         4 months
55                                                             biweekly for 1 month
56                                                                          post-op
57                                                                       qid to bid
58                                                                       sid to eod
59                                                                          1 month
60                                                                    1 to 3 months
61                                                                    2 to 4 months
62                                                               2 weeks to 1 month
63                                                                           3 days
64                                                                          42 days
65                                                                          45 days
66                                    bid for 2 days, then sid for 3 days, then eod
67                                            bid for 2 weeks, then sid for 2 weeks
68                                                         bid for 3 days, then sid
69                                              bid for 4 days, then sid for 4 days
70                                                                        each meal
71                                                                           hourly
72                               sid for 1 week, then stop for 3 weeks, then repeat
73                                                                       sid to bid
74                                                            3 days every 3 months
75                                                                               30
76                                                                          4 doses
77                                                        bid for 10 days, then sid
78                                    bid for 3 days, then sid for 1 week, then eod
79                                    bid for 3 days, then sid for 5 days, then eod
80                                                         bid for 4 days, then sid
81                                                               biweekly to weekly
82                                                                       qid to tid
83                                                                  sid for 2 weeks
84                                                                                1
85                                                                     2 to 3 weeks
86                                                                      3 to 4 days
87                                                                    3 to 5 months
88                                                               3 weeks to 1 month
89                                                                    7 to 8 months
90                                                                         9 months
91                                                              bid - 4 hours apart
92                                                        bid for 1 month, then sid
93                                    bid for 2 days, then sid for 5 days, then eod
94                                              bid for 3 days, then sid for 3 days
95                                                         bid for 5 days, then sid
96                                                                  daily, then eod
97                                                         sid for 1 week, then eod
98                                                         sid for 2 days, then eod
99                                                        sid for 2 weeks, then eod
100                                                                  sid for 3 days
101                                                        sid for 4 days, then eod
102                                                                   sid, then eod
103                                                                      tid to sid
104                                                weekly for 1 month, then monthly
105                                                              weekly for 2 weeks
106                                                weekly or after bathing/swimming
107                                                               with chemotherapy
108                                                                 0.0024 mg/kg/hr
109                                                                    0.6 mg/kg/hr
110                         1 dose, then 1 dose in 3 weeks, then 1 dose in 3 months
111                                                                      1 mg/kg/hr
112                                                                      1.25 hours
113                                                                         10 days
114                                                                        12 doses
115                                                                        120 days
116                                                                         2 hours
117                                                        2 tablets/pills/capsules
118                                                                    2 to 3 hours
119                                  20 mg for 1 week, then 10 for 1 week, then eod
120                                                                      26 minutes
121                                                  3 days, then repeat in 3 weeks
122                                                                   3 to 10 weeks
123                                                                    3 to 5 weeks
124                                                                   3 to 6 months
125                                                                         35 days
126                                                                               4
127                                                                  4 times weekly
128                                                                    4 to 5 weeks
129                                                                        5 months
130                                5 months if bathing or swiming or every 8 months
131                                                                               6
132                                                                   6 to 7 months
133                                                8 doses, then every 3 to 4 weeks
134                                                                   8 to 10 weeks
135                                                         added to each fluid bag
136                                                         bid fo 5 days, then prn
137                                                         bid for 1 day, then eod
138                                   bid for 1 day, then sid for 10 days, then eod
139                                    bid for 1 day, then sid for 3 days, then eod
140                                            bid for 1 month, then sid for 1 week
141                                               bid for 1 week, then biweekly prn
142                                                        bid for 1 week, then eod
143                                  bid for 1 week, then sid for 3 weeks, then eod
144                                                    bid for 1 week, then sid prn
145                                              bid for 1 week, then sid, then eod
146                                           bid for 1 weeks, then sid for 2 weeks
147                                                         bid for 1 wek, then sid
148                                  bid for 10 days, then sid for 5 days, then eod
149                                           bid for 15 days, then sid for 45 days
150                                             bid for 2 days, then sid for 2 days
151                         bid for 2 to 4 days, then sid for 2 to 4 days, then eod
152                                 bid for 2 weeks, then sid for 2 weeks, then eod
153                                             bid for 3 days, then sid for 1 week
154                                   bid for 3 days, then sid for 6 days, then eod
155                                      bid for 3 doses, then skip a day, then sid
156                                   bid for 4 days, then sid for 2 days, then eod
157                                   bid for 5 days, then sid for 1 week, then eod
158                                            bid for 5 days, then sid for 10 days
159                                   bid for 5 days, then sid for 3 days, then eod
160                                             bid for 5 days, then sid for 5 days
161                                            bid for 5 days, then sid for 5 days,
162 bid for 5 days, then sid for 5 days, then eod for 5 days, then sid every 3 days
163                                   bid for 6 days, then sid for 3 days, then eod
164                                   bid for 8 days, then sid for 1 week, then eod
165                                   bid for 8 days, then sid for 5 days, then eod
166                                  bid for 9 days, then sid for 2 weeks, then eod
167                                             bid to sid for 5 to 6 days or weeks
168                                                            bid to sid, then eod
169                                                                   bid, then eod
170                                                                   bid, then sid
171                                                               bid, then sid eod
172             biweekly for 1 month, then every 2 weeks for 2 months, then monthly
173                                               biweekly for 2 weeks, then weekly
174                                                 biweekly until healed, then prn
175                                          daily for 5 days, then stop for 5 days
176                                                                           ml/hr
177                                                                             qid
178                                             qid for 2 days, then bid for 3 days
179                                                                             qqh
180                                                                        seasonal
181                                                                  sid for 1 week
182                                                        sid for 1 week, then prn
183                                                       sid for 10 days, then eod
184                                              sid for 2 days every 2 to 3 months
185                                           sid for 2 days, then bid, then repeat
186                                                   sid for 2 to 3 days, then eod
187                                                       sid for 21 days, then bid
188                                                   sid for 3 days every 3 months
189                                              sid for 3 days, then every 2 weeks
190                                                                 sid for 3 weeks
191                                                        sid for 6 days, then eod
192                                             tid for 1 week, then bid for 1 week
193                                             tid for 2 days, then bid for 5 days
194                                                         tid, then sid, then eod
195                                                                          varied
196                                               weekly for 1 month, then biweekly
197                                        weekly for 2 weeks, then once in 1 month
198                                                weekly for 3 weeks, then monthly
199                                                      weekly, then every 2 weeks
200                                                                        when fed
201                                                          when water is replaced
    Count
1   40592
2    6061
3     793
4     518
5     314
6     230
7     191
8     190
9      93
10     80
11     78
12     60
13     58
14     56
15     52
16     51
17     45
18     36
19     34
20     34
21     32
22     31
23     28
24     25
25     21
26     17
27     16
28     15
29     15
30     14
31     13
32     11
33     11
34     10
35     10
36      9
37      9
38      8
39      7
40      7
41      7
42      7
43      7
44      6
45      6
46      6
47      6
48      6
49      6
50      6
51      6
52      6
53      5
54      5
55      5
56      5
57      5
58      5
59      4
60      4
61      4
62      4
63      4
64      4
65      4
66      4
67      4
68      4
69      4
70      4
71      4
72      4
73      4
74      3
75      3
76      3
77      3
78      3
79      3
80      3
81      3
82      3
83      3
84      2
85      2
86      2
87      2
88      2
89      2
90      2
91      2
92      2
93      2
94      2
95      2
96      2
97      2
98      2
99      2
100     2
101     2
102     2
103     2
104     2
105     2
106     2
107     2
108     1
109     1
110     1
111     1
112     1
113     1
114     1
115     1
116     1
117     1
118     1
119     1
120     1
121     1
122     1
123     1
124     1
125     1
126     1
127     1
128     1
129     1
130     1
131     1
132     1
133     1
134     1
135     1
136     1
137     1
138     1
139     1
140     1
141     1
142     1
143     1
144     1
145     1
146     1
147     1
148     1
149     1
150     1
151     1
152     1
153     1
154     1
155     1
156     1
157     1
158     1
159     1
160     1
161     1
162     1
163     1
164     1
165     1
166     1
167     1
168     1
169     1
170     1
171     1
172     1
173     1
174     1
175     1
176     1
177     1
178     1
179     1
180     1
181     1
182     1
183     1
184     1
185     1
186     1
187     1
188     1
189     1
190     1
191     1
192     1
193     1
194     1
195     1
196     1
197     1
198     1
199     1
200     1
201     1

Most of the q(days) or q(days) specify have a specified number of days in specify_days or specify_hours = concatenate these columns and then replace q days with that value and then recode in dictionary below

# Combine both conditions into the same column
medications_3$frequency_all <- ifelse(
  grepl("q \\(days\\)", medications_3$frequency),   # Check if Col1 contains "q (days)"
  paste(medications_3$frequency, medications_3$specify_days, sep = " "), # Concatenate frequency and specify_days
  ifelse(
    grepl("q \\(hours\\)", medications_3$frequency),   # Check if Col1 contains "q (hours)"
    paste(medications_3$frequency, medications_3$specify_hours, sep = " "), # Concatenate frequency and specify_hours
    medications_3$frequency                        # Keep frequency as is if no conditions are met
  )
)

Rerun counts

freq_unit_count2 <- medications_3%>%
  count(frequency_all, name="Count") %>%
  arrange(desc(Count))

freq_unit_count2
           frequency_all Count
1                    bid 14177
2                    sid 11257
3          other specify  9620
4            q (days) 30  6798
5                   once  2456
6                    prn  1526
7                    tid  1406
8   q (days), specify 30  1004
9            q (days) 90   350
10                   eod   301
11                   qid   140
12            q (days) 7   138
13          q (hours) 12   113
14            q (days) 3    95
15           q (days) 14    81
16          q (hours) 24    78
17           q (days) 28    76
18            q (days) 1    68
19           q (hours) 8    58
20           q (days) 84    39
21  q (days), specify 14    38
22            q (days) 2    36
23           q (days) 60    35
24           q (days) 21    30
25            q (days) 4    23
26          q (hours) NA    23
27           q (days) 45    21
28   q (days), specify 1    21
29  q (days), specify 28    18
30   q (days), specify 7    18
31           q (days) 10    16
32           q (days) 31    15
33           q (hours) 6    15
34           q (hours) 4    12
35           q (days) 42     9
36           q (days) NA     9
37   q (days), specify 3     7
38            q (days) 5     6
39   q (days), specify 4     6
40  q (days), specify 10     5
41          q (hours) 48     5
42           q (hours) 1     4
43  q (hours), specify 6     4
44  q (hours), specify 8     4
45           q (days) 35     3
46           q (days) 56     3
47   q (days), specify 5     3
48 q (hours), specify 12     3
49 q (hours), specify 24     3
50          q (days) 180     2
51           q (days) 32     2
52           q (days) 40     2
53           q (days) 96     2
54  q (days), specify 21     2
55  q (days), specify 45     2
56  q (days), specify 90     2
57         q (hours) 1.5     2
58           q (hours) 2     2
59           q (hours) 3     2
60          q (hours) 30     2
61           q (days) 12     1
62          q (days) 120     1
63           q (days) 15     1
64           q (days) 24     1
65           q (days) 39     1
66           q (days) 55     1
67  q (days), specify 18     1
68   q (days), specify 2     1
69  q (days), specify 31     1
70          q (hours) 10     1
71         q (hours) 3.5     1
72           q (hours) 7     1
73  q (hours), specify 2     1
74  q (hours), specify 3     1

Create frequency dictionary lists:

if we assume SID or daily =1 then the rest are either <1 values eg. EOD = 0.5 or >1 values e.g QID = 4

dosing_frequency <- list(
  "0.003"="yearly",
  "0.004"=c("8 months","7 to 8 months","9 months"),
  "0.006"=c("6 months","2 times yearly","6 to 8 months","6 to 7 months","q (days) 180"),
  "0.007"=c("5 months","5 months if bathing or swiming or every 8 months"),
  "0.008"=c("3 to 5 months","q (days) 120"),
  "0.01"=c("3 months","3 to 4 months","4 months","2 to 4 months","120 days","3 to 6 months","q (days) 90","q (days) 84","q (days) 96","q (days), specify 90"),
  "0.15"=c("2 to 3 months","8 to 10 weeks"),
  "0.02"=c("2 months","6 weeks","6 to 8 weeks","1 to 3 months","42 days","45 days","q (days) 60","q (days) 45","q (days) 42","q (days) 56","q (days) 40","q (days), specify 45","q (days) 55"),
  "0.03" =c("q (days)30","q (days) 30","q (days), specify 30","q (days)31","monthly", "monthly (seasonal)","monthly","1 to 2 months", "1 month","30","q (days) 28","3 days every 3 months","35 days","4 to 5 weeks","sid for 2 days every 2 to 3 months","sid for 3 days every 3 months","q (days) 21","q (days), specify 28","q (days) 31","q (days) 35","q (days) 32","q (days) 39","q (days), specify 31"),
  "0.08"=c("3 weeks","3 weeks to 1 month","3 to 10 weeks","3 to 5 weeks","q (days), specify 21","q (days) 24"),
  "0.07"=c("2 weeks","2 weeks to 1 month","2 to 3 weeks","q (days) 14","q (days) 15","q (days), specify 18"),
  "0.10"=c("1 to 2 weeks","10 days","q (days), specify 14","q (days) 10","q (days), specify 10","q (days) 12"),
  "0.12"="biweekly to weekly",
  "0.14"=c("q (days)7","weekly","weekly for 2 weeks","weekly or after bathing/swimming","q (days) 7","q (days), specify 7"),
  "0.20"=c("q (days) 5","q (days), specify 5"),
  "0.28"=c("biweekly","2 to 3 times weekly","biweekly for 1 month","3 days","3 to 4 days","q (days) 3","q (days) 4","q (days), specify 3","q (days), specify 4"),
  "0.33"=c("3 times weekly","4 times weekly"),
  "0.5" = c("eod","q (hours) 48","q (days) 2","q (days), specify 2"),
  "0.75"="q (hours) 30",
  "1" = c("once", "sid", "q (days), specify1","q (days), specify1","daily","sid for 3 days","q (hours) 24" ,"q (hours), specify 24","q (days) 1","q (days), specify 1"),
  "2" = c("bid","bid - 4 hours apart","q (hours) 12","q (hours), specify 12"),
  "2.4"=c("q (hours) 10"),
  "3" = c("tid","q (hours) 8","q (hours), specify 8"),
  "3.5"=c("qid to tid","q (hours) 7"),
  "4" = c("qid","q (hours) 6","q (hours), specify 6"),
  "6"=c("qqh","q (hours) 4"),
  "8"=c("2 to 3 hours","q (hours) 3","q (hours), specify 3"),
  "10"= "q (hours) 3.5",
  "12"=c("2 hours","q (hours) 2","q (hours), specify 2"),
  "24"=c("hourly","1.25 hours","q (hours) 1","q (hours) 1.5"),
  "55"="26 minutes",
  
  #for these tapering schedules can work out a dose still but likely requires manually doing for each
  "complex_tapering"=c("bid for 3 days, then sid for 3 days, then eod","bid for 5 days, then sid for 5 days, then eod","tid to bid","bid for 4 days, then sid for 4 days, then eod","bid for 1 week, then sid for 1 week, then eod","bid for 2 days, then sid for 2 days, then eod","bid for 2 days, then sid for 3 days, then eod","sid for 1 week, then stop for 3 weeks, then repeat","bid for 2 days, then sid for 5 days, then eod","weekly for 1 month, then monthly","1 dose, then 1 dose in 3 weeks, then 1 dose in 3 months","20 mg for 1 week, then 10 for 1 week, then eod","3 days, then repeat in 3 weeks","8 doses, then every 3 to 4 weeks","bid for 1 week, then sid for 3 weeks, then eod",
"bid for 1 week, then sid prn",
"bid for 1 week, then sid, then eod",
"bid for 1 weeks, then sid for 2 weeks","bid for 10 days, then sid for 5 days, then eod",
"bid for 15 days, then sid for 45 days",
"bid for 2 days, then sid for 2 days",
"bid for 2 to 4 days, then sid for 2 to 4 days, then eod",
"bid for 2 weeks, then sid for 2 weeks, then eod",
"bid for 3 days, then sid for 1 week",
"bid for 3 days, then sid for 6 days, then eod",
"bid for 3 doses, then skip a day, then sid",
"bid for 4 days, then sid for 2 days, then eod",
"bid for 5 days, then sid for 1 week, then eod",
"bid for 5 days, then sid for 10 days",
"bid for 5 days, then sid for 3 days, then eod",
"bid for 5 days, then sid for 5 days",
"bid for 5 days, then sid for 5 days,",
"bid for 5 days, then sid for 5 days, then eod for 5 days, then sid every 3 days",
"bid for 6 days, then sid for 3 days, then eod",
"bid for 8 days, then sid for 1 week, then eod",
"bid for 8 days, then sid for 5 days, then eod",
"bid for 9 days, then sid for 2 weeks, then eod",
"bid to sid for 5 to 6 days or weeks","biweekly for 1 month, then every 2 weeks for 2 months, then monthly","sid for 2 days, then bid, then repeat","sid for 2 to 3 days, then eod","sid for 3 days, then every 2 weeks"),
  "tapering"=c("bid to sid","bid for 1 week, then sid for 1 week","bid for 2 weeks, then sid","bid, then sid, then eod","sid for 5 days, then eod","bid for 1 week, then sid","bid for 3 days, then sid for 1 week, then eod","bid for 3 days, then sid for 5 days, then eod","bid for 1 month, then sid","bid for 3 days, then sid for 3 days","bid for 5 days, then sid","daily, then eod","sid for 1 week, then eod","sid for 2 days, then eod" ,"sid for 2 weeks, then eod","sid for 4 days, then eod","sid, then eod", "tid to sid","bid fo 5 days, then prn","bid for 1 day, then eod", "bid for 1 day, then sid for 10 days, then eod","bid for 1 day, then sid for 3 days, then eod","bid for 1 month, then sid for 1 week","bid for 1 week, then biweekly prn","bid for 1 week, then eod","bid for 1 wek, then sid","bid to sid, then eod",
"bid, then eod",
"bid, then sid",
"bid, then sid eod","biweekly for 2 weeks, then weekly","daily for 5 days, then stop for 5 days","qid for 2 days, then bid for 3 days","sid for 10 days, then eod","sid for 21 days, then bid","sid for 6 days, then eod","tid, then sid, then eod","weekly for 1 month, then biweekly","weekly for 2 weeks, then once in 1 month","weekly for 3 weeks, then monthly","weekly, then every 2 weeks"),
  "single_event"=c("3 doses","2 doses","qid to bid","sid to eod","bid for 2 weeks, then sid for 2 weeks","bid for 3 days, then sid","bid for 4 days, then sid for 4 days","sid to bid","bid for 10 days, then sid","bid for 4 days, then sid","sid for 2 weeks","biweekly until healed, then prn","sid for 1 week","sid for 1 week, then prn","sid for 3 weeks","tid for 1 week, then bid for 1 week","tid for 2 days, then bid for 5 days"),
  #ones we will not be able to calculate dose from at all
  "unspecified"=c("as directed","post-op","added to each fluid bag","chop protocol","with chemotherapy","seasonal","varied","when fed","when water is replaced"),
  "misc"= c("4 doses","12 doses","2 tablets/pills/capsules","4","6"),
  "dose_not_freq"=c("0.0024 mg/kg/hr","0.6 mg/kg/hr","1 mg/kg/hr","ml/hr")
)

Apply this list to the dataframe so that they are reclassified:

source("C:/Users/ctaylor18/GitHub/GRLS_analyses/Code/GRLS_functions.R")



medications_4 <- map_frequency_to_df(medications_3, column_to_map = "frequency_all", mapping_list = dosing_frequency, new_column_name = "mapped_frequency")

Medication duration:

types of duration

duration_count <- medications_4%>%
  count(duration, name="Count") %>%
  arrange(desc(Count))

duration_count
      duration Count
1   continuous 20046
2    as needed  6377
3           10  4747
4            7  3983
5            2  3477
6            1  3027
7            5  2127
8  unspecified  1909
9            3  1655
10           4  1087
11           6   827
12          12   407
13           8   356
14           9   181
15          11     6

duration unit:

duration_unit_count <- medications_4%>%
  count(duration_unit, name="Count") %>%
  arrange(desc(Count))

duration_unit_count
   duration_unit Count
1    unspecified 21318
2           days 17324
3         months  5202
4          weeks  5041
5 not applicable  1327

Concatenate duration columns together so can form a correct duration column

medications_4 <- medications_4 %>%
  mutate(duration_all =paste(medications_4$duration, medications_4$duration_unit, sep = " "))
duration_unit_count2 <- medications_4%>%
  count(duration_all, name="Count") %>%
  arrange(desc(Count))

duration_unit_count2
                duration_all Count
1     continuous unspecified 15313
2                    10 days  4681
3      as needed unspecified  4077
4                     7 days  3917
5                    2 weeks  2944
6          continuous months  2391
7                     5 days  2048
8    unspecified unspecified  1883
9                     1 days  1589
10           continuous days  1266
11            as needed days  1091
12 continuous not applicable   845
13                    3 days   828
14                  1 months   811
15                    4 days   669
16          as needed months   662
17                   3 weeks   631
18                  6 months   480
19                   1 weeks   399
20                   12 days   352
21                    2 days   344
22                   4 weeks   342
23           as needed weeks   288
24  as needed not applicable   259
25                    6 days   236
26          continuous weeks   231
27                    8 days   206
28          1 not applicable   200
29                  3 months   192
30                  2 months   181
31                  8 months   116
32                   6 weeks   109
33                  9 months    98
34                    9 days    78
35                  4 months    71
36                  5 months    56
37                  7 months    49
38                 10 months    47
39                 12 months    42
40                   8 weeks    34
41             1 unspecified    28
42                   5 weeks    21
43          unspecified days    14
44                  12 weeks    11
45                  10 weeks    10
46                   7 weeks     9
47          2 not applicable     8
48         unspecified weeks     7
49            10 unspecified     5
50                   11 days     5
51             7 unspecified     5
52                   9 weeks     5
53        unspecified months     5
54         10 not applicable     4
55          3 not applicable     4
56          4 not applicable     3
57          7 not applicable     3
58            12 unspecified     2
59             4 unspecified     2
60             5 unspecified     2
61                 11 months     1
62          6 not applicable     1
63             6 unspecified     1

Duration dictionary to recode:

duration_dict <- list(
  "0.03" = "1 days",
  "0.06"="2 days",
  "0.09"="3 days",
  "0.17"="5 days",
  "0.2"="6 days",
  "0.23" = c("7 days", "1 week", "1 weeks"),
  "0.33" = c("10 days","9 days"),
  "0.4"=c("12 days","11 days"),
  "0.5" =c("2 weeks"),
  "0.7"="3 weeks",
  "1" = c("1 months", "1 month","4 weeks"),
  "1.5"=c("5 weeks"),
  "2"=c("2 months","8 weeks","7 weeks"),
  "2.5"=c("10 weeks","9 weeks"),
  "3"=c("3 months","12 weeks"),
  "4"="4 months",
  "5"="5 months",
  "7"="7 months",
  "8"="8 months",
  "9"="9 months",
  "10"="10 months",
  "12"="12 months",
  "continuous" =c("continuous unspecified","continuous months","continuous days","continuous not applicable","continuous weeks"),
  "unspecified"=c("as needed unspecified","unspecified unspecified","as needed days",
                  "as needed months","as needed weeks","as needed not applicable","1 not applicable","1 unspecified","unspecified days","2 not applicable","unspecified weeks","10 unspecified","7 unspecified","unspecified months","10 not applicable","3 not applicable",
                  "4 not applicable","7 not applicable","12 unspecified","4 unspecified","5 unspecified","6 not applicable","6 unspecified")
  
  
)
source("C:/Users/ctaylor18/GitHub/GRLS_analyses/Code/GRLS_functions.R")



medications_5 <- map_frequency_to_df(medications_4, column_to_map = "duration_all", mapping_list = duration_dict, new_column_name = "mapped_duration")

Explore how many dogs we have got actual values to calculate drug doses for:

#dogs with duration values that are not unspecified and not misc supplements
dogs_with_med_data <- medications_5 %>%
  dplyr::filter(!mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))

missing_med_data <- medications_5 %>%
  dplyr::filter(mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))
  #lost ~10k of records here
dogs_with_med_data2 <- dogs_with_med_data %>%
  #not using this row currently as can do something with continuous in drug calcs but not sure yet
 dplyr::filter(!mapped_duration %in% c("unspecified"))

  #dplyr::filter(!mapped_duration %in% c("continuous","unspecified"))




#lose ~18k records with these terms removed
print(nrow(dogs_with_med_data2)/nrow(dogs_with_med_data))
[1] 0.8217964

Left with a remaining ~18000 (out of ~50k = 36%) records to work with if we ignore the dogs with “continuous” as duration of medication

However, ~82% left if continuous is retained

Continuous is valid duration I just am not sure what to do with it for calculations

Sense check for how many of each class are left:

Antimicrobials:
dogs_with_med_data_AB <- medications_5 %>%
  dplyr::filter(active_ingredient_groups =="anti_microbials")

dogs_with_med_data_AB2 <- dogs_with_med_data_AB %>%
  dplyr::filter(!mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))
dogs_with_med_data2_AB <- dogs_with_med_data_AB2%>%
  #not using this row currently as can do something with continuous in drug calcs but not sure yet
dplyr::filter(!mapped_duration %in% c("unspecified"))

 # dplyr::filter(!mapped_duration %in% c("continuous","unspecified"))


print(nrow(dogs_with_med_data2_AB)/nrow(dogs_with_med_data_AB))
[1] 0.861021

~83% if ditch the “continuous” duration ones

~86% of antimicrobials tidied so far

Where are rows being lost:

Anti-parasiticides:
dogs_with_med_data_parasite <- medications_5 %>%
  dplyr::filter(active_ingredient_groups =="anti_parasites")

dogs_with_med_data_parasite2 <- dogs_with_med_data_parasite %>%
  dplyr::filter(!mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))
dogs_with_med_data2_parasite <- dogs_with_med_data_parasite2%>%
  #not using this row currently as can do something with continuous in drug calcs but not sure yet
   dplyr::filter(!mapped_duration %in% c("unspecified"))

 # dplyr::filter(!mapped_duration %in% c("continuous","unspecified"))


print(nrow(dogs_with_med_data2_parasite)/nrow(dogs_with_med_data_parasite))
[1] 0.5012405

~7% if “continuous” duration is removed, this probably is not valid to remove as lots of these parasite txs will be continuous over life

~50% if retain continuous dose rows

Where are rows being lost

  • unspecified admin
Immunologicals:
dogs_with_med_data_immuno <- medications_5 %>%
  dplyr::filter(active_ingredient_groups =="immunologicals")

dogs_with_med_data_immuno2 <- dogs_with_med_data_immuno%>%
  dplyr::filter(!mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))
dogs_with_med_data2_immuno<- dogs_with_med_data_immuno2%>%
  #not using this row currently as can do something with continuous in drug calcs but not sure yet
   dplyr::filter(!mapped_duration %in% c("unspecified"))

  #dplyr::filter(!mapped_duration %in% c("continuous","unspecified"))


print(nrow(dogs_with_med_data2_immuno)/nrow(dogs_with_med_data_immuno))
[1] 0.5049819

~24%

~50% if keep dogs with “continuous” duration

Where are rows being lost:

Anti-inflam:
dogs_with_med_data_inflam <- medications_5 %>%
  dplyr::filter(active_ingredient_groups =="anti_inflam")

dogs_with_med_data_inflam2 <- dogs_with_med_data_inflam%>%
  dplyr::filter(!mapped_frequency %in% c("single event", "unspecified", "misc", "tapering", "complex tapering"))
dogs_with_med_data2_inflam<- dogs_with_med_data_inflam2%>%
  #not using this row currently as can do something with continuous in drug calcs but not sure yet
    dplyr::filter(!mapped_duration %in% c("unspecified"))

  #dplyr::filter(!mapped_duration %in% c("continuous","unspecified"))


print(nrow(dogs_with_med_data2_inflam)/nrow(dogs_with_med_data_inflam))
[1] 0.6045422

~46% if continuous duration excluded

~60% if continuous duration retained

Where are rows being lost:

Medications length of time/number of times prescribed:

Non use vs intermediate use vs long term use

Medications dosage calculations

Want to determine:

Exposure to various different medications ever (likely broad classes eg. ABs, anthelminitics, flea tx, NSAID etc.)

Exposure to various different medications in past X years

Dosage administered of a drug over lifetime/x time

Specify column is very messy - a further 176 things - wait and see if tidied version is better

Medications need to change frequency unit to a numeric value eg. SID = 1, BID = 2, EOD = 0.5 #q (days) has frequency in the specify_days column eg. q(days) 30 = once every 30d so will change to 0.03 in variable mapping NB. PRN = as needed

#concatenate frequency and specify days columns
medications2 <- medications %>%
  mutate(specify_days=as.character(specify_days))%>%
   unite(frequency_specify_days, frequency, specify_days,sep = "",remove=FALSE)%>%
  mutate(frequency_specify_days=sub("NA*$", "", as.character(frequency_specify_days)))

#redo table
freq_spec_day_table <- table(medications2$frequency_specify_days)
freq_spec_day_table

# Creating a dictionary for the values in freq_spec_day_table so that can use these in calculations
#add to this once clean data seen
dosing_frequency <- list(
  "0.03" =c("q (days)30","q (days)31"),
  "0.14"="q (days)7",
  "0.5" = "eod",
  "1" = c("once", "sid", "q (days), specify1","q (days), specify1"),
  "2" = "bid",
  "3" = "tid",
  "4" = "qid"
)


#mapping dictionary to our dataset
medications_mapped <- medications2 %>%
  mutate(mapped_values = ifelse(frequency_specify_days %in% unlist(dosing_frequency), 
                                as.character(sapply(frequency_specify_days, function(val) {
                                  for (key in names(dosing_frequency)) {
                                    if (val %in% dosing_frequency[[key]]) {
                                      return(key)
                                    }
                                  }
                                  return(NA)
                                })),
                                NA))

# Display the updated dataframe
print(medications_mapped[, c("frequency_specify_days", "mapped_values")])




#medications need to change duration unit to a numeric value eg. weeks to 7 (ie. 7 days)
#convert mapped_values column  and dose andd duration to numeric

medications_calcs <- medications_mapped %>%
  mutate(across(c(dose, duration, mapped_values), as.numeric)) %>%
  rowwise() %>%
  mutate(total_dosage = prod(c(dose, duration, mapped_values), na.rm = TRUE))

medications_mapped <- medications_mapped %>%
  mutate(as.numeric(mapped_values))
#function for this
medications_calc <- total_dose(medications_mapped, "dose","duration","mapped_values")

Vaccinations

Want to determine:

A number of vaccines in lifetime (‘dosage’)

Vaccination within past X years

What were they vaccinated with in past X years

NB. new row for every vaccine (multiple rows for same study year) for each subject id

Flea-worming Tx

OTC medications